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
3841a741eff5f5f642bc7b5042492cbbed2a287f
6aab4199ab2cab0b15d9af390a251f37802366ab
/common_audio/audio_converter_unittest.cc
84d8f5568e00499712f3df588d378ba6e83b69ed
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-google-patent-license-webrtc", "LicenseRef-scancode-google-patent-license-webm" ]
permissive
adwpc/webrtc
f288a600332e5883b2ca44492e02bea81e45b4fa
a30eb44013b8472ea6a042d7ed2909eb7346f9a8
refs/heads/master
2021-05-24T13:18:44.227242
2021-02-01T14:54:12
2021-02-01T14:54:12
174,692,051
0
0
MIT
2019-03-09T12:32:13
2019-03-09T12:32:13
null
UTF-8
C++
false
false
6,050
cc
/* * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include "common_audio/audio_converter.h" #include <algorithm> #include <cmath> #include <memory> #include <vector> #include "common_audio/channel_buffer.h" #include "common_audio/resampler/push_sinc_resampler.h" #include "rtc_base/arraysize.h" #include "rtc_base/format_macros.h" #include "test/gtest.h" namespace webrtc { typedef std::unique_ptr<ChannelBuffer<float>> ScopedBuffer; // Sets the signal value to increase by |data| with every sample. ScopedBuffer CreateBuffer(const std::vector<float>& data, size_t frames) { const size_t num_channels = data.size(); ScopedBuffer sb(new ChannelBuffer<float>(frames, num_channels)); for (size_t i = 0; i < num_channels; ++i) for (size_t j = 0; j < frames; ++j) sb->channels()[i][j] = data[i] * j; return sb; } void VerifyParams(const ChannelBuffer<float>& ref, const ChannelBuffer<float>& test) { EXPECT_EQ(ref.num_channels(), test.num_channels()); EXPECT_EQ(ref.num_frames(), test.num_frames()); } // Computes the best SNR based on the error between |ref_frame| and // |test_frame|. It searches around |expected_delay| in samples between the // signals to compensate for the resampling delay. float ComputeSNR(const ChannelBuffer<float>& ref, const ChannelBuffer<float>& test, size_t expected_delay) { VerifyParams(ref, test); float best_snr = 0; size_t best_delay = 0; // Search within one sample of the expected delay. for (size_t delay = std::max(expected_delay, static_cast<size_t>(1)) - 1; delay <= std::min(expected_delay + 1, ref.num_frames()); ++delay) { float mse = 0; float variance = 0; float mean = 0; for (size_t i = 0; i < ref.num_channels(); ++i) { for (size_t j = 0; j < ref.num_frames() - delay; ++j) { float error = ref.channels()[i][j] - test.channels()[i][j + delay]; mse += error * error; variance += ref.channels()[i][j] * ref.channels()[i][j]; mean += ref.channels()[i][j]; } } const size_t length = ref.num_channels() * (ref.num_frames() - delay); mse /= length; variance /= length; mean /= length; variance -= mean * mean; float snr = 100; // We assign 100 dB to the zero-error case. if (mse > 0) snr = 10 * std::log10(variance / mse); if (snr > best_snr) { best_snr = snr; best_delay = delay; } } printf("SNR=%.1f dB at delay=%" RTC_PRIuS "\n", best_snr, best_delay); return best_snr; } // Sets the source to a linearly increasing signal for which we can easily // generate a reference. Runs the AudioConverter and ensures the output has // sufficiently high SNR relative to the reference. void RunAudioConverterTest(size_t src_channels, int src_sample_rate_hz, size_t dst_channels, int dst_sample_rate_hz) { const float kSrcLeft = 0.0002f; const float kSrcRight = 0.0001f; const float resampling_factor = (1.f * src_sample_rate_hz) / dst_sample_rate_hz; const float dst_left = resampling_factor * kSrcLeft; const float dst_right = resampling_factor * kSrcRight; const float dst_mono = (dst_left + dst_right) / 2; const size_t src_frames = static_cast<size_t>(src_sample_rate_hz / 100); const size_t dst_frames = static_cast<size_t>(dst_sample_rate_hz / 100); std::vector<float> src_data(1, kSrcLeft); if (src_channels == 2) src_data.push_back(kSrcRight); ScopedBuffer src_buffer = CreateBuffer(src_data, src_frames); std::vector<float> dst_data(1, 0); std::vector<float> ref_data; if (dst_channels == 1) { if (src_channels == 1) ref_data.push_back(dst_left); else ref_data.push_back(dst_mono); } else { dst_data.push_back(0); ref_data.push_back(dst_left); if (src_channels == 1) ref_data.push_back(dst_left); else ref_data.push_back(dst_right); } ScopedBuffer dst_buffer = CreateBuffer(dst_data, dst_frames); ScopedBuffer ref_buffer = CreateBuffer(ref_data, dst_frames); // The sinc resampler has a known delay, which we compute here. const size_t delay_frames = src_sample_rate_hz == dst_sample_rate_hz ? 0 : static_cast<size_t>( PushSincResampler::AlgorithmicDelaySeconds(src_sample_rate_hz) * dst_sample_rate_hz); // SNR reported on the same line later. printf("(%" RTC_PRIuS ", %d Hz) -> (%" RTC_PRIuS ", %d Hz) ", src_channels, src_sample_rate_hz, dst_channels, dst_sample_rate_hz); std::unique_ptr<AudioConverter> converter = AudioConverter::Create( src_channels, src_frames, dst_channels, dst_frames); converter->Convert(src_buffer->channels(), src_buffer->size(), dst_buffer->channels(), dst_buffer->size()); EXPECT_LT(43.f, ComputeSNR(*ref_buffer.get(), *dst_buffer.get(), delay_frames)); } TEST(AudioConverterTest, ConversionsPassSNRThreshold) { const int kSampleRates[] = {8000, 16000, 32000, 44100, 48000}; const size_t kChannels[] = {1, 2}; for (size_t src_rate = 0; src_rate < arraysize(kSampleRates); ++src_rate) { for (size_t dst_rate = 0; dst_rate < arraysize(kSampleRates); ++dst_rate) { for (size_t src_channel = 0; src_channel < arraysize(kChannels); ++src_channel) { for (size_t dst_channel = 0; dst_channel < arraysize(kChannels); ++dst_channel) { RunAudioConverterTest(kChannels[src_channel], kSampleRates[src_rate], kChannels[dst_channel], kSampleRates[dst_rate]); } } } } } } // namespace webrtc
[ "adwpc@hotmail.com" ]
adwpc@hotmail.com
7a33886be31caaf38b0ce24600a3c71db06eb9c9
155f53e338b99454f7e5976efd353f3f22d3285d
/PAT_Advanced_Level/1004. Counting Leaves.cpp
a1228240f67fcc7fa657fe1952668cc6cf24ae17
[]
no_license
astronaut0131/PAT
cb196622bf4693573e8f57d5b85f2d6dde915561
f6564d8fc81ab2b8bd8bdfc58b447b170eaf4005
refs/heads/master
2021-09-20T12:47:12.142564
2018-08-10T02:19:46
2018-08-10T02:19:46
115,731,374
2
0
null
null
null
null
UTF-8
C++
false
false
1,057
cpp
#include <stdio.h> #include <vector> #include <queue> #include <algorithm> using namespace std; vector <int> v[105]; int leaf[105],level[105],maxlevel=-1; void bfs(){ queue <int> Q; Q.push(1); level[1]=0; while(!Q.empty()){ int temp=Q.front(); Q.pop(); maxlevel=max(maxlevel,level[temp]); if(v[temp].size()==0){ leaf[level[temp]]++; } for(int i=0;i<v[temp].size();i++){ Q.push(v[temp][i]); level[v[temp][i]]=level[temp]+1; } } } /* void dfs(int index,int depth){ if(v[index].size()==0){ book[depth]++; maxdepth = max(maxdepth,depth); return; } for(int i=0;i<v[index].size();i++) dfs(v[index][i],depth+1); } */ int main(){ fill(leaf,leaf+105,0); int N,M; scanf("%d %d",&N,&M); for(int i=0;i<M;i++){ int node,num; scanf("%d %d",&node,&num); for(int j=0;j<num;j++){ int x; scanf("%d",&x); v[node].push_back(x); } } bfs(); for(int i=0;i<=maxlevel;i++){ printf("%d",leaf[i]); if(i!=maxlevel){ printf(" "); } } return 0; }
[ "519537870@qq.com" ]
519537870@qq.com
55c65ed892bd6a06db4770f909bdb77983be5d9b
c7e55b1f5c27f480c2e68918c587af7a2f9b1a2d
/sparse_matmul/os/coop_threads.cc
ece0995d4cf2d0a0f0f73170fb5977e08d7731b1
[ "Apache-2.0" ]
permissive
kaisey1/google_lyra
6abc8c9c08eb5a9f23c91d98c88ce02c1ba8d5eb
4d759efcd7c79f8f5aa25714e971b353ea21d3f4
refs/heads/main
2023-06-10T06:36:14.574292
2021-06-28T16:38:41
2021-06-28T16:38:41
383,077,442
0
0
null
null
null
null
UTF-8
C++
false
false
2,567
cc
// Copyright 2021 Google LLC // // 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 "sparse_matmul/os/coop_threads.h" #include <atomic> namespace csrblocksparse { // All threads must execute a std::memory_order_seq_cst operation on // |barrier_step_| this is what ensures the global memory consistency across // the barrier. // // It is possible for the |barrier_step_| to roll over, but this is safe here. // // |yield| instructs the processor that it is in a spin loop and can stop doing // things like out of order, speculative execution, prefetching, etc. On hyper // threaded machines it can also choose to swap in the other thread. Note that // this is a hardware level decision and the OS is never involved. void SpinBarrier::barrier() { if (num_threads_ < 2) return; int old_step = barrier_step_.load(std::memory_order_relaxed); int val_threads = threads_at_barrier_.fetch_add(1, std::memory_order_acq_rel); if (val_threads == num_threads_ - 1) { // This is where the logic can go all wrong if the barrier is called by // more threads than |num_threads_| -- the assumption that we're the last // thread is inherently invalid. // Assuming num_threads_ are calling this barrier, then we're the last // thread to reach the barrier, reset and advance step count. threads_at_barrier_.store(0, std::memory_order_relaxed); barrier_step_.store(old_step + 1, std::memory_order_release); } else { // Wait for step count to advance, then continue. while (barrier_step_.load(std::memory_order_acquire) == old_step) { // Intel recommends the equivalent instruction PAUSE, not be called more // than once in a row, I can't find any recommendations for ARM, so // following that advice here. #if defined __aarch64__ || defined __arm__ asm volatile("yield\n" ::: "memory"); #else // No pause for x86! The pause instruction on Skylake takes 141 clock // cycles, which in an AVX2-down-clocked CPU is getting on for 70ns. #endif } } } } // namespace csrblocksparse
[ "mchinen@google.com" ]
mchinen@google.com
f0a1b0df5487a47253a4cf8f95891ddd9d0e693b
4c7f04313e055ff08de887d76007a4aa96377396
/gazebo7_7.14.0_exercise/gazebo/gui/UserCmdHistory.cc
2bf8bf6554109afbdabe11f9d15f48e877fcd921
[ "Apache-2.0" ]
permissive
WalteR-MittY-pro/Gazebo-MPI
8ef51f80b49bcf56510337fdb67f1d2f4b605275
6e3f702463e6ac2d59194aac1c8a9a37ef4d0153
refs/heads/master
2023-03-31T07:41:44.718326
2020-03-02T07:22:13
2020-03-02T07:22:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,127
cc
/* * Copyright (C) 2015 Open Source Robotics Foundation * * 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 <boost/range/adaptor/reversed.hpp> #include "gazebo/transport/Node.hh" #include "gazebo/gui/Actions.hh" #include "gazebo/gui/UserCmdHistoryPrivate.hh" #include "gazebo/gui/UserCmdHistory.hh" using namespace gazebo; using namespace gui; ///////////////////////////////////////////////// UserCmdHistory::UserCmdHistory() : dataPtr(new UserCmdHistoryPrivate) { if (!g_undoAct || !g_redoAct || !g_undoHistoryAct || !g_redoHistoryAct) { gzerr << "Action missing, not initializing UserCmdHistory" << std::endl; return; } // Action groups this->dataPtr->undoActions = new QActionGroup(this); this->dataPtr->undoActions->setExclusive(false); this->dataPtr->redoActions = new QActionGroup(this); this->dataPtr->redoActions->setExclusive(false); // Pub / sub this->dataPtr->node = transport::NodePtr(new transport::Node()); this->dataPtr->node->TryInit(common::Time::Maximum()); this->dataPtr->undoRedoPub = this->dataPtr->node->Advertise<msgs::UndoRedo>("~/undo_redo"); this->dataPtr->userCmdStatsSub = this->dataPtr->node->Subscribe("~/user_cmd_stats", &UserCmdHistory::OnUserCmdStatsMsg, this); // Qt connections connect(this, SIGNAL(StatsSignal()), this, SLOT(OnStatsSlot())); connect(g_undoAct, SIGNAL(triggered()), this, SLOT(OnUndo())); connect(g_redoAct, SIGNAL(triggered()), this, SLOT(OnRedo())); connect(g_undoHistoryAct, SIGNAL(triggered()), this, SLOT(OnUndoCmdHistory())); connect(g_redoHistoryAct, SIGNAL(triggered()), this, SLOT(OnRedoCmdHistory())); connect(this->dataPtr->undoActions, SIGNAL(triggered(QAction *)), this, SLOT(OnUndoCommand(QAction *))); connect(this->dataPtr->undoActions, SIGNAL(hovered(QAction *)), this, SLOT(OnUndoHovered(QAction *))); connect(this->dataPtr->redoActions, SIGNAL(triggered(QAction *)), this, SLOT(OnRedoCommand(QAction *))); connect(this->dataPtr->redoActions, SIGNAL(hovered(QAction *)), this, SLOT(OnRedoHovered(QAction *))); } ///////////////////////////////////////////////// UserCmdHistory::~UserCmdHistory() { delete this->dataPtr; this->dataPtr = NULL; } ///////////////////////////////////////////////// void UserCmdHistory::OnUndo() { this->OnUndoCommand(NULL); } ///////////////////////////////////////////////// void UserCmdHistory::OnUndoCommand(QAction *_action) { msgs::UndoRedo msg; msg.set_undo(true); if (_action) { msg.set_id(_action->data().toUInt()); } this->dataPtr->undoRedoPub->Publish(msg); } ///////////////////////////////////////////////// void UserCmdHistory::OnUndoHovered(QAction *_action) { bool beforeThis = true; for (auto action : this->dataPtr->undoActions->actions()) { action->blockSignals(true); action->setChecked(beforeThis); action->blockSignals(false); if (action->data() == _action->data()) beforeThis = false; } } ///////////////////////////////////////////////// void UserCmdHistory::OnRedo() { this->OnRedoCommand(NULL); } ///////////////////////////////////////////////// void UserCmdHistory::OnRedoCommand(QAction *_action) { msgs::UndoRedo msg; msg.set_undo(false); if (_action) { msg.set_id(_action->data().toUInt()); } this->dataPtr->undoRedoPub->Publish(msg); } ///////////////////////////////////////////////// void UserCmdHistory::OnRedoHovered(QAction *_action) { bool beforeThis = true; for (auto action : this->dataPtr->redoActions->actions()) { action->blockSignals(true); action->setChecked(beforeThis); action->blockSignals(false); if (action->data() == _action->data()) beforeThis = false; } } ///////////////////////////////////////////////// void UserCmdHistory::OnUserCmdStatsMsg(ConstUserCmdStatsPtr &_msg) { this->dataPtr->msg.Clear(); this->dataPtr->msg.CopyFrom(*_msg); this->StatsSignal(); } ///////////////////////////////////////////////// void UserCmdHistory::OnStatsSlot() { g_undoAct->setEnabled(this->dataPtr->msg.undo_cmd_count() > 0); g_redoAct->setEnabled(this->dataPtr->msg.redo_cmd_count() > 0); g_undoHistoryAct->setEnabled(this->dataPtr->msg.undo_cmd_count() > 0); g_redoHistoryAct->setEnabled(this->dataPtr->msg.redo_cmd_count() > 0); } ///////////////////////////////////////////////// void UserCmdHistory::OnUndoCmdHistory() { // Clear undo action group for (auto action : this->dataPtr->undoActions->actions()) { this->dataPtr->undoActions->removeAction(action); } // Create new menu QMenu menu; for (auto cmd : boost::adaptors::reverse(this->dataPtr->msg.undo_cmd())) { QAction *action = new QAction(QString::fromStdString(cmd.description()), this); action->setData(QVariant(cmd.id())); action->setCheckable(true); menu.addAction(action); this->dataPtr->undoActions->addAction(action); } menu.exec(QCursor::pos()); } ///////////////////////////////////////////////// void UserCmdHistory::OnRedoCmdHistory() { // Clear redo action group for (auto action : this->dataPtr->redoActions->actions()) { this->dataPtr->redoActions->removeAction(action); } // Create new menu QMenu menu; for (auto cmd : boost::adaptors::reverse(this->dataPtr->msg.redo_cmd())) { QAction *action = new QAction(QString::fromStdString(cmd.description()), this); action->setData(QVariant(cmd.id())); action->setCheckable(true); menu.addAction(action); this->dataPtr->redoActions->addAction(action); } menu.exec(QCursor::pos()); }
[ "tjpu_zenglei@sina.com" ]
tjpu_zenglei@sina.com
65d098833f3638d793f050e65c1a9d99f46607cb
4fcf2967da46f37c831b72b7b97f705d3364306d
/problems/acmicpc_26590.cpp
b387f48e075cd221638bc60a415894976c980e99
[ "MIT" ]
permissive
qawbecrdtey/BOJ-sol
e2be11e60c3c19e88439665d586cb69234f2e5db
249b988225a8b4f52d27c5f526d7c8d3f4de557c
refs/heads/master
2023-08-03T15:04:50.837332
2023-07-30T08:25:58
2023-07-30T08:25:58
205,078,469
0
0
null
null
null
null
UTF-8
C++
false
false
361
cpp
#include <iostream> #include <string> #include <type_traits> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); string s[2]; cin >> s[0] >> s[1]; auto const len = min(s[0].size(), s[1].size()); for(remove_const_t<decltype(len)> i = 0; i < len; i++) { cout << s[i & 1][i]; } }
[ "qawbecrdtey@naver.com" ]
qawbecrdtey@naver.com
a92ab8266f4f0c76cfd006e70423acb60d80d249
b6967a88a776ff1217471c73cf63ab67658c24fa
/CoppeliaSim_Edu_V4_1_0_Ubuntu18_04/programming/bluezero/examples/publisher_subscriber_multi/multi_subscriber.cpp
1fd24dc79c1f4e20a9e138b41df94ac69e743c5f
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
YueErro/ModernRobotics
35048b04571799a4c5237f48750a4c5f7041d4a7
82345c04157c1322b24553bf00abd1f2b03281a5
refs/heads/master
2020-08-12T20:02:30.933484
2020-07-29T19:55:39
2020-07-29T19:55:39
214,834,024
0
0
MIT
2019-10-13T14:24:01
2019-10-13T14:24:01
null
UTF-8
C++
false
false
1,331
cpp
#include <b0/node.h> #include <b0/subscriber.h> #include <iostream> /*! \example publisher_subscriber_multi/multi_subscriber.cpp * This is an example of having multiple subscribers inside one node */ //! \cond HIDDEN_SYMBOLS void callback1(const std::string &msg) { std::cout << "Received: " << msg << std::endl; } void callback2(const std::string &msg) { std::cout << "Received: " << msg << std::endl; } int main(int argc, char **argv) { /* * Initialize B0 */ b0::init(argc, argv); /* * Create a node named "subscriber" */ b0::Node node("subscriber"); /* * Subscribe on topic "A" and call callback1(const std::string &msg) when a message is received. */ b0::Subscriber subA(&node, "A", &callback1); /* * Subscribe on topic "B" and call callback2(const std::string &msg) when a message is received. */ b0::Subscriber subB(&node, "B", &callback2); /* * Initialize the node (will announce node name to the network, and do other nice things) */ node.init(); /* * Spin the node (continuously process incoming messages and call callbacks) */ node.spin(); /* * Perform cleanup (stop threads, notify resolver that this node has quit, ...) */ node.cleanup(); return 0; } //! \endcond
[ "yue.trbj@gmail.com" ]
yue.trbj@gmail.com
f8af29d64fe6243d60ed5e8e4928b8d8d8a4688f
256c1e63fbe6454146d6bc9655415d43c52bf13c
/AdvancedLevel/1016PhoneBills.cpp
2677bee3672fccf43f28739ee5391f718259f1da
[]
no_license
czyxm/PAT
c7d5a752d5fc0856da14b907a3c3b99397dd5dd6
0951d9a5c9bd8bd3e102f2f3772fc16e8a2b846c
refs/heads/master
2021-06-17T19:38:34.202686
2021-04-19T12:56:06
2021-04-19T12:56:06
195,560,279
0
0
null
null
null
null
UTF-8
C++
false
false
4,440
cpp
#include<iostream> #include<iomanip> #include<string> #include<vector> #include<map> #include<algorithm> using namespace std; //Structure node of record typedef struct RecordNode { string time; string type; }* RNode; //Structure node of call typedef struct CallNode { string startTime; string endTime; int lastTime; float cost; }* CNode; //Structure node of customer struct CustomerNode { vector<CNode> calls; vector<RNode> records; float totalAmount; }; //Comparing function for sort records bool compare(const RNode & r1, const RNode & r2) { return r1->time < r2->time; } //The difference of start time and end time in minutes int difference(const string & startTime, const string & endTime) { int startMinute, endMinute; startMinute = 1440 * stoi(startTime.substr(0, 2)) + 60 * stoi(startTime.substr(3, 2)) + stoi(startTime.substr(6, 2)); endMinute = 1440 * stoi(endTime.substr(0, 2)) + 60 * stoi(endTime.substr(3, 2)) + stoi(endTime.substr(6, 2)); return endMinute - startMinute; } //Caculate the cost int cost(const string & startTime, const string & endTime, int * rate) { int cents = 0; int startDay = stoi(startTime.substr(0, 2)), startHour = stoi(startTime.substr(3, 2)), startMinute = stoi(startTime.substr(6, 2)); int endDay = stoi(endTime.substr(0, 2)), endHour = stoi(endTime.substr(3, 2)), endMinute = stoi(endTime.substr(6, 2)); //The call starts and ends in an hour if (startDay == endDay && startHour == endHour) { cents += rate[startHour] * (endMinute - startMinute); } else { //Deal with the minute part cents += rate[startHour++] * (60 - startMinute) + rate[endHour--] * endMinute; //Deal with the day part endHour += (endDay - startDay) * 24; //Deal with the hour part for (int i = startHour; i <= endHour; i++) { cents += rate[i % 24] * 60; } } return cents; } int main() { int N, rate[24]; string name, month; map<string, CustomerNode *, less<string>> customer; //Read input data for (int i = 0; i < 24; i++) { cin >> rate[i]; } cin >> N; for (int i = 0; i < N; i++) { RNode newRecord = new RecordNode; cin >> name >> newRecord->time >> newRecord->type; auto iter = customer.find(name); if (iter == customer.end()) { CustomerNode * newCustomer = new CustomerNode; newCustomer->totalAmount = 0; newCustomer->records.push_back(newRecord); customer.insert(pair<string, CustomerNode *>(name, newCustomer)); } else { iter->second->records.push_back(newRecord); } } month = customer.begin()->second->records[0]->time.substr(0, 2); //Sort the records of each customer chronologically //Abrtract the valid calls //Display the result auto cbegin = customer.begin(), cend = customer.end(); while (cbegin != cend) { vector<RNode> & records = cbegin->second->records; sort(records.begin(), records.end(), compare); for (int i = 0; i < records.size() - 1; i++) { //Find valid calls if (records[i]->type == "on-line" && records[i + 1]->type == "off-line") { CNode newCall = new CallNode; newCall->startTime = records[i]->time.substr(3); newCall->endTime = records[i + 1]->time.substr(3); newCall->lastTime = difference(newCall->startTime, newCall->endTime); cbegin->second->totalAmount += newCall->cost = cost(newCall->startTime, newCall->endTime, rate) / 100.0; cbegin->second->calls.push_back(newCall); i++; } } vector<CNode> & calls = cbegin->second->calls; if (calls.size() > 0) //Just display the information of customers that have valid calls { cout << cbegin->first << " " << month << endl; for (int i = 0; i < calls.size(); i++) { cout << calls[i]->startTime << " " << calls[i]->endTime << " " << calls[i]->lastTime << " $" << setprecision(2) << fixed << calls[i]->cost << endl; } cout << "Total amount: $" << setprecision(2) << fixed << cbegin->second->totalAmount << endl; } cbegin++; } return 0; }
[ "cmzyx@zju.edu.cn" ]
cmzyx@zju.edu.cn
a3058ab8179b72bf21202afaeb2258500e0d3967
160506cbb73a6328fdd5d60c02bf0e305b966b08
/gstar/Client/userFunction.h
879c30dcb082e17e302563752fba81c936976596
[]
no_license
paradiser/Gstar
7938b0492f7d42e70408157b25a2dcb56c4782d5
7d341c343191a615984439b6303bfe73ecfbe4df
refs/heads/master
2021-01-18T22:24:07.458062
2016-11-08T02:45:17
2016-11-08T02:45:17
72,499,182
0
0
null
null
null
null
UTF-8
C++
false
false
2,177
h
#ifndef USERFUNCTION_H #define USERFUNCTION_H #include <QMainWindow> #include <QProcess> #include <QCloseEvent> namespace Ui { class UserFunction; } class UserFunction : public QMainWindow { Q_OBJECT public: explicit UserFunction(QString serverName, QString passWord, QString ipAddress, QString userName, QString portNum, QWidget *parent = 0); void closeEvent(QCloseEvent *event); ~UserFunction(); private: Ui::UserFunction *ui; QProcess *upload_process; QProcess *upload_and_render_process; QProcess *download_process; QProcess *newdocker_process; QProcess *startdocker_process; QProcess *stopdocker_process; QProcess *resetdocker_process; QProcess *deletedocker_process; // QString servername; QString password; QString ipaddress; QString username;//登录用户名 QString portnum; QString sourcefilepath; private slots: // void upload_file(); void upload_and_render(); void download_file(); void quit(); void new_docker(); void start_docker(); void reset_docker(); void log_out(); //void delete_docker(); // void upload_process_started(); void upload_process_finished(int , QProcess::ExitStatus); void upload_and_render_process_started(); void upload_and_render_process_finished(int , QProcess::ExitStatus); void download_process_started(); void download_process_finished(int , QProcess::ExitStatus); void newdocker_process_started(); void newdocker_process_finished(int , QProcess::ExitStatus); void stopdocker_process_started(); void stopdocker_process_finished(int , QProcess::ExitStatus); void startdocker_process_started(); void startdocker_process_finished(int , QProcess::ExitStatus); void resetdocker_process_started(); void resetdocker_process_finished(int , QProcess::ExitStatus); void deletedocker_process_started(); void deletedocker_process_finished(int , QProcess::ExitStatus); // void printOutput_rander(); void printOutput_stop(); void printOutput_start(); void printOutput_reset(); void printOutput_delete(); }; #endif // USERFUNCTION_H
[ "paradiser@ubuntu.ubuntu-domain" ]
paradiser@ubuntu.ubuntu-domain
26dd06dd478a402c70dd3374df57ad77f6fce8a1
9d14214cc986ae372f5511cb5d45611cc91220b6
/AVR/Encryption/DESclass.cpp
0975f9c02b2c9f9622c6e1f3c447c468081860bc
[]
no_license
una1veritas/Workspace
6849309b908810042756640e3b02ad6716c3dc9c
32de11bec1755fdbe94885cd12688c3977c65d3a
refs/heads/master
2023-08-31T05:58:16.708401
2023-08-24T07:11:36
2023-08-24T07:11:36
5,622,781
2
0
null
2017-09-04T11:31:25
2012-08-31T00:31:33
C
WINDOWS-1250
C++
false
false
12,254
cpp
//============================================================================= // Copyright Atmel Corporation 2003. All Rights Reserved. // // File: DES.cpp // Compiler: Microsoft Visual C++ 6.0 // Output Size: // Based on work by:ŘE, VU // Created: 4-Feb-2003 JP (Atmel Finland) // Modified: // // Support Mail: avr@atmel.com // // Description: DES encryption algorithm // // Please refer to Application Note Documentation for more // information. // // For details on DES, please refer to the official FIPS 46-3 // document: // // http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf // // // Other Info: Since the numbers in the permutation-tables in the FIPS // document start at 1 instead of 0, the numbers in all // permutation-tables in this file are 1 less. In other words: // The tables in this file are indexed with 0 as the first // bit. //============================================================================= #include "DES.h" #include "DataBuffer.h" #include "CreateException.h" #include <stdlib.h> #include <string.h> #include <time.h> //============================================================================= // S-boxes // // The original form of the S-box 1 is as follows. // // 14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7, // 0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8, // 4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0, // 15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13 // // Since every number only requires 4 bits, two numbers are stored // as one byte. const unsigned char sTable[256] = { 0xE4, 0xD1, 0x2F, 0xB8, 0x3A, 0x6C, 0x59, 0x07, 0x0F, 0x74, 0xE2, 0xD1, 0xA6, 0xCB, 0x95, 0x38, 0x41, 0xE8, 0xD6, 0x2B, 0xFC, 0x97, 0x3A, 0x50, 0xFC, 0x82, 0x49, 0x17, 0x5B, 0x3E, 0xA0, 0x6D, 0xF1, 0x8E, 0x6B, 0x34, 0x97, 0x2D, 0xC0, 0x5A, 0x3D, 0x47, 0xF2, 0x8E, 0xC0, 0x1A, 0x69, 0xB5, 0x0E, 0x7B, 0xA4, 0xD1, 0x58, 0xC6, 0x93, 0x2F, 0xD8, 0xA1, 0x3F, 0x42, 0xB6, 0x7C, 0x05, 0xE9, 0xA0, 0x9E, 0x63, 0xF5, 0x1D, 0xC7, 0xB4, 0x28, 0xD7, 0x09, 0x34, 0x6A, 0x28, 0x5E, 0xCB, 0xF1, 0xD6, 0x49, 0x8F, 0x30, 0xB1, 0x2C, 0x5A, 0xE7, 0x1A, 0xD0, 0x69, 0x87, 0x4F, 0xE3, 0xB5, 0x2C, 0x7D, 0xE3, 0x06, 0x9A, 0x12, 0x85, 0xBC, 0x4F, 0xD8, 0xB5, 0x6F, 0x03, 0x47, 0x2C, 0x1A, 0xE9, 0xA6, 0x90, 0xCB, 0x7D, 0xF1, 0x3E, 0x52, 0x84, 0x3F, 0x06, 0xA1, 0xD8, 0x94, 0x5B, 0xC7, 0x2E, 0x2C, 0x41, 0x7A, 0xB6, 0x85, 0x3F, 0xD0, 0xE9, 0xEB, 0x2C, 0x47, 0xD1, 0x50, 0xFA, 0x39, 0x86, 0x42, 0x1B, 0xAD, 0x78, 0xF9, 0xC5, 0x63, 0x0E, 0xB8, 0xC7, 0x1E, 0x2D, 0x6F, 0x09, 0xA4, 0x53, 0xC1, 0xAF, 0x92, 0x68, 0x0D, 0x34, 0xE7, 0x5B, 0xAF, 0x42, 0x7C, 0x95, 0x61, 0xDE, 0x0B, 0x38, 0x9E, 0xF5, 0x28, 0xC3, 0x70, 0x4A, 0x1D, 0xB6, 0x43, 0x2C, 0x95, 0xFA, 0xBE, 0x17, 0x60, 0x8D, 0x4B, 0x2E, 0xF0, 0x8D, 0x3C, 0x97, 0x5A, 0x61, 0xD0, 0xB7, 0x49, 0x1A, 0xE3, 0x5C, 0x2F, 0x86, 0x14, 0xBD, 0xC3, 0x7E, 0xAF, 0x68, 0x05, 0x92, 0x6B, 0xD8, 0x14, 0xA7, 0x95, 0x0F, 0xE2, 0x3C, 0xD2, 0x84, 0x6F, 0xB1, 0xA9, 0x3E, 0x50, 0xC7, 0x1F, 0xD8, 0xA3, 0x74, 0xC5, 0x6B, 0x0E, 0x92, 0x7B, 0x41, 0x9C, 0xE2, 0x06, 0xAD, 0xF3, 0x58, 0x21, 0xE7, 0x4A, 0x8D, 0xFC, 0x90, 0x35, 0x6B }; //============================================================================= // Selection Order const unsigned char sOrder[8] = {0, 0, 0, 0, 5, 1, 2, 3}; //============================================================================= // Initial Permutation bit selection table const unsigned char ipTable[64] = { 57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35, 27, 19, 11, 3, 61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31, 23, 15, 7, 56, 48, 40, 32, 24, 16, 8, 0, 58, 50, 42, 34, 26, 18, 10, 2, 60, 52, 44, 36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6 }; //============================================================================= // Inverse Initial Permutation bit selection table const unsigned char iipTable[64] = { 39, 7, 47, 15, 55, 23, 63, 31, 38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45, 13, 53, 21, 61, 29, 36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11, 51, 19, 59, 27, 34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49, 17, 57, 25, 32, 0, 40, 8, 48, 16, 56, 24 }; //============================================================================= // Expansion bit selection table const unsigned char eTable[48] = { 31, 0, 1, 2, 3, 4, 3, 4, 5, 6, 7, 8, 7, 8, 9, 10, 11, 12, 11, 12, 13, 14, 15, 16, 15, 16, 17, 18, 19, 20, 19, 20, 21, 22, 23, 24, 23, 24, 25, 26, 27, 28, 27, 28, 29, 30, 31, 0 }; //============================================================================= // Permutation bit selection table const unsigned char pTable[32] = { 15, 6, 19, 20, 28, 11, 27, 16, 0, 14, 22, 25, 4, 17, 30, 9, 1, 7, 23, 13, 31, 26, 2, 8, 18, 12, 29, 5, 21, 10, 3, 24 }; //============================================================================= // Permuted Choice 1 bit selection table const unsigned char pc1Table[56] = { 56, 48, 40, 32, 24, 16, 8, 0, 57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 60, 52, 44, 36, 28, 20, 12, 4, 27, 19, 11, 3 }; //============================================================================= // Permuted Choice 2 bit selection table const unsigned char pc2Table[48] = { 13, 16, 10, 23, 0, 4, 2, 27, 14, 5, 20, 9, 22, 18, 11, 3, 25, 7, 15, 6, 26, 19, 12, 1, 40, 51, 30, 36, 46, 54, 29, 39, 50, 44, 32, 47, 43, 48, 38, 55, 33, 52, 45, 41, 49, 35, 28, 31 }; //============================================================================= // Key Rotate Left table const unsigned char rTable[16] = {1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1}; //============================================================================= // Constructor Des::Des(DataBuffer& initialVector) { memcpy(chainBlockM, initialVector.data(), 8); srand((unsigned)time(NULL)); } //============================================================================= // Destructor Des::~Des() { } //============================================================================= // Returns the value of the bit 'index' in the bit table 'table'. unsigned char Des::getBit(const unsigned char *table, unsigned char index) { return (table[index >> 3] & (0x80 >> (index & 7))); } //============================================================================= // Sets or clears the bit 'index' in the bit table 'table', regarding the value // of 'value'. void Des::putBit(unsigned char *table, unsigned char index, unsigned char value) { unsigned char byteIndex; unsigned char mask; byteIndex = index >> 3; mask = 0x80 >> (index & 0x07); if (value) table[byteIndex] |= mask; else table[byteIndex] &= ~mask; } //============================================================================= // Permutes 'in' using permutation table 'table' and puts the result to 'out' void Des::permute(unsigned char size, unsigned char *out, const unsigned char *in, const unsigned char *table) { while (size--) putBit(out, size, getBit(in, table[size])); } //============================================================================= // Generates the kTable from keys void Des::scheduleKey(DataBuffer key[3]) { unsigned char x, y, z, tmpBit1, tmpBit2; unsigned char tempKey[7]; for (int i = 0; i < 3; i++) { // Check Key Parity for (x = 0; x < 8; x++) { z = key[i][x]; z ^= z >> 4; z ^= z >> 2; z ^= z >> 1; if ((z & 0x01) == 0) { char keystr[] = "KEYx"; keystr[3] = '1' + i; throw new CreateException(ERROR_KEY_PARITY, keystr); } } permute(56, tempKey, key[i].data(), pc1Table); for (z = 0; z < 16; z++) { for (y = 0; y < rTable[z]; y++) { tmpBit1 = getBit(tempKey, 0); tmpBit2 = getBit(tempKey, 28); for (x = 0; x < 6; x++) { tempKey[x] <<= 1; putBit(&tempKey[x], 7, getBit(&tempKey[x + 1], 0)); } tempKey[6] <<= 1; putBit(tempKey, 27, tmpBit1); putBit(tempKey, 55, tmpBit2); } permute(48, kTableM[i][z], tempKey, pc2Table); } } } //============================================================================= // Return kTable for 'key' at 'index' (six bytes). DataBuffer Des::getK(int key, int index) { return DataBuffer(kTableM[key][index], 6); } //============================================================================= // Calculates the exclusive or function of 'left' and 'right'. The result // is written to 'left'. 'byteCount' indicates the size of the two vectors in // bytes. void Des::xor(unsigned char byteCount, unsigned char *left, const unsigned char *right) { while (byteCount--) *left++ ^= *right++; } //============================================================================= // Generates 32 bits of output with 48 bits input, according to the S-boxes. void Des::s(unsigned char *out, const unsigned char *in) { unsigned char x, y; unsigned char bitCount; unsigned char index; unsigned char temp; for (x = 0; x < 8; x++) { if (!(x & 0x01)) out[x >> 1] = 0; bitCount = 6 * x; index = ((x << 5) & 0xe0); for(y = 7; y > 2; y--) putBit(&index, y, getBit(in, bitCount + sOrder[y])); temp = sTable[index]; if (!(getBit(in, bitCount + 4))) temp >>= 4; temp &= 0x0F; if (!(x & 0x01)) temp <<= 4; out[x >> 1] |= temp; } } //============================================================================= // Encrypts 'buffer' using 3DES encryption algorithm. 'buffer' must be 8 bytes // long. chainBlock points to the previous cipher block // // Before this function is called, the scheduleKey function must be called // at least once. void Des::encrypt(unsigned char *buffer, const unsigned char *chainBlock) { unsigned char x, y; unsigned char *l, *r, *tmpPointer, tmpBuffer[4]; unsigned char ipOut[8], iipIn[8]; unsigned char temp1[6], temp2[4]; // Cipher-Block-Chaining. Exclusive or with the previous datablock. xor(8, buffer, chainBlock); l = &ipOut[0]; r = &ipOut[4]; // Initial Permutation permute(64, ipOut, buffer, ipTable); // 3 * 16 iterations (three times DES == triple-DES) for (x = 0; x < 48; x++) { y = x & 0x0F; // f(......) permute(48, temp1, r, eTable); if (x < 16) // f(R, K[Y] -> DES ENCRYPT xor(6, temp1, kTableM[0][y]); else if (x < 32) // f(R, K[15 - Y]) -> DES DECRYPT xor(6, temp1, kTableM[1][15 - y]); else // f(R, K[Y] -> DES ENCRYPT xor(6, temp1, kTableM[2][y]); s(temp2, temp1); permute(32, tmpBuffer, temp2, pTable); xor(4, l, tmpBuffer); // If not iteration 15., 31., or 47. if (y != 0x0F) { // swap R and L tmpPointer = l; l = r; r = tmpPointer; } } // Swap the two buffers L and R (not just the pointers) before Inverse Initial Permutation iipIn[0] = l[0]; iipIn[1] = l[1]; iipIn[2] = l[2]; iipIn[3] = l[3]; iipIn[4] = r[0]; iipIn[5] = r[1]; iipIn[6] = r[2]; iipIn[7] = r[3]; // Inverse Initial Permutation permute(64, buffer, iipIn, iipTable); } //============================================================================= // Encrypts a buffer of data. The data length is first aligned to next 8 bytes. void Des::encryptBuffer(DataBuffer& buffer) { // Check if the buffer needs to be filled. if( buffer.size() % 8 ) { // Fill the rest (to align to 8 bytes) with random data int fillSize = 8 - (buffer.size() % 8); while (fillSize--) buffer += (unsigned char)rand(); } // Encrypt buffer one cipher block at a time for (int i = 0; i < buffer.size(); i += 8) { encrypt(&buffer[i], chainBlockM); memcpy(chainBlockM, &buffer[i], 8); } }
[ "una.veritas@icloud.com" ]
una.veritas@icloud.com
43159cd8b849345030a33b25fe351289ae64ed03
438a97371054c0f29410bd9c9bc4bd4ffa7738a4
/USART2/AbstractHardware/Новая папка/USARTDriver.h
83be225c2d6f2cfbaf47403de0ccdd35493a6697
[]
no_license
Veka23/Laba_
e78a4a3e25b4654bfe13bfac6fcd64cacce8db6c
594621f73524597244a8fce401225394f77031ec
refs/heads/main
2023-04-05T01:15:20.604817
2021-04-16T14:11:56
2021-04-16T14:11:56
358,620,858
0
0
null
null
null
null
UTF-8
C++
false
false
427
h
#pragma once #include <array> template<typename TUsart> class USARTDriver { public: void OnNextByteTransmit() { TUsart::WriteByte(TransmitBuffer[i]); i++; if (i < size) { TUsart::DisableTransmit(); i = 0U; } } void SendMessage(std::uint8_t* message, size_t size) { } private: std::size_t i = 0U; std::array<std::uint8_t,255> TransmitBuffer; size_t size = 0U; };
[ "72262256+Veka23@users.noreply.github.com" ]
72262256+Veka23@users.noreply.github.com
cc11355ce1f25ebb7332dac923d4961b1e7212e7
921961c1ea86e27caca81370764cc217e6097c2a
/284.peekingIterator/peeking_iterator.cpp
46bc469d849af45e30a5977b327d2943872c4dde
[]
no_license
naturaltruth/leetcode
b8f6b24afe4173c727a1c825441d3ce7308681b0
f2dbd3d5f722842ede76f4eda57d7222e0f0760c
refs/heads/master
2021-01-17T11:03:46.791097
2016-06-17T09:30:36
2016-06-17T09:30:36
28,713,494
0
0
null
null
null
null
UTF-8
C++
false
false
2,913
cpp
/*************************************************************************** * * Copyright (c) 2015 zhoujin All Rights Reserved * $Id: peeking_iterator.cpp,v 0.0 2015-09-23 星期三 15:08:41 zhoujin1 Exp $ * ***************************************************************************/ /** * @file peeking_iterator.cpp * @author zhoujin * @date 2015-09-23 星期三 15:08:41 * @mail zhoujin1224@gmail.com * @brief Given an Iterator class interface with methods: next() and hasNext(), design and implement a PeekingIterator that support the peek() operation -- it essentially peek() at the element that will be returned by the next call to next(). * * Here is an example. Assume that the iterator is initialized to the beginning of the list: [1, 2, 3]. * * Call next() gets you 1, the first element in the list. * * Now you call peek() and it returns 2, the next element. Calling next() after that still return 2. * * You call next() the final time and it returns 3, the last element. Calling hasNext() after that should return false. * * Hint: * * Think of "looking ahead". You want to cache the next element. * Is one variable sufficient? Why or why not? * Test your design with call order of peek() before next() vs next() before peek(). * For a clean implementation, check out Google's guava library source code. * Follow up: How would you extend your design to be generic and work with all types, not just integer? * **/ #include <iostream> #include <vector> using namespace std; // Below is the interface for Iterator, which is already defined for you. // **DO NOT** modify the interface for Iterator. class Iterator { struct Data; Data* data; public: Iterator(const vector<int>& nums); Iterator(const Iterator& iter); virtual ~Iterator(); // Returns the next element in the iteration. int next(); // Returns true if the iteration has more elements. bool hasNext() const; }; class PeekingIterator : public Iterator { public: PeekingIterator(const vector<int>& nums) : Iterator(nums) { // Initialize any member here. // **DO NOT** save a copy of nums and manipulate it directly. // You should only use the Iterator interface methods. peeked = false; } // Returns the next element in the iteration without advancing the iterator. int peek() { if (!peeked) { peeked = true; peek_val = Iterator::next(); } return peek_val; } // hasNext() and next() should behave the same as in the Iterator interface. // Override them if needed. int next() { if (peeked) { peeked = false; return peek_val; } if (Iterator::hasNext()) return Iterator::next(); } bool hasNext() const { return peeked || Iterator::hasNext(); } private: bool peeked; int peek_val; };
[ "zhoujin@adsstory.com" ]
zhoujin@adsstory.com
c628f7ae96f85a52bcbb383251c0b2e4c3d58a34
8fdd2abae4f151c624d89b45eb11c5401dd02ee4
/Classes/GameStartMenu.h
7d10c0895595f633dc9793de209bb79e2d9f337e
[]
no_license
619224202/CatchPK
05a6f305ab172a716efd5a8dbf03ad5db09c4d26
fb622678906640d43f645115ed5d38d42a786e34
refs/heads/master
2020-03-31T08:09:59.953396
2018-10-09T07:35:34
2018-10-09T07:35:34
152,048,523
0
0
null
null
null
null
UTF-8
C++
false
false
1,706
h
#ifndef _CCB_GAMESTARTMENU_H_ #define _CCB_GAMESTARTMENU_H_ #include "cocos2d.h" #include "cocos-ext.h" #include "GameControler.h" class ccbGameStart : public cocos2d::CCLayer , public cocos2d::extension::CCBSelectorResolver , public cocos2d::extension::CCBMemberVariableAssigner , public cocos2d::extension::CCNodeLoaderListener { public: CCB_STATIC_NEW_AUTORELEASE_OBJECT_WITH_INIT_METHOD(ccbGameStart, create); ccbGameStart(); virtual ~ccbGameStart(); virtual cocos2d::SEL_MenuHandler onResolveCCBCCMenuItemSelector(cocos2d::CCObject * pTarget, const char * pSelectorName); virtual cocos2d::extension::SEL_CCControlHandler onResolveCCBCCControlSelector(cocos2d::CCObject * pTarget, const char * pSelectorName); virtual bool onAssignCCBMemberVariable(cocos2d::CCObject * pTarget, const char * pMemberVariableName, cocos2d::CCNode * pNode); virtual bool onAssignCCBCustomProperty(cocos2d::CCObject* pTarget, const char* pMemberVariableName, cocos2d::extension::CCBValue* pCCBValue); virtual void onNodeLoaded(cocos2d::CCNode * pNode, cocos2d::extension::CCNodeLoader * pNodeLoader); void setAnimationManager(cocos2d::extension::CCBAnimationManager *pAnimationManager, CGameControler* _pGameControler); void Appear(); void Wave(int _num); void Start(float _t); //static ccbGameStart* m_this; private: /*static*/ cocos2d::CCNode* m_pNode; CGameControler* m_pGameControler; cocos2d::extension::CCBAnimationManager* m_AnimationManager; }; class CCBReader; class ccbGameStartLoader : public cocos2d::extension::CCLayerLoader { public: CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(ccbGameStartLoader, loader); CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(ccbGameStart); }; #endif
[ "619224202@qq.com" ]
619224202@qq.com
1457d76462ed4c4251d79c9c3cc03385a2cea3cd
82ce8270ff35a7352bff32cd119ab74917ba5ec6
/c++/pisicne2/D02/ex02/main.cpp
a8dfe2ed62b7eeee7410b285b78484ce56265181
[]
no_license
bensisko69/projet_42
d10fe8ea54b924e20a9aeb1e5afc3c0f20709992
007308c86fb8947ae25efda79ca614b6bf96a2f0
refs/heads/master
2021-01-10T14:11:34.069446
2015-12-04T14:51:43
2015-12-04T14:51:43
45,042,318
0
0
null
null
null
null
UTF-8
C++
false
false
1,950
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: lrenoud- <lrenoud-@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/04/08 13:22:09 by lrenoud- #+# #+# */ /* Updated: 2015/04/08 23:42:45 by lrenoud- ### ########.fr */ /* */ /* ************************************************************************** */ #include "Fixed.hpp" #include <iostream> int main( void ) { Fixed a(1); Fixed c(3); Fixed const b( Fixed( 5.05f ) * Fixed( 2 ) ); Fixed const d( 18.56f ); std::cout << "A = " << a << std::endl; std::cout << "B = " << b << std::endl; std::cout << "C = " << c << std::endl; std::cout << "D = " << d << std::endl; std::cout << "Ope + " << (a + c) << std::endl; std::cout << "Ope - " << (a - c) << std::endl; std::cout << "Ope * " << (a * c) << std::endl; std::cout << "Ope / " << (a / c) << std::endl; std::cout << "Ope > " << (a > c) << std::endl; std::cout << "Ope < " << (a < c) << std::endl; std::cout << "Ope >= " << (a >= c) << std::endl; std::cout << "Ope <= " << (a <= c) << std::endl; std::cout << "Ope == " << (a == c) << std::endl; std::cout << "Ope != " << (a != c) << std::endl; std::cout << "Max = " << Fixed::max( a, c ) << std::endl; std::cout << "Max = " << Fixed::max( b, d ) << std::endl; std::cout << "Min = " << Fixed::min( a, c ) << std::endl; std::cout << "Min = " << Fixed::min( b, d ) << std::endl; return 0; }
[ "lrenoud-@e1r11p12.42.fr" ]
lrenoud-@e1r11p12.42.fr
9c252d965c15789bfb5fc2b6b831674e0676e7e7
1f8886d09a8df3eabf42271fc5c9d4fb0def7760
/Source/SpaceRTS/Gameplay/PlayerPawn.cpp
bf085512ba22d92916c264d89b72544031c3cc8a
[]
no_license
MarcelBlanck/SpaceRTS
d7406b6193475b7386ce8ccd0095fb379e01b89b
fc720cc0c396fa6b652e7e99c9b99932bda8090c
refs/heads/master
2021-03-30T18:03:29.607047
2017-08-03T13:46:43
2017-08-03T13:46:43
36,312,671
1
0
null
null
null
null
UTF-8
C++
false
false
11,665
cpp
// Marcel Blanck 2015 #include "SpaceRTS.h" #include "PlayerPawn.h" #include "Interfaces/SelectableObject.h" #include "Interfaces/PlayerControlledSpaceship.h" #include "PaperFlipbook.h" #include "Kismet/HeadMountedDisplayFunctionLibrary.h" #include "Kismet/KismetSystemLibrary.h" APlayerPawn::APlayerPawn(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer), Camera(nullptr), HMDRotationFollower(nullptr), MaxInteractionDistance(20000.f), RecticleDefaultDistance(3000.f), RecticleAnimationRate(5.f), RecticleAlpha(0.6f), RecticleColorNeutral(1.f, 1.0, 1.f, RecticleAlpha), RecticleColorFriendly(0.f, 1.0, 0.f, RecticleAlpha), RecticleColorAttack(1.f, 0.0, 0.f, RecticleAlpha), RecticleColorInteract(0.f, 0.0, 1.f, RecticleAlpha) { PrimaryActorTick.bCanEverTick = true; PrimaryActorTick.bStartWithTickEnabled = true; Camera = ObjectInitializer.CreateDefaultSubobject<UCameraComponent>(this, TEXT("PlayerCamera")); Camera->AttachTo(RootComponent); Camera->bUsePawnControlRotation = false; Camera->FieldOfView = 90.f; HMDRotationFollower = ObjectInitializer.CreateDefaultSubobject<USceneComponent>(this, TEXT("HMDRotationFollower")); HMDRotationFollower->AttachTo(RootComponent); RecticleRoot = ObjectInitializer.CreateDefaultSubobject<USceneComponent>(this, TEXT("RecticleRoot")); RecticleRoot->SetRelativeLocation(FVector(RecticleDefaultDistance, 0.f, 0.f)); RecticleRoot->AttachTo(RootComponent); ConstructorHelpers::FObjectFinder<UPaperFlipbook> RecticleFlipbook(TEXT("PaperFlipbook'/Game/GUI/Recticle/RecticleFlipbook.RecticleFlipbook'")); checkf(RecticleFlipbook.Object, TEXT("Did not find PaperFlipbook'/Game/GUI/Recticle/RecticleFlipbook.RecticleFlipbook' - Maybe the asset was moved or renamed.")); Recticle = ObjectInitializer.CreateDefaultSubobject<UPaperFlipbookComponent>(this, TEXT("Recticle")); Recticle->AttachTo(RecticleRoot); Recticle->SetFlipbook(RecticleFlipbook.Object); Recticle->SetLooping(false); Recticle->SetCollisionEnabled(ECollisionEnabled::NoCollision); Recticle->SetCollisionProfileName(FName("NoCollision")); Recticle->bGenerateOverlapEvents = false; Recticle->SetEnableGravity(false); Recticle->SetRelativeRotation(FRotator(0.f, 90.f, 0.f)); Recticle->SetPlaybackPosition(0.f, false); Recticle->SetSpriteColor(RecticleColorNeutral); Recticle->Stop(); ActionIndicator = ObjectInitializer.CreateDefaultSubobject<UActionIndicationGizmo>(this, TEXT("ActionIndicator")); TouchpadGearVR = ObjectInitializer.CreateDefaultSubobject<UTouchpadGearVR>(this, TEXT("TouchpadGearVR")); BackKeyGearVR = ObjectInitializer.CreateDefaultSubobject<UBackKeyGearVR>(this, TEXT("BackKeyGearVR")); BackKeyGearVR->RegisterComponent(); } FVector APlayerPawn::GetPawnViewLocation() const { return Camera->GetComponentLocation(); } void APlayerPawn::OnConstruction(const FTransform& Transform) { Super::OnConstruction(Transform); } void APlayerPawn::BeginPlay() { Super::BeginPlay(); if (UHeadMountedDisplayFunctionLibrary::IsHeadMountedDisplayEnabled()) { UHeadMountedDisplayFunctionLibrary::EnableHMD(true); UHeadMountedDisplayFunctionLibrary::EnableLowPersistenceMode(true); } OnEngageMovmentDelegate.BindUFunction(this, TEXT("OnEngageMovement")); ActionIndicator->GetOnEngageMovementDelegate().Add(OnEngageMovmentDelegate); OnEngageAttackDelegate.BindUFunction(this, TEXT("OnEngageAttack")); ActionIndicator->GetOnEngageAttackDelegate().Add(OnEngageAttackDelegate); OnEngageInteractionDelegate.BindUFunction(this, TEXT("OnEngageInteraction")); ActionIndicator->GetOnEngageInteractionDelegate().Add(OnEngageInteractionDelegate); bBlockInput = false; AutoReceiveInput = EAutoReceiveInput::Player0; InputPriority = 1; SteeringAgentComponent->DisableSteering(); OnGearVRTouchpadTapDelegate.BindUFunction(this, TEXT("OnLookInteraction")); TouchpadGearVR->OnSingleTap.Add(OnGearVRTouchpadTapDelegate); OnGearVRBackKeyDelegate.BindUFunction(this, TEXT("OnBackKey")); BackKeyGearVR->OnBackClicked.Add(OnGearVRBackKeyDelegate); } void APlayerPawn::PossessedBy(AController* NewController) { Super::PossessedBy(NewController); EnableInput(Cast<APlayerController>(NewController)); } void APlayerPawn::Tick(float DeltaSeconds) { Super::Tick(DeltaSeconds); //TickFpsCounter(); UpdateLookAtActorAndRecticle(); if (ActionIndicator->IsActionIndicationEnabled()) { ActionIndicator->UpdateGizmoRepresentation( Camera->GetComponentLocation(), Camera->GetComponentRotation(), SelectedActor.Get(), CurrentLookAtActor.Get()); } } void APlayerPawn::SetupPlayerInputComponent(UInputComponent* InputComponent) { Super::SetupPlayerInputComponent(InputComponent); #if PLATFORM_ANDROID == 1 // Adding debug controls for editor and PC builds check(InputComponent); InputComponent->BindAction("LookInteraction", EInputEvent::IE_Pressed, this, &APlayerPawn::OnLookInteraction); InputComponent->BindAxis("LookRight", this, &APlayerPawn::OnLookRight); InputComponent->BindAxis("LookUp", this, &APlayerPawn::OnLookUp); #endif } void APlayerPawn::OnBackKey() { // Directly handled in Level Blueprint atm (needs to be handled here to cancel selections etc. } void APlayerPawn::OnLookInteraction() { UE_LOG(Generic, Warning, TEXT("APlayerPawn::OnLookInteraction")); if (CurrentLookAtActor.IsValid()) { ISelectableObject* CurrentLookAtSelectable = Cast<ISelectableObject>(CurrentLookAtActor.Get()); switch (CurrentLookAtSelectable->GetType()) { case ESelectableObjectType::Prop: case ESelectableObjectType::Resource: case ESelectableObjectType::EnemySpaceship: UE_LOG(Generic, Warning, TEXT("APlayerPawn::OnLookInteraction A")); CurrentLookAtSelectable->Select(); if (SelectedActor.IsValid()) { ISelectableObject* SelectedSelectable = Cast<ISelectableObject>(SelectedActor.Get()); SelectedSelectable->Deselect(); } SelectedActor = CurrentLookAtActor.Get(); break; case ESelectableObjectType::UI: UE_LOG(Generic, Warning, TEXT("APlayerPawn::OnLookInteraction B")); CurrentLookAtSelectable->Select(); // Do not save selection, just trigger the ui element break; case ESelectableObjectType::PlayerControlledSpaceship: UE_LOG(Generic, Warning, TEXT("APlayerPawn::OnLookInteraction C")); CurrentLookAtSelectable->Select(); ActionIndicator->DisableActionIndication(); if (SelectedActor.IsValid()) { ISelectableObject* SelectedSelectable = Cast<ISelectableObject>(SelectedActor.Get()); SelectedSelectable->Deselect(); } SelectedActor = CurrentLookAtActor.Get(); ActionIndicator->EnableActionIndication(); break; default: UE_LOG(Generic, Warning, TEXT("APlayerPawn::OnLookInteraction D")); break; } } else if (ActionIndicator->IsActionIndicationEnabled()) { UE_LOG(Generic, Warning, TEXT("APlayerPawn::OnLookInteraction E")); ActionIndicator->EnterSuccessiveState(); } } void APlayerPawn::OnLookRight(float Value) { FRotator Rotator(0.f, Value, 0.f); Camera->AddRelativeRotation(Rotator); } void APlayerPawn::OnLookUp(float Value) { FRotator Rotator(Value, 0.f, 0.f); Camera->AddRelativeRotation(Rotator); } void APlayerPawn::UpdateLookAtActorAndRecticle() { // Get the look orientation vector from the HMD or from the Camera rotation if no HMD is available FVector DeviceRotationVector; if (UHeadMountedDisplayFunctionLibrary::IsHeadMountedDisplayEnabled()) { FRotator DeviceRotation; FVector DevicePosition; UHeadMountedDisplayFunctionLibrary::GetOrientationAndPosition(DeviceRotation, DevicePosition); HMDRotationFollower->SetRelativeRotation(DeviceRotation); DeviceRotationVector = HMDRotationFollower->GetComponentRotation().Vector(); } else { DeviceRotationVector = Camera->GetComponentRotation().Vector(); } // Line Trace from camera in look orientation const FVector Start = GetPawnViewLocation(); const FVector End = Start + DeviceRotationVector * 100000; TArray<AActor*> ActorsToIgnore; ActorsToIgnore.Add(this); FHitResult HitData(ForceInit); UKismetSystemLibrary::LineTraceSingle_NEW(GetWorld(), Start, End, TRACE_TYPE_CAMERA, false, ActorsToIgnore, EDrawDebugTrace::None, HitData, true); TWeakObjectPtr<class AActor> LastLookAtActor = CurrentLookAtActor; CurrentLookAtActor = HitData.Actor; // Fire Gaze Events and reset Gaze cursor if no new actor was hit const bool bLookAtActorHasChanged = (LastLookAtActor != CurrentLookAtActor); if (bLookAtActorHasChanged) { // Fire GazeEnd Event if last looked at Selectable is valid if (LastLookAtActor.IsValid()) { ISelectableObject* LastLookAtSelectable = Cast<ISelectableObject>(LastLookAtActor.Get()); LastLookAtSelectable->GazeEnd(); } // Fire GazeBegin Event if current looked at Selectable is valid, also set the recticle color // according to Selectable type and play the Recticle animation if (CurrentLookAtActor.IsValid()) { ISelectableObject* CurrentLookAtSelectable = Cast<ISelectableObject>(CurrentLookAtActor.Get()); CurrentLookAtSelectable->GazeBegin(); switch (CurrentLookAtSelectable->GetType()) { case ESelectableObjectType::Prop: Recticle->SetSpriteColor(RecticleColorNeutral); break; case ESelectableObjectType::UI: Recticle->SetSpriteColor(RecticleColorInteract); break; case ESelectableObjectType::Resource: Recticle->SetSpriteColor(RecticleColorInteract); break; case ESelectableObjectType::EnemySpaceship: Recticle->SetSpriteColor(RecticleColorAttack); break; case ESelectableObjectType::PlayerControlledSpaceship: Recticle->SetSpriteColor(RecticleColorFriendly); break; } Recticle->SetPlayRate(RecticleAnimationRate); Recticle->PlayFromStart(); } else { // otherwise reset the Recticle scale, color and animation Recticle->SetSpriteColor(RecticleColorNeutral); RecticleRoot->SetRelativeScale3D(FVector(1.f)); Recticle->SetPlaybackPosition(0.f, false); Recticle->Stop(); } } // Update Recticle position and scale to match the distance to the currently looked at vector if (CurrentLookAtActor.IsValid()) { float HitDistance = (HitData.ImpactPoint - Start).Size(); RecticleRoot->SetWorldLocation(GetPawnViewLocation() + DeviceRotationVector * HitDistance); // TODO wrong position if PlayerPawn HMD rotation is not in World space RecticleRoot->SetRelativeScale3D(FVector(HitDistance / RecticleDefaultDistance)); } else { RecticleRoot->SetWorldLocation(GetPawnViewLocation() + DeviceRotationVector * RecticleDefaultDistance); } // Update the Recticle orientation to always face the player RecticleRoot->SetWorldRotation(FRotationMatrix::MakeFromX(GetPawnViewLocation() - RecticleRoot->GetComponentLocation()).Rotator()); } void APlayerPawn::OnEngageMovement(FVector TargetPosition) { if (SelectedActor.IsValid()) { UPlayerControlledSpaceshipBPFunctionLibrary::SteerToLocation(SelectedActor.Get(), TargetPosition); SelectedActor.Reset(); } } void APlayerPawn::OnEngageAttack(AActor* TargetActor) { if (SelectedActor.IsValid()) { IPlayerControlledSpaceship* Interface = Cast<IPlayerControlledSpaceship>(SelectedActor.Get()); } } void APlayerPawn::OnEngageInteraction(AActor* TargetActor) { if (SelectedActor.IsValid()) { IPlayerControlledSpaceship* Interface = Cast<IPlayerControlledSpaceship>(SelectedActor.Get()); } }
[ "mail@marcel-blanck.de" ]
mail@marcel-blanck.de
515091f7fbabed07386966f3d851fa5fe2aac74a
cdf069f16596a61d39d51e739cc8454deb132b38
/Game.cpp
ef40633872a2b875e678b7dcab5b9b5d9041e008
[]
no_license
YutaTachibana0310/hackathon0729
bfcb944d628fd3eaaaab80d242b18d10b190ba9a
b05f1324758351b4faafab2b28a5ddb650d51d27
refs/heads/master
2020-06-25T09:09:50.555342
2019-07-29T08:01:18
2019-07-29T08:01:18
199,267,811
0
0
null
2019-07-29T06:45:42
2019-07-28T09:32:36
C++
SHIFT_JIS
C++
false
false
6,276
cpp
//===================================== // //ゲーム処理[Game.cpp] //Author:GP12B332 21 立花雄太 // //===================================== #include "Game.h" #include "input.h" #include "light.h" #include "camera.h" #include "debugWindow.h" #include "debugTimer.h" #include "Framework\ResourceManager.h" #include "Framework\IStateScene.h" #include "TitleScene.h" #include "TutorialScene.h" #include "GameScene.h" #include "ResultScene.h" #include "sound.h" #include "soundEffectManager.h" #include "bgmManager.h" #include "HexaTransition.h" /************************************** マクロ定義 ***************************************/ /************************************** プロトタイプ宣言 ***************************************/ void CreateScreenVertexBuffer(); void CreateRenderTarget(); /************************************** グローバル変数 ***************************************/ //変更後のビューポート static D3DVIEWPORT9 viewPort; //描画用テクスチャ&サーフェイス static LPDIRECT3DTEXTURE9 renderTexture; static LPDIRECT3DSURFACE9 renderSurface; //Zマップ用テクスチャ&サーフェイス static LPDIRECT3DTEXTURE9 zMapTexture; static LPDIRECT3DSURFACE9 zMapSurface; //バックバッファへ描画するための頂点バッファ static LPDIRECT3DVERTEXBUFFER9 screenVtx; //シーン管理のステートマシン static IStateScene* fsm[SceneMax]; //現在のシーン static Scene currentScene = SceneTitle; /************************************** 初期化処理 ***************************************/ void InitGame(HINSTANCE hInstance, HWND hWnd) { LPDIRECT3DDEVICE9 pDevice = GetDevice(); CreateScreenVertexBuffer(); CreateRenderTarget(); InitInput(hInstance, hWnd); InitCamera(); InitLight(); InitDebugWindow(hWnd, pDevice); //ステートマシンに各シーンを追加 fsm[SceneTitle] = new TitleScene(); fsm[SceneGame] = new GameScene(); fsm[SceneResult] = new ResultScene(); fsm[SceneTutorial] = new TutorialScene(); HexaTransition::Instance()->LoadMaskTexture("data/TEXTURE/mask.png"); HexaTransition::Instance()->LoadTransitionTexture("data/TEXTURE/transition.jpg"); RegisterDebugTimer("Main"); InitSound(hWnd); InitBgmManager(0); InitSoundEffectManager(0); fsm[currentScene]->Init(); } /************************************** 終了処理 ***************************************/ void UninitGame() { UninitInput(); UninitLight(); UninitDebugWindow(0); UninitDebugTimer(); fsm[currentScene]->Uninit(); UninitSoundEffectManager(0); UninitBgmManager(0); UninitSound(); } /************************************** 更新処理 ***************************************/ void UpdateGame(HWND hWnd) { UpdateDebugWindow(); UpdateInput(); UpdateLight(); UpdateCamera(); fsm[currentScene]->Update(hWnd); HexaTransition::Instance()->Update(); UpdateBgmManager(); UpdateSoundEffectManager(); } /************************************** 描画処理 ***************************************/ void DrawGame() { LPDIRECT3DDEVICE9 pDevice = GetDevice(); //現在のビューポートを退避してレンダーターゲットを切り替え D3DVIEWPORT9 oldVirwPort; pDevice->GetViewport(&oldVirwPort); //バックバッファを退避してレンダーターゲットを切り替え LPDIRECT3DSURFACE9 oldSuf; pDevice->GetRenderTarget(0, &oldSuf); pDevice->SetRenderTarget(0, renderSurface); pDevice->Clear(0, NULL, (D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER | D3DCLEAR_STENCIL), D3DXCOLOR(0.0f, 0.0f, 0.1f, 1.0f), 1.0f, 0); //ステンシルマスク作成 HexaTransition::Instance()->DrawMask(); //オブジェクトを描画 SetCamera(); fsm[currentScene]->Draw(); //結果をバックバッファへと描画 pDevice->SetViewport(&oldVirwPort); pDevice->SetRenderTarget(0, oldSuf); SAFE_RELEASE(oldSuf); pDevice->SetTexture(0, renderTexture); pDevice->SetStreamSource(0, screenVtx, 0, sizeof(VERTEX_2D)); pDevice->SetFVF(FVF_VERTEX_2D); pDevice->DrawPrimitive(D3DPT_TRIANGLESTRIP, 0, NUM_POLYGON); //デバッグ表示 //#ifdef _DEBUG DebugLog("FPS:%d", GetCurrentFPS()); //#endif //トランジション描画 HexaTransition::Instance()->DrawTransition(); DrawDebugWindow(); } /************************************** 描画用頂点バッファ作成 ***************************************/ void CreateScreenVertexBuffer() { LPDIRECT3DDEVICE9 pDevice = GetDevice(); pDevice->CreateVertexBuffer(sizeof(VERTEX_2D) * NUM_VERTEX, D3DUSAGE_WRITEONLY, FVF_VERTEX_2D, D3DPOOL_MANAGED, &screenVtx, 0); VERTEX_2D *pVtx; screenVtx->Lock(0, 0, (void**)&pVtx, 0); pVtx[0].vtx = D3DXVECTOR3(0.0f, 0.0f, 0.0f); pVtx[1].vtx = D3DXVECTOR3(SCREEN_WIDTH, 0.0f, 0.0f); pVtx[2].vtx = D3DXVECTOR3(0.0f, SCREEN_HEIGHT, 0.0f); pVtx[3].vtx = D3DXVECTOR3(SCREEN_WIDTH, SCREEN_HEIGHT, 0.0f); pVtx[0].tex = D3DXVECTOR2(0.0f, 0.0f); pVtx[1].tex = D3DXVECTOR2(1.0f, 0.0f); pVtx[2].tex = D3DXVECTOR2(0.0f, 1.0f); pVtx[3].tex = D3DXVECTOR2(1.0f, 1.0f); pVtx[0].rhw = pVtx[1].rhw = pVtx[2].rhw = pVtx[3].rhw = 1.0f; pVtx[0].diffuse = pVtx[1].diffuse = pVtx[2].diffuse = pVtx[3].diffuse = D3DXCOLOR(1.0f, 1.0f, 1.0f, 1.0f); screenVtx->Unlock(); } /************************************** レンダーターゲット作成 ***************************************/ void CreateRenderTarget() { LPDIRECT3DDEVICE9 pDevice = GetDevice(); //レンダーテクスチャ作成 pDevice->CreateTexture(SCREEN_WIDTH, SCREEN_HEIGHT, 1, D3DUSAGE_RENDERTARGET, D3DFMT_X8R8G8B8, D3DPOOL_DEFAULT, &renderTexture, 0); renderTexture->GetSurfaceLevel(0, &renderSurface); //Zバッファ作成 //ビューポート作成 viewPort.Height = 2048; viewPort.Width = 2048; viewPort.MinZ = 0.0f; viewPort.MaxZ = 1.0f; viewPort.X = 0; viewPort.Y = 0; } /************************************** シーン変更処理 ***************************************/ void ChangeScene(Scene next) { fsm[currentScene]->Uninit(); ResourceManager::Instance()->AllRelease(); currentScene = next; fsm[currentScene]->Init(); } /************************************** レンダーターゲット作成 ***************************************/ LPDIRECT3DTEXTURE9 GetDrawDataTemp() { return renderTexture; }
[ "yuta.tachibana0310@gmail.com" ]
yuta.tachibana0310@gmail.com
f7e323da02b3c006eb23239cd88a4e8543e8ab9c
8567438779e6af0754620a25d379c348e4cd5a5d
/extensions/renderer/extension_frame_helper.h
518e9ca48510fd5edeab686658f27449acf1ec90
[ "BSD-3-Clause" ]
permissive
thngkaiyuan/chromium
c389ac4b50ccba28ee077cbf6115c41b547955ae
dab56a4a71f87f64ecc0044e97b4a8f247787a68
refs/heads/master
2022-11-10T02:50:29.326119
2017-04-08T12:28:57
2017-04-08T12:28:57
84,073,924
0
1
BSD-3-Clause
2022-10-25T19:47:15
2017-03-06T13:04:15
null
UTF-8
C++
false
false
5,975
h
// Copyright 2013 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 EXTENSIONS_RENDERER_EXTENSION_FRAME_HELPER_H_ #define EXTENSIONS_RENDERER_EXTENSION_FRAME_HELPER_H_ #include <vector> #include "base/callback_forward.h" #include "base/macros.h" #include "base/memory/weak_ptr.h" #include "content/public/common/console_message_level.h" #include "content/public/renderer/render_frame_observer.h" #include "content/public/renderer/render_frame_observer_tracker.h" #include "extensions/common/view_type.h" struct ExtensionMsg_ExternalConnectionInfo; struct ExtensionMsg_TabConnectionInfo; namespace base { class ListValue; } namespace extensions { class Dispatcher; struct Message; struct PortId; class ScriptContext; // RenderFrame-level plumbing for extension features. class ExtensionFrameHelper : public content::RenderFrameObserver, public content::RenderFrameObserverTracker<ExtensionFrameHelper> { public: ExtensionFrameHelper(content::RenderFrame* render_frame, Dispatcher* extension_dispatcher); ~ExtensionFrameHelper() override; // Returns a list of extension RenderFrames that match the given filter // criteria. A |browser_window_id| of extension_misc::kUnknownWindowId // specifies "all", as does a |view_type| of VIEW_TYPE_INVALID. static std::vector<content::RenderFrame*> GetExtensionFrames( const std::string& extension_id, int browser_window_id, int tab_id, ViewType view_type); // Returns the main frame of the extension's background page, or null if there // isn't one in this process. static content::RenderFrame* GetBackgroundPageFrame( const std::string& extension_id); // Returns true if the given |context| is for any frame in the extension's // event page. // TODO(devlin): This isn't really used properly, and should probably be // deleted. static bool IsContextForEventPage(const ScriptContext* context); ViewType view_type() const { return view_type_; } int tab_id() const { return tab_id_; } int browser_window_id() const { return browser_window_id_; } bool did_create_current_document_element() const { return did_create_current_document_element_; } // Called when the document element has been inserted in this frame. This // method may invoke untrusted JavaScript code that invalidate the frame and // this ExtensionFrameHelper. void RunScriptsAtDocumentStart(); // Called after the DOMContentLoaded event has fired. void RunScriptsAtDocumentEnd(); // Schedule a callback, to be run at the next RunScriptsAtDocumentStart // notification. Only call this when you are certain that there will be such a // notification, e.g. from RenderFrameObserver::DidCreateDocumentElement. // Otherwise the callback is never invoked, or invoked for a document that you // were not expecting. void ScheduleAtDocumentStart(const base::Closure& callback); // Schedule a callback, to be run at the next RunScriptsAtDocumentEnd call. void ScheduleAtDocumentEnd(const base::Closure& callback); private: // RenderFrameObserver implementation. void DidCreateDocumentElement() override; void DidCreateNewDocument() override; void DidMatchCSS( const blink::WebVector<blink::WebString>& newly_matching_selectors, const blink::WebVector<blink::WebString>& stopped_matching_selectors) override; void DidStartProvisionalLoad(blink::WebDataSource* data_source) override; void DidCreateScriptContext(v8::Local<v8::Context>, int world_id) override; void WillReleaseScriptContext(v8::Local<v8::Context>, int world_id) override; bool OnMessageReceived(const IPC::Message& message) override; void OnDestruct() override; // IPC handlers. void OnExtensionValidateMessagePort(const PortId& id); void OnExtensionDispatchOnConnect( const PortId& target_port_id, const std::string& channel_name, const ExtensionMsg_TabConnectionInfo& source, const ExtensionMsg_ExternalConnectionInfo& info, const std::string& tls_channel_id); void OnExtensionDeliverMessage(const PortId& target_port_id, const Message& message); void OnExtensionDispatchOnDisconnect(const PortId& id, const std::string& error_message); void OnExtensionSetTabId(int tab_id); void OnUpdateBrowserWindowId(int browser_window_id); void OnNotifyRendererViewType(ViewType view_type); void OnExtensionResponse(int request_id, bool success, const base::ListValue& response, const std::string& error); void OnExtensionMessageInvoke(const std::string& extension_id, const std::string& module_name, const std::string& function_name, const base::ListValue& args); // Type of view associated with the RenderFrame. ViewType view_type_; // The id of the tab the render frame is attached to. int tab_id_; // The id of the browser window the render frame is attached to. int browser_window_id_; Dispatcher* extension_dispatcher_; // Whether or not the current document element has been created. bool did_create_current_document_element_; // Callbacks to be run at the next RunScriptsAtDocumentStart notification. std::vector<base::Closure> document_element_created_callbacks_; // Callbacks to be run at the next RunScriptsAtDocumentEnd notification. std::vector<base::Closure> document_load_finished_callbacks_; bool delayed_main_world_script_initialization_ = false; base::WeakPtrFactory<ExtensionFrameHelper> weak_ptr_factory_; DISALLOW_COPY_AND_ASSIGN(ExtensionFrameHelper); }; } // namespace extensions #endif // EXTENSIONS_RENDERER_EXTENSION_FRAME_HELPER_H_
[ "hedonist.ky@gmail.com" ]
hedonist.ky@gmail.com
dcb1a3aa35b87dc2489e79078c6a97aa6afb566f
dc82aa7c48922d025d221abad79cc25cd75ddebb
/Repetitivas_02_3.cpp
dac2d88a2bfccac8a620505f0660a505a690f971
[]
no_license
xnadal/ejerc
14331a853c6f95201c906ac1b4855d115684aa2a
fd00e828ec94f76f7866dfc2625925ebbfc81fdd
refs/heads/master
2021-01-23T16:36:59.661970
2013-06-13T20:42:47
2013-06-13T20:42:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,808
cpp
// FECHA: 10/05/2013 // AUTOR: // DESCRIPCIÓN: // Muestra el funcionamiento de las sentencias repetitivas (0-n) y (1-n). // y suma los contadores de las iteraciones (punto 2 de la practica) // pide un numero en cada iteracion y lo va sumando al acumulado (punto 3) // // ENTRADAS: número de repeticiones (enteros). Numeros introducidos (enteros). // SALIDAS: texto indicando el número de la iteración. Suma de contadores. // Suma de los numeros introducidos. #include <iostream> #include <stdlib.h> using namespace std; // PROGRAMA PRINCIPAL int main() { int repe,i,contador,numero,acumulado; // EJEMPLO DE SENTENCIA REPETITIVA 1-N i=0; contador=0; acumulado=0; cout <<"¿cuántas veces quieres repetir el bucle 1-n ?:"; cin >> repe; do{ cout <<"ESTAMOS EN LA REPETICION :" << i + 1 << endl ; contador += i + 1; cout <<"LA SUMA DE LOS CONTADORES ES :" << contador << endl ; cout << "Introduce un numero entero: " << endl; cin >> numero; acumulado += numero; //system("PAUSE"); i++; } while (i < repe); cout << "La suma de los numeros introducidos es: " << acumulado << endl; // EJEMPLO DE SENTENCIA REPETITIVA 0-N i=0; contador=0; acumulado=0; cout <<"¿cuántas veces quieres repetir el bucle 0-n ?:"; cin >> repe; while (i < repe) { cout <<"ESTAMOS EN LA REPETICION :" << i + 1 << endl ; //system("PAUSE"); contador += i + 1; cout <<"LA SUMA DE LOS CONTADORES ES :" << contador << endl ; cout << "Introduce un numero entero: " << endl; cin >> numero; acumulado += numero; i++; } cout << "La suma de los numeros introducidos es: " << acumulado << endl; // FIN cout <<"!! ADIOS !!" << endl ; // system("PAUSE"); return 0; }
[ "xnadal@yahoo.es" ]
xnadal@yahoo.es
451d6aaf33e0eb941d690baca8d83910f088b4e2
9dec5c1499388fdbda3669ef0c1f71fe11764a09
/level6/section4.2b/exercise1/array.cpp
0ac7b3ddafec5d231d72d3086f60901cff128819
[]
no_license
lfamarantine/baruch_cpp_for_fe
de087762815af3f2105244093a86c7de2d1958d1
2bd6f5754a965cd0659db2145b76108c73623778
refs/heads/master
2023-05-10T15:38:06.082330
2021-06-14T09:14:36
2021-06-14T09:14:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,096
cpp
// source file of array class #ifndef _Array_CPP_ #define _Array_CPP_ #include "array.hpp" #include "outofboundsexception.hpp" #include <iostream> using namespace std; template <class T> int Array<T>::default_size = 10; // set default size // constructor template <class T> Array<T>::Array() : m_data(new T[default_size]), m_size(default_size) { // default to create an array with 10 point } template <class T> Array<T>::Array(int size) : m_data(new T[size]), m_size(size) { } template <class T> Array<T>::Array(const Array<T>& arr) : m_data(new T[arr.m_size]), m_size(arr.m_size) { for (int i = 0; i < m_size; i++) { m_data[i] = arr.m_data[i]; } } // destructor template <class T> Array<T>::~Array() { delete[] m_data; } // operator overloading template <class T> Array<T>& Array<T>::operator = (const Array<T>& arr) { if (this == &arr) { return *this; } delete[] m_data; // delete original object at first m_data = new T[arr.m_size]; m_size = arr.m_size; for (int i = 0; i < m_size; i++) { m_data[i] = arr.m_data[i]; } return *this; } template <class T> T& Array<T>::operator [] (int idx) { if (idx >= m_size | idx < 0) { throw OutOfBoundsException(idx); } return m_data[idx]; } template <class T> const T& Array<T>::operator [] (int idx) const { if (idx >= m_size | idx < 0) { throw OutOfBoundsException(idx); } return m_data[idx]; } // accessor template <class T> int Array<T>::Size() const { return m_size; } template <class T> T& Array<T>::GetElement(int idx) const { if (idx >= m_size | idx < 0) { throw OutOfBoundsException(idx); } return m_data[idx]; } // modifier template <class T> void Array<T>::SetElement(int idx, const T& p) { if (idx >= m_size | idx < 0) { throw OutOfBoundsException(idx); } m_data[idx] = p; } // static get template <class T> int Array<T>::DefaultSize() { return default_size; } // static set template <class T> void Array<T>::DefaultSize(int size) { default_size = size; } #endif
[ "yxyoung128@gmail.com" ]
yxyoung128@gmail.com
a9afca636e02103b36d094089f721f6d0654dab3
48298469e7d828ab1aa54a419701c23afeeadce1
/Client/SceneEdit/Xerces/src/xercesc/dom/DOMEntityReference.hpp
2e244bb2a9d3a266f0f069f2502388692e99f15c
[ "Apache-2.0" ]
permissive
brock7/TianLong
c39fccb3fd2aa0ad42c9c4183d67a843ab2ce9c2
8142f9ccb118e76a5cd0a8b168bcf25e58e0be8b
refs/heads/master
2021-01-10T14:19:19.850859
2016-02-20T13:58:55
2016-02-20T13:58:55
52,155,393
5
3
null
null
null
null
UTF-8
C++
false
false
3,657
hpp
#ifndef DOMEntityReference_HEADER_GUARD_ #define DOMEntityReference_HEADER_GUARD_ /* * Copyright 2001-2002,2004 The Apache Software Foundation. * * 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. */ /* * $Id: DOMEntityReference.hpp 176280 2005-01-07 15:32:34Z amassari $ */ #include <../../../SceneEdit/Xerces/src/xercesc/util/XercesDefs.hpp> #include <xercesc/dom/DOMNode.hpp> XERCES_CPP_NAMESPACE_BEGIN /** * <code>DOMEntityReference</code> objects may be inserted into the structure * model when an entity reference is in the source document, or when the * user wishes to insert an entity reference. Note that character references * and references to predefined entities are considered to be expanded by * the HTML or XML processor so that characters are represented by their * Unicode equivalent rather than by an entity reference. Moreover, the XML * processor may completely expand references to entities while building the * structure model, instead of providing <code>DOMEntityReference</code> * objects. If it does provide such objects, then for a given * <code>DOMEntityReference</code> node, it may be that there is no * <code>DOMEntity</code> node representing the referenced entity. If such an * <code>DOMEntity</code> exists, then the subtree of the * <code>DOMEntityReference</code> node is in general a copy of the * <code>DOMEntity</code> node subtree. However, this may not be true when an * entity contains an unbound namespace prefix. In such a case, because the * namespace prefix resolution depends on where the entity reference is, the * descendants of the <code>DOMEntityReference</code> node may be bound to * different namespace URIs. * <p>As for <code>DOMEntity</code> nodes, <code>DOMEntityReference</code> nodes and * all their descendants are readonly. * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>. * * @since DOM Level 1 */ class CDOM_EXPORT DOMEntityReference: public DOMNode { protected: // ----------------------------------------------------------------------- // Hidden constructors // ----------------------------------------------------------------------- /** @name Hidden constructors */ //@{ DOMEntityReference() {} DOMEntityReference(const DOMEntityReference &other) : DOMNode(other) {} //@} private: // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- /** @name Unimplemented operators */ //@{ DOMEntityReference & operator = (const DOMEntityReference &); //@} public: // ----------------------------------------------------------------------- // All constructors are hidden, just the destructor is available // ----------------------------------------------------------------------- /** @name Destructor */ //@{ /** * Destructor * */ virtual ~DOMEntityReference() {}; //@} }; XERCES_CPP_NAMESPACE_END #endif
[ "xiaowave@gmail.com" ]
xiaowave@gmail.com
1f76a6aac6f97fd9601978abb2e3d4132196c451
e6ff9c3f5f38cbf318543c2dd95f1678567cdfdc
/Exercises/Exercise 14/maze.cpp
89edd2193fd70074e03d83098e91e6ffb83c8275
[]
no_license
fmi-lab/up-2018-kn-group3-sem
5167097d222d4c3223211a17a5a34d1f1cf71457
2e2f6bc576bffe9119c7848f21b4c0d40e82cf74
refs/heads/master
2020-04-01T23:12:18.147524
2019-01-18T12:14:09
2019-01-18T12:14:09
153,747,905
0
1
null
null
null
null
UTF-8
C++
false
false
3,614
cpp
#include<iostream> #include<iomanip> using namespace std; int mazeM[8][8] = { {0,1,0,0,0,1,0,0}, {0,1,0,0,0,1,0,0}, {0,1,0,0,1,1,1,1}, {0,1,0,1,0,0,0,0}, {0,1,0,1,1,1,0,0}, {0,0,0,0,0,0,0,0}, {0,1,0,1,1,1,0,1}, {0,1,0,1,1,0,0,0} }; bool walkable(int maze[8][8], int X, int Y){ if(X<0 || Y<0 || X>7 || Y>7 || maze[X][Y] != 0){ return false; } return true; } bool way(int maze[8][8], int startX, int startY, int endX, int endY){ maze[startX][startY] = 2; bool result = false; if(startX == endX && startY == endY){ return true; } if(walkable(maze, startX + 1, startY)){ result = result || way(maze, startX + 1, startY, endX, endY); } if(walkable(maze, startX, startY + 1)){ result = result || way(maze, startX, startY + 1, endX, endY); } if(walkable(maze, startX - 1, startY)){ result = result || way(maze, startX - 1, startY, endX, endY); } if(walkable(maze, startX, startY - 1)){ result = result || way(maze, startX, startY - 1, endX, endY); } return result; } bool findWay(int maze[8][8], int startX, int startY, int endX, int endY){ bool result = false; if(startX == endX && startY == endY){ return true; } if(walkable(maze, startX + 1, startY)){ maze[startX+1][startY] = 10; result = findWay(maze, startX + 1, startY, endX, endY); if(result) return result; } if(walkable(maze, startX, startY + 1)){ maze[startX][startY+1] = 11; result = findWay(maze, startX, startY + 1, endX, endY); if(result) return result; } if(walkable(maze, startX - 1, startY)){ maze[startX-1][startY] = 12; result = findWay(maze, startX - 1, startY, endX, endY); if(result) return result; } if(walkable(maze, startX, startY - 1)){ maze[startX][startY-1] = 13; result = findWay(maze, startX, startY - 1, endX, endY); if(result) return result; } return result; } void printMaze(int maze[8][8]){ for(int i = 0; i<8; i++){ for(int j = 0; j<8; j++){ cout<<setw(3)<<maze[i][j]; } cout<<endl; } } void printMazeRecHelper(int maze[8][8], int currX, int currY){ cout<<setw(3)<<maze[currX][currY]; if(currY < 7){ printMazeRecHelper(maze, currX, currY + 1); } else if(currX < 7){ cout<<endl; printMazeRecHelper(maze, currX + 1, 0); } } void printMazeRec(int maze[8][8]){ printMazeRecHelper(maze, 0, 0); } void printWay(int maze[8][8], int startX, int startY, int endX, int endY){ if(startX != endX || startY != endY){ if(maze[endX][endY] == 10){ cout<<endX<<' '<<endY<<endl; printWay(maze, startX, startY, endX - 1, endY); } if(maze[endX][endY] == 11){ cout<<endX<<' '<<endY<<endl; printWay(maze, startX, startY, endX, endY - 1); } if(maze[endX][endY] == 12){ cout<<endX<<' '<<endY<<endl; printWay(maze, startX, startY, endX + 1, endY); } if(maze[endX][endY] == 13){ cout<<endX<<' '<<endY<<endl; printWay(maze, startX, startY, endX, endY + 1); } } } bool findAndPrintWay(int maze[8][8], int startX, int startY, int endX, int endY){ bool result = findWay(maze, startX, startY, endX, endY); if (result){ printWay(maze, startX, startY, endX, endY); } return result; } int main(){ printMazeRec(mazeM); cout<<endl; findAndPrintWay(mazeM, 0, 0, 1, 4); printMaze(mazeM); }
[ "penkov.dimit@gmail.com" ]
penkov.dimit@gmail.com
ef36b1345877cbcaca299cbb7855091258faba03
e272d18a042e6b6808bc615917b1783d53607870
/done/1144.cpp
95f72c8dbac974eb9557d1eabb1259d1f9311bb4
[]
no_license
chessdroid/morbidel-timus
58656c7a62132aaae71289a20ee77baeca4ba554
b079bf3ae716d4eeb54722037ac55066f9e9da7c
refs/heads/master
2020-07-10T02:20:08.032088
2013-04-11T20:48:39
2013-04-11T20:48:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,876
cpp
/* * ACM Timus Online * Emperor's Riddle - Problem 1144 * * solutie: luate de pe forum si adaptata de Radu * un greedy dubios... le sorteaza dupa marime... */ #include <stdio.h> #include <stdlib.h> #include <string.h> #define NMAX 10000 #define MMAX 1000 #define INF 666666666 #define min(a, b) ((a) < (b) ? (a) : (b)) typedef int mang[NMAX+2]; typedef int mang1[NMAX+1]; typedef int mang2[NMAX+1]; typedef int mang3[15001]; typedef int mang4[NMAX+1]; typedef int heap_type[NMAX+1]; mang A, B, C, Cs, Kq, Sol; mang1 Tt; mang2 T; mang3 D; mang4 Chua; heap_type heap; int N, M, K, Max, Kl, S; int Tong, Ct, Cd, Dich, Imin, Imax; int Kt; int S1, S2; int _t; #define swap(a, b) (_t = a, a = b, b = _t) int cmp(const void *a, const void *b) { return *(int*)a - *(int*)b; } int cmp2(const void *a, const void *b) { return *(int*)b - *(int*)a; } void sort(mang a, int N, int d) { int cacat[NMAX+1][2], i; for (i = 1; i <= N; i++) cacat[i-1][0] = a[i], cacat[i-1][1] = Cs[i]; qsort(cacat, N, 2*sizeof(int), d ? cmp : cmp2); for (i = 1; i <= N; i++) a[i] = cacat[i-1][0], Cs[i] = cacat[i-1][1]; } void init_cs() { int i; for (i = 1; i <= N; i++) Cs[i] = i; } void print() { int i; printf("%d\n", Kl); init_cs(); sort(Sol, N, 0); for (i = 1; i <= N; i++) { printf("%d ", Cs[i]); if (Sol[i] != Sol[i+1]) printf("\n"); } } void sort_a() { memcpy(B, A, sizeof(A)); init_cs(); sort(A, N, 0); Kl = INF; } void init_tt() { int i; for (i = 1; i <= M; i++) Tt[i] = i; } #define min(a, b) ((a) < (b) ? (a) : (b)) #define fiu (p = (2*i >= M || heap[2*i] < heap[2*i+1]) ? 2*i : 2*i+1) void sift() { int i, p; for (i = 1; fiu <= M && heap[p] < heap[i]; i = p) { swap(heap[i], heap[p]); swap(Tt[i], Tt[p]); } } void initheap() { init_tt(); memset(heap, 0, sizeof(heap)); heap[0] = -1, Max = 0; } void greedy() { int i; for (i = 1; i <= N; i++) { heap[1] += A[i]; if (heap[1] > Max) Max = heap[1]; Kq[Cs[i]] = Tt[1]; sift(); } } void update() { if (Max - heap[1] < Kl) { Kl = Max - heap[1]; memcpy(Sol, Kq, sizeof(Kq)); } } /* void shuffle() { int i, a, b; for (i = 1; i <= N; i++) { a = rand()%N+1, b = rand()%N+1; swap(A[a], A[b]); swap(Cs[a], Cs[b]); } } */ void get_t() { int i; memset(T, 0, sizeof(T)); for (i = 1; i <= N; i++) T[Sol[i]] += B[i]; } void get_cd_ct() { int i; Cd = INF, Ct = 0; for (i = 1; i <= M; i++) { if (Cd > T[i]) Cd = T[i], Imin = i; if (Ct < T[i]) Ct = T[i], Imax = i; } Tong = Cd+Ct; Dich = Tong/2; if (Kl > Ct-Cd) Kl = Ct-Cd; } void get_c() { int i; for (S = 0, i = 1; i <= N; i++) if (Sol[i] == Imin || Sol[i] == Imax) C[++S] = B[i], Cs[S] = i; } void sort_c() { sort(C, S, 1); } void meo_vat() { int i; sort_c(); S1 = S2 = 0; if (S >= 15) { for (i = S; i >= 15 /*S/20*/; i--) if (S1 <= S2) S1 += C[i], Sol[Cs[i]] = Imin; else S2 += C[i], Sol[Cs[i]] = Imax; S = 14; /*S/20-1*/ } Dich = Tong/2 - S1; } void get_d() { int i, j, max; memset(D, 0, sizeof(D)); max = 0, D[0] = S+1; for (i = 1; i <= S; i++) { for (j = max; j >= 0; j--) if (D[j] > 0 && j+C[i] <= Dich && D[j+C[i]] == 0) D[j+C[i]] = i; max += C[i]; if (max > Dich) max = Dich; if (D[Dich] == 1) break; } while (!D[Dich]) Dich--; } void updatekt() { Kt = (Ct-Cd <= K); } void mumu() { int i, j; for (i = 0; i <= NMAX; i++) Chua[i] = 1; i = Dich; do { j = D[i]; Sol[Cs[j]] = Imin; Chua[j] = 0; i -= C[j]; } while (D[i] != S+1); for (i = 1; i <= S; i++) if (Chua[i]) Sol[Cs[i]] = Imax; T[Imin] = Dich+S1; T[Imax] = Tong-T[Imin]; } void cai_tien() { get_t(); do { get_cd_ct(); get_c(); if (Tong > 5000) meo_vat(); get_d(); updatekt(); mumu(); } while (!Kt); } void solve() { initheap(); greedy(); update(); if (Kl > K) cai_tien(); } void read_data() { int i; scanf("%d %d %d", &N, &M, &K); for (i = 1; i <= N; i++) scanf("%d", A+i); } int main() { //freopen("in", "rt", stdin); read_data(); sort_a(); solve(); print(); return 0; }
[ "stefangh@gmail.com" ]
stefangh@gmail.com
b103f3fed7a1cff7da98c4578cd95331ae2a33d7
b11c1346faff5041bf94d300e821448fbe2a18f2
/01HelloWinRT/Debug/Generated Files/winrt/impl/Windows.Security.Authorization.AppCapabilityAccess.1.h
3663b2871dba8720d7605cc37f8e29f81d03c39d
[]
no_license
ShiverZm/CxxWinRT_Learn
72fb11742e992d1f60b86a0eab558ee2f244d8f1
66d1ec85500c5c8750f826ed1b6a2199f7b72bbe
refs/heads/main
2023-01-19T12:09:59.872143
2020-11-29T16:15:54
2020-11-29T16:15:54
316,984,477
0
0
null
null
null
null
UTF-8
C++
false
false
1,501
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.190404.8 #ifndef WINRT_Windows_Security_Authorization_AppCapabilityAccess_1_H #define WINRT_Windows_Security_Authorization_AppCapabilityAccess_1_H #include "winrt/impl/Windows.Security.Authorization.AppCapabilityAccess.0.h" namespace winrt::Windows::Security::Authorization::AppCapabilityAccess { struct WINRT_EBO IAppCapability : Windows::Foundation::IInspectable, impl::consume_t<IAppCapability> { IAppCapability(std::nullptr_t = nullptr) noexcept {} IAppCapability(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {} }; struct WINRT_EBO IAppCapabilityAccessChangedEventArgs : Windows::Foundation::IInspectable, impl::consume_t<IAppCapabilityAccessChangedEventArgs> { IAppCapabilityAccessChangedEventArgs(std::nullptr_t = nullptr) noexcept {} IAppCapabilityAccessChangedEventArgs(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {} }; struct WINRT_EBO IAppCapabilityStatics : Windows::Foundation::IInspectable, impl::consume_t<IAppCapabilityStatics> { IAppCapabilityStatics(std::nullptr_t = nullptr) noexcept {} IAppCapabilityStatics(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::IInspectable(ptr, take_ownership_from_abi) {} }; } #endif
[ "1113673178@qq.com" ]
1113673178@qq.com
070c8b99a17e2d3f9747547bf4b5f1bd0b6e7abb
9e15ab238833565cee000fe37f213e4fabceda1b
/hls/xilinx_design/examples/design/dsp/nco/nco_tb.cpp
244d165d8684d6812e0e2c074b71feb126d30de9
[]
no_license
Bounce00/fpga
1d40989b4fed96c04f0c9304f20ba504f221f4ec
6baf0ff8519cfa066978b68471d7a2f8d3270e17
refs/heads/master
2020-03-28T13:32:38.290566
2018-09-14T01:41:34
2018-09-14T01:41:34
148,403,665
0
0
null
2018-09-14T01:41:35
2018-09-12T01:35:38
C++
UTF-8
C++
false
false
12,264
cpp
/***************************************************************************** * * Author: Xilinx, Inc. * * This text contains proprietary, confidential information of * Xilinx, Inc. , is distributed by under license from Xilinx, * Inc., and may be used, copied and/or disclosed only pursuant to * the terms of a valid license agreement with Xilinx, Inc. * * XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" * AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND * SOLUTIONS FOR XILINX DEVICES. BY PROVIDING THIS DESIGN, CODE, * OR INFORMATION AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, * APPLICATION OR STANDARD, XILINX IS MAKING NO REPRESENTATION * THAT THIS IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT, * AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE * FOR YOUR IMPLEMENTATION. XILINX EXPRESSLY DISCLAIMS ANY * WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE * IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR * REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF * INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE. * * Xilinx products are not intended for use in life support appliances, * devices, or systems. Use in such applications is expressly prohibited. * * (c) Copyright 2014 Xilinx Inc. * All rights reserved. * *****************************************************************************/ //Example testbench for the HLS DSP library NCO function //Glossary //PINC - Phase Increment //POFF - Phase Offset //SSR - Super Sample Rate, where more than one sample of sin and cos is output per call. #include "math.h" #include "ap_int.h" #include "nco.h" #include <string> #include <fstream> // Enable the following if output to stdout is desired. const bool VERBOSE_OUTPUT = false; // Maximum phase accumulator width const int MAX_WIDTH = 48; ap_uint<MAX_WIDTH> fn_get_tolerance(int accumWidth, int outputWidth) { if (accumWidth < outputWidth) { //Since the phase difference between samples is measured, this can be up to twice the //phase error in a sample. The phase error in a sample can be up to 2ulp because of //rounding errors in the output values (sin, cos) and in the arctan function, hence //tolerate up to 4 ulp. return (1 << 2); } else { //Here, the error is dominated by the output, since it is less precise, so scale the //tolerance accordingly. return (ap_uint<MAX_WIDTH>)1 << (accumWidth-outputWidth+2); } } int main() { const int PINC_INTERVAL = 100; //interval in samples between changes to stimulus value. const int poffInterval = 150; const int NUM_SAMPLES = 2000; ap_uint<ACCUM_WIDTH> pincSample, poffSample; hls::stream< ap_uint<ACCUM_WIDTH> > pincSampleQueue("PINC sample queue"), poffSampleQueue("POFF sample queue"); //a queue of values to stimulate the function with. //pinc and poff are the streams used for input to the core function hls::stream<ap_uint<ACCUM_WIDTH> > pinc("PINC"); hls::stream<ap_uint<ACCUM_WIDTH> > poff("POFF"); hls::stream< hls::t_nco_output_data<SUPER_SAMPLE_RATE, OUTPUT_WIDTH> > outputVal("NCO output data"); hls::stream<ap_uint<OUTPUT_WIDTH> > sinValidationStream("Sine validation"); //similar to sinVal, but each entry is a single value rather than a vector <SuperSampleRate> hls::stream<ap_uint<OUTPUT_WIDTH> > cosValidationStream("Cosine validation"); ap_int<OUTPUT_WIDTH> sinSingleSample,cosSingleSample; hls::t_nco_output_data<SUPER_SAMPLE_RATE, OUTPUT_WIDTH> outputSample; double measPhaseDouble; ap_uint<ACCUM_WIDTH> measPhase = 0, oldMeasPhase = 0; ap_uint<ACCUM_WIDTH> expectedPinc = 0, expectedPoff = 0, currentPhaseAcc = 0, expectedPhase, nextPinc= INIT_PINC, nextPoff = INIT_POFF; ap_uint<ACCUM_WIDTH> measError; int expectedPincChange = (SUPER_SAMPLE_RATE == 1 ? 0 : (SUPER_SAMPLE_RATE >> 1)+1); int expectedPoffChange = (SUPER_SAMPLE_RATE == 1 ? 0 : (SUPER_SAMPLE_RATE >> 1)+1); ap_uint<MAX_WIDTH> phaseTolerance = fn_get_tolerance(ACCUM_WIDTH, OUTPUT_WIDTH); int correct_tally = 0, wrong_tally = 0; int channel; //when SSR > 1 channel is a loop counter for the individual values within the output sample //Because the SSR always starts with an interrupt as though values had changed, //before the proxy has anything, expect 0's to start with on output. //Following that, the initial values should show through. //PINC stimulus values pincSampleQueue.write(200); pincSampleQueue.write(25001 % ((ap_uint<ACCUM_WIDTH+1>)1 << ACCUM_WIDTH)); pincSampleQueue.write( ((ap_uint<ACCUM_WIDTH+1>)1 << ACCUM_WIDTH) -100); //negative steps pincSampleQueue.write( (ap_uint<ACCUM_WIDTH+1>)3 << (ACCUM_WIDTH-5) ); //fixed angle, regardless of accum_width pincSampleQueue.write(15); //POFF stimulus values poffSampleQueue.write(50); poffSampleQueue.write(400); if (SUPER_SAMPLE_RATE == 1) { pincSample = INIT_PINC; poffSample = INIT_POFF; } for (int i = 0; i < NUM_SAMPLES; i++) { //Stimulate input streams if (SUPER_SAMPLE_RATE > 1) { //Note that when SSR > 1 the PINC stream FIFO is used to detect a new PINC value. //When there is a new PINC value the NCO will enter an interrupt period which itself cannot be interrupted. //Therefore, PINC values are not written to the NCO function on every call. They are only written when the value changes. if (i % poffInterval == poffInterval -1) { if (!poff.full() && !poffSampleQueue.empty()) { //write to dat files poffSampleQueue.read(poffSample); poff.write(poffSample); expectedPoffChange = i; nextPoff = poffSample; } } if (i % PINC_INTERVAL == PINC_INTERVAL -1 ) { if (!pinc.full() && !pincSampleQueue.empty()) { pincSampleQueue.read(pincSample); pinc.write(pincSample); expectedPincChange = i + (SUPER_SAMPLE_RATE >> 1)+1; nextPinc = pincSample; //Since a change to PINC will force an interrupt, any change to POFF during that interrupt will not be seen //until the end of that interrupt, so any pending change to POFF must be delayed until the expected PINC change. if (expectedPoffChange == i) { expectedPoffChange = expectedPincChange; } } } } else { //SSR ==1 //With SSR == 1 there is no interrupt, so changes to PINC or POFF occur immediately (ignoring post-synthesis latency) if (i % poffInterval == poffInterval -1) { if (!poffSampleQueue.empty()) { //write to dat files poffSampleQueue.read(poffSample); nextPoff = poffSample; expectedPoff = nextPoff; } } if (i % PINC_INTERVAL == PINC_INTERVAL -1 ) { if (!pincSampleQueue.empty()) { pincSampleQueue.read(pincSample); nextPinc = pincSample; expectedPinc = nextPinc; } } if (!pinc.full()) { pinc.write(pincSample); } if (!poff.full()) { poff.write(poffSample); } } //Execution nco_top(pinc, poff, outputVal); //Read output into stream //For every one sinVal there will be SSR writes to the validation stream. while(!outputVal.empty()) { outputVal.read(outputSample); for (int j = 0; j<SUPER_SAMPLE_RATE; j++) { if (VERBOSE_OUTPUT) { std::cout << "cosSample = " << std::hex << outputSample.outputValue[j].real() << std::dec << std::endl; std::cout << "sinSample = " << std::hex << outputSample.outputValue[j].imag() << std::dec << std::endl; } cosSingleSample = outputSample.outputValue[j].real(); cosValidationStream << cosSingleSample; sinSingleSample = outputSample.outputValue[j].imag(); sinValidationStream << sinSingleSample; } } if (i == expectedPincChange) { expectedPinc = nextPinc; if (VERBOSE_OUTPUT) { std::cout << "Change of expectedPinc = " << expectedPinc << std::endl; } } if (i == expectedPoffChange) { expectedPoff = nextPoff; if (VERBOSE_OUTPUT) { std::cout << "Change of expectedPoff = " << expectedPoff << std::endl; } } //Validate function output channel = 0; while(!sinValidationStream.empty()) { //strictly speaking this should test cosValidationStream too, but they should be in lock-step. A single stream of a struct holding both values could also be used. sinSingleSample = sinValidationStream.read(); cosSingleSample = cosValidationStream.read(); //arctan returns radians, but PINC and POFF are in terms of 2*pi/2^(AccumWidth), so it is necessary to scale. measPhaseDouble = atan2(sinSingleSample,cosSingleSample)*((ap_uint<ACCUM_WIDTH+1>)1 << ACCUM_WIDTH)/(2*M_PI); measPhase = (ap_uint<ACCUM_WIDTH>)(measPhaseDouble+0.5); //simple rounding if (VERBOSE_OUTPUT) { std::cout << "measPhaseDouble = " << measPhaseDouble << std::endl; std::cout << "sample = " << i << " channel = " << channel << std::endl; std::cout << "sin = " << sinSingleSample << std::endl; std::cout << "cos = " << cosSingleSample << std::endl; std::cout << "measPhase = " << measPhase << " diff = " << (measPhase-oldMeasPhase) << std::endl; oldMeasPhase = measPhase; channel++; } //Predict what the measured phase ought to be. expectedPhase = (currentPhaseAcc + expectedPinc + expectedPoff); measError = (ap_uint<ACCUM_WIDTH>)(abs(expectedPhase - measPhase)); //trap the case where the error is approx 359 degrees. if (measError > (ap_uint<ACCUM_WIDTH+1>)1 << (ACCUM_WIDTH-1)) { //i.e. >180 degress measError = ((ap_uint<ACCUM_WIDTH+1>)1 << ACCUM_WIDTH) - measError; } if (VERBOSE_OUTPUT) { std::cout << "expectedPhase = " << expectedPhase << " currentPhaseAcc = " << currentPhaseAcc << " expectedPinc = " << expectedPinc << " expectedPoff = " << expectedPoff << std::endl; std::cout << "measError = " << measError << std::endl; } if ( measError < phaseTolerance ) { if (VERBOSE_OUTPUT) { std::cout << "Phase as expected. Phase error = " << measError << " Phase Tolerance = " << phaseTolerance << std::endl; } //reset estimate of nco's phase accumulator on each tick rather than allow errors to accumulate (drift) currentPhaseAcc = (ap_uint<ACCUM_WIDTH>)(measPhase - expectedPoff); correct_tally++; } else { std::cout << "Error: output phase is not as expected." << std::endl; std::cout << "Expected = " << expectedPhase << " got = " << measPhase << std::endl; std::cout << "ExpectedPinc = " << expectedPinc << " ExpectedPoff = " << expectedPoff << std::endl; std::cout << "i.e. measError = " << measError << std::endl; std::cout << "Sample = " << i << std::endl; std::cout << "sin = " << sinSingleSample << std::endl; std::cout << "cos = " << cosSingleSample << std::endl; std::cout << "measPhase = " << measPhase << std::endl; std::cout << "currentPhaseAcc = " << currentPhaseAcc << std::endl; std::cout << "nextPinc = " << nextPinc << std::endl; std::cout << "nextPoff = " << nextPoff << std::endl; wrong_tally++; } //end of if measErr < phaseTolerance } //end of while (validation) if (VERBOSE_OUTPUT) { std::cout << std::endl; } } //end of for i (sample loop) //Report out results if (wrong_tally == 0 && correct_tally == NUM_SAMPLES*SUPER_SAMPLE_RATE) { std::cout << "Test completed successfully. " << correct_tally << " samples tested" << std::endl; return 0; } else { std::cout << "Test FAILURE!" << std::endl; std::cout << "Number of samples within tolerance = " << correct_tally << std::endl; std::cout << "Number of samples out of tolerance = " << wrong_tally << std::endl; return 1; } } //end of function main // XSIP watermark, do not delete 67d7842dbbe25473c3c32b93c0da8047785f30d78e8a024de1b57352245f9689
[ "Haijun.zhang@sigtrum.com" ]
Haijun.zhang@sigtrum.com
158512dc85061cd3f9d46ec1cf014274fa4ad0f3
d77099bab5326a481121fd5ae88adc3f836571b1
/src/0020.cpp
e0f50dd59ce6bce48e2039dd7d1200eb68037ef8
[ "MIT" ]
permissive
downdemo/LeetCode-Solutions-in-Cpp17
8fecd00421a6a1b19b073afc5f2e836526327e7a
7a46dfde1f72b1d88b6d84c1f1df09844b8b2ae4
refs/heads/master
2022-11-05T06:17:37.991884
2020-03-22T11:39:33
2022-10-03T08:23:19
249,170,691
58
24
null
null
null
null
UTF-8
C++
false
false
431
cpp
class Solution { public: bool isValid(string s) { stack<char> stk; for (auto& x : s) { if (x == '(' || x == '{' || x == '[') { stk.emplace(x); } else if (!empty(stk) && stk.top() == m.at(x)) { stk.pop(); } else { return false; } } return empty(stk); } private: const unordered_map<char, char> m{ {')', '('}, {'}', '{'}, {']', '['}, }; };
[ "downdemo@qq.com" ]
downdemo@qq.com
c4fd233fd1cfb9eb5cb2dfcbd575bc6bf894b78e
155164f515806dd0aaae51566bd1ea7728376e5e
/3DBallGame/Classes/Native/Bulk_mscorlib_3.cpp
e81f76fe982650e892e34b3804c008ed5676935a
[]
no_license
tomonoriTAKA/3DBallGame
15a2dd5382a0af07f09736d5f4513911c983256d
83c5362e36cb4fa97032bbf2f241e64e818158ea
refs/heads/master
2021-01-23T03:59:11.573014
2017-03-26T01:50:52
2017-03-26T01:50:52
86,139,112
0
1
null
null
null
null
UTF-8
C++
false
false
991,371
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> // System.OverflowException struct OverflowException_t1075868493; // System.String struct String_t; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t228987430; // System.ParamArrayAttribute struct ParamArrayAttribute_t2144993728; // System.PlatformNotSupportedException struct PlatformNotSupportedException_t3778770305; // System.RankException struct RankException_t1539875949; // System.Reflection.AmbiguousMatchException struct AmbiguousMatchException_t1406414556; // System.Reflection.Assembly struct Assembly_t4268412390; // System.Type struct Type_t; // System.Object[] struct ObjectU5BU5D_t3614634134; // System.Reflection.Module struct Module_t4282841206; // System.Type[] struct TypeU5BU5D_t1664964607; // System.Reflection.AssemblyName struct AssemblyName_t894705941; // System.Reflection.Module[] struct ModuleU5BU5D_t3593287923; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t1761494505; // System.Reflection.AssemblyCompanyAttribute struct AssemblyCompanyAttribute_t2851673381; // System.Reflection.AssemblyConfigurationAttribute struct AssemblyConfigurationAttribute_t1678917172; // System.Reflection.AssemblyCopyrightAttribute struct AssemblyCopyrightAttribute_t177123295; // System.Reflection.AssemblyDefaultAliasAttribute struct AssemblyDefaultAliasAttribute_t1774139159; // System.Reflection.AssemblyDelaySignAttribute struct AssemblyDelaySignAttribute_t2705758496; // System.Reflection.AssemblyDescriptionAttribute struct AssemblyDescriptionAttribute_t1018387888; // System.Reflection.AssemblyFileVersionAttribute struct AssemblyFileVersionAttribute_t2897687916; // System.Reflection.AssemblyInformationalVersionAttribute struct AssemblyInformationalVersionAttribute_t3037389657; // System.Reflection.AssemblyKeyFileAttribute struct AssemblyKeyFileAttribute_t605245443; // System.Version struct Version_t1755874712; // System.Byte[] struct ByteU5BU5D_t3397334013; // System.Object struct Il2CppObject; // System.Reflection.AssemblyProductAttribute struct AssemblyProductAttribute_t1523443169; // System.Reflection.AssemblyTitleAttribute struct AssemblyTitleAttribute_t92945912; // System.Reflection.AssemblyTrademarkAttribute struct AssemblyTrademarkAttribute_t3740556705; // System.Reflection.Binder struct Binder_t3404612058; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t2275869610; // System.Globalization.CultureInfo struct CultureInfo_t3500843524; // System.Reflection.MethodBase struct MethodBase_t904190842; // System.Reflection.MethodBase[] struct MethodBaseU5BU5D_t2597254495; // System.Reflection.Binder/Default struct Default_t3956931304; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t963192633; // System.String[] struct StringU5BU5D_t1642385972; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_t1736152084; // System.Reflection.ConstructorInfo struct ConstructorInfo_t2851816542; // System.Reflection.CustomAttributeData struct CustomAttributeData_t3093286891; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t1075686591; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument> struct ReadOnlyCollection_1_t1683983606; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_t3304067486; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument> struct ReadOnlyCollection_1_t279943235; // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> struct IList_1_t2039138515; // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> struct IList_1_t635098144; // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> struct IList_1_t3634227492; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.ParameterInfo struct ParameterInfo_t2249040075; // System.Reflection.DefaultMemberAttribute struct DefaultMemberAttribute_t889804479; // System.Reflection.Emit.AssemblyBuilder struct AssemblyBuilder_t1646117627; // System.Exception struct Exception_t1927440687; // System.Reflection.Emit.ByRefType struct ByRefType_t1587086384; // System.Reflection.Emit.ConstructorBuilder struct ConstructorBuilder_t700974433; // System.Reflection.Emit.TypeBuilder struct TypeBuilder_t3308873219; // System.Type[][] struct TypeU5BU5DU5BU5D_t2318378278; // System.Reflection.Emit.ILGenerator struct ILGenerator_t99948092; // System.Reflection.Emit.DerivedType struct DerivedType_t1016359113; // System.Reflection.EventInfo struct EventInfo_t; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t125053523; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t152480188; // System.Reflection.ConstructorInfo[] struct ConstructorInfoU5BU5D_t1996683371; // System.Reflection.Emit.EnumBuilder struct EnumBuilder_t2808714468; // System.Reflection.Emit.FieldBuilder struct FieldBuilder_t2784804005; // System.Reflection.Emit.UnmanagedMarshal struct UnmanagedMarshal_t4270021860; // System.Reflection.Emit.GenericTypeParameterBuilder struct GenericTypeParameterBuilder_t1370236603; // System.Reflection.Emit.TokenGenerator struct TokenGenerator_t4150817334; // System.Reflection.Emit.MethodBuilder struct MethodBuilder_t644187984; // System.Reflection.Emit.ModuleBuilder struct ModuleBuilder_t4156028127; // System.Reflection.Emit.ModuleBuilderTokenGenerator struct ModuleBuilderTokenGenerator_t578872653; // System.Reflection.Emit.ParameterBuilder struct ParameterBuilder_t3344728474; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t2900773360; // System.Reflection.EventInfo/AddEventAdapter struct AddEventAdapter_t1766862959; // System.Delegate struct Delegate_t3022476291; // System.IAsyncResult struct IAsyncResult_t1999651008; // System.AsyncCallback struct AsyncCallback_t163412349; // System.Reflection.MemberFilter struct MemberFilter_t3405857066; // System.Reflection.MemberInfoSerializationHolder struct MemberInfoSerializationHolder_t2799051170; // System.Reflection.Missing struct Missing_t1033855606; // System.Reflection.MonoCMethod struct MonoCMethod_t611352247; // System.Reflection.MonoEvent struct MonoEvent_t; // System.Reflection.MonoField struct MonoField_t; // System.Reflection.MonoGenericCMethod struct MonoGenericCMethod_t2923423538; // System.Reflection.MonoGenericMethod struct MonoGenericMethod_t; // System.Reflection.MonoMethod struct MonoMethod_t; // System.Runtime.InteropServices.DllImportAttribute struct DllImportAttribute_t3000813225; // System.Reflection.MonoProperty struct MonoProperty_t; // System.Reflection.MonoProperty/GetterAdapter struct GetterAdapter_t1423755509; // System.Reflection.Pointer struct Pointer_t937075087; // System.Reflection.StrongNameKeyPair struct StrongNameKeyPair_t4090869089; // System.Reflection.TargetException struct TargetException_t1572104820; // System.Reflection.TargetInvocationException struct TargetInvocationException_t4098620458; // System.Reflection.TargetParameterCountException struct TargetParameterCountException_t1554451430; // System.Reflection.TypeFilter struct TypeFilter_t2905709404; // System.ResolveEventArgs struct ResolveEventArgs_t1859808873; // System.ResolveEventHandler struct ResolveEventHandler_t3842432458; // System.Resources.NeutralResourcesLanguageAttribute struct NeutralResourcesLanguageAttribute_t3267676636; // System.Resources.ResourceManager struct ResourceManager_t264715885; // System.Resources.ResourceReader struct ResourceReader_t2463923611; // System.IO.Stream struct Stream_t3255436806; // System.Collections.IEnumerator struct IEnumerator_t1466026749; // System.Resources.ResourceReader/ResourceCacheItem[] struct ResourceCacheItemU5BU5D_t2265014744; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t259680273; #include "class-internals.h" #include "codegen/il2cpp-codegen.h" #include "mscorlib_System_Array3829468939.h" #include "mscorlib_System_OverflowException1075868493.h" #include "mscorlib_System_OverflowException1075868493MethodDeclarations.h" #include "mscorlib_System_Void1841601450.h" #include "mscorlib_Locale4255929014MethodDeclarations.h" #include "mscorlib_System_ArithmeticException3261462543MethodDeclarations.h" #include "mscorlib_System_Exception1927440687MethodDeclarations.h" #include "mscorlib_System_String2029220233.h" #include "mscorlib_System_Int322071877448.h" #include "mscorlib_System_Runtime_Serialization_Serialization228987430.h" #include "mscorlib_System_Runtime_Serialization_StreamingCon1417235061.h" #include "mscorlib_System_ParamArrayAttribute2144993728.h" #include "mscorlib_System_ParamArrayAttribute2144993728MethodDeclarations.h" #include "mscorlib_System_Attribute542643598MethodDeclarations.h" #include "mscorlib_System_PlatformID1006634368.h" #include "mscorlib_System_PlatformID1006634368MethodDeclarations.h" #include "mscorlib_System_PlatformNotSupportedException3778770305.h" #include "mscorlib_System_PlatformNotSupportedException3778770305MethodDeclarations.h" #include "mscorlib_System_NotSupportedException1793819818MethodDeclarations.h" #include "mscorlib_System_RankException1539875949.h" #include "mscorlib_System_RankException1539875949MethodDeclarations.h" #include "mscorlib_System_SystemException3877406272MethodDeclarations.h" #include "mscorlib_System_Reflection_AmbiguousMatchException1406414556.h" #include "mscorlib_System_Reflection_AmbiguousMatchException1406414556MethodDeclarations.h" #include "mscorlib_System_Reflection_Assembly4268412390.h" #include "mscorlib_System_Reflection_Assembly4268412390MethodDeclarations.h" #include "mscorlib_System_Object2689449295MethodDeclarations.h" #include "mscorlib_System_Reflection_Assembly_ResolveEventHo1761494505MethodDeclarations.h" #include "mscorlib_System_Reflection_Assembly_ResolveEventHo1761494505.h" #include "mscorlib_System_Boolean3825574718.h" #include "mscorlib_System_String2029220233MethodDeclarations.h" #include "mscorlib_System_Type1303803226.h" #include "mscorlib_System_MonoCustomAttrs2976585698MethodDeclarations.h" #include "mscorlib_ArrayTypes.h" #include "mscorlib_System_Object2689449295.h" #include "mscorlib_System_IntPtr2504060609.h" #include "mscorlib_System_Reflection_Module4282841206.h" #include "mscorlib_System_ArgumentNullException628810857MethodDeclarations.h" #include "mscorlib_System_ArgumentException3259014390MethodDeclarations.h" #include "mscorlib_System_ArgumentNullException628810857.h" #include "mscorlib_System_ArgumentException3259014390.h" #include "mscorlib_System_Reflection_AssemblyName894705941.h" #include "mscorlib_System_Security_SecurityManager3191249573MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyName894705941MethodDeclarations.h" #include "mscorlib_System_AppDomain2719102437MethodDeclarations.h" #include "mscorlib_System_AppDomain2719102437.h" #include "mscorlib_System_Reflection_Module4282841206MethodDeclarations.h" #include "mscorlib_System_Collections_ArrayList4252133567MethodDeclarations.h" #include "mscorlib_System_Type1303803226MethodDeclarations.h" #include "mscorlib_System_Collections_ArrayList4252133567.h" #include "mscorlib_System_RuntimeTypeHandle2330101084.h" #include "mscorlib_System_Reflection_AssemblyCompanyAttribut2851673381.h" #include "mscorlib_System_Reflection_AssemblyCompanyAttribut2851673381MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyConfigurationAt1678917172.h" #include "mscorlib_System_Reflection_AssemblyConfigurationAt1678917172MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyCopyrightAttribu177123295.h" #include "mscorlib_System_Reflection_AssemblyCopyrightAttribu177123295MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyDefaultAliasAtt1774139159.h" #include "mscorlib_System_Reflection_AssemblyDefaultAliasAtt1774139159MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyDelaySignAttrib2705758496.h" #include "mscorlib_System_Reflection_AssemblyDelaySignAttrib2705758496MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyDescriptionAttr1018387888.h" #include "mscorlib_System_Reflection_AssemblyDescriptionAttr1018387888MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyFileVersionAttr2897687916.h" #include "mscorlib_System_Reflection_AssemblyFileVersionAttr2897687916MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyInformationalVe3037389657.h" #include "mscorlib_System_Reflection_AssemblyInformationalVe3037389657MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyKeyFileAttribute605245443.h" #include "mscorlib_System_Reflection_AssemblyKeyFileAttribute605245443MethodDeclarations.h" #include "mscorlib_System_Configuration_Assemblies_AssemblyV1223556284.h" #include "mscorlib_System_Runtime_Serialization_Serialization228987430MethodDeclarations.h" #include "mscorlib_System_Globalization_CultureInfo3500843524MethodDeclarations.h" #include "mscorlib_System_Version1755874712.h" #include "mscorlib_System_Byte3683104436.h" #include "mscorlib_System_Configuration_Assemblies_AssemblyH4147282775.h" #include "mscorlib_System_Reflection_StrongNameKeyPair4090869089.h" #include "mscorlib_System_Reflection_AssemblyNameFlags1794031440.h" #include "mscorlib_System_Globalization_CultureInfo3500843524.h" #include "mscorlib_System_Text_StringBuilder1221177846MethodDeclarations.h" #include "mscorlib_System_Version1755874712MethodDeclarations.h" #include "mscorlib_System_Text_StringBuilder1221177846.h" #include "mscorlib_System_Byte3683104436MethodDeclarations.h" #include "mscorlib_Mono_Security_Cryptography_CryptoConvert4146607874MethodDeclarations.h" #include "mscorlib_System_Security_Cryptography_Cryptographi3349726436.h" #include "mscorlib_System_Security_Cryptography_RSA3719518354.h" #include "mscorlib_System_Security_SecurityException887327375MethodDeclarations.h" #include "mscorlib_System_Security_SecurityException887327375.h" #include "mscorlib_System_Security_Cryptography_SHA13336793149MethodDeclarations.h" #include "mscorlib_System_Security_Cryptography_HashAlgorith2624936259MethodDeclarations.h" #include "mscorlib_System_Array3829468939MethodDeclarations.h" #include "mscorlib_System_Security_Cryptography_HashAlgorith2624936259.h" #include "mscorlib_System_Security_Cryptography_SHA13336793149.h" #include "mscorlib_System_Reflection_AssemblyNameFlags1794031440MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyProductAttribut1523443169.h" #include "mscorlib_System_Reflection_AssemblyProductAttribut1523443169MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyTitleAttribute92945912.h" #include "mscorlib_System_Reflection_AssemblyTitleAttribute92945912MethodDeclarations.h" #include "mscorlib_System_Reflection_AssemblyTrademarkAttrib3740556705.h" #include "mscorlib_System_Reflection_AssemblyTrademarkAttrib3740556705MethodDeclarations.h" #include "mscorlib_System_Reflection_Binder3404612058.h" #include "mscorlib_System_Reflection_Binder3404612058MethodDeclarations.h" #include "mscorlib_System_Reflection_Binder_Default3956931304MethodDeclarations.h" #include "mscorlib_System_Reflection_Binder_Default3956931304.h" #include "mscorlib_System_Reflection_ParameterInfo2249040075.h" #include "mscorlib_System_Reflection_TargetParameterCountExc1554451430MethodDeclarations.h" #include "mscorlib_System_Reflection_TargetParameterCountExc1554451430.h" #include "mscorlib_System_Reflection_ParameterInfo2249040075MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodBase904190842.h" #include "mscorlib_System_Reflection_MemberInfo4043097260MethodDeclarations.h" #include "mscorlib_System_Reflection_MemberInfo4043097260.h" #include "mscorlib_System_Reflection_MethodBase904190842MethodDeclarations.h" #include "mscorlib_System_Reflection_BindingFlags1082350898.h" #include "mscorlib_System_Reflection_ParameterModifier1820634920.h" #include "mscorlib_System_Enum2459695545MethodDeclarations.h" #include "mscorlib_System_Convert2607082565MethodDeclarations.h" #include "mscorlib_System_Char3454481338.h" #include "mscorlib_System_Double4078015681.h" #include "mscorlib_System_Single2076509932.h" #include "mscorlib_System_TypeCode2536926201.h" #include "mscorlib_System_Reflection_CallingConventions1097349142.h" #include "mscorlib_System_Reflection_PropertyInfo2253729065.h" #include "mscorlib_System_Reflection_PropertyInfo2253729065MethodDeclarations.h" #include "mscorlib_System_Reflection_BindingFlags1082350898MethodDeclarations.h" #include "mscorlib_System_Reflection_CallingConventions1097349142MethodDeclarations.h" #include "mscorlib_System_Reflection_ConstructorInfo2851816542.h" #include "mscorlib_System_Reflection_ConstructorInfo2851816542MethodDeclarations.h" #include "mscorlib_System_Reflection_MemberTypes3343038963.h" #include "mscorlib_System_Reflection_CustomAttributeData3093286891.h" #include "mscorlib_System_Reflection_CustomAttributeData3093286891MethodDeclarations.h" #include "mscorlib_System_Reflection_CustomAttributeTypedArg1498197914.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCo1683983606.h" #include "mscorlib_System_Reflection_CustomAttributeNamedArgum94157543.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCol279943235.h" #include "mscorlib_System_Reflection_CustomAttributeTypedArg1498197914MethodDeclarations.h" #include "mscorlib_System_Reflection_CustomAttributeNamedArgum94157543MethodDeclarations.h" #include "mscorlib_System_Reflection_DefaultMemberAttribute889804479.h" #include "mscorlib_System_Reflection_DefaultMemberAttribute889804479MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_AssemblyBuilder1646117627.h" #include "mscorlib_System_Reflection_Emit_AssemblyBuilder1646117627MethodDeclarations.h" #include "mscorlib_System_Exception1927440687.h" #include "mscorlib_System_Reflection_Emit_ModuleBuilder4156028127.h" #include "mscorlib_System_Reflection_Emit_ModuleBuilder4156028127MethodDeclarations.h" #include "mscorlib_System_NotSupportedException1793819818.h" #include "mscorlib_Mono_Security_StrongName117835354MethodDeclarations.h" #include "mscorlib_Mono_Security_StrongName117835354.h" #include "mscorlib_System_Reflection_Emit_ByRefType1587086384.h" #include "mscorlib_System_Reflection_Emit_ByRefType1587086384MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_DerivedType1016359113MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ConstructorBuilder700974433.h" #include "mscorlib_System_Reflection_Emit_ConstructorBuilder700974433MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_TypeBuilder3308873219.h" #include "mscorlib_System_Reflection_MethodAttributes790385034.h" #include "mscorlib_System_Reflection_Emit_TypeBuilder3308873219MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_MethodToken3991686330.h" #include "mscorlib_System_Reflection_Emit_MethodToken3991686330MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ParameterBuilder3344728474.h" #include "mscorlib_System_RuntimeMethodHandle894824333.h" #include "mscorlib_System_Reflection_Emit_ILGenerator99948092.h" #include "mscorlib_System_Reflection_Emit_ILGenerator99948092MethodDeclarations.h" #include "mscorlib_System_InvalidOperationException721527559MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodImplAttributes1541361196.h" #include "mscorlib_System_InvalidOperationException721527559.h" #include "mscorlib_System_Reflection_Emit_DerivedType1016359113.h" #include "mscorlib_System_Reflection_EventInfo4258285342.h" #include "mscorlib_System_Reflection_FieldInfo255040150.h" #include "mscorlib_System_Reflection_MethodInfo3330546337.h" #include "mscorlib_System_Reflection_TypeAttributes2229518203.h" #include "mscorlib_System_Reflection_Emit_EnumBuilder2808714468.h" #include "mscorlib_System_Reflection_Emit_EnumBuilder2808714468MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_FieldBuilder2784804005.h" #include "mscorlib_System_Reflection_Emit_FieldBuilder2784804005MethodDeclarations.h" #include "mscorlib_System_Reflection_FieldAttributes1122705193.h" #include "mscorlib_System_RuntimeFieldHandle2331729674.h" #include "mscorlib_System_Reflection_Emit_UnmanagedMarshal4270021860.h" #include "mscorlib_System_Reflection_Emit_GenericTypeParamet1370236603.h" #include "mscorlib_System_Reflection_Emit_GenericTypeParamet1370236603MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_MethodBuilder644187984MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_MethodBuilder644187984.h" #include "mscorlib_System_Reflection_Emit_ILTokenInfo149559338.h" #include "mscorlib_System_Reflection_Emit_OpCode2247480392.h" #include "mscorlib_System_Reflection_Emit_StackBehaviour1390406961.h" #include "mscorlib_System_Reflection_Emit_OpCode2247480392MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ILGenerator_LabelD3712112744.h" #include "mscorlib_System_Reflection_Emit_ILGenerator_LabelF4090909514.h" #include "mscorlib_System_Reflection_Emit_ILGenerator_LabelD3712112744MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ILGenerator_LabelF4090909514MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ILTokenInfo149559338MethodDeclarations.h" #include "mscorlib_System_TypeLoadException723359155MethodDeclarations.h" #include "mscorlib_System_TypeLoadException723359155.h" #include "mscorlib_System_Reflection_Emit_ModuleBuilderTokenG578872653MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ModuleBuilderTokenG578872653.h" #include "mscorlib_System_Reflection_Emit_OpCodeNames1907134268.h" #include "mscorlib_System_Reflection_Emit_OpCodeNames1907134268MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_OpCodes3494785031.h" #include "mscorlib_System_Reflection_Emit_OpCodes3494785031MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ParameterBuilder3344728474MethodDeclarations.h" #include "mscorlib_System_Reflection_ParameterAttributes1266705348.h" #include "mscorlib_System_Reflection_Emit_StackBehaviour1390406961MethodDeclarations.h" #include "mscorlib_System_Reflection_FieldInfo255040150MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_UnmanagedMarshal4270021860MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_MarshalAsA2900773360.h" #include "mscorlib_System_Runtime_InteropServices_MarshalAsA2900773360MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_UnmanagedT2550630890.h" #include "mscorlib_System_Int164041245914.h" #include "mscorlib_System_Reflection_EventAttributes2989788983.h" #include "mscorlib_System_Reflection_EventAttributes2989788983MethodDeclarations.h" #include "mscorlib_System_Reflection_EventInfo4258285342MethodDeclarations.h" #include "mscorlib_System_Reflection_EventInfo_AddEventAdapt1766862959.h" #include "mscorlib_System_Reflection_EventInfo_AddEventAdapt1766862959MethodDeclarations.h" #include "mscorlib_System_Delegate3022476291.h" #include "mscorlib_System_AsyncCallback163412349.h" #include "mscorlib_System_Reflection_FieldAttributes1122705193MethodDeclarations.h" #include "mscorlib_System_IntPtr2504060609MethodDeclarations.h" #include "mscorlib_System_RuntimeFieldHandle2331729674MethodDeclarations.h" #include "mscorlib_System_SystemException3877406272.h" #include "mscorlib_System_NonSerializedAttribute399263003MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_FieldOffse1553145711MethodDeclarations.h" #include "mscorlib_System_NonSerializedAttribute399263003.h" #include "mscorlib_System_Runtime_InteropServices_FieldOffse1553145711.h" #include "mscorlib_System_Reflection_MemberFilter3405857066.h" #include "mscorlib_System_Reflection_MemberFilter3405857066MethodDeclarations.h" #include "mscorlib_System_Reflection_MemberInfoSerialization2799051170.h" #include "mscorlib_System_Reflection_MemberInfoSerialization2799051170MethodDeclarations.h" #include "mscorlib_System_Runtime_Serialization_Serialization753258759.h" #include "mscorlib_System_Runtime_Serialization_Serialization753258759MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodInfo3330546337MethodDeclarations.h" #include "mscorlib_System_Reflection_MemberTypes3343038963MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodAttributes790385034MethodDeclarations.h" #include "mscorlib_System_RuntimeMethodHandle894824333MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodImplAttributes1541361196MethodDeclarations.h" #include "mscorlib_System_Reflection_Missing1033855606.h" #include "mscorlib_System_Reflection_Missing1033855606MethodDeclarations.h" #include "mscorlib_System_Reflection_TypeFilter2905709404MethodDeclarations.h" #include "mscorlib_System_Reflection_TypeFilter2905709404.h" #include "mscorlib_System_UnitySerializationHolder2045574117MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoCMethod611352247.h" #include "mscorlib_System_Reflection_MonoCMethod611352247MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoMethodInfo3646562144MethodDeclarations.h" #include "mscorlib_System_MemberAccessException2005094827MethodDeclarations.h" #include "mscorlib_System_Reflection_TargetInvocationExcepti4098620458MethodDeclarations.h" #include "mscorlib_System_MethodAccessException4093255254.h" #include "mscorlib_System_MemberAccessException2005094827.h" #include "mscorlib_System_Reflection_TargetInvocationExcepti4098620458.h" #include "mscorlib_System_Reflection_MonoMethod116053496MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoEvent2188687691.h" #include "mscorlib_System_Reflection_MonoEvent2188687691MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoEventInfo2190036573MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoEventInfo2190036573.h" #include "mscorlib_System_Reflection_MonoField3600053525.h" #include "mscorlib_System_Reflection_MonoField3600053525MethodDeclarations.h" #include "mscorlib_System_Reflection_TargetException1572104820MethodDeclarations.h" #include "mscorlib_System_Reflection_TargetException1572104820.h" #include "mscorlib_System_FieldAccessException1797813379MethodDeclarations.h" #include "mscorlib_System_FieldAccessException1797813379.h" #include "mscorlib_System_Reflection_MonoGenericCMethod2923423538.h" #include "mscorlib_System_Reflection_MonoGenericCMethod2923423538MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoGenericMethod1068099169.h" #include "mscorlib_System_Reflection_MonoGenericMethod1068099169MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoMethod116053496.h" #include "mscorlib_System_Threading_ThreadAbortException1150575753.h" #include "mscorlib_System_Runtime_InteropServices_DllImportA3000813225.h" #include "mscorlib_System_Runtime_InteropServices_PreserveSi1564965109MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoMethodInfo3646562144.h" #include "mscorlib_System_Runtime_InteropServices_PreserveSi1564965109.h" #include "mscorlib_System_Reflection_MonoProperty2242413552.h" #include "mscorlib_System_Reflection_MonoProperty2242413552MethodDeclarations.h" #include "mscorlib_System_Reflection_PInfo957350482.h" #include "mscorlib_System_Reflection_MonoPropertyInfo486106184MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoPropertyInfo486106184.h" #include "mscorlib_System_Reflection_PropertyAttributes883448530.h" #include "mscorlib_System_Reflection_MonoProperty_GetterAdap1423755509.h" #include "mscorlib_System_Delegate3022476291MethodDeclarations.h" #include "mscorlib_System_MethodAccessException4093255254MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoProperty_GetterAdap1423755509MethodDeclarations.h" #include "mscorlib_System_Reflection_ParameterAttributes1266705348MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_InAttribut1394050551MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_OptionalAtt827982902MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_OutAttribu1539424546MethodDeclarations.h" #include "mscorlib_System_Runtime_InteropServices_InAttribut1394050551.h" #include "mscorlib_System_Runtime_InteropServices_OptionalAtt827982902.h" #include "mscorlib_System_Runtime_InteropServices_OutAttribu1539424546.h" #include "mscorlib_System_Reflection_ParameterModifier1820634920MethodDeclarations.h" #include "mscorlib_System_Reflection_PInfo957350482MethodDeclarations.h" #include "mscorlib_System_Reflection_Pointer937075087.h" #include "mscorlib_System_Reflection_Pointer937075087MethodDeclarations.h" #include "mscorlib_System_Reflection_ProcessorArchitecture1620065459.h" #include "mscorlib_System_Reflection_ProcessorArchitecture1620065459MethodDeclarations.h" #include "mscorlib_System_Reflection_PropertyAttributes883448530MethodDeclarations.h" #include "mscorlib_System_Reflection_StrongNameKeyPair4090869089MethodDeclarations.h" #include "mscorlib_System_Reflection_TypeAttributes2229518203MethodDeclarations.h" #include "mscorlib_System_ResolveEventArgs1859808873.h" #include "mscorlib_System_ResolveEventArgs1859808873MethodDeclarations.h" #include "mscorlib_System_EventArgs3289624707MethodDeclarations.h" #include "mscorlib_System_ResolveEventHandler3842432458.h" #include "mscorlib_System_ResolveEventHandler3842432458MethodDeclarations.h" #include "mscorlib_System_Resources_NeutralResourcesLanguage3267676636.h" #include "mscorlib_System_Resources_NeutralResourcesLanguage3267676636MethodDeclarations.h" #include "mscorlib_System_Resources_PredefinedResourceType3623697780.h" #include "mscorlib_System_Resources_PredefinedResourceType3623697780MethodDeclarations.h" #include "mscorlib_System_Resources_ResourceManager264715885.h" #include "mscorlib_System_Resources_ResourceManager264715885MethodDeclarations.h" #include "mscorlib_System_Collections_Hashtable909839986MethodDeclarations.h" #include "mscorlib_System_Collections_Hashtable909839986.h" #include "mscorlib_System_Resources_ResourceReader2463923611.h" #include "mscorlib_System_Resources_ResourceReader2463923611MethodDeclarations.h" #include "mscorlib_System_IO_Stream3255436806.h" #include "mscorlib_System_Text_Encoding663144255MethodDeclarations.h" #include "mscorlib_System_IO_BinaryReader2491843768MethodDeclarations.h" #include "mscorlib_System_Runtime_Serialization_Formatters_B1866979105MethodDeclarations.h" #include "mscorlib_System_IO_Stream3255436806MethodDeclarations.h" #include "mscorlib_System_Text_Encoding663144255.h" #include "mscorlib_System_IO_BinaryReader2491843768.h" #include "mscorlib_System_Runtime_Serialization_StreamingCon1417235061MethodDeclarations.h" #include "mscorlib_System_Runtime_Serialization_StreamingCon4264247603.h" #include "mscorlib_System_Runtime_Serialization_Formatters_B1866979105.h" #include "mscorlib_System_IO_FileStream1695958676MethodDeclarations.h" #include "mscorlib_System_IO_FileStream1695958676.h" #include "mscorlib_System_IO_FileMode236403845.h" #include "mscorlib_System_IO_FileAccess4282042064.h" #include "mscorlib_System_IO_FileShare3362491215.h" #include "mscorlib_System_Int64909078037.h" #include "mscorlib_System_IO_EndOfStreamException1711658693.h" #include "mscorlib_System_IO_SeekOrigin2475945306.h" #include "mscorlib_System_Int322071877448MethodDeclarations.h" #include "mscorlib_System_Resources_ResourceReader_ResourceI3933049236.h" #include "mscorlib_System_Resources_ResourceReader_ResourceI3933049236MethodDeclarations.h" #include "mscorlib_System_IO_MemoryStream743994179MethodDeclarations.h" #include "mscorlib_System_UInt16986882611.h" #include "mscorlib_System_SByte454417549.h" #include "mscorlib_System_UInt322149682021.h" #include "mscorlib_System_UInt642909196914.h" #include "mscorlib_System_Decimal724701077.h" #include "mscorlib_System_DateTime693205669.h" #include "mscorlib_System_DateTime693205669MethodDeclarations.h" #include "mscorlib_System_TimeSpan3430258949.h" #include "mscorlib_System_TimeSpan3430258949MethodDeclarations.h" #include "mscorlib_System_IO_MemoryStream743994179.h" #include "mscorlib_System_Resources_ResourceReader_ResourceCa333236149.h" #include "mscorlib_System_Threading_Monitor3228523394MethodDeclarations.h" #include "mscorlib_System_Resources_ResourceReader_ResourceCa333236149MethodDeclarations.h" #include "mscorlib_System_Resources_ResourceReader_ResourceE2665690338MethodDeclarations.h" #include "mscorlib_System_Resources_ResourceReader_ResourceE2665690338.h" // System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0) extern "C" int32_t Array_IndexOf_TisIl2CppObject_m2032877681_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t3614634134* p0, Il2CppObject * p1, const MethodInfo* method); #define Array_IndexOf_TisIl2CppObject_m2032877681(__this /* static, unused */, p0, p1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t3614634134*, Il2CppObject *, const MethodInfo*))Array_IndexOf_TisIl2CppObject_m2032877681_gshared)(__this /* static, unused */, p0, p1, method) // System.Int32 System.Array::IndexOf<System.Type>(!!0[],!!0) #define Array_IndexOf_TisType_t_m4216821136(__this /* static, unused */, p0, p1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, TypeU5BU5D_t1664964607*, Type_t *, const MethodInfo*))Array_IndexOf_TisIl2CppObject_m2032877681_gshared)(__this /* static, unused */, p0, p1, method) // !!0[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeTypedArgument>(System.Object[]) extern "C" CustomAttributeTypedArgumentU5BU5D_t1075686591* CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t3614634134* p0, const MethodInfo* method); #define CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702(__this /* static, unused */, p0, method) (( CustomAttributeTypedArgumentU5BU5D_t1075686591* (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t3614634134*, const MethodInfo*))CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702_gshared)(__this /* static, unused */, p0, method) // System.Collections.ObjectModel.ReadOnlyCollection`1<!!0> System.Array::AsReadOnly<System.Reflection.CustomAttributeTypedArgument>(!!0[]) extern "C" ReadOnlyCollection_1_t1683983606 * Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1075686591* p0, const MethodInfo* method); #define Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084(__this /* static, unused */, p0, method) (( ReadOnlyCollection_1_t1683983606 * (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t1075686591*, const MethodInfo*))Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084_gshared)(__this /* static, unused */, p0, method) // !!0[] System.Reflection.CustomAttributeData::UnboxValues<System.Reflection.CustomAttributeNamedArgument>(System.Object[]) extern "C" CustomAttributeNamedArgumentU5BU5D_t3304067486* CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t3614634134* p0, const MethodInfo* method); #define CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353(__this /* static, unused */, p0, method) (( CustomAttributeNamedArgumentU5BU5D_t3304067486* (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t3614634134*, const MethodInfo*))CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353_gshared)(__this /* static, unused */, p0, method) // System.Collections.ObjectModel.ReadOnlyCollection`1<!!0> System.Array::AsReadOnly<System.Reflection.CustomAttributeNamedArgument>(!!0[]) extern "C" ReadOnlyCollection_1_t279943235 * Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3304067486* p0, const MethodInfo* method); #define Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619(__this /* static, unused */, p0, method) (( ReadOnlyCollection_1_t279943235 * (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t3304067486*, const MethodInfo*))Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619_gshared)(__this /* static, unused */, p0, method) #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.OverflowException::.ctor() extern Il2CppCodeGenString* _stringLiteral1124468381; extern const uint32_t OverflowException__ctor_m2564269836_MetadataUsageId; extern "C" void OverflowException__ctor_m2564269836 (OverflowException_t1075868493 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OverflowException__ctor_m2564269836_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Locale_GetText_m1954433032(NULL /*static, unused*/, _stringLiteral1124468381, /*hidden argument*/NULL); ArithmeticException__ctor_m4208398840(__this, L_0, /*hidden argument*/NULL); Exception_set_HResult_m2376998645(__this, ((int32_t)-2146233066), /*hidden argument*/NULL); return; } } // System.Void System.OverflowException::.ctor(System.String) extern "C" void OverflowException__ctor_m3249894750 (OverflowException_t1075868493 * __this, String_t* ___message0, const MethodInfo* method) { { String_t* L_0 = ___message0; ArithmeticException__ctor_m4208398840(__this, L_0, /*hidden argument*/NULL); Exception_set_HResult_m2376998645(__this, ((int32_t)-2146233066), /*hidden argument*/NULL); return; } } // System.Void System.OverflowException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void OverflowException__ctor_m2230275335 (OverflowException_t1075868493 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___context1; ArithmeticException__ctor_m104771799(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.ParamArrayAttribute::.ctor() extern "C" void ParamArrayAttribute__ctor_m2215984741 (ParamArrayAttribute_t2144993728 * __this, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); return; } } // System.Void System.PlatformNotSupportedException::.ctor() extern Il2CppCodeGenString* _stringLiteral3018961310; extern const uint32_t PlatformNotSupportedException__ctor_m782561872_MetadataUsageId; extern "C" void PlatformNotSupportedException__ctor_m782561872 (PlatformNotSupportedException_t3778770305 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PlatformNotSupportedException__ctor_m782561872_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Locale_GetText_m1954433032(NULL /*static, unused*/, _stringLiteral3018961310, /*hidden argument*/NULL); NotSupportedException__ctor_m836173213(__this, L_0, /*hidden argument*/NULL); Exception_set_HResult_m2376998645(__this, ((int32_t)-2146233031), /*hidden argument*/NULL); return; } } // System.Void System.PlatformNotSupportedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void PlatformNotSupportedException__ctor_m3301654967 (PlatformNotSupportedException_t3778770305 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___context1; NotSupportedException__ctor_m422639464(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.RankException::.ctor() extern Il2CppCodeGenString* _stringLiteral3468799055; extern const uint32_t RankException__ctor_m2119191472_MetadataUsageId; extern "C" void RankException__ctor_m2119191472 (RankException_t1539875949 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (RankException__ctor_m2119191472_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Locale_GetText_m1954433032(NULL /*static, unused*/, _stringLiteral3468799055, /*hidden argument*/NULL); SystemException__ctor_m4001391027(__this, L_0, /*hidden argument*/NULL); Exception_set_HResult_m2376998645(__this, ((int32_t)-2146233065), /*hidden argument*/NULL); return; } } // System.Void System.RankException::.ctor(System.String) extern "C" void RankException__ctor_m998508686 (RankException_t1539875949 * __this, String_t* ___message0, const MethodInfo* method) { { String_t* L_0 = ___message0; SystemException__ctor_m4001391027(__this, L_0, /*hidden argument*/NULL); Exception_set_HResult_m2376998645(__this, ((int32_t)-2146233065), /*hidden argument*/NULL); return; } } // System.Void System.RankException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void RankException__ctor_m800781665 (RankException_t1539875949 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___context1; SystemException__ctor_m2688248668(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.AmbiguousMatchException::.ctor() extern Il2CppCodeGenString* _stringLiteral2591063177; extern const uint32_t AmbiguousMatchException__ctor_m2088048346_MetadataUsageId; extern "C" void AmbiguousMatchException__ctor_m2088048346 (AmbiguousMatchException_t1406414556 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AmbiguousMatchException__ctor_m2088048346_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SystemException__ctor_m4001391027(__this, _stringLiteral2591063177, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.AmbiguousMatchException::.ctor(System.String) extern "C" void AmbiguousMatchException__ctor_m3811079160 (AmbiguousMatchException_t1406414556 * __this, String_t* ___message0, const MethodInfo* method) { { String_t* L_0 = ___message0; SystemException__ctor_m4001391027(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.AmbiguousMatchException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void AmbiguousMatchException__ctor_m3001998225 (AmbiguousMatchException_t1406414556 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___context1; SystemException__ctor_m2688248668(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.Assembly::.ctor() extern Il2CppClass* ResolveEventHolder_t1761494505_il2cpp_TypeInfo_var; extern const uint32_t Assembly__ctor_m1050192922_MetadataUsageId; extern "C" void Assembly__ctor_m1050192922 (Assembly_t4268412390 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly__ctor_m1050192922_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); ResolveEventHolder_t1761494505 * L_0 = (ResolveEventHolder_t1761494505 *)il2cpp_codegen_object_new(ResolveEventHolder_t1761494505_il2cpp_TypeInfo_var); ResolveEventHolder__ctor_m2004627747(L_0, /*hidden argument*/NULL); __this->set_resolve_event_holder_1(L_0); return; } } // System.String System.Reflection.Assembly::get_code_base(System.Boolean) extern "C" String_t* Assembly_get_code_base_m3637877060 (Assembly_t4268412390 * __this, bool ___escaped0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef String_t* (*Assembly_get_code_base_m3637877060_ftn) (Assembly_t4268412390 *, bool); return ((Assembly_get_code_base_m3637877060_ftn)mscorlib::System::Reflection::Assembly::get_code_base) (__this, ___escaped0); } // System.String System.Reflection.Assembly::get_fullname() extern "C" String_t* Assembly_get_fullname_m3149819070 (Assembly_t4268412390 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef String_t* (*Assembly_get_fullname_m3149819070_ftn) (Assembly_t4268412390 *); return ((Assembly_get_fullname_m3149819070_ftn)mscorlib::System::Reflection::Assembly::get_fullname) (__this); } // System.String System.Reflection.Assembly::get_location() extern "C" String_t* Assembly_get_location_m2976332497 (Assembly_t4268412390 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef String_t* (*Assembly_get_location_m2976332497_ftn) (Assembly_t4268412390 *); return ((Assembly_get_location_m2976332497_ftn)mscorlib::System::Reflection::Assembly::get_location) (__this); } // System.String System.Reflection.Assembly::GetCodeBase(System.Boolean) extern "C" String_t* Assembly_GetCodeBase_m2735209720 (Assembly_t4268412390 * __this, bool ___escaped0, const MethodInfo* method) { String_t* V_0 = NULL; { bool L_0 = ___escaped0; String_t* L_1 = Assembly_get_code_base_m3637877060(__this, L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; return L_2; } } // System.String System.Reflection.Assembly::get_FullName() extern "C" String_t* Assembly_get_FullName_m1064037566 (Assembly_t4268412390 * __this, const MethodInfo* method) { { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Reflection.Assembly::ToString() */, __this); return L_0; } } // System.String System.Reflection.Assembly::get_Location() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern const uint32_t Assembly_get_Location_m3981013809_MetadataUsageId; extern "C" String_t* Assembly_get_Location_m3981013809 (Assembly_t4268412390 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_get_Location_m3981013809_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { bool L_0 = __this->get_fromByteArray_8(); if (!L_0) { goto IL_0011; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2(); return L_1; } IL_0011: { String_t* L_2 = Assembly_get_location_m2976332497(__this, /*hidden argument*/NULL); V_0 = L_2; String_t* L_3 = V_0; return L_3; } } // System.Boolean System.Reflection.Assembly::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t Assembly_IsDefined_m2841897391_MetadataUsageId; extern "C" bool Assembly_IsDefined_m2841897391 (Assembly_t4268412390 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_IsDefined_m2841897391_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.Assembly::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t Assembly_GetCustomAttributes_m95309865_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* Assembly_GetCustomAttributes_m95309865 (Assembly_t4268412390 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_GetCustomAttributes_m95309865_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.IntPtr System.Reflection.Assembly::GetManifestResourceInternal(System.String,System.Int32&,System.Reflection.Module&) extern "C" IntPtr_t Assembly_GetManifestResourceInternal_m2581727816 (Assembly_t4268412390 * __this, String_t* ___name0, int32_t* ___size1, Module_t4282841206 ** ___module2, const MethodInfo* method) { using namespace il2cpp::icalls; typedef IntPtr_t (*Assembly_GetManifestResourceInternal_m2581727816_ftn) (Assembly_t4268412390 *, String_t*, int32_t*, Module_t4282841206 **); return ((Assembly_GetManifestResourceInternal_m2581727816_ftn)mscorlib::System::Reflection::Assembly::GetManifestResourceInternal) (__this, ___name0, ___size1, ___module2); } // System.Type[] System.Reflection.Assembly::GetTypes(System.Boolean) extern "C" TypeU5BU5D_t1664964607* Assembly_GetTypes_m1317253146 (Assembly_t4268412390 * __this, bool ___exportedOnly0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef TypeU5BU5D_t1664964607* (*Assembly_GetTypes_m1317253146_ftn) (Assembly_t4268412390 *, bool); return ((Assembly_GetTypes_m1317253146_ftn)mscorlib::System::Reflection::Assembly::GetTypes) (__this, ___exportedOnly0); } // System.Type[] System.Reflection.Assembly::GetTypes() extern "C" TypeU5BU5D_t1664964607* Assembly_GetTypes_m382057419 (Assembly_t4268412390 * __this, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = VirtFuncInvoker1< TypeU5BU5D_t1664964607*, bool >::Invoke(10 /* System.Type[] System.Reflection.Assembly::GetTypes(System.Boolean) */, __this, (bool)0); return L_0; } } // System.Type System.Reflection.Assembly::GetType(System.String,System.Boolean) extern "C" Type_t * Assembly_GetType_m2805031155 (Assembly_t4268412390 * __this, String_t* ___name0, bool ___throwOnError1, const MethodInfo* method) { { String_t* L_0 = ___name0; bool L_1 = ___throwOnError1; Type_t * L_2 = Assembly_GetType_m2765594712(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Type System.Reflection.Assembly::GetType(System.String) extern "C" Type_t * Assembly_GetType_m2378249586 (Assembly_t4268412390 * __this, String_t* ___name0, const MethodInfo* method) { { String_t* L_0 = ___name0; Type_t * L_1 = Assembly_GetType_m2765594712(__this, L_0, (bool)0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.Assembly::InternalGetType(System.Reflection.Module,System.String,System.Boolean,System.Boolean) extern "C" Type_t * Assembly_InternalGetType_m1990879055 (Assembly_t4268412390 * __this, Module_t4282841206 * ___module0, String_t* ___name1, bool ___throwOnError2, bool ___ignoreCase3, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Type_t * (*Assembly_InternalGetType_m1990879055_ftn) (Assembly_t4268412390 *, Module_t4282841206 *, String_t*, bool, bool); return ((Assembly_InternalGetType_m1990879055_ftn)mscorlib::System::Reflection::Assembly::InternalGetType) (__this, ___module0, ___name1, ___throwOnError2, ___ignoreCase3); } // System.Type System.Reflection.Assembly::GetType(System.String,System.Boolean,System.Boolean) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2328218955; extern Il2CppCodeGenString* _stringLiteral345660856; extern const uint32_t Assembly_GetType_m2765594712_MetadataUsageId; extern "C" Type_t * Assembly_GetType_m2765594712 (Assembly_t4268412390 * __this, String_t* ___name0, bool ___throwOnError1, bool ___ignoreCase2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_GetType_m2765594712_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; if (L_0) { goto IL_000d; } } { String_t* L_1 = ___name0; ArgumentNullException_t628810857 * L_2 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_000d: { String_t* L_3 = ___name0; NullCheck(L_3); int32_t L_4 = String_get_Length_m1606060069(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0028; } } { ArgumentException_t3259014390 * L_5 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m544251339(L_5, _stringLiteral2328218955, _stringLiteral345660856, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0028: { String_t* L_6 = ___name0; bool L_7 = ___throwOnError1; bool L_8 = ___ignoreCase2; Type_t * L_9 = Assembly_InternalGetType_m1990879055(__this, (Module_t4282841206 *)NULL, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Void System.Reflection.Assembly::FillName(System.Reflection.Assembly,System.Reflection.AssemblyName) extern "C" void Assembly_FillName_m1934025015 (Il2CppObject * __this /* static, unused */, Assembly_t4268412390 * ___ass0, AssemblyName_t894705941 * ___aname1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*Assembly_FillName_m1934025015_ftn) (Assembly_t4268412390 *, AssemblyName_t894705941 *); ((Assembly_FillName_m1934025015_ftn)mscorlib::System::Reflection::Assembly::FillName) (___ass0, ___aname1); } // System.Reflection.AssemblyName System.Reflection.Assembly::GetName(System.Boolean) extern Il2CppClass* SecurityManager_t3191249573_il2cpp_TypeInfo_var; extern const uint32_t Assembly_GetName_m3984565618_MetadataUsageId; extern "C" AssemblyName_t894705941 * Assembly_GetName_m3984565618 (Assembly_t4268412390 * __this, bool ___copiedName0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_GetName_m3984565618_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SecurityManager_t3191249573_il2cpp_TypeInfo_var); bool L_0 = SecurityManager_get_SecurityEnabled_m51574294(NULL /*static, unused*/, /*hidden argument*/NULL); if (!L_0) { goto IL_0012; } } { Assembly_GetCodeBase_m2735209720(__this, (bool)1, /*hidden argument*/NULL); } IL_0012: { AssemblyName_t894705941 * L_1 = VirtFuncInvoker0< AssemblyName_t894705941 * >::Invoke(17 /* System.Reflection.AssemblyName System.Reflection.Assembly::UnprotectedGetName() */, __this); return L_1; } } // System.Reflection.AssemblyName System.Reflection.Assembly::GetName() extern "C" AssemblyName_t894705941 * Assembly_GetName_m790410837 (Assembly_t4268412390 * __this, const MethodInfo* method) { { AssemblyName_t894705941 * L_0 = VirtFuncInvoker1< AssemblyName_t894705941 *, bool >::Invoke(15 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName(System.Boolean) */, __this, (bool)0); return L_0; } } // System.Reflection.AssemblyName System.Reflection.Assembly::UnprotectedGetName() extern Il2CppClass* AssemblyName_t894705941_il2cpp_TypeInfo_var; extern const uint32_t Assembly_UnprotectedGetName_m3014607408_MetadataUsageId; extern "C" AssemblyName_t894705941 * Assembly_UnprotectedGetName_m3014607408 (Assembly_t4268412390 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_UnprotectedGetName_m3014607408_MetadataUsageId); s_Il2CppMethodInitialized = true; } AssemblyName_t894705941 * V_0 = NULL; { AssemblyName_t894705941 * L_0 = (AssemblyName_t894705941 *)il2cpp_codegen_object_new(AssemblyName_t894705941_il2cpp_TypeInfo_var); AssemblyName__ctor_m2505746587(L_0, /*hidden argument*/NULL); V_0 = L_0; AssemblyName_t894705941 * L_1 = V_0; Assembly_FillName_m1934025015(NULL /*static, unused*/, __this, L_1, /*hidden argument*/NULL); AssemblyName_t894705941 * L_2 = V_0; return L_2; } } // System.String System.Reflection.Assembly::ToString() extern "C" String_t* Assembly_ToString_m3970658759 (Assembly_t4268412390 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_assemblyName_9(); if (!L_0) { goto IL_0012; } } { String_t* L_1 = __this->get_assemblyName_9(); return L_1; } IL_0012: { String_t* L_2 = Assembly_get_fullname_m3149819070(__this, /*hidden argument*/NULL); __this->set_assemblyName_9(L_2); String_t* L_3 = __this->get_assemblyName_9(); return L_3; } } // System.Reflection.Assembly System.Reflection.Assembly::Load(System.String) extern "C" Assembly_t4268412390 * Assembly_Load_m902205655 (Il2CppObject * __this /* static, unused */, String_t* ___assemblyString0, const MethodInfo* method) { { AppDomain_t2719102437 * L_0 = AppDomain_get_CurrentDomain_m3432767403(NULL /*static, unused*/, /*hidden argument*/NULL); String_t* L_1 = ___assemblyString0; NullCheck(L_0); Assembly_t4268412390 * L_2 = AppDomain_Load_m3276140461(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Reflection.Module System.Reflection.Assembly::GetModule(System.String) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2328218955; extern Il2CppCodeGenString* _stringLiteral3246678936; extern const uint32_t Assembly_GetModule_m2064378601_MetadataUsageId; extern "C" Module_t4282841206 * Assembly_GetModule_m2064378601 (Assembly_t4268412390 * __this, String_t* ___name0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_GetModule_m2064378601_MetadataUsageId); s_Il2CppMethodInitialized = true; } ModuleU5BU5D_t3593287923* V_0 = NULL; Module_t4282841206 * V_1 = NULL; ModuleU5BU5D_t3593287923* V_2 = NULL; int32_t V_3 = 0; { String_t* L_0 = ___name0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral2328218955, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { String_t* L_2 = ___name0; NullCheck(L_2); int32_t L_3 = String_get_Length_m1606060069(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0027; } } { ArgumentException_t3259014390 * L_4 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_4, _stringLiteral3246678936, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0027: { ModuleU5BU5D_t3593287923* L_5 = Assembly_GetModules_m2242070953(__this, (bool)1, /*hidden argument*/NULL); V_0 = L_5; ModuleU5BU5D_t3593287923* L_6 = V_0; V_2 = L_6; V_3 = 0; goto IL_0053; } IL_0038: { ModuleU5BU5D_t3593287923* L_7 = V_2; int32_t L_8 = V_3; NullCheck(L_7); int32_t L_9 = L_8; Module_t4282841206 * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = L_10; Module_t4282841206 * L_11 = V_1; NullCheck(L_11); String_t* L_12 = Module_get_ScopeName_m207704721(L_11, /*hidden argument*/NULL); String_t* L_13 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_14 = String_op_Equality_m1790663636(NULL /*static, unused*/, L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_004f; } } { Module_t4282841206 * L_15 = V_1; return L_15; } IL_004f: { int32_t L_16 = V_3; V_3 = ((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0053: { int32_t L_17 = V_3; ModuleU5BU5D_t3593287923* L_18 = V_2; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_18)->max_length))))))) { goto IL_0038; } } { return (Module_t4282841206 *)NULL; } } // System.Reflection.Module[] System.Reflection.Assembly::GetModulesInternal() extern "C" ModuleU5BU5D_t3593287923* Assembly_GetModulesInternal_m666827793 (Assembly_t4268412390 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef ModuleU5BU5D_t3593287923* (*Assembly_GetModulesInternal_m666827793_ftn) (Assembly_t4268412390 *); return ((Assembly_GetModulesInternal_m666827793_ftn)mscorlib::System::Reflection::Assembly::GetModulesInternal) (__this); } // System.Reflection.Module[] System.Reflection.Assembly::GetModules(System.Boolean) extern const Il2CppType* Module_t4282841206_0_0_0_var; extern Il2CppClass* ArrayList_t4252133567_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* ModuleU5BU5D_t3593287923_il2cpp_TypeInfo_var; extern const uint32_t Assembly_GetModules_m2242070953_MetadataUsageId; extern "C" ModuleU5BU5D_t3593287923* Assembly_GetModules_m2242070953 (Assembly_t4268412390 * __this, bool ___getResourceModules0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_GetModules_m2242070953_MetadataUsageId); s_Il2CppMethodInitialized = true; } ModuleU5BU5D_t3593287923* V_0 = NULL; ArrayList_t4252133567 * V_1 = NULL; Module_t4282841206 * V_2 = NULL; ModuleU5BU5D_t3593287923* V_3 = NULL; int32_t V_4 = 0; { ModuleU5BU5D_t3593287923* L_0 = VirtFuncInvoker0< ModuleU5BU5D_t3593287923* >::Invoke(19 /* System.Reflection.Module[] System.Reflection.Assembly::GetModulesInternal() */, __this); V_0 = L_0; bool L_1 = ___getResourceModules0; if (L_1) { goto IL_005e; } } { ModuleU5BU5D_t3593287923* L_2 = V_0; NullCheck(L_2); ArrayList_t4252133567 * L_3 = (ArrayList_t4252133567 *)il2cpp_codegen_object_new(ArrayList_t4252133567_il2cpp_TypeInfo_var); ArrayList__ctor_m1467563650(L_3, (((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length)))), /*hidden argument*/NULL); V_1 = L_3; ModuleU5BU5D_t3593287923* L_4 = V_0; V_3 = L_4; V_4 = 0; goto IL_003e; } IL_0020: { ModuleU5BU5D_t3593287923* L_5 = V_3; int32_t L_6 = V_4; NullCheck(L_5); int32_t L_7 = L_6; Module_t4282841206 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_2 = L_8; Module_t4282841206 * L_9 = V_2; NullCheck(L_9); bool L_10 = Module_IsResource_m663979284(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0038; } } { ArrayList_t4252133567 * L_11 = V_1; Module_t4282841206 * L_12 = V_2; NullCheck(L_11); VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_11, L_12); } IL_0038: { int32_t L_13 = V_4; V_4 = ((int32_t)((int32_t)L_13+(int32_t)1)); } IL_003e: { int32_t L_14 = V_4; ModuleU5BU5D_t3593287923* L_15 = V_3; NullCheck(L_15); if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_15)->max_length))))))) { goto IL_0020; } } { ArrayList_t4252133567 * L_16 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Module_t4282841206_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_16); Il2CppArray * L_18 = VirtFuncInvoker1< Il2CppArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_16, L_17); return ((ModuleU5BU5D_t3593287923*)Castclass(L_18, ModuleU5BU5D_t3593287923_il2cpp_TypeInfo_var)); } IL_005e: { ModuleU5BU5D_t3593287923* L_19 = V_0; return L_19; } } // System.Reflection.Assembly System.Reflection.Assembly::GetExecutingAssembly() extern const MethodInfo* Assembly_GetExecutingAssembly_m776016337_MethodInfo_var; extern const uint32_t Assembly_GetExecutingAssembly_m776016337_MetadataUsageId; extern "C" Assembly_t4268412390 * Assembly_GetExecutingAssembly_m776016337 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Assembly_GetExecutingAssembly_m776016337_MetadataUsageId); s_Il2CppMethodInitialized = true; } return il2cpp_codegen_get_executing_assembly(Assembly_GetExecutingAssembly_m776016337_MethodInfo_var); } // System.Void System.Reflection.Assembly/ResolveEventHolder::.ctor() extern "C" void ResolveEventHolder__ctor_m2004627747 (ResolveEventHolder_t1761494505 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.AssemblyCompanyAttribute::.ctor(System.String) extern "C" void AssemblyCompanyAttribute__ctor_m1217508649 (AssemblyCompanyAttribute_t2851673381 * __this, String_t* ___company0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___company0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyConfigurationAttribute::.ctor(System.String) extern "C" void AssemblyConfigurationAttribute__ctor_m2611941870 (AssemblyConfigurationAttribute_t1678917172 * __this, String_t* ___configuration0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___configuration0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyCopyrightAttribute::.ctor(System.String) extern "C" void AssemblyCopyrightAttribute__ctor_m2712202383 (AssemblyCopyrightAttribute_t177123295 * __this, String_t* ___copyright0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___copyright0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyDefaultAliasAttribute::.ctor(System.String) extern "C" void AssemblyDefaultAliasAttribute__ctor_m746891723 (AssemblyDefaultAliasAttribute_t1774139159 * __this, String_t* ___defaultAlias0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___defaultAlias0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyDelaySignAttribute::.ctor(System.Boolean) extern "C" void AssemblyDelaySignAttribute__ctor_m793760213 (AssemblyDelaySignAttribute_t2705758496 * __this, bool ___delaySign0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); bool L_0 = ___delaySign0; __this->set_delay_0(L_0); return; } } // System.Void System.Reflection.AssemblyDescriptionAttribute::.ctor(System.String) extern "C" void AssemblyDescriptionAttribute__ctor_m3307088082 (AssemblyDescriptionAttribute_t1018387888 * __this, String_t* ___description0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___description0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyFileVersionAttribute::.ctor(System.String) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3617362; extern const uint32_t AssemblyFileVersionAttribute__ctor_m2026149866_MetadataUsageId; extern "C" void AssemblyFileVersionAttribute__ctor_m2026149866 (AssemblyFileVersionAttribute_t2897687916 * __this, String_t* ___version0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyFileVersionAttribute__ctor_m2026149866_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___version0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral3617362, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { String_t* L_2 = ___version0; __this->set_name_0(L_2); return; } } // System.Void System.Reflection.AssemblyInformationalVersionAttribute::.ctor(System.String) extern "C" void AssemblyInformationalVersionAttribute__ctor_m376831533 (AssemblyInformationalVersionAttribute_t3037389657 * __this, String_t* ___informationalVersion0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___informationalVersion0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyKeyFileAttribute::.ctor(System.String) extern "C" void AssemblyKeyFileAttribute__ctor_m1072556611 (AssemblyKeyFileAttribute_t605245443 * __this, String_t* ___keyFile0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___keyFile0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyName::.ctor() extern "C" void AssemblyName__ctor_m2505746587 (AssemblyName_t894705941 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); __this->set_versioncompat_12(1); return; } } // System.Void System.Reflection.AssemblyName::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern const Il2CppType* Version_t1755874712_0_0_0_var; extern const Il2CppType* ByteU5BU5D_t3397334013_0_0_0_var; extern const Il2CppType* AssemblyHashAlgorithm_t4147282775_0_0_0_var; extern const Il2CppType* StrongNameKeyPair_t4090869089_0_0_0_var; extern const Il2CppType* AssemblyVersionCompatibility_t1223556284_0_0_0_var; extern const Il2CppType* AssemblyNameFlags_t1794031440_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Version_t1755874712_il2cpp_TypeInfo_var; extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t2071877448_il2cpp_TypeInfo_var; extern Il2CppClass* StrongNameKeyPair_t4090869089_il2cpp_TypeInfo_var; extern Il2CppClass* CultureInfo_t3500843524_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral594030812; extern Il2CppCodeGenString* _stringLiteral1952199827; extern Il2CppCodeGenString* _stringLiteral1734555969; extern Il2CppCodeGenString* _stringLiteral2167127169; extern Il2CppCodeGenString* _stringLiteral2837183762; extern Il2CppCodeGenString* _stringLiteral3684797936; extern Il2CppCodeGenString* _stringLiteral2448232678; extern Il2CppCodeGenString* _stringLiteral1836058351; extern Il2CppCodeGenString* _stringLiteral180760614; extern Il2CppCodeGenString* _stringLiteral3706305741; extern const uint32_t AssemblyName__ctor_m609734316_MetadataUsageId; extern "C" void AssemblyName__ctor_m609734316 (AssemblyName_t894705941 * __this, SerializationInfo_t228987430 * ___si0, StreamingContext_t1417235061 ___sc1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName__ctor_m609734316_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_0 = ___si0; NullCheck(L_0); String_t* L_1 = SerializationInfo_GetString_m547109409(L_0, _stringLiteral594030812, /*hidden argument*/NULL); __this->set_name_0(L_1); SerializationInfo_t228987430 * L_2 = ___si0; NullCheck(L_2); String_t* L_3 = SerializationInfo_GetString_m547109409(L_2, _stringLiteral1952199827, /*hidden argument*/NULL); __this->set_codebase_1(L_3); SerializationInfo_t228987430 * L_4 = ___si0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Version_t1755874712_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_4); Il2CppObject * L_6 = SerializationInfo_GetValue_m1127314592(L_4, _stringLiteral1734555969, L_5, /*hidden argument*/NULL); __this->set_version_13(((Version_t1755874712 *)CastclassSealed(L_6, Version_t1755874712_il2cpp_TypeInfo_var))); SerializationInfo_t228987430 * L_7 = ___si0; Type_t * L_8 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t3397334013_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_7); Il2CppObject * L_9 = SerializationInfo_GetValue_m1127314592(L_7, _stringLiteral2167127169, L_8, /*hidden argument*/NULL); __this->set_publicKey_10(((ByteU5BU5D_t3397334013*)Castclass(L_9, ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var))); SerializationInfo_t228987430 * L_10 = ___si0; Type_t * L_11 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t3397334013_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_10); Il2CppObject * L_12 = SerializationInfo_GetValue_m1127314592(L_10, _stringLiteral2837183762, L_11, /*hidden argument*/NULL); __this->set_keyToken_11(((ByteU5BU5D_t3397334013*)Castclass(L_12, ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var))); SerializationInfo_t228987430 * L_13 = ___si0; Type_t * L_14 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(AssemblyHashAlgorithm_t4147282775_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_13); Il2CppObject * L_15 = SerializationInfo_GetValue_m1127314592(L_13, _stringLiteral3684797936, L_14, /*hidden argument*/NULL); __this->set_hashalg_8(((*(int32_t*)((int32_t*)UnBox (L_15, Int32_t2071877448_il2cpp_TypeInfo_var))))); SerializationInfo_t228987430 * L_16 = ___si0; Type_t * L_17 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(StrongNameKeyPair_t4090869089_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_16); Il2CppObject * L_18 = SerializationInfo_GetValue_m1127314592(L_16, _stringLiteral2448232678, L_17, /*hidden argument*/NULL); __this->set_keypair_9(((StrongNameKeyPair_t4090869089 *)CastclassClass(L_18, StrongNameKeyPair_t4090869089_il2cpp_TypeInfo_var))); SerializationInfo_t228987430 * L_19 = ___si0; Type_t * L_20 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(AssemblyVersionCompatibility_t1223556284_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_19); Il2CppObject * L_21 = SerializationInfo_GetValue_m1127314592(L_19, _stringLiteral1836058351, L_20, /*hidden argument*/NULL); __this->set_versioncompat_12(((*(int32_t*)((int32_t*)UnBox (L_21, Int32_t2071877448_il2cpp_TypeInfo_var))))); SerializationInfo_t228987430 * L_22 = ___si0; Type_t * L_23 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(AssemblyNameFlags_t1794031440_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_22); Il2CppObject * L_24 = SerializationInfo_GetValue_m1127314592(L_22, _stringLiteral180760614, L_23, /*hidden argument*/NULL); __this->set_flags_7(((*(int32_t*)((int32_t*)UnBox (L_24, Int32_t2071877448_il2cpp_TypeInfo_var))))); SerializationInfo_t228987430 * L_25 = ___si0; NullCheck(L_25); int32_t L_26 = SerializationInfo_GetInt32_m4039439501(L_25, _stringLiteral3706305741, /*hidden argument*/NULL); V_0 = L_26; int32_t L_27 = V_0; if ((((int32_t)L_27) == ((int32_t)(-1)))) { goto IL_0127; } } { int32_t L_28 = V_0; CultureInfo_t3500843524 * L_29 = (CultureInfo_t3500843524 *)il2cpp_codegen_object_new(CultureInfo_t3500843524_il2cpp_TypeInfo_var); CultureInfo__ctor_m3417484387(L_29, L_28, /*hidden argument*/NULL); __this->set_cultureinfo_6(L_29); } IL_0127: { return; } } // System.String System.Reflection.AssemblyName::get_Name() extern "C" String_t* AssemblyName_get_Name_m1815759940 (AssemblyName_t894705941 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } // System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::get_Flags() extern "C" int32_t AssemblyName_get_Flags_m1290091392 (AssemblyName_t894705941 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_flags_7(); return L_0; } } // System.String System.Reflection.AssemblyName::get_FullName() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* StringBuilder_t1221177846_il2cpp_TypeInfo_var; extern Il2CppClass* CultureInfo_t3500843524_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3774245231; extern Il2CppCodeGenString* _stringLiteral1256080173; extern Il2CppCodeGenString* _stringLiteral3350611209; extern Il2CppCodeGenString* _stringLiteral3574561019; extern Il2CppCodeGenString* _stringLiteral1653664622; extern Il2CppCodeGenString* _stringLiteral3231012720; extern Il2CppCodeGenString* _stringLiteral130462888; extern const uint32_t AssemblyName_get_FullName_m1606421515_MetadataUsageId; extern "C" String_t* AssemblyName_get_FullName_m1606421515 (AssemblyName_t894705941 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName_get_FullName_m1606421515_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1221177846 * V_0 = NULL; ByteU5BU5D_t3397334013* V_1 = NULL; int32_t V_2 = 0; { String_t* L_0 = __this->get_name_0(); if (L_0) { goto IL_0011; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_1 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2(); return L_1; } IL_0011: { StringBuilder_t1221177846 * L_2 = (StringBuilder_t1221177846 *)il2cpp_codegen_object_new(StringBuilder_t1221177846_il2cpp_TypeInfo_var); StringBuilder__ctor_m3946851802(L_2, /*hidden argument*/NULL); V_0 = L_2; StringBuilder_t1221177846 * L_3 = V_0; String_t* L_4 = __this->get_name_0(); NullCheck(L_3); StringBuilder_Append_m3636508479(L_3, L_4, /*hidden argument*/NULL); Version_t1755874712 * L_5 = AssemblyName_get_Version_m3495645648(__this, /*hidden argument*/NULL); bool L_6 = Version_op_Inequality_m828629926(NULL /*static, unused*/, L_5, (Version_t1755874712 *)NULL, /*hidden argument*/NULL); if (!L_6) { goto IL_0053; } } { StringBuilder_t1221177846 * L_7 = V_0; NullCheck(L_7); StringBuilder_Append_m3636508479(L_7, _stringLiteral3774245231, /*hidden argument*/NULL); StringBuilder_t1221177846 * L_8 = V_0; Version_t1755874712 * L_9 = AssemblyName_get_Version_m3495645648(__this, /*hidden argument*/NULL); NullCheck(L_9); String_t* L_10 = Version_ToString_m18049552(L_9, /*hidden argument*/NULL); NullCheck(L_8); StringBuilder_Append_m3636508479(L_8, L_10, /*hidden argument*/NULL); } IL_0053: { CultureInfo_t3500843524 * L_11 = __this->get_cultureinfo_6(); if (!L_11) { goto IL_00a7; } } { StringBuilder_t1221177846 * L_12 = V_0; NullCheck(L_12); StringBuilder_Append_m3636508479(L_12, _stringLiteral1256080173, /*hidden argument*/NULL); CultureInfo_t3500843524 * L_13 = __this->get_cultureinfo_6(); NullCheck(L_13); int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_13); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t3500843524_il2cpp_TypeInfo_var); CultureInfo_t3500843524 * L_15 = CultureInfo_get_InvariantCulture_m398972276(NULL /*static, unused*/, /*hidden argument*/NULL); NullCheck(L_15); int32_t L_16 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_15); if ((!(((uint32_t)L_14) == ((uint32_t)L_16)))) { goto IL_0095; } } { StringBuilder_t1221177846 * L_17 = V_0; NullCheck(L_17); StringBuilder_Append_m3636508479(L_17, _stringLiteral3350611209, /*hidden argument*/NULL); goto IL_00a7; } IL_0095: { StringBuilder_t1221177846 * L_18 = V_0; CultureInfo_t3500843524 * L_19 = __this->get_cultureinfo_6(); NullCheck(L_19); String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_19); NullCheck(L_18); StringBuilder_Append_m3636508479(L_18, L_20, /*hidden argument*/NULL); } IL_00a7: { ByteU5BU5D_t3397334013* L_21 = AssemblyName_InternalGetPublicKeyToken_m3706025887(__this, /*hidden argument*/NULL); V_1 = L_21; ByteU5BU5D_t3397334013* L_22 = V_1; if (!L_22) { goto IL_0105; } } { ByteU5BU5D_t3397334013* L_23 = V_1; NullCheck(L_23); if ((((int32_t)((int32_t)(((Il2CppArray *)L_23)->max_length))))) { goto IL_00cd; } } { StringBuilder_t1221177846 * L_24 = V_0; NullCheck(L_24); StringBuilder_Append_m3636508479(L_24, _stringLiteral3574561019, /*hidden argument*/NULL); goto IL_0105; } IL_00cd: { StringBuilder_t1221177846 * L_25 = V_0; NullCheck(L_25); StringBuilder_Append_m3636508479(L_25, _stringLiteral1653664622, /*hidden argument*/NULL); V_2 = 0; goto IL_00fc; } IL_00e0: { StringBuilder_t1221177846 * L_26 = V_0; ByteU5BU5D_t3397334013* L_27 = V_1; int32_t L_28 = V_2; NullCheck(L_27); String_t* L_29 = Byte_ToString_m1309661918(((L_27)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_28))), _stringLiteral3231012720, /*hidden argument*/NULL); NullCheck(L_26); StringBuilder_Append_m3636508479(L_26, L_29, /*hidden argument*/NULL); int32_t L_30 = V_2; V_2 = ((int32_t)((int32_t)L_30+(int32_t)1)); } IL_00fc: { int32_t L_31 = V_2; ByteU5BU5D_t3397334013* L_32 = V_1; NullCheck(L_32); if ((((int32_t)L_31) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_32)->max_length))))))) { goto IL_00e0; } } IL_0105: { int32_t L_33 = AssemblyName_get_Flags_m1290091392(__this, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_33&(int32_t)((int32_t)256)))) { goto IL_0122; } } { StringBuilder_t1221177846 * L_34 = V_0; NullCheck(L_34); StringBuilder_Append_m3636508479(L_34, _stringLiteral130462888, /*hidden argument*/NULL); } IL_0122: { StringBuilder_t1221177846 * L_35 = V_0; NullCheck(L_35); String_t* L_36 = StringBuilder_ToString_m1507807375(L_35, /*hidden argument*/NULL); return L_36; } } // System.Version System.Reflection.AssemblyName::get_Version() extern "C" Version_t1755874712 * AssemblyName_get_Version_m3495645648 (AssemblyName_t894705941 * __this, const MethodInfo* method) { { Version_t1755874712 * L_0 = __this->get_version_13(); return L_0; } } // System.Void System.Reflection.AssemblyName::set_Version(System.Version) extern "C" void AssemblyName_set_Version_m1012722441 (AssemblyName_t894705941 * __this, Version_t1755874712 * ___value0, const MethodInfo* method) { int32_t V_0 = 0; { Version_t1755874712 * L_0 = ___value0; __this->set_version_13(L_0); Version_t1755874712 * L_1 = ___value0; bool L_2 = Version_op_Equality_m24249905(NULL /*static, unused*/, L_1, (Version_t1755874712 *)NULL, /*hidden argument*/NULL); if (!L_2) { goto IL_003a; } } { int32_t L_3 = 0; V_0 = L_3; __this->set_revision_5(L_3); int32_t L_4 = V_0; int32_t L_5 = L_4; V_0 = L_5; __this->set_build_4(L_5); int32_t L_6 = V_0; int32_t L_7 = L_6; V_0 = L_7; __this->set_minor_3(L_7); int32_t L_8 = V_0; __this->set_major_2(L_8); goto IL_006a; } IL_003a: { Version_t1755874712 * L_9 = ___value0; NullCheck(L_9); int32_t L_10 = Version_get_Major_m3385239713(L_9, /*hidden argument*/NULL); __this->set_major_2(L_10); Version_t1755874712 * L_11 = ___value0; NullCheck(L_11); int32_t L_12 = Version_get_Minor_m3449134197(L_11, /*hidden argument*/NULL); __this->set_minor_3(L_12); Version_t1755874712 * L_13 = ___value0; NullCheck(L_13); int32_t L_14 = Version_get_Build_m4207539494(L_13, /*hidden argument*/NULL); __this->set_build_4(L_14); Version_t1755874712 * L_15 = ___value0; NullCheck(L_15); int32_t L_16 = Version_get_Revision_m654005649(L_15, /*hidden argument*/NULL); __this->set_revision_5(L_16); } IL_006a: { return; } } // System.String System.Reflection.AssemblyName::ToString() extern "C" String_t* AssemblyName_ToString_m354334942 (AssemblyName_t894705941 * __this, const MethodInfo* method) { String_t* V_0 = NULL; String_t* G_B3_0 = NULL; { String_t* L_0 = AssemblyName_get_FullName_m1606421515(__this, /*hidden argument*/NULL); V_0 = L_0; String_t* L_1 = V_0; if (!L_1) { goto IL_0013; } } { String_t* L_2 = V_0; G_B3_0 = L_2; goto IL_0019; } IL_0013: { String_t* L_3 = Object_ToString_m853381981(__this, /*hidden argument*/NULL); G_B3_0 = L_3; } IL_0019: { return G_B3_0; } } // System.Boolean System.Reflection.AssemblyName::get_IsPublicKeyValid() extern Il2CppClass* CryptographicException_t3349726436_il2cpp_TypeInfo_var; extern const uint32_t AssemblyName_get_IsPublicKeyValid_m188320564_MetadataUsageId; extern "C" bool AssemblyName_get_IsPublicKeyValid_m188320564 (AssemblyName_t894705941 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName_get_IsPublicKeyValid_m188320564_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; bool V_3 = false; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ByteU5BU5D_t3397334013* L_0 = __this->get_publicKey_10(); NullCheck(L_0); if ((!(((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_0)->max_length))))) == ((uint32_t)((int32_t)16))))) { goto IL_003e; } } { V_0 = 0; V_1 = 0; goto IL_0027; } IL_0018: { int32_t L_1 = V_1; ByteU5BU5D_t3397334013* L_2 = __this->get_publicKey_10(); int32_t L_3 = V_0; int32_t L_4 = L_3; V_0 = ((int32_t)((int32_t)L_4+(int32_t)1)); NullCheck(L_2); int32_t L_5 = L_4; uint8_t L_6 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = ((int32_t)((int32_t)L_1+(int32_t)L_6)); } IL_0027: { int32_t L_7 = V_0; ByteU5BU5D_t3397334013* L_8 = __this->get_publicKey_10(); NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_8)->max_length))))))) { goto IL_0018; } } { int32_t L_9 = V_1; if ((!(((uint32_t)L_9) == ((uint32_t)4)))) { goto IL_003e; } } { return (bool)1; } IL_003e: { ByteU5BU5D_t3397334013* L_10 = __this->get_publicKey_10(); NullCheck(L_10); int32_t L_11 = 0; uint8_t L_12 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); V_2 = L_12; uint8_t L_13 = V_2; if ((((int32_t)L_13) == ((int32_t)6))) { goto IL_00a4; } } { uint8_t L_14 = V_2; if ((((int32_t)L_14) == ((int32_t)7))) { goto IL_00c7; } } { uint8_t L_15 = V_2; if ((((int32_t)L_15) == ((int32_t)0))) { goto IL_0061; } } { goto IL_00cc; } IL_0061: { ByteU5BU5D_t3397334013* L_16 = __this->get_publicKey_10(); NullCheck(L_16); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_16)->max_length))))) <= ((int32_t)((int32_t)12)))) { goto IL_009f; } } { ByteU5BU5D_t3397334013* L_17 = __this->get_publicKey_10(); NullCheck(L_17); int32_t L_18 = ((int32_t)12); uint8_t L_19 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); if ((!(((uint32_t)L_19) == ((uint32_t)6)))) { goto IL_009f; } } IL_007f: try { // begin try (depth: 1) { ByteU5BU5D_t3397334013* L_20 = __this->get_publicKey_10(); CryptoConvert_FromCapiPublicKeyBlob_m812595523(NULL /*static, unused*/, L_20, ((int32_t)12), /*hidden argument*/NULL); V_3 = (bool)1; goto IL_00ce; } IL_0094: { ; // IL_0094: leave IL_009f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (CryptographicException_t3349726436_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0099; throw e; } CATCH_0099: { // begin catch(System.Security.Cryptography.CryptographicException) goto IL_009f; } // end catch (depth: 1) IL_009f: { goto IL_00cc; } IL_00a4: try { // begin try (depth: 1) { ByteU5BU5D_t3397334013* L_21 = __this->get_publicKey_10(); CryptoConvert_FromCapiPublicKeyBlob_m547807126(NULL /*static, unused*/, L_21, /*hidden argument*/NULL); V_3 = (bool)1; goto IL_00ce; } IL_00b7: { ; // IL_00b7: leave IL_00c2 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (CryptographicException_t3349726436_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_00bc; throw e; } CATCH_00bc: { // begin catch(System.Security.Cryptography.CryptographicException) goto IL_00c2; } // end catch (depth: 1) IL_00c2: { goto IL_00cc; } IL_00c7: { goto IL_00cc; } IL_00cc: { return (bool)0; } IL_00ce: { bool L_22 = V_3; return L_22; } } // System.Byte[] System.Reflection.AssemblyName::InternalGetPublicKeyToken() extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern Il2CppClass* SecurityException_t887327375_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2662378774; extern const uint32_t AssemblyName_InternalGetPublicKeyToken_m3706025887_MetadataUsageId; extern "C" ByteU5BU5D_t3397334013* AssemblyName_InternalGetPublicKeyToken_m3706025887 (AssemblyName_t894705941 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName_InternalGetPublicKeyToken_m3706025887_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_t3397334013* L_0 = __this->get_keyToken_11(); if (!L_0) { goto IL_0012; } } { ByteU5BU5D_t3397334013* L_1 = __this->get_keyToken_11(); return L_1; } IL_0012: { ByteU5BU5D_t3397334013* L_2 = __this->get_publicKey_10(); if (L_2) { goto IL_001f; } } { return (ByteU5BU5D_t3397334013*)NULL; } IL_001f: { ByteU5BU5D_t3397334013* L_3 = __this->get_publicKey_10(); NullCheck(L_3); if ((((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length))))) { goto IL_0033; } } { return ((ByteU5BU5D_t3397334013*)SZArrayNew(ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_0033: { bool L_4 = AssemblyName_get_IsPublicKeyValid_m188320564(__this, /*hidden argument*/NULL); if (L_4) { goto IL_0049; } } { SecurityException_t887327375 * L_5 = (SecurityException_t887327375 *)il2cpp_codegen_object_new(SecurityException_t887327375_il2cpp_TypeInfo_var); SecurityException__ctor_m1484114982(L_5, _stringLiteral2662378774, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0049: { ByteU5BU5D_t3397334013* L_6 = AssemblyName_ComputePublicKeyToken_m2254215863(__this, /*hidden argument*/NULL); return L_6; } } // System.Byte[] System.Reflection.AssemblyName::ComputePublicKeyToken() extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern const uint32_t AssemblyName_ComputePublicKeyToken_m2254215863_MetadataUsageId; extern "C" ByteU5BU5D_t3397334013* AssemblyName_ComputePublicKeyToken_m2254215863 (AssemblyName_t894705941 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName_ComputePublicKeyToken_m2254215863_MetadataUsageId); s_Il2CppMethodInitialized = true; } HashAlgorithm_t2624936259 * V_0 = NULL; ByteU5BU5D_t3397334013* V_1 = NULL; ByteU5BU5D_t3397334013* V_2 = NULL; { SHA1_t3336793149 * L_0 = SHA1_Create_m139442991(NULL /*static, unused*/, /*hidden argument*/NULL); V_0 = L_0; HashAlgorithm_t2624936259 * L_1 = V_0; ByteU5BU5D_t3397334013* L_2 = __this->get_publicKey_10(); NullCheck(L_1); ByteU5BU5D_t3397334013* L_3 = HashAlgorithm_ComputeHash_m3637856778(L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; V_2 = ((ByteU5BU5D_t3397334013*)SZArrayNew(ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var, (uint32_t)8)); ByteU5BU5D_t3397334013* L_4 = V_1; ByteU5BU5D_t3397334013* L_5 = V_1; NullCheck(L_5); ByteU5BU5D_t3397334013* L_6 = V_2; Array_Copy_m3808317496(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_4, ((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length))))-(int32_t)8)), (Il2CppArray *)(Il2CppArray *)L_6, 0, 8, /*hidden argument*/NULL); ByteU5BU5D_t3397334013* L_7 = V_2; Array_Reverse_m3433347928(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_7, 0, 8, /*hidden argument*/NULL); ByteU5BU5D_t3397334013* L_8 = V_2; return L_8; } } // System.Void System.Reflection.AssemblyName::SetPublicKey(System.Byte[]) extern "C" void AssemblyName_SetPublicKey_m1491402438 (AssemblyName_t894705941 * __this, ByteU5BU5D_t3397334013* ___publicKey0, const MethodInfo* method) { { ByteU5BU5D_t3397334013* L_0 = ___publicKey0; if (L_0) { goto IL_0019; } } { int32_t L_1 = __this->get_flags_7(); __this->set_flags_7(((int32_t)((int32_t)L_1^(int32_t)1))); goto IL_0027; } IL_0019: { int32_t L_2 = __this->get_flags_7(); __this->set_flags_7(((int32_t)((int32_t)L_2|(int32_t)1))); } IL_0027: { ByteU5BU5D_t3397334013* L_3 = ___publicKey0; __this->set_publicKey_10(L_3); return; } } // System.Void System.Reflection.AssemblyName::SetPublicKeyToken(System.Byte[]) extern "C" void AssemblyName_SetPublicKeyToken_m3032035167 (AssemblyName_t894705941 * __this, ByteU5BU5D_t3397334013* ___publicKeyToken0, const MethodInfo* method) { { ByteU5BU5D_t3397334013* L_0 = ___publicKeyToken0; __this->set_keyToken_11(L_0); return; } } // System.Void System.Reflection.AssemblyName::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppClass* AssemblyHashAlgorithm_t4147282775_il2cpp_TypeInfo_var; extern Il2CppClass* AssemblyVersionCompatibility_t1223556284_il2cpp_TypeInfo_var; extern Il2CppClass* AssemblyNameFlags_t1794031440_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2792112382; extern Il2CppCodeGenString* _stringLiteral594030812; extern Il2CppCodeGenString* _stringLiteral2167127169; extern Il2CppCodeGenString* _stringLiteral2837183762; extern Il2CppCodeGenString* _stringLiteral3706305741; extern Il2CppCodeGenString* _stringLiteral1952199827; extern Il2CppCodeGenString* _stringLiteral1734555969; extern Il2CppCodeGenString* _stringLiteral3684797936; extern Il2CppCodeGenString* _stringLiteral416540412; extern Il2CppCodeGenString* _stringLiteral2448232678; extern Il2CppCodeGenString* _stringLiteral1836058351; extern Il2CppCodeGenString* _stringLiteral180760614; extern Il2CppCodeGenString* _stringLiteral556236101; extern const uint32_t AssemblyName_GetObjectData_m1221677827_MetadataUsageId; extern "C" void AssemblyName_GetObjectData_m1221677827 (AssemblyName_t894705941 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName_GetObjectData_m1221677827_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B4_0 = NULL; SerializationInfo_t228987430 * G_B4_1 = NULL; String_t* G_B3_0 = NULL; SerializationInfo_t228987430 * G_B3_1 = NULL; int32_t G_B5_0 = 0; String_t* G_B5_1 = NULL; SerializationInfo_t228987430 * G_B5_2 = NULL; { SerializationInfo_t228987430 * L_0 = ___info0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral2792112382, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { SerializationInfo_t228987430 * L_2 = ___info0; String_t* L_3 = __this->get_name_0(); NullCheck(L_2); SerializationInfo_AddValue_m1740888931(L_2, _stringLiteral594030812, L_3, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_4 = ___info0; ByteU5BU5D_t3397334013* L_5 = __this->get_publicKey_10(); NullCheck(L_4); SerializationInfo_AddValue_m1740888931(L_4, _stringLiteral2167127169, (Il2CppObject *)(Il2CppObject *)L_5, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_6 = ___info0; ByteU5BU5D_t3397334013* L_7 = __this->get_keyToken_11(); NullCheck(L_6); SerializationInfo_AddValue_m1740888931(L_6, _stringLiteral2837183762, (Il2CppObject *)(Il2CppObject *)L_7, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_8 = ___info0; CultureInfo_t3500843524 * L_9 = __this->get_cultureinfo_6(); G_B3_0 = _stringLiteral3706305741; G_B3_1 = L_8; if (!L_9) { G_B4_0 = _stringLiteral3706305741; G_B4_1 = L_8; goto IL_0065; } } { CultureInfo_t3500843524 * L_10 = __this->get_cultureinfo_6(); NullCheck(L_10); int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_10); G_B5_0 = L_11; G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0066; } IL_0065: { G_B5_0 = (-1); G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0066: { NullCheck(G_B5_2); SerializationInfo_AddValue_m902275108(G_B5_2, G_B5_1, G_B5_0, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_12 = ___info0; String_t* L_13 = __this->get_codebase_1(); NullCheck(L_12); SerializationInfo_AddValue_m1740888931(L_12, _stringLiteral1952199827, L_13, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_14 = ___info0; Version_t1755874712 * L_15 = AssemblyName_get_Version_m3495645648(__this, /*hidden argument*/NULL); NullCheck(L_14); SerializationInfo_AddValue_m1740888931(L_14, _stringLiteral1734555969, L_15, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_16 = ___info0; int32_t L_17 = __this->get_hashalg_8(); int32_t L_18 = L_17; Il2CppObject * L_19 = Box(AssemblyHashAlgorithm_t4147282775_il2cpp_TypeInfo_var, &L_18); NullCheck(L_16); SerializationInfo_AddValue_m1740888931(L_16, _stringLiteral3684797936, L_19, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_20 = ___info0; int32_t L_21 = ((int32_t)0); Il2CppObject * L_22 = Box(AssemblyHashAlgorithm_t4147282775_il2cpp_TypeInfo_var, &L_21); NullCheck(L_20); SerializationInfo_AddValue_m1740888931(L_20, _stringLiteral416540412, L_22, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_23 = ___info0; StrongNameKeyPair_t4090869089 * L_24 = __this->get_keypair_9(); NullCheck(L_23); SerializationInfo_AddValue_m1740888931(L_23, _stringLiteral2448232678, L_24, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_25 = ___info0; int32_t L_26 = __this->get_versioncompat_12(); int32_t L_27 = L_26; Il2CppObject * L_28 = Box(AssemblyVersionCompatibility_t1223556284_il2cpp_TypeInfo_var, &L_27); NullCheck(L_25); SerializationInfo_AddValue_m1740888931(L_25, _stringLiteral1836058351, L_28, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_29 = ___info0; int32_t L_30 = __this->get_flags_7(); int32_t L_31 = L_30; Il2CppObject * L_32 = Box(AssemblyNameFlags_t1794031440_il2cpp_TypeInfo_var, &L_31); NullCheck(L_29); SerializationInfo_AddValue_m1740888931(L_29, _stringLiteral180760614, L_32, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_33 = ___info0; NullCheck(L_33); SerializationInfo_AddValue_m1740888931(L_33, _stringLiteral556236101, NULL, /*hidden argument*/NULL); return; } } // System.Object System.Reflection.AssemblyName::Clone() extern Il2CppClass* AssemblyName_t894705941_il2cpp_TypeInfo_var; extern const uint32_t AssemblyName_Clone_m3390118349_MetadataUsageId; extern "C" Il2CppObject * AssemblyName_Clone_m3390118349 (AssemblyName_t894705941 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyName_Clone_m3390118349_MetadataUsageId); s_Il2CppMethodInitialized = true; } AssemblyName_t894705941 * V_0 = NULL; { AssemblyName_t894705941 * L_0 = (AssemblyName_t894705941 *)il2cpp_codegen_object_new(AssemblyName_t894705941_il2cpp_TypeInfo_var); AssemblyName__ctor_m2505746587(L_0, /*hidden argument*/NULL); V_0 = L_0; AssemblyName_t894705941 * L_1 = V_0; String_t* L_2 = __this->get_name_0(); NullCheck(L_1); L_1->set_name_0(L_2); AssemblyName_t894705941 * L_3 = V_0; String_t* L_4 = __this->get_codebase_1(); NullCheck(L_3); L_3->set_codebase_1(L_4); AssemblyName_t894705941 * L_5 = V_0; int32_t L_6 = __this->get_major_2(); NullCheck(L_5); L_5->set_major_2(L_6); AssemblyName_t894705941 * L_7 = V_0; int32_t L_8 = __this->get_minor_3(); NullCheck(L_7); L_7->set_minor_3(L_8); AssemblyName_t894705941 * L_9 = V_0; int32_t L_10 = __this->get_build_4(); NullCheck(L_9); L_9->set_build_4(L_10); AssemblyName_t894705941 * L_11 = V_0; int32_t L_12 = __this->get_revision_5(); NullCheck(L_11); L_11->set_revision_5(L_12); AssemblyName_t894705941 * L_13 = V_0; Version_t1755874712 * L_14 = __this->get_version_13(); NullCheck(L_13); L_13->set_version_13(L_14); AssemblyName_t894705941 * L_15 = V_0; CultureInfo_t3500843524 * L_16 = __this->get_cultureinfo_6(); NullCheck(L_15); L_15->set_cultureinfo_6(L_16); AssemblyName_t894705941 * L_17 = V_0; int32_t L_18 = __this->get_flags_7(); NullCheck(L_17); L_17->set_flags_7(L_18); AssemblyName_t894705941 * L_19 = V_0; int32_t L_20 = __this->get_hashalg_8(); NullCheck(L_19); L_19->set_hashalg_8(L_20); AssemblyName_t894705941 * L_21 = V_0; StrongNameKeyPair_t4090869089 * L_22 = __this->get_keypair_9(); NullCheck(L_21); L_21->set_keypair_9(L_22); AssemblyName_t894705941 * L_23 = V_0; ByteU5BU5D_t3397334013* L_24 = __this->get_publicKey_10(); NullCheck(L_23); L_23->set_publicKey_10(L_24); AssemblyName_t894705941 * L_25 = V_0; ByteU5BU5D_t3397334013* L_26 = __this->get_keyToken_11(); NullCheck(L_25); L_25->set_keyToken_11(L_26); AssemblyName_t894705941 * L_27 = V_0; int32_t L_28 = __this->get_versioncompat_12(); NullCheck(L_27); L_27->set_versioncompat_12(L_28); AssemblyName_t894705941 * L_29 = V_0; return L_29; } } // System.Void System.Reflection.AssemblyName::OnDeserialization(System.Object) extern "C" void AssemblyName_OnDeserialization_m2683521459 (AssemblyName_t894705941 * __this, Il2CppObject * ___sender0, const MethodInfo* method) { { Version_t1755874712 * L_0 = __this->get_version_13(); AssemblyName_set_Version_m1012722441(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.AssemblyProductAttribute::.ctor(System.String) extern "C" void AssemblyProductAttribute__ctor_m1807437213 (AssemblyProductAttribute_t1523443169 * __this, String_t* ___product0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___product0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyTitleAttribute::.ctor(System.String) extern "C" void AssemblyTitleAttribute__ctor_m1696431446 (AssemblyTitleAttribute_t92945912 * __this, String_t* ___title0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___title0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.AssemblyTrademarkAttribute::.ctor(System.String) extern "C" void AssemblyTrademarkAttribute__ctor_m4184045333 (AssemblyTrademarkAttribute_t3740556705 * __this, String_t* ___trademark0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___trademark0; __this->set_name_0(L_0); return; } } // System.Void System.Reflection.Binder::.ctor() extern "C" void Binder__ctor_m1361613966 (Binder_t3404612058 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.Binder::.cctor() extern Il2CppClass* Default_t3956931304_il2cpp_TypeInfo_var; extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern const uint32_t Binder__cctor_m3736115807_MetadataUsageId; extern "C" void Binder__cctor_m3736115807 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Binder__cctor_m3736115807_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Default_t3956931304 * L_0 = (Default_t3956931304 *)il2cpp_codegen_object_new(Default_t3956931304_il2cpp_TypeInfo_var); Default__ctor_m172834064(L_0, /*hidden argument*/NULL); ((Binder_t3404612058_StaticFields*)Binder_t3404612058_il2cpp_TypeInfo_var->static_fields)->set_default_binder_0(L_0); return; } } // System.Reflection.Binder System.Reflection.Binder::get_DefaultBinder() extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern const uint32_t Binder_get_DefaultBinder_m965620943_MetadataUsageId; extern "C" Binder_t3404612058 * Binder_get_DefaultBinder_m965620943 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Binder_get_DefaultBinder_m965620943_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder_t3404612058 * L_0 = ((Binder_t3404612058_StaticFields*)Binder_t3404612058_il2cpp_TypeInfo_var->static_fields)->get_default_binder_0(); return L_0; } } // System.Boolean System.Reflection.Binder::ConvertArgs(System.Reflection.Binder,System.Object[],System.Reflection.ParameterInfo[],System.Globalization.CultureInfo) extern Il2CppClass* TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var; extern const uint32_t Binder_ConvertArgs_m2999223281_MetadataUsageId; extern "C" bool Binder_ConvertArgs_m2999223281 (Il2CppObject * __this /* static, unused */, Binder_t3404612058 * ___binder0, ObjectU5BU5D_t3614634134* ___args1, ParameterInfoU5BU5D_t2275869610* ___pinfo2, CultureInfo_t3500843524 * ___culture3, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Binder_ConvertArgs_m2999223281_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppObject * V_1 = NULL; { ObjectU5BU5D_t3614634134* L_0 = ___args1; if (L_0) { goto IL_0016; } } { ParameterInfoU5BU5D_t2275869610* L_1 = ___pinfo2; NullCheck(L_1); if ((((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length))))) { goto IL_0010; } } { return (bool)1; } IL_0010: { TargetParameterCountException_t1554451430 * L_2 = (TargetParameterCountException_t1554451430 *)il2cpp_codegen_object_new(TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var); TargetParameterCountException__ctor_m1256521036(L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_0016: { ParameterInfoU5BU5D_t2275869610* L_3 = ___pinfo2; NullCheck(L_3); ObjectU5BU5D_t3614634134* L_4 = ___args1; NullCheck(L_4); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length))))))) { goto IL_0027; } } { TargetParameterCountException_t1554451430 * L_5 = (TargetParameterCountException_t1554451430 *)il2cpp_codegen_object_new(TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var); TargetParameterCountException__ctor_m1256521036(L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0027: { V_0 = 0; goto IL_0059; } IL_002e: { Binder_t3404612058 * L_6 = ___binder0; ObjectU5BU5D_t3614634134* L_7 = ___args1; int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; Il2CppObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); ParameterInfoU5BU5D_t2275869610* L_11 = ___pinfo2; int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13 = L_12; ParameterInfo_t2249040075 * L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); NullCheck(L_14); Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_14); CultureInfo_t3500843524 * L_16 = ___culture3; NullCheck(L_6); Il2CppObject * L_17 = VirtFuncInvoker3< Il2CppObject *, Il2CppObject *, Type_t *, CultureInfo_t3500843524 * >::Invoke(5 /* System.Object System.Reflection.Binder::ChangeType(System.Object,System.Type,System.Globalization.CultureInfo) */, L_6, L_10, L_15, L_16); V_1 = L_17; Il2CppObject * L_18 = V_1; if (L_18) { goto IL_0051; } } { ObjectU5BU5D_t3614634134* L_19 = ___args1; int32_t L_20 = V_0; NullCheck(L_19); int32_t L_21 = L_20; Il2CppObject * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); if (!L_22) { goto IL_0051; } } { return (bool)0; } IL_0051: { ObjectU5BU5D_t3614634134* L_23 = ___args1; int32_t L_24 = V_0; Il2CppObject * L_25 = V_1; NullCheck(L_23); ArrayElementTypeCheck (L_23, L_25); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (Il2CppObject *)L_25); int32_t L_26 = V_0; V_0 = ((int32_t)((int32_t)L_26+(int32_t)1)); } IL_0059: { int32_t L_27 = V_0; ObjectU5BU5D_t3614634134* L_28 = ___args1; NullCheck(L_28); if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_28)->max_length))))))) { goto IL_002e; } } { return (bool)1; } } // System.Int32 System.Reflection.Binder::GetDerivedLevel(System.Type) extern "C" int32_t Binder_GetDerivedLevel_m1809808744 (Il2CppObject * __this /* static, unused */, Type_t * ___type0, const MethodInfo* method) { Type_t * V_0 = NULL; int32_t V_1 = 0; { Type_t * L_0 = ___type0; V_0 = L_0; V_1 = 1; goto IL_0014; } IL_0009: { int32_t L_1 = V_1; V_1 = ((int32_t)((int32_t)L_1+(int32_t)1)); Type_t * L_2 = V_0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_2); V_0 = L_3; } IL_0014: { Type_t * L_4 = V_0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Type::get_BaseType() */, L_4); if (L_5) { goto IL_0009; } } { int32_t L_6 = V_1; return L_6; } } // System.Reflection.MethodBase System.Reflection.Binder::FindMostDerivedMatch(System.Reflection.MethodBase[]) extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var; extern const uint32_t Binder_FindMostDerivedMatch_m2621831847_MetadataUsageId; extern "C" MethodBase_t904190842 * Binder_FindMostDerivedMatch_m2621831847 (Il2CppObject * __this /* static, unused */, MethodBaseU5BU5D_t2597254495* ___match0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Binder_FindMostDerivedMatch_m2621831847_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; MethodBase_t904190842 * V_4 = NULL; int32_t V_5 = 0; ParameterInfoU5BU5D_t2275869610* V_6 = NULL; ParameterInfoU5BU5D_t2275869610* V_7 = NULL; bool V_8 = false; int32_t V_9 = 0; { V_0 = 0; V_1 = (-1); MethodBaseU5BU5D_t2597254495* L_0 = ___match0; NullCheck(L_0); V_2 = (((int32_t)((int32_t)(((Il2CppArray *)L_0)->max_length)))); V_3 = 0; goto IL_00ba; } IL_000f: { MethodBaseU5BU5D_t2597254495* L_1 = ___match0; int32_t L_2 = V_3; NullCheck(L_1); int32_t L_3 = L_2; MethodBase_t904190842 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_4 = L_4; MethodBase_t904190842 * L_5 = V_4; NullCheck(L_5); Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); int32_t L_7 = Binder_GetDerivedLevel_m1809808744(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); V_5 = L_7; int32_t L_8 = V_5; int32_t L_9 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_0030; } } { AmbiguousMatchException_t1406414556 * L_10 = (AmbiguousMatchException_t1406414556 *)il2cpp_codegen_object_new(AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m2088048346(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_0030: { int32_t L_11 = V_1; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_00a9; } } { MethodBase_t904190842 * L_12 = V_4; NullCheck(L_12); ParameterInfoU5BU5D_t2275869610* L_13 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_12); V_6 = L_13; MethodBaseU5BU5D_t2597254495* L_14 = ___match0; int32_t L_15 = V_1; NullCheck(L_14); int32_t L_16 = L_15; MethodBase_t904190842 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); NullCheck(L_17); ParameterInfoU5BU5D_t2275869610* L_18 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_17); V_7 = L_18; V_8 = (bool)1; ParameterInfoU5BU5D_t2275869610* L_19 = V_6; NullCheck(L_19); ParameterInfoU5BU5D_t2275869610* L_20 = V_7; NullCheck(L_20); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_19)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_20)->max_length))))))) { goto IL_0062; } } { V_8 = (bool)0; goto IL_009c; } IL_0062: { V_9 = 0; goto IL_0091; } IL_006a: { ParameterInfoU5BU5D_t2275869610* L_21 = V_6; int32_t L_22 = V_9; NullCheck(L_21); int32_t L_23 = L_22; ParameterInfo_t2249040075 * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); NullCheck(L_24); Type_t * L_25 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_24); ParameterInfoU5BU5D_t2275869610* L_26 = V_7; int32_t L_27 = V_9; NullCheck(L_26); int32_t L_28 = L_27; ParameterInfo_t2249040075 * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); NullCheck(L_29); Type_t * L_30 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_29); if ((((Il2CppObject*)(Type_t *)L_25) == ((Il2CppObject*)(Type_t *)L_30))) { goto IL_008b; } } { V_8 = (bool)0; goto IL_009c; } IL_008b: { int32_t L_31 = V_9; V_9 = ((int32_t)((int32_t)L_31+(int32_t)1)); } IL_0091: { int32_t L_32 = V_9; ParameterInfoU5BU5D_t2275869610* L_33 = V_6; NullCheck(L_33); if ((((int32_t)L_32) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_33)->max_length))))))) { goto IL_006a; } } IL_009c: { bool L_34 = V_8; if (L_34) { goto IL_00a9; } } { AmbiguousMatchException_t1406414556 * L_35 = (AmbiguousMatchException_t1406414556 *)il2cpp_codegen_object_new(AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m2088048346(L_35, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35); } IL_00a9: { int32_t L_36 = V_5; int32_t L_37 = V_0; if ((((int32_t)L_36) <= ((int32_t)L_37))) { goto IL_00b6; } } { int32_t L_38 = V_5; V_0 = L_38; int32_t L_39 = V_3; V_1 = L_39; } IL_00b6: { int32_t L_40 = V_3; V_3 = ((int32_t)((int32_t)L_40+(int32_t)1)); } IL_00ba: { int32_t L_41 = V_3; int32_t L_42 = V_2; if ((((int32_t)L_41) < ((int32_t)L_42))) { goto IL_000f; } } { MethodBaseU5BU5D_t2597254495* L_43 = ___match0; int32_t L_44 = V_1; NullCheck(L_43); int32_t L_45 = L_44; MethodBase_t904190842 * L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45)); return L_46; } } // System.Void System.Reflection.Binder/Default::.ctor() extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern const uint32_t Default__ctor_m172834064_MetadataUsageId; extern "C" void Default__ctor_m172834064 (Default_t3956931304 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default__ctor_m172834064_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder__ctor_m1361613966(__this, /*hidden argument*/NULL); return; } } // System.Reflection.MethodBase System.Reflection.Binder/Default::BindToMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Object[]&,System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[],System.Object&) extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern const uint32_t Default_BindToMethod_m1132635736_MetadataUsageId; extern "C" MethodBase_t904190842 * Default_BindToMethod_m1132635736 (Default_t3956931304 * __this, int32_t ___bindingAttr0, MethodBaseU5BU5D_t2597254495* ___match1, ObjectU5BU5D_t3614634134** ___args2, ParameterModifierU5BU5D_t963192633* ___modifiers3, CultureInfo_t3500843524 * ___culture4, StringU5BU5D_t1642385972* ___names5, Il2CppObject ** ___state6, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_BindToMethod_m1132635736_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; int32_t V_1 = 0; MethodBase_t904190842 * V_2 = NULL; { ObjectU5BU5D_t3614634134** L_0 = ___args2; if ((*((ObjectU5BU5D_t3614634134**)L_0))) { goto IL_0012; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_1 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); V_0 = L_1; goto IL_0046; } IL_0012: { ObjectU5BU5D_t3614634134** L_2 = ___args2; NullCheck((*((ObjectU5BU5D_t3614634134**)L_2))); V_0 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_2)))->max_length)))))); V_1 = 0; goto IL_003c; } IL_0023: { ObjectU5BU5D_t3614634134** L_3 = ___args2; int32_t L_4 = V_1; NullCheck((*((ObjectU5BU5D_t3614634134**)L_3))); int32_t L_5 = L_4; Il2CppObject * L_6 = ((*((ObjectU5BU5D_t3614634134**)L_3)))->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if (!L_6) { goto IL_0038; } } { TypeU5BU5D_t1664964607* L_7 = V_0; int32_t L_8 = V_1; ObjectU5BU5D_t3614634134** L_9 = ___args2; int32_t L_10 = V_1; NullCheck((*((ObjectU5BU5D_t3614634134**)L_9))); int32_t L_11 = L_10; Il2CppObject * L_12 = ((*((ObjectU5BU5D_t3614634134**)L_9)))->GetAt(static_cast<il2cpp_array_size_t>(L_11)); NullCheck(L_12); Type_t * L_13 = Object_GetType_m191970594(L_12, /*hidden argument*/NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_13); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Type_t *)L_13); } IL_0038: { int32_t L_14 = V_1; V_1 = ((int32_t)((int32_t)L_14+(int32_t)1)); } IL_003c: { int32_t L_15 = V_1; ObjectU5BU5D_t3614634134** L_16 = ___args2; NullCheck((*((ObjectU5BU5D_t3614634134**)L_16))); if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_16)))->max_length))))))) { goto IL_0023; } } IL_0046: { int32_t L_17 = ___bindingAttr0; MethodBaseU5BU5D_t2597254495* L_18 = ___match1; TypeU5BU5D_t1664964607* L_19 = V_0; ParameterModifierU5BU5D_t963192633* L_20 = ___modifiers3; MethodBase_t904190842 * L_21 = Default_SelectMethod_m3081239996(__this, L_17, L_18, L_19, L_20, (bool)1, /*hidden argument*/NULL); V_2 = L_21; Il2CppObject ** L_22 = ___state6; *((Il2CppObject **)(L_22)) = (Il2CppObject *)NULL; Il2CppCodeGenWriteBarrier((Il2CppObject **)(L_22), (Il2CppObject *)NULL); StringU5BU5D_t1642385972* L_23 = ___names5; if (!L_23) { goto IL_0068; } } { StringU5BU5D_t1642385972* L_24 = ___names5; ObjectU5BU5D_t3614634134** L_25 = ___args2; MethodBase_t904190842 * L_26 = V_2; Default_ReorderParameters_m1877749093(__this, L_24, L_25, L_26, /*hidden argument*/NULL); } IL_0068: { MethodBase_t904190842 * L_27 = V_2; return L_27; } } // System.Void System.Reflection.Binder/Default::ReorderParameters(System.String[],System.Object[]&,System.Reflection.MethodBase) extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern const uint32_t Default_ReorderParameters_m1877749093_MetadataUsageId; extern "C" void Default_ReorderParameters_m1877749093 (Default_t3956931304 * __this, StringU5BU5D_t1642385972* ___names0, ObjectU5BU5D_t3614634134** ___args1, MethodBase_t904190842 * ___selected2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_ReorderParameters_m1877749093_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3614634134* V_0 = NULL; ParameterInfoU5BU5D_t2275869610* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { ObjectU5BU5D_t3614634134** L_0 = ___args1; NullCheck((*((ObjectU5BU5D_t3614634134**)L_0))); V_0 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_0)))->max_length)))))); ObjectU5BU5D_t3614634134** L_1 = ___args1; ObjectU5BU5D_t3614634134* L_2 = V_0; ObjectU5BU5D_t3614634134** L_3 = ___args1; NullCheck((*((ObjectU5BU5D_t3614634134**)L_3))); Array_Copy_m2363740072(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_1)), (Il2CppArray *)(Il2CppArray *)L_2, (((int32_t)((int32_t)(((Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_3)))->max_length)))), /*hidden argument*/NULL); MethodBase_t904190842 * L_4 = ___selected2; NullCheck(L_4); ParameterInfoU5BU5D_t2275869610* L_5 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_4); V_1 = L_5; V_2 = 0; goto IL_005d; } IL_0024: { V_3 = 0; goto IL_0050; } IL_002b: { StringU5BU5D_t1642385972* L_6 = ___names0; int32_t L_7 = V_2; NullCheck(L_6); int32_t L_8 = L_7; String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); ParameterInfoU5BU5D_t2275869610* L_10 = V_1; int32_t L_11 = V_3; NullCheck(L_10); int32_t L_12 = L_11; ParameterInfo_t2249040075 * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); NullCheck(L_13); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_13); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_15 = String_op_Equality_m1790663636(NULL /*static, unused*/, L_9, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_004c; } } { ObjectU5BU5D_t3614634134* L_16 = V_0; int32_t L_17 = V_3; ObjectU5BU5D_t3614634134** L_18 = ___args1; int32_t L_19 = V_2; NullCheck((*((ObjectU5BU5D_t3614634134**)L_18))); int32_t L_20 = L_19; Il2CppObject * L_21 = ((*((ObjectU5BU5D_t3614634134**)L_18)))->GetAt(static_cast<il2cpp_array_size_t>(L_20)); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_21); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (Il2CppObject *)L_21); goto IL_0059; } IL_004c: { int32_t L_22 = V_3; V_3 = ((int32_t)((int32_t)L_22+(int32_t)1)); } IL_0050: { int32_t L_23 = V_3; ParameterInfoU5BU5D_t2275869610* L_24 = V_1; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_24)->max_length))))))) { goto IL_002b; } } IL_0059: { int32_t L_25 = V_2; V_2 = ((int32_t)((int32_t)L_25+(int32_t)1)); } IL_005d: { int32_t L_26 = V_2; StringU5BU5D_t1642385972* L_27 = ___names0; NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_27)->max_length))))))) { goto IL_0024; } } { ObjectU5BU5D_t3614634134* L_28 = V_0; ObjectU5BU5D_t3614634134** L_29 = ___args1; ObjectU5BU5D_t3614634134** L_30 = ___args1; NullCheck((*((ObjectU5BU5D_t3614634134**)L_30))); Array_Copy_m2363740072(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_28, (Il2CppArray *)(Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_29)), (((int32_t)((int32_t)(((Il2CppArray *)(*((ObjectU5BU5D_t3614634134**)L_30)))->max_length)))), /*hidden argument*/NULL); return; } } // System.Boolean System.Reflection.Binder/Default::IsArrayAssignable(System.Type,System.Type) extern "C" bool Default_IsArrayAssignable_m3862319150 (Il2CppObject * __this /* static, unused */, Type_t * ___object_type0, Type_t * ___target_type1, const MethodInfo* method) { { Type_t * L_0 = ___object_type0; NullCheck(L_0); bool L_1 = Type_get_IsArray_m811277129(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0028; } } { Type_t * L_2 = ___target_type1; NullCheck(L_2); bool L_3 = Type_get_IsArray_m811277129(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0028; } } { Type_t * L_4 = ___object_type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_4); Type_t * L_6 = ___target_type1; NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_6); bool L_8 = Default_IsArrayAssignable_m3862319150(NULL /*static, unused*/, L_5, L_7, /*hidden argument*/NULL); return L_8; } IL_0028: { Type_t * L_9 = ___target_type1; Type_t * L_10 = ___object_type0; NullCheck(L_9); bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_9, L_10); if (!L_11) { goto IL_0036; } } { return (bool)1; } IL_0036: { return (bool)0; } } // System.Object System.Reflection.Binder/Default::ChangeType(System.Object,System.Type,System.Globalization.CultureInfo) extern const Il2CppType* Char_t3454481338_0_0_0_var; extern const Il2CppType* Double_t4078015681_0_0_0_var; extern const Il2CppType* Single_t2076509932_0_0_0_var; extern const Il2CppType* IntPtr_t_0_0_0_var; extern Il2CppClass* Enum_t2459695545_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Char_t3454481338_il2cpp_TypeInfo_var; extern Il2CppClass* Double_t4078015681_il2cpp_TypeInfo_var; extern Il2CppClass* Single_t2076509932_il2cpp_TypeInfo_var; extern Il2CppClass* Convert_t2607082565_il2cpp_TypeInfo_var; extern const uint32_t Default_ChangeType_m3142518280_MetadataUsageId; extern "C" Il2CppObject * Default_ChangeType_m3142518280 (Default_t3956931304 * __this, Il2CppObject * ___value0, Type_t * ___type1, CultureInfo_t3500843524 * ___culture2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_ChangeType_m3142518280_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Il2CppObject * L_0 = ___value0; if (L_0) { goto IL_0008; } } { return NULL; } IL_0008: { Il2CppObject * L_1 = ___value0; NullCheck(L_1); Type_t * L_2 = Object_GetType_m191970594(L_1, /*hidden argument*/NULL); V_0 = L_2; Type_t * L_3 = ___type1; NullCheck(L_3); bool L_4 = Type_get_IsByRef_m3523465500(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0022; } } { Type_t * L_5 = ___type1; NullCheck(L_5); Type_t * L_6 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_5); ___type1 = L_6; } IL_0022: { Type_t * L_7 = V_0; Type_t * L_8 = ___type1; if ((((Il2CppObject*)(Type_t *)L_7) == ((Il2CppObject*)(Type_t *)L_8))) { goto IL_0035; } } { Type_t * L_9 = ___type1; Il2CppObject * L_10 = ___value0; NullCheck(L_9); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(41 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_9, L_10); if (!L_11) { goto IL_0037; } } IL_0035: { Il2CppObject * L_12 = ___value0; return L_12; } IL_0037: { Type_t * L_13 = V_0; NullCheck(L_13); bool L_14 = Type_get_IsArray_m811277129(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0065; } } { Type_t * L_15 = ___type1; NullCheck(L_15); bool L_16 = Type_get_IsArray_m811277129(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0065; } } { Type_t * L_17 = V_0; NullCheck(L_17); Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_17); Type_t * L_19 = ___type1; NullCheck(L_19); Type_t * L_20 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_19); bool L_21 = Default_IsArrayAssignable_m3862319150(NULL /*static, unused*/, L_18, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0065; } } { Il2CppObject * L_22 = ___value0; return L_22; } IL_0065: { Type_t * L_23 = V_0; Type_t * L_24 = ___type1; bool L_25 = Default_check_type_m2363631305(NULL /*static, unused*/, L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00f3; } } { Type_t * L_26 = ___type1; NullCheck(L_26); bool L_27 = Type_get_IsEnum_m313908919(L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_0084; } } { Type_t * L_28 = ___type1; Il2CppObject * L_29 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2459695545_il2cpp_TypeInfo_var); Il2CppObject * L_30 = Enum_ToObject_m2460371738(NULL /*static, unused*/, L_28, L_29, /*hidden argument*/NULL); return L_30; } IL_0084: { Type_t * L_31 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Char_t3454481338_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_31) == ((Il2CppObject*)(Type_t *)L_32)))) { goto IL_00ce; } } { Type_t * L_33 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Double_t4078015681_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_00b1; } } { Il2CppObject * L_35 = ___value0; double L_36 = (((double)((double)((*(Il2CppChar*)((Il2CppChar*)UnBox (L_35, Char_t3454481338_il2cpp_TypeInfo_var))))))); Il2CppObject * L_37 = Box(Double_t4078015681_il2cpp_TypeInfo_var, &L_36); return L_37; } IL_00b1: { Type_t * L_38 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Single_t2076509932_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_00ce; } } { Il2CppObject * L_40 = ___value0; float L_41 = (((float)((float)((*(Il2CppChar*)((Il2CppChar*)UnBox (L_40, Char_t3454481338_il2cpp_TypeInfo_var))))))); Il2CppObject * L_42 = Box(Single_t2076509932_il2cpp_TypeInfo_var, &L_41); return L_42; } IL_00ce: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(IntPtr_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_00eb; } } { Type_t * L_45 = ___type1; NullCheck(L_45); bool L_46 = Type_get_IsPointer_m3832342327(L_45, /*hidden argument*/NULL); if (!L_46) { goto IL_00eb; } } { Il2CppObject * L_47 = ___value0; return L_47; } IL_00eb: { Il2CppObject * L_48 = ___value0; Type_t * L_49 = ___type1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t2607082565_il2cpp_TypeInfo_var); Il2CppObject * L_50 = Convert_ChangeType_m1630780412(NULL /*static, unused*/, L_48, L_49, /*hidden argument*/NULL); return L_50; } IL_00f3: { return NULL; } } // System.Void System.Reflection.Binder/Default::ReorderArgumentArray(System.Object[]&,System.Object) extern "C" void Default_ReorderArgumentArray_m3980835731 (Default_t3956931304 * __this, ObjectU5BU5D_t3614634134** ___args0, Il2CppObject * ___state1, const MethodInfo* method) { { return; } } // System.Boolean System.Reflection.Binder/Default::check_type(System.Type,System.Type) extern const Il2CppType* Nullable_1_t1398937014_0_0_0_var; extern const Il2CppType* Il2CppObject_0_0_0_var; extern const Il2CppType* Enum_t2459695545_0_0_0_var; extern const Il2CppType* IntPtr_t_0_0_0_var; extern Il2CppClass* Enum_t2459695545_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t Default_check_type_m2363631305_MetadataUsageId; extern "C" bool Default_check_type_m2363631305 (Il2CppObject * __this /* static, unused */, Type_t * ___from0, Type_t * ___to1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_check_type_m2363631305_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t G_B28_0 = 0; int32_t G_B30_0 = 0; int32_t G_B38_0 = 0; int32_t G_B40_0 = 0; int32_t G_B48_0 = 0; int32_t G_B50_0 = 0; int32_t G_B58_0 = 0; int32_t G_B60_0 = 0; int32_t G_B68_0 = 0; int32_t G_B70_0 = 0; int32_t G_B78_0 = 0; int32_t G_B80_0 = 0; int32_t G_B89_0 = 0; int32_t G_B91_0 = 0; int32_t G_B95_0 = 0; { Type_t * L_0 = ___from0; Type_t * L_1 = ___to1; if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Type_t *)L_1)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { Type_t * L_2 = ___from0; if (L_2) { goto IL_0011; } } { return (bool)1; } IL_0011: { Type_t * L_3 = ___to1; NullCheck(L_3); bool L_4 = Type_get_IsByRef_m3523465500(L_3, /*hidden argument*/NULL); Type_t * L_5 = ___from0; NullCheck(L_5); bool L_6 = Type_get_IsByRef_m3523465500(L_5, /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)L_6))) { goto IL_0024; } } { return (bool)0; } IL_0024: { Type_t * L_7 = ___to1; NullCheck(L_7); bool L_8 = Type_get_IsInterface_m3583817465(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0037; } } { Type_t * L_9 = ___to1; Type_t * L_10 = ___from0; NullCheck(L_9); bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_9, L_10); return L_11; } IL_0037: { Type_t * L_12 = ___to1; NullCheck(L_12); bool L_13 = Type_get_IsEnum_m313908919(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0053; } } { Type_t * L_14 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2459695545_il2cpp_TypeInfo_var); Type_t * L_15 = Enum_GetUnderlyingType_m3513899012(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); ___to1 = L_15; Type_t * L_16 = ___from0; Type_t * L_17 = ___to1; if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_0053; } } { return (bool)1; } IL_0053: { Type_t * L_18 = ___to1; NullCheck(L_18); bool L_19 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsGenericType() */, L_18); if (!L_19) { goto IL_0083; } } { Type_t * L_20 = ___to1; NullCheck(L_20); Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(76 /* System.Type System.Type::GetGenericTypeDefinition() */, L_20); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Nullable_1_t1398937014_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_21) == ((Il2CppObject*)(Type_t *)L_22)))) { goto IL_0083; } } { Type_t * L_23 = ___to1; NullCheck(L_23); TypeU5BU5D_t1664964607* L_24 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(73 /* System.Type[] System.Type::GetGenericArguments() */, L_23); NullCheck(L_24); int32_t L_25 = 0; Type_t * L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); Type_t * L_27 = ___from0; if ((!(((Il2CppObject*)(Type_t *)L_26) == ((Il2CppObject*)(Type_t *)L_27)))) { goto IL_0083; } } { return (bool)1; } IL_0083: { Type_t * L_28 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_29 = Type_GetTypeCode_m1044483454(NULL /*static, unused*/, L_28, /*hidden argument*/NULL); V_0 = L_29; Type_t * L_30 = ___to1; int32_t L_31 = Type_GetTypeCode_m1044483454(NULL /*static, unused*/, L_30, /*hidden argument*/NULL); V_1 = L_31; int32_t L_32 = V_0; V_2 = L_32; int32_t L_33 = V_2; if (((int32_t)((int32_t)L_33-(int32_t)4)) == 0) { goto IL_00c8; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 1) { goto IL_016f; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 2) { goto IL_0103; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 3) { goto IL_0228; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 4) { goto IL_01cf; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 5) { goto IL_02d2; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 6) { goto IL_0281; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 7) { goto IL_0323; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 8) { goto IL_0323; } if (((int32_t)((int32_t)L_33-(int32_t)4)) == 9) { goto IL_036b; } } { goto IL_0384; } IL_00c8: { int32_t L_34 = V_1; V_3 = L_34; int32_t L_35 = V_3; if (((int32_t)((int32_t)L_35-(int32_t)8)) == 0) { goto IL_00f3; } if (((int32_t)((int32_t)L_35-(int32_t)8)) == 1) { goto IL_00f3; } if (((int32_t)((int32_t)L_35-(int32_t)8)) == 2) { goto IL_00f3; } if (((int32_t)((int32_t)L_35-(int32_t)8)) == 3) { goto IL_00f3; } if (((int32_t)((int32_t)L_35-(int32_t)8)) == 4) { goto IL_00f3; } if (((int32_t)((int32_t)L_35-(int32_t)8)) == 5) { goto IL_00f3; } if (((int32_t)((int32_t)L_35-(int32_t)8)) == 6) { goto IL_00f3; } } { goto IL_00f5; } IL_00f3: { return (bool)1; } IL_00f5: { Type_t * L_36 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_37 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); return (bool)((((Il2CppObject*)(Type_t *)L_36) == ((Il2CppObject*)(Type_t *)L_37))? 1 : 0); } IL_0103: { int32_t L_38 = V_1; V_3 = L_38; int32_t L_39 = V_3; if (((int32_t)((int32_t)L_39-(int32_t)4)) == 0) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 1) { goto IL_0140; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 2) { goto IL_0140; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 3) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 4) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 5) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 6) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 7) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 8) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 9) { goto IL_013e; } if (((int32_t)((int32_t)L_39-(int32_t)4)) == 10) { goto IL_013e; } } { goto IL_0140; } IL_013e: { return (bool)1; } IL_0140: { Type_t * L_40 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_41 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_40) == ((Il2CppObject*)(Type_t *)L_41))) { goto IL_016d; } } { Type_t * L_42 = ___from0; NullCheck(L_42); bool L_43 = Type_get_IsEnum_m313908919(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_016a; } } { Type_t * L_44 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_45 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B28_0 = ((((Il2CppObject*)(Type_t *)L_44) == ((Il2CppObject*)(Type_t *)L_45))? 1 : 0); goto IL_016b; } IL_016a: { G_B28_0 = 0; } IL_016b: { G_B30_0 = G_B28_0; goto IL_016e; } IL_016d: { G_B30_0 = 1; } IL_016e: { return (bool)G_B30_0; } IL_016f: { int32_t L_46 = V_1; V_3 = L_46; int32_t L_47 = V_3; if (((int32_t)((int32_t)L_47-(int32_t)7)) == 0) { goto IL_019e; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 1) { goto IL_01a0; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 2) { goto IL_019e; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 3) { goto IL_01a0; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 4) { goto IL_019e; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 5) { goto IL_01a0; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 6) { goto IL_019e; } if (((int32_t)((int32_t)L_47-(int32_t)7)) == 7) { goto IL_019e; } } { goto IL_01a0; } IL_019e: { return (bool)1; } IL_01a0: { Type_t * L_48 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49))) { goto IL_01cd; } } { Type_t * L_50 = ___from0; NullCheck(L_50); bool L_51 = Type_get_IsEnum_m313908919(L_50, /*hidden argument*/NULL); if (!L_51) { goto IL_01ca; } } { Type_t * L_52 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_53 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B38_0 = ((((Il2CppObject*)(Type_t *)L_52) == ((Il2CppObject*)(Type_t *)L_53))? 1 : 0); goto IL_01cb; } IL_01ca: { G_B38_0 = 0; } IL_01cb: { G_B40_0 = G_B38_0; goto IL_01ce; } IL_01cd: { G_B40_0 = 1; } IL_01ce: { return (bool)G_B40_0; } IL_01cf: { int32_t L_54 = V_1; V_3 = L_54; int32_t L_55 = V_3; if (((int32_t)((int32_t)L_55-(int32_t)((int32_t)9))) == 0) { goto IL_01f7; } if (((int32_t)((int32_t)L_55-(int32_t)((int32_t)9))) == 1) { goto IL_01f7; } if (((int32_t)((int32_t)L_55-(int32_t)((int32_t)9))) == 2) { goto IL_01f7; } if (((int32_t)((int32_t)L_55-(int32_t)((int32_t)9))) == 3) { goto IL_01f7; } if (((int32_t)((int32_t)L_55-(int32_t)((int32_t)9))) == 4) { goto IL_01f7; } if (((int32_t)((int32_t)L_55-(int32_t)((int32_t)9))) == 5) { goto IL_01f7; } } { goto IL_01f9; } IL_01f7: { return (bool)1; } IL_01f9: { Type_t * L_56 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_57 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_56) == ((Il2CppObject*)(Type_t *)L_57))) { goto IL_0226; } } { Type_t * L_58 = ___from0; NullCheck(L_58); bool L_59 = Type_get_IsEnum_m313908919(L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_0223; } } { Type_t * L_60 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_61 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B48_0 = ((((Il2CppObject*)(Type_t *)L_60) == ((Il2CppObject*)(Type_t *)L_61))? 1 : 0); goto IL_0224; } IL_0223: { G_B48_0 = 0; } IL_0224: { G_B50_0 = G_B48_0; goto IL_0227; } IL_0226: { G_B50_0 = 1; } IL_0227: { return (bool)G_B50_0; } IL_0228: { int32_t L_62 = V_1; V_3 = L_62; int32_t L_63 = V_3; if (((int32_t)((int32_t)L_63-(int32_t)((int32_t)9))) == 0) { goto IL_0250; } if (((int32_t)((int32_t)L_63-(int32_t)((int32_t)9))) == 1) { goto IL_0252; } if (((int32_t)((int32_t)L_63-(int32_t)((int32_t)9))) == 2) { goto IL_0250; } if (((int32_t)((int32_t)L_63-(int32_t)((int32_t)9))) == 3) { goto IL_0252; } if (((int32_t)((int32_t)L_63-(int32_t)((int32_t)9))) == 4) { goto IL_0250; } if (((int32_t)((int32_t)L_63-(int32_t)((int32_t)9))) == 5) { goto IL_0250; } } { goto IL_0252; } IL_0250: { return (bool)1; } IL_0252: { Type_t * L_64 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_65 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_64) == ((Il2CppObject*)(Type_t *)L_65))) { goto IL_027f; } } { Type_t * L_66 = ___from0; NullCheck(L_66); bool L_67 = Type_get_IsEnum_m313908919(L_66, /*hidden argument*/NULL); if (!L_67) { goto IL_027c; } } { Type_t * L_68 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B58_0 = ((((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69))? 1 : 0); goto IL_027d; } IL_027c: { G_B58_0 = 0; } IL_027d: { G_B60_0 = G_B58_0; goto IL_0280; } IL_027f: { G_B60_0 = 1; } IL_0280: { return (bool)G_B60_0; } IL_0281: { int32_t L_70 = V_1; V_3 = L_70; int32_t L_71 = V_3; if (((int32_t)((int32_t)L_71-(int32_t)((int32_t)11))) == 0) { goto IL_02a1; } if (((int32_t)((int32_t)L_71-(int32_t)((int32_t)11))) == 1) { goto IL_02a1; } if (((int32_t)((int32_t)L_71-(int32_t)((int32_t)11))) == 2) { goto IL_02a1; } if (((int32_t)((int32_t)L_71-(int32_t)((int32_t)11))) == 3) { goto IL_02a1; } } { goto IL_02a3; } IL_02a1: { return (bool)1; } IL_02a3: { Type_t * L_72 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_73 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_72) == ((Il2CppObject*)(Type_t *)L_73))) { goto IL_02d0; } } { Type_t * L_74 = ___from0; NullCheck(L_74); bool L_75 = Type_get_IsEnum_m313908919(L_74, /*hidden argument*/NULL); if (!L_75) { goto IL_02cd; } } { Type_t * L_76 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_77 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B68_0 = ((((Il2CppObject*)(Type_t *)L_76) == ((Il2CppObject*)(Type_t *)L_77))? 1 : 0); goto IL_02ce; } IL_02cd: { G_B68_0 = 0; } IL_02ce: { G_B70_0 = G_B68_0; goto IL_02d1; } IL_02d0: { G_B70_0 = 1; } IL_02d1: { return (bool)G_B70_0; } IL_02d2: { int32_t L_78 = V_1; V_3 = L_78; int32_t L_79 = V_3; if (((int32_t)((int32_t)L_79-(int32_t)((int32_t)11))) == 0) { goto IL_02f2; } if (((int32_t)((int32_t)L_79-(int32_t)((int32_t)11))) == 1) { goto IL_02f4; } if (((int32_t)((int32_t)L_79-(int32_t)((int32_t)11))) == 2) { goto IL_02f2; } if (((int32_t)((int32_t)L_79-(int32_t)((int32_t)11))) == 3) { goto IL_02f2; } } { goto IL_02f4; } IL_02f2: { return (bool)1; } IL_02f4: { Type_t * L_80 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_81 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_80) == ((Il2CppObject*)(Type_t *)L_81))) { goto IL_0321; } } { Type_t * L_82 = ___from0; NullCheck(L_82); bool L_83 = Type_get_IsEnum_m313908919(L_82, /*hidden argument*/NULL); if (!L_83) { goto IL_031e; } } { Type_t * L_84 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_85 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B78_0 = ((((Il2CppObject*)(Type_t *)L_84) == ((Il2CppObject*)(Type_t *)L_85))? 1 : 0); goto IL_031f; } IL_031e: { G_B78_0 = 0; } IL_031f: { G_B80_0 = G_B78_0; goto IL_0322; } IL_0321: { G_B80_0 = 1; } IL_0322: { return (bool)G_B80_0; } IL_0323: { int32_t L_86 = V_1; V_3 = L_86; int32_t L_87 = V_3; if ((((int32_t)L_87) == ((int32_t)((int32_t)13)))) { goto IL_033a; } } { int32_t L_88 = V_3; if ((((int32_t)L_88) == ((int32_t)((int32_t)14)))) { goto IL_033a; } } { goto IL_033c; } IL_033a: { return (bool)1; } IL_033c: { Type_t * L_89 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_90 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_89) == ((Il2CppObject*)(Type_t *)L_90))) { goto IL_0369; } } { Type_t * L_91 = ___from0; NullCheck(L_91); bool L_92 = Type_get_IsEnum_m313908919(L_91, /*hidden argument*/NULL); if (!L_92) { goto IL_0366; } } { Type_t * L_93 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_94 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); G_B89_0 = ((((Il2CppObject*)(Type_t *)L_93) == ((Il2CppObject*)(Type_t *)L_94))? 1 : 0); goto IL_0367; } IL_0366: { G_B89_0 = 0; } IL_0367: { G_B91_0 = G_B89_0; goto IL_036a; } IL_0369: { G_B91_0 = 1; } IL_036a: { return (bool)G_B91_0; } IL_036b: { int32_t L_95 = V_1; if ((((int32_t)L_95) == ((int32_t)((int32_t)14)))) { goto IL_0382; } } { Type_t * L_96 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_97 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); G_B95_0 = ((((Il2CppObject*)(Type_t *)L_96) == ((Il2CppObject*)(Type_t *)L_97))? 1 : 0); goto IL_0383; } IL_0382: { G_B95_0 = 1; } IL_0383: { return (bool)G_B95_0; } IL_0384: { Type_t * L_98 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_99 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_98) == ((Il2CppObject*)(Type_t *)L_99)))) { goto IL_03a1; } } { Type_t * L_100 = ___from0; NullCheck(L_100); bool L_101 = Type_get_IsValueType_m1733572463(L_100, /*hidden argument*/NULL); if (!L_101) { goto IL_03a1; } } { return (bool)1; } IL_03a1: { Type_t * L_102 = ___to1; NullCheck(L_102); bool L_103 = Type_get_IsPointer_m3832342327(L_102, /*hidden argument*/NULL); if (!L_103) { goto IL_03be; } } { Type_t * L_104 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_105 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(IntPtr_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_104) == ((Il2CppObject*)(Type_t *)L_105)))) { goto IL_03be; } } { return (bool)1; } IL_03be: { Type_t * L_106 = ___to1; Type_t * L_107 = ___from0; NullCheck(L_106); bool L_108 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_106, L_107); return L_108; } } // System.Boolean System.Reflection.Binder/Default::check_arguments(System.Type[],System.Reflection.ParameterInfo[],System.Boolean) extern "C" bool Default_check_arguments_m3406020270 (Il2CppObject * __this /* static, unused */, TypeU5BU5D_t1664964607* ___types0, ParameterInfoU5BU5D_t2275869610* ___args1, bool ___allowByRefMatch2, const MethodInfo* method) { int32_t V_0 = 0; bool V_1 = false; Type_t * V_2 = NULL; { V_0 = 0; goto IL_0053; } IL_0007: { TypeU5BU5D_t1664964607* L_0 = ___types0; int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; Type_t * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); ParameterInfoU5BU5D_t2275869610* L_4 = ___args1; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; ParameterInfo_t2249040075 * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_7); bool L_9 = Default_check_type_m2363631305(NULL /*static, unused*/, L_3, L_8, /*hidden argument*/NULL); V_1 = L_9; bool L_10 = V_1; if (L_10) { goto IL_0047; } } { bool L_11 = ___allowByRefMatch2; if (!L_11) { goto IL_0047; } } { ParameterInfoU5BU5D_t2275869610* L_12 = ___args1; int32_t L_13 = V_0; NullCheck(L_12); int32_t L_14 = L_13; ParameterInfo_t2249040075 * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); NullCheck(L_15); Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_15); V_2 = L_16; Type_t * L_17 = V_2; NullCheck(L_17); bool L_18 = Type_get_IsByRef_m3523465500(L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_0047; } } { TypeU5BU5D_t1664964607* L_19 = ___types0; int32_t L_20 = V_0; NullCheck(L_19); int32_t L_21 = L_20; Type_t * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); Type_t * L_23 = V_2; NullCheck(L_23); Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_23); bool L_25 = Default_check_type_m2363631305(NULL /*static, unused*/, L_22, L_24, /*hidden argument*/NULL); V_1 = L_25; } IL_0047: { bool L_26 = V_1; if (L_26) { goto IL_004f; } } { return (bool)0; } IL_004f: { int32_t L_27 = V_0; V_0 = ((int32_t)((int32_t)L_27+(int32_t)1)); } IL_0053: { int32_t L_28 = V_0; TypeU5BU5D_t1664964607* L_29 = ___types0; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_29)->max_length))))))) { goto IL_0007; } } { return (bool)1; } } // System.Reflection.MethodBase System.Reflection.Binder/Default::SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]) extern "C" MethodBase_t904190842 * Default_SelectMethod_m622251293 (Default_t3956931304 * __this, int32_t ___bindingAttr0, MethodBaseU5BU5D_t2597254495* ___match1, TypeU5BU5D_t1664964607* ___types2, ParameterModifierU5BU5D_t963192633* ___modifiers3, const MethodInfo* method) { { int32_t L_0 = ___bindingAttr0; MethodBaseU5BU5D_t2597254495* L_1 = ___match1; TypeU5BU5D_t1664964607* L_2 = ___types2; ParameterModifierU5BU5D_t963192633* L_3 = ___modifiers3; MethodBase_t904190842 * L_4 = Default_SelectMethod_m3081239996(__this, L_0, L_1, L_2, L_3, (bool)0, /*hidden argument*/NULL); return L_4; } } // System.Reflection.MethodBase System.Reflection.Binder/Default::SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[],System.Boolean) extern const Il2CppType* ParamArrayAttribute_t2144993728_0_0_0_var; extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3322341559; extern const uint32_t Default_SelectMethod_m3081239996_MetadataUsageId; extern "C" MethodBase_t904190842 * Default_SelectMethod_m3081239996 (Default_t3956931304 * __this, int32_t ___bindingAttr0, MethodBaseU5BU5D_t2597254495* ___match1, TypeU5BU5D_t1664964607* ___types2, ParameterModifierU5BU5D_t963192633* ___modifiers3, bool ___allowByRefMatch4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_SelectMethod_m3081239996_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodBase_t904190842 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; ParameterInfoU5BU5D_t2275869610* V_3 = NULL; bool V_4 = false; Type_t * V_5 = NULL; ParameterInfoU5BU5D_t2275869610* V_6 = NULL; MethodBase_t904190842 * V_7 = NULL; ParameterInfoU5BU5D_t2275869610* V_8 = NULL; { MethodBaseU5BU5D_t2597254495* L_0 = ___match1; if (L_0) { goto IL_0011; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral3322341559, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { V_1 = 0; goto IL_006b; } IL_0018: { MethodBaseU5BU5D_t2597254495* L_2 = ___match1; int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; MethodBase_t904190842 * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; MethodBase_t904190842 * L_6 = V_0; NullCheck(L_6); ParameterInfoU5BU5D_t2275869610* L_7 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_6); V_3 = L_7; ParameterInfoU5BU5D_t2275869610* L_8 = V_3; NullCheck(L_8); TypeU5BU5D_t1664964607* L_9 = ___types2; NullCheck(L_9); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_8)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length))))))) { goto IL_0033; } } { goto IL_0067; } IL_0033: { V_2 = 0; goto IL_0053; } IL_003a: { TypeU5BU5D_t1664964607* L_10 = ___types2; int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; Type_t * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); ParameterInfoU5BU5D_t2275869610* L_14 = V_3; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; ParameterInfo_t2249040075 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); NullCheck(L_17); Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_17); if ((((Il2CppObject*)(Type_t *)L_13) == ((Il2CppObject*)(Type_t *)L_18))) { goto IL_004f; } } { goto IL_005c; } IL_004f: { int32_t L_19 = V_2; V_2 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_0053: { int32_t L_20 = V_2; TypeU5BU5D_t1664964607* L_21 = ___types2; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_21)->max_length))))))) { goto IL_003a; } } IL_005c: { int32_t L_22 = V_2; TypeU5BU5D_t1664964607* L_23 = ___types2; NullCheck(L_23); if ((!(((uint32_t)L_22) == ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_23)->max_length)))))))) { goto IL_0067; } } { MethodBase_t904190842 * L_24 = V_0; return L_24; } IL_0067: { int32_t L_25 = V_1; V_1 = ((int32_t)((int32_t)L_25+(int32_t)1)); } IL_006b: { int32_t L_26 = V_1; MethodBaseU5BU5D_t2597254495* L_27 = ___match1; NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_27)->max_length))))))) { goto IL_0018; } } { V_4 = (bool)0; V_5 = (Type_t *)NULL; V_1 = 0; goto IL_0147; } IL_0081: { MethodBaseU5BU5D_t2597254495* L_28 = ___match1; int32_t L_29 = V_1; NullCheck(L_28); int32_t L_30 = L_29; MethodBase_t904190842 * L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); V_0 = L_31; MethodBase_t904190842 * L_32 = V_0; NullCheck(L_32); ParameterInfoU5BU5D_t2275869610* L_33 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_32); V_6 = L_33; ParameterInfoU5BU5D_t2275869610* L_34 = V_6; NullCheck(L_34); TypeU5BU5D_t1664964607* L_35 = ___types2; NullCheck(L_35); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_34)->max_length))))) <= ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_35)->max_length))))))) { goto IL_009e; } } { goto IL_0143; } IL_009e: { ParameterInfoU5BU5D_t2275869610* L_36 = V_6; NullCheck(L_36); if ((((int32_t)((int32_t)(((Il2CppArray *)L_36)->max_length))))) { goto IL_00ac; } } { goto IL_0143; } IL_00ac: { ParameterInfoU5BU5D_t2275869610* L_37 = V_6; ParameterInfoU5BU5D_t2275869610* L_38 = V_6; NullCheck(L_38); NullCheck(L_37); int32_t L_39 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_38)->max_length))))-(int32_t)1)); ParameterInfo_t2249040075 * L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_41 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ParamArrayAttribute_t2144993728_0_0_0_var), /*hidden argument*/NULL); bool L_42 = Attribute_IsDefined_m2186700650(NULL /*static, unused*/, L_40, L_41, /*hidden argument*/NULL); V_4 = L_42; bool L_43 = V_4; if (L_43) { goto IL_00d2; } } { goto IL_0143; } IL_00d2: { ParameterInfoU5BU5D_t2275869610* L_44 = V_6; ParameterInfoU5BU5D_t2275869610* L_45 = V_6; NullCheck(L_45); NullCheck(L_44); int32_t L_46 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_45)->max_length))))-(int32_t)1)); ParameterInfo_t2249040075 * L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46)); NullCheck(L_47); Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_47); NullCheck(L_48); Type_t * L_49 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_48); V_5 = L_49; V_2 = 0; goto IL_012f; } IL_00ee: { int32_t L_50 = V_2; ParameterInfoU5BU5D_t2275869610* L_51 = V_6; NullCheck(L_51); if ((((int32_t)L_50) >= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_51)->max_length))))-(int32_t)1))))) { goto IL_0110; } } { TypeU5BU5D_t1664964607* L_52 = ___types2; int32_t L_53 = V_2; NullCheck(L_52); int32_t L_54 = L_53; Type_t * L_55 = (L_52)->GetAt(static_cast<il2cpp_array_size_t>(L_54)); ParameterInfoU5BU5D_t2275869610* L_56 = V_6; int32_t L_57 = V_2; NullCheck(L_56); int32_t L_58 = L_57; ParameterInfo_t2249040075 * L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58)); NullCheck(L_59); Type_t * L_60 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_59); if ((((Il2CppObject*)(Type_t *)L_55) == ((Il2CppObject*)(Type_t *)L_60))) { goto IL_0110; } } { goto IL_0138; } IL_0110: { int32_t L_61 = V_2; ParameterInfoU5BU5D_t2275869610* L_62 = V_6; NullCheck(L_62); if ((((int32_t)L_61) < ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_62)->max_length))))-(int32_t)1))))) { goto IL_012b; } } { TypeU5BU5D_t1664964607* L_63 = ___types2; int32_t L_64 = V_2; NullCheck(L_63); int32_t L_65 = L_64; Type_t * L_66 = (L_63)->GetAt(static_cast<il2cpp_array_size_t>(L_65)); Type_t * L_67 = V_5; if ((((Il2CppObject*)(Type_t *)L_66) == ((Il2CppObject*)(Type_t *)L_67))) { goto IL_012b; } } { goto IL_0138; } IL_012b: { int32_t L_68 = V_2; V_2 = ((int32_t)((int32_t)L_68+(int32_t)1)); } IL_012f: { int32_t L_69 = V_2; TypeU5BU5D_t1664964607* L_70 = ___types2; NullCheck(L_70); if ((((int32_t)L_69) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_70)->max_length))))))) { goto IL_00ee; } } IL_0138: { int32_t L_71 = V_2; TypeU5BU5D_t1664964607* L_72 = ___types2; NullCheck(L_72); if ((!(((uint32_t)L_71) == ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_72)->max_length)))))))) { goto IL_0143; } } { MethodBase_t904190842 * L_73 = V_0; return L_73; } IL_0143: { int32_t L_74 = V_1; V_1 = ((int32_t)((int32_t)L_74+(int32_t)1)); } IL_0147: { int32_t L_75 = V_1; MethodBaseU5BU5D_t2597254495* L_76 = ___match1; NullCheck(L_76); if ((((int32_t)L_75) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_76)->max_length))))))) { goto IL_0081; } } { int32_t L_77 = ___bindingAttr0; if (!((int32_t)((int32_t)L_77&(int32_t)((int32_t)65536)))) { goto IL_015e; } } { return (MethodBase_t904190842 *)NULL; } IL_015e: { V_7 = (MethodBase_t904190842 *)NULL; V_1 = 0; goto IL_01b8; } IL_0168: { MethodBaseU5BU5D_t2597254495* L_78 = ___match1; int32_t L_79 = V_1; NullCheck(L_78); int32_t L_80 = L_79; MethodBase_t904190842 * L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80)); V_0 = L_81; MethodBase_t904190842 * L_82 = V_0; NullCheck(L_82); ParameterInfoU5BU5D_t2275869610* L_83 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_82); V_8 = L_83; ParameterInfoU5BU5D_t2275869610* L_84 = V_8; NullCheck(L_84); TypeU5BU5D_t1664964607* L_85 = ___types2; NullCheck(L_85); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_84)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_85)->max_length))))))) { goto IL_0185; } } { goto IL_01b4; } IL_0185: { TypeU5BU5D_t1664964607* L_86 = ___types2; ParameterInfoU5BU5D_t2275869610* L_87 = V_8; bool L_88 = ___allowByRefMatch4; bool L_89 = Default_check_arguments_m3406020270(NULL /*static, unused*/, L_86, L_87, L_88, /*hidden argument*/NULL); if (L_89) { goto IL_0199; } } { goto IL_01b4; } IL_0199: { MethodBase_t904190842 * L_90 = V_7; if (!L_90) { goto IL_01b1; } } { MethodBase_t904190842 * L_91 = V_7; MethodBase_t904190842 * L_92 = V_0; TypeU5BU5D_t1664964607* L_93 = ___types2; MethodBase_t904190842 * L_94 = Default_GetBetterMethod_m4255740863(__this, L_91, L_92, L_93, /*hidden argument*/NULL); V_7 = L_94; goto IL_01b4; } IL_01b1: { MethodBase_t904190842 * L_95 = V_0; V_7 = L_95; } IL_01b4: { int32_t L_96 = V_1; V_1 = ((int32_t)((int32_t)L_96+(int32_t)1)); } IL_01b8: { int32_t L_97 = V_1; MethodBaseU5BU5D_t2597254495* L_98 = ___match1; NullCheck(L_98); if ((((int32_t)L_97) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_98)->max_length))))))) { goto IL_0168; } } { MethodBase_t904190842 * L_99 = V_7; return L_99; } } // System.Reflection.MethodBase System.Reflection.Binder/Default::GetBetterMethod(System.Reflection.MethodBase,System.Reflection.MethodBase,System.Type[]) extern Il2CppClass* AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var; extern const uint32_t Default_GetBetterMethod_m4255740863_MetadataUsageId; extern "C" MethodBase_t904190842 * Default_GetBetterMethod_m4255740863 (Default_t3956931304 * __this, MethodBase_t904190842 * ___m10, MethodBase_t904190842 * ___m21, TypeU5BU5D_t1664964607* ___types2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_GetBetterMethod_m4255740863_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; ParameterInfoU5BU5D_t2275869610* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; Type_t * V_5 = NULL; Type_t * V_6 = NULL; bool V_7 = false; bool V_8 = false; MethodBase_t904190842 * G_B19_0 = NULL; { MethodBase_t904190842 * L_0 = ___m10; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_0); if (!L_1) { goto IL_0018; } } { MethodBase_t904190842 * L_2 = ___m21; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_2); if (L_3) { goto IL_0018; } } { MethodBase_t904190842 * L_4 = ___m21; return L_4; } IL_0018: { MethodBase_t904190842 * L_5 = ___m21; NullCheck(L_5); bool L_6 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_5); if (!L_6) { goto IL_0030; } } { MethodBase_t904190842 * L_7 = ___m10; NullCheck(L_7); bool L_8 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_7); if (L_8) { goto IL_0030; } } { MethodBase_t904190842 * L_9 = ___m10; return L_9; } IL_0030: { MethodBase_t904190842 * L_10 = ___m10; NullCheck(L_10); ParameterInfoU5BU5D_t2275869610* L_11 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_10); V_0 = L_11; MethodBase_t904190842 * L_12 = ___m21; NullCheck(L_12); ParameterInfoU5BU5D_t2275869610* L_13 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_12); V_1 = L_13; V_2 = 0; V_3 = 0; goto IL_0088; } IL_0047: { ParameterInfoU5BU5D_t2275869610* L_14 = V_0; int32_t L_15 = V_3; NullCheck(L_14); int32_t L_16 = L_15; ParameterInfo_t2249040075 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); NullCheck(L_17); Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_17); ParameterInfoU5BU5D_t2275869610* L_19 = V_1; int32_t L_20 = V_3; NullCheck(L_19); int32_t L_21 = L_20; ParameterInfo_t2249040075 * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_22); int32_t L_24 = Default_CompareCloserType_m1367126249(__this, L_18, L_23, /*hidden argument*/NULL); V_4 = L_24; int32_t L_25 = V_4; if (!L_25) { goto IL_007a; } } { int32_t L_26 = V_2; if (!L_26) { goto IL_007a; } } { int32_t L_27 = V_2; int32_t L_28 = V_4; if ((((int32_t)L_27) == ((int32_t)L_28))) { goto IL_007a; } } { AmbiguousMatchException_t1406414556 * L_29 = (AmbiguousMatchException_t1406414556 *)il2cpp_codegen_object_new(AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m2088048346(L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29); } IL_007a: { int32_t L_30 = V_4; if (!L_30) { goto IL_0084; } } { int32_t L_31 = V_4; V_2 = L_31; } IL_0084: { int32_t L_32 = V_3; V_3 = ((int32_t)((int32_t)L_32+(int32_t)1)); } IL_0088: { int32_t L_33 = V_3; ParameterInfoU5BU5D_t2275869610* L_34 = V_0; NullCheck(L_34); if ((((int32_t)L_33) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_34)->max_length))))))) { goto IL_0047; } } { int32_t L_35 = V_2; if (!L_35) { goto IL_00a6; } } { int32_t L_36 = V_2; if ((((int32_t)L_36) <= ((int32_t)0))) { goto IL_00a4; } } { MethodBase_t904190842 * L_37 = ___m21; G_B19_0 = L_37; goto IL_00a5; } IL_00a4: { MethodBase_t904190842 * L_38 = ___m10; G_B19_0 = L_38; } IL_00a5: { return G_B19_0; } IL_00a6: { MethodBase_t904190842 * L_39 = ___m10; NullCheck(L_39); Type_t * L_40 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_39); V_5 = L_40; MethodBase_t904190842 * L_41 = ___m21; NullCheck(L_41); Type_t * L_42 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_41); V_6 = L_42; Type_t * L_43 = V_5; Type_t * L_44 = V_6; if ((((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44))) { goto IL_00df; } } { Type_t * L_45 = V_5; Type_t * L_46 = V_6; NullCheck(L_45); bool L_47 = VirtFuncInvoker1< bool, Type_t * >::Invoke(38 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_45, L_46); if (!L_47) { goto IL_00cf; } } { MethodBase_t904190842 * L_48 = ___m10; return L_48; } IL_00cf: { Type_t * L_49 = V_6; Type_t * L_50 = V_5; NullCheck(L_49); bool L_51 = VirtFuncInvoker1< bool, Type_t * >::Invoke(38 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_49, L_50); if (!L_51) { goto IL_00df; } } { MethodBase_t904190842 * L_52 = ___m21; return L_52; } IL_00df: { MethodBase_t904190842 * L_53 = ___m10; NullCheck(L_53); int32_t L_54 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MethodBase::get_CallingConvention() */, L_53); V_7 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_54&(int32_t)2))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); MethodBase_t904190842 * L_55 = ___m21; NullCheck(L_55); int32_t L_56 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MethodBase::get_CallingConvention() */, L_55); V_8 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_56&(int32_t)2))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); bool L_57 = V_7; if (!L_57) { goto IL_010f; } } { bool L_58 = V_8; if (L_58) { goto IL_010f; } } { MethodBase_t904190842 * L_59 = ___m21; return L_59; } IL_010f: { bool L_60 = V_8; if (!L_60) { goto IL_011f; } } { bool L_61 = V_7; if (L_61) { goto IL_011f; } } { MethodBase_t904190842 * L_62 = ___m10; return L_62; } IL_011f: { AmbiguousMatchException_t1406414556 * L_63 = (AmbiguousMatchException_t1406414556 *)il2cpp_codegen_object_new(AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m2088048346(L_63, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_63); } } // System.Int32 System.Reflection.Binder/Default::CompareCloserType(System.Type,System.Type) extern const MethodInfo* Array_IndexOf_TisType_t_m4216821136_MethodInfo_var; extern const uint32_t Default_CompareCloserType_m1367126249_MetadataUsageId; extern "C" int32_t Default_CompareCloserType_m1367126249 (Default_t3956931304 * __this, Type_t * ___t10, Type_t * ___t21, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_CompareCloserType_m1367126249_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___t10; Type_t * L_1 = ___t21; if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Type_t *)L_1)))) { goto IL_0009; } } { return 0; } IL_0009: { Type_t * L_2 = ___t10; NullCheck(L_2); bool L_3 = VirtFuncInvoker0< bool >::Invoke(79 /* System.Boolean System.Type::get_IsGenericParameter() */, L_2); if (!L_3) { goto IL_0021; } } { Type_t * L_4 = ___t21; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(79 /* System.Boolean System.Type::get_IsGenericParameter() */, L_4); if (L_5) { goto IL_0021; } } { return 1; } IL_0021: { Type_t * L_6 = ___t10; NullCheck(L_6); bool L_7 = VirtFuncInvoker0< bool >::Invoke(79 /* System.Boolean System.Type::get_IsGenericParameter() */, L_6); if (L_7) { goto IL_0039; } } { Type_t * L_8 = ___t21; NullCheck(L_8); bool L_9 = VirtFuncInvoker0< bool >::Invoke(79 /* System.Boolean System.Type::get_IsGenericParameter() */, L_8); if (!L_9) { goto IL_0039; } } { return (-1); } IL_0039: { Type_t * L_10 = ___t10; NullCheck(L_10); bool L_11 = Type_get_HasElementType_m3319917896(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0062; } } { Type_t * L_12 = ___t21; NullCheck(L_12); bool L_13 = Type_get_HasElementType_m3319917896(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0062; } } { Type_t * L_14 = ___t10; NullCheck(L_14); Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_14); Type_t * L_16 = ___t21; NullCheck(L_16); Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_16); int32_t L_18 = Default_CompareCloserType_m1367126249(__this, L_15, L_17, /*hidden argument*/NULL); return L_18; } IL_0062: { Type_t * L_19 = ___t10; Type_t * L_20 = ___t21; NullCheck(L_19); bool L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(38 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_19, L_20); if (!L_21) { goto IL_0070; } } { return (-1); } IL_0070: { Type_t * L_22 = ___t21; Type_t * L_23 = ___t10; NullCheck(L_22); bool L_24 = VirtFuncInvoker1< bool, Type_t * >::Invoke(38 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_22, L_23); if (!L_24) { goto IL_007e; } } { return 1; } IL_007e: { Type_t * L_25 = ___t10; NullCheck(L_25); bool L_26 = Type_get_IsInterface_m3583817465(L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_009d; } } { Type_t * L_27 = ___t21; NullCheck(L_27); TypeU5BU5D_t1664964607* L_28 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(39 /* System.Type[] System.Type::GetInterfaces() */, L_27); Type_t * L_29 = ___t10; int32_t L_30 = Array_IndexOf_TisType_t_m4216821136(NULL /*static, unused*/, L_28, L_29, /*hidden argument*/Array_IndexOf_TisType_t_m4216821136_MethodInfo_var); if ((((int32_t)L_30) < ((int32_t)0))) { goto IL_009d; } } { return 1; } IL_009d: { Type_t * L_31 = ___t21; NullCheck(L_31); bool L_32 = Type_get_IsInterface_m3583817465(L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_00bc; } } { Type_t * L_33 = ___t10; NullCheck(L_33); TypeU5BU5D_t1664964607* L_34 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(39 /* System.Type[] System.Type::GetInterfaces() */, L_33); Type_t * L_35 = ___t21; int32_t L_36 = Array_IndexOf_TisType_t_m4216821136(NULL /*static, unused*/, L_34, L_35, /*hidden argument*/Array_IndexOf_TisType_t_m4216821136_MethodInfo_var); if ((((int32_t)L_36) < ((int32_t)0))) { goto IL_00bc; } } { return (-1); } IL_00bc: { return 0; } } // System.Reflection.PropertyInfo System.Reflection.Binder/Default::SelectProperty(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[]) extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2103942763; extern Il2CppCodeGenString* _stringLiteral3322341559; extern const uint32_t Default_SelectProperty_m4154143536_MetadataUsageId; extern "C" PropertyInfo_t * Default_SelectProperty_m4154143536 (Default_t3956931304 * __this, int32_t ___bindingAttr0, PropertyInfoU5BU5D_t1736152084* ___match1, Type_t * ___returnType2, TypeU5BU5D_t1664964607* ___indexes3, ParameterModifierU5BU5D_t963192633* ___modifiers4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_SelectProperty_m4154143536_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; PropertyInfo_t * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; PropertyInfo_t * V_7 = NULL; ParameterInfoU5BU5D_t2275869610* V_8 = NULL; int32_t V_9 = 0; int32_t V_10 = 0; int32_t G_B6_0 = 0; { PropertyInfoU5BU5D_t1736152084* L_0 = ___match1; if (!L_0) { goto IL_000e; } } { PropertyInfoU5BU5D_t1736152084* L_1 = ___match1; NullCheck(L_1); if ((((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length))))) { goto IL_001e; } } IL_000e: { ArgumentException_t3259014390 * L_2 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m544251339(L_2, _stringLiteral2103942763, _stringLiteral3322341559, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001e: { Type_t * L_3 = ___returnType2; V_0 = (bool)((((int32_t)((((Il2CppObject*)(Type_t *)L_3) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); TypeU5BU5D_t1664964607* L_4 = ___indexes3; if (!L_4) { goto IL_0036; } } { TypeU5BU5D_t1664964607* L_5 = ___indexes3; NullCheck(L_5); G_B6_0 = (((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length)))); goto IL_0037; } IL_0036: { G_B6_0 = (-1); } IL_0037: { V_1 = G_B6_0; V_2 = (PropertyInfo_t *)NULL; V_4 = ((int32_t)2147483646); V_5 = ((int32_t)2147483647LL); V_6 = 0; PropertyInfoU5BU5D_t1736152084* L_6 = ___match1; NullCheck(L_6); V_3 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_6)->max_length))))-(int32_t)1)); goto IL_0112; } IL_0056: { PropertyInfoU5BU5D_t1736152084* L_7 = ___match1; int32_t L_8 = V_3; NullCheck(L_7); int32_t L_9 = L_8; PropertyInfo_t * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_7 = L_10; PropertyInfo_t * L_11 = V_7; NullCheck(L_11); ParameterInfoU5BU5D_t2275869610* L_12 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(20 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_11); V_8 = L_12; int32_t L_13 = V_1; if ((((int32_t)L_13) < ((int32_t)0))) { goto IL_007a; } } { int32_t L_14 = V_1; ParameterInfoU5BU5D_t2275869610* L_15 = V_8; NullCheck(L_15); if ((((int32_t)L_14) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_15)->max_length))))))) { goto IL_007a; } } { goto IL_010e; } IL_007a: { bool L_16 = V_0; if (!L_16) { goto IL_0092; } } { PropertyInfo_t * L_17 = V_7; NullCheck(L_17); Type_t * L_18 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_17); Type_t * L_19 = ___returnType2; if ((((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19))) { goto IL_0092; } } { goto IL_010e; } IL_0092: { V_9 = ((int32_t)2147483646); int32_t L_20 = V_1; if ((((int32_t)L_20) <= ((int32_t)0))) { goto IL_00b8; } } { TypeU5BU5D_t1664964607* L_21 = ___indexes3; ParameterInfoU5BU5D_t2275869610* L_22 = V_8; int32_t L_23 = Default_check_arguments_with_score_m1714931543(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL); V_9 = L_23; int32_t L_24 = V_9; if ((!(((uint32_t)L_24) == ((uint32_t)(-1))))) { goto IL_00b8; } } { goto IL_010e; } IL_00b8: { PropertyInfo_t * L_25 = V_7; NullCheck(L_25); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_25); IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); int32_t L_27 = Binder_GetDerivedLevel_m1809808744(NULL /*static, unused*/, L_26, /*hidden argument*/NULL); V_10 = L_27; PropertyInfo_t * L_28 = V_2; if (!L_28) { goto IL_0103; } } { int32_t L_29 = V_4; int32_t L_30 = V_9; if ((((int32_t)L_29) >= ((int32_t)L_30))) { goto IL_00da; } } { goto IL_010e; } IL_00da: { int32_t L_31 = V_4; int32_t L_32 = V_9; if ((!(((uint32_t)L_31) == ((uint32_t)L_32)))) { goto IL_0103; } } { int32_t L_33 = V_6; int32_t L_34 = V_10; if ((!(((uint32_t)L_33) == ((uint32_t)L_34)))) { goto IL_00f5; } } { int32_t L_35 = V_9; V_5 = L_35; goto IL_010e; } IL_00f5: { int32_t L_36 = V_6; int32_t L_37 = V_10; if ((((int32_t)L_36) <= ((int32_t)L_37))) { goto IL_0103; } } { goto IL_010e; } IL_0103: { PropertyInfo_t * L_38 = V_7; V_2 = L_38; int32_t L_39 = V_9; V_4 = L_39; int32_t L_40 = V_10; V_6 = L_40; } IL_010e: { int32_t L_41 = V_3; V_3 = ((int32_t)((int32_t)L_41-(int32_t)1)); } IL_0112: { int32_t L_42 = V_3; if ((((int32_t)L_42) >= ((int32_t)0))) { goto IL_0056; } } { int32_t L_43 = V_5; int32_t L_44 = V_4; if ((((int32_t)L_43) > ((int32_t)L_44))) { goto IL_0128; } } { AmbiguousMatchException_t1406414556 * L_45 = (AmbiguousMatchException_t1406414556 *)il2cpp_codegen_object_new(AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m2088048346(L_45, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_45); } IL_0128: { PropertyInfo_t * L_46 = V_2; return L_46; } } // System.Int32 System.Reflection.Binder/Default::check_arguments_with_score(System.Type[],System.Reflection.ParameterInfo[]) extern "C" int32_t Default_check_arguments_with_score_m1714931543 (Il2CppObject * __this /* static, unused */, TypeU5BU5D_t1664964607* ___types0, ParameterInfoU5BU5D_t2275869610* ___args1, const MethodInfo* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { V_0 = (-1); V_1 = 0; goto IL_0030; } IL_0009: { TypeU5BU5D_t1664964607* L_0 = ___types0; int32_t L_1 = V_1; NullCheck(L_0); int32_t L_2 = L_1; Type_t * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); ParameterInfoU5BU5D_t2275869610* L_4 = ___args1; int32_t L_5 = V_1; NullCheck(L_4); int32_t L_6 = L_5; ParameterInfo_t2249040075 * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_7); int32_t L_9 = Default_check_type_with_score_m58148013(NULL /*static, unused*/, L_3, L_8, /*hidden argument*/NULL); V_2 = L_9; int32_t L_10 = V_2; if ((!(((uint32_t)L_10) == ((uint32_t)(-1))))) { goto IL_0023; } } { return (-1); } IL_0023: { int32_t L_11 = V_0; int32_t L_12 = V_2; if ((((int32_t)L_11) >= ((int32_t)L_12))) { goto IL_002c; } } { int32_t L_13 = V_2; V_0 = L_13; } IL_002c: { int32_t L_14 = V_1; V_1 = ((int32_t)((int32_t)L_14+(int32_t)1)); } IL_0030: { int32_t L_15 = V_1; TypeU5BU5D_t1664964607* L_16 = ___types0; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_16)->max_length))))))) { goto IL_0009; } } { int32_t L_17 = V_0; return L_17; } } // System.Int32 System.Reflection.Binder/Default::check_type_with_score(System.Type,System.Type) extern const Il2CppType* Il2CppObject_0_0_0_var; extern const Il2CppType* Enum_t2459695545_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t Default_check_type_with_score_m58148013_MetadataUsageId; extern "C" int32_t Default_check_type_with_score_m58148013 (Il2CppObject * __this /* static, unused */, Type_t * ___from0, Type_t * ___to1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Default_check_type_with_score_m58148013_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t G_B4_0 = 0; int32_t G_B23_0 = 0; int32_t G_B31_0 = 0; int32_t G_B39_0 = 0; int32_t G_B47_0 = 0; int32_t G_B55_0 = 0; int32_t G_B63_0 = 0; int32_t G_B72_0 = 0; int32_t G_B76_0 = 0; int32_t G_B80_0 = 0; { Type_t * L_0 = ___from0; if (L_0) { goto IL_0019; } } { Type_t * L_1 = ___to1; NullCheck(L_1); bool L_2 = Type_get_IsValueType_m1733572463(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0017; } } { G_B4_0 = (-1); goto IL_0018; } IL_0017: { G_B4_0 = 0; } IL_0018: { return G_B4_0; } IL_0019: { Type_t * L_3 = ___from0; Type_t * L_4 = ___to1; if ((!(((Il2CppObject*)(Type_t *)L_3) == ((Il2CppObject*)(Type_t *)L_4)))) { goto IL_0022; } } { return 0; } IL_0022: { Type_t * L_5 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_5) == ((Il2CppObject*)(Type_t *)L_6)))) { goto IL_0034; } } { return 4; } IL_0034: { Type_t * L_7 = ___from0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_8 = Type_GetTypeCode_m1044483454(NULL /*static, unused*/, L_7, /*hidden argument*/NULL); V_0 = L_8; Type_t * L_9 = ___to1; int32_t L_10 = Type_GetTypeCode_m1044483454(NULL /*static, unused*/, L_9, /*hidden argument*/NULL); V_1 = L_10; int32_t L_11 = V_0; V_2 = L_11; int32_t L_12 = V_2; if (((int32_t)((int32_t)L_12-(int32_t)4)) == 0) { goto IL_0079; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 1) { goto IL_010a; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 2) { goto IL_00aa; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 3) { goto IL_01ab; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 4) { goto IL_015e; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 5) { goto IL_023d; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 6) { goto IL_01f8; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 7) { goto IL_0282; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 8) { goto IL_0282; } if (((int32_t)((int32_t)L_12-(int32_t)4)) == 9) { goto IL_02be; } } { goto IL_02ce; } IL_0079: { int32_t L_13 = V_1; V_3 = L_13; int32_t L_14 = V_3; if (((int32_t)((int32_t)L_14-(int32_t)8)) == 0) { goto IL_00a4; } if (((int32_t)((int32_t)L_14-(int32_t)8)) == 1) { goto IL_00a6; } if (((int32_t)((int32_t)L_14-(int32_t)8)) == 2) { goto IL_00a6; } if (((int32_t)((int32_t)L_14-(int32_t)8)) == 3) { goto IL_00a6; } if (((int32_t)((int32_t)L_14-(int32_t)8)) == 4) { goto IL_00a6; } if (((int32_t)((int32_t)L_14-(int32_t)8)) == 5) { goto IL_00a6; } if (((int32_t)((int32_t)L_14-(int32_t)8)) == 6) { goto IL_00a6; } } { goto IL_00a8; } IL_00a4: { return 0; } IL_00a6: { return 2; } IL_00a8: { return (-1); } IL_00aa: { int32_t L_15 = V_1; V_3 = L_15; int32_t L_16 = V_3; if (((int32_t)((int32_t)L_16-(int32_t)4)) == 0) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 1) { goto IL_00e7; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 2) { goto IL_00e7; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 3) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 4) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 5) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 6) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 7) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 8) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 9) { goto IL_00e5; } if (((int32_t)((int32_t)L_16-(int32_t)4)) == 10) { goto IL_00e5; } } { goto IL_00e7; } IL_00e5: { return 2; } IL_00e7: { Type_t * L_17 = ___from0; NullCheck(L_17); bool L_18 = Type_get_IsEnum_m313908919(L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_0108; } } { Type_t * L_19 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_20 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_19) == ((Il2CppObject*)(Type_t *)L_20)))) { goto IL_0108; } } { G_B23_0 = 1; goto IL_0109; } IL_0108: { G_B23_0 = (-1); } IL_0109: { return G_B23_0; } IL_010a: { int32_t L_21 = V_1; V_3 = L_21; int32_t L_22 = V_3; if (((int32_t)((int32_t)L_22-(int32_t)7)) == 0) { goto IL_0139; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 1) { goto IL_013b; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 2) { goto IL_0139; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 3) { goto IL_013b; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 4) { goto IL_0139; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 5) { goto IL_013b; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 6) { goto IL_0139; } if (((int32_t)((int32_t)L_22-(int32_t)7)) == 7) { goto IL_0139; } } { goto IL_013b; } IL_0139: { return 2; } IL_013b: { Type_t * L_23 = ___from0; NullCheck(L_23); bool L_24 = Type_get_IsEnum_m313908919(L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_015c; } } { Type_t * L_25 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_26 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_25) == ((Il2CppObject*)(Type_t *)L_26)))) { goto IL_015c; } } { G_B31_0 = 1; goto IL_015d; } IL_015c: { G_B31_0 = (-1); } IL_015d: { return G_B31_0; } IL_015e: { int32_t L_27 = V_1; V_3 = L_27; int32_t L_28 = V_3; if (((int32_t)((int32_t)L_28-(int32_t)((int32_t)9))) == 0) { goto IL_0186; } if (((int32_t)((int32_t)L_28-(int32_t)((int32_t)9))) == 1) { goto IL_0186; } if (((int32_t)((int32_t)L_28-(int32_t)((int32_t)9))) == 2) { goto IL_0186; } if (((int32_t)((int32_t)L_28-(int32_t)((int32_t)9))) == 3) { goto IL_0186; } if (((int32_t)((int32_t)L_28-(int32_t)((int32_t)9))) == 4) { goto IL_0186; } if (((int32_t)((int32_t)L_28-(int32_t)((int32_t)9))) == 5) { goto IL_0186; } } { goto IL_0188; } IL_0186: { return 2; } IL_0188: { Type_t * L_29 = ___from0; NullCheck(L_29); bool L_30 = Type_get_IsEnum_m313908919(L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_01a9; } } { Type_t * L_31 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_31) == ((Il2CppObject*)(Type_t *)L_32)))) { goto IL_01a9; } } { G_B39_0 = 1; goto IL_01aa; } IL_01a9: { G_B39_0 = (-1); } IL_01aa: { return G_B39_0; } IL_01ab: { int32_t L_33 = V_1; V_3 = L_33; int32_t L_34 = V_3; if (((int32_t)((int32_t)L_34-(int32_t)((int32_t)9))) == 0) { goto IL_01d3; } if (((int32_t)((int32_t)L_34-(int32_t)((int32_t)9))) == 1) { goto IL_01d5; } if (((int32_t)((int32_t)L_34-(int32_t)((int32_t)9))) == 2) { goto IL_01d3; } if (((int32_t)((int32_t)L_34-(int32_t)((int32_t)9))) == 3) { goto IL_01d5; } if (((int32_t)((int32_t)L_34-(int32_t)((int32_t)9))) == 4) { goto IL_01d3; } if (((int32_t)((int32_t)L_34-(int32_t)((int32_t)9))) == 5) { goto IL_01d3; } } { goto IL_01d5; } IL_01d3: { return 2; } IL_01d5: { Type_t * L_35 = ___from0; NullCheck(L_35); bool L_36 = Type_get_IsEnum_m313908919(L_35, /*hidden argument*/NULL); if (!L_36) { goto IL_01f6; } } { Type_t * L_37 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_38 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_37) == ((Il2CppObject*)(Type_t *)L_38)))) { goto IL_01f6; } } { G_B47_0 = 1; goto IL_01f7; } IL_01f6: { G_B47_0 = (-1); } IL_01f7: { return G_B47_0; } IL_01f8: { int32_t L_39 = V_1; V_3 = L_39; int32_t L_40 = V_3; if (((int32_t)((int32_t)L_40-(int32_t)((int32_t)11))) == 0) { goto IL_0218; } if (((int32_t)((int32_t)L_40-(int32_t)((int32_t)11))) == 1) { goto IL_0218; } if (((int32_t)((int32_t)L_40-(int32_t)((int32_t)11))) == 2) { goto IL_0218; } if (((int32_t)((int32_t)L_40-(int32_t)((int32_t)11))) == 3) { goto IL_0218; } } { goto IL_021a; } IL_0218: { return 2; } IL_021a: { Type_t * L_41 = ___from0; NullCheck(L_41); bool L_42 = Type_get_IsEnum_m313908919(L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_023b; } } { Type_t * L_43 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_023b; } } { G_B55_0 = 1; goto IL_023c; } IL_023b: { G_B55_0 = (-1); } IL_023c: { return G_B55_0; } IL_023d: { int32_t L_45 = V_1; V_3 = L_45; int32_t L_46 = V_3; if (((int32_t)((int32_t)L_46-(int32_t)((int32_t)11))) == 0) { goto IL_025d; } if (((int32_t)((int32_t)L_46-(int32_t)((int32_t)11))) == 1) { goto IL_025f; } if (((int32_t)((int32_t)L_46-(int32_t)((int32_t)11))) == 2) { goto IL_025d; } if (((int32_t)((int32_t)L_46-(int32_t)((int32_t)11))) == 3) { goto IL_025d; } } { goto IL_025f; } IL_025d: { return 2; } IL_025f: { Type_t * L_47 = ___from0; NullCheck(L_47); bool L_48 = Type_get_IsEnum_m313908919(L_47, /*hidden argument*/NULL); if (!L_48) { goto IL_0280; } } { Type_t * L_49 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_49) == ((Il2CppObject*)(Type_t *)L_50)))) { goto IL_0280; } } { G_B63_0 = 1; goto IL_0281; } IL_0280: { G_B63_0 = (-1); } IL_0281: { return G_B63_0; } IL_0282: { int32_t L_51 = V_1; V_3 = L_51; int32_t L_52 = V_3; if ((((int32_t)L_52) == ((int32_t)((int32_t)13)))) { goto IL_0299; } } { int32_t L_53 = V_3; if ((((int32_t)L_53) == ((int32_t)((int32_t)14)))) { goto IL_0299; } } { goto IL_029b; } IL_0299: { return 2; } IL_029b: { Type_t * L_54 = ___from0; NullCheck(L_54); bool L_55 = Type_get_IsEnum_m313908919(L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_02bc; } } { Type_t * L_56 = ___to1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_57 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Enum_t2459695545_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_56) == ((Il2CppObject*)(Type_t *)L_57)))) { goto IL_02bc; } } { G_B72_0 = 1; goto IL_02bd; } IL_02bc: { G_B72_0 = (-1); } IL_02bd: { return G_B72_0; } IL_02be: { int32_t L_58 = V_1; if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)14))))) { goto IL_02cc; } } { G_B76_0 = 2; goto IL_02cd; } IL_02cc: { G_B76_0 = (-1); } IL_02cd: { return G_B76_0; } IL_02ce: { Type_t * L_59 = ___to1; Type_t * L_60 = ___from0; NullCheck(L_59); bool L_61 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_59, L_60); if (!L_61) { goto IL_02e0; } } { G_B80_0 = 3; goto IL_02e1; } IL_02e0: { G_B80_0 = (-1); } IL_02e1: { return G_B80_0; } } // System.Void System.Reflection.ConstructorInfo::.ctor() extern "C" void ConstructorInfo__ctor_m3847352284 (ConstructorInfo_t2851816542 * __this, const MethodInfo* method) { { MethodBase__ctor_m3951051358(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.ConstructorInfo::.cctor() extern Il2CppClass* ConstructorInfo_t2851816542_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2199879418; extern Il2CppCodeGenString* _stringLiteral3705238055; extern const uint32_t ConstructorInfo__cctor_m2897369343_MetadataUsageId; extern "C" void ConstructorInfo__cctor_m2897369343 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorInfo__cctor_m2897369343_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((ConstructorInfo_t2851816542_StaticFields*)ConstructorInfo_t2851816542_il2cpp_TypeInfo_var->static_fields)->set_ConstructorName_0(_stringLiteral2199879418); ((ConstructorInfo_t2851816542_StaticFields*)ConstructorInfo_t2851816542_il2cpp_TypeInfo_var->static_fields)->set_TypeConstructorName_1(_stringLiteral3705238055); return; } } // System.Reflection.MemberTypes System.Reflection.ConstructorInfo::get_MemberType() extern "C" int32_t ConstructorInfo_get_MemberType_m1879090087 (ConstructorInfo_t2851816542 * __this, const MethodInfo* method) { { return (int32_t)(1); } } // System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[]) extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern const uint32_t ConstructorInfo_Invoke_m2144827141_MetadataUsageId; extern "C" Il2CppObject * ConstructorInfo_Invoke_m2144827141 (ConstructorInfo_t2851816542 * __this, ObjectU5BU5D_t3614634134* ___parameters0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorInfo_Invoke_m2144827141_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3614634134* L_0 = ___parameters0; if (L_0) { goto IL_000e; } } { ___parameters0 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_000e: { ObjectU5BU5D_t3614634134* L_1 = ___parameters0; Il2CppObject * L_2 = VirtFuncInvoker4< Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(30 /* System.Object System.Reflection.ConstructorInfo::Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, __this, ((int32_t)512), (Binder_t3404612058 *)NULL, L_1, (CultureInfo_t3500843524 *)NULL); return L_2; } } // System.Void System.Reflection.CustomAttributeData::.ctor(System.Reflection.ConstructorInfo,System.Object[],System.Object[]) extern Il2CppClass* CustomAttributeTypedArgumentU5BU5D_t1075686591_il2cpp_TypeInfo_var; extern Il2CppClass* CustomAttributeNamedArgumentU5BU5D_t3304067486_il2cpp_TypeInfo_var; extern const MethodInfo* CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702_MethodInfo_var; extern const MethodInfo* Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084_MethodInfo_var; extern const MethodInfo* CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353_MethodInfo_var; extern const MethodInfo* Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619_MethodInfo_var; extern const uint32_t CustomAttributeData__ctor_m1358286409_MetadataUsageId; extern "C" void CustomAttributeData__ctor_m1358286409 (CustomAttributeData_t3093286891 * __this, ConstructorInfo_t2851816542 * ___ctorInfo0, ObjectU5BU5D_t3614634134* ___ctorArgs1, ObjectU5BU5D_t3614634134* ___namedArgs2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData__ctor_m1358286409_MetadataUsageId); s_Il2CppMethodInitialized = true; } CustomAttributeData_t3093286891 * G_B2_0 = NULL; CustomAttributeData_t3093286891 * G_B1_0 = NULL; CustomAttributeTypedArgumentU5BU5D_t1075686591* G_B3_0 = NULL; CustomAttributeData_t3093286891 * G_B3_1 = NULL; CustomAttributeData_t3093286891 * G_B5_0 = NULL; CustomAttributeData_t3093286891 * G_B4_0 = NULL; CustomAttributeNamedArgumentU5BU5D_t3304067486* G_B6_0 = NULL; CustomAttributeData_t3093286891 * G_B6_1 = NULL; { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); ConstructorInfo_t2851816542 * L_0 = ___ctorInfo0; __this->set_ctorInfo_0(L_0); ObjectU5BU5D_t3614634134* L_1 = ___ctorArgs1; G_B1_0 = __this; if (!L_1) { G_B2_0 = __this; goto IL_001f; } } { ObjectU5BU5D_t3614634134* L_2 = ___ctorArgs1; CustomAttributeTypedArgumentU5BU5D_t1075686591* L_3 = CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702(NULL /*static, unused*/, L_2, /*hidden argument*/CustomAttributeData_UnboxValues_TisCustomAttributeTypedArgument_t1498197914_m2561215702_MethodInfo_var); G_B3_0 = L_3; G_B3_1 = G_B1_0; goto IL_0025; } IL_001f: { G_B3_0 = ((CustomAttributeTypedArgumentU5BU5D_t1075686591*)SZArrayNew(CustomAttributeTypedArgumentU5BU5D_t1075686591_il2cpp_TypeInfo_var, (uint32_t)0)); G_B3_1 = G_B2_0; } IL_0025: { ReadOnlyCollection_1_t1683983606 * L_4 = Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084(NULL /*static, unused*/, G_B3_0, /*hidden argument*/Array_AsReadOnly_TisCustomAttributeTypedArgument_t1498197914_m2855930084_MethodInfo_var); NullCheck(G_B3_1); G_B3_1->set_ctorArgs_1(L_4); ObjectU5BU5D_t3614634134* L_5 = ___namedArgs2; G_B4_0 = __this; if (!L_5) { G_B5_0 = __this; goto IL_0041; } } { ObjectU5BU5D_t3614634134* L_6 = ___namedArgs2; CustomAttributeNamedArgumentU5BU5D_t3304067486* L_7 = CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353(NULL /*static, unused*/, L_6, /*hidden argument*/CustomAttributeData_UnboxValues_TisCustomAttributeNamedArgument_t94157543_m2789115353_MethodInfo_var); G_B6_0 = L_7; G_B6_1 = G_B4_0; goto IL_0047; } IL_0041: { G_B6_0 = ((CustomAttributeNamedArgumentU5BU5D_t3304067486*)SZArrayNew(CustomAttributeNamedArgumentU5BU5D_t3304067486_il2cpp_TypeInfo_var, (uint32_t)0)); G_B6_1 = G_B5_0; } IL_0047: { ReadOnlyCollection_1_t279943235 * L_8 = Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619(NULL /*static, unused*/, G_B6_0, /*hidden argument*/Array_AsReadOnly_TisCustomAttributeNamedArgument_t94157543_m2935638619_MethodInfo_var); NullCheck(G_B6_1); G_B6_1->set_namedArgs_2(L_8); return; } } // System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::get_Constructor() extern "C" ConstructorInfo_t2851816542 * CustomAttributeData_get_Constructor_m2529070599 (CustomAttributeData_t3093286891 * __this, const MethodInfo* method) { { ConstructorInfo_t2851816542 * L_0 = __this->get_ctorInfo_0(); return L_0; } } // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::get_ConstructorArguments() extern "C" Il2CppObject* CustomAttributeData_get_ConstructorArguments_m1625171154 (CustomAttributeData_t3093286891 * __this, const MethodInfo* method) { { Il2CppObject* L_0 = __this->get_ctorArgs_1(); return L_0; } } // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::get_NamedArguments() extern "C" Il2CppObject* CustomAttributeData_get_NamedArguments_m708818174 (CustomAttributeData_t3093286891 * __this, const MethodInfo* method) { { Il2CppObject* L_0 = __this->get_namedArgs_2(); return L_0; } } // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> System.Reflection.CustomAttributeData::GetCustomAttributes(System.Reflection.Assembly) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeData_GetCustomAttributes_m4124612360_MetadataUsageId; extern "C" Il2CppObject* CustomAttributeData_GetCustomAttributes_m4124612360 (Il2CppObject * __this /* static, unused */, Assembly_t4268412390 * ___target0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_GetCustomAttributes_m4124612360_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Assembly_t4268412390 * L_0 = ___target0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); Il2CppObject* L_1 = MonoCustomAttrs_GetCustomAttributesData_m550893105(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> System.Reflection.CustomAttributeData::GetCustomAttributes(System.Reflection.MemberInfo) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeData_GetCustomAttributes_m2421330738_MetadataUsageId; extern "C" Il2CppObject* CustomAttributeData_GetCustomAttributes_m2421330738 (Il2CppObject * __this /* static, unused */, MemberInfo_t * ___target0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_GetCustomAttributes_m2421330738_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = ___target0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); Il2CppObject* L_1 = MonoCustomAttrs_GetCustomAttributesData_m550893105(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> System.Reflection.CustomAttributeData::GetCustomAttributes(System.Reflection.Module) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeData_GetCustomAttributes_m119332220_MetadataUsageId; extern "C" Il2CppObject* CustomAttributeData_GetCustomAttributes_m119332220 (Il2CppObject * __this /* static, unused */, Module_t4282841206 * ___target0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_GetCustomAttributes_m119332220_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Module_t4282841206 * L_0 = ___target0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); Il2CppObject* L_1 = MonoCustomAttrs_GetCustomAttributesData_m550893105(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Collections.Generic.IList`1<System.Reflection.CustomAttributeData> System.Reflection.CustomAttributeData::GetCustomAttributes(System.Reflection.ParameterInfo) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeData_GetCustomAttributes_m3258419955_MetadataUsageId; extern "C" Il2CppObject* CustomAttributeData_GetCustomAttributes_m3258419955 (Il2CppObject * __this /* static, unused */, ParameterInfo_t2249040075 * ___target0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_GetCustomAttributes_m3258419955_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ParameterInfo_t2249040075 * L_0 = ___target0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); Il2CppObject* L_1 = MonoCustomAttrs_GetCustomAttributesData_m550893105(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.CustomAttributeData::ToString() extern Il2CppClass* StringBuilder_t1221177846_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* IList_1_t2039138515_il2cpp_TypeInfo_var; extern Il2CppClass* ICollection_1_t2450273219_il2cpp_TypeInfo_var; extern Il2CppClass* ICollection_1_t1046232848_il2cpp_TypeInfo_var; extern Il2CppClass* IList_1_t635098144_il2cpp_TypeInfo_var; extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029431; extern Il2CppCodeGenString* _stringLiteral372029318; extern Il2CppCodeGenString* _stringLiteral811305474; extern Il2CppCodeGenString* _stringLiteral522332260; extern const uint32_t CustomAttributeData_ToString_m1673522836_MetadataUsageId; extern "C" String_t* CustomAttributeData_ToString_m1673522836 (CustomAttributeData_t3093286891 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_ToString_m1673522836_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1221177846 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; CustomAttributeTypedArgument_t1498197914 V_3; memset(&V_3, 0, sizeof(V_3)); CustomAttributeNamedArgument_t94157543 V_4; memset(&V_4, 0, sizeof(V_4)); { StringBuilder_t1221177846 * L_0 = (StringBuilder_t1221177846 *)il2cpp_codegen_object_new(StringBuilder_t1221177846_il2cpp_TypeInfo_var); StringBuilder__ctor_m3946851802(L_0, /*hidden argument*/NULL); V_0 = L_0; StringBuilder_t1221177846 * L_1 = V_0; ConstructorInfo_t2851816542 * L_2 = __this->get_ctorInfo_0(); NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_2); NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_3); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral372029431, L_4, _stringLiteral372029318, /*hidden argument*/NULL); NullCheck(L_1); StringBuilder_Append_m3636508479(L_1, L_5, /*hidden argument*/NULL); V_1 = 0; goto IL_0071; } IL_0033: { StringBuilder_t1221177846 * L_6 = V_0; Il2CppObject* L_7 = __this->get_ctorArgs_1(); int32_t L_8 = V_1; NullCheck(L_7); CustomAttributeTypedArgument_t1498197914 L_9 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_t1498197914 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IList_1_t2039138515_il2cpp_TypeInfo_var, L_7, L_8); V_3 = L_9; String_t* L_10 = CustomAttributeTypedArgument_ToString_m1091739553((&V_3), /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_Append_m3636508479(L_6, L_10, /*hidden argument*/NULL); int32_t L_11 = V_1; Il2CppObject* L_12 = __this->get_ctorArgs_1(); NullCheck(L_12); int32_t L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, ICollection_1_t2450273219_il2cpp_TypeInfo_var, L_12); if ((((int32_t)((int32_t)((int32_t)L_11+(int32_t)1))) >= ((int32_t)L_13))) { goto IL_006d; } } { StringBuilder_t1221177846 * L_14 = V_0; NullCheck(L_14); StringBuilder_Append_m3636508479(L_14, _stringLiteral811305474, /*hidden argument*/NULL); } IL_006d: { int32_t L_15 = V_1; V_1 = ((int32_t)((int32_t)L_15+(int32_t)1)); } IL_0071: { int32_t L_16 = V_1; Il2CppObject* L_17 = __this->get_ctorArgs_1(); NullCheck(L_17); int32_t L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, ICollection_1_t2450273219_il2cpp_TypeInfo_var, L_17); if ((((int32_t)L_16) < ((int32_t)L_18))) { goto IL_0033; } } { Il2CppObject* L_19 = __this->get_namedArgs_2(); NullCheck(L_19); int32_t L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_19); if ((((int32_t)L_20) <= ((int32_t)0))) { goto IL_009f; } } { StringBuilder_t1221177846 * L_21 = V_0; NullCheck(L_21); StringBuilder_Append_m3636508479(L_21, _stringLiteral811305474, /*hidden argument*/NULL); } IL_009f: { V_2 = 0; goto IL_00e5; } IL_00a6: { StringBuilder_t1221177846 * L_22 = V_0; Il2CppObject* L_23 = __this->get_namedArgs_2(); int32_t L_24 = V_2; NullCheck(L_23); CustomAttributeNamedArgument_t94157543 L_25 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t94157543 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IList_1_t635098144_il2cpp_TypeInfo_var, L_23, L_24); V_4 = L_25; String_t* L_26 = CustomAttributeNamedArgument_ToString_m804774956((&V_4), /*hidden argument*/NULL); NullCheck(L_22); StringBuilder_Append_m3636508479(L_22, L_26, /*hidden argument*/NULL); int32_t L_27 = V_2; Il2CppObject* L_28 = __this->get_namedArgs_2(); NullCheck(L_28); int32_t L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_28); if ((((int32_t)((int32_t)((int32_t)L_27+(int32_t)1))) >= ((int32_t)L_29))) { goto IL_00e1; } } { StringBuilder_t1221177846 * L_30 = V_0; NullCheck(L_30); StringBuilder_Append_m3636508479(L_30, _stringLiteral811305474, /*hidden argument*/NULL); } IL_00e1: { int32_t L_31 = V_2; V_2 = ((int32_t)((int32_t)L_31+(int32_t)1)); } IL_00e5: { int32_t L_32 = V_2; Il2CppObject* L_33 = __this->get_namedArgs_2(); NullCheck(L_33); int32_t L_34 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_33); if ((((int32_t)L_32) < ((int32_t)L_34))) { goto IL_00a6; } } { StringBuilder_t1221177846 * L_35 = V_0; NullCheck(L_35); StringBuilder_AppendFormat_m1879616656(L_35, _stringLiteral522332260, ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)0)), /*hidden argument*/NULL); StringBuilder_t1221177846 * L_36 = V_0; NullCheck(L_36); String_t* L_37 = StringBuilder_ToString_m1507807375(L_36, /*hidden argument*/NULL); return L_37; } } // System.Boolean System.Reflection.CustomAttributeData::Equals(System.Object) extern Il2CppClass* CustomAttributeData_t3093286891_il2cpp_TypeInfo_var; extern Il2CppClass* ICollection_1_t2450273219_il2cpp_TypeInfo_var; extern Il2CppClass* ICollection_1_t1046232848_il2cpp_TypeInfo_var; extern Il2CppClass* IList_1_t2039138515_il2cpp_TypeInfo_var; extern Il2CppClass* CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var; extern Il2CppClass* IList_1_t635098144_il2cpp_TypeInfo_var; extern Il2CppClass* CustomAttributeNamedArgument_t94157543_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeData_Equals_m909425978_MetadataUsageId; extern "C" bool CustomAttributeData_Equals_m909425978 (CustomAttributeData_t3093286891 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_Equals_m909425978_MetadataUsageId); s_Il2CppMethodInitialized = true; } CustomAttributeData_t3093286891 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; CustomAttributeTypedArgument_t1498197914 V_5; memset(&V_5, 0, sizeof(V_5)); CustomAttributeNamedArgument_t94157543 V_6; memset(&V_6, 0, sizeof(V_6)); { Il2CppObject * L_0 = ___obj0; V_0 = ((CustomAttributeData_t3093286891 *)IsInstSealed(L_0, CustomAttributeData_t3093286891_il2cpp_TypeInfo_var)); CustomAttributeData_t3093286891 * L_1 = V_0; if (!L_1) { goto IL_0054; } } { CustomAttributeData_t3093286891 * L_2 = V_0; NullCheck(L_2); ConstructorInfo_t2851816542 * L_3 = L_2->get_ctorInfo_0(); ConstructorInfo_t2851816542 * L_4 = __this->get_ctorInfo_0(); if ((!(((Il2CppObject*)(ConstructorInfo_t2851816542 *)L_3) == ((Il2CppObject*)(ConstructorInfo_t2851816542 *)L_4)))) { goto IL_0054; } } { CustomAttributeData_t3093286891 * L_5 = V_0; NullCheck(L_5); Il2CppObject* L_6 = L_5->get_ctorArgs_1(); NullCheck(L_6); int32_t L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, ICollection_1_t2450273219_il2cpp_TypeInfo_var, L_6); Il2CppObject* L_8 = __this->get_ctorArgs_1(); NullCheck(L_8); int32_t L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, ICollection_1_t2450273219_il2cpp_TypeInfo_var, L_8); if ((!(((uint32_t)L_7) == ((uint32_t)L_9)))) { goto IL_0054; } } { CustomAttributeData_t3093286891 * L_10 = V_0; NullCheck(L_10); Il2CppObject* L_11 = L_10->get_namedArgs_2(); NullCheck(L_11); int32_t L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_11); Il2CppObject* L_13 = __this->get_namedArgs_2(); NullCheck(L_13); int32_t L_14 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_13); if ((((int32_t)L_12) == ((int32_t)L_14))) { goto IL_0056; } } IL_0054: { return (bool)0; } IL_0056: { V_1 = 0; goto IL_008e; } IL_005d: { Il2CppObject* L_15 = __this->get_ctorArgs_1(); int32_t L_16 = V_1; NullCheck(L_15); CustomAttributeTypedArgument_t1498197914 L_17 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_t1498197914 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IList_1_t2039138515_il2cpp_TypeInfo_var, L_15, L_16); V_5 = L_17; CustomAttributeData_t3093286891 * L_18 = V_0; NullCheck(L_18); Il2CppObject* L_19 = L_18->get_ctorArgs_1(); int32_t L_20 = V_1; NullCheck(L_19); CustomAttributeTypedArgument_t1498197914 L_21 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_t1498197914 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IList_1_t2039138515_il2cpp_TypeInfo_var, L_19, L_20); CustomAttributeTypedArgument_t1498197914 L_22 = L_21; Il2CppObject * L_23 = Box(CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var, &L_22); bool L_24 = CustomAttributeTypedArgument_Equals_m1555989603((&V_5), L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_008a; } } { return (bool)0; } IL_008a: { int32_t L_25 = V_1; V_1 = ((int32_t)((int32_t)L_25+(int32_t)1)); } IL_008e: { int32_t L_26 = V_1; Il2CppObject* L_27 = __this->get_ctorArgs_1(); NullCheck(L_27); int32_t L_28 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, ICollection_1_t2450273219_il2cpp_TypeInfo_var, L_27); if ((((int32_t)L_26) < ((int32_t)L_28))) { goto IL_005d; } } { V_2 = 0; goto IL_0107; } IL_00a6: { V_3 = (bool)0; V_4 = 0; goto IL_00e9; } IL_00b0: { Il2CppObject* L_29 = __this->get_namedArgs_2(); int32_t L_30 = V_2; NullCheck(L_29); CustomAttributeNamedArgument_t94157543 L_31 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t94157543 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IList_1_t635098144_il2cpp_TypeInfo_var, L_29, L_30); V_6 = L_31; CustomAttributeData_t3093286891 * L_32 = V_0; NullCheck(L_32); Il2CppObject* L_33 = L_32->get_namedArgs_2(); int32_t L_34 = V_4; NullCheck(L_33); CustomAttributeNamedArgument_t94157543 L_35 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t94157543 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IList_1_t635098144_il2cpp_TypeInfo_var, L_33, L_34); CustomAttributeNamedArgument_t94157543 L_36 = L_35; Il2CppObject * L_37 = Box(CustomAttributeNamedArgument_t94157543_il2cpp_TypeInfo_var, &L_36); bool L_38 = CustomAttributeNamedArgument_Equals_m2691468532((&V_6), L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_00e3; } } { V_3 = (bool)1; goto IL_00fb; } IL_00e3: { int32_t L_39 = V_4; V_4 = ((int32_t)((int32_t)L_39+(int32_t)1)); } IL_00e9: { int32_t L_40 = V_4; CustomAttributeData_t3093286891 * L_41 = V_0; NullCheck(L_41); Il2CppObject* L_42 = L_41->get_namedArgs_2(); NullCheck(L_42); int32_t L_43 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_42); if ((((int32_t)L_40) < ((int32_t)L_43))) { goto IL_00b0; } } IL_00fb: { bool L_44 = V_3; if (L_44) { goto IL_0103; } } { return (bool)0; } IL_0103: { int32_t L_45 = V_2; V_2 = ((int32_t)((int32_t)L_45+(int32_t)1)); } IL_0107: { int32_t L_46 = V_2; Il2CppObject* L_47 = __this->get_namedArgs_2(); NullCheck(L_47); int32_t L_48 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_47); if ((((int32_t)L_46) < ((int32_t)L_48))) { goto IL_00a6; } } { return (bool)1; } } // System.Int32 System.Reflection.CustomAttributeData::GetHashCode() extern Il2CppClass* IList_1_t2039138515_il2cpp_TypeInfo_var; extern Il2CppClass* ICollection_1_t2450273219_il2cpp_TypeInfo_var; extern Il2CppClass* IList_1_t635098144_il2cpp_TypeInfo_var; extern Il2CppClass* ICollection_1_t1046232848_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeData_GetHashCode_m3989739430_MetadataUsageId; extern "C" int32_t CustomAttributeData_GetHashCode_m3989739430 (CustomAttributeData_t3093286891 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeData_GetHashCode_m3989739430_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; CustomAttributeTypedArgument_t1498197914 V_3; memset(&V_3, 0, sizeof(V_3)); CustomAttributeNamedArgument_t94157543 V_4; memset(&V_4, 0, sizeof(V_4)); { ConstructorInfo_t2851816542 * L_0 = __this->get_ctorInfo_0(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); V_0 = ((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16))); V_1 = 0; goto IL_003f; } IL_0016: { int32_t L_2 = V_0; int32_t L_3 = V_0; Il2CppObject* L_4 = __this->get_ctorArgs_1(); int32_t L_5 = V_1; NullCheck(L_4); CustomAttributeTypedArgument_t1498197914 L_6 = InterfaceFuncInvoker1< CustomAttributeTypedArgument_t1498197914 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>::get_Item(System.Int32) */, IList_1_t2039138515_il2cpp_TypeInfo_var, L_4, L_5); V_3 = L_6; int32_t L_7 = CustomAttributeTypedArgument_GetHashCode_m999147081((&V_3), /*hidden argument*/NULL); int32_t L_8 = V_1; V_0 = ((int32_t)((int32_t)L_2+(int32_t)((int32_t)((int32_t)L_3^(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)7+(int32_t)L_7))<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8*(int32_t)4))&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31))))))))); int32_t L_9 = V_1; V_1 = ((int32_t)((int32_t)L_9+(int32_t)1)); } IL_003f: { int32_t L_10 = V_1; Il2CppObject* L_11 = __this->get_ctorArgs_1(); NullCheck(L_11); int32_t L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeTypedArgument>::get_Count() */, ICollection_1_t2450273219_il2cpp_TypeInfo_var, L_11); if ((((int32_t)L_10) < ((int32_t)L_12))) { goto IL_0016; } } { V_2 = 0; goto IL_0075; } IL_0057: { int32_t L_13 = V_0; Il2CppObject* L_14 = __this->get_namedArgs_2(); int32_t L_15 = V_2; NullCheck(L_14); CustomAttributeNamedArgument_t94157543 L_16 = InterfaceFuncInvoker1< CustomAttributeNamedArgument_t94157543 , int32_t >::Invoke(3 /* T System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>::get_Item(System.Int32) */, IList_1_t635098144_il2cpp_TypeInfo_var, L_14, L_15); V_4 = L_16; int32_t L_17 = CustomAttributeNamedArgument_GetHashCode_m3715408876((&V_4), /*hidden argument*/NULL); V_0 = ((int32_t)((int32_t)L_13+(int32_t)((int32_t)((int32_t)L_17<<(int32_t)5)))); int32_t L_18 = V_2; V_2 = ((int32_t)((int32_t)L_18+(int32_t)1)); } IL_0075: { int32_t L_19 = V_2; Il2CppObject* L_20 = __this->get_namedArgs_2(); NullCheck(L_20); int32_t L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Reflection.CustomAttributeNamedArgument>::get_Count() */, ICollection_1_t1046232848_il2cpp_TypeInfo_var, L_20); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0057; } } { int32_t L_22 = V_0; return L_22; } } // System.String System.Reflection.CustomAttributeNamedArgument::ToString() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral507810557; extern const uint32_t CustomAttributeNamedArgument_ToString_m804774956_MetadataUsageId; extern "C" String_t* CustomAttributeNamedArgument_ToString_m804774956 (CustomAttributeNamedArgument_t94157543 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeNamedArgument_ToString_m804774956_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = __this->get_memberInfo_1(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0); CustomAttributeTypedArgument_t1498197914 * L_2 = __this->get_address_of_typedArgument_0(); String_t* L_3 = CustomAttributeTypedArgument_ToString_m1091739553(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = String_Concat_m612901809(NULL /*static, unused*/, L_1, _stringLiteral507810557, L_3, /*hidden argument*/NULL); return L_4; } } extern "C" String_t* CustomAttributeNamedArgument_ToString_m804774956_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { CustomAttributeNamedArgument_t94157543 * _thisAdjusted = reinterpret_cast<CustomAttributeNamedArgument_t94157543 *>(__this + 1); return CustomAttributeNamedArgument_ToString_m804774956(_thisAdjusted, method); } // System.Boolean System.Reflection.CustomAttributeNamedArgument::Equals(System.Object) extern Il2CppClass* CustomAttributeNamedArgument_t94157543_il2cpp_TypeInfo_var; extern Il2CppClass* CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeNamedArgument_Equals_m2691468532_MetadataUsageId; extern "C" bool CustomAttributeNamedArgument_Equals_m2691468532 (CustomAttributeNamedArgument_t94157543 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeNamedArgument_Equals_m2691468532_MetadataUsageId); s_Il2CppMethodInitialized = true; } CustomAttributeNamedArgument_t94157543 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t G_B5_0 = 0; { Il2CppObject * L_0 = ___obj0; if (((Il2CppObject *)IsInstSealed(L_0, CustomAttributeNamedArgument_t94157543_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { Il2CppObject * L_1 = ___obj0; V_0 = ((*(CustomAttributeNamedArgument_t94157543 *)((CustomAttributeNamedArgument_t94157543 *)UnBox (L_1, CustomAttributeNamedArgument_t94157543_il2cpp_TypeInfo_var)))); MemberInfo_t * L_2 = (&V_0)->get_memberInfo_1(); MemberInfo_t * L_3 = __this->get_memberInfo_1(); if ((!(((Il2CppObject*)(MemberInfo_t *)L_2) == ((Il2CppObject*)(MemberInfo_t *)L_3)))) { goto IL_003f; } } { CustomAttributeTypedArgument_t1498197914 * L_4 = __this->get_address_of_typedArgument_0(); CustomAttributeTypedArgument_t1498197914 L_5 = (&V_0)->get_typedArgument_0(); CustomAttributeTypedArgument_t1498197914 L_6 = L_5; Il2CppObject * L_7 = Box(CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var, &L_6); bool L_8 = CustomAttributeTypedArgument_Equals_m1555989603(L_4, L_7, /*hidden argument*/NULL); G_B5_0 = ((int32_t)(L_8)); goto IL_0040; } IL_003f: { G_B5_0 = 0; } IL_0040: { return (bool)G_B5_0; } } extern "C" bool CustomAttributeNamedArgument_Equals_m2691468532_AdjustorThunk (Il2CppObject * __this, Il2CppObject * ___obj0, const MethodInfo* method) { CustomAttributeNamedArgument_t94157543 * _thisAdjusted = reinterpret_cast<CustomAttributeNamedArgument_t94157543 *>(__this + 1); return CustomAttributeNamedArgument_Equals_m2691468532(_thisAdjusted, ___obj0, method); } // System.Int32 System.Reflection.CustomAttributeNamedArgument::GetHashCode() extern "C" int32_t CustomAttributeNamedArgument_GetHashCode_m3715408876 (CustomAttributeNamedArgument_t94157543 * __this, const MethodInfo* method) { { MemberInfo_t * L_0 = __this->get_memberInfo_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); CustomAttributeTypedArgument_t1498197914 * L_2 = __this->get_address_of_typedArgument_0(); int32_t L_3 = CustomAttributeTypedArgument_GetHashCode_m999147081(L_2, /*hidden argument*/NULL); return ((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16)))+(int32_t)L_3)); } } extern "C" int32_t CustomAttributeNamedArgument_GetHashCode_m3715408876_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { CustomAttributeNamedArgument_t94157543 * _thisAdjusted = reinterpret_cast<CustomAttributeNamedArgument_t94157543 *>(__this + 1); return CustomAttributeNamedArgument_GetHashCode_m3715408876(_thisAdjusted, method); } // Conversion methods for marshalling of: System.Reflection.CustomAttributeNamedArgument extern "C" void CustomAttributeNamedArgument_t94157543_marshal_pinvoke(const CustomAttributeNamedArgument_t94157543& unmarshaled, CustomAttributeNamedArgument_t94157543_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___typedArgument_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'typedArgument' of type 'CustomAttributeNamedArgument'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___typedArgument_0Exception); } extern "C" void CustomAttributeNamedArgument_t94157543_marshal_pinvoke_back(const CustomAttributeNamedArgument_t94157543_marshaled_pinvoke& marshaled, CustomAttributeNamedArgument_t94157543& unmarshaled) { Il2CppCodeGenException* ___typedArgument_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'typedArgument' of type 'CustomAttributeNamedArgument'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___typedArgument_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.CustomAttributeNamedArgument extern "C" void CustomAttributeNamedArgument_t94157543_marshal_pinvoke_cleanup(CustomAttributeNamedArgument_t94157543_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Reflection.CustomAttributeNamedArgument extern "C" void CustomAttributeNamedArgument_t94157543_marshal_com(const CustomAttributeNamedArgument_t94157543& unmarshaled, CustomAttributeNamedArgument_t94157543_marshaled_com& marshaled) { Il2CppCodeGenException* ___typedArgument_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'typedArgument' of type 'CustomAttributeNamedArgument'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___typedArgument_0Exception); } extern "C" void CustomAttributeNamedArgument_t94157543_marshal_com_back(const CustomAttributeNamedArgument_t94157543_marshaled_com& marshaled, CustomAttributeNamedArgument_t94157543& unmarshaled) { Il2CppCodeGenException* ___typedArgument_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'typedArgument' of type 'CustomAttributeNamedArgument'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___typedArgument_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.CustomAttributeNamedArgument extern "C" void CustomAttributeNamedArgument_t94157543_marshal_com_cleanup(CustomAttributeNamedArgument_t94157543_marshaled_com& marshaled) { } // System.String System.Reflection.CustomAttributeTypedArgument::ToString() extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Type_t_0_0_0_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029312; extern Il2CppCodeGenString* _stringLiteral1002073185; extern Il2CppCodeGenString* _stringLiteral372029317; extern Il2CppCodeGenString* _stringLiteral372029318; extern const uint32_t CustomAttributeTypedArgument_ToString_m1091739553_MetadataUsageId; extern "C" String_t* CustomAttributeTypedArgument_ToString_m1091739553 (CustomAttributeTypedArgument_t1498197914 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeTypedArgument_ToString_m1091739553_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* G_B3_0 = NULL; { Il2CppObject * L_0 = __this->get_value_1(); if (!L_0) { goto IL_001b; } } { Il2CppObject * L_1 = __this->get_value_1(); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); G_B3_0 = L_2; goto IL_0020; } IL_001b: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = ((String_t_StaticFields*)String_t_il2cpp_TypeInfo_var->static_fields)->get_Empty_2(); G_B3_0 = L_3; } IL_0020: { V_0 = G_B3_0; Type_t * L_4 = __this->get_argumentType_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0047; } } { String_t* L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_7 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral372029312, L_6, _stringLiteral372029312, /*hidden argument*/NULL); return L_7; } IL_0047: { Type_t * L_8 = __this->get_argumentType_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_9 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Type_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_8) == ((Il2CppObject*)(Type_t *)L_9)))) { goto IL_006d; } } { String_t* L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral1002073185, L_10, _stringLiteral372029317, /*hidden argument*/NULL); return L_11; } IL_006d: { Type_t * L_12 = __this->get_argumentType_0(); NullCheck(L_12); bool L_13 = Type_get_IsEnum_m313908919(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0099; } } { Type_t * L_14 = __this->get_argumentType_0(); NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14); String_t* L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_17 = String_Concat_m1561703559(NULL /*static, unused*/, _stringLiteral372029318, L_15, _stringLiteral372029317, L_16, /*hidden argument*/NULL); return L_17; } IL_0099: { String_t* L_18 = V_0; return L_18; } } extern "C" String_t* CustomAttributeTypedArgument_ToString_m1091739553_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { CustomAttributeTypedArgument_t1498197914 * _thisAdjusted = reinterpret_cast<CustomAttributeTypedArgument_t1498197914 *>(__this + 1); return CustomAttributeTypedArgument_ToString_m1091739553(_thisAdjusted, method); } // System.Boolean System.Reflection.CustomAttributeTypedArgument::Equals(System.Object) extern Il2CppClass* CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var; extern const uint32_t CustomAttributeTypedArgument_Equals_m1555989603_MetadataUsageId; extern "C" bool CustomAttributeTypedArgument_Equals_m1555989603 (CustomAttributeTypedArgument_t1498197914 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CustomAttributeTypedArgument_Equals_m1555989603_MetadataUsageId); s_Il2CppMethodInitialized = true; } CustomAttributeTypedArgument_t1498197914 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t G_B6_0 = 0; { Il2CppObject * L_0 = ___obj0; if (((Il2CppObject *)IsInstSealed(L_0, CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var))) { goto IL_000d; } } { return (bool)0; } IL_000d: { Il2CppObject * L_1 = ___obj0; V_0 = ((*(CustomAttributeTypedArgument_t1498197914 *)((CustomAttributeTypedArgument_t1498197914 *)UnBox (L_1, CustomAttributeTypedArgument_t1498197914_il2cpp_TypeInfo_var)))); Type_t * L_2 = (&V_0)->get_argumentType_0(); Type_t * L_3 = __this->get_argumentType_0(); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0048; } } { Il2CppObject * L_4 = __this->get_value_1(); if (!L_4) { goto IL_0048; } } { Il2CppObject * L_5 = __this->get_value_1(); Il2CppObject * L_6 = (&V_0)->get_value_1(); NullCheck(L_5); bool L_7 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_5, L_6); G_B6_0 = ((int32_t)(L_7)); goto IL_0052; } IL_0048: { Il2CppObject * L_8 = (&V_0)->get_value_1(); G_B6_0 = ((((Il2CppObject*)(Il2CppObject *)L_8) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0); } IL_0052: { return (bool)G_B6_0; } } extern "C" bool CustomAttributeTypedArgument_Equals_m1555989603_AdjustorThunk (Il2CppObject * __this, Il2CppObject * ___obj0, const MethodInfo* method) { CustomAttributeTypedArgument_t1498197914 * _thisAdjusted = reinterpret_cast<CustomAttributeTypedArgument_t1498197914 *>(__this + 1); return CustomAttributeTypedArgument_Equals_m1555989603(_thisAdjusted, ___obj0, method); } // System.Int32 System.Reflection.CustomAttributeTypedArgument::GetHashCode() extern "C" int32_t CustomAttributeTypedArgument_GetHashCode_m999147081 (CustomAttributeTypedArgument_t1498197914 * __this, const MethodInfo* method) { int32_t G_B2_0 = 0; int32_t G_B1_0 = 0; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; { Type_t * L_0 = __this->get_argumentType_0(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Type::GetHashCode() */, L_0); Il2CppObject * L_2 = __this->get_value_1(); G_B1_0 = ((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16))); if (!L_2) { G_B2_0 = ((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16))); goto IL_0029; } } { Il2CppObject * L_3 = __this->get_value_1(); NullCheck(L_3); int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3); G_B3_0 = L_4; G_B3_1 = G_B1_0; goto IL_002a; } IL_0029: { G_B3_0 = 0; G_B3_1 = G_B2_0; } IL_002a: { return ((int32_t)((int32_t)G_B3_1+(int32_t)G_B3_0)); } } extern "C" int32_t CustomAttributeTypedArgument_GetHashCode_m999147081_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { CustomAttributeTypedArgument_t1498197914 * _thisAdjusted = reinterpret_cast<CustomAttributeTypedArgument_t1498197914 *>(__this + 1); return CustomAttributeTypedArgument_GetHashCode_m999147081(_thisAdjusted, method); } // Conversion methods for marshalling of: System.Reflection.CustomAttributeTypedArgument extern "C" void CustomAttributeTypedArgument_t1498197914_marshal_pinvoke(const CustomAttributeTypedArgument_t1498197914& unmarshaled, CustomAttributeTypedArgument_t1498197914_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___argumentType_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'argumentType' of type 'CustomAttributeTypedArgument': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___argumentType_0Exception); } extern "C" void CustomAttributeTypedArgument_t1498197914_marshal_pinvoke_back(const CustomAttributeTypedArgument_t1498197914_marshaled_pinvoke& marshaled, CustomAttributeTypedArgument_t1498197914& unmarshaled) { Il2CppCodeGenException* ___argumentType_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'argumentType' of type 'CustomAttributeTypedArgument': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___argumentType_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.CustomAttributeTypedArgument extern "C" void CustomAttributeTypedArgument_t1498197914_marshal_pinvoke_cleanup(CustomAttributeTypedArgument_t1498197914_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Reflection.CustomAttributeTypedArgument extern "C" void CustomAttributeTypedArgument_t1498197914_marshal_com(const CustomAttributeTypedArgument_t1498197914& unmarshaled, CustomAttributeTypedArgument_t1498197914_marshaled_com& marshaled) { Il2CppCodeGenException* ___argumentType_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'argumentType' of type 'CustomAttributeTypedArgument': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___argumentType_0Exception); } extern "C" void CustomAttributeTypedArgument_t1498197914_marshal_com_back(const CustomAttributeTypedArgument_t1498197914_marshaled_com& marshaled, CustomAttributeTypedArgument_t1498197914& unmarshaled) { Il2CppCodeGenException* ___argumentType_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'argumentType' of type 'CustomAttributeTypedArgument': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___argumentType_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.CustomAttributeTypedArgument extern "C" void CustomAttributeTypedArgument_t1498197914_marshal_com_cleanup(CustomAttributeTypedArgument_t1498197914_marshaled_com& marshaled) { } // System.Void System.Reflection.DefaultMemberAttribute::.ctor(System.String) extern "C" void DefaultMemberAttribute__ctor_m2234856827 (DefaultMemberAttribute_t889804479 * __this, String_t* ___memberName0, const MethodInfo* method) { { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___memberName0; __this->set_member_name_0(L_0); return; } } // System.String System.Reflection.DefaultMemberAttribute::get_MemberName() extern "C" String_t* DefaultMemberAttribute_get_MemberName_m1393933516 (DefaultMemberAttribute_t889804479 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_member_name_0(); return L_0; } } // System.String System.Reflection.Emit.AssemblyBuilder::get_Location() extern "C" String_t* AssemblyBuilder_get_Location_m554656855 (AssemblyBuilder_t1646117627 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = AssemblyBuilder_not_supported_m383946865(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.Module[] System.Reflection.Emit.AssemblyBuilder::GetModulesInternal() extern Il2CppClass* ModuleU5BU5D_t3593287923_il2cpp_TypeInfo_var; extern const uint32_t AssemblyBuilder_GetModulesInternal_m3379844831_MetadataUsageId; extern "C" ModuleU5BU5D_t3593287923* AssemblyBuilder_GetModulesInternal_m3379844831 (AssemblyBuilder_t1646117627 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyBuilder_GetModulesInternal_m3379844831_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ModuleBuilderU5BU5D_t3642333382* L_0 = __this->get_modules_10(); if (L_0) { goto IL_0012; } } { return ((ModuleU5BU5D_t3593287923*)SZArrayNew(ModuleU5BU5D_t3593287923_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_0012: { ModuleBuilderU5BU5D_t3642333382* L_1 = __this->get_modules_10(); NullCheck((Il2CppArray *)(Il2CppArray *)L_1); Il2CppObject * L_2 = Array_Clone_m768574314((Il2CppArray *)(Il2CppArray *)L_1, /*hidden argument*/NULL); return ((ModuleU5BU5D_t3593287923*)Castclass(L_2, ModuleU5BU5D_t3593287923_il2cpp_TypeInfo_var)); } } // System.Type[] System.Reflection.Emit.AssemblyBuilder::GetTypes(System.Boolean) extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t AssemblyBuilder_GetTypes_m2527954992_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* AssemblyBuilder_GetTypes_m2527954992 (AssemblyBuilder_t1646117627 * __this, bool ___exportedOnly0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyBuilder_GetTypes_m2527954992_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; int32_t V_1 = 0; TypeU5BU5D_t1664964607* V_2 = NULL; TypeU5BU5D_t1664964607* V_3 = NULL; int32_t V_4 = 0; TypeU5BU5D_t1664964607* V_5 = NULL; TypeU5BU5D_t1664964607* V_6 = NULL; TypeU5BU5D_t1664964607* G_B17_0 = NULL; { V_0 = (TypeU5BU5D_t1664964607*)NULL; ModuleBuilderU5BU5D_t3642333382* L_0 = __this->get_modules_10(); if (!L_0) { goto IL_0068; } } { V_1 = 0; goto IL_005a; } IL_0014: { ModuleBuilderU5BU5D_t3642333382* L_1 = __this->get_modules_10(); int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; ModuleBuilder_t4156028127 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); NullCheck(L_4); TypeU5BU5D_t1664964607* L_5 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(9 /* System.Type[] System.Reflection.Emit.ModuleBuilder::GetTypes() */, L_4); V_2 = L_5; TypeU5BU5D_t1664964607* L_6 = V_0; if (L_6) { goto IL_002f; } } { TypeU5BU5D_t1664964607* L_7 = V_2; V_0 = L_7; goto IL_0056; } IL_002f: { TypeU5BU5D_t1664964607* L_8 = V_0; NullCheck(L_8); TypeU5BU5D_t1664964607* L_9 = V_2; NullCheck(L_9); V_3 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_8)->max_length))))+(int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length)))))))); TypeU5BU5D_t1664964607* L_10 = V_0; TypeU5BU5D_t1664964607* L_11 = V_3; TypeU5BU5D_t1664964607* L_12 = V_0; NullCheck(L_12); Array_Copy_m3808317496(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_10, 0, (Il2CppArray *)(Il2CppArray *)L_11, 0, (((int32_t)((int32_t)(((Il2CppArray *)L_12)->max_length)))), /*hidden argument*/NULL); TypeU5BU5D_t1664964607* L_13 = V_2; TypeU5BU5D_t1664964607* L_14 = V_3; TypeU5BU5D_t1664964607* L_15 = V_0; NullCheck(L_15); TypeU5BU5D_t1664964607* L_16 = V_2; NullCheck(L_16); Array_Copy_m3808317496(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_13, 0, (Il2CppArray *)(Il2CppArray *)L_14, (((int32_t)((int32_t)(((Il2CppArray *)L_15)->max_length)))), (((int32_t)((int32_t)(((Il2CppArray *)L_16)->max_length)))), /*hidden argument*/NULL); } IL_0056: { int32_t L_17 = V_1; V_1 = ((int32_t)((int32_t)L_17+(int32_t)1)); } IL_005a: { int32_t L_18 = V_1; ModuleBuilderU5BU5D_t3642333382* L_19 = __this->get_modules_10(); NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_19)->max_length))))))) { goto IL_0014; } } IL_0068: { ModuleU5BU5D_t3593287923* L_20 = __this->get_loaded_modules_11(); if (!L_20) { goto IL_00db; } } { V_4 = 0; goto IL_00cc; } IL_007b: { ModuleU5BU5D_t3593287923* L_21 = __this->get_loaded_modules_11(); int32_t L_22 = V_4; NullCheck(L_21); int32_t L_23 = L_22; Module_t4282841206 * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); NullCheck(L_24); TypeU5BU5D_t1664964607* L_25 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(9 /* System.Type[] System.Reflection.Module::GetTypes() */, L_24); V_5 = L_25; TypeU5BU5D_t1664964607* L_26 = V_0; if (L_26) { goto IL_0099; } } { TypeU5BU5D_t1664964607* L_27 = V_5; V_0 = L_27; goto IL_00c6; } IL_0099: { TypeU5BU5D_t1664964607* L_28 = V_0; NullCheck(L_28); TypeU5BU5D_t1664964607* L_29 = V_5; NullCheck(L_29); V_6 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_28)->max_length))))+(int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_29)->max_length)))))))); TypeU5BU5D_t1664964607* L_30 = V_0; TypeU5BU5D_t1664964607* L_31 = V_6; TypeU5BU5D_t1664964607* L_32 = V_0; NullCheck(L_32); Array_Copy_m3808317496(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_30, 0, (Il2CppArray *)(Il2CppArray *)L_31, 0, (((int32_t)((int32_t)(((Il2CppArray *)L_32)->max_length)))), /*hidden argument*/NULL); TypeU5BU5D_t1664964607* L_33 = V_5; TypeU5BU5D_t1664964607* L_34 = V_6; TypeU5BU5D_t1664964607* L_35 = V_0; NullCheck(L_35); TypeU5BU5D_t1664964607* L_36 = V_5; NullCheck(L_36); Array_Copy_m3808317496(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_33, 0, (Il2CppArray *)(Il2CppArray *)L_34, (((int32_t)((int32_t)(((Il2CppArray *)L_35)->max_length)))), (((int32_t)((int32_t)(((Il2CppArray *)L_36)->max_length)))), /*hidden argument*/NULL); } IL_00c6: { int32_t L_37 = V_4; V_4 = ((int32_t)((int32_t)L_37+(int32_t)1)); } IL_00cc: { int32_t L_38 = V_4; ModuleU5BU5D_t3593287923* L_39 = __this->get_loaded_modules_11(); NullCheck(L_39); if ((((int32_t)L_38) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_39)->max_length))))))) { goto IL_007b; } } IL_00db: { TypeU5BU5D_t1664964607* L_40 = V_0; if (L_40) { goto IL_00eb; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_41 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); G_B17_0 = L_41; goto IL_00ec; } IL_00eb: { TypeU5BU5D_t1664964607* L_42 = V_0; G_B17_0 = L_42; } IL_00ec: { return G_B17_0; } } // System.Boolean System.Reflection.Emit.AssemblyBuilder::get_IsCompilerContext() extern "C" bool AssemblyBuilder_get_IsCompilerContext_m2864230005 (AssemblyBuilder_t1646117627 * __this, const MethodInfo* method) { { bool L_0 = __this->get_is_compiler_context_16(); return L_0; } } // System.Exception System.Reflection.Emit.AssemblyBuilder::not_supported() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4087454587; extern const uint32_t AssemblyBuilder_not_supported_m383946865_MetadataUsageId; extern "C" Exception_t1927440687 * AssemblyBuilder_not_supported_m383946865 (AssemblyBuilder_t1646117627 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyBuilder_not_supported_m383946865_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral4087454587, /*hidden argument*/NULL); return L_0; } } // System.Reflection.AssemblyName System.Reflection.Emit.AssemblyBuilder::UnprotectedGetName() extern "C" AssemblyName_t894705941 * AssemblyBuilder_UnprotectedGetName_m2328641134 (AssemblyBuilder_t1646117627 * __this, const MethodInfo* method) { AssemblyName_t894705941 * V_0 = NULL; { AssemblyName_t894705941 * L_0 = Assembly_UnprotectedGetName_m3014607408(__this, /*hidden argument*/NULL); V_0 = L_0; StrongName_t117835354 * L_1 = __this->get_sn_15(); if (!L_1) { goto IL_0034; } } { AssemblyName_t894705941 * L_2 = V_0; StrongName_t117835354 * L_3 = __this->get_sn_15(); NullCheck(L_3); ByteU5BU5D_t3397334013* L_4 = StrongName_get_PublicKey_m3777577320(L_3, /*hidden argument*/NULL); NullCheck(L_2); AssemblyName_SetPublicKey_m1491402438(L_2, L_4, /*hidden argument*/NULL); AssemblyName_t894705941 * L_5 = V_0; StrongName_t117835354 * L_6 = __this->get_sn_15(); NullCheck(L_6); ByteU5BU5D_t3397334013* L_7 = StrongName_get_PublicKeyToken_m1968460885(L_6, /*hidden argument*/NULL); NullCheck(L_5); AssemblyName_SetPublicKeyToken_m3032035167(L_5, L_7, /*hidden argument*/NULL); } IL_0034: { AssemblyName_t894705941 * L_8 = V_0; return L_8; } } // System.Void System.Reflection.Emit.ByRefType::.ctor(System.Type) extern "C" void ByRefType__ctor_m2068210324 (ByRefType_t1587086384 * __this, Type_t * ___elementType0, const MethodInfo* method) { { Type_t * L_0 = ___elementType0; DerivedType__ctor_m4154637955(__this, L_0, /*hidden argument*/NULL); return; } } // System.Boolean System.Reflection.Emit.ByRefType::IsByRefImpl() extern "C" bool ByRefType_IsByRefImpl_m3683903251 (ByRefType_t1587086384 * __this, const MethodInfo* method) { { return (bool)1; } } // System.Type System.Reflection.Emit.ByRefType::get_BaseType() extern const Il2CppType* Il2CppArray_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t ByRefType_get_BaseType_m3405859119_MetadataUsageId; extern "C" Type_t * ByRefType_get_BaseType_m3405859119 (ByRefType_t1587086384 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByRefType_get_BaseType_m3405859119_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppArray_0_0_0_var), /*hidden argument*/NULL); return L_0; } } // System.String System.Reflection.Emit.ByRefType::FormatName(System.String) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029308; extern const uint32_t ByRefType_FormatName_m3716172668_MetadataUsageId; extern "C" String_t* ByRefType_FormatName_m3716172668 (ByRefType_t1587086384 * __this, String_t* ___elementName0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByRefType_FormatName_m3716172668_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___elementName0; if (L_0) { goto IL_0008; } } { return (String_t*)NULL; } IL_0008: { String_t* L_1 = ___elementName0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Concat_m2596409543(NULL /*static, unused*/, L_1, _stringLiteral372029308, /*hidden argument*/NULL); return L_2; } } // System.Type System.Reflection.Emit.ByRefType::MakeByRefType() extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral912151980; extern const uint32_t ByRefType_MakeByRefType_m2150335175_MetadataUsageId; extern "C" Type_t * ByRefType_MakeByRefType_m2150335175 (ByRefType_t1587086384 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByRefType_MakeByRefType_m2150335175_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArgumentException_t3259014390 * L_0 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_0, _stringLiteral912151980, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Reflection.Emit.ConstructorBuilder::.ctor(System.Reflection.Emit.TypeBuilder,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[],System.Type[][],System.Type[][]) extern Il2CppClass* ConstructorInfo_t2851816542_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1262676163; extern Il2CppCodeGenString* _stringLiteral3462160554; extern const uint32_t ConstructorBuilder__ctor_m2001998159_MetadataUsageId; extern "C" void ConstructorBuilder__ctor_m2001998159 (ConstructorBuilder_t700974433 * __this, TypeBuilder_t3308873219 * ___tb0, int32_t ___attributes1, int32_t ___callingConvention2, TypeU5BU5D_t1664964607* ___parameterTypes3, TypeU5BU5DU5BU5D_t2318378278* ___paramModReq4, TypeU5BU5DU5BU5D_t2318378278* ___paramModOpt5, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder__ctor_m2001998159_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; MethodToken_t3991686330 V_1; memset(&V_1, 0, sizeof(V_1)); { __this->set_init_locals_10((bool)1); IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t2851816542_il2cpp_TypeInfo_var); ConstructorInfo__ctor_m3847352284(__this, /*hidden argument*/NULL); int32_t L_0 = ___attributes1; __this->set_attrs_4(((int32_t)((int32_t)((int32_t)((int32_t)L_0|(int32_t)((int32_t)2048)))|(int32_t)((int32_t)4096)))); int32_t L_1 = ___callingConvention2; __this->set_call_conv_7(L_1); TypeU5BU5D_t1664964607* L_2 = ___parameterTypes3; if (!L_2) { goto IL_007c; } } { V_0 = 0; goto IL_0052; } IL_0035: { TypeU5BU5D_t1664964607* L_3 = ___parameterTypes3; int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; Type_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if (L_6) { goto IL_004e; } } { ArgumentException_t3259014390 * L_7 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m544251339(L_7, _stringLiteral1262676163, _stringLiteral3462160554, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_004e: { int32_t L_8 = V_0; V_0 = ((int32_t)((int32_t)L_8+(int32_t)1)); } IL_0052: { int32_t L_9 = V_0; TypeU5BU5D_t1664964607* L_10 = ___parameterTypes3; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length))))))) { goto IL_0035; } } { TypeU5BU5D_t1664964607* L_11 = ___parameterTypes3; NullCheck(L_11); __this->set_parameters_3(((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_11)->max_length))))))); TypeU5BU5D_t1664964607* L_12 = ___parameterTypes3; TypeU5BU5D_t1664964607* L_13 = __this->get_parameters_3(); TypeU5BU5D_t1664964607* L_14 = ___parameterTypes3; NullCheck(L_14); Array_Copy_m2363740072(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_12, (Il2CppArray *)(Il2CppArray *)L_13, (((int32_t)((int32_t)(((Il2CppArray *)L_14)->max_length)))), /*hidden argument*/NULL); } IL_007c: { TypeBuilder_t3308873219 * L_15 = ___tb0; __this->set_type_8(L_15); TypeU5BU5DU5BU5D_t2318378278* L_16 = ___paramModReq4; __this->set_paramModReq_11(L_16); TypeU5BU5DU5BU5D_t2318378278* L_17 = ___paramModOpt5; __this->set_paramModOpt_12(L_17); int32_t L_18 = ConstructorBuilder_get_next_table_index_m932085784(__this, __this, 6, (bool)1, /*hidden argument*/NULL); __this->set_table_idx_6(L_18); TypeBuilder_t3308873219 * L_19 = ___tb0; NullCheck(L_19); Module_t4282841206 * L_20 = TypeBuilder_get_Module_m1668298460(L_19, /*hidden argument*/NULL); MethodToken_t3991686330 L_21 = ConstructorBuilder_GetToken_m3945412419(__this, /*hidden argument*/NULL); V_1 = L_21; int32_t L_22 = MethodToken_get_Token_m3846227497((&V_1), /*hidden argument*/NULL); NullCheck(((ModuleBuilder_t4156028127 *)CastclassClass(L_20, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var))); ModuleBuilder_RegisterToken_m1388342515(((ModuleBuilder_t4156028127 *)CastclassClass(L_20, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var)), __this, L_22, /*hidden argument*/NULL); return; } } // System.Reflection.CallingConventions System.Reflection.Emit.ConstructorBuilder::get_CallingConvention() extern "C" int32_t ConstructorBuilder_get_CallingConvention_m443074051 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_call_conv_7(); return L_0; } } // System.Reflection.Emit.TypeBuilder System.Reflection.Emit.ConstructorBuilder::get_TypeBuilder() extern "C" TypeBuilder_t3308873219 * ConstructorBuilder_get_TypeBuilder_m3442952231 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); return L_0; } } // System.Reflection.ParameterInfo[] System.Reflection.Emit.ConstructorBuilder::GetParameters() extern "C" ParameterInfoU5BU5D_t2275869610* ConstructorBuilder_GetParameters_m3711347282 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0022; } } { bool L_2 = ConstructorBuilder_get_IsCompilerContext_m2796899803(__this, /*hidden argument*/NULL); if (L_2) { goto IL_0022; } } { Exception_t1927440687 * L_3 = ConstructorBuilder_not_created_m2150488017(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { ParameterInfoU5BU5D_t2275869610* L_4 = ConstructorBuilder_GetParametersInternal_m3775796783(__this, /*hidden argument*/NULL); return L_4; } } // System.Reflection.ParameterInfo[] System.Reflection.Emit.ConstructorBuilder::GetParametersInternal() extern Il2CppClass* ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var; extern Il2CppClass* ParameterInfo_t2249040075_il2cpp_TypeInfo_var; extern const uint32_t ConstructorBuilder_GetParametersInternal_m3775796783_MetadataUsageId; extern "C" ParameterInfoU5BU5D_t2275869610* ConstructorBuilder_GetParametersInternal_m3775796783 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_GetParametersInternal_m3775796783_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; int32_t V_1 = 0; int32_t G_B5_0 = 0; ParameterInfoU5BU5D_t2275869610* G_B5_1 = NULL; int32_t G_B4_0 = 0; ParameterInfoU5BU5D_t2275869610* G_B4_1 = NULL; ParameterBuilder_t3344728474 * G_B6_0 = NULL; int32_t G_B6_1 = 0; ParameterInfoU5BU5D_t2275869610* G_B6_2 = NULL; { TypeU5BU5D_t1664964607* L_0 = __this->get_parameters_3(); if (L_0) { goto IL_0012; } } { return ((ParameterInfoU5BU5D_t2275869610*)SZArrayNew(ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_0012: { TypeU5BU5D_t1664964607* L_1 = __this->get_parameters_3(); NullCheck(L_1); V_0 = ((ParameterInfoU5BU5D_t2275869610*)SZArrayNew(ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length)))))); V_1 = 0; goto IL_005a; } IL_0027: { ParameterInfoU5BU5D_t2275869610* L_2 = V_0; int32_t L_3 = V_1; ParameterBuilderU5BU5D_t2122994367* L_4 = __this->get_pinfo_9(); G_B4_0 = L_3; G_B4_1 = L_2; if (L_4) { G_B5_0 = L_3; G_B5_1 = L_2; goto IL_003a; } } { G_B6_0 = ((ParameterBuilder_t3344728474 *)(NULL)); G_B6_1 = G_B4_0; G_B6_2 = G_B4_1; goto IL_0044; } IL_003a: { ParameterBuilderU5BU5D_t2122994367* L_5 = __this->get_pinfo_9(); int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = ((int32_t)((int32_t)L_6+(int32_t)1)); ParameterBuilder_t3344728474 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); G_B6_0 = L_8; G_B6_1 = G_B5_0; G_B6_2 = G_B5_1; } IL_0044: { TypeU5BU5D_t1664964607* L_9 = __this->get_parameters_3(); int32_t L_10 = V_1; NullCheck(L_9); int32_t L_11 = L_10; Type_t * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); int32_t L_13 = V_1; ParameterInfo_t2249040075 * L_14 = (ParameterInfo_t2249040075 *)il2cpp_codegen_object_new(ParameterInfo_t2249040075_il2cpp_TypeInfo_var); ParameterInfo__ctor_m2149157062(L_14, G_B6_0, L_12, __this, ((int32_t)((int32_t)L_13+(int32_t)1)), /*hidden argument*/NULL); NullCheck(G_B6_2); ArrayElementTypeCheck (G_B6_2, L_14); (G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (ParameterInfo_t2249040075 *)L_14); int32_t L_15 = V_1; V_1 = ((int32_t)((int32_t)L_15+(int32_t)1)); } IL_005a: { int32_t L_16 = V_1; TypeU5BU5D_t1664964607* L_17 = __this->get_parameters_3(); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_17)->max_length))))))) { goto IL_0027; } } { ParameterInfoU5BU5D_t2275869610* L_18 = V_0; return L_18; } } // System.Int32 System.Reflection.Emit.ConstructorBuilder::GetParameterCount() extern "C" int32_t ConstructorBuilder_GetParameterCount_m2862936870 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = __this->get_parameters_3(); if (L_0) { goto IL_000d; } } { return 0; } IL_000d: { TypeU5BU5D_t1664964607* L_1 = __this->get_parameters_3(); NullCheck(L_1); return (((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length)))); } } // System.Object System.Reflection.Emit.ConstructorBuilder::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern "C" Il2CppObject * ConstructorBuilder_Invoke_m2354062201 (ConstructorBuilder_t700974433 * __this, Il2CppObject * ___obj0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, ObjectU5BU5D_t3614634134* ___parameters3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { { Exception_t1927440687 * L_0 = ConstructorBuilder_not_supported_m3687319507(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object System.Reflection.Emit.ConstructorBuilder::Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern "C" Il2CppObject * ConstructorBuilder_Invoke_m2488856091 (ConstructorBuilder_t700974433 * __this, int32_t ___invokeAttr0, Binder_t3404612058 * ___binder1, ObjectU5BU5D_t3614634134* ___parameters2, CultureInfo_t3500843524 * ___culture3, const MethodInfo* method) { { Exception_t1927440687 * L_0 = ConstructorBuilder_not_supported_m3687319507(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.RuntimeMethodHandle System.Reflection.Emit.ConstructorBuilder::get_MethodHandle() extern "C" RuntimeMethodHandle_t894824333 ConstructorBuilder_get_MethodHandle_m977166569 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = ConstructorBuilder_not_supported_m3687319507(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorBuilder::get_Attributes() extern "C" int32_t ConstructorBuilder_get_Attributes_m2137353707 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_attrs_4(); return L_0; } } // System.Type System.Reflection.Emit.ConstructorBuilder::get_ReflectedType() extern "C" Type_t * ConstructorBuilder_get_ReflectedType_m3815261871 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); return L_0; } } // System.Type System.Reflection.Emit.ConstructorBuilder::get_DeclaringType() extern "C" Type_t * ConstructorBuilder_get_DeclaringType_m4264602248 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); return L_0; } } // System.String System.Reflection.Emit.ConstructorBuilder::get_Name() extern Il2CppClass* ConstructorInfo_t2851816542_il2cpp_TypeInfo_var; extern const uint32_t ConstructorBuilder_get_Name_m134603075_MetadataUsageId; extern "C" String_t* ConstructorBuilder_get_Name_m134603075 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_get_Name_m134603075_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B3_0 = NULL; { int32_t L_0 = __this->get_attrs_4(); if (!((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) { goto IL_0018; } } { IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t2851816542_il2cpp_TypeInfo_var); String_t* L_1 = ((ConstructorInfo_t2851816542_StaticFields*)ConstructorInfo_t2851816542_il2cpp_TypeInfo_var->static_fields)->get_TypeConstructorName_1(); G_B3_0 = L_1; goto IL_001d; } IL_0018: { IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t2851816542_il2cpp_TypeInfo_var); String_t* L_2 = ((ConstructorInfo_t2851816542_StaticFields*)ConstructorInfo_t2851816542_il2cpp_TypeInfo_var->static_fields)->get_ConstructorName_0(); G_B3_0 = L_2; } IL_001d: { return G_B3_0; } } // System.Boolean System.Reflection.Emit.ConstructorBuilder::IsDefined(System.Type,System.Boolean) extern "C" bool ConstructorBuilder_IsDefined_m2369140139 (ConstructorBuilder_t700974433 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = ConstructorBuilder_not_supported_m3687319507(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object[] System.Reflection.Emit.ConstructorBuilder::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t ConstructorBuilder_GetCustomAttributes_m1931712364_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* ConstructorBuilder_GetCustomAttributes_m1931712364 (ConstructorBuilder_t700974433 * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_GetCustomAttributes_m1931712364_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0023; } } { bool L_2 = ConstructorBuilder_get_IsCompilerContext_m2796899803(__this, /*hidden argument*/NULL); if (!L_2) { goto IL_0023; } } { bool L_3 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_4 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_3, /*hidden argument*/NULL); return L_4; } IL_0023: { Exception_t1927440687 * L_5 = ConstructorBuilder_not_supported_m3687319507(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } } // System.Object[] System.Reflection.Emit.ConstructorBuilder::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t ConstructorBuilder_GetCustomAttributes_m1698596385_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* ConstructorBuilder_GetCustomAttributes_m1698596385 (ConstructorBuilder_t700974433 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_GetCustomAttributes_m1698596385_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0024; } } { bool L_2 = ConstructorBuilder_get_IsCompilerContext_m2796899803(__this, /*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { Type_t * L_3 = ___attributeType0; bool L_4 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_5 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_3, L_4, /*hidden argument*/NULL); return L_5; } IL_0024: { Exception_t1927440687 * L_6 = ConstructorBuilder_not_supported_m3687319507(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } } // System.Reflection.Emit.ILGenerator System.Reflection.Emit.ConstructorBuilder::GetILGenerator() extern "C" ILGenerator_t99948092 * ConstructorBuilder_GetILGenerator_m1407935730 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { ILGenerator_t99948092 * L_0 = ConstructorBuilder_GetILGenerator_m1731893569(__this, ((int32_t)64), /*hidden argument*/NULL); return L_0; } } // System.Reflection.Emit.ILGenerator System.Reflection.Emit.ConstructorBuilder::GetILGenerator(System.Int32) extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern Il2CppClass* ILGenerator_t99948092_il2cpp_TypeInfo_var; extern const uint32_t ConstructorBuilder_GetILGenerator_m1731893569_MetadataUsageId; extern "C" ILGenerator_t99948092 * ConstructorBuilder_GetILGenerator_m1731893569 (ConstructorBuilder_t700974433 * __this, int32_t ___streamSize0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_GetILGenerator_m1731893569_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ILGenerator_t99948092 * L_0 = __this->get_ilgen_2(); if (!L_0) { goto IL_0012; } } { ILGenerator_t99948092 * L_1 = __this->get_ilgen_2(); return L_1; } IL_0012: { TypeBuilder_t3308873219 * L_2 = __this->get_type_8(); NullCheck(L_2); Module_t4282841206 * L_3 = TypeBuilder_get_Module_m1668298460(L_2, /*hidden argument*/NULL); TypeBuilder_t3308873219 * L_4 = __this->get_type_8(); NullCheck(L_4); Module_t4282841206 * L_5 = TypeBuilder_get_Module_m1668298460(L_4, /*hidden argument*/NULL); NullCheck(((ModuleBuilder_t4156028127 *)CastclassClass(L_5, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var))); Il2CppObject * L_6 = ModuleBuilder_GetTokenGenerator_m4006065550(((ModuleBuilder_t4156028127 *)CastclassClass(L_5, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); int32_t L_7 = ___streamSize0; ILGenerator_t99948092 * L_8 = (ILGenerator_t99948092 *)il2cpp_codegen_object_new(ILGenerator_t99948092_il2cpp_TypeInfo_var); ILGenerator__ctor_m3365621387(L_8, L_3, L_6, L_7, /*hidden argument*/NULL); __this->set_ilgen_2(L_8); ILGenerator_t99948092 * L_9 = __this->get_ilgen_2(); return L_9; } } // System.Reflection.Emit.MethodToken System.Reflection.Emit.ConstructorBuilder::GetToken() extern "C" MethodToken_t3991686330 ConstructorBuilder_GetToken_m3945412419 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_table_idx_6(); MethodToken_t3991686330 L_1; memset(&L_1, 0, sizeof(L_1)); MethodToken__ctor_m3671357474(&L_1, ((int32_t)((int32_t)((int32_t)100663296)|(int32_t)L_0)), /*hidden argument*/NULL); return L_1; } } // System.Reflection.Module System.Reflection.Emit.ConstructorBuilder::get_Module() extern "C" Module_t4282841206 * ConstructorBuilder_get_Module_m2159174298 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { { Module_t4282841206 * L_0 = MemberInfo_get_Module_m3957426656(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Reflection.Emit.ConstructorBuilder::ToString() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2307484441; extern Il2CppCodeGenString* _stringLiteral522332250; extern const uint32_t ConstructorBuilder_ToString_m347700767_MetadataUsageId; extern "C" String_t* ConstructorBuilder_ToString_m347700767 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_ToString_m347700767_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); NullCheck(L_0); String_t* L_1 = TypeBuilder_get_Name_m170882803(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral2307484441, L_1, _stringLiteral522332250, /*hidden argument*/NULL); return L_2; } } // System.Void System.Reflection.Emit.ConstructorBuilder::fixup() extern Il2CppClass* ILGenerator_t99948092_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2470364202; extern Il2CppCodeGenString* _stringLiteral2747925653; extern const uint32_t ConstructorBuilder_fixup_m836985654_MetadataUsageId; extern "C" void ConstructorBuilder_fixup_m836985654 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_fixup_m836985654_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_attrs_4(); if (((int32_t)((int32_t)L_0&(int32_t)((int32_t)9216)))) { goto IL_0058; } } { int32_t L_1 = __this->get_iattrs_5(); if (((int32_t)((int32_t)L_1&(int32_t)((int32_t)4099)))) { goto IL_0058; } } { ILGenerator_t99948092 * L_2 = __this->get_ilgen_2(); if (!L_2) { goto IL_003d; } } { ILGenerator_t99948092 * L_3 = __this->get_ilgen_2(); IL2CPP_RUNTIME_CLASS_INIT(ILGenerator_t99948092_il2cpp_TypeInfo_var); int32_t L_4 = ILGenerator_Mono_GetCurrentOffset_m3553856682(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0058; } } IL_003d: { String_t* L_5 = ConstructorBuilder_get_Name_m134603075(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral2470364202, L_5, _stringLiteral2747925653, /*hidden argument*/NULL); InvalidOperationException_t721527559 * L_7 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0058: { ILGenerator_t99948092 * L_8 = __this->get_ilgen_2(); if (!L_8) { goto IL_006e; } } { ILGenerator_t99948092 * L_9 = __this->get_ilgen_2(); NullCheck(L_9); ILGenerator_label_fixup_m1325994348(L_9, /*hidden argument*/NULL); } IL_006e: { return; } } // System.Int32 System.Reflection.Emit.ConstructorBuilder::get_next_table_index(System.Object,System.Int32,System.Boolean) extern "C" int32_t ConstructorBuilder_get_next_table_index_m932085784 (ConstructorBuilder_t700974433 * __this, Il2CppObject * ___obj0, int32_t ___table1, bool ___inc2, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_8(); Il2CppObject * L_1 = ___obj0; int32_t L_2 = ___table1; bool L_3 = ___inc2; NullCheck(L_0); int32_t L_4 = TypeBuilder_get_next_table_index_m1415870184(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Reflection.Emit.ConstructorBuilder::get_IsCompilerContext() extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern Il2CppClass* AssemblyBuilder_t1646117627_il2cpp_TypeInfo_var; extern const uint32_t ConstructorBuilder_get_IsCompilerContext_m2796899803_MetadataUsageId; extern "C" bool ConstructorBuilder_get_IsCompilerContext_m2796899803 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_get_IsCompilerContext_m2796899803_MetadataUsageId); s_Il2CppMethodInitialized = true; } ModuleBuilder_t4156028127 * V_0 = NULL; AssemblyBuilder_t1646117627 * V_1 = NULL; { TypeBuilder_t3308873219 * L_0 = ConstructorBuilder_get_TypeBuilder_m3442952231(__this, /*hidden argument*/NULL); NullCheck(L_0); Module_t4282841206 * L_1 = TypeBuilder_get_Module_m1668298460(L_0, /*hidden argument*/NULL); V_0 = ((ModuleBuilder_t4156028127 *)CastclassClass(L_1, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var)); ModuleBuilder_t4156028127 * L_2 = V_0; NullCheck(L_2); Assembly_t4268412390 * L_3 = Module_get_Assembly_m3690289982(L_2, /*hidden argument*/NULL); V_1 = ((AssemblyBuilder_t1646117627 *)CastclassSealed(L_3, AssemblyBuilder_t1646117627_il2cpp_TypeInfo_var)); AssemblyBuilder_t1646117627 * L_4 = V_1; NullCheck(L_4); bool L_5 = AssemblyBuilder_get_IsCompilerContext_m2864230005(L_4, /*hidden argument*/NULL); return L_5; } } // System.Exception System.Reflection.Emit.ConstructorBuilder::not_supported() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4087454587; extern const uint32_t ConstructorBuilder_not_supported_m3687319507_MetadataUsageId; extern "C" Exception_t1927440687 * ConstructorBuilder_not_supported_m3687319507 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_not_supported_m3687319507_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral4087454587, /*hidden argument*/NULL); return L_0; } } // System.Exception System.Reflection.Emit.ConstructorBuilder::not_created() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2499557300; extern const uint32_t ConstructorBuilder_not_created_m2150488017_MetadataUsageId; extern "C" Exception_t1927440687 * ConstructorBuilder_not_created_m2150488017 (ConstructorBuilder_t700974433 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConstructorBuilder_not_created_m2150488017_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral2499557300, /*hidden argument*/NULL); return L_0; } } // System.Void System.Reflection.Emit.DerivedType::.ctor(System.Type) extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t DerivedType__ctor_m4154637955_MetadataUsageId; extern "C" void DerivedType__ctor_m4154637955 (DerivedType_t1016359113 * __this, Type_t * ___elementType0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType__ctor_m4154637955_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type__ctor_m882675131(__this, /*hidden argument*/NULL); Type_t * L_0 = ___elementType0; __this->set_elementType_8(L_0); return; } } // System.Void System.Reflection.Emit.DerivedType::create_unmanaged_type(System.Type) extern "C" void DerivedType_create_unmanaged_type_m3164160613 (Il2CppObject * __this /* static, unused */, Type_t * ___type0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*DerivedType_create_unmanaged_type_m3164160613_ftn) (Type_t *); ((DerivedType_create_unmanaged_type_m3164160613_ftn)mscorlib::System::Reflection::Emit::DerivedType::create_unmanaged_type) (___type0); } // System.Type[] System.Reflection.Emit.DerivedType::GetInterfaces() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetInterfaces_m2710649328_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* DerivedType_GetInterfaces_m2710649328 (DerivedType_t1016359113 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetInterfaces_m2710649328_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.DerivedType::GetElementType() extern "C" Type_t * DerivedType_GetElementType_m659905870 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); return L_0; } } // System.Reflection.EventInfo System.Reflection.Emit.DerivedType::GetEvent(System.String,System.Reflection.BindingFlags) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetEvent_m2165020195_MetadataUsageId; extern "C" EventInfo_t * DerivedType_GetEvent_m2165020195 (DerivedType_t1016359113 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetEvent_m2165020195_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.FieldInfo System.Reflection.Emit.DerivedType::GetField(System.String,System.Reflection.BindingFlags) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetField_m3960169619_MetadataUsageId; extern "C" FieldInfo_t * DerivedType_GetField_m3960169619 (DerivedType_t1016359113 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetField_m3960169619_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.FieldInfo[] System.Reflection.Emit.DerivedType::GetFields(System.Reflection.BindingFlags) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetFields_m2946331416_MetadataUsageId; extern "C" FieldInfoU5BU5D_t125053523* DerivedType_GetFields_m2946331416 (DerivedType_t1016359113 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetFields_m2946331416_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.MethodInfo System.Reflection.Emit.DerivedType::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetMethodImpl_m2649456432_MetadataUsageId; extern "C" MethodInfo_t * DerivedType_GetMethodImpl_m2649456432 (DerivedType_t1016359113 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, int32_t ___callConvention3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetMethodImpl_m2649456432_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.MethodInfo[] System.Reflection.Emit.DerivedType::GetMethods(System.Reflection.BindingFlags) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetMethods_m165266904_MetadataUsageId; extern "C" MethodInfoU5BU5D_t152480188* DerivedType_GetMethods_m165266904 (DerivedType_t1016359113 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetMethods_m165266904_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.PropertyInfo System.Reflection.Emit.DerivedType::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetPropertyImpl_m1383673951_MetadataUsageId; extern "C" PropertyInfo_t * DerivedType_GetPropertyImpl_m1383673951 (DerivedType_t1016359113 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, Type_t * ___returnType3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetPropertyImpl_m1383673951_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.ConstructorInfo System.Reflection.Emit.DerivedType::GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetConstructorImpl_m129806456_MetadataUsageId; extern "C" ConstructorInfo_t2851816542 * DerivedType_GetConstructorImpl_m129806456 (DerivedType_t1016359113 * __this, int32_t ___bindingAttr0, Binder_t3404612058 * ___binder1, int32_t ___callConvention2, TypeU5BU5D_t1664964607* ___types3, ParameterModifierU5BU5D_t963192633* ___modifiers4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetConstructorImpl_m129806456_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.TypeAttributes System.Reflection.Emit.DerivedType::GetAttributeFlagsImpl() extern "C" int32_t DerivedType_GetAttributeFlagsImpl_m876862795 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); int32_t L_1 = Type_get_Attributes_m967681955(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Reflection.Emit.DerivedType::HasElementTypeImpl() extern "C" bool DerivedType_HasElementTypeImpl_m919717594 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { return (bool)1; } } // System.Boolean System.Reflection.Emit.DerivedType::IsArrayImpl() extern "C" bool DerivedType_IsArrayImpl_m684825803 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.DerivedType::IsByRefImpl() extern "C" bool DerivedType_IsByRefImpl_m587660994 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.DerivedType::IsPointerImpl() extern "C" bool DerivedType_IsPointerImpl_m411817681 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.DerivedType::IsPrimitiveImpl() extern "C" bool DerivedType_IsPrimitiveImpl_m346837491 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Reflection.ConstructorInfo[] System.Reflection.Emit.DerivedType::GetConstructors(System.Reflection.BindingFlags) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetConstructors_m3174158156_MetadataUsageId; extern "C" ConstructorInfoU5BU5D_t1996683371* DerivedType_GetConstructors_m3174158156 (DerivedType_t1016359113 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetConstructors_m3174158156_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object System.Reflection.Emit.DerivedType::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_InvokeMember_m4149586013_MetadataUsageId; extern "C" Il2CppObject * DerivedType_InvokeMember_m4149586013 (DerivedType_t1016359113 * __this, String_t* ___name0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, Il2CppObject * ___target3, ObjectU5BU5D_t3614634134* ___args4, ParameterModifierU5BU5D_t963192633* ___modifiers5, CultureInfo_t3500843524 * ___culture6, StringU5BU5D_t1642385972* ___namedParameters7, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_InvokeMember_m4149586013_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.DerivedType::IsInstanceOfType(System.Object) extern "C" bool DerivedType_IsInstanceOfType_m1209218194 (DerivedType_t1016359113 * __this, Il2CppObject * ___o0, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.DerivedType::IsAssignableFrom(System.Type) extern "C" bool DerivedType_IsAssignableFrom_m149150570 (DerivedType_t1016359113 * __this, Type_t * ___c0, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.DerivedType::get_ContainsGenericParameters() extern "C" bool DerivedType_get_ContainsGenericParameters_m3700679213 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_0); return L_1; } } // System.Type System.Reflection.Emit.DerivedType::MakeGenericType(System.Type[]) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_MakeGenericType_m742223168_MetadataUsageId; extern "C" Type_t * DerivedType_MakeGenericType_m742223168 (DerivedType_t1016359113 * __this, TypeU5BU5D_t1664964607* ___typeArguments0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_MakeGenericType_m742223168_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.DerivedType::MakeByRefType() extern Il2CppClass* ByRefType_t1587086384_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_MakeByRefType_m1445183672_MetadataUsageId; extern "C" Type_t * DerivedType_MakeByRefType_m1445183672 (DerivedType_t1016359113 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_MakeByRefType_m1445183672_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByRefType_t1587086384 * L_0 = (ByRefType_t1587086384 *)il2cpp_codegen_object_new(ByRefType_t1587086384_il2cpp_TypeInfo_var); ByRefType__ctor_m2068210324(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.String System.Reflection.Emit.DerivedType::ToString() extern "C" String_t* DerivedType_ToString_m747960775 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_0); String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(81 /* System.String System.Reflection.Emit.DerivedType::FormatName(System.String) */, __this, L_1); return L_2; } } // System.Reflection.Assembly System.Reflection.Emit.DerivedType::get_Assembly() extern "C" Assembly_t4268412390 * DerivedType_get_Assembly_m1990356726 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); Assembly_t4268412390 * L_1 = VirtFuncInvoker0< Assembly_t4268412390 * >::Invoke(14 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_0); return L_1; } } // System.String System.Reflection.Emit.DerivedType::get_AssemblyQualifiedName() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral811305474; extern const uint32_t DerivedType_get_AssemblyQualifiedName_m2010127631_MetadataUsageId; extern "C" String_t* DerivedType_get_AssemblyQualifiedName_m2010127631 (DerivedType_t1016359113 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_get_AssemblyQualifiedName_m2010127631_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_0); String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(81 /* System.String System.Reflection.Emit.DerivedType::FormatName(System.String) */, __this, L_1); V_0 = L_2; String_t* L_3 = V_0; if (L_3) { goto IL_001a; } } { return (String_t*)NULL; } IL_001a: { String_t* L_4 = V_0; Type_t * L_5 = __this->get_elementType_8(); NullCheck(L_5); Assembly_t4268412390 * L_6 = VirtFuncInvoker0< Assembly_t4268412390 * >::Invoke(14 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_5); NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Reflection.Assembly::get_FullName() */, L_6); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_8 = String_Concat_m612901809(NULL /*static, unused*/, L_4, _stringLiteral811305474, L_7, /*hidden argument*/NULL); return L_8; } } // System.String System.Reflection.Emit.DerivedType::get_FullName() extern "C" String_t* DerivedType_get_FullName_m4188379454 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_0); String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(81 /* System.String System.Reflection.Emit.DerivedType::FormatName(System.String) */, __this, L_1); return L_2; } } // System.String System.Reflection.Emit.DerivedType::get_Name() extern "C" String_t* DerivedType_get_Name_m1748632995 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0); String_t* L_2 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(81 /* System.String System.Reflection.Emit.DerivedType::FormatName(System.String) */, __this, L_1); return L_2; } } // System.Reflection.Module System.Reflection.Emit.DerivedType::get_Module() extern "C" Module_t4282841206 * DerivedType_get_Module_m2877391270 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); Module_t4282841206 * L_1 = VirtFuncInvoker0< Module_t4282841206 * >::Invoke(10 /* System.Reflection.Module System.Type::get_Module() */, L_0); return L_1; } } // System.String System.Reflection.Emit.DerivedType::get_Namespace() extern "C" String_t* DerivedType_get_Namespace_m3902616023 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_elementType_8(); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Type::get_Namespace() */, L_0); return L_1; } } // System.RuntimeTypeHandle System.Reflection.Emit.DerivedType::get_TypeHandle() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_get_TypeHandle_m1486870245_MetadataUsageId; extern "C" RuntimeTypeHandle_t2330101084 DerivedType_get_TypeHandle_m1486870245 (DerivedType_t1016359113 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_get_TypeHandle_m1486870245_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.DerivedType::get_UnderlyingSystemType() extern "C" Type_t * DerivedType_get_UnderlyingSystemType_m3904230233 (DerivedType_t1016359113 * __this, const MethodInfo* method) { { DerivedType_create_unmanaged_type_m3164160613(NULL /*static, unused*/, __this, /*hidden argument*/NULL); return __this; } } // System.Boolean System.Reflection.Emit.DerivedType::IsDefined(System.Type,System.Boolean) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_IsDefined_m555719351_MetadataUsageId; extern "C" bool DerivedType_IsDefined_m555719351 (DerivedType_t1016359113 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_IsDefined_m555719351_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object[] System.Reflection.Emit.DerivedType::GetCustomAttributes(System.Boolean) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetCustomAttributes_m731216224_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* DerivedType_GetCustomAttributes_m731216224 (DerivedType_t1016359113 * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetCustomAttributes_m731216224_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object[] System.Reflection.Emit.DerivedType::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t DerivedType_GetCustomAttributes_m4010730569_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* DerivedType_GetCustomAttributes_m4010730569 (DerivedType_t1016359113 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DerivedType_GetCustomAttributes_m4010730569_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.Assembly System.Reflection.Emit.EnumBuilder::get_Assembly() extern "C" Assembly_t4268412390 * EnumBuilder_get_Assembly_m4285228003 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); Assembly_t4268412390 * L_1 = TypeBuilder_get_Assembly_m492491492(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.Emit.EnumBuilder::get_AssemblyQualifiedName() extern "C" String_t* EnumBuilder_get_AssemblyQualifiedName_m3662466844 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); String_t* L_1 = TypeBuilder_get_AssemblyQualifiedName_m2097258567(L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.Emit.EnumBuilder::get_BaseType() extern "C" Type_t * EnumBuilder_get_BaseType_m63295819 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); Type_t * L_1 = TypeBuilder_get_BaseType_m4088672180(L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.Emit.EnumBuilder::get_DeclaringType() extern "C" Type_t * EnumBuilder_get_DeclaringType_m1949466083 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); Type_t * L_1 = TypeBuilder_get_DeclaringType_m3236598700(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.Emit.EnumBuilder::get_FullName() extern "C" String_t* EnumBuilder_get_FullName_m2818393911 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); String_t* L_1 = TypeBuilder_get_FullName_m1626507516(L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.Module System.Reflection.Emit.EnumBuilder::get_Module() extern "C" Module_t4282841206 * EnumBuilder_get_Module_m431986379 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); Module_t4282841206 * L_1 = TypeBuilder_get_Module_m1668298460(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.Emit.EnumBuilder::get_Name() extern "C" String_t* EnumBuilder_get_Name_m2088160658 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); String_t* L_1 = TypeBuilder_get_Name_m170882803(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.Emit.EnumBuilder::get_Namespace() extern "C" String_t* EnumBuilder_get_Namespace_m3109232562 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); String_t* L_1 = TypeBuilder_get_Namespace_m3562783599(L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.Emit.EnumBuilder::get_ReflectedType() extern "C" Type_t * EnumBuilder_get_ReflectedType_m2679108928 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); Type_t * L_1 = TypeBuilder_get_ReflectedType_m2504081059(L_0, /*hidden argument*/NULL); return L_1; } } // System.RuntimeTypeHandle System.Reflection.Emit.EnumBuilder::get_TypeHandle() extern "C" RuntimeTypeHandle_t2330101084 EnumBuilder_get_TypeHandle_m724362740 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); RuntimeTypeHandle_t2330101084 L_1 = TypeBuilder_get_TypeHandle_m922348781(L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.Emit.EnumBuilder::get_UnderlyingSystemType() extern "C" Type_t * EnumBuilder_get_UnderlyingSystemType_m1699680520 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get__underlyingType_9(); return L_0; } } // System.Reflection.TypeAttributes System.Reflection.Emit.EnumBuilder::GetAttributeFlagsImpl() extern "C" int32_t EnumBuilder_GetAttributeFlagsImpl_m4263246832 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); int32_t L_1 = L_0->get_attrs_17(); return L_1; } } // System.Reflection.ConstructorInfo System.Reflection.Emit.EnumBuilder::GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern "C" ConstructorInfo_t2851816542 * EnumBuilder_GetConstructorImpl_m331611313 (EnumBuilder_t2808714468 * __this, int32_t ___bindingAttr0, Binder_t3404612058 * ___binder1, int32_t ___callConvention2, TypeU5BU5D_t1664964607* ___types3, ParameterModifierU5BU5D_t963192633* ___modifiers4, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); int32_t L_1 = ___bindingAttr0; Binder_t3404612058 * L_2 = ___binder1; int32_t L_3 = ___callConvention2; TypeU5BU5D_t1664964607* L_4 = ___types3; ParameterModifierU5BU5D_t963192633* L_5 = ___modifiers4; NullCheck(L_0); ConstructorInfo_t2851816542 * L_6 = Type_GetConstructor_m835344477(L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Reflection.ConstructorInfo[] System.Reflection.Emit.EnumBuilder::GetConstructors(System.Reflection.BindingFlags) extern "C" ConstructorInfoU5BU5D_t1996683371* EnumBuilder_GetConstructors_m3240699827 (EnumBuilder_t2808714468 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); int32_t L_1 = ___bindingAttr0; NullCheck(L_0); ConstructorInfoU5BU5D_t1996683371* L_2 = TypeBuilder_GetConstructors_m774120094(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.Emit.EnumBuilder::GetCustomAttributes(System.Boolean) extern "C" ObjectU5BU5D_t3614634134* EnumBuilder_GetCustomAttributes_m432109445 (EnumBuilder_t2808714468 * __this, bool ___inherit0, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); bool L_1 = ___inherit0; NullCheck(L_0); ObjectU5BU5D_t3614634134* L_2 = TypeBuilder_GetCustomAttributes_m1637538574(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.Emit.EnumBuilder::GetCustomAttributes(System.Type,System.Boolean) extern "C" ObjectU5BU5D_t3614634134* EnumBuilder_GetCustomAttributes_m2001415610 (EnumBuilder_t2808714468 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); ObjectU5BU5D_t3614634134* L_3 = TypeBuilder_GetCustomAttributes_m2702632361(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Type System.Reflection.Emit.EnumBuilder::GetElementType() extern "C" Type_t * EnumBuilder_GetElementType_m1228393631 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); Type_t * L_1 = TypeBuilder_GetElementType_m3707448372(L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.EventInfo System.Reflection.Emit.EnumBuilder::GetEvent(System.String,System.Reflection.BindingFlags) extern "C" EventInfo_t * EnumBuilder_GetEvent_m3989421960 (EnumBuilder_t2808714468 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); String_t* L_1 = ___name0; int32_t L_2 = ___bindingAttr1; NullCheck(L_0); EventInfo_t * L_3 = TypeBuilder_GetEvent_m3876348075(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Reflection.FieldInfo System.Reflection.Emit.EnumBuilder::GetField(System.String,System.Reflection.BindingFlags) extern "C" FieldInfo_t * EnumBuilder_GetField_m1324325036 (EnumBuilder_t2808714468 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); String_t* L_1 = ___name0; int32_t L_2 = ___bindingAttr1; NullCheck(L_0); FieldInfo_t * L_3 = TypeBuilder_GetField_m2112455315(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Reflection.FieldInfo[] System.Reflection.Emit.EnumBuilder::GetFields(System.Reflection.BindingFlags) extern "C" FieldInfoU5BU5D_t125053523* EnumBuilder_GetFields_m2003258635 (EnumBuilder_t2808714468 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); int32_t L_1 = ___bindingAttr0; NullCheck(L_0); FieldInfoU5BU5D_t125053523* L_2 = TypeBuilder_GetFields_m3875401338(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Type[] System.Reflection.Emit.EnumBuilder::GetInterfaces() extern "C" TypeU5BU5D_t1664964607* EnumBuilder_GetInterfaces_m198423261 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); TypeU5BU5D_t1664964607* L_1 = TypeBuilder_GetInterfaces_m1818658502(L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodInfo System.Reflection.Emit.EnumBuilder::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern "C" MethodInfo_t * EnumBuilder_GetMethodImpl_m2091516387 (EnumBuilder_t2808714468 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, int32_t ___callConvention3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = ___types4; if (L_0) { goto IL_0015; } } { TypeBuilder_t3308873219 * L_1 = __this->get__tb_8(); String_t* L_2 = ___name0; int32_t L_3 = ___bindingAttr1; NullCheck(L_1); MethodInfo_t * L_4 = Type_GetMethod_m475234662(L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0015: { TypeBuilder_t3308873219 * L_5 = __this->get__tb_8(); String_t* L_6 = ___name0; int32_t L_7 = ___bindingAttr1; Binder_t3404612058 * L_8 = ___binder2; int32_t L_9 = ___callConvention3; TypeU5BU5D_t1664964607* L_10 = ___types4; ParameterModifierU5BU5D_t963192633* L_11 = ___modifiers5; NullCheck(L_5); MethodInfo_t * L_12 = Type_GetMethod_m3650909507(L_5, L_6, L_7, L_8, L_9, L_10, L_11, /*hidden argument*/NULL); return L_12; } } // System.Reflection.MethodInfo[] System.Reflection.Emit.EnumBuilder::GetMethods(System.Reflection.BindingFlags) extern "C" MethodInfoU5BU5D_t152480188* EnumBuilder_GetMethods_m342174319 (EnumBuilder_t2808714468 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); int32_t L_1 = ___bindingAttr0; NullCheck(L_0); MethodInfoU5BU5D_t152480188* L_2 = TypeBuilder_GetMethods_m4196862738(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Reflection.PropertyInfo System.Reflection.Emit.EnumBuilder::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) extern "C" PropertyInfo_t * EnumBuilder_GetPropertyImpl_m2717304076 (EnumBuilder_t2808714468 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, Type_t * ___returnType3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { { Exception_t1927440687 * L_0 = EnumBuilder_CreateNotSupportedException_m62763134(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.EnumBuilder::HasElementTypeImpl() extern "C" bool EnumBuilder_HasElementTypeImpl_m1414733955 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); NullCheck(L_0); bool L_1 = Type_get_HasElementType_m3319917896(L_0, /*hidden argument*/NULL); return L_1; } } // System.Object System.Reflection.Emit.EnumBuilder::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) extern "C" Il2CppObject * EnumBuilder_InvokeMember_m633176706 (EnumBuilder_t2808714468 * __this, String_t* ___name0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, Il2CppObject * ___target3, ObjectU5BU5D_t3614634134* ___args4, ParameterModifierU5BU5D_t963192633* ___modifiers5, CultureInfo_t3500843524 * ___culture6, StringU5BU5D_t1642385972* ___namedParameters7, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); String_t* L_1 = ___name0; int32_t L_2 = ___invokeAttr1; Binder_t3404612058 * L_3 = ___binder2; Il2CppObject * L_4 = ___target3; ObjectU5BU5D_t3614634134* L_5 = ___args4; ParameterModifierU5BU5D_t963192633* L_6 = ___modifiers5; CultureInfo_t3500843524 * L_7 = ___culture6; StringU5BU5D_t1642385972* L_8 = ___namedParameters7; NullCheck(L_0); Il2CppObject * L_9 = TypeBuilder_InvokeMember_m1992906893(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Boolean System.Reflection.Emit.EnumBuilder::IsArrayImpl() extern "C" bool EnumBuilder_IsArrayImpl_m3185704898 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.EnumBuilder::IsByRefImpl() extern "C" bool EnumBuilder_IsByRefImpl_m3302439719 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.EnumBuilder::IsPointerImpl() extern "C" bool EnumBuilder_IsPointerImpl_m2768502902 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.EnumBuilder::IsPrimitiveImpl() extern "C" bool EnumBuilder_IsPrimitiveImpl_m3485654502 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.EnumBuilder::IsValueTypeImpl() extern "C" bool EnumBuilder_IsValueTypeImpl_m3635754638 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { { return (bool)1; } } // System.Boolean System.Reflection.Emit.EnumBuilder::IsDefined(System.Type,System.Boolean) extern "C" bool EnumBuilder_IsDefined_m255842204 (EnumBuilder_t2808714468 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get__tb_8(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); bool L_3 = TypeBuilder_IsDefined_m3186251655(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Type System.Reflection.Emit.EnumBuilder::MakeByRefType() extern Il2CppClass* ByRefType_t1587086384_il2cpp_TypeInfo_var; extern const uint32_t EnumBuilder_MakeByRefType_m3504630835_MetadataUsageId; extern "C" Type_t * EnumBuilder_MakeByRefType_m3504630835 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumBuilder_MakeByRefType_m3504630835_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByRefType_t1587086384 * L_0 = (ByRefType_t1587086384 *)il2cpp_codegen_object_new(ByRefType_t1587086384_il2cpp_TypeInfo_var); ByRefType__ctor_m2068210324(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Exception System.Reflection.Emit.EnumBuilder::CreateNotSupportedException() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4087454587; extern const uint32_t EnumBuilder_CreateNotSupportedException_m62763134_MetadataUsageId; extern "C" Exception_t1927440687 * EnumBuilder_CreateNotSupportedException_m62763134 (EnumBuilder_t2808714468 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumBuilder_CreateNotSupportedException_m62763134_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral4087454587, /*hidden argument*/NULL); return L_0; } } // System.Reflection.FieldAttributes System.Reflection.Emit.FieldBuilder::get_Attributes() extern "C" int32_t FieldBuilder_get_Attributes_m2174064290 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_attrs_0(); return L_0; } } // System.Type System.Reflection.Emit.FieldBuilder::get_DeclaringType() extern "C" Type_t * FieldBuilder_get_DeclaringType_m726107228 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_typeb_3(); return L_0; } } // System.RuntimeFieldHandle System.Reflection.Emit.FieldBuilder::get_FieldHandle() extern "C" RuntimeFieldHandle_t2331729674 FieldBuilder_get_FieldHandle_m1845846823 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = FieldBuilder_CreateNotSupportedException_m3999938861(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.FieldBuilder::get_FieldType() extern "C" Type_t * FieldBuilder_get_FieldType_m2267463269 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_type_1(); return L_0; } } // System.String System.Reflection.Emit.FieldBuilder::get_Name() extern "C" String_t* FieldBuilder_get_Name_m2243491233 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_2(); return L_0; } } // System.Type System.Reflection.Emit.FieldBuilder::get_ReflectedType() extern "C" Type_t * FieldBuilder_get_ReflectedType_m3707619461 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_typeb_3(); return L_0; } } // System.Object[] System.Reflection.Emit.FieldBuilder::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t FieldBuilder_GetCustomAttributes_m1557425540_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* FieldBuilder_GetCustomAttributes_m1557425540 (FieldBuilder_t2784804005 * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldBuilder_GetCustomAttributes_m1557425540_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_typeb_3(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { bool L_2 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_3 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Exception_t1927440687 * L_4 = FieldBuilder_CreateNotSupportedException_m3999938861(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } } // System.Object[] System.Reflection.Emit.FieldBuilder::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t FieldBuilder_GetCustomAttributes_m291168515_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* FieldBuilder_GetCustomAttributes_m291168515 (FieldBuilder_t2784804005 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldBuilder_GetCustomAttributes_m291168515_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_typeb_3(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { Type_t * L_2 = ___attributeType0; bool L_3 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_4 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0019: { Exception_t1927440687 * L_5 = FieldBuilder_CreateNotSupportedException_m3999938861(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } } // System.Object System.Reflection.Emit.FieldBuilder::GetValue(System.Object) extern "C" Il2CppObject * FieldBuilder_GetValue_m1323554150 (FieldBuilder_t2784804005 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = FieldBuilder_CreateNotSupportedException_m3999938861(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.FieldBuilder::IsDefined(System.Type,System.Boolean) extern "C" bool FieldBuilder_IsDefined_m2730324893 (FieldBuilder_t2784804005 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = FieldBuilder_CreateNotSupportedException_m3999938861(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Int32 System.Reflection.Emit.FieldBuilder::GetFieldOffset() extern "C" int32_t FieldBuilder_GetFieldOffset_m618194385 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { return 0; } } // System.Void System.Reflection.Emit.FieldBuilder::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo) extern "C" void FieldBuilder_SetValue_m3109503557 (FieldBuilder_t2784804005 * __this, Il2CppObject * ___obj0, Il2CppObject * ___val1, int32_t ___invokeAttr2, Binder_t3404612058 * ___binder3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { { Exception_t1927440687 * L_0 = FieldBuilder_CreateNotSupportedException_m3999938861(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.Emit.UnmanagedMarshal System.Reflection.Emit.FieldBuilder::get_UMarshal() extern "C" UnmanagedMarshal_t4270021860 * FieldBuilder_get_UMarshal_m3138919472 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { UnmanagedMarshal_t4270021860 * L_0 = __this->get_marshal_info_4(); return L_0; } } // System.Exception System.Reflection.Emit.FieldBuilder::CreateNotSupportedException() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4087454587; extern const uint32_t FieldBuilder_CreateNotSupportedException_m3999938861_MetadataUsageId; extern "C" Exception_t1927440687 * FieldBuilder_CreateNotSupportedException_m3999938861 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldBuilder_CreateNotSupportedException_m3999938861_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral4087454587, /*hidden argument*/NULL); return L_0; } } // System.Reflection.Module System.Reflection.Emit.FieldBuilder::get_Module() extern "C" Module_t4282841206 * FieldBuilder_get_Module_m1920701714 (FieldBuilder_t2784804005 * __this, const MethodInfo* method) { { Module_t4282841206 * L_0 = MemberInfo_get_Module_m3957426656(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsSubclassOf(System.Type) extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern const uint32_t GenericTypeParameterBuilder_IsSubclassOf_m563999142_MetadataUsageId; extern "C" bool GenericTypeParameterBuilder_IsSubclassOf_m563999142 (GenericTypeParameterBuilder_t1370236603 * __this, Type_t * ___c0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GenericTypeParameterBuilder_IsSubclassOf_m563999142_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B7_0 = 0; { TypeBuilder_t3308873219 * L_0 = __this->get_tbuilder_8(); NullCheck(L_0); Module_t4282841206 * L_1 = TypeBuilder_get_Module_m1668298460(L_0, /*hidden argument*/NULL); NullCheck(((ModuleBuilder_t4156028127 *)CastclassClass(L_1, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var))); AssemblyBuilder_t1646117627 * L_2 = ((ModuleBuilder_t4156028127 *)CastclassClass(L_1, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var))->get_assemblyb_12(); NullCheck(L_2); bool L_3 = AssemblyBuilder_get_IsCompilerContext_m2864230005(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0026; } } { Exception_t1927440687 * L_4 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0026: { Type_t * L_5 = GenericTypeParameterBuilder_get_BaseType_m101683868(__this, /*hidden argument*/NULL); if (L_5) { goto IL_0033; } } { return (bool)0; } IL_0033: { Type_t * L_6 = GenericTypeParameterBuilder_get_BaseType_m101683868(__this, /*hidden argument*/NULL); Type_t * L_7 = ___c0; if ((((Il2CppObject*)(Type_t *)L_6) == ((Il2CppObject*)(Type_t *)L_7))) { goto IL_004d; } } { Type_t * L_8 = GenericTypeParameterBuilder_get_BaseType_m101683868(__this, /*hidden argument*/NULL); Type_t * L_9 = ___c0; NullCheck(L_8); bool L_10 = VirtFuncInvoker1< bool, Type_t * >::Invoke(38 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_8, L_9); G_B7_0 = ((int32_t)(L_10)); goto IL_004e; } IL_004d: { G_B7_0 = 1; } IL_004e: { return (bool)G_B7_0; } } // System.Reflection.TypeAttributes System.Reflection.Emit.GenericTypeParameterBuilder::GetAttributeFlagsImpl() extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern const uint32_t GenericTypeParameterBuilder_GetAttributeFlagsImpl_m3338182267_MetadataUsageId; extern "C" int32_t GenericTypeParameterBuilder_GetAttributeFlagsImpl_m3338182267 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GenericTypeParameterBuilder_GetAttributeFlagsImpl_m3338182267_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_tbuilder_8(); NullCheck(L_0); Module_t4282841206 * L_1 = TypeBuilder_get_Module_m1668298460(L_0, /*hidden argument*/NULL); NullCheck(((ModuleBuilder_t4156028127 *)CastclassClass(L_1, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var))); AssemblyBuilder_t1646117627 * L_2 = ((ModuleBuilder_t4156028127 *)CastclassClass(L_1, ModuleBuilder_t4156028127_il2cpp_TypeInfo_var))->get_assemblyb_12(); NullCheck(L_2); bool L_3 = AssemblyBuilder_get_IsCompilerContext_m2864230005(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0021; } } { return (int32_t)(1); } IL_0021: { Exception_t1927440687 * L_4 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } } // System.Reflection.ConstructorInfo System.Reflection.Emit.GenericTypeParameterBuilder::GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern "C" ConstructorInfo_t2851816542 * GenericTypeParameterBuilder_GetConstructorImpl_m2310028502 (GenericTypeParameterBuilder_t1370236603 * __this, int32_t ___bindingAttr0, Binder_t3404612058 * ___binder1, int32_t ___callConvention2, TypeU5BU5D_t1664964607* ___types3, ParameterModifierU5BU5D_t963192633* ___modifiers4, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.ConstructorInfo[] System.Reflection.Emit.GenericTypeParameterBuilder::GetConstructors(System.Reflection.BindingFlags) extern "C" ConstructorInfoU5BU5D_t1996683371* GenericTypeParameterBuilder_GetConstructors_m103067670 (GenericTypeParameterBuilder_t1370236603 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.EventInfo System.Reflection.Emit.GenericTypeParameterBuilder::GetEvent(System.String,System.Reflection.BindingFlags) extern "C" EventInfo_t * GenericTypeParameterBuilder_GetEvent_m4210567427 (GenericTypeParameterBuilder_t1370236603 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.FieldInfo System.Reflection.Emit.GenericTypeParameterBuilder::GetField(System.String,System.Reflection.BindingFlags) extern "C" FieldInfo_t * GenericTypeParameterBuilder_GetField_m1135650395 (GenericTypeParameterBuilder_t1370236603 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.FieldInfo[] System.Reflection.Emit.GenericTypeParameterBuilder::GetFields(System.Reflection.BindingFlags) extern "C" FieldInfoU5BU5D_t125053523* GenericTypeParameterBuilder_GetFields_m1855948450 (GenericTypeParameterBuilder_t1370236603 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type[] System.Reflection.Emit.GenericTypeParameterBuilder::GetInterfaces() extern "C" TypeU5BU5D_t1664964607* GenericTypeParameterBuilder_GetInterfaces_m922686350 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.MethodInfo[] System.Reflection.Emit.GenericTypeParameterBuilder::GetMethods(System.Reflection.BindingFlags) extern "C" MethodInfoU5BU5D_t152480188* GenericTypeParameterBuilder_GetMethods_m1243855818 (GenericTypeParameterBuilder_t1370236603 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.MethodInfo System.Reflection.Emit.GenericTypeParameterBuilder::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern "C" MethodInfo_t * GenericTypeParameterBuilder_GetMethodImpl_m528545634 (GenericTypeParameterBuilder_t1370236603 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, int32_t ___callConvention3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.PropertyInfo System.Reflection.Emit.GenericTypeParameterBuilder::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) extern "C" PropertyInfo_t * GenericTypeParameterBuilder_GetPropertyImpl_m3566422383 (GenericTypeParameterBuilder_t1370236603 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, Type_t * ___returnType3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::HasElementTypeImpl() extern "C" bool GenericTypeParameterBuilder_HasElementTypeImpl_m2592272488 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsAssignableFrom(System.Type) extern "C" bool GenericTypeParameterBuilder_IsAssignableFrom_m3874566384 (GenericTypeParameterBuilder_t1370236603 * __this, Type_t * ___c0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsInstanceOfType(System.Object) extern "C" bool GenericTypeParameterBuilder_IsInstanceOfType_m2048682904 (GenericTypeParameterBuilder_t1370236603 * __this, Il2CppObject * ___o0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsArrayImpl() extern "C" bool GenericTypeParameterBuilder_IsArrayImpl_m1786931395 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsByRefImpl() extern "C" bool GenericTypeParameterBuilder_IsByRefImpl_m3339093128 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsPointerImpl() extern "C" bool GenericTypeParameterBuilder_IsPointerImpl_m4265374617 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsPrimitiveImpl() extern "C" bool GenericTypeParameterBuilder_IsPrimitiveImpl_m1198748291 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsValueTypeImpl() extern "C" bool GenericTypeParameterBuilder_IsValueTypeImpl_m20800593 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { int32_t G_B3_0 = 0; { Type_t * L_0 = __this->get_base_type_11(); if (!L_0) { goto IL_001b; } } { Type_t * L_1 = __this->get_base_type_11(); NullCheck(L_1); bool L_2 = Type_get_IsValueType_m1733572463(L_1, /*hidden argument*/NULL); G_B3_0 = ((int32_t)(L_2)); goto IL_001c; } IL_001b: { G_B3_0 = 0; } IL_001c: { return (bool)G_B3_0; } } // System.Object System.Reflection.Emit.GenericTypeParameterBuilder::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) extern "C" Il2CppObject * GenericTypeParameterBuilder_InvokeMember_m1055646245 (GenericTypeParameterBuilder_t1370236603 * __this, String_t* ___name0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, Il2CppObject * ___target3, ObjectU5BU5D_t3614634134* ___args4, ParameterModifierU5BU5D_t963192633* ___modifiers5, CultureInfo_t3500843524 * ___culture6, StringU5BU5D_t1642385972* ___namedParameters7, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::GetElementType() extern "C" Type_t * GenericTypeParameterBuilder_GetElementType_m2702341452 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::get_UnderlyingSystemType() extern "C" Type_t * GenericTypeParameterBuilder_get_UnderlyingSystemType_m200578513 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return __this; } } // System.Reflection.Assembly System.Reflection.Emit.GenericTypeParameterBuilder::get_Assembly() extern "C" Assembly_t4268412390 * GenericTypeParameterBuilder_get_Assembly_m2103587580 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_tbuilder_8(); NullCheck(L_0); Assembly_t4268412390 * L_1 = TypeBuilder_get_Assembly_m492491492(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.Emit.GenericTypeParameterBuilder::get_AssemblyQualifiedName() extern "C" String_t* GenericTypeParameterBuilder_get_AssemblyQualifiedName_m902593295 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (String_t*)NULL; } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::get_BaseType() extern "C" Type_t * GenericTypeParameterBuilder_get_BaseType_m101683868 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_base_type_11(); return L_0; } } // System.String System.Reflection.Emit.GenericTypeParameterBuilder::get_FullName() extern "C" String_t* GenericTypeParameterBuilder_get_FullName_m3508212436 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (String_t*)NULL; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::IsDefined(System.Type,System.Boolean) extern "C" bool GenericTypeParameterBuilder_IsDefined_m1413593919 (GenericTypeParameterBuilder_t1370236603 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object[] System.Reflection.Emit.GenericTypeParameterBuilder::GetCustomAttributes(System.Boolean) extern "C" ObjectU5BU5D_t3614634134* GenericTypeParameterBuilder_GetCustomAttributes_m1330155190 (GenericTypeParameterBuilder_t1370236603 * __this, bool ___inherit0, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object[] System.Reflection.Emit.GenericTypeParameterBuilder::GetCustomAttributes(System.Type,System.Boolean) extern "C" ObjectU5BU5D_t3614634134* GenericTypeParameterBuilder_GetCustomAttributes_m3266536625 (GenericTypeParameterBuilder_t1370236603 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.String System.Reflection.Emit.GenericTypeParameterBuilder::get_Name() extern "C" String_t* GenericTypeParameterBuilder_get_Name_m2640162747 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_10(); return L_0; } } // System.String System.Reflection.Emit.GenericTypeParameterBuilder::get_Namespace() extern "C" String_t* GenericTypeParameterBuilder_get_Namespace_m1776615511 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (String_t*)NULL; } } // System.Reflection.Module System.Reflection.Emit.GenericTypeParameterBuilder::get_Module() extern "C" Module_t4282841206 * GenericTypeParameterBuilder_get_Module_m2427847092 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_tbuilder_8(); NullCheck(L_0); Module_t4282841206 * L_1 = TypeBuilder_get_Module_m1668298460(L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::get_DeclaringType() extern "C" Type_t * GenericTypeParameterBuilder_get_DeclaringType_m1652924692 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { Type_t * G_B3_0 = NULL; { MethodBuilder_t644187984 * L_0 = __this->get_mbuilder_9(); if (!L_0) { goto IL_001b; } } { MethodBuilder_t644187984 * L_1 = __this->get_mbuilder_9(); NullCheck(L_1); Type_t * L_2 = MethodBuilder_get_DeclaringType_m2734207591(L_1, /*hidden argument*/NULL); G_B3_0 = L_2; goto IL_0021; } IL_001b: { TypeBuilder_t3308873219 * L_3 = __this->get_tbuilder_8(); G_B3_0 = ((Type_t *)(L_3)); } IL_0021: { return G_B3_0; } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::get_ReflectedType() extern "C" Type_t * GenericTypeParameterBuilder_get_ReflectedType_m562256091 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { Type_t * L_0 = GenericTypeParameterBuilder_get_DeclaringType_m1652924692(__this, /*hidden argument*/NULL); return L_0; } } // System.RuntimeTypeHandle System.Reflection.Emit.GenericTypeParameterBuilder::get_TypeHandle() extern "C" RuntimeTypeHandle_t2330101084 GenericTypeParameterBuilder_get_TypeHandle_m3293062357 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = GenericTypeParameterBuilder_not_supported_m3784909043(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type[] System.Reflection.Emit.GenericTypeParameterBuilder::GetGenericArguments() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern const uint32_t GenericTypeParameterBuilder_GetGenericArguments_m277381309_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* GenericTypeParameterBuilder_GetGenericArguments_m277381309 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GenericTypeParameterBuilder_GetGenericArguments_m277381309_MetadataUsageId); s_Il2CppMethodInitialized = true; } { InvalidOperationException_t721527559 * L_0 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m102359810(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::GetGenericTypeDefinition() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern const uint32_t GenericTypeParameterBuilder_GetGenericTypeDefinition_m2936287336_MetadataUsageId; extern "C" Type_t * GenericTypeParameterBuilder_GetGenericTypeDefinition_m2936287336 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GenericTypeParameterBuilder_GetGenericTypeDefinition_m2936287336_MetadataUsageId); s_Il2CppMethodInitialized = true; } { InvalidOperationException_t721527559 * L_0 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m102359810(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::get_ContainsGenericParameters() extern "C" bool GenericTypeParameterBuilder_get_ContainsGenericParameters_m1449092549 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)1; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::get_IsGenericParameter() extern "C" bool GenericTypeParameterBuilder_get_IsGenericParameter_m1565478927 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)1; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::get_IsGenericType() extern "C" bool GenericTypeParameterBuilder_get_IsGenericType_m1883522222 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::get_IsGenericTypeDefinition() extern "C" bool GenericTypeParameterBuilder_get_IsGenericTypeDefinition_m2790308279 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Exception System.Reflection.Emit.GenericTypeParameterBuilder::not_supported() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t GenericTypeParameterBuilder_not_supported_m3784909043_MetadataUsageId; extern "C" Exception_t1927440687 * GenericTypeParameterBuilder_not_supported_m3784909043 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GenericTypeParameterBuilder_not_supported_m3784909043_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); return L_0; } } // System.String System.Reflection.Emit.GenericTypeParameterBuilder::ToString() extern "C" String_t* GenericTypeParameterBuilder_ToString_m4223425511 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_10(); return L_0; } } // System.Boolean System.Reflection.Emit.GenericTypeParameterBuilder::Equals(System.Object) extern "C" bool GenericTypeParameterBuilder_Equals_m2498927509 (GenericTypeParameterBuilder_t1370236603 * __this, Il2CppObject * ___o0, const MethodInfo* method) { { Il2CppObject * L_0 = ___o0; bool L_1 = Type_Equals_m1272005660(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Reflection.Emit.GenericTypeParameterBuilder::GetHashCode() extern "C" int32_t GenericTypeParameterBuilder_GetHashCode_m867619899 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { { int32_t L_0 = Type_GetHashCode_m1150382148(__this, /*hidden argument*/NULL); return L_0; } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::MakeByRefType() extern Il2CppClass* ByRefType_t1587086384_il2cpp_TypeInfo_var; extern const uint32_t GenericTypeParameterBuilder_MakeByRefType_m4279657370_MetadataUsageId; extern "C" Type_t * GenericTypeParameterBuilder_MakeByRefType_m4279657370 (GenericTypeParameterBuilder_t1370236603 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GenericTypeParameterBuilder_MakeByRefType_m4279657370_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByRefType_t1587086384 * L_0 = (ByRefType_t1587086384 *)il2cpp_codegen_object_new(ByRefType_t1587086384_il2cpp_TypeInfo_var); ByRefType__ctor_m2068210324(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Type System.Reflection.Emit.GenericTypeParameterBuilder::MakeGenericType(System.Type[]) extern "C" Type_t * GenericTypeParameterBuilder_MakeGenericType_m2955814622 (GenericTypeParameterBuilder_t1370236603 * __this, TypeU5BU5D_t1664964607* ___typeArguments0, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = ___typeArguments0; Type_t * L_1 = Type_MakeGenericType_m2765875033(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Reflection.Emit.ILGenerator::.ctor(System.Reflection.Module,System.Reflection.Emit.TokenGenerator,System.Int32) extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern Il2CppClass* ILTokenInfoU5BU5D_t4103159791_il2cpp_TypeInfo_var; extern const uint32_t ILGenerator__ctor_m3365621387_MetadataUsageId; extern "C" void ILGenerator__ctor_m3365621387 (ILGenerator_t99948092 * __this, Module_t4282841206 * ___m0, Il2CppObject * ___token_gen1, int32_t ___size2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ILGenerator__ctor_m3365621387_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); int32_t L_0 = ___size2; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { ___size2 = ((int32_t)128); } IL_0014: { int32_t L_1 = ___size2; __this->set_code_1(((ByteU5BU5D_t3397334013*)SZArrayNew(ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var, (uint32_t)L_1))); __this->set_token_fixups_6(((ILTokenInfoU5BU5D_t4103159791*)SZArrayNew(ILTokenInfoU5BU5D_t4103159791_il2cpp_TypeInfo_var, (uint32_t)8))); Module_t4282841206 * L_2 = ___m0; __this->set_module_10(L_2); Il2CppObject * L_3 = ___token_gen1; __this->set_token_gen_11(L_3); return; } } // System.Void System.Reflection.Emit.ILGenerator::.cctor() extern const Il2CppType* Void_t1841601450_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* ILGenerator_t99948092_il2cpp_TypeInfo_var; extern const uint32_t ILGenerator__cctor_m3943061018_MetadataUsageId; extern "C" void ILGenerator__cctor_m3943061018 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ILGenerator__cctor_m3943061018_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Void_t1841601450_0_0_0_var), /*hidden argument*/NULL); ((ILGenerator_t99948092_StaticFields*)ILGenerator_t99948092_il2cpp_TypeInfo_var->static_fields)->set_void_type_0(L_0); return; } } // System.Void System.Reflection.Emit.ILGenerator::add_token_fixup(System.Reflection.MemberInfo) extern Il2CppClass* ILTokenInfoU5BU5D_t4103159791_il2cpp_TypeInfo_var; extern const uint32_t ILGenerator_add_token_fixup_m3261621911_MetadataUsageId; extern "C" void ILGenerator_add_token_fixup_m3261621911 (ILGenerator_t99948092 * __this, MemberInfo_t * ___mi0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ILGenerator_add_token_fixup_m3261621911_MetadataUsageId); s_Il2CppMethodInitialized = true; } ILTokenInfoU5BU5D_t4103159791* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = __this->get_num_token_fixups_5(); ILTokenInfoU5BU5D_t4103159791* L_1 = __this->get_token_fixups_6(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length)))))))) { goto IL_0035; } } { int32_t L_2 = __this->get_num_token_fixups_5(); V_0 = ((ILTokenInfoU5BU5D_t4103159791*)SZArrayNew(ILTokenInfoU5BU5D_t4103159791_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)L_2*(int32_t)2)))); ILTokenInfoU5BU5D_t4103159791* L_3 = __this->get_token_fixups_6(); ILTokenInfoU5BU5D_t4103159791* L_4 = V_0; NullCheck((Il2CppArray *)(Il2CppArray *)L_3); Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_3, (Il2CppArray *)(Il2CppArray *)L_4, 0, /*hidden argument*/NULL); ILTokenInfoU5BU5D_t4103159791* L_5 = V_0; __this->set_token_fixups_6(L_5); } IL_0035: { ILTokenInfoU5BU5D_t4103159791* L_6 = __this->get_token_fixups_6(); int32_t L_7 = __this->get_num_token_fixups_5(); NullCheck(L_6); MemberInfo_t * L_8 = ___mi0; ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->set_member_0(L_8); ILTokenInfoU5BU5D_t4103159791* L_9 = __this->get_token_fixups_6(); int32_t L_10 = __this->get_num_token_fixups_5(); int32_t L_11 = L_10; V_1 = L_11; __this->set_num_token_fixups_5(((int32_t)((int32_t)L_11+(int32_t)1))); int32_t L_12 = V_1; NullCheck(L_9); int32_t L_13 = __this->get_code_len_2(); ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->set_code_pos_1(L_13); return; } } // System.Void System.Reflection.Emit.ILGenerator::make_room(System.Int32) extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern const uint32_t ILGenerator_make_room_m373147874_MetadataUsageId; extern "C" void ILGenerator_make_room_m373147874 (ILGenerator_t99948092 * __this, int32_t ___nbytes0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ILGenerator_make_room_m373147874_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_t3397334013* V_0 = NULL; { int32_t L_0 = __this->get_code_len_2(); int32_t L_1 = ___nbytes0; ByteU5BU5D_t3397334013* L_2 = __this->get_code_1(); NullCheck(L_2); if ((((int32_t)((int32_t)((int32_t)L_0+(int32_t)L_1))) >= ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length))))))) { goto IL_0016; } } { return; } IL_0016: { int32_t L_3 = __this->get_code_len_2(); int32_t L_4 = ___nbytes0; V_0 = ((ByteU5BU5D_t3397334013*)SZArrayNew(ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3+(int32_t)L_4))*(int32_t)2))+(int32_t)((int32_t)128))))); ByteU5BU5D_t3397334013* L_5 = __this->get_code_1(); ByteU5BU5D_t3397334013* L_6 = V_0; ByteU5BU5D_t3397334013* L_7 = __this->get_code_1(); NullCheck(L_7); Array_Copy_m3808317496(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_5, 0, (Il2CppArray *)(Il2CppArray *)L_6, 0, (((int32_t)((int32_t)(((Il2CppArray *)L_7)->max_length)))), /*hidden argument*/NULL); ByteU5BU5D_t3397334013* L_8 = V_0; __this->set_code_1(L_8); return; } } // System.Void System.Reflection.Emit.ILGenerator::emit_int(System.Int32) extern "C" void ILGenerator_emit_int_m1061022647 (ILGenerator_t99948092 * __this, int32_t ___val0, const MethodInfo* method) { int32_t V_0 = 0; { ByteU5BU5D_t3397334013* L_0 = __this->get_code_1(); int32_t L_1 = __this->get_code_len_2(); int32_t L_2 = L_1; V_0 = L_2; __this->set_code_len_2(((int32_t)((int32_t)L_2+(int32_t)1))); int32_t L_3 = V_0; int32_t L_4 = ___val0; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)255))))))); ByteU5BU5D_t3397334013* L_5 = __this->get_code_1(); int32_t L_6 = __this->get_code_len_2(); int32_t L_7 = L_6; V_0 = L_7; __this->set_code_len_2(((int32_t)((int32_t)L_7+(int32_t)1))); int32_t L_8 = V_0; int32_t L_9 = ___val0; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_9>>(int32_t)8))&(int32_t)((int32_t)255))))))); ByteU5BU5D_t3397334013* L_10 = __this->get_code_1(); int32_t L_11 = __this->get_code_len_2(); int32_t L_12 = L_11; V_0 = L_12; __this->set_code_len_2(((int32_t)((int32_t)L_12+(int32_t)1))); int32_t L_13 = V_0; int32_t L_14 = ___val0; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_14>>(int32_t)((int32_t)16)))&(int32_t)((int32_t)255))))))); ByteU5BU5D_t3397334013* L_15 = __this->get_code_1(); int32_t L_16 = __this->get_code_len_2(); int32_t L_17 = L_16; V_0 = L_17; __this->set_code_len_2(((int32_t)((int32_t)L_17+(int32_t)1))); int32_t L_18 = V_0; int32_t L_19 = ___val0; NullCheck(L_15); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19>>(int32_t)((int32_t)24)))&(int32_t)((int32_t)255))))))); return; } } // System.Void System.Reflection.Emit.ILGenerator::ll_emit(System.Reflection.Emit.OpCode) extern "C" void ILGenerator_ll_emit_m2087647272 (ILGenerator_t99948092 * __this, OpCode_t2247480392 ___opcode0, const MethodInfo* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = OpCode_get_Size_m481593949((&___opcode0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_002c; } } { ByteU5BU5D_t3397334013* L_1 = __this->get_code_1(); int32_t L_2 = __this->get_code_len_2(); int32_t L_3 = L_2; V_0 = L_3; __this->set_code_len_2(((int32_t)((int32_t)L_3+(int32_t)1))); int32_t L_4 = V_0; uint8_t L_5 = (&___opcode0)->get_op1_0(); NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (uint8_t)L_5); } IL_002c: { ByteU5BU5D_t3397334013* L_6 = __this->get_code_1(); int32_t L_7 = __this->get_code_len_2(); int32_t L_8 = L_7; V_0 = L_8; __this->set_code_len_2(((int32_t)((int32_t)L_8+(int32_t)1))); int32_t L_9 = V_0; uint8_t L_10 = (&___opcode0)->get_op2_1(); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (uint8_t)L_10); int32_t L_11 = OpCode_get_StackBehaviourPush_m1922356444((&___opcode0), /*hidden argument*/NULL); V_1 = L_11; int32_t L_12 = V_1; if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 0) { goto IL_0085; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 1) { goto IL_0098; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 2) { goto IL_0085; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 3) { goto IL_0085; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 4) { goto IL_0085; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 5) { goto IL_0085; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 6) { goto IL_0085; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 7) { goto IL_00ab; } if (((int32_t)((int32_t)L_12-(int32_t)((int32_t)19))) == 8) { goto IL_0085; } } { goto IL_00ab; } IL_0085: { int32_t L_13 = __this->get_cur_stack_4(); __this->set_cur_stack_4(((int32_t)((int32_t)L_13+(int32_t)1))); goto IL_00ab; } IL_0098: { int32_t L_14 = __this->get_cur_stack_4(); __this->set_cur_stack_4(((int32_t)((int32_t)L_14+(int32_t)2))); goto IL_00ab; } IL_00ab: { int32_t L_15 = __this->get_max_stack_3(); int32_t L_16 = __this->get_cur_stack_4(); if ((((int32_t)L_15) >= ((int32_t)L_16))) { goto IL_00c8; } } { int32_t L_17 = __this->get_cur_stack_4(); __this->set_max_stack_3(L_17); } IL_00c8: { int32_t L_18 = OpCode_get_StackBehaviourPop_m3787015663((&___opcode0), /*hidden argument*/NULL); V_1 = L_18; int32_t L_19 = V_1; if (((int32_t)((int32_t)L_19-(int32_t)1)) == 0) { goto IL_014a; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 1) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 2) { goto IL_014a; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 3) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 4) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 5) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 6) { goto IL_0170; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 7) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 8) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 9) { goto IL_014a; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 10) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 11) { goto IL_015d; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 12) { goto IL_0170; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 13) { goto IL_0170; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 14) { goto IL_0170; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 15) { goto IL_0170; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 16) { goto IL_0170; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 17) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 18) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 19) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 20) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 21) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 22) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 23) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 24) { goto IL_0183; } if (((int32_t)((int32_t)L_19-(int32_t)1)) == 25) { goto IL_0145; } } { goto IL_0183; } IL_0145: { goto IL_0183; } IL_014a: { int32_t L_20 = __this->get_cur_stack_4(); __this->set_cur_stack_4(((int32_t)((int32_t)L_20-(int32_t)1))); goto IL_0183; } IL_015d: { int32_t L_21 = __this->get_cur_stack_4(); __this->set_cur_stack_4(((int32_t)((int32_t)L_21-(int32_t)2))); goto IL_0183; } IL_0170: { int32_t L_22 = __this->get_cur_stack_4(); __this->set_cur_stack_4(((int32_t)((int32_t)L_22-(int32_t)3))); goto IL_0183; } IL_0183: { return; } } // System.Void System.Reflection.Emit.ILGenerator::Emit(System.Reflection.Emit.OpCode) extern "C" void ILGenerator_Emit_m531109645 (ILGenerator_t99948092 * __this, OpCode_t2247480392 ___opcode0, const MethodInfo* method) { { ILGenerator_make_room_m373147874(__this, 2, /*hidden argument*/NULL); OpCode_t2247480392 L_0 = ___opcode0; ILGenerator_ll_emit_m2087647272(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.Emit.ILGenerator::Emit(System.Reflection.Emit.OpCode,System.Reflection.ConstructorInfo) extern Il2CppClass* TokenGenerator_t4150817334_il2cpp_TypeInfo_var; extern const uint32_t ILGenerator_Emit_m116557729_MetadataUsageId; extern "C" void ILGenerator_Emit_m116557729 (ILGenerator_t99948092 * __this, OpCode_t2247480392 ___opcode0, ConstructorInfo_t2851816542 * ___con1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ILGenerator_Emit_m116557729_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Il2CppObject * L_0 = __this->get_token_gen_11(); ConstructorInfo_t2851816542 * L_1 = ___con1; NullCheck(L_0); int32_t L_2 = InterfaceFuncInvoker1< int32_t, MemberInfo_t * >::Invoke(0 /* System.Int32 System.Reflection.Emit.TokenGenerator::GetToken(System.Reflection.MemberInfo) */, TokenGenerator_t4150817334_il2cpp_TypeInfo_var, L_0, L_1); V_0 = L_2; ILGenerator_make_room_m373147874(__this, 6, /*hidden argument*/NULL); OpCode_t2247480392 L_3 = ___opcode0; ILGenerator_ll_emit_m2087647272(__this, L_3, /*hidden argument*/NULL); ConstructorInfo_t2851816542 * L_4 = ___con1; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_4); NullCheck(L_5); Module_t4282841206 * L_6 = VirtFuncInvoker0< Module_t4282841206 * >::Invoke(10 /* System.Reflection.Module System.Type::get_Module() */, L_5); Module_t4282841206 * L_7 = __this->get_module_10(); if ((!(((Il2CppObject*)(Module_t4282841206 *)L_6) == ((Il2CppObject*)(Module_t4282841206 *)L_7)))) { goto IL_0038; } } { ConstructorInfo_t2851816542 * L_8 = ___con1; ILGenerator_add_token_fixup_m3261621911(__this, L_8, /*hidden argument*/NULL); } IL_0038: { int32_t L_9 = V_0; ILGenerator_emit_int_m1061022647(__this, L_9, /*hidden argument*/NULL); int32_t L_10 = OpCode_get_StackBehaviourPop_m3787015663((&___opcode0), /*hidden argument*/NULL); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)26))))) { goto IL_0060; } } { int32_t L_11 = __this->get_cur_stack_4(); ConstructorInfo_t2851816542 * L_12 = ___con1; NullCheck(L_12); int32_t L_13 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Reflection.MethodBase::GetParameterCount() */, L_12); __this->set_cur_stack_4(((int32_t)((int32_t)L_11-(int32_t)L_13))); } IL_0060: { return; } } // System.Void System.Reflection.Emit.ILGenerator::label_fixup() extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2950669223; extern const uint32_t ILGenerator_label_fixup_m1325994348_MetadataUsageId; extern "C" void ILGenerator_label_fixup_m1325994348 (ILGenerator_t99948092 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ILGenerator_label_fixup_m1325994348_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { V_0 = 0; goto IL_00e6; } IL_0007: { LabelDataU5BU5D_t4181946617* L_0 = __this->get_labels_7(); LabelFixupU5BU5D_t2807174223* L_1 = __this->get_fixups_8(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_label_idx_2(); NullCheck(L_0); int32_t L_4 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->get_addr_0(); if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0039; } } { ArgumentException_t3259014390 * L_5 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_5, _stringLiteral2950669223, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0039: { LabelDataU5BU5D_t4181946617* L_6 = __this->get_labels_7(); LabelFixupU5BU5D_t2807174223* L_7 = __this->get_fixups_8(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = ((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))->get_label_idx_2(); NullCheck(L_6); int32_t L_10 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->get_addr_0(); LabelFixupU5BU5D_t2807174223* L_11 = __this->get_fixups_8(); int32_t L_12 = V_0; NullCheck(L_11); int32_t L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_pos_1(); LabelFixupU5BU5D_t2807174223* L_14 = __this->get_fixups_8(); int32_t L_15 = V_0; NullCheck(L_14); int32_t L_16 = ((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)))->get_offset_0(); V_1 = ((int32_t)((int32_t)L_10-(int32_t)((int32_t)((int32_t)L_13+(int32_t)L_16)))); LabelFixupU5BU5D_t2807174223* L_17 = __this->get_fixups_8(); int32_t L_18 = V_0; NullCheck(L_17); int32_t L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_offset_0(); if ((!(((uint32_t)L_19) == ((uint32_t)1)))) { goto IL_00b6; } } { ByteU5BU5D_t3397334013* L_20 = __this->get_code_1(); LabelFixupU5BU5D_t2807174223* L_21 = __this->get_fixups_8(); int32_t L_22 = V_0; NullCheck(L_21); int32_t L_23 = ((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->get_pos_1(); int32_t L_24 = V_1; NullCheck(L_20); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (uint8_t)(((int32_t)((uint8_t)(((int8_t)((int8_t)L_24))))))); goto IL_00e2; } IL_00b6: { int32_t L_25 = __this->get_code_len_2(); V_2 = L_25; LabelFixupU5BU5D_t2807174223* L_26 = __this->get_fixups_8(); int32_t L_27 = V_0; NullCheck(L_26); int32_t L_28 = ((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_pos_1(); __this->set_code_len_2(L_28); int32_t L_29 = V_1; ILGenerator_emit_int_m1061022647(__this, L_29, /*hidden argument*/NULL); int32_t L_30 = V_2; __this->set_code_len_2(L_30); } IL_00e2: { int32_t L_31 = V_0; V_0 = ((int32_t)((int32_t)L_31+(int32_t)1)); } IL_00e6: { int32_t L_32 = V_0; int32_t L_33 = __this->get_num_fixups_9(); if ((((int32_t)L_32) < ((int32_t)L_33))) { goto IL_0007; } } { return; } } // System.Int32 System.Reflection.Emit.ILGenerator::Mono_GetCurrentOffset(System.Reflection.Emit.ILGenerator) extern "C" int32_t ILGenerator_Mono_GetCurrentOffset_m3553856682 (Il2CppObject * __this /* static, unused */, ILGenerator_t99948092 * ___ig0, const MethodInfo* method) { { ILGenerator_t99948092 * L_0 = ___ig0; NullCheck(L_0); int32_t L_1 = L_0->get_code_len_2(); return L_1; } } // Conversion methods for marshalling of: System.Reflection.Emit.ILTokenInfo extern "C" void ILTokenInfo_t149559338_marshal_pinvoke(const ILTokenInfo_t149559338& unmarshaled, ILTokenInfo_t149559338_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___member_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'member' of type 'ILTokenInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___member_0Exception); } extern "C" void ILTokenInfo_t149559338_marshal_pinvoke_back(const ILTokenInfo_t149559338_marshaled_pinvoke& marshaled, ILTokenInfo_t149559338& unmarshaled) { Il2CppCodeGenException* ___member_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'member' of type 'ILTokenInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___member_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.Emit.ILTokenInfo extern "C" void ILTokenInfo_t149559338_marshal_pinvoke_cleanup(ILTokenInfo_t149559338_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Reflection.Emit.ILTokenInfo extern "C" void ILTokenInfo_t149559338_marshal_com(const ILTokenInfo_t149559338& unmarshaled, ILTokenInfo_t149559338_marshaled_com& marshaled) { Il2CppCodeGenException* ___member_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'member' of type 'ILTokenInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___member_0Exception); } extern "C" void ILTokenInfo_t149559338_marshal_com_back(const ILTokenInfo_t149559338_marshaled_com& marshaled, ILTokenInfo_t149559338& unmarshaled) { Il2CppCodeGenException* ___member_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'member' of type 'ILTokenInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___member_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.Emit.ILTokenInfo extern "C" void ILTokenInfo_t149559338_marshal_com_cleanup(ILTokenInfo_t149559338_marshaled_com& marshaled) { } // System.Boolean System.Reflection.Emit.MethodBuilder::get_ContainsGenericParameters() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t MethodBuilder_get_ContainsGenericParameters_m138212064_MetadataUsageId; extern "C" bool MethodBuilder_get_ContainsGenericParameters_m138212064 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_get_ContainsGenericParameters_m138212064_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.RuntimeMethodHandle System.Reflection.Emit.MethodBuilder::get_MethodHandle() extern "C" RuntimeMethodHandle_t894824333 MethodBuilder_get_MethodHandle_m3494271250 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { Exception_t1927440687 * L_0 = MethodBuilder_NotSupported_m1885110731(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.Emit.MethodBuilder::get_ReturnType() extern "C" Type_t * MethodBuilder_get_ReturnType_m446668188 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_rtype_0(); return L_0; } } // System.Type System.Reflection.Emit.MethodBuilder::get_ReflectedType() extern "C" Type_t * MethodBuilder_get_ReflectedType_m1320609136 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_7(); return L_0; } } // System.Type System.Reflection.Emit.MethodBuilder::get_DeclaringType() extern "C" Type_t * MethodBuilder_get_DeclaringType_m2734207591 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_7(); return L_0; } } // System.String System.Reflection.Emit.MethodBuilder::get_Name() extern "C" String_t* MethodBuilder_get_Name_m845253610 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_4(); return L_0; } } // System.Reflection.MethodAttributes System.Reflection.Emit.MethodBuilder::get_Attributes() extern "C" int32_t MethodBuilder_get_Attributes_m3678061338 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_attrs_2(); return L_0; } } // System.Reflection.CallingConventions System.Reflection.Emit.MethodBuilder::get_CallingConvention() extern "C" int32_t MethodBuilder_get_CallingConvention_m3885044904 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_call_conv_10(); return L_0; } } // System.Reflection.MethodInfo System.Reflection.Emit.MethodBuilder::GetBaseDefinition() extern "C" MethodInfo_t * MethodBuilder_GetBaseDefinition_m774166361 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { return __this; } } // System.Reflection.ParameterInfo[] System.Reflection.Emit.MethodBuilder::GetParameters() extern Il2CppClass* ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var; extern Il2CppClass* ParameterInfo_t2249040075_il2cpp_TypeInfo_var; extern const uint32_t MethodBuilder_GetParameters_m3436317083_MetadataUsageId; extern "C" ParameterInfoU5BU5D_t2275869610* MethodBuilder_GetParameters_m3436317083 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_GetParameters_m3436317083_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; int32_t V_1 = 0; int32_t G_B7_0 = 0; ParameterInfoU5BU5D_t2275869610* G_B7_1 = NULL; int32_t G_B6_0 = 0; ParameterInfoU5BU5D_t2275869610* G_B6_1 = NULL; ParameterBuilder_t3344728474 * G_B8_0 = NULL; int32_t G_B8_1 = 0; ParameterInfoU5BU5D_t2275869610* G_B8_2 = NULL; { TypeBuilder_t3308873219 * L_0 = __this->get_type_7(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0017; } } { Exception_t1927440687 * L_2 = MethodBuilder_NotSupported_m1885110731(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_0017: { TypeU5BU5D_t1664964607* L_3 = __this->get_parameters_1(); if (L_3) { goto IL_0024; } } { return (ParameterInfoU5BU5D_t2275869610*)NULL; } IL_0024: { TypeU5BU5D_t1664964607* L_4 = __this->get_parameters_1(); NullCheck(L_4); V_0 = ((ParameterInfoU5BU5D_t2275869610*)SZArrayNew(ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))))); V_1 = 0; goto IL_006c; } IL_0039: { ParameterInfoU5BU5D_t2275869610* L_5 = V_0; int32_t L_6 = V_1; ParameterBuilderU5BU5D_t2122994367* L_7 = __this->get_pinfo_8(); G_B6_0 = L_6; G_B6_1 = L_5; if (L_7) { G_B7_0 = L_6; G_B7_1 = L_5; goto IL_004c; } } { G_B8_0 = ((ParameterBuilder_t3344728474 *)(NULL)); G_B8_1 = G_B6_0; G_B8_2 = G_B6_1; goto IL_0056; } IL_004c: { ParameterBuilderU5BU5D_t2122994367* L_8 = __this->get_pinfo_8(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = ((int32_t)((int32_t)L_9+(int32_t)1)); ParameterBuilder_t3344728474 * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); G_B8_0 = L_11; G_B8_1 = G_B7_0; G_B8_2 = G_B7_1; } IL_0056: { TypeU5BU5D_t1664964607* L_12 = __this->get_parameters_1(); int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = L_13; Type_t * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); int32_t L_16 = V_1; ParameterInfo_t2249040075 * L_17 = (ParameterInfo_t2249040075 *)il2cpp_codegen_object_new(ParameterInfo_t2249040075_il2cpp_TypeInfo_var); ParameterInfo__ctor_m2149157062(L_17, G_B8_0, L_15, __this, ((int32_t)((int32_t)L_16+(int32_t)1)), /*hidden argument*/NULL); NullCheck(G_B8_2); ArrayElementTypeCheck (G_B8_2, L_17); (G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (ParameterInfo_t2249040075 *)L_17); int32_t L_18 = V_1; V_1 = ((int32_t)((int32_t)L_18+(int32_t)1)); } IL_006c: { int32_t L_19 = V_1; TypeU5BU5D_t1664964607* L_20 = __this->get_parameters_1(); NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_20)->max_length))))))) { goto IL_0039; } } { ParameterInfoU5BU5D_t2275869610* L_21 = V_0; return L_21; } } // System.Int32 System.Reflection.Emit.MethodBuilder::GetParameterCount() extern "C" int32_t MethodBuilder_GetParameterCount_m467267889 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = __this->get_parameters_1(); if (L_0) { goto IL_000d; } } { return 0; } IL_000d: { TypeU5BU5D_t1664964607* L_1 = __this->get_parameters_1(); NullCheck(L_1); return (((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length)))); } } // System.Object System.Reflection.Emit.MethodBuilder::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern "C" Il2CppObject * MethodBuilder_Invoke_m1874904900 (MethodBuilder_t644187984 * __this, Il2CppObject * ___obj0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, ObjectU5BU5D_t3614634134* ___parameters3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { { Exception_t1927440687 * L_0 = MethodBuilder_NotSupported_m1885110731(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.MethodBuilder::IsDefined(System.Type,System.Boolean) extern "C" bool MethodBuilder_IsDefined_m723964180 (MethodBuilder_t644187984 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { Exception_t1927440687 * L_0 = MethodBuilder_NotSupported_m1885110731(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object[] System.Reflection.Emit.MethodBuilder::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MethodBuilder_GetCustomAttributes_m923430117_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MethodBuilder_GetCustomAttributes_m923430117 (MethodBuilder_t644187984 * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_GetCustomAttributes_m923430117_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_type_7(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { bool L_2 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_3 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Exception_t1927440687 * L_4 = MethodBuilder_NotSupported_m1885110731(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } } // System.Object[] System.Reflection.Emit.MethodBuilder::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MethodBuilder_GetCustomAttributes_m454145582_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MethodBuilder_GetCustomAttributes_m454145582 (MethodBuilder_t644187984 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_GetCustomAttributes_m454145582_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_t3308873219 * L_0 = __this->get_type_7(); NullCheck(L_0); bool L_1 = TypeBuilder_get_is_created_m736553860(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { Type_t * L_2 = ___attributeType0; bool L_3 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_4 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0019: { Exception_t1927440687 * L_5 = MethodBuilder_NotSupported_m1885110731(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } } // System.Void System.Reflection.Emit.MethodBuilder::check_override() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* TypeLoadException_t723359155_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3019672120; extern const uint32_t MethodBuilder_check_override_m3042345804_MetadataUsageId; extern "C" void MethodBuilder_check_override_m3042345804 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_check_override_m3042345804_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MethodInfo_t * L_0 = __this->get_override_method_9(); if (!L_0) { goto IL_0042; } } { MethodInfo_t * L_1 = __this->get_override_method_9(); NullCheck(L_1); bool L_2 = MethodBase_get_IsVirtual_m1107721718(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0042; } } { bool L_3 = MethodBase_get_IsVirtual_m1107721718(__this, /*hidden argument*/NULL); if (L_3) { goto IL_0042; } } { String_t* L_4 = __this->get_name_4(); MethodInfo_t * L_5 = __this->get_override_method_9(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral3019672120, L_4, L_5, /*hidden argument*/NULL); TypeLoadException_t723359155 * L_7 = (TypeLoadException_t723359155 *)il2cpp_codegen_object_new(TypeLoadException_t723359155_il2cpp_TypeInfo_var); TypeLoadException__ctor_m1903359728(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0042: { return; } } // System.Void System.Reflection.Emit.MethodBuilder::fixup() extern Il2CppClass* ILGenerator_t99948092_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1027522002; extern const uint32_t MethodBuilder_fixup_m4217981161_MetadataUsageId; extern "C" void MethodBuilder_fixup_m4217981161 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_fixup_m4217981161_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_attrs_2(); if (((int32_t)((int32_t)L_0&(int32_t)((int32_t)9216)))) { goto IL_0076; } } { int32_t L_1 = __this->get_iattrs_3(); if (((int32_t)((int32_t)L_1&(int32_t)((int32_t)4099)))) { goto IL_0076; } } { ILGenerator_t99948092 * L_2 = __this->get_ilgen_6(); if (!L_2) { goto IL_003d; } } { ILGenerator_t99948092 * L_3 = __this->get_ilgen_6(); IL2CPP_RUNTIME_CLASS_INIT(ILGenerator_t99948092_il2cpp_TypeInfo_var); int32_t L_4 = ILGenerator_Mono_GetCurrentOffset_m3553856682(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0076; } } IL_003d: { ByteU5BU5D_t3397334013* L_5 = __this->get_code_5(); if (!L_5) { goto IL_0055; } } { ByteU5BU5D_t3397334013* L_6 = __this->get_code_5(); NullCheck(L_6); if ((((int32_t)((int32_t)(((Il2CppArray *)L_6)->max_length))))) { goto IL_0076; } } IL_0055: { Type_t * L_7 = MethodBuilder_get_DeclaringType_m2734207591(__this, /*hidden argument*/NULL); NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_7); String_t* L_9 = MethodBuilder_get_Name_m845253610(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_10 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral1027522002, L_8, L_9, /*hidden argument*/NULL); InvalidOperationException_t721527559 * L_11 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0076: { ILGenerator_t99948092 * L_12 = __this->get_ilgen_6(); if (!L_12) { goto IL_008c; } } { ILGenerator_t99948092 * L_13 = __this->get_ilgen_6(); NullCheck(L_13); ILGenerator_label_fixup_m1325994348(L_13, /*hidden argument*/NULL); } IL_008c: { return; } } // System.String System.Reflection.Emit.MethodBuilder::ToString() extern Il2CppClass* StringU5BU5D_t1642385972_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1403619109; extern Il2CppCodeGenString* _stringLiteral2874782298; extern Il2CppCodeGenString* _stringLiteral372029425; extern const uint32_t MethodBuilder_ToString_m2051053888_MetadataUsageId; extern "C" String_t* MethodBuilder_ToString_m2051053888 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_ToString_m2051053888_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringU5BU5D_t1642385972* L_0 = ((StringU5BU5D_t1642385972*)SZArrayNew(StringU5BU5D_t1642385972_il2cpp_TypeInfo_var, (uint32_t)5)); NullCheck(L_0); ArrayElementTypeCheck (L_0, _stringLiteral1403619109); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1403619109); StringU5BU5D_t1642385972* L_1 = L_0; TypeBuilder_t3308873219 * L_2 = __this->get_type_7(); NullCheck(L_2); String_t* L_3 = TypeBuilder_get_Name_m170882803(L_2, /*hidden argument*/NULL); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_3); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_3); StringU5BU5D_t1642385972* L_4 = L_1; NullCheck(L_4); ArrayElementTypeCheck (L_4, _stringLiteral2874782298); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2874782298); StringU5BU5D_t1642385972* L_5 = L_4; String_t* L_6 = __this->get_name_4(); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_6); StringU5BU5D_t1642385972* L_7 = L_5; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral372029425); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral372029425); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_8 = String_Concat_m626692867(NULL /*static, unused*/, L_7, /*hidden argument*/NULL); return L_8; } } // System.Boolean System.Reflection.Emit.MethodBuilder::Equals(System.Object) extern "C" bool MethodBuilder_Equals_m1205580640 (MethodBuilder_t644187984 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { { Il2CppObject * L_0 = ___obj0; bool L_1 = Object_Equals_m753388391(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Reflection.Emit.MethodBuilder::GetHashCode() extern "C" int32_t MethodBuilder_GetHashCode_m1713271764 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_4(); NullCheck(L_0); int32_t L_1 = String_GetHashCode_m931956593(L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Reflection.Emit.MethodBuilder::get_next_table_index(System.Object,System.Int32,System.Boolean) extern "C" int32_t MethodBuilder_get_next_table_index_m683309027 (MethodBuilder_t644187984 * __this, Il2CppObject * ___obj0, int32_t ___table1, bool ___inc2, const MethodInfo* method) { { TypeBuilder_t3308873219 * L_0 = __this->get_type_7(); Il2CppObject * L_1 = ___obj0; int32_t L_2 = ___table1; bool L_3 = ___inc2; NullCheck(L_0); int32_t L_4 = TypeBuilder_get_next_table_index_m1415870184(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Exception System.Reflection.Emit.MethodBuilder::NotSupported() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4087454587; extern const uint32_t MethodBuilder_NotSupported_m1885110731_MetadataUsageId; extern "C" Exception_t1927440687 * MethodBuilder_NotSupported_m1885110731 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_NotSupported_m1885110731_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral4087454587, /*hidden argument*/NULL); return L_0; } } // System.Reflection.MethodInfo System.Reflection.Emit.MethodBuilder::MakeGenericMethod(System.Type[]) extern "C" MethodInfo_t * MethodBuilder_MakeGenericMethod_m303913412 (MethodBuilder_t644187984 * __this, TypeU5BU5D_t1664964607* ___typeArguments0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef MethodInfo_t * (*MethodBuilder_MakeGenericMethod_m303913412_ftn) (MethodBuilder_t644187984 *, TypeU5BU5D_t1664964607*); return ((MethodBuilder_MakeGenericMethod_m303913412_ftn)mscorlib::System::Reflection::Emit::MethodBuilder::MakeGenericMethod) (__this, ___typeArguments0); } // System.Boolean System.Reflection.Emit.MethodBuilder::get_IsGenericMethodDefinition() extern "C" bool MethodBuilder_get_IsGenericMethodDefinition_m4284232991 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_11(); return (bool)((((int32_t)((((Il2CppObject*)(GenericTypeParameterBuilderU5BU5D_t358971386*)L_0) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.Emit.MethodBuilder::get_IsGenericMethod() extern "C" bool MethodBuilder_get_IsGenericMethod_m770496854 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_11(); return (bool)((((int32_t)((((Il2CppObject*)(GenericTypeParameterBuilderU5BU5D_t358971386*)L_0) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Type[] System.Reflection.Emit.MethodBuilder::GetGenericArguments() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern const uint32_t MethodBuilder_GetGenericArguments_m948618404_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* MethodBuilder_GetGenericArguments_m948618404 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBuilder_GetGenericArguments_m948618404_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; int32_t V_1 = 0; { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_11(); if (L_0) { goto IL_0011; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_1 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_1; } IL_0011: { GenericTypeParameterBuilderU5BU5D_t358971386* L_2 = __this->get_generic_params_11(); NullCheck(L_2); V_0 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length)))))); V_1 = 0; goto IL_0035; } IL_0026: { TypeU5BU5D_t1664964607* L_3 = V_0; int32_t L_4 = V_1; GenericTypeParameterBuilderU5BU5D_t358971386* L_5 = __this->get_generic_params_11(); int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = L_6; GenericTypeParameterBuilder_t1370236603 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_8); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (Type_t *)L_8); int32_t L_9 = V_1; V_1 = ((int32_t)((int32_t)L_9+(int32_t)1)); } IL_0035: { int32_t L_10 = V_1; GenericTypeParameterBuilderU5BU5D_t358971386* L_11 = __this->get_generic_params_11(); NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_11)->max_length))))))) { goto IL_0026; } } { TypeU5BU5D_t1664964607* L_12 = V_0; return L_12; } } // System.Reflection.Module System.Reflection.Emit.MethodBuilder::get_Module() extern "C" Module_t4282841206 * MethodBuilder_get_Module_m2867334479 (MethodBuilder_t644187984 * __this, const MethodInfo* method) { { Module_t4282841206 * L_0 = MemberInfo_get_Module_m3957426656(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Reflection.Emit.MethodToken::.ctor(System.Int32) extern "C" void MethodToken__ctor_m3671357474 (MethodToken_t3991686330 * __this, int32_t ___val0, const MethodInfo* method) { { int32_t L_0 = ___val0; __this->set_tokValue_0(L_0); return; } } extern "C" void MethodToken__ctor_m3671357474_AdjustorThunk (Il2CppObject * __this, int32_t ___val0, const MethodInfo* method) { MethodToken_t3991686330 * _thisAdjusted = reinterpret_cast<MethodToken_t3991686330 *>(__this + 1); MethodToken__ctor_m3671357474(_thisAdjusted, ___val0, method); } // System.Void System.Reflection.Emit.MethodToken::.cctor() extern Il2CppClass* MethodToken_t3991686330_il2cpp_TypeInfo_var; extern const uint32_t MethodToken__cctor_m2172944774_MetadataUsageId; extern "C" void MethodToken__cctor_m2172944774 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodToken__cctor_m2172944774_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodToken_t3991686330 V_0; memset(&V_0, 0, sizeof(V_0)); { Initobj (MethodToken_t3991686330_il2cpp_TypeInfo_var, (&V_0)); MethodToken_t3991686330 L_0 = V_0; ((MethodToken_t3991686330_StaticFields*)MethodToken_t3991686330_il2cpp_TypeInfo_var->static_fields)->set_Empty_1(L_0); return; } } // System.Boolean System.Reflection.Emit.MethodToken::Equals(System.Object) extern Il2CppClass* MethodToken_t3991686330_il2cpp_TypeInfo_var; extern const uint32_t MethodToken_Equals_m533761838_MetadataUsageId; extern "C" bool MethodToken_Equals_m533761838 (MethodToken_t3991686330 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodToken_Equals_m533761838_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; MethodToken_t3991686330 V_1; memset(&V_1, 0, sizeof(V_1)); { Il2CppObject * L_0 = ___obj0; V_0 = (bool)((!(((Il2CppObject*)(Il2CppObject *)((Il2CppObject *)IsInstSealed(L_0, MethodToken_t3991686330_il2cpp_TypeInfo_var))) <= ((Il2CppObject*)(Il2CppObject *)NULL)))? 1 : 0); bool L_1 = V_0; if (!L_1) { goto IL_0027; } } { Il2CppObject * L_2 = ___obj0; V_1 = ((*(MethodToken_t3991686330 *)((MethodToken_t3991686330 *)UnBox (L_2, MethodToken_t3991686330_il2cpp_TypeInfo_var)))); int32_t L_3 = __this->get_tokValue_0(); int32_t L_4 = (&V_1)->get_tokValue_0(); V_0 = (bool)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0); } IL_0027: { bool L_5 = V_0; return L_5; } } extern "C" bool MethodToken_Equals_m533761838_AdjustorThunk (Il2CppObject * __this, Il2CppObject * ___obj0, const MethodInfo* method) { MethodToken_t3991686330 * _thisAdjusted = reinterpret_cast<MethodToken_t3991686330 *>(__this + 1); return MethodToken_Equals_m533761838(_thisAdjusted, ___obj0, method); } // System.Int32 System.Reflection.Emit.MethodToken::GetHashCode() extern "C" int32_t MethodToken_GetHashCode_m1405492030 (MethodToken_t3991686330 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_tokValue_0(); return L_0; } } extern "C" int32_t MethodToken_GetHashCode_m1405492030_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { MethodToken_t3991686330 * _thisAdjusted = reinterpret_cast<MethodToken_t3991686330 *>(__this + 1); return MethodToken_GetHashCode_m1405492030(_thisAdjusted, method); } // System.Int32 System.Reflection.Emit.MethodToken::get_Token() extern "C" int32_t MethodToken_get_Token_m3846227497 (MethodToken_t3991686330 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_tokValue_0(); return L_0; } } extern "C" int32_t MethodToken_get_Token_m3846227497_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { MethodToken_t3991686330 * _thisAdjusted = reinterpret_cast<MethodToken_t3991686330 *>(__this + 1); return MethodToken_get_Token_m3846227497(_thisAdjusted, method); } // System.Void System.Reflection.Emit.ModuleBuilder::.cctor() extern Il2CppClass* CharU5BU5D_t1328083999_il2cpp_TypeInfo_var; extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern const uint32_t ModuleBuilder__cctor_m2985766025_MetadataUsageId; extern "C" void ModuleBuilder__cctor_m2985766025 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ModuleBuilder__cctor_m2985766025_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t1328083999* L_0 = ((CharU5BU5D_t1328083999*)SZArrayNew(CharU5BU5D_t1328083999_il2cpp_TypeInfo_var, (uint32_t)3)); NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)38)); CharU5BU5D_t1328083999* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)91)); CharU5BU5D_t1328083999* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppChar)((int32_t)42)); ((ModuleBuilder_t4156028127_StaticFields*)ModuleBuilder_t4156028127_il2cpp_TypeInfo_var->static_fields)->set_type_modifiers_15(L_2); return; } } // System.Int32 System.Reflection.Emit.ModuleBuilder::get_next_table_index(System.Object,System.Int32,System.Boolean) extern Il2CppClass* Int32U5BU5D_t3030399641_il2cpp_TypeInfo_var; extern const uint32_t ModuleBuilder_get_next_table_index_m1552645388_MetadataUsageId; extern "C" int32_t ModuleBuilder_get_next_table_index_m1552645388 (ModuleBuilder_t4156028127 * __this, Il2CppObject * ___obj0, int32_t ___table1, bool ___inc2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ModuleBuilder_get_next_table_index_m1552645388_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { Int32U5BU5D_t3030399641* L_0 = __this->get_table_indexes_13(); if (L_0) { goto IL_003d; } } { __this->set_table_indexes_13(((Int32U5BU5D_t3030399641*)SZArrayNew(Int32U5BU5D_t3030399641_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64)))); V_0 = 0; goto IL_002c; } IL_001f: { Int32U5BU5D_t3030399641* L_1 = __this->get_table_indexes_13(); int32_t L_2 = V_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (int32_t)1); int32_t L_3 = V_0; V_0 = ((int32_t)((int32_t)L_3+(int32_t)1)); } IL_002c: { int32_t L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)((int32_t)64)))) { goto IL_001f; } } { Int32U5BU5D_t3030399641* L_5 = __this->get_table_indexes_13(); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)2); } IL_003d: { bool L_6 = ___inc2; if (!L_6) { goto IL_0058; } } { Int32U5BU5D_t3030399641* L_7 = __this->get_table_indexes_13(); int32_t L_8 = ___table1; NullCheck(L_7); int32_t* L_9 = ((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))); int32_t L_10 = (*((int32_t*)L_9)); V_1 = L_10; *((int32_t*)(L_9)) = (int32_t)((int32_t)((int32_t)L_10+(int32_t)1)); int32_t L_11 = V_1; return L_11; } IL_0058: { Int32U5BU5D_t3030399641* L_12 = __this->get_table_indexes_13(); int32_t L_13 = ___table1; NullCheck(L_12); int32_t L_14 = L_13; int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); return L_15; } } // System.Type[] System.Reflection.Emit.ModuleBuilder::GetTypes() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern const uint32_t ModuleBuilder_GetTypes_m93550753_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* ModuleBuilder_GetTypes_m93550753 (ModuleBuilder_t4156028127 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ModuleBuilder_GetTypes_m93550753_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; TypeU5BU5D_t1664964607* V_1 = NULL; int32_t V_2 = 0; { TypeBuilderU5BU5D_t4254476946* L_0 = __this->get_types_11(); if (L_0) { goto IL_0011; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_1 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_1; } IL_0011: { int32_t L_2 = __this->get_num_types_10(); V_0 = L_2; int32_t L_3 = V_0; V_1 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)L_3)); TypeBuilderU5BU5D_t4254476946* L_4 = __this->get_types_11(); TypeU5BU5D_t1664964607* L_5 = V_1; int32_t L_6 = V_0; Array_Copy_m2363740072(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_4, (Il2CppArray *)(Il2CppArray *)L_5, L_6, /*hidden argument*/NULL); V_2 = 0; goto IL_0059; } IL_0033: { TypeBuilderU5BU5D_t4254476946* L_7 = __this->get_types_11(); int32_t L_8 = V_2; NullCheck(L_7); int32_t L_9 = L_8; TypeBuilder_t3308873219 * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); NullCheck(L_10); bool L_11 = TypeBuilder_get_is_created_m736553860(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0055; } } { TypeU5BU5D_t1664964607* L_12 = V_1; int32_t L_13 = V_2; TypeBuilderU5BU5D_t4254476946* L_14 = __this->get_types_11(); int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; TypeBuilder_t3308873219 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); NullCheck(L_17); Type_t * L_18 = TypeBuilder_CreateType_m4126056124(L_17, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_18); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Type_t *)L_18); } IL_0055: { int32_t L_19 = V_2; V_2 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_0059: { int32_t L_20 = V_2; TypeU5BU5D_t1664964607* L_21 = V_1; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_21)->max_length))))))) { goto IL_0033; } } { TypeU5BU5D_t1664964607* L_22 = V_1; return L_22; } } // System.Int32 System.Reflection.Emit.ModuleBuilder::getToken(System.Reflection.Emit.ModuleBuilder,System.Object) extern "C" int32_t ModuleBuilder_getToken_m972612049 (Il2CppObject * __this /* static, unused */, ModuleBuilder_t4156028127 * ___mb0, Il2CppObject * ___obj1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef int32_t (*ModuleBuilder_getToken_m972612049_ftn) (ModuleBuilder_t4156028127 *, Il2CppObject *); return ((ModuleBuilder_getToken_m972612049_ftn)mscorlib::System::Reflection::Emit::ModuleBuilder::getToken) (___mb0, ___obj1); } // System.Int32 System.Reflection.Emit.ModuleBuilder::GetToken(System.Reflection.MemberInfo) extern Il2CppClass* ModuleBuilder_t4156028127_il2cpp_TypeInfo_var; extern const uint32_t ModuleBuilder_GetToken_m4190668737_MetadataUsageId; extern "C" int32_t ModuleBuilder_GetToken_m4190668737 (ModuleBuilder_t4156028127 * __this, MemberInfo_t * ___member0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ModuleBuilder_GetToken_m4190668737_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MemberInfo_t * L_0 = ___member0; IL2CPP_RUNTIME_CLASS_INIT(ModuleBuilder_t4156028127_il2cpp_TypeInfo_var); int32_t L_1 = ModuleBuilder_getToken_m972612049(NULL /*static, unused*/, __this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Reflection.Emit.ModuleBuilder::RegisterToken(System.Object,System.Int32) extern "C" void ModuleBuilder_RegisterToken_m1388342515 (ModuleBuilder_t4156028127 * __this, Il2CppObject * ___obj0, int32_t ___token1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*ModuleBuilder_RegisterToken_m1388342515_ftn) (ModuleBuilder_t4156028127 *, Il2CppObject *, int32_t); ((ModuleBuilder_RegisterToken_m1388342515_ftn)mscorlib::System::Reflection::Emit::ModuleBuilder::RegisterToken) (__this, ___obj0, ___token1); } // System.Reflection.Emit.TokenGenerator System.Reflection.Emit.ModuleBuilder::GetTokenGenerator() extern Il2CppClass* ModuleBuilderTokenGenerator_t578872653_il2cpp_TypeInfo_var; extern const uint32_t ModuleBuilder_GetTokenGenerator_m4006065550_MetadataUsageId; extern "C" Il2CppObject * ModuleBuilder_GetTokenGenerator_m4006065550 (ModuleBuilder_t4156028127 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ModuleBuilder_GetTokenGenerator_m4006065550_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ModuleBuilderTokenGenerator_t578872653 * L_0 = __this->get_token_gen_14(); if (L_0) { goto IL_0017; } } { ModuleBuilderTokenGenerator_t578872653 * L_1 = (ModuleBuilderTokenGenerator_t578872653 *)il2cpp_codegen_object_new(ModuleBuilderTokenGenerator_t578872653_il2cpp_TypeInfo_var); ModuleBuilderTokenGenerator__ctor_m1041652642(L_1, __this, /*hidden argument*/NULL); __this->set_token_gen_14(L_1); } IL_0017: { ModuleBuilderTokenGenerator_t578872653 * L_2 = __this->get_token_gen_14(); return L_2; } } // System.Void System.Reflection.Emit.ModuleBuilderTokenGenerator::.ctor(System.Reflection.Emit.ModuleBuilder) extern "C" void ModuleBuilderTokenGenerator__ctor_m1041652642 (ModuleBuilderTokenGenerator_t578872653 * __this, ModuleBuilder_t4156028127 * ___mb0, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); ModuleBuilder_t4156028127 * L_0 = ___mb0; __this->set_mb_0(L_0); return; } } // System.Int32 System.Reflection.Emit.ModuleBuilderTokenGenerator::GetToken(System.Reflection.MemberInfo) extern "C" int32_t ModuleBuilderTokenGenerator_GetToken_m3427457873 (ModuleBuilderTokenGenerator_t578872653 * __this, MemberInfo_t * ___member0, const MethodInfo* method) { { ModuleBuilder_t4156028127 * L_0 = __this->get_mb_0(); MemberInfo_t * L_1 = ___member0; NullCheck(L_0); int32_t L_2 = ModuleBuilder_GetToken_m4190668737(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Reflection.Emit.OpCode::.ctor(System.Int32,System.Int32) extern "C" void OpCode__ctor_m3329993003 (OpCode_t2247480392 * __this, int32_t ___p0, int32_t ___q1, const MethodInfo* method) { { int32_t L_0 = ___p0; __this->set_op1_0((((int32_t)((uint8_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)255))))))); int32_t L_1 = ___p0; __this->set_op2_1((((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1>>(int32_t)8))&(int32_t)((int32_t)255))))))); int32_t L_2 = ___p0; __this->set_push_2((((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_2>>(int32_t)((int32_t)16)))&(int32_t)((int32_t)255))))))); int32_t L_3 = ___p0; __this->set_pop_3((((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3>>(int32_t)((int32_t)24)))&(int32_t)((int32_t)255))))))); int32_t L_4 = ___q1; __this->set_size_4((((int32_t)((uint8_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)255))))))); int32_t L_5 = ___q1; __this->set_type_5((((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5>>(int32_t)8))&(int32_t)((int32_t)255))))))); int32_t L_6 = ___q1; __this->set_args_6((((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6>>(int32_t)((int32_t)16)))&(int32_t)((int32_t)255))))))); int32_t L_7 = ___q1; __this->set_flow_7((((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7>>(int32_t)((int32_t)24)))&(int32_t)((int32_t)255))))))); return; } } extern "C" void OpCode__ctor_m3329993003_AdjustorThunk (Il2CppObject * __this, int32_t ___p0, int32_t ___q1, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); OpCode__ctor_m3329993003(_thisAdjusted, ___p0, ___q1, method); } // System.Int32 System.Reflection.Emit.OpCode::GetHashCode() extern "C" int32_t OpCode_GetHashCode_m2974727122 (OpCode_t2247480392 * __this, const MethodInfo* method) { { String_t* L_0 = OpCode_get_Name_m3225695398(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = String_GetHashCode_m931956593(L_0, /*hidden argument*/NULL); return L_1; } } extern "C" int32_t OpCode_GetHashCode_m2974727122_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_GetHashCode_m2974727122(_thisAdjusted, method); } // System.Boolean System.Reflection.Emit.OpCode::Equals(System.Object) extern Il2CppClass* OpCode_t2247480392_il2cpp_TypeInfo_var; extern const uint32_t OpCode_Equals_m3738130494_MetadataUsageId; extern "C" bool OpCode_Equals_m3738130494 (OpCode_t2247480392 * __this, Il2CppObject * ___obj0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OpCode_Equals_m3738130494_MetadataUsageId); s_Il2CppMethodInitialized = true; } OpCode_t2247480392 V_0; memset(&V_0, 0, sizeof(V_0)); int32_t G_B6_0 = 0; { Il2CppObject * L_0 = ___obj0; if (!L_0) { goto IL_0011; } } { Il2CppObject * L_1 = ___obj0; if (((Il2CppObject *)IsInstSealed(L_1, OpCode_t2247480392_il2cpp_TypeInfo_var))) { goto IL_0013; } } IL_0011: { return (bool)0; } IL_0013: { Il2CppObject * L_2 = ___obj0; V_0 = ((*(OpCode_t2247480392 *)((OpCode_t2247480392 *)UnBox (L_2, OpCode_t2247480392_il2cpp_TypeInfo_var)))); uint8_t L_3 = (&V_0)->get_op1_0(); uint8_t L_4 = __this->get_op1_0(); if ((!(((uint32_t)L_3) == ((uint32_t)L_4)))) { goto IL_003d; } } { uint8_t L_5 = (&V_0)->get_op2_1(); uint8_t L_6 = __this->get_op2_1(); G_B6_0 = ((((int32_t)L_5) == ((int32_t)L_6))? 1 : 0); goto IL_003e; } IL_003d: { G_B6_0 = 0; } IL_003e: { return (bool)G_B6_0; } } extern "C" bool OpCode_Equals_m3738130494_AdjustorThunk (Il2CppObject * __this, Il2CppObject * ___obj0, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_Equals_m3738130494(_thisAdjusted, ___obj0, method); } // System.String System.Reflection.Emit.OpCode::ToString() extern "C" String_t* OpCode_ToString_m854294924 (OpCode_t2247480392 * __this, const MethodInfo* method) { { String_t* L_0 = OpCode_get_Name_m3225695398(__this, /*hidden argument*/NULL); return L_0; } } extern "C" String_t* OpCode_ToString_m854294924_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_ToString_m854294924(_thisAdjusted, method); } // System.String System.Reflection.Emit.OpCode::get_Name() extern Il2CppClass* OpCodeNames_t1907134268_il2cpp_TypeInfo_var; extern const uint32_t OpCode_get_Name_m3225695398_MetadataUsageId; extern "C" String_t* OpCode_get_Name_m3225695398 (OpCode_t2247480392 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OpCode_get_Name_m3225695398_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = __this->get_op1_0(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)255))))) { goto IL_001d; } } { IL2CPP_RUNTIME_CLASS_INIT(OpCodeNames_t1907134268_il2cpp_TypeInfo_var); StringU5BU5D_t1642385972* L_1 = ((OpCodeNames_t1907134268_StaticFields*)OpCodeNames_t1907134268_il2cpp_TypeInfo_var->static_fields)->get_names_0(); uint8_t L_2 = __this->get_op2_1(); NullCheck(L_1); uint8_t L_3 = L_2; String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return L_4; } IL_001d: { IL2CPP_RUNTIME_CLASS_INIT(OpCodeNames_t1907134268_il2cpp_TypeInfo_var); StringU5BU5D_t1642385972* L_5 = ((OpCodeNames_t1907134268_StaticFields*)OpCodeNames_t1907134268_il2cpp_TypeInfo_var->static_fields)->get_names_0(); uint8_t L_6 = __this->get_op2_1(); NullCheck(L_5); int32_t L_7 = ((int32_t)((int32_t)((int32_t)256)+(int32_t)L_6)); String_t* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return L_8; } } extern "C" String_t* OpCode_get_Name_m3225695398_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_get_Name_m3225695398(_thisAdjusted, method); } // System.Int32 System.Reflection.Emit.OpCode::get_Size() extern "C" int32_t OpCode_get_Size_m481593949 (OpCode_t2247480392 * __this, const MethodInfo* method) { { uint8_t L_0 = __this->get_size_4(); return L_0; } } extern "C" int32_t OpCode_get_Size_m481593949_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_get_Size_m481593949(_thisAdjusted, method); } // System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::get_StackBehaviourPop() extern "C" int32_t OpCode_get_StackBehaviourPop_m3787015663 (OpCode_t2247480392 * __this, const MethodInfo* method) { { uint8_t L_0 = __this->get_pop_3(); return (int32_t)(L_0); } } extern "C" int32_t OpCode_get_StackBehaviourPop_m3787015663_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_get_StackBehaviourPop_m3787015663(_thisAdjusted, method); } // System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::get_StackBehaviourPush() extern "C" int32_t OpCode_get_StackBehaviourPush_m1922356444 (OpCode_t2247480392 * __this, const MethodInfo* method) { { uint8_t L_0 = __this->get_push_2(); return (int32_t)(L_0); } } extern "C" int32_t OpCode_get_StackBehaviourPush_m1922356444_AdjustorThunk (Il2CppObject * __this, const MethodInfo* method) { OpCode_t2247480392 * _thisAdjusted = reinterpret_cast<OpCode_t2247480392 *>(__this + 1); return OpCode_get_StackBehaviourPush_m1922356444(_thisAdjusted, method); } // System.Void System.Reflection.Emit.OpCodeNames::.cctor() extern Il2CppClass* StringU5BU5D_t1642385972_il2cpp_TypeInfo_var; extern Il2CppClass* OpCodeNames_t1907134268_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1502598669; extern Il2CppCodeGenString* _stringLiteral1185218007; extern Il2CppCodeGenString* _stringLiteral2751713072; extern Il2CppCodeGenString* _stringLiteral2751713071; extern Il2CppCodeGenString* _stringLiteral2751713070; extern Il2CppCodeGenString* _stringLiteral2751713069; extern Il2CppCodeGenString* _stringLiteral264743190; extern Il2CppCodeGenString* _stringLiteral264743191; extern Il2CppCodeGenString* _stringLiteral264743188; extern Il2CppCodeGenString* _stringLiteral264743189; extern Il2CppCodeGenString* _stringLiteral1784784505; extern Il2CppCodeGenString* _stringLiteral1784784504; extern Il2CppCodeGenString* _stringLiteral1784784507; extern Il2CppCodeGenString* _stringLiteral1784784506; extern Il2CppCodeGenString* _stringLiteral2751713005; extern Il2CppCodeGenString* _stringLiteral1100455270; extern Il2CppCodeGenString* _stringLiteral4049510564; extern Il2CppCodeGenString* _stringLiteral264743253; extern Il2CppCodeGenString* _stringLiteral2638390804; extern Il2CppCodeGenString* _stringLiteral1784784442; extern Il2CppCodeGenString* _stringLiteral3082303075; extern Il2CppCodeGenString* _stringLiteral1962649898; extern Il2CppCodeGenString* _stringLiteral980025156; extern Il2CppCodeGenString* _stringLiteral3708908511; extern Il2CppCodeGenString* _stringLiteral2142824570; extern Il2CppCodeGenString* _stringLiteral576740629; extern Il2CppCodeGenString* _stringLiteral2949393624; extern Il2CppCodeGenString* _stringLiteral1383309683; extern Il2CppCodeGenString* _stringLiteral4112193038; extern Il2CppCodeGenString* _stringLiteral2546109097; extern Il2CppCodeGenString* _stringLiteral1336255516; extern Il2CppCodeGenString* _stringLiteral3426583509; extern Il2CppCodeGenString* _stringLiteral3869444298; extern Il2CppCodeGenString* _stringLiteral1900075830; extern Il2CppCodeGenString* _stringLiteral3869444319; extern Il2CppCodeGenString* _stringLiteral1900075851; extern Il2CppCodeGenString* _stringLiteral2309167265; extern Il2CppCodeGenString* _stringLiteral1502598839; extern Il2CppCodeGenString* _stringLiteral2665398215; extern Il2CppCodeGenString* _stringLiteral405904562; extern Il2CppCodeGenString* _stringLiteral593459723; extern Il2CppCodeGenString* _stringLiteral3021628803; extern Il2CppCodeGenString* _stringLiteral2872924125; extern Il2CppCodeGenString* _stringLiteral4155532722; extern Il2CppCodeGenString* _stringLiteral580173191; extern Il2CppCodeGenString* _stringLiteral4249871051; extern Il2CppCodeGenString* _stringLiteral2562826957; extern Il2CppCodeGenString* _stringLiteral2562827420; extern Il2CppCodeGenString* _stringLiteral492701940; extern Il2CppCodeGenString* _stringLiteral492702403; extern Il2CppCodeGenString* _stringLiteral1177873969; extern Il2CppCodeGenString* _stringLiteral1949211150; extern Il2CppCodeGenString* _stringLiteral1949226429; extern Il2CppCodeGenString* _stringLiteral2931642683; extern Il2CppCodeGenString* _stringLiteral2931657962; extern Il2CppCodeGenString* _stringLiteral381169818; extern Il2CppCodeGenString* _stringLiteral3919028385; extern Il2CppCodeGenString* _stringLiteral1197692486; extern Il2CppCodeGenString* _stringLiteral3021628310; extern Il2CppCodeGenString* _stringLiteral1858828876; extern Il2CppCodeGenString* _stringLiteral1858828893; extern Il2CppCodeGenString* _stringLiteral4231481871; extern Il2CppCodeGenString* _stringLiteral4231481888; extern Il2CppCodeGenString* _stringLiteral1023736718; extern Il2CppCodeGenString* _stringLiteral1168705793; extern Il2CppCodeGenString* _stringLiteral1168706256; extern Il2CppCodeGenString* _stringLiteral3187195076; extern Il2CppCodeGenString* _stringLiteral3187195539; extern Il2CppCodeGenString* _stringLiteral2446678658; extern Il2CppCodeGenString* _stringLiteral1126264221; extern Il2CppCodeGenString* _stringLiteral1126264225; extern Il2CppCodeGenString* _stringLiteral1529548748; extern Il2CppCodeGenString* _stringLiteral1529548752; extern Il2CppCodeGenString* _stringLiteral366749334; extern Il2CppCodeGenString* _stringLiteral366749338; extern Il2CppCodeGenString* _stringLiteral2336117802; extern Il2CppCodeGenString* _stringLiteral3255745202; extern Il2CppCodeGenString* _stringLiteral366749343; extern Il2CppCodeGenString* _stringLiteral2336117811; extern Il2CppCodeGenString* _stringLiteral448491076; extern Il2CppCodeGenString* _stringLiteral3365436115; extern Il2CppCodeGenString* _stringLiteral1151034034; extern Il2CppCodeGenString* _stringLiteral1554318561; extern Il2CppCodeGenString* _stringLiteral391519147; extern Il2CppCodeGenString* _stringLiteral2360887615; extern Il2CppCodeGenString* _stringLiteral391519138; extern Il2CppCodeGenString* _stringLiteral2360887606; extern Il2CppCodeGenString* _stringLiteral292744773; extern Il2CppCodeGenString* _stringLiteral2309168132; extern Il2CppCodeGenString* _stringLiteral2309167540; extern Il2CppCodeGenString* _stringLiteral339798803; extern Il2CppCodeGenString* _stringLiteral3236305790; extern Il2CppCodeGenString* _stringLiteral3021628826; extern Il2CppCodeGenString* _stringLiteral3332181807; extern Il2CppCodeGenString* _stringLiteral3068682295; extern Il2CppCodeGenString* _stringLiteral381169821; extern Il2CppCodeGenString* _stringLiteral1502599105; extern Il2CppCodeGenString* _stringLiteral1905883611; extern Il2CppCodeGenString* _stringLiteral1905883589; extern Il2CppCodeGenString* _stringLiteral3155263474; extern Il2CppCodeGenString* _stringLiteral3021628428; extern Il2CppCodeGenString* _stringLiteral1502598673; extern Il2CppCodeGenString* _stringLiteral762051712; extern Il2CppCodeGenString* _stringLiteral762051709; extern Il2CppCodeGenString* _stringLiteral762051707; extern Il2CppCodeGenString* _stringLiteral762051719; extern Il2CppCodeGenString* _stringLiteral2684366008; extern Il2CppCodeGenString* _stringLiteral2684366020; extern Il2CppCodeGenString* _stringLiteral3443880895; extern Il2CppCodeGenString* _stringLiteral3443880907; extern Il2CppCodeGenString* _stringLiteral119238135; extern Il2CppCodeGenString* _stringLiteral2710897270; extern Il2CppCodeGenString* _stringLiteral4182611163; extern Il2CppCodeGenString* _stringLiteral2307351665; extern Il2CppCodeGenString* _stringLiteral2148391703; extern Il2CppCodeGenString* _stringLiteral807095503; extern Il2CppCodeGenString* _stringLiteral1729362418; extern Il2CppCodeGenString* _stringLiteral2993908237; extern Il2CppCodeGenString* _stringLiteral2979673950; extern Il2CppCodeGenString* _stringLiteral2697347422; extern Il2CppCodeGenString* _stringLiteral2663581612; extern Il2CppCodeGenString* _stringLiteral1408556295; extern Il2CppCodeGenString* _stringLiteral627234437; extern Il2CppCodeGenString* _stringLiteral1563015653; extern Il2CppCodeGenString* _stringLiteral3457282118; extern Il2CppCodeGenString* _stringLiteral3082391656; extern Il2CppCodeGenString* _stringLiteral2146264690; extern Il2CppCodeGenString* _stringLiteral330911302; extern Il2CppCodeGenString* _stringLiteral330911141; extern Il2CppCodeGenString* _stringLiteral330910955; extern Il2CppCodeGenString* _stringLiteral330910815; extern Il2CppCodeGenString* _stringLiteral3202370362; extern Il2CppCodeGenString* _stringLiteral3202370201; extern Il2CppCodeGenString* _stringLiteral3202370015; extern Il2CppCodeGenString* _stringLiteral3202369875; extern Il2CppCodeGenString* _stringLiteral1778729099; extern Il2CppCodeGenString* _stringLiteral339994567; extern Il2CppCodeGenString* _stringLiteral1502598545; extern Il2CppCodeGenString* _stringLiteral2477512525; extern Il2CppCodeGenString* _stringLiteral1453727839; extern Il2CppCodeGenString* _stringLiteral1689674280; extern Il2CppCodeGenString* _stringLiteral2559449315; extern Il2CppCodeGenString* _stringLiteral4172587423; extern Il2CppCodeGenString* _stringLiteral2559449314; extern Il2CppCodeGenString* _stringLiteral4172587422; extern Il2CppCodeGenString* _stringLiteral2559449312; extern Il2CppCodeGenString* _stringLiteral4172587420; extern Il2CppCodeGenString* _stringLiteral2559449324; extern Il2CppCodeGenString* _stringLiteral178545620; extern Il2CppCodeGenString* _stringLiteral3769302893; extern Il2CppCodeGenString* _stringLiteral3769302905; extern Il2CppCodeGenString* _stringLiteral1684498374; extern Il2CppCodeGenString* _stringLiteral3073335381; extern Il2CppCodeGenString* _stringLiteral1180572518; extern Il2CppCodeGenString* _stringLiteral1180572519; extern Il2CppCodeGenString* _stringLiteral1180572521; extern Il2CppCodeGenString* _stringLiteral1180572509; extern Il2CppCodeGenString* _stringLiteral3815347542; extern Il2CppCodeGenString* _stringLiteral3815347530; extern Il2CppCodeGenString* _stringLiteral2501047121; extern Il2CppCodeGenString* _stringLiteral4090385577; extern Il2CppCodeGenString* _stringLiteral1314794950; extern Il2CppCodeGenString* _stringLiteral1002339398; extern Il2CppCodeGenString* _stringLiteral782255611; extern Il2CppCodeGenString* _stringLiteral4176545519; extern Il2CppCodeGenString* _stringLiteral782255608; extern Il2CppCodeGenString* _stringLiteral4176545516; extern Il2CppCodeGenString* _stringLiteral782255606; extern Il2CppCodeGenString* _stringLiteral4176545514; extern Il2CppCodeGenString* _stringLiteral782255602; extern Il2CppCodeGenString* _stringLiteral4176545510; extern Il2CppCodeGenString* _stringLiteral3401875426; extern Il2CppCodeGenString* _stringLiteral3514721169; extern Il2CppCodeGenString* _stringLiteral1157131249; extern Il2CppCodeGenString* _stringLiteral3161666159; extern Il2CppCodeGenString* _stringLiteral3443880897; extern Il2CppCodeGenString* _stringLiteral3443880900; extern Il2CppCodeGenString* _stringLiteral3162669967; extern Il2CppCodeGenString* _stringLiteral3715361322; extern Il2CppCodeGenString* _stringLiteral2814683934; extern Il2CppCodeGenString* _stringLiteral4076537830; extern Il2CppCodeGenString* _stringLiteral2716565177; extern Il2CppCodeGenString* _stringLiteral2807062197; extern Il2CppCodeGenString* _stringLiteral3530008064; extern Il2CppCodeGenString* _stringLiteral2807702533; extern Il2CppCodeGenString* _stringLiteral3551139248; extern Il2CppCodeGenString* _stringLiteral876476942; extern Il2CppCodeGenString* _stringLiteral2448513723; extern Il2CppCodeGenString* _stringLiteral3753663670; extern Il2CppCodeGenString* _stringLiteral480825959; extern Il2CppCodeGenString* _stringLiteral1549531859; extern Il2CppCodeGenString* _stringLiteral88067259; extern Il2CppCodeGenString* _stringLiteral88067260; extern Il2CppCodeGenString* _stringLiteral88067257; extern Il2CppCodeGenString* _stringLiteral88067258; extern Il2CppCodeGenString* _stringLiteral88067255; extern Il2CppCodeGenString* _stringLiteral88067256; extern Il2CppCodeGenString* _stringLiteral88067253; extern Il2CppCodeGenString* _stringLiteral1884584617; extern Il2CppCodeGenString* _stringLiteral47382726; extern Il2CppCodeGenString* _stringLiteral3021628343; extern Il2CppCodeGenString* _stringLiteral1858828924; extern Il2CppCodeGenString* _stringLiteral1168707281; extern Il2CppCodeGenString* _stringLiteral4231481919; extern Il2CppCodeGenString* _stringLiteral3187196564; extern Il2CppCodeGenString* _stringLiteral2307351242; extern Il2CppCodeGenString* _stringLiteral1933872749; extern Il2CppCodeGenString* _stringLiteral3470150638; extern Il2CppCodeGenString* _stringLiteral3660249737; extern Il2CppCodeGenString* _stringLiteral2858725215; extern Il2CppCodeGenString* _stringLiteral4229665356; extern Il2CppCodeGenString* _stringLiteral3236762065; extern Il2CppCodeGenString* _stringLiteral2193318831; extern Il2CppCodeGenString* _stringLiteral4185878269; extern Il2CppCodeGenString* _stringLiteral2034147359; extern Il2CppCodeGenString* _stringLiteral3098091945; extern Il2CppCodeGenString* _stringLiteral1186066636; extern Il2CppCodeGenString* _stringLiteral593465470; extern Il2CppCodeGenString* _stringLiteral3094106929; extern Il2CppCodeGenString* _stringLiteral2255081476; extern Il2CppCodeGenString* _stringLiteral1548097516; extern Il2CppCodeGenString* _stringLiteral318169515; extern Il2CppCodeGenString* _stringLiteral2819848329; extern Il2CppCodeGenString* _stringLiteral365513102; extern Il2CppCodeGenString* _stringLiteral4255559471; extern Il2CppCodeGenString* _stringLiteral3626041882; extern const uint32_t OpCodeNames__cctor_m2437275178_MetadataUsageId; extern "C" void OpCodeNames__cctor_m2437275178 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OpCodeNames__cctor_m2437275178_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringU5BU5D_t1642385972* L_0 = ((StringU5BU5D_t1642385972*)SZArrayNew(StringU5BU5D_t1642385972_il2cpp_TypeInfo_var, (uint32_t)((int32_t)304))); NullCheck(L_0); ArrayElementTypeCheck (L_0, _stringLiteral1502598669); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1502598669); StringU5BU5D_t1642385972* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral1185218007); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1185218007); StringU5BU5D_t1642385972* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral2751713072); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2751713072); StringU5BU5D_t1642385972* L_3 = L_2; NullCheck(L_3); ArrayElementTypeCheck (L_3, _stringLiteral2751713071); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral2751713071); StringU5BU5D_t1642385972* L_4 = L_3; NullCheck(L_4); ArrayElementTypeCheck (L_4, _stringLiteral2751713070); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral2751713070); StringU5BU5D_t1642385972* L_5 = L_4; NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral2751713069); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral2751713069); StringU5BU5D_t1642385972* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteral264743190); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral264743190); StringU5BU5D_t1642385972* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral264743191); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral264743191); StringU5BU5D_t1642385972* L_8 = L_7; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral264743188); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral264743188); StringU5BU5D_t1642385972* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral264743189); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral264743189); StringU5BU5D_t1642385972* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral1784784505); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral1784784505); StringU5BU5D_t1642385972* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteral1784784504); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral1784784504); StringU5BU5D_t1642385972* L_12 = L_11; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral1784784507); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral1784784507); StringU5BU5D_t1642385972* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral1784784506); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral1784784506); StringU5BU5D_t1642385972* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral2751713005); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral2751713005); StringU5BU5D_t1642385972* L_15 = L_14; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral1100455270); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteral1100455270); StringU5BU5D_t1642385972* L_16 = L_15; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral4049510564); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteral4049510564); StringU5BU5D_t1642385972* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral264743253); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (String_t*)_stringLiteral264743253); StringU5BU5D_t1642385972* L_18 = L_17; NullCheck(L_18); ArrayElementTypeCheck (L_18, _stringLiteral2638390804); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (String_t*)_stringLiteral2638390804); StringU5BU5D_t1642385972* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral1784784442); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (String_t*)_stringLiteral1784784442); StringU5BU5D_t1642385972* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral3082303075); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (String_t*)_stringLiteral3082303075); StringU5BU5D_t1642385972* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteral1962649898); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (String_t*)_stringLiteral1962649898); StringU5BU5D_t1642385972* L_22 = L_21; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteral980025156); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (String_t*)_stringLiteral980025156); StringU5BU5D_t1642385972* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral3708908511); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (String_t*)_stringLiteral3708908511); StringU5BU5D_t1642385972* L_24 = L_23; NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteral2142824570); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (String_t*)_stringLiteral2142824570); StringU5BU5D_t1642385972* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral576740629); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (String_t*)_stringLiteral576740629); StringU5BU5D_t1642385972* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral2949393624); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (String_t*)_stringLiteral2949393624); StringU5BU5D_t1642385972* L_27 = L_26; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral1383309683); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (String_t*)_stringLiteral1383309683); StringU5BU5D_t1642385972* L_28 = L_27; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral4112193038); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (String_t*)_stringLiteral4112193038); StringU5BU5D_t1642385972* L_29 = L_28; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteral2546109097); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (String_t*)_stringLiteral2546109097); StringU5BU5D_t1642385972* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral1336255516); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (String_t*)_stringLiteral1336255516); StringU5BU5D_t1642385972* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteral3426583509); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (String_t*)_stringLiteral3426583509); StringU5BU5D_t1642385972* L_32 = L_31; NullCheck(L_32); ArrayElementTypeCheck (L_32, _stringLiteral3869444298); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (String_t*)_stringLiteral3869444298); StringU5BU5D_t1642385972* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, _stringLiteral1900075830); (L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (String_t*)_stringLiteral1900075830); StringU5BU5D_t1642385972* L_34 = L_33; NullCheck(L_34); ArrayElementTypeCheck (L_34, _stringLiteral3869444319); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)34)), (String_t*)_stringLiteral3869444319); StringU5BU5D_t1642385972* L_35 = L_34; NullCheck(L_35); ArrayElementTypeCheck (L_35, _stringLiteral1900075851); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)35)), (String_t*)_stringLiteral1900075851); StringU5BU5D_t1642385972* L_36 = L_35; NullCheck(L_36); ArrayElementTypeCheck (L_36, _stringLiteral2309167265); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (String_t*)_stringLiteral2309167265); StringU5BU5D_t1642385972* L_37 = L_36; NullCheck(L_37); ArrayElementTypeCheck (L_37, _stringLiteral1502598839); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (String_t*)_stringLiteral1502598839); StringU5BU5D_t1642385972* L_38 = L_37; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteral2665398215); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (String_t*)_stringLiteral2665398215); StringU5BU5D_t1642385972* L_39 = L_38; NullCheck(L_39); ArrayElementTypeCheck (L_39, _stringLiteral405904562); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (String_t*)_stringLiteral405904562); StringU5BU5D_t1642385972* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, _stringLiteral593459723); (L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (String_t*)_stringLiteral593459723); StringU5BU5D_t1642385972* L_41 = L_40; NullCheck(L_41); ArrayElementTypeCheck (L_41, _stringLiteral3021628803); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)42)), (String_t*)_stringLiteral3021628803); StringU5BU5D_t1642385972* L_42 = L_41; NullCheck(L_42); ArrayElementTypeCheck (L_42, _stringLiteral2872924125); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)43)), (String_t*)_stringLiteral2872924125); StringU5BU5D_t1642385972* L_43 = L_42; NullCheck(L_43); ArrayElementTypeCheck (L_43, _stringLiteral4155532722); (L_43)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (String_t*)_stringLiteral4155532722); StringU5BU5D_t1642385972* L_44 = L_43; NullCheck(L_44); ArrayElementTypeCheck (L_44, _stringLiteral580173191); (L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (String_t*)_stringLiteral580173191); StringU5BU5D_t1642385972* L_45 = L_44; NullCheck(L_45); ArrayElementTypeCheck (L_45, _stringLiteral4249871051); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (String_t*)_stringLiteral4249871051); StringU5BU5D_t1642385972* L_46 = L_45; NullCheck(L_46); ArrayElementTypeCheck (L_46, _stringLiteral2562826957); (L_46)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (String_t*)_stringLiteral2562826957); StringU5BU5D_t1642385972* L_47 = L_46; NullCheck(L_47); ArrayElementTypeCheck (L_47, _stringLiteral2562827420); (L_47)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (String_t*)_stringLiteral2562827420); StringU5BU5D_t1642385972* L_48 = L_47; NullCheck(L_48); ArrayElementTypeCheck (L_48, _stringLiteral492701940); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (String_t*)_stringLiteral492701940); StringU5BU5D_t1642385972* L_49 = L_48; NullCheck(L_49); ArrayElementTypeCheck (L_49, _stringLiteral492702403); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)50)), (String_t*)_stringLiteral492702403); StringU5BU5D_t1642385972* L_50 = L_49; NullCheck(L_50); ArrayElementTypeCheck (L_50, _stringLiteral1177873969); (L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)51)), (String_t*)_stringLiteral1177873969); StringU5BU5D_t1642385972* L_51 = L_50; NullCheck(L_51); ArrayElementTypeCheck (L_51, _stringLiteral1949211150); (L_51)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)52)), (String_t*)_stringLiteral1949211150); StringU5BU5D_t1642385972* L_52 = L_51; NullCheck(L_52); ArrayElementTypeCheck (L_52, _stringLiteral1949226429); (L_52)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)53)), (String_t*)_stringLiteral1949226429); StringU5BU5D_t1642385972* L_53 = L_52; NullCheck(L_53); ArrayElementTypeCheck (L_53, _stringLiteral2931642683); (L_53)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)54)), (String_t*)_stringLiteral2931642683); StringU5BU5D_t1642385972* L_54 = L_53; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteral2931657962); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)55)), (String_t*)_stringLiteral2931657962); StringU5BU5D_t1642385972* L_55 = L_54; NullCheck(L_55); ArrayElementTypeCheck (L_55, _stringLiteral381169818); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)56)), (String_t*)_stringLiteral381169818); StringU5BU5D_t1642385972* L_56 = L_55; NullCheck(L_56); ArrayElementTypeCheck (L_56, _stringLiteral3919028385); (L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)57)), (String_t*)_stringLiteral3919028385); StringU5BU5D_t1642385972* L_57 = L_56; NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteral1197692486); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)58)), (String_t*)_stringLiteral1197692486); StringU5BU5D_t1642385972* L_58 = L_57; NullCheck(L_58); ArrayElementTypeCheck (L_58, _stringLiteral3021628310); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)59)), (String_t*)_stringLiteral3021628310); StringU5BU5D_t1642385972* L_59 = L_58; NullCheck(L_59); ArrayElementTypeCheck (L_59, _stringLiteral1858828876); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)60)), (String_t*)_stringLiteral1858828876); StringU5BU5D_t1642385972* L_60 = L_59; NullCheck(L_60); ArrayElementTypeCheck (L_60, _stringLiteral1858828893); (L_60)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)61)), (String_t*)_stringLiteral1858828893); StringU5BU5D_t1642385972* L_61 = L_60; NullCheck(L_61); ArrayElementTypeCheck (L_61, _stringLiteral4231481871); (L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)62)), (String_t*)_stringLiteral4231481871); StringU5BU5D_t1642385972* L_62 = L_61; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral4231481888); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)63)), (String_t*)_stringLiteral4231481888); StringU5BU5D_t1642385972* L_63 = L_62; NullCheck(L_63); ArrayElementTypeCheck (L_63, _stringLiteral1023736718); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)64)), (String_t*)_stringLiteral1023736718); StringU5BU5D_t1642385972* L_64 = L_63; NullCheck(L_64); ArrayElementTypeCheck (L_64, _stringLiteral1168705793); (L_64)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)65)), (String_t*)_stringLiteral1168705793); StringU5BU5D_t1642385972* L_65 = L_64; NullCheck(L_65); ArrayElementTypeCheck (L_65, _stringLiteral1168706256); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)66)), (String_t*)_stringLiteral1168706256); StringU5BU5D_t1642385972* L_66 = L_65; NullCheck(L_66); ArrayElementTypeCheck (L_66, _stringLiteral3187195076); (L_66)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)67)), (String_t*)_stringLiteral3187195076); StringU5BU5D_t1642385972* L_67 = L_66; NullCheck(L_67); ArrayElementTypeCheck (L_67, _stringLiteral3187195539); (L_67)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)68)), (String_t*)_stringLiteral3187195539); StringU5BU5D_t1642385972* L_68 = L_67; NullCheck(L_68); ArrayElementTypeCheck (L_68, _stringLiteral2446678658); (L_68)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)69)), (String_t*)_stringLiteral2446678658); StringU5BU5D_t1642385972* L_69 = L_68; NullCheck(L_69); ArrayElementTypeCheck (L_69, _stringLiteral1126264221); (L_69)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)70)), (String_t*)_stringLiteral1126264221); StringU5BU5D_t1642385972* L_70 = L_69; NullCheck(L_70); ArrayElementTypeCheck (L_70, _stringLiteral1126264225); (L_70)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)71)), (String_t*)_stringLiteral1126264225); StringU5BU5D_t1642385972* L_71 = L_70; NullCheck(L_71); ArrayElementTypeCheck (L_71, _stringLiteral1529548748); (L_71)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)72)), (String_t*)_stringLiteral1529548748); StringU5BU5D_t1642385972* L_72 = L_71; NullCheck(L_72); ArrayElementTypeCheck (L_72, _stringLiteral1529548752); (L_72)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)73)), (String_t*)_stringLiteral1529548752); StringU5BU5D_t1642385972* L_73 = L_72; NullCheck(L_73); ArrayElementTypeCheck (L_73, _stringLiteral366749334); (L_73)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)74)), (String_t*)_stringLiteral366749334); StringU5BU5D_t1642385972* L_74 = L_73; NullCheck(L_74); ArrayElementTypeCheck (L_74, _stringLiteral366749338); (L_74)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)75)), (String_t*)_stringLiteral366749338); StringU5BU5D_t1642385972* L_75 = L_74; NullCheck(L_75); ArrayElementTypeCheck (L_75, _stringLiteral2336117802); (L_75)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)76)), (String_t*)_stringLiteral2336117802); StringU5BU5D_t1642385972* L_76 = L_75; NullCheck(L_76); ArrayElementTypeCheck (L_76, _stringLiteral3255745202); (L_76)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)77)), (String_t*)_stringLiteral3255745202); StringU5BU5D_t1642385972* L_77 = L_76; NullCheck(L_77); ArrayElementTypeCheck (L_77, _stringLiteral366749343); (L_77)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)78)), (String_t*)_stringLiteral366749343); StringU5BU5D_t1642385972* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteral2336117811); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)79)), (String_t*)_stringLiteral2336117811); StringU5BU5D_t1642385972* L_79 = L_78; NullCheck(L_79); ArrayElementTypeCheck (L_79, _stringLiteral448491076); (L_79)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)80)), (String_t*)_stringLiteral448491076); StringU5BU5D_t1642385972* L_80 = L_79; NullCheck(L_80); ArrayElementTypeCheck (L_80, _stringLiteral3365436115); (L_80)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)81)), (String_t*)_stringLiteral3365436115); StringU5BU5D_t1642385972* L_81 = L_80; NullCheck(L_81); ArrayElementTypeCheck (L_81, _stringLiteral1151034034); (L_81)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)82)), (String_t*)_stringLiteral1151034034); StringU5BU5D_t1642385972* L_82 = L_81; NullCheck(L_82); ArrayElementTypeCheck (L_82, _stringLiteral1554318561); (L_82)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)83)), (String_t*)_stringLiteral1554318561); StringU5BU5D_t1642385972* L_83 = L_82; NullCheck(L_83); ArrayElementTypeCheck (L_83, _stringLiteral391519147); (L_83)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)84)), (String_t*)_stringLiteral391519147); StringU5BU5D_t1642385972* L_84 = L_83; NullCheck(L_84); ArrayElementTypeCheck (L_84, _stringLiteral2360887615); (L_84)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)85)), (String_t*)_stringLiteral2360887615); StringU5BU5D_t1642385972* L_85 = L_84; NullCheck(L_85); ArrayElementTypeCheck (L_85, _stringLiteral391519138); (L_85)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)86)), (String_t*)_stringLiteral391519138); StringU5BU5D_t1642385972* L_86 = L_85; NullCheck(L_86); ArrayElementTypeCheck (L_86, _stringLiteral2360887606); (L_86)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)87)), (String_t*)_stringLiteral2360887606); StringU5BU5D_t1642385972* L_87 = L_86; NullCheck(L_87); ArrayElementTypeCheck (L_87, _stringLiteral292744773); (L_87)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)88)), (String_t*)_stringLiteral292744773); StringU5BU5D_t1642385972* L_88 = L_87; NullCheck(L_88); ArrayElementTypeCheck (L_88, _stringLiteral2309168132); (L_88)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)89)), (String_t*)_stringLiteral2309168132); StringU5BU5D_t1642385972* L_89 = L_88; NullCheck(L_89); ArrayElementTypeCheck (L_89, _stringLiteral2309167540); (L_89)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)90)), (String_t*)_stringLiteral2309167540); StringU5BU5D_t1642385972* L_90 = L_89; NullCheck(L_90); ArrayElementTypeCheck (L_90, _stringLiteral339798803); (L_90)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)91)), (String_t*)_stringLiteral339798803); StringU5BU5D_t1642385972* L_91 = L_90; NullCheck(L_91); ArrayElementTypeCheck (L_91, _stringLiteral3236305790); (L_91)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)92)), (String_t*)_stringLiteral3236305790); StringU5BU5D_t1642385972* L_92 = L_91; NullCheck(L_92); ArrayElementTypeCheck (L_92, _stringLiteral3021628826); (L_92)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)93)), (String_t*)_stringLiteral3021628826); StringU5BU5D_t1642385972* L_93 = L_92; NullCheck(L_93); ArrayElementTypeCheck (L_93, _stringLiteral3332181807); (L_93)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)94)), (String_t*)_stringLiteral3332181807); StringU5BU5D_t1642385972* L_94 = L_93; NullCheck(L_94); ArrayElementTypeCheck (L_94, _stringLiteral3068682295); (L_94)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)95)), (String_t*)_stringLiteral3068682295); StringU5BU5D_t1642385972* L_95 = L_94; NullCheck(L_95); ArrayElementTypeCheck (L_95, _stringLiteral381169821); (L_95)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)96)), (String_t*)_stringLiteral381169821); StringU5BU5D_t1642385972* L_96 = L_95; NullCheck(L_96); ArrayElementTypeCheck (L_96, _stringLiteral1502599105); (L_96)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)97)), (String_t*)_stringLiteral1502599105); StringU5BU5D_t1642385972* L_97 = L_96; NullCheck(L_97); ArrayElementTypeCheck (L_97, _stringLiteral1905883611); (L_97)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)98)), (String_t*)_stringLiteral1905883611); StringU5BU5D_t1642385972* L_98 = L_97; NullCheck(L_98); ArrayElementTypeCheck (L_98, _stringLiteral1905883589); (L_98)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)99)), (String_t*)_stringLiteral1905883589); StringU5BU5D_t1642385972* L_99 = L_98; NullCheck(L_99); ArrayElementTypeCheck (L_99, _stringLiteral3155263474); (L_99)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)100)), (String_t*)_stringLiteral3155263474); StringU5BU5D_t1642385972* L_100 = L_99; NullCheck(L_100); ArrayElementTypeCheck (L_100, _stringLiteral3021628428); (L_100)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)101)), (String_t*)_stringLiteral3021628428); StringU5BU5D_t1642385972* L_101 = L_100; NullCheck(L_101); ArrayElementTypeCheck (L_101, _stringLiteral1502598673); (L_101)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)102)), (String_t*)_stringLiteral1502598673); StringU5BU5D_t1642385972* L_102 = L_101; NullCheck(L_102); ArrayElementTypeCheck (L_102, _stringLiteral762051712); (L_102)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)103)), (String_t*)_stringLiteral762051712); StringU5BU5D_t1642385972* L_103 = L_102; NullCheck(L_103); ArrayElementTypeCheck (L_103, _stringLiteral762051709); (L_103)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)104)), (String_t*)_stringLiteral762051709); StringU5BU5D_t1642385972* L_104 = L_103; NullCheck(L_104); ArrayElementTypeCheck (L_104, _stringLiteral762051707); (L_104)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)105)), (String_t*)_stringLiteral762051707); StringU5BU5D_t1642385972* L_105 = L_104; NullCheck(L_105); ArrayElementTypeCheck (L_105, _stringLiteral762051719); (L_105)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)106)), (String_t*)_stringLiteral762051719); StringU5BU5D_t1642385972* L_106 = L_105; NullCheck(L_106); ArrayElementTypeCheck (L_106, _stringLiteral2684366008); (L_106)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)107)), (String_t*)_stringLiteral2684366008); StringU5BU5D_t1642385972* L_107 = L_106; NullCheck(L_107); ArrayElementTypeCheck (L_107, _stringLiteral2684366020); (L_107)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)108)), (String_t*)_stringLiteral2684366020); StringU5BU5D_t1642385972* L_108 = L_107; NullCheck(L_108); ArrayElementTypeCheck (L_108, _stringLiteral3443880895); (L_108)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)109)), (String_t*)_stringLiteral3443880895); StringU5BU5D_t1642385972* L_109 = L_108; NullCheck(L_109); ArrayElementTypeCheck (L_109, _stringLiteral3443880907); (L_109)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)110)), (String_t*)_stringLiteral3443880907); StringU5BU5D_t1642385972* L_110 = L_109; NullCheck(L_110); ArrayElementTypeCheck (L_110, _stringLiteral119238135); (L_110)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)111)), (String_t*)_stringLiteral119238135); StringU5BU5D_t1642385972* L_111 = L_110; NullCheck(L_111); ArrayElementTypeCheck (L_111, _stringLiteral2710897270); (L_111)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)112)), (String_t*)_stringLiteral2710897270); StringU5BU5D_t1642385972* L_112 = L_111; NullCheck(L_112); ArrayElementTypeCheck (L_112, _stringLiteral4182611163); (L_112)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)113)), (String_t*)_stringLiteral4182611163); StringU5BU5D_t1642385972* L_113 = L_112; NullCheck(L_113); ArrayElementTypeCheck (L_113, _stringLiteral2307351665); (L_113)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)114)), (String_t*)_stringLiteral2307351665); StringU5BU5D_t1642385972* L_114 = L_113; NullCheck(L_114); ArrayElementTypeCheck (L_114, _stringLiteral2148391703); (L_114)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)115)), (String_t*)_stringLiteral2148391703); StringU5BU5D_t1642385972* L_115 = L_114; NullCheck(L_115); ArrayElementTypeCheck (L_115, _stringLiteral807095503); (L_115)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)116)), (String_t*)_stringLiteral807095503); StringU5BU5D_t1642385972* L_116 = L_115; NullCheck(L_116); ArrayElementTypeCheck (L_116, _stringLiteral1729362418); (L_116)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)117)), (String_t*)_stringLiteral1729362418); StringU5BU5D_t1642385972* L_117 = L_116; NullCheck(L_117); ArrayElementTypeCheck (L_117, _stringLiteral2993908237); (L_117)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)118)), (String_t*)_stringLiteral2993908237); StringU5BU5D_t1642385972* L_118 = L_117; NullCheck(L_118); ArrayElementTypeCheck (L_118, _stringLiteral2979673950); (L_118)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)121)), (String_t*)_stringLiteral2979673950); StringU5BU5D_t1642385972* L_119 = L_118; NullCheck(L_119); ArrayElementTypeCheck (L_119, _stringLiteral2697347422); (L_119)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)122)), (String_t*)_stringLiteral2697347422); StringU5BU5D_t1642385972* L_120 = L_119; NullCheck(L_120); ArrayElementTypeCheck (L_120, _stringLiteral2663581612); (L_120)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)123)), (String_t*)_stringLiteral2663581612); StringU5BU5D_t1642385972* L_121 = L_120; NullCheck(L_121); ArrayElementTypeCheck (L_121, _stringLiteral1408556295); (L_121)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)124)), (String_t*)_stringLiteral1408556295); StringU5BU5D_t1642385972* L_122 = L_121; NullCheck(L_122); ArrayElementTypeCheck (L_122, _stringLiteral627234437); (L_122)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)125)), (String_t*)_stringLiteral627234437); StringU5BU5D_t1642385972* L_123 = L_122; NullCheck(L_123); ArrayElementTypeCheck (L_123, _stringLiteral1563015653); (L_123)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)126)), (String_t*)_stringLiteral1563015653); StringU5BU5D_t1642385972* L_124 = L_123; NullCheck(L_124); ArrayElementTypeCheck (L_124, _stringLiteral3457282118); (L_124)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)127)), (String_t*)_stringLiteral3457282118); StringU5BU5D_t1642385972* L_125 = L_124; NullCheck(L_125); ArrayElementTypeCheck (L_125, _stringLiteral3082391656); (L_125)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)128)), (String_t*)_stringLiteral3082391656); StringU5BU5D_t1642385972* L_126 = L_125; NullCheck(L_126); ArrayElementTypeCheck (L_126, _stringLiteral2146264690); (L_126)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)129)), (String_t*)_stringLiteral2146264690); StringU5BU5D_t1642385972* L_127 = L_126; NullCheck(L_127); ArrayElementTypeCheck (L_127, _stringLiteral330911302); (L_127)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)130)), (String_t*)_stringLiteral330911302); StringU5BU5D_t1642385972* L_128 = L_127; NullCheck(L_128); ArrayElementTypeCheck (L_128, _stringLiteral330911141); (L_128)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)131)), (String_t*)_stringLiteral330911141); StringU5BU5D_t1642385972* L_129 = L_128; NullCheck(L_129); ArrayElementTypeCheck (L_129, _stringLiteral330910955); (L_129)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)132)), (String_t*)_stringLiteral330910955); StringU5BU5D_t1642385972* L_130 = L_129; NullCheck(L_130); ArrayElementTypeCheck (L_130, _stringLiteral330910815); (L_130)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)133)), (String_t*)_stringLiteral330910815); StringU5BU5D_t1642385972* L_131 = L_130; NullCheck(L_131); ArrayElementTypeCheck (L_131, _stringLiteral3202370362); (L_131)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)134)), (String_t*)_stringLiteral3202370362); StringU5BU5D_t1642385972* L_132 = L_131; NullCheck(L_132); ArrayElementTypeCheck (L_132, _stringLiteral3202370201); (L_132)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)135)), (String_t*)_stringLiteral3202370201); StringU5BU5D_t1642385972* L_133 = L_132; NullCheck(L_133); ArrayElementTypeCheck (L_133, _stringLiteral3202370015); (L_133)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)136)), (String_t*)_stringLiteral3202370015); StringU5BU5D_t1642385972* L_134 = L_133; NullCheck(L_134); ArrayElementTypeCheck (L_134, _stringLiteral3202369875); (L_134)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)137)), (String_t*)_stringLiteral3202369875); StringU5BU5D_t1642385972* L_135 = L_134; NullCheck(L_135); ArrayElementTypeCheck (L_135, _stringLiteral1778729099); (L_135)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)138)), (String_t*)_stringLiteral1778729099); StringU5BU5D_t1642385972* L_136 = L_135; NullCheck(L_136); ArrayElementTypeCheck (L_136, _stringLiteral339994567); (L_136)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)139)), (String_t*)_stringLiteral339994567); StringU5BU5D_t1642385972* L_137 = L_136; NullCheck(L_137); ArrayElementTypeCheck (L_137, _stringLiteral1502598545); (L_137)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)140)), (String_t*)_stringLiteral1502598545); StringU5BU5D_t1642385972* L_138 = L_137; NullCheck(L_138); ArrayElementTypeCheck (L_138, _stringLiteral2477512525); (L_138)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)141)), (String_t*)_stringLiteral2477512525); StringU5BU5D_t1642385972* L_139 = L_138; NullCheck(L_139); ArrayElementTypeCheck (L_139, _stringLiteral1453727839); (L_139)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)142)), (String_t*)_stringLiteral1453727839); StringU5BU5D_t1642385972* L_140 = L_139; NullCheck(L_140); ArrayElementTypeCheck (L_140, _stringLiteral1689674280); (L_140)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)143)), (String_t*)_stringLiteral1689674280); StringU5BU5D_t1642385972* L_141 = L_140; NullCheck(L_141); ArrayElementTypeCheck (L_141, _stringLiteral2559449315); (L_141)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)144)), (String_t*)_stringLiteral2559449315); StringU5BU5D_t1642385972* L_142 = L_141; NullCheck(L_142); ArrayElementTypeCheck (L_142, _stringLiteral4172587423); (L_142)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)145)), (String_t*)_stringLiteral4172587423); StringU5BU5D_t1642385972* L_143 = L_142; NullCheck(L_143); ArrayElementTypeCheck (L_143, _stringLiteral2559449314); (L_143)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)146)), (String_t*)_stringLiteral2559449314); StringU5BU5D_t1642385972* L_144 = L_143; NullCheck(L_144); ArrayElementTypeCheck (L_144, _stringLiteral4172587422); (L_144)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)147)), (String_t*)_stringLiteral4172587422); StringU5BU5D_t1642385972* L_145 = L_144; NullCheck(L_145); ArrayElementTypeCheck (L_145, _stringLiteral2559449312); (L_145)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)148)), (String_t*)_stringLiteral2559449312); StringU5BU5D_t1642385972* L_146 = L_145; NullCheck(L_146); ArrayElementTypeCheck (L_146, _stringLiteral4172587420); (L_146)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)149)), (String_t*)_stringLiteral4172587420); StringU5BU5D_t1642385972* L_147 = L_146; NullCheck(L_147); ArrayElementTypeCheck (L_147, _stringLiteral2559449324); (L_147)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)150)), (String_t*)_stringLiteral2559449324); StringU5BU5D_t1642385972* L_148 = L_147; NullCheck(L_148); ArrayElementTypeCheck (L_148, _stringLiteral178545620); (L_148)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)151)), (String_t*)_stringLiteral178545620); StringU5BU5D_t1642385972* L_149 = L_148; NullCheck(L_149); ArrayElementTypeCheck (L_149, _stringLiteral3769302893); (L_149)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)152)), (String_t*)_stringLiteral3769302893); StringU5BU5D_t1642385972* L_150 = L_149; NullCheck(L_150); ArrayElementTypeCheck (L_150, _stringLiteral3769302905); (L_150)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)153)), (String_t*)_stringLiteral3769302905); StringU5BU5D_t1642385972* L_151 = L_150; NullCheck(L_151); ArrayElementTypeCheck (L_151, _stringLiteral1684498374); (L_151)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)154)), (String_t*)_stringLiteral1684498374); StringU5BU5D_t1642385972* L_152 = L_151; NullCheck(L_152); ArrayElementTypeCheck (L_152, _stringLiteral3073335381); (L_152)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)155)), (String_t*)_stringLiteral3073335381); StringU5BU5D_t1642385972* L_153 = L_152; NullCheck(L_153); ArrayElementTypeCheck (L_153, _stringLiteral1180572518); (L_153)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)156)), (String_t*)_stringLiteral1180572518); StringU5BU5D_t1642385972* L_154 = L_153; NullCheck(L_154); ArrayElementTypeCheck (L_154, _stringLiteral1180572519); (L_154)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)157)), (String_t*)_stringLiteral1180572519); StringU5BU5D_t1642385972* L_155 = L_154; NullCheck(L_155); ArrayElementTypeCheck (L_155, _stringLiteral1180572521); (L_155)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)158)), (String_t*)_stringLiteral1180572521); StringU5BU5D_t1642385972* L_156 = L_155; NullCheck(L_156); ArrayElementTypeCheck (L_156, _stringLiteral1180572509); (L_156)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)159)), (String_t*)_stringLiteral1180572509); StringU5BU5D_t1642385972* L_157 = L_156; NullCheck(L_157); ArrayElementTypeCheck (L_157, _stringLiteral3815347542); (L_157)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)160)), (String_t*)_stringLiteral3815347542); StringU5BU5D_t1642385972* L_158 = L_157; NullCheck(L_158); ArrayElementTypeCheck (L_158, _stringLiteral3815347530); (L_158)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)161)), (String_t*)_stringLiteral3815347530); StringU5BU5D_t1642385972* L_159 = L_158; NullCheck(L_159); ArrayElementTypeCheck (L_159, _stringLiteral2501047121); (L_159)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)162)), (String_t*)_stringLiteral2501047121); StringU5BU5D_t1642385972* L_160 = L_159; NullCheck(L_160); ArrayElementTypeCheck (L_160, _stringLiteral4090385577); (L_160)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)163)), (String_t*)_stringLiteral4090385577); StringU5BU5D_t1642385972* L_161 = L_160; NullCheck(L_161); ArrayElementTypeCheck (L_161, _stringLiteral1314794950); (L_161)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)164)), (String_t*)_stringLiteral1314794950); StringU5BU5D_t1642385972* L_162 = L_161; NullCheck(L_162); ArrayElementTypeCheck (L_162, _stringLiteral1002339398); (L_162)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)165)), (String_t*)_stringLiteral1002339398); StringU5BU5D_t1642385972* L_163 = L_162; NullCheck(L_163); ArrayElementTypeCheck (L_163, _stringLiteral782255611); (L_163)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)179)), (String_t*)_stringLiteral782255611); StringU5BU5D_t1642385972* L_164 = L_163; NullCheck(L_164); ArrayElementTypeCheck (L_164, _stringLiteral4176545519); (L_164)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)180)), (String_t*)_stringLiteral4176545519); StringU5BU5D_t1642385972* L_165 = L_164; NullCheck(L_165); ArrayElementTypeCheck (L_165, _stringLiteral782255608); (L_165)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)181)), (String_t*)_stringLiteral782255608); StringU5BU5D_t1642385972* L_166 = L_165; NullCheck(L_166); ArrayElementTypeCheck (L_166, _stringLiteral4176545516); (L_166)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)182)), (String_t*)_stringLiteral4176545516); StringU5BU5D_t1642385972* L_167 = L_166; NullCheck(L_167); ArrayElementTypeCheck (L_167, _stringLiteral782255606); (L_167)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)183)), (String_t*)_stringLiteral782255606); StringU5BU5D_t1642385972* L_168 = L_167; NullCheck(L_168); ArrayElementTypeCheck (L_168, _stringLiteral4176545514); (L_168)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)184)), (String_t*)_stringLiteral4176545514); StringU5BU5D_t1642385972* L_169 = L_168; NullCheck(L_169); ArrayElementTypeCheck (L_169, _stringLiteral782255602); (L_169)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)185)), (String_t*)_stringLiteral782255602); StringU5BU5D_t1642385972* L_170 = L_169; NullCheck(L_170); ArrayElementTypeCheck (L_170, _stringLiteral4176545510); (L_170)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)186)), (String_t*)_stringLiteral4176545510); StringU5BU5D_t1642385972* L_171 = L_170; NullCheck(L_171); ArrayElementTypeCheck (L_171, _stringLiteral3401875426); (L_171)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)194)), (String_t*)_stringLiteral3401875426); StringU5BU5D_t1642385972* L_172 = L_171; NullCheck(L_172); ArrayElementTypeCheck (L_172, _stringLiteral3514721169); (L_172)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)195)), (String_t*)_stringLiteral3514721169); StringU5BU5D_t1642385972* L_173 = L_172; NullCheck(L_173); ArrayElementTypeCheck (L_173, _stringLiteral1157131249); (L_173)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)198)), (String_t*)_stringLiteral1157131249); StringU5BU5D_t1642385972* L_174 = L_173; NullCheck(L_174); ArrayElementTypeCheck (L_174, _stringLiteral3161666159); (L_174)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)208)), (String_t*)_stringLiteral3161666159); StringU5BU5D_t1642385972* L_175 = L_174; NullCheck(L_175); ArrayElementTypeCheck (L_175, _stringLiteral3443880897); (L_175)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)209)), (String_t*)_stringLiteral3443880897); StringU5BU5D_t1642385972* L_176 = L_175; NullCheck(L_176); ArrayElementTypeCheck (L_176, _stringLiteral3443880900); (L_176)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)210)), (String_t*)_stringLiteral3443880900); StringU5BU5D_t1642385972* L_177 = L_176; NullCheck(L_177); ArrayElementTypeCheck (L_177, _stringLiteral3162669967); (L_177)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)211)), (String_t*)_stringLiteral3162669967); StringU5BU5D_t1642385972* L_178 = L_177; NullCheck(L_178); ArrayElementTypeCheck (L_178, _stringLiteral3715361322); (L_178)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)212)), (String_t*)_stringLiteral3715361322); StringU5BU5D_t1642385972* L_179 = L_178; NullCheck(L_179); ArrayElementTypeCheck (L_179, _stringLiteral2814683934); (L_179)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)213)), (String_t*)_stringLiteral2814683934); StringU5BU5D_t1642385972* L_180 = L_179; NullCheck(L_180); ArrayElementTypeCheck (L_180, _stringLiteral4076537830); (L_180)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)214)), (String_t*)_stringLiteral4076537830); StringU5BU5D_t1642385972* L_181 = L_180; NullCheck(L_181); ArrayElementTypeCheck (L_181, _stringLiteral2716565177); (L_181)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)215)), (String_t*)_stringLiteral2716565177); StringU5BU5D_t1642385972* L_182 = L_181; NullCheck(L_182); ArrayElementTypeCheck (L_182, _stringLiteral2807062197); (L_182)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)216)), (String_t*)_stringLiteral2807062197); StringU5BU5D_t1642385972* L_183 = L_182; NullCheck(L_183); ArrayElementTypeCheck (L_183, _stringLiteral3530008064); (L_183)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)217)), (String_t*)_stringLiteral3530008064); StringU5BU5D_t1642385972* L_184 = L_183; NullCheck(L_184); ArrayElementTypeCheck (L_184, _stringLiteral2807702533); (L_184)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)218)), (String_t*)_stringLiteral2807702533); StringU5BU5D_t1642385972* L_185 = L_184; NullCheck(L_185); ArrayElementTypeCheck (L_185, _stringLiteral3551139248); (L_185)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)219)), (String_t*)_stringLiteral3551139248); StringU5BU5D_t1642385972* L_186 = L_185; NullCheck(L_186); ArrayElementTypeCheck (L_186, _stringLiteral876476942); (L_186)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)220)), (String_t*)_stringLiteral876476942); StringU5BU5D_t1642385972* L_187 = L_186; NullCheck(L_187); ArrayElementTypeCheck (L_187, _stringLiteral2448513723); (L_187)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)221)), (String_t*)_stringLiteral2448513723); StringU5BU5D_t1642385972* L_188 = L_187; NullCheck(L_188); ArrayElementTypeCheck (L_188, _stringLiteral3753663670); (L_188)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)222)), (String_t*)_stringLiteral3753663670); StringU5BU5D_t1642385972* L_189 = L_188; NullCheck(L_189); ArrayElementTypeCheck (L_189, _stringLiteral480825959); (L_189)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)223)), (String_t*)_stringLiteral480825959); StringU5BU5D_t1642385972* L_190 = L_189; NullCheck(L_190); ArrayElementTypeCheck (L_190, _stringLiteral1549531859); (L_190)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)224)), (String_t*)_stringLiteral1549531859); StringU5BU5D_t1642385972* L_191 = L_190; NullCheck(L_191); ArrayElementTypeCheck (L_191, _stringLiteral88067259); (L_191)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)248)), (String_t*)_stringLiteral88067259); StringU5BU5D_t1642385972* L_192 = L_191; NullCheck(L_192); ArrayElementTypeCheck (L_192, _stringLiteral88067260); (L_192)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)249)), (String_t*)_stringLiteral88067260); StringU5BU5D_t1642385972* L_193 = L_192; NullCheck(L_193); ArrayElementTypeCheck (L_193, _stringLiteral88067257); (L_193)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)250)), (String_t*)_stringLiteral88067257); StringU5BU5D_t1642385972* L_194 = L_193; NullCheck(L_194); ArrayElementTypeCheck (L_194, _stringLiteral88067258); (L_194)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)251)), (String_t*)_stringLiteral88067258); StringU5BU5D_t1642385972* L_195 = L_194; NullCheck(L_195); ArrayElementTypeCheck (L_195, _stringLiteral88067255); (L_195)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)252)), (String_t*)_stringLiteral88067255); StringU5BU5D_t1642385972* L_196 = L_195; NullCheck(L_196); ArrayElementTypeCheck (L_196, _stringLiteral88067256); (L_196)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)253)), (String_t*)_stringLiteral88067256); StringU5BU5D_t1642385972* L_197 = L_196; NullCheck(L_197); ArrayElementTypeCheck (L_197, _stringLiteral88067253); (L_197)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)254)), (String_t*)_stringLiteral88067253); StringU5BU5D_t1642385972* L_198 = L_197; NullCheck(L_198); ArrayElementTypeCheck (L_198, _stringLiteral1884584617); (L_198)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)255)), (String_t*)_stringLiteral1884584617); StringU5BU5D_t1642385972* L_199 = L_198; NullCheck(L_199); ArrayElementTypeCheck (L_199, _stringLiteral47382726); (L_199)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)256)), (String_t*)_stringLiteral47382726); StringU5BU5D_t1642385972* L_200 = L_199; NullCheck(L_200); ArrayElementTypeCheck (L_200, _stringLiteral3021628343); (L_200)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)257)), (String_t*)_stringLiteral3021628343); StringU5BU5D_t1642385972* L_201 = L_200; NullCheck(L_201); ArrayElementTypeCheck (L_201, _stringLiteral1858828924); (L_201)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)258)), (String_t*)_stringLiteral1858828924); StringU5BU5D_t1642385972* L_202 = L_201; NullCheck(L_202); ArrayElementTypeCheck (L_202, _stringLiteral1168707281); (L_202)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)259)), (String_t*)_stringLiteral1168707281); StringU5BU5D_t1642385972* L_203 = L_202; NullCheck(L_203); ArrayElementTypeCheck (L_203, _stringLiteral4231481919); (L_203)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)260)), (String_t*)_stringLiteral4231481919); StringU5BU5D_t1642385972* L_204 = L_203; NullCheck(L_204); ArrayElementTypeCheck (L_204, _stringLiteral3187196564); (L_204)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)261)), (String_t*)_stringLiteral3187196564); StringU5BU5D_t1642385972* L_205 = L_204; NullCheck(L_205); ArrayElementTypeCheck (L_205, _stringLiteral2307351242); (L_205)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)262)), (String_t*)_stringLiteral2307351242); StringU5BU5D_t1642385972* L_206 = L_205; NullCheck(L_206); ArrayElementTypeCheck (L_206, _stringLiteral1933872749); (L_206)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)263)), (String_t*)_stringLiteral1933872749); StringU5BU5D_t1642385972* L_207 = L_206; NullCheck(L_207); ArrayElementTypeCheck (L_207, _stringLiteral3470150638); (L_207)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)265)), (String_t*)_stringLiteral3470150638); StringU5BU5D_t1642385972* L_208 = L_207; NullCheck(L_208); ArrayElementTypeCheck (L_208, _stringLiteral3660249737); (L_208)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)266)), (String_t*)_stringLiteral3660249737); StringU5BU5D_t1642385972* L_209 = L_208; NullCheck(L_209); ArrayElementTypeCheck (L_209, _stringLiteral2858725215); (L_209)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)267)), (String_t*)_stringLiteral2858725215); StringU5BU5D_t1642385972* L_210 = L_209; NullCheck(L_210); ArrayElementTypeCheck (L_210, _stringLiteral4229665356); (L_210)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)268)), (String_t*)_stringLiteral4229665356); StringU5BU5D_t1642385972* L_211 = L_210; NullCheck(L_211); ArrayElementTypeCheck (L_211, _stringLiteral3236762065); (L_211)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)269)), (String_t*)_stringLiteral3236762065); StringU5BU5D_t1642385972* L_212 = L_211; NullCheck(L_212); ArrayElementTypeCheck (L_212, _stringLiteral2193318831); (L_212)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)270)), (String_t*)_stringLiteral2193318831); StringU5BU5D_t1642385972* L_213 = L_212; NullCheck(L_213); ArrayElementTypeCheck (L_213, _stringLiteral4185878269); (L_213)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)271)), (String_t*)_stringLiteral4185878269); StringU5BU5D_t1642385972* L_214 = L_213; NullCheck(L_214); ArrayElementTypeCheck (L_214, _stringLiteral2034147359); (L_214)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)273)), (String_t*)_stringLiteral2034147359); StringU5BU5D_t1642385972* L_215 = L_214; NullCheck(L_215); ArrayElementTypeCheck (L_215, _stringLiteral3098091945); (L_215)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)274)), (String_t*)_stringLiteral3098091945); StringU5BU5D_t1642385972* L_216 = L_215; NullCheck(L_216); ArrayElementTypeCheck (L_216, _stringLiteral1186066636); (L_216)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)275)), (String_t*)_stringLiteral1186066636); StringU5BU5D_t1642385972* L_217 = L_216; NullCheck(L_217); ArrayElementTypeCheck (L_217, _stringLiteral593465470); (L_217)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)276)), (String_t*)_stringLiteral593465470); StringU5BU5D_t1642385972* L_218 = L_217; NullCheck(L_218); ArrayElementTypeCheck (L_218, _stringLiteral3094106929); (L_218)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)277)), (String_t*)_stringLiteral3094106929); StringU5BU5D_t1642385972* L_219 = L_218; NullCheck(L_219); ArrayElementTypeCheck (L_219, _stringLiteral2255081476); (L_219)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)278)), (String_t*)_stringLiteral2255081476); StringU5BU5D_t1642385972* L_220 = L_219; NullCheck(L_220); ArrayElementTypeCheck (L_220, _stringLiteral1548097516); (L_220)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)279)), (String_t*)_stringLiteral1548097516); StringU5BU5D_t1642385972* L_221 = L_220; NullCheck(L_221); ArrayElementTypeCheck (L_221, _stringLiteral318169515); (L_221)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)280)), (String_t*)_stringLiteral318169515); StringU5BU5D_t1642385972* L_222 = L_221; NullCheck(L_222); ArrayElementTypeCheck (L_222, _stringLiteral2819848329); (L_222)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)282)), (String_t*)_stringLiteral2819848329); StringU5BU5D_t1642385972* L_223 = L_222; NullCheck(L_223); ArrayElementTypeCheck (L_223, _stringLiteral365513102); (L_223)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)284)), (String_t*)_stringLiteral365513102); StringU5BU5D_t1642385972* L_224 = L_223; NullCheck(L_224); ArrayElementTypeCheck (L_224, _stringLiteral4255559471); (L_224)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)285)), (String_t*)_stringLiteral4255559471); StringU5BU5D_t1642385972* L_225 = L_224; NullCheck(L_225); ArrayElementTypeCheck (L_225, _stringLiteral3626041882); (L_225)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)286)), (String_t*)_stringLiteral3626041882); ((OpCodeNames_t1907134268_StaticFields*)OpCodeNames_t1907134268_il2cpp_TypeInfo_var->static_fields)->set_names_0(L_225); return; } } // System.Void System.Reflection.Emit.OpCodes::.cctor() extern Il2CppClass* OpCodes_t3494785031_il2cpp_TypeInfo_var; extern const uint32_t OpCodes__cctor_m939885911_MetadataUsageId; extern "C" void OpCodes__cctor_m939885911 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OpCodes__cctor_m939885911_MetadataUsageId); s_Il2CppMethodInitialized = true; } { OpCode_t2247480392 L_0; memset(&L_0, 0, sizeof(L_0)); OpCode__ctor_m3329993003(&L_0, ((int32_t)1179903), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Nop_0(L_0); OpCode_t2247480392 L_1; memset(&L_1, 0, sizeof(L_1)); OpCode__ctor_m3329993003(&L_1, ((int32_t)1180159), ((int32_t)17106177), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Break_1(L_1); OpCode_t2247480392 L_2; memset(&L_2, 0, sizeof(L_2)); OpCode__ctor_m3329993003(&L_2, ((int32_t)1245951), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarg_0_2(L_2); OpCode_t2247480392 L_3; memset(&L_3, 0, sizeof(L_3)); OpCode__ctor_m3329993003(&L_3, ((int32_t)1246207), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarg_1_3(L_3); OpCode_t2247480392 L_4; memset(&L_4, 0, sizeof(L_4)); OpCode__ctor_m3329993003(&L_4, ((int32_t)1246463), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarg_2_4(L_4); OpCode_t2247480392 L_5; memset(&L_5, 0, sizeof(L_5)); OpCode__ctor_m3329993003(&L_5, ((int32_t)1246719), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarg_3_5(L_5); OpCode_t2247480392 L_6; memset(&L_6, 0, sizeof(L_6)); OpCode__ctor_m3329993003(&L_6, ((int32_t)1246975), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloc_0_6(L_6); OpCode_t2247480392 L_7; memset(&L_7, 0, sizeof(L_7)); OpCode__ctor_m3329993003(&L_7, ((int32_t)1247231), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloc_1_7(L_7); OpCode_t2247480392 L_8; memset(&L_8, 0, sizeof(L_8)); OpCode__ctor_m3329993003(&L_8, ((int32_t)1247487), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloc_2_8(L_8); OpCode_t2247480392 L_9; memset(&L_9, 0, sizeof(L_9)); OpCode__ctor_m3329993003(&L_9, ((int32_t)1247743), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloc_3_9(L_9); OpCode_t2247480392 L_10; memset(&L_10, 0, sizeof(L_10)); OpCode__ctor_m3329993003(&L_10, ((int32_t)17959679), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stloc_0_10(L_10); OpCode_t2247480392 L_11; memset(&L_11, 0, sizeof(L_11)); OpCode__ctor_m3329993003(&L_11, ((int32_t)17959935), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stloc_1_11(L_11); OpCode_t2247480392 L_12; memset(&L_12, 0, sizeof(L_12)); OpCode__ctor_m3329993003(&L_12, ((int32_t)17960191), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stloc_2_12(L_12); OpCode_t2247480392 L_13; memset(&L_13, 0, sizeof(L_13)); OpCode__ctor_m3329993003(&L_13, ((int32_t)17960447), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stloc_3_13(L_13); OpCode_t2247480392 L_14; memset(&L_14, 0, sizeof(L_14)); OpCode__ctor_m3329993003(&L_14, ((int32_t)1249023), ((int32_t)85065985), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarg_S_14(L_14); OpCode_t2247480392 L_15; memset(&L_15, 0, sizeof(L_15)); OpCode__ctor_m3329993003(&L_15, ((int32_t)1380351), ((int32_t)85065985), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarga_S_15(L_15); OpCode_t2247480392 L_16; memset(&L_16, 0, sizeof(L_16)); OpCode__ctor_m3329993003(&L_16, ((int32_t)17961215), ((int32_t)85065985), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Starg_S_16(L_16); OpCode_t2247480392 L_17; memset(&L_17, 0, sizeof(L_17)); OpCode__ctor_m3329993003(&L_17, ((int32_t)1249791), ((int32_t)85065985), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloc_S_17(L_17); OpCode_t2247480392 L_18; memset(&L_18, 0, sizeof(L_18)); OpCode__ctor_m3329993003(&L_18, ((int32_t)1381119), ((int32_t)85065985), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloca_S_18(L_18); OpCode_t2247480392 L_19; memset(&L_19, 0, sizeof(L_19)); OpCode__ctor_m3329993003(&L_19, ((int32_t)17961983), ((int32_t)85065985), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stloc_S_19(L_19); OpCode_t2247480392 L_20; memset(&L_20, 0, sizeof(L_20)); OpCode__ctor_m3329993003(&L_20, ((int32_t)1643775), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldnull_20(L_20); OpCode_t2247480392 L_21; memset(&L_21, 0, sizeof(L_21)); OpCode__ctor_m3329993003(&L_21, ((int32_t)1381887), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_M1_21(L_21); OpCode_t2247480392 L_22; memset(&L_22, 0, sizeof(L_22)); OpCode__ctor_m3329993003(&L_22, ((int32_t)1382143), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_0_22(L_22); OpCode_t2247480392 L_23; memset(&L_23, 0, sizeof(L_23)); OpCode__ctor_m3329993003(&L_23, ((int32_t)1382399), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_1_23(L_23); OpCode_t2247480392 L_24; memset(&L_24, 0, sizeof(L_24)); OpCode__ctor_m3329993003(&L_24, ((int32_t)1382655), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_2_24(L_24); OpCode_t2247480392 L_25; memset(&L_25, 0, sizeof(L_25)); OpCode__ctor_m3329993003(&L_25, ((int32_t)1382911), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_3_25(L_25); OpCode_t2247480392 L_26; memset(&L_26, 0, sizeof(L_26)); OpCode__ctor_m3329993003(&L_26, ((int32_t)1383167), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_4_26(L_26); OpCode_t2247480392 L_27; memset(&L_27, 0, sizeof(L_27)); OpCode__ctor_m3329993003(&L_27, ((int32_t)1383423), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_5_27(L_27); OpCode_t2247480392 L_28; memset(&L_28, 0, sizeof(L_28)); OpCode__ctor_m3329993003(&L_28, ((int32_t)1383679), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_6_28(L_28); OpCode_t2247480392 L_29; memset(&L_29, 0, sizeof(L_29)); OpCode__ctor_m3329993003(&L_29, ((int32_t)1383935), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_7_29(L_29); OpCode_t2247480392 L_30; memset(&L_30, 0, sizeof(L_30)); OpCode__ctor_m3329993003(&L_30, ((int32_t)1384191), ((int32_t)84214017), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_8_30(L_30); OpCode_t2247480392 L_31; memset(&L_31, 0, sizeof(L_31)); OpCode__ctor_m3329993003(&L_31, ((int32_t)1384447), ((int32_t)84934913), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_S_31(L_31); OpCode_t2247480392 L_32; memset(&L_32, 0, sizeof(L_32)); OpCode__ctor_m3329993003(&L_32, ((int32_t)1384703), ((int32_t)84018433), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I4_32(L_32); OpCode_t2247480392 L_33; memset(&L_33, 0, sizeof(L_33)); OpCode__ctor_m3329993003(&L_33, ((int32_t)1450495), ((int32_t)84083969), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_I8_33(L_33); OpCode_t2247480392 L_34; memset(&L_34, 0, sizeof(L_34)); OpCode__ctor_m3329993003(&L_34, ((int32_t)1516287), ((int32_t)85001473), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_R4_34(L_34); OpCode_t2247480392 L_35; memset(&L_35, 0, sizeof(L_35)); OpCode__ctor_m3329993003(&L_35, ((int32_t)1582079), ((int32_t)84346113), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldc_R8_35(L_35); OpCode_t2247480392 L_36; memset(&L_36, 0, sizeof(L_36)); OpCode__ctor_m3329993003(&L_36, ((int32_t)18097663), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Dup_36(L_36); OpCode_t2247480392 L_37; memset(&L_37, 0, sizeof(L_37)); OpCode__ctor_m3329993003(&L_37, ((int32_t)17966847), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Pop_37(L_37); OpCode_t2247480392 L_38; memset(&L_38, 0, sizeof(L_38)); OpCode__ctor_m3329993003(&L_38, ((int32_t)1189887), ((int32_t)33817857), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Jmp_38(L_38); OpCode_t2247480392 L_39; memset(&L_39, 0, sizeof(L_39)); OpCode__ctor_m3329993003(&L_39, ((int32_t)437987583), ((int32_t)33817857), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Call_39(L_39); OpCode_t2247480392 L_40; memset(&L_40, 0, sizeof(L_40)); OpCode__ctor_m3329993003(&L_40, ((int32_t)437987839), ((int32_t)34145537), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Calli_40(L_40); OpCode_t2247480392 L_41; memset(&L_41, 0, sizeof(L_41)); OpCode__ctor_m3329993003(&L_41, ((int32_t)437398271), ((int32_t)117769473), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ret_41(L_41); OpCode_t2247480392 L_42; memset(&L_42, 0, sizeof(L_42)); OpCode__ctor_m3329993003(&L_42, ((int32_t)1190911), ((int32_t)983297), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Br_S_42(L_42); OpCode_t2247480392 L_43; memset(&L_43, 0, sizeof(L_43)); OpCode__ctor_m3329993003(&L_43, ((int32_t)51522815), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Brfalse_S_43(L_43); OpCode_t2247480392 L_44; memset(&L_44, 0, sizeof(L_44)); OpCode__ctor_m3329993003(&L_44, ((int32_t)51523071), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Brtrue_S_44(L_44); OpCode_t2247480392 L_45; memset(&L_45, 0, sizeof(L_45)); OpCode__ctor_m3329993003(&L_45, ((int32_t)34746111), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Beq_S_45(L_45); OpCode_t2247480392 L_46; memset(&L_46, 0, sizeof(L_46)); OpCode__ctor_m3329993003(&L_46, ((int32_t)34746367), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bge_S_46(L_46); OpCode_t2247480392 L_47; memset(&L_47, 0, sizeof(L_47)); OpCode__ctor_m3329993003(&L_47, ((int32_t)34746623), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bgt_S_47(L_47); OpCode_t2247480392 L_48; memset(&L_48, 0, sizeof(L_48)); OpCode__ctor_m3329993003(&L_48, ((int32_t)34746879), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ble_S_48(L_48); OpCode_t2247480392 L_49; memset(&L_49, 0, sizeof(L_49)); OpCode__ctor_m3329993003(&L_49, ((int32_t)34747135), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Blt_S_49(L_49); OpCode_t2247480392 L_50; memset(&L_50, 0, sizeof(L_50)); OpCode__ctor_m3329993003(&L_50, ((int32_t)34747391), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bne_Un_S_50(L_50); OpCode_t2247480392 L_51; memset(&L_51, 0, sizeof(L_51)); OpCode__ctor_m3329993003(&L_51, ((int32_t)34747647), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bge_Un_S_51(L_51); OpCode_t2247480392 L_52; memset(&L_52, 0, sizeof(L_52)); OpCode__ctor_m3329993003(&L_52, ((int32_t)34747903), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bgt_Un_S_52(L_52); OpCode_t2247480392 L_53; memset(&L_53, 0, sizeof(L_53)); OpCode__ctor_m3329993003(&L_53, ((int32_t)34748159), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ble_Un_S_53(L_53); OpCode_t2247480392 L_54; memset(&L_54, 0, sizeof(L_54)); OpCode__ctor_m3329993003(&L_54, ((int32_t)34748415), ((int32_t)51314945), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Blt_Un_S_54(L_54); OpCode_t2247480392 L_55; memset(&L_55, 0, sizeof(L_55)); OpCode__ctor_m3329993003(&L_55, ((int32_t)1194239), ((int32_t)1281), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Br_55(L_55); OpCode_t2247480392 L_56; memset(&L_56, 0, sizeof(L_56)); OpCode__ctor_m3329993003(&L_56, ((int32_t)51526143), ((int32_t)50332929), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Brfalse_56(L_56); OpCode_t2247480392 L_57; memset(&L_57, 0, sizeof(L_57)); OpCode__ctor_m3329993003(&L_57, ((int32_t)51526399), ((int32_t)50332929), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Brtrue_57(L_57); OpCode_t2247480392 L_58; memset(&L_58, 0, sizeof(L_58)); OpCode__ctor_m3329993003(&L_58, ((int32_t)34749439), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Beq_58(L_58); OpCode_t2247480392 L_59; memset(&L_59, 0, sizeof(L_59)); OpCode__ctor_m3329993003(&L_59, ((int32_t)34749695), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bge_59(L_59); OpCode_t2247480392 L_60; memset(&L_60, 0, sizeof(L_60)); OpCode__ctor_m3329993003(&L_60, ((int32_t)34749951), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bgt_60(L_60); OpCode_t2247480392 L_61; memset(&L_61, 0, sizeof(L_61)); OpCode__ctor_m3329993003(&L_61, ((int32_t)34750207), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ble_61(L_61); OpCode_t2247480392 L_62; memset(&L_62, 0, sizeof(L_62)); OpCode__ctor_m3329993003(&L_62, ((int32_t)34750463), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Blt_62(L_62); OpCode_t2247480392 L_63; memset(&L_63, 0, sizeof(L_63)); OpCode__ctor_m3329993003(&L_63, ((int32_t)34750719), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bne_Un_63(L_63); OpCode_t2247480392 L_64; memset(&L_64, 0, sizeof(L_64)); OpCode__ctor_m3329993003(&L_64, ((int32_t)34750975), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bge_Un_64(L_64); OpCode_t2247480392 L_65; memset(&L_65, 0, sizeof(L_65)); OpCode__ctor_m3329993003(&L_65, ((int32_t)34751231), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Bgt_Un_65(L_65); OpCode_t2247480392 L_66; memset(&L_66, 0, sizeof(L_66)); OpCode__ctor_m3329993003(&L_66, ((int32_t)34751487), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ble_Un_66(L_66); OpCode_t2247480392 L_67; memset(&L_67, 0, sizeof(L_67)); OpCode__ctor_m3329993003(&L_67, ((int32_t)34751743), ((int32_t)50331905), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Blt_Un_67(L_67); OpCode_t2247480392 L_68; memset(&L_68, 0, sizeof(L_68)); OpCode__ctor_m3329993003(&L_68, ((int32_t)51529215), ((int32_t)51053825), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Switch_68(L_68); OpCode_t2247480392 L_69; memset(&L_69, 0, sizeof(L_69)); OpCode__ctor_m3329993003(&L_69, ((int32_t)51726079), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_I1_69(L_69); OpCode_t2247480392 L_70; memset(&L_70, 0, sizeof(L_70)); OpCode__ctor_m3329993003(&L_70, ((int32_t)51726335), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_U1_70(L_70); OpCode_t2247480392 L_71; memset(&L_71, 0, sizeof(L_71)); OpCode__ctor_m3329993003(&L_71, ((int32_t)51726591), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_I2_71(L_71); OpCode_t2247480392 L_72; memset(&L_72, 0, sizeof(L_72)); OpCode__ctor_m3329993003(&L_72, ((int32_t)51726847), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_U2_72(L_72); OpCode_t2247480392 L_73; memset(&L_73, 0, sizeof(L_73)); OpCode__ctor_m3329993003(&L_73, ((int32_t)51727103), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_I4_73(L_73); OpCode_t2247480392 L_74; memset(&L_74, 0, sizeof(L_74)); OpCode__ctor_m3329993003(&L_74, ((int32_t)51727359), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_U4_74(L_74); OpCode_t2247480392 L_75; memset(&L_75, 0, sizeof(L_75)); OpCode__ctor_m3329993003(&L_75, ((int32_t)51793151), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_I8_75(L_75); OpCode_t2247480392 L_76; memset(&L_76, 0, sizeof(L_76)); OpCode__ctor_m3329993003(&L_76, ((int32_t)51727871), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_I_76(L_76); OpCode_t2247480392 L_77; memset(&L_77, 0, sizeof(L_77)); OpCode__ctor_m3329993003(&L_77, ((int32_t)51859199), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_R4_77(L_77); OpCode_t2247480392 L_78; memset(&L_78, 0, sizeof(L_78)); OpCode__ctor_m3329993003(&L_78, ((int32_t)51924991), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_R8_78(L_78); OpCode_t2247480392 L_79; memset(&L_79, 0, sizeof(L_79)); OpCode__ctor_m3329993003(&L_79, ((int32_t)51990783), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldind_Ref_79(L_79); OpCode_t2247480392 L_80; memset(&L_80, 0, sizeof(L_80)); OpCode__ctor_m3329993003(&L_80, ((int32_t)85086719), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_Ref_80(L_80); OpCode_t2247480392 L_81; memset(&L_81, 0, sizeof(L_81)); OpCode__ctor_m3329993003(&L_81, ((int32_t)85086975), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_I1_81(L_81); OpCode_t2247480392 L_82; memset(&L_82, 0, sizeof(L_82)); OpCode__ctor_m3329993003(&L_82, ((int32_t)85087231), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_I2_82(L_82); OpCode_t2247480392 L_83; memset(&L_83, 0, sizeof(L_83)); OpCode__ctor_m3329993003(&L_83, ((int32_t)85087487), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_I4_83(L_83); OpCode_t2247480392 L_84; memset(&L_84, 0, sizeof(L_84)); OpCode__ctor_m3329993003(&L_84, ((int32_t)101864959), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_I8_84(L_84); OpCode_t2247480392 L_85; memset(&L_85, 0, sizeof(L_85)); OpCode__ctor_m3329993003(&L_85, ((int32_t)135419647), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_R4_85(L_85); OpCode_t2247480392 L_86; memset(&L_86, 0, sizeof(L_86)); OpCode__ctor_m3329993003(&L_86, ((int32_t)152197119), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_R8_86(L_86); OpCode_t2247480392 L_87; memset(&L_87, 0, sizeof(L_87)); OpCode__ctor_m3329993003(&L_87, ((int32_t)34822399), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Add_87(L_87); OpCode_t2247480392 L_88; memset(&L_88, 0, sizeof(L_88)); OpCode__ctor_m3329993003(&L_88, ((int32_t)34822655), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Sub_88(L_88); OpCode_t2247480392 L_89; memset(&L_89, 0, sizeof(L_89)); OpCode__ctor_m3329993003(&L_89, ((int32_t)34822911), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Mul_89(L_89); OpCode_t2247480392 L_90; memset(&L_90, 0, sizeof(L_90)); OpCode__ctor_m3329993003(&L_90, ((int32_t)34823167), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Div_90(L_90); OpCode_t2247480392 L_91; memset(&L_91, 0, sizeof(L_91)); OpCode__ctor_m3329993003(&L_91, ((int32_t)34823423), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Div_Un_91(L_91); OpCode_t2247480392 L_92; memset(&L_92, 0, sizeof(L_92)); OpCode__ctor_m3329993003(&L_92, ((int32_t)34823679), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Rem_92(L_92); OpCode_t2247480392 L_93; memset(&L_93, 0, sizeof(L_93)); OpCode__ctor_m3329993003(&L_93, ((int32_t)34823935), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Rem_Un_93(L_93); OpCode_t2247480392 L_94; memset(&L_94, 0, sizeof(L_94)); OpCode__ctor_m3329993003(&L_94, ((int32_t)34824191), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_And_94(L_94); OpCode_t2247480392 L_95; memset(&L_95, 0, sizeof(L_95)); OpCode__ctor_m3329993003(&L_95, ((int32_t)34824447), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Or_95(L_95); OpCode_t2247480392 L_96; memset(&L_96, 0, sizeof(L_96)); OpCode__ctor_m3329993003(&L_96, ((int32_t)34824703), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Xor_96(L_96); OpCode_t2247480392 L_97; memset(&L_97, 0, sizeof(L_97)); OpCode__ctor_m3329993003(&L_97, ((int32_t)34824959), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Shl_97(L_97); OpCode_t2247480392 L_98; memset(&L_98, 0, sizeof(L_98)); OpCode__ctor_m3329993003(&L_98, ((int32_t)34825215), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Shr_98(L_98); OpCode_t2247480392 L_99; memset(&L_99, 0, sizeof(L_99)); OpCode__ctor_m3329993003(&L_99, ((int32_t)34825471), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Shr_Un_99(L_99); OpCode_t2247480392 L_100; memset(&L_100, 0, sizeof(L_100)); OpCode__ctor_m3329993003(&L_100, ((int32_t)18048511), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Neg_100(L_100); OpCode_t2247480392 L_101; memset(&L_101, 0, sizeof(L_101)); OpCode__ctor_m3329993003(&L_101, ((int32_t)18048767), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Not_101(L_101); OpCode_t2247480392 L_102; memset(&L_102, 0, sizeof(L_102)); OpCode__ctor_m3329993003(&L_102, ((int32_t)18180095), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_I1_102(L_102); OpCode_t2247480392 L_103; memset(&L_103, 0, sizeof(L_103)); OpCode__ctor_m3329993003(&L_103, ((int32_t)18180351), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_I2_103(L_103); OpCode_t2247480392 L_104; memset(&L_104, 0, sizeof(L_104)); OpCode__ctor_m3329993003(&L_104, ((int32_t)18180607), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_I4_104(L_104); OpCode_t2247480392 L_105; memset(&L_105, 0, sizeof(L_105)); OpCode__ctor_m3329993003(&L_105, ((int32_t)18246399), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_I8_105(L_105); OpCode_t2247480392 L_106; memset(&L_106, 0, sizeof(L_106)); OpCode__ctor_m3329993003(&L_106, ((int32_t)18312191), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_R4_106(L_106); OpCode_t2247480392 L_107; memset(&L_107, 0, sizeof(L_107)); OpCode__ctor_m3329993003(&L_107, ((int32_t)18377983), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_R8_107(L_107); OpCode_t2247480392 L_108; memset(&L_108, 0, sizeof(L_108)); OpCode__ctor_m3329993003(&L_108, ((int32_t)18181631), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_U4_108(L_108); OpCode_t2247480392 L_109; memset(&L_109, 0, sizeof(L_109)); OpCode__ctor_m3329993003(&L_109, ((int32_t)18247423), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_U8_109(L_109); OpCode_t2247480392 L_110; memset(&L_110, 0, sizeof(L_110)); OpCode__ctor_m3329993003(&L_110, ((int32_t)438005759), ((int32_t)33817345), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Callvirt_110(L_110); OpCode_t2247480392 L_111; memset(&L_111, 0, sizeof(L_111)); OpCode__ctor_m3329993003(&L_111, ((int32_t)85094655), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Cpobj_111(L_111); OpCode_t2247480392 L_112; memset(&L_112, 0, sizeof(L_112)); OpCode__ctor_m3329993003(&L_112, ((int32_t)51606015), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldobj_112(L_112); OpCode_t2247480392 L_113; memset(&L_113, 0, sizeof(L_113)); OpCode__ctor_m3329993003(&L_113, ((int32_t)1667839), ((int32_t)84542209), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldstr_113(L_113); OpCode_t2247480392 L_114; memset(&L_114, 0, sizeof(L_114)); OpCode__ctor_m3329993003(&L_114, ((int32_t)437875711), ((int32_t)33817345), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Newobj_114(L_114); OpCode_t2247480392 L_115; memset(&L_115, 0, sizeof(L_115)); OpCode__ctor_m3329993003(&L_115, ((int32_t)169440511), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Castclass_115(L_115); OpCode_t2247480392 L_116; memset(&L_116, 0, sizeof(L_116)); OpCode__ctor_m3329993003(&L_116, ((int32_t)169178623), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Isinst_116(L_116); OpCode_t2247480392 L_117; memset(&L_117, 0, sizeof(L_117)); OpCode__ctor_m3329993003(&L_117, ((int32_t)18380543), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_R_Un_117(L_117); OpCode_t2247480392 L_118; memset(&L_118, 0, sizeof(L_118)); OpCode__ctor_m3329993003(&L_118, ((int32_t)169179647), ((int32_t)84739329), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Unbox_118(L_118); OpCode_t2247480392 L_119; memset(&L_119, 0, sizeof(L_119)); OpCode__ctor_m3329993003(&L_119, ((int32_t)168983295), ((int32_t)134546177), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Throw_119(L_119); OpCode_t2247480392 L_120; memset(&L_120, 0, sizeof(L_120)); OpCode__ctor_m3329993003(&L_120, ((int32_t)169049087), ((int32_t)83952385), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldfld_120(L_120); OpCode_t2247480392 L_121; memset(&L_121, 0, sizeof(L_121)); OpCode__ctor_m3329993003(&L_121, ((int32_t)169180415), ((int32_t)83952385), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldflda_121(L_121); OpCode_t2247480392 L_122; memset(&L_122, 0, sizeof(L_122)); OpCode__ctor_m3329993003(&L_122, ((int32_t)185761279), ((int32_t)83952385), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stfld_122(L_122); OpCode_t2247480392 L_123; memset(&L_123, 0, sizeof(L_123)); OpCode__ctor_m3329993003(&L_123, ((int32_t)1277695), ((int32_t)83952385), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldsfld_123(L_123); OpCode_t2247480392 L_124; memset(&L_124, 0, sizeof(L_124)); OpCode__ctor_m3329993003(&L_124, ((int32_t)1409023), ((int32_t)83952385), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldsflda_124(L_124); OpCode_t2247480392 L_125; memset(&L_125, 0, sizeof(L_125)); OpCode__ctor_m3329993003(&L_125, ((int32_t)17989887), ((int32_t)83952385), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stsfld_125(L_125); OpCode_t2247480392 L_126; memset(&L_126, 0, sizeof(L_126)); OpCode__ctor_m3329993003(&L_126, ((int32_t)68321791), ((int32_t)84739329), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stobj_126(L_126); OpCode_t2247480392 L_127; memset(&L_127, 0, sizeof(L_127)); OpCode__ctor_m3329993003(&L_127, ((int32_t)18187007), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I1_Un_127(L_127); OpCode_t2247480392 L_128; memset(&L_128, 0, sizeof(L_128)); OpCode__ctor_m3329993003(&L_128, ((int32_t)18187263), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I2_Un_128(L_128); OpCode_t2247480392 L_129; memset(&L_129, 0, sizeof(L_129)); OpCode__ctor_m3329993003(&L_129, ((int32_t)18187519), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I4_Un_129(L_129); OpCode_t2247480392 L_130; memset(&L_130, 0, sizeof(L_130)); OpCode__ctor_m3329993003(&L_130, ((int32_t)18253311), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I8_Un_130(L_130); OpCode_t2247480392 L_131; memset(&L_131, 0, sizeof(L_131)); OpCode__ctor_m3329993003(&L_131, ((int32_t)18188031), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U1_Un_131(L_131); OpCode_t2247480392 L_132; memset(&L_132, 0, sizeof(L_132)); OpCode__ctor_m3329993003(&L_132, ((int32_t)18188287), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U2_Un_132(L_132); OpCode_t2247480392 L_133; memset(&L_133, 0, sizeof(L_133)); OpCode__ctor_m3329993003(&L_133, ((int32_t)18188543), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U4_Un_133(L_133); OpCode_t2247480392 L_134; memset(&L_134, 0, sizeof(L_134)); OpCode__ctor_m3329993003(&L_134, ((int32_t)18254335), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U8_Un_134(L_134); OpCode_t2247480392 L_135; memset(&L_135, 0, sizeof(L_135)); OpCode__ctor_m3329993003(&L_135, ((int32_t)18189055), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I_Un_135(L_135); OpCode_t2247480392 L_136; memset(&L_136, 0, sizeof(L_136)); OpCode__ctor_m3329993003(&L_136, ((int32_t)18189311), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U_Un_136(L_136); OpCode_t2247480392 L_137; memset(&L_137, 0, sizeof(L_137)); OpCode__ctor_m3329993003(&L_137, ((int32_t)18451711), ((int32_t)84739329), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Box_137(L_137); OpCode_t2247480392 L_138; memset(&L_138, 0, sizeof(L_138)); OpCode__ctor_m3329993003(&L_138, ((int32_t)52006399), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Newarr_138(L_138); OpCode_t2247480392 L_139; memset(&L_139, 0, sizeof(L_139)); OpCode__ctor_m3329993003(&L_139, ((int32_t)169185023), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldlen_139(L_139); OpCode_t2247480392 L_140; memset(&L_140, 0, sizeof(L_140)); OpCode__ctor_m3329993003(&L_140, ((int32_t)202739711), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelema_140(L_140); OpCode_t2247480392 L_141; memset(&L_141, 0, sizeof(L_141)); OpCode__ctor_m3329993003(&L_141, ((int32_t)202739967), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_I1_141(L_141); OpCode_t2247480392 L_142; memset(&L_142, 0, sizeof(L_142)); OpCode__ctor_m3329993003(&L_142, ((int32_t)202740223), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_U1_142(L_142); OpCode_t2247480392 L_143; memset(&L_143, 0, sizeof(L_143)); OpCode__ctor_m3329993003(&L_143, ((int32_t)202740479), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_I2_143(L_143); OpCode_t2247480392 L_144; memset(&L_144, 0, sizeof(L_144)); OpCode__ctor_m3329993003(&L_144, ((int32_t)202740735), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_U2_144(L_144); OpCode_t2247480392 L_145; memset(&L_145, 0, sizeof(L_145)); OpCode__ctor_m3329993003(&L_145, ((int32_t)202740991), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_I4_145(L_145); OpCode_t2247480392 L_146; memset(&L_146, 0, sizeof(L_146)); OpCode__ctor_m3329993003(&L_146, ((int32_t)202741247), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_U4_146(L_146); OpCode_t2247480392 L_147; memset(&L_147, 0, sizeof(L_147)); OpCode__ctor_m3329993003(&L_147, ((int32_t)202807039), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_I8_147(L_147); OpCode_t2247480392 L_148; memset(&L_148, 0, sizeof(L_148)); OpCode__ctor_m3329993003(&L_148, ((int32_t)202741759), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_I_148(L_148); OpCode_t2247480392 L_149; memset(&L_149, 0, sizeof(L_149)); OpCode__ctor_m3329993003(&L_149, ((int32_t)202873087), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_R4_149(L_149); OpCode_t2247480392 L_150; memset(&L_150, 0, sizeof(L_150)); OpCode__ctor_m3329993003(&L_150, ((int32_t)202938879), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_R8_150(L_150); OpCode_t2247480392 L_151; memset(&L_151, 0, sizeof(L_151)); OpCode__ctor_m3329993003(&L_151, ((int32_t)203004671), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_Ref_151(L_151); OpCode_t2247480392 L_152; memset(&L_152, 0, sizeof(L_152)); OpCode__ctor_m3329993003(&L_152, ((int32_t)219323391), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_I_152(L_152); OpCode_t2247480392 L_153; memset(&L_153, 0, sizeof(L_153)); OpCode__ctor_m3329993003(&L_153, ((int32_t)219323647), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_I1_153(L_153); OpCode_t2247480392 L_154; memset(&L_154, 0, sizeof(L_154)); OpCode__ctor_m3329993003(&L_154, ((int32_t)219323903), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_I2_154(L_154); OpCode_t2247480392 L_155; memset(&L_155, 0, sizeof(L_155)); OpCode__ctor_m3329993003(&L_155, ((int32_t)219324159), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_I4_155(L_155); OpCode_t2247480392 L_156; memset(&L_156, 0, sizeof(L_156)); OpCode__ctor_m3329993003(&L_156, ((int32_t)236101631), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_I8_156(L_156); OpCode_t2247480392 L_157; memset(&L_157, 0, sizeof(L_157)); OpCode__ctor_m3329993003(&L_157, ((int32_t)252879103), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_R4_157(L_157); OpCode_t2247480392 L_158; memset(&L_158, 0, sizeof(L_158)); OpCode__ctor_m3329993003(&L_158, ((int32_t)269656575), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_R8_158(L_158); OpCode_t2247480392 L_159; memset(&L_159, 0, sizeof(L_159)); OpCode__ctor_m3329993003(&L_159, ((int32_t)286434047), ((int32_t)84214529), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_Ref_159(L_159); OpCode_t2247480392 L_160; memset(&L_160, 0, sizeof(L_160)); OpCode__ctor_m3329993003(&L_160, ((int32_t)202613759), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldelem_160(L_160); OpCode_t2247480392 L_161; memset(&L_161, 0, sizeof(L_161)); OpCode__ctor_m3329993003(&L_161, ((int32_t)470983935), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stelem_161(L_161); OpCode_t2247480392 L_162; memset(&L_162, 0, sizeof(L_162)); OpCode__ctor_m3329993003(&L_162, ((int32_t)169059839), ((int32_t)84738817), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Unbox_Any_162(L_162); OpCode_t2247480392 L_163; memset(&L_163, 0, sizeof(L_163)); OpCode__ctor_m3329993003(&L_163, ((int32_t)18199551), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I1_163(L_163); OpCode_t2247480392 L_164; memset(&L_164, 0, sizeof(L_164)); OpCode__ctor_m3329993003(&L_164, ((int32_t)18199807), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U1_164(L_164); OpCode_t2247480392 L_165; memset(&L_165, 0, sizeof(L_165)); OpCode__ctor_m3329993003(&L_165, ((int32_t)18200063), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I2_165(L_165); OpCode_t2247480392 L_166; memset(&L_166, 0, sizeof(L_166)); OpCode__ctor_m3329993003(&L_166, ((int32_t)18200319), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U2_166(L_166); OpCode_t2247480392 L_167; memset(&L_167, 0, sizeof(L_167)); OpCode__ctor_m3329993003(&L_167, ((int32_t)18200575), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I4_167(L_167); OpCode_t2247480392 L_168; memset(&L_168, 0, sizeof(L_168)); OpCode__ctor_m3329993003(&L_168, ((int32_t)18200831), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U4_168(L_168); OpCode_t2247480392 L_169; memset(&L_169, 0, sizeof(L_169)); OpCode__ctor_m3329993003(&L_169, ((int32_t)18266623), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I8_169(L_169); OpCode_t2247480392 L_170; memset(&L_170, 0, sizeof(L_170)); OpCode__ctor_m3329993003(&L_170, ((int32_t)18266879), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U8_170(L_170); OpCode_t2247480392 L_171; memset(&L_171, 0, sizeof(L_171)); OpCode__ctor_m3329993003(&L_171, ((int32_t)18203391), ((int32_t)84739329), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Refanyval_171(L_171); OpCode_t2247480392 L_172; memset(&L_172, 0, sizeof(L_172)); OpCode__ctor_m3329993003(&L_172, ((int32_t)18400255), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ckfinite_172(L_172); OpCode_t2247480392 L_173; memset(&L_173, 0, sizeof(L_173)); OpCode__ctor_m3329993003(&L_173, ((int32_t)51627775), ((int32_t)84739329), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Mkrefany_173(L_173); OpCode_t2247480392 L_174; memset(&L_174, 0, sizeof(L_174)); OpCode__ctor_m3329993003(&L_174, ((int32_t)1429759), ((int32_t)84673793), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldtoken_174(L_174); OpCode_t2247480392 L_175; memset(&L_175, 0, sizeof(L_175)); OpCode__ctor_m3329993003(&L_175, ((int32_t)18207231), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_U2_175(L_175); OpCode_t2247480392 L_176; memset(&L_176, 0, sizeof(L_176)); OpCode__ctor_m3329993003(&L_176, ((int32_t)18207487), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_U1_176(L_176); OpCode_t2247480392 L_177; memset(&L_177, 0, sizeof(L_177)); OpCode__ctor_m3329993003(&L_177, ((int32_t)18207743), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_I_177(L_177); OpCode_t2247480392 L_178; memset(&L_178, 0, sizeof(L_178)); OpCode__ctor_m3329993003(&L_178, ((int32_t)18207999), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_I_178(L_178); OpCode_t2247480392 L_179; memset(&L_179, 0, sizeof(L_179)); OpCode__ctor_m3329993003(&L_179, ((int32_t)18208255), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_Ovf_U_179(L_179); OpCode_t2247480392 L_180; memset(&L_180, 0, sizeof(L_180)); OpCode__ctor_m3329993003(&L_180, ((int32_t)34854655), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Add_Ovf_180(L_180); OpCode_t2247480392 L_181; memset(&L_181, 0, sizeof(L_181)); OpCode__ctor_m3329993003(&L_181, ((int32_t)34854911), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Add_Ovf_Un_181(L_181); OpCode_t2247480392 L_182; memset(&L_182, 0, sizeof(L_182)); OpCode__ctor_m3329993003(&L_182, ((int32_t)34855167), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Mul_Ovf_182(L_182); OpCode_t2247480392 L_183; memset(&L_183, 0, sizeof(L_183)); OpCode__ctor_m3329993003(&L_183, ((int32_t)34855423), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Mul_Ovf_Un_183(L_183); OpCode_t2247480392 L_184; memset(&L_184, 0, sizeof(L_184)); OpCode__ctor_m3329993003(&L_184, ((int32_t)34855679), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Sub_Ovf_184(L_184); OpCode_t2247480392 L_185; memset(&L_185, 0, sizeof(L_185)); OpCode__ctor_m3329993003(&L_185, ((int32_t)34855935), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Sub_Ovf_Un_185(L_185); OpCode_t2247480392 L_186; memset(&L_186, 0, sizeof(L_186)); OpCode__ctor_m3329993003(&L_186, ((int32_t)1236223), ((int32_t)117769473), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Endfinally_186(L_186); OpCode_t2247480392 L_187; memset(&L_187, 0, sizeof(L_187)); OpCode__ctor_m3329993003(&L_187, ((int32_t)1236479), ((int32_t)1281), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Leave_187(L_187); OpCode_t2247480392 L_188; memset(&L_188, 0, sizeof(L_188)); OpCode__ctor_m3329993003(&L_188, ((int32_t)1236735), ((int32_t)984321), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Leave_S_188(L_188); OpCode_t2247480392 L_189; memset(&L_189, 0, sizeof(L_189)); OpCode__ctor_m3329993003(&L_189, ((int32_t)85123071), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stind_I_189(L_189); OpCode_t2247480392 L_190; memset(&L_190, 0, sizeof(L_190)); OpCode__ctor_m3329993003(&L_190, ((int32_t)18211071), ((int32_t)84215041), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Conv_U_190(L_190); OpCode_t2247480392 L_191; memset(&L_191, 0, sizeof(L_191)); OpCode__ctor_m3329993003(&L_191, ((int32_t)1243391), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix7_191(L_191); OpCode_t2247480392 L_192; memset(&L_192, 0, sizeof(L_192)); OpCode__ctor_m3329993003(&L_192, ((int32_t)1243647), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix6_192(L_192); OpCode_t2247480392 L_193; memset(&L_193, 0, sizeof(L_193)); OpCode__ctor_m3329993003(&L_193, ((int32_t)1243903), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix5_193(L_193); OpCode_t2247480392 L_194; memset(&L_194, 0, sizeof(L_194)); OpCode__ctor_m3329993003(&L_194, ((int32_t)1244159), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix4_194(L_194); OpCode_t2247480392 L_195; memset(&L_195, 0, sizeof(L_195)); OpCode__ctor_m3329993003(&L_195, ((int32_t)1244415), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix3_195(L_195); OpCode_t2247480392 L_196; memset(&L_196, 0, sizeof(L_196)); OpCode__ctor_m3329993003(&L_196, ((int32_t)1244671), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix2_196(L_196); OpCode_t2247480392 L_197; memset(&L_197, 0, sizeof(L_197)); OpCode__ctor_m3329993003(&L_197, ((int32_t)1244927), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefix1_197(L_197); OpCode_t2247480392 L_198; memset(&L_198, 0, sizeof(L_198)); OpCode__ctor_m3329993003(&L_198, ((int32_t)1245183), ((int32_t)67437057), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Prefixref_198(L_198); OpCode_t2247480392 L_199; memset(&L_199, 0, sizeof(L_199)); OpCode__ctor_m3329993003(&L_199, ((int32_t)1376510), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Arglist_199(L_199); OpCode_t2247480392 L_200; memset(&L_200, 0, sizeof(L_200)); OpCode__ctor_m3329993003(&L_200, ((int32_t)34931198), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ceq_200(L_200); OpCode_t2247480392 L_201; memset(&L_201, 0, sizeof(L_201)); OpCode__ctor_m3329993003(&L_201, ((int32_t)34931454), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Cgt_201(L_201); OpCode_t2247480392 L_202; memset(&L_202, 0, sizeof(L_202)); OpCode__ctor_m3329993003(&L_202, ((int32_t)34931710), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Cgt_Un_202(L_202); OpCode_t2247480392 L_203; memset(&L_203, 0, sizeof(L_203)); OpCode__ctor_m3329993003(&L_203, ((int32_t)34931966), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Clt_203(L_203); OpCode_t2247480392 L_204; memset(&L_204, 0, sizeof(L_204)); OpCode__ctor_m3329993003(&L_204, ((int32_t)34932222), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Clt_Un_204(L_204); OpCode_t2247480392 L_205; memset(&L_205, 0, sizeof(L_205)); OpCode__ctor_m3329993003(&L_205, ((int32_t)1378046), ((int32_t)84149506), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldftn_205(L_205); OpCode_t2247480392 L_206; memset(&L_206, 0, sizeof(L_206)); OpCode__ctor_m3329993003(&L_206, ((int32_t)169150462), ((int32_t)84149506), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldvirtftn_206(L_206); OpCode_t2247480392 L_207; memset(&L_207, 0, sizeof(L_207)); OpCode__ctor_m3329993003(&L_207, ((int32_t)1247742), ((int32_t)84804866), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarg_207(L_207); OpCode_t2247480392 L_208; memset(&L_208, 0, sizeof(L_208)); OpCode__ctor_m3329993003(&L_208, ((int32_t)1379070), ((int32_t)84804866), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldarga_208(L_208); OpCode_t2247480392 L_209; memset(&L_209, 0, sizeof(L_209)); OpCode__ctor_m3329993003(&L_209, ((int32_t)17959934), ((int32_t)84804866), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Starg_209(L_209); OpCode_t2247480392 L_210; memset(&L_210, 0, sizeof(L_210)); OpCode__ctor_m3329993003(&L_210, ((int32_t)1248510), ((int32_t)84804866), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloc_210(L_210); OpCode_t2247480392 L_211; memset(&L_211, 0, sizeof(L_211)); OpCode__ctor_m3329993003(&L_211, ((int32_t)1379838), ((int32_t)84804866), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Ldloca_211(L_211); OpCode_t2247480392 L_212; memset(&L_212, 0, sizeof(L_212)); OpCode__ctor_m3329993003(&L_212, ((int32_t)17960702), ((int32_t)84804866), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Stloc_212(L_212); OpCode_t2247480392 L_213; memset(&L_213, 0, sizeof(L_213)); OpCode__ctor_m3329993003(&L_213, ((int32_t)51711998), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Localloc_213(L_213); OpCode_t2247480392 L_214; memset(&L_214, 0, sizeof(L_214)); OpCode__ctor_m3329993003(&L_214, ((int32_t)51515902), ((int32_t)117769474), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Endfilter_214(L_214); OpCode_t2247480392 L_215; memset(&L_215, 0, sizeof(L_215)); OpCode__ctor_m3329993003(&L_215, ((int32_t)1184510), ((int32_t)68158466), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Unaligned_215(L_215); OpCode_t2247480392 L_216; memset(&L_216, 0, sizeof(L_216)); OpCode__ctor_m3329993003(&L_216, ((int32_t)1184766), ((int32_t)67437570), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Volatile_216(L_216); OpCode_t2247480392 L_217; memset(&L_217, 0, sizeof(L_217)); OpCode__ctor_m3329993003(&L_217, ((int32_t)1185022), ((int32_t)67437570), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Tailcall_217(L_217); OpCode_t2247480392 L_218; memset(&L_218, 0, sizeof(L_218)); OpCode__ctor_m3329993003(&L_218, ((int32_t)51516926), ((int32_t)84738818), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Initobj_218(L_218); OpCode_t2247480392 L_219; memset(&L_219, 0, sizeof(L_219)); OpCode__ctor_m3329993003(&L_219, ((int32_t)1185534), ((int32_t)67961858), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Constrained_219(L_219); OpCode_t2247480392 L_220; memset(&L_220, 0, sizeof(L_220)); OpCode__ctor_m3329993003(&L_220, ((int32_t)118626302), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Cpblk_220(L_220); OpCode_t2247480392 L_221; memset(&L_221, 0, sizeof(L_221)); OpCode__ctor_m3329993003(&L_221, ((int32_t)118626558), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Initblk_221(L_221); OpCode_t2247480392 L_222; memset(&L_222, 0, sizeof(L_222)); OpCode__ctor_m3329993003(&L_222, ((int32_t)1186558), ((int32_t)134546178), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Rethrow_222(L_222); OpCode_t2247480392 L_223; memset(&L_223, 0, sizeof(L_223)); OpCode__ctor_m3329993003(&L_223, ((int32_t)1383678), ((int32_t)84739330), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Sizeof_223(L_223); OpCode_t2247480392 L_224; memset(&L_224, 0, sizeof(L_224)); OpCode__ctor_m3329993003(&L_224, ((int32_t)18161150), ((int32_t)84215042), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Refanytype_224(L_224); OpCode_t2247480392 L_225; memset(&L_225, 0, sizeof(L_225)); OpCode__ctor_m3329993003(&L_225, ((int32_t)1187582), ((int32_t)67437570), /*hidden argument*/NULL); ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->set_Readonly_225(L_225); return; } } // System.Int32 System.Reflection.Emit.ParameterBuilder::get_Attributes() extern "C" int32_t ParameterBuilder_get_Attributes_m2421099277 (ParameterBuilder_t3344728474 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_attrs_1(); return L_0; } } // System.String System.Reflection.Emit.ParameterBuilder::get_Name() extern "C" String_t* ParameterBuilder_get_Name_m4058709354 (ParameterBuilder_t3344728474 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } // System.Int32 System.Reflection.Emit.ParameterBuilder::get_Position() extern "C" int32_t ParameterBuilder_get_Position_m4023585547 (ParameterBuilder_t3344728474 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_position_2(); return L_0; } } // System.Reflection.TypeAttributes System.Reflection.Emit.TypeBuilder::GetAttributeFlagsImpl() extern "C" int32_t TypeBuilder_GetAttributeFlagsImpl_m2593449699 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_attrs_17(); return L_0; } } // System.Void System.Reflection.Emit.TypeBuilder::setup_internal_class(System.Reflection.Emit.TypeBuilder) extern "C" void TypeBuilder_setup_internal_class_m235812026 (TypeBuilder_t3308873219 * __this, TypeBuilder_t3308873219 * ___tb0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*TypeBuilder_setup_internal_class_m235812026_ftn) (TypeBuilder_t3308873219 *, TypeBuilder_t3308873219 *); ((TypeBuilder_setup_internal_class_m235812026_ftn)mscorlib::System::Reflection::Emit::TypeBuilder::setup_internal_class) (__this, ___tb0); } // System.Void System.Reflection.Emit.TypeBuilder::create_generic_class() extern "C" void TypeBuilder_create_generic_class_m986834171 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*TypeBuilder_create_generic_class_m986834171_ftn) (TypeBuilder_t3308873219 *); ((TypeBuilder_create_generic_class_m986834171_ftn)mscorlib::System::Reflection::Emit::TypeBuilder::create_generic_class) (__this); } // System.Reflection.Assembly System.Reflection.Emit.TypeBuilder::get_Assembly() extern "C" Assembly_t4268412390 * TypeBuilder_get_Assembly_m492491492 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { ModuleBuilder_t4156028127 * L_0 = __this->get_pmodule_18(); NullCheck(L_0); Assembly_t4268412390 * L_1 = Module_get_Assembly_m3690289982(L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.Emit.TypeBuilder::get_AssemblyQualifiedName() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral811305474; extern const uint32_t TypeBuilder_get_AssemblyQualifiedName_m2097258567_MetadataUsageId; extern "C" String_t* TypeBuilder_get_AssemblyQualifiedName_m2097258567 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_get_AssemblyQualifiedName_m2097258567_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_fullname_21(); Assembly_t4268412390 * L_1 = TypeBuilder_get_Assembly_m492491492(__this, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Reflection.Assembly::get_FullName() */, L_1); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = String_Concat_m612901809(NULL /*static, unused*/, L_0, _stringLiteral811305474, L_2, /*hidden argument*/NULL); return L_3; } } // System.Type System.Reflection.Emit.TypeBuilder::get_BaseType() extern "C" Type_t * TypeBuilder_get_BaseType_m4088672180 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_parent_10(); return L_0; } } // System.Type System.Reflection.Emit.TypeBuilder::get_DeclaringType() extern "C" Type_t * TypeBuilder_get_DeclaringType_m3236598700 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_nesting_type_11(); return L_0; } } // System.Type System.Reflection.Emit.TypeBuilder::get_UnderlyingSystemType() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral700545517; extern const uint32_t TypeBuilder_get_UnderlyingSystemType_m392404521_MetadataUsageId; extern "C" Type_t * TypeBuilder_get_UnderlyingSystemType_m392404521 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_get_UnderlyingSystemType_m392404521_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0017; } } { Type_t * L_1 = __this->get_created_20(); NullCheck(L_1); Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(36 /* System.Type System.Type::get_UnderlyingSystemType() */, L_1); return L_2; } IL_0017: { bool L_3 = Type_get_IsEnum_m313908919(__this, /*hidden argument*/NULL); if (!L_3) { goto IL_004a; } } { bool L_4 = TypeBuilder_get_IsCompilerContext_m3623403919(__this, /*hidden argument*/NULL); if (L_4) { goto IL_004a; } } { Type_t * L_5 = __this->get_underlying_type_23(); if (!L_5) { goto IL_003f; } } { Type_t * L_6 = __this->get_underlying_type_23(); return L_6; } IL_003f: { InvalidOperationException_t721527559 * L_7 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_7, _stringLiteral700545517, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_004a: { return __this; } } // System.String System.Reflection.Emit.TypeBuilder::get_FullName() extern "C" String_t* TypeBuilder_get_FullName_m1626507516 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_fullname_21(); return L_0; } } // System.Reflection.Module System.Reflection.Emit.TypeBuilder::get_Module() extern "C" Module_t4282841206 * TypeBuilder_get_Module_m1668298460 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { ModuleBuilder_t4156028127 * L_0 = __this->get_pmodule_18(); return L_0; } } // System.String System.Reflection.Emit.TypeBuilder::get_Name() extern "C" String_t* TypeBuilder_get_Name_m170882803 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_tname_8(); return L_0; } } // System.String System.Reflection.Emit.TypeBuilder::get_Namespace() extern "C" String_t* TypeBuilder_get_Namespace_m3562783599 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_nspace_9(); return L_0; } } // System.Type System.Reflection.Emit.TypeBuilder::get_ReflectedType() extern "C" Type_t * TypeBuilder_get_ReflectedType_m2504081059 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_nesting_type_11(); return L_0; } } // System.Reflection.ConstructorInfo System.Reflection.Emit.TypeBuilder::GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern const Il2CppType* Il2CppObject_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var; extern Il2CppClass* MethodBaseU5BU5D_t2597254495_il2cpp_TypeInfo_var; extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* ConstructorInfo_t2851816542_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetConstructorImpl_m4192168686_MetadataUsageId; extern "C" ConstructorInfo_t2851816542 * TypeBuilder_GetConstructorImpl_m4192168686 (TypeBuilder_t3308873219 * __this, int32_t ___bindingAttr0, Binder_t3404612058 * ___binder1, int32_t ___callConvention2, TypeU5BU5D_t1664964607* ___types3, ParameterModifierU5BU5D_t963192633* ___modifiers4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetConstructorImpl_m4192168686_MetadataUsageId); s_Il2CppMethodInitialized = true; } ConstructorBuilder_t700974433 * V_0 = NULL; int32_t V_1 = 0; ConstructorBuilder_t700974433 * V_2 = NULL; ConstructorBuilderU5BU5D_t775814140* V_3 = NULL; int32_t V_4 = 0; MethodBaseU5BU5D_t2597254495* V_5 = NULL; ConstructorInfo_t2851816542 * V_6 = NULL; ConstructorBuilderU5BU5D_t775814140* V_7 = NULL; int32_t V_8 = 0; { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); Type_t * L_0 = __this->get_created_20(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Type_t *)L_1)))) { goto IL_0112; } } { ConstructorBuilderU5BU5D_t775814140* L_2 = __this->get_ctors_15(); if (L_2) { goto IL_0028; } } { return (ConstructorInfo_t2851816542 *)NULL; } IL_0028: { V_0 = (ConstructorBuilder_t700974433 *)NULL; V_1 = 0; ConstructorBuilderU5BU5D_t775814140* L_3 = __this->get_ctors_15(); V_3 = L_3; V_4 = 0; goto IL_0064; } IL_003b: { ConstructorBuilderU5BU5D_t775814140* L_4 = V_3; int32_t L_5 = V_4; NullCheck(L_4); int32_t L_6 = L_5; ConstructorBuilder_t700974433 * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_2 = L_7; int32_t L_8 = ___callConvention2; if ((((int32_t)L_8) == ((int32_t)3))) { goto IL_0058; } } { ConstructorBuilder_t700974433 * L_9 = V_2; NullCheck(L_9); int32_t L_10 = ConstructorBuilder_get_CallingConvention_m443074051(L_9, /*hidden argument*/NULL); int32_t L_11 = ___callConvention2; if ((((int32_t)L_10) == ((int32_t)L_11))) { goto IL_0058; } } { goto IL_005e; } IL_0058: { ConstructorBuilder_t700974433 * L_12 = V_2; V_0 = L_12; int32_t L_13 = V_1; V_1 = ((int32_t)((int32_t)L_13+(int32_t)1)); } IL_005e: { int32_t L_14 = V_4; V_4 = ((int32_t)((int32_t)L_14+(int32_t)1)); } IL_0064: { int32_t L_15 = V_4; ConstructorBuilderU5BU5D_t775814140* L_16 = V_3; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_16)->max_length))))))) { goto IL_003b; } } { int32_t L_17 = V_1; if (L_17) { goto IL_0076; } } { return (ConstructorInfo_t2851816542 *)NULL; } IL_0076: { TypeU5BU5D_t1664964607* L_18 = ___types3; if (L_18) { goto IL_008c; } } { int32_t L_19 = V_1; if ((((int32_t)L_19) <= ((int32_t)1))) { goto IL_008a; } } { AmbiguousMatchException_t1406414556 * L_20 = (AmbiguousMatchException_t1406414556 *)il2cpp_codegen_object_new(AmbiguousMatchException_t1406414556_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m2088048346(L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20); } IL_008a: { ConstructorBuilder_t700974433 * L_21 = V_0; return L_21; } IL_008c: { int32_t L_22 = V_1; V_5 = ((MethodBaseU5BU5D_t2597254495*)SZArrayNew(MethodBaseU5BU5D_t2597254495_il2cpp_TypeInfo_var, (uint32_t)L_22)); int32_t L_23 = V_1; if ((!(((uint32_t)L_23) == ((uint32_t)1)))) { goto IL_00a5; } } { MethodBaseU5BU5D_t2597254495* L_24 = V_5; ConstructorBuilder_t700974433 * L_25 = V_0; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_25); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (MethodBase_t904190842 *)L_25); goto IL_00f2; } IL_00a5: { V_1 = 0; ConstructorBuilderU5BU5D_t775814140* L_26 = __this->get_ctors_15(); V_7 = L_26; V_8 = 0; goto IL_00e7; } IL_00b7: { ConstructorBuilderU5BU5D_t775814140* L_27 = V_7; int32_t L_28 = V_8; NullCheck(L_27); int32_t L_29 = L_28; ConstructorBuilder_t700974433 * L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); V_6 = L_30; int32_t L_31 = ___callConvention2; if ((((int32_t)L_31) == ((int32_t)3))) { goto IL_00d7; } } { ConstructorInfo_t2851816542 * L_32 = V_6; NullCheck(L_32); int32_t L_33 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MethodBase::get_CallingConvention() */, L_32); int32_t L_34 = ___callConvention2; if ((((int32_t)L_33) == ((int32_t)L_34))) { goto IL_00d7; } } { goto IL_00e1; } IL_00d7: { MethodBaseU5BU5D_t2597254495* L_35 = V_5; int32_t L_36 = V_1; int32_t L_37 = L_36; V_1 = ((int32_t)((int32_t)L_37+(int32_t)1)); ConstructorInfo_t2851816542 * L_38 = V_6; NullCheck(L_35); ArrayElementTypeCheck (L_35, L_38); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (MethodBase_t904190842 *)L_38); } IL_00e1: { int32_t L_39 = V_8; V_8 = ((int32_t)((int32_t)L_39+(int32_t)1)); } IL_00e7: { int32_t L_40 = V_8; ConstructorBuilderU5BU5D_t775814140* L_41 = V_7; NullCheck(L_41); if ((((int32_t)L_40) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_41)->max_length))))))) { goto IL_00b7; } } IL_00f2: { Binder_t3404612058 * L_42 = ___binder1; if (L_42) { goto IL_00ff; } } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder_t3404612058 * L_43 = Binder_get_DefaultBinder_m965620943(NULL /*static, unused*/, /*hidden argument*/NULL); ___binder1 = L_43; } IL_00ff: { Binder_t3404612058 * L_44 = ___binder1; int32_t L_45 = ___bindingAttr0; MethodBaseU5BU5D_t2597254495* L_46 = V_5; TypeU5BU5D_t1664964607* L_47 = ___types3; ParameterModifierU5BU5D_t963192633* L_48 = ___modifiers4; NullCheck(L_44); MethodBase_t904190842 * L_49 = VirtFuncInvoker4< MethodBase_t904190842 *, int32_t, MethodBaseU5BU5D_t2597254495*, TypeU5BU5D_t1664964607*, ParameterModifierU5BU5D_t963192633* >::Invoke(7 /* System.Reflection.MethodBase System.Reflection.Binder::SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]) */, L_44, L_45, L_46, L_47, L_48); return ((ConstructorInfo_t2851816542 *)CastclassClass(L_49, ConstructorInfo_t2851816542_il2cpp_TypeInfo_var)); } IL_0112: { Type_t * L_50 = __this->get_created_20(); int32_t L_51 = ___bindingAttr0; Binder_t3404612058 * L_52 = ___binder1; int32_t L_53 = ___callConvention2; TypeU5BU5D_t1664964607* L_54 = ___types3; ParameterModifierU5BU5D_t963192633* L_55 = ___modifiers4; NullCheck(L_50); ConstructorInfo_t2851816542 * L_56 = Type_GetConstructor_m835344477(L_50, L_51, L_52, L_53, L_54, L_55, /*hidden argument*/NULL); return L_56; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsDefined(System.Type,System.Boolean) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_IsDefined_m3186251655_MetadataUsageId; extern "C" bool TypeBuilder_IsDefined_m3186251655 (TypeBuilder_t3308873219 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_IsDefined_m3186251655_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (L_0) { goto IL_001c; } } { bool L_1 = TypeBuilder_get_IsCompilerContext_m3623403919(__this, /*hidden argument*/NULL); if (L_1) { goto IL_001c; } } { NotSupportedException_t1793819818 * L_2 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { Type_t * L_3 = ___attributeType0; bool L_4 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_5 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Object[] System.Reflection.Emit.TypeBuilder::GetCustomAttributes(System.Boolean) extern "C" ObjectU5BU5D_t3614634134* TypeBuilder_GetCustomAttributes_m1637538574 (TypeBuilder_t3308873219 * __this, bool ___inherit0, const MethodInfo* method) { { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); Type_t * L_0 = __this->get_created_20(); bool L_1 = ___inherit0; NullCheck(L_0); ObjectU5BU5D_t3614634134* L_2 = VirtFuncInvoker1< ObjectU5BU5D_t3614634134*, bool >::Invoke(12 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Boolean) */, L_0, L_1); return L_2; } } // System.Object[] System.Reflection.Emit.TypeBuilder::GetCustomAttributes(System.Type,System.Boolean) extern "C" ObjectU5BU5D_t3614634134* TypeBuilder_GetCustomAttributes_m2702632361 (TypeBuilder_t3308873219 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); Type_t * L_0 = __this->get_created_20(); Type_t * L_1 = ___attributeType0; bool L_2 = ___inherit1; NullCheck(L_0); ObjectU5BU5D_t3614634134* L_3 = VirtFuncInvoker2< ObjectU5BU5D_t3614634134*, Type_t *, bool >::Invoke(13 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, L_2); return L_3; } } // System.Reflection.Emit.ConstructorBuilder System.Reflection.Emit.TypeBuilder::DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[]) extern "C" ConstructorBuilder_t700974433 * TypeBuilder_DefineConstructor_m3431248509 (TypeBuilder_t3308873219 * __this, int32_t ___attributes0, int32_t ___callingConvention1, TypeU5BU5D_t1664964607* ___parameterTypes2, const MethodInfo* method) { { int32_t L_0 = ___attributes0; int32_t L_1 = ___callingConvention1; TypeU5BU5D_t1664964607* L_2 = ___parameterTypes2; ConstructorBuilder_t700974433 * L_3 = TypeBuilder_DefineConstructor_m2972481149(__this, L_0, L_1, L_2, (TypeU5BU5DU5BU5D_t2318378278*)(TypeU5BU5DU5BU5D_t2318378278*)NULL, (TypeU5BU5DU5BU5D_t2318378278*)(TypeU5BU5DU5BU5D_t2318378278*)NULL, /*hidden argument*/NULL); return L_3; } } // System.Reflection.Emit.ConstructorBuilder System.Reflection.Emit.TypeBuilder::DefineConstructor(System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type[],System.Type[][],System.Type[][]) extern Il2CppClass* ConstructorBuilder_t700974433_il2cpp_TypeInfo_var; extern Il2CppClass* ConstructorBuilderU5BU5D_t775814140_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_DefineConstructor_m2972481149_MetadataUsageId; extern "C" ConstructorBuilder_t700974433 * TypeBuilder_DefineConstructor_m2972481149 (TypeBuilder_t3308873219 * __this, int32_t ___attributes0, int32_t ___callingConvention1, TypeU5BU5D_t1664964607* ___parameterTypes2, TypeU5BU5DU5BU5D_t2318378278* ___requiredCustomModifiers3, TypeU5BU5DU5BU5D_t2318378278* ___optionalCustomModifiers4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_DefineConstructor_m2972481149_MetadataUsageId); s_Il2CppMethodInitialized = true; } ConstructorBuilder_t700974433 * V_0 = NULL; ConstructorBuilderU5BU5D_t775814140* V_1 = NULL; { TypeBuilder_check_not_created_m2785532739(__this, /*hidden argument*/NULL); int32_t L_0 = ___attributes0; int32_t L_1 = ___callingConvention1; TypeU5BU5D_t1664964607* L_2 = ___parameterTypes2; TypeU5BU5DU5BU5D_t2318378278* L_3 = ___requiredCustomModifiers3; TypeU5BU5DU5BU5D_t2318378278* L_4 = ___optionalCustomModifiers4; ConstructorBuilder_t700974433 * L_5 = (ConstructorBuilder_t700974433 *)il2cpp_codegen_object_new(ConstructorBuilder_t700974433_il2cpp_TypeInfo_var); ConstructorBuilder__ctor_m2001998159(L_5, __this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; ConstructorBuilderU5BU5D_t775814140* L_6 = __this->get_ctors_15(); if (!L_6) { goto IL_005a; } } { ConstructorBuilderU5BU5D_t775814140* L_7 = __this->get_ctors_15(); NullCheck(L_7); V_1 = ((ConstructorBuilderU5BU5D_t775814140*)SZArrayNew(ConstructorBuilderU5BU5D_t775814140_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_7)->max_length))))+(int32_t)1)))); ConstructorBuilderU5BU5D_t775814140* L_8 = __this->get_ctors_15(); ConstructorBuilderU5BU5D_t775814140* L_9 = V_1; ConstructorBuilderU5BU5D_t775814140* L_10 = __this->get_ctors_15(); NullCheck(L_10); Array_Copy_m2363740072(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_8, (Il2CppArray *)(Il2CppArray *)L_9, (((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length)))), /*hidden argument*/NULL); ConstructorBuilderU5BU5D_t775814140* L_11 = V_1; ConstructorBuilderU5BU5D_t775814140* L_12 = __this->get_ctors_15(); NullCheck(L_12); ConstructorBuilder_t700974433 * L_13 = V_0; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_13); (L_11)->SetAt(static_cast<il2cpp_array_size_t>((((int32_t)((int32_t)(((Il2CppArray *)L_12)->max_length))))), (ConstructorBuilder_t700974433 *)L_13); ConstructorBuilderU5BU5D_t775814140* L_14 = V_1; __this->set_ctors_15(L_14); goto IL_006f; } IL_005a: { __this->set_ctors_15(((ConstructorBuilderU5BU5D_t775814140*)SZArrayNew(ConstructorBuilderU5BU5D_t775814140_il2cpp_TypeInfo_var, (uint32_t)1))); ConstructorBuilderU5BU5D_t775814140* L_15 = __this->get_ctors_15(); ConstructorBuilder_t700974433 * L_16 = V_0; NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (ConstructorBuilder_t700974433 *)L_16); } IL_006f: { ConstructorBuilder_t700974433 * L_17 = V_0; return L_17; } } // System.Reflection.Emit.ConstructorBuilder System.Reflection.Emit.TypeBuilder::DefineDefaultConstructor(System.Reflection.MethodAttributes) extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppClass* OpCodes_t3494785031_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2507326364; extern const uint32_t TypeBuilder_DefineDefaultConstructor_m2225828699_MetadataUsageId; extern "C" ConstructorBuilder_t700974433 * TypeBuilder_DefineDefaultConstructor_m2225828699 (TypeBuilder_t3308873219 * __this, int32_t ___attributes0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_DefineDefaultConstructor_m2225828699_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; ConstructorInfo_t2851816542 * V_1 = NULL; ConstructorBuilder_t700974433 * V_2 = NULL; ILGenerator_t99948092 * V_3 = NULL; { Type_t * L_0 = __this->get_parent_10(); if (!L_0) { goto IL_0017; } } { Type_t * L_1 = __this->get_parent_10(); V_0 = L_1; goto IL_0028; } IL_0017: { ModuleBuilder_t4156028127 * L_2 = __this->get_pmodule_18(); NullCheck(L_2); AssemblyBuilder_t1646117627 * L_3 = L_2->get_assemblyb_12(); NullCheck(L_3); Type_t * L_4 = L_3->get_corlib_object_type_12(); V_0 = L_4; } IL_0028: { Type_t * L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_6 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); NullCheck(L_5); ConstructorInfo_t2851816542 * L_7 = Type_GetConstructor_m663514781(L_5, ((int32_t)52), (Binder_t3404612058 *)NULL, L_6, (ParameterModifierU5BU5D_t963192633*)(ParameterModifierU5BU5D_t963192633*)NULL, /*hidden argument*/NULL); V_1 = L_7; ConstructorInfo_t2851816542 * L_8 = V_1; if (L_8) { goto IL_0049; } } { NotSupportedException_t1793819818 * L_9 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_9, _stringLiteral2507326364, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_0049: { int32_t L_10 = ___attributes0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_11 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); ConstructorBuilder_t700974433 * L_12 = TypeBuilder_DefineConstructor_m3431248509(__this, L_10, 1, L_11, /*hidden argument*/NULL); V_2 = L_12; ConstructorBuilder_t700974433 * L_13 = V_2; NullCheck(L_13); ILGenerator_t99948092 * L_14 = ConstructorBuilder_GetILGenerator_m1407935730(L_13, /*hidden argument*/NULL); V_3 = L_14; ILGenerator_t99948092 * L_15 = V_3; IL2CPP_RUNTIME_CLASS_INIT(OpCodes_t3494785031_il2cpp_TypeInfo_var); OpCode_t2247480392 L_16 = ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->get_Ldarg_0_2(); NullCheck(L_15); VirtActionInvoker1< OpCode_t2247480392 >::Invoke(4 /* System.Void System.Reflection.Emit.ILGenerator::Emit(System.Reflection.Emit.OpCode) */, L_15, L_16); ILGenerator_t99948092 * L_17 = V_3; OpCode_t2247480392 L_18 = ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->get_Call_39(); ConstructorInfo_t2851816542 * L_19 = V_1; NullCheck(L_17); VirtActionInvoker2< OpCode_t2247480392 , ConstructorInfo_t2851816542 * >::Invoke(5 /* System.Void System.Reflection.Emit.ILGenerator::Emit(System.Reflection.Emit.OpCode,System.Reflection.ConstructorInfo) */, L_17, L_18, L_19); ILGenerator_t99948092 * L_20 = V_3; OpCode_t2247480392 L_21 = ((OpCodes_t3494785031_StaticFields*)OpCodes_t3494785031_il2cpp_TypeInfo_var->static_fields)->get_Ret_41(); NullCheck(L_20); VirtActionInvoker1< OpCode_t2247480392 >::Invoke(4 /* System.Void System.Reflection.Emit.ILGenerator::Emit(System.Reflection.Emit.OpCode) */, L_20, L_21); ConstructorBuilder_t700974433 * L_22 = V_2; return L_22; } } // System.Type System.Reflection.Emit.TypeBuilder::create_runtime_class(System.Reflection.Emit.TypeBuilder) extern "C" Type_t * TypeBuilder_create_runtime_class_m2719530260 (TypeBuilder_t3308873219 * __this, TypeBuilder_t3308873219 * ___tb0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Type_t * (*TypeBuilder_create_runtime_class_m2719530260_ftn) (TypeBuilder_t3308873219 *, TypeBuilder_t3308873219 *); return ((TypeBuilder_create_runtime_class_m2719530260_ftn)mscorlib::System::Reflection::Emit::TypeBuilder::create_runtime_class) (__this, ___tb0); } // System.Boolean System.Reflection.Emit.TypeBuilder::is_nested_in(System.Type) extern "C" bool TypeBuilder_is_nested_in_m3557898035 (TypeBuilder_t3308873219 * __this, Type_t * ___t0, const MethodInfo* method) { { goto IL_0016; } IL_0005: { Type_t * L_0 = ___t0; if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(TypeBuilder_t3308873219 *)__this)))) { goto IL_000e; } } { return (bool)1; } IL_000e: { Type_t * L_1 = ___t0; NullCheck(L_1); Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Type::get_DeclaringType() */, L_1); ___t0 = L_2; } IL_0016: { Type_t * L_3 = ___t0; if (L_3) { goto IL_0005; } } { return (bool)0; } } // System.Boolean System.Reflection.Emit.TypeBuilder::has_ctor_method() extern Il2CppClass* ConstructorInfo_t2851816542_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_has_ctor_method_m3449702467_MetadataUsageId; extern "C" bool TypeBuilder_has_ctor_method_m3449702467 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_has_ctor_method_m3449702467_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; MethodBuilder_t644187984 * V_2 = NULL; { V_0 = ((int32_t)6144); V_1 = 0; goto IL_003f; } IL_000d: { MethodBuilderU5BU5D_t4238041457* L_0 = __this->get_methods_14(); int32_t L_1 = V_1; NullCheck(L_0); int32_t L_2 = L_1; MethodBuilder_t644187984 * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); V_2 = L_3; MethodBuilder_t644187984 * L_4 = V_2; NullCheck(L_4); String_t* L_5 = MethodBuilder_get_Name_m845253610(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t2851816542_il2cpp_TypeInfo_var); String_t* L_6 = ((ConstructorInfo_t2851816542_StaticFields*)ConstructorInfo_t2851816542_il2cpp_TypeInfo_var->static_fields)->get_ConstructorName_0(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Equality_m1790663636(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_003b; } } { MethodBuilder_t644187984 * L_8 = V_2; NullCheck(L_8); int32_t L_9 = MethodBuilder_get_Attributes_m3678061338(L_8, /*hidden argument*/NULL); int32_t L_10 = V_0; int32_t L_11 = V_0; if ((!(((uint32_t)((int32_t)((int32_t)L_9&(int32_t)L_10))) == ((uint32_t)L_11)))) { goto IL_003b; } } { return (bool)1; } IL_003b: { int32_t L_12 = V_1; V_1 = ((int32_t)((int32_t)L_12+(int32_t)1)); } IL_003f: { int32_t L_13 = V_1; int32_t L_14 = __this->get_num_methods_13(); if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_000d; } } { return (bool)0; } } // System.Type System.Reflection.Emit.TypeBuilder::CreateType() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* TypeBuilder_t3308873219_il2cpp_TypeInfo_var; extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppClass* TypeLoadException_t723359155_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral216645436; extern Il2CppCodeGenString* _stringLiteral2411675321; extern Il2CppCodeGenString* _stringLiteral2625238862; extern Il2CppCodeGenString* _stringLiteral2961462794; extern Il2CppCodeGenString* _stringLiteral159398136; extern Il2CppCodeGenString* _stringLiteral959906687; extern const uint32_t TypeBuilder_CreateType_m4126056124_MetadataUsageId; extern "C" Type_t * TypeBuilder_CreateType_m4126056124 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_CreateType_m4126056124_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldBuilder_t2784804005 * V_0 = NULL; FieldBuilderU5BU5D_t867683112* V_1 = NULL; int32_t V_2 = 0; Type_t * V_3 = NULL; TypeBuilder_t3308873219 * V_4 = NULL; bool V_5 = false; int32_t V_6 = 0; MethodBuilder_t644187984 * V_7 = NULL; ConstructorBuilder_t700974433 * V_8 = NULL; ConstructorBuilderU5BU5D_t775814140* V_9 = NULL; int32_t V_10 = 0; { bool L_0 = __this->get_createTypeCalled_22(); if (!L_0) { goto IL_0012; } } { Type_t * L_1 = __this->get_created_20(); return L_1; } IL_0012: { bool L_2 = Type_get_IsInterface_m3583817465(__this, /*hidden argument*/NULL); if (L_2) { goto IL_0069; } } { Type_t * L_3 = __this->get_parent_10(); if (L_3) { goto IL_0069; } } { ModuleBuilder_t4156028127 * L_4 = __this->get_pmodule_18(); NullCheck(L_4); AssemblyBuilder_t1646117627 * L_5 = L_4->get_assemblyb_12(); NullCheck(L_5); Type_t * L_6 = L_5->get_corlib_object_type_12(); if ((((Il2CppObject*)(TypeBuilder_t3308873219 *)__this) == ((Il2CppObject*)(Type_t *)L_6))) { goto IL_0069; } } { String_t* L_7 = TypeBuilder_get_FullName_m1626507516(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_8 = String_op_Inequality_m304203149(NULL /*static, unused*/, L_7, _stringLiteral216645436, /*hidden argument*/NULL); if (!L_8) { goto IL_0069; } } { ModuleBuilder_t4156028127 * L_9 = __this->get_pmodule_18(); NullCheck(L_9); AssemblyBuilder_t1646117627 * L_10 = L_9->get_assemblyb_12(); NullCheck(L_10); Type_t * L_11 = L_10->get_corlib_object_type_12(); TypeBuilder_SetParent_m387557893(__this, L_11, /*hidden argument*/NULL); } IL_0069: { TypeBuilder_create_generic_class_m986834171(__this, /*hidden argument*/NULL); FieldBuilderU5BU5D_t867683112* L_12 = __this->get_fields_16(); if (!L_12) { goto IL_010c; } } { FieldBuilderU5BU5D_t867683112* L_13 = __this->get_fields_16(); V_1 = L_13; V_2 = 0; goto IL_0103; } IL_0088: { FieldBuilderU5BU5D_t867683112* L_14 = V_1; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; FieldBuilder_t2784804005 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_0 = L_17; FieldBuilder_t2784804005 * L_18 = V_0; if (L_18) { goto IL_0097; } } { goto IL_00ff; } IL_0097: { FieldBuilder_t2784804005 * L_19 = V_0; NullCheck(L_19); Type_t * L_20 = FieldBuilder_get_FieldType_m2267463269(L_19, /*hidden argument*/NULL); V_3 = L_20; FieldBuilder_t2784804005 * L_21 = V_0; NullCheck(L_21); bool L_22 = FieldInfo_get_IsStatic_m1411173225(L_21, /*hidden argument*/NULL); if (L_22) { goto IL_00ff; } } { Type_t * L_23 = V_3; if (!((TypeBuilder_t3308873219 *)IsInstSealed(L_23, TypeBuilder_t3308873219_il2cpp_TypeInfo_var))) { goto IL_00ff; } } { Type_t * L_24 = V_3; NullCheck(L_24); bool L_25 = Type_get_IsValueType_m1733572463(L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00ff; } } { Type_t * L_26 = V_3; if ((((Il2CppObject*)(Type_t *)L_26) == ((Il2CppObject*)(TypeBuilder_t3308873219 *)__this))) { goto IL_00ff; } } { Type_t * L_27 = V_3; bool L_28 = TypeBuilder_is_nested_in_m3557898035(__this, L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_00ff; } } { Type_t * L_29 = V_3; V_4 = ((TypeBuilder_t3308873219 *)CastclassSealed(L_29, TypeBuilder_t3308873219_il2cpp_TypeInfo_var)); TypeBuilder_t3308873219 * L_30 = V_4; NullCheck(L_30); bool L_31 = TypeBuilder_get_is_created_m736553860(L_30, /*hidden argument*/NULL); if (L_31) { goto IL_00ff; } } { AppDomain_t2719102437 * L_32 = AppDomain_get_CurrentDomain_m3432767403(NULL /*static, unused*/, /*hidden argument*/NULL); TypeBuilder_t3308873219 * L_33 = V_4; NullCheck(L_32); AppDomain_DoTypeResolve_m381738210(L_32, L_33, /*hidden argument*/NULL); TypeBuilder_t3308873219 * L_34 = V_4; NullCheck(L_34); bool L_35 = TypeBuilder_get_is_created_m736553860(L_34, /*hidden argument*/NULL); if (L_35) { goto IL_00ff; } } IL_00ff: { int32_t L_36 = V_2; V_2 = ((int32_t)((int32_t)L_36+(int32_t)1)); } IL_0103: { int32_t L_37 = V_2; FieldBuilderU5BU5D_t867683112* L_38 = V_1; NullCheck(L_38); if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_38)->max_length))))))) { goto IL_0088; } } IL_010c: { Type_t * L_39 = __this->get_parent_10(); if (!L_39) { goto IL_0162; } } { Type_t * L_40 = __this->get_parent_10(); NullCheck(L_40); bool L_41 = Type_get_IsSealed_m2380985836(L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_0162; } } { ObjectU5BU5D_t3614634134* L_42 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)5)); NullCheck(L_42); ArrayElementTypeCheck (L_42, _stringLiteral2411675321); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)_stringLiteral2411675321); ObjectU5BU5D_t3614634134* L_43 = L_42; String_t* L_44 = TypeBuilder_get_FullName_m1626507516(__this, /*hidden argument*/NULL); NullCheck(L_43); ArrayElementTypeCheck (L_43, L_44); (L_43)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_44); ObjectU5BU5D_t3614634134* L_45 = L_43; NullCheck(L_45); ArrayElementTypeCheck (L_45, _stringLiteral2625238862); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)_stringLiteral2625238862); ObjectU5BU5D_t3614634134* L_46 = L_45; Assembly_t4268412390 * L_47 = TypeBuilder_get_Assembly_m492491492(__this, /*hidden argument*/NULL); NullCheck(L_46); ArrayElementTypeCheck (L_46, L_47); (L_46)->SetAt(static_cast<il2cpp_array_size_t>(3), (Il2CppObject *)L_47); ObjectU5BU5D_t3614634134* L_48 = L_46; NullCheck(L_48); ArrayElementTypeCheck (L_48, _stringLiteral2961462794); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(4), (Il2CppObject *)_stringLiteral2961462794); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_49 = String_Concat_m3881798623(NULL /*static, unused*/, L_48, /*hidden argument*/NULL); TypeLoadException_t723359155 * L_50 = (TypeLoadException_t723359155 *)il2cpp_codegen_object_new(TypeLoadException_t723359155_il2cpp_TypeInfo_var); TypeLoadException__ctor_m1903359728(L_50, L_49, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_50); } IL_0162: { Type_t * L_51 = __this->get_parent_10(); ModuleBuilder_t4156028127 * L_52 = __this->get_pmodule_18(); NullCheck(L_52); AssemblyBuilder_t1646117627 * L_53 = L_52->get_assemblyb_12(); NullCheck(L_53); Type_t * L_54 = L_53->get_corlib_enum_type_14(); if ((!(((Il2CppObject*)(Type_t *)L_51) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01c3; } } { MethodBuilderU5BU5D_t4238041457* L_55 = __this->get_methods_14(); if (!L_55) { goto IL_01c3; } } { ObjectU5BU5D_t3614634134* L_56 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)5)); NullCheck(L_56); ArrayElementTypeCheck (L_56, _stringLiteral2411675321); (L_56)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)_stringLiteral2411675321); ObjectU5BU5D_t3614634134* L_57 = L_56; String_t* L_58 = TypeBuilder_get_FullName_m1626507516(__this, /*hidden argument*/NULL); NullCheck(L_57); ArrayElementTypeCheck (L_57, L_58); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_58); ObjectU5BU5D_t3614634134* L_59 = L_57; NullCheck(L_59); ArrayElementTypeCheck (L_59, _stringLiteral2625238862); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)_stringLiteral2625238862); ObjectU5BU5D_t3614634134* L_60 = L_59; Assembly_t4268412390 * L_61 = TypeBuilder_get_Assembly_m492491492(__this, /*hidden argument*/NULL); NullCheck(L_60); ArrayElementTypeCheck (L_60, L_61); (L_60)->SetAt(static_cast<il2cpp_array_size_t>(3), (Il2CppObject *)L_61); ObjectU5BU5D_t3614634134* L_62 = L_60; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral159398136); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(4), (Il2CppObject *)_stringLiteral159398136); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_63 = String_Concat_m3881798623(NULL /*static, unused*/, L_62, /*hidden argument*/NULL); TypeLoadException_t723359155 * L_64 = (TypeLoadException_t723359155 *)il2cpp_codegen_object_new(TypeLoadException_t723359155_il2cpp_TypeInfo_var); TypeLoadException__ctor_m1903359728(L_64, L_63, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_64); } IL_01c3: { MethodBuilderU5BU5D_t4238041457* L_65 = __this->get_methods_14(); if (!L_65) { goto IL_0232; } } { bool L_66 = Type_get_IsAbstract_m2532060002(__this, /*hidden argument*/NULL); V_5 = (bool)((((int32_t)L_66) == ((int32_t)0))? 1 : 0); V_6 = 0; goto IL_0225; } IL_01e1: { MethodBuilderU5BU5D_t4238041457* L_67 = __this->get_methods_14(); int32_t L_68 = V_6; NullCheck(L_67); int32_t L_69 = L_68; MethodBuilder_t644187984 * L_70 = (L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_69)); V_7 = L_70; bool L_71 = V_5; if (!L_71) { goto IL_0211; } } { MethodBuilder_t644187984 * L_72 = V_7; NullCheck(L_72); bool L_73 = MethodBase_get_IsAbstract_m3521819231(L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_0211; } } { MethodBuilder_t644187984 * L_74 = V_7; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_75 = String_Concat_m56707527(NULL /*static, unused*/, _stringLiteral959906687, L_74, /*hidden argument*/NULL); InvalidOperationException_t721527559 * L_76 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_76, L_75, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_76); } IL_0211: { MethodBuilder_t644187984 * L_77 = V_7; NullCheck(L_77); MethodBuilder_check_override_m3042345804(L_77, /*hidden argument*/NULL); MethodBuilder_t644187984 * L_78 = V_7; NullCheck(L_78); MethodBuilder_fixup_m4217981161(L_78, /*hidden argument*/NULL); int32_t L_79 = V_6; V_6 = ((int32_t)((int32_t)L_79+(int32_t)1)); } IL_0225: { int32_t L_80 = V_6; int32_t L_81 = __this->get_num_methods_13(); if ((((int32_t)L_80) < ((int32_t)L_81))) { goto IL_01e1; } } IL_0232: { bool L_82 = Type_get_IsInterface_m3583817465(__this, /*hidden argument*/NULL); if (L_82) { goto IL_0297; } } { bool L_83 = Type_get_IsValueType_m1733572463(__this, /*hidden argument*/NULL); if (L_83) { goto IL_0297; } } { ConstructorBuilderU5BU5D_t775814140* L_84 = __this->get_ctors_15(); if (L_84) { goto IL_0297; } } { String_t* L_85 = __this->get_tname_8(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_86 = String_op_Inequality_m304203149(NULL /*static, unused*/, L_85, _stringLiteral216645436, /*hidden argument*/NULL); if (!L_86) { goto IL_0297; } } { int32_t L_87 = TypeBuilder_GetAttributeFlagsImpl_m2593449699(__this, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_87&(int32_t)((int32_t)128)))|(int32_t)((int32_t)256)))) == ((int32_t)((int32_t)384)))) { goto IL_0297; } } { bool L_88 = TypeBuilder_has_ctor_method_m3449702467(__this, /*hidden argument*/NULL); if (L_88) { goto IL_0297; } } { TypeBuilder_DefineDefaultConstructor_m2225828699(__this, 6, /*hidden argument*/NULL); } IL_0297: { ConstructorBuilderU5BU5D_t775814140* L_89 = __this->get_ctors_15(); if (!L_89) { goto IL_02d1; } } { ConstructorBuilderU5BU5D_t775814140* L_90 = __this->get_ctors_15(); V_9 = L_90; V_10 = 0; goto IL_02c6; } IL_02b2: { ConstructorBuilderU5BU5D_t775814140* L_91 = V_9; int32_t L_92 = V_10; NullCheck(L_91); int32_t L_93 = L_92; ConstructorBuilder_t700974433 * L_94 = (L_91)->GetAt(static_cast<il2cpp_array_size_t>(L_93)); V_8 = L_94; ConstructorBuilder_t700974433 * L_95 = V_8; NullCheck(L_95); ConstructorBuilder_fixup_m836985654(L_95, /*hidden argument*/NULL); int32_t L_96 = V_10; V_10 = ((int32_t)((int32_t)L_96+(int32_t)1)); } IL_02c6: { int32_t L_97 = V_10; ConstructorBuilderU5BU5D_t775814140* L_98 = V_9; NullCheck(L_98); if ((((int32_t)L_97) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_98)->max_length))))))) { goto IL_02b2; } } IL_02d1: { __this->set_createTypeCalled_22((bool)1); Type_t * L_99 = TypeBuilder_create_runtime_class_m2719530260(__this, __this, /*hidden argument*/NULL); __this->set_created_20(L_99); Type_t * L_100 = __this->get_created_20(); if (!L_100) { goto IL_02f7; } } { Type_t * L_101 = __this->get_created_20(); return L_101; } IL_02f7: { return __this; } } // System.Reflection.ConstructorInfo[] System.Reflection.Emit.TypeBuilder::GetConstructors(System.Reflection.BindingFlags) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetConstructors_m774120094_MetadataUsageId; extern "C" ConstructorInfoU5BU5D_t1996683371* TypeBuilder_GetConstructors_m774120094 (TypeBuilder_t3308873219 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetConstructors_m774120094_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0018; } } { Type_t * L_1 = __this->get_created_20(); int32_t L_2 = ___bindingAttr0; NullCheck(L_1); ConstructorInfoU5BU5D_t1996683371* L_3 = VirtFuncInvoker1< ConstructorInfoU5BU5D_t1996683371*, int32_t >::Invoke(71 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_1, L_2); return L_3; } IL_0018: { bool L_4 = TypeBuilder_get_IsCompilerContext_m3623403919(__this, /*hidden argument*/NULL); if (L_4) { goto IL_0029; } } { NotSupportedException_t1793819818 * L_5 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5); } IL_0029: { int32_t L_6 = ___bindingAttr0; ConstructorInfoU5BU5D_t1996683371* L_7 = TypeBuilder_GetConstructorsInternal_m2426192231(__this, L_6, /*hidden argument*/NULL); return L_7; } } // System.Reflection.ConstructorInfo[] System.Reflection.Emit.TypeBuilder::GetConstructorsInternal(System.Reflection.BindingFlags) extern Il2CppClass* ConstructorInfoU5BU5D_t1996683371_il2cpp_TypeInfo_var; extern Il2CppClass* ArrayList_t4252133567_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetConstructorsInternal_m2426192231_MetadataUsageId; extern "C" ConstructorInfoU5BU5D_t1996683371* TypeBuilder_GetConstructorsInternal_m2426192231 (TypeBuilder_t3308873219 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetConstructorsInternal_m2426192231_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4252133567 * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; ConstructorBuilder_t700974433 * V_3 = NULL; ConstructorBuilderU5BU5D_t775814140* V_4 = NULL; int32_t V_5 = 0; ConstructorInfoU5BU5D_t1996683371* V_6 = NULL; { ConstructorBuilderU5BU5D_t775814140* L_0 = __this->get_ctors_15(); if (L_0) { goto IL_0012; } } { return ((ConstructorInfoU5BU5D_t1996683371*)SZArrayNew(ConstructorInfoU5BU5D_t1996683371_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_0012: { ArrayList_t4252133567 * L_1 = (ArrayList_t4252133567 *)il2cpp_codegen_object_new(ArrayList_t4252133567_il2cpp_TypeInfo_var); ArrayList__ctor_m4012174379(L_1, /*hidden argument*/NULL); V_0 = L_1; ConstructorBuilderU5BU5D_t775814140* L_2 = __this->get_ctors_15(); V_4 = L_2; V_5 = 0; goto IL_00a3; } IL_0028: { ConstructorBuilderU5BU5D_t775814140* L_3 = V_4; int32_t L_4 = V_5; NullCheck(L_3); int32_t L_5 = L_4; ConstructorBuilder_t700974433 * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_3 = L_6; V_1 = (bool)0; ConstructorBuilder_t700974433 * L_7 = V_3; NullCheck(L_7); int32_t L_8 = ConstructorBuilder_get_Attributes_m2137353707(L_7, /*hidden argument*/NULL); V_2 = L_8; int32_t L_9 = V_2; if ((!(((uint32_t)((int32_t)((int32_t)L_9&(int32_t)7))) == ((uint32_t)6)))) { goto IL_0050; } } { int32_t L_10 = ___bindingAttr0; if (!((int32_t)((int32_t)L_10&(int32_t)((int32_t)16)))) { goto IL_004b; } } { V_1 = (bool)1; } IL_004b: { goto IL_005b; } IL_0050: { int32_t L_11 = ___bindingAttr0; if (!((int32_t)((int32_t)L_11&(int32_t)((int32_t)32)))) { goto IL_005b; } } { V_1 = (bool)1; } IL_005b: { bool L_12 = V_1; if (L_12) { goto IL_0066; } } { goto IL_009d; } IL_0066: { V_1 = (bool)0; int32_t L_13 = V_2; if (!((int32_t)((int32_t)L_13&(int32_t)((int32_t)16)))) { goto IL_0080; } } { int32_t L_14 = ___bindingAttr0; if (!((int32_t)((int32_t)L_14&(int32_t)8))) { goto IL_007b; } } { V_1 = (bool)1; } IL_007b: { goto IL_008a; } IL_0080: { int32_t L_15 = ___bindingAttr0; if (!((int32_t)((int32_t)L_15&(int32_t)4))) { goto IL_008a; } } { V_1 = (bool)1; } IL_008a: { bool L_16 = V_1; if (L_16) { goto IL_0095; } } { goto IL_009d; } IL_0095: { ArrayList_t4252133567 * L_17 = V_0; ConstructorBuilder_t700974433 * L_18 = V_3; NullCheck(L_17); VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_18); } IL_009d: { int32_t L_19 = V_5; V_5 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_00a3: { int32_t L_20 = V_5; ConstructorBuilderU5BU5D_t775814140* L_21 = V_4; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_21)->max_length))))))) { goto IL_0028; } } { ArrayList_t4252133567 * L_22 = V_0; NullCheck(L_22); int32_t L_23 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_22); V_6 = ((ConstructorInfoU5BU5D_t1996683371*)SZArrayNew(ConstructorInfoU5BU5D_t1996683371_il2cpp_TypeInfo_var, (uint32_t)L_23)); ArrayList_t4252133567 * L_24 = V_0; ConstructorInfoU5BU5D_t1996683371* L_25 = V_6; NullCheck(L_24); VirtActionInvoker1< Il2CppArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_24, (Il2CppArray *)(Il2CppArray *)L_25); ConstructorInfoU5BU5D_t1996683371* L_26 = V_6; return L_26; } } // System.Type System.Reflection.Emit.TypeBuilder::GetElementType() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetElementType_m3707448372_MetadataUsageId; extern "C" Type_t * TypeBuilder_GetElementType_m3707448372 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetElementType_m3707448372_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.EventInfo System.Reflection.Emit.TypeBuilder::GetEvent(System.String,System.Reflection.BindingFlags) extern "C" EventInfo_t * TypeBuilder_GetEvent_m3876348075 (TypeBuilder_t3308873219 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); Type_t * L_0 = __this->get_created_20(); String_t* L_1 = ___name0; int32_t L_2 = ___bindingAttr1; NullCheck(L_0); EventInfo_t * L_3 = VirtFuncInvoker2< EventInfo_t *, String_t*, int32_t >::Invoke(43 /* System.Reflection.EventInfo System.Type::GetEvent(System.String,System.Reflection.BindingFlags) */, L_0, L_1, L_2); return L_3; } } // System.Reflection.FieldInfo System.Reflection.Emit.TypeBuilder::GetField(System.String,System.Reflection.BindingFlags) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetField_m2112455315_MetadataUsageId; extern "C" FieldInfo_t * TypeBuilder_GetField_m2112455315 (TypeBuilder_t3308873219 * __this, String_t* ___name0, int32_t ___bindingAttr1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetField_m2112455315_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; FieldInfo_t * V_2 = NULL; FieldBuilderU5BU5D_t867683112* V_3 = NULL; int32_t V_4 = 0; { Type_t * L_0 = __this->get_created_20(); if (!L_0) { goto IL_0019; } } { Type_t * L_1 = __this->get_created_20(); String_t* L_2 = ___name0; int32_t L_3 = ___bindingAttr1; NullCheck(L_1); FieldInfo_t * L_4 = VirtFuncInvoker2< FieldInfo_t *, String_t*, int32_t >::Invoke(44 /* System.Reflection.FieldInfo System.Type::GetField(System.String,System.Reflection.BindingFlags) */, L_1, L_2, L_3); return L_4; } IL_0019: { FieldBuilderU5BU5D_t867683112* L_5 = __this->get_fields_16(); if (L_5) { goto IL_0026; } } { return (FieldInfo_t *)NULL; } IL_0026: { FieldBuilderU5BU5D_t867683112* L_6 = __this->get_fields_16(); V_3 = L_6; V_4 = 0; goto IL_00ca; } IL_0035: { FieldBuilderU5BU5D_t867683112* L_7 = V_3; int32_t L_8 = V_4; NullCheck(L_7); int32_t L_9 = L_8; FieldBuilder_t2784804005 * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_2 = L_10; FieldInfo_t * L_11 = V_2; if (L_11) { goto IL_0045; } } { goto IL_00c4; } IL_0045: { FieldInfo_t * L_12 = V_2; NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_12); String_t* L_14 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_15 = String_op_Inequality_m304203149(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_005b; } } { goto IL_00c4; } IL_005b: { V_0 = (bool)0; FieldInfo_t * L_16 = V_2; NullCheck(L_16); int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Reflection.FieldAttributes System.Reflection.FieldInfo::get_Attributes() */, L_16); V_1 = L_17; int32_t L_18 = V_1; if ((!(((uint32_t)((int32_t)((int32_t)L_18&(int32_t)7))) == ((uint32_t)6)))) { goto IL_007d; } } { int32_t L_19 = ___bindingAttr1; if (!((int32_t)((int32_t)L_19&(int32_t)((int32_t)16)))) { goto IL_0078; } } { V_0 = (bool)1; } IL_0078: { goto IL_0088; } IL_007d: { int32_t L_20 = ___bindingAttr1; if (!((int32_t)((int32_t)L_20&(int32_t)((int32_t)32)))) { goto IL_0088; } } { V_0 = (bool)1; } IL_0088: { bool L_21 = V_0; if (L_21) { goto IL_0093; } } { goto IL_00c4; } IL_0093: { V_0 = (bool)0; int32_t L_22 = V_1; if (!((int32_t)((int32_t)L_22&(int32_t)((int32_t)16)))) { goto IL_00ad; } } { int32_t L_23 = ___bindingAttr1; if (!((int32_t)((int32_t)L_23&(int32_t)8))) { goto IL_00a8; } } { V_0 = (bool)1; } IL_00a8: { goto IL_00b7; } IL_00ad: { int32_t L_24 = ___bindingAttr1; if (!((int32_t)((int32_t)L_24&(int32_t)4))) { goto IL_00b7; } } { V_0 = (bool)1; } IL_00b7: { bool L_25 = V_0; if (L_25) { goto IL_00c2; } } { goto IL_00c4; } IL_00c2: { FieldInfo_t * L_26 = V_2; return L_26; } IL_00c4: { int32_t L_27 = V_4; V_4 = ((int32_t)((int32_t)L_27+(int32_t)1)); } IL_00ca: { int32_t L_28 = V_4; FieldBuilderU5BU5D_t867683112* L_29 = V_3; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_29)->max_length))))))) { goto IL_0035; } } { return (FieldInfo_t *)NULL; } } // System.Reflection.FieldInfo[] System.Reflection.Emit.TypeBuilder::GetFields(System.Reflection.BindingFlags) extern Il2CppClass* FieldInfoU5BU5D_t125053523_il2cpp_TypeInfo_var; extern Il2CppClass* ArrayList_t4252133567_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetFields_m3875401338_MetadataUsageId; extern "C" FieldInfoU5BU5D_t125053523* TypeBuilder_GetFields_m3875401338 (TypeBuilder_t3308873219 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetFields_m3875401338_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4252133567 * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; FieldInfo_t * V_3 = NULL; FieldBuilderU5BU5D_t867683112* V_4 = NULL; int32_t V_5 = 0; FieldInfoU5BU5D_t125053523* V_6 = NULL; { Type_t * L_0 = __this->get_created_20(); if (!L_0) { goto IL_0018; } } { Type_t * L_1 = __this->get_created_20(); int32_t L_2 = ___bindingAttr0; NullCheck(L_1); FieldInfoU5BU5D_t125053523* L_3 = VirtFuncInvoker1< FieldInfoU5BU5D_t125053523*, int32_t >::Invoke(45 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_1, L_2); return L_3; } IL_0018: { FieldBuilderU5BU5D_t867683112* L_4 = __this->get_fields_16(); if (L_4) { goto IL_002a; } } { return ((FieldInfoU5BU5D_t125053523*)SZArrayNew(FieldInfoU5BU5D_t125053523_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_002a: { ArrayList_t4252133567 * L_5 = (ArrayList_t4252133567 *)il2cpp_codegen_object_new(ArrayList_t4252133567_il2cpp_TypeInfo_var); ArrayList__ctor_m4012174379(L_5, /*hidden argument*/NULL); V_0 = L_5; FieldBuilderU5BU5D_t867683112* L_6 = __this->get_fields_16(); V_4 = L_6; V_5 = 0; goto IL_00c6; } IL_0040: { FieldBuilderU5BU5D_t867683112* L_7 = V_4; int32_t L_8 = V_5; NullCheck(L_7); int32_t L_9 = L_8; FieldBuilder_t2784804005 * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_3 = L_10; FieldInfo_t * L_11 = V_3; if (L_11) { goto IL_0051; } } { goto IL_00c0; } IL_0051: { V_1 = (bool)0; FieldInfo_t * L_12 = V_3; NullCheck(L_12); int32_t L_13 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Reflection.FieldAttributes System.Reflection.FieldInfo::get_Attributes() */, L_12); V_2 = L_13; int32_t L_14 = V_2; if ((!(((uint32_t)((int32_t)((int32_t)L_14&(int32_t)7))) == ((uint32_t)6)))) { goto IL_0073; } } { int32_t L_15 = ___bindingAttr0; if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)16)))) { goto IL_006e; } } { V_1 = (bool)1; } IL_006e: { goto IL_007e; } IL_0073: { int32_t L_16 = ___bindingAttr0; if (!((int32_t)((int32_t)L_16&(int32_t)((int32_t)32)))) { goto IL_007e; } } { V_1 = (bool)1; } IL_007e: { bool L_17 = V_1; if (L_17) { goto IL_0089; } } { goto IL_00c0; } IL_0089: { V_1 = (bool)0; int32_t L_18 = V_2; if (!((int32_t)((int32_t)L_18&(int32_t)((int32_t)16)))) { goto IL_00a3; } } { int32_t L_19 = ___bindingAttr0; if (!((int32_t)((int32_t)L_19&(int32_t)8))) { goto IL_009e; } } { V_1 = (bool)1; } IL_009e: { goto IL_00ad; } IL_00a3: { int32_t L_20 = ___bindingAttr0; if (!((int32_t)((int32_t)L_20&(int32_t)4))) { goto IL_00ad; } } { V_1 = (bool)1; } IL_00ad: { bool L_21 = V_1; if (L_21) { goto IL_00b8; } } { goto IL_00c0; } IL_00b8: { ArrayList_t4252133567 * L_22 = V_0; FieldInfo_t * L_23 = V_3; NullCheck(L_22); VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_22, L_23); } IL_00c0: { int32_t L_24 = V_5; V_5 = ((int32_t)((int32_t)L_24+(int32_t)1)); } IL_00c6: { int32_t L_25 = V_5; FieldBuilderU5BU5D_t867683112* L_26 = V_4; NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_26)->max_length))))))) { goto IL_0040; } } { ArrayList_t4252133567 * L_27 = V_0; NullCheck(L_27); int32_t L_28 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_27); V_6 = ((FieldInfoU5BU5D_t125053523*)SZArrayNew(FieldInfoU5BU5D_t125053523_il2cpp_TypeInfo_var, (uint32_t)L_28)); ArrayList_t4252133567 * L_29 = V_0; FieldInfoU5BU5D_t125053523* L_30 = V_6; NullCheck(L_29); VirtActionInvoker1< Il2CppArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_29, (Il2CppArray *)(Il2CppArray *)L_30); FieldInfoU5BU5D_t125053523* L_31 = V_6; return L_31; } } // System.Type[] System.Reflection.Emit.TypeBuilder::GetInterfaces() extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetInterfaces_m1818658502_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* TypeBuilder_GetInterfaces_m1818658502 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetInterfaces_m1818658502_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0017; } } { Type_t * L_1 = __this->get_created_20(); NullCheck(L_1); TypeU5BU5D_t1664964607* L_2 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(39 /* System.Type[] System.Type::GetInterfaces() */, L_1); return L_2; } IL_0017: { TypeU5BU5D_t1664964607* L_3 = __this->get_interfaces_12(); if (!L_3) { goto IL_003f; } } { TypeU5BU5D_t1664964607* L_4 = __this->get_interfaces_12(); NullCheck(L_4); V_0 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))))); TypeU5BU5D_t1664964607* L_5 = __this->get_interfaces_12(); TypeU5BU5D_t1664964607* L_6 = V_0; NullCheck((Il2CppArray *)(Il2CppArray *)L_5); Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_5, (Il2CppArray *)(Il2CppArray *)L_6, 0, /*hidden argument*/NULL); TypeU5BU5D_t1664964607* L_7 = V_0; return L_7; } IL_003f: { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_8 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_8; } } // System.Reflection.MethodInfo[] System.Reflection.Emit.TypeBuilder::GetMethodsByName(System.String,System.Reflection.BindingFlags,System.Boolean,System.Type) extern Il2CppClass* ArrayList_t4252133567_il2cpp_TypeInfo_var; extern Il2CppClass* MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetMethodsByName_m229541072_MetadataUsageId; extern "C" MethodInfoU5BU5D_t152480188* TypeBuilder_GetMethodsByName_m229541072 (TypeBuilder_t3308873219 * __this, String_t* ___name0, int32_t ___bindingAttr1, bool ___ignoreCase2, Type_t * ___reflected_type3, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetMethodsByName_m229541072_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodInfoU5BU5D_t152480188* V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; MethodInfoU5BU5D_t152480188* V_3 = NULL; ArrayList_t4252133567 * V_4 = NULL; bool V_5 = false; int32_t V_6 = 0; MethodInfo_t * V_7 = NULL; ArrayList_t4252133567 * V_8 = NULL; MethodInfo_t * V_9 = NULL; MethodInfoU5BU5D_t152480188* V_10 = NULL; int32_t V_11 = 0; MethodInfoU5BU5D_t152480188* V_12 = NULL; int32_t V_13 = 0; { int32_t L_0 = ___bindingAttr1; if (((int32_t)((int32_t)L_0&(int32_t)2))) { goto IL_0142; } } { Type_t * L_1 = __this->get_parent_10(); if (!L_1) { goto IL_0142; } } { Type_t * L_2 = __this->get_parent_10(); int32_t L_3 = ___bindingAttr1; NullCheck(L_2); MethodInfoU5BU5D_t152480188* L_4 = VirtFuncInvoker1< MethodInfoU5BU5D_t152480188*, int32_t >::Invoke(52 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_2, L_3); V_3 = L_4; MethodInfoU5BU5D_t152480188* L_5 = V_3; NullCheck(L_5); ArrayList_t4252133567 * L_6 = (ArrayList_t4252133567 *)il2cpp_codegen_object_new(ArrayList_t4252133567_il2cpp_TypeInfo_var); ArrayList__ctor_m1467563650(L_6, (((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length)))), /*hidden argument*/NULL); V_4 = L_6; int32_t L_7 = ___bindingAttr1; V_5 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)64)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); V_6 = 0; goto IL_00dc; } IL_003e: { MethodInfoU5BU5D_t152480188* L_8 = V_3; int32_t L_9 = V_6; NullCheck(L_8); int32_t L_10 = L_9; MethodInfo_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_7 = L_11; MethodInfo_t * L_12 = V_7; NullCheck(L_12); int32_t L_13 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, L_12); V_2 = L_13; MethodInfo_t * L_14 = V_7; NullCheck(L_14); bool L_15 = MethodBase_get_IsStatic_m1015686807(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0064; } } { bool L_16 = V_5; if (L_16) { goto IL_0064; } } { goto IL_00d6; } IL_0064: { int32_t L_17 = V_2; V_13 = ((int32_t)((int32_t)L_17&(int32_t)7)); int32_t L_18 = V_13; if (((int32_t)((int32_t)L_18-(int32_t)1)) == 0) { goto IL_00af; } if (((int32_t)((int32_t)L_18-(int32_t)1)) == 1) { goto IL_00b6; } if (((int32_t)((int32_t)L_18-(int32_t)1)) == 2) { goto IL_009f; } if (((int32_t)((int32_t)L_18-(int32_t)1)) == 3) { goto IL_00b6; } if (((int32_t)((int32_t)L_18-(int32_t)1)) == 4) { goto IL_00b6; } if (((int32_t)((int32_t)L_18-(int32_t)1)) == 5) { goto IL_008f; } } { goto IL_00b6; } IL_008f: { int32_t L_19 = ___bindingAttr1; V_1 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)16)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_00c6; } IL_009f: { int32_t L_20 = ___bindingAttr1; V_1 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_20&(int32_t)((int32_t)32)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_00c6; } IL_00af: { V_1 = (bool)0; goto IL_00c6; } IL_00b6: { int32_t L_21 = ___bindingAttr1; V_1 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_21&(int32_t)((int32_t)32)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_00c6; } IL_00c6: { bool L_22 = V_1; if (!L_22) { goto IL_00d6; } } { ArrayList_t4252133567 * L_23 = V_4; MethodInfo_t * L_24 = V_7; NullCheck(L_23); VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_23, L_24); } IL_00d6: { int32_t L_25 = V_6; V_6 = ((int32_t)((int32_t)L_25+(int32_t)1)); } IL_00dc: { int32_t L_26 = V_6; MethodInfoU5BU5D_t152480188* L_27 = V_3; NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_27)->max_length))))))) { goto IL_003e; } } { MethodBuilderU5BU5D_t4238041457* L_28 = __this->get_methods_14(); if (L_28) { goto IL_010b; } } { ArrayList_t4252133567 * L_29 = V_4; NullCheck(L_29); int32_t L_30 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_29); V_0 = ((MethodInfoU5BU5D_t152480188*)SZArrayNew(MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var, (uint32_t)L_30)); ArrayList_t4252133567 * L_31 = V_4; MethodInfoU5BU5D_t152480188* L_32 = V_0; NullCheck(L_31); VirtActionInvoker1< Il2CppArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_31, (Il2CppArray *)(Il2CppArray *)L_32); goto IL_013d; } IL_010b: { MethodBuilderU5BU5D_t4238041457* L_33 = __this->get_methods_14(); NullCheck(L_33); ArrayList_t4252133567 * L_34 = V_4; NullCheck(L_34); int32_t L_35 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_34); V_0 = ((MethodInfoU5BU5D_t152480188*)SZArrayNew(MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_33)->max_length))))+(int32_t)L_35)))); ArrayList_t4252133567 * L_36 = V_4; MethodInfoU5BU5D_t152480188* L_37 = V_0; NullCheck(L_36); VirtActionInvoker2< Il2CppArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_36, (Il2CppArray *)(Il2CppArray *)L_37, 0); MethodBuilderU5BU5D_t4238041457* L_38 = __this->get_methods_14(); MethodInfoU5BU5D_t152480188* L_39 = V_0; ArrayList_t4252133567 * L_40 = V_4; NullCheck(L_40); int32_t L_41 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_40); NullCheck((Il2CppArray *)(Il2CppArray *)L_38); Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_38, (Il2CppArray *)(Il2CppArray *)L_39, L_41, /*hidden argument*/NULL); } IL_013d: { goto IL_0149; } IL_0142: { MethodBuilderU5BU5D_t4238041457* L_42 = __this->get_methods_14(); V_0 = (MethodInfoU5BU5D_t152480188*)L_42; } IL_0149: { MethodInfoU5BU5D_t152480188* L_43 = V_0; if (L_43) { goto IL_0156; } } { return ((MethodInfoU5BU5D_t152480188*)SZArrayNew(MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_0156: { ArrayList_t4252133567 * L_44 = (ArrayList_t4252133567 *)il2cpp_codegen_object_new(ArrayList_t4252133567_il2cpp_TypeInfo_var); ArrayList__ctor_m4012174379(L_44, /*hidden argument*/NULL); V_8 = L_44; MethodInfoU5BU5D_t152480188* L_45 = V_0; V_10 = L_45; V_11 = 0; goto IL_0211; } IL_0168: { MethodInfoU5BU5D_t152480188* L_46 = V_10; int32_t L_47 = V_11; NullCheck(L_46); int32_t L_48 = L_47; MethodInfo_t * L_49 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48)); V_9 = L_49; MethodInfo_t * L_50 = V_9; if (L_50) { goto IL_017b; } } { goto IL_020b; } IL_017b: { String_t* L_51 = ___name0; if (!L_51) { goto IL_0199; } } { MethodInfo_t * L_52 = V_9; NullCheck(L_52); String_t* L_53 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_52); String_t* L_54 = ___name0; bool L_55 = ___ignoreCase2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); int32_t L_56 = String_Compare_m2851607672(NULL /*static, unused*/, L_53, L_54, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_0199; } } { goto IL_020b; } IL_0199: { V_1 = (bool)0; MethodInfo_t * L_57 = V_9; NullCheck(L_57); int32_t L_58 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, L_57); V_2 = L_58; int32_t L_59 = V_2; if ((!(((uint32_t)((int32_t)((int32_t)L_59&(int32_t)7))) == ((uint32_t)6)))) { goto IL_01bc; } } { int32_t L_60 = ___bindingAttr1; if (!((int32_t)((int32_t)L_60&(int32_t)((int32_t)16)))) { goto IL_01b7; } } { V_1 = (bool)1; } IL_01b7: { goto IL_01c7; } IL_01bc: { int32_t L_61 = ___bindingAttr1; if (!((int32_t)((int32_t)L_61&(int32_t)((int32_t)32)))) { goto IL_01c7; } } { V_1 = (bool)1; } IL_01c7: { bool L_62 = V_1; if (L_62) { goto IL_01d2; } } { goto IL_020b; } IL_01d2: { V_1 = (bool)0; int32_t L_63 = V_2; if (!((int32_t)((int32_t)L_63&(int32_t)((int32_t)16)))) { goto IL_01ec; } } { int32_t L_64 = ___bindingAttr1; if (!((int32_t)((int32_t)L_64&(int32_t)8))) { goto IL_01e7; } } { V_1 = (bool)1; } IL_01e7: { goto IL_01f6; } IL_01ec: { int32_t L_65 = ___bindingAttr1; if (!((int32_t)((int32_t)L_65&(int32_t)4))) { goto IL_01f6; } } { V_1 = (bool)1; } IL_01f6: { bool L_66 = V_1; if (L_66) { goto IL_0201; } } { goto IL_020b; } IL_0201: { ArrayList_t4252133567 * L_67 = V_8; MethodInfo_t * L_68 = V_9; NullCheck(L_67); VirtFuncInvoker1< int32_t, Il2CppObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_67, L_68); } IL_020b: { int32_t L_69 = V_11; V_11 = ((int32_t)((int32_t)L_69+(int32_t)1)); } IL_0211: { int32_t L_70 = V_11; MethodInfoU5BU5D_t152480188* L_71 = V_10; NullCheck(L_71); if ((((int32_t)L_70) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_71)->max_length))))))) { goto IL_0168; } } { ArrayList_t4252133567 * L_72 = V_8; NullCheck(L_72); int32_t L_73 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_72); V_12 = ((MethodInfoU5BU5D_t152480188*)SZArrayNew(MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var, (uint32_t)L_73)); ArrayList_t4252133567 * L_74 = V_8; MethodInfoU5BU5D_t152480188* L_75 = V_12; NullCheck(L_74); VirtActionInvoker1< Il2CppArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_74, (Il2CppArray *)(Il2CppArray *)L_75); MethodInfoU5BU5D_t152480188* L_76 = V_12; return L_76; } } // System.Reflection.MethodInfo[] System.Reflection.Emit.TypeBuilder::GetMethods(System.Reflection.BindingFlags) extern "C" MethodInfoU5BU5D_t152480188* TypeBuilder_GetMethods_m4196862738 (TypeBuilder_t3308873219 * __this, int32_t ___bindingAttr0, const MethodInfo* method) { { int32_t L_0 = ___bindingAttr0; MethodInfoU5BU5D_t152480188* L_1 = TypeBuilder_GetMethodsByName_m229541072(__this, (String_t*)NULL, L_0, (bool)0, __this, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodInfo System.Reflection.Emit.TypeBuilder::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) extern Il2CppClass* MethodBaseU5BU5D_t2597254495_il2cpp_TypeInfo_var; extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* MethodInfo_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetMethodImpl_m1443640538_MetadataUsageId; extern "C" MethodInfo_t * TypeBuilder_GetMethodImpl_m1443640538 (TypeBuilder_t3308873219 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, int32_t ___callConvention3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetMethodImpl_m1443640538_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; MethodInfoU5BU5D_t152480188* V_1 = NULL; MethodInfo_t * V_2 = NULL; MethodBaseU5BU5D_t2597254495* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; MethodInfo_t * V_6 = NULL; MethodInfoU5BU5D_t152480188* V_7 = NULL; int32_t V_8 = 0; MethodInfo_t * V_9 = NULL; MethodInfoU5BU5D_t152480188* V_10 = NULL; int32_t V_11 = 0; int32_t G_B3_0 = 0; { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); int32_t L_0 = ___bindingAttr1; V_0 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)1))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); String_t* L_1 = ___name0; int32_t L_2 = ___bindingAttr1; bool L_3 = V_0; MethodInfoU5BU5D_t152480188* L_4 = TypeBuilder_GetMethodsByName_m229541072(__this, L_1, L_2, L_3, __this, /*hidden argument*/NULL); V_1 = L_4; V_2 = (MethodInfo_t *)NULL; TypeU5BU5D_t1664964607* L_5 = ___types4; if (!L_5) { goto IL_002d; } } { TypeU5BU5D_t1664964607* L_6 = ___types4; NullCheck(L_6); G_B3_0 = (((int32_t)((int32_t)(((Il2CppArray *)L_6)->max_length)))); goto IL_002e; } IL_002d: { G_B3_0 = 0; } IL_002e: { V_4 = G_B3_0; V_5 = 0; MethodInfoU5BU5D_t152480188* L_7 = V_1; V_7 = L_7; V_8 = 0; goto IL_0072; } IL_003e: { MethodInfoU5BU5D_t152480188* L_8 = V_7; int32_t L_9 = V_8; NullCheck(L_8); int32_t L_10 = L_9; MethodInfo_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_6 = L_11; int32_t L_12 = ___callConvention3; if ((((int32_t)L_12) == ((int32_t)3))) { goto IL_0063; } } { MethodInfo_t * L_13 = V_6; NullCheck(L_13); int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MethodBase::get_CallingConvention() */, L_13); int32_t L_15 = ___callConvention3; int32_t L_16 = ___callConvention3; if ((((int32_t)((int32_t)((int32_t)L_14&(int32_t)L_15))) == ((int32_t)L_16))) { goto IL_0063; } } { goto IL_006c; } IL_0063: { MethodInfo_t * L_17 = V_6; V_2 = L_17; int32_t L_18 = V_5; V_5 = ((int32_t)((int32_t)L_18+(int32_t)1)); } IL_006c: { int32_t L_19 = V_8; V_8 = ((int32_t)((int32_t)L_19+(int32_t)1)); } IL_0072: { int32_t L_20 = V_8; MethodInfoU5BU5D_t152480188* L_21 = V_7; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_21)->max_length))))))) { goto IL_003e; } } { int32_t L_22 = V_5; if (L_22) { goto IL_0086; } } { return (MethodInfo_t *)NULL; } IL_0086: { int32_t L_23 = V_5; if ((!(((uint32_t)L_23) == ((uint32_t)1)))) { goto IL_0097; } } { int32_t L_24 = V_4; if (L_24) { goto IL_0097; } } { MethodInfo_t * L_25 = V_2; return L_25; } IL_0097: { int32_t L_26 = V_5; V_3 = ((MethodBaseU5BU5D_t2597254495*)SZArrayNew(MethodBaseU5BU5D_t2597254495_il2cpp_TypeInfo_var, (uint32_t)L_26)); int32_t L_27 = V_5; if ((!(((uint32_t)L_27) == ((uint32_t)1)))) { goto IL_00b0; } } { MethodBaseU5BU5D_t2597254495* L_28 = V_3; MethodInfo_t * L_29 = V_2; NullCheck(L_28); ArrayElementTypeCheck (L_28, L_29); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (MethodBase_t904190842 *)L_29); goto IL_00ff; } IL_00b0: { V_5 = 0; MethodInfoU5BU5D_t152480188* L_30 = V_1; V_10 = L_30; V_11 = 0; goto IL_00f4; } IL_00be: { MethodInfoU5BU5D_t152480188* L_31 = V_10; int32_t L_32 = V_11; NullCheck(L_31); int32_t L_33 = L_32; MethodInfo_t * L_34 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33)); V_9 = L_34; int32_t L_35 = ___callConvention3; if ((((int32_t)L_35) == ((int32_t)3))) { goto IL_00e3; } } { MethodInfo_t * L_36 = V_9; NullCheck(L_36); int32_t L_37 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MethodBase::get_CallingConvention() */, L_36); int32_t L_38 = ___callConvention3; int32_t L_39 = ___callConvention3; if ((((int32_t)((int32_t)((int32_t)L_37&(int32_t)L_38))) == ((int32_t)L_39))) { goto IL_00e3; } } { goto IL_00ee; } IL_00e3: { MethodBaseU5BU5D_t2597254495* L_40 = V_3; int32_t L_41 = V_5; int32_t L_42 = L_41; V_5 = ((int32_t)((int32_t)L_42+(int32_t)1)); MethodInfo_t * L_43 = V_9; NullCheck(L_40); ArrayElementTypeCheck (L_40, L_43); (L_40)->SetAt(static_cast<il2cpp_array_size_t>(L_42), (MethodBase_t904190842 *)L_43); } IL_00ee: { int32_t L_44 = V_11; V_11 = ((int32_t)((int32_t)L_44+(int32_t)1)); } IL_00f4: { int32_t L_45 = V_11; MethodInfoU5BU5D_t152480188* L_46 = V_10; NullCheck(L_46); if ((((int32_t)L_45) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_46)->max_length))))))) { goto IL_00be; } } IL_00ff: { TypeU5BU5D_t1664964607* L_47 = ___types4; if (L_47) { goto IL_0112; } } { MethodBaseU5BU5D_t2597254495* L_48 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); MethodBase_t904190842 * L_49 = Binder_FindMostDerivedMatch_m2621831847(NULL /*static, unused*/, L_48, /*hidden argument*/NULL); return ((MethodInfo_t *)CastclassClass(L_49, MethodInfo_t_il2cpp_TypeInfo_var)); } IL_0112: { Binder_t3404612058 * L_50 = ___binder2; if (L_50) { goto IL_011f; } } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder_t3404612058 * L_51 = Binder_get_DefaultBinder_m965620943(NULL /*static, unused*/, /*hidden argument*/NULL); ___binder2 = L_51; } IL_011f: { Binder_t3404612058 * L_52 = ___binder2; int32_t L_53 = ___bindingAttr1; MethodBaseU5BU5D_t2597254495* L_54 = V_3; TypeU5BU5D_t1664964607* L_55 = ___types4; ParameterModifierU5BU5D_t963192633* L_56 = ___modifiers5; NullCheck(L_52); MethodBase_t904190842 * L_57 = VirtFuncInvoker4< MethodBase_t904190842 *, int32_t, MethodBaseU5BU5D_t2597254495*, TypeU5BU5D_t1664964607*, ParameterModifierU5BU5D_t963192633* >::Invoke(7 /* System.Reflection.MethodBase System.Reflection.Binder::SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]) */, L_52, L_53, L_54, L_55, L_56); return ((MethodInfo_t *)CastclassClass(L_57, MethodInfo_t_il2cpp_TypeInfo_var)); } } // System.Reflection.PropertyInfo System.Reflection.Emit.TypeBuilder::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) extern "C" PropertyInfo_t * TypeBuilder_GetPropertyImpl_m1854119335 (TypeBuilder_t3308873219 * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t3404612058 * ___binder2, Type_t * ___returnType3, TypeU5BU5D_t1664964607* ___types4, ParameterModifierU5BU5D_t963192633* ___modifiers5, const MethodInfo* method) { { Exception_t1927440687 * L_0 = TypeBuilder_not_supported_m3178173643(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.Emit.TypeBuilder::HasElementTypeImpl() extern "C" bool TypeBuilder_HasElementTypeImpl_m3160520656 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (L_0) { goto IL_000d; } } { return (bool)0; } IL_000d: { Type_t * L_1 = __this->get_created_20(); NullCheck(L_1); bool L_2 = Type_get_HasElementType_m3319917896(L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.Reflection.Emit.TypeBuilder::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) extern "C" Il2CppObject * TypeBuilder_InvokeMember_m1992906893 (TypeBuilder_t3308873219 * __this, String_t* ___name0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, Il2CppObject * ___target3, ObjectU5BU5D_t3614634134* ___args4, ParameterModifierU5BU5D_t963192633* ___modifiers5, CultureInfo_t3500843524 * ___culture6, StringU5BU5D_t1642385972* ___namedParameters7, const MethodInfo* method) { { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); Type_t * L_0 = __this->get_created_20(); String_t* L_1 = ___name0; int32_t L_2 = ___invokeAttr1; Binder_t3404612058 * L_3 = ___binder2; Il2CppObject * L_4 = ___target3; ObjectU5BU5D_t3614634134* L_5 = ___args4; ParameterModifierU5BU5D_t963192633* L_6 = ___modifiers5; CultureInfo_t3500843524 * L_7 = ___culture6; StringU5BU5D_t1642385972* L_8 = ___namedParameters7; NullCheck(L_0); Il2CppObject * L_9 = VirtFuncInvoker8< Il2CppObject *, String_t*, int32_t, Binder_t3404612058 *, Il2CppObject *, ObjectU5BU5D_t3614634134*, ParameterModifierU5BU5D_t963192633*, CultureInfo_t3500843524 *, StringU5BU5D_t1642385972* >::Invoke(72 /* System.Object System.Type::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) */, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8); return L_9; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsArrayImpl() extern "C" bool TypeBuilder_IsArrayImpl_m1932432187 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsByRefImpl() extern "C" bool TypeBuilder_IsByRefImpl_m3716138128 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsPointerImpl() extern "C" bool TypeBuilder_IsPointerImpl_m3046705585 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsPrimitiveImpl() extern "C" bool TypeBuilder_IsPrimitiveImpl_m3315689435 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsValueTypeImpl() extern const Il2CppType* ValueType_t3507792607_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_IsValueTypeImpl_m1499671481_MetadataUsageId; extern "C" bool TypeBuilder_IsValueTypeImpl_m1499671481 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_IsValueTypeImpl_m1499671481_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B5_0 = 0; { ModuleBuilder_t4156028127 * L_0 = __this->get_pmodule_18(); NullCheck(L_0); AssemblyBuilder_t1646117627 * L_1 = L_0->get_assemblyb_12(); NullCheck(L_1); Type_t * L_2 = L_1->get_corlib_value_type_13(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3 = Type_type_is_subtype_of_m312896768(NULL /*static, unused*/, __this, L_2, (bool)0, /*hidden argument*/NULL); if (L_3) { goto IL_0032; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ValueType_t3507792607_0_0_0_var), /*hidden argument*/NULL); bool L_5 = Type_type_is_subtype_of_m312896768(NULL /*static, unused*/, __this, L_4, (bool)0, /*hidden argument*/NULL); if (!L_5) { goto IL_0060; } } IL_0032: { ModuleBuilder_t4156028127 * L_6 = __this->get_pmodule_18(); NullCheck(L_6); AssemblyBuilder_t1646117627 * L_7 = L_6->get_assemblyb_12(); NullCheck(L_7); Type_t * L_8 = L_7->get_corlib_value_type_13(); if ((((Il2CppObject*)(TypeBuilder_t3308873219 *)__this) == ((Il2CppObject*)(Type_t *)L_8))) { goto IL_0060; } } { ModuleBuilder_t4156028127 * L_9 = __this->get_pmodule_18(); NullCheck(L_9); AssemblyBuilder_t1646117627 * L_10 = L_9->get_assemblyb_12(); NullCheck(L_10); Type_t * L_11 = L_10->get_corlib_enum_type_14(); G_B5_0 = ((((int32_t)((((Il2CppObject*)(TypeBuilder_t3308873219 *)__this) == ((Il2CppObject*)(Type_t *)L_11))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0061; } IL_0060: { G_B5_0 = 0; } IL_0061: { return (bool)G_B5_0; } } // System.Type System.Reflection.Emit.TypeBuilder::MakeByRefType() extern Il2CppClass* ByRefType_t1587086384_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_MakeByRefType_m2042877922_MetadataUsageId; extern "C" Type_t * TypeBuilder_MakeByRefType_m2042877922 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_MakeByRefType_m2042877922_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByRefType_t1587086384 * L_0 = (ByRefType_t1587086384 *)il2cpp_codegen_object_new(ByRefType_t1587086384_il2cpp_TypeInfo_var); ByRefType__ctor_m2068210324(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Type System.Reflection.Emit.TypeBuilder::MakeGenericType(System.Type[]) extern "C" Type_t * TypeBuilder_MakeGenericType_m4282022646 (TypeBuilder_t3308873219 * __this, TypeU5BU5D_t1664964607* ___typeArguments0, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = ___typeArguments0; Type_t * L_1 = Type_MakeGenericType_m2765875033(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilder::get_TypeHandle() extern "C" RuntimeTypeHandle_t2330101084 TypeBuilder_get_TypeHandle_m922348781 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { TypeBuilder_check_created_m2929267877(__this, /*hidden argument*/NULL); Type_t * L_0 = __this->get_created_20(); NullCheck(L_0); RuntimeTypeHandle_t2330101084 L_1 = VirtFuncInvoker0< RuntimeTypeHandle_t2330101084 >::Invoke(35 /* System.RuntimeTypeHandle System.Type::get_TypeHandle() */, L_0); return L_1; } } // System.Void System.Reflection.Emit.TypeBuilder::SetParent(System.Type) extern const Il2CppType* Il2CppObject_0_0_0_var; extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3528128599; extern const uint32_t TypeBuilder_SetParent_m387557893_MetadataUsageId; extern "C" void TypeBuilder_SetParent_m387557893 (TypeBuilder_t3308873219 * __this, Type_t * ___parent0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_SetParent_m387557893_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeBuilder_check_not_created_m2785532739(__this, /*hidden argument*/NULL); Type_t * L_0 = ___parent0; if (L_0) { goto IL_0057; } } { int32_t L_1 = __this->get_attrs_17(); if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)32)))) { goto IL_0042; } } { int32_t L_2 = __this->get_attrs_17(); if (((int32_t)((int32_t)L_2&(int32_t)((int32_t)128)))) { goto IL_0036; } } { InvalidOperationException_t721527559 * L_3 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_3, _stringLiteral3528128599, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0036: { __this->set_parent_10((Type_t *)NULL); goto IL_0052; } IL_0042: { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); __this->set_parent_10(L_4); } IL_0052: { goto IL_005e; } IL_0057: { Type_t * L_5 = ___parent0; __this->set_parent_10(L_5); } IL_005e: { TypeBuilder_setup_internal_class_m235812026(__this, __this, /*hidden argument*/NULL); return; } } // System.Int32 System.Reflection.Emit.TypeBuilder::get_next_table_index(System.Object,System.Int32,System.Boolean) extern "C" int32_t TypeBuilder_get_next_table_index_m1415870184 (TypeBuilder_t3308873219 * __this, Il2CppObject * ___obj0, int32_t ___table1, bool ___inc2, const MethodInfo* method) { { ModuleBuilder_t4156028127 * L_0 = __this->get_pmodule_18(); Il2CppObject * L_1 = ___obj0; int32_t L_2 = ___table1; bool L_3 = ___inc2; NullCheck(L_0); int32_t L_4 = ModuleBuilder_get_next_table_index_m1552645388(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Reflection.Emit.TypeBuilder::get_IsCompilerContext() extern "C" bool TypeBuilder_get_IsCompilerContext_m3623403919 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { ModuleBuilder_t4156028127 * L_0 = __this->get_pmodule_18(); NullCheck(L_0); AssemblyBuilder_t1646117627 * L_1 = L_0->get_assemblyb_12(); NullCheck(L_1); bool L_2 = AssemblyBuilder_get_IsCompilerContext_m2864230005(L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Reflection.Emit.TypeBuilder::get_is_created() extern "C" bool TypeBuilder_get_is_created_m736553860 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_created_20(); return (bool)((((int32_t)((((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Exception System.Reflection.Emit.TypeBuilder::not_supported() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4087454587; extern const uint32_t TypeBuilder_not_supported_m3178173643_MetadataUsageId; extern "C" Exception_t1927440687 * TypeBuilder_not_supported_m3178173643 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_not_supported_m3178173643_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral4087454587, /*hidden argument*/NULL); return L_0; } } // System.Void System.Reflection.Emit.TypeBuilder::check_not_created() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2822774848; extern const uint32_t TypeBuilder_check_not_created_m2785532739_MetadataUsageId; extern "C" void TypeBuilder_check_not_created_m2785532739 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_check_not_created_m2785532739_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0016; } } { InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_1, _stringLiteral2822774848, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { return; } } // System.Void System.Reflection.Emit.TypeBuilder::check_created() extern "C" void TypeBuilder_check_created_m2929267877 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { bool L_0 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0012; } } { Exception_t1927440687 * L_1 = TypeBuilder_not_supported_m3178173643(__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0012: { return; } } // System.String System.Reflection.Emit.TypeBuilder::ToString() extern "C" String_t* TypeBuilder_ToString_m1952363535 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { String_t* L_0 = TypeBuilder_get_FullName_m1626507516(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsAssignableFrom(System.Type) extern "C" bool TypeBuilder_IsAssignableFrom_m212977480 (TypeBuilder_t3308873219 * __this, Type_t * ___c0, const MethodInfo* method) { { Type_t * L_0 = ___c0; bool L_1 = Type_IsAssignableFrom_m907986231(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsSubclassOf(System.Type) extern "C" bool TypeBuilder_IsSubclassOf_m428846622 (TypeBuilder_t3308873219 * __this, Type_t * ___c0, const MethodInfo* method) { { Type_t * L_0 = ___c0; bool L_1 = Type_IsSubclassOf_m2450899481(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Reflection.Emit.TypeBuilder::IsAssignableTo(System.Type) extern const Il2CppType* Il2CppObject_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_IsAssignableTo_m3210661829_MetadataUsageId; extern "C" bool TypeBuilder_IsAssignableTo_m3210661829 (TypeBuilder_t3308873219 * __this, Type_t * ___c0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_IsAssignableTo_m3210661829_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t1664964607* V_1 = NULL; int32_t V_2 = 0; { Type_t * L_0 = ___c0; if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(TypeBuilder_t3308873219 *)__this)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { Type_t * L_1 = ___c0; NullCheck(L_1); bool L_2 = Type_get_IsInterface_m3583817465(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0084; } } { Type_t * L_3 = __this->get_parent_10(); if (!L_3) { goto IL_003d; } } { bool L_4 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_003d; } } { Type_t * L_5 = ___c0; Type_t * L_6 = __this->get_parent_10(); NullCheck(L_5); bool L_7 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_5, L_6); if (!L_7) { goto IL_003d; } } { return (bool)1; } IL_003d: { TypeU5BU5D_t1664964607* L_8 = __this->get_interfaces_12(); if (L_8) { goto IL_004a; } } { return (bool)0; } IL_004a: { TypeU5BU5D_t1664964607* L_9 = __this->get_interfaces_12(); V_1 = L_9; V_2 = 0; goto IL_006e; } IL_0058: { TypeU5BU5D_t1664964607* L_10 = V_1; int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; Type_t * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); V_0 = L_13; Type_t * L_14 = ___c0; Type_t * L_15 = V_0; NullCheck(L_14); bool L_16 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_14, L_15); if (!L_16) { goto IL_006a; } } { return (bool)1; } IL_006a: { int32_t L_17 = V_2; V_2 = ((int32_t)((int32_t)L_17+(int32_t)1)); } IL_006e: { int32_t L_18 = V_2; TypeU5BU5D_t1664964607* L_19 = V_1; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_19)->max_length))))))) { goto IL_0058; } } { bool L_20 = TypeBuilder_get_is_created_m736553860(__this, /*hidden argument*/NULL); if (L_20) { goto IL_0084; } } { return (bool)0; } IL_0084: { Type_t * L_21 = __this->get_parent_10(); if (L_21) { goto IL_009d; } } { Type_t * L_22 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_23 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Il2CppObject_0_0_0_var), /*hidden argument*/NULL); return (bool)((((Il2CppObject*)(Type_t *)L_22) == ((Il2CppObject*)(Type_t *)L_23))? 1 : 0); } IL_009d: { Type_t * L_24 = ___c0; Type_t * L_25 = __this->get_parent_10(); NullCheck(L_24); bool L_26 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_24, L_25); return L_26; } } // System.Type[] System.Reflection.Emit.TypeBuilder::GetGenericArguments() extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern const uint32_t TypeBuilder_GetGenericArguments_m3241780469_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* TypeBuilder_GetGenericArguments_m3241780469 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetGenericArguments_m3241780469_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_19(); if (L_0) { goto IL_000d; } } { return (TypeU5BU5D_t1664964607*)NULL; } IL_000d: { GenericTypeParameterBuilderU5BU5D_t358971386* L_1 = __this->get_generic_params_19(); NullCheck(L_1); V_0 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_1)->max_length)))))); GenericTypeParameterBuilderU5BU5D_t358971386* L_2 = __this->get_generic_params_19(); TypeU5BU5D_t1664964607* L_3 = V_0; NullCheck((Il2CppArray *)(Il2CppArray *)L_2); Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_2, (Il2CppArray *)(Il2CppArray *)L_3, 0, /*hidden argument*/NULL); TypeU5BU5D_t1664964607* L_4 = V_0; return L_4; } } // System.Type System.Reflection.Emit.TypeBuilder::GetGenericTypeDefinition() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2633815678; extern const uint32_t TypeBuilder_GetGenericTypeDefinition_m3813000816_MetadataUsageId; extern "C" Type_t * TypeBuilder_GetGenericTypeDefinition_m3813000816 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeBuilder_GetGenericTypeDefinition_m3813000816_MetadataUsageId); s_Il2CppMethodInitialized = true; } { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_19(); if (L_0) { goto IL_0016; } } { InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_1, _stringLiteral2633815678, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { return __this; } } // System.Boolean System.Reflection.Emit.TypeBuilder::get_ContainsGenericParameters() extern "C" bool TypeBuilder_get_ContainsGenericParameters_m493137229 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_19(); return (bool)((((int32_t)((((Il2CppObject*)(GenericTypeParameterBuilderU5BU5D_t358971386*)L_0) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.Emit.TypeBuilder::get_IsGenericParameter() extern "C" bool TypeBuilder_get_IsGenericParameter_m2604628295 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef bool (*TypeBuilder_get_IsGenericParameter_m2604628295_ftn) (TypeBuilder_t3308873219 *); return ((TypeBuilder_get_IsGenericParameter_m2604628295_ftn)mscorlib::System::Reflection::Emit::TypeBuilder::get_IsGenericParameter) (__this); } // System.Boolean System.Reflection.Emit.TypeBuilder::get_IsGenericTypeDefinition() extern "C" bool TypeBuilder_get_IsGenericTypeDefinition_m1652226431 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { GenericTypeParameterBuilderU5BU5D_t358971386* L_0 = __this->get_generic_params_19(); return (bool)((((int32_t)((((Il2CppObject*)(GenericTypeParameterBuilderU5BU5D_t358971386*)L_0) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.Emit.TypeBuilder::get_IsGenericType() extern "C" bool TypeBuilder_get_IsGenericType_m1475565622 (TypeBuilder_t3308873219 * __this, const MethodInfo* method) { { bool L_0 = TypeBuilder_get_IsGenericTypeDefinition_m1652226431(__this, /*hidden argument*/NULL); return L_0; } } // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.Emit.UnmanagedMarshal::ToMarshalAsAttribute() extern Il2CppClass* MarshalAsAttribute_t2900773360_il2cpp_TypeInfo_var; extern const uint32_t UnmanagedMarshal_ToMarshalAsAttribute_m3695569337_MetadataUsageId; extern "C" MarshalAsAttribute_t2900773360 * UnmanagedMarshal_ToMarshalAsAttribute_m3695569337 (UnmanagedMarshal_t4270021860 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnmanagedMarshal_ToMarshalAsAttribute_m3695569337_MetadataUsageId); s_Il2CppMethodInitialized = true; } MarshalAsAttribute_t2900773360 * V_0 = NULL; { int32_t L_0 = __this->get_t_1(); MarshalAsAttribute_t2900773360 * L_1 = (MarshalAsAttribute_t2900773360 *)il2cpp_codegen_object_new(MarshalAsAttribute_t2900773360_il2cpp_TypeInfo_var); MarshalAsAttribute__ctor_m1892084128(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; MarshalAsAttribute_t2900773360 * L_2 = V_0; int32_t L_3 = __this->get_tbase_2(); NullCheck(L_2); L_2->set_ArraySubType_1(L_3); MarshalAsAttribute_t2900773360 * L_4 = V_0; String_t* L_5 = __this->get_mcookie_4(); NullCheck(L_4); L_4->set_MarshalCookie_2(L_5); MarshalAsAttribute_t2900773360 * L_6 = V_0; String_t* L_7 = __this->get_marshaltype_5(); NullCheck(L_6); L_6->set_MarshalType_3(L_7); MarshalAsAttribute_t2900773360 * L_8 = V_0; Type_t * L_9 = __this->get_marshaltyperef_6(); NullCheck(L_8); L_8->set_MarshalTypeRef_4(L_9); int32_t L_10 = __this->get_count_0(); if ((!(((uint32_t)L_10) == ((uint32_t)(-1))))) { goto IL_0054; } } { MarshalAsAttribute_t2900773360 * L_11 = V_0; NullCheck(L_11); L_11->set_SizeConst_5(0); goto IL_0060; } IL_0054: { MarshalAsAttribute_t2900773360 * L_12 = V_0; int32_t L_13 = __this->get_count_0(); NullCheck(L_12); L_12->set_SizeConst_5(L_13); } IL_0060: { int32_t L_14 = __this->get_param_num_7(); if ((!(((uint32_t)L_14) == ((uint32_t)(-1))))) { goto IL_0078; } } { MarshalAsAttribute_t2900773360 * L_15 = V_0; NullCheck(L_15); L_15->set_SizeParamIndex_6(0); goto IL_0085; } IL_0078: { MarshalAsAttribute_t2900773360 * L_16 = V_0; int32_t L_17 = __this->get_param_num_7(); NullCheck(L_16); L_16->set_SizeParamIndex_6((((int16_t)((int16_t)L_17)))); } IL_0085: { MarshalAsAttribute_t2900773360 * L_18 = V_0; return L_18; } } // System.Void System.Reflection.EventInfo::.ctor() extern "C" void EventInfo__ctor_m1190141300 (EventInfo_t * __this, const MethodInfo* method) { { MemberInfo__ctor_m2808577188(__this, /*hidden argument*/NULL); return; } } // System.Type System.Reflection.EventInfo::get_EventHandlerType() extern "C" Type_t * EventInfo_get_EventHandlerType_m2787680849 (EventInfo_t * __this, const MethodInfo* method) { ParameterInfoU5BU5D_t2275869610* V_0 = NULL; MethodInfo_t * V_1 = NULL; Type_t * V_2 = NULL; { MethodInfo_t * L_0 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(16 /* System.Reflection.MethodInfo System.Reflection.EventInfo::GetAddMethod(System.Boolean) */, __this, (bool)1); V_1 = L_0; MethodInfo_t * L_1 = V_1; NullCheck(L_1); ParameterInfoU5BU5D_t2275869610* L_2 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_1); V_0 = L_2; ParameterInfoU5BU5D_t2275869610* L_3 = V_0; NullCheck(L_3); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length))))) <= ((int32_t)0))) { goto IL_0023; } } { ParameterInfoU5BU5D_t2275869610* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; ParameterInfo_t2249040075 * L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_6); V_2 = L_7; Type_t * L_8 = V_2; return L_8; } IL_0023: { return (Type_t *)NULL; } } // System.Reflection.MemberTypes System.Reflection.EventInfo::get_MemberType() extern "C" int32_t EventInfo_get_MemberType_m3337516651 (EventInfo_t * __this, const MethodInfo* method) { { return (int32_t)(2); } } // System.Void System.Reflection.EventInfo/AddEventAdapter::.ctor(System.Object,System.IntPtr) extern "C" void AddEventAdapter__ctor_m4122716273 (AddEventAdapter_t1766862959 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method) { __this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Reflection.EventInfo/AddEventAdapter::Invoke(System.Object,System.Delegate) extern "C" void AddEventAdapter_Invoke_m3970567975 (AddEventAdapter_t1766862959 * __this, Il2CppObject * ____this0, Delegate_t3022476291 * ___dele1, const MethodInfo* method) { if(__this->get_prev_9() != NULL) { AddEventAdapter_Invoke_m3970567975((AddEventAdapter_t1766862959 *)__this->get_prev_9(),____this0, ___dele1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0())); bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef void (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ____this0, Delegate_t3022476291 * ___dele1, const MethodInfo* method); ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),____this0, ___dele1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef void (*FunctionPointerType) (void* __this, Il2CppObject * ____this0, Delegate_t3022476291 * ___dele1, const MethodInfo* method); ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),____this0, ___dele1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else { typedef void (*FunctionPointerType) (void* __this, Delegate_t3022476291 * ___dele1, const MethodInfo* method); ((FunctionPointerType)__this->get_method_ptr_0())(____this0, ___dele1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } } // System.IAsyncResult System.Reflection.EventInfo/AddEventAdapter::BeginInvoke(System.Object,System.Delegate,System.AsyncCallback,System.Object) extern "C" Il2CppObject * AddEventAdapter_BeginInvoke_m3628937824 (AddEventAdapter_t1766862959 * __this, Il2CppObject * ____this0, Delegate_t3022476291 * ___dele1, AsyncCallback_t163412349 * ___callback2, Il2CppObject * ___object3, const MethodInfo* method) { void *__d_args[3] = {0}; __d_args[0] = ____this0; __d_args[1] = ___dele1; return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback2, (Il2CppObject*)___object3); } // System.Void System.Reflection.EventInfo/AddEventAdapter::EndInvoke(System.IAsyncResult) extern "C" void AddEventAdapter_EndInvoke_m1884114191 (AddEventAdapter_t1766862959 * __this, Il2CppObject * ___result0, const MethodInfo* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } // System.Void System.Reflection.FieldInfo::.ctor() extern "C" void FieldInfo__ctor_m1952545900 (FieldInfo_t * __this, const MethodInfo* method) { { MemberInfo__ctor_m2808577188(__this, /*hidden argument*/NULL); return; } } // System.Reflection.MemberTypes System.Reflection.FieldInfo::get_MemberType() extern "C" int32_t FieldInfo_get_MemberType_m4190511717 (FieldInfo_t * __this, const MethodInfo* method) { { return (int32_t)(4); } } // System.Boolean System.Reflection.FieldInfo::get_IsLiteral() extern "C" bool FieldInfo_get_IsLiteral_m267898096 (FieldInfo_t * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Reflection.FieldAttributes System.Reflection.FieldInfo::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)64)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.FieldInfo::get_IsStatic() extern "C" bool FieldInfo_get_IsStatic_m1411173225 (FieldInfo_t * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Reflection.FieldAttributes System.Reflection.FieldInfo::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.FieldInfo::get_IsNotSerialized() extern "C" bool FieldInfo_get_IsNotSerialized_m2322769148 (FieldInfo_t * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(14 /* System.Reflection.FieldAttributes System.Reflection.FieldInfo::get_Attributes() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)128)))) == ((int32_t)((int32_t)128)))? 1 : 0); } } // System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) extern "C" void FieldInfo_SetValue_m2504255891 (FieldInfo_t * __this, Il2CppObject * ___obj0, Il2CppObject * ___value1, const MethodInfo* method) { { Il2CppObject * L_0 = ___obj0; Il2CppObject * L_1 = ___value1; VirtActionInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, CultureInfo_t3500843524 * >::Invoke(21 /* System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo) */, __this, L_0, L_1, 0, (Binder_t3404612058 *)NULL, (CultureInfo_t3500843524 *)NULL); return; } } // System.Reflection.FieldInfo System.Reflection.FieldInfo::internal_from_handle_type(System.IntPtr,System.IntPtr) extern "C" FieldInfo_t * FieldInfo_internal_from_handle_type_m3419926447 (Il2CppObject * __this /* static, unused */, IntPtr_t ___field_handle0, IntPtr_t ___type_handle1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef FieldInfo_t * (*FieldInfo_internal_from_handle_type_m3419926447_ftn) (IntPtr_t, IntPtr_t); return ((FieldInfo_internal_from_handle_type_m3419926447_ftn)mscorlib::System::Reflection::FieldInfo::internal_from_handle_type) (___field_handle0, ___type_handle1); } // System.Reflection.FieldInfo System.Reflection.FieldInfo::GetFieldFromHandle(System.RuntimeFieldHandle) extern Il2CppClass* IntPtr_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral382420726; extern const uint32_t FieldInfo_GetFieldFromHandle_m1587354836_MetadataUsageId; extern "C" FieldInfo_t * FieldInfo_GetFieldFromHandle_m1587354836 (Il2CppObject * __this /* static, unused */, RuntimeFieldHandle_t2331729674 ___handle0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldInfo_GetFieldFromHandle_m1587354836_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IntPtr_t L_0 = RuntimeFieldHandle_get_Value_m3963757144((&___handle0), /*hidden argument*/NULL); IntPtr_t L_1 = ((IntPtr_t_StaticFields*)IntPtr_t_il2cpp_TypeInfo_var->static_fields)->get_Zero_1(); bool L_2 = IntPtr_op_Equality_m1573482188(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0021; } } { ArgumentException_t3259014390 * L_3 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_3, _stringLiteral382420726, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0021: { IntPtr_t L_4 = RuntimeFieldHandle_get_Value_m3963757144((&___handle0), /*hidden argument*/NULL); IntPtr_t L_5 = ((IntPtr_t_StaticFields*)IntPtr_t_il2cpp_TypeInfo_var->static_fields)->get_Zero_1(); FieldInfo_t * L_6 = FieldInfo_internal_from_handle_type_m3419926447(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Int32 System.Reflection.FieldInfo::GetFieldOffset() extern Il2CppClass* SystemException_t3877406272_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3975950849; extern const uint32_t FieldInfo_GetFieldOffset_m375239709_MetadataUsageId; extern "C" int32_t FieldInfo_GetFieldOffset_m375239709 (FieldInfo_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldInfo_GetFieldOffset_m375239709_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SystemException_t3877406272 * L_0 = (SystemException_t3877406272 *)il2cpp_codegen_object_new(SystemException_t3877406272_il2cpp_TypeInfo_var); SystemException__ctor_m4001391027(L_0, _stringLiteral3975950849, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Reflection.Emit.UnmanagedMarshal System.Reflection.FieldInfo::GetUnmanagedMarshal() extern "C" UnmanagedMarshal_t4270021860 * FieldInfo_GetUnmanagedMarshal_m3869098058 (FieldInfo_t * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef UnmanagedMarshal_t4270021860 * (*FieldInfo_GetUnmanagedMarshal_m3869098058_ftn) (FieldInfo_t *); return ((FieldInfo_GetUnmanagedMarshal_m3869098058_ftn)mscorlib::System::Reflection::FieldInfo::GetUnmanagedMarshal) (__this); } // System.Reflection.Emit.UnmanagedMarshal System.Reflection.FieldInfo::get_UMarshal() extern "C" UnmanagedMarshal_t4270021860 * FieldInfo_get_UMarshal_m1934544188 (FieldInfo_t * __this, const MethodInfo* method) { { UnmanagedMarshal_t4270021860 * L_0 = FieldInfo_GetUnmanagedMarshal_m3869098058(__this, /*hidden argument*/NULL); return L_0; } } // System.Object[] System.Reflection.FieldInfo::GetPseudoCustomAttributes() extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppClass* NonSerializedAttribute_t399263003_il2cpp_TypeInfo_var; extern Il2CppClass* FieldOffsetAttribute_t1553145711_il2cpp_TypeInfo_var; extern const uint32_t FieldInfo_GetPseudoCustomAttributes_m2500972355_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* FieldInfo_GetPseudoCustomAttributes_m2500972355 (FieldInfo_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldInfo_GetPseudoCustomAttributes_m2500972355_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; UnmanagedMarshal_t4270021860 * V_1 = NULL; ObjectU5BU5D_t3614634134* V_2 = NULL; { V_0 = 0; bool L_0 = FieldInfo_get_IsNotSerialized_m2322769148(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0011; } } { int32_t L_1 = V_0; V_0 = ((int32_t)((int32_t)L_1+(int32_t)1)); } IL_0011: { Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, __this); NullCheck(L_2); bool L_3 = Type_get_IsExplicitLayout_m1489853866(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0025; } } { int32_t L_4 = V_0; V_0 = ((int32_t)((int32_t)L_4+(int32_t)1)); } IL_0025: { UnmanagedMarshal_t4270021860 * L_5 = VirtFuncInvoker0< UnmanagedMarshal_t4270021860 * >::Invoke(24 /* System.Reflection.Emit.UnmanagedMarshal System.Reflection.FieldInfo::get_UMarshal() */, __this); V_1 = L_5; UnmanagedMarshal_t4270021860 * L_6 = V_1; if (!L_6) { goto IL_0036; } } { int32_t L_7 = V_0; V_0 = ((int32_t)((int32_t)L_7+(int32_t)1)); } IL_0036: { int32_t L_8 = V_0; if (L_8) { goto IL_003e; } } { return (ObjectU5BU5D_t3614634134*)NULL; } IL_003e: { int32_t L_9 = V_0; V_2 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)L_9)); V_0 = 0; bool L_10 = FieldInfo_get_IsNotSerialized_m2322769148(__this, /*hidden argument*/NULL); if (!L_10) { goto IL_005e; } } { ObjectU5BU5D_t3614634134* L_11 = V_2; int32_t L_12 = V_0; int32_t L_13 = L_12; V_0 = ((int32_t)((int32_t)L_13+(int32_t)1)); NonSerializedAttribute_t399263003 * L_14 = (NonSerializedAttribute_t399263003 *)il2cpp_codegen_object_new(NonSerializedAttribute_t399263003_il2cpp_TypeInfo_var); NonSerializedAttribute__ctor_m1638643584(L_14, /*hidden argument*/NULL); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_14); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppObject *)L_14); } IL_005e: { Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, __this); NullCheck(L_15); bool L_16 = Type_get_IsExplicitLayout_m1489853866(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0080; } } { ObjectU5BU5D_t3614634134* L_17 = V_2; int32_t L_18 = V_0; int32_t L_19 = L_18; V_0 = ((int32_t)((int32_t)L_19+(int32_t)1)); int32_t L_20 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Reflection.FieldInfo::GetFieldOffset() */, __this); FieldOffsetAttribute_t1553145711 * L_21 = (FieldOffsetAttribute_t1553145711 *)il2cpp_codegen_object_new(FieldOffsetAttribute_t1553145711_il2cpp_TypeInfo_var); FieldOffsetAttribute__ctor_m3347191262(L_21, L_20, /*hidden argument*/NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_21); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (Il2CppObject *)L_21); } IL_0080: { UnmanagedMarshal_t4270021860 * L_22 = V_1; if (!L_22) { goto IL_0093; } } { ObjectU5BU5D_t3614634134* L_23 = V_2; int32_t L_24 = V_0; int32_t L_25 = L_24; V_0 = ((int32_t)((int32_t)L_25+(int32_t)1)); UnmanagedMarshal_t4270021860 * L_26 = V_1; NullCheck(L_26); MarshalAsAttribute_t2900773360 * L_27 = UnmanagedMarshal_ToMarshalAsAttribute_m3695569337(L_26, /*hidden argument*/NULL); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_27); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (Il2CppObject *)L_27); } IL_0093: { ObjectU5BU5D_t3614634134* L_28 = V_2; return L_28; } } // System.Void System.Reflection.MemberFilter::.ctor(System.Object,System.IntPtr) extern "C" void MemberFilter__ctor_m1775909550 (MemberFilter_t3405857066 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method) { __this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Reflection.MemberFilter::Invoke(System.Reflection.MemberInfo,System.Object) extern "C" bool MemberFilter_Invoke_m2927312774 (MemberFilter_t3405857066 * __this, MemberInfo_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method) { if(__this->get_prev_9() != NULL) { MemberFilter_Invoke_m2927312774((MemberFilter_t3405857066 *)__this->get_prev_9(),___m0, ___filterCriteria1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0())); bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef bool (*FunctionPointerType) (Il2CppObject *, void* __this, MemberInfo_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___m0, ___filterCriteria1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef bool (*FunctionPointerType) (void* __this, MemberInfo_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___m0, ___filterCriteria1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else { typedef bool (*FunctionPointerType) (void* __this, Il2CppObject * ___filterCriteria1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(___m0, ___filterCriteria1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } } // System.IAsyncResult System.Reflection.MemberFilter::BeginInvoke(System.Reflection.MemberInfo,System.Object,System.AsyncCallback,System.Object) extern "C" Il2CppObject * MemberFilter_BeginInvoke_m149662271 (MemberFilter_t3405857066 * __this, MemberInfo_t * ___m0, Il2CppObject * ___filterCriteria1, AsyncCallback_t163412349 * ___callback2, Il2CppObject * ___object3, const MethodInfo* method) { void *__d_args[3] = {0}; __d_args[0] = ___m0; __d_args[1] = ___filterCriteria1; return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback2, (Il2CppObject*)___object3); } // System.Boolean System.Reflection.MemberFilter::EndInvoke(System.IAsyncResult) extern "C" bool MemberFilter_EndInvoke_m3642216476 (MemberFilter_t3405857066 * __this, Il2CppObject * ___result0, const MethodInfo* method) { Il2CppObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((Il2CppCodeGenObject*)__result); } // System.Void System.Reflection.MemberInfo::.ctor() extern "C" void MemberInfo__ctor_m2808577188 (MemberInfo_t * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Reflection.Module System.Reflection.MemberInfo::get_Module() extern "C" Module_t4282841206 * MemberInfo_get_Module_m3957426656 (MemberInfo_t * __this, const MethodInfo* method) { { Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, __this); NullCheck(L_0); Module_t4282841206 * L_1 = VirtFuncInvoker0< Module_t4282841206 * >::Invoke(10 /* System.Reflection.Module System.Type::get_Module() */, L_0); return L_1; } } // System.Void System.Reflection.MemberInfoSerializationHolder::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern Il2CppClass* SerializationException_t753258759_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3484720401; extern Il2CppCodeGenString* _stringLiteral2809705325; extern Il2CppCodeGenString* _stringLiteral2328219947; extern Il2CppCodeGenString* _stringLiteral3902976916; extern Il2CppCodeGenString* _stringLiteral1068945792; extern const uint32_t MemberInfoSerializationHolder__ctor_m1297860825_MetadataUsageId; extern "C" void MemberInfoSerializationHolder__ctor_m1297860825 (MemberInfoSerializationHolder_t2799051170 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___ctx1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoSerializationHolder__ctor_m1297860825_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; Assembly_t4268412390 * V_2 = NULL; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_0 = ___info0; NullCheck(L_0); String_t* L_1 = SerializationInfo_GetString_m547109409(L_0, _stringLiteral3484720401, /*hidden argument*/NULL); V_0 = L_1; SerializationInfo_t228987430 * L_2 = ___info0; NullCheck(L_2); String_t* L_3 = SerializationInfo_GetString_m547109409(L_2, _stringLiteral2809705325, /*hidden argument*/NULL); V_1 = L_3; SerializationInfo_t228987430 * L_4 = ___info0; NullCheck(L_4); String_t* L_5 = SerializationInfo_GetString_m547109409(L_4, _stringLiteral2328219947, /*hidden argument*/NULL); __this->set__memberName_0(L_5); SerializationInfo_t228987430 * L_6 = ___info0; NullCheck(L_6); String_t* L_7 = SerializationInfo_GetString_m547109409(L_6, _stringLiteral3902976916, /*hidden argument*/NULL); __this->set__memberSignature_1(L_7); SerializationInfo_t228987430 * L_8 = ___info0; NullCheck(L_8); int32_t L_9 = SerializationInfo_GetInt32_m4039439501(L_8, _stringLiteral1068945792, /*hidden argument*/NULL); __this->set__memberType_2(L_9); } IL_0051: try { // begin try (depth: 1) __this->set__genericArguments_4((TypeU5BU5D_t1664964607*)NULL); goto IL_0063; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SerializationException_t753258759_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_005d; throw e; } CATCH_005d: { // begin catch(System.Runtime.Serialization.SerializationException) goto IL_0063; } // end catch (depth: 1) IL_0063: { String_t* L_10 = V_0; Assembly_t4268412390 * L_11 = Assembly_Load_m902205655(NULL /*static, unused*/, L_10, /*hidden argument*/NULL); V_2 = L_11; Assembly_t4268412390 * L_12 = V_2; String_t* L_13 = V_1; NullCheck(L_12); Type_t * L_14 = Assembly_GetType_m2765594712(L_12, L_13, (bool)1, (bool)1, /*hidden argument*/NULL); __this->set__reflectedType_3(L_14); return; } } // System.Void System.Reflection.MemberInfoSerializationHolder::Serialize(System.Runtime.Serialization.SerializationInfo,System.String,System.Type,System.String,System.Reflection.MemberTypes) extern "C" void MemberInfoSerializationHolder_Serialize_m1949812823 (Il2CppObject * __this /* static, unused */, SerializationInfo_t228987430 * ___info0, String_t* ___name1, Type_t * ___klass2, String_t* ___signature3, int32_t ___type4, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; String_t* L_1 = ___name1; Type_t * L_2 = ___klass2; String_t* L_3 = ___signature3; int32_t L_4 = ___type4; MemberInfoSerializationHolder_Serialize_m4243060728(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, (TypeU5BU5D_t1664964607*)(TypeU5BU5D_t1664964607*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MemberInfoSerializationHolder::Serialize(System.Runtime.Serialization.SerializationInfo,System.String,System.Type,System.String,System.Reflection.MemberTypes,System.Type[]) extern const Il2CppType* MemberInfoSerializationHolder_t2799051170_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* TypeU5BU5D_t1664964607_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3484720401; extern Il2CppCodeGenString* _stringLiteral2809705325; extern Il2CppCodeGenString* _stringLiteral2328219947; extern Il2CppCodeGenString* _stringLiteral3902976916; extern Il2CppCodeGenString* _stringLiteral1068945792; extern Il2CppCodeGenString* _stringLiteral3962342765; extern const uint32_t MemberInfoSerializationHolder_Serialize_m4243060728_MetadataUsageId; extern "C" void MemberInfoSerializationHolder_Serialize_m4243060728 (Il2CppObject * __this /* static, unused */, SerializationInfo_t228987430 * ___info0, String_t* ___name1, Type_t * ___klass2, String_t* ___signature3, int32_t ___type4, TypeU5BU5D_t1664964607* ___genericArguments5, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoSerializationHolder_Serialize_m4243060728_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t228987430 * L_0 = ___info0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(MemberInfoSerializationHolder_t2799051170_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); SerializationInfo_SetType_m499725474(L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_2 = ___info0; Type_t * L_3 = ___klass2; NullCheck(L_3); Module_t4282841206 * L_4 = VirtFuncInvoker0< Module_t4282841206 * >::Invoke(10 /* System.Reflection.Module System.Type::get_Module() */, L_3); NullCheck(L_4); Assembly_t4268412390 * L_5 = Module_get_Assembly_m3690289982(L_4, /*hidden argument*/NULL); NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Reflection.Assembly::get_FullName() */, L_5); Type_t * L_7 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_2); SerializationInfo_AddValue_m1781549036(L_2, _stringLiteral3484720401, L_6, L_7, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_8 = ___info0; Type_t * L_9 = ___klass2; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_9); Type_t * L_11 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_8); SerializationInfo_AddValue_m1781549036(L_8, _stringLiteral2809705325, L_10, L_11, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_12 = ___info0; String_t* L_13 = ___name1; Type_t * L_14 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_12); SerializationInfo_AddValue_m1781549036(L_12, _stringLiteral2328219947, L_13, L_14, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_15 = ___info0; String_t* L_16 = ___signature3; Type_t * L_17 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_15); SerializationInfo_AddValue_m1781549036(L_15, _stringLiteral3902976916, L_16, L_17, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_18 = ___info0; int32_t L_19 = ___type4; NullCheck(L_18); SerializationInfo_AddValue_m902275108(L_18, _stringLiteral1068945792, L_19, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_20 = ___info0; TypeU5BU5D_t1664964607* L_21 = ___genericArguments5; Type_t * L_22 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(TypeU5BU5D_t1664964607_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_20); SerializationInfo_AddValue_m1781549036(L_20, _stringLiteral3962342765, (Il2CppObject *)(Il2CppObject *)L_21, L_22, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MemberInfoSerializationHolder::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t MemberInfoSerializationHolder_GetObjectData_m1760456120_MetadataUsageId; extern "C" void MemberInfoSerializationHolder_GetObjectData_m1760456120 (MemberInfoSerializationHolder_t2799051170 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoSerializationHolder_GetObjectData_m1760456120_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Object System.Reflection.MemberInfoSerializationHolder::GetRealObject(System.Runtime.Serialization.StreamingContext) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* SerializationException_t753258759_il2cpp_TypeInfo_var; extern Il2CppClass* MemberTypes_t3343038963_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral948459439; extern Il2CppCodeGenString* _stringLiteral3230290608; extern Il2CppCodeGenString* _stringLiteral2962078205; extern Il2CppCodeGenString* _stringLiteral2138058808; extern Il2CppCodeGenString* _stringLiteral3237053035; extern Il2CppCodeGenString* _stringLiteral2011492163; extern const uint32_t MemberInfoSerializationHolder_GetRealObject_m3643310964_MetadataUsageId; extern "C" Il2CppObject * MemberInfoSerializationHolder_GetRealObject_m3643310964 (MemberInfoSerializationHolder_t2799051170 * __this, StreamingContext_t1417235061 ___context0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MemberInfoSerializationHolder_GetRealObject_m3643310964_MetadataUsageId); s_Il2CppMethodInitialized = true; } ConstructorInfoU5BU5D_t1996683371* V_0 = NULL; int32_t V_1 = 0; MethodInfoU5BU5D_t152480188* V_2 = NULL; int32_t V_3 = 0; MethodInfo_t * V_4 = NULL; FieldInfo_t * V_5 = NULL; PropertyInfo_t * V_6 = NULL; EventInfo_t * V_7 = NULL; int32_t V_8 = 0; { int32_t L_0 = __this->get__memberType_2(); V_8 = L_0; int32_t L_1 = V_8; if (((int32_t)((int32_t)L_1-(int32_t)1)) == 0) { goto IL_003f; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 1) { goto IL_01c2; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 2) { goto IL_0031; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 3) { goto IL_014c; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 4) { goto IL_0031; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 5) { goto IL_0031; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 6) { goto IL_0031; } if (((int32_t)((int32_t)L_1-(int32_t)1)) == 7) { goto IL_0099; } } IL_0031: { int32_t L_2 = V_8; if ((((int32_t)L_2) == ((int32_t)((int32_t)16)))) { goto IL_0187; } } { goto IL_01fd; } IL_003f: { Type_t * L_3 = __this->get__reflectedType_3(); NullCheck(L_3); ConstructorInfoU5BU5D_t1996683371* L_4 = VirtFuncInvoker1< ConstructorInfoU5BU5D_t1996683371*, int32_t >::Invoke(71 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_3, ((int32_t)60)); V_0 = L_4; V_1 = 0; goto IL_0074; } IL_0054: { ConstructorInfoU5BU5D_t1996683371* L_5 = V_0; int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = L_6; ConstructorInfo_t2851816542 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); String_t* L_10 = __this->get__memberSignature_1(); NullCheck(L_9); bool L_11 = String_Equals_m2633592423(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0070; } } { ConstructorInfoU5BU5D_t1996683371* L_12 = V_0; int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = L_13; ConstructorInfo_t2851816542 * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); return L_15; } IL_0070: { int32_t L_16 = V_1; V_1 = ((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0074: { int32_t L_17 = V_1; ConstructorInfoU5BU5D_t1996683371* L_18 = V_0; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_18)->max_length))))))) { goto IL_0054; } } { String_t* L_19 = __this->get__memberSignature_1(); Type_t * L_20 = __this->get__reflectedType_3(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_21 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral948459439, L_19, L_20, /*hidden argument*/NULL); SerializationException_t753258759 * L_22 = (SerializationException_t753258759 *)il2cpp_codegen_object_new(SerializationException_t753258759_il2cpp_TypeInfo_var); SerializationException__ctor_m1019897788(L_22, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22); } IL_0099: { Type_t * L_23 = __this->get__reflectedType_3(); NullCheck(L_23); MethodInfoU5BU5D_t152480188* L_24 = VirtFuncInvoker1< MethodInfoU5BU5D_t152480188*, int32_t >::Invoke(52 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_23, ((int32_t)60)); V_2 = L_24; V_3 = 0; goto IL_0127; } IL_00ae: { MethodInfoU5BU5D_t152480188* L_25 = V_2; int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = L_26; MethodInfo_t * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); String_t* L_30 = __this->get__memberSignature_1(); NullCheck(L_29); bool L_31 = String_Equals_m2633592423(L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_00ca; } } { MethodInfoU5BU5D_t152480188* L_32 = V_2; int32_t L_33 = V_3; NullCheck(L_32); int32_t L_34 = L_33; MethodInfo_t * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); return L_35; } IL_00ca: { TypeU5BU5D_t1664964607* L_36 = __this->get__genericArguments_4(); if (!L_36) { goto IL_0123; } } { MethodInfoU5BU5D_t152480188* L_37 = V_2; int32_t L_38 = V_3; NullCheck(L_37); int32_t L_39 = L_38; MethodInfo_t * L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39)); NullCheck(L_40); bool L_41 = VirtFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Reflection.MethodInfo::get_IsGenericMethod() */, L_40); if (!L_41) { goto IL_0123; } } { MethodInfoU5BU5D_t152480188* L_42 = V_2; int32_t L_43 = V_3; NullCheck(L_42); int32_t L_44 = L_43; MethodInfo_t * L_45 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_44)); NullCheck(L_45); TypeU5BU5D_t1664964607* L_46 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(26 /* System.Type[] System.Reflection.MethodInfo::GetGenericArguments() */, L_45); NullCheck(L_46); TypeU5BU5D_t1664964607* L_47 = __this->get__genericArguments_4(); NullCheck(L_47); if ((!(((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_46)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_47)->max_length)))))))) { goto IL_0123; } } { MethodInfoU5BU5D_t152480188* L_48 = V_2; int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = L_49; MethodInfo_t * L_51 = (L_48)->GetAt(static_cast<il2cpp_array_size_t>(L_50)); TypeU5BU5D_t1664964607* L_52 = __this->get__genericArguments_4(); NullCheck(L_51); MethodInfo_t * L_53 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t1664964607* >::Invoke(32 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_51, L_52); V_4 = L_53; MethodInfo_t * L_54 = V_4; NullCheck(L_54); String_t* L_55 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_54); String_t* L_56 = __this->get__memberSignature_1(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_57 = String_op_Equality_m1790663636(NULL /*static, unused*/, L_55, L_56, /*hidden argument*/NULL); if (!L_57) { goto IL_0123; } } { MethodInfo_t * L_58 = V_4; return L_58; } IL_0123: { int32_t L_59 = V_3; V_3 = ((int32_t)((int32_t)L_59+(int32_t)1)); } IL_0127: { int32_t L_60 = V_3; MethodInfoU5BU5D_t152480188* L_61 = V_2; NullCheck(L_61); if ((((int32_t)L_60) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_61)->max_length))))))) { goto IL_00ae; } } { String_t* L_62 = __this->get__memberSignature_1(); Type_t * L_63 = __this->get__reflectedType_3(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_64 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral3230290608, L_62, L_63, /*hidden argument*/NULL); SerializationException_t753258759 * L_65 = (SerializationException_t753258759 *)il2cpp_codegen_object_new(SerializationException_t753258759_il2cpp_TypeInfo_var); SerializationException__ctor_m1019897788(L_65, L_64, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_65); } IL_014c: { Type_t * L_66 = __this->get__reflectedType_3(); String_t* L_67 = __this->get__memberName_0(); NullCheck(L_66); FieldInfo_t * L_68 = VirtFuncInvoker2< FieldInfo_t *, String_t*, int32_t >::Invoke(44 /* System.Reflection.FieldInfo System.Type::GetField(System.String,System.Reflection.BindingFlags) */, L_66, L_67, ((int32_t)60)); V_5 = L_68; FieldInfo_t * L_69 = V_5; if (!L_69) { goto IL_016b; } } { FieldInfo_t * L_70 = V_5; return L_70; } IL_016b: { String_t* L_71 = __this->get__memberName_0(); Type_t * L_72 = __this->get__reflectedType_3(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_73 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral2962078205, L_71, L_72, /*hidden argument*/NULL); SerializationException_t753258759 * L_74 = (SerializationException_t753258759 *)il2cpp_codegen_object_new(SerializationException_t753258759_il2cpp_TypeInfo_var); SerializationException__ctor_m1019897788(L_74, L_73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_74); } IL_0187: { Type_t * L_75 = __this->get__reflectedType_3(); String_t* L_76 = __this->get__memberName_0(); NullCheck(L_75); PropertyInfo_t * L_77 = Type_GetProperty_m1510204374(L_75, L_76, ((int32_t)60), /*hidden argument*/NULL); V_6 = L_77; PropertyInfo_t * L_78 = V_6; if (!L_78) { goto IL_01a6; } } { PropertyInfo_t * L_79 = V_6; return L_79; } IL_01a6: { String_t* L_80 = __this->get__memberName_0(); Type_t * L_81 = __this->get__reflectedType_3(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_82 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral2138058808, L_80, L_81, /*hidden argument*/NULL); SerializationException_t753258759 * L_83 = (SerializationException_t753258759 *)il2cpp_codegen_object_new(SerializationException_t753258759_il2cpp_TypeInfo_var); SerializationException__ctor_m1019897788(L_83, L_82, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_83); } IL_01c2: { Type_t * L_84 = __this->get__reflectedType_3(); String_t* L_85 = __this->get__memberName_0(); NullCheck(L_84); EventInfo_t * L_86 = VirtFuncInvoker2< EventInfo_t *, String_t*, int32_t >::Invoke(43 /* System.Reflection.EventInfo System.Type::GetEvent(System.String,System.Reflection.BindingFlags) */, L_84, L_85, ((int32_t)60)); V_7 = L_86; EventInfo_t * L_87 = V_7; if (!L_87) { goto IL_01e1; } } { EventInfo_t * L_88 = V_7; return L_88; } IL_01e1: { String_t* L_89 = __this->get__memberName_0(); Type_t * L_90 = __this->get__reflectedType_3(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_91 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral3237053035, L_89, L_90, /*hidden argument*/NULL); SerializationException_t753258759 * L_92 = (SerializationException_t753258759 *)il2cpp_codegen_object_new(SerializationException_t753258759_il2cpp_TypeInfo_var); SerializationException__ctor_m1019897788(L_92, L_91, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_92); } IL_01fd: { int32_t L_93 = __this->get__memberType_2(); int32_t L_94 = L_93; Il2CppObject * L_95 = Box(MemberTypes_t3343038963_il2cpp_TypeInfo_var, &L_94); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_96 = String_Format_m2024975688(NULL /*static, unused*/, _stringLiteral2011492163, L_95, /*hidden argument*/NULL); SerializationException_t753258759 * L_97 = (SerializationException_t753258759 *)il2cpp_codegen_object_new(SerializationException_t753258759_il2cpp_TypeInfo_var); SerializationException__ctor_m1019897788(L_97, L_96, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_97); } } // System.Void System.Reflection.MethodBase::.ctor() extern "C" void MethodBase__ctor_m3951051358 (MethodBase_t904190842 * __this, const MethodInfo* method) { { MemberInfo__ctor_m2808577188(__this, /*hidden argument*/NULL); return; } } // System.Reflection.MethodBase System.Reflection.MethodBase::GetMethodFromHandleNoGenericCheck(System.RuntimeMethodHandle) extern Il2CppClass* IntPtr_t_il2cpp_TypeInfo_var; extern const uint32_t MethodBase_GetMethodFromHandleNoGenericCheck_m4274264088_MetadataUsageId; extern "C" MethodBase_t904190842 * MethodBase_GetMethodFromHandleNoGenericCheck_m4274264088 (Il2CppObject * __this /* static, unused */, RuntimeMethodHandle_t894824333 ___handle0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBase_GetMethodFromHandleNoGenericCheck_m4274264088_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IntPtr_t L_0 = RuntimeMethodHandle_get_Value_m333629197((&___handle0), /*hidden argument*/NULL); IntPtr_t L_1 = ((IntPtr_t_StaticFields*)IntPtr_t_il2cpp_TypeInfo_var->static_fields)->get_Zero_1(); MethodBase_t904190842 * L_2 = MethodBase_GetMethodFromIntPtr_m1014299957(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Reflection.MethodBase System.Reflection.MethodBase::GetMethodFromIntPtr(System.IntPtr,System.IntPtr) extern Il2CppClass* IntPtr_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral382420726; extern const uint32_t MethodBase_GetMethodFromIntPtr_m1014299957_MetadataUsageId; extern "C" MethodBase_t904190842 * MethodBase_GetMethodFromIntPtr_m1014299957 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, IntPtr_t ___declaringType1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBase_GetMethodFromIntPtr_m1014299957_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodBase_t904190842 * V_0 = NULL; { IntPtr_t L_0 = ___handle0; IntPtr_t L_1 = ((IntPtr_t_StaticFields*)IntPtr_t_il2cpp_TypeInfo_var->static_fields)->get_Zero_1(); bool L_2 = IntPtr_op_Equality_m1573482188(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { ArgumentException_t3259014390 * L_3 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_3, _stringLiteral382420726, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_001b: { IntPtr_t L_4 = ___handle0; IntPtr_t L_5 = ___declaringType1; MethodBase_t904190842 * L_6 = MethodBase_GetMethodFromHandleInternalType_m570034609(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; MethodBase_t904190842 * L_7 = V_0; if (L_7) { goto IL_0034; } } { ArgumentException_t3259014390 * L_8 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_8, _stringLiteral382420726, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_0034: { MethodBase_t904190842 * L_9 = V_0; return L_9; } } // System.Reflection.MethodBase System.Reflection.MethodBase::GetMethodFromHandle(System.RuntimeMethodHandle) extern Il2CppClass* IntPtr_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1596710604; extern const uint32_t MethodBase_GetMethodFromHandle_m3983882276_MetadataUsageId; extern "C" MethodBase_t904190842 * MethodBase_GetMethodFromHandle_m3983882276 (Il2CppObject * __this /* static, unused */, RuntimeMethodHandle_t894824333 ___handle0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBase_GetMethodFromHandle_m3983882276_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodBase_t904190842 * V_0 = NULL; Type_t * V_1 = NULL; { IntPtr_t L_0 = RuntimeMethodHandle_get_Value_m333629197((&___handle0), /*hidden argument*/NULL); IntPtr_t L_1 = ((IntPtr_t_StaticFields*)IntPtr_t_il2cpp_TypeInfo_var->static_fields)->get_Zero_1(); MethodBase_t904190842 * L_2 = MethodBase_GetMethodFromIntPtr_m1014299957(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; MethodBase_t904190842 * L_3 = V_0; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_3); V_1 = L_4; Type_t * L_5 = V_1; NullCheck(L_5); bool L_6 = VirtFuncInvoker0< bool >::Invoke(77 /* System.Boolean System.Type::get_IsGenericType() */, L_5); if (L_6) { goto IL_002f; } } { Type_t * L_7 = V_1; NullCheck(L_7); bool L_8 = VirtFuncInvoker0< bool >::Invoke(75 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_7); if (!L_8) { goto IL_003a; } } IL_002f: { ArgumentException_t3259014390 * L_9 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_9, _stringLiteral1596710604, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_003a: { MethodBase_t904190842 * L_10 = V_0; return L_10; } } // System.Reflection.MethodBase System.Reflection.MethodBase::GetMethodFromHandleInternalType(System.IntPtr,System.IntPtr) extern "C" MethodBase_t904190842 * MethodBase_GetMethodFromHandleInternalType_m570034609 (Il2CppObject * __this /* static, unused */, IntPtr_t ___method_handle0, IntPtr_t ___type_handle1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef MethodBase_t904190842 * (*MethodBase_GetMethodFromHandleInternalType_m570034609_ftn) (IntPtr_t, IntPtr_t); return ((MethodBase_GetMethodFromHandleInternalType_m570034609_ftn)mscorlib::System::Reflection::MethodBase::GetMethodFromHandleInternalType) (___method_handle0, ___type_handle1); } // System.Int32 System.Reflection.MethodBase::GetParameterCount() extern "C" int32_t MethodBase_GetParameterCount_m3877953436 (MethodBase_t904190842 * __this, const MethodInfo* method) { ParameterInfoU5BU5D_t2275869610* V_0 = NULL; { ParameterInfoU5BU5D_t2275869610* L_0 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, __this); V_0 = L_0; ParameterInfoU5BU5D_t2275869610* L_1 = V_0; if (L_1) { goto IL_000f; } } { return 0; } IL_000f: { ParameterInfoU5BU5D_t2275869610* L_2 = V_0; NullCheck(L_2); return (((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length)))); } } // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) extern "C" Il2CppObject * MethodBase_Invoke_m1075809207 (MethodBase_t904190842 * __this, Il2CppObject * ___obj0, ObjectU5BU5D_t3614634134* ___parameters1, const MethodInfo* method) { { Il2CppObject * L_0 = ___obj0; ObjectU5BU5D_t3614634134* L_1 = ___parameters1; Il2CppObject * L_2 = VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, __this, L_0, 0, (Binder_t3404612058 *)NULL, L_1, (CultureInfo_t3500843524 *)NULL); return L_2; } } // System.Reflection.CallingConventions System.Reflection.MethodBase::get_CallingConvention() extern "C" int32_t MethodBase_get_CallingConvention_m2817807351 (MethodBase_t904190842 * __this, const MethodInfo* method) { { return (int32_t)(1); } } // System.Boolean System.Reflection.MethodBase::get_IsPublic() extern "C" bool MethodBase_get_IsPublic_m479656180 (MethodBase_t904190842 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)7))) == ((int32_t)6))? 1 : 0); } } // System.Boolean System.Reflection.MethodBase::get_IsStatic() extern "C" bool MethodBase_get_IsStatic_m1015686807 (MethodBase_t904190842 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.MethodBase::get_IsVirtual() extern "C" bool MethodBase_get_IsVirtual_m1107721718 (MethodBase_t904190842 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)64)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.MethodBase::get_IsAbstract() extern "C" bool MethodBase_get_IsAbstract_m3521819231 (MethodBase_t904190842 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Reflection.MethodAttributes System.Reflection.MethodBase::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)1024)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Reflection.MethodBase::get_next_table_index(System.Object,System.Int32,System.Boolean) extern Il2CppClass* MethodBuilder_t644187984_il2cpp_TypeInfo_var; extern Il2CppClass* ConstructorBuilder_t700974433_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t1927440687_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4028768107; extern const uint32_t MethodBase_get_next_table_index_m3185673846_MetadataUsageId; extern "C" int32_t MethodBase_get_next_table_index_m3185673846 (MethodBase_t904190842 * __this, Il2CppObject * ___obj0, int32_t ___table1, bool ___inc2, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBase_get_next_table_index_m3185673846_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodBuilder_t644187984 * V_0 = NULL; ConstructorBuilder_t700974433 * V_1 = NULL; { if (!((MethodBuilder_t644187984 *)IsInstSealed(__this, MethodBuilder_t644187984_il2cpp_TypeInfo_var))) { goto IL_001c; } } { V_0 = ((MethodBuilder_t644187984 *)CastclassSealed(__this, MethodBuilder_t644187984_il2cpp_TypeInfo_var)); MethodBuilder_t644187984 * L_0 = V_0; Il2CppObject * L_1 = ___obj0; int32_t L_2 = ___table1; bool L_3 = ___inc2; NullCheck(L_0); int32_t L_4 = MethodBuilder_get_next_table_index_m683309027(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_001c: { if (!((ConstructorBuilder_t700974433 *)IsInstSealed(__this, ConstructorBuilder_t700974433_il2cpp_TypeInfo_var))) { goto IL_0038; } } { V_1 = ((ConstructorBuilder_t700974433 *)CastclassSealed(__this, ConstructorBuilder_t700974433_il2cpp_TypeInfo_var)); ConstructorBuilder_t700974433 * L_5 = V_1; Il2CppObject * L_6 = ___obj0; int32_t L_7 = ___table1; bool L_8 = ___inc2; NullCheck(L_5); int32_t L_9 = ConstructorBuilder_get_next_table_index_m932085784(L_5, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } IL_0038: { Exception_t1927440687 * L_10 = (Exception_t1927440687 *)il2cpp_codegen_object_new(Exception_t1927440687_il2cpp_TypeInfo_var); Exception__ctor_m485833136(L_10, _stringLiteral4028768107, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } } // System.Type[] System.Reflection.MethodBase::GetGenericArguments() extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t MethodBase_GetGenericArguments_m1277035033_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* MethodBase_GetGenericArguments_m1277035033 (MethodBase_t904190842 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodBase_GetGenericArguments_m1277035033_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m3232764727(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Reflection.MethodBase::get_ContainsGenericParameters() extern "C" bool MethodBase_get_ContainsGenericParameters_m1185248753 (MethodBase_t904190842 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() extern "C" bool MethodBase_get_IsGenericMethodDefinition_m324279468 (MethodBase_t904190842 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() extern "C" bool MethodBase_get_IsGenericMethod_m2492617497 (MethodBase_t904190842 * __this, const MethodInfo* method) { { return (bool)0; } } // System.Void System.Reflection.MethodInfo::.ctor() extern "C" void MethodInfo__ctor_m1853540423 (MethodInfo_t * __this, const MethodInfo* method) { { MethodBase__ctor_m3951051358(__this, /*hidden argument*/NULL); return; } } // System.Reflection.MemberTypes System.Reflection.MethodInfo::get_MemberType() extern "C" int32_t MethodInfo_get_MemberType_m103695984 (MethodInfo_t * __this, const MethodInfo* method) { { return (int32_t)(8); } } // System.Type System.Reflection.MethodInfo::get_ReturnType() extern "C" Type_t * MethodInfo_get_ReturnType_m1038770764 (MethodInfo_t * __this, const MethodInfo* method) { { return (Type_t *)NULL; } } // System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern const uint32_t MethodInfo_MakeGenericMethod_m3327556920_MetadataUsageId; extern "C" MethodInfo_t * MethodInfo_MakeGenericMethod_m3327556920 (MethodInfo_t * __this, TypeU5BU5D_t1664964607* ___typeArguments0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfo_MakeGenericMethod_m3327556920_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = Object_GetType_m191970594(__this, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_0); NotSupportedException_t1793819818 * L_2 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } } // System.Type[] System.Reflection.MethodInfo::GetGenericArguments() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t MethodInfo_GetGenericArguments_m3393347888_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* MethodInfo_GetGenericArguments_m3393347888 (MethodInfo_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MethodInfo_GetGenericArguments_m3393347888_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_0 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_0; } } // System.Boolean System.Reflection.MethodInfo::get_IsGenericMethod() extern "C" bool MethodInfo_get_IsGenericMethod_m861531298 (MethodInfo_t * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.MethodInfo::get_IsGenericMethodDefinition() extern "C" bool MethodInfo_get_IsGenericMethodDefinition_m647461435 (MethodInfo_t * __this, const MethodInfo* method) { { return (bool)0; } } // System.Boolean System.Reflection.MethodInfo::get_ContainsGenericParameters() extern "C" bool MethodInfo_get_ContainsGenericParameters_m572340060 (MethodInfo_t * __this, const MethodInfo* method) { { return (bool)0; } } // System.Void System.Reflection.Missing::.ctor() extern "C" void Missing__ctor_m4227264620 (Missing_t1033855606 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.Missing::.cctor() extern Il2CppClass* Missing_t1033855606_il2cpp_TypeInfo_var; extern const uint32_t Missing__cctor_m1775889133_MetadataUsageId; extern "C" void Missing__cctor_m1775889133 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Missing__cctor_m1775889133_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Missing_t1033855606 * L_0 = (Missing_t1033855606 *)il2cpp_codegen_object_new(Missing_t1033855606_il2cpp_TypeInfo_var); Missing__ctor_m4227264620(L_0, /*hidden argument*/NULL); ((Missing_t1033855606_StaticFields*)Missing_t1033855606_il2cpp_TypeInfo_var->static_fields)->set_Value_0(L_0); return; } } // System.Void System.Reflection.Missing::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void Missing_System_Runtime_Serialization_ISerializable_GetObjectData_m3092937593 (Missing_t1033855606 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { return; } } // System.Void System.Reflection.Module::.ctor() extern "C" void Module__ctor_m3853650010 (Module_t4282841206 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.Module::.cctor() extern Il2CppClass* TypeFilter_t2905709404_il2cpp_TypeInfo_var; extern Il2CppClass* Module_t4282841206_il2cpp_TypeInfo_var; extern const MethodInfo* Module_filter_by_type_name_m2283758100_MethodInfo_var; extern const MethodInfo* Module_filter_by_type_name_ignore_case_m3574895736_MethodInfo_var; extern const uint32_t Module__cctor_m2698817211_MetadataUsageId; extern "C" void Module__cctor_m2698817211 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Module__cctor_m2698817211_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IntPtr_t L_0; L_0.set_m_value_0((void*)(void*)Module_filter_by_type_name_m2283758100_MethodInfo_var); TypeFilter_t2905709404 * L_1 = (TypeFilter_t2905709404 *)il2cpp_codegen_object_new(TypeFilter_t2905709404_il2cpp_TypeInfo_var); TypeFilter__ctor_m1798016172(L_1, NULL, L_0, /*hidden argument*/NULL); ((Module_t4282841206_StaticFields*)Module_t4282841206_il2cpp_TypeInfo_var->static_fields)->set_FilterTypeName_1(L_1); IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Module_filter_by_type_name_ignore_case_m3574895736_MethodInfo_var); TypeFilter_t2905709404 * L_3 = (TypeFilter_t2905709404 *)il2cpp_codegen_object_new(TypeFilter_t2905709404_il2cpp_TypeInfo_var); TypeFilter__ctor_m1798016172(L_3, NULL, L_2, /*hidden argument*/NULL); ((Module_t4282841206_StaticFields*)Module_t4282841206_il2cpp_TypeInfo_var->static_fields)->set_FilterTypeNameIgnoreCase_2(L_3); return; } } // System.Reflection.Assembly System.Reflection.Module::get_Assembly() extern "C" Assembly_t4268412390 * Module_get_Assembly_m3690289982 (Module_t4282841206 * __this, const MethodInfo* method) { { Assembly_t4268412390 * L_0 = __this->get_assembly_4(); return L_0; } } // System.String System.Reflection.Module::get_ScopeName() extern "C" String_t* Module_get_ScopeName_m207704721 (Module_t4282841206 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_scopename_7(); return L_0; } } // System.Object[] System.Reflection.Module::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t Module_GetCustomAttributes_m3581287913_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* Module_GetCustomAttributes_m3581287913 (Module_t4282841206 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Module_GetCustomAttributes_m3581287913_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Reflection.Module::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2792112382; extern const uint32_t Module_GetObjectData_m3106234990_MetadataUsageId; extern "C" void Module_GetObjectData_m3106234990 (Module_t4282841206 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Module_GetObjectData_m3106234990_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t228987430 * L_0 = ___info0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral2792112382, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { SerializationInfo_t228987430 * L_2 = ___info0; StreamingContext_t1417235061 L_3 = ___context1; UnitySerializationHolder_GetModuleData_m2945403213(NULL /*static, unused*/, __this, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Type[] System.Reflection.Module::InternalGetTypes() extern "C" TypeU5BU5D_t1664964607* Module_InternalGetTypes_m4286760634 (Module_t4282841206 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef TypeU5BU5D_t1664964607* (*Module_InternalGetTypes_m4286760634_ftn) (Module_t4282841206 *); return ((Module_InternalGetTypes_m4286760634_ftn)mscorlib::System::Reflection::Module::InternalGetTypes) (__this); } // System.Type[] System.Reflection.Module::GetTypes() extern "C" TypeU5BU5D_t1664964607* Module_GetTypes_m736359871 (Module_t4282841206 * __this, const MethodInfo* method) { { TypeU5BU5D_t1664964607* L_0 = Module_InternalGetTypes_m4286760634(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Reflection.Module::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t Module_IsDefined_m3561426235_MetadataUsageId; extern "C" bool Module_IsDefined_m3561426235 (Module_t4282841206 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Module_IsDefined_m3561426235_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Reflection.Module::IsResource() extern "C" bool Module_IsResource_m663979284 (Module_t4282841206 * __this, const MethodInfo* method) { { bool L_0 = __this->get_is_resource_8(); return L_0; } } // System.String System.Reflection.Module::ToString() extern "C" String_t* Module_ToString_m2343839315 (Module_t4282841206 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_6(); return L_0; } } // System.Boolean System.Reflection.Module::filter_by_type_name(System.Type,System.Object) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029320; extern const uint32_t Module_filter_by_type_name_m2283758100_MetadataUsageId; extern "C" bool Module_filter_by_type_name_m2283758100 (Il2CppObject * __this /* static, unused */, Type_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Module_filter_by_type_name_m2283758100_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Il2CppObject * L_0 = ___filterCriteria1; V_0 = ((String_t*)CastclassSealed(L_0, String_t_il2cpp_TypeInfo_var)); String_t* L_1 = V_0; NullCheck(L_1); bool L_2 = String_EndsWith_m568509976(L_1, _stringLiteral372029320, /*hidden argument*/NULL); if (!L_2) { goto IL_0032; } } { Type_t * L_3 = ___m0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); String_t* L_5 = V_0; String_t* L_6 = V_0; NullCheck(L_6); int32_t L_7 = String_get_Length_m1606060069(L_6, /*hidden argument*/NULL); NullCheck(L_5); String_t* L_8 = String_Substring_m12482732(L_5, 0, ((int32_t)((int32_t)L_7-(int32_t)1)), /*hidden argument*/NULL); NullCheck(L_4); bool L_9 = String_StartsWith_m1841920685(L_4, L_8, /*hidden argument*/NULL); return L_9; } IL_0032: { Type_t * L_10 = ___m0; NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); String_t* L_12 = V_0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_13 = String_op_Equality_m1790663636(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL); return L_13; } } // System.Boolean System.Reflection.Module::filter_by_type_name_ignore_case(System.Type,System.Object) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029320; extern const uint32_t Module_filter_by_type_name_ignore_case_m3574895736_MetadataUsageId; extern "C" bool Module_filter_by_type_name_ignore_case_m3574895736 (Il2CppObject * __this /* static, unused */, Type_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Module_filter_by_type_name_ignore_case_m3574895736_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Il2CppObject * L_0 = ___filterCriteria1; V_0 = ((String_t*)CastclassSealed(L_0, String_t_il2cpp_TypeInfo_var)); String_t* L_1 = V_0; NullCheck(L_1); bool L_2 = String_EndsWith_m568509976(L_1, _stringLiteral372029320, /*hidden argument*/NULL); if (!L_2) { goto IL_003c; } } { Type_t * L_3 = ___m0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); NullCheck(L_4); String_t* L_5 = String_ToLower_m2994460523(L_4, /*hidden argument*/NULL); String_t* L_6 = V_0; String_t* L_7 = V_0; NullCheck(L_7); int32_t L_8 = String_get_Length_m1606060069(L_7, /*hidden argument*/NULL); NullCheck(L_6); String_t* L_9 = String_Substring_m12482732(L_6, 0, ((int32_t)((int32_t)L_8-(int32_t)1)), /*hidden argument*/NULL); NullCheck(L_9); String_t* L_10 = String_ToLower_m2994460523(L_9, /*hidden argument*/NULL); NullCheck(L_5); bool L_11 = String_StartsWith_m1841920685(L_5, L_10, /*hidden argument*/NULL); return L_11; } IL_003c: { Type_t * L_12 = ___m0; NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_12); String_t* L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); int32_t L_15 = String_Compare_m2851607672(NULL /*static, unused*/, L_13, L_14, (bool)1, /*hidden argument*/NULL); return (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0); } } // System.Void System.Reflection.MonoCMethod::.ctor() extern Il2CppClass* ConstructorInfo_t2851816542_il2cpp_TypeInfo_var; extern const uint32_t MonoCMethod__ctor_m2473049889_MetadataUsageId; extern "C" void MonoCMethod__ctor_m2473049889 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoCMethod__ctor_m2473049889_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t2851816542_il2cpp_TypeInfo_var); ConstructorInfo__ctor_m3847352284(__this, /*hidden argument*/NULL); return; } } // System.Reflection.ParameterInfo[] System.Reflection.MonoCMethod::GetParameters() extern "C" ParameterInfoU5BU5D_t2275869610* MonoCMethod_GetParameters_m2658773133 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_2(); ParameterInfoU5BU5D_t2275869610* L_1 = MonoMethodInfo_GetParametersInfo_m3456861922(NULL /*static, unused*/, L_0, __this, /*hidden argument*/NULL); return L_1; } } // System.Object System.Reflection.MonoCMethod::InternalInvoke(System.Object,System.Object[],System.Exception&) extern "C" Il2CppObject * MonoCMethod_InternalInvoke_m2816771359 (MonoCMethod_t611352247 * __this, Il2CppObject * ___obj0, ObjectU5BU5D_t3614634134* ___parameters1, Exception_t1927440687 ** ___exc2, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Il2CppObject * (*MonoCMethod_InternalInvoke_m2816771359_ftn) (MonoCMethod_t611352247 *, Il2CppObject *, ObjectU5BU5D_t3614634134*, Exception_t1927440687 **); return ((MonoCMethod_InternalInvoke_m2816771359_ftn)mscorlib::System::Reflection::MonoMethod::InternalInvoke) (__this, ___obj0, ___parameters1, ___exc2); } // System.Object System.Reflection.MonoCMethod::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* MemberAccessException_t2005094827_il2cpp_TypeInfo_var; extern Il2CppClass* MethodAccessException_t4093255254_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t1927440687_il2cpp_TypeInfo_var; extern Il2CppClass* TargetInvocationException_t4098620458_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3569083427; extern Il2CppCodeGenString* _stringLiteral404785397; extern Il2CppCodeGenString* _stringLiteral2903444890; extern Il2CppCodeGenString* _stringLiteral1065211720; extern Il2CppCodeGenString* _stringLiteral1582284496; extern const uint32_t MonoCMethod_Invoke_m264177196_MetadataUsageId; extern "C" Il2CppObject * MonoCMethod_Invoke_m264177196 (MonoCMethod_t611352247 * __this, Il2CppObject * ___obj0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, ObjectU5BU5D_t3614634134* ___parameters3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoCMethod_Invoke_m264177196_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; int32_t V_1 = 0; Exception_t1927440687 * V_2 = NULL; Il2CppObject * V_3 = NULL; Exception_t1927440687 * V_4 = NULL; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); Il2CppObject * G_B33_0 = NULL; { Binder_t3404612058 * L_0 = ___binder2; if (L_0) { goto IL_000d; } } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder_t3404612058 * L_1 = Binder_get_DefaultBinder_m965620943(NULL /*static, unused*/, /*hidden argument*/NULL); ___binder2 = L_1; } IL_000d: { ParameterInfoU5BU5D_t2275869610* L_2 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MonoCMethod::GetParameters() */, __this); V_0 = L_2; ObjectU5BU5D_t3614634134* L_3 = ___parameters3; if (L_3) { goto IL_0023; } } { ParameterInfoU5BU5D_t2275869610* L_4 = V_0; NullCheck(L_4); if ((((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length))))) { goto IL_0036; } } IL_0023: { ObjectU5BU5D_t3614634134* L_5 = ___parameters3; if (!L_5) { goto IL_0041; } } { ObjectU5BU5D_t3614634134* L_6 = ___parameters3; NullCheck(L_6); ParameterInfoU5BU5D_t2275869610* L_7 = V_0; NullCheck(L_7); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_6)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_7)->max_length))))))) { goto IL_0041; } } IL_0036: { TargetParameterCountException_t1554451430 * L_8 = (TargetParameterCountException_t1554451430 *)il2cpp_codegen_object_new(TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var); TargetParameterCountException__ctor_m2760108938(L_8, _stringLiteral3569083427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_0041: { int32_t L_9 = ___invokeAttr1; if (((int32_t)((int32_t)L_9&(int32_t)((int32_t)65536)))) { goto IL_006d; } } { Binder_t3404612058 * L_10 = ___binder2; ObjectU5BU5D_t3614634134* L_11 = ___parameters3; ParameterInfoU5BU5D_t2275869610* L_12 = V_0; CultureInfo_t3500843524 * L_13 = ___culture4; IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); bool L_14 = Binder_ConvertArgs_m2999223281(NULL /*static, unused*/, L_10, L_11, L_12, L_13, /*hidden argument*/NULL); if (L_14) { goto IL_0068; } } { ArgumentException_t3259014390 * L_15 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_15, _stringLiteral404785397, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0068: { goto IL_00a2; } IL_006d: { V_1 = 0; goto IL_0099; } IL_0074: { ObjectU5BU5D_t3614634134* L_16 = ___parameters3; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = L_17; Il2CppObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); NullCheck(L_19); Type_t * L_20 = Object_GetType_m191970594(L_19, /*hidden argument*/NULL); ParameterInfoU5BU5D_t2275869610* L_21 = V_0; int32_t L_22 = V_1; NullCheck(L_21); int32_t L_23 = L_22; ParameterInfo_t2249040075 * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); NullCheck(L_24); Type_t * L_25 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_24); if ((((Il2CppObject*)(Type_t *)L_20) == ((Il2CppObject*)(Type_t *)L_25))) { goto IL_0095; } } { ArgumentException_t3259014390 * L_26 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_26, _stringLiteral3569083427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26); } IL_0095: { int32_t L_27 = V_1; V_1 = ((int32_t)((int32_t)L_27+(int32_t)1)); } IL_0099: { int32_t L_28 = V_1; ParameterInfoU5BU5D_t2275869610* L_29 = V_0; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_29)->max_length))))))) { goto IL_0074; } } IL_00a2: { Il2CppObject * L_30 = ___obj0; if (L_30) { goto IL_00d3; } } { Type_t * L_31 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoCMethod::get_DeclaringType() */, __this); NullCheck(L_31); bool L_32 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_31); if (!L_32) { goto IL_00d3; } } { Type_t * L_33 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoCMethod::get_DeclaringType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_34 = String_Concat_m2000667605(NULL /*static, unused*/, _stringLiteral2903444890, L_33, _stringLiteral1065211720, /*hidden argument*/NULL); MemberAccessException_t2005094827 * L_35 = (MemberAccessException_t2005094827 *)il2cpp_codegen_object_new(MemberAccessException_t2005094827_il2cpp_TypeInfo_var); MemberAccessException__ctor_m111743236(L_35, L_34, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35); } IL_00d3: { int32_t L_36 = ___invokeAttr1; if (!((int32_t)((int32_t)L_36&(int32_t)((int32_t)512)))) { goto IL_0105; } } { Type_t * L_37 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoCMethod::get_DeclaringType() */, __this); NullCheck(L_37); bool L_38 = Type_get_IsAbstract_m2532060002(L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_0105; } } { Type_t * L_39 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoCMethod::get_DeclaringType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_40 = String_Format_m2024975688(NULL /*static, unused*/, _stringLiteral1582284496, L_39, /*hidden argument*/NULL); MemberAccessException_t2005094827 * L_41 = (MemberAccessException_t2005094827 *)il2cpp_codegen_object_new(MemberAccessException_t2005094827_il2cpp_TypeInfo_var); MemberAccessException__ctor_m111743236(L_41, L_40, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_41); } IL_0105: { V_2 = (Exception_t1927440687 *)NULL; V_3 = NULL; } IL_0109: try { // begin try (depth: 1) Il2CppObject * L_42 = ___obj0; ObjectU5BU5D_t3614634134* L_43 = ___parameters3; Il2CppObject * L_44 = MonoCMethod_InternalInvoke_m2816771359(__this, L_42, L_43, (&V_2), /*hidden argument*/NULL); V_3 = L_44; goto IL_0131; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (MethodAccessException_t4093255254_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_011a; if(il2cpp_codegen_class_is_assignable_from (Exception_t1927440687_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0122; throw e; } CATCH_011a: { // begin catch(System.MethodAccessException) { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local); } IL_011d: { goto IL_0131; } } // end catch (depth: 1) CATCH_0122: { // begin catch(System.Exception) { V_4 = ((Exception_t1927440687 *)__exception_local); Exception_t1927440687 * L_45 = V_4; TargetInvocationException_t4098620458 * L_46 = (TargetInvocationException_t4098620458 *)il2cpp_codegen_object_new(TargetInvocationException_t4098620458_il2cpp_TypeInfo_var); TargetInvocationException__ctor_m1059845570(L_46, L_45, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_46); } IL_012c: { goto IL_0131; } } // end catch (depth: 1) IL_0131: { Exception_t1927440687 * L_47 = V_2; if (!L_47) { goto IL_0139; } } { Exception_t1927440687 * L_48 = V_2; IL2CPP_RAISE_MANAGED_EXCEPTION(L_48); } IL_0139: { Il2CppObject * L_49 = ___obj0; if (L_49) { goto IL_0145; } } { Il2CppObject * L_50 = V_3; G_B33_0 = L_50; goto IL_0146; } IL_0145: { G_B33_0 = NULL; } IL_0146: { return G_B33_0; } } // System.Object System.Reflection.MonoCMethod::Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern "C" Il2CppObject * MonoCMethod_Invoke_m931478014 (MonoCMethod_t611352247 * __this, int32_t ___invokeAttr0, Binder_t3404612058 * ___binder1, ObjectU5BU5D_t3614634134* ___parameters2, CultureInfo_t3500843524 * ___culture3, const MethodInfo* method) { { int32_t L_0 = ___invokeAttr0; Binder_t3404612058 * L_1 = ___binder1; ObjectU5BU5D_t3614634134* L_2 = ___parameters2; CultureInfo_t3500843524 * L_3 = ___culture3; Il2CppObject * L_4 = VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(17 /* System.Object System.Reflection.MonoCMethod::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, __this, NULL, L_0, L_1, L_2, L_3); return L_4; } } // System.RuntimeMethodHandle System.Reflection.MonoCMethod::get_MethodHandle() extern "C" RuntimeMethodHandle_t894824333 MonoCMethod_get_MethodHandle_m3394506066 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_2(); RuntimeMethodHandle_t894824333 L_1; memset(&L_1, 0, sizeof(L_1)); RuntimeMethodHandle__ctor_m1162528746(&L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodAttributes System.Reflection.MonoCMethod::get_Attributes() extern "C" int32_t MonoCMethod_get_Attributes_m3914742834 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_2(); int32_t L_1 = MonoMethodInfo_GetAttributes_m2535493430(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.CallingConventions System.Reflection.MonoCMethod::get_CallingConvention() extern "C" int32_t MonoCMethod_get_CallingConvention_m3356441108 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_2(); int32_t L_1 = MonoMethodInfo_GetCallingConvention_m3095860872(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.MonoCMethod::get_ReflectedType() extern "C" Type_t * MonoCMethod_get_ReflectedType_m3611546138 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_reftype_4(); return L_0; } } // System.Type System.Reflection.MonoCMethod::get_DeclaringType() extern "C" Type_t * MonoCMethod_get_DeclaringType_m4147430117 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_2(); Type_t * L_1 = MonoMethodInfo_GetDeclaringType_m4186531677(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.MonoCMethod::get_Name() extern "C" String_t* MonoCMethod_get_Name_m764669486 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_3(); if (!L_0) { goto IL_0012; } } { String_t* L_1 = __this->get_name_3(); return L_1; } IL_0012: { String_t* L_2 = MonoMethod_get_name_m1503581873(NULL /*static, unused*/, __this, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Reflection.MonoCMethod::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoCMethod_IsDefined_m3686883242_MetadataUsageId; extern "C" bool MonoCMethod_IsDefined_m3686883242 (MonoCMethod_t611352247 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoCMethod_IsDefined_m3686883242_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.MonoCMethod::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoCMethod_GetCustomAttributes_m2886701175_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoCMethod_GetCustomAttributes_m2886701175 (MonoCMethod_t611352247 * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoCMethod_GetCustomAttributes_m2886701175_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_1 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Object[] System.Reflection.MonoCMethod::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoCMethod_GetCustomAttributes_m1110360782_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoCMethod_GetCustomAttributes_m1110360782 (MonoCMethod_t611352247 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoCMethod_GetCustomAttributes_m1110360782_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.String System.Reflection.MonoCMethod::ToString() extern Il2CppClass* StringBuilder_t1221177846_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral35761088; extern Il2CppCodeGenString* _stringLiteral372029318; extern Il2CppCodeGenString* _stringLiteral811305474; extern Il2CppCodeGenString* _stringLiteral3422253728; extern Il2CppCodeGenString* _stringLiteral372029317; extern const uint32_t MonoCMethod_ToString_m607787036_MetadataUsageId; extern "C" String_t* MonoCMethod_ToString_m607787036 (MonoCMethod_t611352247 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoCMethod_ToString_m607787036_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1221177846 * V_0 = NULL; ParameterInfoU5BU5D_t2275869610* V_1 = NULL; int32_t V_2 = 0; { StringBuilder_t1221177846 * L_0 = (StringBuilder_t1221177846 *)il2cpp_codegen_object_new(StringBuilder_t1221177846_il2cpp_TypeInfo_var); StringBuilder__ctor_m3946851802(L_0, /*hidden argument*/NULL); V_0 = L_0; StringBuilder_t1221177846 * L_1 = V_0; NullCheck(L_1); StringBuilder_Append_m3636508479(L_1, _stringLiteral35761088, /*hidden argument*/NULL); StringBuilder_t1221177846 * L_2 = V_0; String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoCMethod::get_Name() */, __this); NullCheck(L_2); StringBuilder_Append_m3636508479(L_2, L_3, /*hidden argument*/NULL); StringBuilder_t1221177846 * L_4 = V_0; NullCheck(L_4); StringBuilder_Append_m3636508479(L_4, _stringLiteral372029318, /*hidden argument*/NULL); ParameterInfoU5BU5D_t2275869610* L_5 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MonoCMethod::GetParameters() */, __this); V_1 = L_5; V_2 = 0; goto IL_0064; } IL_0039: { int32_t L_6 = V_2; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_004c; } } { StringBuilder_t1221177846 * L_7 = V_0; NullCheck(L_7); StringBuilder_Append_m3636508479(L_7, _stringLiteral811305474, /*hidden argument*/NULL); } IL_004c: { StringBuilder_t1221177846 * L_8 = V_0; ParameterInfoU5BU5D_t2275869610* L_9 = V_1; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; ParameterInfo_t2249040075 * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); NullCheck(L_12); Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_12); NullCheck(L_13); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_13); NullCheck(L_8); StringBuilder_Append_m3636508479(L_8, L_14, /*hidden argument*/NULL); int32_t L_15 = V_2; V_2 = ((int32_t)((int32_t)L_15+(int32_t)1)); } IL_0064: { int32_t L_16 = V_2; ParameterInfoU5BU5D_t2275869610* L_17 = V_1; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_17)->max_length))))))) { goto IL_0039; } } { int32_t L_18 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MonoCMethod::get_CallingConvention() */, __this); if ((!(((uint32_t)L_18) == ((uint32_t)3)))) { goto IL_0085; } } { StringBuilder_t1221177846 * L_19 = V_0; NullCheck(L_19); StringBuilder_Append_m3636508479(L_19, _stringLiteral3422253728, /*hidden argument*/NULL); } IL_0085: { StringBuilder_t1221177846 * L_20 = V_0; NullCheck(L_20); StringBuilder_Append_m3636508479(L_20, _stringLiteral372029317, /*hidden argument*/NULL); StringBuilder_t1221177846 * L_21 = V_0; NullCheck(L_21); String_t* L_22 = StringBuilder_ToString_m1507807375(L_21, /*hidden argument*/NULL); return L_22; } } // System.Void System.Reflection.MonoCMethod::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void MonoCMethod_GetObjectData_m2435596845 (MonoCMethod_t611352247 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoCMethod::get_Name() */, __this); Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MonoCMethod::get_ReflectedType() */, __this); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Reflection.MonoCMethod::ToString() */, __this); MemberInfoSerializationHolder_Serialize_m1949812823(NULL /*static, unused*/, L_0, L_1, L_2, L_3, 1, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MonoEvent::.ctor() extern "C" void MonoEvent__ctor_m1430144453 (MonoEvent_t * __this, const MethodInfo* method) { { EventInfo__ctor_m1190141300(__this, /*hidden argument*/NULL); return; } } // System.Reflection.EventAttributes System.Reflection.MonoEvent::get_Attributes() extern "C" int32_t MonoEvent_get_Attributes_m2985233365 (MonoEvent_t * __this, const MethodInfo* method) { MonoEventInfo_t2190036573 V_0; memset(&V_0, 0, sizeof(V_0)); { MonoEventInfo_t2190036573 L_0 = MonoEventInfo_GetEventInfo_m2331957186(NULL /*static, unused*/, __this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = (&V_0)->get_attrs_6(); return L_1; } } // System.Reflection.MethodInfo System.Reflection.MonoEvent::GetAddMethod(System.Boolean) extern "C" MethodInfo_t * MonoEvent_GetAddMethod_m4289563120 (MonoEvent_t * __this, bool ___nonPublic0, const MethodInfo* method) { MonoEventInfo_t2190036573 V_0; memset(&V_0, 0, sizeof(V_0)); { MonoEventInfo_t2190036573 L_0 = MonoEventInfo_GetEventInfo_m2331957186(NULL /*static, unused*/, __this, /*hidden argument*/NULL); V_0 = L_0; bool L_1 = ___nonPublic0; if (L_1) { goto IL_002a; } } { MethodInfo_t * L_2 = (&V_0)->get_add_method_3(); if (!L_2) { goto IL_0032; } } { MethodInfo_t * L_3 = (&V_0)->get_add_method_3(); NullCheck(L_3); bool L_4 = MethodBase_get_IsPublic_m479656180(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0032; } } IL_002a: { MethodInfo_t * L_5 = (&V_0)->get_add_method_3(); return L_5; } IL_0032: { return (MethodInfo_t *)NULL; } } // System.Type System.Reflection.MonoEvent::get_DeclaringType() extern "C" Type_t * MonoEvent_get_DeclaringType_m2319125729 (MonoEvent_t * __this, const MethodInfo* method) { MonoEventInfo_t2190036573 V_0; memset(&V_0, 0, sizeof(V_0)); { MonoEventInfo_t2190036573 L_0 = MonoEventInfo_GetEventInfo_m2331957186(NULL /*static, unused*/, __this, /*hidden argument*/NULL); V_0 = L_0; Type_t * L_1 = (&V_0)->get_declaring_type_0(); return L_1; } } // System.Type System.Reflection.MonoEvent::get_ReflectedType() extern "C" Type_t * MonoEvent_get_ReflectedType_m434281898 (MonoEvent_t * __this, const MethodInfo* method) { MonoEventInfo_t2190036573 V_0; memset(&V_0, 0, sizeof(V_0)); { MonoEventInfo_t2190036573 L_0 = MonoEventInfo_GetEventInfo_m2331957186(NULL /*static, unused*/, __this, /*hidden argument*/NULL); V_0 = L_0; Type_t * L_1 = (&V_0)->get_reflected_type_1(); return L_1; } } // System.String System.Reflection.MonoEvent::get_Name() extern "C" String_t* MonoEvent_get_Name_m2796714646 (MonoEvent_t * __this, const MethodInfo* method) { MonoEventInfo_t2190036573 V_0; memset(&V_0, 0, sizeof(V_0)); { MonoEventInfo_t2190036573 L_0 = MonoEventInfo_GetEventInfo_m2331957186(NULL /*static, unused*/, __this, /*hidden argument*/NULL); V_0 = L_0; String_t* L_1 = (&V_0)->get_name_2(); return L_1; } } // System.String System.Reflection.MonoEvent::ToString() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029310; extern const uint32_t MonoEvent_ToString_m386956596_MetadataUsageId; extern "C" String_t* MonoEvent_ToString_m386956596 (MonoEvent_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoEvent_ToString_m386956596_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = EventInfo_get_EventHandlerType_m2787680849(__this, /*hidden argument*/NULL); String_t* L_1 = MonoEvent_get_Name_m2796714646(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Concat_m2000667605(NULL /*static, unused*/, L_0, _stringLiteral372029310, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Reflection.MonoEvent::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoEvent_IsDefined_m3151861274_MetadataUsageId; extern "C" bool MonoEvent_IsDefined_m3151861274 (MonoEvent_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoEvent_IsDefined_m3151861274_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.MonoEvent::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoEvent_GetCustomAttributes_m2349471159_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoEvent_GetCustomAttributes_m2349471159 (MonoEvent_t * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoEvent_GetCustomAttributes_m2349471159_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_1 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Object[] System.Reflection.MonoEvent::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoEvent_GetCustomAttributes_m3899596098_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoEvent_GetCustomAttributes_m3899596098 (MonoEvent_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoEvent_GetCustomAttributes_m3899596098_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Reflection.MonoEvent::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void MonoEvent_GetObjectData_m4084431065 (MonoEvent_t * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; String_t* L_1 = MonoEvent_get_Name_m2796714646(__this, /*hidden argument*/NULL); Type_t * L_2 = MonoEvent_get_ReflectedType_m434281898(__this, /*hidden argument*/NULL); String_t* L_3 = MonoEvent_ToString_m386956596(__this, /*hidden argument*/NULL); MemberInfoSerializationHolder_Serialize_m1949812823(NULL /*static, unused*/, L_0, L_1, L_2, L_3, 2, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MonoEventInfo::get_event_info(System.Reflection.MonoEvent,System.Reflection.MonoEventInfo&) extern "C" void MonoEventInfo_get_event_info_m781402243 (Il2CppObject * __this /* static, unused */, MonoEvent_t * ___ev0, MonoEventInfo_t2190036573 * ___info1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*MonoEventInfo_get_event_info_m781402243_ftn) (MonoEvent_t *, MonoEventInfo_t2190036573 *); ((MonoEventInfo_get_event_info_m781402243_ftn)mscorlib::System::Reflection::MonoEventInfo::get_event_info) (___ev0, ___info1); } // System.Reflection.MonoEventInfo System.Reflection.MonoEventInfo::GetEventInfo(System.Reflection.MonoEvent) extern "C" MonoEventInfo_t2190036573 MonoEventInfo_GetEventInfo_m2331957186 (Il2CppObject * __this /* static, unused */, MonoEvent_t * ___ev0, const MethodInfo* method) { MonoEventInfo_t2190036573 V_0; memset(&V_0, 0, sizeof(V_0)); { MonoEvent_t * L_0 = ___ev0; MonoEventInfo_get_event_info_m781402243(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL); MonoEventInfo_t2190036573 L_1 = V_0; return L_1; } } // Conversion methods for marshalling of: System.Reflection.MonoEventInfo extern "C" void MonoEventInfo_t2190036573_marshal_pinvoke(const MonoEventInfo_t2190036573& unmarshaled, MonoEventInfo_t2190036573_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___declaring_type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'declaring_type' of type 'MonoEventInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___declaring_type_0Exception); } extern "C" void MonoEventInfo_t2190036573_marshal_pinvoke_back(const MonoEventInfo_t2190036573_marshaled_pinvoke& marshaled, MonoEventInfo_t2190036573& unmarshaled) { Il2CppCodeGenException* ___declaring_type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'declaring_type' of type 'MonoEventInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___declaring_type_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.MonoEventInfo extern "C" void MonoEventInfo_t2190036573_marshal_pinvoke_cleanup(MonoEventInfo_t2190036573_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Reflection.MonoEventInfo extern "C" void MonoEventInfo_t2190036573_marshal_com(const MonoEventInfo_t2190036573& unmarshaled, MonoEventInfo_t2190036573_marshaled_com& marshaled) { Il2CppCodeGenException* ___declaring_type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'declaring_type' of type 'MonoEventInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___declaring_type_0Exception); } extern "C" void MonoEventInfo_t2190036573_marshal_com_back(const MonoEventInfo_t2190036573_marshaled_com& marshaled, MonoEventInfo_t2190036573& unmarshaled) { Il2CppCodeGenException* ___declaring_type_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'declaring_type' of type 'MonoEventInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___declaring_type_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.MonoEventInfo extern "C" void MonoEventInfo_t2190036573_marshal_com_cleanup(MonoEventInfo_t2190036573_marshaled_com& marshaled) { } // System.Void System.Reflection.MonoField::.ctor() extern "C" void MonoField__ctor_m494557655 (MonoField_t * __this, const MethodInfo* method) { { FieldInfo__ctor_m1952545900(__this, /*hidden argument*/NULL); return; } } // System.Reflection.FieldAttributes System.Reflection.MonoField::get_Attributes() extern "C" int32_t MonoField_get_Attributes_m4138688533 (MonoField_t * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_attrs_4(); return L_0; } } // System.RuntimeFieldHandle System.Reflection.MonoField::get_FieldHandle() extern "C" RuntimeFieldHandle_t2331729674 MonoField_get_FieldHandle_m4221523254 (MonoField_t * __this, const MethodInfo* method) { { RuntimeFieldHandle_t2331729674 L_0 = __this->get_fhandle_1(); return L_0; } } // System.Type System.Reflection.MonoField::get_FieldType() extern "C" Type_t * MonoField_get_FieldType_m598011426 (MonoField_t * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_type_3(); return L_0; } } // System.Type System.Reflection.MonoField::GetParentType(System.Boolean) extern "C" Type_t * MonoField_GetParentType_m2074626828 (MonoField_t * __this, bool ___declaring0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Type_t * (*MonoField_GetParentType_m2074626828_ftn) (MonoField_t *, bool); return ((MonoField_GetParentType_m2074626828_ftn)mscorlib::System::Reflection::MonoField::GetParentType) (__this, ___declaring0); } // System.Type System.Reflection.MonoField::get_ReflectedType() extern "C" Type_t * MonoField_get_ReflectedType_m2228561986 (MonoField_t * __this, const MethodInfo* method) { { Type_t * L_0 = MonoField_GetParentType_m2074626828(__this, (bool)0, /*hidden argument*/NULL); return L_0; } } // System.Type System.Reflection.MonoField::get_DeclaringType() extern "C" Type_t * MonoField_get_DeclaringType_m1591666235 (MonoField_t * __this, const MethodInfo* method) { { Type_t * L_0 = MonoField_GetParentType_m2074626828(__this, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.String System.Reflection.MonoField::get_Name() extern "C" String_t* MonoField_get_Name_m3761030246 (MonoField_t * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_2(); return L_0; } } // System.Boolean System.Reflection.MonoField::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoField_IsDefined_m1871511958_MetadataUsageId; extern "C" bool MonoField_IsDefined_m1871511958 (MonoField_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_IsDefined_m1871511958_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.MonoField::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoField_GetCustomAttributes_m4168545977_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoField_GetCustomAttributes_m4168545977 (MonoField_t * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_GetCustomAttributes_m4168545977_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_1 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Object[] System.Reflection.MonoField::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoField_GetCustomAttributes_m1051163738_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoField_GetCustomAttributes_m1051163738 (MonoField_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_GetCustomAttributes_m1051163738_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Reflection.MonoField::GetFieldOffset() extern "C" int32_t MonoField_GetFieldOffset_m3584238032 (MonoField_t * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef int32_t (*MonoField_GetFieldOffset_m3584238032_ftn) (MonoField_t *); return ((MonoField_GetFieldOffset_m3584238032_ftn)mscorlib::System::Reflection::MonoField::GetFieldOffset) (__this); } // System.Object System.Reflection.MonoField::GetValueInternal(System.Object) extern "C" Il2CppObject * MonoField_GetValueInternal_m1909282050 (MonoField_t * __this, Il2CppObject * ___obj0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Il2CppObject * (*MonoField_GetValueInternal_m1909282050_ftn) (MonoField_t *, Il2CppObject *); return ((MonoField_GetValueInternal_m1909282050_ftn)mscorlib::System::Reflection::MonoField::GetValueInternal) (__this, ___obj0); } // System.Object System.Reflection.MonoField::GetValue(System.Object) extern Il2CppClass* TargetException_t1572104820_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2752958494; extern Il2CppCodeGenString* _stringLiteral3735664915; extern Il2CppCodeGenString* _stringLiteral1099314147; extern const uint32_t MonoField_GetValue_m1386935585_MetadataUsageId; extern "C" Il2CppObject * MonoField_GetValue_m1386935585 (MonoField_t * __this, Il2CppObject * ___obj0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_GetValue_m1386935585_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = FieldInfo_get_IsStatic_m1411173225(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0059; } } { Il2CppObject * L_1 = ___obj0; if (L_1) { goto IL_001c; } } { TargetException_t1572104820 * L_2 = (TargetException_t1572104820 *)il2cpp_codegen_object_new(TargetException_t1572104820_il2cpp_TypeInfo_var); TargetException__ctor_m3228808416(L_2, _stringLiteral2752958494, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoField::get_DeclaringType() */, __this); Il2CppObject * L_4 = ___obj0; NullCheck(L_4); Type_t * L_5 = Object_GetType_m191970594(L_4, /*hidden argument*/NULL); NullCheck(L_3); bool L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_3, L_5); if (L_6) { goto IL_0059; } } { String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoField::get_Name() */, __this); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoField::get_DeclaringType() */, __this); Il2CppObject * L_9 = ___obj0; NullCheck(L_9); Type_t * L_10 = Object_GetType_m191970594(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Format_m4262916296(NULL /*static, unused*/, _stringLiteral3735664915, L_7, L_8, L_10, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_12 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m544251339(L_12, L_11, _stringLiteral1099314147, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0059: { bool L_13 = FieldInfo_get_IsLiteral_m267898096(__this, /*hidden argument*/NULL); if (L_13) { goto IL_006a; } } { MonoField_CheckGeneric_m1527550038(__this, /*hidden argument*/NULL); } IL_006a: { Il2CppObject * L_14 = ___obj0; Il2CppObject * L_15 = MonoField_GetValueInternal_m1909282050(__this, L_14, /*hidden argument*/NULL); return L_15; } } // System.String System.Reflection.MonoField::ToString() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2512070489; extern const uint32_t MonoField_ToString_m517029212_MetadataUsageId; extern "C" String_t* MonoField_ToString_m517029212 (MonoField_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_ToString_m517029212_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = __this->get_type_3(); String_t* L_1 = __this->get_name_2(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral2512070489, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Reflection.MonoField::SetValueInternal(System.Reflection.FieldInfo,System.Object,System.Object) extern "C" void MonoField_SetValueInternal_m762249951 (Il2CppObject * __this /* static, unused */, FieldInfo_t * ___fi0, Il2CppObject * ___obj1, Il2CppObject * ___value2, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*MonoField_SetValueInternal_m762249951_ftn) (FieldInfo_t *, Il2CppObject *, Il2CppObject *); ((MonoField_SetValueInternal_m762249951_ftn)mscorlib::System::Reflection::MonoField::SetValueInternal) (___fi0, ___obj1, ___value2); } // System.Void System.Reflection.MonoField::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Globalization.CultureInfo) extern Il2CppClass* TargetException_t1572104820_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* FieldAccessException_t1797813379_il2cpp_TypeInfo_var; extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2752958494; extern Il2CppCodeGenString* _stringLiteral3735664915; extern Il2CppCodeGenString* _stringLiteral1099314147; extern Il2CppCodeGenString* _stringLiteral4043003486; extern Il2CppCodeGenString* _stringLiteral2614084089; extern Il2CppCodeGenString* _stringLiteral3234870220; extern Il2CppCodeGenString* _stringLiteral696029875; extern const uint32_t MonoField_SetValue_m1849281384_MetadataUsageId; extern "C" void MonoField_SetValue_m1849281384 (MonoField_t * __this, Il2CppObject * ___obj0, Il2CppObject * ___val1, int32_t ___invokeAttr2, Binder_t3404612058 * ___binder3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_SetValue_m1849281384_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppObject * V_0 = NULL; { bool L_0 = FieldInfo_get_IsStatic_m1411173225(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0059; } } { Il2CppObject * L_1 = ___obj0; if (L_1) { goto IL_001c; } } { TargetException_t1572104820 * L_2 = (TargetException_t1572104820 *)il2cpp_codegen_object_new(TargetException_t1572104820_il2cpp_TypeInfo_var); TargetException__ctor_m3228808416(L_2, _stringLiteral2752958494, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoField::get_DeclaringType() */, __this); Il2CppObject * L_4 = ___obj0; NullCheck(L_4); Type_t * L_5 = Object_GetType_m191970594(L_4, /*hidden argument*/NULL); NullCheck(L_3); bool L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_3, L_5); if (L_6) { goto IL_0059; } } { String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoField::get_Name() */, __this); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoField::get_DeclaringType() */, __this); Il2CppObject * L_9 = ___obj0; NullCheck(L_9); Type_t * L_10 = Object_GetType_m191970594(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Format_m4262916296(NULL /*static, unused*/, _stringLiteral3735664915, L_7, L_8, L_10, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_12 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m544251339(L_12, L_11, _stringLiteral1099314147, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0059: { bool L_13 = FieldInfo_get_IsLiteral_m267898096(__this, /*hidden argument*/NULL); if (!L_13) { goto IL_006f; } } { FieldAccessException_t1797813379 * L_14 = (FieldAccessException_t1797813379 *)il2cpp_codegen_object_new(FieldAccessException_t1797813379_il2cpp_TypeInfo_var); FieldAccessException__ctor_m3893881490(L_14, _stringLiteral4043003486, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14); } IL_006f: { Binder_t3404612058 * L_15 = ___binder3; if (L_15) { goto IL_007d; } } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder_t3404612058 * L_16 = Binder_get_DefaultBinder_m965620943(NULL /*static, unused*/, /*hidden argument*/NULL); ___binder3 = L_16; } IL_007d: { MonoField_CheckGeneric_m1527550038(__this, /*hidden argument*/NULL); Il2CppObject * L_17 = ___val1; if (!L_17) { goto IL_00db; } } { Binder_t3404612058 * L_18 = ___binder3; Il2CppObject * L_19 = ___val1; Type_t * L_20 = __this->get_type_3(); CultureInfo_t3500843524 * L_21 = ___culture4; NullCheck(L_18); Il2CppObject * L_22 = VirtFuncInvoker3< Il2CppObject *, Il2CppObject *, Type_t *, CultureInfo_t3500843524 * >::Invoke(5 /* System.Object System.Reflection.Binder::ChangeType(System.Object,System.Type,System.Globalization.CultureInfo) */, L_18, L_19, L_20, L_21); V_0 = L_22; Il2CppObject * L_23 = V_0; if (L_23) { goto IL_00d8; } } { ObjectU5BU5D_t3614634134* L_24 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)4)); NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteral2614084089); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)_stringLiteral2614084089); ObjectU5BU5D_t3614634134* L_25 = L_24; Il2CppObject * L_26 = ___val1; NullCheck(L_26); Type_t * L_27 = Object_GetType_m191970594(L_26, /*hidden argument*/NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppObject *)L_27); ObjectU5BU5D_t3614634134* L_28 = L_25; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral3234870220); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(2), (Il2CppObject *)_stringLiteral3234870220); ObjectU5BU5D_t3614634134* L_29 = L_28; Type_t * L_30 = __this->get_type_3(); NullCheck(L_29); ArrayElementTypeCheck (L_29, L_30); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(3), (Il2CppObject *)L_30); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_31 = String_Concat_m3881798623(NULL /*static, unused*/, L_29, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_32 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m544251339(L_32, L_31, _stringLiteral696029875, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32); } IL_00d8: { Il2CppObject * L_33 = V_0; ___val1 = L_33; } IL_00db: { Il2CppObject * L_34 = ___obj0; Il2CppObject * L_35 = ___val1; MonoField_SetValueInternal_m762249951(NULL /*static, unused*/, __this, L_34, L_35, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MonoField::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void MonoField_GetObjectData_m3571455087 (MonoField_t * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoField::get_Name() */, __this); Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MonoField::get_ReflectedType() */, __this); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Reflection.MonoField::ToString() */, __this); MemberInfoSerializationHolder_Serialize_m1949812823(NULL /*static, unused*/, L_0, L_1, L_2, L_3, 4, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MonoField::CheckGeneric() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2139378969; extern const uint32_t MonoField_CheckGeneric_m1527550038_MetadataUsageId; extern "C" void MonoField_CheckGeneric_m1527550038 (MonoField_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoField_CheckGeneric_m1527550038_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoField::get_DeclaringType() */, __this); NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_0); if (!L_1) { goto IL_001b; } } { InvalidOperationException_t721527559 * L_2 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_2, _stringLiteral2139378969, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001b: { return; } } // System.Void System.Reflection.MonoGenericCMethod::.ctor() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern const uint32_t MonoGenericCMethod__ctor_m2520666358_MetadataUsageId; extern "C" void MonoGenericCMethod__ctor_m2520666358 (MonoGenericCMethod_t2923423538 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoGenericCMethod__ctor_m2520666358_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MonoCMethod__ctor_m2473049889(__this, /*hidden argument*/NULL); InvalidOperationException_t721527559 * L_0 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m102359810(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.MonoGenericCMethod::get_ReflectedType() extern "C" Type_t * MonoGenericCMethod_get_ReflectedType_m2689239043 (MonoGenericCMethod_t2923423538 * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Type_t * (*MonoGenericCMethod_get_ReflectedType_m2689239043_ftn) (MonoGenericCMethod_t2923423538 *); return ((MonoGenericCMethod_get_ReflectedType_m2689239043_ftn)mscorlib::System::Reflection::MonoGenericCMethod::get_ReflectedType) (__this); } // System.Void System.Reflection.MonoGenericMethod::.ctor() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern const uint32_t MonoGenericMethod__ctor_m2255621499_MetadataUsageId; extern "C" void MonoGenericMethod__ctor_m2255621499 (MonoGenericMethod_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoGenericMethod__ctor_m2255621499_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MonoMethod__ctor_m4091684020(__this, /*hidden argument*/NULL); InvalidOperationException_t721527559 * L_0 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m102359810(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Type System.Reflection.MonoGenericMethod::get_ReflectedType() extern "C" Type_t * MonoGenericMethod_get_ReflectedType_m3194343466 (MonoGenericMethod_t * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Type_t * (*MonoGenericMethod_get_ReflectedType_m3194343466_ftn) (MonoGenericMethod_t *); return ((MonoGenericMethod_get_ReflectedType_m3194343466_ftn)mscorlib::System::Reflection::MonoGenericMethod::get_ReflectedType) (__this); } // System.Void System.Reflection.MonoMethod::.ctor() extern "C" void MonoMethod__ctor_m4091684020 (MonoMethod_t * __this, const MethodInfo* method) { { MethodInfo__ctor_m1853540423(__this, /*hidden argument*/NULL); return; } } // System.String System.Reflection.MonoMethod::get_name(System.Reflection.MethodBase) extern "C" String_t* MonoMethod_get_name_m1503581873 (Il2CppObject * __this /* static, unused */, MethodBase_t904190842 * ___method0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef String_t* (*MonoMethod_get_name_m1503581873_ftn) (MethodBase_t904190842 *); return ((MonoMethod_get_name_m1503581873_ftn)mscorlib::System::Reflection::MonoMethod::get_name) (___method0); } // System.Reflection.MonoMethod System.Reflection.MonoMethod::get_base_definition(System.Reflection.MonoMethod) extern "C" MonoMethod_t * MonoMethod_get_base_definition_m1625237055 (Il2CppObject * __this /* static, unused */, MonoMethod_t * ___method0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef MonoMethod_t * (*MonoMethod_get_base_definition_m1625237055_ftn) (MonoMethod_t *); return ((MonoMethod_get_base_definition_m1625237055_ftn)mscorlib::System::Reflection::MonoMethod::get_base_definition) (___method0); } // System.Reflection.MethodInfo System.Reflection.MonoMethod::GetBaseDefinition() extern "C" MethodInfo_t * MonoMethod_GetBaseDefinition_m1738989472 (MonoMethod_t * __this, const MethodInfo* method) { { MonoMethod_t * L_0 = MonoMethod_get_base_definition_m1625237055(NULL /*static, unused*/, __this, /*hidden argument*/NULL); return L_0; } } // System.Type System.Reflection.MonoMethod::get_ReturnType() extern "C" Type_t * MonoMethod_get_ReturnType_m4218706049 (MonoMethod_t * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_0(); Type_t * L_1 = MonoMethodInfo_GetReturnType_m2864247130(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.ParameterInfo[] System.Reflection.MonoMethod::GetParameters() extern Il2CppClass* ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var; extern const uint32_t MonoMethod_GetParameters_m1240674378_MetadataUsageId; extern "C" ParameterInfoU5BU5D_t2275869610* MonoMethod_GetParameters_m1240674378 (MonoMethod_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_GetParameters_m1240674378_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; ParameterInfoU5BU5D_t2275869610* V_1 = NULL; { IntPtr_t L_0 = __this->get_mhandle_0(); ParameterInfoU5BU5D_t2275869610* L_1 = MonoMethodInfo_GetParametersInfo_m3456861922(NULL /*static, unused*/, L_0, __this, /*hidden argument*/NULL); V_0 = L_1; ParameterInfoU5BU5D_t2275869610* L_2 = V_0; NullCheck(L_2); V_1 = ((ParameterInfoU5BU5D_t2275869610*)SZArrayNew(ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length)))))); ParameterInfoU5BU5D_t2275869610* L_3 = V_0; ParameterInfoU5BU5D_t2275869610* L_4 = V_1; NullCheck((Il2CppArray *)(Il2CppArray *)L_3); Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_3, (Il2CppArray *)(Il2CppArray *)L_4, 0, /*hidden argument*/NULL); ParameterInfoU5BU5D_t2275869610* L_5 = V_1; return L_5; } } // System.Object System.Reflection.MonoMethod::InternalInvoke(System.Object,System.Object[],System.Exception&) extern "C" Il2CppObject * MonoMethod_InternalInvoke_m4055929538 (MonoMethod_t * __this, Il2CppObject * ___obj0, ObjectU5BU5D_t3614634134* ___parameters1, Exception_t1927440687 ** ___exc2, const MethodInfo* method) { using namespace il2cpp::icalls; typedef Il2CppObject * (*MonoMethod_InternalInvoke_m4055929538_ftn) (MonoMethod_t *, Il2CppObject *, ObjectU5BU5D_t3614634134*, Exception_t1927440687 **); return ((MonoMethod_InternalInvoke_m4055929538_ftn)mscorlib::System::Reflection::MonoMethod::InternalInvoke) (__this, ___obj0, ___parameters1, ___exc2); } // System.Object System.Reflection.MonoMethod::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern Il2CppClass* Binder_t3404612058_il2cpp_TypeInfo_var; extern Il2CppClass* TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppClass* ThreadAbortException_t1150575753_il2cpp_TypeInfo_var; extern Il2CppClass* MethodAccessException_t4093255254_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t1927440687_il2cpp_TypeInfo_var; extern Il2CppClass* TargetInvocationException_t4098620458_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3569083427; extern Il2CppCodeGenString* _stringLiteral404785397; extern Il2CppCodeGenString* _stringLiteral68020717; extern const uint32_t MonoMethod_Invoke_m3376991795_MetadataUsageId; extern "C" Il2CppObject * MonoMethod_Invoke_m3376991795 (MonoMethod_t * __this, Il2CppObject * ___obj0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, ObjectU5BU5D_t3614634134* ___parameters3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_Invoke_m3376991795_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; int32_t V_1 = 0; Exception_t1927440687 * V_2 = NULL; Il2CppObject * V_3 = NULL; Exception_t1927440687 * V_4 = NULL; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Binder_t3404612058 * L_0 = ___binder2; if (L_0) { goto IL_000d; } } { IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); Binder_t3404612058 * L_1 = Binder_get_DefaultBinder_m965620943(NULL /*static, unused*/, /*hidden argument*/NULL); ___binder2 = L_1; } IL_000d: { IntPtr_t L_2 = __this->get_mhandle_0(); ParameterInfoU5BU5D_t2275869610* L_3 = MonoMethodInfo_GetParametersInfo_m3456861922(NULL /*static, unused*/, L_2, __this, /*hidden argument*/NULL); V_0 = L_3; ObjectU5BU5D_t3614634134* L_4 = ___parameters3; if (L_4) { goto IL_0029; } } { ParameterInfoU5BU5D_t2275869610* L_5 = V_0; NullCheck(L_5); if ((((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length))))) { goto IL_003c; } } IL_0029: { ObjectU5BU5D_t3614634134* L_6 = ___parameters3; if (!L_6) { goto IL_0047; } } { ObjectU5BU5D_t3614634134* L_7 = ___parameters3; NullCheck(L_7); ParameterInfoU5BU5D_t2275869610* L_8 = V_0; NullCheck(L_8); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_7)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_8)->max_length))))))) { goto IL_0047; } } IL_003c: { TargetParameterCountException_t1554451430 * L_9 = (TargetParameterCountException_t1554451430 *)il2cpp_codegen_object_new(TargetParameterCountException_t1554451430_il2cpp_TypeInfo_var); TargetParameterCountException__ctor_m2760108938(L_9, _stringLiteral3569083427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_0047: { int32_t L_10 = ___invokeAttr1; if (((int32_t)((int32_t)L_10&(int32_t)((int32_t)65536)))) { goto IL_0073; } } { Binder_t3404612058 * L_11 = ___binder2; ObjectU5BU5D_t3614634134* L_12 = ___parameters3; ParameterInfoU5BU5D_t2275869610* L_13 = V_0; CultureInfo_t3500843524 * L_14 = ___culture4; IL2CPP_RUNTIME_CLASS_INIT(Binder_t3404612058_il2cpp_TypeInfo_var); bool L_15 = Binder_ConvertArgs_m2999223281(NULL /*static, unused*/, L_11, L_12, L_13, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_006e; } } { ArgumentException_t3259014390 * L_16 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_16, _stringLiteral404785397, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16); } IL_006e: { goto IL_00a8; } IL_0073: { V_1 = 0; goto IL_009f; } IL_007a: { ObjectU5BU5D_t3614634134* L_17 = ___parameters3; int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; Il2CppObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); NullCheck(L_20); Type_t * L_21 = Object_GetType_m191970594(L_20, /*hidden argument*/NULL); ParameterInfoU5BU5D_t2275869610* L_22 = V_0; int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = L_23; ParameterInfo_t2249040075 * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); NullCheck(L_25); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_25); if ((((Il2CppObject*)(Type_t *)L_21) == ((Il2CppObject*)(Type_t *)L_26))) { goto IL_009b; } } { ArgumentException_t3259014390 * L_27 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_27, _stringLiteral3569083427, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27); } IL_009b: { int32_t L_28 = V_1; V_1 = ((int32_t)((int32_t)L_28+(int32_t)1)); } IL_009f: { int32_t L_29 = V_1; ParameterInfoU5BU5D_t2275869610* L_30 = V_0; NullCheck(L_30); if ((((int32_t)L_29) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_30)->max_length))))))) { goto IL_007a; } } IL_00a8: { bool L_31 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Reflection.MonoMethod::get_ContainsGenericParameters() */, __this); if (!L_31) { goto IL_00be; } } { InvalidOperationException_t721527559 * L_32 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_32, _stringLiteral68020717, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32); } IL_00be: { V_3 = NULL; } IL_00c0: try { // begin try (depth: 1) Il2CppObject * L_33 = ___obj0; ObjectU5BU5D_t3614634134* L_34 = ___parameters3; Il2CppObject * L_35 = MonoMethod_InternalInvoke_m4055929538(__this, L_33, L_34, (&V_2), /*hidden argument*/NULL); V_3 = L_35; goto IL_00f0; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ThreadAbortException_t1150575753_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_00d1; if(il2cpp_codegen_class_is_assignable_from (MethodAccessException_t4093255254_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_00d9; if(il2cpp_codegen_class_is_assignable_from (Exception_t1927440687_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_00e1; throw e; } CATCH_00d1: { // begin catch(System.Threading.ThreadAbortException) { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local); } IL_00d4: { goto IL_00f0; } } // end catch (depth: 1) CATCH_00d9: { // begin catch(System.MethodAccessException) { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local); } IL_00dc: { goto IL_00f0; } } // end catch (depth: 1) CATCH_00e1: { // begin catch(System.Exception) { V_4 = ((Exception_t1927440687 *)__exception_local); Exception_t1927440687 * L_36 = V_4; TargetInvocationException_t4098620458 * L_37 = (TargetInvocationException_t4098620458 *)il2cpp_codegen_object_new(TargetInvocationException_t4098620458_il2cpp_TypeInfo_var); TargetInvocationException__ctor_m1059845570(L_37, L_36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37); } IL_00eb: { goto IL_00f0; } } // end catch (depth: 1) IL_00f0: { Exception_t1927440687 * L_38 = V_2; if (!L_38) { goto IL_00f8; } } { Exception_t1927440687 * L_39 = V_2; IL2CPP_RAISE_MANAGED_EXCEPTION(L_39); } IL_00f8: { Il2CppObject * L_40 = V_3; return L_40; } } // System.RuntimeMethodHandle System.Reflection.MonoMethod::get_MethodHandle() extern "C" RuntimeMethodHandle_t894824333 MonoMethod_get_MethodHandle_m1882915015 (MonoMethod_t * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_0(); RuntimeMethodHandle_t894824333 L_1; memset(&L_1, 0, sizeof(L_1)); RuntimeMethodHandle__ctor_m1162528746(&L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodAttributes System.Reflection.MonoMethod::get_Attributes() extern "C" int32_t MonoMethod_get_Attributes_m4038185617 (MonoMethod_t * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_0(); int32_t L_1 = MonoMethodInfo_GetAttributes_m2535493430(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.CallingConventions System.Reflection.MonoMethod::get_CallingConvention() extern "C" int32_t MonoMethod_get_CallingConvention_m2978714873 (MonoMethod_t * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_0(); int32_t L_1 = MonoMethodInfo_GetCallingConvention_m3095860872(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Type System.Reflection.MonoMethod::get_ReflectedType() extern "C" Type_t * MonoMethod_get_ReflectedType_m3966408549 (MonoMethod_t * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_reftype_2(); return L_0; } } // System.Type System.Reflection.MonoMethod::get_DeclaringType() extern "C" Type_t * MonoMethod_get_DeclaringType_m4119916616 (MonoMethod_t * __this, const MethodInfo* method) { { IntPtr_t L_0 = __this->get_mhandle_0(); Type_t * L_1 = MonoMethodInfo_GetDeclaringType_m4186531677(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.String System.Reflection.MonoMethod::get_Name() extern "C" String_t* MonoMethod_get_Name_m1650258269 (MonoMethod_t * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_name_1(); if (!L_0) { goto IL_0012; } } { String_t* L_1 = __this->get_name_1(); return L_1; } IL_0012: { String_t* L_2 = MonoMethod_get_name_m1503581873(NULL /*static, unused*/, __this, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Reflection.MonoMethod::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoMethod_IsDefined_m2322670981_MetadataUsageId; extern "C" bool MonoMethod_IsDefined_m2322670981 (MonoMethod_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_IsDefined_m2322670981_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.MonoMethod::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoMethod_GetCustomAttributes_m2493833930_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoMethod_GetCustomAttributes_m2493833930 (MonoMethod_t * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_GetCustomAttributes_m2493833930_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ___inherit0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_1 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Object[] System.Reflection.MonoMethod::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoMethod_GetCustomAttributes_m3212448303_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoMethod_GetCustomAttributes_m3212448303 (MonoMethod_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_GetCustomAttributes_m3212448303_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Runtime.InteropServices.DllImportAttribute System.Reflection.MonoMethod::GetDllImportAttribute(System.IntPtr) extern "C" DllImportAttribute_t3000813225 * MonoMethod_GetDllImportAttribute_m2757463479 (Il2CppObject * __this /* static, unused */, IntPtr_t ___mhandle0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef DllImportAttribute_t3000813225 * (*MonoMethod_GetDllImportAttribute_m2757463479_ftn) (IntPtr_t); return ((MonoMethod_GetDllImportAttribute_m2757463479_ftn)mscorlib::System::Reflection::MonoMethod::GetDllImportAttribute) (___mhandle0); } // System.Object[] System.Reflection.MonoMethod::GetPseudoCustomAttributes() extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppClass* PreserveSigAttribute_t1564965109_il2cpp_TypeInfo_var; extern const uint32_t MonoMethod_GetPseudoCustomAttributes_m466965107_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoMethod_GetPseudoCustomAttributes_m466965107 (MonoMethod_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_GetPseudoCustomAttributes_m466965107_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; MonoMethodInfo_t3646562144 V_1; memset(&V_1, 0, sizeof(V_1)); ObjectU5BU5D_t3614634134* V_2 = NULL; DllImportAttribute_t3000813225 * V_3 = NULL; { V_0 = 0; IntPtr_t L_0 = __this->get_mhandle_0(); MonoMethodInfo_t3646562144 L_1 = MonoMethodInfo_GetMethodInfo_m3298558752(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_1 = L_1; int32_t L_2 = (&V_1)->get_iattrs_3(); if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)128)))) { goto IL_0024; } } { int32_t L_3 = V_0; V_0 = ((int32_t)((int32_t)L_3+(int32_t)1)); } IL_0024: { int32_t L_4 = (&V_1)->get_attrs_2(); if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)8192)))) { goto IL_003a; } } { int32_t L_5 = V_0; V_0 = ((int32_t)((int32_t)L_5+(int32_t)1)); } IL_003a: { int32_t L_6 = V_0; if (L_6) { goto IL_0042; } } { return (ObjectU5BU5D_t3614634134*)NULL; } IL_0042: { int32_t L_7 = V_0; V_2 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)L_7)); V_0 = 0; int32_t L_8 = (&V_1)->get_iattrs_3(); if (!((int32_t)((int32_t)L_8&(int32_t)((int32_t)128)))) { goto IL_0069; } } { ObjectU5BU5D_t3614634134* L_9 = V_2; int32_t L_10 = V_0; int32_t L_11 = L_10; V_0 = ((int32_t)((int32_t)L_11+(int32_t)1)); PreserveSigAttribute_t1564965109 * L_12 = (PreserveSigAttribute_t1564965109 *)il2cpp_codegen_object_new(PreserveSigAttribute_t1564965109_il2cpp_TypeInfo_var); PreserveSigAttribute__ctor_m3423226067(L_12, /*hidden argument*/NULL); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_12); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Il2CppObject *)L_12); } IL_0069: { int32_t L_13 = (&V_1)->get_attrs_2(); if (!((int32_t)((int32_t)L_13&(int32_t)((int32_t)8192)))) { goto IL_00a8; } } { IntPtr_t L_14 = __this->get_mhandle_0(); DllImportAttribute_t3000813225 * L_15 = MonoMethod_GetDllImportAttribute_m2757463479(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); V_3 = L_15; int32_t L_16 = (&V_1)->get_iattrs_3(); if (!((int32_t)((int32_t)L_16&(int32_t)((int32_t)128)))) { goto IL_00a0; } } { DllImportAttribute_t3000813225 * L_17 = V_3; NullCheck(L_17); L_17->set_PreserveSig_5((bool)1); } IL_00a0: { ObjectU5BU5D_t3614634134* L_18 = V_2; int32_t L_19 = V_0; int32_t L_20 = L_19; V_0 = ((int32_t)((int32_t)L_20+(int32_t)1)); DllImportAttribute_t3000813225 * L_21 = V_3; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_21); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (Il2CppObject *)L_21); } IL_00a8: { ObjectU5BU5D_t3614634134* L_22 = V_2; return L_22; } } // System.Boolean System.Reflection.MonoMethod::ShouldPrintFullName(System.Type) extern "C" bool MonoMethod_ShouldPrintFullName_m2343680861 (Il2CppObject * __this /* static, unused */, Type_t * ___type0, const MethodInfo* method) { int32_t G_B5_0 = 0; int32_t G_B7_0 = 0; int32_t G_B9_0 = 0; { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsClass_m2968663946(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_003c; } } { Type_t * L_2 = ___type0; NullCheck(L_2); bool L_3 = Type_get_IsPointer_m3832342327(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0039; } } { Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_4); NullCheck(L_5); bool L_6 = Type_get_IsPrimitive_m1522841565(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0036; } } { Type_t * L_7 = ___type0; NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_7); NullCheck(L_8); bool L_9 = Type_get_IsNested_m3671396733(L_8, /*hidden argument*/NULL); G_B5_0 = ((((int32_t)L_9) == ((int32_t)0))? 1 : 0); goto IL_0037; } IL_0036: { G_B5_0 = 0; } IL_0037: { G_B7_0 = G_B5_0; goto IL_003a; } IL_0039: { G_B7_0 = 1; } IL_003a: { G_B9_0 = G_B7_0; goto IL_003d; } IL_003c: { G_B9_0 = 0; } IL_003d: { return (bool)G_B9_0; } } // System.String System.Reflection.MonoMethod::ToString() extern Il2CppClass* StringBuilder_t1221177846_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029310; extern Il2CppCodeGenString* _stringLiteral372029431; extern Il2CppCodeGenString* _stringLiteral372029314; extern Il2CppCodeGenString* _stringLiteral372029425; extern Il2CppCodeGenString* _stringLiteral372029318; extern Il2CppCodeGenString* _stringLiteral811305474; extern Il2CppCodeGenString* _stringLiteral1271078008; extern Il2CppCodeGenString* _stringLiteral1623555996; extern Il2CppCodeGenString* _stringLiteral372029317; extern const uint32_t MonoMethod_ToString_m1014895917_MetadataUsageId; extern "C" String_t* MonoMethod_ToString_m1014895917 (MonoMethod_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_ToString_m1014895917_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t1221177846 * V_0 = NULL; Type_t * V_1 = NULL; TypeU5BU5D_t1664964607* V_2 = NULL; int32_t V_3 = 0; ParameterInfoU5BU5D_t2275869610* V_4 = NULL; int32_t V_5 = 0; Type_t * V_6 = NULL; bool V_7 = false; { StringBuilder_t1221177846 * L_0 = (StringBuilder_t1221177846 *)il2cpp_codegen_object_new(StringBuilder_t1221177846_il2cpp_TypeInfo_var); StringBuilder__ctor_m3946851802(L_0, /*hidden argument*/NULL); V_0 = L_0; Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(31 /* System.Type System.Reflection.MonoMethod::get_ReturnType() */, __this); V_1 = L_1; Type_t * L_2 = V_1; bool L_3 = MonoMethod_ShouldPrintFullName_m2343680861(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002a; } } { StringBuilder_t1221177846 * L_4 = V_0; Type_t * L_5 = V_1; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_5); NullCheck(L_4); StringBuilder_Append_m3636508479(L_4, L_6, /*hidden argument*/NULL); goto IL_0037; } IL_002a: { StringBuilder_t1221177846 * L_7 = V_0; Type_t * L_8 = V_1; NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_8); NullCheck(L_7); StringBuilder_Append_m3636508479(L_7, L_9, /*hidden argument*/NULL); } IL_0037: { StringBuilder_t1221177846 * L_10 = V_0; NullCheck(L_10); StringBuilder_Append_m3636508479(L_10, _stringLiteral372029310, /*hidden argument*/NULL); StringBuilder_t1221177846 * L_11 = V_0; String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoMethod::get_Name() */, __this); NullCheck(L_11); StringBuilder_Append_m3636508479(L_11, L_12, /*hidden argument*/NULL); bool L_13 = VirtFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Reflection.MonoMethod::get_IsGenericMethod() */, __this); if (!L_13) { goto IL_00b0; } } { TypeU5BU5D_t1664964607* L_14 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(26 /* System.Type[] System.Reflection.MonoMethod::GetGenericArguments() */, __this); V_2 = L_14; StringBuilder_t1221177846 * L_15 = V_0; NullCheck(L_15); StringBuilder_Append_m3636508479(L_15, _stringLiteral372029431, /*hidden argument*/NULL); V_3 = 0; goto IL_009b; } IL_0075: { int32_t L_16 = V_3; if ((((int32_t)L_16) <= ((int32_t)0))) { goto IL_0088; } } { StringBuilder_t1221177846 * L_17 = V_0; NullCheck(L_17); StringBuilder_Append_m3636508479(L_17, _stringLiteral372029314, /*hidden argument*/NULL); } IL_0088: { StringBuilder_t1221177846 * L_18 = V_0; TypeU5BU5D_t1664964607* L_19 = V_2; int32_t L_20 = V_3; NullCheck(L_19); int32_t L_21 = L_20; Type_t * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_22); NullCheck(L_18); StringBuilder_Append_m3636508479(L_18, L_23, /*hidden argument*/NULL); int32_t L_24 = V_3; V_3 = ((int32_t)((int32_t)L_24+(int32_t)1)); } IL_009b: { int32_t L_25 = V_3; TypeU5BU5D_t1664964607* L_26 = V_2; NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_26)->max_length))))))) { goto IL_0075; } } { StringBuilder_t1221177846 * L_27 = V_0; NullCheck(L_27); StringBuilder_Append_m3636508479(L_27, _stringLiteral372029425, /*hidden argument*/NULL); } IL_00b0: { StringBuilder_t1221177846 * L_28 = V_0; NullCheck(L_28); StringBuilder_Append_m3636508479(L_28, _stringLiteral372029318, /*hidden argument*/NULL); ParameterInfoU5BU5D_t2275869610* L_29 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MonoMethod::GetParameters() */, __this); V_4 = L_29; V_5 = 0; goto IL_014b; } IL_00cc: { int32_t L_30 = V_5; if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_00e0; } } { StringBuilder_t1221177846 * L_31 = V_0; NullCheck(L_31); StringBuilder_Append_m3636508479(L_31, _stringLiteral811305474, /*hidden argument*/NULL); } IL_00e0: { ParameterInfoU5BU5D_t2275869610* L_32 = V_4; int32_t L_33 = V_5; NullCheck(L_32); int32_t L_34 = L_33; ParameterInfo_t2249040075 * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); NullCheck(L_35); Type_t * L_36 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_35); V_6 = L_36; Type_t * L_37 = V_6; NullCheck(L_37); bool L_38 = Type_get_IsByRef_m3523465500(L_37, /*hidden argument*/NULL); V_7 = L_38; bool L_39 = V_7; if (!L_39) { goto IL_0105; } } { Type_t * L_40 = V_6; NullCheck(L_40); Type_t * L_41 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_40); V_6 = L_41; } IL_0105: { Type_t * L_42 = V_6; bool L_43 = MonoMethod_ShouldPrintFullName_m2343680861(NULL /*static, unused*/, L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0124; } } { StringBuilder_t1221177846 * L_44 = V_0; Type_t * L_45 = V_6; NullCheck(L_45); String_t* L_46 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_45); NullCheck(L_44); StringBuilder_Append_m3636508479(L_44, L_46, /*hidden argument*/NULL); goto IL_0132; } IL_0124: { StringBuilder_t1221177846 * L_47 = V_0; Type_t * L_48 = V_6; NullCheck(L_48); String_t* L_49 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_48); NullCheck(L_47); StringBuilder_Append_m3636508479(L_47, L_49, /*hidden argument*/NULL); } IL_0132: { bool L_50 = V_7; if (!L_50) { goto IL_0145; } } { StringBuilder_t1221177846 * L_51 = V_0; NullCheck(L_51); StringBuilder_Append_m3636508479(L_51, _stringLiteral1271078008, /*hidden argument*/NULL); } IL_0145: { int32_t L_52 = V_5; V_5 = ((int32_t)((int32_t)L_52+(int32_t)1)); } IL_014b: { int32_t L_53 = V_5; ParameterInfoU5BU5D_t2275869610* L_54 = V_4; NullCheck(L_54); if ((((int32_t)L_53) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_54)->max_length))))))) { goto IL_00cc; } } { int32_t L_55 = VirtFuncInvoker0< int32_t >::Invoke(20 /* System.Reflection.CallingConventions System.Reflection.MonoMethod::get_CallingConvention() */, __this); if (!((int32_t)((int32_t)L_55&(int32_t)2))) { goto IL_0185; } } { ParameterInfoU5BU5D_t2275869610* L_56 = V_4; NullCheck(L_56); if ((((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_56)->max_length))))) <= ((int32_t)0))) { goto IL_0179; } } { StringBuilder_t1221177846 * L_57 = V_0; NullCheck(L_57); StringBuilder_Append_m3636508479(L_57, _stringLiteral811305474, /*hidden argument*/NULL); } IL_0179: { StringBuilder_t1221177846 * L_58 = V_0; NullCheck(L_58); StringBuilder_Append_m3636508479(L_58, _stringLiteral1623555996, /*hidden argument*/NULL); } IL_0185: { StringBuilder_t1221177846 * L_59 = V_0; NullCheck(L_59); StringBuilder_Append_m3636508479(L_59, _stringLiteral372029317, /*hidden argument*/NULL); StringBuilder_t1221177846 * L_60 = V_0; NullCheck(L_60); String_t* L_61 = StringBuilder_ToString_m1507807375(L_60, /*hidden argument*/NULL); return L_61; } } // System.Void System.Reflection.MonoMethod::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void MonoMethod_GetObjectData_m3146497844 (MonoMethod_t * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { TypeU5BU5D_t1664964607* V_0 = NULL; TypeU5BU5D_t1664964607* G_B4_0 = NULL; { bool L_0 = VirtFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Reflection.MonoMethod::get_IsGenericMethod() */, __this); if (!L_0) { goto IL_0021; } } { bool L_1 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Reflection.MonoMethod::get_IsGenericMethodDefinition() */, __this); if (L_1) { goto IL_0021; } } { TypeU5BU5D_t1664964607* L_2 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(26 /* System.Type[] System.Reflection.MonoMethod::GetGenericArguments() */, __this); G_B4_0 = L_2; goto IL_0022; } IL_0021: { G_B4_0 = ((TypeU5BU5D_t1664964607*)(NULL)); } IL_0022: { V_0 = G_B4_0; SerializationInfo_t228987430 * L_3 = ___info0; String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoMethod::get_Name() */, __this); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MonoMethod::get_ReflectedType() */, __this); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Reflection.MonoMethod::ToString() */, __this); TypeU5BU5D_t1664964607* L_7 = V_0; MemberInfoSerializationHolder_Serialize_m4243060728(NULL /*static, unused*/, L_3, L_4, L_5, L_6, 8, L_7, /*hidden argument*/NULL); return; } } // System.Reflection.MethodInfo System.Reflection.MonoMethod::MakeGenericMethod(System.Type[]) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t2071877448_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral56518380; extern Il2CppCodeGenString* _stringLiteral2401257820; extern const uint32_t MonoMethod_MakeGenericMethod_m3628255919_MetadataUsageId; extern "C" MethodInfo_t * MonoMethod_MakeGenericMethod_m3628255919 (MonoMethod_t * __this, TypeU5BU5D_t1664964607* ___methodInstantiation0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoMethod_MakeGenericMethod_m3628255919_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t1664964607* V_1 = NULL; int32_t V_2 = 0; MethodInfo_t * V_3 = NULL; { TypeU5BU5D_t1664964607* L_0 = ___methodInstantiation0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral56518380, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { TypeU5BU5D_t1664964607* L_2 = ___methodInstantiation0; V_1 = L_2; V_2 = 0; goto IL_002e; } IL_001a: { TypeU5BU5D_t1664964607* L_3 = V_1; int32_t L_4 = V_2; NullCheck(L_3); int32_t L_5 = L_4; Type_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_0 = L_6; Type_t * L_7 = V_0; if (L_7) { goto IL_002a; } } { ArgumentNullException_t628810857 * L_8 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m911049464(L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_002a: { int32_t L_9 = V_2; V_2 = ((int32_t)((int32_t)L_9+(int32_t)1)); } IL_002e: { int32_t L_10 = V_2; TypeU5BU5D_t1664964607* L_11 = V_1; NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_11)->max_length))))))) { goto IL_001a; } } { TypeU5BU5D_t1664964607* L_12 = ___methodInstantiation0; MethodInfo_t * L_13 = MonoMethod_MakeGenericMethod_impl_m2063853616(__this, L_12, /*hidden argument*/NULL); V_3 = L_13; MethodInfo_t * L_14 = V_3; if (L_14) { goto IL_006a; } } { TypeU5BU5D_t1664964607* L_15 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(26 /* System.Type[] System.Reflection.MonoMethod::GetGenericArguments() */, __this); NullCheck(L_15); int32_t L_16 = (((int32_t)((int32_t)(((Il2CppArray *)L_15)->max_length)))); Il2CppObject * L_17 = Box(Int32_t2071877448_il2cpp_TypeInfo_var, &L_16); TypeU5BU5D_t1664964607* L_18 = ___methodInstantiation0; NullCheck(L_18); int32_t L_19 = (((int32_t)((int32_t)(((Il2CppArray *)L_18)->max_length)))); Il2CppObject * L_20 = Box(Int32_t2071877448_il2cpp_TypeInfo_var, &L_19); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_21 = String_Format_m1811873526(NULL /*static, unused*/, _stringLiteral2401257820, L_17, L_20, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_22 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_22, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22); } IL_006a: { MethodInfo_t * L_23 = V_3; return L_23; } } // System.Reflection.MethodInfo System.Reflection.MonoMethod::MakeGenericMethod_impl(System.Type[]) extern "C" MethodInfo_t * MonoMethod_MakeGenericMethod_impl_m2063853616 (MonoMethod_t * __this, TypeU5BU5D_t1664964607* ___types0, const MethodInfo* method) { using namespace il2cpp::icalls; typedef MethodInfo_t * (*MonoMethod_MakeGenericMethod_impl_m2063853616_ftn) (MonoMethod_t *, TypeU5BU5D_t1664964607*); return ((MonoMethod_MakeGenericMethod_impl_m2063853616_ftn)mscorlib::System::Reflection::MonoMethod::MakeGenericMethod_impl) (__this, ___types0); } // System.Type[] System.Reflection.MonoMethod::GetGenericArguments() extern "C" TypeU5BU5D_t1664964607* MonoMethod_GetGenericArguments_m1043327523 (MonoMethod_t * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef TypeU5BU5D_t1664964607* (*MonoMethod_GetGenericArguments_m1043327523_ftn) (MonoMethod_t *); return ((MonoMethod_GetGenericArguments_m1043327523_ftn)mscorlib::System::Reflection::MonoMethod::GetGenericArguments) (__this); } // System.Boolean System.Reflection.MonoMethod::get_IsGenericMethodDefinition() extern "C" bool MonoMethod_get_IsGenericMethodDefinition_m2424433610 (MonoMethod_t * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef bool (*MonoMethod_get_IsGenericMethodDefinition_m2424433610_ftn) (MonoMethod_t *); return ((MonoMethod_get_IsGenericMethodDefinition_m2424433610_ftn)mscorlib::System::Reflection::MonoMethod::get_IsGenericMethodDefinition) (__this); } // System.Boolean System.Reflection.MonoMethod::get_IsGenericMethod() extern "C" bool MonoMethod_get_IsGenericMethod_m4276550811 (MonoMethod_t * __this, const MethodInfo* method) { using namespace il2cpp::icalls; typedef bool (*MonoMethod_get_IsGenericMethod_m4276550811_ftn) (MonoMethod_t *); return ((MonoMethod_get_IsGenericMethod_m4276550811_ftn)mscorlib::System::Reflection::MonoMethod::get_IsGenericMethod) (__this); } // System.Boolean System.Reflection.MonoMethod::get_ContainsGenericParameters() extern "C" bool MonoMethod_get_ContainsGenericParameters_m2891719083 (MonoMethod_t * __this, const MethodInfo* method) { Type_t * V_0 = NULL; TypeU5BU5D_t1664964607* V_1 = NULL; int32_t V_2 = 0; { bool L_0 = VirtFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Reflection.MonoMethod::get_IsGenericMethod() */, __this); if (!L_0) { goto IL_0037; } } { TypeU5BU5D_t1664964607* L_1 = VirtFuncInvoker0< TypeU5BU5D_t1664964607* >::Invoke(26 /* System.Type[] System.Reflection.MonoMethod::GetGenericArguments() */, __this); V_1 = L_1; V_2 = 0; goto IL_002e; } IL_0019: { TypeU5BU5D_t1664964607* L_2 = V_1; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; Type_t * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; Type_t * L_6 = V_0; NullCheck(L_6); bool L_7 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_6); if (!L_7) { goto IL_002a; } } { return (bool)1; } IL_002a: { int32_t L_8 = V_2; V_2 = ((int32_t)((int32_t)L_8+(int32_t)1)); } IL_002e: { int32_t L_9 = V_2; TypeU5BU5D_t1664964607* L_10 = V_1; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length))))))) { goto IL_0019; } } IL_0037: { Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MonoMethod::get_DeclaringType() */, __this); NullCheck(L_11); bool L_12 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_11); return L_12; } } // System.Void System.Reflection.MonoMethodInfo::get_method_info(System.IntPtr,System.Reflection.MonoMethodInfo&) extern "C" void MonoMethodInfo_get_method_info_m3630911979 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, MonoMethodInfo_t3646562144 * ___info1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*MonoMethodInfo_get_method_info_m3630911979_ftn) (IntPtr_t, MonoMethodInfo_t3646562144 *); ((MonoMethodInfo_get_method_info_m3630911979_ftn)mscorlib::System::Reflection::MonoMethodInfo::get_method_info) (___handle0, ___info1); } // System.Reflection.MonoMethodInfo System.Reflection.MonoMethodInfo::GetMethodInfo(System.IntPtr) extern "C" MonoMethodInfo_t3646562144 MonoMethodInfo_GetMethodInfo_m3298558752 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, const MethodInfo* method) { MonoMethodInfo_t3646562144 V_0; memset(&V_0, 0, sizeof(V_0)); { IntPtr_t L_0 = ___handle0; MonoMethodInfo_get_method_info_m3630911979(NULL /*static, unused*/, L_0, (&V_0), /*hidden argument*/NULL); MonoMethodInfo_t3646562144 L_1 = V_0; return L_1; } } // System.Type System.Reflection.MonoMethodInfo::GetDeclaringType(System.IntPtr) extern "C" Type_t * MonoMethodInfo_GetDeclaringType_m4186531677 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, const MethodInfo* method) { MonoMethodInfo_t3646562144 V_0; memset(&V_0, 0, sizeof(V_0)); { IntPtr_t L_0 = ___handle0; MonoMethodInfo_t3646562144 L_1 = MonoMethodInfo_GetMethodInfo_m3298558752(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_0 = L_1; Type_t * L_2 = (&V_0)->get_parent_0(); return L_2; } } // System.Type System.Reflection.MonoMethodInfo::GetReturnType(System.IntPtr) extern "C" Type_t * MonoMethodInfo_GetReturnType_m2864247130 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, const MethodInfo* method) { MonoMethodInfo_t3646562144 V_0; memset(&V_0, 0, sizeof(V_0)); { IntPtr_t L_0 = ___handle0; MonoMethodInfo_t3646562144 L_1 = MonoMethodInfo_GetMethodInfo_m3298558752(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_0 = L_1; Type_t * L_2 = (&V_0)->get_ret_1(); return L_2; } } // System.Reflection.MethodAttributes System.Reflection.MonoMethodInfo::GetAttributes(System.IntPtr) extern "C" int32_t MonoMethodInfo_GetAttributes_m2535493430 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, const MethodInfo* method) { MonoMethodInfo_t3646562144 V_0; memset(&V_0, 0, sizeof(V_0)); { IntPtr_t L_0 = ___handle0; MonoMethodInfo_t3646562144 L_1 = MonoMethodInfo_GetMethodInfo_m3298558752(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = (&V_0)->get_attrs_2(); return L_2; } } // System.Reflection.CallingConventions System.Reflection.MonoMethodInfo::GetCallingConvention(System.IntPtr) extern "C" int32_t MonoMethodInfo_GetCallingConvention_m3095860872 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, const MethodInfo* method) { MonoMethodInfo_t3646562144 V_0; memset(&V_0, 0, sizeof(V_0)); { IntPtr_t L_0 = ___handle0; MonoMethodInfo_t3646562144 L_1 = MonoMethodInfo_GetMethodInfo_m3298558752(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = (&V_0)->get_callconv_4(); return L_2; } } // System.Reflection.ParameterInfo[] System.Reflection.MonoMethodInfo::get_parameter_info(System.IntPtr,System.Reflection.MemberInfo) extern "C" ParameterInfoU5BU5D_t2275869610* MonoMethodInfo_get_parameter_info_m3554140855 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, MemberInfo_t * ___member1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef ParameterInfoU5BU5D_t2275869610* (*MonoMethodInfo_get_parameter_info_m3554140855_ftn) (IntPtr_t, MemberInfo_t *); return ((MonoMethodInfo_get_parameter_info_m3554140855_ftn)mscorlib::System::Reflection::MonoMethodInfo::get_parameter_info) (___handle0, ___member1); } // System.Reflection.ParameterInfo[] System.Reflection.MonoMethodInfo::GetParametersInfo(System.IntPtr,System.Reflection.MemberInfo) extern "C" ParameterInfoU5BU5D_t2275869610* MonoMethodInfo_GetParametersInfo_m3456861922 (Il2CppObject * __this /* static, unused */, IntPtr_t ___handle0, MemberInfo_t * ___member1, const MethodInfo* method) { { IntPtr_t L_0 = ___handle0; MemberInfo_t * L_1 = ___member1; ParameterInfoU5BU5D_t2275869610* L_2 = MonoMethodInfo_get_parameter_info_m3554140855(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // Conversion methods for marshalling of: System.Reflection.MonoMethodInfo extern "C" void MonoMethodInfo_t3646562144_marshal_pinvoke(const MonoMethodInfo_t3646562144& unmarshaled, MonoMethodInfo_t3646562144_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoMethodInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } extern "C" void MonoMethodInfo_t3646562144_marshal_pinvoke_back(const MonoMethodInfo_t3646562144_marshaled_pinvoke& marshaled, MonoMethodInfo_t3646562144& unmarshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoMethodInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.MonoMethodInfo extern "C" void MonoMethodInfo_t3646562144_marshal_pinvoke_cleanup(MonoMethodInfo_t3646562144_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Reflection.MonoMethodInfo extern "C" void MonoMethodInfo_t3646562144_marshal_com(const MonoMethodInfo_t3646562144& unmarshaled, MonoMethodInfo_t3646562144_marshaled_com& marshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoMethodInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } extern "C" void MonoMethodInfo_t3646562144_marshal_com_back(const MonoMethodInfo_t3646562144_marshaled_com& marshaled, MonoMethodInfo_t3646562144& unmarshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoMethodInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.MonoMethodInfo extern "C" void MonoMethodInfo_t3646562144_marshal_com_cleanup(MonoMethodInfo_t3646562144_marshaled_com& marshaled) { } // System.Void System.Reflection.MonoProperty::.ctor() extern "C" void MonoProperty__ctor_m945517100 (MonoProperty_t * __this, const MethodInfo* method) { { PropertyInfo__ctor_m1808219471(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MonoProperty::CachePropertyInfo(System.Reflection.PInfo) extern "C" void MonoProperty_CachePropertyInfo_m1437316683 (MonoProperty_t * __this, int32_t ___flags0, const MethodInfo* method) { { int32_t L_0 = __this->get_cached_3(); int32_t L_1 = ___flags0; int32_t L_2 = ___flags0; if ((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) == ((int32_t)L_2))) { goto IL_0029; } } { MonoPropertyInfo_t486106184 * L_3 = __this->get_address_of_info_2(); int32_t L_4 = ___flags0; MonoPropertyInfo_get_property_info_m556498347(NULL /*static, unused*/, __this, L_3, L_4, /*hidden argument*/NULL); int32_t L_5 = __this->get_cached_3(); int32_t L_6 = ___flags0; __this->set_cached_3(((int32_t)((int32_t)L_5|(int32_t)L_6))); } IL_0029: { return; } } // System.Reflection.PropertyAttributes System.Reflection.MonoProperty::get_Attributes() extern "C" int32_t MonoProperty_get_Attributes_m2589593297 (MonoProperty_t * __this, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, 1, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); int32_t L_1 = L_0->get_attrs_4(); return L_1; } } // System.Boolean System.Reflection.MonoProperty::get_CanRead() extern "C" bool MonoProperty_get_CanRead_m1173212369 (MonoProperty_t * __this, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, 2, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_get_method_2(); return (bool)((((int32_t)((((Il2CppObject*)(MethodInfo_t *)L_1) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.MonoProperty::get_CanWrite() extern "C" bool MonoProperty_get_CanWrite_m2124922514 (MonoProperty_t * __this, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, 4, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_set_method_3(); return (bool)((((int32_t)((((Il2CppObject*)(MethodInfo_t *)L_1) == ((Il2CppObject*)(Il2CppObject *)NULL))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Type System.Reflection.MonoProperty::get_PropertyType() extern "C" Type_t * MonoProperty_get_PropertyType_m1921201152 (MonoProperty_t * __this, const MethodInfo* method) { ParameterInfoU5BU5D_t2275869610* V_0 = NULL; { MonoProperty_CachePropertyInfo_m1437316683(__this, 6, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_get_method_2(); if (!L_1) { goto IL_0028; } } { MonoPropertyInfo_t486106184 * L_2 = __this->get_address_of_info_2(); MethodInfo_t * L_3 = L_2->get_get_method_2(); NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(31 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_3); return L_4; } IL_0028: { MonoPropertyInfo_t486106184 * L_5 = __this->get_address_of_info_2(); MethodInfo_t * L_6 = L_5->get_set_method_3(); NullCheck(L_6); ParameterInfoU5BU5D_t2275869610* L_7 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_6); V_0 = L_7; ParameterInfoU5BU5D_t2275869610* L_8 = V_0; ParameterInfoU5BU5D_t2275869610* L_9 = V_0; NullCheck(L_9); NullCheck(L_8); int32_t L_10 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length))))-(int32_t)1)); ParameterInfo_t2249040075 * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); NullCheck(L_11); Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_11); return L_12; } } // System.Type System.Reflection.MonoProperty::get_ReflectedType() extern "C" Type_t * MonoProperty_get_ReflectedType_m903353661 (MonoProperty_t * __this, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, 8, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); Type_t * L_1 = L_0->get_parent_0(); return L_1; } } // System.Type System.Reflection.MonoProperty::get_DeclaringType() extern "C" Type_t * MonoProperty_get_DeclaringType_m4236036432 (MonoProperty_t * __this, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, ((int32_t)16), /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); Type_t * L_1 = L_0->get_parent_0(); return L_1; } } // System.String System.Reflection.MonoProperty::get_Name() extern "C" String_t* MonoProperty_get_Name_m1248249317 (MonoProperty_t * __this, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, ((int32_t)32), /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); String_t* L_1 = L_0->get_name_1(); return L_1; } } // System.Reflection.MethodInfo[] System.Reflection.MonoProperty::GetAccessors(System.Boolean) extern Il2CppClass* MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_GetAccessors_m3704698731_MetadataUsageId; extern "C" MethodInfoU5BU5D_t152480188* MonoProperty_GetAccessors_m3704698731 (MonoProperty_t * __this, bool ___nonPublic0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetAccessors_m3704698731_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; MethodInfoU5BU5D_t152480188* V_2 = NULL; int32_t V_3 = 0; { V_0 = 0; V_1 = 0; MonoProperty_CachePropertyInfo_m1437316683(__this, 6, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_set_method_3(); if (!L_1) { goto IL_0038; } } { bool L_2 = ___nonPublic0; if (L_2) { goto IL_0036; } } { MonoPropertyInfo_t486106184 * L_3 = __this->get_address_of_info_2(); MethodInfo_t * L_4 = L_3->get_set_method_3(); NullCheck(L_4); bool L_5 = MethodBase_get_IsPublic_m479656180(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0038; } } IL_0036: { V_1 = 1; } IL_0038: { MonoPropertyInfo_t486106184 * L_6 = __this->get_address_of_info_2(); MethodInfo_t * L_7 = L_6->get_get_method_2(); if (!L_7) { goto IL_0065; } } { bool L_8 = ___nonPublic0; if (L_8) { goto IL_0063; } } { MonoPropertyInfo_t486106184 * L_9 = __this->get_address_of_info_2(); MethodInfo_t * L_10 = L_9->get_get_method_2(); NullCheck(L_10); bool L_11 = MethodBase_get_IsPublic_m479656180(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0065; } } IL_0063: { V_0 = 1; } IL_0065: { int32_t L_12 = V_0; int32_t L_13 = V_1; V_2 = ((MethodInfoU5BU5D_t152480188*)SZArrayNew(MethodInfoU5BU5D_t152480188_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)L_12+(int32_t)L_13)))); V_3 = 0; int32_t L_14 = V_1; if (!L_14) { goto IL_0088; } } { MethodInfoU5BU5D_t152480188* L_15 = V_2; int32_t L_16 = V_3; int32_t L_17 = L_16; V_3 = ((int32_t)((int32_t)L_17+(int32_t)1)); MonoPropertyInfo_t486106184 * L_18 = __this->get_address_of_info_2(); MethodInfo_t * L_19 = L_18->get_set_method_3(); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_19); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (MethodInfo_t *)L_19); } IL_0088: { int32_t L_20 = V_0; if (!L_20) { goto IL_00a0; } } { MethodInfoU5BU5D_t152480188* L_21 = V_2; int32_t L_22 = V_3; int32_t L_23 = L_22; V_3 = ((int32_t)((int32_t)L_23+(int32_t)1)); MonoPropertyInfo_t486106184 * L_24 = __this->get_address_of_info_2(); MethodInfo_t * L_25 = L_24->get_get_method_2(); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_25); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (MethodInfo_t *)L_25); } IL_00a0: { MethodInfoU5BU5D_t152480188* L_26 = V_2; return L_26; } } // System.Reflection.MethodInfo System.Reflection.MonoProperty::GetGetMethod(System.Boolean) extern "C" MethodInfo_t * MonoProperty_GetGetMethod_m1100580870 (MonoProperty_t * __this, bool ___nonPublic0, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, 2, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_get_method_2(); if (!L_1) { goto IL_003e; } } { bool L_2 = ___nonPublic0; if (L_2) { goto IL_0032; } } { MonoPropertyInfo_t486106184 * L_3 = __this->get_address_of_info_2(); MethodInfo_t * L_4 = L_3->get_get_method_2(); NullCheck(L_4); bool L_5 = MethodBase_get_IsPublic_m479656180(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_003e; } } IL_0032: { MonoPropertyInfo_t486106184 * L_6 = __this->get_address_of_info_2(); MethodInfo_t * L_7 = L_6->get_get_method_2(); return L_7; } IL_003e: { return (MethodInfo_t *)NULL; } } // System.Reflection.ParameterInfo[] System.Reflection.MonoProperty::GetIndexParameters() extern Il2CppClass* ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var; extern Il2CppClass* ParameterInfo_t2249040075_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_GetIndexParameters_m832800404_MetadataUsageId; extern "C" ParameterInfoU5BU5D_t2275869610* MonoProperty_GetIndexParameters_m832800404 (MonoProperty_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetIndexParameters_m832800404_MetadataUsageId); s_Il2CppMethodInitialized = true; } ParameterInfoU5BU5D_t2275869610* V_0 = NULL; ParameterInfoU5BU5D_t2275869610* V_1 = NULL; int32_t V_2 = 0; ParameterInfo_t2249040075 * V_3 = NULL; { MonoProperty_CachePropertyInfo_m1437316683(__this, 6, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_get_method_2(); if (!L_1) { goto IL_002d; } } { MonoPropertyInfo_t486106184 * L_2 = __this->get_address_of_info_2(); MethodInfo_t * L_3 = L_2->get_get_method_2(); NullCheck(L_3); ParameterInfoU5BU5D_t2275869610* L_4 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_3); V_0 = L_4; goto IL_006f; } IL_002d: { MonoPropertyInfo_t486106184 * L_5 = __this->get_address_of_info_2(); MethodInfo_t * L_6 = L_5->get_set_method_3(); if (!L_6) { goto IL_0068; } } { MonoPropertyInfo_t486106184 * L_7 = __this->get_address_of_info_2(); MethodInfo_t * L_8 = L_7->get_set_method_3(); NullCheck(L_8); ParameterInfoU5BU5D_t2275869610* L_9 = VirtFuncInvoker0< ParameterInfoU5BU5D_t2275869610* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_8); V_1 = L_9; ParameterInfoU5BU5D_t2275869610* L_10 = V_1; NullCheck(L_10); V_0 = ((ParameterInfoU5BU5D_t2275869610*)SZArrayNew(ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_10)->max_length))))-(int32_t)1)))); ParameterInfoU5BU5D_t2275869610* L_11 = V_1; ParameterInfoU5BU5D_t2275869610* L_12 = V_0; ParameterInfoU5BU5D_t2275869610* L_13 = V_0; NullCheck(L_13); Array_Copy_m2363740072(NULL /*static, unused*/, (Il2CppArray *)(Il2CppArray *)L_11, (Il2CppArray *)(Il2CppArray *)L_12, (((int32_t)((int32_t)(((Il2CppArray *)L_13)->max_length)))), /*hidden argument*/NULL); goto IL_006f; } IL_0068: { return ((ParameterInfoU5BU5D_t2275869610*)SZArrayNew(ParameterInfoU5BU5D_t2275869610_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_006f: { V_2 = 0; goto IL_0088; } IL_0076: { ParameterInfoU5BU5D_t2275869610* L_14 = V_0; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; ParameterInfo_t2249040075 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_3 = L_17; ParameterInfoU5BU5D_t2275869610* L_18 = V_0; int32_t L_19 = V_2; ParameterInfo_t2249040075 * L_20 = V_3; ParameterInfo_t2249040075 * L_21 = (ParameterInfo_t2249040075 *)il2cpp_codegen_object_new(ParameterInfo_t2249040075_il2cpp_TypeInfo_var); ParameterInfo__ctor_m3204994840(L_21, L_20, __this, /*hidden argument*/NULL); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_21); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (ParameterInfo_t2249040075 *)L_21); int32_t L_22 = V_2; V_2 = ((int32_t)((int32_t)L_22+(int32_t)1)); } IL_0088: { int32_t L_23 = V_2; ParameterInfoU5BU5D_t2275869610* L_24 = V_0; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_24)->max_length))))))) { goto IL_0076; } } { ParameterInfoU5BU5D_t2275869610* L_25 = V_0; return L_25; } } // System.Reflection.MethodInfo System.Reflection.MonoProperty::GetSetMethod(System.Boolean) extern "C" MethodInfo_t * MonoProperty_GetSetMethod_m436306154 (MonoProperty_t * __this, bool ___nonPublic0, const MethodInfo* method) { { MonoProperty_CachePropertyInfo_m1437316683(__this, 4, /*hidden argument*/NULL); MonoPropertyInfo_t486106184 * L_0 = __this->get_address_of_info_2(); MethodInfo_t * L_1 = L_0->get_set_method_3(); if (!L_1) { goto IL_003e; } } { bool L_2 = ___nonPublic0; if (L_2) { goto IL_0032; } } { MonoPropertyInfo_t486106184 * L_3 = __this->get_address_of_info_2(); MethodInfo_t * L_4 = L_3->get_set_method_3(); NullCheck(L_4); bool L_5 = MethodBase_get_IsPublic_m479656180(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_003e; } } IL_0032: { MonoPropertyInfo_t486106184 * L_6 = __this->get_address_of_info_2(); MethodInfo_t * L_7 = L_6->get_set_method_3(); return L_7; } IL_003e: { return (MethodInfo_t *)NULL; } } // System.Boolean System.Reflection.MonoProperty::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_IsDefined_m2473061021_MetadataUsageId; extern "C" bool MonoProperty_IsDefined_m2473061021 (MonoProperty_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_IsDefined_m2473061021_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_1 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Object[] System.Reflection.MonoProperty::GetCustomAttributes(System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_GetCustomAttributes_m1497967922_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoProperty_GetCustomAttributes_m1497967922 (MonoProperty_t * __this, bool ___inherit0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetCustomAttributes_m1497967922_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_0 = MonoCustomAttrs_GetCustomAttributes_m3069779582(NULL /*static, unused*/, __this, (bool)0, /*hidden argument*/NULL); return L_0; } } // System.Object[] System.Reflection.MonoProperty::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_GetCustomAttributes_m1756234231_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* MonoProperty_GetCustomAttributes_m1756234231 (MonoProperty_t * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetCustomAttributes_m1756234231_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_1 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MonoProperty/GetterAdapter System.Reflection.MonoProperty::CreateGetterDelegate(System.Reflection.MethodInfo) extern const Il2CppType* StaticGetter_1_t2308823731_0_0_0_var; extern const Il2CppType* Getter_2_t3970651952_0_0_0_var; extern const Il2CppType* MonoProperty_t_0_0_0_var; extern const Il2CppType* GetterAdapter_t1423755509_0_0_0_var; extern Il2CppClass* TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* MethodAccessException_t4093255254_il2cpp_TypeInfo_var; extern Il2CppClass* GetterAdapter_t1423755509_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral984599999; extern Il2CppCodeGenString* _stringLiteral3063456723; extern const uint32_t MonoProperty_CreateGetterDelegate_m2961258839_MetadataUsageId; extern "C" GetterAdapter_t1423755509 * MonoProperty_CreateGetterDelegate_m2961258839 (Il2CppObject * __this /* static, unused */, MethodInfo_t * ___method0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_CreateGetterDelegate_m2961258839_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; MethodInfo_t * V_3 = NULL; Type_t * V_4 = NULL; String_t* V_5 = NULL; { MethodInfo_t * L_0 = ___method0; NullCheck(L_0); bool L_1 = MethodBase_get_IsStatic_m1015686807(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0033; } } { TypeU5BU5D_t1664964607* L_2 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)1)); MethodInfo_t * L_3 = ___method0; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(31 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_3); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_4); V_0 = L_2; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(StaticGetter_1_t2308823731_0_0_0_var), /*hidden argument*/NULL); V_4 = L_5; V_5 = _stringLiteral984599999; goto IL_005f; } IL_0033: { TypeU5BU5D_t1664964607* L_6 = ((TypeU5BU5D_t1664964607*)SZArrayNew(TypeU5BU5D_t1664964607_il2cpp_TypeInfo_var, (uint32_t)2)); MethodInfo_t * L_7 = ___method0; NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_7); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_8); TypeU5BU5D_t1664964607* L_9 = L_6; MethodInfo_t * L_10 = ___method0; NullCheck(L_10); Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(31 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_10); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_11); V_0 = L_9; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Getter_2_t3970651952_0_0_0_var), /*hidden argument*/NULL); V_4 = L_12; V_5 = _stringLiteral3063456723; } IL_005f: { Type_t * L_13 = V_4; TypeU5BU5D_t1664964607* L_14 = V_0; NullCheck(L_13); Type_t * L_15 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t1664964607* >::Invoke(78 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_13, L_14); V_1 = L_15; Type_t * L_16 = V_1; MethodInfo_t * L_17 = ___method0; Delegate_t3022476291 * L_18 = Delegate_CreateDelegate_m3813023227(NULL /*static, unused*/, L_16, L_17, (bool)0, /*hidden argument*/NULL); V_2 = L_18; Il2CppObject * L_19 = V_2; if (L_19) { goto IL_007d; } } { MethodAccessException_t4093255254 * L_20 = (MethodAccessException_t4093255254 *)il2cpp_codegen_object_new(MethodAccessException_t4093255254_il2cpp_TypeInfo_var); MethodAccessException__ctor_m3450464547(L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20); } IL_007d: { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_21 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(MonoProperty_t_0_0_0_var), /*hidden argument*/NULL); String_t* L_22 = V_5; NullCheck(L_21); MethodInfo_t * L_23 = Type_GetMethod_m475234662(L_21, L_22, ((int32_t)40), /*hidden argument*/NULL); V_3 = L_23; MethodInfo_t * L_24 = V_3; TypeU5BU5D_t1664964607* L_25 = V_0; NullCheck(L_24); MethodInfo_t * L_26 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t1664964607* >::Invoke(32 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_24, L_25); V_3 = L_26; Type_t * L_27 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(GetterAdapter_t1423755509_0_0_0_var), /*hidden argument*/NULL); Il2CppObject * L_28 = V_2; MethodInfo_t * L_29 = V_3; Delegate_t3022476291 * L_30 = Delegate_CreateDelegate_m3052767705(NULL /*static, unused*/, L_27, L_28, L_29, (bool)1, /*hidden argument*/NULL); return ((GetterAdapter_t1423755509 *)CastclassSealed(L_30, GetterAdapter_t1423755509_il2cpp_TypeInfo_var)); } } // System.Object System.Reflection.MonoProperty::GetValue(System.Object,System.Object[]) extern "C" Il2CppObject * MonoProperty_GetValue_m3088777694 (MonoProperty_t * __this, Il2CppObject * ___obj0, ObjectU5BU5D_t3614634134* ___index1, const MethodInfo* method) { { Il2CppObject * L_0 = ___obj0; ObjectU5BU5D_t3614634134* L_1 = ___index1; Il2CppObject * L_2 = VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(23 /* System.Object System.Reflection.MonoProperty::GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, __this, L_0, 0, (Binder_t3404612058 *)NULL, L_1, (CultureInfo_t3500843524 *)NULL); return L_2; } } // System.Object System.Reflection.MonoProperty::GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* SecurityException_t887327375_il2cpp_TypeInfo_var; extern Il2CppClass* TargetInvocationException_t4098620458_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3303126324; extern Il2CppCodeGenString* _stringLiteral372029307; extern const uint32_t MonoProperty_GetValue_m2150318626_MetadataUsageId; extern "C" Il2CppObject * MonoProperty_GetValue_m2150318626 (MonoProperty_t * __this, Il2CppObject * ___obj0, int32_t ___invokeAttr1, Binder_t3404612058 * ___binder2, ObjectU5BU5D_t3614634134* ___index3, CultureInfo_t3500843524 * ___culture4, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetValue_m2150318626_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppObject * V_0 = NULL; MethodInfo_t * V_1 = NULL; SecurityException_t887327375 * V_2 = NULL; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { V_0 = NULL; MethodInfo_t * L_0 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(19 /* System.Reflection.MethodInfo System.Reflection.MonoProperty::GetGetMethod(System.Boolean) */, __this, (bool)1); V_1 = L_0; MethodInfo_t * L_1 = V_1; if (L_1) { goto IL_002b; } } { String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoProperty::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral3303126324, L_2, _stringLiteral372029307, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_4 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002b: try { // begin try (depth: 1) { ObjectU5BU5D_t3614634134* L_5 = ___index3; if (!L_5) { goto IL_003b; } } IL_0032: { ObjectU5BU5D_t3614634134* L_6 = ___index3; NullCheck(L_6); if ((((int32_t)((int32_t)(((Il2CppArray *)L_6)->max_length))))) { goto IL_004d; } } IL_003b: { MethodInfo_t * L_7 = V_1; Il2CppObject * L_8 = ___obj0; int32_t L_9 = ___invokeAttr1; Binder_t3404612058 * L_10 = ___binder2; CultureInfo_t3500843524 * L_11 = ___culture4; NullCheck(L_7); Il2CppObject * L_12 = VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_7, L_8, L_9, L_10, (ObjectU5BU5D_t3614634134*)(ObjectU5BU5D_t3614634134*)NULL, L_11); V_0 = L_12; goto IL_005b; } IL_004d: { MethodInfo_t * L_13 = V_1; Il2CppObject * L_14 = ___obj0; int32_t L_15 = ___invokeAttr1; Binder_t3404612058 * L_16 = ___binder2; ObjectU5BU5D_t3614634134* L_17 = ___index3; CultureInfo_t3500843524 * L_18 = ___culture4; NullCheck(L_13); Il2CppObject * L_19 = VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_13, L_14, L_15, L_16, L_17, L_18); V_0 = L_19; } IL_005b: { goto IL_006d; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SecurityException_t887327375_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0060; throw e; } CATCH_0060: { // begin catch(System.Security.SecurityException) { V_2 = ((SecurityException_t887327375 *)__exception_local); SecurityException_t887327375 * L_20 = V_2; TargetInvocationException_t4098620458 * L_21 = (TargetInvocationException_t4098620458 *)il2cpp_codegen_object_new(TargetInvocationException_t4098620458_il2cpp_TypeInfo_var); TargetInvocationException__ctor_m1059845570(L_21, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21); } IL_0068: { goto IL_006d; } } // end catch (depth: 1) IL_006d: { Il2CppObject * L_22 = V_0; return L_22; } } // System.Void System.Reflection.MonoProperty::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral449389896; extern Il2CppCodeGenString* _stringLiteral372029307; extern const uint32_t MonoProperty_SetValue_m1423050605_MetadataUsageId; extern "C" void MonoProperty_SetValue_m1423050605 (MonoProperty_t * __this, Il2CppObject * ___obj0, Il2CppObject * ___value1, int32_t ___invokeAttr2, Binder_t3404612058 * ___binder3, ObjectU5BU5D_t3614634134* ___index4, CultureInfo_t3500843524 * ___culture5, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_SetValue_m1423050605_MetadataUsageId); s_Il2CppMethodInitialized = true; } MethodInfo_t * V_0 = NULL; ObjectU5BU5D_t3614634134* V_1 = NULL; int32_t V_2 = 0; { MethodInfo_t * L_0 = VirtFuncInvoker1< MethodInfo_t *, bool >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.MonoProperty::GetSetMethod(System.Boolean) */, __this, (bool)1); V_0 = L_0; MethodInfo_t * L_1 = V_0; if (L_1) { goto IL_0029; } } { String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoProperty::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = String_Concat_m612901809(NULL /*static, unused*/, _stringLiteral449389896, L_2, _stringLiteral372029307, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_4 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_0029: { ObjectU5BU5D_t3614634134* L_5 = ___index4; if (!L_5) { goto IL_0039; } } { ObjectU5BU5D_t3614634134* L_6 = ___index4; NullCheck(L_6); if ((((int32_t)((int32_t)(((Il2CppArray *)L_6)->max_length))))) { goto IL_0049; } } IL_0039: { ObjectU5BU5D_t3614634134* L_7 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)1)); Il2CppObject * L_8 = ___value1; NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppObject *)L_8); V_1 = L_7; goto IL_0064; } IL_0049: { ObjectU5BU5D_t3614634134* L_9 = ___index4; NullCheck(L_9); V_2 = (((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length)))); int32_t L_10 = V_2; V_1 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)L_10+(int32_t)1)))); ObjectU5BU5D_t3614634134* L_11 = ___index4; ObjectU5BU5D_t3614634134* L_12 = V_1; NullCheck((Il2CppArray *)(Il2CppArray *)L_11); Array_CopyTo_m4061033315((Il2CppArray *)(Il2CppArray *)L_11, (Il2CppArray *)(Il2CppArray *)L_12, 0, /*hidden argument*/NULL); ObjectU5BU5D_t3614634134* L_13 = V_1; int32_t L_14 = V_2; Il2CppObject * L_15 = ___value1; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (Il2CppObject *)L_15); } IL_0064: { MethodInfo_t * L_16 = V_0; Il2CppObject * L_17 = ___obj0; int32_t L_18 = ___invokeAttr2; Binder_t3404612058 * L_19 = ___binder3; ObjectU5BU5D_t3614634134* L_20 = V_1; CultureInfo_t3500843524 * L_21 = ___culture5; NullCheck(L_16); VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_16, L_17, L_18, L_19, L_20, L_21); return; } } // System.String System.Reflection.MonoProperty::ToString() extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral372029310; extern const uint32_t MonoProperty_ToString_m1379465861_MetadataUsageId; extern "C" String_t* MonoProperty_ToString_m1379465861 (MonoProperty_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_ToString_m1379465861_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.MonoProperty::get_PropertyType() */, __this); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_0); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoProperty::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = String_Concat_m612901809(NULL /*static, unused*/, L_1, _stringLiteral372029310, L_2, /*hidden argument*/NULL); return L_3; } } // System.Type[] System.Reflection.MonoProperty::GetOptionalCustomModifiers() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_GetOptionalCustomModifiers_m3827844355_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* MonoProperty_GetOptionalCustomModifiers_m3827844355 (MonoProperty_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetOptionalCustomModifiers_m3827844355_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; { TypeU5BU5D_t1664964607* L_0 = MonoPropertyInfo_GetTypeModifiers_m184537257(NULL /*static, unused*/, __this, (bool)1, /*hidden argument*/NULL); V_0 = L_0; TypeU5BU5D_t1664964607* L_1 = V_0; if (L_1) { goto IL_0014; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_2 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_2; } IL_0014: { TypeU5BU5D_t1664964607* L_3 = V_0; return L_3; } } // System.Type[] System.Reflection.MonoProperty::GetRequiredCustomModifiers() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t MonoProperty_GetRequiredCustomModifiers_m576853384_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* MonoProperty_GetRequiredCustomModifiers_m576853384 (MonoProperty_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MonoProperty_GetRequiredCustomModifiers_m576853384_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t1664964607* V_0 = NULL; { TypeU5BU5D_t1664964607* L_0 = MonoPropertyInfo_GetTypeModifiers_m184537257(NULL /*static, unused*/, __this, (bool)0, /*hidden argument*/NULL); V_0 = L_0; TypeU5BU5D_t1664964607* L_1 = V_0; if (L_1) { goto IL_0014; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_2 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_2; } IL_0014: { TypeU5BU5D_t1664964607* L_3 = V_0; return L_3; } } // System.Void System.Reflection.MonoProperty::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void MonoProperty_GetObjectData_m2540252220 (MonoProperty_t * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MonoProperty::get_Name() */, __this); Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(9 /* System.Type System.Reflection.MonoProperty::get_ReflectedType() */, __this); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Reflection.MonoProperty::ToString() */, __this); MemberInfoSerializationHolder_Serialize_m1949812823(NULL /*static, unused*/, L_0, L_1, L_2, L_3, ((int32_t)16), /*hidden argument*/NULL); return; } } // System.Void System.Reflection.MonoProperty/GetterAdapter::.ctor(System.Object,System.IntPtr) extern "C" void GetterAdapter__ctor_m4231828815 (GetterAdapter_t1423755509 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method) { __this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Object System.Reflection.MonoProperty/GetterAdapter::Invoke(System.Object) extern "C" Il2CppObject * GetterAdapter_Invoke_m2777461448 (GetterAdapter_t1423755509 * __this, Il2CppObject * ____this0, const MethodInfo* method) { if(__this->get_prev_9() != NULL) { GetterAdapter_Invoke_m2777461448((GetterAdapter_t1423755509 *)__this->get_prev_9(),____this0, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0())); bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef Il2CppObject * (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ____this0, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),____this0,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef Il2CppObject * (*FunctionPointerType) (void* __this, Il2CppObject * ____this0, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),____this0,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else { typedef Il2CppObject * (*FunctionPointerType) (void* __this, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(____this0,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } } // System.IAsyncResult System.Reflection.MonoProperty/GetterAdapter::BeginInvoke(System.Object,System.AsyncCallback,System.Object) extern "C" Il2CppObject * GetterAdapter_BeginInvoke_m3760926500 (GetterAdapter_t1423755509 * __this, Il2CppObject * ____this0, AsyncCallback_t163412349 * ___callback1, Il2CppObject * ___object2, const MethodInfo* method) { void *__d_args[2] = {0}; __d_args[0] = ____this0; return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback1, (Il2CppObject*)___object2); } // System.Object System.Reflection.MonoProperty/GetterAdapter::EndInvoke(System.IAsyncResult) extern "C" Il2CppObject * GetterAdapter_EndInvoke_m1928570128 (GetterAdapter_t1423755509 * __this, Il2CppObject * ___result0, const MethodInfo* method) { Il2CppObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (Il2CppObject *)__result; } // System.Void System.Reflection.MonoPropertyInfo::get_property_info(System.Reflection.MonoProperty,System.Reflection.MonoPropertyInfo&,System.Reflection.PInfo) extern "C" void MonoPropertyInfo_get_property_info_m556498347 (Il2CppObject * __this /* static, unused */, MonoProperty_t * ___prop0, MonoPropertyInfo_t486106184 * ___info1, int32_t ___req_info2, const MethodInfo* method) { using namespace il2cpp::icalls; typedef void (*MonoPropertyInfo_get_property_info_m556498347_ftn) (MonoProperty_t *, MonoPropertyInfo_t486106184 *, int32_t); ((MonoPropertyInfo_get_property_info_m556498347_ftn)mscorlib::System::Reflection::MonoPropertyInfo::get_property_info) (___prop0, ___info1, ___req_info2); } // System.Type[] System.Reflection.MonoPropertyInfo::GetTypeModifiers(System.Reflection.MonoProperty,System.Boolean) extern "C" TypeU5BU5D_t1664964607* MonoPropertyInfo_GetTypeModifiers_m184537257 (Il2CppObject * __this /* static, unused */, MonoProperty_t * ___prop0, bool ___optional1, const MethodInfo* method) { using namespace il2cpp::icalls; typedef TypeU5BU5D_t1664964607* (*MonoPropertyInfo_GetTypeModifiers_m184537257_ftn) (MonoProperty_t *, bool); return ((MonoPropertyInfo_GetTypeModifiers_m184537257_ftn)mscorlib::System::Reflection::MonoPropertyInfo::GetTypeModifiers) (___prop0, ___optional1); } // Conversion methods for marshalling of: System.Reflection.MonoPropertyInfo extern "C" void MonoPropertyInfo_t486106184_marshal_pinvoke(const MonoPropertyInfo_t486106184& unmarshaled, MonoPropertyInfo_t486106184_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoPropertyInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } extern "C" void MonoPropertyInfo_t486106184_marshal_pinvoke_back(const MonoPropertyInfo_t486106184_marshaled_pinvoke& marshaled, MonoPropertyInfo_t486106184& unmarshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoPropertyInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.MonoPropertyInfo extern "C" void MonoPropertyInfo_t486106184_marshal_pinvoke_cleanup(MonoPropertyInfo_t486106184_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Reflection.MonoPropertyInfo extern "C" void MonoPropertyInfo_t486106184_marshal_com(const MonoPropertyInfo_t486106184& unmarshaled, MonoPropertyInfo_t486106184_marshaled_com& marshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoPropertyInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } extern "C" void MonoPropertyInfo_t486106184_marshal_com_back(const MonoPropertyInfo_t486106184_marshaled_com& marshaled, MonoPropertyInfo_t486106184& unmarshaled) { Il2CppCodeGenException* ___parent_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'parent' of type 'MonoPropertyInfo': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___parent_0Exception); } // Conversion method for clean up from marshalling of: System.Reflection.MonoPropertyInfo extern "C" void MonoPropertyInfo_t486106184_marshal_com_cleanup(MonoPropertyInfo_t486106184_marshaled_com& marshaled) { } // System.Void System.Reflection.ParameterInfo::.ctor() extern "C" void ParameterInfo__ctor_m1986388557 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.ParameterInfo::.ctor(System.Reflection.Emit.ParameterBuilder,System.Type,System.Reflection.MemberInfo,System.Int32) extern "C" void ParameterInfo__ctor_m2149157062 (ParameterInfo_t2249040075 * __this, ParameterBuilder_t3344728474 * ___pb0, Type_t * ___type1, MemberInfo_t * ___member2, int32_t ___position3, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type1; __this->set_ClassImpl_0(L_0); MemberInfo_t * L_1 = ___member2; __this->set_MemberImpl_2(L_1); ParameterBuilder_t3344728474 * L_2 = ___pb0; if (!L_2) { goto IL_0045; } } { ParameterBuilder_t3344728474 * L_3 = ___pb0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Reflection.Emit.ParameterBuilder::get_Name() */, L_3); __this->set_NameImpl_3(L_4); ParameterBuilder_t3344728474 * L_5 = ___pb0; NullCheck(L_5); int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Reflection.Emit.ParameterBuilder::get_Position() */, L_5); __this->set_PositionImpl_4(((int32_t)((int32_t)L_6-(int32_t)1))); ParameterBuilder_t3344728474 * L_7 = ___pb0; NullCheck(L_7); int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Reflection.Emit.ParameterBuilder::get_Attributes() */, L_7); __this->set_AttrsImpl_5(L_8); goto IL_005d; } IL_0045: { __this->set_NameImpl_3((String_t*)NULL); int32_t L_9 = ___position3; __this->set_PositionImpl_4(((int32_t)((int32_t)L_9-(int32_t)1))); __this->set_AttrsImpl_5(0); } IL_005d: { return; } } // System.Void System.Reflection.ParameterInfo::.ctor(System.Reflection.ParameterInfo,System.Reflection.MemberInfo) extern "C" void ParameterInfo__ctor_m3204994840 (ParameterInfo_t2249040075 * __this, ParameterInfo_t2249040075 * ___pinfo0, MemberInfo_t * ___member1, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); ParameterInfo_t2249040075 * L_0 = ___pinfo0; NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_0); __this->set_ClassImpl_0(L_1); MemberInfo_t * L_2 = ___member1; __this->set_MemberImpl_2(L_2); ParameterInfo_t2249040075 * L_3 = ___pinfo0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_3); __this->set_NameImpl_3(L_4); ParameterInfo_t2249040075 * L_5 = ___pinfo0; NullCheck(L_5); int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_5); __this->set_PositionImpl_4(L_6); ParameterInfo_t2249040075 * L_7 = ___pinfo0; NullCheck(L_7); int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::get_Attributes() */, L_7); __this->set_AttrsImpl_5(L_8); return; } } // System.String System.Reflection.ParameterInfo::ToString() extern const Il2CppType* Void_t1841601450_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Char_t3454481338_il2cpp_TypeInfo_var; extern const uint32_t ParameterInfo_ToString_m1722229694_MetadataUsageId; extern "C" String_t* ParameterInfo_ToString_m1722229694 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ParameterInfo_ToString_m1722229694_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; bool V_1 = false; String_t* V_2 = NULL; int32_t G_B7_0 = 0; String_t* G_B10_0 = NULL; { Type_t * L_0 = __this->get_ClassImpl_0(); V_0 = L_0; goto IL_0013; } IL_000c: { Type_t * L_1 = V_0; NullCheck(L_1); Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_1); V_0 = L_2; } IL_0013: { Type_t * L_3 = V_0; NullCheck(L_3); bool L_4 = Type_get_HasElementType_m3319917896(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_000c; } } { Type_t * L_5 = V_0; NullCheck(L_5); bool L_6 = Type_get_IsPrimitive_m1522841565(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0060; } } { Type_t * L_7 = __this->get_ClassImpl_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Void_t1841601450_0_0_0_var), /*hidden argument*/NULL); if ((((Il2CppObject*)(Type_t *)L_7) == ((Il2CppObject*)(Type_t *)L_8))) { goto IL_0060; } } { Type_t * L_9 = __this->get_ClassImpl_0(); NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Type::get_Namespace() */, L_9); MemberInfo_t * L_11 = __this->get_MemberImpl_2(); NullCheck(L_11); Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_11); NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(34 /* System.String System.Type::get_Namespace() */, L_12); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_14 = String_op_Equality_m1790663636(NULL /*static, unused*/, L_10, L_13, /*hidden argument*/NULL); G_B7_0 = ((int32_t)(L_14)); goto IL_0061; } IL_0060: { G_B7_0 = 1; } IL_0061: { V_1 = (bool)G_B7_0; bool L_15 = V_1; if (!L_15) { goto IL_0078; } } { Type_t * L_16 = __this->get_ClassImpl_0(); NullCheck(L_16); String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_16); G_B10_0 = L_17; goto IL_0083; } IL_0078: { Type_t * L_18 = __this->get_ClassImpl_0(); NullCheck(L_18); String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_18); G_B10_0 = L_19; } IL_0083: { V_2 = G_B10_0; bool L_20 = ParameterInfo_get_IsRetval_m1881464570(__this, /*hidden argument*/NULL); if (L_20) { goto IL_00aa; } } { String_t* L_21 = V_2; Il2CppChar L_22 = ((Il2CppChar)((int32_t)32)); Il2CppObject * L_23 = Box(Char_t3454481338_il2cpp_TypeInfo_var, &L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_24 = String_Concat_m56707527(NULL /*static, unused*/, L_21, L_23, /*hidden argument*/NULL); V_2 = L_24; String_t* L_25 = V_2; String_t* L_26 = __this->get_NameImpl_3(); String_t* L_27 = String_Concat_m2596409543(NULL /*static, unused*/, L_25, L_26, /*hidden argument*/NULL); V_2 = L_27; } IL_00aa: { String_t* L_28 = V_2; return L_28; } } // System.Type System.Reflection.ParameterInfo::get_ParameterType() extern "C" Type_t * ParameterInfo_get_ParameterType_m1441012169 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { Type_t * L_0 = __this->get_ClassImpl_0(); return L_0; } } // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::get_Attributes() extern "C" int32_t ParameterInfo_get_Attributes_m407887446 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_AttrsImpl_5(); return L_0; } } // System.Boolean System.Reflection.ParameterInfo::get_IsIn() extern "C" bool ParameterInfo_get_IsIn_m1357865245 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)1))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.ParameterInfo::get_IsOptional() extern "C" bool ParameterInfo_get_IsOptional_m2877290948 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.ParameterInfo::get_IsOut() extern "C" bool ParameterInfo_get_IsOut_m3097675062 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)2))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Reflection.ParameterInfo::get_IsRetval() extern "C" bool ParameterInfo_get_IsRetval_m1881464570 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::get_Attributes() */, __this); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)8))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Reflection.MemberInfo System.Reflection.ParameterInfo::get_Member() extern "C" MemberInfo_t * ParameterInfo_get_Member_m4111292219 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { MemberInfo_t * L_0 = __this->get_MemberImpl_2(); return L_0; } } // System.String System.Reflection.ParameterInfo::get_Name() extern "C" String_t* ParameterInfo_get_Name_m149251884 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { String_t* L_0 = __this->get_NameImpl_3(); return L_0; } } // System.Int32 System.Reflection.ParameterInfo::get_Position() extern "C" int32_t ParameterInfo_get_Position_m2135360011 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { { int32_t L_0 = __this->get_PositionImpl_4(); return L_0; } } // System.Object[] System.Reflection.ParameterInfo::GetCustomAttributes(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t ParameterInfo_GetCustomAttributes_m2985072480_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* ParameterInfo_GetCustomAttributes_m2985072480 (ParameterInfo_t2249040075 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ParameterInfo_GetCustomAttributes_m2985072480_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); ObjectU5BU5D_t3614634134* L_2 = MonoCustomAttrs_GetCustomAttributes_m939426263(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Reflection.ParameterInfo::IsDefined(System.Type,System.Boolean) extern Il2CppClass* MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var; extern const uint32_t ParameterInfo_IsDefined_m2412925144_MetadataUsageId; extern "C" bool ParameterInfo_IsDefined_m2412925144 (ParameterInfo_t2249040075 * __this, Type_t * ___attributeType0, bool ___inherit1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ParameterInfo_IsDefined_m2412925144_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___attributeType0; bool L_1 = ___inherit1; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t2976585698_il2cpp_TypeInfo_var); bool L_2 = MonoCustomAttrs_IsDefined_m3820363041(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object[] System.Reflection.ParameterInfo::GetPseudoCustomAttributes() extern Il2CppClass* ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var; extern Il2CppClass* InAttribute_t1394050551_il2cpp_TypeInfo_var; extern Il2CppClass* OptionalAttribute_t827982902_il2cpp_TypeInfo_var; extern Il2CppClass* OutAttribute_t1539424546_il2cpp_TypeInfo_var; extern const uint32_t ParameterInfo_GetPseudoCustomAttributes_m2952359394_MetadataUsageId; extern "C" ObjectU5BU5D_t3614634134* ParameterInfo_GetPseudoCustomAttributes_m2952359394 (ParameterInfo_t2249040075 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ParameterInfo_GetPseudoCustomAttributes_m2952359394_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t3614634134* V_1 = NULL; { V_0 = 0; bool L_0 = ParameterInfo_get_IsIn_m1357865245(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0011; } } { int32_t L_1 = V_0; V_0 = ((int32_t)((int32_t)L_1+(int32_t)1)); } IL_0011: { bool L_2 = ParameterInfo_get_IsOut_m3097675062(__this, /*hidden argument*/NULL); if (!L_2) { goto IL_0020; } } { int32_t L_3 = V_0; V_0 = ((int32_t)((int32_t)L_3+(int32_t)1)); } IL_0020: { bool L_4 = ParameterInfo_get_IsOptional_m2877290948(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_002f; } } { int32_t L_5 = V_0; V_0 = ((int32_t)((int32_t)L_5+(int32_t)1)); } IL_002f: { UnmanagedMarshal_t4270021860 * L_6 = __this->get_marshalAs_6(); if (!L_6) { goto IL_003e; } } { int32_t L_7 = V_0; V_0 = ((int32_t)((int32_t)L_7+(int32_t)1)); } IL_003e: { int32_t L_8 = V_0; if (L_8) { goto IL_0046; } } { return (ObjectU5BU5D_t3614634134*)NULL; } IL_0046: { int32_t L_9 = V_0; V_1 = ((ObjectU5BU5D_t3614634134*)SZArrayNew(ObjectU5BU5D_t3614634134_il2cpp_TypeInfo_var, (uint32_t)L_9)); V_0 = 0; bool L_10 = ParameterInfo_get_IsIn_m1357865245(__this, /*hidden argument*/NULL); if (!L_10) { goto IL_0066; } } { ObjectU5BU5D_t3614634134* L_11 = V_1; int32_t L_12 = V_0; int32_t L_13 = L_12; V_0 = ((int32_t)((int32_t)L_13+(int32_t)1)); InAttribute_t1394050551 * L_14 = (InAttribute_t1394050551 *)il2cpp_codegen_object_new(InAttribute_t1394050551_il2cpp_TypeInfo_var); InAttribute__ctor_m1401060713(L_14, /*hidden argument*/NULL); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_14); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppObject *)L_14); } IL_0066: { bool L_15 = ParameterInfo_get_IsOptional_m2877290948(__this, /*hidden argument*/NULL); if (!L_15) { goto IL_007d; } } { ObjectU5BU5D_t3614634134* L_16 = V_1; int32_t L_17 = V_0; int32_t L_18 = L_17; V_0 = ((int32_t)((int32_t)L_18+(int32_t)1)); OptionalAttribute_t827982902 * L_19 = (OptionalAttribute_t827982902 *)il2cpp_codegen_object_new(OptionalAttribute_t827982902_il2cpp_TypeInfo_var); OptionalAttribute__ctor_m1739107582(L_19, /*hidden argument*/NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_19); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (Il2CppObject *)L_19); } IL_007d: { bool L_20 = ParameterInfo_get_IsOut_m3097675062(__this, /*hidden argument*/NULL); if (!L_20) { goto IL_0094; } } { ObjectU5BU5D_t3614634134* L_21 = V_1; int32_t L_22 = V_0; int32_t L_23 = L_22; V_0 = ((int32_t)((int32_t)L_23+(int32_t)1)); OutAttribute_t1539424546 * L_24 = (OutAttribute_t1539424546 *)il2cpp_codegen_object_new(OutAttribute_t1539424546_il2cpp_TypeInfo_var); OutAttribute__ctor_m1447235100(L_24, /*hidden argument*/NULL); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_24); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (Il2CppObject *)L_24); } IL_0094: { UnmanagedMarshal_t4270021860 * L_25 = __this->get_marshalAs_6(); if (!L_25) { goto IL_00b1; } } { ObjectU5BU5D_t3614634134* L_26 = V_1; int32_t L_27 = V_0; int32_t L_28 = L_27; V_0 = ((int32_t)((int32_t)L_28+(int32_t)1)); UnmanagedMarshal_t4270021860 * L_29 = __this->get_marshalAs_6(); NullCheck(L_29); MarshalAsAttribute_t2900773360 * L_30 = UnmanagedMarshal_ToMarshalAsAttribute_m3695569337(L_29, /*hidden argument*/NULL); NullCheck(L_26); ArrayElementTypeCheck (L_26, L_30); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (Il2CppObject *)L_30); } IL_00b1: { ObjectU5BU5D_t3614634134* L_31 = V_1; return L_31; } } // Conversion methods for marshalling of: System.Reflection.ParameterModifier extern "C" void ParameterModifier_t1820634920_marshal_pinvoke(const ParameterModifier_t1820634920& unmarshaled, ParameterModifier_t1820634920_marshaled_pinvoke& marshaled) { if (unmarshaled.get__byref_0() != NULL) { int32_t _unmarshaled__byref_Length = (unmarshaled.get__byref_0())->max_length; marshaled.____byref_0 = il2cpp_codegen_marshal_allocate_array<int32_t>(_unmarshaled__byref_Length); for (int32_t i = 0; i < _unmarshaled__byref_Length; i++) { (marshaled.____byref_0)[i] = static_cast<int32_t>((unmarshaled.get__byref_0())->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i))); } } else { marshaled.____byref_0 = NULL; } } extern Il2CppClass* BooleanU5BU5D_t3568034315_il2cpp_TypeInfo_var; extern const uint32_t ParameterModifier_t1820634920_pinvoke_FromNativeMethodDefinition_MetadataUsageId; extern "C" void ParameterModifier_t1820634920_marshal_pinvoke_back(const ParameterModifier_t1820634920_marshaled_pinvoke& marshaled, ParameterModifier_t1820634920& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ParameterModifier_t1820634920_pinvoke_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } if (marshaled.____byref_0 != NULL) { if (unmarshaled.get__byref_0() == NULL) { unmarshaled.set__byref_0(reinterpret_cast<BooleanU5BU5D_t3568034315*>(SZArrayNew(BooleanU5BU5D_t3568034315_il2cpp_TypeInfo_var, 1))); } int32_t _arrayLength = (unmarshaled.get__byref_0())->max_length; for (int32_t i = 0; i < _arrayLength; i++) { (unmarshaled.get__byref_0())->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), static_cast<bool>((marshaled.____byref_0)[i])); } } } // Conversion method for clean up from marshalling of: System.Reflection.ParameterModifier extern "C" void ParameterModifier_t1820634920_marshal_pinvoke_cleanup(ParameterModifier_t1820634920_marshaled_pinvoke& marshaled) { if (marshaled.____byref_0 != NULL) { il2cpp_codegen_marshal_free(marshaled.____byref_0); marshaled.____byref_0 = NULL; } } // Conversion methods for marshalling of: System.Reflection.ParameterModifier extern "C" void ParameterModifier_t1820634920_marshal_com(const ParameterModifier_t1820634920& unmarshaled, ParameterModifier_t1820634920_marshaled_com& marshaled) { if (unmarshaled.get__byref_0() != NULL) { int32_t _unmarshaled__byref_Length = (unmarshaled.get__byref_0())->max_length; marshaled.____byref_0 = il2cpp_codegen_marshal_allocate_array<int32_t>(_unmarshaled__byref_Length); for (int32_t i = 0; i < _unmarshaled__byref_Length; i++) { (marshaled.____byref_0)[i] = static_cast<int32_t>((unmarshaled.get__byref_0())->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i))); } } else { marshaled.____byref_0 = NULL; } } extern Il2CppClass* BooleanU5BU5D_t3568034315_il2cpp_TypeInfo_var; extern const uint32_t ParameterModifier_t1820634920_com_FromNativeMethodDefinition_MetadataUsageId; extern "C" void ParameterModifier_t1820634920_marshal_com_back(const ParameterModifier_t1820634920_marshaled_com& marshaled, ParameterModifier_t1820634920& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ParameterModifier_t1820634920_com_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } if (marshaled.____byref_0 != NULL) { if (unmarshaled.get__byref_0() == NULL) { unmarshaled.set__byref_0(reinterpret_cast<BooleanU5BU5D_t3568034315*>(SZArrayNew(BooleanU5BU5D_t3568034315_il2cpp_TypeInfo_var, 1))); } int32_t _arrayLength = (unmarshaled.get__byref_0())->max_length; for (int32_t i = 0; i < _arrayLength; i++) { (unmarshaled.get__byref_0())->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), static_cast<bool>((marshaled.____byref_0)[i])); } } } // Conversion method for clean up from marshalling of: System.Reflection.ParameterModifier extern "C" void ParameterModifier_t1820634920_marshal_com_cleanup(ParameterModifier_t1820634920_marshaled_com& marshaled) { if (marshaled.____byref_0 != NULL) { il2cpp_codegen_marshal_free(marshaled.____byref_0); marshaled.____byref_0 = NULL; } } // System.Void System.Reflection.Pointer::.ctor() extern "C" void Pointer__ctor_m906226785 (Pointer_t937075087 * __this, const MethodInfo* method) { { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.Pointer::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral506242180; extern const uint32_t Pointer_System_Runtime_Serialization_ISerializable_GetObjectData_m4103721774_MetadataUsageId; extern "C" void Pointer_System_Runtime_Serialization_ISerializable_GetObjectData_m4103721774 (Pointer_t937075087 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Pointer_System_Runtime_Serialization_ISerializable_GetObjectData_m4103721774_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_t1793819818 * L_0 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_0, _stringLiteral506242180, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Reflection.PropertyInfo::.ctor() extern "C" void PropertyInfo__ctor_m1808219471 (PropertyInfo_t * __this, const MethodInfo* method) { { MemberInfo__ctor_m2808577188(__this, /*hidden argument*/NULL); return; } } // System.Reflection.MemberTypes System.Reflection.PropertyInfo::get_MemberType() extern "C" int32_t PropertyInfo_get_MemberType_m1634143880 (PropertyInfo_t * __this, const MethodInfo* method) { { return (int32_t)(((int32_t)16)); } } // System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) extern "C" Il2CppObject * PropertyInfo_GetValue_m3655964945 (PropertyInfo_t * __this, Il2CppObject * ___obj0, ObjectU5BU5D_t3614634134* ___index1, const MethodInfo* method) { { Il2CppObject * L_0 = ___obj0; ObjectU5BU5D_t3614634134* L_1 = ___index1; Il2CppObject * L_2 = VirtFuncInvoker5< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(23 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, __this, L_0, 0, (Binder_t3404612058 *)NULL, L_1, (CultureInfo_t3500843524 *)NULL); return L_2; } } // System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) extern "C" void PropertyInfo_SetValue_m2961483868 (PropertyInfo_t * __this, Il2CppObject * ___obj0, Il2CppObject * ___value1, ObjectU5BU5D_t3614634134* ___index2, const MethodInfo* method) { { Il2CppObject * L_0 = ___obj0; Il2CppObject * L_1 = ___value1; ObjectU5BU5D_t3614634134* L_2 = ___index2; VirtActionInvoker6< Il2CppObject *, Il2CppObject *, int32_t, Binder_t3404612058 *, ObjectU5BU5D_t3614634134*, CultureInfo_t3500843524 * >::Invoke(25 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, __this, L_0, L_1, 0, (Binder_t3404612058 *)NULL, L_2, (CultureInfo_t3500843524 *)NULL); return; } } // System.Type[] System.Reflection.PropertyInfo::GetOptionalCustomModifiers() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t PropertyInfo_GetOptionalCustomModifiers_m747937176_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* PropertyInfo_GetOptionalCustomModifiers_m747937176 (PropertyInfo_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyInfo_GetOptionalCustomModifiers_m747937176_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_0 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_0; } } // System.Type[] System.Reflection.PropertyInfo::GetRequiredCustomModifiers() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t PropertyInfo_GetRequiredCustomModifiers_m2291294773_MetadataUsageId; extern "C" TypeU5BU5D_t1664964607* PropertyInfo_GetRequiredCustomModifiers_m2291294773 (PropertyInfo_t * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (PropertyInfo_GetRequiredCustomModifiers_m2291294773_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t1664964607* L_0 = ((Type_t_StaticFields*)Type_t_il2cpp_TypeInfo_var->static_fields)->get_EmptyTypes_3(); return L_0; } } // System.Void System.Reflection.StrongNameKeyPair::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern const Il2CppType* ByteU5BU5D_t3397334013_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3721378849; extern Il2CppCodeGenString* _stringLiteral3423086453; extern Il2CppCodeGenString* _stringLiteral2645312083; extern Il2CppCodeGenString* _stringLiteral622693823; extern const uint32_t StrongNameKeyPair__ctor_m1022407102_MetadataUsageId; extern "C" void StrongNameKeyPair__ctor_m1022407102 (StrongNameKeyPair_t4090869089 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StrongNameKeyPair__ctor_m1022407102_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m2551263788(__this, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_0 = ___info0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t3397334013_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); Il2CppObject * L_2 = SerializationInfo_GetValue_m1127314592(L_0, _stringLiteral3721378849, L_1, /*hidden argument*/NULL); __this->set__publicKey_0(((ByteU5BU5D_t3397334013*)Castclass(L_2, ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var))); SerializationInfo_t228987430 * L_3 = ___info0; NullCheck(L_3); String_t* L_4 = SerializationInfo_GetString_m547109409(L_3, _stringLiteral3423086453, /*hidden argument*/NULL); __this->set__keyPairContainer_1(L_4); SerializationInfo_t228987430 * L_5 = ___info0; NullCheck(L_5); bool L_6 = SerializationInfo_GetBoolean_m3573708305(L_5, _stringLiteral2645312083, /*hidden argument*/NULL); __this->set__keyPairExported_2(L_6); SerializationInfo_t228987430 * L_7 = ___info0; Type_t * L_8 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t3397334013_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_7); Il2CppObject * L_9 = SerializationInfo_GetValue_m1127314592(L_7, _stringLiteral622693823, L_8, /*hidden argument*/NULL); __this->set__keyPairArray_3(((ByteU5BU5D_t3397334013*)Castclass(L_9, ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var))); return; } } // System.Void System.Reflection.StrongNameKeyPair::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern const Il2CppType* ByteU5BU5D_t3397334013_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3721378849; extern Il2CppCodeGenString* _stringLiteral3423086453; extern Il2CppCodeGenString* _stringLiteral2645312083; extern Il2CppCodeGenString* _stringLiteral622693823; extern const uint32_t StrongNameKeyPair_System_Runtime_Serialization_ISerializable_GetObjectData_m1693082120_MetadataUsageId; extern "C" void StrongNameKeyPair_System_Runtime_Serialization_ISerializable_GetObjectData_m1693082120 (StrongNameKeyPair_t4090869089 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StrongNameKeyPair_System_Runtime_Serialization_ISerializable_GetObjectData_m1693082120_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t228987430 * L_0 = ___info0; ByteU5BU5D_t3397334013* L_1 = __this->get__publicKey_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t3397334013_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_0); SerializationInfo_AddValue_m1781549036(L_0, _stringLiteral3721378849, (Il2CppObject *)(Il2CppObject *)L_1, L_2, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_3 = ___info0; String_t* L_4 = __this->get__keyPairContainer_1(); NullCheck(L_3); SerializationInfo_AddValue_m1740888931(L_3, _stringLiteral3423086453, L_4, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_5 = ___info0; bool L_6 = __this->get__keyPairExported_2(); NullCheck(L_5); SerializationInfo_AddValue_m1192926088(L_5, _stringLiteral2645312083, L_6, /*hidden argument*/NULL); SerializationInfo_t228987430 * L_7 = ___info0; ByteU5BU5D_t3397334013* L_8 = __this->get__keyPairArray_3(); Type_t * L_9 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ByteU5BU5D_t3397334013_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_7); SerializationInfo_AddValue_m1781549036(L_7, _stringLiteral622693823, (Il2CppObject *)(Il2CppObject *)L_8, L_9, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.StrongNameKeyPair::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) extern "C" void StrongNameKeyPair_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m2330221363 (StrongNameKeyPair_t4090869089 * __this, Il2CppObject * ___sender0, const MethodInfo* method) { { return; } } // System.Void System.Reflection.TargetException::.ctor() extern Il2CppCodeGenString* _stringLiteral3413494879; extern const uint32_t TargetException__ctor_m104994274_MetadataUsageId; extern "C" void TargetException__ctor_m104994274 (TargetException_t1572104820 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TargetException__ctor_m104994274_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Locale_GetText_m1954433032(NULL /*static, unused*/, _stringLiteral3413494879, /*hidden argument*/NULL); Exception__ctor_m485833136(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetException::.ctor(System.String) extern "C" void TargetException__ctor_m3228808416 (TargetException_t1572104820 * __this, String_t* ___message0, const MethodInfo* method) { { String_t* L_0 = ___message0; Exception__ctor_m485833136(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void TargetException__ctor_m2630053835 (TargetException_t1572104820 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___context1; Exception__ctor_m3836998015(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetInvocationException::.ctor(System.Exception) extern Il2CppCodeGenString* _stringLiteral2114161008; extern const uint32_t TargetInvocationException__ctor_m1059845570_MetadataUsageId; extern "C" void TargetInvocationException__ctor_m1059845570 (TargetInvocationException_t4098620458 * __this, Exception_t1927440687 * ___inner0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TargetInvocationException__ctor_m1059845570_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Exception_t1927440687 * L_0 = ___inner0; Exception__ctor_m2453009240(__this, _stringLiteral2114161008, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetInvocationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void TargetInvocationException__ctor_m2308614207 (TargetInvocationException_t4098620458 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___sc1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___sc1; Exception__ctor_m3836998015(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetParameterCountException::.ctor() extern Il2CppCodeGenString* _stringLiteral212474851; extern const uint32_t TargetParameterCountException__ctor_m1256521036_MetadataUsageId; extern "C" void TargetParameterCountException__ctor_m1256521036 (TargetParameterCountException_t1554451430 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TargetParameterCountException__ctor_m1256521036_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Locale_GetText_m1954433032(NULL /*static, unused*/, _stringLiteral212474851, /*hidden argument*/NULL); Exception__ctor_m485833136(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetParameterCountException::.ctor(System.String) extern "C" void TargetParameterCountException__ctor_m2760108938 (TargetParameterCountException_t1554451430 * __this, String_t* ___message0, const MethodInfo* method) { { String_t* L_0 = ___message0; Exception__ctor_m485833136(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TargetParameterCountException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void TargetParameterCountException__ctor_m2091252449 (TargetParameterCountException_t1554451430 * __this, SerializationInfo_t228987430 * ___info0, StreamingContext_t1417235061 ___context1, const MethodInfo* method) { { SerializationInfo_t228987430 * L_0 = ___info0; StreamingContext_t1417235061 L_1 = ___context1; Exception__ctor_m3836998015(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Reflection.TypeFilter::.ctor(System.Object,System.IntPtr) extern "C" void TypeFilter__ctor_m1798016172 (TypeFilter_t2905709404 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method) { __this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Reflection.TypeFilter::Invoke(System.Type,System.Object) extern "C" bool TypeFilter_Invoke_m2156848151 (TypeFilter_t2905709404 * __this, Type_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method) { if(__this->get_prev_9() != NULL) { TypeFilter_Invoke_m2156848151((TypeFilter_t2905709404 *)__this->get_prev_9(),___m0, ___filterCriteria1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0())); bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef bool (*FunctionPointerType) (Il2CppObject *, void* __this, Type_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___m0, ___filterCriteria1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef bool (*FunctionPointerType) (void* __this, Type_t * ___m0, Il2CppObject * ___filterCriteria1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___m0, ___filterCriteria1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else { typedef bool (*FunctionPointerType) (void* __this, Il2CppObject * ___filterCriteria1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(___m0, ___filterCriteria1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } } // System.IAsyncResult System.Reflection.TypeFilter::BeginInvoke(System.Type,System.Object,System.AsyncCallback,System.Object) extern "C" Il2CppObject * TypeFilter_BeginInvoke_m2395188690 (TypeFilter_t2905709404 * __this, Type_t * ___m0, Il2CppObject * ___filterCriteria1, AsyncCallback_t163412349 * ___callback2, Il2CppObject * ___object3, const MethodInfo* method) { void *__d_args[3] = {0}; __d_args[0] = ___m0; __d_args[1] = ___filterCriteria1; return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback2, (Il2CppObject*)___object3); } // System.Boolean System.Reflection.TypeFilter::EndInvoke(System.IAsyncResult) extern "C" bool TypeFilter_EndInvoke_m997625354 (TypeFilter_t2905709404 * __this, Il2CppObject * ___result0, const MethodInfo* method) { Il2CppObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((Il2CppCodeGenObject*)__result); } // System.Void System.ResolveEventArgs::.ctor(System.String) extern Il2CppClass* EventArgs_t3289624707_il2cpp_TypeInfo_var; extern const uint32_t ResolveEventArgs__ctor_m1927258464_MetadataUsageId; extern "C" void ResolveEventArgs__ctor_m1927258464 (ResolveEventArgs_t1859808873 * __this, String_t* ___name0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResolveEventArgs__ctor_m1927258464_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t3289624707_il2cpp_TypeInfo_var); EventArgs__ctor_m3696060910(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_m_Name_1(L_0); return; } } // System.Void System.ResolveEventHandler::.ctor(System.Object,System.IntPtr) extern "C" void ResolveEventHandler__ctor_m3098271043 (ResolveEventHandler_t3842432458 * __this, Il2CppObject * ___object0, IntPtr_t ___method1, const MethodInfo* method) { __this->set_method_ptr_0((Il2CppMethodPointer)((MethodInfo*)___method1.get_m_value_0())->methodPointer); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Reflection.Assembly System.ResolveEventHandler::Invoke(System.Object,System.ResolveEventArgs) extern "C" Assembly_t4268412390 * ResolveEventHandler_Invoke_m3343892466 (ResolveEventHandler_t3842432458 * __this, Il2CppObject * ___sender0, ResolveEventArgs_t1859808873 * ___args1, const MethodInfo* method) { if(__this->get_prev_9() != NULL) { ResolveEventHandler_Invoke_m3343892466((ResolveEventHandler_t3842432458 *)__this->get_prev_9(),___sender0, ___args1, method); } il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->get_method_3().get_m_value_0())); bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->get_method_3().get_m_value_0())); if (__this->get_m_target_2() != NULL && ___methodIsStatic) { typedef Assembly_t4268412390 * (*FunctionPointerType) (Il2CppObject *, void* __this, Il2CppObject * ___sender0, ResolveEventArgs_t1859808873 * ___args1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(NULL,__this->get_m_target_2(),___sender0, ___args1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else if (__this->get_m_target_2() != NULL || ___methodIsStatic) { typedef Assembly_t4268412390 * (*FunctionPointerType) (void* __this, Il2CppObject * ___sender0, ResolveEventArgs_t1859808873 * ___args1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(__this->get_m_target_2(),___sender0, ___args1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } else { typedef Assembly_t4268412390 * (*FunctionPointerType) (void* __this, ResolveEventArgs_t1859808873 * ___args1, const MethodInfo* method); return ((FunctionPointerType)__this->get_method_ptr_0())(___sender0, ___args1,(MethodInfo*)(__this->get_method_3().get_m_value_0())); } } // System.IAsyncResult System.ResolveEventHandler::BeginInvoke(System.Object,System.ResolveEventArgs,System.AsyncCallback,System.Object) extern "C" Il2CppObject * ResolveEventHandler_BeginInvoke_m916075374 (ResolveEventHandler_t3842432458 * __this, Il2CppObject * ___sender0, ResolveEventArgs_t1859808873 * ___args1, AsyncCallback_t163412349 * ___callback2, Il2CppObject * ___object3, const MethodInfo* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___args1; return (Il2CppObject *)il2cpp_codegen_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)___callback2, (Il2CppObject*)___object3); } // System.Reflection.Assembly System.ResolveEventHandler::EndInvoke(System.IAsyncResult) extern "C" Assembly_t4268412390 * ResolveEventHandler_EndInvoke_m1489338158 (ResolveEventHandler_t3842432458 * __this, Il2CppObject * ___result0, const MethodInfo* method) { Il2CppObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (Assembly_t4268412390 *)__result; } // System.Void System.Resources.NeutralResourcesLanguageAttribute::.ctor(System.String) extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1377061773; extern const uint32_t NeutralResourcesLanguageAttribute__ctor_m1145808404_MetadataUsageId; extern "C" void NeutralResourcesLanguageAttribute__ctor_m1145808404 (NeutralResourcesLanguageAttribute_t3267676636 * __this, String_t* ___cultureName0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NeutralResourcesLanguageAttribute__ctor_m1145808404_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Attribute__ctor_m1730479323(__this, /*hidden argument*/NULL); String_t* L_0 = ___cultureName0; if (L_0) { goto IL_0017; } } { ArgumentNullException_t628810857 * L_1 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_1, _stringLiteral1377061773, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0017: { String_t* L_2 = ___cultureName0; __this->set_culture_0(L_2); return; } } // System.Void System.Resources.ResourceManager::.ctor() extern const Il2CppType* RuntimeResourceSet_t1442459318_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t ResourceManager__ctor_m498829021_MetadataUsageId; extern "C" void ResourceManager__ctor_m498829021 (ResourceManager_t264715885 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceManager__ctor_m498829021_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(RuntimeResourceSet_t1442459318_0_0_0_var), /*hidden argument*/NULL); __this->set_resourceSetType_4(L_0); Object__ctor_m2551263788(__this, /*hidden argument*/NULL); return; } } // System.Void System.Resources.ResourceManager::.cctor() extern Il2CppClass* Hashtable_t909839986_il2cpp_TypeInfo_var; extern Il2CppClass* ResourceManager_t264715885_il2cpp_TypeInfo_var; extern const uint32_t ResourceManager__cctor_m2190112652_MetadataUsageId; extern "C" void ResourceManager__cctor_m2190112652 (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceManager__cctor_m2190112652_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Hashtable_t909839986 * L_0 = (Hashtable_t909839986 *)il2cpp_codegen_object_new(Hashtable_t909839986_il2cpp_TypeInfo_var); Hashtable__ctor_m1884964176(L_0, /*hidden argument*/NULL); ((ResourceManager_t264715885_StaticFields*)ResourceManager_t264715885_il2cpp_TypeInfo_var->static_fields)->set_ResourceCache_0(L_0); Hashtable_t909839986 * L_1 = (Hashtable_t909839986 *)il2cpp_codegen_object_new(Hashtable_t909839986_il2cpp_TypeInfo_var); Hashtable__ctor_m1884964176(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t909839986_il2cpp_TypeInfo_var); Hashtable_t909839986 * L_2 = Hashtable_Synchronized_m225390213(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); ((ResourceManager_t264715885_StaticFields*)ResourceManager_t264715885_il2cpp_TypeInfo_var->static_fields)->set_NonExistent_1(L_2); ((ResourceManager_t264715885_StaticFields*)ResourceManager_t264715885_il2cpp_TypeInfo_var->static_fields)->set_HeaderVersionNumber_2(1); ((ResourceManager_t264715885_StaticFields*)ResourceManager_t264715885_il2cpp_TypeInfo_var->static_fields)->set_MagicNumber_3(((int32_t)-1091581234)); return; } } // System.Void System.Resources.ResourceReader::.ctor(System.IO.Stream) extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentNullException_t628810857_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* Encoding_t663144255_il2cpp_TypeInfo_var; extern Il2CppClass* BinaryReader_t2491843768_il2cpp_TypeInfo_var; extern Il2CppClass* BinaryFormatter_t1866979105_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3909163458; extern Il2CppCodeGenString* _stringLiteral552183552; extern const uint32_t ResourceReader__ctor_m1562845828_MetadataUsageId; extern "C" void ResourceReader__ctor_m1562845828 (ResourceReader_t2463923611 * __this, Stream_t3255436806 * ___stream0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader__ctor_m1562845828_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppObject * L_0 = (Il2CppObject *)il2cpp_codegen_object_new(Il2CppObject_il2cpp_TypeInfo_var); Object__ctor_m2551263788(L_0, /*hidden argument*/NULL); __this->set_readerLock_1(L_0); Il2CppObject * L_1 = (Il2CppObject *)il2cpp_codegen_object_new(Il2CppObject_il2cpp_TypeInfo_var); Object__ctor_m2551263788(L_1, /*hidden argument*/NULL); __this->set_cache_lock_12(L_1); Object__ctor_m2551263788(__this, /*hidden argument*/NULL); Stream_t3255436806 * L_2 = ___stream0; if (L_2) { goto IL_002d; } } { ArgumentNullException_t628810857 * L_3 = (ArgumentNullException_t628810857 *)il2cpp_codegen_object_new(ArgumentNullException_t628810857_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m3380712306(L_3, _stringLiteral3909163458, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_002d: { Stream_t3255436806 * L_4 = ___stream0; NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.IO.Stream::get_CanRead() */, L_4); if (L_5) { goto IL_0043; } } { ArgumentException_t3259014390 * L_6 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_6, _stringLiteral552183552, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6); } IL_0043: { Stream_t3255436806 * L_7 = ___stream0; IL2CPP_RUNTIME_CLASS_INIT(Encoding_t663144255_il2cpp_TypeInfo_var); Encoding_t663144255 * L_8 = Encoding_get_UTF8_m1752852937(NULL /*static, unused*/, /*hidden argument*/NULL); BinaryReader_t2491843768 * L_9 = (BinaryReader_t2491843768 *)il2cpp_codegen_object_new(BinaryReader_t2491843768_il2cpp_TypeInfo_var); BinaryReader__ctor_m1387916481(L_9, L_7, L_8, /*hidden argument*/NULL); __this->set_reader_0(L_9); StreamingContext_t1417235061 L_10; memset(&L_10, 0, sizeof(L_10)); StreamingContext__ctor_m3756336578(&L_10, ((int32_t)12), /*hidden argument*/NULL); BinaryFormatter_t1866979105 * L_11 = (BinaryFormatter_t1866979105 *)il2cpp_codegen_object_new(BinaryFormatter_t1866979105_il2cpp_TypeInfo_var); BinaryFormatter__ctor_m3750141051(L_11, (Il2CppObject *)NULL, L_10, /*hidden argument*/NULL); __this->set_formatter_2(L_11); ResourceReader_ReadHeaders_m881647957(__this, /*hidden argument*/NULL); return; } } // System.Void System.Resources.ResourceReader::.ctor(System.String) extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* FileStream_t1695958676_il2cpp_TypeInfo_var; extern Il2CppClass* BinaryReader_t2491843768_il2cpp_TypeInfo_var; extern Il2CppClass* BinaryFormatter_t1866979105_il2cpp_TypeInfo_var; extern const uint32_t ResourceReader__ctor_m2324926185_MetadataUsageId; extern "C" void ResourceReader__ctor_m2324926185 (ResourceReader_t2463923611 * __this, String_t* ___fileName0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader__ctor_m2324926185_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppObject * L_0 = (Il2CppObject *)il2cpp_codegen_object_new(Il2CppObject_il2cpp_TypeInfo_var); Object__ctor_m2551263788(L_0, /*hidden argument*/NULL); __this->set_readerLock_1(L_0); Il2CppObject * L_1 = (Il2CppObject *)il2cpp_codegen_object_new(Il2CppObject_il2cpp_TypeInfo_var); Object__ctor_m2551263788(L_1, /*hidden argument*/NULL); __this->set_cache_lock_12(L_1); Object__ctor_m2551263788(__this, /*hidden argument*/NULL); String_t* L_2 = ___fileName0; FileStream_t1695958676 * L_3 = (FileStream_t1695958676 *)il2cpp_codegen_object_new(FileStream_t1695958676_il2cpp_TypeInfo_var); FileStream__ctor_m3699774824(L_3, L_2, 3, 1, 1, /*hidden argument*/NULL); BinaryReader_t2491843768 * L_4 = (BinaryReader_t2491843768 *)il2cpp_codegen_object_new(BinaryReader_t2491843768_il2cpp_TypeInfo_var); BinaryReader__ctor_m4190061006(L_4, L_3, /*hidden argument*/NULL); __this->set_reader_0(L_4); StreamingContext_t1417235061 L_5; memset(&L_5, 0, sizeof(L_5)); StreamingContext__ctor_m3756336578(&L_5, ((int32_t)12), /*hidden argument*/NULL); BinaryFormatter_t1866979105 * L_6 = (BinaryFormatter_t1866979105 *)il2cpp_codegen_object_new(BinaryFormatter_t1866979105_il2cpp_TypeInfo_var); BinaryFormatter__ctor_m3750141051(L_6, (Il2CppObject *)NULL, L_5, /*hidden argument*/NULL); __this->set_formatter_2(L_6); ResourceReader_ReadHeaders_m881647957(__this, /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.Resources.ResourceReader::System.Collections.IEnumerable.GetEnumerator() extern Il2CppClass* IResourceReader_t3222588482_il2cpp_TypeInfo_var; extern const uint32_t ResourceReader_System_Collections_IEnumerable_GetEnumerator_m1456908404_MetadataUsageId; extern "C" Il2CppObject * ResourceReader_System_Collections_IEnumerable_GetEnumerator_m1456908404 (ResourceReader_t2463923611 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_System_Collections_IEnumerable_GetEnumerator_m1456908404_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppObject * L_0 = InterfaceFuncInvoker0< Il2CppObject * >::Invoke(1 /* System.Collections.IDictionaryEnumerator System.Resources.IResourceReader::GetEnumerator() */, IResourceReader_t3222588482_il2cpp_TypeInfo_var, __this); return L_0; } } // System.Void System.Resources.ResourceReader::System.IDisposable.Dispose() extern "C" void ResourceReader_System_IDisposable_Dispose_m1825886190 (ResourceReader_t2463923611 * __this, const MethodInfo* method) { { ResourceReader_Dispose_m3925831971(__this, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Resources.ResourceReader::ReadHeaders() extern const Il2CppType* ResourceSet_t1348327650_0_0_0_var; extern Il2CppClass* ResourceManager_t264715885_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t2071877448_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t3259014390_il2cpp_TypeInfo_var; extern Il2CppClass* NotSupportedException_t1793819818_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* StringU5BU5D_t1642385972_il2cpp_TypeInfo_var; extern Il2CppClass* Int32U5BU5D_t3030399641_il2cpp_TypeInfo_var; extern Il2CppClass* Int64U5BU5D_t717125112_il2cpp_TypeInfo_var; extern Il2CppClass* ResourceInfoU5BU5D_t1013133725_il2cpp_TypeInfo_var; extern Il2CppClass* EndOfStreamException_t1711658693_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3346801017; extern Il2CppCodeGenString* _stringLiteral1209756179; extern Il2CppCodeGenString* _stringLiteral121826570; extern Il2CppCodeGenString* _stringLiteral188291886; extern Il2CppCodeGenString* _stringLiteral822759061; extern Il2CppCodeGenString* _stringLiteral4210250130; extern Il2CppCodeGenString* _stringLiteral3566076869; extern Il2CppCodeGenString* _stringLiteral1483797907; extern Il2CppCodeGenString* _stringLiteral1593944905; extern const uint32_t ResourceReader_ReadHeaders_m881647957_MetadataUsageId; extern "C" void ResourceReader_ReadHeaders_m881647957 (ResourceReader_t2463923611 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_ReadHeaders_m881647957_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; String_t* V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; uint8_t V_9 = 0x0; int32_t V_10 = 0; Int64U5BU5D_t717125112* V_11 = NULL; int32_t V_12 = 0; int64_t V_13 = 0; int32_t V_14 = 0; EndOfStreamException_t1711658693 * V_15 = NULL; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { BinaryReader_t2491843768 * L_0 = __this->get_reader_0(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_0); V_0 = L_1; int32_t L_2 = V_0; IL2CPP_RUNTIME_CLASS_INIT(ResourceManager_t264715885_il2cpp_TypeInfo_var); int32_t L_3 = ((ResourceManager_t264715885_StaticFields*)ResourceManager_t264715885_il2cpp_TypeInfo_var->static_fields)->get_MagicNumber_3(); if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_002d; } } IL_0017: { int32_t L_4 = V_0; int32_t L_5 = L_4; Il2CppObject * L_6 = Box(Int32_t2071877448_il2cpp_TypeInfo_var, &L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_7 = String_Format_m2024975688(NULL /*static, unused*/, _stringLiteral3346801017, L_6, /*hidden argument*/NULL); ArgumentException_t3259014390 * L_8 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8); } IL_002d: { BinaryReader_t2491843768 * L_9 = __this->get_reader_0(); NullCheck(L_9); int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_9); V_1 = L_10; BinaryReader_t2491843768 * L_11 = __this->get_reader_0(); NullCheck(L_11); int32_t L_12 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_11); V_2 = L_12; int32_t L_13 = V_1; IL2CPP_RUNTIME_CLASS_INIT(ResourceManager_t264715885_il2cpp_TypeInfo_var); int32_t L_14 = ((ResourceManager_t264715885_StaticFields*)ResourceManager_t264715885_il2cpp_TypeInfo_var->static_fields)->get_HeaderVersionNumber_2(); if ((((int32_t)L_13) <= ((int32_t)L_14))) { goto IL_0069; } } IL_0050: { BinaryReader_t2491843768 * L_15 = __this->get_reader_0(); NullCheck(L_15); Stream_t3255436806 * L_16 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_15); int32_t L_17 = V_2; NullCheck(L_16); VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_16, (((int64_t)((int64_t)L_17))), 1); goto IL_00e1; } IL_0069: { BinaryReader_t2491843768 * L_18 = __this->get_reader_0(); NullCheck(L_18); String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_18); V_3 = L_19; String_t* L_20 = V_3; NullCheck(L_20); bool L_21 = String_StartsWith_m1841920685(L_20, _stringLiteral1209756179, /*hidden argument*/NULL); if (L_21) { goto IL_0096; } } IL_0085: { String_t* L_22 = V_3; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_23 = String_Concat_m2596409543(NULL /*static, unused*/, _stringLiteral121826570, L_22, /*hidden argument*/NULL); NotSupportedException_t1793819818 * L_24 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24); } IL_0096: { BinaryReader_t2491843768 * L_25 = __this->get_reader_0(); NullCheck(L_25); String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_25); V_4 = L_26; String_t* L_27 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(ResourceSet_t1348327650_0_0_0_var), /*hidden argument*/NULL); NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_28); NullCheck(L_27); bool L_30 = String_StartsWith_m1841920685(L_27, L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00e1; } } IL_00be: { String_t* L_31 = V_4; NullCheck(L_31); bool L_32 = String_StartsWith_m1841920685(L_31, _stringLiteral188291886, /*hidden argument*/NULL); if (L_32) { goto IL_00e1; } } IL_00cf: { String_t* L_33 = V_4; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_34 = String_Concat_m2596409543(NULL /*static, unused*/, _stringLiteral822759061, L_33, /*hidden argument*/NULL); NotSupportedException_t1793819818 * L_35 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_35, L_34, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35); } IL_00e1: { BinaryReader_t2491843768 * L_36 = __this->get_reader_0(); NullCheck(L_36); int32_t L_37 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_36); __this->set_resource_ver_10(L_37); int32_t L_38 = __this->get_resource_ver_10(); if ((((int32_t)L_38) == ((int32_t)1))) { goto IL_0125; } } IL_00fe: { int32_t L_39 = __this->get_resource_ver_10(); if ((((int32_t)L_39) == ((int32_t)2))) { goto IL_0125; } } IL_010a: { int32_t* L_40 = __this->get_address_of_resource_ver_10(); String_t* L_41 = Int32_ToString_m2960866144(L_40, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = String_Concat_m2596409543(NULL /*static, unused*/, _stringLiteral4210250130, L_41, /*hidden argument*/NULL); NotSupportedException_t1793819818 * L_43 = (NotSupportedException_t1793819818 *)il2cpp_codegen_object_new(NotSupportedException_t1793819818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m836173213(L_43, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43); } IL_0125: { BinaryReader_t2491843768 * L_44 = __this->get_reader_0(); NullCheck(L_44); int32_t L_45 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_44); __this->set_resourceCount_3(L_45); BinaryReader_t2491843768 * L_46 = __this->get_reader_0(); NullCheck(L_46); int32_t L_47 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_46); __this->set_typeCount_4(L_47); int32_t L_48 = __this->get_typeCount_4(); __this->set_typeNames_5(((StringU5BU5D_t1642385972*)SZArrayNew(StringU5BU5D_t1642385972_il2cpp_TypeInfo_var, (uint32_t)L_48))); V_5 = 0; goto IL_017a; } IL_0160: { StringU5BU5D_t1642385972* L_49 = __this->get_typeNames_5(); int32_t L_50 = V_5; BinaryReader_t2491843768 * L_51 = __this->get_reader_0(); NullCheck(L_51); String_t* L_52 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_51); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_52); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(L_50), (String_t*)L_52); int32_t L_53 = V_5; V_5 = ((int32_t)((int32_t)L_53+(int32_t)1)); } IL_017a: { int32_t L_54 = V_5; int32_t L_55 = __this->get_typeCount_4(); if ((((int32_t)L_54) < ((int32_t)L_55))) { goto IL_0160; } } IL_0187: { BinaryReader_t2491843768 * L_56 = __this->get_reader_0(); NullCheck(L_56); Stream_t3255436806 * L_57 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_56); NullCheck(L_57); int64_t L_58 = VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.Stream::get_Position() */, L_57); V_6 = (((int32_t)((int32_t)((int64_t)((int64_t)L_58&(int64_t)(((int64_t)((int64_t)7)))))))); V_7 = 0; int32_t L_59 = V_6; if (!L_59) { goto IL_01ad; } } IL_01a7: { int32_t L_60 = V_6; V_7 = ((int32_t)((int32_t)8-(int32_t)L_60)); } IL_01ad: { V_8 = 0; goto IL_01e8; } IL_01b5: { BinaryReader_t2491843768 * L_61 = __this->get_reader_0(); NullCheck(L_61); uint8_t L_62 = VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, L_61); V_9 = L_62; uint8_t L_63 = V_9; int32_t L_64 = V_8; NullCheck(_stringLiteral3566076869); Il2CppChar L_65 = String_get_Chars_m4230566705(_stringLiteral3566076869, ((int32_t)((int32_t)L_64%(int32_t)3)), /*hidden argument*/NULL); if ((((int32_t)L_63) == ((int32_t)L_65))) { goto IL_01e2; } } IL_01d7: { ArgumentException_t3259014390 * L_66 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3739475201(L_66, _stringLiteral1483797907, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_66); } IL_01e2: { int32_t L_67 = V_8; V_8 = ((int32_t)((int32_t)L_67+(int32_t)1)); } IL_01e8: { int32_t L_68 = V_8; int32_t L_69 = V_7; if ((((int32_t)L_68) < ((int32_t)L_69))) { goto IL_01b5; } } IL_01f1: { int32_t L_70 = __this->get_resourceCount_3(); __this->set_hashes_6(((Int32U5BU5D_t3030399641*)SZArrayNew(Int32U5BU5D_t3030399641_il2cpp_TypeInfo_var, (uint32_t)L_70))); V_10 = 0; goto IL_0224; } IL_020a: { Int32U5BU5D_t3030399641* L_71 = __this->get_hashes_6(); int32_t L_72 = V_10; BinaryReader_t2491843768 * L_73 = __this->get_reader_0(); NullCheck(L_73); int32_t L_74 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_73); NullCheck(L_71); (L_71)->SetAt(static_cast<il2cpp_array_size_t>(L_72), (int32_t)L_74); int32_t L_75 = V_10; V_10 = ((int32_t)((int32_t)L_75+(int32_t)1)); } IL_0224: { int32_t L_76 = V_10; int32_t L_77 = __this->get_resourceCount_3(); if ((((int32_t)L_76) < ((int32_t)L_77))) { goto IL_020a; } } IL_0231: { int32_t L_78 = __this->get_resourceCount_3(); V_11 = ((Int64U5BU5D_t717125112*)SZArrayNew(Int64U5BU5D_t717125112_il2cpp_TypeInfo_var, (uint32_t)L_78)); V_12 = 0; goto IL_025d; } IL_0246: { Int64U5BU5D_t717125112* L_79 = V_11; int32_t L_80 = V_12; BinaryReader_t2491843768 * L_81 = __this->get_reader_0(); NullCheck(L_81); int32_t L_82 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_81); NullCheck(L_79); (L_79)->SetAt(static_cast<il2cpp_array_size_t>(L_80), (int64_t)(((int64_t)((int64_t)L_82)))); int32_t L_83 = V_12; V_12 = ((int32_t)((int32_t)L_83+(int32_t)1)); } IL_025d: { int32_t L_84 = V_12; int32_t L_85 = __this->get_resourceCount_3(); if ((((int32_t)L_84) < ((int32_t)L_85))) { goto IL_0246; } } IL_026a: { BinaryReader_t2491843768 * L_86 = __this->get_reader_0(); NullCheck(L_86); int32_t L_87 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_86); __this->set_dataSectionOffset_8(L_87); BinaryReader_t2491843768 * L_88 = __this->get_reader_0(); NullCheck(L_88); Stream_t3255436806 * L_89 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_88); NullCheck(L_89); int64_t L_90 = VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.Stream::get_Position() */, L_89); __this->set_nameSectionOffset_9(L_90); BinaryReader_t2491843768 * L_91 = __this->get_reader_0(); NullCheck(L_91); Stream_t3255436806 * L_92 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_91); NullCheck(L_92); int64_t L_93 = VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.Stream::get_Position() */, L_92); V_13 = L_93; int32_t L_94 = __this->get_resourceCount_3(); __this->set_infos_7(((ResourceInfoU5BU5D_t1013133725*)SZArrayNew(ResourceInfoU5BU5D_t1013133725_il2cpp_TypeInfo_var, (uint32_t)L_94))); V_14 = 0; goto IL_02da; } IL_02bc: { Int64U5BU5D_t717125112* L_95 = V_11; int32_t L_96 = V_14; NullCheck(L_95); int32_t L_97 = L_96; int64_t L_98 = (L_95)->GetAt(static_cast<il2cpp_array_size_t>(L_97)); ResourceInfoU5BU5D_t1013133725* L_99 = __this->get_infos_7(); int32_t L_100 = V_14; NullCheck(L_99); ResourceReader_CreateResourceInfo_m2376522667(__this, L_98, ((L_99)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_100))), /*hidden argument*/NULL); int32_t L_101 = V_14; V_14 = ((int32_t)((int32_t)L_101+(int32_t)1)); } IL_02da: { int32_t L_102 = V_14; int32_t L_103 = __this->get_resourceCount_3(); if ((((int32_t)L_102) < ((int32_t)L_103))) { goto IL_02bc; } } IL_02e7: { BinaryReader_t2491843768 * L_104 = __this->get_reader_0(); NullCheck(L_104); Stream_t3255436806 * L_105 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_104); int64_t L_106 = V_13; NullCheck(L_105); VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_105, L_106, 0); V_11 = (Int64U5BU5D_t717125112*)NULL; goto IL_0317; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t1927440687 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (EndOfStreamException_t1711658693_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0303; throw e; } CATCH_0303: { // begin catch(System.IO.EndOfStreamException) { V_15 = ((EndOfStreamException_t1711658693 *)__exception_local); EndOfStreamException_t1711658693 * L_107 = V_15; ArgumentException_t3259014390 * L_108 = (ArgumentException_t3259014390 *)il2cpp_codegen_object_new(ArgumentException_t3259014390_il2cpp_TypeInfo_var); ArgumentException__ctor_m3553968249(L_108, _stringLiteral1593944905, L_107, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_108); } IL_0312: { goto IL_0317; } } // end catch (depth: 1) IL_0317: { return; } } // System.Void System.Resources.ResourceReader::CreateResourceInfo(System.Int64,System.Resources.ResourceReader/ResourceInfo&) extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern Il2CppClass* Encoding_t663144255_il2cpp_TypeInfo_var; extern const uint32_t ResourceReader_CreateResourceInfo_m2376522667_MetadataUsageId; extern "C" void ResourceReader_CreateResourceInfo_m2376522667 (ResourceReader_t2463923611 * __this, int64_t ___position0, ResourceInfo_t3933049236 * ___info1, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_CreateResourceInfo_m2376522667_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; ByteU5BU5D_t3397334013* V_2 = NULL; String_t* V_3 = NULL; int64_t V_4 = 0; int32_t V_5 = 0; { int64_t L_0 = ___position0; int64_t L_1 = __this->get_nameSectionOffset_9(); V_0 = ((int64_t)((int64_t)L_0+(int64_t)L_1)); BinaryReader_t2491843768 * L_2 = __this->get_reader_0(); NullCheck(L_2); Stream_t3255436806 * L_3 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_2); int64_t L_4 = V_0; NullCheck(L_3); VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_3, L_4, 0); int32_t L_5 = ResourceReader_Read7BitEncodedInt_m2962317104(__this, /*hidden argument*/NULL); V_1 = L_5; int32_t L_6 = V_1; V_2 = ((ByteU5BU5D_t3397334013*)SZArrayNew(ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var, (uint32_t)L_6)); BinaryReader_t2491843768 * L_7 = __this->get_reader_0(); ByteU5BU5D_t3397334013* L_8 = V_2; int32_t L_9 = V_1; NullCheck(L_7); VirtFuncInvoker3< int32_t, ByteU5BU5D_t3397334013*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.BinaryReader::Read(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, L_9); IL2CPP_RUNTIME_CLASS_INIT(Encoding_t663144255_il2cpp_TypeInfo_var); Encoding_t663144255 * L_10 = Encoding_get_Unicode_m1382741113(NULL /*static, unused*/, /*hidden argument*/NULL); ByteU5BU5D_t3397334013* L_11 = V_2; NullCheck(L_10); String_t* L_12 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t3397334013* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_10, L_11); V_3 = L_12; BinaryReader_t2491843768 * L_13 = __this->get_reader_0(); NullCheck(L_13); int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_13); int32_t L_15 = __this->get_dataSectionOffset_8(); V_4 = (((int64_t)((int64_t)((int32_t)((int32_t)L_14+(int32_t)L_15))))); BinaryReader_t2491843768 * L_16 = __this->get_reader_0(); NullCheck(L_16); Stream_t3255436806 * L_17 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_16); int64_t L_18 = V_4; NullCheck(L_17); VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_17, L_18, 0); int32_t L_19 = ResourceReader_Read7BitEncodedInt_m2962317104(__this, /*hidden argument*/NULL); V_5 = L_19; ResourceInfo_t3933049236 * L_20 = ___info1; String_t* L_21 = V_3; BinaryReader_t2491843768 * L_22 = __this->get_reader_0(); NullCheck(L_22); Stream_t3255436806 * L_23 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_22); NullCheck(L_23); int64_t L_24 = VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.Stream::get_Position() */, L_23); int32_t L_25 = V_5; ResourceInfo__ctor_m2401359321(L_20, L_21, L_24, L_25, /*hidden argument*/NULL); return; } } // System.Int32 System.Resources.ResourceReader::Read7BitEncodedInt() extern "C" int32_t ResourceReader_Read7BitEncodedInt_m2962317104 (ResourceReader_t2463923611 * __this, const MethodInfo* method) { int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; { V_0 = 0; V_1 = 0; } IL_0004: { BinaryReader_t2491843768 * L_0 = __this->get_reader_0(); NullCheck(L_0); uint8_t L_1 = VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, L_0); V_2 = L_1; int32_t L_2 = V_0; uint8_t L_3 = V_2; int32_t L_4 = V_1; V_0 = ((int32_t)((int32_t)L_2|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)127)))<<(int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)31))))))); int32_t L_5 = V_1; V_1 = ((int32_t)((int32_t)L_5+(int32_t)7)); uint8_t L_6 = V_2; if ((((int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)128)))) == ((int32_t)((int32_t)128)))) { goto IL_0004; } } { int32_t L_7 = V_0; return L_7; } } // System.Object System.Resources.ResourceReader::ReadValueVer2(System.Int32) extern Il2CppClass* Boolean_t3825574718_il2cpp_TypeInfo_var; extern Il2CppClass* Char_t3454481338_il2cpp_TypeInfo_var; extern Il2CppClass* Byte_t3683104436_il2cpp_TypeInfo_var; extern Il2CppClass* SByte_t454417549_il2cpp_TypeInfo_var; extern Il2CppClass* Int16_t4041245914_il2cpp_TypeInfo_var; extern Il2CppClass* UInt16_t986882611_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t2071877448_il2cpp_TypeInfo_var; extern Il2CppClass* UInt32_t2149682021_il2cpp_TypeInfo_var; extern Il2CppClass* Int64_t909078037_il2cpp_TypeInfo_var; extern Il2CppClass* UInt64_t2909196914_il2cpp_TypeInfo_var; extern Il2CppClass* Single_t2076509932_il2cpp_TypeInfo_var; extern Il2CppClass* Double_t4078015681_il2cpp_TypeInfo_var; extern Il2CppClass* Decimal_t724701077_il2cpp_TypeInfo_var; extern Il2CppClass* DateTime_t693205669_il2cpp_TypeInfo_var; extern Il2CppClass* TimeSpan_t3430258949_il2cpp_TypeInfo_var; extern Il2CppClass* ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var; extern Il2CppClass* MemoryStream_t743994179_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t ResourceReader_ReadValueVer2_m252146049_MetadataUsageId; extern "C" Il2CppObject * ResourceReader_ReadValueVer2_m252146049 (ResourceReader_t2463923611 * __this, int32_t ___type_index0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_ReadValueVer2_m252146049_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_t3397334013* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = ___type_index0; V_1 = L_0; int32_t L_1 = V_1; if (L_1 == 0) { goto IL_0095; } if (L_1 == 1) { goto IL_0097; } if (L_1 == 2) { goto IL_00a3; } if (L_1 == 3) { goto IL_00b4; } if (L_1 == 4) { goto IL_00c5; } if (L_1 == 5) { goto IL_00d6; } if (L_1 == 6) { goto IL_00e7; } if (L_1 == 7) { goto IL_00f8; } if (L_1 == 8) { goto IL_0109; } if (L_1 == 9) { goto IL_011a; } if (L_1 == 10) { goto IL_012b; } if (L_1 == 11) { goto IL_013c; } if (L_1 == 12) { goto IL_014d; } if (L_1 == 13) { goto IL_015e; } if (L_1 == 14) { goto IL_016f; } if (L_1 == 15) { goto IL_0180; } if (L_1 == 16) { goto IL_0196; } if (L_1 == 17) { goto IL_01ed; } if (L_1 == 18) { goto IL_01ed; } if (L_1 == 19) { goto IL_01ed; } if (L_1 == 20) { goto IL_01ed; } if (L_1 == 21) { goto IL_01ed; } if (L_1 == 22) { goto IL_01ed; } if (L_1 == 23) { goto IL_01ed; } if (L_1 == 24) { goto IL_01ed; } if (L_1 == 25) { goto IL_01ed; } if (L_1 == 26) { goto IL_01ed; } if (L_1 == 27) { goto IL_01ed; } if (L_1 == 28) { goto IL_01ed; } if (L_1 == 29) { goto IL_01ed; } if (L_1 == 30) { goto IL_01ed; } if (L_1 == 31) { goto IL_01ed; } if (L_1 == 32) { goto IL_01ac; } if (L_1 == 33) { goto IL_01c3; } } { goto IL_01ed; } IL_0095: { return NULL; } IL_0097: { BinaryReader_t2491843768 * L_2 = __this->get_reader_0(); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_2); return L_3; } IL_00a3: { BinaryReader_t2491843768 * L_4 = __this->get_reader_0(); NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.IO.BinaryReader::ReadBoolean() */, L_4); bool L_6 = L_5; Il2CppObject * L_7 = Box(Boolean_t3825574718_il2cpp_TypeInfo_var, &L_6); return L_7; } IL_00b4: { BinaryReader_t2491843768 * L_8 = __this->get_reader_0(); NullCheck(L_8); uint16_t L_9 = VirtFuncInvoker0< uint16_t >::Invoke(24 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_8); Il2CppChar L_10 = ((Il2CppChar)L_9); Il2CppObject * L_11 = Box(Char_t3454481338_il2cpp_TypeInfo_var, &L_10); return L_11; } IL_00c5: { BinaryReader_t2491843768 * L_12 = __this->get_reader_0(); NullCheck(L_12); uint8_t L_13 = VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, L_12); uint8_t L_14 = L_13; Il2CppObject * L_15 = Box(Byte_t3683104436_il2cpp_TypeInfo_var, &L_14); return L_15; } IL_00d6: { BinaryReader_t2491843768 * L_16 = __this->get_reader_0(); NullCheck(L_16); int8_t L_17 = VirtFuncInvoker0< int8_t >::Invoke(21 /* System.SByte System.IO.BinaryReader::ReadSByte() */, L_16); int8_t L_18 = L_17; Il2CppObject * L_19 = Box(SByte_t454417549_il2cpp_TypeInfo_var, &L_18); return L_19; } IL_00e7: { BinaryReader_t2491843768 * L_20 = __this->get_reader_0(); NullCheck(L_20); int16_t L_21 = VirtFuncInvoker0< int16_t >::Invoke(18 /* System.Int16 System.IO.BinaryReader::ReadInt16() */, L_20); int16_t L_22 = L_21; Il2CppObject * L_23 = Box(Int16_t4041245914_il2cpp_TypeInfo_var, &L_22); return L_23; } IL_00f8: { BinaryReader_t2491843768 * L_24 = __this->get_reader_0(); NullCheck(L_24); uint16_t L_25 = VirtFuncInvoker0< uint16_t >::Invoke(24 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_24); uint16_t L_26 = L_25; Il2CppObject * L_27 = Box(UInt16_t986882611_il2cpp_TypeInfo_var, &L_26); return L_27; } IL_0109: { BinaryReader_t2491843768 * L_28 = __this->get_reader_0(); NullCheck(L_28); int32_t L_29 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_28); int32_t L_30 = L_29; Il2CppObject * L_31 = Box(Int32_t2071877448_il2cpp_TypeInfo_var, &L_30); return L_31; } IL_011a: { BinaryReader_t2491843768 * L_32 = __this->get_reader_0(); NullCheck(L_32); uint32_t L_33 = VirtFuncInvoker0< uint32_t >::Invoke(25 /* System.UInt32 System.IO.BinaryReader::ReadUInt32() */, L_32); uint32_t L_34 = L_33; Il2CppObject * L_35 = Box(UInt32_t2149682021_il2cpp_TypeInfo_var, &L_34); return L_35; } IL_012b: { BinaryReader_t2491843768 * L_36 = __this->get_reader_0(); NullCheck(L_36); int64_t L_37 = VirtFuncInvoker0< int64_t >::Invoke(20 /* System.Int64 System.IO.BinaryReader::ReadInt64() */, L_36); int64_t L_38 = L_37; Il2CppObject * L_39 = Box(Int64_t909078037_il2cpp_TypeInfo_var, &L_38); return L_39; } IL_013c: { BinaryReader_t2491843768 * L_40 = __this->get_reader_0(); NullCheck(L_40); uint64_t L_41 = VirtFuncInvoker0< uint64_t >::Invoke(26 /* System.UInt64 System.IO.BinaryReader::ReadUInt64() */, L_40); uint64_t L_42 = L_41; Il2CppObject * L_43 = Box(UInt64_t2909196914_il2cpp_TypeInfo_var, &L_42); return L_43; } IL_014d: { BinaryReader_t2491843768 * L_44 = __this->get_reader_0(); NullCheck(L_44); float L_45 = VirtFuncInvoker0< float >::Invoke(23 /* System.Single System.IO.BinaryReader::ReadSingle() */, L_44); float L_46 = L_45; Il2CppObject * L_47 = Box(Single_t2076509932_il2cpp_TypeInfo_var, &L_46); return L_47; } IL_015e: { BinaryReader_t2491843768 * L_48 = __this->get_reader_0(); NullCheck(L_48); double L_49 = VirtFuncInvoker0< double >::Invoke(17 /* System.Double System.IO.BinaryReader::ReadDouble() */, L_48); double L_50 = L_49; Il2CppObject * L_51 = Box(Double_t4078015681_il2cpp_TypeInfo_var, &L_50); return L_51; } IL_016f: { BinaryReader_t2491843768 * L_52 = __this->get_reader_0(); NullCheck(L_52); Decimal_t724701077 L_53 = VirtFuncInvoker0< Decimal_t724701077 >::Invoke(16 /* System.Decimal System.IO.BinaryReader::ReadDecimal() */, L_52); Decimal_t724701077 L_54 = L_53; Il2CppObject * L_55 = Box(Decimal_t724701077_il2cpp_TypeInfo_var, &L_54); return L_55; } IL_0180: { BinaryReader_t2491843768 * L_56 = __this->get_reader_0(); NullCheck(L_56); int64_t L_57 = VirtFuncInvoker0< int64_t >::Invoke(20 /* System.Int64 System.IO.BinaryReader::ReadInt64() */, L_56); DateTime_t693205669 L_58; memset(&L_58, 0, sizeof(L_58)); DateTime__ctor_m2586249130(&L_58, L_57, /*hidden argument*/NULL); DateTime_t693205669 L_59 = L_58; Il2CppObject * L_60 = Box(DateTime_t693205669_il2cpp_TypeInfo_var, &L_59); return L_60; } IL_0196: { BinaryReader_t2491843768 * L_61 = __this->get_reader_0(); NullCheck(L_61); int64_t L_62 = VirtFuncInvoker0< int64_t >::Invoke(20 /* System.Int64 System.IO.BinaryReader::ReadInt64() */, L_61); TimeSpan_t3430258949 L_63; memset(&L_63, 0, sizeof(L_63)); TimeSpan__ctor_m96381766(&L_63, L_62, /*hidden argument*/NULL); TimeSpan_t3430258949 L_64 = L_63; Il2CppObject * L_65 = Box(TimeSpan_t3430258949_il2cpp_TypeInfo_var, &L_64); return L_65; } IL_01ac: { BinaryReader_t2491843768 * L_66 = __this->get_reader_0(); BinaryReader_t2491843768 * L_67 = __this->get_reader_0(); NullCheck(L_67); int32_t L_68 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_67); NullCheck(L_66); ByteU5BU5D_t3397334013* L_69 = VirtFuncInvoker1< ByteU5BU5D_t3397334013*, int32_t >::Invoke(14 /* System.Byte[] System.IO.BinaryReader::ReadBytes(System.Int32) */, L_66, L_68); return (Il2CppObject *)L_69; } IL_01c3: { BinaryReader_t2491843768 * L_70 = __this->get_reader_0(); NullCheck(L_70); uint32_t L_71 = VirtFuncInvoker0< uint32_t >::Invoke(25 /* System.UInt32 System.IO.BinaryReader::ReadUInt32() */, L_70); V_0 = ((ByteU5BU5D_t3397334013*)SZArrayNew(ByteU5BU5D_t3397334013_il2cpp_TypeInfo_var, (uint32_t)(((uintptr_t)L_71)))); BinaryReader_t2491843768 * L_72 = __this->get_reader_0(); ByteU5BU5D_t3397334013* L_73 = V_0; ByteU5BU5D_t3397334013* L_74 = V_0; NullCheck(L_74); NullCheck(L_72); VirtFuncInvoker3< int32_t, ByteU5BU5D_t3397334013*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.IO.BinaryReader::Read(System.Byte[],System.Int32,System.Int32) */, L_72, L_73, 0, (((int32_t)((int32_t)(((Il2CppArray *)L_74)->max_length))))); ByteU5BU5D_t3397334013* L_75 = V_0; MemoryStream_t743994179 * L_76 = (MemoryStream_t743994179 *)il2cpp_codegen_object_new(MemoryStream_t743994179_il2cpp_TypeInfo_var); MemoryStream__ctor_m4073175573(L_76, L_75, /*hidden argument*/NULL); return L_76; } IL_01ed: { int32_t L_77 = ___type_index0; ___type_index0 = ((int32_t)((int32_t)L_77-(int32_t)((int32_t)64))); StringU5BU5D_t1642385972* L_78 = __this->get_typeNames_5(); int32_t L_79 = ___type_index0; NullCheck(L_78); int32_t L_80 = L_79; String_t* L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_82 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m402049910, L_81, (bool)1, "mscorlib, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"); Il2CppObject * L_83 = ResourceReader_ReadNonPredefinedValue_m715286753(__this, L_82, /*hidden argument*/NULL); return L_83; } } // System.Object System.Resources.ResourceReader::ReadValueVer1(System.Type) extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Int32_t2071877448_0_0_0_var; extern const Il2CppType* Byte_t3683104436_0_0_0_var; extern const Il2CppType* Double_t4078015681_0_0_0_var; extern const Il2CppType* Int16_t4041245914_0_0_0_var; extern const Il2CppType* Int64_t909078037_0_0_0_var; extern const Il2CppType* SByte_t454417549_0_0_0_var; extern const Il2CppType* Single_t2076509932_0_0_0_var; extern const Il2CppType* TimeSpan_t3430258949_0_0_0_var; extern const Il2CppType* UInt16_t986882611_0_0_0_var; extern const Il2CppType* UInt32_t2149682021_0_0_0_var; extern const Il2CppType* UInt64_t2909196914_0_0_0_var; extern const Il2CppType* Decimal_t724701077_0_0_0_var; extern const Il2CppType* DateTime_t693205669_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t2071877448_il2cpp_TypeInfo_var; extern Il2CppClass* Byte_t3683104436_il2cpp_TypeInfo_var; extern Il2CppClass* Double_t4078015681_il2cpp_TypeInfo_var; extern Il2CppClass* Int16_t4041245914_il2cpp_TypeInfo_var; extern Il2CppClass* Int64_t909078037_il2cpp_TypeInfo_var; extern Il2CppClass* SByte_t454417549_il2cpp_TypeInfo_var; extern Il2CppClass* Single_t2076509932_il2cpp_TypeInfo_var; extern Il2CppClass* TimeSpan_t3430258949_il2cpp_TypeInfo_var; extern Il2CppClass* UInt16_t986882611_il2cpp_TypeInfo_var; extern Il2CppClass* UInt32_t2149682021_il2cpp_TypeInfo_var; extern Il2CppClass* UInt64_t2909196914_il2cpp_TypeInfo_var; extern Il2CppClass* Decimal_t724701077_il2cpp_TypeInfo_var; extern Il2CppClass* DateTime_t693205669_il2cpp_TypeInfo_var; extern const uint32_t ResourceReader_ReadValueVer1_m3519678454_MetadataUsageId; extern "C" Il2CppObject * ResourceReader_ReadValueVer1_m3519678454 (ResourceReader_t2463923611 * __this, Type_t * ___type0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_ReadValueVer1_m3519678454_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_0) == ((Il2CppObject*)(Type_t *)L_1)))) { goto IL_001c; } } { BinaryReader_t2491843768 * L_2 = __this->get_reader_0(); NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.IO.BinaryReader::ReadString() */, L_2); return L_3; } IL_001c: { Type_t * L_4 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Int32_t2071877448_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_003d; } } { BinaryReader_t2491843768 * L_6 = __this->get_reader_0(); NullCheck(L_6); int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.IO.BinaryReader::ReadInt32() */, L_6); int32_t L_8 = L_7; Il2CppObject * L_9 = Box(Int32_t2071877448_il2cpp_TypeInfo_var, &L_8); return L_9; } IL_003d: { Type_t * L_10 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Byte_t3683104436_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_10) == ((Il2CppObject*)(Type_t *)L_11)))) { goto IL_005e; } } { BinaryReader_t2491843768 * L_12 = __this->get_reader_0(); NullCheck(L_12); uint8_t L_13 = VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, L_12); uint8_t L_14 = L_13; Il2CppObject * L_15 = Box(Byte_t3683104436_il2cpp_TypeInfo_var, &L_14); return L_15; } IL_005e: { Type_t * L_16 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Double_t4078015681_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_007f; } } { BinaryReader_t2491843768 * L_18 = __this->get_reader_0(); NullCheck(L_18); double L_19 = VirtFuncInvoker0< double >::Invoke(17 /* System.Double System.IO.BinaryReader::ReadDouble() */, L_18); double L_20 = L_19; Il2CppObject * L_21 = Box(Double_t4078015681_il2cpp_TypeInfo_var, &L_20); return L_21; } IL_007f: { Type_t * L_22 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_23 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Int16_t4041245914_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_22) == ((Il2CppObject*)(Type_t *)L_23)))) { goto IL_00a0; } } { BinaryReader_t2491843768 * L_24 = __this->get_reader_0(); NullCheck(L_24); int16_t L_25 = VirtFuncInvoker0< int16_t >::Invoke(18 /* System.Int16 System.IO.BinaryReader::ReadInt16() */, L_24); int16_t L_26 = L_25; Il2CppObject * L_27 = Box(Int16_t4041245914_il2cpp_TypeInfo_var, &L_26); return L_27; } IL_00a0: { Type_t * L_28 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Int64_t909078037_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_00c1; } } { BinaryReader_t2491843768 * L_30 = __this->get_reader_0(); NullCheck(L_30); int64_t L_31 = VirtFuncInvoker0< int64_t >::Invoke(20 /* System.Int64 System.IO.BinaryReader::ReadInt64() */, L_30); int64_t L_32 = L_31; Il2CppObject * L_33 = Box(Int64_t909078037_il2cpp_TypeInfo_var, &L_32); return L_33; } IL_00c1: { Type_t * L_34 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_35 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(SByte_t454417549_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_34) == ((Il2CppObject*)(Type_t *)L_35)))) { goto IL_00e2; } } { BinaryReader_t2491843768 * L_36 = __this->get_reader_0(); NullCheck(L_36); int8_t L_37 = VirtFuncInvoker0< int8_t >::Invoke(21 /* System.SByte System.IO.BinaryReader::ReadSByte() */, L_36); int8_t L_38 = L_37; Il2CppObject * L_39 = Box(SByte_t454417549_il2cpp_TypeInfo_var, &L_38); return L_39; } IL_00e2: { Type_t * L_40 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_41 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Single_t2076509932_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_40) == ((Il2CppObject*)(Type_t *)L_41)))) { goto IL_0103; } } { BinaryReader_t2491843768 * L_42 = __this->get_reader_0(); NullCheck(L_42); float L_43 = VirtFuncInvoker0< float >::Invoke(23 /* System.Single System.IO.BinaryReader::ReadSingle() */, L_42); float L_44 = L_43; Il2CppObject * L_45 = Box(Single_t2076509932_il2cpp_TypeInfo_var, &L_44); return L_45; } IL_0103: { Type_t * L_46 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_47 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(TimeSpan_t3430258949_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_46) == ((Il2CppObject*)(Type_t *)L_47)))) { goto IL_0129; } } { BinaryReader_t2491843768 * L_48 = __this->get_reader_0(); NullCheck(L_48); int64_t L_49 = VirtFuncInvoker0< int64_t >::Invoke(20 /* System.Int64 System.IO.BinaryReader::ReadInt64() */, L_48); TimeSpan_t3430258949 L_50; memset(&L_50, 0, sizeof(L_50)); TimeSpan__ctor_m96381766(&L_50, L_49, /*hidden argument*/NULL); TimeSpan_t3430258949 L_51 = L_50; Il2CppObject * L_52 = Box(TimeSpan_t3430258949_il2cpp_TypeInfo_var, &L_51); return L_52; } IL_0129: { Type_t * L_53 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(UInt16_t986882611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_014a; } } { BinaryReader_t2491843768 * L_55 = __this->get_reader_0(); NullCheck(L_55); uint16_t L_56 = VirtFuncInvoker0< uint16_t >::Invoke(24 /* System.UInt16 System.IO.BinaryReader::ReadUInt16() */, L_55); uint16_t L_57 = L_56; Il2CppObject * L_58 = Box(UInt16_t986882611_il2cpp_TypeInfo_var, &L_57); return L_58; } IL_014a: { Type_t * L_59 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_60 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(UInt32_t2149682021_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_59) == ((Il2CppObject*)(Type_t *)L_60)))) { goto IL_016b; } } { BinaryReader_t2491843768 * L_61 = __this->get_reader_0(); NullCheck(L_61); uint32_t L_62 = VirtFuncInvoker0< uint32_t >::Invoke(25 /* System.UInt32 System.IO.BinaryReader::ReadUInt32() */, L_61); uint32_t L_63 = L_62; Il2CppObject * L_64 = Box(UInt32_t2149682021_il2cpp_TypeInfo_var, &L_63); return L_64; } IL_016b: { Type_t * L_65 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_66 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(UInt64_t2909196914_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_65) == ((Il2CppObject*)(Type_t *)L_66)))) { goto IL_018c; } } { BinaryReader_t2491843768 * L_67 = __this->get_reader_0(); NullCheck(L_67); uint64_t L_68 = VirtFuncInvoker0< uint64_t >::Invoke(26 /* System.UInt64 System.IO.BinaryReader::ReadUInt64() */, L_67); uint64_t L_69 = L_68; Il2CppObject * L_70 = Box(UInt64_t2909196914_il2cpp_TypeInfo_var, &L_69); return L_70; } IL_018c: { Type_t * L_71 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_72 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(Decimal_t724701077_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_71) == ((Il2CppObject*)(Type_t *)L_72)))) { goto IL_01ad; } } { BinaryReader_t2491843768 * L_73 = __this->get_reader_0(); NullCheck(L_73); Decimal_t724701077 L_74 = VirtFuncInvoker0< Decimal_t724701077 >::Invoke(16 /* System.Decimal System.IO.BinaryReader::ReadDecimal() */, L_73); Decimal_t724701077 L_75 = L_74; Il2CppObject * L_76 = Box(Decimal_t724701077_il2cpp_TypeInfo_var, &L_75); return L_76; } IL_01ad: { Type_t * L_77 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_78 = Type_GetTypeFromHandle_m432505302(NULL /*static, unused*/, LoadTypeToken(DateTime_t693205669_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_77) == ((Il2CppObject*)(Type_t *)L_78)))) { goto IL_01d3; } } { BinaryReader_t2491843768 * L_79 = __this->get_reader_0(); NullCheck(L_79); int64_t L_80 = VirtFuncInvoker0< int64_t >::Invoke(20 /* System.Int64 System.IO.BinaryReader::ReadInt64() */, L_79); DateTime_t693205669 L_81; memset(&L_81, 0, sizeof(L_81)); DateTime__ctor_m2586249130(&L_81, L_80, /*hidden argument*/NULL); DateTime_t693205669 L_82 = L_81; Il2CppObject * L_83 = Box(DateTime_t693205669_il2cpp_TypeInfo_var, &L_82); return L_83; } IL_01d3: { Type_t * L_84 = ___type0; Il2CppObject * L_85 = ResourceReader_ReadNonPredefinedValue_m715286753(__this, L_84, /*hidden argument*/NULL); return L_85; } } // System.Object System.Resources.ResourceReader::ReadNonPredefinedValue(System.Type) extern Il2CppClass* IFormatter_t936711909_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3004388167; extern const uint32_t ResourceReader_ReadNonPredefinedValue_m715286753_MetadataUsageId; extern "C" Il2CppObject * ResourceReader_ReadNonPredefinedValue_m715286753 (ResourceReader_t2463923611 * __this, Type_t * ___exp_type0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_ReadNonPredefinedValue_m715286753_MetadataUsageId); s_Il2CppMethodInitialized = true; } Il2CppObject * V_0 = NULL; { Il2CppObject * L_0 = __this->get_formatter_2(); BinaryReader_t2491843768 * L_1 = __this->get_reader_0(); NullCheck(L_1); Stream_t3255436806 * L_2 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_1); NullCheck(L_0); Il2CppObject * L_3 = InterfaceFuncInvoker1< Il2CppObject *, Stream_t3255436806 * >::Invoke(0 /* System.Object System.Runtime.Serialization.IFormatter::Deserialize(System.IO.Stream) */, IFormatter_t936711909_il2cpp_TypeInfo_var, L_0, L_2); V_0 = L_3; Il2CppObject * L_4 = V_0; NullCheck(L_4); Type_t * L_5 = Object_GetType_m191970594(L_4, /*hidden argument*/NULL); Type_t * L_6 = ___exp_type0; if ((((Il2CppObject*)(Type_t *)L_5) == ((Il2CppObject*)(Type_t *)L_6))) { goto IL_002e; } } { InvalidOperationException_t721527559 * L_7 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_7, _stringLiteral3004388167, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_002e: { Il2CppObject * L_8 = V_0; return L_8; } } // System.Void System.Resources.ResourceReader::LoadResourceValues(System.Resources.ResourceReader/ResourceCacheItem[]) extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t ResourceReader_LoadResourceValues_m1346096618_MetadataUsageId; extern "C" void ResourceReader_LoadResourceValues_m1346096618 (ResourceReader_t2463923611 * __this, ResourceCacheItemU5BU5D_t2265014744* ___store0, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_LoadResourceValues_m1346096618_MetadataUsageId); s_Il2CppMethodInitialized = true; } ResourceInfo_t3933049236 V_0; memset(&V_0, 0, sizeof(V_0)); Il2CppObject * V_1 = NULL; Il2CppObject * V_2 = NULL; int32_t V_3 = 0; Exception_t1927440687 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t1927440687 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Il2CppObject * L_0 = __this->get_readerLock_1(); V_2 = L_0; Il2CppObject * L_1 = V_2; Monitor_Enter_m2136705809(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); } IL_000d: try { // begin try (depth: 1) { V_3 = 0; goto IL_00c1; } IL_0014: { ResourceInfoU5BU5D_t1013133725* L_2 = __this->get_infos_7(); int32_t L_3 = V_3; NullCheck(L_2); V_0 = (*(ResourceInfo_t3933049236 *)((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))); int32_t L_4 = (&V_0)->get_TypeIndex_2(); if ((!(((uint32_t)L_4) == ((uint32_t)(-1))))) { goto IL_0051; } } IL_0033: { ResourceCacheItemU5BU5D_t2265014744* L_5 = ___store0; int32_t L_6 = V_3; NullCheck(L_5); String_t* L_7 = (&V_0)->get_ResourceName_1(); ResourceCacheItem_t333236149 L_8; memset(&L_8, 0, sizeof(L_8)); ResourceCacheItem__ctor_m3209157611(&L_8, L_7, NULL, /*hidden argument*/NULL); (*(ResourceCacheItem_t333236149 *)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))) = L_8; goto IL_00bd; } IL_0051: { BinaryReader_t2491843768 * L_9 = __this->get_reader_0(); NullCheck(L_9); Stream_t3255436806 * L_10 = VirtFuncInvoker0< Stream_t3255436806 * >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_9); int64_t L_11 = (&V_0)->get_ValuePosition_0(); NullCheck(L_10); VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_10, L_11, 0); int32_t L_12 = __this->get_resource_ver_10(); if ((!(((uint32_t)L_12) == ((uint32_t)2)))) { goto IL_0089; } } IL_0076: { int32_t L_13 = (&V_0)->get_TypeIndex_2(); Il2CppObject * L_14 = ResourceReader_ReadValueVer2_m252146049(__this, L_13, /*hidden argument*/NULL); V_1 = L_14; goto IL_00a4; } IL_0089: { StringU5BU5D_t1642385972* L_15 = __this->get_typeNames_5(); int32_t L_16 = (&V_0)->get_TypeIndex_2(); NullCheck(L_15); int32_t L_17 = L_16; String_t* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m402049910, L_18, (bool)1, "mscorlib, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"); Il2CppObject * L_20 = ResourceReader_ReadValueVer1_m3519678454(__this, L_19, /*hidden argument*/NULL); V_1 = L_20; } IL_00a4: { ResourceCacheItemU5BU5D_t2265014744* L_21 = ___store0; int32_t L_22 = V_3; NullCheck(L_21); String_t* L_23 = (&V_0)->get_ResourceName_1(); Il2CppObject * L_24 = V_1; ResourceCacheItem_t333236149 L_25; memset(&L_25, 0, sizeof(L_25)); ResourceCacheItem__ctor_m3209157611(&L_25, L_23, L_24, /*hidden argument*/NULL); (*(ResourceCacheItem_t333236149 *)((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))) = L_25; } IL_00bd: { int32_t L_26 = V_3; V_3 = ((int32_t)((int32_t)L_26+(int32_t)1)); } IL_00c1: { int32_t L_27 = V_3; int32_t L_28 = __this->get_resourceCount_3(); if ((((int32_t)L_27) < ((int32_t)L_28))) { goto IL_0014; } } IL_00cd: { IL2CPP_LEAVE(0xD9, FINALLY_00d2); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t1927440687 *)e.ex; goto FINALLY_00d2; } FINALLY_00d2: { // begin finally (depth: 1) Il2CppObject * L_29 = V_2; Monitor_Exit_m2677760297(NULL /*static, unused*/, L_29, /*hidden argument*/NULL); IL2CPP_END_FINALLY(210) } // end finally (depth: 1) IL2CPP_CLEANUP(210) { IL2CPP_JUMP_TBL(0xD9, IL_00d9) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t1927440687 *) } IL_00d9: { return; } } // System.Void System.Resources.ResourceReader::Close() extern "C" void ResourceReader_Close_m3256966401 (ResourceReader_t2463923611 * __this, const MethodInfo* method) { { ResourceReader_Dispose_m3925831971(__this, (bool)1, /*hidden argument*/NULL); return; } } // System.Collections.IDictionaryEnumerator System.Resources.ResourceReader::GetEnumerator() extern Il2CppClass* InvalidOperationException_t721527559_il2cpp_TypeInfo_var; extern Il2CppClass* ResourceEnumerator_t2665690338_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2797207597; extern const uint32_t ResourceReader_GetEnumerator_m2759477183_MetadataUsageId; extern "C" Il2CppObject * ResourceReader_GetEnumerator_m2759477183 (ResourceReader_t2463923611 * __this, const MethodInfo* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ResourceReader_GetEnumerator_m2759477183_MetadataUsageId); s_Il2CppMethodInitialized = true; } { BinaryReader_t2491843768 * L_0 = __this->get_reader_0(); if (L_0) { goto IL_0016; } } { InvalidOperationException_t721527559 * L_1 = (InvalidOperationException_t721527559 *)il2cpp_codegen_object_new(InvalidOperationException_t721527559_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2801133788(L_1, _stringLiteral2797207597, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0016: { ResourceEnumerator_t2665690338 * L_2 = (ResourceEnumerator_t2665690338 *)il2cpp_codegen_object_new(ResourceEnumerator_t2665690338_il2cpp_TypeInfo_var); ResourceEnumerator__ctor_m1679839941(L_2, __this, /*hidden argument*/NULL); return L_2; } } // System.Void System.Resources.ResourceReader::Dispose(System.Boolean) extern "C" void ResourceReader_Dispose_m3925831971 (ResourceReader_t2463923611 * __this, bool ___disposing0, const MethodInfo* method) { { bool L_0 = ___disposing0; if (!L_0) { goto IL_001c; } } { BinaryReader_t2491843768 * L_1 = __this->get_reader_0(); if (!L_1) { goto IL_001c; } } { BinaryReader_t2491843768 * L_2 = __this->get_reader_0(); NullCheck(L_2); VirtActionInvoker0::Invoke(6 /* System.Void System.IO.BinaryReader::Close() */, L_2); } IL_001c: { __this->set_reader_0((BinaryReader_t2491843768 *)NULL); __this->set_hashes_6((Int32U5BU5D_t3030399641*)NULL); __this->set_infos_7((ResourceInfoU5BU5D_t1013133725*)NULL); __this->set_typeNames_5((StringU5BU5D_t1642385972*)NULL); __this->set_cache_11((ResourceCacheItemU5BU5D_t2265014744*)NULL); return; } } // System.Void System.Resources.ResourceReader/ResourceCacheItem::.ctor(System.String,System.Object) extern "C" void ResourceCacheItem__ctor_m3209157611 (ResourceCacheItem_t333236149 * __this, String_t* ___name0, Il2CppObject * ___value1, const MethodInfo* method) { { String_t* L_0 = ___name0; __this->set_ResourceName_0(L_0); Il2CppObject * L_1 = ___value1; __this->set_ResourceValue_1(L_1); return; } } extern "C" void ResourceCacheItem__ctor_m3209157611_AdjustorThunk (Il2CppObject * __this, String_t* ___name0, Il2CppObject * ___value1, const MethodInfo* method) { ResourceCacheItem_t333236149 * _thisAdjusted = reinterpret_cast<ResourceCacheItem_t333236149 *>(__this + 1); ResourceCacheItem__ctor_m3209157611(_thisAdjusted, ___name0, ___value1, method); } // Conversion methods for marshalling of: System.Resources.ResourceReader/ResourceCacheItem extern "C" void ResourceCacheItem_t333236149_marshal_pinvoke(const ResourceCacheItem_t333236149& unmarshaled, ResourceCacheItem_t333236149_marshaled_pinvoke& marshaled) { Il2CppCodeGenException* ___ResourceValue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'ResourceValue' of type 'ResourceCacheItem'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___ResourceValue_1Exception); } extern "C" void ResourceCacheItem_t333236149_marshal_pinvoke_back(const ResourceCacheItem_t333236149_marshaled_pinvoke& marshaled, ResourceCacheItem_t333236149& unmarshaled) { Il2CppCodeGenException* ___ResourceValue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'ResourceValue' of type 'ResourceCacheItem'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___ResourceValue_1Exception); } // Conversion method for clean up from marshalling of: System.Resources.ResourceReader/ResourceCacheItem extern "C" void ResourceCacheItem_t333236149_marshal_pinvoke_cleanup(ResourceCacheItem_t333236149_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Resources.ResourceReader/ResourceCacheItem extern "C" void ResourceCacheItem_t333236149_marshal_com(const ResourceCacheItem_t333236149& unmarshaled, ResourceCacheItem_t333236149_marshaled_com& marshaled) { Il2CppCodeGenException* ___ResourceValue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'ResourceValue' of type 'ResourceCacheItem'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___ResourceValue_1Exception); } extern "C" void ResourceCacheItem_t333236149_marshal_com_back(const ResourceCacheItem_t333236149_marshaled_com& marshaled, ResourceCacheItem_t333236149& unmarshaled) { Il2CppCodeGenException* ___ResourceValue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'ResourceValue' of type 'ResourceCacheItem'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___ResourceValue_1Exception); } // Conversion method for clean up from marshalling of: System.Resources.ResourceReader/ResourceCacheItem extern "C" void ResourceCacheItem_t333236149_marshal_com_cleanup(ResourceCacheItem_t333236149_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "tomonori0204.takahashi@gmail.com" ]
tomonori0204.takahashi@gmail.com
f64bd573887da573c3a9b5a95421c26c0f16c6ec
4c626c943b6af56524c6599b64451722ee2e9629
/entry_controller/sources/vlog_import/ec_vlog_design_unit_importer.hpp
bd14812ce4fcaddbceb07ddc086bee47e10242f7
[]
no_license
kirillPshenychnyi/AEP
96cec51a4c579b2430b8c93cace5e25003c64219
07d9f3deb47514043a8a1cb0c5ff6091737c3d47
refs/heads/master
2018-08-31T16:59:08.415648
2018-06-10T22:21:04
2018-06-10T22:21:04
117,731,321
0
0
null
null
null
null
UTF-8
C++
false
false
1,878
hpp
#ifndef __EC_VLOG_DESIGN_UNIT_IMPORTER_HPP__ #define __EC_VLOG_DESIGN_UNIT_IMPORTER_HPP__ /***************************************************************************/ #include "entry_controller\sources\vlog_import\ec_vlog_base_importer.hpp" #include "vlog_data_model\ih\writable\vlog_dm_declarations_container.hpp" /***************************************************************************/ namespace EntryController { namespace VlogImport { /***************************************************************************/ class DesingUnitImporter : public BaseImporter { /***************************************************************************/ public: /***************************************************************************/ using BaseImporter::BaseImporter; /***************************************************************************/ antlrcpp::Any visitModule_declaration( Verilog2001Parser::Module_declarationContext *ctx ) override; antlrcpp::Any visitPort_declaration( Verilog2001Parser::Port_declarationContext *ctx ) override; antlrcpp::Any visitList_of_port_declarations( Verilog2001Parser::List_of_port_declarationsContext *ctx ) override; antlrcpp::Any visitNon_port_module_item( Verilog2001Parser::Non_port_module_itemContext *ctx ) override; antlrcpp::Any visitModule_or_generate_item( Verilog2001Parser::Module_or_generate_itemContext *ctx ) override; /***************************************************************************/ template< typename _Context > antlrcpp::Any importItem( _Context & _ctx ); /***************************************************************************/ }; /***************************************************************************/ } } /***************************************************************************/ #endif // !__EC_VLOG_DESIGN_UNIT_IMPORTER_HPP__
[ "pshenychnyi96@gmail.com" ]
pshenychnyi96@gmail.com
1c3dbf557ebfcfc824cb8cfe67690b8edcfdfe60
7121351ed278582278aa83dead9ce4a57ec790fd
/Modulo1/Practica6/Ejercicio4-5/Ejercicio4-5.ino
271ef30ef6a135db7996596235dad006d7df0291
[]
no_license
gma31096/Diplomado
91dee24b113b8ca0bae91de3af51b3bf629fdc74
a27ac7e7d199b24b03915e2b93f07ca76a79ddc6
refs/heads/master
2020-04-21T22:11:49.932122
2019-09-10T03:27:08
2019-09-10T03:27:08
169,903,002
0
0
null
null
null
null
UTF-8
C++
false
false
17,399
ino
/*--------------------Librerias------------------------------------*/ #include <Wire.h> //Libería para comunicación #include <Adafruit_ADS1015.h> //Librería para los multiplexores Adafruit_ADS1115 ads1(0x49); Adafruit_ADS1115 ads0(0x48); /*-------------------------------------------Variables para A Control PID-----------------------------------------------------------------*/ float RnA,RnaA; //Es redundante inicializar las variables cuando son globales float KuA=0.08; //K última (límite en la que empieza a oscilar el sistema) const float KpA=0.6*KuA; const float TuA=1.5; //[s] //Constante de tiempo const float KiA=1.2*KuA/TuA; const float KdA=3.0*KuA*TuA/40.0; float RefA=0.0; float eA=RefA; float eaA=RefA; float integA; /*-----------------------------------------------Variables para B--------------------------------------------------------------------------*/ float RnB,RnaB; //Es redundante inicializar las variables cuando son globales const float KuB=0.08; const float KpB=0.6*KuB; const float TuB=1.5; //[s] const float KiB=1.2*KuB/TuB; const float KdB=3.0*KuB*TuB/40.0; float RefB=0.0; float eB=RefB; float eaB=RefB; float integB=0.0; /*-------------------------------------------Variables para Control P de Feedback-----------------------------------------------------------*/ float Rnext; float Eext; float Kpext=0.0001; float Rneaext; /*-----------------------------------------------------------------Variables para relacion de W a velocidad--------------------------------*/ volatile long A; volatile long B; const float r=2.2250; //[cm] const float disLlan=8.05; //[cm] //const int ppr=300; //Porque sólo utilizamos un canal const float pi=3.14159265; /*-------------------------------------------------------------------Distancia y Angulo---------------------------------------------*/ float Dis,Ang; float Vr,Wr; float Vra,Wra; /*--------------------------------------------------------------------Distancia Sharp-------------------------------------------------*/ float sh[3]={0,0,0}; /*-------------------------------------------------------------------Perfil de velocidad------------------------------------------------*/ const float Vm=20; /*---------------------------------------------------------LDR's------------------------------------------------------*/ int LDR[8] = {0,0,0,0,0,0,0,0}; float Lang; int val; void setup() { /*--------------------------------------------------Monitoreo Serie--------------------------------------------------------------------*/ Serial.begin(9600); //Serial.setTimeout(5); /*-------------------------------------------------Pines para control de Motores----------------------------------------------------*/ pinMode(8, OUTPUT); //Dirección M1 pinMode(9, OUTPUT); //PWM M1 pinMode(10, OUTPUT); //PWM M2 pinMode(11, OUTPUT); //Dirección M2 /*-------------------------------------------------Pines para los encoders-----------------------------------------------------------*/ pinMode(2,INPUT); //Enco A (interrupción) pinMode(4,INPUT); //Enco A pinMode(3,INPUT); //Enco B (interrupción) pinMode(5,INPUT); //Enco B attachInterrupt(0, EncoA,RISING); //SRI Enco A attachInterrupt(1, EncoB,RISING); //SRI Enco B /*------------------------------------------------------Multiplexores LDR-------------------------------------------*/ ads0.begin(); //Inicializa multiplexor ads1.begin(); } void loop() { //Move(0,-45.0*pi/180.0); //delay(200); //while(true); //velMot(10,10); //Esquiva(); //actualizaLuz(); //actualizaSharp(); //Serial.println(sh[0]); //Serial.println(sh[1]); //Serial.println(sh[2]); //Serial.println("----------------------------"); //FollowLuz(); esquiva(); } void FollowLuz(){ actualizaLuz(); //Se actualizan los valores de las LDR's if (Lang==0 || fabs(Lang) == (45.0*pi/180.0)) { //Para que avance aunque la luz esté a 45° actualizaSharp(); //Se actualizan los valores de los sensores Sharp float Min = sh[0]; if(sh[1]<Min) Min=sh[1]; //Se comparan los valores de los sensores para obtener el menor if(sh[2]<Min) Min=sh[2]; if(Min>20) Move(20,0); //Si el valor mínimo es mayor a 20 se limita a 20 else if (Min>=6) Move(Min*0.5,0); //Si es mayor o igual a 6 se mueve una proporción else Move(5,0); //Si no, muévete 5 } else Move(0,Lang); //Si Lang es diferente a 0 o +-45, entonces gira Lang } void esquiva(){ actualizaSharp(); //Se actualizan los valores de los sensores Sharp actualizaLuz(); //Se actualizan los valores de las LDR's //0-> centro //1-> derecha //2 -> Izq short Dumbral1 = 5; //8 short lm = 1.4; int goal = 910; if(val>goal) { //Si el valor de la LDR supera el umbral, giro de victoria Move(0,10.1); }else if((sh[2]>10 && sh[1]<Dumbral1*lm && sh[0]>10) || (sh[2]>10 && sh[1]<Dumbral1*lm && sh[0]<Dumbral1)){ //Si Sharp derecha o sharps derecha/centro detectan obstáculo Move(-5,0); //Retrocede 5[cm] Move(0,45.0*pi/180.0); //Gira 45° } else if((sh[2]<Dumbral1*lm && sh[0]<Dumbral1 && sh[1]>10) || (sh[2]<Dumbral1*lm && sh[1]>10 && sh[0]>10)){ //Si Sharp izquierda o sharps izquierda/centro detectan obstáculo Move(-5,0); //Retrocede 5[cm] Move(0,-40.0*pi/180.0); //Gira -45° (considerando histéresis) }else if ((sh[2]<Dumbral1*lm && sh[1]<Dumbral1*lm && sh[0]>10)||(sh[2]<Dumbral1*lm && sh[1]<Dumbral1*lm && sh[0]<Dumbral1)){ //Si Sharp derecha/izquierda o los 3 detectan obstáculo Move(-5,0); //Retrocede 5[cm] delay(100); Move(0,90.0*pi/180.0); //Gira 90° actualizaSharp(); //Se actualizan los valores de los sensores Sharp if (sh[2]>15 && sh[1]>15 && sh[0]>15){ //Si los Sharps no detectan obstáculo a 15[cm] o más Move(11,0); //Avanza 11[cm] delay(100); Move(0,-80.0*pi/180.0); //Gira -90° delay(100); }else { Move(0,pi); //Si no se cumple lo de los Sharps entonces gira 180° (llegando hasta 270°) delay(100); Move(5,0); //Avanza 5[cm] delay(100); Move(0,90.0*pi/180.0); //Gira 90° (para regresar a ángulo 0° delay(100); } }else if (sh[2]>10 && sh[1]>10 && sh[0]<Dumbral1){ //Si Sharp centro detecta obstáculo y los otros no Move(-5,0); //Retrocede 5[cm] Move(0,45*pi/180.0); //Gira 45° Move(5,0); //Avanza 45° }else FollowLuz(); //Si no, entonces ubica la fuente de luz } void Move(float dis,float ang){ float sen = dis; float aux = fabs(dis); dis = -0.0003650572*pow(aux,4)+0.0173586426*pow(aux,3)-0.2865221528*pow(aux,2)+2.2956910052*aux; //Regresión para ajutar distancia lineal float Fvel=0.0; float tp=(dis/(2.0*Vm))*1000.0; //Sale del despeje de dis=tp*Vm/2 (área del triángulo del perfil de velocidad) long t0=millis(); //Referencia de comienzo del perfil long tf1=t0+int(tp); //Tiempo final 1 es igual a la referencia de incio más un tiempo parcial /*---------------------------------------------------------------Avance----------------------------------------------*/ /*------------*/ RefB=0.0; eB=RefB; eaB=RefB; integB=0.0; integA=0.0; RnA=0; RnB=0; RnaA=0; RnaB=0; /*------------------*/ while(millis()<tf1){ //Mientras el valor de millis sea menor al tiempo final 1 Fvel=(Vm/tf1)*millis(); //La velocidad está dada por la ecuación Vel=Vmax*tactual/tfinal1 (sen>0)?velMot(Fvel,Fvel):velMot(-Fvel,-Fvel); //Si sen(dis) es mayor a 0 (motores hacia adelante), avanza, si es menor, retrocede (motores hacia atrás) } long tf2=tf1+int(tp); //Tiempo final 2 es igual al tiempo final 1 (referencia de inicio del tf2) más un tiempo parcial while(millis()<tf2){ //Mientras el valor de millis sea menor al tiempo final 2 Fvel=Vm; //La velocidad está dada por esa ecuación (velocidad constante) (sen>0)?velMot(Fvel,Fvel):velMot(-Fvel,-Fvel); //Si sen(dis) es mayor a 0 (motores hacia adelante), avanza, si es menor, retrocede (motores hacia atrás) } long tf3=tf2+int(tp); //Tiempo final 3 es igual al tiempo final 2 (referencia de inicio del tf3) más un tiempo parcial while(millis()<tf3){ //Mientras el valor de millis sea menor al tiempo final 3 Fvel=(3*Vm)-((Vm/tf3)*millis()); //La velocidad está dada por la ecuación Vel=(3*Vmax) - Vmax*tactual/tfinal3 (sen>0)?velMot(Fvel,Fvel):velMot(-Fvel,-Fvel); //Si sen(dis) es mayor a 0 (motores hacia adelante), avanza, si es menor, retrocede (motores hacia atrás) } velMot(0,0); //Después de eso, se detienen los motores analogWrite(9,LOW); //Se desactivan los enable para asegurar la detención de los motores analogWrite(10,LOW); /*--------------------------------------------Giro--------------------------------*/ /*------------*/ RefB=0.0; eB=RefB; eaB=RefB; integB=0.0; integA=0.0; RnA=0; RnB=0; RnaA=0; RnaB=0; /*------------------*/ //Mismo proceso que con distancia lineal sen = ang; aux =fabs(ang); if(aux <=0.331612558) ang=-883.2408996163*pow(aux,4)+751.6288254074*pow(aux,3)-222.586252936*pow(aux,2)+28.6257522339*aux; //Primera ecuación de ajuste para ángulo else ang = -0.0823543365*pow(aux,5)+0.6658597286*pow(aux,4)-1.8278459415*pow(aux,3)+1.8668172115*pow(aux,2)+0.6550714861*aux+1.422493344; //Segunda ecuación de ajuste para ángulo tp=((ang*r)/(2.0*Vm))*1000.0; //Sale del despeje de dis=tp*Vm/2 (área del triángulo del perfil de velocidad) (considerando distancia angualr dis=angulo*radio) t0=millis(); //Referencia de comienzo del perfil tf1=t0+int(tp); while(millis()<tf1){ Fvel=(Vm/tf1)*millis(); (sen>0)?velMot(-Fvel,Fvel):velMot(Fvel,-Fvel); } tf2=tf1+int(tp); while(millis()<tf2){ Fvel=Vm; (sen>0)?velMot(-Fvel,Fvel):velMot(Fvel,-Fvel); } tf3=tf2+int(tp); while(millis()<tf3){ Fvel=(3*Vm)-((Vm/tf3)*millis()); (sen>0)?velMot(-Fvel,Fvel):velMot(Fvel,-Fvel); } velMot(0,0); analogWrite(9,0); analogWrite(10,0); } void velMot(float RA,float RB){ short a; (RA==RB)?a=1:a=0; //Si velocidad del motor A es igual a la de B, entonces a=1, si no a=0 RefA=-1*RA; //Velocidad de referencia de motor A (velocidad deseada) RefB=-1*RB; //Velocidad de referencia de motor B (velocidad deseada) float QWEA=WA(); //Se asigna el valor de la velocidad ángular del motor A float QWEB=WB(); //Se asigna el valor de la velocidad ángular del motor B Vr = (QWEA+QWEB)*0.5*r; //Conversión a velocidad lineal promedio Dis += 0.01*((Vr+Vra)/2.0); //Conversión a distancia lineal //Ang += 0.01*((Wr+Wra)/2.0); eA=RefA-QWEA; //Error A es igual a la referencia(valor deseado) menos la velocidad angular actual integA+=((eA+eaA)/2.0)*0.01; //Integral del motor A (método del trapecio) eB=RefB-QWEB; //Error B es igual a la referencia(valor deseado) menos la velocidad angular actual integB+=((eB+eaB)/2.0)*0.01; //Integral del motor B (método del trapecio) Eext=QWEA-QWEB; //Diferencia entre velocidades angulares si el los motores no giran a la misma velocidad angular Rnext=Rneaext+(Kpext*Eext); //Se actualiza la referencia y se le suma la diferencia multiplicada por una constante float pda=KdA*((eA-eaA)/0.01); //Parte proporcional del control del motor A float pia=KiA*integA; //Parte integral del control del motor A float ppa=KpA*(eA); //Parte diferencial del control del motor A float pdb=KdB*((eB-eaB)/0.01); //Parte proporcional del control del motor B float pib=KiB*integB; //Parte integral del control del motor B float ppb=KpB*(eB); //Parte diferencial del control del motor B /*---------------------------------------------------Bloqueo de ventana derivativo---------------------------------------------------*/ if(pda>5) pda = 5; else if(pda<-5) pda = -5; if(pdb>5) pdb = 5; else if(pdb<-5) pdb = -5; /*---------------------------------------------------Bloqueo de ventana integral---------------------------------------------------*/ if(pia>10) pia = 0; else if(pia<-10) pia = 0; if(pib>10) pib = 0; else if(pib<-10) pib = 0; /*---------------------------------------------------Bloqueo de ventana proporcional---------------------------------------------------*/ if(ppa>10) ppa = 10; else if(ppa<-10) ppa = -10; if(ppb>10) ppb = 10; else if(ppb<-10) ppb = -10; RnA=RnaA+ppa+pda+pia;//-a*Rnext; //Control PID para motor A más la correción RnB=RnaB+ppb+pdb+pib;//+a*Rnext; //Control PID para motor B más la correción /*-------------------------------------------Procesos de deslinealizacion(Saturacion)-------------------------------------------------------------*/ if(RnA>127) RnA = 127; else if(RnA<-127) RnA = -127; if(RnB>127) RnB = 127; else if(RnB<-127) RnB = -127; /*-----------------------------------------Actualización de variables involucradas en el control----------------------------------------------------*/ eaA=eA; RnaA=RnA; eaB=eB; RnaB=RnB; Rneaext=Rnext; Wra = Wr; Vra = Vr; MoveMotors(1,RnA); MoveMotors(0,RnB); delay(10); } void MoveMotors(bool id,short vel){ //id=0 Motor derecho if(id){ if(vel<0) digitalWrite(8,HIGH); else digitalWrite(8,LOW); //(vel<0)?digitalWrite(8,HIGH):digitalWrite(8,LOW); analogWrite(9,abs(vel*2)); //Se puede usar el mapeo pero ocupa más procesamiento y memoria } else if(!id) { if(vel<0) digitalWrite(11,HIGH); else digitalWrite(11,LOW); analogWrite(10,abs(vel*2)); } } const int tm=100; float WA(){ float ang = A*pi/150.0; //Obtención del ángulo girado a partir del número de pulsos del encoder A A=0; //return ang/0.2; return ang/0.01; //Retorna conversión a velocidad angular del motor A } float WB(){ float ang = B*pi/150.0; //Obtención del ángulo girado a partir del número de pulsos del encoder B B=0; return ang/0.01; //Retorna conversión a velocidad angular del motor B //return ang/0.2; } float prom (int muestra, short pin) //Se realiza un promedio de las lecturas del sensor Sharp { float val = 0; for (int i=0; i<muestra;i++) val+=analogRead(pin); return val/float(muestra); } void actualizaLuz(){ short aux = 0; for(int i=0;i<2;i++){ //Por los 2 módulos ADC for(int j=0;j<4;j++){ //Por los 4 analógicos de cada uno LDR[aux]=AnalogModule(i,j); //Se va guardando la lectura de cada analógico de los ADC en el arreglo de LDR's aux++; //Para ir barriendo la matriz } } //Serial.println(LDR[8]); short index = 0; val = LDR[0]; //val toma el valor de la primera posición del arreglo LDR for(int i = 0;i<7;i++){ if(LDR[i+1]>val){ //Se compara el valor de la posición i y la posición i+1 index = i+1; //Si el valor de la posición i+1 es mayor que el de la posición i, entonces index toma el valor de la posición de mayor valor val = LDR[i+1]; //Se asigna el valor de la posición index en la variable val } } //Serial.println(index); if(index==0) Lang =90*pi/180; //Se asignan los valores de ángulo correspondiente a la posición de la LDR else if(index == 1 ) Lang=135*pi/180; else if(index == 2 ) Lang=45*pi/180; else if(index == 3 ) Lang=0*pi/180; else if(index == 4 ) Lang=-45*pi/180; else if(index == 5 ) Lang=-90*pi/180; else if(index == 6 ) Lang=-135*pi/180; else if(index == 7 ) Lang=180*pi/180; /*--------------------------------------------------- * Mapeo * * 0->90° * 1->135° * 2->45° * 3->0° * 4->-45° * 5->-90° * 6->-135° * 7->180° ----------------------------------------------------*/ delay(10); } int AnalogModule(int module,int Analog) { int16_t val = 0; if(module == 0) val = ads0.readADC_SingleEnded(Analog); else val = ads1.readADC_SingleEnded(Analog); return map(val,0,26856,0,1023); } void actualizaSharp(){ for(int i = 0;i<3;i++){ float val = (prom(500,14+i)/250.0)-1.0; //Se ajusta el valor a través de la red neuronal float c1 = ft(0.369248487925738*val+0.577389959411576); float c21 = ft(-3.75383949697236*c1+0.46690748083561); float c22 =ft(-1.27651061016856*c1+0.663313903700074); float c31 =ft(-0.381050371622249-3.09356404985034*c21-0.944696928934104*c22); float c32 = ft(1.00628577459547+0.88112646400912*c21+0.882949047865326*c22); float c4 = ft(1.86295227348364-3.14660083320073*c31+1.48218178229938*c32); sh[i] = (c4+1.0)*15.0; //Se guarda el valor procedente de la red en cada una de las posiciones del arreglo sh } /* 0-> Medio 1-> Derecha 2-> Izquierda */ } double ft(double x) { return (exp(x) - exp(x * (-1))) / (exp(x) + exp(x * (-1))); //Función de disparo sigmoide de la red neuronal } void EncoA(){ digitalRead(4)?A++:A--; //Si se produce la interrupción en el pin 2 (asociado a 0) y el pin 4 es alto A suma, si es bajo A resta } void EncoB(){ digitalRead(5)?B--:B++; //Si se produce la interrupción en el pin 3 (asociado a 1) yel pin 5 es alto B suma, si es bajo B resta }
[ "gma31096@hotmail.com" ]
gma31096@hotmail.com
1612a22be01013bf278900b67b098b92f9935fde
0906a17563100fd3d2b0ae9b2359094393fe18fe
/libs.d/libchrono/inc/lchrono/chrono.h
85889a0b09404cb0a2adc8e895de41cc85c24f38
[ "MIT" ]
permissive
Rajesh-Sec-Project/simon
7de4b80ceb515f8baeb21ee204add9955be8bc55
d9e5ecd7aa35055ebfea20654e666d48901d7b76
refs/heads/master
2021-01-10T16:08:37.820630
2016-01-27T11:21:49
2016-01-27T11:21:49
43,967,449
0
0
null
null
null
null
UTF-8
C++
false
false
1,492
h
/* * Copyright (c) 2016 Kadambari Melatur, Alexandre Monti, Rémi Saurel and Emma Vareilles * * 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. */ #ifndef LCHRONO_HEADER #define LCHRONO_HEADER #include <chrono> using namespace std::literals; namespace lchrono { using duration = std::chrono::nanoseconds; using timepoint = std::chrono::nanoseconds; //! Return the elasped time since the first call of this function. timepoint clock(); } #endif
[ "r4.saurel@gmail.com" ]
r4.saurel@gmail.com
a22ee3d5eca34de422af3e5dbd435a82a5f289dc
34b77eec7101ed4a888c19e5c86ca30ecaa899c6
/test/function/scalar/prod.cpp
45d2498bf96f70dc464f43ede1b6137f688e44ce
[ "BSL-1.0" ]
permissive
superbobry/boost.simd
e4b8fda847cf6cba26f03253ec7f175637ab521c
ec25208be6b76d5c9207621a9e5dff7f15a8791d
refs/heads/develop
2021-01-15T19:44:11.224619
2016-06-10T10:30:39
2016-06-10T10:30:39
60,840,174
0
0
null
2016-06-10T10:29:49
2016-06-10T10:29:49
null
UTF-8
C++
false
false
911
cpp
//================================================================================================== /*! Copyright 2015 NumScale SAS Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ //================================================================================================== #include <boost/simd/function/scalar/prod.hpp> #include <simd_test.hpp> #include <boost/simd/detail/dispatch/meta/as_integer.hpp> #include <boost/simd/constant/one.hpp> #include <boost/simd/constant/zero.hpp> STF_CASE_TPL (" prod ", STF_NUMERIC_TYPES) { namespace bs = boost::simd; using bs::prod; // return type conformity test STF_EXPR_IS(prod(T()), T); // specific values tests STF_EQUAL(prod(bs::One<T>()), bs::One<T>()); STF_EQUAL(prod(bs::Zero<T>()), bs::Zero<T>()); } // end of test for signed_int_
[ "charly.chevalier@numscale.com" ]
charly.chevalier@numscale.com
e71b07de2e86f205c5e44b028dba74f076234c4f
ff61cc8596332ebed3bc21bd5d00e27bd3ebb0d4
/engine/app3D/Device.cpp
e5a7d3706b15b618b3f88d80f345ac5be96ca501
[ "MIT" ]
permissive
celestialkey/survival
75815593c35266984855d6f60f4dbe86ebeb839a
ecb59af9fcbb35b9c28fd4fe29a4628f046165c8
refs/heads/master
2020-04-15T15:12:23.025140
2018-08-08T11:41:54
2018-08-08T11:41:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,290
cpp
#include "Device.hpp" #include "../util/DefDatabase.hpp" #include "../util/AppTime.hpp" #include "../util/Exception.hpp" #include "../util/LogManager.hpp" #include "../GUI/GUIManager.hpp" #include "managers/EventManager.hpp" #include "managers/PhysicsManager.hpp" #include "managers/ShadersManager.hpp" #include "managers/SceneManager.hpp" #include "managers/ResourcesManager.hpp" #include "managers/ResourcesManager.hpp" #include "managers/ParticlesManager.hpp" #include "managers/CursorManager.hpp" #include "detail/GUIRenderer.hpp" #include "IrrlichtConversions.hpp" #include <SFML/Audio.hpp> #include <fstream> #include <string> namespace engine { namespace app3D { /* * TODO: make sure that dropIrrObjects() and reloadIrrObjects() are called for all * Irrlicht resources holders, and that they all work. */ std::shared_ptr <Device> Device::create(const Settings &settings, const std::shared_ptr <DefDatabase> &defDatabase) { TRACK; if(!defDatabase) throw Exception("Def database is nullptr."); // Device constructor is private std::shared_ptr <Device> ptr(new Device{}); ptr->m_ptr = ptr; ptr->m_defDatabase = defDatabase; ptr->init(settings); return ptr; } bool Device::update(const AppTime &appTime) { TRACK; if(!getIrrDevice().run()) return false; getShadersManager().clearPointLights(); // Lights update method will re-add point lights getPhysicsManager().update(appTime); getSceneManager().update(appTime); getGUIRenderer().update(); getGUIManager().update(appTime); getParticlesManager().update(); updateAudioListener(); return true; } void Device::draw() { TRACK; auto &irrDevice = getIrrDevice(); auto &videoDriver = *irrDevice.getVideoDriver(); auto &sceneManager = getSceneManager(); videoDriver.beginScene(true, true, irr::video::SColor{255, 0, 0, 0}); irrDevice.getSceneManager()->drawAll(); if(m_onDraw3D) m_onDraw3D(); videoDriver.clearZBuffer(); sceneManager.drawFPPModels(); sceneManager.drawHighlightedNode(); if(m_onDraw2DBeforeWidgets) m_onDraw2DBeforeWidgets(); getGUIManager().draw(); if(m_onDraw2DAfterWidgets) m_onDraw2DAfterWidgets(); videoDriver.endScene(); } void Device::setFog(const Color &color, float minDist, float maxDist) { m_fogColor = color; m_fogMinDist = minDist; m_fogMaxDist = maxDist; const auto &irrColor = IrrlichtConversions::toColor(m_fogColor); getIrrDevice().getVideoDriver()->setFog(irrColor, irr::video::EFT_FOG_LINEAR, m_fogMinDist, m_fogMaxDist, 0.f, false, false); // sky color has always the same color as fog so they blend nicely getShadersManager().setSkyColor(color); } void Device::setFPPCameraControl(bool controlFPPCamera) { TRACK; auto &cursorManager = getCursorManager(); auto &irrCamera = getSceneManager().getIrrCamera(); if(controlFPPCamera) { cursorManager.showCursor(false); irrCamera.setInputReceiverEnabled(true); } else { cursorManager.showCursor(true); irrCamera.setInputReceiverEnabled(false); } } void Device::setWidgetsGetInput(bool getInput) { auto &eventManager = getEventManager(); if(getInput) eventManager.registerEventReceiverAtTheBeginning(m_GUIManager); else { E_DASSERT(m_GUIManager, "GUI manager is nullptr."); eventManager.deregisterEventReceiver(*m_GUIManager); } } bool Device::isUsingDeferredRendering() const { // TODO: add deferred rendering support return false; } void Device::setOnDraw3DCallback(std::function <void()> callback) { m_onDraw3D = callback; } void Device::setOnDraw2DBeforeWidgetsCallback(std::function <void()> callback) { m_onDraw2DBeforeWidgets = callback; } void Device::setOnDraw2DAfterWidgetsCallback(std::function <void()> callback) { m_onDraw2DAfterWidgets = callback; } void Device::setNewVideoParams(int width, int height, bool fullscreen, int antialiasing, bool vsync) { TRACK; if(width != m_videoSettings.width || height != m_videoSettings.height || fullscreen != m_videoSettings.fullscreen || antialiasing != m_videoSettings.antialiasing || vsync != m_videoSettings.vsync) { E_INFO("Setting new video params. Recreating Irrlicht device."); createIrrlichtDevice(width, height, fullscreen, antialiasing, vsync); } } IntVec2 Device::getScreenSize() { const auto &size = getIrrDevice().getVideoDriver()->getScreenSize(); return {static_cast <int> (size.Width), static_cast <int> (size.Height)}; } const Color &Device::getFogColor() const { return m_fogColor; } std::shared_ptr <Device> Device::getPtr() { const auto &shared = m_ptr.lock(); if(!shared) throw Exception{"Device could not lock its own weak pointer."}; return shared; } int Device::getFPS() { return getIrrDevice().getVideoDriver()->getFPS(); } irr::IrrlichtDevice &Device::getIrrDevice() const { if(!m_irrDevice) throw Exception{"Irrlicht device is nullptr."}; return *m_irrDevice; } const Settings::Video3D &Device::getVideoSettings() const { return m_videoSettings; } ResourcesManager &Device::getResourcesManager() { if(!m_resourcesManager) throw Exception{"Resources manager is nullptr."}; return *m_resourcesManager; } SceneManager &Device::getSceneManager() { if(!m_sceneManager) throw Exception{"Scene manager is nullptr."}; return *m_sceneManager; } EventManager &Device::getEventManager() { if(!m_eventManager) throw Exception{"Event manager is nullptr."}; return *m_eventManager; } GUI::GUIManager &Device::getGUIManager() { if(!m_GUIManager) throw Exception{"GUI manager is nullptr."}; return *m_GUIManager; } ShadersManager &Device::getShadersManager() { if(!m_shadersManager) throw Exception{"Shaders manager is nullptr."}; return *m_shadersManager; } PhysicsManager &Device::getPhysicsManager() { if(!m_physicsManager) throw Exception{"Physics manager is nullptr."}; return *m_physicsManager; } ParticlesManager &Device::getParticlesManager() { if(!m_particlesManager) throw Exception{"Particles manager is nullptr."}; return *m_particlesManager; } CursorManager &Device::getCursorManager() { if(!m_cursorManager) throw Exception{"Cursor manager is nullptr."}; return *m_cursorManager; } DefDatabase &Device::getDefDatabase() const { E_DASSERT(m_defDatabase, "Def database is nullptr."); return *m_defDatabase; } Device::~Device() { dropIrrObjects(); if(m_irrDevice) m_irrDevice->drop(); } Device::Device() : m_irrDevice{}, m_fogColor{k_defaultFogColor}, m_fogMinDist{k_defaultFogMinDist}, m_fogMaxDist{k_defaultFogMaxDist} { } void Device::init(const Settings &settings) { TRACK; E_INFO("Initializing Device."); if(m_ptr.expired()) { throw Exception{"Pointer to self (Device) is nullptr. " "This class must be able to share itself."}; } if(!m_defDatabase) throw Exception{"Def database is nullptr."}; m_videoSettings = settings.video3D; if(!irr::IrrlichtDevice::isDriverSupported(irr::video::EDT_OPENGL)) throw Exception{"OpenGL driver is not supported."}; EventManager tempEventManager; irr::SIrrlichtCreationParameters creationParams; creationParams.DriverType = irr::video::EDT_NULL; creationParams.EventReceiver = &tempEventManager; E_INFO("Creating temporary Irrlicht device with nullptr driver."); if(!(m_irrDevice = irr::createDeviceEx(creationParams))) throw Exception{"Could not create temporary Irrlicht device with nullptr driver."}; auto *videoModes = m_irrDevice->getVideoModeList(); if(!videoModes || videoModes->getVideoModeCount() <= 0) throw Exception{"No video mode available."}; for(irr::s32 i = 0; i < videoModes->getVideoModeCount(); ++i) { if(videoModes->getVideoModeDepth(i) == 32) { m_videoModes.push_back({static_cast <int> (videoModes->getVideoModeResolution(i).Width), static_cast <int> (videoModes->getVideoModeResolution(i).Height)}); } } if(m_videoModes.empty()) throw Exception{"No 32 bit video mode available."}; E_INFO("Removing temporary Irrlicht device."); m_irrDevice->drop(); m_irrDevice = nullptr; m_eventManager = std::make_unique <EventManager> (); createIrrlichtDevice(settings.video3D.width, settings.video3D.height, settings.video3D.fullscreen, settings.video3D.antialiasing, settings.video3D.vsync); E_RASSERT(m_irrDevice, "Irrlicht device is nullptr."); const auto &driver = *m_irrDevice->getVideoDriver(); if(!driver.queryFeature(irr::video::EVDF_MIP_MAP)) throw Exception{"Your graphics card does not support mip maps."}; if(!driver.queryFeature(irr::video::EVDF_VERTEX_SHADER_1_1)) throw Exception{"Your graphics card does not support vertex shader 1.1 or higher."}; if(!driver.queryFeature(irr::video::EVDF_PIXEL_SHADER_1_1)) throw Exception{"Your graphics card does not support fragment shader 1.1 or higher."}; if(!driver.queryFeature(irr::video::EVDF_TEXTURE_NSQUARE)) throw Exception{"Your graphics card does not support non-square textures."}; if(!driver.queryFeature(irr::video::EVDF_TEXTURE_NPOT)) throw Exception{"Your graphics card does not support non-power-of-two textures."}; if(!driver.queryFeature(irr::video::EVDF_MULTITEXTURE)) throw Exception{"Your graphics card does not support multitexture."}; if(!driver.queryFeature(irr::video::EVDF_RENDER_TO_TARGET)) E_INFO("Render to target driver feature not supported."); if(!driver.queryFeature(irr::video::EVDF_FRAMEBUFFER_OBJECT)) E_INFO("Framebuffer object driver feature not supported."); if(!driver.queryFeature(irr::video::EVDF_MULTIPLE_RENDER_TARGETS)) E_INFO("Multiple render targets driver feature not supported."); /* TODO: * if(isDeferredRenderingAvailable()) * E_INFO("Deferred rendering available."); * else not supported */ m_resourcesManager = std::make_unique <ResourcesManager> (*this, settings); m_GUIRenderer = std::make_shared <detail::GUIRenderer> (*this); m_GUIManager = std::make_shared <GUI::GUIManager> (m_GUIRenderer); m_shadersManager = std::make_unique <ShadersManager> (*this, settings); m_sceneManager = std::make_unique <SceneManager> (*this); m_physicsManager = std::make_unique <PhysicsManager> (*this); m_particlesManager = std::make_unique <ParticlesManager> (*this); m_cursorManager = std::make_unique <CursorManager> (*this); } bool Device::isVideoModeAvailable(int width, int height) { return std::any_of(m_videoModes.begin(), m_videoModes.end(), [&](const auto &mode) { return mode.getWidth() == width && mode.getHeight() == height; }); } detail::GUIRenderer &Device::getGUIRenderer() { E_DASSERT(m_GUIRenderer, "GUI renderer is nullptr."); return *m_GUIRenderer; } const Color Device::k_defaultFogColor{255, 255, 255}; const float Device::k_defaultFogMinDist{180.f}; const float Device::k_defaultFogMaxDist{500.f}; void Device::createIrrlichtDevice(int width, int height, bool fullscreen, int antialiasing, bool vsync) { TRACK; E_INFO("Creating Irrlicht device (%dx%d, %s, antialiasing %d, %s).", width, height, fullscreen ? "fullscreen" : "windowed", antialiasing, vsync ? "vsync" : "no vsync"); if(m_irrDevice) { E_INFO("Removing previous Irrlicht device and cleaning up."); dropIrrObjects(); E_INFO("Previous Irrlicht device removed."); } if(m_videoModes.empty()) throw Exception{"No video mode available."}; if(!isVideoModeAvailable(width, height)) { E_WARNING("Video mode %dx%d not available. Using first one available (%dx%d).", width, height, m_videoModes[0].getWidth(), m_videoModes[0].getHeight()); width = m_videoModes[0].getWidth(); height = m_videoModes[0].getHeight(); } if(antialiasing < 0) { E_WARNING("Invalid antialiasing level (%d). Using 0 antialiasing level.", antialiasing); antialiasing = 0; } irr::SIrrlichtCreationParameters creationParams; creationParams.DriverType = irr::video::EDT_OPENGL; creationParams.WindowSize = {static_cast <irr::u32> (width), static_cast <irr::u32> (height)}; creationParams.Fullscreen = fullscreen; creationParams.AntiAlias = antialiasing; creationParams.Bits = 32; creationParams.Vsync = vsync; creationParams.EventReceiver = &getEventManager(); if(!(m_irrDevice = irr::createDeviceEx(creationParams))) throw Exception{"Could not create Irrlicht device."}; // TODO: engine user should somehow specify app title m_irrDevice->setWindowCaption(L"App"); auto &videoDriver = *m_irrDevice->getVideoDriver(); videoDriver.setTextureCreationFlag(irr::video::ETCF_CREATE_MIP_MAPS, true); videoDriver.setTextureCreationFlag(irr::video::ETCF_ALWAYS_32_BIT, true); const auto &irrFogColor = IrrlichtConversions::toColor(m_fogColor); videoDriver.setFog(irrFogColor, irr::video::EFT_FOG_LINEAR, m_fogMinDist, m_fogMaxDist, 0.f, false, false); m_videoSettings.width = width; m_videoSettings.height = height; m_videoSettings.fullscreen = fullscreen; m_videoSettings.antialiasing = antialiasing; m_videoSettings.vsync = vsync; auto &material2D = videoDriver.getMaterial2D(); material2D.TextureLayer[0].BilinearFilter = false; material2D.TextureLayer[0].TrilinearFilter = true; material2D.AntiAliasing = irr::video::EAAM_FULL_BASIC; material2D.UseMipMaps = true; // TODO: experimental (actually gives good results for scaled images) auto &sceneManager = *m_irrDevice->getSceneManager(); sceneManager.setAmbientLight({1.f, 1.f, 1.f}); E_INFO("Irrlicht device created."); if(m_resourcesManager) m_resourcesManager->reloadIrrObjects(); if(m_sceneManager) m_sceneManager->reloadIrrObjects(); if(m_cursorManager) m_cursorManager->reloadIrrObjects(); } void Device::dropIrrObjects() { if(m_cursorManager) m_cursorManager->dropIrrObjects(); if(m_sceneManager) m_sceneManager->dropIrrObjects(); if(m_resourcesManager) m_resourcesManager->dropIrrObjects(); if(m_irrDevice) { m_irrDevice->drop(); m_irrDevice = nullptr; } } void Device::updateAudioListener() { const auto &sceneManager = getSceneManager(); const auto &cameraPos = sceneManager.getCameraPosition(); const auto &cameraLookVec = sceneManager.getCameraLookVec(); sf::Listener::setPosition(cameraPos.x, cameraPos.y, cameraPos.z); sf::Listener::setDirection(cameraLookVec.x, cameraLookVec.y, cameraLookVec.z); } } // namespace app3D } // namespace engine
[ "isonil11@gmail.com" ]
isonil11@gmail.com
4ac882ede6ca8ebf906619b1364d985aad28ca56
893c6744b6d76102241811d5f2de702b7d7e1489
/src/Hardware/UTFT.cpp
cb79b66858b72530c797de89c7cbd7cbc2d035d9
[]
no_license
chandler767/FusionPanel-OLD
89916583a44665b30ea5bd8a08a292be25e2f5fa
c26db8239a7370c8d71f8830fa1de3b45e631add
refs/heads/master
2021-08-07T19:02:58.583494
2017-11-08T19:22:21
2017-11-08T19:22:21
63,447,905
0
1
null
null
null
null
UTF-8
C++
false
false
57,999
cpp
/* UTFT.cpp - Arduino/chipKit library support for Color TFT LCD Boards Copyright (C)2010-2012 Henning Karlsen. All right reserved This library is the continuation of my ITDB02_Graph, ITDB02_Graph16 and RGB_GLCD libraries for Arduino and chipKit. As the number of supported display modules and controllers started to increase I felt it was time to make a single, universal library as it will be much easier to maintain in the future. Basic functionality of this library was originally based on the demo-code provided by ITead studio (for the ITDB02 modules) and NKC Electronics (for the RGB GLCD module/shield). This library supports a number of 8bit, 16bit and serial graphic displays, and will work with both Arduino and chipKit boards. For a full list of tested display modules and controllers, see the document UTFT_Supported_display_modules_&_controllers.pdf. When using 8bit and 16bit display modules there are some requirements you must adhere to. These requirements can be found in the document UTFT_Requirements.pdf. There are no special requirements when using serial displays. You can always find the latest version of the library at http://electronics.henningkarlsen.com/ If you make any modifications or improvements to the code, I would appreciate that you share the code with me so that I might include it in the next release. I can be contacted through http://electronics.henningkarlsen.com/contact.php. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "asf.h" #include "UTFT.hpp" #include "memorysaver.h" #include "HW_AVR.h" #include <cstring> // for strchr template <class T> inline void swap(T& a, T& b) { T temp = a; a = b; b = temp; } inline bool UTFT::isParallel() const { return displayTransferMode >= TModeLowestParallel; } UTFT::UTFT(DisplayType model, TransferMode pmode, unsigned int RS, unsigned int WR, unsigned int CS, unsigned int RST, unsigned int SER_LATCH) : fcolour(0xFFFF), bcolour(0), transparentBackground(false), displayModel(model), displayTransferMode(pmode), portRS(RS), portWR(WR), portCS(CS), portRST(RST), portSDA(RS), portSCL(SER_LATCH), translateFrom(NULL), translateTo(NULL), numContinuationBytesLeft(0) { switch (model) { case HX8347A: case SSD1289: case ILI9325C: case ILI9325D: case S1D19122: case S6D1121: disp_x_size=239; disp_y_size=319; break; case ILI9327: case HX8352A: disp_x_size=239; disp_y_size=399; break; case HX8340B: case HX8340B_S: disp_x_size=175; disp_y_size=219; break; case ST7735: disp_x_size=127; disp_y_size=159; break; case PCF8833: disp_x_size=127; disp_y_size=127; break; case SSD1963_480: disp_x_size=271; disp_y_size=479; break; case SSD1963_800: disp_x_size=479; disp_y_size=799; break; } #ifndef DISABLE_SERIAL if (isParallel()) #endif { _set_direction_registers(); portRS.setMode(OneBitPort::Output); portWR.setMode(OneBitPort::Output); portCS.setMode(OneBitPort::Output); portRST.setMode(OneBitPort::Output); if (displayTransferMode == TMode9bit) { portSCL.setMode(OneBitPort::Output); } } #ifndef DISABLE_SERIAL else { portSDA.setMode(OneBitPort::Output); portSCL.setMode(OneBitPort::Output); portCS.setMode(OneBitPort::Output); portRST.setMode(OneBitPort::Output); if (displayTransferMode == TModeSerial5pin) { portRS.setMode(OneBitPort::Output); } } #endif } void UTFT::LCD_Write_COM(uint8_t VL) { #ifndef DISABLE_SERIAL if (isParallel()) #endif { setRSLow(); LCD_Write_Bus(0x00,VL); } #ifndef DISABLE_SERIAL else { LCD_Write_Bus(0x00,VL); } #endif } void UTFT::LCD_Write_DATA16(uint16_t VHL) { #ifndef DISABLE_SERIAL if (isParallel()) #endif { setRSHigh(); LCD_Write_Bus(VHL >> 8, VHL & 0xFF); } #ifndef DISABLE_SERIAL else { LCD_Write_Bus(0x01,VHL >> 8); LCD_Write_Bus(0x01,VHL & 0xFF); } #endif } void UTFT::LCD_Write_Repeated_DATA16(uint16_t VHL, uint16_t num) { #ifndef DISABLE_SERIAL if (isParallel()) #endif { setRSHigh(); #ifndef DISABLE_8BIT if (displayTransferMode == TMode8bit) { do { LCD_Write_Bus(VHL >> 8, VL & 0xFF); } while (--num != 0); } else #endif { LCD_Write_Bus(VHL >> 8, VHL & 0xFF); LCD_Write_Again(num - 1); } } #ifndef DISABLE_SERIAL else { do { LCD_Write_Bus(0x01, VH); LCD_Write_Bus(0x01, VL); --num; } while (num-- != 0) } #endif } void UTFT::LCD_Write_Repeated_DATA16(uint16_t VHL, uint16_t num1, uint16_t num2) { while (num2 != 0) { LCD_Write_Repeated_DATA16(VHL, num1); --num2; } } void UTFT::LCD_Write_DATA8(uint8_t VL) { #ifndef DISABLE_SERIAL if (isParallel()) #endif { setRSHigh(); LCD_Write_Bus(0x00, VL); } #ifndef DISABLE_SERIAL else { LCD_Write_Bus(0x01, VL); } #endif } void UTFT::LCD_Write_COM_DATA16(uint8_t com1, uint16_t dat1) { LCD_Write_COM(com1); LCD_Write_DATA16(dat1); } void UTFT::LCD_Write_COM_DATA8(uint8_t com1, uint8_t dat1) { LCD_Write_COM(com1); LCD_Write_DATA8(dat1); } void UTFT::InitLCD(DisplayOrientation po, bool is24bit) { orient = po; textXpos = 0; textYpos = 0; lastCharColData = 0UL; numContinuationBytesLeft = 0; removeReset(); delay_ms(5); assertReset(); delay_ms(15); removeReset(); delay_ms(15); assertCS(); switch(displayModel) { #ifndef DISABLE_HX8347A case HX8347A: LCD_Write_COM_DATA16(0x46,0x00A4); LCD_Write_COM_DATA16(0x47,0x0053); LCD_Write_COM_DATA16(0x48,0x0000); LCD_Write_COM_DATA16(0x49,0x0044); LCD_Write_COM_DATA16(0x4a,0x0004); LCD_Write_COM_DATA16(0x4b,0x0067); LCD_Write_COM_DATA16(0x4c,0x0033); LCD_Write_COM_DATA16(0x4d,0x0077); LCD_Write_COM_DATA16(0x4e,0x0012); LCD_Write_COM_DATA16(0x4f,0x004C); LCD_Write_COM_DATA16(0x50,0x0046); LCD_Write_COM_DATA16(0x51,0x0044); //240x320 window setting LCD_Write_COM_DATA16(0x02,0x0000); // Column address start2 LCD_Write_COM_DATA16(0x03,0x0000); // Column address start1 LCD_Write_COM_DATA16(0x04,0x0000); // Column address end2 LCD_Write_COM_DATA16(0x05,0x00ef); // Column address end1 LCD_Write_COM_DATA16(0x06,0x0000); // Row address start2 LCD_Write_COM_DATA16(0x07,0x0000); // Row address start1 LCD_Write_COM_DATA16(0x08,0x0001); // Row address end2 LCD_Write_COM_DATA16(0x09,0x003f); // Row address end1 // Display Setting LCD_Write_COM_DATA16(0x01,0x0006); // IDMON=0, INVON=1, NORON=1, PTLON=0 LCD_Write_COM_DATA16(0x16,0x00C8); // MY=0, MX=0, MV=0, ML=1, BGR=0, TEON=0 0048 LCD_Write_COM_DATA16(0x23,0x0095); // N_DC=1001 0101 LCD_Write_COM_DATA16(0x24,0x0095); // PI_DC=1001 0101 LCD_Write_COM_DATA16(0x25,0x00FF); // I_DC=1111 1111 LCD_Write_COM_DATA16(0x27,0x0002); // N_BP=0000 0010 LCD_Write_COM_DATA16(0x28,0x0002); // N_FP=0000 0010 LCD_Write_COM_DATA16(0x29,0x0002); // PI_BP=0000 0010 LCD_Write_COM_DATA16(0x2a,0x0002); // PI_FP=0000 0010 LCD_Write_COM_DATA16(0x2C,0x0002); // I_BP=0000 0010 LCD_Write_COM_DATA16(0x2d,0x0002); // I_FP=0000 0010 LCD_Write_COM_DATA16(0x3a,0x0001); // N_RTN=0000, N_NW=001 0001 LCD_Write_COM_DATA16(0x3b,0x0000); // P_RTN=0000, P_NW=001 LCD_Write_COM_DATA16(0x3c,0x00f0); // I_RTN=1111, I_NW=000 LCD_Write_COM_DATA16(0x3d,0x0000); // DIV=00 delay_ms(1); LCD_Write_COM_DATA16(0x35,0x0038); // EQS=38h LCD_Write_COM_DATA16(0x36,0x0078); // EQP=78h LCD_Write_COM_DATA16(0x3E,0x0038); // SON=38h LCD_Write_COM_DATA16(0x40,0x000F); // GDON=0Fh LCD_Write_COM_DATA16(0x41,0x00F0); // GDOFF // Power Supply Setting LCD_Write_COM_DATA16(0x19,0x0049); // CADJ=0100, CUADJ=100, OSD_EN=1 ,60Hz LCD_Write_COM_DATA16(0x93,0x000F); // RADJ=1111, 100% delay_ms(1); LCD_Write_COM_DATA16(0x20,0x0040); // BT=0100 LCD_Write_COM_DATA16(0x1D,0x0007); // VC1=111 0007 LCD_Write_COM_DATA16(0x1E,0x0000); // VC3=000 LCD_Write_COM_DATA16(0x1F,0x0004); // VRH=0011 //VCOM SETTING LCD_Write_COM_DATA16(0x44,0x004D); // VCM=101 0000 4D LCD_Write_COM_DATA16(0x45,0x000E); // VDV=1 0001 0011 delay_ms(1); LCD_Write_COM_DATA16(0x1C,0x0004); // AP=100 delay_ms(2); LCD_Write_COM_DATA16(0x1B,0x0018); // GASENB=0, PON=0, DK=1, XDK=0, VLCD_TRI=0, STB=0 delay_ms(1); LCD_Write_COM_DATA16(0x1B,0x0010); // GASENB=0, PON=1, DK=0, XDK=0, VLCD_TRI=0, STB=0 delay_ms(1); LCD_Write_COM_DATA16(0x43,0x0080); //set VCOMG=1 delay_ms(2); // Display ON Setting LCD_Write_COM_DATA16(0x90,0x007F); // SAP=0111 1111 LCD_Write_COM_DATA16(0x26,0x0004); //GON=0, DTE=0, D=01 delay_ms(1); LCD_Write_COM_DATA16(0x26,0x0024); //GON=1, DTE=0, D=01 LCD_Write_COM_DATA16(0x26,0x002C); //GON=1, DTE=0, D=11 delay_ms(1); LCD_Write_COM_DATA16(0x26,0x003C); //GON=1, DTE=1, D=11 // INTERNAL REGISTER SETTING LCD_Write_COM_DATA16(0x57,0x0002); // TEST_Mode=1: into TEST mode LCD_Write_COM_DATA16(0x95,0x0001); // SET DISPLAY CLOCK AND PUMPING CLOCK TO SYNCHRONIZE LCD_Write_COM_DATA16(0x57,0x0000); // TEST_Mode=0: exit TEST mode //LCD_Write_COM_DATA(0x21,0x0000); LCD_Write_COM(0x22); break; #endif #ifndef DISABLE_ILI9327 case ILI9327: LCD_Write_COM_DATA16(0xE9, 0x0020); LCD_Write_COM(0x11); //Exit Sleep lib_delay_ms(100); LCD_Write_COM_DATA16(0xD1, 0x0000); LCD_Write_DATA16(0x0071); LCD_Write_DATA16(0x0019); LCD_Write_COM_DATA16(0xD0, 0x0007); LCD_Write_DATA16(0x0001); LCD_Write_DATA16(0x0008); LCD_Write_COM_DATA16(0x36, 0x0048); LCD_Write_COM_DATA16(0x3A, 0x0005); LCD_Write_COM_DATA15(0xC1, 0x0010); LCD_Write_DATA16(0x0010); LCD_Write_DATA16(0x0002); LCD_Write_DATA16(0x0002); LCD_Write_COM(0xC0); //Set Default Gamma LCD_Write_DATA16(0x0000); LCD_Write_DATA16(0x0035); LCD_Write_DATA16(0x0000); LCD_Write_DATA16(0x0000); LCD_Write_DATA16(0x0001); LCD_Write_DATA16(0x0002); LCD_Write_COM(0xC5); //Set frame rate LCD_Write_DATA16(0x0004); LCD_Write_COM_DATA16(0xD2, 0x0001); //power setting LCD_Write_DATA16(0x0044); LCD_Write_COM_DATA16(0xC8, 0x0004); //Set Gamma LCD_Write_DATA16(0x0067); LCD_Write_DATA16(0x0035); LCD_Write_DATA16(0x0004); LCD_Write_DATA16(0x0008); LCD_Write_DATA16(0x0006); LCD_Write_DATA16(0x0024); LCD_Write_DATA16(0x0001); LCD_Write_DATA16(0x0037); LCD_Write_DATA16(0x0040); LCD_Write_DATA16(0x0003); LCD_Write_DATA16(0x0010); LCD_Write_DATA16(0x0008); LCD_Write_DATA16(0x0080); LCD_Write_DATA16(0x0000); LCD_Write_COM_DATA16(0x2A, 0x0000); LCD_Write_DATA16(0x0000); LCD_Write_DATA16(0x0000); LCD_Write_DATA16(0x00EF); LCD_Write_COM_DATA16(0x2B, 0x0000); LCD_Write_DATA16(0x0000); LCD_Write_DATA16(0x0001); LCD_Write_DATA16(0x008F); LCD_Write_COM(0x29); //display on LCD_Write_COM(0x2C); //display on break; #endif #ifndef DISABLE_SSD1289 case SSD1289: LCD_Write_COM_DATA16(0x00,0x0001); LCD_Write_COM_DATA16(0x03,0xA8A4); LCD_Write_COM_DATA16(0x0C,0x0000); LCD_Write_COM_DATA16(0x0D,0x080C); LCD_Write_COM_DATA16(0x0E,0x2B00); LCD_Write_COM_DATA16(0x1E,0x00B7); LCD_Write_COM_DATA16(0x01,0x2B3F); LCD_Write_COM_DATA16(0x02,0x0600); LCD_Write_COM_DATA16(0x10,0x0000); LCD_Write_COM_DATA16(0x11,0x6070); LCD_Write_COM_DATA16(0x05,0x0000); LCD_Write_COM_DATA16(0x06,0x0000); LCD_Write_COM_DATA16(0x16,0xEF1C); LCD_Write_COM_DATA16(0x17,0x0003); LCD_Write_COM_DATA16(0x07,0x0233); LCD_Write_COM_DATA16(0x0B,0x0000); LCD_Write_COM_DATA16(0x0F,0x0000); LCD_Write_COM_DATA16(0x41,0x0000); LCD_Write_COM_DATA16(0x42,0x0000); LCD_Write_COM_DATA16(0x48,0x0000); LCD_Write_COM_DATA16(0x49,0x013F); LCD_Write_COM_DATA16(0x4A,0x0000); LCD_Write_COM_DATA16(0x4B,0x0000); LCD_Write_COM_DATA16(0x44,0xEF00); LCD_Write_COM_DATA16(0x45,0x0000); LCD_Write_COM_DATA16(0x46,0x013F); LCD_Write_COM_DATA16(0x30,0x0707); LCD_Write_COM_DATA16(0x31,0x0204); LCD_Write_COM_DATA16(0x32,0x0204); LCD_Write_COM_DATA16(0x33,0x0502); LCD_Write_COM_DATA16(0x34,0x0507); LCD_Write_COM_DATA16(0x35,0x0204); LCD_Write_COM_DATA16(0x36,0x0204); LCD_Write_COM_DATA16(0x37,0x0502); LCD_Write_COM_DATA16(0x3A,0x0302); LCD_Write_COM_DATA16(0x3B,0x0302); LCD_Write_COM_DATA16(0x23,0x0000); LCD_Write_COM_DATA16(0x24,0x0000); LCD_Write_COM_DATA16(0x25,0x8000); LCD_Write_COM_DATA16(0x4f,0x0000); LCD_Write_COM_DATA16(0x4e,0x0000); LCD_Write_COM(0x22); break; #endif #ifndef DISABLE_ILI9325C case ILI9325C: LCD_Write_COM_DATA16(0xE5, 0x78F0); // set SRAM internal timing LCD_Write_COM_DATA16(0x01, 0x0100); // set Driver Output Control LCD_Write_COM_DATA16(0x02, 0x0700); // set 1 line inversion LCD_Write_COM_DATA16(0x03, 0x1030); // set GRAM write direction and BGR=1. LCD_Write_COM_DATA16(0x04, 0x0000); // Resize register LCD_Write_COM_DATA16(0x08, 0x0207); // set the back porch and front porch LCD_Write_COM_DATA16(0x09, 0x0000); // set non-display area refresh cycle ISC[3:0] LCD_Write_COM_DATA16(0x0A, 0x0000); // FMARK function LCD_Write_COM_DATA16(0x0C, 0x0000); // RGB interface setting LCD_Write_COM_DATA16(0x0D, 0x0000); // Frame marker Position LCD_Write_COM_DATA16(0x0F, 0x0000); // RGB interface polarity //*************Power On sequence ****************// LCD_Write_COM_DATA16(0x10, 0x0000); // SAP, BT[3:0], AP, DSTB, SLP, STB LCD_Write_COM_DATA16(0x11, 0x0007); // DC1[2:0], DC0[2:0], VC[2:0] LCD_Write_COM_DATA16(0x12, 0x0000); // VREG1OUT voltage LCD_Write_COM_DATA16(0x13, 0x0000); // VDV[4:0] for VCOM amplitude LCD_Write_COM_DATA16(0x07, 0x0001); delay_ms(200); // Dis-charge capacitor power voltage LCD_Write_COM_DATA16(0x10, 0x1090); // SAP, BT[3:0], AP, DSTB, SLP, STB LCD_Write_COM_DATA16(0x11, 0x0227); // Set DC1[2:0], DC0[2:0], VC[2:0] delay_ms(50); // Delay 50ms LCD_Write_COM_DATA16(0x12, 0x001F); // 0012 delay_ms(50); // Delay 50ms LCD_Write_COM_DATA16(0x13, 0x1500); // VDV[4:0] for VCOM amplitude LCD_Write_COM_DATA16(0x29, 0x0027); // 04 VCM[5:0] for VCOMH LCD_Write_COM_DATA16(0x2B, 0x000D); // Set Frame Rate delay_ms(50); // Delay 50ms LCD_Write_COM_DATA16(0x20, 0x0000); // GRAM horizontal Address LCD_Write_COM_DATA16(0x21, 0x0000); // GRAM Vertical Address // ----------- Adjust the Gamma Curve ----------// LCD_Write_COM_DATA16(0x30, 0x0000); LCD_Write_COM_DATA16(0x31, 0x0707); LCD_Write_COM_DATA16(0x32, 0x0307); LCD_Write_COM_DATA16(0x35, 0x0200); LCD_Write_COM_DATA16(0x36, 0x0008); LCD_Write_COM_DATA16(0x37, 0x0004); LCD_Write_COM_DATA16(0x38, 0x0000); LCD_Write_COM_DATA16(0x39, 0x0707); LCD_Write_COM_DATA16(0x3C, 0x0002); LCD_Write_COM_DATA16(0x3D, 0x1D04); //------------------ Set GRAM area ---------------// LCD_Write_COM_DATA16(0x50, 0x0000); // Horizontal GRAM Start Address LCD_Write_COM_DATA16(0x51, 0x00EF); // Horizontal GRAM End Address LCD_Write_COM_DATA16(0x52, 0x0000); // Vertical GRAM Start Address LCD_Write_COM_DATA16(0x53, 0x013F); // Vertical GRAM Start Address LCD_Write_COM_DATA16(0x60, 0xA700); // Gate Scan Line LCD_Write_COM_DATA16(0x61, 0x0001); // NDL,VLE, REV LCD_Write_COM_DATA16(0x6A, 0x0000); // set scrolling line //-------------- Partial Display Control ---------// LCD_Write_COM_DATA16(0x80, 0x0000); LCD_Write_COM_DATA16(0x81, 0x0000); LCD_Write_COM_DATA16(0x82, 0x0000); LCD_Write_COM_DATA16(0x83, 0x0000); LCD_Write_COM_DATA16(0x84, 0x0000); LCD_Write_COM_DATA16(0x85, 0x0000); //-------------- Panel Control -------------------// LCD_Write_COM_DATA16(0x90, 0x0010); LCD_Write_COM_DATA16(0x92, 0x0600); LCD_Write_COM_DATA16(0x07, 0x0133); // 262K color and display ON break; #endif #ifndef DISABLE_ILI9325D case ILI9325D: LCD_Write_COM_DATA16(0xE5, 0x78F0); // set SRAM internal timing LCD_Write_COM_DATA16(0x01, 0x0100); // set Driver Output Control LCD_Write_COM_DATA16(0x02, 0x0200); // set 1 line inversion LCD_Write_COM_DATA16(0x03, 0x1030); // set GRAM write direction and BGR=1. LCD_Write_COM_DATA16(0x04, 0x0000); // Resize register LCD_Write_COM_DATA16(0x08, 0x0207); // set the back porch and front porch LCD_Write_COM_DATA16(0x09, 0x0000); // set non-display area refresh cycle ISC[3:0] LCD_Write_COM_DATA16(0x0A, 0x0000); // FMARK function LCD_Write_COM_DATA16(0x0C, 0x0000); // RGB interface setting LCD_Write_COM_DATA16(0x0D, 0x0000); // Frame marker Position LCD_Write_COM_DATA16(0x0F, 0x0000); // RGB interface polarity //*************Power On sequence ****************// LCD_Write_COM_DATA16(0x10, 0x0000); // SAP, BT[3:0], AP, DSTB, SLP, STB LCD_Write_COM_DATA16(0x11, 0x0007); // DC1[2:0], DC0[2:0], VC[2:0] LCD_Write_COM_DATA16(0x12, 0x0000); // VREG1OUT voltage LCD_Write_COM_DATA16(0x13, 0x0000); // VDV[4:0] for VCOM amplitude LCD_Write_COM_DATA16(0x07, 0x0001); delay_ms(200); // Dis-charge capacitor power voltage LCD_Write_COM_DATA16(0x10, 0x1690); // SAP, BT[3:0], AP, DSTB, SLP, STB LCD_Write_COM_DATA16(0x11, 0x0227); // Set DC1[2:0], DC0[2:0], VC[2:0] delay_ms(50); // Delay 50ms LCD_Write_COM_DATA16(0x12, 0x000D); // 0012 delay_mslay(50); // Delay 50ms LCD_Write_COM_DATA16(0x13, 0x1200); // VDV[4:0] for VCOM amplitude LCD_Write_COM_DATA16(0x29, 0x000A); // 04 VCM[5:0] for VCOMH LCD_Write_COM_DATA16(0x2B, 0x000D); // Set Frame Rate delay_ms(50); // Delay 50ms LCD_Write_COM_DATA16(0x20, 0x0000); // GRAM horizontal Address LCD_Write_COM_DATA16(0x21, 0x0000); // GRAM Vertical Address // ----------- Adjust the Gamma Curve ----------// LCD_Write_COM_DATA16(0x30, 0x0000); LCD_Write_COM_DATA16(0x31, 0x0404); LCD_Write_COM_DATA16(0x32, 0x0003); LCD_Write_COM_DATA16(0x35, 0x0405); LCD_Write_COM_DATA16(0x36, 0x0808); LCD_Write_COM_DATA16(0x37, 0x0407); LCD_Write_COM_DATA16(0x38, 0x0303); LCD_Write_COM_DATA16(0x39, 0x0707); LCD_Write_COM_DATA16(0x3C, 0x0504); LCD_Write_COM_DATA16(0x3D, 0x0808); //------------------ Set GRAM area ---------------// LCD_Write_COM_DATA16(0x50, 0x0000); // Horizontal GRAM Start Address LCD_Write_COM_DATA16(0x51, 0x00EF); // Horizontal GRAM End Address LCD_Write_COM_DATA16(0x52, 0x0000); // Vertical GRAM Start Address LCD_Write_COM_DATA16(0x53, 0x013F); // Vertical GRAM Start Address LCD_Write_COM_DATA16(0x60, 0xA700); // Gate Scan Line LCD_Write_COM_DATA16(0x61, 0x0001); // NDL,VLE, REV LCD_Write_COM_DATA16(0x6A, 0x0000); // set scrolling line //-------------- Partial Display Control ---------// LCD_Write_COM_DATA16(0x80, 0x0000); LCD_Write_COM_DATA16(0x81, 0x0000); LCD_Write_COM_DATA16(0x82, 0x0000); LCD_Write_COM_DATA16(0x83, 0x0000); LCD_Write_COM_DATA16(0x84, 0x0000); LCD_Write_COM_DATA16(0x85, 0x0000); //-------------- Panel Control -------------------// LCD_Write_COM_DATA16(0x90, 0x0010); LCD_Write_COM_DATA16(0x92, 0x0000); LCD_Write_COM_DATA16(0x07, 0x0133); // 262K color and display ON break; #endif #ifndef DISABLE_HX8340B case HX8340B: LCD_Write_COM_DATA16(0x26,0x0084); //PT=10,GON=0, DTE=0, D=0100 delay_ms(40); LCD_Write_COM_DATA16(0x26,0x00B8); //PT=10,GON=1, DTE=1, D=1000 delay_mslay(40); LCD_Write_COM_DATA16(0x26,0x00BC); //PT=10,GON=1, DTE=1, D=1100 delay_ms(20); //新增加的延时 080421 // LCD_Write_COM_DATA(0x0001,0x0000); // PTL='1' Enter Partail mode //Driving ability Setting LCD_Write_COM_DATA16(0x60,0x0000); LCD_Write_COM_DATA16(0x61,0x0006); LCD_Write_COM_DATA16(0x62,0x0000); LCD_Write_COM_DATA16(0x63,0x00C8); lib_delay_ms(20); //Gamma Setting LCD_Write_COM_DATA16(0x73,0x0070); LCD_Write_COM_DATA16(0x40,0x0000); LCD_Write_COM_DATA16(0x41,0x0040); LCD_Write_COM_DATA16(0x42,0x0045); LCD_Write_COM_DATA16(0x43,0x0001); LCD_Write_COM_DATA16(0x44,0x0060); LCD_Write_COM_DATA16(0x45,0x0005); LCD_Write_COM_DATA16(0x46,0x000C); LCD_Write_COM_DATA16(0x47,0x00D1); LCD_Write_COM_DATA16(0x48,0x0005); LCD_Write_COM_DATA16(0x50,0x0075); LCD_Write_COM_DATA16(0x51,0x0001); LCD_Write_COM_DATA16(0x52,0x0067); LCD_Write_COM_DATA16(0x53,0x0014); LCD_Write_COM_DATA16(0x54,0x00F2); LCD_Write_COM_DATA16(0x55,0x0007); LCD_Write_COM_DATA16(0x56,0x0003); LCD_Write_COM_DATA16(0x57,0x0049); delay_ms(20); //Power Setting LCD_Write_COM_DATA16(0x1F,0x0003); //VRH=4.65V VREG1(GAMMA) 00~1E 080421 LCD_Write_COM_DATA16(0x20,0x0000); //BT (VGH~15V,VGL~-12V,DDVDH~5V) LCD_Write_COM_DATA16(0x24,0x0024); //VCOMH(VCOM High voltage3.2V) 0024/12 080421 11~40 LCD_Write_COM_DATA16(0x25,0x0034); //VCOML(VCOM Low voltage -1.2V) 0034/4A 080421 29~3F //****VCOM offset**/// LCD_Write_COM_DATA16(0x23,0x002F); //VMF(no offset) delay_ms(20); //################################################################## // Power Supply Setting LCD_Write_COM_DATA16(0x18,0x0044); //I/P_RADJ,N/P_RADJ Noraml mode 60Hz LCD_Write_COM_DATA16(0x21,0x0001); //OSC_EN='1' start osc LCD_Write_COM_DATA16(0x01,0x0000); //SLP='0' out sleep LCD_Write_COM_DATA16(0x1C,0x0003); //AP=011 LCD_Write_COM_DATA16(0x19,0x0006); // VOMG=1,PON=1, DK=0, delay_ms(20); //################################################################## // Display ON Setting LCD_Write_COM_DATA16(0x26,0x0084); //PT=10,GON=0, DTE=0, D=0100 delay_ms(40); LCD_Write_COM_DATA16(0x26,0x00B8); //PT=10,GON=1, DTE=1, D=1000 delay_ms(40); LCD_Write_COM_DATA16(0x26,0x00BC); //PT=10,GON=1, DTE=1, D=1100 delay_ms(20); //SET GRAM AREA LCD_Write_COM_DATA16(0x02,0x0000); LCD_Write_COM_DATA16(0x03,0x0000); LCD_Write_COM_DATA16(0x04,0x0000); LCD_Write_COM_DATA16(0x05,0x00AF); LCD_Write_COM_DATA16(0x06,0x0000); LCD_Write_COM_DATA16(0x07,0x0000); LCD_Write_COM_DATA16(0x08,0x0000); LCD_Write_COM_DATA16(0x09,0x00DB); delay_ms(20); LCD_Write_COM_DATA16(0x16,0x0008); //MV MX MY ML SET 0028横屏显示(此时LCD_Write_COM_DATA(0x0005,0x00DB); LCD_Write_COM_DATA(0x0009,0x00AF);) LCD_Write_COM_DATA16(0x17,0x0005);//COLMOD Control Register (R17h) LCD_Write_COM(0x21); LCD_Write_COM(0x22); break; #endif #ifndef DISABLE_HX8340B_S case HX8340B_S: LCD_Write_COM(0xC1); LCD_Write_DATA8(0xFF); LCD_Write_DATA8(0x83); LCD_Write_DATA8(0x40); LCD_Write_COM(0x11); lib_delay_ms(100); LCD_Write_COM(0xCA); LCD_Write_DATA8(0x70); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0xD9); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x11); LCD_Write_COM(0xC9); LCD_Write_DATA8(0x90); LCD_Write_DATA8(0x49); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x28); LCD_Write_DATA8(0x28); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x06); delay_ms(20); LCD_Write_COM(0xC2); LCD_Write_DATA8(0x60); LCD_Write_DATA8(0x71); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x0E); LCD_Write_DATA8(0x05); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x09); LCD_Write_DATA8(0x31); LCD_Write_DATA8(0x0A); LCD_Write_COM(0xc3); LCD_Write_DATA8(0x67); LCD_Write_DATA8(0x30); LCD_Write_DATA8(0x61); LCD_Write_DATA8(0x17); LCD_Write_DATA8(0x48); LCD_Write_DATA8(0x07); LCD_Write_DATA8(0x05); LCD_Write_DATA8(0x33); delay_ms(10); LCD_Write_COM(0xB5); LCD_Write_DATA8(0x35); LCD_Write_DATA8(0x20); LCD_Write_DATA8(0x45); LCD_Write_COM(0xB4); LCD_Write_DATA8(0x33); LCD_Write_DATA8(0x25); LCD_Write_DATA8(0x4c); delay_ms(10); LCD_Write_COM(0x3a); LCD_Write_DATA8(0x05); LCD_Write_COM(0x29); delay_ms(10); LCD_Write_COM(0x2a); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0xaf); LCD_Write_COM(0x2b); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0xdb); LCD_Write_COM(0x2c); break; #endif #ifndef DISABLE_ST7735 case ST7735: LCD_Write_COM(0x11);//Sleep exit delay_ms(12); //ST7735R Frame Rate LCD_Write_COM(0xB1); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x2C); LCD_Write_DATA8(0x2D); LCD_Write_COM(0xB2); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x2C); LCD_Write_DATA8(0x2D); LCD_Write_COM(0xB3); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x2C); LCD_Write_DATA8(0x2D); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x2C); LCD_Write_DATA8(0x2D); LCD_Write_COM(0xB4); //Column inversion LCD_Write_DATA8(0x07); //ST7735R Power Sequence LCD_Write_COM(0xC0); LCD_Write_DATA8(0xA2); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x84); LCD_Write_COM(0xC1); LCD_Write_DATA8(0xC5); LCD_Write_COM(0xC2); LCD_Write_DATA8(0x0A); LCD_Write_DATA8(0x00); LCD_Write_COM(0xC3); LCD_Write_DATA8(0x8A); LCD_Write_DATA8(0x2A); LCD_Write_COM(0xC4); LCD_Write_DATA8(0x8A); LCD_Write_DATA8(0xEE); LCD_Write_COM(0xC5); //VCOM LCD_Write_DATA8(0x0E); LCD_Write_COM(0x36); //MX, MY, RGB mode LCD_Write_DATA8(0xC8); //ST7735R Gamma Sequence LCD_Write_COM(0xe0); LCD_Write_DATA8(0x0f); LCD_Write_DATA8(0x1a); LCD_Write_DATA8(0x0f); LCD_Write_DATA8(0x18); LCD_Write_DATA8(0x2f); LCD_Write_DATA8(0x28); LCD_Write_DATA8(0x20); LCD_Write_DATA8(0x22); LCD_Write_DATA8(0x1f); LCD_Write_DATA8(0x1b); LCD_Write_DATA8(0x23); LCD_Write_DATA8(0x37); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x07); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x10); LCD_Write_COM(0xe1); LCD_Write_DATA8(0x0f); LCD_Write_DATA8(0x1b); LCD_Write_DATA8(0x0f); LCD_Write_DATA8(0x17); LCD_Write_DATA8(0x33); LCD_Write_DATA8(0x2c); LCD_Write_DATA8(0x29); LCD_Write_DATA8(0x2e); LCD_Write_DATA8(0x30); LCD_Write_DATA8(0x30); LCD_Write_DATA8(0x39); LCD_Write_DATA8(0x3f); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x07); LCD_Write_DATA8(0x03); LCD_Write_DATA8(0x10); LCD_Write_COM(0x2a); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x7f); LCD_Write_COM(0x2b); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x9f); LCD_Write_COM(0xF0); //Enable test command LCD_Write_DATA8(0x01); LCD_Write_COM(0xF6); //Disable ram power save mode LCD_Write_DATA8(0x00); LCD_Write_COM(0x3A); //65k mode LCD_Write_DATA8(0x05); LCD_Write_COM(0x29);//Display on break; #endif #ifndef DISABLE_PCF8833 case PCF8833: LCD_Write_COM(0x01); LCD_Write_COM(0x25); LCD_Write_DATA8(0x40); LCD_Write_COM(0x11); delay_ms(10); LCD_Write_COM(0x20); LCD_Write_COM(0x38); LCD_Write_COM(0x29); LCD_Write_COM(0x13); LCD_Write_COM(0x36); LCD_Write_DATA8(0x60); LCD_Write_COM(0x3A); LCD_Write_DATA8(0x05); LCD_Write_COM(0x2A); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x7F); LCD_Write_COM(0xB4); LCD_Write_DATA8(0x03); LCD_Write_DATA8(0x08); LCD_Write_DATA8(0x0b); LCD_Write_DATA8(0x0e); LCD_Write_COM(0xBA); LCD_Write_DATA8(0x07); LCD_Write_DATA8(0x0D); LCD_Write_COM(0x2B); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x7F); LCD_Write_COM(0x2C); break; #endif #ifndef DISABLE_S1D19122 case S1D19122: //************* Start Initial Sequence **********// LCD_Write_COM(0x11); LCD_Write_COM(0x13); LCD_Write_COM(0x29); //-------------- Display Control ---------// LCD_Write_COM(0xB0); LCD_Write_DATA8(0x05); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0xF0); LCD_Write_DATA8(0x0A); LCD_Write_DATA8(0x41); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x0A); LCD_Write_DATA8(0x30); LCD_Write_DATA8(0x31); LCD_Write_DATA8(0x36); LCD_Write_DATA8(0x37); LCD_Write_DATA8(0x40); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x3F); LCD_Write_DATA8(0x40); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x81); LCD_Write_DATA8(0x04); LCD_Write_DATA8(0x05); LCD_Write_DATA8(0x64); // ----------- Gamma Curve Set3 Postive----------// LCD_Write_COM(0xFC); LCD_Write_DATA8(0x88); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x42); LCD_Write_DATA8(0x42); LCD_Write_DATA8(0x22); LCD_Write_DATA8(0x11); LCD_Write_DATA8(0x11); LCD_Write_DATA8(0x22); LCD_Write_DATA8(0x99); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0xBB); LCD_Write_DATA8(0xBB); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0x33); LCD_Write_DATA8(0x33); LCD_Write_DATA8(0x11); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0xC0); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); // ----------- Gamma Curve Set3 Negative----------// LCD_Write_COM(0xFD); LCD_Write_DATA8(0x88); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x42); LCD_Write_DATA8(0x42); LCD_Write_DATA8(0x22); LCD_Write_DATA8(0x11); LCD_Write_DATA8(0x11); LCD_Write_DATA8(0x22); LCD_Write_DATA8(0x99); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0xBB); LCD_Write_DATA8(0xBB); LCD_Write_DATA8(0xAA); LCD_Write_DATA8(0x33); LCD_Write_DATA8(0x33); LCD_Write_DATA8(0x11); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x03); // ----------- EVRSER Regulator Voltage Setting---------// LCD_Write_COM(0xBE); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x15); LCD_Write_DATA8(0x16); LCD_Write_DATA8(0x08); LCD_Write_DATA8(0x09); LCD_Write_DATA8(0x15); LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); // -----------Module Definiton Setting---------// LCD_Write_COM(0xC0); LCD_Write_DATA8(0x0E); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); // -----------PWRDEF Power Ability Ddfinition----------// LCD_Write_COM(0xC1); LCD_Write_DATA8(0x2F); LCD_Write_DATA8(0x23); LCD_Write_DATA8(0xB4); LCD_Write_DATA8(0xFF); LCD_Write_DATA8(0x24); LCD_Write_DATA8(0x03); LCD_Write_DATA8(0x20); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x20); LCD_Write_DATA8(0x20); LCD_Write_DATA8(0x00); // -----------Other Setting----------// LCD_Write_COM(0xC2); LCD_Write_DATA8(0x03); LCD_Write_COM(0x26); LCD_Write_DATA8(0x08); LCD_Write_COM(0x35); LCD_Write_COM(0x36); LCD_Write_DATA8(0x64); LCD_Write_COM(0x3A); LCD_Write_DATA8(0x05); LCD_Write_COM(0x2A); LCD_Write_DATA8(0x013f); LCD_Write_COM(0x2B); LCD_Write_DATA8(0xEF); LCD_Write_COM(0x2c); // -----------RGB Setting----------// LCD_Write_COM(0x2D); uint8_t R=0; uint8_t G=0; uint8_t B=0; for(uint8_t i=0;i<32;i++) { LCD_Write_DATA8(R); R=R+2; } for(uint8_t i=0;i<64;i++) { LCD_Write_DATA8(G); G=G+1; } for(uint8_t i=0;i<32;i++) { LCD_Write_DATA8(B); B=B+2; } break; #endif #ifndef DISABLE_HX8352A case HX8352A: LCD_Write_COM_DATA8(0x83, 0x02); //TESTM=1 LCD_Write_COM_DATA8(0x85, 0x03); //VDC_SEL=011 LCD_Write_COM_DATA8(0x8B, 0x01); LCD_Write_COM_DATA8(0x8C, 0x93); //STBA[7]=1,STBA[5:4]=01,STBA[1:0]=11 LCD_Write_COM_DATA8(0x91, 0x01); //DCDC_SYNC=1 LCD_Write_COM_DATA8(0x83, 0x00); //TESTM=0 //Gamma Setting LCD_Write_COM_DATA8(0x3E, 0xB0); LCD_Write_COM_DATA8(0x3F, 0x03); LCD_Write_COM_DATA8(0x40, 0x10); LCD_Write_COM_DATA8(0x41, 0x56); LCD_Write_COM_DATA8(0x42, 0x13); LCD_Write_COM_DATA8(0x43, 0x46); LCD_Write_COM_DATA8(0x44, 0x23); LCD_Write_COM_DATA8(0x45, 0x76); LCD_Write_COM_DATA8(0x46, 0x00); LCD_Write_COM_DATA8(0x47, 0x5E); LCD_Write_COM_DATA8(0x48, 0x4F); LCD_Write_COM_DATA8(0x49, 0x40); //**********Power On sequence************ LCD_Write_COM_DATA8(0x17, 0x91); LCD_Write_COM_DATA8(0x2B, 0xF9); delay_ms(10); LCD_Write_COM_DATA8(0x1B, 0x14); LCD_Write_COM_DATA8(0x1A, 0x11); LCD_Write_COM_DATA8(0x1C, 0x06); LCD_Write_COM_DATA8(0x1F, 0x42); delay_ms(20); LCD_Write_COM_DATA8(0x19, 0x0A); LCD_Write_COM_DATA8(0x19, 0x1A); delay_ms(40); LCD_Write_COM_DATA8(0x19, 0x12); delay_ms(40); LCD_Write_COM_DATA8(0x1E, 0x27); delay_ms(100); //**********DISPLAY ON SETTING*********** LCD_Write_COM_DATA8(0x24, 0x60); LCD_Write_COM_DATA8(0x3D, 0x40); LCD_Write_COM_DATA8(0x34, 0x38); LCD_Write_COM_DATA8(0x35, 0x38); LCD_Write_COM_DATA8(0x24, 0x38); delay_ms(40); LCD_Write_COM_DATA8(0x24, 0x3C); LCD_Write_COM_DATA8(0x16, 0x1C); LCD_Write_COM_DATA8(0x01, 0x06); LCD_Write_COM_DATA8(0x55, 0x00); LCD_Write_COM_DATA8(0x02, 0x00); LCD_Write_COM_DATA8(0x03, 0x00); LCD_Write_COM_DATA8(0x04, 0x00); LCD_Write_COM_DATA8(0x05, 0xef); LCD_Write_COM_DATA8(0x06, 0x00); LCD_Write_COM_DATA8(0x07, 0x00); LCD_Write_COM_DATA8(0x08, 0x01); LCD_Write_COM_DATA8(0x09, 0x8f); LCD_Write_COM(0x22); break; #endif #ifndef DISABLE_SSD1963_480 case SSD1963_480: LCD_Write_COM(0xE2); //PLL multiplier, set PLL clock to 120M LCD_Write_DATA8(0x23); //N=0x36 for 6.5M, 0x23 for 10M crystal LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x54); LCD_Write_COM(0xE0); // PLL enable LCD_Write_DATA8(0x01); delay_ms(10); LCD_Write_COM(0xE0); LCD_Write_DATA8(0x03); delay_ms(10); LCD_Write_COM(0x01); // software reset delay_ms(100); LCD_Write_COM(0xE6); //PLL setting for PCLK, depends on resolution LCD_Write_DATA8(0x01); LCD_Write_DATA8(0x1F); LCD_Write_DATA8(0xFF); LCD_Write_COM(0xB0); //LCD SPECIFICATION LCD_Write_DATA8((is24bit) ? 0x20 : 0x00); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x01); //Set HDP 479 LCD_Write_DATA8(0xDF); LCD_Write_DATA8(0x01); //Set VDP 271 LCD_Write_DATA8(0x0F); LCD_Write_DATA8(0x00); LCD_Write_COM(0xB4); //HSYNC LCD_Write_DATA8(0x02); //Set HT 531 LCD_Write_DATA8(0x13); LCD_Write_DATA8(0x00); //Set HPS 8 LCD_Write_DATA8(0x08); LCD_Write_DATA8(0x2B); //Set HPW 43 LCD_Write_DATA8(0x00); //Set LPS 2 LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x00); LCD_Write_COM(0xB6); //VSYNC LCD_Write_DATA8(0x01); //Set VT 288 LCD_Write_DATA8(0x20); LCD_Write_DATA8(0x00); //Set VPS 4 LCD_Write_DATA8(0x04); LCD_Write_DATA8(0x0c); //Set VPW 12 LCD_Write_DATA8(0x00); //Set FPS 2 LCD_Write_DATA8(0x02); LCD_Write_COM(0xBA); LCD_Write_DATA8(0x0F); //GPIO[3:0] out 1 LCD_Write_COM(0xB8); LCD_Write_DATA8(0x07); //GPIO3=input, GPIO[2:0]=output LCD_Write_DATA8(0x01); //GPIO0 normal LCD_Write_COM(0x36); //rotation LCD_Write_DATA8(0x22); LCD_Write_COM(0xF0); //pixel data interface LCD_Write_DATA8(0x03); delay_ms(1); setXY(0, 0, 479, 271); LCD_Write_COM(0x29); //display on LCD_Write_COM(0xBE); //set PWM for B/L LCD_Write_DATA8(0x06); LCD_Write_DATA8(0xf0); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0xf0); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_COM(0xd0); LCD_Write_DATA8(0x0d); LCD_Write_COM(0x2C); break; #endif #ifndef DISABLE_SSD1963_800 case SSD1963_800: LCD_Write_COM(0xE2); //PLL multiplier, set PLL clock to 120M LCD_Write_DATA8(0x1E); //N=0x36 for 6.5M, 0x23 for 10M crystal LCD_Write_DATA8(0x02); LCD_Write_DATA8(0x54); LCD_Write_COM(0xE0); // PLL enable LCD_Write_DATA8(0x01); delay_ms(10); LCD_Write_COM(0xE0); LCD_Write_DATA8(0x03); delay_ms(10); LCD_Write_COM(0x01); // software reset delay_ms(100); LCD_Write_COM(0xE6); //PLL setting for PCLK, depends on resolution LCD_Write_DATA8(0x03); LCD_Write_DATA8(0xFF); LCD_Write_DATA8(0xFF); LCD_Write_COM(0xB0); //LCD SPECIFICATION LCD_Write_DATA8((is24bit) ? 0x24 : 0x04); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x03); //Set HDP 799 LCD_Write_DATA8(0x1F); LCD_Write_DATA8(0x01); //Set VDP 479 LCD_Write_DATA8(0xDF); LCD_Write_DATA8(0x00); LCD_Write_COM(0xB4); //HSYNC LCD_Write_DATA8(0x03); //Set HT 928 LCD_Write_DATA8(0xA0); LCD_Write_DATA8(0x00); //Set HPS 46 LCD_Write_DATA8(0x2E); LCD_Write_DATA8(0x30); //Set HPW 48 LCD_Write_DATA8(0x00); //Set LPS 15 LCD_Write_DATA8(0x0F); LCD_Write_DATA8(0x00); LCD_Write_COM(0xB6); //VSYNC LCD_Write_DATA8(0x02); //Set VT 525 LCD_Write_DATA8(0x0D); LCD_Write_DATA8(0x00); //Set VPS 16 LCD_Write_DATA8(0x10); LCD_Write_DATA8(0x10); //Set VPW 16 LCD_Write_DATA8(0x00); //Set FPS 8 LCD_Write_DATA8(0x08); LCD_Write_COM(0xBA); LCD_Write_DATA8(0x0F); //GPIO[3:0] out 1 LCD_Write_COM(0xB8); LCD_Write_DATA8(0x07); //GPIO3=input, GPIO[2:0]=output LCD_Write_DATA8(0x01); //GPIO0 normal LCD_Write_COM(0x36); //rotation LCD_Write_DATA8(0x22); LCD_Write_COM(0xF0); //pixel data interface LCD_Write_DATA8(0x03); delay_ms(1); setXY(0, 0, 799, 479); LCD_Write_COM(0x29); //display on LCD_Write_COM(0xBE); //set PWM for B/L LCD_Write_DATA8(0x06); LCD_Write_DATA8(0xf0); LCD_Write_DATA8(0x01); LCD_Write_DATA8(0xf0); LCD_Write_DATA8(0x00); LCD_Write_DATA8(0x00); LCD_Write_COM(0xd0); LCD_Write_DATA8(0x0d); LCD_Write_COM(0x2C); break; #endif #ifndef DISABLE_S6D1121 case S6D1121: LCD_Write_COM_DATA16(0x11,0x2004); LCD_Write_COM_DATA16(0x13,0xCC00); LCD_Write_COM_DATA16(0x15,0x2600); LCD_Write_COM_DATA16(0x14,0x252A); LCD_Write_COM_DATA16(0x12,0x0033); LCD_Write_COM_DATA16(0x13,0xCC04); LCD_Write_COM_DATA16(0x13,0xCC06); LCD_Write_COM_DATA16(0x13,0xCC4F); LCD_Write_COM_DATA16(0x13,0x674F); LCD_Write_COM_DATA16(0x11,0x2003); LCD_Write_COM_DATA16(0x30,0x2609); LCD_Write_COM_DATA16(0x31,0x242C); LCD_Write_COM_DATA16(0x32,0x1F23); LCD_Write_COM_DATA16(0x33,0x2425); LCD_Write_COM_DATA16(0x34,0x2226); LCD_Write_COM_DATA16(0x35,0x2523); LCD_Write_COM_DATA16(0x36,0x1C1A); LCD_Write_COM_DATA16(0x37,0x131D); LCD_Write_COM_DATA16(0x38,0x0B11); LCD_Write_COM_DATA16(0x39,0x1210); LCD_Write_COM_DATA16(0x3A,0x1315); LCD_Write_COM_DATA16(0x3B,0x3619); LCD_Write_COM_DATA16(0x3C,0x0D00); LCD_Write_COM_DATA16(0x3D,0x000D); LCD_Write_COM_DATA16(0x16,0x0007); LCD_Write_COM_DATA16(0x02,0x0013); LCD_Write_COM_DATA16(0x03,0x0003); LCD_Write_COM_DATA16(0x01,0x0127); LCD_Write_COM_DATA16(0x08,0x0303); LCD_Write_COM_DATA16(0x0A,0x000B); LCD_Write_COM_DATA16(0x0B,0x0003); LCD_Write_COM_DATA16(0x0C,0x0000); LCD_Write_COM_DATA16(0x41,0x0000); LCD_Write_COM_DATA16(0x50,0x0000); LCD_Write_COM_DATA16(0x60,0x0005); LCD_Write_COM_DATA16(0x70,0x000B); LCD_Write_COM_DATA16(0x71,0x0000); LCD_Write_COM_DATA16(0x78,0x0000); LCD_Write_COM_DATA16(0x7A,0x0000); LCD_Write_COM_DATA16(0x79,0x0007); LCD_Write_COM_DATA16(0x07,0x0051); LCD_Write_COM_DATA16(0x07,0x0053); LCD_Write_COM_DATA16(0x79,0x0000); LCD_Write_COM(0x22); break; #endif default: break; } removeCS(); setColor(0xFFFF); setBackColor(0); cfont.font=0; } void UTFT::setXY(uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2) { if (orient & SwapXY) { swap(x1, y1); swap(x2, y2); if (orient & ReverseX) { y1 = disp_y_size - y1; y2 = disp_y_size - y2; swap(y1, y2); } if (orient & ReverseY) { x1 = disp_x_size - x1; x2 = disp_x_size - x2; swap(x1, x2); } } else { if (orient & ReverseY) { y1 = disp_y_size - y1; y2 = disp_y_size - y2; swap(y1, y2); } if (orient & ReverseX) { x1 = disp_x_size - x1; x2 = disp_x_size - x2; swap(x1, x2); } } switch(displayModel) { #if !(defined(DISABLE_HX8347A) && defined(DISABLE_HX8352A)) case HX8347A: case HX8352A: LCD_Write_COM_DATA8(0x02,x1>>8); LCD_Write_COM_DATA8(0x03,x1); LCD_Write_COM_DATA8(0x04,x2>>8); LCD_Write_COM_DATA8(0x05,x2); LCD_Write_COM_DATA8(0x06,y1>>8); LCD_Write_COM_DATA8(0x07,y1); LCD_Write_COM_DATA8(0x08,y2>>8); LCD_Write_COM_DATA8(0x09,y2); LCD_Write_COM(0x22); break; #endif #if !defined(DISABLE_ILI9327) case ILI9327: LCD_Write_COM(0x2a); LCD_Write_DATA8(0x00,x1>>8); LCD_Write_DATA8(0x00,x1); LCD_Write_DATA8(0x00,x2>>8); LCD_Write_DATA8(0x00,x2); LCD_Write_COM(0x2b); LCD_Write_DATA8(0x00,y1>>8); LCD_Write_DATA8(0x00,y1); LCD_Write_DATA8(0x00,y2>>8); LCD_Write_DATA8(0x00,y2); LCD_Write_COM(0x2c); break; #endif #if !defined(DISABLE_SSD1289) case SSD1289: LCD_Write_COM_DATA16(0x44,(x2<<8)+x1); LCD_Write_COM_DATA16(0x45,y1); LCD_Write_COM_DATA16(0x46,y2); LCD_Write_COM_DATA16(0x4e,x1); LCD_Write_COM_DATA16(0x4f,y1); LCD_Write_COM(0x22); break; #endif #if !(defined(DISABLE_ILI9325C) && defined(DISABLE_ILI9325D)) case ILI9325C: case ILI9325D: LCD_Write_COM_DATA16(0x20,x1); LCD_Write_COM_DATA16(0x21,y1); LCD_Write_COM_DATA16(0x50,x1); LCD_Write_COM_DATA16(0x52,y1); LCD_Write_COM_DATA16(0x51,x2); LCD_Write_COM_DATA16(0x53,y2); LCD_Write_COM(0x22); break; #endif #if !defined(DISABLE_HX8340B_8) case HX8340B: LCD_Write_COM_DATA16(0x02,0x0000); LCD_Write_COM_DATA16(0x03,x1); LCD_Write_COM_DATA16(0x04,0x0000); LCD_Write_COM_DATA16(0x05,x2); LCD_Write_COM_DATA16(0x06,0x0000); LCD_Write_COM_DATA16(0x07,y1); LCD_Write_COM_DATA16(0x08,0x0000); LCD_Write_COM_DATA16(0x09,y2); LCD_Write_COM(0x22); break; #endif #if !(defined(DISABLE_HX8340B_S) && defined(DISABLE_ST7735) && defined(DISABLE_S1D19122)) case HX8340B_S: case ST7735: case S1D19122: LCD_Write_COM(0x2a); LCD_Write_DATA8(x1>>8); LCD_Write_DATA8(x1); LCD_Write_DATA8(x2>>8); LCD_Write_DATA8(x2); LCD_Write_COM(0x2b); LCD_Write_DATA8(y1>>8); LCD_Write_DATA8(y1); LCD_Write_DATA8(y2>>8); LCD_Write_DATA8(y2); LCD_Write_COM(0x2c); break; #endif #if !defined(DISABLE_PCF8833) case PCF8833: LCD_Write_COM(0x2a); LCD_Write_DATA8(x1); LCD_Write_DATA8(x2); LCD_Write_COM(0x2b); LCD_Write_DATA8(y1); LCD_Write_DATA8(y2); LCD_Write_COM(0x2c); break; #endif #if !(defined(DISABLE_SSD1963_480) && defined(DISABLE_SSD1963_800)) case SSD1963_480: case SSD1963_800: swap(x1, y1); swap(x2, y2); LCD_Write_COM(0x2a); LCD_Write_DATA8(x1>>8); LCD_Write_DATA8(x1); LCD_Write_DATA8(x2>>8); LCD_Write_DATA8(x2); LCD_Write_COM(0x2b); LCD_Write_DATA8(y1>>8); LCD_Write_DATA8(y1); LCD_Write_DATA8(y2>>8); LCD_Write_DATA8(y2); LCD_Write_COM(0x2c); break; #endif #ifndef DISABLE_S6D1121 case S6D1121: LCD_Write_COM_DATA16(0x46,(x2 << 8) | x1); LCD_Write_COM_DATA16(0x47,y2); LCD_Write_COM_DATA16(0x48,y1); LCD_Write_COM_DATA16(0x20,x1); LCD_Write_COM_DATA16(0x21,y1); LCD_Write_COM(0x22); break; #endif default: break; } } void UTFT::clrXY() { if (orient & SwapXY) { setXY(0, 0, disp_y_size, disp_x_size); } else { setXY(0, 0, disp_x_size, disp_y_size); } } void UTFT::drawRect(int x1, int y1, int x2, int y2) { if (x1 > x2) { swap(x1, x2); } if (y1 > y2) { swap(y1, y2); } drawHLine(x1, y1, x2-x1); drawHLine(x1, y2, x2-x1); drawVLine(x1, y1, y2-y1); drawVLine(x2, y1, y2-y1); } void UTFT::drawRoundRect(int x1, int y1, int x2, int y2) { if (x1>x2) { swap(x1, x2); } if (y1>y2) { swap(y1, y2); } if ((x2-x1) > 4 && (y2-y1) > 4) { drawPixel(x1+1, y1+1); drawPixel(x2-1, y1+1); drawPixel(x1+1, y2-1); drawPixel(x2-1, y2-1); drawHLine(x1+2, y1, x2-x1-4); drawHLine(x1+2, y2, x2-x1-4); drawVLine(x1, y1+2, y2-y1-4); drawVLine(x2, y1+2, y2-y1-4); } } void UTFT::fillRect(int x1, int y1, int x2, int y2, Colour grad) { if (x1>x2) { swap(x1, x2); } if (y1>y2) { swap(y1, y2); } Colour fcolourSave = fcolour; if (orient & SwapXY) { for (int i = x1; i <= x2; i++) { drawVLine(i, y1, y2-y1); fcolour += grad; } } else { for (int i = y1; i <= y2; i++) { drawHLine(x1, i, x2-x1); fcolour += grad; } } fcolour = fcolourSave; } void UTFT::fillRoundRect(int x1, int y1, int x2, int y2, Colour grad, uint8_t gradChange) { if (x1>x2) { swap(x1, x2); } if (y1>y2) { swap(y1, y2); } if ((x2-x1) > 4 && (y2-y1) > 4) { Colour fcolourSave = fcolour; uint8_t gradCount = 0; drawHLine(x1+2, y1, x2-x1-4); ++y1; if (++gradCount == gradChange) { gradCount = 0; fcolour -= grad; } drawHLine(x1+1, y1, x2-x1-2); ++y1; if (++gradCount == gradChange) { gradCount = 0; fcolour -= grad; } while (y1 + 1 < y2) { drawHLine(x1, y1, x2-x1); ++y1; if (++gradCount == gradChange) { gradCount = 0; fcolour -= grad; } } drawHLine(x1+1, y1, x2-x1-2); ++y1; if (++gradCount == gradChange) { gradCount = 0; fcolour -= grad; } drawHLine(x1+2, y1, x2-x1-4); fcolour = fcolourSave; } } void UTFT::drawCircle(int x, int y, int radius) { int f = 1 - radius; int ddF_x = 1; int ddF_y = -2 * radius; int x1 = 0; int y1 = radius; assertCS(); setXY(x, y + radius, x, y + radius); LCD_Write_DATA16(fcolour); setXY(x, y - radius, x, y - radius); LCD_Write_DATA16(fcolour); setXY(x + radius, y, x + radius, y); LCD_Write_DATA16(fcolour); setXY(x - radius, y, x - radius, y); LCD_Write_DATA16(fcolour); while(x1 < y1) { if(f >= 0) { y1--; ddF_y += 2; f += ddF_y; } x1++; ddF_x += 2; f += ddF_x; setXY(x + x1, y + y1, x + x1, y + y1); LCD_Write_DATA16(fcolour); setXY(x - x1, y + y1, x - x1, y + y1); LCD_Write_DATA16(fcolour); setXY(x + x1, y - y1, x + x1, y - y1); LCD_Write_DATA16(fcolour); setXY(x - x1, y - y1, x - x1, y - y1); LCD_Write_DATA16(fcolour); setXY(x + y1, y + x1, x + y1, y + x1); LCD_Write_DATA16(fcolour); setXY(x - y1, y + x1, x - y1, y + x1); LCD_Write_DATA16(fcolour); setXY(x + y1, y - x1, x + y1, y - x1); LCD_Write_DATA16(fcolour); setXY(x - y1, y - x1, x - y1, y - x1); LCD_Write_DATA16(fcolour); } removeCS(); clrXY(); } void UTFT::fillCircle(int x, int y, int radius) { int f = 1 - radius; int ddF_x = 1; int ddF_y = -2 * radius; int x1 = 0; int y1 = radius; assertCS(); setXY(x, y + radius, x, y + radius); LCD_Write_DATA16(fcolour); setXY(x, y - radius, x, y - radius); LCD_Write_DATA16(fcolour); setXY(x - radius, y, x + radius, y); LCD_Write_Repeated_DATA16(fcolour, radius + radius); while(x1 < y1) { if(f >= 0) { y1--; ddF_y += 2; f += ddF_y; } x1++; ddF_x += 2; f += ddF_x; setXY(x - x1, y + y1, x + x1, y + y1); LCD_Write_Repeated_DATA16(fcolour, x1 + x1); setXY(x - x1, y - y1, x + x1, y - y1); LCD_Write_Repeated_DATA16(fcolour, x1 + x1); setXY(x - y1, y + x1, x + y1, y + x1); LCD_Write_Repeated_DATA16(fcolour, y1 + y1); setXY(x - y1, y - x1, x + y1, y - x1); LCD_Write_Repeated_DATA16(fcolour, y1 + y1); } removeCS(); clrXY(); } void UTFT::clrScr() { assertCS(); clrXY(); LCD_Write_Repeated_DATA16(0, disp_x_size+1, disp_y_size+1); removeCS(); } uint16_t UTFT::fromRGB(uint8_t r, uint8_t g, uint8_t b) { return ((r & 248) << 8) | ((g & 252) << 3) | (b >> 3); } void UTFT::fillScr(Colour c) { assertCS(); clrXY(); LCD_Write_Repeated_DATA16(c, disp_x_size+1, disp_y_size+1); removeCS(); } void UTFT::drawPixel(int x, int y) { assertCS(); setXY(x, y, x, y); LCD_Write_DATA16(fcolour); removeCS(); clrXY(); } void UTFT::drawLine(int x1, int y1, int x2, int y2) { if (y1 == y2) { if (x1 > x2) { swap(x1, x2); } drawHLine(x1, y1, x2-x1); } else if (x1==x2) { if (y1>y2) { swap(y1, y2); } drawVLine(x1, y1, y2-y1); } else { // Draw a line using the Bresenham Algorithm (thanks Wikipedia) int dx = (x2 >= x1) ? x2 - x1 : x1 - x2; int dy = (y2 >= y1) ? y2 - y1 : y1 - y2; int sx = (x1 < x2) ? 1 : -1; int sy = (y1 < y2) ? 1 : -1; int err = dx - dy; assertCS(); for (;;) { setXY(x1, y1, x1, y1); LCD_Write_DATA16(fcolour); if (x1 == x2 && y1 == y2) break; int e2 = err + err; if (e2 > -dy) { err -= dy; x1 += sx; } if (e2 < dx) { err += dx; y1 += sy; } } removeCS(); } clrXY(); } void UTFT::drawHLine(int x, int y, int len) { assertCS(); setXY(x, y, x+len, y); LCD_Write_Repeated_DATA16(fcolour, len + 1); removeCS(); clrXY(); } void UTFT::drawVLine(int x, int y, int len) { assertCS(); setXY(x, y, x, y+len); LCD_Write_Repeated_DATA16(fcolour, len + 1); removeCS(); clrXY(); } // New print functions void UTFT::setTextPos(uint16_t x, uint16_t y, uint16_t rm) { textXpos = x; textYpos = y; uint16_t xSize = (orient & SwapXY) ? disp_y_size : disp_x_size; textRightMargin = (rm > xSize) ? xSize + 1 : rm; lastCharColData = 0UL; // flag that we just set the cursor position, so no space before next character } size_t UTFT::print(const char *s, uint16_t x, uint16_t y, uint16_t rm) { setTextPos(x, y, rm); return Print::print(s); } void UTFT::clearToMargin() { if (textXpos < textRightMargin) { uint8_t ySize = cfont.y_size; if (textYpos + ySize > disp_y_size) { ySize = disp_y_size + 1 - textYpos; } assertCS(); setXY(textXpos, textYpos, textRightMargin - 1, textYpos + ySize - 1); LCD_Write_Repeated_DATA16(bcolour, textRightMargin - textXpos, ySize); removeCS(); clrXY(); } } // Write a UTF8 byte. // If textYpos is off the end of the display, then don't write anything, just update textXpos and lastCharColData size_t UTFT::write(uint8_t c) { if (numContinuationBytesLeft == 0) { if (c < 0x80) { return writeNative(c); } else if ((c & 0xE0) == 0xC0) { charVal = (uint32_t)(c & 0x1F); numContinuationBytesLeft = 1; return 0; } else if ((c & 0xF0) == 0xE0) { charVal = (uint32_t)(c & 0x0F); numContinuationBytesLeft = 2; return 0; } else if ((c & 0xF8) == 0xF0) { charVal = (uint32_t)(c & 0x07); numContinuationBytesLeft = 3; return 0; } else if ((c & 0xFC) == 0xF8) { charVal = (uint32_t)(c & 0x03); numContinuationBytesLeft = 4; return 0; } else if ((c & 0xFE) == 0xFC) { charVal = (uint32_t)(c & 0x01); numContinuationBytesLeft = 5; return 0; } else { return writeNative(0x7F); } } else if ((c & 0xC0) == 0x80) { charVal = (charVal << 6) | (c & 0x3F); --numContinuationBytesLeft; if (numContinuationBytesLeft == 0) { return writeNative((charVal < 0x100) ? (uint8_t)charVal : 0x7F); } else { return 0; } } else { // Bad UTF8 state numContinuationBytesLeft = 0; return writeNative(0x7F); } } // Write a character. // If textYpos is off the end of the display, then don't write anything, just update textXpos and lastCharColData size_t UTFT::writeNative(uint8_t c) { if (translateFrom != 0) { const char* p = strchr(translateFrom, c); if (p != 0) { c = translateTo[p - translateFrom]; } } if (c < cfont.firstChar || c > cfont.lastChar) { return 0; } uint8_t ySize = cfont.y_size; const uint8_t bytesPerColumn = (ySize + 7)/8; if (textYpos > disp_y_size) { ySize = 0; } else if (textYpos + ySize > disp_y_size) { ySize = disp_y_size + 1 - textYpos; } const uint8_t bytesPerChar = (bytesPerColumn * cfont.x_size) + 1; const uint8_t *fontPtr = (const uint8_t*)cfont.font + (bytesPerChar * (c - cfont.firstChar)); const uint32_t cmask = (1UL << cfont.y_size) - 1; uint8_t nCols = *(uint8_t*)(fontPtr++); assertCS(); if (lastCharColData != 0) // if we have written anything other than spaces { uint8_t numSpaces = cfont.spaces; // Decide whether to add the full number of space columns first (auto-kerning) // We don't add a space column before a space character. // We add a space column after a space character if we would have added one between the preceding and following characters. uint32_t thisCharColData = *(uint32_t*)(fontPtr) & cmask; // atmega328p is little-endian if (thisCharColData == 0) // for characters with deliberate space row at the start, e.g. decimal point { thisCharColData = *(uint32_t*)(fontPtr + bytesPerColumn) & cmask; // get the next column instead } bool kern = (numSpaces >= 2) ? ((thisCharColData & lastCharColData) == 0) : (((thisCharColData | (thisCharColData << 1)) & (lastCharColData | (lastCharColData << 1))) == 0); if (kern) { --numSpaces; // kern the character pair } while (numSpaces != 0 && textXpos < textRightMargin) { // Add a single space column after the character if (ySize != 0 && !transparentBackground) { setXY(textXpos, textYpos, textXpos, textYpos + ySize - 1); LCD_Write_Repeated_DATA16(bcolour, ySize); } ++textXpos; --numSpaces; } } while (nCols != 0 && textXpos < textRightMargin) { uint32_t colData = *(uint32_t*)(fontPtr); fontPtr += bytesPerColumn; if (colData != 0) { lastCharColData = colData & cmask; } if (ySize != 0) { bool doSetXY = true; if (orient & InvertText) { uint32_t mask = 1u << (ySize - 1); for (uint8_t i = 0; i < ySize; ++i) { if (colData & mask) { if (doSetXY) { setXY(textXpos, textYpos, textXpos, textYpos + ySize - i - 1); doSetXY = false; } LCD_Write_DATA16(fcolour); } else if (transparentBackground) { doSetXY = true; } else { if (doSetXY) { setXY(textXpos, textYpos, textXpos, textYpos + ySize - i - 1); doSetXY = false; } LCD_Write_DATA16(bcolour); } colData <<= 1; } } else { for (uint8_t i = 0; i < ySize; ++i) { if (colData & 1u) { if (doSetXY) { setXY(textXpos, textYpos + i, textXpos, textYpos + ySize - 1); doSetXY = false; } LCD_Write_DATA16(fcolour); } else if (transparentBackground) { doSetXY = true; } else { if (doSetXY) { setXY(textXpos, textYpos + i, textXpos, textYpos + ySize - 1); doSetXY = false; } LCD_Write_DATA16(bcolour); } colData >>= 1; } } } --nCols; ++textXpos; } removeCS(); clrXY(); return 1; } // Set up translation for characters. Useful for translating fullstop into decimal point, or changing the width of spaces. // Either the first string passed must be NULL, or the two strings must have equal lengths as returned by strlen(). void UTFT::setTranslation(const char *tFrom, const char *tTo) { translateFrom = tFrom; translateTo = tTo; } void UTFT::setFont(const uint8_t* font) { cfont.font=font; cfont.x_size=fontbyte(0); cfont.y_size=fontbyte(1); cfont.spaces=fontbyte(2); cfont.firstChar=fontbyte(3); cfont.lastChar=fontbyte(4); cfont.font += 5; } void UTFT::drawBitmap(int x, int y, int sx, int sy, const uint16_t * data, int scale, bool byCols) { int curY = y; assertCS(); for (int ty = 0; ty < sy; ty++) { for (int i = 0; i < scale; ++i) { bool xySet = false; for (int tx = 0; tx < sx; tx++) { const int actualX = (orient & InvertBitmap) ? sx - tx - 1 : tx; const uint16_t col = data[(byCols) ? (actualX * sy) + ty : (ty * sx) + actualX]; if (transparentBackground && col == 0xFFFF) { xySet = false; } else { if (!xySet) { if (orient & InvertBitmap) { setXY(x, curY, x + ((sx - tx) * scale) - 1, curY); } else { setXY(x + (tx * scale), curY, x + (sx * scale) - 1, curY); } xySet = true; } LCD_Write_Repeated_DATA16(col, scale); } } ++curY; } } removeCS(); clrXY(); } #ifndef DISABLE_BITMAP_ROTATE void UTFT::drawBitmap(int x, int y, int sx, int sy, uint16_t *data, int deg, int rox, int roy) { double radian = deg*0.0175; if (deg==0) { drawBitmap(x, y, sx, sy, data); } else { assertCS(); for (int ty=0; ty<sy; ty++) { for (int tx=0; tx<sx; tx++) { uint16_t col = data[(ty*sx)+tx]; int newx=x+rox+(((tx-rox)*cos(radian))-((ty-roy)*sin(radian))); int newy=y+roy+(((ty-roy)*cos(radian))+((tx-rox)*sin(radian))); setXY(newx, newy, newx, newy); LCD_Write_DATA16(col); } } removeCS(); } clrXY(); } #endif void UTFT::lcdOff() { assertCS(); switch (displayModel) { case PCF8833: LCD_Write_COM(0x28); break; default: break; } removeCS(); } void UTFT::lcdOn() { assertCS(); switch (displayModel) { case PCF8833: LCD_Write_COM(0x29); break; default: break; } removeCS(); } void UTFT::setContrast(uint8_t c) { assertCS(); switch (displayModel) { case PCF8833: if (c>64) c=64; LCD_Write_COM_DATA8(0x25, c); break; default: break; } removeCS(); } uint16_t UTFT::getDisplayXSize() const { return ((orient & SwapXY) ? disp_y_size : disp_x_size) + 1; } uint16_t UTFT::getDisplayYSize() const { return ((orient & SwapXY) ? disp_x_size : disp_y_size) + 1; }
[ "chandler@chandlermayo.com" ]
chandler@chandlermayo.com
74987bbd1b949155c12af35bfa9a9e446f59382f
0260ee4eb298e862b7385b2f7d7ce333be8595bb
/Gestion_Franquicias/clases/Factura.h
ee80b2fc736d75c997db7f36f2273ae44f69c992
[]
no_license
walterstamm/Gestion-Restaurant
8777d6af6260f14803b53cd752f25c57bb408b7d
e7e2a41f394f7e26efa85130231449c465f56c3c
refs/heads/master
2023-02-16T02:45:24.639690
2020-12-31T00:57:14
2020-12-31T00:57:14
302,492,253
0
0
null
null
null
null
UTF-8
C++
false
false
1,184
h
#ifndef FACTURA_H_INCLUDED #define FACTURA_H_INCLUDED #include "Fecha.h" #include "ui.h" class Factura{ private: int Nro_Fact; Fecha Fecha_Factura; int Nro_Cliente; float Total_Pagar; bool Estado; public: Factura(); ~Factura(); void setFactura(int); void setNroFact(int); void setEstado(bool); void setTotal_Pagar(float); float setImporte(); Fecha setFecha_Factura(); void getFactura(); int getNro_Factura(); int getNros_Factura(); Fecha getFecha(); int getNroCliente(); float getTotal_Pagar(); bool getEstado(); int Leo_Ultima_Factura(); bool Guardo(); void Muestro_Guardado(); int BuscarPosicionFactura(int); }; int GeneroNuevaFactura(); void Mostrar_ResumenVenta(); void Mostrar_TodaVenta(); void Mostrar_Facturas_Eliminadas(); void SumarVentas(); void Menu_Reportes(); void Mostrar_Rotulo_Factura(); void Mostrar_Comprobante(); void Facturas_Fecha(); void Ventas_Fecha(); void Ventas_Mes(); void Descuento_Stock(int); void Detalle_Ventas(); #endif // FACTURA_H_INCLUDED
[ "64662305+HGOMEZ70@users.noreply.github.com" ]
64662305+HGOMEZ70@users.noreply.github.com
cac82040217ea4bda34ca8d60eefc42517415c26
1698d9fe279b922d7881f8d8a68379df7e18b052
/graph3/Traffic Network/src/Traffic Network.cpp
1779d29017d4361640b9e5299f1d4ffa889a8951
[]
no_license
MonicaSalama/Algorithms
053b9f4cb82fdb19436caebd67ea48c414ede8fd
efa4f2079da15f5ddc9550dbefe59f93d4fc42d5
refs/heads/master
2020-06-26T19:15:47.974400
2016-09-16T22:43:32
2016-09-16T22:43:32
67,788,510
0
0
null
null
null
null
UTF-8
C++
false
false
2,427
cpp
//============================================================================ // Name : Traffic.cpp // Author : // Version : // Copyright : Your copyright notice // Description : http://www.spoj.com/problems/TRAFFICN/ //============================================================================ #include <iostream> #include<vector> #include<array> #include<string.h> #include<queue> #include<cstdio> using namespace std; typedef vector<long long> vll; int n; int m; int k; int s; int t; vector<pair<int, long long>> adjList[2][10002]; class edge { public: int from; int to; long long w; edge(int f, int t, long long weight) { from = f; to = t; w = weight; } }; vector<edge> klist; vll dijkstra(int num, int s) { vll dist(n+1, 999999999); priority_queue<pair<long long ,int>, vector<pair<long long ,int>>, greater<pair<long long ,int>> > pq; dist[s] = 0; pq.push(make_pair(0, s)); while (!pq.empty()) { pair<long long, int> temp = pq.top(); pq.pop(); if (temp.first == dist[temp.second]) { for (int i = 0; i < adjList[num][temp.second].size(); ++i) { pair<int, long long > t = adjList[num][temp.second][i]; if (dist[t.first] > temp.first + t.second) { dist[t.first] = temp.first + t.second; pq.push(make_pair( dist[t.first], t.first)); } } } } return dist; } long long path() { vll d1 = dijkstra(0, s); vll d2 = dijkstra(1, t); long long min = d1[t]; for (int i = 0; i < k; ++i) { edge e = klist[i]; long long path = d1[e.from] + d2[e.to] + e.w; if (min > path) { min = path; } path = d1[e.to] + d2[e.from] + e.w; if (min > path) { min = path; } } if (min == 999999999) return -1; return min; } int main() { int testCases = 0; scanf("%d", &testCases); vector<string> v; string input; int i = 0; while (i < testCases) { scanf("%d %d %d %d %d", &n, &m, &k, &s, &t); for (int i = 0; i < n + 1; ++i) { adjList[0][i].clear(); adjList[1][i].clear(); } int j = 0; while (j < m) { int from, to; long long w; scanf("%d %d %lld", &from, &to, &w); adjList[0][from].push_back(make_pair(to, w)); adjList[1][to].push_back(make_pair(from, w)); j++; } j = 0; klist.clear(); while (j < k) { int from, to; long long w; scanf("%d %d %lld", &from, &to, &w); klist.push_back(edge(from, to, w)); j++; } long long answer = path(); printf("%lld\n", answer); i++; } return 0; }
[ "monicasalama6@gmail.com" ]
monicasalama6@gmail.com
2ad440ad455514fea31ecb8ac10fe0e313f364d9
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/squid/new_hunk_2875.cpp
1feb7f8c20cdfd3bd249a1945bd254f840180cad
[]
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
1,037
cpp
storeAppendPrintf(&output, "Store Directory Statistics:\n"); storeAppendPrintf(&output, "Store Entries : %lu\n", (unsigned long int)StoreEntry::inUseCount()); storeAppendPrintf(&output, "Maximum Swap Size : %"PRIu64" KB\n", maxSize()); storeAppendPrintf(&output, "Current Store Swap Size: %8lu KB\n", store_swap_size); storeAppendPrintf(&output, "Current Capacity : %"PRId64"%% used, %"PRId64"%% free\n", Math::int64Percent(store_swap_size, maxSize()), Math::int64Percent((maxSize() - store_swap_size), maxSize())); /* FIXME Here we should output memory statistics */ /* now the swapDir */ swapDir->stat(output); } /* if needed, this could be taught to cache the result */ uint64_t StoreController::maxSize() const { /* TODO: include memory cache ? */ return swapDir->maxSize(); } uint64_t StoreController::minSize() const { /* TODO: include memory cache ? */
[ "993273596@qq.com" ]
993273596@qq.com
c5deaaa5cf65d8aa1226c2cc531f53d6e21ece21
89c9874e66abad03f40ea1daed27ca682417e2d7
/1051522 - hw12/TimeTable.h
c30b72566d34d23c779f0dce2d92850b1033c83a
[]
no_license
Doem/Programming-Homework
10672ff8f75951cec469e5cb8b5d10ecfe44147d
e43ada8435fdf80595819f4cc0c5b6c113f072e6
refs/heads/master
2021-01-18T16:02:27.620518
2017-06-01T18:18:08
2017-06-01T18:18:08
86,707,454
2
0
null
null
null
null
UTF-8
C++
false
false
971
h
#ifndef NORTHBOUNDTIMETABLE_H #define NORTHBOUNDTIMETABLE_H #include "Train.h" #include <vector> #include <fstream> #include <iostream> using namespace std; class TimeTable { public: TimeTable(); protected: vector<Train> Northbound; vector<Train> Southbound; void loadTimeTable(); }; TimeTable::TimeTable() { loadTimeTable(); } void TimeTable::loadTimeTable() { fstream file1("Northbound timetable.dat", ios::in | ios::binary); fstream file2("Southbound timetable.dat", ios::in | ios::binary); Train temp; if (!file1) { cout << "\nCannot find the file \"Northbound timetable.dat\". Please try again!" << endl; return; } else if (!file2) { cout << "\nCannot find the file \"Southbound timetable.dat\". Please try again!" << endl; return; } while (file1.read(reinterpret_cast<char*>(&temp), sizeof(Train))) Northbound.push_back(temp); while (file2.read(reinterpret_cast<char*>(&temp), sizeof(Train))) Southbound.push_back(temp); } #endif
[ "aa0917954358@gmail.com" ]
aa0917954358@gmail.com
d1dee23f66ab1c083a0d5c8422dd78a193a2ba4b
2cafd9d4168a18985e2466c3b167f5d214ed08f0
/wxOpenCVProcessor.h
63ccdca982090d0fce0ca09836a53b8ec394ab8f
[]
no_license
gysimrx/wxOpenCV
a61e88189cc162b439539641ea3c563d0bf3e079
0c0a7efbe5e97f4c43e3812877aa1e40a5497f97
refs/heads/master
2023-04-03T00:02:55.744521
2021-04-14T13:13:59
2021-04-14T13:13:59
327,242,822
0
1
null
null
null
null
UTF-8
C++
false
false
1,583
h
#ifndef WXOPENCVPROCESSOR_H #define WXOPENCVPROCESSOR_H #include <wx/wx.h> #include <opencv2/opencv.hpp> #include <mutex> #include <queue> class wxOpenCVPanel; class wxOpenCVProcessorInterface { public: virtual void init() = 0; virtual void uninit() = 0; virtual void process(cv::Mat &img) = 0; virtual void processQueue() = 0; }; class wxOpenCVProcessor: public wxOpenCVProcessorInterface { protected: wxOpenCVProcessor(wxOpenCVPanel *handler); void sendOcvUpdateEvent(wxOpenCVPanel *handler, const cv::Mat &img); void sendOcvEndCapturingEvent(wxOpenCVPanel *handler); std::vector<wxOpenCVPanel*> handlers_; public: void registerSliderEvents(wxSlider *slider); void registerButtonEvents(wxButton *button); void registerLClickEvents(wxOpenCVPanel *panel); void addEventHandler(wxOpenCVPanel *handler); private: void init() override = 0; void uninit() override = 0; void process(cv::Mat &img) override = 0; virtual void onSlider(int val){} virtual void onButton(int id){} virtual void onClick(const cv::Point &pt){} //void OnClick(const wxPoint &pt); void OnClick(wxMouseEvent &event); void OnSlider(wxScrollEvent &event); void OnButton(wxCommandEvent &event); enum EventQueueType { LCLICK, SLIDER, BUTTON, EMPTY }; struct EvtQueueData { EventQueueType event; int id; std::vector<int> data; }; std::queue<EvtQueueData> queue_; std::mutex queueMutex_; void processQueue() override; }; #endif
[ "MGY@COMLAB.local" ]
MGY@COMLAB.local
d377e814ae0a1a6afe2c0c32a425f8dadf95f92c
d84e34e0cff75b297353bdcb9c21fbca89e0692d
/src/theia/math/util.h
0338596b6bc0e95051e288f3ec21d9bbd6a4a082
[]
no_license
cvfish/TheiaSfM
8593f8afe13fc599101cb507bd7f230b5300f6f5
54fddfc15fcecf663b3ce6673ed0c929d52ddb4d
refs/heads/master
2021-01-17T06:59:18.941217
2015-07-01T00:28:57
2015-07-01T00:28:57
38,360,928
1
0
null
2015-07-01T09:03:02
2015-07-01T09:03:02
null
UTF-8
C++
false
false
2,413
h
// Copyright (C) 2013 The Regents of the University of California (Regents). // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided // with the distribution. // // * Neither the name of The Regents or University of California 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 HOLDERS 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. // // Please contact the author of this library if you have any questions. // Author: Chris Sweeney (cmsweeney@cs.ucsb.edu) #ifndef THEIA_MATH_UTIL_H_ #define THEIA_MATH_UTIL_H_ #include <algorithm> #include <cmath> #ifndef M_PI #define M_PI 3.141592653589793 #endif namespace theia { static constexpr double kRadToDeg = 180.0 / M_PI; static constexpr double kDegToRad = M_PI / 180.0; inline double RadToDeg(double angle_radians) { return angle_radians * kRadToDeg; } inline double DegToRad(double angle_degrees) { return angle_degrees * kDegToRad; } inline double Clamp(const double val, const double min, const double max) { return std::max(min, std::min(val, max)); } } // namespace theia #endif // THEIA_MATH_UTIL_H_
[ "cmsweeney@cs.ucsb.edu" ]
cmsweeney@cs.ucsb.edu
21b7489ac43d29f174cfaf6aaa4602a9423b6a1e
d52d3a9f0afb4316532837a5786e487813374da2
/apifmnc/FmncQArt1NStockitem.h
54b0b087032735bf2589f8aa030126e8f3a28359
[]
no_license
epsitech/fabmaniac
cf7fb7e2f8d0f0a3dd18585a3309d05d3ea622ac
715f59ed8a80a1288119081210428fce51422d7e
refs/heads/master
2021-01-21T04:25:33.463846
2016-08-07T19:25:59
2016-08-07T19:25:59
48,572,056
0
0
null
null
null
null
UTF-8
C++
false
false
1,033
h
/** * \file FmncQArt1NStockitem.h * API code for table TblFmncQArt1NStockitem (declarations) * \author Alexander Wirthmueller * \date created: 7 Mar 2016 * \date modified: 7 Mar 2016 */ #ifndef FMNCQART1NSTOCKITEM_H #define FMNCQART1NSTOCKITEM_H #include <dartcore/Xmlio.h> using namespace Xmlio; /** * FmncQArt1NStockitem */ class FmncQArt1NStockitem { public: FmncQArt1NStockitem(const uint jnum = 0, const string stubRef = ""); public: uint jnum; string stubRef; public: bool readXML(xmlXPathContext* docctx, string basexpath = "", bool addbasetag = false); }; /** * ListFmncQArt1NStockitem */ class ListFmncQArt1NStockitem { public: ListFmncQArt1NStockitem(); ListFmncQArt1NStockitem(const ListFmncQArt1NStockitem& src); ListFmncQArt1NStockitem& operator=(const ListFmncQArt1NStockitem& src); ~ListFmncQArt1NStockitem(); void clear(); public: vector<FmncQArt1NStockitem*> nodes; public: bool readXML(xmlXPathContext* docctx, string basexpath = "", bool addbasetag = false); }; #endif
[ "awirthm@gmail.com" ]
awirthm@gmail.com
572be55df24dfe4d379f02c09d92a6139d2562d5
25b24bc71defc150a0029610f86c4cae52422191
/From Spring/HW1/GLSLExperiment/NS_backup.cpp
ef233854581d676f037782f536eea8dfd41081fc
[]
no_license
nsujumnong/CS543-Fall18
a76234101c649debb12edb1b6055a5bb06291726
3f5bd21ccea5799c9337720550bd9fa04debe7d3
refs/heads/master
2021-09-27T19:15:10.157081
2018-11-10T20:48:07
2018-11-10T20:48:07
154,762,346
0
0
null
null
null
null
UTF-8
C++
false
false
7,300
cpp
// This is a modified code based on OpenGL starter code // Homework 1: Nuttaworn Sujumnong // Sierpinski Gasket code based on: Interactive Computer Graphics 6th edition // Koch Snowflake code based on: Computer Graphics using OpenGL 2nd edition #include "Angel.h" #include <GL/glew.h> #include <glut.h> #include <stdlib.h> #include <stdio.h> #include <iostream> #include <fstream> #include <string> #include "math.h" #include <cmath> const int NumPoints = 5000; mat4 orth = Ortho2D(0, 640.0, 0, 480.0); const float width = 640; const float height = 480; // remember to prototype void initGPUBuffers(void); void shaderSetup(void); void displayTriangle(void); void keyboard(unsigned char key, int x, int y); typedef vec2 point2; using namespace std; GLuint program; const int NumTimesToSubdivide = 5; const int NumTriangles = 243; // 3^5 triangles generated const int NumVertices = 3 * NumTriangles; vec2 points[NumVertices]; int Index = 0; void triangle(const vec2& a, const vec2& b, const vec2& c) { points[Index++] = a; points[Index++] = b; points[Index++] = c; } void divide_triangle(const vec2& a, const vec2& b, const vec2& c, int count) { if (count > 0) { vec2 v0 = (a + b) / 2.0; vec2 v1 = (a + c) / 2.0; vec2 v2 = (b + c) / 2.0; divide_triangle(a, v0, v1, count - 1); divide_triangle(c, v1, v2, count - 1); divide_triangle(b, v2, v0, count - 1); } else { triangle(a, b, c); // draw triangle at the end of recursion } } void sierpinski(void) { vec2 vertices[3] = { vec2(-1.0, -1.0), vec2(0.0, 1.0), vec2(1.0, -1.0) }; // Subdivide the original triangle divide_triangle(vertices[0], vertices[1], vertices[2], NumTimesToSubdivide); glBufferData(GL_ARRAY_BUFFER, sizeof(points), points, GL_STATIC_DRAW); } // Draw Koch Snowflake GLint iter = 3; // default -> 3 iterations GLfloat len = 0.5; GLint kpoints; GLint kInd; point2* allKPoints; GLfloat x_prev = -0.7, y_prev = 0.5; GLint currentAngle = 0; void drawKoch(int dir, double len, int iter) { //double dirRad = dir*M_PI/180; //point2* allKPoints = (point2*)malloc(sizeof(point2) * kpoints); float x_next = x_prev + len * cos((dir)*M_PI / 180); float y_next = y_prev + len * sin((dir)*M_PI / 180); currentAngle = currentAngle + dir; if (iter == 0) { allKPoints[kInd].x = x_prev; allKPoints[kInd].y = y_prev; kInd++; x_prev = x_next; y_prev = y_next; } else { iter--; len /= 3; drawKoch(dir, len, iter); dir += 60; drawKoch(dir, len, iter); dir -= 120; drawKoch(dir, len, iter); dir += 60; drawKoch(dir, len, iter); } } void initKoch(void) { kpoints = 3 * pow(4, iter); kInd = 0; allKPoints = (point2*)malloc(sizeof(point2) * kpoints); drawKoch(0, len, iter); drawKoch(-120, len, iter); drawKoch(120, len, iter); glBufferData(GL_ARRAY_BUFFER, (sizeof(point2) * kpoints), allKPoints, GL_STATIC_DRAW); } void displayKoch(void) { glClear(GL_COLOR_BUFFER_BIT); glViewport(0, 0, width, height); glDrawArrays(GL_LINE_LOOP, 0, kpoints); glFlush(); } // polyline drawing function int drawPolylineFile(char *fileName) { std::ifstream infile(fileName); glClear(GL_COLOR_BUFFER_BIT); float w = width / 4; float h = height / 4; if (infile) { string a; char buffer[255]; bool beforeComment = true; bool atExtend = true; bool atNumPoly = true; float left, top, right, bottom; int polyNum; while (infile) { infile.getline(buffer, 255); //if (infile) cout << buffer << endl; if (beforeComment == true) { // until find * at the start of line if (buffer[0] == '*') { beforeComment = false; } } else if (atExtend == true) { // read for extend sscanf(buffer, "%f %f %f %f", &left, &top, &right, &bottom); //printf("extend = %f %f %f %f \n", left, top, right, bottom); atExtend = false; } else if (atNumPoly == true) { sscanf(buffer, "%d", &polyNum); //printf("polyNum = %d \n", polyNum); atNumPoly = false; break; } } for (int i = 0; i < polyNum; i++) { int pointNum; float x, y; infile.getline(buffer, 255); sscanf(buffer, "%d", &pointNum); if (pointNum == 0) { //cout << buffer << endl; } //printf("pointNum = %d \n", pointNum); //point2 allPoints[pointNum]; //not working point2* allPoints = (point2*)malloc(sizeof(point2) * pointNum); for (int ij = 0; ij < pointNum; ij++) { infile.getline(buffer, 255); sscanf(buffer, "%f %f", &x, &y); allPoints[ij].x = x; allPoints[ij].y = y; //printf("x = %f , y = %f \n", allPoints[ij].x, allPoints[ij].y); } glBufferData(GL_ARRAY_BUFFER, (sizeof(point2) * pointNum), allPoints, GL_STATIC_DRAW); for (int k = 0; k < 4; k++) { for (int m = 0; m < 4; m++) { glViewport(k*w, m*h, w, h); glDrawArrays(GL_LINE_STRIP, 0, pointNum); } } glFlush(); } infile.close(); } return 0; } void displayTriangle(void) { glClear(GL_COLOR_BUFFER_BIT); glDrawArrays(GL_TRIANGLES, 0, NumVertices); glFlush(); } void initGPUBuffers(void) { // Create a vertex array object GLuint vao; glGenVertexArrays(1, &vao); glBindVertexArray(vao); // Create and initialize a buffer object GLuint buffer; glGenBuffers(1, &buffer); glBindBuffer(GL_ARRAY_BUFFER, buffer); glBufferData(GL_ARRAY_BUFFER, sizeof(points), points, GL_STATIC_DRAW); } void shaderSetup(void) { // Load shaders and use the resulting shader program program = InitShader("vshader1.glsl", "fshader1.glsl"); glUseProgram(program); // Initialize the vertex position attribute from the vertex shader GLuint loc = glGetAttribLocation(program, "vPosition"); glEnableVertexAttribArray(loc); glVertexAttribPointer(loc, 2, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0)); glClearColor(1.0, 1.0, 1.0, 1.0); // sets white as color used to clear screen } void keyboard(unsigned char key, int x, int y) { switch (key) { case 033: exit(EXIT_SUCCESS); break; case 's': glViewport(width / 4, height / 4, width / 2, height / 2); glClear(GL_COLOR_BUFFER_BIT); glBufferData(GL_ARRAY_BUFFER, sizeof(points), points, GL_STATIC_DRAW); glDrawArrays(GL_TRIANGLES, 0, NumVertices); glFlush(); break; case 'd': glClear(GL_COLOR_BUFFER_BIT); drawPolylineFile("dragon.dat"); break; case 'u': glClear(GL_COLOR_BUFFER_BIT); drawPolylineFile("usa.dat"); break; case 'v': glClear(GL_COLOR_BUFFER_BIT); drawPolylineFile("vinci.dat"); break; case 'i': iter += 1; //glClear(GL_COLOR_BUFFER_BIT); initKoch(); glutDisplayFunc(displayKoch); glutPostRedisplay(); break; case 'r': iter -= 1; //glClear(GL_COLOR_BUFFER_BIT); initKoch(); glutDisplayFunc(displayKoch); glutPostRedisplay(); break; case 'k': iter = 3; //glClear(GL_COLOR_BUFFER_BIT); initKoch(); glutDisplayFunc(displayKoch); glutPostRedisplay(); break; } } int main(int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_SINGLE | GLUT_RGBA); glutInitWindowSize(width, height); glutInitWindowPosition(0, 0); glutCreateWindow("Homework1: Nuttaworn Sujumnong"); glewInit(); initGPUBuffers(); shaderSetup(); glViewport(width / 4, height / 4, width / 2, height / 2); sierpinski(); initKoch(); glutDisplayFunc(displayKoch); //glutReshapeFunc(myReshape); glutKeyboardFunc(keyboard); glutMainLoop(); return 0; }
[ "nsujumnong@wpi.edu" ]
nsujumnong@wpi.edu
a3b9aa6907d4e3ced1d1aeee03340c3b1f5fe94c
c4542b53f274c48fc8571656fdb0711889902681
/test_case/50.4676134421789371/turbDiffMean
25c41997c038c78ddb117683d474b8efbd595e47
[ "MIT" ]
permissive
kakkapriyesh/Turbulence-flow-and-heat-budgets-in-OpenFOAM
e97f8ee5780bc8ff47c72e5189c21d612e70a105
94fef0cb4e09172f7532fbcf7a715095ed81e128
refs/heads/main
2023-04-15T23:24:11.392585
2022-12-22T02:16:10
2022-12-22T02:16:10
368,479,876
7
2
null
null
null
null
UTF-8
C++
false
false
2,347,188
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 5.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "50.4676134421789371"; object turbDiffMean; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -3 0 0 0 0]; internalField nonuniform List<vector> 60000 ( (-7.75428e-13 8.57142e-13 1.75385e-11) (-1.60012e-11 1.2432e-12 1.88257e-11) (-3.38318e-11 1.25923e-12 1.5571e-11) (-2.57823e-11 3.1991e-13 1.62115e-12) (-5.94227e-12 -7.09646e-14 -3.8044e-12) (-4.03417e-13 -7.07604e-14 -5.50365e-12) (2.61785e-12 -6.36494e-14 -7.58869e-12) (4.59858e-12 -3.63526e-14 -4.53995e-12) (1.13082e-11 -4.06408e-14 -8.07931e-13) (2.10551e-11 2.9086e-15 8.74565e-12) (1.49614e-11 3.15373e-13 1.24602e-11) (3.88413e-12 2.6417e-13 5.88486e-12) (7.98936e-13 7.71121e-14 1.60899e-12) (8.37983e-13 4.13724e-14 5.64232e-13) (1.55156e-12 1.00006e-13 -1.1618e-13) (1.89795e-12 2.35599e-13 -2.80817e-12) (2.19405e-12 4.58413e-14 -1.25152e-11) (8.41669e-12 -9.80011e-13 -3.12148e-11) (4.86492e-11 -3.68339e-12 -8.13506e-11) (1.94574e-10 -7.49393e-12 -1.63234e-10) (5.66868e-10 -1.36398e-11 -2.01685e-10) (1.18889e-09 -1.04046e-11 -8.30568e-11) (1.54591e-09 3.15335e-12 1.7347e-10) (1.69867e-09 4.16777e-12 3.77066e-10) (2.26128e-09 -1.81298e-11 5.03373e-10) (3.04985e-09 -3.63794e-11 5.72944e-10) (2.93703e-09 -1.94393e-11 5.67985e-10) (1.48488e-09 4.01156e-12 3.98066e-10) (3.44034e-10 4.36335e-12 1.33935e-10) (5.89761e-11 1.27165e-12 1.72729e-11) (6.1247e-11 1.21084e-12 -1.65237e-11) (1.94384e-10 4.47672e-12 -1.05849e-10) (3.10282e-10 9.05882e-12 -1.97114e-10) (2.03441e-10 7.59815e-12 -1.96527e-10) (3.37803e-11 3.0956e-12 -1.40144e-10) (-2.69632e-11 -4.45716e-13 -7.42967e-11) (-1.63721e-13 4.53937e-14 -2.67408e-12) (1.04787e-11 2.63948e-13 6.5096e-12) (2.59661e-11 8.16992e-13 2.61076e-11) (1.32509e-11 8.24923e-13 2.36232e-11) (1.39693e-10 2.42725e-11 1.76436e-10) (-6.01316e-12 6.57521e-12 3.23722e-11) (-6.00118e-11 2.64611e-12 8.84713e-12) (-1.07891e-10 -4.14828e-12 -2.43728e-11) (-6.97636e-11 -6.57539e-12 -6.06827e-11) (-1.40094e-11 -2.27662e-12 -8.25339e-11) (1.95316e-11 5.56371e-13 -5.20895e-11) (2.69604e-11 5.41772e-13 -8.49851e-12) (1.9517e-10 -4.38907e-13 9.90637e-11) (6.44864e-10 1.47255e-11 4.57941e-10) (7.12944e-10 3.74553e-11 5.4342e-10) (2.88776e-10 2.32201e-11 2.26199e-10) (4.54625e-11 2.56943e-12 2.74245e-11) (1.26402e-11 -4.17894e-13 -1.41273e-12) (4.57587e-11 -2.44139e-12 -4.35874e-11) (1.75107e-10 -7.81743e-12 -1.95115e-10) (3.46925e-10 -2.28621e-11 -3.80838e-10) (5.46173e-10 -3.81266e-11 -5.11399e-10) (8.34024e-10 -2.1677e-11 -6.7202e-10) (1.15349e-09 2.90566e-11 -6.58519e-10) (1.76671e-09 6.53943e-11 -2.39547e-10) (4.25789e-09 1.01941e-10 1.07635e-09) (8.46972e-09 3.91402e-11 3.35849e-09) (1.33263e-08 -3.19349e-10 4.51874e-09) (2.13032e-08 -9.8976e-10 4.37727e-09) (3.1787e-08 -1.60153e-09 3.29995e-09) (3.57301e-08 -1.30345e-09 2.21451e-09) (2.51265e-08 -3.61061e-10 1.78155e-09) (9.31824e-09 7.76718e-11 1.012e-09) (1.93077e-09 3.81988e-11 1.74491e-10) (7.7993e-10 5.08828e-12 -1.366e-10) (1.58725e-09 6.83258e-12 -6.85608e-10) (3.45036e-09 6.79722e-11 -1.55685e-09) (3.93525e-09 1.25736e-10 -1.87199e-09) (1.62299e-09 7.83388e-11 -1.11701e-09) (1.071e-10 5.78111e-12 -2.46946e-10) (-1.84368e-11 -1.6982e-12 -1.15723e-11) (4.53901e-11 -1.17623e-12 5.79743e-11) (4.55936e-10 1.93433e-11 4.25587e-10) (4.79347e-10 4.07004e-11 4.43533e-10) (6.35932e-10 8.44652e-11 4.64436e-10) (1.18767e-10 3.03742e-11 9.71295e-11) (4.14935e-12 1.14486e-12 1.5062e-12) (-3.59678e-12 -8.21324e-13 -3.50993e-12) (-3.19401e-11 -8.05535e-12 -3.04403e-11) (-4.80272e-11 -8.86874e-12 -9.78083e-11) (-1.54765e-12 -7.31968e-13 -9.28172e-11) (1.46323e-11 1.05071e-12 -1.34742e-11) (1.33527e-10 -2.36746e-12 7.85653e-11) (8.25311e-10 1.65589e-11 6.83901e-10) (1.30833e-09 7.83121e-11 1.05014e-09) (7.54327e-10 8.18005e-11 5.71476e-10) (1.42315e-10 1.76517e-11 9.27795e-11) (1.27639e-11 -7.43727e-14 -2.35118e-13) (4.22595e-11 -6.66178e-12 -4.33387e-11) (2.59298e-10 -3.9457e-11 -2.42128e-10) (5.79357e-10 -9.75886e-11 -4.96412e-10) (5.85475e-10 -1.08554e-10 -5.08153e-10) (4.14245e-10 -2.96607e-11 -4.18653e-10) (2.94069e-10 5.56368e-11 -2.53339e-10) (3.01972e-10 8.70709e-11 -1.10665e-11) (1.68264e-09 2.47617e-10 1.20069e-09) (5.58472e-09 1.30647e-10 4.6558e-09) (8.42516e-09 -5.86646e-10 5.24416e-09) (1.07969e-08 -1.30262e-09 3.57592e-09) (1.36902e-08 -1.70655e-09 1.53314e-09) (1.42881e-08 -1.26422e-09 -2.19257e-11) (1.01991e-08 -3.53864e-10 -3.53413e-10) (4.22007e-09 9.61746e-11 -8.99722e-11) (8.98284e-10 6.1647e-11 -1.61072e-11) (1.82361e-10 8.38342e-12 -3.74745e-11) (2.63189e-10 -6.14561e-12 -1.41092e-10) (9.12924e-10 -9.17235e-13 -5.00601e-10) (1.85557e-09 5.96213e-11 -9.19412e-10) (1.50931e-09 9.69349e-11 -8.27942e-10) (2.99162e-10 2.57769e-11 -2.6886e-10) (-2.47617e-13 -1.55093e-12 -1.9549e-11) (1.75264e-12 -1.45738e-12 3.50373e-12) (3.11144e-10 -1.2496e-11 2.55862e-10) (9.56026e-10 4.85342e-11 6.77547e-10) (4.2908e-10 9.60637e-11 4.7743e-10) (8.69373e-11 4.91217e-11 1.38532e-10) (-1.27306e-13 1.68258e-12 2.7725e-12) (-7.69072e-12 -1.55128e-12 -5.80831e-12) (-5.16907e-11 -1.42836e-11 -3.49434e-11) (-1.47821e-10 -2.31211e-11 -1.17263e-10) (-1.45992e-10 -9.35774e-12 -1.93199e-10) (-2.00867e-11 2.60371e-12 -4.60238e-11) (3.84433e-12 -1.3726e-13 4.32853e-12) (3.06209e-10 -2.20639e-13 4.1335e-10) (8.59067e-10 7.64218e-11 1.0304e-09) (4.76809e-10 1.0352e-10 5.8387e-10) (3.31543e-11 1.90851e-11 6.65345e-11) (-3.76047e-12 2.80014e-13 -4.7583e-13) (-1.16866e-11 -8.38374e-12 -3.88828e-11) (9.92486e-11 -4.81815e-11 -1.95706e-10) (3.65794e-10 -1.24004e-10 -4.32075e-10) (2.06666e-10 -9.77617e-11 -3.32953e-10) (-2.86632e-12 -1.93692e-11 -2.21249e-10) (-7.62822e-11 6.19325e-11 -1.6065e-10) (-1.58928e-11 4.77602e-11 -6.07979e-13) (3.61874e-10 2.75528e-10 8.95636e-10) (3.1255e-09 1.67133e-10 5.19234e-09) (4.34359e-09 -7.62626e-10 4.96617e-09) (3.45362e-09 -9.88752e-10 2.06723e-09) (2.7569e-09 -7.96602e-10 3.93097e-10) (2.1088e-09 -3.99535e-10 -3.10757e-10) (1.08992e-09 -3.08237e-11 -3.33643e-10) (2.12882e-10 4.74563e-11 -1.01766e-10) (-2.43966e-12 1.09447e-11 -1.31597e-11) (-9.19318e-11 1.87381e-11 -3.98534e-11) (-1.16836e-10 1.13638e-12 -7.24713e-11) (-2.93939e-11 -3.00612e-12 -7.2561e-11) (4.20992e-11 7.07452e-12 -1.40798e-10) (1.05439e-10 3.27362e-11 -2.21889e-10) (-6.18408e-12 2.23366e-11 -1.34895e-10) (-1.69196e-10 4.82394e-13 -1.05532e-10) (-1.72311e-10 -2.75877e-11 -3.79889e-12) (-1.7515e-12 -9.33581e-12 3.49286e-11) (3.24473e-10 7.22855e-12 3.52096e-10) (3.28718e-10 9.96844e-11 5.29574e-10) (1.4296e-10 1.38039e-10 4.11525e-10) (-1.86592e-11 2.00044e-11 4.71525e-11) (-4.79412e-11 -2.89533e-12 -6.94797e-12) (-1.61846e-10 -3.21013e-11 -6.39109e-11) (-3.95474e-10 -4.99587e-11 -1.70561e-10) (-5.75642e-10 -3.35423e-11 -3.84345e-10) (-3.21489e-10 4.66839e-12 -2.86686e-10) (-2.94822e-11 -1.38934e-13 -1.26257e-11) (2.54349e-11 -6.89243e-12 1.40132e-10) (6.12908e-10 7.3191e-11 1.15919e-09) (6.86504e-10 2.23745e-10 1.16916e-09) (5.5433e-11 7.59951e-11 2.30706e-10) (-4.29604e-11 8.39726e-12 1.11473e-11) (-9.00645e-11 -2.21557e-11 -9.00998e-11) (5.69556e-11 -8.66672e-11 -2.90555e-10) (4.46033e-10 -2.10163e-10 -6.24658e-10) (1.87872e-10 -1.29402e-10 -3.94226e-10) (-2.00845e-10 -3.27835e-11 -3.4788e-10) (-1.13616e-09 3.20461e-10 -7.52937e-10) (-7.20692e-10 4.74396e-10 -1.41562e-10) (-9.14368e-11 4.33174e-10 8.52529e-10) (2.78342e-09 3.43052e-10 6.64405e-09) (4.89444e-09 -1.36333e-09 7.2617e-09) (2.91368e-09 -1.38234e-09 2.51854e-09) (1.24262e-09 -6.63019e-10 2.94869e-10) (6.54079e-10 -2.39831e-10 -1.90993e-10) (3.71712e-10 -7.07609e-12 -2.23668e-10) (1.09146e-10 6.26895e-11 -1.12153e-10) (-3.12847e-11 4.84373e-11 -5.23302e-11) (-3.91238e-10 9.82751e-11 -1.27829e-10) (-8.2591e-10 4.76094e-11 -2.10722e-10) (-6.36689e-10 -6.47307e-12 -2.29675e-10) (-3.06703e-10 4.36232e-12 -2.17267e-10) (-1.75906e-10 3.88784e-11 -2.78353e-10) (-2.24684e-10 6.93198e-11 -3.77985e-10) (-6.34898e-10 3.17173e-11 -4.09782e-10) (-9.47873e-10 -9.41157e-11 -2.05325e-10) (-2.2489e-10 -5.65804e-11 3.75671e-11) (2.04219e-11 -1.03763e-11 9.26414e-11) (1.05806e-10 2.02638e-11 1.8701e-10) (3.25074e-10 2.25013e-10 6.59364e-10) (4.11863e-11 9.35595e-11 2.50973e-10) (-1.57918e-11 1.81779e-12 1.11958e-11) (-9.22803e-11 -2.2253e-11 -2.68515e-11) (-3.30735e-10 -4.83826e-11 -1.10906e-10) (-7.15044e-10 -4.53358e-11 -3.38625e-10) (-8.4276e-10 -1.30706e-11 -5.71162e-10) (-4.1393e-10 -5.32162e-12 -2.27517e-10) (-7.48076e-11 -7.99337e-12 3.91334e-11) (1.00459e-10 2.85622e-11 6.88643e-10) (8.12926e-10 3.63331e-10 1.78457e-09) (3.46167e-10 3.03792e-10 8.4279e-10) (-1.4184e-11 2.62865e-11 4.17867e-11) (-3.33305e-11 -9.74159e-12 -5.1456e-11) (2.15883e-10 -1.94417e-10 -5.65171e-10) (1.2073e-09 -5.17563e-10 -1.31256e-09) (5.37232e-10 -2.47711e-10 -6.01097e-10) (-1.04956e-10 -3.02778e-11 -1.86234e-10) (-2.68583e-09 5.73826e-10 -1.20177e-09) (-3.85726e-09 1.73902e-09 -8.55063e-10) (-7.23451e-10 8.24717e-10 9.0998e-10) (2.66702e-09 6.68567e-10 7.32456e-09) (6.92001e-09 -2.19112e-09 1.04604e-08) (3.30808e-09 -2.14883e-09 3.46653e-09) (7.95564e-10 -7.29058e-10 3.07605e-10) (3.27514e-10 -2.18449e-10 -1.1788e-10) (2.74561e-10 -2.73175e-11 -1.63753e-10) (2.68557e-10 1.00103e-10 -1.53837e-10) (1.25552e-10 1.0975e-10 -8.76332e-11) (-6.44102e-12 3.56097e-11 -2.70893e-11) (-1.59128e-10 4.21488e-11 -5.49477e-11) (-5.29267e-10 2.28559e-11 -1.14514e-10) (-8.37206e-10 1.16337e-11 -2.12839e-10) (-8.16556e-10 5.42965e-11 -3.8427e-10) (-5.76981e-10 9.94698e-11 -5.37639e-10) (-5.20694e-10 6.28697e-11 -5.3067e-10) (-7.14677e-10 -6.58335e-11 -3.83741e-10) (-4.80405e-10 -1.256e-10 -1.18584e-10) (-3.09025e-11 -1.85122e-11 1.30996e-11) (-1.67236e-12 -2.80381e-12 6.40023e-12) (1.36283e-10 9.42434e-11 2.76513e-10) (1.57277e-10 1.6895e-10 4.35548e-10) (9.99226e-12 1.42698e-11 6.10516e-11) (-2.91596e-12 -1.82142e-12 7.08748e-13) (-5.37544e-11 -1.3775e-11 -1.80652e-11) (-2.82007e-10 -2.17948e-11 -1.16499e-10) (-7.04456e-10 -2.6235e-11 -4.28064e-10) (-1.00644e-09 -3.22297e-11 -5.51167e-10) (-7.61797e-10 -4.16991e-11 -7.13617e-11) (-3.75414e-10 1.01808e-11 4.10449e-10) (5.7453e-11 3.2772e-10 1.45905e-09) (4.05807e-10 5.74817e-10 1.36745e-09) (5.72444e-11 1.23508e-10 1.62381e-10) (2.81234e-11 7.37289e-13 -5.08777e-11) (1.06379e-09 -4.93553e-10 -1.42025e-09) (3.12792e-09 -1.25172e-09 -2.8753e-09) (1.24946e-09 -4.92346e-10 -9.44815e-10) (2.9414e-14 -9.34394e-12 -2.93994e-11) (-2.71158e-09 6.11478e-10 -6.67844e-10) (-1.01838e-08 3.63222e-09 -1.75515e-09) (-3.04103e-09 1.96833e-09 1.20407e-09) (1.2407e-09 8.22221e-10 5.88517e-09) (5.86326e-09 -2.41329e-09 1.03572e-08) (2.19655e-09 -2.34573e-09 3.14031e-09) (4.88234e-10 -8.03691e-10 2.83945e-10) (2.57476e-10 -2.43486e-10 -7.60899e-11) (2.38365e-10 -4.23432e-11 -1.11172e-10) (2.91396e-10 8.55441e-11 -1.27992e-10) (3.94428e-10 1.89985e-10 -1.31834e-10) (3.26268e-10 1.69022e-10 -8.0895e-11) (5.86448e-11 4.21253e-11 -1.66956e-11) (-1.18088e-11 8.51874e-12 -3.46701e-12) (-4.25357e-10 5.14684e-11 -4.63182e-11) (-1.54905e-09 1.16633e-10 -2.94393e-10) (-1.73691e-09 1.53617e-10 -6.94776e-10) (-9.01984e-10 8.3052e-11 -6.8487e-10) (-4.73806e-10 -2.62805e-11 -4.34452e-10) (-3.82571e-10 -1.09467e-10 -2.5883e-10) (-1.45624e-10 -7.2103e-11 -6.77831e-11) (-5.11109e-11 -3.1127e-11 -3.468e-11) (-5.26143e-12 4.88977e-12 2.38236e-11) (2.70249e-11 7.58858e-11 2.08252e-10) (1.95214e-11 2.09941e-11 1.01419e-10) (6.25757e-12 -2.77375e-12 8.59444e-12) (1.31975e-12 -9.41875e-13 6.44142e-14) (-2.91616e-12 -2.86306e-13 -2.72149e-12) (-1.06923e-10 -3.46054e-12 -8.85423e-11) (-6.32249e-10 -2.90782e-11 -4.10058e-10) (-1.78683e-09 -6.6869e-11 -3.68425e-10) (-2.33888e-09 2.57564e-11 6.10375e-10) (-1.16859e-09 3.94152e-10 1.36039e-09) (-9.68559e-11 6.54526e-10 1.141e-09) (1.3598e-10 2.34938e-10 1.9932e-10) (4.67895e-10 4.66734e-11 -3.12583e-10) (3.84863e-09 -1.20198e-09 -3.4281e-09) (5.48958e-09 -2.22459e-09 -4.35852e-09) (1.81159e-09 -7.91178e-10 -1.1111e-09) (3.46476e-11 -1.2361e-11 -1.10923e-11) (-1.18725e-09 4.24186e-10 1.26716e-11) (-1.32596e-08 4.69377e-09 -1.08275e-09) (-9.06459e-09 4.22474e-09 1.55695e-09) (-7.55266e-10 8.29793e-10 3.8424e-09) (2.0334e-09 -1.7839e-09 6.46933e-09) (9.79106e-10 -2.20401e-09 2.23626e-09) (4.59638e-10 -1.06517e-09 3.28725e-10) (3.5807e-10 -3.42037e-10 -2.21165e-11) (2.97495e-10 -5.76444e-11 -7.54925e-11) (2.9977e-10 7.2716e-11 -1.04892e-10) (4.14835e-10 1.57266e-10 -1.19733e-10) (7.1407e-10 2.17061e-10 -8.87227e-11) (8.94744e-10 2.25141e-10 7.84509e-12) (3.50415e-10 1.18862e-10 4.30453e-11) (-6.29949e-13 1.28213e-11 4.10308e-12) (-5.81161e-10 1.30541e-10 -4.08074e-11) (-2.25011e-09 2.43304e-10 -4.85325e-10) (-1.93148e-09 1.18951e-10 -8.04088e-10) (-7.04057e-10 -1.34686e-11 -5.29037e-10) (-2.95827e-10 -7.53465e-11 -3.27009e-10) (-2.10698e-10 -1.07997e-10 -2.34328e-10) (-1.90741e-10 -1.01785e-10 -2.47603e-10) (-7.1883e-11 -1.33027e-11 -7.45863e-12) (-9.1417e-11 2.33486e-11 1.09559e-10) (-3.99352e-11 5.68776e-12 9.51569e-11) (5.86838e-12 -6.8951e-12 1.43316e-11) (4.9994e-11 -1.28095e-11 6.76995e-12) (7.65761e-11 -5.50233e-14 -5.7874e-12) (2.6453e-11 1.99817e-12 -1.85295e-11) (-2.99987e-11 -8.11994e-13 -6.68154e-11) (-9.25916e-10 -3.98865e-12 -2.80729e-10) (-5.10856e-09 1.36944e-10 5.72052e-10) (-5.36286e-09 9.37845e-10 2.09558e-09) (-8.73329e-10 7.84925e-10 8.26122e-10) (1.4346e-10 2.38135e-10 4.71377e-11) (1.95375e-09 1.09822e-10 -1.13981e-09) (6.83118e-09 -1.98754e-09 -4.69755e-09) (5.89095e-09 -2.75894e-09 -3.83007e-09) (1.55502e-09 -9.17483e-10 -8.21731e-10) (7.80963e-11 -2.68805e-11 -2.61564e-12) (-2.36768e-10 2.19187e-10 1.14276e-10) (-8.16429e-09 3.94158e-09 3.2917e-10) (-1.45923e-08 6.17472e-09 1.79437e-09) (-3.18081e-09 1.07228e-09 3.16782e-09) (-3.63975e-10 -1.14814e-09 2.99845e-09) (1.97686e-10 -2.1528e-09 1.52359e-09) (5.1545e-10 -1.38916e-09 4.48349e-10) (5.16516e-10 -4.38933e-10 9.1761e-11) (3.89195e-10 -5.81323e-11 -3.15643e-11) (3.49869e-10 7.74112e-11 -9.58119e-11) (4.48406e-10 1.32962e-10 -1.09537e-10) (8.16653e-10 1.56147e-10 -4.33955e-11) (1.46498e-09 1.85916e-10 1.57614e-10) (1.54524e-09 2.57786e-10 3.2912e-10) (4.84261e-10 1.81412e-10 1.55984e-10) (-8.48001e-12 3.437e-11 9.94386e-12) (-7.30418e-10 2.02965e-10 -1.24001e-10) (-1.94446e-09 2.03133e-10 -5.91147e-10) (-1.31557e-09 1.56481e-11 -6.27671e-10) (-4.81328e-10 -5.65345e-11 -4.3064e-10) (-2.5875e-10 -1.04941e-10 -4.14427e-10) (-3.35427e-10 -1.29945e-10 -5.68803e-10) (-3.23121e-10 -6.97625e-11 -1.64572e-10) (-2.93791e-10 -1.66552e-11 1.1635e-10) (-1.1956e-10 -2.95464e-11 1.56669e-10) (4.85926e-12 -2.70947e-11 4.1409e-11) (4.47371e-11 -2.24042e-11 7.95901e-12) (1.15541e-10 -7.02321e-12 -2.63152e-11) (1.78711e-10 9.07065e-12 -7.00954e-11) (9.73009e-11 3.68066e-12 -7.67804e-11) (-3.89613e-11 6.92696e-12 -3.48804e-11) (-3.05073e-09 2.92483e-10 3.15264e-10) (-1.10429e-08 1.7364e-09 2.68885e-09) (-3.3938e-09 1.47089e-09 8.64875e-10) (7.39455e-11 2.06453e-10 -1.03068e-10) (3.16377e-09 -2.11111e-11 -1.95008e-09) (6.9168e-09 -2.37985e-09 -3.92667e-09) (4.36144e-09 -2.62673e-09 -2.26323e-09) (1.01466e-09 -8.45317e-10 -4.54595e-10) (5.31337e-11 -2.84173e-11 -2.17332e-12) (-2.00555e-11 1.65705e-10 8.23938e-11) (-2.44206e-09 2.36692e-09 5.3274e-10) (-1.12418e-08 5.85306e-09 1.45477e-09) (-6.5827e-09 1.53495e-09 2.57888e-09) (-1.8325e-09 -1.16967e-09 1.65875e-09) (-4.63288e-10 -2.30574e-09 1.16731e-09) (5.50011e-10 -1.54863e-09 6.61187e-10) (6.29533e-10 -4.5043e-10 2.51962e-10) (4.26522e-10 -3.20729e-11 1.71155e-11) (3.6706e-10 8.41853e-11 -8.88853e-11) (4.82945e-10 1.12208e-10 -9.95156e-11) (9.44672e-10 1.0131e-10 3.52338e-11) (1.79424e-09 7.93442e-11 4.146e-10) (2.10777e-09 1.60593e-10 7.30964e-10) (1.16419e-09 2.57441e-10 4.85009e-10) (1.50472e-10 1.11027e-10 7.76107e-11) (-5.2833e-11 6.1348e-11 -1.10974e-11) (-6.60428e-10 1.82088e-10 -2.45321e-10) (-1.16781e-09 1.07143e-10 -5.16341e-10) (-7.65399e-10 -3.04884e-12 -5.11832e-10) (-3.83201e-10 -6.47686e-11 -5.58899e-10) (-3.41363e-10 -5.20805e-11 -7.53054e-10) (-4.57973e-10 -8.34873e-11 -3.63171e-10) (-3.31059e-10 -7.06434e-11 7.04221e-11) (-1.21843e-10 -1.00187e-10 2.30911e-10) (2.2755e-11 -1.07245e-10 1.68484e-10) (1.9473e-11 -2.5474e-11 1.96342e-11) (1.72577e-11 -4.12615e-12 -1.49715e-11) (9.42235e-11 6.97556e-12 -1.09749e-10) (1.79883e-10 5.14236e-13 -1.7114e-10) (3.22143e-11 6.87566e-12 -3.67802e-11) (-4.17097e-10 1.30308e-10 7.96026e-11) (-8.2849e-09 1.82011e-09 2.17759e-09) (-8.10521e-09 2.40012e-09 1.30277e-09) (-2.05943e-10 2.17531e-10 -1.8258e-10) (1.83882e-09 -2.18152e-10 -1.50642e-09) (4.87993e-09 -2.27936e-09 -2.78232e-09) (3.37001e-09 -2.43106e-09 -1.5187e-09) (8.38131e-10 -7.94217e-10 -2.70802e-10) (3.16995e-11 -2.72662e-11 -2.0141e-12) (1.00459e-11 1.17562e-10 3.03404e-11) (-5.05449e-10 1.53214e-09 2.35121e-10) (-4.32819e-09 3.8478e-09 5.26334e-10) (-6.77973e-09 1.68294e-09 9.62544e-10) (-3.71822e-09 -1.67284e-09 9.64864e-10) (-1.05691e-09 -2.44902e-09 9.89249e-10) (3.85728e-10 -1.37583e-09 7.91396e-10) (4.87423e-10 -3.24497e-10 3.19851e-10) (2.98856e-10 1.67734e-13 3.73696e-11) (2.83291e-10 7.13554e-11 -7.63879e-11) (4.26768e-10 7.62098e-11 -8.72546e-11) (1.03392e-09 3.91703e-11 1.21941e-10) (2.32148e-09 -3.44967e-11 8.31436e-10) (2.80421e-09 4.98182e-11 1.40915e-09) (1.51002e-09 2.23976e-10 9.15856e-10) (2.32949e-10 1.30816e-10 1.7468e-10) (-1.18406e-11 3.91618e-11 2.86356e-12) (-2.22111e-10 1.15559e-10 -1.12657e-10) (-5.14252e-10 1.23706e-10 -3.02406e-10) (-4.96911e-10 6.43471e-11 -3.8375e-10) (-3.36266e-10 1.80705e-11 -5.37118e-10) (-1.60242e-10 8.13985e-11 -7.31316e-10) (-2.37963e-10 -1.59629e-11 -3.47943e-10) (-1.26971e-10 -5.7927e-11 1.68444e-11) (-7.84802e-11 -1.79029e-10 2.6876e-10) (3.389e-12 -2.08276e-10 3.01557e-10) (-1.38435e-11 -4.48244e-11 4.97142e-11) (-5.82493e-12 -2.92703e-12 -4.35483e-12) (4.72242e-13 4.09861e-12 -8.57074e-11) (8.66288e-11 8.79895e-13 -2.0096e-10) (7.92862e-11 1.15707e-11 -9.06138e-11) (-1.53133e-11 2.53577e-11 9.25814e-12) (-2.77035e-09 1.08135e-09 1.12732e-09) (-8.29818e-09 2.5164e-09 1.81082e-09) (-1.36395e-09 4.46812e-10 -2.68021e-10) (3.3689e-10 -1.64566e-10 -6.06907e-10) (2.9165e-09 -1.78438e-09 -2.0409e-09) (2.67669e-09 -2.06782e-09 -1.07697e-09) (7.74291e-10 -7.47406e-10 -5.7206e-11) (4.25515e-11 -4.76101e-11 7.31021e-12) (1.13589e-12 4.12717e-11 -1.28369e-11) (-1.03759e-10 1.07985e-09 -1.55543e-10) (-1.30107e-09 2.4689e-09 -1.97509e-10) (-3.2361e-09 1.28569e-09 -1.31252e-10) (-2.96258e-09 -1.2223e-09 2.31879e-10) (-1.03677e-09 -2.00239e-09 7.78235e-10) (1.00586e-10 -1.02344e-09 7.37666e-10) (1.73859e-10 -1.5355e-10 2.17305e-10) (9.64496e-11 8.5841e-12 1.74779e-11) (1.52466e-10 4.35319e-11 -6.23785e-11) (2.93666e-10 3.26469e-11 -8.47873e-11) (8.79911e-10 -4.29583e-11 1.16878e-10) (2.61035e-09 -2.08278e-10 1.12813e-09) (3.96815e-09 -1.02688e-10 2.44538e-09) (2.40275e-09 2.4142e-10 1.86872e-09) (3.84436e-10 1.85548e-10 4.19688e-10) (-1.54622e-11 4.20931e-11 2.02147e-11) (-1.90278e-10 9.46999e-11 -7.99927e-11) (-3.07631e-10 9.17526e-11 -2.13599e-10) (-2.2988e-10 6.4255e-11 -2.5378e-10) (-1.61901e-10 7.89563e-11 -4.28659e-10) (-3.54486e-11 1.94598e-10 -6.65363e-10) (-2.9649e-11 5.73475e-11 -3.02233e-10) (-6.34196e-12 -1.0036e-11 -3.20876e-12) (-2.67407e-11 -1.56951e-10 1.51847e-10) (-7.63323e-11 -2.15918e-10 2.25275e-10) (-1.34012e-10 -1.1113e-10 1.03883e-10) (-1.31956e-10 -3.49066e-11 1.16816e-11) (-5.67039e-11 -9.65288e-13 -4.62262e-11) (4.5256e-12 5.26264e-12 -1.23042e-10) (7.04496e-11 1.94828e-11 -1.20812e-10) (8.62985e-12 2.57283e-11 -8.41753e-13) (-8.29223e-10 6.10269e-10 6.11306e-10) (-5.29539e-09 2.07208e-09 1.98877e-09) (-2.74328e-09 7.21304e-10 2.85252e-11) (-8.18716e-11 -8.31031e-11 -3.17258e-10) (1.14552e-09 -9.78219e-10 -1.13552e-09) (1.48624e-09 -1.32828e-09 -3.94269e-10) (7.67613e-10 -7.98735e-10 2.85316e-10) (1.5231e-10 -1.62497e-10 6.91027e-11) (1.85214e-11 1.57078e-11 -6.00444e-11) (-9.03732e-11 8.28558e-10 -6.92721e-10) (-6.3477e-10 2.08732e-09 -9.2008e-10) (-8.84148e-10 7.53552e-10 -3.1179e-10) (-6.8826e-10 -3.2432e-10 4.14355e-11) (-6.82141e-10 -1.26006e-09 6.10387e-10) (-2.58037e-10 -7.1011e-10 6.11683e-10) (-9.00329e-12 -5.75187e-11 9.44536e-11) (8.92979e-12 2.52429e-12 8.34387e-14) (8.47541e-11 2.4696e-11 -6.35219e-11) (1.89555e-10 1.36017e-12 -1.00239e-10) (4.97107e-10 -9.04166e-11 1.02452e-11) (1.89529e-09 -3.35591e-10 8.18226e-10) (4.50477e-09 -3.53682e-10 3.00599e-09) (4.20771e-09 2.66001e-10 3.64524e-09) (1.11828e-09 3.84101e-10 1.34699e-09) (1.12586e-11 7.681e-11 9.38965e-11) (-1.12672e-10 5.91867e-11 -3.3209e-11) (-2.55254e-10 5.28173e-11 -1.76822e-10) (-2.0244e-10 3.68841e-11 -2.21037e-10) (-1.27744e-10 8.97312e-11 -3.5461e-10) (-6.62838e-11 1.97755e-10 -5.14911e-10) (5.00294e-11 1.25531e-10 -3.54653e-10) (1.18145e-11 -6.53448e-12 -2.67192e-11) (-4.89012e-12 -4.99827e-11 1.41843e-11) (-1.05214e-10 -1.42198e-10 7.74231e-11) (-3.07702e-10 -1.7802e-10 1.31107e-10) (-3.8661e-10 -1.0955e-10 1.22878e-10) (-1.28493e-10 -2.10544e-11 9.69139e-12) (-8.51835e-12 -3.74657e-12 -2.65272e-11) (7.50783e-11 7.47053e-12 -1.46956e-10) (5.35704e-11 5.7957e-11 -5.96885e-11) (-2.32289e-10 3.8473e-10 2.13218e-10) (-3.47542e-09 1.98888e-09 1.84329e-09) (-3.91473e-09 1.22623e-09 6.74054e-10) (-5.04098e-10 -4.5117e-11 -3.05548e-10) (1.46118e-10 -3.37009e-10 -3.16354e-10) (6.86343e-10 -7.71174e-10 1.07628e-10) (1.1408e-09 -1.13045e-09 8.92089e-10) (5.73401e-10 -4.8852e-10 2.87269e-10) (1.47853e-10 -5.24631e-11 -2.17609e-10) (-8.82727e-11 7.51032e-10 -1.72281e-09) (-6.71532e-10 1.79349e-09 -1.98861e-09) (-3.47904e-10 5.08325e-10 -3.94535e-10) (-1.39999e-10 -4.85348e-11 2.01288e-11) (-7.35746e-10 -6.7177e-10 4.86362e-10) (-6.82404e-10 -5.09916e-10 5.35801e-10) (-6.86361e-11 -4.21349e-11 6.76752e-11) (2.94266e-12 6.53517e-13 -1.44529e-12) (8.60621e-11 1.21723e-11 -7.53634e-11) (1.49355e-10 -2.1717e-11 -1.28653e-10) (2.01276e-10 -8.4488e-11 -7.71481e-11) (6.62083e-10 -2.35561e-10 1.7565e-10) (2.87466e-09 -4.15262e-10 1.8532e-09) (5.62627e-09 2.20622e-10 4.97007e-09) (3.17721e-09 7.70206e-10 3.81095e-09) (2.88179e-10 2.59871e-10 6.49881e-10) (-2.91198e-11 2.495e-11 1.22457e-11) (-1.45154e-10 1.94158e-11 -1.07111e-10) (-1.93854e-10 5.36952e-12 -2.18218e-10) (-1.60619e-10 6.50283e-11 -3.06033e-10) (-7.88224e-11 1.21712e-10 -3.11492e-10) (-6.17754e-12 1.07e-10 -2.55669e-10) (1.15984e-12 2.84143e-12 -7.43905e-11) (-1.96902e-11 -2.66882e-11 -2.23683e-11) (-9.8666e-11 -7.63106e-11 -9.53427e-13) (-2.16352e-10 -1.09677e-10 6.71364e-11) (-2.68449e-10 -9.19398e-11 1.429e-10) (-1.39318e-10 -4.26686e-11 8.94199e-11) (-7.88883e-12 -6.65955e-12 1.99523e-12) (2.30727e-11 -1.76649e-11 -5.20508e-11) (5.08613e-11 3.45183e-11 -1.12744e-10) (-9.75646e-11 2.76694e-10 -1.76046e-11) (-2.25622e-09 1.99672e-09 9.47457e-10) (-4.61414e-09 2.13621e-09 1.05347e-09) (-1.30296e-09 1.61598e-10 -9.84493e-11) (-2.8172e-11 -9.08764e-11 -1.43941e-11) (6.88538e-10 -8.6735e-10 4.39491e-10) (1.89648e-09 -1.78393e-09 1.26662e-09) (1.04138e-09 -7.99264e-10 4.25148e-10) (2.3975e-10 -6.22975e-11 -1.89557e-10) (8.61168e-11 6.82356e-10 -2.01152e-09) (-1.22105e-09 1.87827e-09 -3.59369e-09) (-1.22929e-09 8.2393e-10 -1.29331e-09) (-8.65746e-10 8.31629e-12 -8.61443e-11) (-1.03146e-09 -3.84103e-10 4.3999e-10) (-4.07947e-10 -2.60749e-10 3.76196e-10) (-1.48281e-11 -3.82821e-11 6.35528e-11) (1.75974e-11 -5.1265e-12 2.76897e-12) (6.02377e-11 -7.32132e-12 -4.72737e-11) (8.03595e-11 -3.55385e-11 -1.36019e-10) (8.46697e-11 -8.30369e-11 -1.69469e-10) (1.457e-10 -9.78284e-11 -7.73906e-11) (9.22467e-10 -1.95809e-10 3.88342e-10) (4.49498e-09 1.75966e-10 3.67257e-09) (5.95671e-09 1.30344e-09 6.70652e-09) (1.63483e-09 8.14143e-10 2.91244e-09) (-7.76885e-12 7.73622e-11 2.02502e-10) (-6.15752e-11 1.24671e-12 -2.39818e-11) (-1.40405e-10 -2.56912e-11 -1.88629e-10) (-1.21942e-10 2.44686e-11 -2.61799e-10) (-7.48279e-11 7.28948e-11 -2.21074e-10) (-5.23533e-11 7.11169e-11 -1.09694e-10) (-4.09069e-11 1.43884e-11 -3.67151e-11) (-1.02409e-10 -3.51697e-11 -3.2023e-11) (-2.01821e-10 -1.12103e-10 -3.53484e-11) (-1.37863e-10 -8.75549e-11 -1.33753e-11) (-4.18174e-11 -2.49844e-11 1.14159e-11) (-1.67535e-11 -7.29986e-12 2.00448e-11) (-5.099e-12 -3.79141e-12 8.88447e-12) (-1.46638e-12 -4.70752e-12 -4.57662e-12) (-1.63189e-11 3.86406e-13 -6.86758e-11) (-1.96017e-10 2.4719e-10 -1.36317e-10) (-1.84868e-09 1.9222e-09 2.59602e-10) (-3.92748e-09 2.65523e-09 9.52571e-10) (-1.29321e-09 3.5027e-10 3.02649e-10) (-3.12712e-11 -1.58405e-10 6.71961e-11) (1.07406e-09 -1.5062e-09 4.17733e-10) (1.83513e-09 -1.95879e-09 5.56422e-10) (6.43945e-10 -5.41148e-10 1.68301e-10) (9.83386e-11 2.38168e-12 -4.32192e-11) (2.66627e-10 5.7885e-10 -9.21687e-10) (-1.8597e-10 1.55071e-09 -2.67562e-09) (-8.5721e-10 8.00121e-10 -1.51227e-09) (-5.51765e-10 5.47356e-11 -1.77903e-10) (-4.07773e-10 -1.79802e-10 2.43409e-10) (-1.91352e-10 -2.55688e-10 3.83431e-10) (-2.46555e-11 -1.13692e-10 1.52567e-10) (-3.14717e-12 -1.11975e-11 7.43944e-12) (-1.01601e-11 -8.67704e-12 -1.81931e-11) (-5.24662e-11 -4.05699e-11 -1.53641e-10) (-4.80984e-11 -9.28156e-11 -3.23428e-10) (6.9935e-11 -8.48276e-11 -2.44184e-10) (2.79833e-10 -5.38047e-11 -4.41966e-11) (2.30785e-09 1.64607e-10 1.42673e-09) (6.60967e-09 1.55987e-09 6.55444e-09) (4.7729e-09 1.89492e-09 6.60123e-09) (6.03727e-10 4.33134e-10 1.51757e-09) (-1.15419e-11 2.366e-12 2.52655e-11) (-6.65302e-11 -3.4603e-11 -9.2272e-11) (-9.94888e-11 -1.88023e-11 -2.69912e-10) (-6.21931e-11 2.99845e-11 -1.94872e-10) (-5.36982e-11 4.34402e-11 -5.66365e-11) (-9.26286e-11 2.2941e-11 -5.01129e-12) (-3.05993e-10 -6.16591e-11 2.40998e-11) (-5.12103e-10 -2.12573e-10 -3.41317e-11) (-2.96233e-10 -1.51625e-10 -9.34163e-11) (-3.84877e-11 -2.05361e-11 -2.65038e-11) (-4.02936e-14 1.06602e-13 -1.32492e-13) (1.30014e-12 1.74591e-12 2.00149e-12) (-1.87366e-13 -7.10554e-15 -4.9168e-14) (-4.88475e-11 2.60664e-12 -4.05139e-11) (-4.56596e-10 2.5313e-10 -1.97011e-10) (-1.9103e-09 1.59181e-09 4.5122e-12) (-2.59291e-09 2.00195e-09 6.6798e-10) (-5.09303e-10 1.69015e-10 2.23014e-10) (5.02154e-11 -2.60997e-10 5.48981e-11) (1.17748e-09 -1.68843e-09 -7.30568e-12) (1.27192e-09 -1.40437e-09 7.25654e-11) (2.77561e-10 -2.19224e-10 6.36972e-11) (1.66059e-11 1.19416e-11 -5.76669e-12) (9.01088e-11 4.25928e-10 -4.16995e-10) (2.92858e-10 1.1118e-09 -1.47932e-09) (1.89822e-10 4.94178e-10 -8.24727e-10) (2.56432e-11 4.41098e-12 -2.85426e-11) (1.29099e-10 -1.54737e-10 1.42689e-10) (1.49694e-10 -3.84873e-10 4.028e-10) (-1.1901e-10 -1.97261e-10 1.92204e-10) (-5.74509e-10 -1.52629e-10 8.65352e-11) (-1.11972e-09 -1.01845e-10 -1.74821e-10) (-8.29283e-10 -1.4219e-10 -3.80154e-10) (-3.70311e-10 -1.77288e-10 -4.27396e-10) (-6.7907e-11 -1.20975e-10 -3.88492e-10) (1.07696e-10 -1.64162e-11 -1.61424e-10) (6.26037e-10 1.21533e-10 1.78024e-10) (3.79801e-09 1.14856e-09 3.34798e-09) (6.41557e-09 2.58392e-09 7.52906e-09) (2.95997e-09 1.44471e-09 4.22757e-09) (2.60347e-10 1.07299e-10 4.28342e-10) (6.82073e-13 -3.88386e-12 -5.19246e-12) (-3.661e-11 -3.77895e-11 -1.87384e-10) (-3.12702e-11 -4.46102e-13 -7.68743e-11) (-5.68149e-11 1.16899e-11 -3.65032e-11) (-1.81811e-10 4.89883e-12 7.14977e-12) (-7.2607e-10 -1.07198e-10 7.9611e-11) (-1.24941e-09 -3.05659e-10 -1.73567e-11) (-5.61523e-10 -1.87863e-10 -1.44754e-10) (-3.06087e-11 -1.18822e-11 -4.34898e-11) (3.12614e-11 2.36115e-11 -2.90785e-11) (5.44789e-11 5.15587e-11 -6.5762e-12) (4.03318e-12 1.22403e-11 1.50471e-12) (-6.67079e-11 2.72498e-11 -1.84432e-11) (-7.70342e-10 2.87402e-10 -1.7289e-10) (-1.98609e-09 1.04777e-09 -6.5342e-11) (-1.40012e-09 7.67581e-10 2.38312e-10) (-9.7206e-11 9.6525e-13 2.95925e-11) (1.56635e-10 -3.34941e-10 -4.19171e-11) (1.08215e-09 -1.18529e-09 -1.46296e-10) (9.56094e-10 -7.06616e-10 1.41742e-10) (2.38556e-10 -7.76252e-11 1.3232e-10) (2.34873e-11 4.03594e-11 1.97176e-11) (1.74367e-11 2.84202e-10 -1.62665e-10) (2.4572e-10 6.38445e-10 -7.68488e-10) (5.99868e-10 3.34426e-10 -7.02701e-10) (7.74919e-10 -1.00144e-10 -2.09709e-10) (7.82086e-10 -4.0805e-10 2.38182e-10) (9.98212e-11 -1.81921e-10 1.86491e-10) (-4.55091e-10 -1.09039e-10 1.84377e-10) (-2.32546e-09 -4.25635e-11 1.11409e-10) (-1.87824e-09 -2.2972e-10 -1.27933e-10) (-4.69501e-10 -2.81772e-10 -1.3015e-10) (-1.85259e-10 -3.13688e-10 -2.29011e-10) (-2.41589e-10 -2.98432e-10 -5.05677e-10) (-2.18153e-10 -3.26981e-11 -5.22624e-10) (3.33144e-12 4.82312e-11 -6.54104e-11) (5.24585e-10 3.43092e-10 4.69477e-10) (3.53432e-09 1.55777e-09 4.0726e-09) (4.77205e-09 1.8797e-09 5.31802e-09) (1.91104e-09 5.9894e-10 1.76991e-09) (1.92298e-10 1.97299e-11 8.06404e-11) (1.17952e-11 -6.57777e-12 -2.99343e-11) (6.13155e-13 3.65684e-13 2.19562e-13) (-1.13761e-10 7.99461e-12 4.03956e-11) (-9.64421e-10 1.53513e-11 2.68867e-10) (-1.92046e-09 -1.38278e-10 3.54767e-10) (-1.0508e-09 -3.31749e-10 5.25902e-11) (-1.29636e-10 -1.77835e-10 -8.56027e-11) (1.11441e-10 -1.07438e-10 -1.92814e-10) (3.90856e-10 1.22666e-10 -3.80378e-10) (3.4438e-10 3.52912e-10 -2.46396e-10) (4.33426e-11 1.63161e-10 -2.01521e-11) (-1.34504e-10 1.08886e-10 2.35995e-11) (-9.20014e-10 2.55101e-10 -1.98653e-12) (-1.65043e-09 4.31703e-10 -1.41038e-10) (-7.27856e-10 1.72728e-10 -1.15818e-10) (-2.85171e-11 -1.3326e-11 -2.44174e-11) (1.70002e-10 -1.7581e-10 -7.80659e-11) (7.42786e-10 -5.04963e-10 4.06379e-11) (8.2466e-10 -4.32157e-10 3.57279e-10) (3.17695e-10 -9.21094e-11 2.87624e-10) (2.99568e-11 3.76711e-11 7.27734e-11) (-1.29695e-11 9.77852e-11 3.64736e-12) (3.08677e-11 1.6214e-10 -1.15365e-10) (1.38923e-10 7.47088e-11 -1.69544e-10) (8.35331e-11 -3.74936e-11 -6.99909e-11) (-1.97328e-11 -4.26444e-11 -1.50189e-11) (-5.12412e-10 -1.38322e-10 -5.03438e-11) (-1.04969e-09 -9.65229e-11 -8.40448e-11) (-2.31534e-10 -6.04557e-11 9.56572e-12) (4.30311e-11 -8.99944e-11 4.84618e-11) (5.14809e-10 -4.38834e-10 1.28346e-10) (3.63995e-10 -3.9643e-10 -1.68978e-10) (-8.68546e-11 -3.28117e-10 -6.69346e-10) (-1.3872e-09 -9.78515e-11 -1.98019e-09) (-1.47667e-09 4.53173e-10 -1.41272e-09) (-1.4391e-10 1.47194e-10 -4.4624e-11) (2.99248e-10 3.46567e-10 6.3946e-10) (1.98961e-09 8.82373e-10 2.58539e-09) (2.2742e-09 7.40518e-10 2.03616e-09) (9.44337e-10 2.38593e-10 4.91634e-10) (1.50881e-10 2.99892e-11 2.7697e-11) (1.47472e-10 8.40584e-11 1.57812e-10) (-4.09904e-11 8.57293e-11 2.02674e-10) (-5.33119e-10 7.20957e-11 4.69423e-10) (-8.57174e-10 -2.15746e-10 4.13923e-10) (-3.6965e-10 -3.77156e-10 5.58844e-11) (-6.27507e-11 -4.66945e-10 -1.90611e-10) (8.651e-11 -3.0902e-10 -3.83872e-10) (1.1356e-10 7.48679e-11 -4.79992e-10) (1.40455e-10 6.93266e-10 -6.06024e-10) (-2.83041e-11 8.8549e-10 -2.03984e-10) (-3.23826e-10 5.79126e-10 1.68842e-10) (-8.32395e-10 3.93876e-10 3.3557e-10) (-9.81289e-10 1.31105e-10 1.46696e-10) (-3.15629e-10 -1.44381e-11 -4.6802e-11) (-8.22359e-12 -1.16288e-11 -1.6374e-11) (1.01185e-10 -6.04093e-11 -3.21955e-11) (3.91295e-10 -1.84002e-10 2.62333e-11) (4.55851e-10 -2.21789e-10 1.31179e-10) (1.92149e-10 -9.1356e-11 1.08892e-10) (2.35681e-11 4.17017e-13 3.59614e-11) (-9.12548e-12 3.42191e-11 2.84327e-11) (-2.89149e-11 5.50631e-11 1.20673e-11) (-1.96264e-11 1.75464e-11 -7.93196e-12) (-4.75129e-11 -6.73637e-12 -2.34813e-11) (-1.58878e-10 -5.44462e-11 -3.57465e-11) (-1.44827e-10 -4.94075e-11 1.36624e-11) (-1.96231e-11 -1.94674e-11 3.42416e-11) (1.36348e-10 -8.42652e-11 1.69479e-10) (6.03734e-10 -2.93339e-10 3.37331e-10) (8.46084e-10 -4.81047e-10 5.08293e-11) (8.98897e-10 -5.96064e-10 -6.45754e-10) (6.4244e-10 -5.61676e-10 -1.89964e-09) (-7.08442e-10 -7.35367e-11 -3.1947e-09) (-2.43539e-09 6.49794e-10 -3.22758e-09) (-1.36282e-09 5.02765e-10 -9.05428e-10) (-1.08438e-10 8.2123e-11 4.96924e-11) (1.6623e-10 1.4937e-10 5.03425e-10) (6.84717e-10 2.11185e-10 9.36041e-10) (6.81541e-10 1.58678e-10 5.83104e-10) (4.10418e-10 1.08392e-10 2.60725e-10) (2.10137e-11 3.87635e-11 1.16686e-10) (4.11285e-12 1.31956e-10 1.97271e-10) (-2.74755e-11 9.53844e-11 1.78768e-10) (-1.76374e-11 -1.9287e-11 5.21945e-11) (-3.5373e-11 -2.51274e-10 2.60783e-11) (-6.19727e-11 -6.2035e-10 -1.33528e-10) (-8.84627e-11 -2.97476e-10 -1.88145e-10) (-1.23579e-10 2.8223e-11 -2.03933e-10) (-4.10283e-10 8.70874e-10 -6.25591e-10) (-5.59883e-10 2.01566e-09 -5.97161e-10) (-4.39089e-10 1.38676e-09 1.28147e-10) (-3.12539e-10 4.64795e-10 3.90426e-10) (-2.12228e-10 7.06599e-11 3.3608e-10) (-7.70985e-11 -3.98035e-11 1.53866e-10) (-3.44644e-12 -2.61263e-11 3.52832e-11) (2.09752e-11 -2.73812e-11 1.00373e-11) (9.60434e-11 -8.43486e-11 -8.19386e-12) (2.30787e-10 -1.9567e-10 -3.89639e-11) (2.75926e-10 -2.2063e-10 -4.51017e-11) (1.26347e-10 -7.45247e-11 -1.65917e-11) (1.22939e-11 2.21981e-12 -7.92377e-14) (-6.59183e-12 3.27096e-11 5.25996e-12) (-6.75419e-11 8.27358e-11 1.11009e-11) (-1.08433e-10 5.2963e-11 3.13227e-12) (-9.95025e-11 2.21329e-12 2.81252e-12) (-4.90221e-11 -1.83627e-11 1.20047e-11) (-1.24493e-11 -1.91294e-11 2.01508e-11) (1.66446e-11 -4.28804e-11 5.00792e-11) (7.6904e-11 -9.61407e-11 7.03928e-11) (1.813e-10 -1.82948e-10 1.55058e-11) (3.96713e-10 -3.07784e-10 -2.35854e-10) (6.60276e-10 -2.789e-10 -8.75933e-10) (5.06637e-10 2.05551e-10 -1.73033e-09) (-3.03834e-10 7.90225e-10 -2.12384e-09) (-6.52193e-10 5.43057e-10 -1.05452e-09) (-1.33439e-10 7.03456e-11 -5.39049e-11) (-2.49744e-11 2.10955e-11 1.24444e-10) (1.02931e-10 1.38834e-11 4.95167e-10) (1.275e-10 -1.77524e-11 4.1531e-10) (5.0665e-11 -6.38792e-12 1.72637e-10) (-9.81607e-11 -1.93455e-11 1.26864e-10) (-1.22963e-10 5.96094e-11 9.86431e-11) (-4.29766e-11 3.46675e-11 4.38024e-11) (-2.04707e-13 -4.65701e-12 7.83353e-12) (4.07004e-11 -1.18305e-10 2.25849e-11) (6.13744e-11 -2.40221e-10 5.19378e-12) (-3.41242e-12 -6.68931e-11 -1.46303e-11) (-4.56135e-11 2.42123e-11 -3.65128e-11) (-4.04149e-10 7.17384e-10 -2.96447e-10) (-5.99326e-10 1.8842e-09 -4.23057e-10) (-1.61086e-10 1.24983e-09 -5.06854e-12) (5.39471e-11 2.49095e-10 1.69267e-10) (1.0833e-10 -4.16272e-12 3.25542e-10) (4.78668e-11 -1.38379e-10 4.31313e-10) (-7.55004e-11 -7.08435e-11 2.116e-10) (-8.28312e-11 -2.55261e-11 4.8052e-11) (-5.09473e-11 -2.83168e-11 -1.79382e-11) (-1.77646e-11 -6.38715e-11 -6.91008e-11) (3.86215e-11 -8.91577e-11 -1.00555e-10) (3.18941e-11 -2.97335e-11 -4.89759e-11) (2.12016e-12 5.08555e-12 -1.10457e-11) (-4.51094e-11 6.45535e-11 -2.865e-11) (-1.78793e-10 1.48824e-10 -5.71148e-11) (-1.91323e-10 7.11694e-11 -6.13967e-11) (-1.01173e-10 -2.57543e-11 -4.03662e-11) (-4.31554e-11 -7.49804e-11 -2.2535e-11) (1.27531e-11 -1.09297e-10 3.5458e-13) (1.01345e-10 -1.30659e-10 4.01167e-11) (2.52705e-10 -1.60628e-10 1.01654e-10) (3.7937e-10 -1.89702e-10 1.10833e-10) (3.75901e-10 -1.972e-10 5.47767e-12) (2.53143e-10 -1.07387e-10 -1.28259e-10) (1.54114e-10 8.50507e-11 -2.71727e-10) (2.01323e-11 7.29228e-10 -7.6751e-10) (-2.66671e-10 1.04051e-09 -8.66909e-10) (-1.38243e-10 2.50861e-10 -1.99682e-10) (-8.15645e-12 1.43698e-12 2.40379e-12) (-1.56539e-11 -8.43211e-11 1.29139e-10) (-8.67704e-12 -2.23263e-10 3.32074e-10) (-5.76784e-11 -1.41076e-10 2.47333e-10) (-6.41994e-12 -1.91131e-11 5.68479e-12) (-2.33938e-11 -1.92731e-12 -4.13673e-12) (-4.93587e-11 8.18843e-12 -1.28426e-11) (-2.80256e-11 -9.43356e-12 -2.39101e-12) (-3.9565e-11 -7.95632e-11 2.65193e-11) (-8.30709e-11 -2.27619e-10 1.01243e-10) (-1.18819e-10 -1.44938e-10 7.38625e-11) (-1.61899e-10 3.49288e-14 7.88484e-12) (-4.11733e-10 3.36586e-10 -9.95549e-11) (-4.40701e-10 8.37442e-10 -1.41149e-10) (-6.90266e-11 6.80963e-10 5.34234e-11) (1.30283e-10 2.76103e-10 1.95075e-10) (1.61524e-10 8.44909e-11 3.019e-10) (2.11895e-11 1.73412e-11 2.22518e-10) (-1.16043e-10 4.47328e-11 1.09227e-10) (-3.96995e-10 1.33938e-10 -3.25834e-12) (-5.21623e-10 1.27016e-10 -2.35798e-10) (-2.99402e-10 1.37735e-11 -2.76986e-10) (-9.80623e-11 -3.4106e-11 -1.55917e-10) (-2.68793e-11 -2.09477e-11 -5.79744e-11) (-1.39486e-11 -4.76014e-12 -2.55658e-11) (-1.63771e-11 4.62211e-12 -3.06486e-11) (-1.27064e-11 6.31522e-12 -5.95721e-11) (1.97185e-11 -1.99829e-11 -1.07837e-10) (1.06672e-10 -9.80289e-11 -1.6938e-10) (2.12239e-10 -1.88133e-10 -1.36753e-10) (2.83624e-10 -2.44197e-10 1.95098e-11) (3.62561e-10 -3.15305e-10 2.88669e-10) (3.66446e-10 -3.09875e-10 5.33108e-10) (2.15678e-10 -1.64957e-10 3.82321e-10) (6.4925e-11 -4.27134e-11 8.15741e-11) (1.53205e-11 -6.61915e-12 -4.59154e-12) (3.14346e-11 2.19383e-11 -7.64966e-11) (4.31637e-11 2.11637e-10 -2.17736e-10) (4.22593e-11 4.82834e-10 -2.42272e-10) (3.50931e-11 2.96878e-10 -7.09625e-11) (1.25457e-11 3.06132e-11 6.6513e-12) (1.7515e-11 -1.24787e-11 2.28589e-11) (4.93678e-11 -9.59113e-11 6.99061e-11) (2.37336e-11 -9.06721e-11 4.58069e-11) (5.06903e-12 2.41538e-12 -5.25646e-13) (2.76827e-12 4.69099e-12 -3.65672e-12) (7.71477e-13 7.58713e-14 -2.46217e-12) (-6.76967e-13 -1.99547e-11 -3.2346e-12) (-4.45538e-11 -1.54319e-10 3.9761e-11) (-2.50644e-10 -3.36276e-10 1.90914e-10) (-6.24252e-10 -2.73937e-10 3.07208e-10) (-1.15664e-09 1.28152e-10 2.12648e-10) (-1.89534e-09 9.05368e-10 -2.05725e-10) (-1.85087e-09 1.32029e-09 -5.19247e-10) (-7.39888e-10 6.6823e-10 -1.39027e-10) (-1.20791e-10 1.46592e-10 8.72575e-11) (-2.2764e-11 8.08774e-11 2.36801e-10) (3.14694e-12 8.07861e-11 2.88108e-10) (-2.52204e-11 7.49593e-11 9.84956e-11) (-5.45384e-11 8.008e-11 2.2686e-12) (-9.70544e-11 8.91141e-11 -7.94259e-11) (-6.72569e-11 3.27059e-11 -9.43792e-11) (-1.45193e-11 -6.84189e-12 -5.44295e-11) (1.59986e-11 -2.58719e-11 -4.85463e-11) (6.67552e-11 -6.17061e-11 -8.30779e-11) (1.39217e-10 -1.11649e-10 -1.44668e-10) (1.94812e-10 -1.56119e-10 -2.0341e-10) (1.92678e-10 -1.68489e-10 -2.05361e-10) (1.31748e-10 -1.38597e-10 -1.22903e-10) (7.51271e-11 -9.8307e-11 -2.55666e-11) (7.78769e-11 -1.13148e-10 6.23672e-11) (1.36406e-10 -1.87529e-10 2.62753e-10) (1.65575e-10 -1.983e-10 4.82036e-10) (9.2324e-11 -8.42991e-11 3.91036e-10) (1.05574e-11 2.31201e-12 9.37704e-11) (-2.57333e-12 5.71982e-12 -5.86486e-13) (-4.95873e-11 1.01261e-10 -1.50346e-10) (-7.25981e-11 2.68266e-10 -4.02449e-10) (2.53679e-11 1.99788e-10 -2.30435e-10) (5.49252e-11 5.37287e-11 -4.13068e-11) (8.74148e-11 -3.03559e-13 7.00101e-12) (1.46956e-10 -6.29033e-11 4.25278e-11) (1.05381e-10 -5.89523e-11 3.50767e-11) (2.85399e-11 -9.87337e-12 7.71075e-12) (1.22768e-10 3.32518e-11 -3.04862e-12) (1.44502e-10 4.32726e-11 -9.00262e-11) (1.4118e-10 -2.57246e-13 -1.63061e-10) (4.41644e-11 -4.67173e-11 -9.95399e-11) (-3.75592e-11 -5.94116e-11 -2.31209e-11) (-4.10896e-10 -2.11806e-10 1.5952e-10) (-1.30226e-09 -2.51336e-10 6.7271e-10) (-1.52443e-09 1.28601e-10 6.64608e-10) (-9.38557e-10 4.25999e-10 1.43391e-10) (-5.78342e-10 5.30795e-10 -2.27417e-10) (-3.79955e-10 4.38014e-10 -3.47805e-10) (-1.88247e-10 1.60132e-10 -1.4333e-10) (-9.5019e-11 3.61152e-11 -1.97914e-12) (-1.20796e-10 2.17794e-11 8.67085e-11) (-1.39695e-10 4.75421e-11 1.79803e-10) (-9.52107e-11 8.20608e-11 1.68718e-10) (-4.01497e-11 6.91298e-11 8.64541e-11) (-6.97142e-12 2.33968e-11 2.07539e-11) (5.5951e-13 8.13123e-13 7.39985e-13) (1.48192e-11 -1.29901e-11 -5.14482e-12) (1.12899e-10 -1.29616e-10 -6.33436e-11) (3.00368e-10 -3.36456e-10 -2.08625e-10) (4.21728e-10 -3.89809e-10 -3.37232e-10) (3.50558e-10 -2.34333e-10 -3.26694e-10) (1.78425e-10 -7.90763e-11 -1.84157e-10) (5.4554e-11 -2.40094e-11 -4.50292e-11) (2.11511e-11 -2.31386e-11 4.81281e-12) (3.63955e-11 -1.11724e-10 1.13371e-10) (1.30108e-12 -2.40726e-10 3.8944e-10) (-1.10461e-10 -1.53553e-10 5.35508e-10) (-1.83378e-10 7.39731e-11 3.87666e-10) (-1.93067e-10 2.32432e-10 1.56776e-10) (-1.72934e-10 3.20245e-10 -8.90215e-11) (-7.88367e-11 2.99563e-10 -3.46175e-10) (7.17339e-11 1.22961e-10 -3.65591e-10) (1.43761e-10 -2.46094e-11 -1.76072e-10) (2.21301e-10 -1.13047e-10 -4.28641e-11) (3.29717e-10 -1.81547e-10 1.08293e-10) (2.99468e-10 -1.12945e-10 1.65918e-10) (1.78247e-10 -7.22993e-12 7.88769e-11) (1.37728e-12 -2.90313e-15 1.18898e-12) (7.72604e-13 7.77599e-14 8.60722e-13) (2.35103e-13 4.04857e-14 1.99773e-14) (2.61744e-12 1.64382e-13 -1.16563e-12) (1.50245e-11 2.87486e-13 -4.63058e-12) (2.35048e-11 2.41772e-13 -7.18579e-12) (1.49236e-11 -2.09091e-13 -5.26962e-12) (6.67761e-12 -3.57363e-13 -5.11916e-13) (1.11e-11 -7.31146e-13 4.14675e-12) (3.39095e-11 -1.36314e-12 1.48188e-11) (7.10041e-11 -1.57024e-12 2.66672e-11) (1.33149e-10 -1.85962e-12 4.24103e-11) (2.48712e-10 -2.67651e-12 6.77982e-11) (4.12408e-10 -1.77824e-12 9.66398e-11) (5.55782e-10 7.61552e-13 1.15286e-10) (6.17807e-10 2.24415e-12 1.29397e-10) (5.896e-10 2.43315e-12 1.24228e-10) (4.72585e-10 2.60411e-12 4.09539e-11) (3.50235e-10 2.31942e-12 -1.06205e-10) (2.8947e-10 3.41619e-13 -2.69263e-10) (2.64784e-10 -4.17643e-12 -2.62647e-10) (4.61249e-10 -6.94825e-12 -1.55121e-10) (9.76376e-10 -3.75621e-12 2.66164e-11) (1.12529e-09 1.27405e-11 3.21022e-10) (1.00567e-09 1.91368e-11 5.12602e-10) (9.10074e-10 2.09699e-11 6.03106e-10) (7.09011e-10 1.79835e-11 5.25935e-10) (4.69522e-10 1.33019e-11 3.44208e-10) (3.90107e-10 7.64866e-12 1.9493e-10) (6.39379e-10 3.28993e-12 9.6325e-11) (1.35091e-09 -1.83066e-12 -1.06837e-10) (2.01082e-09 -1.56849e-12 -3.93348e-10) (1.71064e-09 4.01079e-12 -4.39448e-10) (6.02875e-10 4.92685e-12 -1.89933e-10) (1.13215e-11 1.6818e-13 -1.83392e-11) (-2.5957e-10 -4.34279e-12 -6.61781e-11) (-2.04152e-10 -3.0313e-12 -4.99462e-11) (-7.9078e-12 -1.095e-13 -4.36558e-12) (1.29279e-13 -1.19303e-14 -4.38925e-13) (4.48452e-13 -1.56871e-14 -2.99733e-14) (9.66064e-12 2.27584e-12 2.10792e-11) (3.14693e-12 1.1995e-12 6.35569e-12) (2.95525e-12 4.16097e-13 1.09421e-12) (3.78131e-11 -7.82228e-13 -1.85583e-13) (2.42447e-10 -1.16366e-11 -6.27949e-12) (5.46604e-10 -2.36725e-11 -4.15451e-11) (5.28903e-10 -1.96153e-11 -8.96861e-11) (2.55662e-10 -1.01658e-11 -3.57693e-11) (1.20825e-10 -4.05639e-12 2.35201e-11) (2.00565e-10 -4.39047e-12 1.12103e-10) (4.52503e-10 -7.15286e-12 2.52557e-10) (8.25041e-10 -2.53735e-11 3.5095e-10) (1.40316e-09 -6.1793e-11 4.02516e-10) (2.42899e-09 -1.11724e-10 4.33033e-10) (4.08091e-09 -1.8876e-10 4.75021e-10) (6.17514e-09 -3.11057e-10 7.06565e-10) (8.1538e-09 -4.27112e-10 1.14656e-09) (9.1663e-09 -4.28308e-10 8.91025e-10) (8.66256e-09 -2.745e-10 -9.09473e-10) (6.02605e-09 -4.9634e-11 -2.88363e-09) (2.58086e-09 3.75295e-11 -2.2929e-09) (1.22048e-09 1.08083e-11 -6.02348e-10) (3.00735e-09 -6.04046e-13 5.53972e-10) (7.77855e-09 3.66673e-11 3.38643e-09) (1.2178e-08 -1.51989e-11 5.3806e-09) (1.4778e-08 -5.01923e-11 5.41917e-09) (1.35344e-08 5.73069e-11 4.07269e-09) (9.39078e-09 1.25734e-10 2.46033e-09) (6.45309e-09 4.4998e-11 1.29823e-09) (6.91967e-09 -1.05678e-10 5.25348e-10) (1.13973e-08 -3.2128e-10 -5.30095e-10) (1.77146e-08 -4.33342e-10 -2.09638e-09) (1.93421e-08 -2.98346e-10 -3.066e-09) (1.24256e-08 -1.58521e-11 -2.27049e-09) (2.52745e-09 3.44764e-11 -5.63281e-10) (-1.86115e-10 -2.47539e-12 -6.14063e-11) (-3.4005e-09 -1.0593e-10 -4.20794e-10) (-8.94283e-10 -1.63143e-11 -7.03675e-11) (-1.18874e-11 1.0324e-12 4.60492e-12) (4.80708e-12 1.37213e-12 1.23471e-11) (3.76236e-11 1.41779e-11 6.48626e-11) (1.16197e-11 6.10493e-12 1.75256e-11) (6.21614e-12 1.37042e-12 2.86396e-12) (3.93145e-11 -3.49314e-12 6.61694e-12) (1.78196e-10 -2.80828e-11 2.72099e-11) (4.13255e-10 -6.08873e-11 2.6657e-11) (5.11247e-10 -5.11308e-11 -5.51592e-11) (3.06119e-10 -1.60362e-11 -8.2259e-11) (8.67504e-11 3.84888e-12 -1.29384e-11) (7.79028e-11 7.57551e-12 4.22773e-11) (2.77863e-10 1.69484e-11 2.09929e-10) (5.85692e-10 -8.75515e-12 3.24473e-10) (9.09584e-10 -6.83029e-11 2.78345e-10) (1.50411e-09 -1.56528e-10 1.57749e-10) (2.67831e-09 -3.13804e-10 -1.58172e-11) (4.0643e-09 -5.2984e-10 -4.01421e-11) (4.84868e-09 -6.75705e-10 3.52833e-10) (4.87073e-09 -6.50394e-10 7.05605e-10) (4.14543e-09 -4.03709e-10 1.20605e-10) (2.62073e-09 -6.03818e-11 -1.115e-09) (9.85319e-10 1.36963e-10 -1.60092e-09) (1.10955e-10 6.58997e-11 -4.127e-10) (2.37737e-10 2.35547e-11 1.07464e-10) (3.71318e-09 1.18419e-11 3.00781e-09) (8.0859e-09 -2.66368e-10 5.16826e-09) (9.4022e-09 -3.76978e-10 3.83374e-09) (7.85099e-09 -1.50707e-10 1.75105e-09) (4.95626e-09 4.05944e-11 5.24041e-10) (2.93478e-09 2.08784e-11 8.18774e-11) (2.5888e-09 -9.58951e-11 -1.28318e-10) (3.85903e-09 -2.87872e-10 -4.6482e-10) (6.2135e-09 -4.43314e-10 -1.00932e-09) (7.53647e-09 -3.64924e-10 -1.42283e-09) (5.80716e-09 -8.96892e-11 -1.27889e-09) (2.12629e-09 6.56944e-11 -5.52064e-10) (3.99949e-11 6.40782e-12 -2.5953e-11) (-1.50082e-09 -4.41462e-12 -2.14019e-10) (-3.23566e-09 -4.00818e-11 -2.15456e-10) (-2.49921e-10 1.19417e-11 4.57542e-11) (7.29022e-12 6.73044e-12 3.66797e-11) (4.55452e-11 3.33048e-11 1.0399e-10) (1.48899e-11 1.55605e-11 2.9904e-11) (1.39975e-12 9.81511e-13 9.88133e-13) (8.62485e-12 -2.32727e-12 8.73658e-13) (4.4386e-11 -1.8568e-11 1.11552e-11) (8.3283e-11 -3.52662e-11 1.50397e-11) (8.8041e-11 -2.61439e-11 -1.13504e-11) (4.9834e-11 -5.49677e-12 -3.82187e-11) (7.41875e-12 4.66351e-12 -1.61281e-11) (3.67913e-13 1.82404e-12 1.08004e-12) (3.86738e-11 1.7074e-11 7.50346e-11) (1.72215e-10 5.81772e-12 1.68838e-10) (2.68994e-10 -3.59965e-11 1.07027e-10) (5.1288e-10 -1.05551e-10 -1.58529e-11) (1.1721e-09 -2.57851e-10 -2.75493e-10) (1.75157e-09 -4.08222e-10 -4.31453e-10) (1.43121e-09 -3.76468e-10 -1.3205e-10) (8.63853e-10 -2.52327e-10 1.75022e-10) (4.21226e-10 -1.00535e-10 1.34801e-10) (7.82271e-11 5.12256e-12 -6.15103e-11) (-4.42006e-10 2.75326e-10 -1.25874e-09) (-1.71397e-09 5.06052e-10 -1.73605e-09) (-1.64214e-10 4.94991e-11 5.27667e-11) (1.04256e-09 8.96887e-12 2.53978e-09) (3.86997e-09 -4.06006e-10 4.78324e-09) (3.06931e-09 -3.44202e-10 2.1702e-09) (1.35263e-09 -7.43204e-11 3.77337e-10) (4.05339e-10 1.67996e-11 -4.31198e-11) (9.90809e-11 8.82333e-12 -5.75738e-11) (5.87271e-11 -7.36535e-12 -5.95452e-11) (1.54678e-10 -4.34821e-11 -1.25015e-10) (4.42556e-10 -9.65852e-11 -2.65195e-10) (6.66645e-10 -8.05932e-11 -3.66213e-10) (4.80527e-10 -2.17904e-12 -3.19641e-10) (9.46086e-11 2.82861e-11 -1.29782e-10) (-1.42838e-10 4.04751e-11 -9.52957e-11) (-2.99787e-09 1.3116e-10 -4.10013e-10) (-7.37922e-09 -8.10124e-11 -5.86566e-10) (-1.95505e-09 2.06199e-12 2.98401e-11) (-3.6931e-11 1.18378e-11 5.22972e-11) (1.98637e-12 5.48668e-11 1.48169e-10) (2.75939e-11 4.66378e-11 7.67978e-11) (1.16517e-12 2.40899e-12 2.01064e-12) (3.078e-12 -1.83299e-12 -2.53285e-13) (2.57631e-11 -2.01496e-11 7.20614e-12) (3.60586e-11 -3.29829e-11 1.43425e-11) (1.23304e-11 -1.33359e-11 2.72782e-13) (2.26499e-12 -3.24458e-12 -1.43883e-11) (-2.098e-11 1.94743e-11 -7.10784e-11) (-2.22001e-11 2.16368e-11 -1.77737e-11) (-6.98971e-12 1.68861e-11 2.99095e-11) (7.32641e-11 1.78281e-11 1.3974e-10) (1.6381e-10 -2.52511e-11 9.75671e-11) (3.85249e-10 -1.12127e-10 -4.22181e-11) (1.17278e-09 -3.5709e-10 -4.92285e-10) (1.7499e-09 -5.50072e-10 -8.00871e-10) (9.73925e-10 -3.70891e-10 -2.89785e-10) (3.25195e-10 -1.69054e-10 7.90871e-11) (1.53338e-10 -8.17425e-11 1.67451e-10) (8.40198e-13 1.07992e-12 3.30185e-12) (-1.16216e-09 5.31191e-10 -1.18599e-09) (-6.74345e-09 2.00342e-09 -4.93553e-09) (-2.29982e-09 5.39742e-10 -1.96697e-10) (1.24297e-10 4.31697e-11 2.93452e-09) (3.96185e-09 -8.37057e-10 7.20531e-09) (2.73557e-09 -5.90737e-10 2.82183e-09) (6.72632e-10 -8.29118e-11 2.84588e-10) (1.12435e-10 1.12828e-11 -3.48467e-11) (1.82243e-11 1.14092e-11 -5.1085e-11) (-8.07556e-12 -1.94232e-12 -6.67737e-11) (4.51458e-12 -2.34103e-11 -8.10231e-11) (5.4613e-11 -3.96536e-11 -1.11056e-10) (8.89885e-11 -2.79426e-11 -1.3009e-10) (5.09667e-11 4.90264e-12 -1.30441e-10) (-4.27976e-11 4.74461e-11 -1.82717e-10) (-7.83243e-10 1.94152e-10 -4.68373e-10) (-6.15717e-09 4.80735e-10 -1.12857e-09) (-1.50902e-08 5.46087e-12 -1.5034e-09) (-8.29898e-09 -2.17779e-10 -4.9484e-10) (-6.41605e-10 2.72243e-11 1.84398e-10) (-2.22638e-10 9.73311e-11 2.57878e-10) (4.49299e-11 1.23263e-10 1.87617e-10) (1.56955e-11 1.89443e-11 1.61708e-11) (1.68162e-11 -5.17564e-12 -1.41274e-12) (8.45524e-11 -5.35861e-11 9.21524e-12) (9.733e-11 -7.57514e-11 3.28492e-11) (1.74399e-11 -2.59965e-11 1.03435e-11) (-5.79278e-12 -3.92246e-12 -3.29832e-12) (-7.46958e-11 3.0355e-11 -1.03858e-10) (-8.81094e-11 9.8065e-11 -1.46353e-10) (-1.32556e-11 2.64788e-11 -2.164e-12) (3.11971e-11 2.66346e-11 6.2974e-11) (1.89152e-10 -1.12102e-11 1.04574e-10) (6.53673e-10 -1.74716e-10 -9.16073e-11) (2.07925e-09 -6.701e-10 -9.74123e-10) (2.67836e-09 -9.56721e-10 -1.45097e-09) (1.0518e-09 -5.11832e-10 -4.50705e-10) (2.53786e-10 -2.00665e-10 5.00166e-11) (1.93348e-10 -1.55799e-10 2.59388e-10) (3.04212e-11 2.5122e-12 1.13152e-10) (-7.03493e-10 4.36831e-10 -3.67162e-10) (-9.63159e-09 3.63821e-09 -6.04751e-09) (-6.46028e-09 1.83788e-09 -1.31059e-09) (-6.13851e-10 1.58945e-10 3.0407e-09) (4.44923e-09 -1.45716e-09 9.85344e-09) (3.18798e-09 -1.11224e-09 4.02061e-09) (6.50398e-10 -1.62604e-10 3.69299e-10) (1.76518e-10 7.46554e-12 -3.0683e-11) (1.1112e-10 2.90772e-11 -7.98431e-11) (6.99654e-11 7.87395e-12 -7.67318e-11) (7.58705e-11 -2.11735e-11 -8.35338e-11) (1.16505e-10 -4.06256e-11 -9.90566e-11) (8.97445e-11 -1.89147e-11 -7.60446e-11) (1.70622e-11 5.3386e-12 -4.56491e-11) (-6.50124e-11 5.12022e-11 -1.39647e-10) (-5.62891e-10 2.27699e-10 -4.9178e-10) (-4.21197e-09 6.05171e-10 -1.36191e-09) (-1.55454e-08 2.84556e-10 -2.40919e-09) (-1.65074e-08 -6.88736e-10 -1.91572e-09) (-4.2159e-09 -1.35203e-10 1.36274e-10) (-1.91328e-09 1.62591e-10 5.73677e-10) (-1.07782e-10 2.19157e-10 3.37268e-10) (5.5737e-11 7.11547e-11 6.39297e-11) (9.03598e-11 -8.81009e-12 -2.64968e-12) (3.11914e-10 -1.41884e-10 -2.47243e-12) (3.70281e-10 -1.96652e-10 6.18326e-11) (9.94846e-11 -7.2667e-11 4.31811e-11) (-1.02881e-11 -7.09632e-12 6.94349e-12) (-2.26455e-10 4.07325e-11 -6.35692e-11) (-2.82968e-10 1.94124e-10 -3.09001e-10) (-5.49369e-11 1.36137e-10 -1.34202e-10) (1.63779e-11 2.78213e-11 1.36601e-12) (1.96895e-10 1.2947e-11 4.26738e-11) (1.13276e-09 -2.4938e-10 -2.29088e-10) (3.24649e-09 -1.05112e-09 -1.46593e-09) (3.07654e-09 -1.26389e-09 -1.62128e-09) (7.79581e-10 -5.23434e-10 -3.18907e-10) (1.61655e-10 -2.23498e-10 6.42861e-11) (1.65637e-10 -2.09207e-10 2.54152e-10) (9.44481e-11 -1.04312e-11 2.39496e-10) (-4.11982e-10 3.81063e-10 -9.66947e-13) (-1.02909e-08 4.9073e-09 -4.76654e-09) (-1.12534e-08 3.88414e-09 -2.32237e-09) (-1.37901e-09 3.22784e-10 2.9251e-09) (2.97997e-09 -1.73769e-09 9.23293e-09) (1.97532e-09 -1.31859e-09 3.3399e-09) (2.98361e-10 -1.74681e-10 2.14927e-10) (1.27907e-10 -1.10626e-11 -2.39538e-11) (2.41774e-10 3.68225e-11 -8.75617e-11) (4.23541e-10 2.94687e-11 -1.18913e-10) (7.04607e-10 -4.43998e-11 -1.30869e-10) (9.44474e-10 -8.45341e-11 -9.47978e-11) (6.41862e-10 -1.7693e-12 -2.65085e-11) (8.75841e-11 2.48466e-11 -1.09215e-11) (-2.88952e-11 3.37616e-11 -3.45741e-11) (-5.30002e-10 2.53042e-10 -3.95315e-10) (-2.28959e-09 5.88399e-10 -1.1561e-09) (-8.93459e-09 5.85851e-10 -2.38338e-09) (-1.63638e-08 -6.94763e-10 -3.14362e-09) (-1.09079e-08 -7.80565e-10 -1.08665e-09) (-7.57911e-09 -1.57976e-10 2.13851e-10) (-1.10732e-09 4.32748e-10 6.91895e-10) (8.8826e-12 1.16288e-10 1.19326e-10) (1.69395e-10 -4.94214e-13 2.74354e-12) (8.26929e-10 -3.09102e-10 -6.37882e-11) (1.23196e-09 -4.78248e-10 4.82214e-11) (6.52704e-10 -2.23787e-10 1.51021e-10) (2.4512e-11 -1.23228e-11 4.03829e-11) (-3.87978e-10 6.56541e-11 1.22037e-10) (-9.88178e-10 3.23708e-10 -2.22353e-10) (-2.76712e-10 3.26564e-10 -4.05942e-10) (9.08258e-11 1.71887e-10 -1.89085e-10) (4.12516e-10 7.76993e-11 -1.48318e-10) (1.97498e-09 -3.50827e-10 -6.39431e-10) (4.11436e-09 -1.37259e-09 -1.68574e-09) (2.48183e-09 -1.2544e-09 -1.02935e-09) (5.05117e-10 -5.07757e-10 -9.65014e-11) (1.30239e-10 -3.37353e-10 1.31404e-10) (1.06225e-10 -2.5191e-10 2.15843e-10) (8.25157e-11 -1.83176e-11 1.95926e-10) (-3.37961e-10 4.78568e-10 1.86332e-10) (-9.42329e-09 5.71582e-09 -2.55461e-09) (-1.42486e-08 5.95497e-09 -2.02857e-09) (-2.1799e-09 5.19918e-10 2.68342e-09) (7.48983e-10 -1.48907e-09 5.7757e-09) (6.45412e-10 -1.12033e-09 1.75324e-09) (1.11305e-10 -1.60143e-10 7.80167e-11) (9.07272e-11 -2.8842e-11 -3.42484e-11) (2.71991e-10 1.485e-11 -9.14643e-11) (6.84996e-10 9.58142e-12 -1.18321e-10) (1.53559e-09 -1.0946e-10 -4.48272e-11) (2.75972e-09 -1.78288e-10 2.83445e-10) (3.04764e-09 9.55181e-11 6.87791e-10) (1.26183e-09 2.79438e-10 4.45966e-10) (4.30831e-11 6.58557e-11 3.11308e-11) (-3.31517e-10 2.12343e-10 -1.35688e-10) (-1.65585e-09 5.72273e-10 -8.85043e-10) (-4.15986e-09 6.27957e-10 -1.79618e-09) (-9.30733e-09 -1.71991e-10 -3.02586e-09) (-1.30262e-08 -1.19e-09 -2.90134e-09) (-1.29729e-08 -7.6292e-10 -1.7497e-09) (-6.26541e-09 7.57033e-10 1.08397e-09) (-3.45896e-10 2.18912e-10 2.23386e-10) (7.94492e-11 1.48894e-12 8.74792e-13) (1.29026e-09 -4.8317e-10 -1.82992e-10) (2.96434e-09 -1.03659e-09 -1.08384e-10) (2.55189e-09 -5.8156e-10 2.55813e-10) (5.32966e-10 -1.3214e-11 2.58656e-10) (-1.54328e-10 9.04922e-11 2.4429e-10) (-2.25167e-09 5.84814e-10 6.12167e-10) (-1.38787e-09 6.25301e-10 -3.76045e-10) (1.03904e-11 3.56346e-10 -5.49333e-10) (1.21267e-09 3.00403e-10 -1.00542e-09) (3.51291e-09 -4.69761e-10 -1.61539e-09) (4.3162e-09 -1.50661e-09 -1.59435e-09) (1.68433e-09 -1.10243e-09 -4.77933e-10) (3.25463e-10 -5.47452e-10 4.78877e-11) (1.23887e-10 -5.3313e-10 1.92679e-10) (7.48757e-11 -3.01022e-10 1.63603e-10) (2.41871e-11 -1.10567e-11 9.96218e-11) (-3.95474e-10 7.44862e-10 4.04071e-10) (-7.8879e-09 6.22812e-09 -4.40444e-10) (-1.45891e-08 7.35773e-09 -6.44151e-10) (-3.11712e-09 7.18831e-10 2.28094e-09) (-4.91832e-10 -1.0485e-09 2.53906e-09) (3.87554e-11 -8.47101e-10 6.70642e-10) (6.5024e-11 -2.07715e-10 -2.13223e-12) (1.08108e-10 -5.85891e-11 -6.18543e-11) (3.05199e-10 -1.24763e-11 -1.03998e-10) (7.74613e-10 -2.79006e-11 -1.17383e-10) (1.82872e-09 -1.84567e-10 3.07928e-11) (3.67723e-09 -3.13221e-10 6.69701e-10) (5.1456e-09 7.33071e-11 1.74342e-09) (3.77979e-09 6.76204e-10 1.88676e-09) (7.56451e-10 4.39824e-10 5.92329e-10) (-6.87503e-11 1.3768e-10 3.62805e-11) (-1.01532e-09 4.66234e-10 -4.12066e-10) (-2.2246e-09 5.52463e-10 -1.22971e-09) (-3.7653e-09 1.72501e-10 -2.0804e-09) (-8.03606e-09 -7.49021e-10 -3.28645e-09) (-1.16049e-08 -6.07706e-10 -3.47213e-09) (-1.7065e-08 6.63973e-10 -1.19172e-10) (-3.16997e-09 5.39423e-10 5.26163e-10) (8.30423e-12 -3.50954e-12 2.23441e-13) (2.11119e-09 -8.60836e-10 -1.77672e-10) (5.15035e-09 -1.88589e-09 -1.98006e-10) (3.79206e-09 -8.80826e-10 -2.98501e-11) (1.18003e-09 4.5247e-11 1.69977e-10) (8.23575e-11 1.41454e-10 2.15986e-10) (-1.63419e-09 6.97727e-10 1.26043e-09) (-4.03877e-09 1.19985e-09 9.77857e-10) (-6.13404e-10 4.04485e-10 -4.03737e-10) (1.02598e-09 3.27027e-10 -1.46686e-09) (4.50019e-09 -5.70748e-10 -2.95695e-09) (3.76222e-09 -1.43579e-09 -1.69592e-09) (9.91979e-10 -8.67934e-10 -2.71457e-10) (2.82578e-10 -6.682e-10 5.53208e-11) (2.363e-10 -7.80574e-10 1.5151e-10) (9.93072e-11 -3.49356e-10 1.09226e-10) (-8.91056e-12 -1.52645e-12 5.30419e-11) (-6.55191e-10 1.17755e-09 6.80928e-10) (-6.52274e-09 6.74605e-09 1.18655e-09) (-1.27211e-08 7.74681e-09 8.13056e-10) (-4.20148e-09 8.69462e-10 1.66803e-09) (-9.6654e-10 -8.19432e-10 9.00696e-10) (-2.2545e-10 -8.21607e-10 1.38818e-10) (7.0642e-11 -3.24553e-10 -9.15431e-11) (1.48878e-10 -9.41461e-11 -7.66441e-11) (3.02343e-10 -3.02043e-11 -9.23167e-11) (6.78807e-10 -4.87057e-11 -1.03627e-10) (1.65452e-09 -2.19465e-10 5.95602e-11) (3.71425e-09 -4.00086e-10 8.78639e-10) (5.90631e-09 7.50618e-13 2.44686e-09) (5.1974e-09 8.1872e-10 3.03204e-09) (1.80883e-09 7.99621e-10 1.5215e-09) (6.45807e-11 2.30645e-10 2.01737e-10) (-3.64793e-10 2.63986e-10 -5.97597e-11) (-1.1356e-09 3.99811e-10 -6.27698e-10) (-1.42338e-09 2.33914e-10 -1.21198e-09) (-3.12815e-09 -1.60898e-10 -2.3763e-09) (-6.69757e-09 9.63603e-11 -3.55627e-09) (-2.36991e-08 5.88849e-10 -2.76844e-09) (-9.15385e-09 2.25839e-10 5.11094e-10) (-8.60559e-12 -3.63737e-11 1.70984e-11) (3.34119e-09 -1.61818e-09 1.49575e-10) (6.62447e-09 -2.64171e-09 6.53818e-11) (3.23811e-09 -9.08318e-10 -1.63084e-10) (6.88121e-10 2.35046e-11 -7.52573e-11) (1.07826e-10 1.27898e-10 5.46693e-11) (-4.23037e-10 5.50877e-10 6.80484e-10) (-3.79849e-09 1.5323e-09 2.45764e-09) (-2.53376e-09 8.6511e-10 4.66325e-10) (-1.91479e-11 1.11918e-10 -4.08891e-10) (2.52003e-09 -4.40267e-10 -2.73461e-09) (2.76951e-09 -1.22062e-09 -2.22806e-09) (1.00546e-09 -9.92918e-10 -6.76863e-10) (5.77906e-10 -1.08175e-09 -1.87765e-10) (5.58118e-10 -1.19277e-09 7.10285e-11) (1.49063e-10 -3.71621e-10 1.03765e-10) (-3.01548e-11 1.18294e-11 4.72082e-11) (-1.10905e-09 1.63201e-09 8.33459e-10) (-5.69732e-09 7.12632e-09 2.09513e-09) (-1.00608e-08 7.28717e-09 1.53297e-09) (-5.39362e-09 9.74573e-10 7.16589e-10) (-1.77235e-09 -1.07543e-09 9.17438e-12) (-3.44834e-10 -9.65763e-10 -2.1072e-10) (1.36119e-10 -3.61534e-10 -8.45044e-11) (1.81522e-10 -1.01139e-10 -3.91489e-11) (2.50937e-10 -3.11558e-11 -6.05589e-11) (4.78419e-10 -6.23845e-11 -8.31252e-11) (1.14646e-09 -2.33158e-10 6.53702e-11) (2.85031e-09 -4.36287e-10 8.78523e-10) (5.53029e-09 -4.79789e-11 2.77406e-09) (5.75198e-09 9.51372e-10 3.76759e-09) (2.32531e-09 9.87938e-10 2.06742e-09) (1.6387e-10 3.06943e-10 3.59987e-10) (-1.77443e-10 1.63344e-10 3.22488e-11) (-5.55245e-10 2.3035e-10 -2.38909e-10) (-5.09672e-10 1.65964e-10 -5.57493e-10) (-9.13097e-10 1.13841e-10 -1.38448e-09) (-2.70277e-09 5.98906e-10 -2.48211e-09) (-1.69768e-08 1.05976e-09 -3.84023e-09) (-1.09301e-08 -7.32112e-10 8.37101e-12) (-1.38548e-10 -2.6712e-10 9.99384e-11) (2.92024e-09 -1.90221e-09 4.24688e-10) (5.19636e-09 -2.34737e-09 3.24627e-10) (1.88273e-09 -6.45211e-10 -8.6671e-11) (1.93048e-10 -1.57269e-11 -6.27709e-11) (9.66633e-12 2.86889e-11 -4.585e-12) (-1.47119e-10 3.2319e-10 2.64391e-10) (-1.77315e-09 1.44414e-09 2.01143e-09) (-3.47111e-09 1.57743e-09 2.08283e-09) (-5.22896e-10 1.89444e-10 -1.06101e-10) (5.95676e-10 -2.32355e-10 -1.65597e-09) (2.81474e-09 -1.48013e-09 -4.02376e-09) (2.00575e-09 -1.84765e-09 -2.19433e-09) (1.17004e-09 -1.81273e-09 -6.27991e-10) (7.80573e-10 -1.48659e-09 1.49091e-10) (1.69913e-10 -3.40914e-10 1.58063e-10) (-3.08339e-11 2.50556e-11 3.48285e-11) (-1.36324e-09 1.79621e-09 5.84416e-10) (-5.35746e-09 6.88162e-09 1.92232e-09) (-8.0015e-09 6.43399e-09 1.22868e-09) (-5.19101e-09 9.64072e-10 -4.23124e-10) (-1.74689e-09 -1.09267e-09 -6.48911e-10) (-1.43444e-10 -8.21573e-10 -1.93357e-10) (1.73974e-10 -3.247e-10 5.9927e-12) (1.4845e-10 -8.08566e-11 -5.52575e-12) (1.88797e-10 -3.24793e-11 -5.33077e-11) (3.15637e-10 -7.04726e-11 -7.90877e-11) (5.86141e-10 -1.9609e-10 4.50569e-11) (1.47347e-09 -3.80584e-10 6.70821e-10) (3.86005e-09 -1.53579e-10 2.61089e-09) (5.79858e-09 1.04915e-09 4.53747e-09) (3.12083e-09 1.35022e-09 2.88529e-09) (3.15559e-10 4.15789e-10 5.24672e-10) (-1.20679e-10 1.1793e-10 4.86409e-11) (-4.32355e-10 1.36052e-10 -1.14678e-10) (-2.86548e-10 8.68799e-11 -2.64204e-10) (-2.68569e-10 1.83249e-10 -8.02837e-10) (-9.55893e-10 6.94281e-10 -1.54466e-09) (-4.94223e-09 9.86345e-10 -2.12733e-09) (-4.52268e-09 -6.543e-10 -3.0394e-10) (-2.636e-10 -5.69092e-10 1.41799e-10) (1.24582e-09 -1.33204e-09 2.926e-10) (1.7512e-09 -1.09201e-09 1.55991e-10) (4.46516e-10 -2.19781e-10 -3.45083e-11) (2.06494e-11 -9.77217e-12 -1.92888e-11) (-7.75888e-12 4.98687e-12 -6.6863e-12) (-1.68702e-10 1.58963e-10 1.26737e-10) (-1.36419e-09 1.38872e-09 1.67967e-09) (-3.24683e-09 2.40854e-09 2.91809e-09) (-1.32678e-09 6.27532e-10 2.8884e-10) (-7.76321e-11 -1.007e-10 -1.04141e-09) (2.43558e-09 -1.77411e-09 -5.19017e-09) (2.57694e-09 -2.56134e-09 -3.42318e-09) (1.29765e-09 -2.01785e-09 -6.53907e-10) (7.41622e-10 -1.37842e-09 4.11367e-10) (2.14195e-10 -3.16586e-10 2.55182e-10) (-6.97031e-12 1.55136e-11 9.23203e-12) (-1.0834e-09 1.44353e-09 1.34324e-11) (-4.60649e-09 5.66045e-09 6.40221e-10) (-5.40528e-09 4.73758e-09 3.9839e-10) (-2.19063e-09 4.8684e-10 -3.90653e-10) (-5.5048e-10 -5.67926e-10 -2.5338e-10) (-7.65083e-11 -6.2714e-10 -3.12261e-11) (4.54911e-11 -1.86594e-10 1.51496e-11) (6.69304e-11 -4.37257e-11 -1.85061e-11) (2.10185e-10 -4.05519e-11 -9.3759e-11) (2.99369e-10 -8.27565e-11 -1.09576e-10) (2.38311e-10 -1.29456e-10 -5.0266e-12) (3.45298e-10 -2.02901e-10 2.35083e-10) (1.38728e-09 -2.16994e-10 1.45992e-09) (4.22722e-09 7.71361e-10 4.45432e-09) (4.24081e-09 1.81001e-09 4.46425e-09) (9.51604e-10 8.09743e-10 1.17996e-09) (-2.17171e-11 9.13851e-11 5.75663e-11) (-2.66963e-10 7.05972e-11 -5.60488e-11) (-3.65011e-10 3.93331e-11 -2.11579e-10) (-2.49235e-10 1.60155e-10 -5.26958e-10) (-5.61416e-10 5.31864e-10 -1.02633e-09) (-6.58048e-10 3.75224e-10 -7.03028e-10) (-2.8356e-10 -1.04222e-10 -9.5619e-11) (-6.76668e-11 -4.90088e-10 5.86595e-11) (1.98909e-10 -6.76276e-10 7.95018e-11) (1.12287e-10 -2.21012e-10 1.3565e-11) (1.31875e-11 -2.03914e-11 -5.21063e-12) (-2.65399e-13 -4.2196e-12 -8.91469e-12) (-1.54282e-11 -4.01258e-12 -1.52733e-11) (-1.31468e-10 4.24204e-11 3.67192e-11) (-1.44336e-09 1.07994e-09 1.21471e-09) (-3.96364e-09 3.39066e-09 3.4541e-09) (-2.39716e-09 1.54423e-09 9.12492e-10) (-3.69934e-10 2.8718e-11 -6.41875e-10) (1.14661e-09 -1.49942e-09 -3.96916e-09) (1.87844e-09 -2.30939e-09 -2.81365e-09) (9.51738e-10 -1.51737e-09 -2.49617e-10) (7.06651e-10 -1.11418e-09 6.96438e-10) (3.4161e-10 -3.28544e-10 3.84716e-10) (5.77238e-12 6.16421e-12 6.67035e-14) (-6.36563e-10 8.83916e-10 -4.07796e-10) (-3.28191e-09 3.71004e-09 -7.61962e-10) (-2.95157e-09 2.68237e-09 -2.42647e-10) (-7.92426e-10 1.81031e-10 -1.15054e-10) (-4.90562e-10 -4.13746e-10 -9.00519e-11) (-3.18422e-10 -4.70835e-10 -4.63907e-11) (-7.22724e-12 -9.86227e-11 -1.88319e-11) (1.8705e-10 -8.43149e-11 -4.63971e-11) (6.38545e-10 -1.2022e-10 -1.30055e-10) (5.18342e-10 -1.28676e-10 -1.35761e-10) (1.27753e-10 -8.57632e-11 -5.56265e-11) (1.31328e-11 -4.46132e-11 2.76278e-12) (7.21146e-11 -7.84917e-11 2.15735e-10) (1.39415e-09 2.64135e-10 2.4061e-09) (4.05735e-09 1.73789e-09 5.57166e-09) (2.27021e-09 1.44465e-09 2.9206e-09) (1.71339e-10 2.28832e-10 2.61642e-10) (-3.69821e-11 2.34998e-11 -6.38346e-12) (-3.13433e-10 2.62979e-11 -1.65756e-10) (-4.56335e-10 1.37905e-10 -4.80047e-10) (-4.55308e-10 3.02777e-10 -6.4871e-10) (-1.53266e-10 1.16314e-10 -3.63513e-10) (-2.76159e-11 -8.04975e-11 -8.57318e-11) (-8.1929e-11 -4.83231e-10 -7.38046e-11) (-1.58113e-10 -4.54718e-10 -1.48225e-11) (-6.95062e-11 -9.78181e-11 1.39122e-12) (-5.0661e-12 -2.94047e-12 -2.62387e-13) (1.84604e-13 9.62112e-14 -9.04916e-13) (7.65279e-15 -1.5726e-12 -4.51929e-12) (-5.27776e-11 3.37248e-12 -1.48226e-12) (-1.32241e-09 6.40664e-10 5.96213e-10) (-4.97644e-09 3.60378e-09 3.01228e-09) (-3.88335e-09 2.72257e-09 1.48151e-09) (-5.94435e-10 1.72215e-10 -3.95865e-10) (1.74243e-10 -8.05481e-10 -1.78106e-09) (8.28729e-10 -1.27662e-09 -1.22511e-09) (6.64193e-10 -8.82554e-10 7.14638e-11) (8.19511e-10 -8.61135e-10 7.78142e-10) (5.09153e-10 -3.40433e-10 3.94308e-10) (5.01971e-11 3.84701e-12 -1.58366e-11) (-3.2382e-10 5.12413e-10 -5.27557e-10) (-2.8338e-09 2.56247e-09 -1.64148e-09) (-3.17359e-09 2.13004e-09 -9.94205e-10) (-1.42858e-09 3.10328e-10 -3.31438e-10) (-6.79893e-10 -2.53975e-10 -1.57148e-10) (-9.37687e-11 -1.7168e-10 -1.62642e-11) (2.5044e-10 -2.51741e-10 8.63781e-11) (1.13442e-09 -4.68597e-10 2.74573e-10) (1.12609e-09 -3.29351e-10 8.82321e-11) (4.38557e-10 -1.2598e-10 -1.30373e-10) (1.08307e-10 -6.34152e-11 -1.8732e-10) (-4.2586e-11 -6.87381e-11 -1.968e-10) (-3.20808e-11 -1.9496e-11 -1.20845e-11) (7.76183e-11 3.99469e-11 5.50128e-10) (2.19765e-09 1.11473e-09 4.61277e-09) (3.245e-09 1.87551e-09 5.30284e-09) (7.86758e-10 5.80084e-10 1.16753e-09) (8.16686e-12 1.93942e-11 1.505e-11) (-7.784e-11 2.01729e-11 -6.15118e-11) (-3.81938e-10 1.132e-10 -3.52936e-10) (-3.41532e-10 1.8235e-10 -3.71084e-10) (-1.31503e-10 3.17218e-11 -1.9733e-10) (-6.21103e-11 -1.13759e-10 -9.92869e-11) (-1.69559e-10 -4.11255e-10 -9.05703e-11) (-2.41548e-10 -3.83739e-10 -5.18805e-11) (-1.2079e-10 -1.06951e-10 -3.6571e-11) (-1.52572e-11 -3.53352e-12 -1.05024e-11) (1.80378e-12 2.59461e-12 -3.59052e-12) (5.22888e-12 1.55042e-12 -3.03089e-12) (-1.39239e-11 3.70818e-12 -2.29601e-13) (-1.25713e-09 5.08214e-10 2.98707e-10) (-5.84878e-09 3.3784e-09 2.04858e-09) (-5.24553e-09 3.37721e-09 1.55484e-09) (-8.35378e-10 3.36319e-10 -1.54443e-10) (-4.20196e-11 -2.06543e-10 -3.59499e-10) (4.16855e-10 -5.65547e-10 -3.80163e-10) (8.39666e-10 -7.16472e-10 6.94885e-11) (1.07746e-09 -7.8607e-10 4.56892e-10) (5.50753e-10 -3.41646e-10 2.03993e-10) (7.45029e-11 -8.21646e-12 -2.8838e-11) (-8.82289e-11 2.85689e-10 -3.6279e-10) (-1.54135e-09 1.51628e-09 -1.41628e-09) (-2.7237e-09 1.60872e-09 -1.33715e-09) (-1.16481e-09 2.74689e-10 -3.35318e-10) (-7.70466e-11 -5.49859e-11 1.39749e-11) (3.56001e-10 -4.19014e-10 3.17227e-10) (1.90888e-09 -1.23178e-09 1.05785e-09) (1.53869e-09 -8.93397e-10 6.35806e-10) (2.67139e-10 -1.93242e-10 3.84152e-11) (1.53058e-11 -3.11636e-11 -4.92888e-11) (-3.74548e-11 -1.43614e-11 -3.38385e-10) (-8.55144e-11 5.14363e-11 -7.66096e-10) (-9.3088e-11 2.90606e-11 -3.18918e-10) (-1.11624e-11 9.54e-12 2.7133e-11) (6.74705e-10 5.29065e-10 2.36505e-09) (3.15532e-09 1.77251e-09 6.46374e-09) (1.93514e-09 1.06467e-09 3.12849e-09) (1.72708e-10 1.07299e-10 2.10168e-10) (-5.20927e-12 7.0894e-12 -1.07147e-11) (-1.92279e-10 8.7115e-11 -2.09087e-10) (-1.65546e-10 9.34128e-11 -1.54735e-10) (-9.75287e-11 1.59163e-11 -5.69338e-11) (-6.55168e-11 -6.27295e-11 -8.87083e-12) (-1.57723e-10 -2.89329e-10 1.29402e-11) (-2.22646e-10 -3.58561e-10 -5.9596e-11) (-1.70887e-10 -1.76864e-10 -1.37403e-10) (-7.0957e-11 -3.02276e-11 -1.23303e-10) (8.6035e-13 1.63351e-11 -6.55941e-11) (1.43101e-11 1.32074e-11 -1.84076e-11) (-8.88856e-12 9.80352e-12 1.04052e-12) (-1.15728e-09 4.96356e-10 2.60451e-10) (-6.63184e-09 3.14804e-09 1.61056e-09) (-6.67328e-09 3.59423e-09 1.58078e-09) (-1.07751e-09 4.90715e-10 4.28794e-11) (4.44264e-12 -5.74606e-11 -1.00934e-10) (8.06526e-10 -6.22219e-10 -5.56528e-10) (1.66626e-09 -9.98483e-10 -3.7636e-10) (1.31517e-09 -8.2451e-10 1.22882e-10) (3.7332e-10 -2.72528e-10 1.15408e-10) (8.37668e-12 -4.21066e-12 -1.56314e-12) (-6.2285e-11 1.54951e-10 -1.78505e-10) (-4.55244e-10 7.91609e-10 -7.96135e-10) (-4.35576e-10 5.47165e-10 -5.61545e-10) (-1.23558e-11 1.03425e-11 -1.81918e-11) (3.51981e-10 -2.64551e-10 1.75369e-10) (2.5411e-09 -1.6823e-09 1.34056e-09) (2.28422e-09 -1.58969e-09 1.29675e-09) (2.40051e-10 -3.29605e-10 2.39618e-10) (-1.733e-10 -1.18021e-10 2.67628e-11) (-8.4066e-10 -2.19285e-10 -2.00257e-10) (-5.70983e-10 -1.0014e-10 -4.15841e-10) (-1.65479e-10 8.96485e-11 -6.60322e-10) (5.35431e-11 3.0975e-10 -8.97338e-10) (-4.96233e-13 8.37382e-11 -9.35542e-11) (9.55408e-11 2.20802e-10 5.41771e-10) (1.815e-09 1.18252e-09 4.73591e-09) (2.93117e-09 1.41977e-09 5.03354e-09) (9.5554e-10 4.08278e-10 1.07277e-09) (4.31571e-11 2.52508e-11 9.41139e-12) (-3.10934e-11 3.84901e-11 -6.7985e-11) (-6.98569e-12 1.7211e-11 -1.43701e-11) (-1.15802e-11 5.70609e-13 -2.2704e-12) (-4.70166e-11 -5.81415e-11 1.91936e-11) (-1.71266e-10 -2.59687e-10 5.35274e-11) (-3.01282e-10 -3.36692e-10 -1.85506e-11) (-2.3559e-10 -1.9013e-10 -1.27171e-10) (-9.41172e-11 -4.78064e-11 -1.61321e-10) (-4.35073e-12 3.1756e-11 -1.78518e-10) (3.19664e-11 6.27937e-11 -9.77902e-11) (-1.37964e-11 5.65308e-11 -1.17852e-11) (-7.92609e-10 5.14639e-10 2.13089e-10) (-5.26242e-09 2.372e-09 1.21634e-09) (-6.06823e-09 2.56489e-09 1.11399e-09) (-8.93511e-10 3.26535e-10 -2.78537e-11) (8.16989e-11 -8.36664e-11 -1.95593e-10) (1.59198e-09 -8.64001e-10 -1.14798e-09) (1.96719e-09 -1.0004e-09 -6.77826e-10) (8.15385e-10 -4.81439e-10 8.89777e-11) (1.31782e-10 -1.17193e-10 1.34807e-10) (-2.65253e-12 -2.62117e-12 1.01099e-11) (-4.40836e-11 4.99142e-11 -5.82306e-11) (-6.08967e-11 2.83244e-10 -4.37306e-10) (1.41303e-10 1.87992e-10 -3.85345e-10) (4.1809e-10 -7.05863e-11 -1.57552e-10) (1.71574e-09 -8.72875e-10 3.12281e-10) (1.96054e-09 -1.23695e-09 9.2895e-10) (2.78761e-10 -2.76838e-10 3.56194e-10) (-2.09023e-10 -6.06529e-11 1.4336e-10) (-1.26583e-09 -2.00274e-10 1.26405e-10) (-1.31723e-09 -5.19602e-10 -7.6516e-11) (-6.29109e-10 -4.15911e-10 -1.87881e-10) (-2.61831e-10 -6.61665e-11 -3.03626e-10) (-2.45611e-10 4.90856e-10 -1.02711e-09) (-1.28927e-10 7.74971e-10 -9.40691e-10) (-2.50713e-11 1.56758e-10 1.02796e-11) (3.14797e-10 4.42401e-10 1.39671e-09) (1.8529e-09 7.83305e-10 3.82189e-09) (1.71327e-09 5.57539e-10 2.08519e-09) (4.38823e-10 1.65172e-10 2.62077e-10) (3.46094e-11 3.22918e-11 -9.1511e-12) (1.28787e-10 4.15932e-11 5.78002e-11) (2.38988e-11 4.24625e-13 4.16457e-11) (-3.50932e-11 -4.91959e-11 8.75126e-11) (-2.27632e-10 -1.99667e-10 1.44359e-10) (-3.30257e-10 -3.22349e-10 4.04329e-11) (-1.45129e-10 -2.34315e-10 -8.9481e-11) (-3.61351e-12 -9.36319e-11 -1.39022e-10) (7.83111e-11 3.77317e-11 -2.66816e-10) (8.57015e-11 2.49155e-10 -3.22135e-10) (-6.48557e-11 3.17249e-10 -1.3491e-10) (-6.07632e-10 6.23877e-10 1.07384e-10) (-2.3077e-09 1.21357e-09 5.76408e-10) (-2.2377e-09 7.67586e-10 2.81646e-10) (-2.98301e-10 3.0405e-11 -1.03276e-10) (1.01007e-10 -1.56178e-10 -2.94332e-10) (6.10652e-10 -4.55229e-10 -5.8731e-10) (3.39439e-10 -2.38896e-10 -1.27872e-10) (1.0082e-10 -8.05832e-11 7.87652e-11) (6.07534e-11 -5.03749e-11 2.07775e-10) (2.37467e-11 3.33204e-12 1.1882e-10) (8.19316e-12 7.37857e-12 4.72049e-12) (9.95051e-11 4.36525e-11 -9.66626e-11) (4.25857e-10 4.99728e-12 -2.98366e-10) (7.00388e-10 -2.08513e-10 -1.74921e-10) (3.84481e-10 -2.36693e-10 6.93875e-11) (3.84639e-12 -4.24105e-11 3.38359e-11) (-2.76004e-10 -5.06323e-11 4.87796e-11) (-5.54823e-10 -9.94443e-11 -1.14819e-11) (-1.49692e-10 -1.39663e-10 -5.11786e-12) (2.50752e-11 -2.59193e-10 5.72185e-12) (2.5011e-11 -2.0775e-10 -3.33672e-11) (-2.08027e-10 -6.60464e-11 -1.71132e-10) (-1.71668e-09 8.4983e-10 -1.49557e-09) (-2.14521e-09 2.21111e-09 -2.57849e-09) (-6.30883e-10 9.55514e-10 -6.79923e-10) (-6.91711e-11 1.67593e-10 1.46741e-10) (2.89031e-10 2.21579e-10 1.16133e-09) (8.95215e-10 1.70052e-10 1.41244e-09) (7.82814e-10 1.46508e-10 6.08131e-10) (3.99347e-10 1.03038e-10 1.60663e-10) (5.01796e-10 1.54806e-10 4.51393e-10) (2.61608e-10 1.49802e-10 4.2074e-10) (4.10367e-11 2.21646e-11 2.76211e-10) (-4.31058e-11 -8.93027e-11 1.29546e-10) (-8.37335e-11 -3.10704e-10 4.02955e-11) (-5.80844e-11 -5.64188e-10 -1.6874e-10) (7.76929e-13 -3.32613e-10 -2.6942e-10) (7.35544e-12 -1.70842e-11 -2.6424e-10) (-6.38573e-11 4.98578e-10 -5.42641e-10) (-4.13817e-10 1.38585e-09 -5.66265e-10) (-8.46763e-10 1.40502e-09 -9.25964e-13) (-9.05203e-10 6.85373e-10 3.08397e-10) (-4.36822e-10 6.11734e-11 1.19788e-10) (-1.07979e-10 -7.84439e-11 -2.30106e-11) (-2.93393e-11 -1.34077e-10 -9.65143e-11) (1.60646e-11 -8.212e-11 -7.21541e-11) (1.24867e-11 -1.47398e-11 -7.50097e-12) (2.28342e-11 -8.79963e-12 1.99187e-11) (5.54923e-11 -1.04464e-11 9.71255e-11) (5.03596e-11 2.85753e-12 1.16762e-10) (2.63804e-11 1.04987e-11 4.1404e-11) (2.72362e-11 7.16378e-12 2.56313e-12) (7.7569e-11 -3.42764e-12 -3.21009e-11) (5.09751e-11 -2.28282e-11 -2.77105e-11) (-1.92962e-12 -1.44874e-11 -5.37062e-12) (-9.90451e-11 -6.72264e-11 5.28215e-14) (-1.41959e-10 -1.11593e-10 2.76277e-11) (-9.69124e-12 -1.02757e-10 3.98808e-11) (2.88801e-10 -3.2082e-10 9.20628e-11) (8.19496e-10 -5.9019e-10 -4.7698e-11) (5.28673e-10 -3.2758e-10 -3.0591e-10) (-2.77491e-11 -5.79805e-12 -3.9058e-10) (-2.41157e-09 1.11927e-09 -2.22727e-09) (-6.29289e-09 3.42145e-09 -4.55035e-09) (-2.98338e-09 2.11379e-09 -2.25869e-09) (-1.95447e-10 1.98036e-10 -8.253e-11) (5.45835e-11 1.14411e-11 1.70875e-10) (5.92059e-10 -1.74998e-10 8.4322e-10) (8.86942e-10 -1.7949e-10 8.55115e-10) (7.20259e-10 1.66073e-11 5.56786e-10) (2.004e-10 8.70844e-11 4.45622e-10) (1.32868e-10 1.60572e-10 3.29664e-10) (8.23851e-11 7.91791e-11 1.70224e-10) (2.97166e-11 -1.30154e-11 3.26276e-11) (5.18666e-11 -1.47356e-10 -1.02862e-11) (4.76372e-11 -4.38503e-10 -1.377e-10) (-1.67902e-11 -3.27146e-10 -1.63309e-10) (-3.43289e-11 -4.66403e-11 -9.26155e-11) (-1.53478e-10 2.70104e-10 -2.86937e-10) (-6.79435e-10 1.78797e-09 -7.46301e-10) (-1.12017e-09 2.56785e-09 -2.65785e-10) (-7.4906e-10 1.05225e-09 3.75871e-10) (-3.45783e-10 1.00922e-10 3.60325e-10) (-2.29347e-10 -2.04876e-10 2.99291e-10) (-1.11213e-10 -2.05845e-10 1.13184e-10) (-2.17184e-11 -7.28928e-11 -3.89917e-12) (1.09956e-11 -3.12655e-11 -2.43998e-11) (4.5635e-11 -2.49654e-11 -2.78977e-11) (6.15424e-11 -1.27403e-11 -3.21858e-12) (3.60769e-11 5.4116e-12 1.82118e-11) (1.10567e-11 1.81943e-11 1.98189e-11) (-3.34058e-12 2.1534e-11 8.72292e-12) (-6.62132e-12 1.04086e-11 -3.29656e-12) (-9.76807e-12 2.80493e-13 -7.68041e-12) (-2.56623e-11 -2.0011e-11 -7.31561e-12) (-4.0568e-11 -5.88223e-11 1.85741e-11) (-1.23872e-11 -9.90009e-11 6.02928e-11) (9.25059e-11 -1.78001e-10 9.68142e-11) (3.68126e-10 -3.65486e-10 7.92391e-11) (7.20442e-10 -5.47446e-10 -1.18483e-10) (6.38263e-10 -3.45111e-10 -3.5815e-10) (2.10202e-10 5.02324e-11 -4.06884e-10) (-5.75781e-10 8.62886e-10 -1.26702e-09) (-3.50148e-09 2.54463e-09 -3.35292e-09) (-3.24853e-09 1.64738e-09 -2.66879e-09) (-3.86195e-10 1.27536e-10 -2.9719e-10) (1.58383e-11 -1.90084e-11 3.07867e-11) (5.41603e-10 -3.14934e-10 7.43158e-10) (8.14814e-10 -3.75529e-10 1.18658e-09) (4.45088e-10 -9.84113e-11 7.81731e-10) (-5.94713e-11 1.85981e-11 3.47251e-10) (-6.70793e-11 8.40182e-11 1.56924e-10) (-8.69879e-12 3.54975e-11 2.92708e-11) (6.94496e-12 1.74758e-12 -2.44524e-13) (8.9629e-11 -6.60423e-11 -2.65466e-11) (2.05859e-10 -2.41897e-10 -3.65697e-11) (1.0823e-10 -1.83323e-10 7.70171e-13) (5.99592e-14 -9.04425e-12 2.67603e-13) (-9.91818e-11 1.19282e-10 -2.91351e-11) (-6.51426e-10 1.38888e-09 -2.79516e-10) (-8.01168e-10 2.43683e-09 -2.44327e-10) (-2.79816e-10 9.88662e-10 2.12883e-10) (-6.98997e-11 1.02816e-10 2.76e-10) (-1.45348e-10 -2.72608e-10 5.84829e-10) (-2.42035e-10 -3.51231e-10 3.76902e-10) (-1.55751e-10 -1.20624e-10 1.50815e-11) (-1.38896e-10 -5.55293e-11 -1.65633e-10) (-9.17303e-11 -1.93065e-11 -2.99801e-10) (-2.05473e-11 2.29879e-12 -1.34646e-10) (-3.92116e-12 4.38219e-12 -1.03576e-11) (-1.07645e-11 1.43955e-11 3.97524e-12) (-3.41572e-11 4.09278e-11 1.47058e-11) (-2.86656e-11 2.12512e-11 -8.86379e-13) (-1.44406e-11 -5.3146e-12 -9.77605e-12) (-1.23924e-11 -8.68271e-11 -4.08686e-11) (8.14013e-11 -3.12843e-10 -7.8297e-11) (3.20636e-10 -5.08872e-10 -5.84389e-11) (5.92161e-10 -5.51968e-10 2.98066e-11) (6.99969e-10 -4.82122e-10 1.1205e-10) (4.99961e-10 -3.11988e-10 6.74535e-11) (1.46233e-10 -7.69041e-11 -1.48681e-11) (1.59122e-11 2.12367e-11 -2.40938e-11) (-1.58829e-10 5.92311e-10 -2.81233e-10) (-8.61388e-10 1.79129e-09 -9.89942e-10) (-9.30643e-10 1.15426e-09 -1.16386e-09) (-2.46199e-10 8.9225e-11 -3.69934e-10) (-1.1113e-11 -5.10894e-11 -2.00627e-11) (7.94344e-11 -2.52753e-10 2.01371e-10) (1.83639e-10 -3.88119e-10 6.46344e-10) (7.02162e-11 -1.79099e-10 6.27184e-10) (-1.04334e-11 -1.71245e-11 1.95536e-11) (-4.75377e-11 3.57044e-12 1.25232e-11) (-7.34732e-11 2.03014e-11 -2.68589e-13) (-1.66827e-11 1.24828e-12 -1.21048e-12) (6.24224e-13 -9.36032e-12 3.87283e-12) (4.15895e-11 -7.85898e-11 5.0453e-11) (3.61773e-11 -8.16574e-11 6.91438e-11) (-1.08738e-11 -1.06333e-11 1.58426e-11) (-2.07395e-10 9.97753e-11 9.44392e-12) (-8.56045e-10 8.21966e-10 -4.44775e-11) (-8.18271e-10 1.44327e-09 7.81198e-11) (-1.72678e-10 7.8995e-10 2.541e-10) (2.21611e-11 1.83526e-10 2.37845e-10) (-1.73048e-11 4.17861e-12 2.09025e-10) (-9.15244e-11 -1.91757e-11 9.00232e-11) (-1.93649e-10 8.00455e-12 -4.43347e-11) (-3.08644e-10 5.18485e-11 -3.5734e-10) (-1.98083e-10 3.05787e-11 -5.31416e-10) (-5.1261e-11 -1.68109e-11 -2.69728e-10) (-1.10793e-11 -1.21038e-11 -4.36249e-11) (-2.7264e-12 -2.39783e-12 -2.56396e-12) (-5.18452e-13 -7.1247e-13 -5.10511e-13) (6.60145e-12 -7.62224e-12 -1.26244e-11) (9.88156e-11 -7.83294e-11 -1.34228e-10) (3.0829e-10 -2.26367e-10 -3.54696e-10) (3.48221e-10 -2.39271e-10 -2.87272e-10) (2.12457e-10 -1.48374e-10 -3.5823e-11) (2.33293e-10 -1.99377e-10 1.92136e-10) (3.15274e-10 -3.42808e-10 5.13034e-10) (1.86452e-10 -2.59934e-10 3.72876e-10) (1.73855e-11 -3.64953e-11 3.79124e-11) (-4.08333e-12 5.18616e-12 -6.67384e-12) (-8.94785e-11 2.43414e-10 -1.42798e-10) (-1.47569e-10 7.09017e-10 -2.47148e-10) (-2.94402e-11 4.87954e-10 -1.46908e-10) (2.08186e-11 5.17499e-11 -2.58626e-11) (3.90826e-11 -2.1369e-11 -2.87695e-12) (1.58471e-10 -1.81553e-10 6.2557e-11) (1.70662e-10 -2.44017e-10 1.33608e-10) (4.60216e-11 -1.0785e-10 7.91783e-11) (1.30167e-11 -8.2535e-12 -6.0882e-13) (8.66968e-13 -1.19229e-12 -1.94743e-12) (-1.08607e-12 -3.33396e-12 -2.80903e-12) (-5.94201e-12 -1.53943e-11 5.90187e-13) (-2.61545e-11 -4.61824e-11 2.94001e-11) (-7.90272e-11 -6.47917e-11 9.99964e-11) (-1.51646e-10 -1.8215e-11 1.52642e-10) (-2.64903e-10 9.50966e-11 1.28298e-10) (-7.1761e-10 3.97743e-10 -7.47096e-13) (-1.6677e-09 9.5843e-10 -3.17183e-10) (-1.78528e-09 1.06377e-09 -2.32955e-10) (-7.3744e-10 4.94093e-10 1.27522e-10) (-1.65576e-10 1.35881e-10 1.95481e-10) (-3.34254e-11 4.81826e-11 1.92543e-10) (-5.17516e-13 1.68038e-11 6.71342e-11) (1.66559e-13 1.50043e-12 7.13574e-13) (6.71956e-12 5.2623e-12 -3.46589e-11) (5.03119e-11 -1.605e-11 -1.54994e-10) (1.08135e-10 -5.85419e-11 -1.96158e-10) (1.22539e-10 -7.8329e-11 -1.32243e-10) (1.04e-10 -7.74803e-11 -6.90043e-11) (7.45865e-11 -6.71875e-11 -4.37854e-11) (4.11018e-11 -4.82199e-11 -4.3206e-11) (1.50317e-11 -3.63694e-11 -5.62606e-11) (-7.85513e-12 -3.19096e-11 -6.19788e-11) (-1.12942e-11 -2.48427e-11 -2.52114e-11) (-2.23435e-12 -3.57415e-11 9.709e-12) (5.59453e-11 -1.57821e-10 1.6898e-10) (1.76785e-10 -3.00138e-10 4.87379e-10) (1.09269e-10 -1.79018e-10 4.17805e-10) (-5.33258e-12 -6.26557e-12 6.51008e-11) (-5.19127e-11 5.92037e-11 -2.56618e-11) (-2.67955e-10 4.8105e-10 -4.4353e-10) (-1.66953e-10 7.15865e-10 -6.41553e-10) (6.97152e-11 3.31794e-10 -2.4884e-10) (1.00728e-10 5.88926e-11 -3.34445e-11) (2.2847e-10 -5.64912e-11 4.19419e-11) (3.98739e-10 -2.33754e-10 1.42125e-10) (3.14588e-10 -2.21079e-10 1.24803e-10) (1.07297e-10 -7.43913e-11 3.31803e-11) (3.84779e-10 -9.42479e-11 7.37042e-11) (2.23389e-10 -8.10571e-12 -5.60595e-11) (9.28576e-11 3.98053e-12 -7.98093e-11) (1.65764e-12 -2.19095e-12 -2.19046e-11) (-7.79604e-11 -1.57715e-11 -1.00325e-12) (-5.09968e-10 -5.58069e-11 2.12101e-10) (-8.7596e-10 1.57569e-11 4.97763e-10) (-6.16053e-10 1.5457e-10 3.29903e-10) (-2.77636e-10 1.8164e-10 5.57674e-11) (-1.87717e-10 2.04507e-10 -9.10302e-11) (-1.60486e-10 1.81459e-10 -1.48867e-10) (-8.22239e-11 6.92182e-11 -5.55469e-11) (-2.46929e-11 1.12942e-11 4.61932e-12) (-2.85351e-11 1.25326e-12 4.44044e-11) (-4.19839e-11 -6.53954e-12 1.01143e-10) (-4.80105e-11 -6.52725e-13 9.60373e-11) (-3.99231e-11 6.54549e-12 5.25408e-11) (-1.92703e-11 3.57463e-12 1.63833e-11) (-2.34239e-12 -8.24749e-13 1.25561e-12) (3.0286e-12 -9.83714e-12 -2.92722e-12) (5.65271e-11 -7.5883e-11 -4.28595e-11) (1.66319e-10 -1.50982e-10 -1.46353e-10) (2.06944e-10 -1.14112e-10 -2.5321e-10) (1.44265e-10 -1.76274e-11 -2.87231e-10) (4.78596e-11 2.82263e-11 -1.91991e-10) (2.65824e-12 4.99482e-12 -3.83607e-11) (2.94632e-13 -4.76578e-12 1.44048e-12) (1.61211e-11 -1.37735e-10 1.50779e-10) (2.66426e-11 -3.80344e-10 5.89885e-10) (-7.19168e-11 -2.58949e-10 7.25046e-10) (-1.4148e-10 2.84379e-11 3.64114e-10) (-1.50124e-10 1.52406e-10 7.58054e-11) (-2.59955e-10 3.80444e-10 -2.43848e-10) (-2.183e-10 5.44858e-10 -7.36392e-10) (6.52056e-11 3.02819e-10 -6.42465e-10) (1.87829e-10 3.33189e-11 -2.52003e-10) (3.20624e-10 -1.32422e-10 -7.44612e-11) (6.44388e-10 -4.18253e-10 1.66904e-10) (8.20282e-10 -5.49425e-10 3.96295e-10) (6.5434e-10 -3.29873e-10 3.01664e-10) (9.24318e-12 3.86288e-14 3.0081e-12) (1.1374e-12 1.21567e-13 -1.78071e-13) (1.89368e-12 1.48627e-13 -2.44706e-12) (1.42327e-11 -1.40998e-13 -7.58013e-12) (5.09344e-11 -8.83921e-13 -6.84386e-12) (7.8059e-11 -9.04223e-13 5.92259e-12) (7.13897e-11 -4.44399e-13 1.64628e-11) (5.00384e-11 1.79224e-13 1.70906e-11) (3.92618e-11 5.68216e-14 1.45371e-11) (5.47542e-11 -7.84771e-13 1.58412e-11) (1.30156e-10 -2.25736e-12 3.15012e-11) (3.14845e-10 -3.39467e-12 7.28713e-11) (6.15387e-10 -1.82359e-12 1.43438e-10) (9.43445e-10 1.10983e-12 2.37374e-10) (1.20554e-09 -7.76032e-13 3.58439e-10) (1.40178e-09 -1.27438e-12 5.15758e-10) (1.59153e-09 -1.05324e-12 6.8228e-10) (1.68893e-09 -1.3315e-12 7.0899e-10) (1.40152e-09 -2.78931e-12 4.19866e-10) (6.39652e-10 -1.12067e-13 1.20423e-11) (1.4766e-10 1.26698e-12 -9.47507e-11) (3.6093e-11 2.27059e-13 -5.24038e-11) (3.9252e-11 9.70021e-14 -9.87573e-12) (8.47502e-11 2.03998e-12 2.36716e-11) (7.71035e-11 4.1271e-12 6.04666e-11) (5.36945e-11 4.14747e-12 6.91218e-11) (4.7112e-11 3.04534e-12 5.28292e-11) (8.41046e-11 2.73839e-12 4.57558e-11) (2.89569e-10 2.38166e-12 5.89641e-11) (8.65262e-10 -2.35833e-12 6.78634e-11) (1.52878e-09 -1.01511e-11 6.95585e-11) (1.42397e-09 -8.11456e-12 8.82088e-11) (6.22581e-10 -1.46047e-12 9.72844e-11) (1.04787e-10 5.54932e-13 5.93797e-11) (-3.13092e-11 5.33447e-13 6.6059e-11) (-1.2123e-10 -7.53771e-13 8.25017e-11) (-5.58978e-11 -4.55724e-13 1.42723e-11) (-3.55176e-12 -1.48544e-13 -8.69039e-13) (5.21612e-13 -1.13327e-13 -1.41768e-14) (1.01392e-11 -7.57079e-13 2.65704e-12) (2.29987e-11 5.09091e-12 -7.70263e-12) (1.43008e-11 4.69595e-12 -1.34419e-11) (3.91349e-11 1.78061e-12 -2.17912e-11) (2.15898e-10 -8.45889e-12 -1.05423e-11) (6.58192e-10 -2.17132e-11 1.02892e-10) (9.92686e-10 -1.77603e-11 2.09565e-10) (9.82575e-10 -6.32808e-12 1.77592e-10) (7.71989e-10 7.87422e-12 8.06669e-11) (6.12244e-10 1.02693e-11 1.80365e-11) (6.43781e-10 -1.01701e-12 2.23994e-11) (1.0572e-09 -2.33496e-11 1.47773e-10) (2.16645e-09 -5.30669e-11 4.94703e-10) (4.14357e-09 -7.96166e-11 1.07104e-09) (6.71046e-09 -1.11764e-10 1.76108e-09) (9.42283e-09 -2.22295e-10 2.54088e-09) (1.19839e-08 -3.53832e-10 3.46114e-09) (1.47988e-08 -4.81221e-10 4.41475e-09) (1.82985e-08 -6.30999e-10 4.73289e-09) (2.07115e-08 -7.29408e-10 3.16829e-09) (1.58848e-08 -3.6708e-10 -3.29744e-10) (5.16788e-09 7.57817e-11 -1.80339e-09) (5.21433e-10 4.63372e-11 -5.99531e-10) (5.35659e-11 3.37e-12 -1.38604e-11) (5.06999e-10 3.01242e-11 4.01754e-10) (1.69551e-09 1.15078e-10 1.5092e-09) (2.00575e-09 1.36398e-10 1.61933e-09) (1.75251e-09 9.0443e-11 1.04245e-09) (1.99798e-09 4.39778e-11 6.67077e-10) (3.92127e-09 -3.69112e-11 5.69356e-10) (9.00038e-09 -2.26159e-10 5.44962e-10) (1.60427e-08 -4.3854e-10 5.05242e-10) (1.86491e-08 -4.10884e-10 4.17812e-10) (1.26549e-08 -1.74018e-10 3.65058e-10) (4.25216e-09 -1.6632e-11 3.96588e-10) (4.59446e-10 1.22652e-12 1.75615e-10) (-1.66621e-10 -5.33158e-12 8.72688e-11) (-7.42611e-10 -3.60322e-11 -1.64146e-11) (-2.6746e-10 -2.02027e-11 -1.17509e-10) (-3.59438e-12 -1.67976e-12 -1.20605e-11) (2.02637e-11 8.16789e-13 -6.43002e-12) (2.33044e-11 1.51164e-11 -1.80674e-11) (2.31137e-11 1.90392e-11 -3.20186e-11) (3.50726e-11 6.33968e-12 -2.46075e-11) (1.59793e-10 -8.06931e-12 7.98706e-12) (5.40819e-10 -2.7123e-11 1.61424e-10) (8.77445e-10 -2.16643e-11 2.66233e-10) (9.30109e-10 -6.02763e-12 1.68718e-10) (8.73038e-10 1.43488e-11 1.25639e-11) (8.3428e-10 2.91213e-11 -1.05396e-10) (7.85152e-10 2.17751e-11 -1.31958e-10) (8.33097e-10 -9.96969e-13 -3.724e-11) (1.28152e-09 -3.70443e-11 1.61695e-10) (2.33564e-09 -9.57754e-11 4.74745e-10) (3.75692e-09 -1.87637e-10 7.83302e-10) (4.95589e-09 -3.32918e-10 1.02581e-09) (5.45808e-09 -4.51573e-10 1.27483e-09) (5.72088e-09 -5.15526e-10 1.57641e-09) (6.67715e-09 -6.16036e-10 1.79901e-09) (8.32742e-09 -7.68999e-10 1.37018e-09) (8.05291e-09 -5.32466e-10 -2.23208e-10) (3.59793e-09 6.55553e-11 -1.33351e-09) (3.80381e-10 1.23379e-10 -7.50524e-10) (-6.47604e-11 2.77344e-11 -1.05819e-10) (5.44911e-11 1.70034e-11 1.29869e-10) (1.67477e-09 1.38879e-10 1.88569e-09) (2.86211e-09 2.02453e-10 2.34828e-09) (2.13555e-09 1.26153e-10 1.15473e-09) (1.53515e-09 4.31396e-11 3.81186e-10) (1.98624e-09 -5.27649e-11 6.85725e-11) (3.9431e-09 -2.51085e-10 -1.704e-10) (7.1353e-09 -4.94341e-10 -3.57184e-10) (8.94823e-09 -4.99784e-10 -3.91564e-10) (6.90658e-09 -2.36342e-10 -3.1965e-10) (2.83738e-09 -2.08074e-11 -1.30984e-10) (4.13467e-10 1.39643e-11 1.77977e-11) (-6.29226e-14 5.54102e-13 4.23147e-12) (-4.3806e-10 -1.76242e-11 -6.90898e-12) (-9.45737e-10 -7.10298e-11 -2.98691e-10) (-1.99149e-10 -1.70778e-11 -1.39242e-10) (2.32785e-12 2.90292e-12 -9.72994e-12) (3.63059e-12 2.37976e-11 -2.00368e-11) (1.25774e-11 3.78892e-11 -4.31692e-11) (8.27759e-12 6.44344e-12 -1.67154e-11) (2.813e-11 -4.35331e-12 4.01367e-12) (1.78418e-10 -2.48661e-11 1.01583e-10) (3.26032e-10 -2.52096e-11 1.66682e-10) (3.27674e-10 -1.22454e-11 8.05883e-11) (3.09707e-10 1.90449e-13 -2.0458e-11) (3.02368e-10 1.44091e-11 -9.07405e-11) (2.42618e-10 1.51542e-11 -9.95762e-11) (1.75857e-10 5.3337e-12 -4.64541e-11) (2.38555e-10 -1.34436e-11 1.22726e-11) (5.69736e-10 -5.7445e-11 1.08155e-10) (1.09962e-09 -1.3159e-10 1.98241e-10) (1.3491e-09 -2.05137e-10 2.26454e-10) (1.02681e-09 -1.99735e-10 2.40726e-10) (6.25882e-10 -1.50119e-10 2.56026e-10) (5.73485e-10 -1.47014e-10 3.0918e-10) (8.60063e-10 -1.97823e-10 3.27396e-10) (9.78672e-10 -1.40859e-10 2.29756e-11) (3.6334e-10 4.11742e-11 -2.89005e-10) (-4.54052e-10 2.68778e-10 -9.98871e-10) (-2.40487e-09 4.31029e-10 -1.41441e-09) (-4.59093e-10 5.3405e-11 1.70228e-10) (4.65341e-10 8.12557e-11 1.47072e-09) (1.50245e-09 1.37296e-10 2.04692e-09) (5.9849e-10 5.58673e-11 5.26069e-10) (1.00786e-10 5.09703e-12 2.42078e-11) (8.56748e-11 -1.22764e-11 -4.55907e-11) (3.21035e-10 -7.34415e-11 -1.82367e-10) (9.34804e-10 -1.81378e-10 -3.68592e-10) (1.38587e-09 -1.86588e-10 -4.1245e-10) (9.17436e-10 -6.04735e-11 -2.70454e-10) (1.73152e-10 7.60513e-12 -8.2045e-11) (-8.16984e-12 4.58736e-12 -9.43821e-12) (-4.69534e-10 4.84624e-11 -2.58477e-11) (-2.25562e-09 1.71642e-11 -1.00081e-10) (-3.71702e-09 -2.10263e-10 -6.95954e-10) (-2.09801e-09 -1.57006e-10 -7.13941e-10) (-1.46162e-10 2.53034e-11 -8.80664e-11) (-8.8179e-11 9.15501e-11 -6.85705e-11) (-1.81818e-12 8.4702e-11 -7.39422e-11) (6.64453e-13 1.39974e-11 -2.7337e-11) (4.00402e-12 -1.80856e-12 8.35986e-13) (8.52285e-11 -2.73798e-11 8.14809e-11) (1.91038e-10 -3.43656e-11 1.51564e-10) (1.90882e-10 -1.9338e-11 6.48141e-11) (2.07567e-10 -1.04444e-11 -3.02482e-11) (2.34116e-10 5.09205e-12 -1.07459e-10) (1.6211e-10 1.35187e-11 -1.07767e-10) (7.3353e-11 7.90101e-12 -4.55875e-11) (5.90975e-11 -4.00978e-12 -7.95252e-12) (2.05736e-10 -3.96464e-11 2.92553e-11) (5.74018e-10 -1.25727e-10 8.06456e-11) (7.27535e-10 -1.89923e-10 1.05926e-10) (3.59191e-10 -1.34085e-10 1.06353e-10) (8.69155e-11 -6.26412e-11 8.50488e-11) (5.45152e-11 -6.52213e-11 1.24436e-10) (2.01764e-10 -1.16109e-10 2.24895e-10) (4.26896e-10 -1.02033e-10 1.72065e-10) (1.11236e-10 2.43227e-11 -5.31511e-11) (-8.89085e-10 4.8962e-10 -1.1151e-09) (-7.94448e-09 1.55038e-09 -4.2345e-09) (-3.66857e-09 3.40346e-10 -8.17066e-11) (-1.46279e-10 5.79348e-11 1.55309e-09) (1.50402e-09 1.11056e-10 3.01698e-09) (5.08494e-10 5.42734e-11 6.92514e-10) (9.15562e-12 1.19678e-12 5.67577e-12) (-1.15071e-12 -7.66726e-12 -3.33489e-11) (4.08752e-11 -5.07579e-11 -1.4168e-10) (2.38895e-10 -1.15712e-10 -2.63603e-10) (4.658e-10 -1.2523e-10 -3.06674e-10) (3.14184e-10 -3.75342e-11 -1.92162e-10) (3.67361e-11 8.07589e-12 -5.81711e-11) (-1.44671e-10 4.09181e-11 -9.75816e-11) (-1.82969e-09 2.08934e-10 -2.92948e-10) (-6.24548e-09 2.16826e-10 -4.27252e-10) (-9.89647e-09 -3.60267e-10 -1.2849e-09) (-8.62601e-09 -6.49419e-10 -1.92879e-09) (-2.23778e-09 8.49963e-11 -6.53645e-10) (-1.25027e-09 4.77033e-10 -4.0045e-10) (-6.33497e-11 2.06332e-10 -1.50732e-10) (3.8431e-12 4.58073e-11 -6.66012e-11) (3.70957e-12 -1.29909e-12 -7.82678e-13) (8.3872e-11 -3.41959e-11 8.7212e-11) (2.1439e-10 -5.16157e-11 2.05553e-10) (2.18808e-10 -3.05798e-11 9.89862e-11) (2.86856e-10 -2.41088e-11 -3.67051e-11) (4.83975e-10 -1.24217e-11 -2.25874e-10) (4.48776e-10 2.17558e-11 -2.85657e-10) (2.14621e-10 2.75181e-11 -1.50866e-10) (1.10845e-10 6.93707e-13 -4.92999e-11) (2.12555e-10 -4.51562e-11 -1.96814e-11) (5.30862e-10 -1.54637e-10 5.64011e-12) (5.73592e-10 -2.12757e-10 3.81273e-11) (1.69159e-10 -1.11253e-10 5.43684e-11) (3.95108e-12 -5.4621e-11 5.94587e-11) (-4.99864e-11 -9.7459e-11 1.58206e-10) (9.71288e-11 -1.50038e-10 2.55159e-10) (5.67036e-10 -1.88887e-10 3.82613e-10) (3.07113e-10 3.77841e-11 5.83616e-11) (-2.48643e-10 3.23183e-10 -3.68979e-10) (-8.68175e-09 2.51358e-09 -4.81537e-09) (-8.30232e-09 1.11402e-09 -1.4231e-09) (-6.53736e-10 7.14258e-11 1.47183e-09) (1.90866e-09 2.96801e-11 4.29753e-09) (1.11046e-09 6.53401e-11 1.46615e-09) (6.18311e-11 5.82578e-12 3.91793e-11) (8.56207e-12 -6.52909e-12 -2.88314e-11) (4.68494e-11 -6.11354e-11 -1.65068e-10) (2.27316e-10 -1.37713e-10 -2.90669e-10) (4.8662e-10 -1.55069e-10 -3.23899e-10) (4.31017e-10 -5.58494e-11 -2.05133e-10) (9.79187e-11 1.40261e-11 -6.79917e-11) (-2.93115e-11 2.66501e-11 -4.83021e-11) (-9.13186e-10 1.94433e-10 -2.90571e-10) (-4.9733e-09 3.66362e-10 -6.66002e-10) (-1.16157e-08 -2.59007e-10 -1.47819e-09) (-1.62316e-08 -1.3198e-09 -2.88935e-09) (-1.09383e-08 -2.52269e-10 -2.14011e-09) (-9.15564e-09 1.46387e-09 -1.65933e-09) (-5.54727e-10 5.79435e-10 -4.02104e-10) (1.04599e-11 1.21099e-10 -1.46566e-10) (1.51195e-11 -3.57074e-13 -8.79231e-12) (1.10304e-10 -4.3761e-11 8.97758e-11) (2.80053e-10 -8.05655e-11 2.80658e-10) (2.7378e-10 -4.73618e-11 1.68833e-10) (2.94855e-10 -3.42498e-11 4.41926e-12) (6.20874e-10 -4.77373e-11 -2.55183e-10) (9.42287e-10 2.89851e-12 -5.46101e-10) (6.59833e-10 5.99484e-11 -4.29208e-10) (3.37769e-10 1.34278e-11 -1.90112e-10) (3.38179e-10 -6.42039e-11 -9.61368e-11) (4.95e-10 -1.71231e-10 -5.5922e-11) (3.17726e-10 -1.72758e-10 -7.40639e-12) (2.99947e-11 -5.91701e-11 1.66188e-11) (-7.79257e-11 -8.99549e-11 8.34552e-11) (-1.55661e-10 -1.80781e-10 2.64546e-10) (7.35972e-11 -2.55274e-10 3.8285e-10) (5.10374e-10 -2.61515e-10 4.70484e-10) (2.84768e-10 3.36062e-11 1.56562e-10) (-1.70956e-10 2.92928e-10 -1.23434e-10) (-8.14995e-09 3.32586e-09 -3.87589e-09) (-1.13907e-08 2.34382e-09 -2.39081e-09) (-1.12328e-09 1.41103e-10 1.35041e-09) (1.40898e-09 -1.19352e-10 4.01886e-09) (1.23248e-09 -2.82334e-11 1.71814e-09) (1.55121e-10 2.02234e-12 9.64111e-11) (4.28179e-11 -9.42579e-12 -2.93647e-11) (1.42214e-10 -7.13591e-11 -1.53902e-10) (4.59316e-10 -1.82081e-10 -2.95013e-10) (9.58791e-10 -2.20919e-10 -3.02624e-10) (1.07741e-09 -7.40673e-11 -1.27725e-10) (4.50756e-10 5.91122e-11 -1.70426e-11) (1.97792e-11 2.17874e-11 -1.0296e-11) (-2.24131e-10 1.07366e-10 -1.06383e-10) (-2.36752e-09 3.63939e-10 -5.67996e-10) (-8.05404e-09 8.99258e-11 -1.41592e-09) (-1.75194e-08 -1.39291e-09 -3.08675e-09) (-2.5535e-08 -1.54134e-09 -3.91212e-09) (-3.1671e-08 1.82465e-09 -3.78215e-09) (-4.00449e-09 1.76681e-09 -1.3293e-09) (-6.52048e-11 2.38907e-10 -2.77344e-10) (5.46205e-11 1.06033e-11 -4.19176e-11) (1.6679e-10 -4.93055e-11 7.89894e-11) (3.88773e-10 -1.09886e-10 3.45078e-10) (3.90903e-10 -7.37303e-11 2.89348e-10) (2.73683e-10 -3.43719e-11 8.33727e-11) (3.14832e-10 -3.99773e-11 -6.56162e-11) (7.01533e-10 -4.72173e-11 -3.79848e-10) (1.10453e-09 2.6448e-11 -6.81295e-10) (1.10438e-09 1.56677e-11 -6.10727e-10) (1.01544e-09 -1.34207e-10 -3.80572e-10) (7.84761e-10 -2.34253e-10 -1.79125e-10) (1.80984e-10 -1.18161e-10 -3.51576e-11) (-2.05125e-11 -4.29899e-11 1.82899e-12) (-2.58545e-10 -1.54472e-10 1.11461e-10) (-2.10491e-10 -2.63547e-10 3.19639e-10) (1.3381e-10 -4.49073e-10 5.42332e-10) (3.90996e-10 -3.38351e-10 4.92605e-10) (9.72828e-11 2.38778e-11 1.39875e-10) (-5.53743e-10 5.91051e-10 1.17498e-11) (-9.15351e-09 4.45324e-09 -2.71295e-09) (-1.0949e-08 3.27531e-09 -1.86373e-09) (-1.13785e-09 2.27511e-10 1.02079e-09) (5.72562e-10 -1.72025e-10 2.30103e-09) (6.29581e-10 -1.25041e-10 9.60757e-10) (1.27036e-10 -1.99013e-11 6.73039e-11) (1.04707e-10 -2.64869e-11 -3.88897e-11) (3.49633e-10 -1.24127e-10 -1.7511e-10) (1.006e-09 -2.98183e-10 -2.87312e-10) (2.12385e-09 -3.60932e-10 -1.01132e-10) (3.08591e-09 -6.54526e-11 5.04534e-10) (2.40639e-09 3.51551e-10 8.15756e-10) (5.39001e-10 2.40572e-10 2.68971e-10) (-1.22041e-11 4.49489e-11 4.37761e-12) (-7.61054e-10 2.38337e-10 -2.37134e-10) (-3.80512e-09 2.84042e-10 -1.05724e-09) (-1.18755e-08 -7.04578e-10 -2.68362e-09) (-3.28778e-08 -2.45431e-09 -4.82973e-09) (-5.65333e-08 5.21073e-10 -5.3402e-09) (-1.83566e-08 3.69919e-09 -3.41971e-09) (-6.03754e-10 4.88164e-10 -6.10425e-10) (7.84292e-11 2.82976e-11 -8.55923e-11) (2.83624e-10 -5.8002e-11 6.90322e-11) (5.60239e-10 -1.29102e-10 4.05184e-10) (5.10248e-10 -8.08213e-11 4.2354e-10) (3.03959e-10 -2.11463e-11 1.96196e-10) (1.22831e-10 -1.44604e-11 4.09806e-11) (1.19401e-10 -2.94809e-11 -3.8717e-11) (6.2474e-10 -9.32668e-11 -4.07666e-10) (1.94282e-09 -1.45213e-10 -1.14487e-09) (2.97791e-09 -3.57168e-10 -1.35101e-09) (2.01101e-09 -4.11211e-10 -7.17324e-10) (2.46676e-10 -1.04277e-10 -1.06836e-10) (-4.42165e-11 -3.00361e-11 -1.05375e-11) (-4.02692e-10 -1.68929e-10 1.07657e-10) (-2.0729e-10 -3.30373e-10 3.08156e-10) (2.01341e-10 -6.72633e-10 5.75351e-10) (2.37607e-10 -3.77135e-10 4.14558e-10) (-1.80956e-11 3.74314e-11 1.62272e-10) (-1.65541e-09 1.35597e-09 4.47484e-10) (-1.08728e-08 5.78581e-09 -1.17125e-09) (-9.73321e-09 3.77223e-09 -8.53618e-10) (-9.65707e-10 2.66427e-10 6.06544e-10) (8.24636e-11 -1.13811e-10 6.86577e-10) (1.78146e-10 -1.10148e-10 2.59514e-10) (7.29624e-11 -3.63727e-11 1.62886e-11) (1.4181e-10 -6.23927e-11 -6.64088e-11) (4.72086e-10 -1.9223e-10 -2.31038e-10) (1.30925e-09 -4.17436e-10 -3.16521e-10) (2.86265e-09 -5.0933e-10 8.75932e-11) (4.83549e-09 -5.68548e-11 1.34486e-09) (5.42311e-09 8.93344e-10 2.75147e-09) (2.78272e-09 1.07571e-09 2.0972e-09) (2.54251e-10 3.06081e-10 3.55619e-10) (-1.61191e-10 1.21666e-10 -4.24121e-12) (-1.46018e-09 2.65982e-10 -5.59233e-10) (-5.62747e-09 -6.01422e-11 -1.92828e-09) (-2.56748e-08 -1.6405e-09 -4.58623e-09) (-6.00563e-08 -3.0445e-10 -5.87922e-09) (-4.61517e-08 4.26732e-09 -5.6343e-09) (-3.421e-09 9.89479e-10 -1.52344e-09) (1.85039e-11 1.62113e-11 -6.15057e-11) (3.82632e-10 -7.78544e-11 9.15288e-11) (9.57447e-10 -1.70417e-10 5.77027e-10) (8.35264e-10 -8.21116e-11 5.83e-10) (5.00396e-10 -8.49566e-12 2.993e-10) (1.74508e-10 -4.1952e-12 1.16599e-10) (2.08281e-11 -9.91941e-12 2.07395e-11) (6.45369e-11 -3.75315e-11 -3.68923e-11) (1.59796e-09 -3.49471e-10 -1.15825e-09) (5.42444e-09 -8.14458e-10 -3.49507e-09) (4.11639e-09 -5.54045e-10 -2.51416e-09) (4.84777e-10 -6.31017e-11 -3.61467e-10) (-1.95169e-11 -3.02304e-12 -8.16886e-12) (-2.45978e-10 -9.61014e-11 9.07451e-11) (-1.1195e-10 -3.83836e-10 2.69426e-10) (2.83214e-10 -9.30972e-10 5.08016e-10) (8.80654e-11 -3.52845e-10 2.85155e-10) (-2.61644e-10 1.15479e-10 3.35974e-10) (-3.61332e-09 2.65939e-09 1.38281e-09) (-1.20861e-08 6.98447e-09 5.24056e-10) (-9.12972e-09 4.05028e-09 -2.68263e-10) (-1.00476e-09 2.75264e-10 2.41323e-10) (-1.96998e-11 -3.92707e-11 6.79144e-11) (4.49801e-11 -7.19075e-11 3.37247e-11) (6.19137e-11 -6.35202e-11 -2.40235e-11) (1.5972e-10 -1.03845e-10 -1.28359e-10) (5.45441e-10 -2.66494e-10 -2.94328e-10) (1.48176e-09 -5.61857e-10 -2.71166e-10) (2.96422e-09 -6.70245e-10 2.91184e-10) (4.83487e-09 -9.59578e-11 1.59497e-09) (6.12799e-09 1.21899e-09 3.42776e-09) (4.41202e-09 1.90184e-09 3.73003e-09) (1.01194e-09 9.49777e-10 1.47401e-09) (-7.20237e-11 1.75511e-10 1.39976e-10) (-5.92748e-10 2.00206e-10 -1.88831e-10) (-2.35537e-09 1.72504e-10 -1.17361e-09) (-1.37798e-08 -3.79209e-10 -3.55356e-09) (-4.53177e-08 7.11366e-10 -5.88698e-09) (-7.13529e-08 2.89103e-09 -7.30741e-09) (-1.11218e-08 8.90799e-10 -2.93471e-09) (-2.4919e-11 -8.95192e-12 -6.23003e-11) (6.54588e-10 -1.93847e-10 1.05241e-10) (1.87307e-09 -3.75259e-10 7.43247e-10) (1.5012e-09 -1.92571e-10 7.09344e-10) (6.27232e-10 -1.66691e-11 3.47851e-10) (1.87052e-10 2.77266e-11 1.69873e-10) (3.15911e-11 1.26088e-11 9.66093e-11) (4.55114e-12 -4.10588e-12 7.09484e-12) (6.66509e-10 -2.22499e-10 -5.74707e-10) (5.87646e-09 -1.11882e-09 -5.17399e-09) (5.70885e-09 -5.58648e-10 -5.3203e-09) (7.77352e-10 5.02576e-11 -9.40766e-10) (-1.00083e-11 5.05476e-12 -1.18327e-11) (-8.91141e-11 -5.74255e-11 5.91615e-11) (1.92486e-11 -5.34833e-10 2.61408e-10) (3.76331e-10 -1.21682e-09 4.24946e-10) (-1.01929e-11 -3.03247e-10 2.06988e-10) (-8.6377e-10 3.55263e-10 6.79669e-10) (-6.15736e-09 4.41705e-09 2.61235e-09) (-1.27076e-08 7.88368e-09 1.58425e-09) (-8.63778e-09 3.98161e-09 -5.77414e-10) (-1.36225e-09 2.65798e-10 -2.44411e-10) (-7.17517e-11 -6.46099e-11 -3.72161e-11) (9.58144e-12 -9.75714e-11 -4.72881e-11) (7.05384e-11 -1.03094e-10 -7.78456e-11) (2.8403e-10 -1.86137e-10 -1.60894e-10) (8.80177e-10 -4.41904e-10 -2.38952e-10) (1.63658e-09 -7.26364e-10 -1.24433e-11) (2.30003e-09 -6.97459e-10 6.09672e-10) (3.40869e-09 -1.14635e-10 1.63042e-09) (4.98246e-09 1.27447e-09 3.16605e-09) (4.34297e-09 2.26906e-09 3.73569e-09) (1.28863e-09 1.34306e-09 1.93607e-09) (-7.26758e-11 3.23183e-10 3.53766e-10) (-3.29799e-10 1.55646e-10 -1.97982e-11) (-8.70423e-10 1.71026e-10 -5.53603e-10) (-5.39703e-09 2.97217e-10 -2.15339e-09) (-2.35418e-08 2.08979e-09 -4.47908e-09) (-6.73562e-08 1.0898e-09 -7.84797e-09) (-1.88887e-08 -1.07561e-09 -4.52421e-09) (-2.05027e-10 -1.7179e-10 -2.79483e-10) (5.90092e-10 -3.01286e-10 -7.33207e-11) (1.32713e-09 -4.5164e-10 3.6027e-10) (8.87482e-10 -2.33605e-10 4.88514e-10) (3.15078e-10 -4.62724e-11 3.20755e-10) (1.24584e-10 4.48763e-11 2.42586e-10) (7.1943e-11 9.83691e-11 2.30596e-10) (3.14197e-11 3.05167e-11 6.28537e-11) (2.39958e-10 -2.67238e-11 -1.62463e-10) (3.88474e-09 -6.47111e-10 -4.02999e-09) (5.44989e-09 -4.59165e-10 -6.60548e-09) (1.07502e-09 1.07195e-10 -1.77715e-09) (2.92123e-12 6.11175e-12 -4.42889e-11) (-1.06584e-11 -5.65086e-11 2.03938e-11) (2.16828e-10 -8.34307e-10 2.26492e-10) (4.13121e-10 -1.32602e-09 3.5749e-10) (-6.07502e-11 -2.25263e-10 1.84092e-10) (-1.5227e-09 7.57696e-10 9.93782e-10) (-7.83009e-09 5.89876e-09 3.34708e-09) (-1.10008e-08 7.60409e-09 1.75817e-09) (-5.9941e-09 2.89241e-09 -9.50315e-10) (-1.32433e-09 9.02268e-11 -6.93559e-10) (-2.46166e-10 -2.25406e-10 -2.58884e-10) (-1.95364e-11 -1.57276e-10 -8.85375e-11) (1.08445e-10 -1.44043e-10 -6.40578e-11) (5.32352e-10 -3.19732e-10 -1.85333e-10) (1.12609e-09 -5.68566e-10 -2.42645e-10) (1.14883e-09 -6.25761e-10 7.70069e-11) (9.83392e-10 -4.78279e-10 5.49578e-10) (1.48056e-09 -1.10944e-10 1.41838e-09) (3.21393e-09 1.18817e-09 3.15568e-09) (4.05149e-09 2.66578e-09 4.00062e-09) (1.50044e-09 1.70049e-09 2.06955e-09) (-4.74168e-11 3.8136e-10 3.94738e-10) (-2.57898e-10 1.23946e-10 3.11084e-11) (-3.42652e-10 1.03375e-10 -2.40435e-10) (-1.59041e-09 4.02674e-10 -1.0217e-09) (-6.96781e-09 1.80557e-09 -2.14978e-09) (-2.8935e-08 6.20569e-10 -4.59802e-09) (-1.33068e-08 -2.63836e-09 -3.727e-09) (-4.89759e-10 -6.24859e-10 -6.93888e-10) (4.75989e-10 -3.32971e-10 -2.70161e-10) (6.02629e-10 -2.23001e-10 3.51773e-12) (1.70205e-10 -7.25198e-11 9.20405e-11) (-3.81082e-12 -2.81842e-11 9.51872e-11) (-1.68357e-10 1.54645e-11 2.82808e-10) (-1.68666e-10 1.5351e-10 3.97396e-10) (1.35333e-11 1.46929e-10 2.13499e-10) (1.10135e-10 5.17199e-11 -1.97293e-11) (1.94711e-09 -1.0106e-11 -2.00736e-09) (4.09192e-09 -1.95844e-10 -5.5727e-09) (1.29997e-09 -2.88543e-11 -2.42773e-09) (8.75586e-11 -6.02604e-11 -2.25139e-10) (7.62298e-11 -2.18769e-10 -3.29786e-11) (3.99243e-10 -1.07498e-09 1.42062e-10) (3.57898e-10 -1.0729e-09 3.58802e-10) (-6.12938e-11 -1.48457e-10 2.08318e-10) (-1.60825e-09 9.86202e-10 9.9739e-10) (-7.16734e-09 5.91359e-09 2.7527e-09) (-7.02603e-09 5.67959e-09 1.30375e-09) (-2.41634e-09 1.294e-09 -4.63648e-10) (-6.47228e-10 -7.74511e-11 -4.10876e-10) (-2.68062e-10 -2.68893e-10 -2.06877e-10) (-5.4088e-11 -1.6724e-10 -7.73683e-11) (1.28958e-10 -1.77096e-10 -1.36206e-10) (8.48482e-10 -4.41893e-10 -4.06507e-10) (1.37358e-09 -6.29511e-10 -3.24492e-10) (7.20751e-10 -4.53191e-10 5.48959e-11) (1.85005e-10 -2.20424e-10 2.2906e-10) (1.44276e-10 -9.61886e-11 7.29065e-10) (9.8134e-10 8.02958e-10 2.51037e-09) (3.03156e-09 2.8489e-09 4.59127e-09) (2.14205e-09 2.50164e-09 2.93905e-09) (1.37717e-10 5.46459e-10 5.0658e-10) (-1.31859e-10 7.94717e-11 2.81772e-11) (-2.41918e-10 5.85724e-11 -1.54353e-10) (-5.77854e-10 3.21651e-10 -5.56294e-10) (-1.45387e-09 8.25252e-10 -8.69708e-10) (-3.91675e-09 3.22363e-10 -1.12383e-09) (-2.65525e-09 -1.21186e-09 -9.27705e-10) (-3.69651e-10 -8.4526e-10 -4.75028e-10) (1.95932e-10 -3.12991e-10 -2.01581e-10) (2.81106e-10 -1.11596e-10 -1.0088e-10) (8.97786e-11 -2.0001e-11 -1.56691e-11) (-4.12997e-12 -1.87238e-12 3.39263e-12) (-5.58519e-10 5.95793e-12 2.57248e-10) (-1.62466e-09 3.27713e-10 9.41143e-10) (-8.06029e-10 4.95348e-10 7.24462e-10) (-2.6467e-11 1.22558e-10 6.04346e-11) (4.7957e-10 1.82402e-10 -5.48779e-10) (2.63093e-09 -9.43521e-12 -3.60567e-09) (1.85135e-09 -3.40779e-10 -3.06205e-09) (4.74141e-10 -3.72106e-10 -8.425e-10) (2.27473e-10 -4.71281e-10 -2.03811e-10) (3.35276e-10 -8.87195e-10 1.16139e-10) (2.90044e-10 -7.64314e-10 4.36566e-10) (-2.36545e-11 -1.19596e-10 2.90155e-10) (-1.12006e-09 7.92912e-10 7.11395e-10) (-5.57772e-09 4.65196e-09 1.30296e-09) (-5.21015e-09 4.1811e-09 3.94049e-10) (-1.9622e-09 8.93278e-10 -3.47183e-10) (-1.24725e-09 -1.52871e-10 -5.10097e-10) (-8.59054e-10 -4.46831e-10 -5.299e-10) (-7.96695e-11 -2.52953e-10 -2.74231e-10) (6.52035e-10 -4.46895e-10 -3.46694e-10) (2.3766e-09 -9.10831e-10 -3.07249e-10) (2.46787e-09 -8.50238e-10 -1.0761e-10) (7.13086e-10 -3.40918e-10 -4.45171e-11) (4.74404e-12 -4.09104e-11 6.96144e-12) (-3.0842e-10 -7.09546e-11 2.55843e-10) (-5.65965e-10 4.26839e-10 1.51319e-09) (8.82646e-10 2.27113e-09 4.24134e-09) (2.42234e-09 3.2026e-09 4.40562e-09) (7.35945e-10 1.12855e-09 1.19016e-09) (-1.66216e-11 6.69658e-11 3.96973e-11) (-1.68273e-10 4.14195e-11 -9.49417e-11) (-4.44046e-10 2.49478e-10 -4.38027e-10) (-4.07124e-10 3.03007e-10 -4.34339e-10) (-1.74664e-10 1.77995e-11 -1.63343e-10) (-1.48432e-10 -3.22209e-10 -1.40235e-10) (-1.09751e-10 -7.02772e-10 -1.66007e-10) (-2.54451e-11 -2.39093e-10 -8.16301e-11) (8.18063e-12 -2.299e-11 -2.33192e-11) (1.54549e-11 -5.93247e-14 -1.90077e-11) (-5.50676e-14 1.53312e-12 -3.0527e-12) (-2.25849e-10 3.34945e-11 4.37489e-11) (-2.05602e-09 3.00951e-10 7.41153e-10) (-2.78847e-09 8.12274e-10 1.26531e-09) (-6.81012e-10 4.5354e-10 2.9841e-10) (3.08234e-11 8.851e-11 -1.15905e-10) (1.35023e-09 1.66354e-11 -1.93604e-09) (1.90994e-09 -5.03665e-10 -2.88653e-09) (7.24416e-10 -5.1598e-10 -1.19034e-09) (2.04956e-10 -3.52926e-10 -2.1745e-10) (2.16239e-10 -4.78314e-10 1.11076e-10) (3.19806e-10 -5.66075e-10 4.82517e-10) (6.31743e-11 -1.2069e-10 3.45773e-10) (-5.7113e-10 4.37606e-10 3.88017e-10) (-4.92458e-09 3.63789e-09 2.2765e-10) (-7.12238e-09 4.53575e-09 -1.02904e-09) (-4.29775e-09 1.60482e-09 -1.38252e-09) (-1.98819e-09 -4.00485e-11 -1.1455e-09) (-2.8104e-10 -2.88787e-10 -4.05155e-10) (4.62479e-10 -4.83737e-10 -1.16455e-10) (3.09609e-09 -1.55756e-09 6.90124e-10) (4.6447e-09 -1.72613e-09 1.03048e-09) (2.93104e-09 -8.56416e-10 5.30212e-11) (9.31849e-10 -2.20157e-10 -4.23664e-10) (3.27455e-11 -3.83046e-11 -2.38942e-10) (-6.97396e-10 -1.75857e-11 -2.07758e-10) (-1.88122e-09 3.50549e-10 9.16105e-10) (-1.09567e-09 1.51793e-09 3.24511e-09) (1.33515e-09 2.9893e-09 5.14777e-09) (1.48532e-09 1.81837e-09 2.50883e-09) (1.52873e-10 2.29711e-10 2.16232e-10) (-2.91643e-11 2.25969e-11 -1.8118e-11) (-3.15776e-10 1.54596e-10 -2.96023e-10) (-1.28696e-10 6.85524e-11 -1.84891e-10) (-2.11967e-11 -3.52808e-11 -8.52621e-11) (-1.90662e-11 -3.71889e-10 -1.52494e-10) (-1.70913e-10 -6.61638e-10 -1.54502e-10) (-1.69008e-10 -2.78425e-10 -6.99484e-11) (-3.83087e-11 -3.05745e-11 -2.22952e-11) (-1.83876e-12 2.21876e-12 -8.83188e-12) (6.37693e-12 1.23905e-11 -1.09838e-11) (-8.25768e-12 1.5238e-11 3.07739e-12) (-4.5322e-10 1.52696e-10 2.38383e-10) (-2.15809e-09 5.70052e-10 9.67193e-10) (-1.73935e-09 6.37256e-10 5.00422e-10) (-1.73002e-10 1.09828e-10 -1.10428e-10) (2.85648e-10 -1.38602e-12 -9.23474e-10) (8.61299e-10 -2.91368e-10 -1.79946e-09) (4.1932e-10 -2.32621e-10 -7.82977e-10) (1.37196e-10 -1.24037e-10 -1.14212e-10) (2.34617e-10 -2.54169e-10 1.01146e-10) (4.64909e-10 -4.88056e-10 4.90495e-10) (1.45027e-10 -1.37067e-10 3.14784e-10) (-2.03074e-10 1.80261e-10 1.49001e-10) (-3.49853e-09 2.56303e-09 -2.7829e-10) (-7.688e-09 4.41199e-09 -2.0205e-09) (-4.59907e-09 1.64866e-09 -1.78256e-09) (-5.18332e-10 -4.8033e-11 -3.05212e-10) (2.17593e-10 -2.97936e-10 3.85668e-11) (3.63127e-09 -2.32013e-09 1.57907e-09) (6.0948e-09 -3.29228e-09 2.64066e-09) (3.12869e-09 -1.63214e-09 1.03014e-09) (8.21246e-10 -3.38924e-10 -5.95642e-11) (5.66191e-10 -1.49395e-11 -5.49963e-10) (4.43338e-10 2.7463e-10 -1.30778e-09) (-5.44052e-10 2.9319e-10 -1.00238e-09) (-2.28557e-09 4.74018e-10 -1.44664e-10) (-2.48712e-09 1.08097e-09 2.19595e-09) (-2.56492e-10 2.16666e-09 4.48865e-09) (1.60838e-09 2.10222e-09 3.69759e-09) (6.03239e-10 5.74215e-10 7.66365e-10) (9.34494e-12 2.66511e-11 6.64971e-12) (-8.91031e-11 5.83495e-11 -9.62726e-11) (-1.47053e-11 2.37929e-12 -2.65328e-11) (-7.24368e-12 -3.7962e-11 -3.40615e-11) (-4.92742e-13 -2.44171e-10 -6.21691e-11) (-5.11731e-11 -4.15063e-10 -5.92941e-11) (-8.42251e-11 -2.60767e-10 -5.41898e-11) (-5.13487e-11 -8.19417e-11 -4.90892e-11) (-1.83473e-11 -1.38944e-11 -4.19173e-11) (2.63511e-12 1.39251e-11 -3.54036e-11) (1.07266e-11 3.25269e-11 -1.03656e-11) (-3.97204e-11 9.71573e-11 7.63535e-11) (-7.36956e-10 3.94045e-10 5.95275e-10) (-1.80547e-09 5.76886e-10 7.38139e-10) (-7.22219e-10 1.69094e-10 -1.04596e-10) (-1.48744e-10 -1.67606e-11 -6.28206e-10) (3.41755e-10 -1.0853e-10 -1.41951e-09) (2.96328e-10 -4.80614e-11 -6.63045e-10) (1.14763e-10 -4.12381e-11 -8.17187e-11) (2.56996e-10 -1.8393e-10 1.07504e-10) (4.32408e-10 -4.20476e-10 4.38368e-10) (8.50348e-11 -1.16072e-10 1.98933e-10) (-7.55944e-11 7.17301e-11 3.55152e-11) (-1.32178e-09 1.30662e-09 -3.81692e-10) (-2.68699e-09 2.10827e-09 -1.15512e-09) (-8.9216e-10 4.29518e-10 -4.44564e-10) (8.8028e-12 -2.93331e-11 -2.31481e-12) (1.86694e-09 -1.46858e-09 7.17317e-10) (4.84705e-09 -3.4424e-09 2.04595e-09) (2.41522e-09 -2.04859e-09 1.27123e-09) (1.91275e-10 -3.87718e-10 2.14701e-10) (-2.75268e-11 -4.73905e-11 2.19345e-12) (1.26664e-12 6.54309e-12 -9.46341e-11) (5.72649e-10 5.39029e-10 -1.2667e-09) (3.48558e-10 1.15606e-09 -2.13545e-09) (-1.19961e-09 8.2059e-10 -9.44629e-10) (-2.85823e-09 1.00856e-09 8.4506e-10) (-1.48929e-09 1.34844e-09 2.95885e-09) (9.01721e-10 1.78156e-09 3.7675e-09) (1.20092e-09 9.8421e-10 1.6945e-09) (1.83294e-10 1.43165e-10 1.46281e-10) (4.4589e-13 7.67233e-12 -4.56469e-12) (1.09173e-11 -2.6456e-12 2.20084e-12) (1.57974e-11 -4.38463e-11 4.35538e-13) (3.66663e-11 -2.39522e-10 7.81275e-12) (1.69593e-11 -3.90141e-10 1.88081e-12) (-2.22169e-11 -2.78935e-10 -2.7648e-11) (-2.62653e-11 -1.35606e-10 -5.45926e-11) (-1.21857e-11 -6.71676e-11 -8.22618e-11) (1.08065e-11 -1.61466e-11 -1.12239e-10) (2.4459e-11 4.4534e-11 -7.5443e-11) (7.25117e-12 1.20947e-10 6.64044e-12) (-2.74369e-10 4.74659e-10 3.76119e-10) (-1.15353e-09 7.25154e-10 8.33887e-10) (-7.80984e-10 1.94197e-10 1.56542e-10) (-1.79123e-10 -5.76678e-11 -2.67202e-10) (1.79308e-10 -2.1933e-10 -1.09044e-09) (3.38853e-10 -1.07953e-10 -7.92668e-10) (1.06116e-10 -3.64955e-11 -9.91139e-11) (7.84403e-11 -6.84297e-11 5.05272e-11) (7.61853e-11 -1.67042e-10 2.21429e-10) (-3.2448e-11 -5.75627e-11 1.08044e-10) (-9.6876e-11 4.73871e-11 6.94402e-12) (-3.98988e-10 4.9724e-10 -2.93604e-10) (-2.74014e-10 5.29479e-10 -4.28103e-10) (9.33281e-12 2.77583e-11 -6.14147e-11) (3.73192e-10 -3.1983e-10 -9.26799e-12) (1.60728e-09 -1.56068e-09 5.08343e-10) (1.08201e-09 -1.23188e-09 6.78869e-10) (6.71126e-11 -3.29727e-10 2.59201e-10) (-2.8792e-10 -2.22991e-10 1.73042e-10) (-6.31925e-10 -2.87547e-10 1.00818e-10) (-2.52447e-10 -7.29036e-11 -6.49589e-11) (2.01022e-12 2.011e-10 -3.89219e-10) (7.6002e-10 2.05354e-09 -2.71741e-09) (-6.07002e-10 2.35383e-09 -2.53748e-09) (-2.37585e-09 1.46042e-09 -5.01188e-10) (-2.37846e-09 1.06615e-09 1.59351e-09) (-3.52423e-10 9.8742e-10 2.4346e-09) (1.09394e-09 9.37744e-10 2.10971e-09) (7.6555e-10 3.88546e-10 7.20758e-10) (1.39535e-10 4.95074e-11 7.64765e-11) (3.84749e-10 -6.46632e-11 2.16856e-10) (2.06868e-10 -1.39413e-10 1.30178e-10) (1.29355e-10 -2.24291e-10 1.16197e-10) (4.7738e-11 -2.68559e-10 8.28352e-11) (-6.24463e-12 -2.52373e-10 2.14635e-11) (-4.60429e-12 -2.17664e-10 -4.25499e-11) (3.42549e-11 -1.70197e-10 -1.09683e-10) (8.97962e-11 -9.60207e-11 -1.90918e-10) (1.22648e-10 5.48441e-11 -2.31634e-10) (7.06929e-11 2.45915e-10 -1.36019e-10) (-1.34926e-10 5.56824e-10 1.23033e-10) (-5.9059e-10 6.46432e-10 4.78293e-10) (-4.46192e-10 1.1188e-10 1.7222e-10) (-1.98298e-10 -1.13218e-10 -1.18564e-10) (-1.47758e-10 -2.60751e-10 -4.98791e-10) (-1.66611e-11 -1.17199e-10 -3.55992e-10) (5.95546e-12 -1.36934e-11 -3.01269e-11) (1.15551e-12 -6.23562e-12 7.8222e-12) (-1.87435e-11 -2.48615e-11 6.94723e-11) (-3.5025e-11 -8.8766e-12 5.08808e-11) (-1.35171e-11 6.80467e-12 2.77538e-12) (-5.14204e-12 3.90642e-11 -3.86697e-11) (7.79991e-11 6.03924e-11 -1.10613e-10) (2.79143e-10 -4.92197e-11 -1.21453e-10) (5.96644e-10 -3.54042e-10 1.98515e-11) (3.97589e-10 -3.95137e-10 2.11626e-10) (3.70593e-11 -1.87499e-10 1.53479e-10) (-1.03951e-10 -1.44372e-10 1.04928e-10) (-1.45967e-10 -1.65388e-10 5.07901e-11) (-1.45636e-10 -1.6547e-10 1.1449e-11) (-2.37296e-10 -9.80743e-11 -2.26019e-11) (-5.33682e-10 2.08758e-10 -2.79675e-10) (-8.59809e-10 1.89585e-09 -1.94543e-09) (-9.46291e-10 4.50732e-09 -4.43951e-09) (-1.94366e-09 2.72085e-09 -2.05543e-09) (-2.07498e-09 1.12536e-09 2.65703e-10) (-9.88895e-10 5.46116e-10 1.31907e-09) (2.45127e-10 4.35568e-10 1.49809e-09) (9.46006e-10 3.18109e-10 1.16536e-09) (7.60972e-10 7.50288e-11 5.44628e-10) (1.05214e-09 -2.24799e-10 7.82899e-10) (5.58309e-10 -1.46966e-10 4.7146e-10) (2.34523e-10 -1.32614e-10 2.46889e-10) (8.9362e-11 -1.43391e-10 1.00633e-10) (5.13458e-11 -2.29124e-10 1.65972e-11) (4.8617e-11 -3.68048e-10 -9.63061e-11) (7.47697e-11 -3.56365e-10 -1.79611e-10) (9.33803e-11 -1.64832e-10 -1.68733e-10) (9.38747e-11 1.90711e-11 -1.45173e-10) (1.35082e-10 3.96665e-10 -2.27032e-10) (-7.28519e-11 1.00655e-09 -9.99002e-11) (-4.48186e-10 7.24841e-10 1.72467e-10) (-6.56995e-10 1.09897e-10 1.69726e-10) (-1.19524e-09 -5.48383e-10 -4.45694e-11) (-1.0695e-09 -7.34686e-10 -3.80377e-10) (-2.40552e-10 -1.92146e-10 -2.04582e-10) (3.1906e-13 -8.32028e-12 -2.19916e-11) (1.75004e-11 3.92474e-12 5.74624e-13) (2.53912e-11 1.15176e-11 2.86053e-11) (7.77968e-12 7.68955e-12 2.76595e-11) (3.17314e-13 1.13448e-12 1.62844e-12) (5.49333e-12 5.42211e-12 -1.01264e-11) (4.65314e-11 1.19616e-11 -4.86477e-11) (6.65934e-11 -1.19213e-11 -2.2298e-11) (4.37226e-11 -4.66989e-11 3.24568e-11) (-1.48824e-11 -1.61892e-10 1.4548e-10) (-8.47224e-11 -2.8963e-10 1.95742e-10) (2.08084e-11 -2.82473e-10 9.03678e-11) (2.24235e-10 -3.20964e-10 -1.01751e-11) (2.6342e-10 -1.9945e-10 -7.83624e-11) (7.80967e-12 -4.27651e-12 -1.43669e-11) (-7.11022e-10 3.631e-10 -2.99605e-10) (-4.17682e-09 2.74138e-09 -2.26433e-09) (-5.02698e-09 5.3671e-09 -4.87657e-09) (-3.13095e-09 4.34101e-09 -3.72636e-09) (-1.28905e-09 1.21264e-09 -5.59009e-10) (-3.5826e-10 1.77831e-10 2.86773e-10) (7.57443e-11 -2.93712e-11 7.66805e-10) (9.38297e-10 -2.31348e-10 1.2918e-09) (1.39185e-09 -3.12933e-10 1.18503e-09) (7.2821e-10 -2.36189e-10 9.01484e-10) (2.54295e-10 -8.11038e-12 3.23316e-10) (8.08417e-11 3.51563e-12 7.67288e-11) (3.58036e-11 -1.5998e-11 4.76736e-12) (7.66172e-11 -9.991e-11 -5.61205e-11) (1.41998e-10 -3.04811e-10 -1.64989e-10) (1.69983e-10 -4.26888e-10 -1.73694e-10) (1.02743e-10 -2.35028e-10 -8.74162e-11) (1.30219e-11 -1.01728e-11 -1.58036e-11) (4.36192e-12 2.262e-10 -7.28838e-11) (-2.93768e-10 1.538e-09 -1.01736e-10) (-8.35596e-10 1.62764e-09 2.43647e-10) (-9.94652e-10 4.51805e-10 4.33617e-10) (-1.37414e-09 -4.58727e-10 5.74173e-10) (-1.03586e-09 -8.08373e-10 2.59631e-10) (-2.57892e-10 -3.02494e-10 -7.32258e-11) (-1.47368e-11 -4.86751e-11 -7.63772e-11) (2.35854e-11 6.93154e-12 -5.19174e-11) (1.58434e-11 1.92702e-11 -1.24645e-11) (3.24807e-12 1.83445e-11 4.70234e-12) (-6.63031e-12 1.52585e-11 6.77376e-12) (-5.9192e-12 4.92491e-12 -5.34991e-14) (-1.90527e-12 -7.42923e-13 -1.02829e-12) (-3.72768e-12 -1.84646e-11 3.13886e-12) (-3.57379e-12 -1.02234e-10 4.88169e-11) (2.99603e-11 -1.90782e-10 9.55714e-11) (1.36109e-10 -2.57795e-10 8.07084e-11) (4.15701e-10 -4.00536e-10 1.65647e-11) (8.14661e-10 -5.19238e-10 -1.05198e-10) (7.02637e-10 -3.00596e-10 -1.45287e-10) (1.14621e-10 2.45618e-12 -4.41993e-11) (-1.60528e-10 2.31319e-10 -1.07729e-10) (-3.26176e-09 2.27788e-09 -1.3657e-09) (-7.83912e-09 4.67487e-09 -4.3929e-09) (-5.5472e-09 3.67413e-09 -4.2109e-09) (-1.19508e-09 8.83922e-10 -9.34461e-10) (-1.60385e-11 9.0321e-12 6.75408e-12) (3.15951e-10 -2.53401e-10 5.72884e-10) (1.42946e-09 -9.31948e-10 1.82726e-09) (1.48907e-09 -7.82669e-10 1.76984e-09) (1.29615e-10 -9.97709e-11 6.74639e-10) (3.19766e-11 2.94827e-11 1.41567e-10) (1.64034e-11 1.32669e-11 7.95007e-12) (7.59955e-11 2.8295e-12 -4.40035e-11) (2.86588e-10 -1.31983e-10 -1.76572e-10) (5.31657e-10 -4.07592e-10 -2.014e-10) (4.90761e-10 -4.93262e-10 -3.38651e-11) (1.47113e-10 -2.06537e-10 5.18887e-11) (-1.29191e-12 -4.76243e-12 6.41588e-12) (-1.51114e-10 2.3124e-10 2.88478e-11) (-7.02397e-10 1.6502e-09 5.59488e-11) (-8.88303e-10 2.01766e-09 3.13596e-10) (-5.28459e-10 5.66835e-10 4.12942e-10) (-4.04026e-10 -9.72518e-11 4.0687e-10) (-2.6325e-10 -3.16008e-10 2.11847e-10) (-4.11004e-11 -1.32296e-10 -4.42651e-11) (7.0215e-11 -1.04448e-10 -2.67429e-10) (1.25068e-10 -1.90544e-11 -3.71864e-10) (2.68274e-12 1.94859e-11 -9.81812e-11) (-4.81169e-11 2.62698e-11 -1.43154e-11) (-1.46319e-10 6.91997e-11 4.01839e-11) (-8.14231e-11 4.13952e-11 3.32166e-11) (-3.00625e-12 9.62509e-13 8.7359e-13) (1.29334e-11 -1.90021e-11 -1.19161e-11) (1.54564e-10 -1.89583e-10 -1.22432e-10) (3.92295e-10 -4.37021e-10 -2.7901e-10) (5.29783e-10 -5.03901e-10 -2.66654e-10) (5.67731e-10 -4.41524e-10 -9.40342e-11) (5.52645e-10 -3.64689e-10 9.19987e-11) (3.20156e-10 -1.82064e-10 1.38012e-10) (4.00294e-11 -4.5775e-12 3.62418e-11) (-6.47418e-11 1.47664e-10 4.12846e-11) (-9.93794e-10 1.28728e-09 -1.61466e-10) (-2.67503e-09 2.4213e-09 -1.36083e-09) (-2.84605e-09 1.68908e-09 -2.2953e-09) (-1.03372e-09 2.88606e-10 -1.06819e-09) (-4.89991e-11 -3.60279e-11 -5.10662e-11) (8.56926e-11 -2.15929e-10 1.74431e-10) (4.41663e-10 -6.77102e-10 1.02561e-09) (3.883e-10 -5.26405e-10 1.30837e-09) (-1.40895e-11 -1.00482e-10 2.37637e-10) (-2.44089e-11 -1.23094e-11 8.28148e-11) (-1.35624e-12 2.29166e-13 4.91635e-12) (6.09856e-12 -2.5261e-12 -2.29959e-12) (8.03655e-11 -4.59043e-11 -3.0188e-11) (1.85218e-10 -1.18006e-10 -2.66652e-11) (1.51405e-10 -1.02516e-10 2.36784e-11) (2.07887e-11 -2.0669e-11 2.18607e-11) (-6.32954e-11 1.58839e-11 4.32191e-11) (-8.34294e-10 4.83398e-10 2.10835e-10) (-1.75127e-09 1.65264e-09 3.67348e-10) (-1.13923e-09 1.72042e-09 4.55629e-10) (-2.83783e-10 5.97465e-10 3.44057e-10) (-3.91674e-11 5.56444e-11 1.17714e-10) (-3.0429e-12 -9.57517e-12 1.22697e-11) (2.15665e-11 -4.62234e-11 -4.91745e-11) (2.31215e-10 -1.62041e-10 -4.25971e-10) (3.82198e-10 -1.33716e-10 -5.78494e-10) (1.16146e-10 -1.96822e-11 -1.66598e-10) (7.76997e-14 2.61066e-13 -2.66917e-12) (-2.67327e-11 -7.21927e-13 8.07907e-12) (-3.47533e-11 -1.17076e-11 4.09867e-12) (-1.25143e-11 -2.87842e-11 -2.99157e-11) (6.5058e-11 -1.45856e-10 -2.6248e-10) (1.98939e-10 -2.49367e-10 -6.02069e-10) (1.54895e-10 -1.68555e-10 -4.09611e-10) (5.73761e-11 -5.8161e-11 -5.66037e-11) (1.03618e-10 -9.56014e-11 8.71107e-11) (2.90677e-10 -2.59099e-10 4.94423e-10) (2.36367e-10 -2.06335e-10 5.20545e-10) (2.71331e-11 -1.05063e-11 9.93447e-11) (-2.88549e-11 6.67548e-11 8.61145e-12) (-2.98737e-10 6.23014e-10 -1.55085e-10) (-5.14119e-10 1.0814e-09 -3.81251e-10) (-2.79815e-10 5.55366e-10 -3.56882e-10) (-4.24033e-11 6.41844e-11 -1.3786e-10) (1.53203e-11 -3.87513e-11 -4.28181e-11) (9.48428e-11 -1.8465e-10 2.29971e-11) (1.60569e-10 -3.21076e-10 2.16667e-10) (8.38252e-11 -2.52096e-10 3.18785e-10) (8.04436e-11 -8.28433e-11 5.28438e-11) (1.47924e-11 -2.59339e-11 1.00021e-11) (1.1296e-12 -1.61528e-11 3.3942e-12) (-6.92214e-12 -2.32874e-11 8.66426e-12) (-2.1111e-11 -3.27721e-11 2.68156e-11) (-3.27641e-11 -2.46135e-11 4.49022e-11) (-2.90725e-11 2.21899e-13 3.83967e-11) (-3.63586e-11 2.71053e-11 2.92179e-11) (-1.45894e-10 1.23851e-10 3.55297e-11) (-6.40329e-10 4.4234e-10 5.61495e-11) (-1.41162e-09 8.75848e-10 1.49751e-10) (-1.18056e-09 7.60545e-10 2.84363e-10) (-3.24676e-10 2.31744e-10 2.06317e-10) (-2.4275e-11 1.55883e-11 7.43947e-11) (2.5107e-11 -2.62114e-11 3.712e-11) (8.73896e-11 -7.82904e-11 -8.2435e-12) (2.12961e-10 -1.50155e-10 -1.60278e-10) (3.02891e-10 -1.35959e-10 -3.08647e-10) (2.39241e-10 -4.65336e-11 -2.33509e-10) (1.053e-10 -7.12079e-12 -7.78225e-11) (2.51071e-11 -5.87496e-12 -1.20858e-11) (3.18586e-12 -4.40795e-12 -2.95785e-12) (-8.20993e-12 -9.88265e-12 -1.51261e-11) (-8.00436e-11 -1.98243e-11 -1.02979e-10) (-1.9757e-10 -2.11364e-11 -2.30926e-10) (-1.54353e-10 -4.54425e-11 -1.48933e-10) (-4.17731e-11 -4.58358e-11 -1.25205e-11) (-6.92242e-12 -1.42656e-10 1.22322e-10) (1.26948e-10 -3.64191e-10 5.60179e-10) (1.59679e-10 -2.69469e-10 6.33755e-10) (1.93244e-11 -8.25809e-12 1.39473e-10) (-2.55969e-11 7.57416e-11 -9.54868e-12) (-2.08017e-10 6.88247e-10 -5.0262e-10) (-1.84932e-10 1.09198e-09 -9.48449e-10) (3.65702e-11 5.30592e-10 -4.95029e-10) (6.76567e-11 7.70239e-11 -9.31966e-11) (8.69056e-11 -2.09752e-11 -1.25873e-11) (2.4564e-10 -1.66244e-10 7.50767e-11) (3.48045e-10 -2.85298e-10 1.82334e-10) (2.38922e-10 -2.10243e-10 1.49378e-10) (5.80553e-10 -2.97447e-10 1.7836e-10) (2.48626e-10 -1.01036e-10 1.37912e-11) (3.57214e-11 -1.2251e-11 -1.10087e-11) (-2.98213e-12 3.86507e-13 -1.43187e-12) (-1.66669e-10 2.9823e-11 2.68392e-11) (-5.81491e-10 1.06922e-10 2.00028e-10) (-5.99763e-10 1.37455e-10 2.74327e-10) (-2.34685e-10 8.78682e-11 1.08719e-10) (-4.39101e-11 3.27407e-11 6.3762e-12) (-1.44548e-11 2.06755e-11 -1.22057e-11) (-9.4167e-12 1.58299e-11 -1.18636e-11) (-2.80018e-12 4.6748e-12 -5.25255e-13) (3.34311e-13 1.86754e-12 8.89951e-12) (1.95308e-11 -1.40372e-11 6.4378e-11) (2.98138e-11 -4.3388e-11 1.10818e-10) (-8.47762e-12 -3.60261e-11 7.2321e-11) (-6.20139e-11 -2.3655e-11 4.71072e-11) (-1.68363e-10 -9.77546e-12 3.61738e-11) (-1.46555e-10 4.93969e-12 2.57799e-12) (-2.77396e-11 -1.38929e-12 -1.0149e-11) (2.02752e-12 -6.31422e-12 -2.29418e-11) (6.12946e-11 -1.97785e-11 -1.33883e-10) (1.07857e-10 8.77441e-12 -3.06517e-10) (4.36053e-11 6.19956e-11 -3.51693e-10) (-3.30003e-11 5.62486e-11 -2.17318e-10) (-2.78992e-11 7.95281e-12 -4.77645e-11) (-1.25458e-11 -1.1245e-11 4.17346e-12) (-4.24152e-11 -1.63845e-10 1.91347e-10) (-2.21243e-11 -4.70295e-10 7.24106e-10) (-1.6376e-11 -3.67284e-10 8.57006e-10) (-5.24365e-11 -2.36255e-11 3.38329e-10) (-4.76564e-11 6.99416e-11 4.0117e-11) (-1.58759e-10 3.77806e-10 -2.50222e-10) (-1.53962e-10 8.72992e-10 -1.03706e-09) (1.51181e-10 6.78506e-10 -1.11858e-09) (2.5708e-10 1.58978e-10 -4.56533e-10) (2.56056e-10 -5.95026e-11 -1.18267e-10) (4.98285e-10 -2.88512e-10 7.47798e-11) (8.0094e-10 -5.42535e-10 3.3705e-10) (8.35819e-10 -5.23611e-10 3.77296e-10) (1.13249e-10 6.13537e-12 -6.01113e-11) (4.45211e-11 4.82219e-12 -5.01639e-11) (1.86247e-11 1.5713e-12 -2.69493e-11) (1.90059e-11 7.02901e-14 -1.31726e-11) (3.47271e-11 -3.08275e-13 -8.49218e-12) (4.49285e-11 6.77069e-14 -4.16325e-12) (4.18669e-11 3.97239e-13 -2.44933e-12) (3.877e-11 3.79358e-13 -1.86147e-12) (4.1177e-11 3.01821e-13 1.1013e-12) (5.15169e-11 7.49289e-15 8.80639e-12) (8.70799e-11 -5.09552e-13 2.49702e-11) (1.98672e-10 -2.46871e-12 5.75036e-11) (4.35088e-10 -4.36054e-12 1.07521e-10) (7.57782e-10 -1.65165e-12 1.834e-10) (1.05452e-09 6.01341e-12 3.29019e-10) (1.29684e-09 1.447e-11 5.64101e-10) (1.49163e-09 2.18171e-11 8.23302e-10) (1.59401e-09 2.84729e-11 9.54169e-10) (1.50051e-09 2.69332e-11 7.88799e-10) (1.09554e-09 1.2393e-11 3.15526e-10) (5.42046e-10 6.73779e-13 -4.45452e-11) (1.35875e-10 -1.33853e-12 -7.01529e-11) (1.63252e-11 -6.52367e-13 -1.20153e-11) (6.80064e-12 1.02752e-13 -2.17022e-12) (5.80372e-12 2.10306e-13 -1.12755e-12) (3.71704e-12 2.01671e-13 -4.25006e-14) (7.93223e-12 1.9772e-13 1.34593e-12) (4.5455e-11 -5.11308e-13 6.27828e-12) (2.05139e-10 -3.71475e-12 2.69936e-11) (5.141e-10 -6.73117e-12 9.19049e-11) (6.4743e-10 -2.62296e-12 1.76667e-10) (3.77287e-10 3.44546e-12 1.7407e-10) (9.71004e-11 3.26755e-12 1.02834e-10) (-5.35098e-13 2.328e-12 8.6503e-11) (-3.00954e-11 1.79181e-12 8.93123e-11) (-6.37119e-12 5.53922e-13 3.68944e-11) (6.35959e-12 1.83058e-13 7.53957e-12) (3.23043e-11 2.69093e-13 4.42537e-12) (1.089e-10 8.17687e-14 -6.66679e-12) (1.648e-10 3.49744e-12 -3.54728e-11) (1.83115e-09 2.06119e-10 -1.22874e-09) (1.37849e-09 1.62004e-10 -1.03358e-09) (1.04713e-09 6.20013e-11 -5.5913e-10) (1.01744e-09 1.40474e-11 -2.25042e-10) (1.01459e-09 1.3006e-11 -3.14085e-11) (8.64132e-10 2.35359e-11 1.79126e-11) (7.20784e-10 2.12917e-11 -1.38819e-11) (6.82257e-10 9.91614e-12 -4.23806e-11) (7.51076e-10 -1.50661e-12 -2.1581e-11) (9.03852e-10 -8.18388e-12 6.48439e-11) (1.17186e-09 -1.00031e-11 2.25327e-10) (1.85117e-09 -1.91462e-11 4.85874e-10) (3.28594e-09 -2.63234e-11 9.03186e-10) (5.5311e-09 -8.59886e-12 1.59285e-09) (8.2985e-09 2.15914e-11 2.76152e-09) (1.12941e-08 1.55914e-11 4.35667e-09) (1.42744e-08 -1.9456e-11 5.85195e-09) (1.74915e-08 -5.50494e-11 6.7274e-09) (2.06435e-08 -9.69369e-11 6.26928e-09) (2.04965e-08 -1.22402e-10 3.06662e-09) (1.35397e-08 -8.8858e-12 -1.13997e-09) (3.82693e-09 8.11148e-11 -1.47916e-09) (1.8703e-10 1.26041e-11 -1.37887e-10) (3.78377e-12 1.17573e-12 7.14857e-12) (4.64525e-11 7.22483e-12 7.54847e-11) (1.29216e-10 1.40384e-11 1.17506e-10) (2.43784e-10 1.04799e-11 1.06805e-10) (7.73037e-10 -1.28006e-11 1.17773e-10) (2.59371e-09 -9.34094e-11 2.05827e-10) (6.06059e-09 -1.82141e-10 6.17095e-10) (8.85873e-09 -1.43689e-10 1.34673e-09) (7.4154e-09 1.45274e-11 1.60558e-09) (3.08138e-09 6.93665e-11 9.9359e-10) (5.84338e-10 2.82577e-11 3.49014e-10) (7.0767e-11 6.95143e-12 1.35688e-10) (3.56896e-12 -6.66417e-13 5.36886e-11) (1.69007e-11 -1.22201e-12 6.42915e-12) (1.38935e-10 -5.36315e-12 -3.61674e-11) (8.15274e-10 1.06268e-11 -2.92506e-10) (1.75353e-09 1.07973e-10 -8.32996e-10) (1.83217e-09 3.35186e-10 -1.458e-09) (1.64641e-09 2.74334e-10 -1.32366e-09) (1.24577e-09 9.92093e-11 -6.58503e-10) (1.09619e-09 3.29294e-11 -1.88396e-10) (1.00959e-09 4.62017e-11 6.22013e-11) (8.4941e-10 6.13097e-11 1.08797e-10) (7.59376e-10 5.06899e-11 3.7242e-11) (7.68085e-10 2.40645e-11 -4.70376e-11) (7.81316e-10 -6.57052e-12 -6.72114e-11) (7.82888e-10 -2.12567e-11 -8.6166e-12) (8.40671e-10 -1.84329e-11 9.86997e-11) (1.05859e-09 -1.66862e-11 2.40902e-10) (1.60137e-09 -2.18134e-11 4.31814e-10) (2.61107e-09 -2.37084e-11 7.41449e-10) (3.92545e-09 -4.07969e-11 1.27976e-09) (5.1391e-09 -1.02791e-10 1.95265e-09) (5.97215e-09 -1.71887e-10 2.42491e-09) (6.94186e-09 -2.28825e-10 2.60194e-09) (8.75527e-09 -3.03084e-10 2.48382e-09) (1.0311e-08 -3.30959e-10 1.3011e-09) (8.30153e-09 -9.57085e-11 -9.92047e-10) (2.97113e-09 1.65581e-10 -1.5374e-09) (1.30157e-10 6.18011e-11 -2.96696e-10) (-4.10277e-11 1.05528e-11 -2.95544e-13) (-1.68766e-12 2.37032e-11 1.75433e-10) (2.81723e-10 5.34811e-11 4.2615e-10) (4.4234e-10 3.82361e-11 3.00379e-10) (6.67387e-10 -4.34085e-12 1.2844e-10) (1.52152e-09 -9.0333e-11 -3.06208e-11) (3.20949e-09 -2.01898e-10 -9.41352e-11) (4.81538e-09 -1.99418e-10 1.68695e-10) (4.69604e-09 -4.90573e-11 5.06706e-10) (2.62026e-09 6.09804e-11 4.53081e-10) (6.95918e-10 4.39987e-11 1.79174e-10) (7.68091e-11 8.91871e-12 3.75789e-11) (5.93242e-12 4.30338e-13 5.75598e-12) (1.34039e-12 -5.39634e-13 4.66238e-14) (1.14366e-11 -4.82664e-12 -1.04047e-11) (2.05722e-10 -1.17191e-11 -1.2739e-10) (1.13166e-09 9.54178e-11 -7.10272e-10) (7.60363e-10 2.91748e-10 -1.0701e-09) (7.14934e-10 2.45939e-10 -1.04476e-09) (3.01095e-10 4.53298e-11 -3.23489e-10) (1.276e-10 5.16948e-12 -3.68138e-11) (1.14192e-10 1.28391e-11 3.78006e-11) (1.09133e-10 2.05494e-11 6.10954e-11) (9.60455e-11 1.38298e-11 3.4626e-11) (9.82565e-11 3.59974e-12 3.97192e-12) (8.932e-11 -6.07946e-12 -1.00223e-11) (6.2611e-11 -8.32819e-12 -1.69425e-12) (5.27235e-11 -5.92143e-12 1.3593e-11) (7.90033e-11 -4.83228e-12 4.07014e-11) (1.63163e-10 -7.15497e-12 8.46542e-11) (3.65743e-10 -1.61309e-11 1.58409e-10) (6.86165e-10 -3.38645e-11 3.03544e-10) (8.94124e-10 -6.48707e-11 4.7752e-10) (8.27257e-10 -7.93052e-11 5.31219e-10) (7.52566e-10 -8.0524e-11 4.92763e-10) (9.9833e-10 -1.00978e-10 4.90392e-10) (1.48057e-09 -1.14052e-10 3.12367e-10) (1.2645e-09 -9.11729e-12 -2.77504e-10) (3.84263e-10 1.14218e-10 -6.45839e-10) (-5.94961e-10 2.40946e-10 -9.22644e-10) (-1.5745e-09 2.20497e-10 -3.68768e-10) (-4.7498e-10 6.1484e-11 3.6717e-10) (5.80056e-11 5.41572e-11 5.28012e-10) (1.72785e-10 2.52927e-11 2.54263e-10) (8.563e-11 -4.46422e-12 2.65279e-11) (1.87864e-10 -3.50365e-11 -6.96336e-11) (5.31327e-10 -9.44437e-11 -2.23402e-10) (8.92115e-10 -1.00615e-10 -2.29298e-10) (8.26816e-10 -2.99928e-11 -6.98078e-11) (3.25827e-10 1.76359e-11 1.779e-11) (1.68666e-11 4.79833e-12 3.9843e-12) (-2.00598e-11 5.11466e-12 2.12214e-12) (-1.79358e-10 8.98529e-12 -2.16804e-12) (-2.54443e-10 -1.96676e-11 -4.06582e-11) (-1.77481e-10 -4.05111e-11 -6.89105e-11) (-4.09951e-11 -1.5526e-11 -4.59863e-11) (1.06398e-10 2.44312e-11 -2.06968e-10) (2.08672e-10 2.40459e-10 -8.14301e-10) (6.31118e-10 3.97774e-10 -1.53822e-09) (2.27657e-10 6.70693e-11 -5.14654e-10) (3.11001e-11 2.60007e-12 -3.34091e-11) (1.31208e-11 4.33113e-12 7.74401e-12) (2.23166e-11 1.20033e-11 3.23681e-11) (1.96154e-11 5.74646e-12 1.97559e-11) (1.63918e-11 -3.72678e-13 3.89246e-12) (1.19401e-11 -3.3396e-12 -2.44322e-12) (2.699e-12 -1.94793e-12 -6.97061e-13) (2.67013e-13 -7.52334e-13 7.42712e-13) (5.18791e-13 -1.31986e-12 6.5528e-12) (6.91339e-12 -1.63298e-12 1.63039e-11) (4.02869e-11 -6.00344e-12 3.49814e-11) (1.56221e-10 -2.29799e-11 9.63275e-11) (2.6141e-10 -4.68223e-11 1.93234e-10) (1.99459e-10 -4.95848e-11 2.22567e-10) (1.26258e-10 -4.52096e-11 2.04524e-10) (2.16571e-10 -6.59631e-11 2.61239e-10) (6.04461e-10 -1.03573e-10 3.4638e-10) (6.52037e-10 -3.18735e-12 4.15747e-11) (1.37586e-10 1.07972e-10 -3.00625e-10) (-1.67885e-09 6.29152e-10 -1.83057e-09) (-6.02675e-09 8.29774e-10 -1.97084e-09) (-2.50108e-09 1.82503e-10 6.53481e-10) (-2.35533e-10 5.95799e-11 8.40351e-10) (1.26228e-10 2.50434e-11 4.41385e-10) (1.63734e-11 -3.36327e-12 1.82827e-11) (2.23806e-11 -1.59267e-11 -3.06284e-11) (1.33831e-10 -6.74607e-11 -1.86559e-10) (2.87837e-10 -7.82457e-11 -2.45997e-10) (2.83102e-10 -3.13724e-11 -1.28322e-10) (9.89695e-11 4.85254e-12 -1.84152e-11) (3.84313e-13 8.65192e-13 -3.89962e-14) (-1.46968e-10 2.40805e-11 -5.57231e-12) (-8.78036e-10 4.05926e-11 -6.10107e-11) (-1.3999e-09 -5.3273e-11 -1.81462e-10) (-1.27927e-09 -1.7656e-10 -2.56576e-10) (-9.31887e-10 -1.69386e-10 -2.08916e-10) (-2.04713e-10 1.21471e-13 -1.65499e-10) (-3.49861e-10 1.42206e-10 -4.97221e-10) (4.29178e-10 5.13434e-10 -1.86586e-09) (5.13103e-10 1.74783e-10 -1.23899e-09) (1.12603e-10 1.76037e-11 -1.60503e-10) (2.40234e-11 1.02956e-11 1.18403e-12) (4.19731e-11 2.41144e-11 3.89035e-11) (5.74499e-11 1.53691e-11 3.98278e-11) (7.69421e-11 -2.25683e-12 1.40843e-11) (7.24177e-11 -1.57025e-11 -1.06063e-11) (2.19665e-11 -1.06177e-11 -7.01873e-12) (9.62225e-13 -1.61619e-12 -3.79118e-14) (-1.13049e-12 -1.22582e-12 2.35896e-12) (-2.36643e-12 -7.02208e-13 5.26521e-12) (2.15356e-13 -5.19395e-13 1.82414e-12) (9.95727e-12 -4.90915e-12 6.81234e-12) (4.07092e-11 -2.05445e-11 3.69479e-11) (3.31844e-11 -2.90315e-11 7.70842e-11) (1.28752e-11 -4.23494e-11 1.37161e-10) (9.40003e-11 -9.15683e-11 2.83683e-10) (5.61926e-10 -1.95156e-10 5.67207e-10) (9.24662e-10 -6.52878e-11 3.98045e-10) (2.67896e-10 1.25672e-10 -1.0986e-10) (-7.50263e-10 6.42859e-10 -1.12537e-09) (-6.9831e-09 1.49301e-09 -3.13901e-09) (-4.93815e-09 4.24589e-10 1.39887e-10) (-5.15034e-10 5.70952e-11 9.53645e-10) (2.79276e-10 2.80629e-11 9.25335e-10) (8.62551e-11 -1.40861e-11 1.116e-10) (1.77668e-11 -1.42514e-11 -1.50467e-11) (8.09709e-11 -7.16448e-11 -1.74412e-10) (1.82349e-10 -8.67966e-11 -2.81491e-10) (2.04872e-10 -4.05409e-11 -1.78782e-10) (1.29769e-10 -6.88907e-13 -5.0121e-11) (2.14613e-11 5.43043e-12 -2.03683e-12) (-7.76042e-12 3.80296e-12 -3.36568e-13) (-3.40532e-10 2.82211e-11 -3.83358e-11) (-1.10472e-09 -3.432e-11 -1.91326e-10) (-1.57132e-09 -2.15277e-10 -3.23904e-10) (-2.1846e-09 -4.09817e-10 -2.67599e-10) (-2.00899e-09 -1.89667e-10 -2.83981e-10) (-3.07087e-09 1.30209e-10 -8.09028e-10) (-3.87377e-10 3.21913e-10 -1.38093e-09) (5.7986e-10 2.47236e-10 -2.01958e-09) (3.69391e-10 6.50185e-11 -5.72915e-10) (9.43746e-11 3.88468e-11 -3.46119e-11) (9.31139e-11 5.13465e-11 4.73677e-11) (1.39515e-10 3.65937e-11 7.59254e-11) (2.3074e-10 -6.98756e-12 4.89419e-11) (2.85023e-10 -5.06835e-11 -1.01615e-11) (1.33949e-10 -4.10464e-11 -2.39723e-11) (1.39055e-11 -9.21212e-12 -3.42856e-12) (9.26778e-14 -1.01461e-12 4.96224e-13) (-1.96977e-12 -3.82246e-13 1.64678e-12) (-7.28478e-12 -5.66758e-14 -1.31534e-13) (-1.11562e-11 -2.93592e-12 -6.10623e-12) (-7.68802e-12 -5.60955e-12 -2.32435e-12) (-2.16365e-11 -1.61085e-11 1.80475e-11) (-6.25975e-11 -5.61588e-11 1.38402e-10) (6.23464e-11 -1.77794e-10 4.87992e-10) (6.78224e-10 -3.83596e-10 1.03758e-09) (7.65219e-10 -1.44223e-10 6.78542e-10) (8.33988e-11 5.98103e-11 1.40235e-11) (-4.75673e-10 6.26507e-10 -6.77925e-10) (-5.44722e-09 1.9395e-09 -3.07516e-09) (-5.92634e-09 8.45103e-10 -7.91958e-10) (-7.20093e-10 5.79061e-11 7.55672e-10) (3.35277e-10 -1.68194e-11 1.16149e-09) (2.98288e-10 -5.70448e-11 3.56995e-10) (6.75139e-11 -3.48719e-11 4.74248e-13) (1.04912e-10 -7.4705e-11 -1.21525e-10) (1.68469e-10 -8.05845e-11 -2.18151e-10) (1.71453e-10 -3.45266e-11 -1.50267e-10) (1.34942e-10 6.59533e-13 -5.03205e-11) (8.20942e-11 1.28195e-11 9.64972e-13) (7.52037e-12 3.76865e-12 2.3085e-12) (-2.24407e-11 4.88425e-12 -3.05626e-12) (-3.87983e-10 -9.10276e-12 -1.03356e-10) (-1.09329e-09 -1.51479e-10 -3.17589e-10) (-2.55637e-09 -4.70614e-10 -3.51901e-10) (-5.73017e-09 -6.56101e-10 -1.12783e-10) (-1.01253e-08 -2.93509e-10 -6.56218e-10) (-2.25945e-09 1.68827e-10 -1.6498e-09) (-1.61185e-10 1.27707e-10 -2.07331e-09) (4.77009e-10 8.76121e-11 -1.04108e-09) (2.91939e-10 1.16624e-10 -1.78066e-10) (2.39043e-10 1.1904e-10 3.82235e-11) (2.65978e-10 7.57003e-11 1.09705e-10) (2.9594e-10 -4.33355e-12 9.80638e-11) (2.31851e-10 -5.34527e-11 5.42829e-11) (1.12095e-10 -4.45472e-11 1.65592e-11) (7.33055e-11 -3.3746e-11 -4.65042e-12) (8.0029e-11 -2.63968e-11 -1.77515e-11) (2.53753e-11 -1.67538e-12 -8.8911e-12) (-2.94103e-12 2.05985e-12 -4.48017e-12) (-1.15545e-10 1.14127e-11 -7.26791e-11) (-2.66578e-10 -2.15697e-11 -1.48583e-10) (-2.61246e-10 -5.69249e-11 -4.24171e-11) (-1.90099e-10 -9.35285e-11 1.47788e-10) (2.95512e-11 -3.1661e-10 7.15398e-10) (8.4475e-10 -6.65254e-10 1.62558e-09) (5.95405e-10 -2.06588e-10 9.20606e-10) (-1.47818e-11 5.51009e-11 5.75914e-11) (-1.35148e-09 1.00297e-09 -6.5978e-10) (-5.35214e-09 2.44896e-09 -2.9451e-09) (-4.49506e-09 1.13881e-09 -1.19716e-09) (-5.0901e-10 7.12745e-11 3.48736e-10) (2.20579e-10 -6.16291e-11 7.98495e-10) (4.47274e-10 -1.3714e-10 4.90215e-10) (2.50289e-10 -1.14788e-10 6.29398e-11) (2.67958e-10 -1.30144e-10 -8.73824e-11) (3.16315e-10 -9.58432e-11 -1.39847e-10) (3.02168e-10 -2.21279e-11 -7.62979e-11) (2.88056e-10 3.2237e-11 1.42805e-11) (2.66025e-10 5.7325e-11 8.68534e-11) (1.19844e-10 3.39034e-11 6.41723e-11) (2.399e-12 1.89971e-12 2.89326e-12) (-5.5837e-11 -1.53354e-12 -2.04726e-11) (-4.84858e-10 -7.1621e-11 -2.18201e-10) (-1.866e-09 -3.14803e-10 -4.18704e-10) (-7.70582e-09 -8.56203e-10 -1.97943e-11) (-1.53422e-08 -7.3259e-10 -1.13917e-10) (-6.9361e-09 -2.74605e-10 -2.40423e-09) (-1.64722e-09 -1.92099e-10 -2.48209e-09) (-5.89511e-11 -2.95258e-11 -1.03213e-09) (2.44295e-10 1.13099e-10 -2.29964e-10) (4.93309e-10 2.40683e-10 -1.7982e-11) (4.40399e-10 1.48547e-10 1.26754e-10) (2.16948e-10 1.87849e-11 1.26368e-10) (7.59241e-11 -2.56698e-11 1.00212e-10) (7.50136e-11 -5.58463e-11 8.65997e-11) (4.93031e-10 -1.96364e-10 1.77404e-12) (1.87886e-09 -3.64246e-10 -6.18939e-10) (1.30387e-09 1.19911e-11 -6.32752e-10) (9.67514e-11 5.40151e-11 -1.07139e-10) (-1.34935e-10 6.63298e-11 -1.0674e-10) (-6.8691e-10 7.15487e-11 -3.25827e-10) (-8.1117e-10 -6.60701e-11 -2.09035e-10) (-3.89648e-10 -1.54252e-10 1.55487e-10) (-5.16842e-11 -4.5904e-10 7.67968e-10) (7.10366e-10 -8.92108e-10 1.72087e-09) (3.16117e-10 -2.2343e-10 9.18456e-10) (-2.55536e-10 2.07231e-10 2.78981e-10) (-3.5912e-09 1.93738e-09 -4.53722e-10) (-7.36701e-09 3.23712e-09 -2.79972e-09) (-3.36245e-09 1.21986e-09 -1.1974e-09) (-1.82031e-10 5.07596e-11 6.08916e-11) (9.9692e-11 -5.31199e-11 2.64015e-10) (3.2328e-10 -1.73661e-10 2.90276e-10) (3.2101e-10 -2.0277e-10 6.44011e-11) (4.25841e-10 -2.23357e-10 -7.53056e-11) (6.51562e-10 -1.80629e-10 -6.68245e-11) (8.9794e-10 -2.25867e-11 1.25403e-10) (1.05908e-09 1.96979e-10 4.10774e-10) (1.0093e-09 3.27229e-10 6.17967e-10) (6.14964e-10 2.3551e-10 5.06183e-10) (1.00953e-10 4.76968e-11 1.24265e-10) (-7.14964e-12 4.70863e-13 1.93026e-12) (-2.76474e-10 -4.05385e-11 -1.33458e-10) (-1.24049e-09 -1.70493e-10 -4.20892e-10) (-6.41232e-09 -5.61572e-10 -1.86492e-10) (-1.39139e-08 -6.10421e-10 4.43638e-11) (-1.07258e-08 -8.10468e-10 -2.57828e-09) (-3.98479e-09 -7.64534e-10 -3.36737e-09) (-1.3403e-09 -3.05694e-10 -1.51283e-09) (-3.97908e-11 1.67765e-11 -6.00134e-11) (1.60926e-10 1.23372e-10 1.6796e-11) (4.35216e-10 2.25028e-10 1.7545e-10) (1.94051e-10 7.76396e-11 2.29368e-10) (1.32368e-10 -3.6716e-11 2.69461e-10) (5.29046e-10 -2.55638e-10 2.61836e-10) (3.42464e-09 -1.13466e-09 -5.78747e-10) (7.76466e-09 -1.44403e-09 -3.44378e-09) (4.41809e-09 1.50434e-10 -2.80294e-09) (5.25516e-10 3.05425e-10 -5.53241e-10) (-1.16682e-10 1.57531e-10 -1.24758e-10) (-7.44551e-10 2.37568e-10 -2.31154e-10) (-9.38576e-10 3.01398e-11 -1.57149e-10) (-4.10575e-10 -1.69485e-10 1.46428e-10) (-9.85932e-11 -5.77157e-10 6.82334e-10) (3.44292e-10 -9.80175e-10 1.3389e-09) (-4.39125e-13 -1.96357e-10 7.08683e-10) (-8.13125e-10 5.11531e-10 6.68094e-10) (-5.44548e-09 2.92399e-09 2.5641e-10) (-9.08491e-09 3.87046e-09 -2.16271e-09) (-3.38831e-09 1.29707e-09 -1.33183e-09) (-1.28224e-10 4.16904e-11 -4.34758e-11) (1.56729e-11 -1.52254e-11 1.64551e-11) (1.25838e-10 -1.15706e-10 4.84228e-11) (2.4698e-10 -2.31081e-10 -3.33968e-11) (5.7705e-10 -3.82222e-10 -1.14418e-10) (1.14621e-09 -4.11224e-10 3.14959e-11) (1.72738e-09 -1.2442e-10 4.79726e-10) (2.06075e-09 4.06249e-10 1.04858e-09) (1.96847e-09 8.31115e-10 1.47644e-09) (1.37715e-09 7.92011e-10 1.46566e-09) (4.11407e-10 3.16311e-10 7.09158e-10) (-1.62519e-11 2.49625e-11 7.24283e-11) (-2.16638e-10 -1.75209e-11 -4.74148e-11) (-9.71113e-10 -1.06241e-10 -3.76191e-10) (-4.12518e-09 -2.31909e-10 -3.42661e-10) (-9.48131e-09 -2.29954e-10 -1.2961e-10) (-1.00477e-08 -9.64654e-10 -2.0578e-09) (-3.84277e-09 -9.84072e-10 -2.89363e-09) (-2.1444e-09 -5.41106e-10 -1.76794e-09) (-9.60122e-10 -1.4012e-11 -1.61069e-10) (-2.12466e-10 1.17193e-10 1.88257e-10) (9.43098e-11 1.63694e-10 2.90132e-10) (3.7608e-10 1.05662e-10 3.59239e-10) (7.70537e-10 -1.25284e-10 3.6932e-10) (2.15652e-09 -7.02081e-10 1.70428e-10) (6.01676e-09 -1.79121e-09 -1.54082e-09) (1.00009e-08 -1.7657e-09 -5.27497e-09) (5.26075e-09 1.98719e-10 -4.25993e-09) (6.62336e-10 4.72455e-10 -9.668e-10) (-1.14189e-10 2.63607e-10 -1.61835e-10) (-4.70869e-10 3.14413e-10 -6.41445e-11) (-4.34525e-10 9.64264e-11 1.70634e-11) (-1.71577e-10 -1.04412e-10 1.10446e-10) (-4.9694e-11 -6.351e-10 5.20791e-10) (1.84245e-11 -9.3404e-10 8.5082e-10) (-2.65702e-10 -1.842e-10 5.58689e-10) (-1.54087e-09 9.09896e-10 1.06013e-09) (-5.41462e-09 3.40122e-09 8.91563e-10) (-7.47446e-09 3.52163e-09 -1.27015e-09) (-3.30608e-09 1.14265e-09 -1.46118e-09) (-3.1524e-10 4.12485e-11 -2.53909e-10) (-9.38114e-13 -2.18614e-11 -1.871e-11) (8.13213e-11 -1.33416e-10 -3.2001e-11) (4.13924e-10 -4.50779e-10 -1.04987e-10) (1.08491e-09 -8.00326e-10 -1.4801e-10) (1.56894e-09 -6.82678e-10 1.38267e-10) (1.95622e-09 -2.10748e-10 6.91474e-10) (2.52863e-09 5.60454e-10 1.41789e-09) (2.67179e-09 1.34552e-09 1.99255e-09) (1.90503e-09 1.43749e-09 2.0906e-09) (6.57624e-10 7.92346e-10 1.4122e-09) (-4.32571e-11 1.58114e-10 3.69444e-10) (-1.42619e-10 6.6354e-12 2.93e-11) (-5.06848e-10 -4.97883e-11 -1.99051e-10) (-2.12168e-09 -4.54925e-11 -3.33974e-10) (-4.29342e-09 3.6884e-11 -1.72122e-10) (-5.69593e-09 -8.23412e-10 -1.17091e-09) (-1.89836e-09 -8.46785e-10 -1.60275e-09) (-8.53029e-10 -3.84083e-10 -1.09195e-09) (-6.42578e-10 -4.36698e-11 -2.63082e-10) (-4.77532e-10 6.94765e-11 1.4147e-10) (-1.12341e-10 5.74324e-11 1.91025e-10) (1.12289e-10 1.97698e-11 1.90494e-10) (6.45934e-10 -1.12182e-10 2.89348e-10) (1.80322e-09 -4.90668e-10 1.29448e-10) (3.99881e-09 -1.02463e-09 -9.82927e-10) (6.41327e-09 -9.39581e-10 -3.68953e-09) (3.56045e-09 1.62358e-10 -3.63279e-09) (3.56006e-10 3.94691e-10 -1.0633e-09) (-1.77688e-10 2.7909e-10 -2.12579e-10) (-2.16915e-10 2.45699e-10 1.26761e-11) (-4.84055e-11 4.8295e-11 4.4224e-11) (4.66861e-12 -5.22157e-11 6.53865e-11) (8.76775e-11 -6.01766e-10 3.11661e-10) (-1.5882e-10 -8.12889e-10 4.77234e-10) (-5.82039e-10 -2.0555e-10 5.52155e-10) (-2.10586e-09 1.22335e-09 1.27098e-09) (-3.76168e-09 2.99753e-09 1.04197e-09) (-3.44205e-09 2.09475e-09 -4.2737e-10) (-1.9275e-09 5.97691e-10 -9.04362e-10) (-5.51759e-10 -6.12419e-11 -3.91806e-10) (-7.65812e-11 -1.14705e-10 -8.52595e-11) (1.04081e-10 -2.79602e-10 -9.92321e-11) (7.11449e-10 -7.63372e-10 -3.45032e-10) (1.24936e-09 -9.63069e-10 -3.30633e-10) (1.0256e-09 -5.84712e-10 1.53061e-10) (9.18507e-10 -1.84578e-10 6.1763e-10) (1.48117e-09 4.6815e-10 1.3718e-09) (2.51765e-09 1.70645e-09 2.26473e-09) (2.49987e-09 2.27991e-09 2.47071e-09) (9.85687e-10 1.34226e-09 1.65825e-09) (-1.20898e-11 3.06675e-10 5.18476e-10) (-1.11006e-10 1.9096e-11 6.08365e-11) (-2.219e-10 -2.41964e-11 -7.63645e-11) (-7.84637e-10 2.53188e-11 -1.79247e-10) (-8.83032e-10 3.39296e-11 -7.8912e-11) (-1.33482e-09 -4.02357e-10 -3.70206e-10) (-6.94347e-10 -6.71146e-10 -7.67104e-10) (-2.74166e-10 -3.1775e-10 -5.84989e-10) (-1.32166e-10 -2.14748e-11 -1.42696e-10) (-4.84703e-11 1.14484e-11 -5.14014e-12) (-1.01977e-11 5.29565e-12 1.74281e-11) (2.27084e-11 -2.74248e-12 4.99067e-11) (9.83057e-11 -3.49974e-11 8.47151e-11) (2.30157e-10 -8.70114e-11 6.79765e-11) (6.81737e-10 -1.72133e-10 -1.48398e-10) (1.94536e-09 -1.65022e-10 -1.29312e-09) (1.78502e-09 1.93415e-10 -2.2723e-09) (1.95396e-10 3.3165e-10 -1.21206e-09) (-2.33682e-10 2.20797e-10 -3.27671e-10) (-8.85218e-11 9.23034e-11 -4.81663e-12) (8.41787e-12 1.38591e-11 2.60442e-11) (1.24413e-10 -1.01651e-10 8.1965e-11) (1.73371e-10 -4.82667e-10 1.46061e-10) (-1.60867e-10 -5.5258e-10 2.86461e-10) (-7.99924e-10 -1.61875e-10 6.13845e-10) (-2.50993e-09 1.38116e-09 1.32245e-09) (-3.0701e-09 2.55212e-09 8.30156e-10) (-2.00568e-09 1.35197e-09 -1.98567e-10) (-1.43607e-09 3.36167e-10 -4.97318e-10) (-8.89945e-10 -1.77688e-10 -3.85397e-10) (-2.23316e-10 -2.59929e-10 -2.51562e-10) (2.56768e-10 -5.62776e-10 -5.7409e-10) (1.28217e-09 -1.16237e-09 -9.40147e-10) (1.47069e-09 -1.08769e-09 -3.63868e-10) (6.16716e-10 -4.46653e-10 1.7601e-10) (1.50052e-10 -9.61077e-11 3.09676e-10) (9.99473e-11 2.42177e-10 8.45584e-10) (6.76334e-10 1.3993e-09 1.97723e-09) (1.97251e-09 2.93351e-09 2.95199e-09) (1.51403e-09 2.28031e-09 2.16085e-09) (1.58547e-10 5.05932e-10 5.61519e-10) (-5.22721e-11 2.16531e-11 3.74512e-11) (-1.59778e-10 -2.75176e-11 -5.20486e-11) (-2.81077e-10 8.85632e-12 -9.06495e-11) (-9.30669e-11 -1.21067e-11 -3.33795e-11) (-1.10304e-10 -1.17643e-10 -8.10635e-11) (-2.15335e-10 -4.5484e-10 -3.43942e-10) (-2.01806e-10 -2.83889e-10 -3.09867e-10) (-7.05875e-11 -3.44069e-11 -8.26652e-11) (-2.37523e-12 -2.56535e-13 -5.71771e-12) (1.25805e-11 -6.21773e-13 6.46751e-13) (6.93022e-11 -3.01482e-12 3.68967e-11) (4.68537e-11 -1.96159e-12 6.09399e-11) (1.5145e-12 -1.08141e-12 3.51602e-11) (5.20987e-13 -5.28931e-14 1.30387e-12) (1.44989e-10 1.49054e-11 -1.43513e-10) (7.35177e-10 1.51781e-10 -1.11934e-09) (2.9994e-10 2.60694e-10 -1.32475e-09) (-1.54162e-10 1.56709e-10 -5.88612e-10) (-5.36599e-11 2.98616e-11 -7.7884e-11) (1.41557e-12 -1.28103e-12 -6.15489e-13) (8.23256e-11 -1.04569e-10 1.61883e-11) (1.03455e-10 -3.18604e-10 9.40142e-11) (-9.55966e-11 -3.29498e-10 2.7397e-10) (-7.20315e-10 -4.14706e-11 6.74773e-10) (-3.02683e-09 1.58766e-09 1.34138e-09) (-4.46259e-09 2.982e-09 6.16859e-10) (-3.07663e-09 1.72858e-09 -5.1809e-10) (-1.8253e-09 4.48309e-10 -8.7832e-10) (-8.48121e-10 -1.6743e-10 -8.9155e-10) (-3.64475e-11 -5.23785e-10 -8.88661e-10) (1.12385e-09 -1.21859e-09 -9.3998e-10) (2.66355e-09 -1.89379e-09 -4.50254e-10) (2.38023e-09 -1.3824e-09 5.69733e-11) (5.71493e-10 -3.22354e-10 8.12455e-11) (-6.69645e-12 -8.73029e-12 2.6365e-11) (-6.97042e-10 2.54026e-10 5.91696e-10) (-1.30231e-09 1.36124e-09 1.90049e-09) (2.20049e-11 2.89741e-09 3.10308e-09) (1.49431e-09 3.21803e-09 3.06381e-09) (6.09341e-10 1.08412e-09 1.04188e-09) (-1.5339e-12 3.81104e-11 4.22047e-11) (-7.9465e-11 -1.89427e-11 -2.58129e-11) (-1.53518e-10 -2.48208e-11 -7.1969e-11) (-1.53171e-11 -2.96848e-11 -2.60881e-11) (9.13969e-12 -1.04179e-10 -5.59386e-11) (-3.22593e-11 -2.30277e-10 -1.21151e-10) (-1.3925e-10 -1.42685e-10 -1.03043e-10) (-1.35626e-10 -3.96884e-11 -6.3517e-11) (-2.62395e-11 -8.83425e-12 -2.46373e-11) (1.41786e-11 -1.12132e-11 -1.75995e-11) (9.82455e-11 -1.64231e-11 -4.56455e-12) (1.21232e-10 2.3027e-11 7.4611e-11) (2.02386e-11 5.4256e-11 1.23837e-10) (-4.67823e-11 4.70693e-11 9.48425e-11) (-3.55356e-13 2.88981e-12 -1.09777e-13) (1.38777e-10 4.80174e-11 -2.65088e-10) (2.3607e-10 1.20208e-10 -9.88275e-10) (-4.00134e-11 8.59294e-11 -9.82929e-10) (-8.1308e-11 -1.79053e-11 -4.31148e-10) (-1.26893e-11 -5.79555e-11 -1.06082e-10) (9.05716e-12 -1.06647e-10 -3.20091e-11) (1.67459e-11 -2.06833e-10 7.1728e-11) (-3.79397e-11 -2.09108e-10 2.8746e-10) (-4.49815e-10 8.20509e-11 6.27953e-10) (-3.39505e-09 1.96362e-09 1.31569e-09) (-8.57001e-09 4.87473e-09 -6.04937e-11) (-6.43751e-09 3.07918e-09 -2.41266e-09) (-2.0023e-09 4.5569e-10 -2.08668e-09) (-1.10874e-10 -3.90238e-10 -9.6386e-10) (9.9018e-10 -1.08838e-09 -4.64097e-10) (3.51445e-09 -2.54843e-09 7.45548e-10) (4.78584e-09 -2.69489e-09 1.38616e-09) (3.15899e-09 -1.38579e-09 2.73834e-10) (8.96924e-10 -2.69918e-10 -2.95181e-10) (-3.90591e-12 9.48493e-12 -6.39523e-11) (-1.59605e-09 4.57516e-10 1.04072e-11) (-5.33258e-09 2.06341e-09 2.01741e-09) (-3.018e-09 3.0513e-09 3.35524e-09) (1.82672e-10 3.24515e-09 3.35327e-09) (1.06911e-09 1.7875e-09 1.84207e-09) (1.69922e-10 1.91691e-10 2.20413e-10) (-1.16083e-12 -9.58184e-13 -3.94005e-13) (-3.87783e-11 -3.08601e-11 -3.19855e-11) (2.15888e-11 -8.31659e-11 -3.79088e-11) (6.13747e-11 -1.68441e-10 -6.45951e-11) (1.6542e-11 -1.52588e-10 -5.67751e-11) (-3.79937e-11 -4.81673e-11 -2.02998e-11) (-7.17706e-11 -1.31123e-11 -1.16226e-11) (-3.76068e-11 -5.72919e-12 -1.48464e-11) (-2.58918e-12 -1.32023e-11 -2.17041e-11) (4.20132e-11 -2.06429e-11 -2.81282e-11) (1.06929e-10 1.1652e-11 2.33189e-11) (1.21257e-10 9.7671e-11 1.58339e-10) (1.63471e-11 1.21465e-10 2.13561e-10) (-3.72007e-12 2.01599e-11 3.03885e-11) (9.26387e-12 4.8226e-12 -2.78408e-11) (7.68945e-12 1.35445e-11 -4.48309e-10) (-2.7017e-10 3.25146e-11 -9.54456e-10) (-3.60577e-10 -2.83935e-11 -8.7231e-10) (-1.62387e-10 -1.12716e-10 -3.95842e-10) (-3.46088e-11 -1.11627e-10 -8.55643e-11) (1.18962e-11 -1.55217e-10 4.9899e-11) (4.57435e-11 -1.63455e-10 2.64708e-10) (-1.31107e-10 1.04384e-10 4.05184e-10) (-2.14101e-09 1.7187e-09 9.44576e-10) (-8.35864e-09 5.1836e-09 -2.77036e-10) (-6.71937e-09 2.97118e-09 -2.57337e-09) (-9.1727e-10 1.88967e-11 -1.07179e-09) (2.97111e-10 -4.58923e-10 -2.50416e-10) (2.79733e-09 -2.26585e-09 9.96713e-10) (5.49633e-09 -3.6298e-09 3.00244e-09) (4.45842e-09 -2.60871e-09 1.94848e-09) (2.32324e-09 -1.03435e-09 2.30093e-11) (1.49249e-09 -2.12537e-10 -1.00748e-09) (3.86061e-10 2.97825e-10 -1.1093e-09) (-1.50361e-09 8.07552e-10 -1.00607e-09) (-9.1108e-09 2.8636e-09 3.74406e-10) (-9.26148e-09 3.94591e-09 3.74901e-09) (-2.05499e-09 2.76348e-09 3.11905e-09) (6.33292e-10 1.75755e-09 2.04171e-09) (5.805e-10 4.73803e-10 6.33666e-10) (5.08414e-11 2.87132e-12 2.90911e-11) (8.29207e-12 -2.60962e-11 -9.67479e-12) (1.15764e-10 -1.62092e-10 -1.7693e-11) (1.35333e-10 -2.30421e-10 -4.09601e-11) (6.92274e-11 -1.54975e-10 -2.84904e-11) (3.29138e-12 -3.12986e-11 -2.20189e-12) (-3.91322e-12 -3.48603e-12 1.72607e-12) (-4.35884e-12 -1.49377e-12 7.26533e-13) (-1.75168e-12 -4.21112e-12 -4.2102e-12) (1.36185e-11 -1.55974e-11 -2.15192e-11) (4.66528e-11 -5.6445e-12 -1.2012e-11) (1.29007e-10 5.02593e-11 6.3675e-11) (1.72255e-10 1.34532e-10 2.10732e-10) (6.77803e-11 5.19885e-11 9.90176e-11) (9.14151e-12 1.88928e-12 -3.17513e-12) (-1.44034e-11 3.69317e-12 -1.76838e-10) (-5.58426e-10 8.23607e-11 -8.06095e-10) (-1.31756e-09 7.54609e-11 -1.24843e-09) (-7.04581e-10 -1.15594e-10 -6.4417e-10) (-7.6336e-11 -9.56406e-11 -8.04324e-11) (3.86234e-11 -1.30227e-10 4.82677e-11) (1.02994e-10 -1.27665e-10 1.90159e-10) (1.50436e-13 5.3978e-11 1.33156e-10) (-6.26353e-10 8.8869e-10 2.68502e-10) (-3.06343e-09 2.71017e-09 -1.76324e-10) (-2.50992e-09 1.27458e-09 -6.73226e-10) (-1.7394e-10 -4.49122e-11 -9.77684e-11) (4.35709e-10 -6.24458e-10 1.16195e-10) (3.09291e-09 -2.66702e-09 1.4015e-09) (3.90639e-09 -3.03746e-09 2.09728e-09) (1.77268e-09 -1.45864e-09 9.40002e-10) (4.57532e-10 -3.39807e-10 2.69081e-11) (5.75795e-10 -5.65114e-11 -5.39214e-10) (1.08011e-09 8.13751e-10 -2.05297e-09) (-6.09814e-10 1.55607e-09 -2.02306e-09) (-7.27781e-09 3.52355e-09 -1.78644e-09) (-1.53653e-08 5.00644e-09 2.00177e-09) (-6.15228e-09 2.98438e-09 3.21838e-09) (-4.32501e-10 1.1751e-09 1.56369e-09) (5.57949e-10 4.88562e-10 8.19627e-10) (3.22711e-10 2.88704e-11 2.10214e-10) (1.1863e-10 -7.85971e-11 2.54473e-11) (4.12762e-10 -2.68778e-10 1.22328e-10) (3.25945e-10 -3.21246e-10 6.22245e-11) (1.88431e-10 -2.52689e-10 3.13059e-11) (5.75693e-11 -1.00358e-10 1.80287e-11) (8.62751e-12 -2.19136e-11 7.60768e-12) (4.70289e-13 -4.74643e-12 1.51716e-12) (4.37302e-13 -4.12776e-12 -1.90916e-12) (7.79266e-12 -1.16684e-11 -1.49896e-11) (2.90651e-11 -1.05714e-11 -2.33307e-11) (7.63288e-11 1.36795e-11 -6.54357e-14) (1.86073e-10 9.22987e-11 1.06203e-10) (1.54196e-10 8.58848e-11 1.36462e-10) (2.18419e-11 5.8678e-12 8.01398e-12) (-2.52552e-13 4.30387e-13 -5.44696e-11) (-2.86915e-10 8.40438e-11 -4.13385e-10) (-1.02322e-09 2.05437e-10 -7.23971e-10) (-8.24457e-10 -1.77644e-11 -3.66403e-10) (-1.38777e-10 -9.44944e-11 -2.57084e-11) (1.04291e-11 -1.13021e-10 4.88754e-11) (3.64206e-11 -7.04046e-11 7.23874e-11) (-9.35849e-12 1.17764e-11 1.84239e-11) (-2.99961e-10 4.37295e-10 -1.74217e-12) (-7.25354e-10 9.72401e-10 -2.03954e-10) (-2.46167e-10 1.98538e-10 -1.0342e-10) (-8.95071e-12 -5.32486e-11 -1.59623e-11) (4.37742e-10 -8.75825e-10 9.05743e-11) (1.21494e-09 -1.62667e-09 5.63563e-10) (1.05565e-09 -1.17186e-09 7.28644e-10) (3.57188e-10 -4.37309e-10 3.51928e-10) (4.03682e-11 -8.21011e-11 4.45157e-11) (2.34661e-11 -1.24049e-11 -4.10348e-11) (4.56131e-10 4.88257e-10 -1.03934e-09) (3.53722e-10 2.51258e-09 -2.92848e-09) (-3.76232e-09 4.25439e-09 -2.93153e-09) (-1.44869e-08 6.25499e-09 -1.08727e-09) (-1.20771e-08 3.7954e-09 2.20176e-09) (-1.8734e-09 9.5983e-10 1.28425e-09) (9.6074e-11 2.31939e-10 5.02262e-10) (5.43049e-10 5.02078e-11 4.56317e-10) (5.30289e-10 -1.53448e-10 2.53764e-10) (1.07854e-09 -3.26843e-10 6.40599e-10) (7.78777e-10 -3.96938e-10 3.52414e-10) (4.72253e-10 -3.54547e-10 1.70077e-10) (2.09429e-10 -2.15599e-10 6.79102e-11) (6.48593e-11 -9.92251e-11 1.78536e-11) (1.86806e-11 -4.83136e-11 -5.00408e-12) (1.46528e-11 -4.31309e-11 -2.83234e-11) (3.75375e-11 -5.62154e-11 -7.36994e-11) (6.61101e-11 -3.71419e-11 -7.92822e-11) (6.67153e-11 8.16612e-12 -2.36278e-11) (1.10085e-10 8.00363e-11 5.47129e-11) (7.79631e-11 1.15368e-10 1.30163e-10) (-7.99214e-12 1.57385e-11 2.14586e-11) (-1.28543e-10 -6.72197e-13 -5.77675e-11) (-5.58001e-10 1.594e-11 -4.27092e-10) (-4.61999e-10 3.58455e-11 -3.80077e-10) (-8.84424e-11 -2.03127e-11 -6.95439e-11) (-4.13737e-12 -2.30828e-11 -1.16975e-12) (1.93706e-11 -5.03525e-11 2.77417e-11) (2.74823e-12 -1.68296e-11 2.25937e-11) (-3.62611e-11 1.26073e-11 1.77239e-11) (-2.43176e-10 1.61026e-10 -2.04342e-11) (-2.26335e-10 1.85372e-10 -9.51272e-11) (-2.29917e-11 9.18409e-12 -2.36384e-11) (1.23374e-11 -7.24451e-11 -1.37221e-11) (1.45342e-10 -3.96187e-10 8.13511e-11) (2.9943e-10 -5.30231e-10 2.27329e-10) (3.40565e-10 -3.73081e-10 2.2295e-10) (2.3008e-10 -1.82773e-10 1.26663e-10) (5.76898e-11 -5.44858e-11 3.79902e-11) (5.95917e-14 -1.89782e-12 -8.60689e-14) (-2.45512e-11 9.57014e-11 -1.65457e-10) (8.47459e-12 1.80209e-09 -2.01292e-09) (-1.62018e-09 4.98886e-09 -3.96275e-09) (-7.55769e-09 6.12509e-09 -3.00129e-09) (-1.2429e-08 4.48279e-09 -7.18072e-11) (-4.72717e-09 1.15072e-09 1.28345e-09) (-2.95979e-10 1.30804e-10 4.87583e-10) (4.18125e-10 2.75758e-11 6.54972e-10) (1.09456e-09 -1.47942e-10 8.85611e-10) (1.859e-09 -5.70493e-10 1.5569e-09) (1.20493e-09 -4.94341e-10 8.04487e-10) (5.73397e-10 -3.26853e-10 2.99141e-10) (2.37139e-10 -1.89003e-10 6.959e-11) (1.11544e-10 -1.21628e-10 -1.54103e-11) (8.94423e-11 -1.23914e-10 -6.81846e-11) (1.23864e-10 -1.76455e-10 -1.44858e-10) (1.88211e-10 -2.2362e-10 -2.23159e-10) (1.70539e-10 -1.35727e-10 -1.7894e-10) (5.18715e-11 -8.40959e-13 -3.77079e-11) (2.17683e-11 7.81608e-11 1.87396e-11) (-1.28686e-10 3.21956e-10 1.93604e-10) (-5.13045e-10 2.77575e-10 2.45333e-10) (-9.89277e-10 -2.76628e-11 1.0359e-11) (-7.74501e-10 -2.49821e-10 -3.36267e-10) (-1.55978e-10 -1.49922e-10 -2.66278e-10) (4.88106e-11 -7.34918e-11 -1.2597e-10) (5.92826e-11 -3.05192e-11 -2.82537e-11) (1.79265e-11 -4.61793e-12 8.57027e-12) (-7.27605e-13 5.01399e-12 1.80618e-11) (-5.09421e-11 3.04144e-11 3.35494e-11) (-1.93327e-10 7.99707e-11 1.4103e-11) (-2.46371e-10 5.01222e-11 -2.56858e-11) (-1.15022e-10 -3.28593e-11 -1.05669e-12) (-4.78812e-11 -1.01534e-10 3.96038e-11) (3.73142e-11 -2.21837e-10 9.74867e-11) (1.75705e-10 -2.651e-10 7.7267e-11) (3.71732e-10 -2.73695e-10 -1.73419e-12) (5.47735e-10 -2.26855e-10 -5.03028e-11) (3.32093e-10 -8.72399e-11 1.82956e-11) (2.05192e-11 -1.92262e-12 1.29391e-11) (-7.6927e-11 5.16311e-11 -8.53348e-12) (-8.56627e-10 9.42682e-10 -7.54697e-10) (-2.30716e-09 4.12175e-09 -3.34074e-09) (-4.8378e-09 6.28179e-09 -4.07987e-09) (-7.07864e-09 4.48113e-09 -1.72556e-09) (-4.43895e-09 1.32203e-09 4.9894e-10) (-7.12918e-10 5.98188e-11 6.39572e-10) (2.68855e-10 -1.33755e-10 9.71489e-10) (1.54948e-09 -4.17589e-10 1.83468e-09) (1.47522e-09 -7.74019e-10 1.62753e-09) (5.37099e-10 -2.74439e-10 4.80425e-10) (1.28822e-10 -6.91244e-11 5.38091e-11) (8.0478e-11 -5.27697e-11 -3.31959e-11) (1.66164e-10 -1.3759e-10 -1.47572e-10) (3.22532e-10 -3.10061e-10 -2.61949e-10) (4.48449e-10 -4.57455e-10 -2.47828e-10) (3.71287e-10 -3.74367e-10 -1.39051e-10) (1.17456e-10 -9.71016e-11 -4.35971e-11) (4.54618e-12 5.07233e-12 -3.24922e-12) (-1.11128e-10 2.98391e-10 4.92579e-11) (-7.38564e-10 1.06456e-09 4.24881e-10) (-1.2117e-09 7.72359e-10 5.7756e-10) (-9.49474e-10 -2.66505e-11 2.36356e-10) (-4.01266e-10 -3.05764e-10 -8.89477e-11) (-2.75372e-11 -2.79363e-10 -2.37201e-10) (1.83756e-10 -1.70147e-10 -2.51007e-10) (9.23515e-11 -1.3472e-11 -6.0039e-11) (5.45293e-12 1.04005e-11 3.21023e-12) (-6.24181e-11 7.12337e-11 4.86512e-11) (-2.17765e-10 1.2205e-10 6.12143e-11) (-2.36231e-10 6.40309e-11 -8.87592e-12) (-1.27237e-10 -1.93991e-11 -3.14979e-11) (-4.66524e-11 -6.10095e-11 -1.33702e-11) (1.90029e-12 -1.26283e-10 6.06926e-12) (7.39165e-11 -1.61325e-10 7.51822e-12) (1.7193e-10 -1.64696e-10 -3.15186e-11) (3.59457e-10 -1.89876e-10 -1.02983e-10) (5.27167e-10 -1.83932e-10 -1.00623e-10) (4.21346e-10 -9.75354e-11 3.88421e-11) (1.19251e-10 3.50644e-12 9.38584e-11) (-7.12671e-11 7.96278e-11 9.45064e-11) (-1.52016e-09 9.26896e-10 -1.18703e-10) (-5.31896e-09 3.68686e-09 -2.48458e-09) (-6.78917e-09 5.86538e-09 -4.43775e-09) (-4.73316e-09 3.7621e-09 -2.35456e-09) (-1.52695e-09 7.95458e-10 -1.35858e-10) (-1.71347e-10 5.26094e-12 2.4175e-10) (4.8286e-10 -4.09668e-10 1.24499e-09) (1.76904e-09 -1.00953e-09 2.41387e-09) (4.91546e-10 -4.98035e-10 9.06877e-10) (1.62707e-10 -1.3615e-10 1.99776e-10) (1.01954e-10 -5.83022e-11 1.71642e-12) (3.23242e-10 -1.75528e-10 -1.7835e-10) (7.49503e-10 -4.63557e-10 -4.30975e-10) (9.57025e-10 -6.4777e-10 -3.70902e-10) (6.93253e-10 -4.92865e-10 -8.59569e-11) (2.4448e-10 -1.79604e-10 5.35649e-11) (1.56565e-11 -9.94669e-12 1.95248e-11) (-5.63451e-11 7.89715e-11 4.44409e-11) (-6.12293e-10 8.94669e-10 2.01073e-10) (-1.3019e-09 1.81478e-09 4.74023e-10) (-9.33509e-10 9.32987e-10 4.25497e-10) (-1.87866e-10 4.69415e-11 7.19229e-11) (-2.00654e-11 -8.29187e-11 -4.06194e-11) (2.93895e-10 -4.66649e-10 -4.82016e-10) (6.34519e-10 -4.89673e-10 -7.2049e-10) (2.16314e-10 -8.13039e-11 -1.67357e-10) (2.88894e-12 3.7071e-12 2.51909e-12) (-1.11893e-10 8.13886e-11 1.04892e-10) (-2.51935e-10 1.03723e-10 1.34889e-10) (-6.6978e-11 1.40864e-11 1.10553e-11) (-1.48059e-12 -5.06713e-12 -1.22591e-11) (6.1404e-11 -5.30342e-11 -1.10792e-10) (9.70276e-11 -9.1732e-11 -1.99726e-10) (5.89057e-11 -9.08566e-11 -2.01986e-10) (4.63816e-11 -8.648e-11 -1.40835e-10) (7.28437e-11 -9.29516e-11 -6.1208e-11) (1.56114e-10 -1.44267e-10 2.67076e-11) (2.16765e-10 -1.5083e-10 1.62746e-10) (1.24201e-10 -3.07141e-11 2.11648e-10) (-2.03673e-11 1.28896e-10 2.30027e-10) (-5.23087e-10 5.99916e-10 2.48088e-10) (-2.69411e-09 2.01554e-09 -6.55405e-10) (-5.98431e-09 3.58049e-09 -2.98683e-09) (-4.87034e-09 2.53716e-09 -2.68618e-09) (-1.10922e-09 4.37396e-10 -4.56355e-10) (-2.94036e-11 -1.20405e-11 2.95784e-11) (2.64477e-10 -3.48511e-10 6.14467e-10) (7.46545e-10 -7.75339e-10 1.39075e-09) (1.88101e-10 -2.76491e-10 3.20833e-10) (1.79203e-10 -1.59597e-10 1.63263e-10) (2.60957e-10 -1.4795e-10 5.79863e-11) (4.67324e-10 -2.40501e-10 -5.03087e-11) (5.69135e-10 -3.32675e-10 -1.2517e-10) (3.90234e-10 -2.70716e-10 -7.62191e-11) (1.30805e-10 -1.03095e-10 3.41385e-12) (1.25059e-11 -1.13702e-11 1.50201e-11) (-3.81649e-11 2.26215e-11 6.18086e-11) (-4.37066e-10 3.11062e-10 2.92339e-10) (-1.2922e-09 1.12914e-09 5.61994e-10) (-1.38653e-09 1.60451e-09 5.49841e-10) (-4.87385e-10 7.32892e-10 2.74689e-10) (-1.67859e-11 3.81461e-11 2.26895e-11) (3.35648e-11 -3.22134e-11 -1.78869e-11) (3.62069e-10 -3.88322e-10 -3.80121e-10) (5.90882e-10 -5.72449e-10 -8.10756e-10) (2.74748e-10 -1.89836e-10 -4.00309e-10) (2.18572e-11 -5.80276e-13 -1.99644e-11) (9.95095e-13 1.28821e-11 1.7994e-11) (-2.17532e-11 1.70612e-11 5.44449e-11) (-1.16336e-11 -3.52009e-12 8.12731e-12) (-2.99637e-11 -2.79758e-11 -4.96827e-11) (-1.43292e-10 -9.22622e-11 -4.5015e-10) (-2.90688e-10 -8.85138e-11 -9.53699e-10) (-1.72278e-10 -1.00488e-10 -6.65239e-10) (6.74692e-12 -7.25767e-11 -1.07131e-10) (1.21123e-10 -1.59578e-10 6.62201e-11) (4.88744e-10 -4.58771e-10 5.9596e-10) (4.80178e-10 -3.40481e-10 7.51852e-10) (1.11758e-10 -1.75785e-11 2.48809e-10) (-1.23135e-11 7.67636e-11 5.75389e-11) (-2.01459e-10 4.45637e-10 1.39162e-11) (-5.97936e-10 1.03753e-09 -2.12843e-10) (-1.00682e-09 1.22777e-09 -6.08951e-10) (-9.69496e-10 7.1298e-10 -6.81116e-10) (-3.43003e-10 8.4919e-11 -2.30105e-10) (-3.07285e-11 -3.21195e-11 -8.01919e-12) (3.3843e-11 -1.6492e-10 1.0269e-10) (1.61729e-10 -3.34564e-10 3.24883e-10) (4.82443e-10 -4.04477e-10 2.40496e-10) (3.03122e-10 -2.34905e-10 1.29123e-10) (1.21233e-10 -1.01706e-10 4.32141e-11) (3.05502e-11 -3.8691e-11 1.17202e-11) (2.71852e-12 -1.70342e-11 4.78544e-12) (-6.99181e-12 -1.2403e-11 4.41669e-12) (-1.70945e-11 -8.48756e-12 5.84348e-12) (-3.56969e-11 3.5598e-12 1.2545e-11) (-9.36108e-11 5.65829e-11 4.93874e-11) (-2.48918e-10 2.36751e-10 1.82431e-10) (-4.49502e-10 4.90002e-10 3.72902e-10) (-4.11166e-10 4.6318e-10 3.78417e-10) (-1.25533e-10 1.44457e-10 1.69829e-10) (-1.4052e-13 -9.79661e-13 3.17817e-11) (6.20833e-11 -7.98694e-11 2.36398e-11) (2.06565e-10 -2.37241e-10 -8.87854e-11) (2.68882e-10 -2.25617e-10 -2.84335e-10) (2.08609e-10 -6.94138e-11 -3.46517e-10) (8.83032e-11 3.02342e-11 -1.79075e-10) (1.34236e-11 1.46302e-11 -2.43045e-11) (1.13011e-13 7.28835e-13 -5.70326e-14) (-2.53677e-12 5.21874e-13 5.132e-13) (-3.36777e-11 6.536e-12 -1.80954e-11) (-1.65783e-10 4.65698e-11 -1.6737e-10) (-2.90033e-10 5.56828e-11 -3.81597e-10) (-1.88545e-10 -4.12098e-11 -2.76666e-10) (-4.49205e-11 -7.24534e-11 -5.65176e-11) (7.1938e-12 -1.62907e-10 7.11004e-11) (1.56426e-10 -4.11378e-10 4.97533e-10) (2.58479e-10 -3.39263e-10 7.54498e-10) (1.02027e-10 -1.71347e-11 2.87025e-10) (8.152e-12 5.85974e-11 1.70742e-11) (-9.19764e-11 4.3609e-10 -2.82827e-10) (-2.88502e-10 9.12644e-10 -7.97155e-10) (-2.40687e-10 7.15997e-10 -6.11182e-10) (-7.32188e-11 2.19161e-10 -1.79124e-10) (-1.08839e-12 7.56306e-12 -9.08371e-12) (2.1971e-11 -2.37957e-11 4.99361e-12) (2.06433e-10 -2.21134e-10 1.01766e-10) (4.55945e-10 -4.31965e-10 2.41406e-10) (7.60207e-10 -5.66678e-10 3.0339e-10) (3.04021e-10 -1.88353e-10 8.88302e-11) (3.60392e-11 -1.29174e-11 7.20696e-12) (-1.90795e-12 4.1143e-12 5.409e-13) (-1.10398e-10 8.60162e-11 7.7499e-12) (-3.44591e-10 1.93758e-10 1.97558e-11) (-3.73147e-10 1.46962e-10 1.01634e-11) (-2.09728e-10 4.33282e-11 -1.03271e-11) (-7.40113e-11 -6.41107e-13 -1.139e-11) (-1.2752e-11 -2.17617e-12 -2.04435e-12) (-3.07962e-13 1.42835e-13 6.05908e-13) (9.59384e-12 5.87342e-12 1.76997e-11) (4.76633e-11 1.14654e-11 7.44927e-11) (7.73527e-11 -1.33502e-11 1.34579e-10) (5.36471e-11 -4.42449e-11 1.39383e-10) (-5.94021e-12 -3.46577e-11 7.9488e-11) (-6.01073e-11 -1.58533e-11 4.36068e-11) (-1.68305e-10 1.61148e-11 1.61399e-11) (-1.79543e-10 5.16326e-11 -3.96157e-11) (-7.96133e-11 3.80445e-11 -6.18541e-11) (-3.08524e-11 2.46937e-11 -9.05613e-11) (-2.17648e-11 2.34781e-11 -1.75445e-10) (-5.22695e-11 3.41955e-11 -2.51123e-10) (-9.37149e-11 4.72201e-11 -2.50119e-10) (-8.90955e-11 2.87169e-11 -1.58953e-10) (-4.30338e-11 -4.21812e-12 -4.61769e-11) (-2.42077e-11 -2.28313e-11 2.22662e-12) (-5.78792e-11 -1.46352e-10 1.42021e-10) (-5.1039e-11 -3.89379e-10 5.69865e-10) (1.73012e-11 -3.40674e-10 7.502e-10) (2.12793e-11 -3.6622e-11 3.01167e-10) (3.53243e-12 4.66283e-11 2.60333e-11) (3.17798e-12 3.64879e-10 -2.33497e-10) (4.35152e-11 8.77786e-10 -1.00128e-09) (1.44331e-10 6.69029e-10 -1.05343e-09) (1.59275e-10 1.68126e-10 -4.02667e-10) (1.26616e-10 -2.04764e-11 -8.58279e-11) (3.20627e-10 -2.03636e-10 2.53196e-11) (7.44374e-10 -5.91405e-10 2.74632e-10) (9.93723e-10 -8.04721e-10 4.43999e-10) (1.4289e-09 3.14822e-11 -8.75642e-10) (1.25911e-09 3.24719e-11 -8.64872e-10) (1.042e-09 1.71877e-11 -5.76844e-10) (1.0043e-09 6.50136e-12 -3.3504e-10) (8.92814e-10 4.54128e-12 -1.80227e-10) (4.5694e-10 4.9755e-12 -7.32565e-11) (8.10256e-11 1.35794e-12 -1.13691e-11) (1.19168e-12 8.28605e-14 5.13906e-13) (-2.17533e-12 1.37486e-14 1.82285e-12) (1.43494e-12 -7.49274e-17 1.55635e-12) (1.90411e-11 -2.47629e-13 4.50508e-12) (6.39782e-11 -8.70339e-14 2.99058e-12) (1.39908e-10 1.52142e-13 -1.49921e-12) (2.90115e-10 -2.01406e-13 6.6849e-12) (5.19811e-10 3.50174e-13 7.59907e-11) (7.05236e-10 7.74181e-12 2.24832e-10) (7.30459e-10 1.68447e-11 3.59317e-10) (6.10982e-10 2.08562e-11 3.65676e-10) (4.47961e-10 1.72135e-11 2.61165e-10) (3.0411e-10 8.0155e-12 1.27139e-10) (2.19308e-10 -9.6965e-15 3.32383e-11) (2.01806e-10 -2.87784e-12 -6.94607e-12) (1.92871e-10 -1.6838e-12 -2.00228e-12) (1.58387e-10 -1.32475e-12 1.35757e-11) (1.15743e-10 -2.04208e-12 6.57413e-12) (6.27382e-11 -6.8052e-13 -7.50508e-12) (2.09578e-11 1.98669e-13 -6.0685e-12) (9.60433e-12 1.75302e-13 -1.26385e-12) (2.83942e-11 -6.8452e-14 7.6043e-12) (1.09235e-10 -8.84274e-13 4.76313e-11) (1.99952e-10 2.72399e-13 1.08007e-10) (1.78092e-10 2.99549e-12 1.28982e-10) (8.85362e-11 3.40059e-12 1.03272e-10) (3.36205e-11 2.32457e-12 7.28303e-11) (2.18204e-11 1.18762e-12 4.67431e-11) (3.59333e-11 5.07306e-13 2.90963e-11) (1.04922e-10 4.41307e-13 1.73151e-11) (3.03869e-10 6.35803e-13 -3.72195e-11) (6.96524e-10 2.06563e-12 -1.98688e-10) (1.19545e-09 1.50253e-11 -5.31225e-10) (1.27842e-08 2.02642e-10 -5.32659e-09) (1.33135e-08 1.65866e-10 -5.13946e-09) (1.32122e-08 1.065e-11 -3.49552e-09) (1.3493e-08 -5.52707e-11 -1.89855e-09) (1.22354e-08 3.95161e-11 -8.96445e-10) (7.96298e-09 1.30067e-10 -4.19173e-10) (2.85606e-09 8.59094e-11 -1.39779e-10) (3.82982e-10 1.67789e-11 2.14519e-12) (2.59064e-11 1.51283e-12 9.74113e-12) (2.22958e-11 4.22645e-13 1.20651e-11) (1.35747e-10 1.49581e-12 2.55612e-11) (5.01911e-10 1.12207e-11 2.29804e-11) (1.10895e-09 2.4461e-11 6.12935e-11) (2.24373e-09 2.76995e-11 3.38521e-10) (4.31276e-09 5.01663e-11 1.22394e-09) (6.81283e-09 1.33097e-10 2.7782e-09) (8.67685e-09 2.51048e-10 4.165e-09) (9.65425e-09 3.36625e-10 4.54569e-09) (1.01212e-08 3.62652e-10 3.89093e-09) (9.57713e-09 2.64991e-10 2.229e-09) (7.05934e-09 7.21497e-11 2.52074e-10) (3.78993e-09 -1.70986e-11 -5.51441e-10) (1.73427e-09 -9.60654e-12 -2.69375e-10) (8.99089e-10 -1.25548e-11 7.11644e-11) (6.99243e-10 -2.89124e-11 1.98559e-10) (5.81832e-10 -1.5607e-11 1.19222e-10) (4.19401e-10 7.12477e-12 -5.19355e-12) (3.91995e-10 1.28419e-11 -4.27321e-11) (7.34317e-10 5.13689e-12 2.84449e-11) (1.80739e-09 -8.44158e-12 3.81352e-10) (3.1056e-09 1.94499e-11 1.02306e-09) (3.08001e-09 7.64928e-11 1.35669e-09) (1.72962e-09 7.21243e-11 1.02033e-09) (6.21349e-10 3.0067e-11 4.96672e-10) (2.47376e-10 6.58408e-12 2.14653e-10) (2.46906e-10 -2.30706e-12 1.1992e-10) (6.40454e-10 -1.32955e-11 5.97159e-11) (1.9858e-09 -2.55328e-11 -2.48445e-10) (5.10356e-09 -2.37256e-11 -1.29555e-09) (9.6642e-09 7.07852e-11 -3.43236e-09) (6.31378e-09 2.26853e-12 -2.66846e-09) (6.32325e-09 -3.27179e-11 -2.34125e-09) (5.88312e-09 -1.34292e-10 -1.21017e-09) (5.97853e-09 -1.30343e-10 -3.28885e-10) (5.61476e-09 1.62596e-11 5.20744e-11) (4.16275e-09 1.25448e-10 8.36641e-11) (2.19206e-09 1.14193e-10 2.87981e-11) (6.20429e-10 4.76803e-11 1.61334e-11) (6.20705e-11 7.14593e-12 1.07391e-11) (8.06629e-12 1.22041e-12 4.89281e-12) (2.75251e-11 2.57283e-12 7.27773e-12) (2.0688e-10 1.58933e-11 9.22598e-13) (6.58092e-10 3.8454e-11 1.02489e-11) (1.42324e-09 3.73178e-11 2.13765e-10) (2.76267e-09 3.44063e-11 8.89865e-10) (4.41172e-09 7.49495e-11 2.02948e-09) (5.4025e-09 1.48106e-10 2.85976e-09) (5.78786e-09 2.0148e-10 2.88767e-09) (6.38699e-09 2.46584e-10 2.46773e-09) (6.99406e-09 2.39103e-10 1.53094e-09) (5.85638e-09 1.37007e-10 1.56639e-11) (2.85824e-09 6.03574e-11 -7.65522e-10) (8.22976e-10 2.97045e-11 -4.20233e-10) (1.6918e-10 5.00868e-12 -4.17787e-11) (1.08298e-10 -7.1824e-12 6.69716e-11) (1.92534e-10 -1.06081e-11 1.54862e-10) (2.71754e-10 8.38992e-12 9.20008e-11) (4.54596e-10 2.40036e-11 -1.79068e-11) (8.73596e-10 1.5085e-11 -9.9902e-11) (1.6055e-09 -1.33171e-11 5.70504e-12) (2.50682e-09 1.39839e-12 3.91237e-10) (2.76325e-09 6.98813e-11 7.95775e-10) (1.90869e-09 8.77868e-11 7.67267e-10) (8.08554e-10 4.05007e-11 4.00325e-10) (2.64589e-10 6.22159e-12 1.32947e-10) (1.45638e-10 -5.16967e-12 4.31818e-11) (2.34783e-10 -1.93889e-11 8.25866e-12) (6.22407e-10 -4.56281e-11 -7.30366e-11) (1.83216e-09 -8.23815e-11 -4.39799e-10) (4.31861e-09 -7.49862e-11 -1.54595e-09) (1.50445e-09 -3.44223e-11 -1.12314e-09) (1.37765e-09 -2.60842e-11 -9.7096e-10) (8.04998e-10 -4.51715e-11 -3.33818e-10) (6.06065e-10 -2.38646e-11 -3.6464e-11) (5.06234e-10 2.52101e-11 5.20294e-11) (3.01524e-10 4.21268e-11 4.4102e-11) (1.08952e-10 2.29103e-11 2.01823e-11) (8.73371e-12 4.12014e-12 3.75094e-12) (-1.28008e-11 3.81997e-12 6.18219e-12) (-1.09313e-10 9.70098e-12 3.3803e-11) (-5.67393e-11 4.87329e-12 1.58873e-11) (-4.91517e-14 1.74182e-13 -5.56671e-14) (4.92684e-11 7.85453e-12 -8.64973e-12) (2.71324e-10 9.36699e-12 2.72168e-11) (7.37428e-10 -1.1235e-11 3.04341e-10) (1.37396e-09 -1.2339e-11 8.85909e-10) (1.4978e-09 2.60926e-11 1.20525e-09) (1.19758e-09 5.25409e-11 9.88461e-10) (1.07351e-09 7.02746e-11 6.96835e-10) (1.16372e-09 7.85634e-11 4.00088e-10) (9.52047e-10 6.25589e-11 -5.58273e-11) (3.61749e-10 4.24137e-11 -3.14483e-10) (1.06208e-12 3.55154e-11 -3.53626e-10) (-9.83461e-11 1.18436e-11 -1.24256e-10) (-5.53727e-11 -3.89255e-12 1.9294e-11) (-3.88392e-11 -1.06824e-11 1.1484e-10) (2.23253e-11 -4.80663e-14 5.84172e-11) (6.29842e-11 3.88565e-12 6.3622e-12) (2.40368e-10 1.52619e-13 -8.15819e-11) (4.94871e-10 -2.03591e-11 -1.44364e-10) (7.10536e-10 -1.92159e-11 -4.49618e-11) (7.53714e-10 1.63342e-11 1.43543e-10) (4.52001e-10 3.39315e-11 1.99113e-10) (1.03952e-10 1.29613e-11 8.21676e-11) (4.03224e-12 7.26772e-13 8.81205e-12) (-3.60544e-13 -1.65022e-13 1.2293e-13) (-6.02019e-14 -1.12136e-12 -1.46891e-12) (7.95537e-12 -5.51969e-12 -7.74855e-12) (8.86632e-11 -2.24564e-11 -5.18447e-11) (6.25074e-10 -5.40884e-11 -4.08933e-10) (4.36755e-10 -5.09521e-11 -5.74217e-10) (7.48001e-10 -4.78608e-11 -8.88588e-10) (3.87791e-10 -4.02884e-11 -3.47778e-10) (1.78536e-10 -5.90088e-12 -6.04023e-11) (1.41489e-10 2.67039e-11 -5.19853e-12) (6.55873e-11 2.83854e-11 -5.30649e-13) (7.82093e-12 6.70331e-12 4.90844e-13) (-3.62497e-12 2.65039e-12 1.35942e-12) (-1.47611e-10 2.10495e-11 2.77633e-11) (-7.01569e-10 4.41376e-11 1.26916e-10) (-8.21229e-10 3.64736e-11 1.33753e-10) (-2.10133e-10 2.1725e-11 3.95562e-13) (-3.31821e-12 2.38762e-12 -5.13013e-12) (3.05896e-11 2.44126e-12 -9.74145e-12) (2.02473e-10 -1.3614e-11 7.49304e-11) (6.3216e-10 -4.77706e-11 5.19357e-10) (8.15654e-10 -3.08414e-11 9.20793e-10) (5.53695e-10 9.41998e-12 7.75395e-10) (4.37964e-10 3.3738e-11 5.71791e-10) (5.77275e-10 6.16891e-11 4.70372e-10) (4.61636e-10 6.70901e-11 1.26668e-10) (9.81471e-11 3.80478e-11 -1.07318e-10) (-3.18841e-10 1.06524e-10 -6.45722e-10) (-1.09201e-09 8.87506e-11 -8.66718e-10) (-7.58332e-10 -2.30311e-11 -9.26236e-11) (-3.59538e-10 -4.27036e-11 2.74162e-10) (-6.42308e-11 -1.34993e-11 1.88815e-10) (7.59833e-12 -9.41488e-13 1.18148e-11) (6.06802e-11 -6.05049e-12 -3.42999e-11) (2.42577e-10 -2.77357e-11 -1.76862e-10) (3.70998e-10 -3.09095e-11 -1.80089e-10) (3.64304e-10 -5.67795e-12 -3.16318e-11) (2.34529e-10 1.5142e-11 8.44385e-11) (5.03299e-11 9.20152e-12 6.03529e-11) (-8.78757e-12 1.3272e-12 1.86418e-11) (-4.67701e-11 -4.57204e-12 7.79352e-12) (-5.86411e-11 -1.40923e-11 -1.65251e-11) (-3.36903e-11 -1.54376e-11 -1.64054e-11) (-9.65555e-12 -8.7463e-12 -7.52458e-12) (2.3551e-11 -1.76003e-11 -5.24244e-11) (2.98679e-11 -4.83338e-11 -1.71288e-10) (4.21158e-10 -1.17866e-10 -7.56354e-10) (3.4335e-10 -8.57738e-11 -4.70526e-10) (1.09157e-10 -1.04485e-11 -7.64162e-11) (1.28459e-10 3.64377e-11 -1.46279e-11) (2.18354e-10 1.03251e-10 -1.87857e-11) (1.1826e-10 6.32606e-11 -2.68268e-11) (1.00177e-11 8.00707e-12 -4.39736e-12) (-1.19777e-11 4.48945e-12 4.72556e-13) (-3.25501e-10 3.03873e-11 5.25558e-11) (-1.00637e-09 5.36929e-11 1.65009e-10) (-7.6729e-10 6.03472e-11 3.8019e-11) (-1.09518e-10 2.07939e-11 -4.82706e-11) (6.92235e-12 3.93035e-12 -3.54226e-11) (5.29174e-11 -6.87674e-12 -1.85853e-11) (1.71561e-10 -3.23987e-11 1.12312e-10) (3.24729e-10 -6.13028e-11 4.6457e-10) (2.37282e-10 -3.56278e-11 5.65332e-10) (2.07122e-10 -4.04986e-12 5.43615e-10) (5.61901e-10 4.29995e-11 7.51896e-10) (1.21367e-09 1.8395e-10 7.90877e-10) (4.73922e-10 1.53501e-10 4.02248e-11) (-6.01767e-11 1.21109e-10 -2.82019e-10) (-1.47508e-09 2.40289e-10 -1.31288e-09) (-1.67029e-09 -9.79707e-12 -5.98381e-10) (-6.78328e-10 -7.52966e-11 2.37858e-10) (-1.68747e-10 -4.62916e-11 3.66482e-10) (2.17231e-11 -1.706e-11 1.09641e-10) (3.25996e-11 -9.64422e-12 1.3066e-12) (1.64146e-10 -3.6068e-11 -1.23709e-10) (3.6541e-10 -5.08837e-11 -3.01807e-10) (4.08762e-10 -2.49939e-11 -2.25026e-10) (2.94508e-10 3.40393e-12 -2.6045e-11) (1.46959e-10 9.70658e-12 6.93285e-11) (2.32157e-11 1.62374e-12 4.01562e-11) (-5.93666e-12 -2.06705e-12 8.18826e-12) (-2.39435e-11 -9.55662e-12 -3.39242e-12) (-4.34055e-11 -2.1694e-11 -1.62979e-11) (-6.82027e-11 -3.25727e-11 -5.05908e-12) (-4.44484e-11 -2.60301e-11 -1.46081e-11) (-1.46408e-10 -8.03912e-11 -1.11916e-10) (6.48116e-11 -1.67995e-10 -5.7915e-10) (2.11162e-10 -1.5532e-10 -5.79462e-10) (2.80859e-11 -1.83063e-11 -7.70079e-11) (7.33094e-12 6.41246e-12 -3.76126e-12) (1.28028e-10 9.96484e-11 -2.67945e-12) (3.60536e-10 1.95569e-10 -4.1642e-11) (2.88422e-10 1.05293e-10 -5.81404e-11) (5.228e-11 1.71493e-11 -1.44008e-11) (-5.4964e-12 2.58384e-12 -3.51535e-14) (-3.6477e-10 3.6453e-11 5.10308e-11) (-9.34749e-10 7.61509e-11 6.48286e-11) (-4.3259e-10 5.00278e-11 -9.44979e-11) (-4.77964e-11 1.041e-11 -1.04069e-10) (3.69021e-11 -9.5766e-12 -1.13889e-10) (1.12695e-11 -6.35668e-12 -8.01106e-12) (5.67911e-12 -1.76109e-11 5.04394e-11) (-7.13578e-11 -5.08529e-11 3.03091e-10) (-8.7073e-11 -5.21468e-11 5.68336e-10) (2.86796e-10 -2.65012e-11 9.1892e-10) (1.1956e-09 1.45144e-10 1.25033e-09) (1.33172e-09 4.21871e-10 5.65412e-10) (1.78874e-10 1.94205e-10 -1.21011e-10) (-6.73912e-10 3.29191e-10 -8.23194e-10) (-2.06001e-09 9.87229e-11 -1.09403e-09) (-1.07161e-09 -1.09422e-10 2.04487e-11) (-2.38053e-10 -7.6576e-11 3.3287e-10) (4.7048e-11 -6.71019e-11 2.84358e-10) (8.24455e-11 -4.16748e-11 6.71636e-11) (1.01277e-10 -3.94721e-11 -2.81899e-11) (2.11533e-10 -4.85074e-11 -1.71557e-10) (3.18392e-10 -2.97202e-11 -2.80433e-10) (2.78201e-10 -3.65177e-12 -1.60283e-10) (1.68245e-10 2.86707e-12 -5.25353e-12) (9.4216e-11 -2.24819e-12 5.55626e-11) (2.01295e-11 -6.86603e-12 2.76493e-11) (-4.85281e-13 -3.04045e-12 1.63011e-12) (-1.35266e-11 -1.2587e-11 -6.08383e-12) (-8.98849e-11 -3.98005e-11 -1.89307e-12) (-2.84491e-10 -9.36466e-11 2.1837e-11) (-6.51811e-10 -2.12781e-10 -1.32947e-10) (-2.70464e-10 -2.72191e-10 -6.04291e-10) (1.62079e-11 -2.70633e-10 -7.50107e-10) (-4.24196e-11 -4.88535e-11 -1.32087e-10) (-4.09734e-11 1.009e-11 -1.10438e-11) (-6.21042e-12 4.02335e-11 2.71431e-12) (1.61846e-10 1.55685e-10 -1.94761e-12) (4.24709e-10 1.92739e-10 -1.80824e-11) (3.73554e-10 8.95466e-11 -2.34109e-11) (1.44987e-10 2.85571e-11 -2.13411e-11) (8.65786e-13 2.15595e-12 -1.3075e-12) (-1.50029e-10 3.21773e-11 -1.34103e-11) (-4.08831e-10 4.83594e-11 -8.63556e-11) (-1.33505e-10 1.22064e-11 -1.36173e-10) (1.09862e-12 -8.87879e-12 -2.40486e-10) (-7.11287e-12 -2.22538e-11 -1.32434e-10) (-8.46289e-11 -2.56217e-11 -1.28032e-11) (-5.79343e-10 -1.0526e-10 3.18813e-10) (-7.37913e-10 -1.63757e-10 8.92316e-10) (-5.54798e-11 -1.5174e-10 1.29128e-09) (7.98183e-10 2.38164e-11 1.49392e-09) (7.63085e-10 3.25217e-10 6.19829e-10) (2.86194e-10 3.20497e-10 -4.04004e-11) (-1.52458e-10 3.41241e-10 -4.26054e-10) (-1.23321e-09 2.59341e-10 -9.19146e-10) (-1.14395e-09 -7.763e-11 -2.50962e-10) (-2.44661e-10 -8.50273e-11 1.71731e-10) (3.42826e-11 -1.07028e-10 2.62288e-10) (1.89601e-10 -1.28755e-10 1.92476e-10) (1.85993e-10 -9.1772e-11 5.02133e-11) (1.40484e-10 -3.92617e-11 -3.01279e-11) (1.31139e-10 -4.78535e-12 -8.32056e-11) (1.21987e-10 1.19658e-11 -9.60797e-11) (8.1925e-11 5.99605e-12 -3.23559e-11) (7.47418e-11 -4.63352e-12 1.98497e-11) (6.62487e-11 -2.04612e-11 4.7816e-11) (1.67642e-11 -1.64257e-11 1.32123e-11) (-1.3616e-12 -9.37376e-12 -1.72071e-12) (-5.81198e-11 -2.83561e-11 -3.61316e-12) (-4.99139e-10 -1.19057e-10 6.55756e-11) (-1.06327e-09 -2.6768e-10 -1.07448e-10) (-6.41244e-10 -4.33441e-10 -7.47411e-10) (-2.14141e-10 -4.57684e-10 -1.00646e-09) (-1.60686e-10 -1.19587e-10 -2.22653e-10) (-3.92515e-10 8.01642e-13 -1.95032e-11) (-3.1852e-10 1.36886e-10 4.88155e-11) (-1.64821e-11 8.61851e-11 1.65045e-11) (1.49756e-10 1.3128e-10 3.54147e-11) (3.22064e-10 1.16299e-10 5.77817e-11) (3.90665e-10 7.36351e-11 7.49805e-12) (3.7705e-10 7.13431e-11 -9.27317e-11) (8.95754e-11 3.179e-11 -6.85055e-11) (-1.49184e-11 1.07595e-11 -3.7075e-11) (-6.12173e-11 6.18555e-12 -8.90508e-11) (-1.98747e-11 2.12914e-12 -2.16849e-10) (-4.42517e-11 -5.85588e-12 -2.99947e-10) (-3.71886e-10 -4.06859e-11 -2.0537e-10) (-1.67531e-09 -1.9572e-10 2.34678e-10) (-1.77866e-09 -3.41307e-10 1.19399e-09) (-5.65087e-10 -3.52616e-10 1.68573e-09) (3.85253e-10 -1.21463e-10 1.75862e-09) (2.643e-10 2.1538e-10 5.89502e-10) (2.52552e-11 2.15741e-10 1.87455e-11) (-1.92772e-10 4.49666e-10 -3.78414e-10) (-6.41159e-10 3.44739e-10 -6.61499e-10) (-6.24062e-10 1.4229e-11 -2.94203e-10) (-1.49808e-10 -6.2388e-11 3.12027e-11) (-6.20456e-13 -8.94265e-11 9.50212e-11) (1.48379e-10 -1.74473e-10 1.31025e-10) (2.93243e-10 -1.94443e-10 1.04613e-10) (3.39553e-10 -9.62611e-11 9.23988e-11) (2.23604e-10 1.7923e-11 5.69475e-11) (9.27754e-11 3.93762e-11 1.13275e-11) (4.05093e-11 2.02069e-11 2.40762e-12) (3.8883e-11 3.85578e-12 1.61638e-11) (5.39874e-11 -2.19533e-11 4.29076e-11) (2.034e-11 -2.97261e-11 2.11888e-11) (-6.37578e-12 -2.13752e-11 -1.69292e-12) (-8.02886e-11 -3.63638e-11 -1.12921e-11) (-5.68277e-10 -9.38646e-11 6.02746e-11) (-9.72723e-10 -2.11208e-10 -9.80512e-11) (-6.65487e-10 -4.76596e-10 -7.26439e-10) (-3.27455e-10 -6.39726e-10 -1.18246e-09) (-2.26691e-10 -1.81601e-10 -2.72229e-10) (-7.39444e-10 -4.17259e-11 4.44545e-11) (-1.22519e-09 2.34419e-10 2.78803e-10) (-3.64346e-10 2.19972e-10 1.16065e-10) (2.45189e-12 9.72141e-11 4.24692e-11) (2.10339e-10 1.30334e-10 7.93385e-11) (7.22203e-10 1.18224e-10 4.09915e-11) (1.37521e-09 6.60464e-11 -3.06318e-10) (9.46368e-10 6.11371e-11 -4.8143e-10) (1.58638e-10 2.35486e-11 -1.79992e-10) (3.15403e-12 6.56028e-12 -5.92748e-11) (1.40453e-12 1.88211e-11 -1.21422e-10) (-2.89405e-11 5.16621e-11 -2.78354e-10) (-3.7209e-10 3.76576e-11 -3.00987e-10) (-1.68845e-09 -1.21656e-10 -9.01366e-12) (-2.05809e-09 -4.31926e-10 1.03391e-09) (-9.98285e-10 -5.46447e-10 1.78086e-09) (-7.78322e-11 -2.61548e-10 1.85024e-09) (5.32867e-11 2.18815e-10 7.61454e-10) (-1.39031e-10 3.10262e-10 1.08216e-10) (-4.9474e-10 5.90419e-10 -3.66975e-10) (-5.31734e-10 3.84928e-10 -5.72127e-10) (-2.30162e-10 4.11644e-11 -2.09641e-10) (-4.73022e-11 -3.27227e-11 -2.15866e-11) (-5.86093e-12 -8.29984e-11 8.5398e-12) (1.15121e-10 -2.3896e-10 2.59162e-11) (4.34378e-10 -3.90045e-10 8.036e-11) (7.82358e-10 -2.61077e-10 2.4502e-10) (8.61907e-10 9.20518e-11 4.18531e-10) (5.10339e-10 2.7115e-10 3.55264e-10) (1.70197e-10 1.56431e-10 1.7515e-10) (6.15858e-11 4.38186e-11 9.0874e-11) (3.61788e-11 -9.77767e-12 7.12109e-11) (3.98934e-12 -3.12693e-11 3.30338e-11) (-3.99901e-11 -4.93413e-11 8.48039e-13) (-2.06752e-10 -7.8027e-11 -3.52573e-11) (-6.64029e-10 -8.07779e-11 2.40417e-11) (-6.28671e-10 -1.43887e-10 -8.17699e-11) (-4.19932e-10 -4.00203e-10 -5.44012e-10) (-2.84189e-10 -7.36045e-10 -1.19628e-09) (-2.3309e-10 -2.22798e-10 -3.19929e-10) (-5.72184e-10 -3.55755e-11 6.40307e-11) (-1.38981e-09 2.61738e-10 4.97753e-10) (-7.71436e-10 3.42893e-10 3.21455e-10) (-6.29245e-11 1.18308e-10 6.45704e-11) (1.80849e-10 1.09442e-10 3.49559e-11) (1.31523e-09 1.20273e-10 -1.84523e-10) (2.41791e-09 -6.3721e-11 -9.08964e-10) (1.23462e-09 -6.52168e-11 -8.52139e-10) (1.17764e-10 -9.7684e-12 -1.94134e-10) (-9.06817e-12 2.12752e-12 -2.55704e-11) (-3.49005e-12 1.4624e-11 -2.46236e-11) (2.10982e-11 7.40907e-11 -1.06842e-10) (-6.42469e-11 6.40731e-11 -1.04949e-10) (-4.32963e-10 1.15078e-12 -1.84836e-11) (-1.06546e-09 -3.05868e-10 5.75893e-10) (-1.12732e-09 -6.66471e-10 1.55603e-09) (-6.04749e-10 -4.0276e-10 1.73761e-09) (-1.27309e-10 2.10686e-10 8.1469e-10) (-1.41049e-10 4.03919e-10 2.20705e-10) (-3.88973e-10 5.08502e-10 -1.81735e-10) (-3.92212e-10 2.86452e-10 -3.79275e-10) (-1.20606e-10 2.24539e-11 -1.46456e-10) (-2.59365e-11 -3.70769e-11 -3.4804e-11) (1.03988e-11 -1.76351e-10 -3.80674e-11) (2.28436e-10 -5.71022e-10 -8.36251e-11) (5.62917e-10 -6.94987e-10 -4.50482e-11) (8.44271e-10 -3.82385e-10 2.10815e-10) (1.54242e-09 1.71298e-10 7.21198e-10) (1.9037e-09 9.37766e-10 1.10774e-09) (9.77579e-10 7.78687e-10 7.77234e-10) (2.29634e-10 2.5263e-10 3.68681e-10) (2.59921e-11 3.4689e-11 1.96582e-10) (-3.7787e-11 -3.69037e-11 9.64254e-11) (-1.24801e-10 -8.51275e-11 2.9415e-11) (-3.72063e-10 -1.29062e-10 -4.83425e-11) (-6.63413e-10 -8.63434e-11 -1.4214e-11) (-2.12522e-10 -7.9417e-11 -3.45918e-11) (-1.54846e-10 -2.73069e-10 -3.10726e-10) (-2.17406e-10 -6.92676e-10 -1.02005e-09) (-2.80181e-10 -2.90453e-10 -4.41453e-10) (-2.14731e-10 -3.23027e-11 -9.62579e-12) (-3.51758e-10 9.05156e-11 2.09536e-10) (-2.23232e-10 1.56364e-10 1.98931e-10) (-1.10577e-11 7.63914e-11 4.17062e-11) (1.77631e-10 1.03259e-10 -2.49627e-11) (1.03823e-09 1.06062e-10 -4.08094e-10) (1.54733e-09 -8.27242e-11 -9.86506e-10) (5.17082e-10 -8.12404e-11 -6.29203e-10) (-3.4159e-11 -2.42417e-11 -1.63033e-10) (-1.52859e-10 -9.6972e-12 -8.61145e-11) (-2.58187e-11 1.38043e-11 -1.56339e-11) (4.38503e-11 7.21685e-11 -2.89654e-11) (8.24541e-11 9.95815e-11 -2.4852e-11) (2.01766e-13 4.56511e-12 4.20867e-12) (-1.78481e-10 -9.68397e-11 2.07266e-10) (-9.51133e-10 -6.22614e-10 1.14265e-09) (-1.28437e-09 -6.24986e-10 1.71168e-09) (-3.78171e-10 1.28975e-10 7.51164e-10) (-3.94769e-11 3.87221e-10 2.37281e-10) (-6.79639e-11 3.32422e-10 -4.95026e-11) (-1.65667e-10 1.61441e-10 -1.80155e-10) (-1.64704e-10 -1.85609e-13 -1.62072e-10) (-1.06016e-10 -1.25141e-10 -1.37716e-10) (-2.27881e-11 -4.71215e-10 -3.08399e-10) (2.7808e-10 -1.00909e-09 -5.4427e-10) (4.6535e-10 -8.41755e-10 -2.1807e-10) (4.65504e-10 -3.48361e-10 1.95812e-10) (1.00519e-09 9.11607e-11 8.07897e-10) (2.34868e-09 1.2538e-09 1.74182e-09) (2.65814e-09 1.90337e-09 1.68111e-09) (1.08182e-09 9.49865e-10 8.51834e-10) (1.14517e-10 1.79911e-10 3.0572e-10) (-8.87575e-11 -4.01916e-12 1.57046e-10) (-2.99083e-10 -1.24333e-10 9.53837e-11) (-5.38197e-10 -1.9291e-10 -2.72501e-11) (-4.62097e-10 -1.01349e-10 -1.60516e-11) (-3.06932e-11 -3.51763e-11 -1.02887e-11) (-1.29745e-11 -1.61277e-10 -1.47274e-10) (-1.64367e-10 -4.68565e-10 -6.38183e-10) (-4.38208e-10 -3.44806e-10 -5.7006e-10) (-2.38933e-10 -7.08357e-11 -1.13231e-10) (-3.54948e-11 4.53039e-12 1.54706e-11) (6.21113e-12 3.48841e-11 5.29761e-11) (9.03096e-11 9.40702e-11 7.17611e-11) (2.10402e-10 1.21027e-10 -1.04192e-11) (3.99448e-10 9.77498e-11 -2.28996e-10) (4.30085e-10 1.71817e-11 -4.64836e-10) (1.20545e-10 -2.08805e-11 -3.51822e-10) (-1.00481e-10 -3.45281e-11 -2.18168e-10) (-2.33179e-10 -5.02399e-11 -1.74462e-10) (-6.65241e-11 2.48209e-12 -4.24131e-11) (1.43726e-11 3.13129e-11 -3.40613e-12) (2.68379e-10 2.09028e-10 7.99562e-11) (2.23823e-10 1.06752e-10 1.37969e-10) (2.95994e-12 -2.3257e-11 1.10665e-10) (-6.55378e-10 -3.9414e-10 7.10496e-10) (-1.97743e-09 -7.72713e-10 1.69701e-09) (-9.73302e-10 1.82119e-11 8.62088e-10) (-1.2825e-10 2.8258e-10 1.51963e-10) (-9.43574e-12 3.64667e-10 -6.42139e-11) (-8.6255e-11 1.75177e-10 -1.90867e-10) (-2.2193e-10 3.1342e-12 -3.75407e-10) (-2.54858e-10 -3.3077e-10 -7.04132e-10) (-6.44077e-11 -9.58021e-10 -1.10871e-09) (3.88841e-10 -1.49659e-09 -9.19529e-10) (5.76109e-10 -1.09274e-09 -1.7444e-10) (3.01557e-10 -3.16634e-10 2.24666e-10) (2.6696e-10 6.04694e-11 5.46395e-10) (6.62855e-10 8.44541e-10 1.34575e-09) (1.52552e-09 1.83404e-09 1.81388e-09) (1.5336e-09 1.67136e-09 1.36963e-09) (4.31047e-10 5.56992e-10 5.65326e-10) (-2.23535e-11 4.59116e-11 1.20687e-10) (-1.96809e-10 -7.49817e-11 6.93633e-11) (-4.13399e-10 -2.0851e-10 -2.1689e-11) (-1.99959e-10 -1.02345e-10 -1.77241e-11) (-1.98983e-12 -4.50511e-11 -1.4776e-11) (2.17025e-11 -9.86735e-11 -7.4778e-11) (-8.27032e-11 -2.02829e-10 -2.58788e-10) (-4.05877e-10 -2.31366e-10 -4.2455e-10) (-4.47066e-10 -1.22314e-10 -3.09935e-10) (-9.35993e-11 -1.10777e-11 -5.77608e-11) (5.69052e-13 2.32213e-12 2.85882e-13) (9.62681e-11 7.96634e-11 4.95006e-11) (2.23281e-10 1.60193e-10 6.10376e-11) (1.68377e-10 9.00075e-11 -3.80336e-11) (1.4233e-10 3.30739e-11 -1.34739e-10) (1.07391e-10 -1.00632e-11 -1.9266e-10) (2.41554e-11 -3.80502e-11 -1.56075e-10) (-5.232e-11 -5.82963e-11 -1.64974e-10) (-8.01449e-11 -2.51878e-11 -1.24909e-10) (-1.14223e-11 1.45821e-11 -1.87356e-11) (4.76372e-11 6.67454e-11 2.01373e-11) (1.50589e-10 9.7972e-11 1.12931e-10) (2.65734e-11 6.95768e-12 9.59145e-11) (-3.63011e-10 -1.45216e-10 4.6435e-10) (-2.19542e-09 -5.0065e-10 1.66933e-09) (-2.53337e-09 1.92443e-11 1.15526e-09) (-6.83348e-10 3.9119e-10 -4.18196e-11) (-1.46204e-10 5.22609e-10 -4.3126e-10) (-9.22909e-12 4.01186e-10 -6.88835e-10) (-9.49543e-11 3.27876e-11 -7.44458e-10) (-6.70607e-11 -5.167e-10 -8.92802e-10) (5.16164e-10 -1.59907e-09 -9.63764e-10) (1.48649e-09 -2.44331e-09 -4.8861e-10) (9.76188e-10 -1.29019e-09 8.3162e-11) (1.00563e-10 -1.38892e-10 1.01313e-10) (-6.42619e-11 6.42496e-11 2.08737e-10) (-3.70071e-10 6.84056e-10 8.66772e-10) (-1.80352e-10 1.42383e-09 1.38648e-09) (4.416e-10 1.59533e-09 1.3676e-09) (4.9676e-10 9.43999e-10 8.85453e-10) (8.47873e-11 1.48177e-10 2.32758e-10) (-1.42401e-11 -1.42151e-11 2.5019e-11) (-9.06418e-11 -1.14005e-10 -3.57678e-12) (-6.17418e-11 -9.80985e-11 -2.15177e-11) (2.10129e-11 -9.05885e-11 -3.16828e-11) (2.45985e-11 -7.10422e-11 -4.17045e-11) (-1.36458e-11 -5.25682e-11 -5.44343e-11) (-1.22098e-10 -5.49596e-11 -1.07996e-10) (-2.92569e-10 -5.35814e-11 -2.23249e-10) (-2.24721e-10 -1.72237e-11 -2.46546e-10) (-4.15841e-11 2.50786e-11 -8.94195e-11) (1.48935e-11 4.15798e-11 -1.00546e-11) (1.19121e-10 1.55228e-10 7.78019e-11) (1.87449e-10 1.40949e-10 1.02802e-10) (1.71299e-10 4.09073e-11 2.17586e-11) (1.73213e-10 -1.99535e-11 -5.51577e-11) (1.12015e-10 -5.10519e-11 -1.14713e-10) (3.17815e-11 -7.50402e-11 -2.17458e-10) (-8.02985e-11 -6.76474e-11 -3.79454e-10) (-8.00561e-11 6.77253e-12 -2.30475e-10) (-5.60311e-12 9.9164e-12 -1.91405e-11) (2.42795e-12 4.0806e-12 4.22911e-12) (-3.1147e-12 6.12259e-12 6.06161e-11) (-1.93331e-10 -8.09801e-12 4.01033e-10) (-1.56944e-09 1.19755e-10 1.61984e-09) (-4.53178e-09 8.90795e-10 1.77246e-09) (-4.00944e-09 1.35922e-09 -1.09986e-09) (-1.48758e-09 1.07959e-09 -2.5624e-09) (-2.99855e-11 3.11583e-10 -1.81368e-09) (3.00928e-10 -2.8997e-10 -6.95447e-10) (1.17112e-09 -1.35134e-09 -3.96454e-10) (3.10139e-09 -3.20863e-09 4.59878e-10) (2.9365e-09 -2.75071e-09 7.3344e-10) (8.75743e-10 -8.03448e-10 1.46625e-10) (7.79927e-12 -1.56128e-11 -3.70106e-13) (-3.29387e-10 1.29919e-10 6.01862e-11) (-1.70213e-09 9.9764e-10 6.42132e-10) (-1.9343e-09 1.69739e-09 1.29895e-09) (-8.69202e-10 1.51806e-09 1.30375e-09) (6.4181e-12 9.0954e-10 9.42085e-10) (2.14221e-10 2.8961e-10 4.61299e-10) (7.0208e-11 -1.1205e-11 9.2053e-11) (2.33002e-11 -7.57891e-11 1.39882e-11) (9.36745e-12 -1.25156e-10 -2.44894e-11) (5.49233e-11 -1.55285e-10 -4.78689e-11) (3.3039e-11 -7.65812e-11 -2.84327e-11) (5.67882e-12 -1.50765e-11 -5.55033e-12) (-1.57966e-12 -9.80373e-13 -5.78357e-13) (-2.82337e-11 5.84059e-13 -1.65198e-11) (-8.88967e-11 7.42326e-12 -1.35584e-10) (-5.80143e-11 5.31984e-11 -2.46483e-10) (1.4086e-11 6.35168e-11 -7.20929e-11) (8.17253e-11 1.17839e-10 6.21707e-11) (3.86741e-10 2.81985e-10 4.54719e-10) (5.73187e-10 1.70652e-10 5.05443e-10) (3.12177e-10 -9.50407e-13 1.3004e-10) (6.00021e-11 -2.42018e-11 -2.94404e-11) (-3.36014e-11 -6.54337e-11 -2.0422e-10) (-2.91658e-10 -1.13994e-10 -7.31129e-10) (-3.23841e-10 -6.27749e-11 -8.99872e-10) (-1.36127e-10 -1.78098e-11 -3.53264e-10) (-2.7893e-11 -4.90098e-12 -2.58844e-11) (-3.03891e-11 -7.68727e-12 2.79992e-11) (-1.19343e-10 -1.3387e-12 3.03566e-10) (-6.27961e-10 3.4919e-10 1.23115e-09) (-2.7833e-09 1.51825e-09 2.00056e-09) (-3.97582e-09 1.75304e-09 -1.80895e-10) (-1.79585e-09 6.41885e-10 -2.13626e-09) (1.54489e-10 -3.16811e-10 -1.90393e-09) (1.16675e-09 -1.01945e-09 -8.61366e-10) (2.30529e-09 -2.09495e-09 4.39469e-10) (3.08229e-09 -2.78476e-09 1.65345e-09) (2.46976e-09 -1.92541e-09 1.06241e-09) (1.09671e-09 -6.14523e-10 1.1291e-11) (1.18527e-10 -2.37834e-11 -1.12733e-10) (-3.86983e-10 2.31372e-10 -2.27119e-10) (-3.65217e-09 1.65872e-09 -1.83008e-10) (-5.25733e-09 2.62529e-09 7.5679e-10) (-2.62397e-09 1.83677e-09 1.09145e-09) (-5.87484e-10 7.71961e-10 7.91648e-10) (4.96679e-11 2.39853e-10 4.68973e-10) (1.59026e-10 -1.21308e-11 2.10511e-10) (1.24761e-10 -1.2371e-10 6.0345e-11) (8.71315e-11 -1.88519e-10 -2.26314e-11) (6.81635e-11 -1.96552e-10 -4.23893e-11) (5.73154e-11 -1.03573e-10 -1.61004e-11) (4.00647e-11 -3.42148e-11 1.48722e-11) (2.44308e-11 -4.03093e-12 3.10152e-11) (2.48492e-12 3.73292e-12 1.21762e-11) (-2.40194e-12 2.46278e-12 -4.29444e-12) (1.0115e-13 3.84655e-11 -1.47379e-10) (7.43365e-11 9.72821e-11 -2.02263e-10) (8.31815e-11 7.93662e-11 -1.65036e-11) (3.03356e-10 1.86073e-10 3.09954e-10) (7.80849e-10 2.14291e-10 8.5926e-10) (7.1639e-10 3.85666e-11 5.369e-10) (1.2997e-10 -1.68226e-11 3.43422e-11) (-3.33603e-11 -1.56495e-11 -6.05122e-11) (-9.5467e-10 -9.97063e-11 -8.70246e-10) (-1.68094e-09 -1.69475e-10 -1.7543e-09) (-8.47447e-10 -1.98213e-10 -1.13764e-09) (-1.68269e-10 -9.04829e-11 -2.10308e-10) (-1.579e-11 -1.74937e-11 3.72719e-12) (-7.71628e-12 -2.05938e-11 1.27571e-10) (-3.68994e-11 1.96222e-10 5.45147e-10) (-6.15377e-10 9.59162e-10 1.04216e-09) (-1.40488e-09 1.1386e-09 4.53895e-10) (-7.61327e-10 2.42824e-10 -3.80629e-10) (-1.34256e-10 -2.13018e-10 -4.13961e-10) (2.8387e-10 -5.93883e-10 -2.51246e-10) (1.0858e-09 -1.39805e-09 2.63613e-10) (1.93595e-09 -1.97395e-09 8.93376e-10) (1.92326e-09 -1.46084e-09 6.17446e-10) (1.3977e-09 -5.91116e-10 -6.96648e-11) (7.63785e-10 2.35324e-11 -4.27341e-10) (1.91151e-11 3.21514e-10 -3.54932e-10) (-2.65706e-09 1.86055e-09 -8.01341e-10) (-8.68556e-09 3.98215e-09 -5.6124e-10) (-6.09833e-09 2.79251e-09 1.80984e-10) (-1.39229e-09 8.48313e-10 4.22392e-10) (-1.16888e-10 1.35239e-10 2.37008e-10) (6.09173e-11 -2.02349e-11 1.63256e-10) (1.02095e-10 -1.26349e-10 9.03914e-11) (8.94434e-11 -2.08712e-10 1.86034e-12) (1.0001e-10 -1.66259e-10 -6.20456e-12) (1.8695e-10 -1.69965e-10 2.31742e-11) (2.50016e-10 -1.26733e-10 1.13354e-10) (2.11264e-10 -4.79414e-11 1.97357e-10) (7.40324e-11 5.14765e-12 1.3155e-10) (2.52304e-12 3.16539e-12 1.10049e-11) (8.2677e-13 4.83388e-12 -1.34201e-11) (6.27111e-11 4.45303e-11 -1.59661e-10) (1.5632e-10 7.74758e-11 -1.52479e-10) (1.9824e-10 7.79934e-11 4.42187e-12) (5.65126e-10 1.12775e-10 3.37064e-10) (1.10938e-09 4.62359e-11 7.14119e-10) (6.55128e-10 1.79145e-12 3.20056e-10) (1.31661e-11 4.20877e-12 1.053e-12) (-4.82614e-10 8.37874e-11 -2.58499e-10) (-2.82793e-09 -1.24184e-11 -1.35385e-09) (-2.64625e-09 -5.1217e-10 -1.43747e-09) (-7.21884e-10 -3.54536e-10 -4.49513e-10) (-4.62136e-11 -6.16894e-11 -1.60159e-11) (1.2772e-11 -2.18848e-11 4.46413e-11) (5.78676e-11 7.28267e-11 2.05544e-10) (-4.2079e-11 4.45574e-10 3.87263e-10) (-3.16e-10 5.76634e-10 2.51436e-10) (-2.31309e-10 1.16122e-10 -2.47529e-11) (-1.46485e-10 -1.36452e-10 -1.20292e-10) (4.15563e-11 -6.1305e-10 -2.10814e-10) (5.66922e-10 -1.17201e-09 -9.3852e-11) (8.84897e-10 -1.1212e-09 1.38052e-10) (7.48741e-10 -6.31037e-10 1.79927e-10) (5.51761e-10 -2.43479e-10 5.07299e-11) (5.45618e-10 8.91329e-12 -1.36429e-10) (4.14624e-10 3.85632e-10 -3.2747e-10) (-5.15179e-10 1.32946e-09 -5.343e-10) (-6.35245e-09 4.4982e-09 -9.26945e-10) (-1.07613e-08 4.67827e-09 -9.596e-10) (-4.52079e-09 1.5839e-09 -3.30275e-10) (-6.12099e-10 1.76097e-10 9.27838e-11) (-4.71616e-11 -1.24902e-11 5.6651e-11) (2.23086e-12 -5.64969e-11 4.28003e-11) (3.75523e-11 -1.18965e-10 1.70473e-11) (2.12315e-10 -1.47806e-10 1.17878e-10) (4.24291e-10 -1.96118e-10 1.64914e-10) (5.28259e-10 -1.81884e-10 2.41594e-10) (3.90069e-10 -1.0564e-10 2.60503e-10) (1.35151e-10 -2.95807e-11 1.45526e-10) (8.09e-12 -2.6205e-12 2.23859e-11) (-1.15901e-12 5.19964e-14 -4.00786e-13) (-4.36153e-12 4.38285e-12 -3.3839e-11) (5.55869e-11 2.13968e-11 -1.06059e-10) (2.22613e-10 3.79003e-11 -1.07404e-10) (6.10274e-10 1.49262e-11 5.20733e-11) (1.02192e-09 -1.00731e-10 3.86047e-10) (5.34898e-10 -7.14309e-11 2.86925e-10) (1.63328e-11 5.16976e-12 1.3355e-11) (-1.67042e-10 9.26408e-11 -4.84397e-11) (-1.16951e-09 2.56902e-10 -3.82513e-10) (-1.56567e-09 -1.23499e-10 -5.36636e-10) (-7.23756e-10 -3.39507e-10 -2.92285e-10) (-1.11503e-10 -1.50115e-10 -4.61538e-11) (2.15096e-12 -3.48922e-11 1.57851e-11) (1.57338e-11 3.05468e-12 5.2996e-11) (-7.42372e-12 1.33303e-10 1.29131e-10) (-6.87297e-11 2.03811e-10 8.68514e-11) (-2.06534e-11 1.79216e-11 -2.8694e-12) (-3.03094e-11 -9.98959e-11 -6.08024e-11) (3.53247e-11 -5.67674e-10 -2.12299e-10) (1.75179e-10 -6.33697e-10 -1.78674e-10) (1.84167e-10 -3.18321e-10 -7.35931e-11) (1.39226e-10 -1.21176e-10 -3.74911e-12) (1.41824e-10 -5.99465e-11 3.69867e-11) (1.79267e-10 -1.83867e-11 3.70458e-11) (2.42411e-10 1.11932e-10 -4.83326e-11) (2.0611e-10 7.48876e-10 -3.10204e-10) (-1.79444e-09 3.10143e-09 -8.12062e-10) (-8.90971e-09 5.88179e-09 -1.29967e-09) (-1.00281e-08 3.48914e-09 -1.39612e-09) (-3.44968e-09 5.15917e-10 -4.78279e-10) (-4.53887e-10 -6.3138e-11 3.30863e-11) (-3.88237e-11 -5.72813e-11 5.61008e-11) (5.40547e-11 -9.06574e-11 8.39183e-11) (6.41477e-10 -2.284e-10 7.88224e-10) (9.72366e-10 -2.45741e-10 7.89175e-10) (8.37279e-10 -2.16413e-10 4.67999e-10) (4.98433e-10 -1.35723e-10 1.82283e-10) (2.05658e-10 -5.86774e-11 4.28598e-11) (4.60808e-11 -1.84756e-11 3.2919e-12) (4.86689e-12 -5.82593e-12 -1.91541e-12) (1.15337e-12 -8.18678e-12 -6.9279e-12) (1.12055e-11 -1.42692e-11 -2.27267e-11) (7.05433e-11 -1.96425e-11 -5.23599e-11) (1.70435e-10 -1.03943e-11 -3.7314e-11) (1.30909e-10 6.36605e-12 3.37365e-11) (1.63787e-11 6.76241e-12 2.66104e-11) (-1.78231e-11 7.83701e-12 8.7916e-12) (-6.98996e-11 2.26361e-11 -4.00822e-11) (-7.60803e-11 1.48712e-11 -1.22637e-10) (-4.68753e-11 -2.3015e-11 -1.09647e-10) (-4.05884e-11 -3.87703e-11 -4.61309e-11) (-5.68069e-11 -4.61068e-11 -6.63301e-12) (-6.24321e-11 -3.55382e-11 2.51735e-11) (-4.44724e-11 -4.18003e-12 3.34599e-11) (-3.22794e-11 2.3168e-11 3.09735e-11) (-1.46066e-11 1.669e-11 1.29443e-11) (-1.78181e-12 -1.41722e-12 5.27462e-13) (-8.70157e-12 -7.43154e-11 -1.52981e-11) (6.99555e-12 -1.97825e-10 -6.49047e-11) (4.55297e-11 -1.6083e-10 -8.921e-11) (6.97397e-11 -9.08119e-11 -8.19591e-11) (6.32078e-11 -4.2119e-11 -3.49509e-11) (6.5245e-11 -2.822e-11 1.75415e-11) (1.1275e-10 -2.88e-11 1.01715e-10) (7.87061e-11 1.73812e-11 6.76457e-11) (5.89185e-11 1.68056e-10 -2.78736e-11) (-4.4542e-10 1.68996e-09 -6.46368e-10) (-4.23409e-09 4.91968e-09 -1.67838e-09) (-9.47386e-09 5.3074e-09 -2.09265e-09) (-6.91731e-09 1.69394e-09 -1.36651e-09) (-1.65872e-09 -5.03763e-11 -1.67465e-10) (-1.34029e-10 -8.36446e-11 9.95873e-11) (1.18566e-10 -1.4651e-10 3.53539e-10) (1.13112e-09 -4.63549e-10 1.80484e-09) (8.67133e-10 -3.57558e-10 9.48112e-10) (3.83208e-10 -1.89135e-10 1.99738e-10) (2.3922e-10 -1.38629e-10 -2.49654e-11) (2.33058e-10 -1.4185e-10 -1.13276e-10) (1.73962e-10 -9.97066e-11 -9.81937e-11) (8.28667e-11 -4.11733e-11 -3.94233e-11) (3.59705e-11 -1.54501e-11 -1.29612e-11) (2.56648e-11 -1.06053e-11 -8.38243e-12) (1.97157e-11 -6.41708e-12 -6.57725e-12) (3.93545e-12 8.89259e-13 -4.05356e-14) (-5.81763e-12 1.73136e-11 1.38968e-11) (-7.44604e-11 6.5767e-11 6.09457e-11) (-7.0385e-11 2.39673e-11 1.73152e-11) (-2.33639e-11 -1.35873e-11 -2.8847e-11) (3.66314e-11 -9.88424e-11 -1.68504e-10) (1.06247e-10 -1.13336e-10 -1.80503e-10) (2.12823e-11 -1.55456e-11 -2.16234e-11) (-1.58576e-12 1.07325e-12 2.74979e-12) (-7.86558e-11 3.17222e-11 6.76519e-11) (-1.75209e-10 5.16707e-11 9.42444e-11) (-1.02828e-10 2.63905e-11 2.38697e-11) (-1.8566e-11 2.48308e-12 -4.54157e-12) (-4.22094e-12 -7.14974e-12 -9.84173e-12) (-1.02883e-13 -4.72927e-11 -4.06457e-11) (1.16374e-11 -1.00088e-10 -8.62986e-11) (3.70267e-11 -1.12173e-10 -1.08899e-10) (5.33913e-11 -9.20457e-11 -8.02931e-11) (4.15362e-11 -6.04762e-11 -1.98416e-11) (4.25931e-11 -5.50781e-11 3.69791e-11) (8.31796e-11 -6.03015e-11 1.83682e-10) (6.16255e-11 3.7931e-11 2.82224e-10) (-8.062e-11 1.98096e-10 1.45958e-10) (-1.10186e-09 1.49578e-09 -3.05617e-10) (-4.51914e-09 4.85975e-09 -2.21951e-09) (-7.32454e-09 5.45539e-09 -3.05721e-09) (-5.21511e-09 2.25159e-09 -1.67678e-09) (-1.23664e-09 1.91972e-10 -1.43694e-10) (-9.98547e-11 -4.87926e-11 1.65213e-10) (3.87431e-10 -2.76196e-10 1.09293e-09) (7.64995e-10 -6.74798e-10 1.3617e-09) (4.50235e-10 -4.2077e-10 4.62133e-10) (3.13531e-10 -2.84935e-10 2.00705e-11) (4.64383e-10 -3.76313e-10 -2.42836e-10) (5.61061e-10 -3.88113e-10 -3.57902e-10) (3.93231e-10 -2.09878e-10 -1.80407e-10) (1.92453e-10 -6.14537e-11 -1.7965e-11) (1.09247e-10 -1.21731e-11 3.97392e-11) (6.08213e-11 4.66105e-12 5.24514e-11) (1.15099e-11 1.50811e-11 3.24175e-11) (-4.67329e-11 7.76838e-11 5.43747e-11) (-2.60469e-10 2.97421e-10 1.13038e-10) (-2.74768e-10 2.59834e-10 6.36497e-11) (-4.35291e-11 2.0719e-11 -1.41988e-11) (2.28463e-14 -8.46297e-11 -1.27044e-10) (1.34429e-10 -3.88694e-10 -4.7639e-10) (9.38999e-11 -2.35883e-10 -2.86256e-10) (5.22741e-12 -8.39415e-12 -9.58434e-12) (1.96105e-12 1.688e-11 2.94507e-11) (-1.41822e-11 7.1311e-11 1.38686e-10) (-1.84185e-11 2.26392e-11 5.77499e-11) (-2.23123e-12 -2.56705e-13 7.45611e-13) (-7.74743e-12 -8.16682e-12 -2.59481e-11) (-1.64597e-11 -1.58645e-11 -1.23542e-10) (-2.15742e-11 -1.65548e-11 -2.36071e-10) (-3.84493e-12 -4.89124e-11 -2.86907e-10) (2.04213e-11 -9.44894e-11 -1.93194e-10) (2.30566e-11 -1.1131e-10 -5.68541e-11) (3.64173e-11 -2.03612e-10 6.79574e-11) (4.17006e-11 -3.013e-10 2.81046e-10) (1.03067e-11 -1.68468e-10 3.42901e-10) (-1.59926e-11 3.54001e-11 3.04417e-10) (-1.23511e-10 3.37498e-10 3.34081e-10) (-9.45354e-10 1.33714e-09 2.08204e-10) (-4.49043e-09 4.10551e-09 -1.29946e-09) (-7.74406e-09 5.22945e-09 -3.38423e-09) (-4.50732e-09 2.26302e-09 -2.07708e-09) (-6.19905e-10 1.94926e-10 -1.53707e-10) (-2.05576e-11 -3.73418e-11 1.39767e-10) (4.61519e-10 -4.40751e-10 1.16781e-09) (4.01246e-10 -4.92582e-10 4.27738e-10) (5.10348e-10 -5.03288e-10 2.49855e-10) (6.96947e-10 -5.37945e-10 6.69374e-12) (8.6006e-10 -5.6841e-10 -2.09105e-10) (6.32824e-10 -4.00705e-10 -2.14706e-10) (2.28426e-10 -1.42716e-10 -6.35281e-11) (3.34928e-11 -1.78667e-11 6.32954e-12) (6.97912e-12 1.79966e-12 2.62619e-11) (-2.68076e-11 3.72827e-11 1.22584e-10) (-1.39144e-10 1.22101e-10 2.67257e-10) (-3.11593e-10 2.75645e-10 3.62456e-10) (-3.39729e-10 3.81186e-10 2.98876e-10) (-1.0942e-10 1.77785e-10 9.46499e-11) (3.58923e-13 4.03777e-12 8.66392e-13) (6.98979e-11 -6.15037e-11 -6.16374e-11) (2.33718e-10 -3.0266e-10 -3.56656e-10) (1.25587e-10 -2.49991e-10 -4.56359e-10) (-1.49258e-11 -3.35715e-11 -1.78232e-10) (-1.00889e-11 1.27314e-11 -1.24537e-11) (-5.18846e-12 3.88451e-11 3.2209e-11) (1.13923e-11 4.07158e-11 6.10927e-11) (1.3288e-12 4.00473e-12 3.87161e-12) (-1.71481e-11 1.05345e-11 -4.61606e-11) (-2.22264e-10 5.16766e-11 -5.49284e-10) (-4.96253e-10 2.20074e-11 -1.30233e-09) (-3.70857e-10 -1.39086e-10 -1.12975e-09) (-5.83852e-11 -1.62523e-10 -2.80835e-10) (6.9903e-11 -2.15615e-10 3.74515e-11) (4.72513e-10 -7.7165e-10 7.77718e-10) (6.01371e-10 -8.35897e-10 1.31853e-09) (1.21758e-10 -2.07068e-10 5.38167e-10) (-3.82656e-11 2.87543e-11 7.92236e-11) (-2.41271e-10 3.45601e-10 6.22981e-11) (-7.61796e-10 1.31743e-09 2.87381e-11) (-1.67216e-09 2.27209e-09 -2.18052e-10) (-2.46982e-09 2.10685e-09 -7.53951e-10) (-1.643e-09 8.25978e-10 -7.00074e-10) (-2.60273e-10 3.91762e-11 -1.12445e-10) (-3.79816e-12 -2.70422e-11 1.56987e-11) (1.72346e-10 -2.72536e-10 2.62952e-10) (1.16692e-09 -9.886e-10 4.03838e-10) (1.33867e-09 -1.01363e-09 3.56328e-10) (8.83717e-10 -6.13956e-10 1.35138e-10) (2.74656e-10 -1.9763e-10 -7.16588e-13) (2.05198e-11 -2.43073e-11 -8.81226e-12) (-8.27474e-12 -4.32865e-12 -4.24891e-12) (-7.70667e-11 3.51143e-12 -3.20159e-12) (-1.60616e-10 3.54578e-11 3.2781e-11) (-1.64018e-10 7.27865e-11 9.52186e-11) (-1.19055e-10 1.22247e-10 1.88845e-10) (-4.71867e-11 1.9908e-10 3.4496e-10) (4.01457e-11 1.99792e-10 3.82394e-10) (6.35094e-11 7.35444e-11 2.02048e-10) (4.16524e-11 -8.11932e-12 5.04015e-11) (4.53702e-11 -3.98724e-11 -2.62054e-12) (6.12661e-11 -6.8601e-11 -9.41433e-11) (2.64862e-11 -2.97871e-11 -2.45708e-10) (-7.53168e-11 6.4644e-11 -3.16933e-10) (-1.19643e-10 8.15659e-11 -1.67565e-10) (-6.4078e-11 3.42911e-11 -2.84951e-11) (-2.14407e-11 1.08838e-11 3.24461e-12) (-6.90572e-12 5.64145e-12 6.46907e-13) (-1.34052e-11 1.65661e-11 -1.8414e-11) (-6.08311e-11 5.53042e-11 -1.39395e-10) (-1.39514e-10 4.4049e-11 -3.36974e-10) (-1.33744e-10 -5.90011e-11 -3.2244e-10) (-4.39295e-11 -1.1091e-10 -1.16294e-10) (2.30977e-11 -1.87378e-10 2.39816e-11) (2.11865e-10 -4.69774e-10 4.13728e-10) (3.99977e-10 -5.07745e-10 8.50853e-10) (1.9729e-10 -1.20746e-10 4.43407e-10) (6.85083e-12 1.58118e-11 2.33206e-11) (-1.21906e-10 2.22317e-10 -1.31287e-10) (-6.94562e-10 9.93858e-10 -6.6542e-10) (-1.00205e-09 1.44773e-09 -6.59764e-10) (-6.45358e-10 9.05293e-10 -2.78631e-10) (-1.45534e-10 1.75789e-10 -5.70695e-11) (-6.19177e-13 3.83606e-13 -6.14059e-13) (8.69723e-11 -9.05104e-11 2.32762e-11) (5.66982e-10 -5.25771e-10 2.05138e-10) (1.24237e-09 -1.11789e-09 3.95397e-10) (7.43799e-10 -6.07705e-10 2.05681e-10) (2.01722e-10 -1.16946e-10 4.17146e-11) (1.11477e-11 1.88165e-12 4.80511e-13) (-2.56045e-11 4.29958e-11 -1.30082e-11) (-3.04793e-10 2.08305e-10 -8.98075e-11) (-7.90685e-10 2.69042e-10 -1.74027e-10) (-9.25799e-10 9.13519e-11 -1.52706e-10) (-5.22889e-10 -5.7411e-11 -5.29877e-11) (-1.07012e-10 -3.31274e-11 7.64985e-12) (-3.00028e-12 -2.44276e-12 8.98154e-12) (4.43181e-11 1.69503e-11 7.30137e-11) (1.28276e-10 6.19248e-11 1.91741e-10) (1.0275e-10 5.35432e-11 1.97612e-10) (2.87673e-11 2.20263e-11 1.14952e-10) (-6.00145e-12 9.81298e-12 4.51411e-11) (-1.10865e-11 7.88478e-12 1.15102e-11) (-1.60438e-11 1.29104e-11 -2.32998e-12) (-2.71261e-11 2.19291e-11 -2.43401e-11) (-4.1153e-11 2.19484e-11 -5.47704e-11) (-6.78737e-11 1.33462e-11 -9.44737e-11) (-1.06562e-10 8.41616e-12 -1.42006e-10) (-1.26026e-10 1.80499e-11 -1.70764e-10) (-1.07409e-10 2.53747e-11 -1.58562e-10) (-6.74716e-11 1.03641e-11 -1.03516e-10) (-3.1028e-11 -9.28601e-12 -3.68657e-11) (-1.90801e-11 -2.3233e-11 -2.84077e-12) (-4.00132e-11 -1.11803e-10 7.57692e-11) (-3.94374e-11 -2.92463e-10 3.25975e-10) (2.84075e-11 -2.86281e-10 4.71784e-10) (5.35329e-11 -6.46076e-11 2.26919e-10) (2.00869e-11 2.13487e-11 2.40204e-11) (4.94956e-11 1.7091e-10 -9.76939e-11) (6.10555e-11 5.48919e-10 -5.46184e-10) (1.84915e-11 6.02315e-10 -6.78433e-10) (2.83805e-11 2.63232e-10 -2.91729e-10) (3.04971e-11 3.24452e-11 -4.26312e-11) (8.85521e-11 -3.39771e-11 -5.74672e-12) (4.67031e-10 -3.5507e-10 1.04485e-10) (1.07121e-09 -9.47551e-10 3.33744e-10) (1.57953e-09 -3.79726e-12 -8.27479e-10) (1.36563e-09 -4.68254e-12 -6.85288e-10) (9.40585e-10 -3.45715e-12 -3.17189e-10) (6.59795e-10 -1.00193e-12 -7.1296e-11) (4.66257e-10 9.65338e-13 4.14574e-11) (2.34e-10 1.32264e-12 6.18686e-11) (4.99406e-11 7.90781e-13 2.30871e-11) (2.0539e-12 6.28358e-14 1.45666e-12) (-5.43161e-13 -4.20702e-15 -7.8284e-13) (1.84801e-12 9.67266e-14 -3.9618e-12) (9.69407e-12 2.12874e-13 -8.53439e-12) (2.2599e-11 1.05217e-13 -1.22469e-11) (3.87094e-11 -3.21855e-13 -1.47898e-11) (6.19519e-11 -1.05726e-12 -1.3517e-11) (8.93564e-11 -5.31924e-13 7.8738e-14) (8.8402e-11 5.20226e-13 2.08139e-11) (3.89838e-11 1.64738e-12 1.82064e-11) (6.24263e-12 5.71851e-13 5.32088e-12) (-1.62572e-13 6.84189e-14 6.55059e-13) (-2.21954e-13 -2.15346e-14 -7.30232e-14) (5.97534e-12 -4.037e-13 -1.55324e-12) (1.16778e-10 -3.82336e-12 -8.48651e-12) (4.63725e-10 -7.13156e-12 2.80916e-11) (7.65004e-10 -4.1996e-12 1.46922e-10) (8.05076e-10 -1.54156e-12 2.4343e-10) (5.6679e-10 5.06842e-13 1.69502e-10) (1.59264e-10 1.96872e-12 1.74774e-11) (4.67154e-12 2.37339e-13 -3.91747e-12) (-5.54536e-12 1.16512e-13 -3.82363e-12) (-3.40533e-14 2.19826e-16 -5.96438e-16) (1.18498e-11 4.1201e-14 4.21398e-12) (6.10198e-11 7.91957e-13 2.35632e-11) (8.71126e-11 2.39706e-12 4.45151e-11) (7.88817e-11 2.7359e-12 5.06249e-11) (7.99391e-11 1.70895e-12 4.47299e-11) (1.25717e-10 2.38271e-13 3.25342e-11) (2.63962e-10 -1.12987e-12 -4.21243e-12) (5.28297e-10 -3.63485e-12 -1.00155e-10) (9.095e-10 -3.80638e-12 -2.85087e-10) (1.33602e-09 -3.01045e-12 -5.81107e-10) (1.52581e-08 -4.64329e-10 -4.53554e-09) (1.49367e-08 -4.69244e-10 -3.66995e-09) (1.19151e-08 -3.13645e-10 -1.76453e-09) (8.58826e-09 -1.14805e-10 -3.93992e-10) (5.89677e-09 1.12872e-11 2.75514e-10) (3.5556e-09 4.92553e-11 5.61635e-10) (1.39601e-09 3.1722e-11 3.82121e-10) (2.28858e-10 6.83959e-12 5.89214e-11) (3.12519e-11 1.12225e-12 -1.23614e-11) (5.61055e-11 2.42082e-12 -7.47118e-11) (1.70278e-10 2.8817e-12 -1.31835e-10) (3.4327e-10 -2.53171e-12 -1.30475e-10) (5.30471e-10 -6.58768e-12 -7.46622e-11) (7.30998e-10 3.13672e-13 5.26543e-11) (1.00169e-09 3.0368e-11 3.331e-10) (1.25928e-09 8.74507e-11 7.28809e-10) (1.20501e-09 1.27072e-10 8.54687e-10) (8.71892e-10 9.94995e-11 6.1017e-10) (5.31768e-10 4.56458e-11 2.70531e-10) (3.41222e-10 6.37391e-12 4.96933e-11) (4.30064e-10 -2.91049e-11 -1.14238e-10) (1.02852e-09 -8.67399e-11 -3.39559e-10) (2.48187e-09 -1.06205e-10 -2.5212e-10) (4.37876e-09 -6.84269e-11 6.03392e-10) (5.41074e-09 -7.16048e-11 1.61609e-09) (4.97115e-09 -8.75665e-11 1.56053e-09) (3.08683e-09 -1.38793e-11 5.17396e-10) (8.41274e-10 2.64415e-11 -9.83183e-11) (5.74468e-11 6.83236e-12 -3.70272e-11) (8.72792e-12 1.3662e-12 -1.00593e-12) (1.42798e-10 1.11777e-11 6.81933e-11) (6.62254e-10 3.88661e-11 3.54859e-10) (1.02221e-09 6.06777e-11 6.00978e-10) (9.55431e-10 4.80631e-11 5.79702e-10) (8.87679e-10 1.84651e-11 4.28197e-10) (1.19077e-09 -9.39633e-12 2.78591e-10) (2.20239e-09 -4.05854e-11 1.04958e-11) (4.33296e-09 -8.8222e-11 -6.31233e-10) (7.83814e-09 -1.70315e-10 -1.83906e-09) (1.21548e-08 -3.1932e-10 -3.49938e-09) (7.32059e-09 -5.5663e-10 -2.12624e-09) (7.00397e-09 -5.36183e-10 -1.58844e-09) (5.21184e-09 -3.16857e-10 -5.78381e-10) (3.26972e-09 -8.23498e-11 -6.01003e-11) (1.91317e-09 3.12519e-11 4.61342e-11) (1.26853e-09 5.48962e-11 1.38313e-10) (8.55316e-10 4.08567e-11 2.30842e-10) (3.46904e-10 1.7428e-11 1.31367e-10) (5.77093e-11 4.08151e-12 5.18473e-12) (4.79115e-11 4.46669e-12 -4.21612e-11) (1.76702e-10 8.54954e-12 -1.57082e-10) (3.59233e-10 -5.73701e-12 -1.87679e-10) (4.78231e-10 -1.64777e-11 -1.07161e-10) (5.94689e-10 -1.25048e-12 4.21571e-11) (8.92926e-10 5.13724e-11 3.84734e-10) (1.40875e-09 1.83266e-10 1.06719e-09) (1.79026e-09 2.90757e-10 1.51359e-09) (1.7605e-09 2.74735e-10 1.32015e-09) (1.51737e-09 1.88518e-10 8.15581e-10) (1.13497e-09 8.54191e-11 2.79526e-10) (7.41404e-10 -6.10907e-12 -1.26114e-10) (6.52157e-10 -7.18359e-11 -4.24972e-10) (8.34283e-10 -8.49278e-11 -4.63474e-10) (1.34067e-09 -5.13709e-11 -6.26282e-11) (1.97505e-09 -5.08035e-11 6.59088e-10) (1.93015e-09 -8.52009e-11 9.46583e-10) (1.43798e-09 -4.83549e-11 5.0973e-10) (9.44333e-10 2.25785e-11 3.30861e-11) (3.43156e-10 3.46698e-11 -1.06954e-10) (7.0923e-11 1.43924e-11 -2.86139e-11) (1.34426e-10 2.21259e-11 3.37355e-11) (6.89915e-10 7.29396e-11 3.44506e-10) (1.29467e-09 1.07553e-10 7.20459e-10) (1.25292e-09 7.11365e-11 6.87969e-10) (9.64497e-10 9.96559e-12 4.26633e-10) (8.72837e-10 -2.87063e-11 2.13729e-10) (1.0887e-09 -5.72647e-11 4.99431e-11) (1.78633e-09 -9.07698e-11 -1.84754e-10) (3.32275e-09 -1.7794e-10 -6.90011e-10) (5.61526e-09 -3.6611e-10 -1.55132e-09) (1.51428e-09 -2.41692e-10 -8.37119e-10) (1.26008e-09 -1.95392e-10 -6.22346e-10) (5.66494e-10 -5.95307e-11 -1.76779e-10) (1.40478e-10 4.58958e-12 -1.93894e-11) (1.38178e-11 5.12143e-12 -3.05723e-12) (1.25959e-12 1.68469e-12 -3.98714e-13) (2.5048e-12 2.61906e-12 5.39883e-12) (1.90379e-12 3.40487e-12 2.68443e-11) (-1.033e-11 2.13577e-12 1.15822e-11) (-1.9743e-11 2.84087e-12 -9.66474e-12) (-1.03072e-11 4.00195e-12 -5.4057e-11) (3.66862e-11 -3.23986e-12 -7.76366e-11) (5.04046e-11 -7.8427e-12 -4.3375e-11) (4.02093e-11 -1.9756e-12 -3.56477e-12) (1.30295e-10 1.94215e-11 1.0294e-10) (4.74112e-10 1.47147e-10 6.89306e-10) (8.00197e-10 2.5689e-10 1.22082e-09) (7.1283e-10 2.06378e-10 9.35861e-10) (4.68073e-10 1.09105e-10 4.38231e-10) (2.32439e-10 3.88732e-11 1.03124e-10) (8.0369e-11 2.32916e-12 -3.63762e-11) (5.97001e-11 -4.13145e-11 -2.91073e-10) (3.89251e-11 -8.89447e-11 -5.29205e-10) (8.43926e-11 -2.27725e-11 -1.04397e-10) (1.91324e-10 -1.40714e-11 8.65411e-11) (2.89161e-10 -3.15732e-11 3.54493e-10) (1.62563e-10 -2.28373e-11 2.12109e-10) (7.59285e-11 8.28059e-13 2.66998e-11) (6.91126e-11 1.31711e-11 -3.75409e-11) (2.49839e-11 1.2591e-11 -3.69343e-11) (9.08097e-12 4.84299e-12 -3.2864e-12) (1.38179e-10 2.80425e-11 8.10538e-11) (4.99146e-10 5.74857e-11 3.50414e-10) (4.7511e-10 3.04147e-11 3.44053e-10) (2.24687e-10 -5.81334e-12 1.40675e-10) (1.02461e-10 -1.39119e-11 3.12525e-11) (8.76451e-11 -1.62486e-11 -6.00838e-12) (1.38491e-10 -2.24517e-11 -3.89437e-11) (3.5474e-10 -5.03467e-11 -1.40497e-10) (9.33239e-10 -1.38827e-10 -4.65148e-10) (5.22075e-10 -1.58302e-10 -4.6397e-10) (5.94523e-10 -1.53593e-10 -5.37775e-10) (2.25631e-10 -2.94429e-11 -1.7527e-10) (2.66896e-11 8.55591e-12 -2.13871e-11) (-1.24718e-11 1.63235e-11 -1.89144e-11) (-1.13965e-10 4.53205e-11 -6.68951e-11) (-9.13975e-11 2.16842e-11 -1.57836e-11) (-7.81302e-11 6.78587e-12 5.2781e-11) (-1.69959e-10 7.24085e-12 1.21236e-10) (-2.53955e-10 1.55557e-11 3.96356e-11) (-1.67027e-10 1.03883e-11 -8.30733e-11) (-4.10639e-11 -3.80287e-12 -9.94421e-11) (-5.86224e-13 -1.14515e-11 -7.11777e-11) (-1.28015e-12 -2.16446e-12 -1.22956e-11) (1.56154e-13 1.81005e-12 4.52907e-12) (1.06071e-10 1.07395e-10 3.88537e-10) (4.44978e-10 2.96109e-10 1.33675e-09) (4.58717e-10 2.41682e-10 1.18098e-09) (2.37324e-10 1.09987e-10 5.10178e-10) (7.08853e-11 3.14159e-11 1.03706e-10) (2.1807e-12 1.03112e-12 -1.2492e-12) (-9.87971e-11 -3.39462e-11 -2.97121e-10) (-5.38333e-10 -2.09149e-10 -1.27966e-09) (-1.73102e-10 -1.15588e-10 -5.72062e-10) (1.18131e-11 -4.78088e-12 -1.28295e-12) (1.27183e-10 -2.85776e-11 2.65945e-10) (6.50753e-11 -4.35908e-11 3.725e-10) (1.24776e-11 -6.71792e-12 5.72209e-11) (5.48016e-12 1.65663e-12 -4.02132e-12) (1.17524e-11 1.74167e-11 -6.61029e-11) (-3.48618e-12 1.24518e-11 -3.36993e-11) (5.8712e-12 3.71333e-12 2.36644e-12) (1.90531e-10 2.78558e-11 1.69056e-10) (3.43637e-10 1.5073e-11 3.31227e-10) (1.56349e-10 -1.42019e-11 1.57767e-10) (3.25351e-11 -1.10342e-11 2.49766e-11) (7.38235e-12 -4.42339e-12 3.70504e-13) (4.78078e-12 -3.28593e-12 -2.94766e-12) (1.60251e-11 -8.06112e-12 -1.17356e-11) (1.40261e-10 -5.09516e-11 -1.11603e-10) (1.72741e-10 -1.08073e-10 -1.97445e-10) (3.69616e-10 -1.61945e-10 -4.49755e-10) (1.80317e-10 -3.82612e-11 -1.93294e-10) (4.57256e-11 1.64759e-11 -3.2055e-11) (1.28646e-11 3.89248e-11 -3.08029e-11) (-9.16514e-11 9.28423e-11 -1.35689e-10) (-2.14003e-10 6.78719e-11 -1.77023e-10) (-7.57752e-11 5.90937e-12 -7.05782e-12) (-1.05303e-10 -1.37837e-12 9.47596e-11) (-2.02344e-10 9.7324e-12 1.34451e-10) (-1.72726e-10 9.35652e-12 9.60011e-12) (-5.31142e-11 -3.70502e-12 -5.47827e-11) (-5.22514e-12 -1.79791e-11 -1.12852e-10) (-1.94917e-11 -1.46531e-11 -1.03071e-10) (-2.90218e-11 3.49327e-12 -2.10539e-11) (-3.0839e-11 3.7574e-11 7.28464e-11) (1.39097e-10 2.67851e-10 9.17867e-10) (4.45912e-10 3.25327e-10 1.50296e-09) (3.73854e-10 2.04504e-10 9.88594e-10) (2.21351e-10 1.18999e-10 4.32223e-10) (4.95748e-11 2.76369e-11 5.15518e-11) (-6.8705e-12 3.51674e-12 -4.93275e-11) (-5.74599e-10 -1.57956e-10 -1.2072e-09) (-8.96865e-10 -3.47125e-10 -1.76716e-09) (-2.45253e-11 -4.34572e-11 -1.17082e-10) (7.64789e-11 -2.54974e-11 1.06262e-10) (1.31009e-10 -7.29406e-11 5.64536e-10) (1.61631e-11 -4.83272e-11 3.23442e-10) (4.50368e-12 -1.55658e-12 1.30861e-11) (1.56635e-11 8.35119e-12 -3.03595e-11) (1.94933e-11 3.4284e-11 -1.29632e-10) (9.4837e-12 1.16609e-11 -2.88994e-11) (5.23638e-11 8.93111e-12 2.23369e-11) (3.44515e-10 -1.46965e-12 2.67978e-10) (4.10424e-10 -4.59305e-11 3.42778e-10) (1.87114e-10 -4.76536e-11 1.39218e-10) (4.84222e-11 -2.01317e-11 2.19362e-11) (7.29085e-12 -4.78814e-12 1.07913e-12) (1.46759e-12 -2.14103e-12 -1.1208e-13) (1.44079e-11 -1.53346e-11 -1.25875e-11) (2.55942e-11 -6.39015e-11 -8.16149e-11) (1.47708e-10 -1.61181e-10 -3.72949e-10) (7.53788e-11 -5.01901e-11 -1.89158e-10) (7.1843e-12 4.98609e-12 -1.18398e-11) (2.8908e-11 5.41862e-11 -1.71835e-11) (4.42303e-11 1.50158e-10 -1.22442e-10) (-7.28185e-11 1.26718e-10 -2.51347e-10) (-7.63104e-11 1.62587e-11 -9.21604e-11) (-2.89512e-11 -3.63686e-12 1.19852e-11) (-1.07636e-10 -4.87605e-12 1.29402e-10) (-1.3953e-10 1.96709e-12 9.91857e-11) (-3.61659e-11 -4.24349e-12 -4.18505e-13) (-2.37236e-12 -1.14064e-11 -4.622e-11) (9.20207e-13 -2.30201e-11 -1.91947e-10) (-1.54355e-10 1.06015e-12 -2.09539e-10) (-2.6235e-10 5.87431e-11 -3.34325e-11) (-1.91194e-10 1.25333e-10 2.74434e-10) (2.12564e-11 2.35762e-10 9.52458e-10) (3.00164e-10 2.34245e-10 1.19428e-09) (4.4534e-10 2.53744e-10 1.0302e-09) (3.72573e-10 1.96285e-10 5.09947e-10) (4.41637e-11 2.52964e-11 1.10509e-11) (-1.16159e-10 -5.49596e-12 -4.19512e-10) (-1.04479e-09 -3.62101e-10 -2.10559e-09) (-3.42881e-10 -2.35952e-10 -7.50316e-10) (1.46542e-11 -1.27958e-11 5.77169e-12) (1.82978e-10 -7.80471e-11 4.30765e-10) (8.48857e-11 -1.00452e-10 6.06044e-10) (9.59144e-12 -3.54965e-11 1.91336e-10) (1.80043e-12 2.47022e-14 1.19321e-12) (3.64025e-11 2.38542e-11 -9.25878e-11) (5.26599e-11 4.48413e-11 -1.93085e-10) (3.09037e-11 7.64187e-12 -3.67672e-11) (1.04064e-10 -1.06687e-11 3.55805e-11) (3.84669e-10 -7.88224e-11 2.65474e-10) (4.63129e-10 -1.25631e-10 3.39879e-10) (2.49652e-10 -8.09697e-11 1.56909e-10) (5.608e-11 -2.18655e-11 2.9167e-11) (3.19182e-12 -3.3836e-12 3.18964e-12) (-1.94728e-13 -5.68769e-12 -7.09975e-13) (-3.33358e-11 -6.0789e-11 -7.05195e-11) (-4.45275e-12 -2.00474e-10 -4.25873e-10) (5.47226e-13 -8.41054e-11 -2.5763e-10) (-9.64914e-12 1.44427e-12 -1.17382e-11) (-1.21542e-11 3.06981e-11 8.69712e-13) (7.68256e-11 1.74808e-10 -7.36466e-11) (2.40773e-10 2.83197e-10 -3.15246e-10) (8.43628e-11 7.08297e-11 -1.83085e-10) (8.82816e-13 -2.34879e-14 -4.05927e-12) (-1.79114e-11 -6.17412e-12 3.21782e-11) (-9.74387e-11 -1.67781e-11 1.28765e-10) (-6.14361e-11 -1.79018e-11 5.05869e-11) (-9.89921e-13 -3.05042e-12 -1.83681e-12) (4.07768e-11 -1.47459e-11 -1.30693e-10) (-1.2606e-10 1.42865e-11 -3.89574e-10) (-8.41194e-10 9.90594e-11 -4.43184e-10) (-1.23077e-09 1.744e-10 1.23437e-10) (-6.07459e-10 1.26833e-10 5.23756e-10) (-1.00334e-10 1.33787e-10 7.49423e-10) (4.4942e-10 3.02376e-10 1.31563e-09) (1.01996e-09 5.0889e-10 1.51071e-09) (5.56441e-10 2.77493e-10 4.26665e-10) (5.19352e-11 3.67815e-11 -6.83747e-11) (-3.31251e-10 -1.05739e-10 -1.16389e-09) (-5.33924e-10 -3.67173e-10 -1.29552e-09) (1.10072e-12 -4.26561e-11 -4.76195e-11) (1.26624e-10 -6.50142e-11 1.72164e-10) (1.56795e-10 -1.14407e-10 5.38314e-10) (2.91089e-11 -9.01001e-11 3.98637e-10) (5.17546e-12 -1.58076e-11 8.22628e-11) (2.3386e-12 1.24706e-12 -1.52025e-12) (5.00939e-11 3.97677e-11 -1.46985e-10) (6.95583e-11 2.9772e-11 -2.06002e-10) (4.10368e-11 -8.70632e-12 -3.86929e-11) (1.24973e-10 -5.31067e-11 5.03178e-11) (4.10452e-10 -1.75247e-10 3.2736e-10) (4.28468e-10 -1.79547e-10 3.58482e-10) (1.42572e-10 -6.18332e-11 1.15946e-10) (7.56565e-12 -7.01761e-12 1.24074e-11) (-6.25045e-12 -6.44452e-12 1.69211e-12) (-1.03956e-10 -7.9257e-11 -1.0359e-10) (-1.16499e-10 -2.75892e-10 -5.71861e-10) (-6.02959e-11 -1.47327e-10 -3.85192e-10) (-3.5012e-11 -2.92685e-12 -1.98777e-11) (-1.15393e-10 6.12542e-11 3.9093e-11) (-3.30667e-11 1.01782e-10 -1.12158e-11) (2.72178e-10 3.25301e-10 -2.53368e-10) (7.49065e-10 3.71674e-10 -4.95085e-10) (3.25063e-10 7.37835e-11 -1.41292e-10) (2.20353e-11 -2.16738e-13 7.9543e-12) (-1.56964e-11 -1.39585e-11 5.21756e-11) (-6.75422e-11 -4.78125e-11 8.44402e-11) (-9.41744e-12 -1.95251e-11 9.86184e-12) (3.48082e-11 -1.31741e-11 -5.15756e-11) (3.11983e-11 5.68666e-11 -4.06294e-10) (-8.17418e-10 1.68072e-10 -7.57269e-10) (-2.7832e-09 1.87764e-10 -3.88722e-10) (-2.80926e-09 -1.52609e-11 6.47875e-10) (-8.20179e-10 1.22807e-11 6.63544e-10) (6.80167e-11 1.61881e-10 8.13181e-10) (1.31482e-09 6.47164e-10 2.00096e-09) (1.58412e-09 7.51462e-10 1.44722e-09) (3.74985e-10 2.04407e-10 5.78847e-11) (7.96571e-11 4.55906e-11 -3.85928e-10) (-1.57747e-10 -2.20142e-10 -1.01856e-09) (-1.45011e-11 -1.18389e-10 -2.01518e-10) (4.92268e-11 -4.36375e-11 3.52382e-11) (1.13335e-10 -9.75663e-11 2.83072e-10) (2.27543e-11 -1.01847e-10 3.11458e-10) (-5.6428e-12 -5.18298e-11 1.7424e-10) (6.21397e-12 -8.37177e-13 3.02402e-11) (7.24685e-12 7.4031e-12 -5.13555e-12) (3.54559e-11 3.36815e-11 -1.0102e-10) (3.67418e-11 -1.03469e-12 -8.44478e-11) (4.20691e-11 -2.69117e-11 -5.78508e-12) (2.16512e-10 -1.49573e-10 1.75826e-10) (3.0741e-10 -2.21575e-10 3.43335e-10) (8.45607e-11 -8.41206e-11 1.31078e-10) (-6.79704e-12 -1.15707e-11 1.91879e-11) (-4.91992e-11 -1.67164e-11 6.70121e-12) (-1.41104e-10 -8.31817e-11 -1.20751e-10) (-1.61993e-10 -3.27411e-10 -6.57289e-10) (-1.40431e-10 -2.40191e-10 -5.57946e-10) (-6.20317e-11 -1.33957e-11 -3.44064e-11) (-1.91663e-10 6.93698e-11 1.07942e-10) (-1.56721e-10 1.36588e-10 8.02465e-11) (1.76584e-11 1.30208e-10 -4.81811e-11) (5.46427e-10 3.88254e-10 -3.39616e-10) (9.49085e-10 3.56048e-10 -3.45515e-10) (3.72691e-10 8.80803e-11 -3.72245e-11) (3.38211e-11 -5.03234e-12 2.01995e-11) (-1.00433e-11 -4.13681e-11 3.52395e-11) (-2.44202e-11 -7.07392e-11 1.37544e-11) (1.74875e-11 -2.77027e-11 -4.42324e-11) (1.16132e-10 8.87883e-11 -3.90027e-10) (-4.03122e-10 2.41283e-10 -6.46806e-10) (-2.45872e-09 2.41244e-10 -6.23622e-10) (-3.98782e-09 -2.65218e-10 5.2621e-10) (-2.04951e-09 -2.99624e-10 9.13442e-10) (-2.32239e-10 2.76987e-11 5.19133e-10) (7.0187e-10 4.15068e-10 1.29113e-09) (1.82791e-09 9.18071e-10 1.76747e-09) (9.23554e-10 5.16283e-10 4.12019e-10) (2.2163e-10 1.18102e-10 -1.71656e-10) (1.31758e-10 -5.05224e-11 -5.75207e-10) (4.69531e-11 -1.26429e-10 -2.78171e-10) (2.32569e-11 -3.66458e-11 -6.86634e-13) (3.72002e-11 -7.90325e-11 1.18141e-10) (-1.16743e-11 -1.05583e-10 1.70301e-10) (-5.13364e-12 -6.86125e-11 1.09549e-10) (2.3588e-11 -1.26787e-11 6.01034e-11) (3.23928e-11 2.18581e-11 3.30275e-11) (1.77823e-11 2.26888e-11 -1.49301e-12) (7.0852e-12 6.0914e-12 -9.35025e-12) (8.6248e-12 -6.3535e-12 -7.67542e-13) (8.07949e-11 -9.04382e-11 7.94171e-11) (1.26118e-10 -1.77682e-10 1.97819e-10) (1.01698e-11 -8.28432e-11 8.95482e-11) (-5.99021e-11 -3.32264e-11 3.64704e-11) (-1.541e-10 -3.27007e-11 7.83744e-12) (-1.1042e-10 -6.98566e-11 -9.70284e-11) (-1.53746e-10 -3.12912e-10 -5.93348e-10) (-2.82096e-10 -3.41158e-10 -7.42052e-10) (-1.62794e-10 -4.99075e-11 -1.12156e-10) (-1.37057e-10 3.91139e-11 8.46973e-11) (-1.4042e-10 1.39478e-10 1.9665e-10) (-1.94657e-11 1.19066e-10 5.44563e-11) (1.5142e-10 2.20057e-10 -6.26439e-11) (7.07301e-10 4.46565e-10 -3.00092e-10) (7.51254e-10 2.81565e-10 -2.35885e-10) (1.57666e-10 5.74685e-12 -2.26443e-11) (1.61018e-12 -3.90484e-11 5.02999e-12) (-1.28897e-10 -1.86523e-10 -4.11277e-11) (-6.37471e-11 -8.51631e-11 -1.36052e-10) (4.64922e-11 8.78321e-11 -3.23673e-10) (-1.31776e-10 2.30414e-10 -3.62606e-10) (-9.15519e-10 1.95194e-10 -2.558e-10) (-2.12045e-09 -2.47402e-10 3.61632e-10) (-1.83041e-09 -4.96892e-10 8.82625e-10) (-4.63822e-10 -9.29709e-11 5.84104e-10) (2.46638e-10 1.98587e-10 7.22192e-10) (1.37753e-09 7.53718e-10 1.30418e-09) (1.2786e-09 7.20161e-10 6.19795e-10) (4.64819e-10 2.47201e-10 -8.79095e-11) (2.41056e-10 4.36104e-11 -3.21947e-10) (9.16731e-11 -6.66454e-11 -2.15135e-10) (5.66328e-12 -2.60162e-11 -9.87592e-12) (-2.53727e-11 -8.01253e-11 5.98825e-11) (-5.5649e-11 -1.61754e-10 1.0521e-10) (9.05779e-12 -1.12329e-10 4.96215e-11) (7.80416e-11 -3.97309e-11 4.42857e-11) (2.28521e-10 7.28712e-11 1.23784e-10) (1.92466e-10 1.52832e-10 1.18176e-10) (4.13653e-11 4.63733e-11 3.09493e-11) (5.03406e-12 3.5753e-13 8.74178e-12) (1.49314e-11 -4.53797e-11 5.71692e-11) (8.15118e-12 -1.24323e-10 1.32015e-10) (-5.48705e-11 -9.98417e-11 9.03721e-11) (-1.56914e-10 -7.12191e-11 5.33556e-11) (-2.02681e-10 -4.68334e-11 2.04204e-12) (-5.60652e-11 -4.85584e-11 -5.51879e-11) (-1.14753e-10 -2.28028e-10 -3.90171e-10) (-3.99591e-10 -3.74286e-10 -7.69479e-10) (-4.22806e-10 -1.44683e-10 -3.3891e-10) (-1.36016e-10 9.5607e-12 7.06055e-12) (-4.1268e-11 7.06297e-11 1.07069e-10) (9.39245e-11 2.03334e-10 1.90873e-10) (3.21169e-10 3.78108e-10 1.04441e-10) (5.96188e-10 5.26904e-10 -1.60678e-10) (4.92525e-10 3.09599e-10 -2.516e-10) (5.02087e-11 1.05987e-11 -3.90587e-11) (-8.55293e-11 -8.77442e-11 -4.7576e-11) (-6.85157e-10 -5.1412e-10 -3.65472e-10) (-3.58835e-10 -2.53979e-10 -4.21571e-10) (-1.98634e-11 5.33811e-11 -2.14035e-10) (-1.11129e-11 1.71559e-10 -1.47341e-10) (-1.19607e-10 8.00305e-11 -2.44107e-11) (-4.97799e-10 -7.75055e-11 1.77063e-10) (-9.5381e-10 -3.68506e-10 5.95491e-10) (-5.72635e-10 -1.89503e-10 5.96223e-10) (3.43527e-11 5.84196e-11 4.05782e-10) (9.36214e-10 4.93233e-10 8.33851e-10) (1.5994e-09 7.96497e-10 6.21675e-10) (9.37258e-10 4.71999e-10 -3.8091e-11) (3.48436e-10 1.3924e-10 -2.50494e-10) (7.29853e-11 -2.95247e-12 -1.40819e-10) (-8.73326e-12 -2.02046e-11 -1.78663e-11) (-1.06854e-10 -1.33395e-10 9.04549e-12) (-1.88605e-10 -3.53796e-10 -2.68759e-11) (1.57948e-11 -3.04096e-10 -5.75885e-11) (2.59214e-10 -1.50337e-10 3.31187e-11) (8.15775e-10 1.34036e-10 3.33519e-10) (1.02381e-09 5.33831e-10 5.81787e-10) (4.67327e-10 3.30064e-10 3.50224e-10) (7.70173e-11 5.13561e-11 1.10259e-10) (3.22862e-12 -2.27641e-11 9.28888e-11) (-6.06714e-11 -1.05025e-10 1.66904e-10) (-1.37619e-10 -1.285e-10 1.35013e-10) (-1.93534e-10 -9.49602e-11 5.76688e-11) (-1.38341e-10 -4.91173e-11 -2.85049e-12) (-2.67277e-11 -3.11912e-11 -2.78501e-11) (-8.49751e-11 -1.31811e-10 -1.87391e-10) (-3.67297e-10 -3.06185e-10 -5.48383e-10) (-5.76915e-10 -2.27795e-10 -5.26578e-10) (-3.1349e-10 -2.00932e-11 -1.65702e-10) (-4.15503e-11 2.81361e-11 -1.82486e-12) (7.06402e-11 1.44176e-10 6.81285e-11) (6.4168e-10 6.51098e-10 2.16324e-10) (8.23793e-10 7.63867e-10 -1.58383e-12) (2.30594e-10 2.39837e-10 -1.06491e-10) (-9.01903e-12 5.05723e-12 -2.08323e-11) (-4.00468e-10 -2.22928e-10 -1.98204e-10) (-8.17304e-10 -6.96799e-10 -6.26644e-10) (-3.56251e-10 -3.96434e-10 -5.48701e-10) (-4.07595e-11 1.40507e-11 -1.35445e-10) (5.7971e-12 1.36534e-10 -5.75775e-11) (-4.62031e-12 7.19981e-11 1.2055e-11) (-6.36766e-11 5.97085e-12 6.44352e-11) (-5.3295e-10 -1.67495e-10 3.82468e-10) (-7.54468e-10 -1.9086e-10 5.29411e-10) (-9.80881e-11 -5.85569e-12 1.65842e-10) (2.22583e-10 1.03083e-10 1.79017e-10) (1.28027e-09 5.66874e-10 2.49931e-10) (1.49244e-09 7.17073e-10 -1.43271e-10) (6.63522e-10 3.31203e-10 -3.28032e-10) (8.00019e-11 4.13089e-11 -1.16629e-10) (-5.30138e-11 -2.7793e-11 -4.54495e-11) (-5.01976e-10 -3.99428e-10 -1.87077e-10) (-4.79169e-10 -9.36351e-10 -4.17498e-10) (2.00978e-10 -7.86399e-10 -2.5642e-10) (5.86633e-10 -3.42526e-10 5.37291e-11) (1.1167e-09 1.60579e-10 4.77952e-10) (1.4397e-09 7.90408e-10 9.15579e-10) (9.58659e-10 6.95628e-10 8.19062e-10) (3.30837e-10 2.30244e-10 4.38112e-10) (6.73985e-11 1.81815e-11 2.50512e-10) (-2.59212e-11 -6.4799e-11 2.0091e-10) (-6.25119e-11 -8.04205e-11 9.97886e-11) (-6.247e-11 -5.45591e-11 2.21273e-11) (-4.33945e-11 -3.02819e-11 -6.52589e-12) (-1.56929e-11 -2.06106e-11 -1.258e-11) (-7.29425e-11 -7.97937e-11 -7.70267e-11) (-2.48034e-10 -2.14115e-10 -2.7121e-10) (-3.57398e-10 -2.04112e-10 -3.75799e-10) (-2.91884e-10 -3.83058e-11 -3.04266e-10) (-1.97346e-10 9.9139e-11 -2.07723e-10) (-6.59043e-11 1.91336e-10 -1.1154e-10) (1.4538e-10 4.75447e-10 -4.99566e-11) (3.63488e-10 6.57312e-10 4.6761e-11) (9.91656e-11 1.8014e-10 1.6877e-11) (-3.7251e-13 3.87898e-13 -1.71396e-13) (-3.01201e-11 -8.66976e-11 -4.60593e-11) (4.9151e-11 -5.00092e-10 -3.71617e-10) (4.54537e-11 -4.33204e-10 -5.29139e-10) (-7.60546e-11 -1.10508e-11 -1.72003e-10) (-9.46766e-11 1.44544e-10 -5.00536e-11) (-1.93804e-11 1.4365e-10 4.96224e-11) (-1.43124e-11 5.04484e-11 9.00665e-11) (-2.95513e-10 -7.60266e-12 3.06927e-10) (-1.13983e-09 -9.2473e-11 5.87285e-10) (-4.83346e-10 -8.14735e-12 1.33356e-10) (2.78117e-13 6.59873e-12 -8.14215e-12) (4.80919e-10 2.28107e-10 -2.32309e-10) (1.06381e-09 4.68662e-10 -3.48087e-10) (4.84531e-10 2.5303e-10 -1.71743e-10) (1.71845e-11 1.66427e-11 -1.7505e-11) (-5.64217e-11 -4.16025e-11 -2.91382e-11) (-2.2925e-10 -5.95092e-10 -2.12825e-10) (1.94357e-10 -1.59123e-09 -4.21229e-10) (3.57231e-10 -9.71072e-10 -1.34089e-10) (9.87959e-11 -9.51274e-11 2.54481e-11) (2.25823e-10 1.07414e-10 1.39762e-10) (6.88087e-10 5.94004e-10 5.63895e-10) (6.6716e-10 7.05289e-10 7.97999e-10) (2.95721e-10 3.50138e-10 6.3443e-10) (1.07553e-10 8.58832e-11 4.32448e-10) (5.49975e-11 -3.767e-11 2.44955e-10) (2.73067e-11 -5.1855e-11 7.36303e-11) (5.43987e-12 -2.55039e-11 7.73169e-12) (-3.96564e-12 -1.36269e-11 -3.34613e-12) (-1.29416e-11 -2.12404e-11 -2.07296e-12) (-7.74382e-11 -7.64732e-11 -2.83182e-11) (-1.5126e-10 -1.57789e-10 -9.75939e-11) (-1.07285e-10 -1.23858e-10 -1.24754e-10) (-5.16051e-11 -2.56925e-11 -1.32627e-10) (-1.19848e-10 1.40592e-10 -3.03503e-10) (-4.04095e-10 5.4858e-10 -5.42645e-10) (-4.67087e-10 7.88555e-10 -3.27529e-10) (-1.28198e-10 5.2835e-10 3.02575e-12) (3.90491e-11 1.11665e-10 4.24677e-11) (1.27113e-10 -2.17958e-11 3.98585e-11) (7.64192e-10 -4.75749e-10 -5.99637e-13) (1.33979e-09 -9.57436e-10 -4.00355e-10) (5.35511e-10 -4.32925e-10 -5.71054e-10) (-4.79979e-11 -6.26633e-12 -3.35153e-10) (-2.7777e-10 1.87798e-10 -1.96396e-10) (-1.56111e-10 1.4942e-10 2.9031e-11) (-7.73443e-11 9.66589e-11 1.3921e-10) (-3.3943e-10 1.51406e-10 4.69394e-10) (-1.49768e-09 2.47035e-10 1.15763e-09) (-1.30397e-09 1.00286e-10 6.02047e-10) (-1.14375e-10 1.34527e-11 -6.76019e-11) (2.70395e-10 1.29464e-10 -8.54661e-10) (7.17082e-10 2.74765e-10 -1.20267e-09) (2.35897e-10 9.07724e-11 -2.72038e-10) (3.9116e-11 -1.14038e-11 -1.48268e-11) (2.55149e-10 -3.25359e-10 2.77156e-11) (1.24184e-09 -1.64981e-09 1.4293e-10) (9.47257e-10 -1.57525e-09 1.49532e-10) (-6.44455e-12 -2.9931e-10 3.74123e-11) (-1.93145e-10 -2.23475e-11 1.63637e-11) (-1.63631e-10 1.55234e-10 8.99967e-12) (2.24629e-11 2.713e-10 7.18704e-11) (1.78777e-10 3.97337e-10 2.98156e-10) (1.3738e-10 3.0974e-10 4.77119e-10) (7.17457e-11 1.22892e-10 4.36277e-10) (9.14614e-11 -9.25922e-12 2.59266e-10) (1.09255e-10 -5.84673e-11 1.13715e-10) (6.57943e-11 -5.0787e-11 2.78464e-11) (8.49187e-12 -1.79088e-11 1.80244e-12) (-2.74281e-11 -4.70907e-11 7.81839e-12) (-9.85187e-11 -1.06358e-10 -1.06427e-11) (-7.84443e-11 -1.23109e-10 -2.46132e-11) (-5.72791e-12 -6.68921e-11 -1.51849e-11) (1.86738e-11 -1.53009e-11 -1.74774e-11) (5.45318e-11 8.09993e-11 -1.14336e-10) (-9.94921e-11 5.61381e-10 -4.31388e-10) (-4.99934e-10 8.77077e-10 -3.70598e-10) (-1.94213e-10 3.4434e-10 7.03065e-12) (4.43889e-11 4.71645e-11 5.23875e-11) (7.73826e-10 -1.47945e-10 2.83602e-10) (1.9423e-09 -7.37626e-10 3.80591e-10) (1.12354e-09 -5.60988e-10 1.01272e-12) (2.2285e-10 -1.4531e-10 -2.05277e-10) (-2.06491e-11 1.79764e-13 -5.47819e-10) (-2.97709e-10 1.59525e-10 -5.868e-10) (-2.51694e-10 9.39326e-11 -1.3302e-10) (-2.46488e-10 8.55598e-11 9.92114e-11) (-5.26613e-10 2.64709e-10 5.38089e-10) (-1.09074e-09 5.247e-10 1.24291e-09) (-9.92629e-10 3.34081e-10 1.11929e-09) (-1.32512e-10 3.07436e-11 1.18581e-10) (3.16433e-11 -6.63499e-12 -1.30385e-10) (8.7482e-10 -1.65489e-10 -1.74275e-09) (1.16596e-09 -3.00622e-10 -1.64693e-09) (9.2758e-10 -4.36052e-10 -4.64502e-10) (1.57774e-09 -1.07788e-09 2.54508e-10) (1.78891e-09 -1.55716e-09 7.88618e-10) (5.96335e-10 -7.06673e-10 3.20211e-10) (-2.52111e-11 -5.01506e-11 1.30688e-11) (-1.29699e-09 1.90962e-10 -4.84301e-11) (-3.05331e-09 1.19136e-09 -3.70688e-10) (-1.02178e-09 8.53891e-10 -3.55703e-10) (-1.08131e-10 3.06362e-10 -6.1132e-11) (-1.44266e-11 1.38803e-10 6.59826e-11) (3.13627e-12 8.16108e-11 1.52592e-10) (7.33258e-11 1.3437e-11 1.91451e-10) (1.65137e-10 -5.77047e-11 1.79018e-10) (1.32147e-10 -8.04259e-11 9.35137e-11) (2.00039e-11 -3.96997e-11 2.11136e-11) (-6.08412e-11 -9.21995e-11 -1.20981e-11) (-5.44869e-11 -9.99939e-11 -2.81919e-11) (5.47185e-12 -8.09139e-11 -2.01629e-12) (1.00194e-10 -1.19899e-10 5.62785e-11) (2.01992e-10 -9.34401e-11 9.46115e-11) (1.96807e-10 4.20657e-11 9.53797e-12) (3.20832e-10 3.80318e-10 -1.66475e-10) (2.22881e-10 6.36868e-10 -1.95792e-10) (3.82556e-11 2.21643e-10 6.73561e-12) (3.09866e-11 2.87587e-11 4.38271e-11) (1.98285e-10 -5.46506e-11 1.63052e-10) (4.00904e-10 -1.56119e-10 2.4143e-10) (1.16221e-10 -5.72191e-11 7.00937e-11) (-3.67048e-12 -2.15267e-12 -3.50038e-12) (-2.4442e-10 9.02055e-12 -3.70733e-10) (-4.8979e-10 2.04008e-11 -1.04452e-09) (-3.20488e-10 -2.5598e-11 -5.1179e-10) (-1.73083e-10 1.47911e-12 -5.35852e-11) (-3.27375e-10 1.0681e-10 1.81516e-10) (-5.33308e-10 3.32166e-10 6.25871e-10) (-4.19755e-10 3.47486e-10 8.58384e-10) (-5.78203e-11 1.03666e-10 3.60911e-10) (1.78313e-11 -4.08497e-13 7.26058e-12) (3.20825e-10 -1.33187e-10 -3.82458e-10) (7.2979e-10 -4.18319e-10 -9.67543e-10) (6.26393e-10 -4.74485e-10 -4.29134e-10) (7.45026e-10 -7.1702e-10 4.23141e-11) (9.47949e-10 -9.88473e-10 3.2646e-10) (6.12585e-10 -5.30886e-10 1.12454e-10) (7.02804e-11 -3.01062e-11 -1.70474e-11) (-1.80035e-10 1.45032e-10 -4.3549e-11) (-3.45034e-09 1.80347e-09 -1.41492e-10) (-4.47603e-09 2.37395e-09 -8.50406e-10) (-1.20854e-09 9.89516e-10 -7.69812e-10) (-1.52805e-10 2.37255e-10 -1.79851e-10) (-1.60147e-11 2.4979e-11 3.6536e-12) (-6.36623e-12 2.65884e-12 4.87223e-11) (2.55566e-11 -3.95727e-11 1.06442e-10) (2.54955e-11 -6.3659e-11 7.19967e-11) (-1.1799e-11 -5.99273e-11 2.10703e-11) (-7.65491e-11 -1.44662e-10 -9.77543e-11) (3.87421e-11 -1.3879e-10 -5.11917e-11) (1.98333e-10 -1.95362e-10 5.44915e-11) (4.84031e-10 -2.76747e-10 3.38671e-10) (5.80203e-10 -2.07537e-10 5.04026e-10) (3.74112e-10 -2.38321e-11 2.32318e-10) (3.67024e-10 1.25323e-10 1.95489e-11) (6.48015e-10 3.72661e-10 -1.52694e-10) (5.56103e-10 3.48949e-10 -1.05116e-10) (1.93185e-10 1.23884e-10 1.2943e-11) (5.97431e-11 3.68064e-11 4.66412e-11) (5.67787e-11 2.46212e-11 1.0849e-10) (3.00737e-11 1.65546e-11 1.52139e-10) (-5.73345e-11 1.23818e-11 7.86106e-11) (-3.13514e-10 5.16619e-12 -3.98099e-11) (-6.87637e-10 -1.53579e-10 -5.6835e-10) (-6.48157e-10 -3.52166e-10 -8.85547e-10) (-4.01071e-10 -1.56942e-10 -3.85549e-10) (-3.20194e-10 5.56232e-11 -3.99359e-11) (-4.28632e-10 2.74305e-10 2.47164e-10) (-2.49889e-10 3.19173e-10 4.99173e-10) (2.92043e-11 1.71252e-10 4.37228e-10) (7.96964e-11 1.30992e-11 1.10876e-10) (6.03278e-11 -3.82043e-11 -1.30851e-11) (1.41902e-10 -2.08102e-10 -1.7799e-10) (2.68914e-10 -4.68561e-10 -2.84653e-10) (4.75506e-10 -7.41899e-10 -2.42318e-10) (5.718e-10 -7.90209e-10 -1.6287e-10) (3.84785e-10 -4.10715e-10 -1.03145e-10) (1.33364e-10 -4.81251e-11 -4.28741e-11) (3.5615e-11 8.54187e-11 -1.0073e-11) (-6.07193e-10 1.03639e-09 2.08686e-10) (-3.39917e-09 2.84088e-09 5.0962e-10) (-2.94149e-09 1.92952e-09 -6.71507e-10) (-8.8966e-10 5.94736e-10 -8.77701e-10) (-1.95718e-10 1.03906e-10 -2.82601e-10) (-7.55579e-11 4.8926e-12 -1.23605e-11) (-1.92779e-10 -3.02765e-11 8.96588e-11) (-2.4612e-10 -7.84145e-11 6.74257e-11) (-1.88038e-10 -1.18766e-10 -4.98018e-11) (6.18831e-12 -6.49871e-11 -2.39335e-11) (1.81649e-10 -1.9679e-10 -3.20457e-11) (3.68784e-10 -2.55168e-10 1.0908e-10) (4.57743e-10 -2.23193e-10 3.65566e-10) (4.02873e-10 -1.36288e-10 4.97822e-10) (2.02315e-10 -3.9657e-11 2.46422e-10) (8.50471e-11 -1.29835e-12 3.16778e-11) (1.74559e-10 2.00173e-11 -6.65245e-11) (3.36205e-10 7.40104e-11 -1.65545e-10) (3.03473e-10 1.31113e-10 -7.51515e-11) (2.45025e-10 1.7786e-10 8.49463e-11) (2.73552e-10 2.04889e-10 3.09496e-10) (2.14198e-10 1.09523e-10 4.00077e-10) (9.99809e-12 2.45008e-11 1.70674e-10) (-1.57655e-10 7.41585e-12 6.66355e-11) (-8.95697e-10 -1.23195e-10 -2.08668e-10) (-1.71584e-09 -4.9769e-10 -9.59939e-10) (-1.57954e-09 -4.50188e-10 -1.10735e-09) (-8.02038e-10 -3.57179e-11 -4.12204e-10) (-1.89289e-10 7.2645e-11 4.57698e-12) (-1.88162e-11 9.16844e-11 1.31548e-10) (2.18876e-10 1.73986e-10 4.2502e-10) (3.32791e-10 6.1059e-11 3.50759e-10) (2.00538e-10 -7.78662e-11 8.1138e-11) (2.44152e-10 -2.7114e-10 -8.3874e-11) (3.96548e-10 -6.23912e-10 -3.63305e-10) (4.80403e-10 -7.72719e-10 -5.36366e-10) (3.20178e-10 -5.61035e-10 -3.95358e-10) (7.81385e-11 -2.05118e-10 -1.22747e-10) (3.55205e-12 -1.76778e-11 -7.27705e-12) (2.73828e-12 7.42902e-12 2.8271e-12) (1.52376e-11 3.70894e-10 1.20743e-10) (-5.99501e-10 1.72586e-09 6.08875e-10) (-2.24485e-09 2.54819e-09 5.64559e-10) (-2.29699e-09 1.43309e-09 -6.84527e-10) (-1.4833e-09 4.90565e-10 -1.25737e-09) (-8.9179e-10 9.84969e-11 -7.01462e-10) (-7.35217e-10 1.49433e-11 -1.51295e-10) (-5.85487e-10 -4.11535e-11 4.03171e-11) (-1.32671e-10 -5.66825e-11 -5.34141e-12) (-4.55768e-12 -5.91695e-11 9.16145e-11) (1.3895e-10 -1.09745e-10 1.76155e-10) (3.37165e-10 -1.42814e-10 2.91335e-10) (3.70926e-10 -1.06826e-10 3.19049e-10) (2.02827e-10 -4.76199e-11 2.03901e-10) (4.27699e-11 -1.28485e-11 5.12308e-11) (2.02517e-12 -1.40723e-12 6.01193e-13) (1.09349e-11 -6.14185e-12 -2.51316e-11) (5.79484e-11 -8.51135e-13 -9.4859e-11) (1.04863e-10 3.00918e-11 -7.87654e-11) (1.76563e-10 6.72752e-11 -5.19072e-13) (3.4961e-10 8.84647e-11 1.62716e-10) (3.94157e-10 2.23395e-11 2.58155e-10) (1.43049e-10 -9.86878e-12 9.77503e-11) (2.49145e-12 -5.70189e-13 1.76781e-12) (-4.32403e-11 -7.9702e-12 -1.80799e-11) (-5.04788e-10 -8.80386e-11 -1.78285e-10) (-1.42264e-09 -2.24071e-10 -4.64174e-10) (-1.60175e-09 -2.10072e-10 -5.02478e-10) (-6.77766e-10 -7.73254e-11 -1.74711e-10) (-6.82523e-11 -9.27589e-12 4.60498e-12) (6.59511e-12 -1.47561e-12 2.65937e-11) (1.42967e-10 -1.01441e-11 1.3628e-10) (3.00724e-10 -6.87455e-11 1.33036e-10) (3.75635e-10 -1.46283e-10 -1.25473e-11) (4.96535e-10 -2.5712e-10 -2.3518e-10) (5.17833e-10 -3.58961e-10 -4.05736e-10) (2.25739e-10 -2.78267e-10 -2.52596e-10) (2.87766e-12 -1.14903e-10 -5.05512e-11) (-4.84394e-11 -6.01803e-11 1.84758e-11) (-2.64307e-11 -1.09506e-11 4.15335e-11) (2.51434e-11 7.02824e-11 7.12743e-11) (1.63437e-10 6.40434e-10 1.93477e-10) (-3.25487e-10 1.67033e-09 2.92796e-10) (-1.85702e-09 2.10086e-09 -2.81355e-11) (-3.10045e-09 1.51504e-09 -1.20315e-09) (-2.57743e-09 5.47183e-10 -1.73298e-09) (-1.20721e-09 6.2486e-11 -7.49336e-10) (-4.22443e-10 -3.95411e-11 -6.32112e-11) (-1.25579e-10 -5.14282e-11 7.32356e-11) (6.7408e-11 -1.12434e-10 8.32713e-10) (4.15441e-10 -2.61235e-10 8.52422e-10) (4.1555e-10 -2.59255e-10 4.10671e-10) (2.0237e-10 -1.31732e-10 9.06903e-11) (3.46304e-11 -2.07222e-11 1.28598e-12) (1.14698e-13 3.08755e-13 -1.0814e-12) (-1.64715e-11 1.24372e-11 -1.52681e-11) (-2.24228e-11 1.40897e-11 -3.22035e-11) (2.15051e-12 2.00657e-13 -3.02489e-11) (4.49885e-11 -1.34768e-11 -3.09293e-11) (1.81682e-10 -3.91609e-11 -4.99803e-12) (3.73723e-10 -5.80378e-11 8.81546e-11) (3.61983e-10 -5.13281e-11 1.24401e-10) (1.66771e-10 -3.82114e-11 4.10835e-11) (4.7011e-11 -2.73613e-11 -1.11879e-11) (7.6327e-12 -2.22378e-11 -2.3725e-11) (-2.55592e-11 -1.25319e-11 -2.64543e-11) (-1.34815e-10 1.79698e-11 -3.41212e-11) (-2.58196e-10 5.49596e-11 -5.22017e-12) (-1.64368e-10 9.02473e-12 1.73529e-11) (-4.99429e-11 -1.43916e-11 9.55489e-12) (-9.1195e-12 -6.55565e-12 5.90211e-13) (-1.48687e-12 -1.74123e-12 -2.35531e-12) (3.46375e-12 -5.17713e-12 -1.95316e-11) (5.75444e-11 -3.62159e-11 -1.08074e-10) (2.18174e-10 -1.34987e-10 -2.60443e-10) (2.69685e-10 -2.18192e-10 -2.35853e-10) (8.38408e-11 -1.60905e-10 -5.39388e-11) (-5.23544e-11 -1.82007e-10 5.49936e-11) (-2.56145e-10 -3.06073e-10 2.64815e-10) (-1.99329e-10 -1.7865e-10 3.4353e-10) (-1.8701e-11 3.83342e-11 2.61648e-10) (1.00921e-10 4.50329e-10 3.3535e-10) (-9.58548e-11 1.48035e-09 2.47697e-10) (-1.34569e-09 2.46627e-09 -2.74967e-10) (-3.11263e-09 2.24699e-09 -1.29723e-09) (-3.34453e-09 1.08358e-09 -2.00148e-09) (-1.63593e-09 2.97099e-10 -1.01287e-09) (-3.85743e-10 6.09771e-11 -3.51524e-11) (-1.67586e-10 6.87277e-12 2.90286e-10) (3.57884e-10 -4.58225e-10 1.2925e-09) (5.30771e-10 -6.52629e-10 8.18606e-10) (3.63074e-10 -4.53055e-10 1.53379e-10) (1.95798e-10 -2.17195e-10 -8.12524e-11) (4.76508e-11 -2.80088e-11 -5.21325e-11) (4.79606e-12 1.8338e-11 -1.48185e-11) (-1.27139e-11 7.99901e-11 -6.77525e-13) (-2.37117e-12 5.91708e-11 1.85108e-11) (1.76139e-11 1.21884e-11 1.74517e-11) (8.93557e-11 -2.47658e-11 5.3904e-11) (1.52429e-10 -6.55659e-11 7.96635e-11) (1.03125e-10 -3.70111e-11 4.65314e-11) (5.06865e-11 -1.44271e-11 9.30996e-12) (4.53711e-11 -2.73999e-11 -2.2558e-11) (6.16638e-11 -1.14812e-10 -1.3058e-10) (-2.97897e-11 -2.21995e-10 -2.91784e-10) (-1.79118e-10 -1.43906e-10 -2.71821e-10) (-1.64697e-10 3.14871e-12 -9.7748e-11) (-7.43772e-11 4.9691e-11 1.23088e-11) (-2.06326e-11 4.99717e-11 5.37313e-11) (6.19496e-12 1.94414e-11 3.12754e-11) (1.51459e-12 1.65886e-12 7.57997e-13) (5.70052e-12 8.09159e-12 -3.31558e-11) (4.42187e-11 1.94598e-11 -2.62823e-10) (1.72092e-10 -3.90016e-11 -6.43788e-10) (2.01639e-10 -1.4643e-10 -6.55634e-10) (4.27431e-11 -1.36266e-10 -2.31511e-10) (-4.8066e-11 -1.34222e-10 -2.10512e-11) (-2.71497e-10 -4.78387e-10 2.86377e-10) (-4.83328e-10 -8.59495e-10 8.02963e-10) (-3.52498e-10 -5.44125e-10 7.18477e-10) (-1.46409e-10 -4.06982e-11 3.40894e-10) (-1.50143e-10 4.20973e-10 4.1618e-10) (-4.65952e-10 1.74189e-09 6.30152e-10) (-1.41293e-09 2.78996e-09 7.83057e-12) (-2.45335e-09 2.41321e-09 -1.22151e-09) (-2.62636e-09 1.34561e-09 -1.88048e-09) (-1.46054e-09 5.10011e-10 -9.13564e-10) (-2.78075e-10 9.16264e-11 2.51537e-11) (-7.32796e-11 -3.21273e-11 4.9008e-10) (4.44147e-10 -6.31523e-10 5.1933e-10) (7.84159e-10 -1.03045e-09 4.2842e-10) (7.87812e-10 -9.02353e-10 4.84765e-11) (4.37503e-10 -4.14414e-10 -1.05721e-10) (7.01602e-11 -4.21593e-11 -2.92073e-11) (2.44057e-12 1.03436e-11 1.55945e-13) (-3.54076e-11 1.38851e-10 5.53966e-11) (-4.6606e-11 1.8356e-10 1.36829e-10) (-1.66258e-12 6.70388e-11 1.28635e-10) (2.56739e-11 -9.9046e-12 1.34281e-10) (3.25794e-11 -4.29524e-11 1.2502e-10) (2.18541e-11 -2.23237e-11 6.1675e-11) (1.6222e-11 -7.65591e-12 1.40247e-11) (4.52704e-11 -2.15224e-11 -1.29126e-11) (1.38505e-10 -8.45431e-11 -1.39609e-10) (1.44031e-10 -1.04205e-10 -3.44983e-10) (-1.52214e-11 -2.89868e-12 -4.20449e-10) (-1.89646e-10 1.23291e-10 -3.27019e-10) (-2.07351e-10 1.59636e-10 -1.06501e-10) (-9.23724e-11 9.92762e-11 3.44444e-11) (-1.31138e-11 4.39456e-11 4.81644e-11) (5.34329e-12 8.61149e-12 7.7447e-12) (1.25921e-11 7.00915e-12 -2.70048e-11) (3.64244e-11 7.58055e-12 -3.96826e-10) (-9.27268e-11 -4.7517e-11 -1.16068e-09) (-3.56756e-10 -1.53143e-10 -1.28019e-09) (-3.08143e-10 -2.2102e-10 -5.20771e-10) (-1.09331e-10 -2.20678e-10 -3.00366e-11) (4.31776e-11 -6.70111e-10 4.85929e-10) (3.80561e-10 -1.10669e-09 1.33741e-09) (1.60956e-10 -5.29065e-10 9.51803e-10) (-1.04765e-10 -4.63547e-12 2.47685e-10) (-6.06098e-10 5.60676e-10 2.71111e-10) (-1.64619e-09 2.2062e-09 3.94466e-10) (-1.79722e-09 2.7029e-09 1.78232e-10) (-1.25972e-09 1.54504e-09 -3.78003e-10) (-7.9024e-10 6.49593e-10 -6.00082e-10) (-3.40957e-10 1.93099e-10 -3.15004e-10) (-1.67984e-11 4.16556e-12 -6.29889e-12) (4.71302e-11 -9.01087e-11 1.14446e-10) (9.98592e-10 -1.02592e-09 3.58457e-10) (1.27268e-09 -1.35105e-09 4.2487e-10) (7.27674e-10 -7.79167e-10 2.14603e-10) (1.09863e-10 -1.38713e-10 3.13561e-11) (-2.82534e-12 -1.8175e-12 -1.04306e-13) (-1.20311e-10 4.69743e-11 -1.33023e-11) (-2.60806e-10 1.4185e-10 -7.69726e-12) (-1.46628e-10 1.00227e-10 2.51815e-11) (-2.87232e-11 2.81282e-11 2.66232e-11) (7.01352e-12 1.33487e-11 4.80662e-11) (9.95951e-11 1.82451e-11 1.82121e-10) (2.56571e-10 3.20273e-11 3.52546e-10) (2.68808e-10 2.07049e-11 2.84647e-10) (1.1434e-10 -3.02094e-12 7.04913e-11) (1.88758e-11 -2.04919e-12 -7.38308e-12) (-7.95865e-12 1.13641e-11 -8.3717e-11) (-1.99738e-10 1.04264e-10 -3.29001e-10) (-5.101e-10 2.17834e-10 -4.68568e-10) (-4.92122e-10 1.71916e-10 -2.78905e-10) (-1.83539e-10 5.5108e-11 -5.52681e-11) (-1.93842e-11 7.63342e-12 3.78225e-14) (-8.27143e-14 8.8597e-13 1.20965e-13) (3.39966e-12 3.83078e-12 -5.18801e-12) (5.4619e-12 1.27612e-11 -5.81714e-11) (-3.77313e-11 7.57095e-12 -2.19576e-10) (-1.09242e-10 -4.90602e-11 -3.42361e-10) (-8.37639e-11 -1.16073e-10 -2.17357e-10) (-1.4769e-11 -1.47948e-10 -5.11627e-11) (1.00896e-10 -3.46402e-10 1.6495e-10) (3.84368e-10 -6.03738e-10 6.91066e-10) (3.6278e-10 -3.52228e-10 6.98059e-10) (3.49758e-11 -9.28055e-12 1.3269e-10) (-1.39223e-10 1.46095e-10 2.09652e-11) (-1.31326e-09 1.27473e-09 -3.01928e-10) (-2.11794e-09 2.29732e-09 -5.49046e-10) (-1.09775e-09 1.42997e-09 -4.04076e-10) (-2.14759e-10 3.78452e-10 -1.87819e-10) (-1.76724e-12 3.6325e-11 -3.70218e-11) (3.44988e-11 -1.39916e-11 -7.45073e-12) (3.47998e-10 -3.01957e-10 9.39768e-11) (1.16651e-09 -1.22512e-09 2.37948e-10) (8.95336e-10 -9.84798e-10 1.70645e-10) (2.86859e-10 -2.76281e-10 4.00383e-11) (1.45536e-11 -6.11166e-12 1.42826e-12) (-2.39388e-11 3.4153e-11 -1.79844e-12) (-4.41816e-10 2.83774e-10 -4.06748e-11) (-1.41549e-09 4.37681e-10 -1.5822e-10) (-1.85664e-09 1.27358e-10 -2.40399e-10) (-1.03777e-09 -1.37655e-10 -1.62841e-10) (-1.59158e-10 -5.42024e-11 -2.90686e-11) (7.01546e-13 -8.27533e-13 8.5715e-13) (1.13545e-10 2.13317e-11 7.52856e-11) (3.08673e-10 1.13153e-10 2.75909e-10) (2.21401e-10 1.51611e-10 3.0431e-10) (5.44011e-11 1.10172e-10 1.65964e-10) (-6.65887e-12 6.51115e-11 6.38365e-11) (-1.2463e-11 3.3944e-11 1.52286e-11) (-8.21379e-12 1.44784e-11 -1.84953e-12) (-8.65271e-12 5.43922e-12 -7.8482e-12) (-2.01242e-11 -3.00111e-12 -1.92795e-11) (-4.01978e-11 -1.66199e-11 -3.71058e-11) (-4.81848e-11 -1.94651e-11 -5.04259e-11) (-4.03251e-11 -1.0205e-11 -5.76127e-11) (-3.16916e-11 -9.42017e-13 -6.38168e-11) (-2.65253e-11 2.31883e-12 -6.03383e-11) (-1.88727e-11 -1.69409e-12 -3.25046e-11) (-7.69041e-12 -4.98081e-12 -4.64538e-12) (-1.1784e-11 -2.79626e-11 2.03289e-11) (-3.35193e-12 -1.46121e-10 1.573e-10) (5.85447e-11 -2.46428e-10 2.95461e-10) (7.9196e-11 -1.23438e-10 1.71261e-10) (2.91416e-11 -5.69762e-12 2.18396e-11) (3.02111e-11 4.32689e-11 -2.01482e-11) (1.48257e-11 2.68719e-10 -1.69033e-10) (-1.24628e-10 5.25282e-10 -3.10083e-10) (-1.5439e-10 4.59892e-10 -2.48798e-10) (-2.6242e-11 1.53299e-10 -8.99677e-11) (2.05161e-11 1.31716e-11 -1.65154e-11) (1.81162e-10 -9.50348e-11 -1.02626e-11) (7.1492e-10 -6.23562e-10 9.82788e-11) (1.51829e-10 -1.64813e-12 -4.67946e-11) (7.37304e-11 -8.36293e-13 -1.54341e-11) (4.76906e-11 -5.48759e-13 -1.91969e-12) (7.72639e-11 -4.95912e-13 2.80644e-12) (1.52963e-10 3.32636e-13 6.90667e-12) (1.6265e-10 2.6896e-12 1.46497e-11) (7.66878e-11 2.44066e-12 1.85195e-11) (1.1174e-11 7.25857e-13 5.65968e-12) (-1.77393e-12 9.87823e-14 4.72866e-13) (-1.38537e-11 -1.45674e-13 -2.16744e-12) (-1.26862e-11 -2.21371e-13 -2.8598e-12) (-2.98809e-12 -1.03165e-13 -4.12728e-13) (-3.97165e-13 -4.87766e-14 -4.52531e-14) (-2.98668e-14 -2.25449e-14 -6.00964e-14) (2.02191e-13 -1.09105e-13 -7.29192e-13) (-1.85523e-13 1.76566e-14 -1.78757e-12) (-2.66291e-12 2.62334e-13 -2.55945e-12) (-6.60337e-12 3.86338e-13 -1.82338e-12) (-5.78649e-12 1.58432e-13 5.18878e-13) (-1.1279e-12 -1.07356e-14 8.55152e-13) (1.25991e-12 -1.01954e-13 1.36443e-12) (3.17778e-11 -1.06865e-12 8.00347e-12) (1.80545e-10 -3.94413e-12 2.66642e-11) (5.34542e-10 -7.50477e-12 1.11107e-10) (9.32393e-10 -4.07124e-12 3.10495e-10) (1.01743e-09 4.33676e-12 4.40726e-10) (6.56883e-10 6.43209e-12 2.87726e-10) (1.99783e-10 3.03443e-12 6.26819e-11) (2.16355e-11 6.57318e-13 -5.65454e-12) (2.85207e-12 1.60519e-13 -2.2807e-11) (6.28424e-12 -4.05506e-13 -1.73012e-11) (2.96154e-11 -5.44536e-13 -1.15635e-11) (8.45741e-11 -2.80768e-13 -3.35703e-12) (1.03074e-10 7.55497e-13 1.01295e-11) (9.9012e-11 1.09533e-12 1.66088e-11) (1.10776e-10 3.14096e-13 1.51682e-11) (1.44384e-10 -9.57882e-13 4.91578e-12) (1.8526e-10 -1.6754e-12 -1.6749e-11) (2.17111e-10 -1.37505e-12 -4.62459e-11) (2.16923e-10 -1.8487e-12 -6.48744e-11) (3.96949e-09 -1.24716e-10 -5.38149e-10) (2.35093e-09 -5.3405e-11 -9.50935e-11) (1.1572e-09 -1.49673e-11 2.62059e-11) (9.15048e-10 -6.26974e-12 -3.19061e-11) (1.35903e-09 3.14027e-12 -1.10583e-10) (1.74729e-09 3.95785e-11 -1.21919e-11) (1.34124e-09 6.05401e-11 2.18983e-10) (5.84329e-10 3.49537e-11 1.74363e-10) (1.04393e-10 4.59203e-12 2.06018e-11) (-1.72887e-12 -1.14388e-12 -5.44895e-12) (-3.22134e-11 -4.36847e-12 -1.56601e-11) (-1.66286e-11 -1.78032e-12 -1.12327e-12) (-3.60371e-12 -3.5742e-13 1.55048e-12) (-5.22288e-13 -7.28208e-15 2.24728e-13) (-3.40947e-13 1.15227e-13 -1.42141e-13) (-1.4546e-12 7.41543e-13 -2.43874e-13) (-5.61533e-12 1.99066e-12 1.9129e-12) (-7.47593e-12 1.14192e-12 4.86367e-12) (-2.37288e-12 -3.08583e-13 1.87479e-12) (6.24908e-14 -1.24273e-13 4.1968e-15) (1.42678e-11 -3.72873e-12 -5.16625e-12) (1.53655e-10 -1.57256e-11 -3.52747e-11) (7.55652e-10 -2.92e-11 -2.65241e-11) (2.66945e-09 -4.21183e-11 4.32255e-10) (5.85062e-09 -3.59082e-11 1.78406e-09) (8.15271e-09 -2.4687e-11 2.97019e-09) (7.80874e-09 -4.5604e-11 2.51251e-09) (4.94701e-09 -4.205e-11 1.05085e-09) (1.74089e-09 8.98407e-12 9.36302e-12) (3.73468e-10 1.4871e-11 -2.0017e-10) (1.11559e-10 6.70617e-12 -1.39795e-10) (1.12608e-10 4.12369e-12 -3.0283e-11) (4.08392e-10 1.5008e-11 1.12151e-10) (7.72347e-10 2.94083e-11 3.21034e-10) (9.87544e-10 2.61219e-11 3.70518e-10) (1.27544e-09 4.14153e-12 2.70456e-10) (1.83602e-09 -3.04542e-11 4.10695e-11) (2.67234e-09 -6.7129e-11 -3.22953e-10) (3.67266e-09 -1.04937e-10 -7.11852e-10) (4.43392e-09 -1.41453e-10 -8.6206e-10) (3.39151e-09 -2.17316e-10 -6.08328e-10) (2.08228e-09 -7.86967e-11 -1.24522e-10) (7.78813e-10 -1.0549e-12 3.75886e-11) (2.96603e-10 4.81334e-12 -2.34706e-11) (3.66817e-10 2.12666e-12 -1.21976e-10) (6.97428e-10 1.56583e-11 -1.68274e-10) (9.1357e-10 5.30616e-11 4.87796e-11) (8.13832e-10 6.55741e-11 2.52136e-10) (4.64179e-10 2.49735e-11 1.41377e-10) (1.15227e-10 -2.88377e-12 -6.4911e-12) (8.80351e-12 -3.33255e-12 -1.19085e-11) (-4.14571e-12 -1.42483e-12 -3.05929e-12) (-3.26352e-12 -4.47415e-13 1.87172e-12) (-3.43019e-13 4.24456e-13 2.913e-12) (1.08384e-12 1.54541e-12 1.63529e-12) (2.40032e-12 5.32616e-12 4.03232e-12) (4.83601e-12 1.27503e-11 1.8898e-11) (1.11117e-11 1.0605e-11 3.40314e-11) (1.13627e-11 1.74319e-12 1.70484e-11) (5.57979e-12 -1.24625e-12 8.84457e-13) (1.75342e-11 -8.20513e-12 -1.92581e-11) (7.37836e-11 -2.34815e-11 -8.12404e-11) (2.51857e-10 -3.27946e-11 -1.15334e-10) (1.01915e-09 -4.75029e-11 3.99058e-11) (2.7924e-09 -5.45245e-11 8.48848e-10) (4.0058e-09 -5.29658e-11 1.68281e-09) (3.8506e-09 -9.49678e-11 1.47481e-09) (3.03861e-09 -1.11777e-10 7.3708e-10) (1.7771e-09 -2.81962e-11 1.03429e-10) (6.1539e-10 3.10382e-11 -1.6275e-10) (1.39909e-10 2.52294e-11 -1.32142e-10) (4.26594e-11 1.02623e-11 -2.11534e-11) (2.30524e-10 3.17094e-11 1.12412e-10) (7.66111e-10 6.67824e-11 4.91894e-10) (1.08381e-09 5.06831e-11 6.04115e-10) (1.18374e-09 4.51236e-12 4.28115e-10) (1.34692e-09 -4.00269e-11 1.66664e-10) (1.77444e-09 -8.38952e-11 -1.51951e-10) (2.54516e-09 -1.48823e-10 -5.39393e-10) (3.40104e-09 -2.29561e-10 -8.09903e-10) (7.38823e-10 -9.35073e-11 -3.69846e-10) (2.85264e-10 -1.24921e-11 -1.07256e-10) (1.38008e-11 2.96086e-12 -2.69075e-12) (-6.09883e-12 2.22691e-12 -3.58526e-12) (-3.10851e-11 3.14581e-12 -5.32822e-11) (3.65556e-12 -6.70191e-13 -7.6194e-11) (2.42696e-11 3.44059e-12 -1.28607e-11) (6.96287e-11 1.80152e-11 4.96783e-11) (6.22891e-11 1.18431e-11 7.29001e-11) (7.0387e-12 -4.3741e-13 3.89346e-12) (-2.04323e-12 -2.36186e-12 -7.31659e-12) (-4.21349e-11 -8.61641e-12 -2.75631e-11) (-6.70736e-11 -6.22958e-12 -2.19327e-12) (-3.09134e-11 2.41777e-12 1.52675e-11) (-4.40184e-12 6.26998e-12 7.36369e-12) (4.89442e-12 1.78037e-11 1.30507e-11) (2.77525e-11 4.60963e-11 5.70051e-11) (5.6185e-11 4.21536e-11 1.06551e-10) (4.51134e-11 1.26535e-11 6.50858e-11) (7.00665e-12 -8.89109e-13 4.20712e-12) (2.73394e-12 -7.60419e-12 -1.71182e-11) (-1.65272e-12 -4.5987e-11 -1.42468e-10) (4.56885e-11 -4.41296e-11 -1.45832e-10) (1.8256e-10 -3.30623e-11 -4.86212e-11) (1.04504e-09 -4.78863e-11 3.73236e-10) (1.73603e-09 -1.07709e-11 1.07826e-09) (1.13356e-09 -3.11854e-11 8.01238e-10) (5.35004e-10 -4.38079e-11 2.71816e-10) (2.35554e-10 -1.04459e-11 2.53232e-11) (6.66235e-11 1.16388e-11 -4.37115e-11) (-1.37894e-12 2.6844e-11 -9.78338e-11) (-1.94874e-11 1.58411e-11 -3.61897e-11) (8.8419e-12 7.75574e-12 1.5218e-11) (2.69447e-10 4.42106e-11 3.07741e-10) (4.7002e-10 2.40612e-11 4.22269e-10) (3.61527e-10 -1.09109e-11 2.21587e-10) (2.3993e-10 -2.18211e-11 5.77974e-11) (2.41065e-10 -2.90759e-11 -4.00447e-11) (4.13346e-10 -5.5894e-11 -1.85566e-10) (7.10397e-10 -1.03869e-10 -3.82669e-10) (3.14879e-10 -7.18332e-11 -3.11642e-10) (1.29904e-10 -5.2575e-12 -1.42526e-10) (-1.84147e-12 5.96431e-12 -1.04251e-11) (-1.60733e-10 4.25495e-11 -4.36891e-11) (-5.09958e-10 4.03482e-11 -2.79808e-10) (-4.34686e-10 -2.57046e-11 -4.86417e-10) (-7.91691e-11 -5.28982e-12 -1.23999e-10) (-8.28731e-13 1.82034e-12 2.54121e-12) (6.66759e-13 1.68581e-11 1.00535e-10) (-8.74805e-12 -5.78394e-14 3.20281e-11) (-2.13372e-11 -3.99014e-12 -6.37979e-12) (-1.94776e-10 -2.29618e-11 -9.28033e-11) (-4.5344e-10 -3.19752e-11 -8.5594e-11) (-4.11999e-10 1.4711e-12 4.43291e-11) (-1.18456e-10 3.80977e-11 4.97484e-11) (-1.698e-11 4.22872e-11 2.9578e-11) (2.35004e-11 8.05326e-11 7.85386e-11) (6.58908e-11 7.57897e-11 1.57263e-10) (5.2036e-11 2.55261e-11 1.11749e-10) (4.63952e-12 -3.60215e-13 8.70139e-12) (-6.5002e-12 -8.58762e-12 -1.54527e-11) (-1.21578e-10 -1.10952e-10 -2.96466e-10) (-1.34537e-10 -1.68887e-10 -4.97035e-10) (4.28313e-11 -4.99105e-11 -1.10756e-10) (4.04951e-10 -4.91121e-11 1.08324e-10) (1.89072e-09 1.06652e-11 1.25475e-09) (1.60344e-09 6.03286e-12 1.45855e-09) (5.31911e-10 -5.64168e-11 5.31856e-10) (1.06723e-10 -1.33782e-11 5.91232e-11) (1.3963e-11 4.99239e-12 -1.35522e-11) (-7.02901e-11 5.94216e-11 -1.75843e-10) (-2.5446e-10 9.89379e-11 -2.5737e-10) (-3.03095e-11 1.55763e-11 1.36321e-12) (7.42084e-11 2.95896e-11 1.87069e-10) (3.66374e-10 1.03667e-11 4.924e-10) (2.84692e-10 -2.6157e-11 2.86045e-10) (1.02286e-10 -1.96309e-11 6.60353e-11) (3.46751e-11 -9.32407e-12 1.24557e-12) (5.90652e-11 -1.80522e-11 -4.02144e-11) (1.92074e-10 -5.67112e-11 -1.81372e-10) (2.03102e-10 -6.55075e-11 -2.09402e-10) (1.80947e-10 -1.12733e-11 -2.03054e-10) (1.95794e-11 1.84114e-11 -3.35523e-11) (-5.08157e-11 3.7015e-11 -2.09179e-11) (-4.16796e-10 8.06544e-11 -2.07594e-10) (-8.42065e-10 -4.30583e-11 -8.294e-10) (-5.83584e-10 -1.03248e-10 -7.87623e-10) (-7.01758e-11 -7.65159e-13 -6.37971e-11) (-9.4809e-12 9.3205e-12 4.42187e-11) (-5.31146e-12 6.00711e-12 1.43884e-10) (-8.75187e-12 -1.51319e-12 1.16477e-11) (-9.05553e-11 -1.01836e-11 -3.87081e-11) (-6.00707e-10 -4.55841e-11 -1.88111e-10) (-1.25601e-09 -4.45069e-11 -8.77653e-11) (-7.84667e-10 1.01136e-10 1.27022e-10) (-1.40222e-10 1.20343e-10 8.80076e-11) (6.88947e-12 1.35307e-10 1.10944e-10) (9.7198e-11 1.39082e-10 2.30336e-10) (1.07616e-10 6.58179e-11 2.31833e-10) (2.64379e-11 5.38613e-12 5.33949e-11) (-2.78187e-13 -1.53956e-12 -1.27752e-12) (-1.09974e-10 -1.11347e-10 -2.54867e-10) (-4.24624e-10 -3.90967e-10 -1.00248e-09) (-1.51661e-10 -2.51402e-10 -5.94395e-10) (5.26314e-11 -3.01995e-11 -2.64249e-11) (1.17395e-09 -1.41119e-11 6.96517e-10) (2.63517e-09 7.39685e-11 2.14811e-09) (1.44223e-09 -9.32114e-11 1.48165e-09) (4.06789e-10 -6.67961e-11 3.96994e-10) (6.00979e-11 4.005e-12 1.21058e-11) (9.99716e-12 4.47305e-11 -9.51869e-11) (-2.51445e-10 1.6929e-10 -4.06338e-10) (-1.68173e-10 7.55162e-11 -1.06628e-10) (1.62334e-13 1.34387e-11 4.5127e-11) (4.04592e-10 -1.5708e-12 5.66591e-10) (6.93951e-10 -7.41787e-11 7.09594e-10) (3.64756e-10 -6.0522e-11 3.07692e-10) (9.07766e-11 -2.07515e-11 5.71252e-11) (2.56791e-11 -9.03116e-12 2.82344e-13) (6.8391e-11 -2.90191e-11 -5.14836e-11) (8.42831e-11 -4.18998e-11 -1.03881e-10) (1.33812e-10 -1.89404e-11 -1.90239e-10) (4.84566e-11 2.99032e-11 -5.66095e-11) (-5.11762e-13 3.24009e-11 -5.71333e-12) (-8.11835e-11 5.94991e-11 -3.89541e-11) (-4.44815e-10 2.2929e-11 -4.8231e-10) (-8.5287e-10 -2.00854e-10 -1.30678e-09) (-5.02377e-10 -1.12681e-10 -6.01326e-10) (-6.04248e-11 -1.83253e-12 -4.36093e-12) (-3.12418e-11 4.74038e-12 1.30985e-10) (-2.58883e-12 4.84013e-12 9.83529e-11) (-2.87339e-12 3.88983e-13 1.54873e-12) (-1.922e-10 -5.86999e-12 -8.38355e-11) (-1.52813e-09 -7.91942e-11 -3.27399e-10) (-2.54919e-09 7.55228e-11 -4.68996e-11) (-7.97802e-10 2.85549e-10 1.96617e-10) (-7.39856e-11 2.06081e-10 1.61804e-10) (1.29069e-10 2.16778e-10 2.89736e-10) (2.432e-10 1.51279e-10 4.11807e-10) (1.62605e-10 4.85696e-11 2.39155e-10) (2.27203e-11 -1.93443e-12 1.80262e-11) (-4.42825e-12 -3.80704e-11 -6.69059e-11) (-4.05158e-10 -4.43866e-10 -1.00183e-09) (-7.51296e-10 -7.06394e-10 -1.57718e-09) (-6.96716e-11 -1.42309e-10 -2.55876e-10) (1.81758e-10 -2.46641e-11 8.26413e-11) (2.2671e-09 8.73329e-11 1.6855e-09) (2.68382e-09 -4.35152e-11 2.35567e-09) (1.19979e-09 -1.5333e-10 1.21118e-09) (2.98896e-10 -1.73019e-11 2.23846e-10) (5.60936e-11 2.85964e-11 -2.83094e-11) (-4.74305e-11 1.59096e-10 -3.26055e-10) (-2.68948e-10 1.73259e-10 -3.74178e-10) (-1.80538e-11 9.17709e-12 -4.61428e-12) (1.37849e-10 -1.94289e-11 2.11139e-10) (9.5009e-10 -1.67569e-10 9.66085e-10) (1.02585e-09 -1.73709e-10 9.13528e-10) (4.09445e-10 -6.38501e-11 3.48111e-10) (7.4812e-11 -1.63428e-11 5.1202e-11) (2.41501e-11 -1.1666e-11 -6.35285e-12) (2.18308e-11 -2.47608e-11 -6.22524e-11) (6.87914e-11 -3.02172e-11 -2.08991e-10) (3.58436e-11 2.20797e-11 -6.64267e-11) (1.62623e-11 4.14817e-11 2.16542e-12) (5.65026e-12 5.45136e-11 1.06161e-11) (-1.53848e-11 2.87985e-11 -5.96834e-11) (-2.12599e-10 -7.04458e-11 -7.26966e-10) (-5.08161e-10 -2.09689e-10 -1.03121e-09) (-3.01614e-10 -7.56768e-11 -2.17709e-10) (-1.28951e-10 -1.94156e-11 6.27659e-11) (-5.47121e-11 7.19429e-12 1.42634e-10) (4.59103e-12 1.11768e-11 3.69916e-11) (-3.1047e-12 2.44514e-12 -1.72001e-12) (-6.61381e-10 7.68969e-13 -2.35638e-10) (-4.17781e-09 -5.74466e-11 -6.19208e-10) (-3.21463e-09 4.25256e-10 8.41148e-11) (-3.73344e-10 2.8804e-10 2.20451e-10) (7.16964e-11 2.32913e-10 2.89851e-10) (3.29754e-10 2.17937e-10 5.00366e-10) (4.33777e-10 1.42401e-10 5.3203e-10) (2.78242e-10 3.77985e-11 2.34764e-10) (4.98963e-11 -1.50315e-11 -6.09335e-12) (-5.68152e-11 -2.22337e-10 -4.53624e-10) (-1.04549e-09 -9.68978e-10 -2.06344e-09) (-8.36091e-10 -6.22165e-10 -1.25022e-09) (-5.36937e-12 -1.2615e-11 -1.44488e-11) (7.06747e-10 1.42319e-11 5.30082e-10) (3.1618e-09 3.06089e-12 2.43441e-09) (2.60145e-09 -2.02445e-10 2.19692e-09) (9.56499e-10 -7.79527e-11 8.43928e-10) (1.7533e-10 3.40384e-11 6.90104e-11) (6.76309e-11 9.0547e-11 -1.2843e-10) (-1.06492e-10 2.08901e-10 -4.64121e-10) (-8.34265e-11 4.73055e-11 -1.46774e-10) (4.23448e-12 -3.75356e-12 4.95762e-12) (5.01485e-10 -1.96678e-10 5.22468e-10) (1.25197e-09 -3.34863e-10 1.2787e-09) (8.03314e-10 -1.43629e-10 8.67612e-10) (1.63488e-10 -2.4688e-11 1.92406e-10) (7.18417e-12 -3.77852e-12 3.17739e-12) (-2.24993e-11 -2.79251e-11 -8.23791e-11) (-1.68161e-12 -5.6158e-11 -3.18532e-10) (3.53274e-12 1.35409e-11 -8.88897e-11) (-2.88375e-12 2.71259e-11 4.48844e-12) (3.69882e-12 8.0238e-11 5.21851e-11) (3.57751e-11 3.90125e-11 -6.51373e-12) (2.0536e-10 2.32382e-11 -3.09609e-10) (1.44743e-10 -1.18372e-10 -7.99797e-10) (-2.15954e-10 -1.23381e-10 -4.21459e-10) (-4.50805e-10 -1.00578e-10 -6.35545e-11) (-3.98893e-10 -2.90959e-11 1.76836e-10) (-3.23458e-11 1.89428e-11 6.61808e-11) (2.24232e-11 2.16381e-11 1.2555e-11) (-3.59706e-11 2.06746e-11 -3.05882e-11) (-2.99984e-09 2.44541e-11 -7.34968e-10) (-6.98727e-09 2.45255e-10 -6.93168e-10) (-1.44366e-09 3.66207e-10 2.12819e-10) (-3.31929e-11 1.50806e-10 1.99978e-10) (3.00853e-10 2.05363e-10 4.74376e-10) (6.23449e-10 2.11582e-10 7.01861e-10) (8.3004e-10 1.74821e-10 6.85154e-10) (4.94395e-10 2.23684e-11 1.94395e-10) (1.16453e-10 -6.57593e-11 -1.22425e-10) (-4.54014e-10 -6.12749e-10 -1.36052e-09) (-2.122e-09 -1.18193e-09 -2.55766e-09) (-6.04703e-10 -2.33765e-10 -4.95695e-10) (2.34482e-11 -4.68903e-12 2.38184e-11) (2.10423e-09 -6.22932e-11 1.53272e-09) (4.16463e-09 -2.90419e-10 2.98052e-09) (2.36912e-09 -1.664e-10 1.7736e-09) (6.16147e-10 4.54898e-11 4.25227e-10) (8.71215e-11 5.16535e-11 -5.24657e-12) (3.40958e-11 1.23708e-10 -2.10282e-10) (-4.22768e-11 8.07358e-11 -2.89364e-10) (4.6103e-12 -8.69363e-12 -2.32389e-11) (1.67982e-10 -1.22802e-10 1.35429e-10) (7.33846e-10 -3.55964e-10 9.03978e-10) (5.24744e-10 -1.89711e-10 8.85254e-10) (5.6247e-11 -2.48429e-11 2.20636e-10) (-3.78716e-12 -2.06878e-12 4.10576e-12) (-8.99917e-11 -4.49248e-11 -1.31578e-10) (-1.32768e-10 -1.03654e-10 -4.67e-10) (-8.04547e-11 3.42786e-12 -1.81595e-10) (-3.89341e-11 3.68333e-11 5.09864e-12) (-5.23901e-11 1.09778e-10 1.18754e-10) (3.04294e-11 4.58166e-11 3.56188e-11) (3.98169e-10 6.68223e-11 -1.89089e-10) (9.60919e-10 -5.12962e-11 -9.76841e-10) (1.0658e-10 -9.49685e-11 -5.73876e-10) (-7.03474e-10 -1.37848e-10 -3.26127e-10) (-1.94098e-09 -1.89047e-10 8.51835e-11) (-3.56868e-10 4.14347e-12 1.13847e-10) (3.19355e-11 2.574e-11 1.37852e-11) (7.00676e-11 6.61073e-11 -2.75464e-11) (-8.02682e-10 1.41129e-10 -2.75918e-10) (-7.69668e-09 8.87649e-11 -1.16156e-09) (-3.49365e-09 1.66413e-10 -1.30532e-10) (-8.39616e-11 5.03909e-11 8.0404e-11) (2.32896e-10 1.28614e-10 3.57093e-10) (6.70254e-10 1.98942e-10 7.25488e-10) (1.15032e-09 2.79835e-10 9.62238e-10) (1.29983e-09 2.15928e-10 6.9479e-10) (4.8392e-10 -1.18368e-12 -1.09546e-11) (4.70927e-11 -1.62641e-10 -4.7555e-10) (-1.92547e-09 -8.94566e-10 -2.42609e-09) (-2.71106e-09 -6.85507e-10 -1.81529e-09) (-7.74412e-11 -2.66473e-11 -2.01185e-11) (7.70387e-10 -1.25666e-10 5.71464e-10) (4.23567e-09 -5.09321e-10 2.70925e-09) (4.05677e-09 -3.81932e-10 2.44932e-09) (1.73897e-09 2.1624e-11 1.01036e-09) (3.52561e-10 1.08377e-10 1.73475e-10) (3.4778e-11 4.30887e-11 -1.81346e-11) (1.93466e-13 4.09214e-11 -9.98919e-11) (7.82683e-12 -1.08873e-11 -4.65023e-11) (6.57477e-11 -6.60257e-11 2.35757e-11) (3.04467e-10 -2.31941e-10 3.76136e-10) (1.90261e-10 -1.44607e-10 4.66858e-10) (-2.61196e-11 -2.22718e-11 1.51624e-10) (-4.32482e-11 -7.17543e-12 1.19946e-11) (-1.20897e-10 -4.92597e-11 -1.29712e-10) (-2.88896e-10 -1.46222e-10 -5.18241e-10) (-3.2383e-10 -3.97554e-11 -3.8083e-10) (-1.60504e-10 5.52059e-11 -2.66093e-11) (-8.89909e-11 1.00679e-10 1.22751e-10) (4.84549e-11 7.31932e-11 1.00231e-10) (4.17584e-10 1.02872e-10 -5.53776e-11) (1.19398e-09 1.26372e-10 -8.85592e-10) (2.42711e-10 1.03957e-11 -7.57929e-10) (-1.15783e-09 -1.08027e-10 -6.57057e-10) (-4.58462e-09 -4.90069e-10 -3.12823e-10) (-1.50547e-09 -2.24633e-10 4.73802e-11) (1.96972e-12 1.40458e-12 -5.74323e-13) (2.64941e-10 1.71808e-10 -5.053e-11) (-9.7044e-11 1.00283e-10 -5.20306e-11) (-4.38269e-09 2.25813e-10 -6.79659e-10) (-4.13971e-09 -2.2883e-10 -4.6264e-10) (-1.47652e-10 -6.48986e-12 2.48831e-11) (1.28119e-10 3.48962e-11 1.52607e-10) (6.59405e-10 1.61522e-10 6.42113e-10) (1.08475e-09 2.84157e-10 9.63114e-10) (1.56462e-09 3.71716e-10 9.83277e-10) (1.17729e-09 2.09142e-10 2.91833e-10) (2.18053e-10 7.98955e-12 -1.75096e-10) (-6.74427e-10 -1.94071e-10 -1.11614e-09) (-3.5929e-09 -6.22867e-10 -2.26e-09) (-7.52897e-10 -1.94254e-10 -2.35919e-10) (1.2174e-10 -8.32657e-11 1.12953e-10) (2.34447e-09 -5.92801e-10 1.27434e-09) (3.97581e-09 -6.71892e-10 1.82258e-09) (3.12019e-09 -1.77129e-10 1.29814e-09) (1.46546e-09 2.03002e-10 6.68087e-10) (2.77377e-10 1.33608e-10 1.44692e-10) (7.91613e-12 1.20071e-11 8.19265e-14) (-1.60835e-13 -8.75944e-13 -2.52426e-12) (1.38239e-11 -2.76648e-11 5.6666e-12) (8.85178e-11 -1.08934e-10 1.12243e-10) (5.36729e-11 -7.20932e-11 1.51293e-10) (-2.076e-11 -1.25991e-11 5.60262e-11) (-4.63915e-11 -6.81465e-12 5.24424e-12) (-1.16276e-10 -3.79485e-11 -8.87461e-11) (-3.64532e-10 -1.54943e-10 -3.98453e-10) (-5.64234e-10 -1.26886e-10 -4.85805e-10) (-3.70237e-10 2.76534e-11 -1.40532e-10) (-8.40022e-11 4.77595e-11 2.51183e-11) (3.21862e-11 4.91263e-11 3.59841e-11) (4.7337e-10 2.06454e-10 -5.366e-11) (7.60016e-10 3.09385e-10 -5.57462e-10) (-3.32691e-11 1.31161e-10 -4.65298e-10) (-2.47834e-09 -4.21873e-12 -8.18461e-10) (-6.69724e-09 -9.69976e-10 -3.37205e-10) (-2.35992e-09 -7.52533e-10 -1.48856e-10) (-3.07428e-11 -2.49587e-11 -1.98746e-11) (1.2033e-10 9.07149e-11 -3.68882e-11) (9.35883e-14 1.73602e-10 -3.38647e-11) (-1.11877e-09 2.79409e-10 -2.08807e-10) (-2.20523e-09 -2.29003e-10 -3.60906e-10) (-3.32231e-10 -1.01815e-10 -2.62753e-11) (1.08854e-11 -2.5565e-12 1.97901e-11) (4.29363e-10 9.72574e-11 3.59463e-10) (9.66643e-10 2.7515e-10 8.03876e-10) (1.50846e-09 4.20081e-10 9.71102e-10) (1.73243e-09 4.54168e-10 5.82174e-10) (7.1778e-10 2.29487e-10 -9.60032e-11) (-3.78578e-11 6.63121e-11 -2.61928e-10) (-1.85398e-09 -9.47137e-11 -1.16049e-09) (-1.49261e-09 -3.62619e-10 -4.23131e-10) (-3.54927e-11 -7.60837e-11 1.24816e-11) (5.61685e-10 -3.45504e-10 1.50112e-10) (2.32035e-09 -7.63505e-10 4.48733e-10) (3.39311e-09 -5.12837e-10 8.74869e-10) (2.97779e-09 9.65196e-11 1.22096e-09) (1.49707e-09 3.34454e-10 9.10414e-10) (2.81334e-10 1.19471e-10 2.41605e-10) (1.08349e-11 1.64574e-12 1.76318e-11) (2.45947e-12 -1.72012e-11 1.54004e-11) (1.38285e-11 -4.65435e-11 4.5713e-11) (9.47801e-12 -2.4113e-11 3.93076e-11) (-4.45839e-12 -2.35032e-12 9.46401e-12) (-2.45521e-11 -1.97848e-12 -1.28087e-12) (-9.12393e-11 -2.1847e-11 -3.75355e-11) (-3.10107e-10 -1.32075e-10 -2.01871e-10) (-4.8367e-10 -1.76556e-10 -3.4153e-10) (-3.62844e-10 -4.91029e-11 -2.05134e-10) (-1.0426e-10 2.48698e-11 -5.47892e-11) (5.51867e-12 4.1896e-11 -3.44214e-11) (2.61804e-10 2.85771e-10 -2.32334e-10) (1.5968e-10 3.78073e-10 -3.29796e-10) (-5.40542e-10 3.49568e-10 -2.91451e-10) (-3.92048e-09 1.31917e-10 -9.93964e-11) (-4.01095e-09 -1.12685e-09 1.13543e-10) (-7.56405e-10 -7.48534e-10 -1.99208e-10) (-3.80996e-11 -1.36747e-10 -9.01219e-11) (-5.73073e-13 1.60546e-11 -1.21064e-11) (-3.5483e-11 3.16728e-10 -4.615e-11) (-1.77085e-10 1.99654e-10 -6.87388e-11) (-3.09128e-10 -1.28925e-11 -8.40048e-11) (-2.38731e-10 -1.03155e-10 -2.91783e-11) (-3.3108e-11 -1.37829e-11 9.12898e-12) (1.17035e-11 8.78895e-12 2.06781e-11) (2.99602e-10 1.2384e-10 2.01234e-10) (1.05708e-09 3.32121e-10 5.05373e-10) (1.7723e-09 5.10302e-10 5.64541e-10) (1.38367e-09 5.47423e-10 1.37518e-10) (1.42633e-10 1.57134e-10 -7.79606e-11) (-3.40887e-10 9.2255e-11 -1.80809e-10) (-1.10883e-09 -2.54631e-10 -2.39427e-10) (-2.77601e-10 -3.03174e-10 -8.20431e-11) (2.08336e-10 -3.91049e-10 -1.20354e-10) (1.30778e-09 -7.58334e-10 -2.64108e-10) (2.08432e-09 -5.20484e-10 1.2151e-11) (2.29202e-09 -4.17578e-11 7.5727e-10) (2.17472e-09 3.51785e-10 1.521e-09) (1.00684e-09 2.61188e-10 1.07289e-09) (1.66023e-10 3.1915e-11 2.99474e-10) (1.15293e-11 -2.05018e-11 7.44085e-11) (3.45477e-12 -1.95075e-11 3.37051e-11) (4.02994e-12 -4.28043e-12 9.48095e-12) (1.0488e-13 2.09312e-13 6.10534e-13) (-8.48338e-12 1.41383e-12 -9.47251e-13) (-3.38307e-11 -8.01611e-12 5.60584e-12) (-1.57029e-10 -7.98857e-11 -4.41138e-11) (-2.44054e-10 -1.39888e-10 -1.51541e-10) (-1.51127e-10 -6.60694e-11 -1.32407e-10) (-6.23286e-11 5.11489e-13 -8.98488e-11) (-5.07835e-11 9.6751e-11 -2.0603e-10) (-1.57328e-10 4.74809e-10 -5.31742e-10) (-8.9449e-10 1.09651e-09 -6.29458e-10) (-2.56858e-09 1.26519e-09 -1.23023e-10) (-2.49758e-09 1.08455e-12 4.06627e-10) (-3.36956e-10 -5.17096e-10 3.37524e-11) (8.38239e-10 -1.39652e-09 -4.49826e-10) (5.26385e-10 -4.91559e-10 -3.48737e-10) (-3.65566e-11 3.66948e-11 -2.89168e-11) (-7.38157e-10 8.16867e-10 -6.14439e-11) (-3.26119e-10 4.3118e-10 -8.58817e-11) (-1.95291e-11 1.30459e-11 -1.04494e-11) (-8.62538e-12 -1.1938e-11 3.27175e-12) (-1.10926e-11 -1.57842e-11 1.50255e-11) (-4.25851e-13 5.70863e-15 3.61068e-12) (1.94653e-11 1.47744e-11 3.56182e-12) (1.23245e-10 6.66207e-11 -1.39976e-11) (2.70479e-10 1.3746e-10 -2.15895e-11) (3.99799e-10 2.47527e-10 3.74478e-11) (2.11897e-10 2.2215e-10 6.92945e-11) (-7.80647e-12 3.06663e-11 1.53556e-11) (-8.62166e-11 -4.33029e-11 1.35612e-11) (-7.43255e-11 -3.2448e-10 -3.67569e-11) (2.4949e-10 -6.7392e-10 -1.79696e-10) (4.87173e-10 -4.77305e-10 -3.12936e-10) (5.87181e-10 -1.59328e-10 -3.49882e-10) (5.35138e-10 2.31196e-11 -8.27167e-11) (6.37137e-10 1.21379e-10 4.12772e-10) (6.43783e-10 1.87025e-10 1.01532e-09) (1.73701e-10 7.37068e-11 6.33019e-10) (6.3938e-13 -2.58996e-12 1.58371e-10) (3.15543e-12 -4.23848e-12 2.32538e-11) (8.8302e-12 4.40731e-13 6.59464e-12) (7.52911e-12 3.96743e-12 4.42842e-12) (-1.06035e-12 1.57479e-12 2.46677e-12) (-1.38802e-11 -6.9731e-12 3.9569e-11) (-6.97815e-11 -4.50091e-11 1.39413e-11) (-1.15521e-10 -9.87609e-11 -6.73749e-11) (-3.63953e-11 -5.23868e-11 -6.84366e-11) (2.16906e-13 -4.59836e-12 -3.59873e-11) (-7.452e-11 8.88271e-11 -1.49554e-10) (-1.35513e-09 1.00338e-09 -8.87876e-10) (-4.30382e-09 2.71552e-09 -1.14978e-09) (-2.94981e-09 1.34723e-09 5.71911e-11) (-9.33999e-11 -3.78573e-11 3.90379e-11) (1.95053e-09 -1.86913e-09 -7.46179e-11) (7.2126e-09 -4.79253e-09 -1.06864e-09) (2.79936e-09 -1.34111e-09 -8.40803e-10) (1.60491e-11 6.62319e-11 -7.18983e-11) (-1.92922e-09 1.71389e-09 -1.30282e-10) (-1.93026e-09 1.41717e-09 3.38722e-11) (-1.51232e-10 7.75425e-11 5.85458e-12) (-9.07177e-12 -1.17517e-11 1.16063e-11) (-1.99783e-11 -4.16191e-11 5.61568e-11) (-1.19379e-11 -1.75436e-11 4.41231e-11) (7.73245e-12 -4.19401e-13 6.11685e-12) (1.37244e-10 2.53644e-11 -6.48707e-11) (2.90348e-10 1.42709e-10 -3.0235e-10) (9.62147e-11 1.70662e-10 -1.98928e-10) (4.05179e-12 7.8105e-11 -1.10901e-11) (3.20572e-12 1.95224e-11 3.55018e-11) (5.00521e-11 -1.08006e-10 9.7231e-11) (2.85169e-10 -7.05012e-10 1.63376e-10) (1.47042e-10 -5.51692e-10 5.1875e-11) (-7.3602e-12 -3.79199e-11 -1.77066e-11) (6.77218e-12 7.88467e-11 -2.28898e-10) (2.20602e-10 2.51732e-10 -5.62359e-10) (7.24516e-11 5.15778e-11 -5.4889e-11) (2.20391e-11 3.79737e-11 1.10817e-10) (-8.60181e-11 6.49095e-11 3.71998e-10) (-6.34122e-11 2.24081e-11 1.54812e-10) (4.09945e-13 1.94605e-12 1.46772e-11) (2.8957e-11 4.74091e-12 1.44816e-11) (7.05225e-11 1.7346e-11 4.32627e-11) (3.3198e-11 1.20893e-11 5.90297e-11) (-1.78813e-11 -1.48127e-12 6.66167e-11) (-5.38449e-11 -2.55052e-11 8.65986e-12) (-7.01351e-11 -7.64363e-11 -6.53859e-11) (8.40092e-12 -6.04089e-11 -5.34186e-11) (4.44917e-11 -1.39733e-11 -1.25299e-11) (1.37753e-11 3.96416e-11 -5.74507e-12) (-7.65075e-10 7.63103e-10 -1.85235e-10) (-3.16021e-09 1.90979e-09 -3.13193e-10) (-6.16475e-10 2.75779e-10 7.31661e-11) (4.13797e-10 -3.02081e-10 9.53769e-11) (7.02356e-09 -4.37072e-09 6.65599e-11) (7.84151e-09 -4.52292e-09 -6.20488e-10) (2.00838e-09 -8.51255e-10 -5.34292e-10) (1.01681e-10 9.93084e-11 -1.80788e-10) (-8.28279e-10 1.08374e-09 -4.97527e-10) (-2.42331e-09 1.69101e-09 -1.54386e-10) (-1.20373e-09 3.64509e-10 1.78743e-10) (-2.89904e-10 -5.96939e-11 1.22887e-10) (-8.37859e-11 -5.49141e-11 1.01223e-10) (-1.67078e-11 -2.00632e-11 1.06793e-10) (3.51991e-11 -4.23609e-12 8.00828e-11) (1.13033e-10 -7.33088e-12 9.32127e-12) (5.00847e-10 1.21101e-11 -3.72018e-10) (5.98384e-10 1.73042e-10 -8.20169e-10) (1.96975e-10 1.06534e-10 -3.1232e-10) (6.96233e-11 -1.07453e-11 -1.36926e-11) (4.61639e-10 -3.63958e-10 2.35464e-10) (6.77262e-10 -8.32812e-10 5.35523e-10) (8.97201e-12 -3.31961e-10 2.70558e-10) (-7.74824e-10 -7.75464e-11 2.51634e-10) (-2.02789e-09 7.24485e-10 -4.90797e-10) (-1.08413e-09 1.12233e-09 -1.75981e-09) (-1.07614e-10 5.83904e-10 -1.27557e-09) (-2.92378e-11 5.17602e-11 -7.38208e-11) (-8.51234e-11 3.2437e-11 5.93193e-11) (-8.96967e-11 2.00714e-11 1.0994e-10) (8.98896e-13 -6.19934e-13 3.90642e-11) (8.58214e-11 -8.61956e-12 8.30836e-11) (1.74639e-10 2.00978e-12 1.74454e-10) (8.03973e-11 1.41189e-11 1.71184e-10) (-3.05425e-11 -1.80499e-11 2.04947e-11) (-3.50667e-11 -2.39877e-11 -1.45988e-11) (-1.68302e-11 -5.23756e-11 -4.76695e-11) (6.58331e-11 -9.21415e-11 -2.88006e-11) (3.20936e-10 -1.24618e-10 9.33369e-11) (5.17881e-10 1.42698e-10 2.49907e-10) (3.15853e-10 5.26288e-10 2.41288e-10) (-4.09112e-13 4.02327e-10 1.55417e-10) (3.21225e-11 2.30092e-11 4.37937e-11) (1.02396e-09 -6.62571e-10 1.84105e-10) (2.62206e-09 -1.99047e-09 -1.62399e-10) (1.10999e-09 -8.63749e-10 -1.61949e-10) (5.29611e-11 -3.00684e-11 -1.27672e-11) (-2.44966e-11 4.58715e-11 -4.50389e-11) (-4.25431e-10 4.44688e-10 -4.39695e-10) (-9.92846e-10 6.19474e-10 -5.30843e-10) (-1.06833e-09 2.55196e-10 -7.2986e-11) (-8.37718e-10 -1.95245e-11 2.29392e-10) (-3.29958e-10 -3.27739e-11 1.77091e-10) (-3.95959e-11 2.25661e-12 4.54257e-11) (5.26789e-12 2.20305e-12 1.46291e-11) (3.78752e-11 -2.3931e-12 9.45294e-12) (1.26575e-10 -2.42412e-11 -6.87429e-11) (2.5237e-10 -4.54157e-11 -2.5603e-10) (2.5156e-10 -5.47247e-11 -2.10824e-10) (3.53677e-10 -1.4786e-10 -5.00105e-11) (9.49853e-10 -5.59364e-10 2.58509e-10) (1.27622e-09 -8.30399e-10 5.28932e-10) (3.76954e-10 -2.59208e-10 2.80131e-10) (-1.623e-10 3.71095e-11 1.79035e-10) (-3.64766e-09 1.44484e-09 5.98258e-10) (-5.14214e-09 2.64505e-09 -1.77802e-09) (-1.86603e-09 1.71619e-09 -3.14526e-09) (-3.41137e-10 5.88828e-10 -1.49961e-09) (-7.64181e-11 5.87955e-11 -9.16609e-11) (-8.11656e-11 2.13387e-11 4.47617e-11) (-8.37061e-11 3.35974e-13 9.15416e-11) (-4.0039e-11 -1.35173e-11 5.63406e-11) (-2.43599e-11 -1.82904e-11 4.47773e-11) (-2.73192e-11 -2.21226e-11 4.75203e-11) (-1.73298e-10 -1.30596e-10 -2.11628e-10) (-7.65523e-11 -1.51985e-10 -1.00339e-10) (7.39172e-12 -1.31952e-10 -1.90785e-11) (1.60823e-10 -2.02741e-10 6.74318e-11) (5.83637e-10 -2.91665e-10 3.10907e-10) (1.06846e-09 -5.86418e-11 5.6616e-10) (1.48472e-09 4.78031e-10 7.00702e-10) (1.6658e-09 6.57428e-10 6.94845e-10) (1.36507e-09 1.27296e-10 4.30162e-10) (9.21645e-10 -2.96427e-10 8.82907e-11) (2.47748e-10 -1.59801e-10 -4.39187e-11) (1.75489e-13 -1.47031e-12 3.55299e-13) (-1.94964e-10 9.55657e-11 1.27753e-10) (-5.49022e-10 2.9272e-10 2.40173e-10) (-3.50969e-10 1.39515e-10 -6.56423e-11) (-3.04514e-10 1.09561e-11 -2.78962e-10) (-3.2769e-10 -7.5296e-11 -2.18678e-10) (-4.88156e-10 -2.28291e-11 1.28754e-12) (-8.42209e-10 2.12991e-10 2.61844e-10) (-6.29882e-10 3.10634e-10 2.03586e-10) (-1.58659e-10 9.98457e-11 4.11228e-11) (-3.94913e-12 1.36613e-12 1.57225e-12) (1.35454e-11 -2.21925e-11 -1.09931e-12) (1.56436e-10 -1.77765e-10 -3.83823e-11) (5.34719e-10 -4.18345e-10 -1.05873e-10) (1.19062e-09 -7.02701e-10 -1.64825e-10) (1.65155e-09 -9.15149e-10 -1.79427e-10) (1.39781e-09 -7.89082e-10 -7.30022e-11) (5.58783e-10 -2.71929e-10 9.38894e-11) (4.69082e-11 2.35596e-11 1.10856e-10) (-1.08489e-09 9.96364e-10 1.00743e-09) (-4.74449e-09 3.37685e-09 1.40846e-09) (-2.80121e-09 2.13782e-09 -1.05884e-09) (-5.83861e-10 7.86747e-10 -1.81043e-09) (-6.19619e-11 1.39522e-10 -9.61426e-10) (-9.55767e-11 -4.95811e-12 -8.90909e-11) (-4.89445e-10 -1.02124e-11 9.44691e-11) (-8.44359e-10 6.63943e-11 1.6685e-10) (-5.37836e-10 5.94036e-11 -8.72301e-11) (-2.94529e-10 -3.18688e-11 -2.24635e-10) (-2.62038e-11 -9.45811e-11 -2.4052e-10) (1.37042e-10 -2.29114e-10 -1.83273e-10) (1.80018e-10 -2.43731e-10 -2.0106e-11) (1.81896e-10 -2.03959e-10 1.10412e-10) (2.31037e-10 -1.63458e-10 1.97254e-10) (3.36722e-10 -1.03433e-10 2.27893e-10) (5.30414e-10 -3.83432e-11 2.14478e-10) (7.66282e-10 -2.53452e-11 1.57029e-10) (7.51194e-10 -7.81487e-11 6.26449e-11) (4.03309e-10 -3.45448e-11 1.6238e-11) (1.19861e-10 3.82439e-11 3.09934e-11) (5.96463e-11 1.67735e-10 1.58032e-10) (-1.8463e-10 5.48919e-10 7.19256e-10) (-6.32426e-10 5.78087e-10 1.08164e-09) (-4.54436e-10 1.10838e-10 3.7866e-10) (-2.29587e-10 -8.02306e-11 -3.69129e-11) (-4.577e-10 -2.42025e-10 -3.97625e-10) (-9.9558e-10 -5.09471e-11 -5.06311e-10) (-2.35953e-09 7.46962e-10 -1.4013e-10) (-2.61862e-09 1.27507e-09 4.34374e-10) (-6.58451e-10 3.84469e-10 2.14095e-10) (3.57999e-13 2.17127e-12 1.10863e-11) (4.29424e-10 -2.28587e-10 8.36152e-11) (1.68181e-09 -9.60654e-10 -9.80623e-11) (2.51792e-09 -1.4157e-09 -7.3942e-10) (2.63497e-09 -1.38849e-09 -1.22889e-09) (2.02802e-09 -1.1301e-09 -1.00649e-09) (9.05295e-10 -6.71412e-10 -3.40397e-10) (1.56903e-10 -1.87471e-10 1.49636e-11) (-8.78826e-12 -1.4832e-11 6.90512e-11) (-5.28794e-10 4.93259e-10 7.12876e-10) (-2.73094e-09 2.58115e-09 2.23004e-09) (-3.31929e-09 2.88577e-09 1.41664e-09) (-8.85576e-10 7.81121e-10 -2.9954e-10) (-1.89535e-10 1.78139e-10 -8.64989e-10) (-1.82517e-10 -4.63251e-11 -9.10676e-10) (-5.67105e-10 2.34369e-11 -3.81927e-10) (-1.87638e-09 3.57485e-10 -1.22875e-10) (-1.75141e-09 4.37445e-10 -1.93799e-10) (-4.27842e-10 6.65827e-11 -2.98097e-10) (-3.04129e-11 -1.83321e-11 -8.01944e-12) (2.25651e-11 -6.9814e-11 7.40676e-12) (1.11302e-10 -1.44354e-10 7.68512e-11) (1.55349e-10 -1.15412e-10 1.30957e-10) (1.55254e-10 -5.14003e-11 1.07617e-10) (1.55111e-10 -2.02101e-11 4.55091e-11) (2.08998e-10 -2.54766e-11 -2.48575e-11) (2.84914e-10 -5.94422e-11 -1.08097e-10) (2.17517e-10 -6.11626e-11 -9.80785e-11) (6.6195e-11 -6.15833e-12 -1.44836e-11) (4.25761e-11 3.22972e-11 3.23855e-11) (1.25278e-10 1.91282e-10 2.35999e-10) (2.24073e-10 3.37103e-10 5.25238e-10) (1.41607e-10 2.03117e-10 4.8489e-10) (-1.47862e-11 1.54083e-11 1.73294e-10) (-1.54542e-10 -6.75441e-11 6.27011e-11) (-1.10007e-09 -2.97864e-10 -2.01898e-10) (-3.00764e-09 -4.04185e-11 -8.48249e-10) (-3.76847e-09 9.03973e-10 -7.77449e-10) (-2.13739e-09 9.00513e-10 -1.17163e-10) (-2.75249e-10 1.47278e-10 4.16677e-11) (1.00233e-11 -3.29683e-12 3.07355e-12) (6.45817e-10 -2.72818e-10 -7.09e-11) (2.05179e-09 -8.09728e-10 -5.82115e-10) (3.19516e-09 -1.15675e-09 -1.34611e-09) (3.34454e-09 -1.25123e-09 -1.54873e-09) (2.08845e-09 -1.03588e-09 -8.13721e-10) (5.40347e-10 -5.12896e-10 -7.38944e-11) (-1.423e-11 -2.15594e-10 1.07115e-10) (-3.38527e-10 -1.47409e-10 3.14272e-10) (-5.32606e-10 2.46289e-10 5.27835e-10) (-6.83344e-10 9.77574e-10 8.45625e-10) (-9.29131e-10 1.37008e-09 9.18922e-10) (-7.71823e-10 7.17448e-10 3.05485e-10) (-3.88442e-10 1.87928e-10 -1.87978e-10) (-3.47061e-10 6.34255e-11 -7.48112e-10) (-3.68833e-10 9.714e-11 -9.27762e-10) (-5.7146e-10 2.17192e-10 -4.95583e-10) (-8.53886e-10 2.90469e-10 -2.05309e-10) (-3.9634e-10 7.41854e-11 -4.98113e-11) (-4.77141e-10 1.54821e-10 5.26713e-10) (-6.468e-11 -8.34384e-11 4.61319e-10) (1.43733e-10 -1.76564e-10 3.76788e-10) (1.27769e-10 -9.84227e-11 1.41492e-10) (3.15638e-11 -1.49538e-11 8.41268e-12) (2.37769e-11 -5.52175e-12 -3.15748e-11) (8.04468e-11 -3.56186e-11 -2.08468e-10) (1.56906e-10 -1.09151e-10 -3.88035e-10) (1.16038e-10 -7.89926e-11 -2.24464e-10) (3.06587e-11 -7.24907e-12 -2.42389e-11) (4.30308e-11 1.37135e-11 2.43177e-11) (1.97963e-10 6.15553e-11 1.81029e-10) (4.2412e-10 3.66854e-11 3.4669e-10) (4.2948e-10 -5.70591e-11 3.28649e-10) (1.55158e-10 -6.53422e-11 1.40903e-10) (-2.64575e-13 -1.38076e-11 2.13279e-11) (-1.85554e-10 2.00513e-12 2.34588e-11) (-1.24535e-09 2.50204e-10 -1.31686e-10) (-2.06443e-09 5.34291e-10 -4.12474e-10) (-9.7844e-10 2.46095e-10 -2.74673e-10) (-6.8064e-11 5.9991e-12 -4.05185e-11) (4.08585e-11 -2.34817e-11 -3.29605e-11) (5.34493e-10 -1.63137e-10 -2.42992e-10) (1.41007e-09 -2.99649e-10 -7.25615e-10) (1.9507e-09 -3.76693e-10 -1.1853e-09) (1.50152e-09 -4.15068e-10 -9.51991e-10) (4.54266e-10 -2.69796e-10 -2.35318e-10) (5.7483e-12 -1.41325e-10 3.77576e-11) (-7.70255e-10 -5.95813e-10 5.77132e-10) (-2.19186e-09 -8.58969e-10 1.3922e-09) (-1.20782e-09 -1.29915e-10 9.6806e-10) (-1.61831e-10 2.71982e-10 4.63792e-10) (2.76312e-10 7.56708e-10 6.0371e-10) (1.73929e-10 5.30909e-10 2.87271e-10) (-2.99088e-11 6.65543e-11 -7.17666e-12) (-2.86519e-10 2.97359e-11 -3.7656e-10) (-6.90455e-10 1.17404e-10 -1.20897e-09) (-9.49011e-10 5.26937e-10 -1.10973e-09) (-1.24893e-09 8.00749e-10 -3.87657e-10) (-1.13514e-09 6.20039e-10 3.47379e-10) (-5.8838e-10 -8.91562e-13 1.27555e-09) (1.28306e-10 -5.53618e-10 9.66038e-10) (3.52624e-10 -6.35766e-10 4.18398e-10) (1.4371e-10 -2.10258e-10 3.04716e-11) (5.28512e-12 -3.25432e-12 -5.28716e-12) (-2.03973e-11 5.78634e-11 -3.96432e-11) (-7.35271e-11 1.49035e-10 -1.04843e-10) (-3.605e-11 7.11584e-11 -7.86596e-11) (1.58641e-12 6.62351e-12 -1.2247e-11) (2.42973e-11 -3.63879e-12 3.64571e-12) (2.15189e-10 -5.64276e-11 9.367e-11) (5.95663e-10 -1.74593e-10 2.2119e-10) (8.29845e-10 -3.02075e-10 1.95743e-10) (6.11067e-10 -3.21988e-10 4.46259e-11) (2.00728e-10 -1.93544e-10 -5.5031e-11) (3.14216e-12 -6.99103e-11 -5.54528e-11) (-1.18303e-10 -1.9868e-11 -9.05555e-11) (-3.90432e-10 1.59274e-10 -1.50396e-10) (-4.2861e-10 3.09498e-10 -1.05911e-10) (-1.09809e-10 1.20301e-10 -3.13258e-11) (3.94009e-12 8.952e-12 -7.10077e-12) (1.47958e-10 -1.56983e-11 -7.84125e-11) (6.34684e-10 -1.41846e-10 -3.84498e-10) (1.01693e-09 -2.56576e-10 -8.09166e-10) (7.27914e-10 -2.30898e-10 -8.48488e-10) (1.5437e-10 -1.11538e-10 -3.87375e-10) (-4.53942e-11 -4.0801e-11 -6.96951e-11) (-3.23594e-10 -1.42118e-10 7.02498e-11) (-1.08089e-09 -5.68223e-10 6.73635e-10) (-1.50384e-09 -9.85298e-10 1.25312e-09) (-9.96364e-10 -6.00347e-10 1.00597e-09) (-2.95443e-10 2.02098e-12 4.56456e-10) (8.19411e-12 3.90194e-10 4.20088e-10) (4.61159e-10 9.73698e-10 5.17518e-10) (3.78844e-10 5.77925e-10 8.16063e-11) (6.4743e-11 1.48284e-10 -1.60921e-10) (-3.90666e-10 2.67677e-10 -7.6865e-10) (-1.87118e-09 8.93354e-10 -1.29603e-09) (-2.97197e-09 1.52641e-09 -2.35308e-10) (-2.00409e-09 9.38898e-10 1.14655e-09) (9.70114e-11 -3.89862e-10 3.41233e-10) (9.3192e-10 -1.58791e-09 5.78172e-10) (1.0247e-09 -1.55697e-09 1.93888e-10) (1.63353e-10 -2.98592e-10 6.49826e-12) (-1.57317e-11 5.20451e-12 5.38608e-12) (-5.19391e-10 5.5434e-10 1.77875e-10) (-9.62854e-10 1.36865e-09 3.89722e-10) (-4.36798e-10 8.23143e-10 2.55196e-10) (-2.39154e-11 1.27046e-10 7.2179e-11) (5.11256e-11 2.34703e-12 5.11304e-11) (2.71391e-10 -1.28352e-10 1.46415e-10) (4.74381e-10 -2.51113e-10 1.50505e-10) (4.60527e-10 -2.33553e-10 2.30804e-11) (3.39429e-10 -1.61294e-10 -1.17188e-10) (2.24315e-10 -9.0794e-11 -2.31085e-10) (1.11838e-10 -1.23895e-11 -3.16127e-10) (-1.87966e-11 7.51768e-11 -3.08984e-10) (-1.17391e-10 1.38312e-10 -2.03934e-10) (-1.32202e-10 1.46916e-10 -6.86458e-11) (-5.78699e-11 7.95557e-11 9.01291e-12) (-7.60554e-13 1.10549e-11 5.71081e-12) (2.37261e-11 -5.11298e-13 -3.24231e-12) (1.4351e-10 -4.66679e-11 -1.05025e-10) (1.9643e-10 -1.01301e-10 -3.63351e-10) (-1.92812e-11 -9.41785e-11 -6.7229e-10) (-5.55878e-10 -9.44891e-11 -9.59637e-10) (-1.00476e-09 -2.58946e-10 -7.79205e-10) (-7.20502e-10 -4.63567e-10 -1.71833e-10) (-3.6902e-10 -6.7449e-10 3.13769e-10) (-9.60515e-11 -9.19638e-10 9.22722e-10) (-4.55048e-11 -5.36812e-10 1.04408e-09) (-2.18186e-10 1.06754e-11 6.76513e-10) (-4.29912e-10 4.9064e-10 5.6785e-10) (-3.50701e-10 8.78123e-10 3.87334e-10) (6.99851e-12 6.24703e-10 6.46035e-11) (1.0014e-10 3.47825e-10 -1.64221e-10) (-4.9297e-11 3.46493e-10 -3.87772e-10) (-5.00776e-10 5.28225e-10 -4.91104e-10) (-6.31415e-10 4.04115e-10 -1.07299e-10) (-1.54837e-10 1.51194e-11 1.11994e-10) (9.12636e-10 -1.12454e-09 3.58598e-10) (1.38777e-09 -1.67931e-09 4.91327e-10) (6.7425e-10 -7.67737e-10 2.62236e-10) (3.63961e-11 -5.25361e-11 3.22499e-11) (-1.19953e-10 3.76066e-11 3.0557e-11) (-1.28039e-09 5.26464e-10 1.08921e-10) (-2.0607e-09 9.31845e-10 1.85311e-10) (-9.223e-10 5.06255e-10 1.53684e-10) (-7.20819e-11 6.19603e-11 3.51491e-11) (2.02456e-11 4.27895e-12 1.62611e-11) (2.31238e-10 -2.68606e-11 1.0113e-10) (4.46973e-10 -2.84677e-11 2.12443e-10) (3.61018e-10 2.89747e-11 1.87113e-10) (1.22376e-10 4.12084e-11 5.0442e-11) (1.62693e-11 2.05578e-11 -6.48539e-12) (-1.94616e-11 4.83124e-11 -5.78868e-11) (-1.28024e-10 9.70646e-11 -1.66103e-10) (-2.25652e-10 9.70021e-11 -1.95466e-10) (-1.99621e-10 5.15481e-11 -1.17023e-10) (-9.01943e-11 8.16913e-12 -3.32781e-11) (-1.67186e-11 -4.45168e-12 -3.74263e-12) (-1.44768e-12 -3.98175e-12 -1.34901e-12) (3.12371e-12 -9.56774e-12 -8.56567e-12) (6.2489e-12 -1.77425e-11 -4.21014e-11) (-1.04619e-11 -1.95692e-11 -1.39248e-10) (-6.00988e-11 -1.94265e-11 -2.72343e-10) (-8.88014e-11 -6.62646e-11 -2.82094e-10) (-6.62952e-11 -1.32684e-10 -1.51457e-10) (-3.72284e-11 -2.1312e-10 -5.5526e-12) (2.91732e-11 -4.13399e-10 2.98498e-10) (1.30983e-10 -4.23049e-10 6.8115e-10) (3.28485e-11 -9.09435e-11 5.272e-10) (-1.40615e-10 1.56003e-10 2.80729e-10) (-5.322e-10 6.2726e-10 1.84606e-10) (-6.92422e-10 1.0171e-09 -1.94008e-10) (-3.10693e-10 7.98722e-10 -4.46454e-10) (-3.69929e-11 4.72064e-10 -3.87632e-10) (2.68767e-11 1.61635e-10 -1.29795e-10) (1.18791e-11 7.06433e-12 -4.38566e-12) (1.67434e-10 -1.59331e-10 6.65112e-11) (6.61329e-10 -8.32151e-10 1.80781e-10) (4.40127e-10 -7.38137e-10 1.25439e-10) (1.10918e-10 -2.13813e-10 1.69625e-11) (1.52627e-12 -2.61725e-12 -9.60581e-14) (-5.217e-11 6.25039e-11 6.77487e-12) (-7.37778e-10 5.01312e-10 1.03076e-10) (-2.50616e-09 8.11892e-10 2.12913e-10) (-3.27545e-09 2.86298e-10 -3.25624e-11) (-1.62804e-09 -1.03199e-10 -2.96445e-10) (-2.3016e-10 -1.82686e-11 -1.45346e-10) (1.08143e-11 1.77992e-11 -3.64199e-11) (1.80672e-10 1.14182e-10 -1.72409e-11) (3.95416e-10 2.37286e-10 1.74825e-10) (3.33785e-10 2.31188e-10 3.39388e-10) (1.32167e-10 1.62129e-10 2.89051e-10) (1.00501e-11 8.26658e-11 1.31383e-10) (-1.14098e-11 2.30753e-11 2.99957e-11) (-4.63847e-12 1.50792e-12 2.35457e-12) (-8.25445e-12 -6.58851e-12 -2.45874e-12) (-2.22444e-11 -3.40798e-11 -1.32791e-11) (-3.0598e-11 -5.83808e-11 -2.25734e-11) (-2.38201e-11 -4.971e-11 -2.53096e-11) (-1.26477e-11 -2.70954e-11 -2.55539e-11) (-6.50572e-12 -1.22724e-11 -3.10917e-11) (-3.57657e-12 -1.25278e-12 -4.43025e-11) (-2.94835e-12 8.14527e-12 -4.31192e-11) (-3.10264e-12 5.3061e-12 -1.56284e-11) (-4.63338e-13 3.90372e-14 -2.09025e-13) (-3.30718e-12 -1.21763e-11 1.50224e-11) (7.99674e-12 -8.76146e-11 8.91119e-11) (4.27332e-11 -1.35374e-10 1.17785e-10) (3.85148e-11 -5.76556e-11 5.06101e-11) (9.35227e-12 -7.34752e-13 7.4247e-12) (5.14412e-12 3.98208e-11 5.40209e-12) (-5.31455e-11 2.41809e-10 -2.9881e-11) (-1.28823e-10 4.38832e-10 -1.58965e-10) (-3.96566e-11 3.11794e-10 -2.0326e-10) (5.06042e-11 8.00382e-11 -8.90404e-11) (1.23844e-10 -2.62463e-11 -3.59696e-11) (4.31546e-10 -3.48954e-10 4.91042e-11) (-1.0414e-12 -4.71098e-14 -7.81872e-13) (-2.34317e-12 -6.36165e-14 -1.19941e-12) (-2.52723e-12 1.46915e-14 -1.38237e-12) (-1.58631e-12 4.07453e-14 -1.06794e-12) (-8.99281e-13 7.62913e-15 -3.36259e-13) (-1.3043e-12 -3.33748e-14 6.22234e-13) (-6.43918e-12 -2.13375e-13 5.24033e-12) (-1.79259e-11 4.25805e-15 9.85038e-12) (-2.14967e-11 4.57734e-13 8.05052e-12) (-8.40996e-12 1.98113e-13 2.64839e-12) (-6.66287e-13 -2.60096e-14 2.80452e-13) (6.45944e-16 -1.97394e-15 4.46974e-15) (1.06886e-13 -1.41461e-14 -2.04247e-14) (3.78392e-13 -3.60032e-14 -2.67308e-13) (1.15624e-12 -4.30574e-14 -1.73008e-12) (2.01901e-12 -9.80002e-14 -5.08966e-12) (8.40951e-13 -5.92177e-14 -3.47104e-12) (3.86963e-14 5.44343e-15 -3.59192e-13) (-4.99682e-15 3.88708e-15 2.69587e-14) (1.00332e-13 2.72383e-14 3.83893e-13) (1.94364e-13 2.61764e-14 2.64668e-13) (2.70869e-13 1.25104e-14 -1.99629e-14) (3.64033e-12 -6.95322e-14 -8.80465e-13) (3.62226e-11 -5.7212e-13 2.5973e-12) (1.37184e-10 5.59324e-13 3.7917e-11) (2.20523e-10 5.72174e-12 9.69668e-11) (2.44601e-10 7.05513e-12 1.35152e-10) (2.29117e-10 4.412e-12 1.21895e-10) (1.58771e-10 1.03247e-12 5.5632e-11) (5.81737e-11 3.86922e-13 2.30732e-12) (1.31215e-11 2.10403e-13 -8.98097e-12) (9.88929e-12 -1.78188e-13 -1.03474e-11) (3.27736e-11 -1.01517e-12 -9.60864e-12) (8.0482e-11 -1.54725e-12 -3.14213e-12) (7.82673e-11 -6.83363e-13 2.59291e-12) (4.08476e-11 8.20838e-14 3.06176e-12) (1.41435e-11 2.55441e-13 1.13774e-12) (3.73538e-12 1.36e-13 -1.76371e-13) (9.83274e-13 5.00783e-14 -4.53461e-13) (5.17053e-14 -9.25584e-15 -5.57686e-13) (1.51697e-10 -2.51196e-12 -2.80744e-11) (3.23599e-11 2.75015e-13 -1.42804e-11) (1.05007e-12 1.02333e-13 -2.19319e-11) (-3.82073e-12 -5.01626e-13 -1.93564e-11) (-1.13227e-12 -1.38128e-13 -7.75589e-13) (-8.05713e-12 -2.68286e-13 1.28894e-11) (-5.69941e-11 4.95048e-14 5.82665e-11) (-1.82187e-10 2.05606e-12 7.30465e-11) (-2.42296e-10 -4.92798e-13 2.76813e-11) (-9.1612e-11 -3.22988e-12 -5.02239e-12) (-6.49146e-12 -8.17952e-13 -2.42016e-12) (9.09905e-14 -1.21318e-13 -9.80397e-13) (2.23434e-12 5.59876e-14 -3.47756e-12) (5.50328e-12 3.17648e-13 -9.16845e-12) (9.28218e-12 8.90817e-13 -1.8012e-11) (8.94768e-12 6.02141e-13 -1.80611e-11) (2.76067e-12 1.76847e-13 -3.73097e-12) (1.04331e-12 1.07765e-13 2.54376e-13) (5.60712e-12 4.63259e-13 5.45414e-12) (1.39183e-11 6.41673e-13 8.68538e-12) (1.66312e-11 7.47899e-13 1.15945e-12) (1.79053e-11 5.30524e-13 -1.08794e-11) (2.57344e-11 -3.05723e-13 -1.84048e-11) (1.1157e-10 2.97455e-13 2.32239e-12) (7.32867e-10 2.54595e-11 2.72226e-10) (2.04664e-09 9.64129e-11 9.528e-10) (3.76262e-09 9.27822e-11 1.71447e-09) (5.22889e-09 8.95593e-12 2.00946e-09) (5.01673e-09 -6.2546e-11 1.29512e-09) (2.86887e-09 -3.29032e-11 2.1372e-10) (8.55084e-10 1.80199e-12 -1.74433e-10) (1.94396e-10 -1.81451e-13 -1.09852e-10) (1.33007e-10 -4.23151e-12 -3.65841e-11) (3.32092e-10 -3.65487e-12 4.02665e-11) (5.23219e-10 4.37116e-12 1.18565e-10) (4.71413e-10 5.60206e-12 8.26253e-11) (3.5634e-10 1.37189e-12 5.67497e-12) (3.22621e-10 -3.82476e-12 -5.33564e-11) (3.50186e-10 -8.48873e-12 -8.4428e-11) (3.14555e-10 -9.20454e-12 -6.51429e-11) (7.28027e-10 -1.56542e-11 -7.16949e-11) (2.16647e-10 1.09116e-11 -2.66929e-11) (3.74389e-11 4.9425e-12 -2.83028e-11) (2.00035e-11 5.73927e-13 -5.83284e-11) (8.02904e-12 -1.67145e-12 -1.7254e-11) (2.0537e-12 -2.80259e-13 3.66178e-12) (-1.56017e-11 3.45118e-12 6.0876e-11) (-9.32776e-11 1.38148e-11 7.54416e-11) (-2.40019e-10 1.51124e-11 3.59033e-11) (-2.32251e-10 -8.66482e-12 -2.63839e-11) (-5.41408e-11 -7.55884e-12 -1.79949e-11) (-2.45441e-12 -5.01411e-13 -3.49753e-12) (1.51699e-12 5.96603e-13 -4.41486e-12) (5.60379e-12 2.08568e-12 -1.16813e-11) (9.65308e-12 3.32384e-12 -2.06202e-11) (8.65218e-12 2.36191e-12 -1.68841e-11) (2.45656e-12 7.08614e-13 -2.34843e-12) (2.58014e-12 7.36354e-13 1.55437e-12) (1.37841e-11 1.65797e-12 1.27196e-11) (3.72848e-11 1.28406e-12 1.98078e-11) (5.90533e-11 8.027e-13 4.82715e-12) (5.98219e-11 3.18566e-13 -2.65105e-11) (4.30186e-11 -1.30634e-12 -3.93375e-11) (4.63487e-11 -1.93368e-13 -1.23172e-11) (4.41214e-10 2.49911e-11 1.69249e-10) (1.71092e-09 1.01216e-10 8.48224e-10) (3.17001e-09 4.10097e-11 1.45425e-09) (4.3268e-09 -1.19224e-10 1.61999e-09) (4.31294e-09 -1.93284e-10 1.1235e-09) (2.77074e-09 -9.59571e-11 2.54251e-10) (9.84208e-10 4.22986e-12 -1.75219e-10) (1.57969e-10 1.22192e-11 -1.11339e-10) (1.75608e-11 2.66637e-12 -1.77797e-11) (5.22408e-11 4.871e-12 1.53098e-11) (2.85947e-10 2.14659e-11 1.37099e-10) (4.51981e-10 2.46666e-11 1.59815e-10) (4.94084e-10 8.89016e-12 5.59686e-11) (6.26592e-10 -1.71575e-11 -7.5376e-11) (9.04114e-10 -5.16533e-11 -1.94664e-10) (1.05646e-09 -5.95236e-11 -1.87786e-10) (1.96898e-10 -1.05053e-11 -6.6493e-11) (1.69373e-11 4.35756e-12 -7.98023e-12) (-9.67823e-12 6.29591e-12 -1.5176e-11) (-7.98947e-11 5.47373e-12 -1.23677e-10) (-7.91487e-11 -1.70356e-11 -1.31333e-10) (-2.35291e-11 -4.41129e-12 -4.73764e-12) (-8.92208e-11 3.78509e-12 9.71441e-11) (-1.92472e-10 4.27839e-11 1.66882e-10) (-2.72848e-10 4.77754e-11 7.72968e-11) (-3.33845e-10 1.31305e-12 -2.43911e-11) (-1.98202e-10 -2.81651e-11 -5.04998e-11) (-3.13445e-11 -4.70074e-12 -1.57344e-11) (-1.56451e-12 9.09311e-13 -3.74314e-12) (1.93506e-12 3.27794e-12 -8.42218e-12) (5.03461e-12 5.46706e-12 -1.72596e-11) (4.34306e-12 3.76289e-12 -1.31491e-11) (7.98341e-13 8.1192e-13 -1.00427e-12) (1.85874e-12 1.52554e-12 2.9339e-12) (1.13882e-11 2.75676e-12 1.70645e-11) (2.83609e-11 3.40832e-13 2.19573e-11) (4.71013e-11 -2.82191e-12 9.31423e-12) (4.97372e-11 -3.45737e-12 -1.83228e-11) (2.96092e-11 -4.37455e-12 -3.58829e-11) (8.81534e-12 -1.01527e-12 -1.07393e-11) (9.66217e-11 8.73348e-12 4.22227e-11) (9.71504e-10 6.91316e-11 5.9925e-10) (1.71702e-09 -3.85779e-12 1.02522e-09) (1.64849e-09 -1.33778e-10 8.48001e-10) (1.17369e-09 -1.23841e-10 4.17825e-10) (5.15155e-10 -3.65451e-11 3.89689e-11) (1.0406e-10 7.58769e-12 -6.7161e-11) (-2.50057e-11 2.17936e-11 -1.06898e-10) (-1.5499e-10 3.15339e-11 -1.15352e-10) (-2.1099e-11 6.01733e-12 4.10063e-12) (2.64473e-11 1.15178e-11 5.42122e-11) (1.20027e-10 1.65187e-11 1.01523e-10) (1.21569e-10 2.70525e-12 3.84321e-11) (1.56311e-10 -1.473e-11 -2.63118e-11) (2.84282e-10 -4.50315e-11 -1.16427e-10) (3.65446e-10 -5.2636e-11 -1.51115e-10) (9.41993e-11 -1.38607e-11 -9.04521e-11) (6.45261e-14 5.62467e-12 -1.44972e-11) (-1.28092e-10 4.21457e-11 -6.60594e-11) (-4.818e-10 3.89246e-11 -3.42241e-10) (-6.19114e-10 -8.29112e-11 -6.23806e-10) (-4.26299e-10 -7.21801e-11 -2.21741e-10) (-5.49745e-10 -1.76064e-11 1.89965e-10) (-8.19871e-10 1.33989e-10 5.13426e-10) (-6.94519e-10 1.60429e-10 2.56287e-10) (-6.29188e-10 4.22762e-11 7.79468e-12) (-5.48758e-10 -6.70263e-11 -1.02201e-10) (-2.20695e-10 -3.51349e-11 -6.46575e-11) (-2.76781e-11 2.19298e-12 -1.43657e-11) (-3.19281e-12 4.91653e-12 -8.44003e-12) (1.06765e-12 8.55626e-12 -1.75562e-11) (2.11778e-12 6.04081e-12 -1.41625e-11) (4.57844e-13 1.33398e-12 -9.18041e-13) (1.94348e-12 3.31692e-12 5.84815e-12) (1.10702e-11 4.99267e-12 2.60103e-11) (2.16658e-11 -7.9793e-13 2.54345e-11) (3.00529e-11 -6.47614e-12 1.00016e-11) (3.98703e-11 -9.84076e-12 -1.44776e-11) (2.84694e-11 -1.15167e-11 -4.38299e-11) (2.23423e-12 -4.27522e-12 -2.98534e-11) (3.59038e-12 7.84027e-13 4.02167e-13) (4.94066e-10 4.61991e-11 3.42471e-10) (1.87504e-09 -2.2653e-11 1.26494e-09) (2.08728e-09 -2.3076e-10 1.37945e-09) (1.24897e-09 -1.86427e-10 7.11158e-10) (3.71783e-10 -3.72091e-11 1.04731e-10) (4.00279e-11 7.72805e-12 -3.38156e-11) (-1.35163e-10 6.59341e-11 -2.29231e-10) (-8.8437e-10 1.76504e-10 -5.20055e-10) (-5.42364e-10 8.8695e-11 -5.05575e-11) (-4.50364e-11 2.17602e-11 7.79376e-11) (5.91438e-11 2.06205e-11 1.3404e-10) (6.18747e-11 1.44004e-12 5.41599e-11) (4.51567e-11 -1.01681e-11 -7.62717e-13) (1.06037e-10 -3.81978e-11 -6.5885e-11) (1.82084e-10 -5.81875e-11 -1.4716e-10) (1.83352e-10 -3.48321e-11 -1.63836e-10) (2.69621e-11 1.54067e-11 -4.94716e-11) (-5.57244e-11 3.99545e-11 -4.17302e-11) (-3.81108e-10 7.21085e-11 -2.37712e-10) (-7.81547e-10 -1.02657e-10 -8.38252e-10) (-9.8852e-10 -2.43296e-10 -8.75984e-10) (-1.42232e-09 -1.47666e-10 -4.33956e-11) (-2.38788e-09 2.24253e-10 1.02478e-09) (-1.66039e-09 4.02897e-10 7.26108e-10) (-9.16397e-10 1.39202e-10 1.2924e-10) (-8.49127e-10 -7.51927e-11 -1.0194e-10) (-6.8024e-10 -1.14072e-10 -1.51004e-10) (-2.12955e-10 -7.74698e-12 -5.73475e-11) (-2.87474e-11 1.24648e-11 -1.79766e-11) (-4.71692e-12 1.40113e-11 -2.04989e-11) (1.34618e-12 1.11068e-11 -1.90321e-11) (1.00484e-12 3.16483e-12 -1.78262e-12) (4.53893e-12 7.25536e-12 1.06495e-11) (2.09433e-11 1.2127e-11 4.77523e-11) (3.31106e-11 -1.7371e-13 4.59298e-11) (3.20125e-11 -1.13555e-11 1.68804e-11) (4.02449e-11 -2.05541e-11 -1.27308e-11) (4.94429e-11 -3.02293e-11 -6.87491e-11) (7.82112e-12 -1.62771e-11 -9.15598e-11) (-4.16372e-12 2.10602e-12 -1.75954e-11) (6.93319e-11 1.37276e-11 4.34719e-11) (1.37186e-09 -1.83192e-11 8.99879e-10) (2.94574e-09 -3.46888e-10 1.94965e-09) (2.82559e-09 -4.40279e-10 1.81134e-09) (1.48355e-09 -1.54653e-10 7.24946e-10) (3.17353e-10 2.87583e-11 1.02939e-11) (1.14058e-11 5.63607e-11 -1.12811e-10) (-7.5979e-10 2.74253e-10 -5.98672e-10) (-1.46122e-09 2.88293e-10 -3.33484e-10) (-2.89475e-10 8.02152e-11 1.70508e-10) (4.70825e-11 5.31361e-11 2.93356e-10) (1.80588e-10 1.61804e-11 2.51966e-10) (1.10314e-10 -2.04251e-11 6.47681e-11) (1.12116e-10 -4.40417e-11 -1.62671e-11) (2.03648e-10 -7.9245e-11 -1.25249e-10) (1.92915e-10 -4.53763e-11 -1.6113e-10) (8.50874e-11 3.06656e-11 -1.06309e-10) (-4.89356e-12 3.6389e-11 -2.86557e-11) (-1.04819e-10 5.97366e-11 -6.59014e-11) (-3.75848e-10 -2.50205e-11 -4.62092e-10) (-9.91613e-10 -3.47604e-10 -1.33901e-09) (-2.27638e-09 -4.08599e-10 -8.71345e-10) (-5.12413e-09 1.05088e-10 1.02609e-09) (-4.00664e-09 7.60791e-10 1.63083e-09) (-1.31718e-09 3.14069e-10 3.88539e-10) (-7.60996e-10 -7.3939e-12 -1.45838e-11) (-9.56795e-10 -1.52611e-10 -1.75425e-10) (-6.89082e-10 -6.26418e-11 -1.3919e-10) (-1.74354e-10 2.73909e-11 -5.131e-11) (-2.39835e-11 2.35545e-11 -2.80688e-11) (2.64712e-13 1.89516e-11 -2.55408e-11) (3.45876e-12 7.24752e-12 -3.84609e-12) (1.42405e-11 1.51908e-11 1.88138e-11) (6.11899e-11 3.13426e-11 9.84879e-11) (1.00586e-10 7.40017e-12 1.20818e-10) (8.32149e-11 -2.44454e-11 5.60135e-11) (4.79429e-11 -3.54183e-11 -4.57755e-12) (5.32034e-11 -6.17277e-11 -8.34514e-11) (2.47055e-11 -4.92108e-11 -1.96606e-10) (-4.6613e-11 1.03936e-11 -1.59787e-10) (-4.29237e-13 2.3992e-12 -3.82561e-12) (3.52431e-10 -7.82847e-12 2.26413e-10) (2.49389e-09 -3.75096e-10 1.61535e-09) (4.18815e-09 -7.12019e-10 2.7088e-09) (3.62582e-09 -4.39511e-10 2.09371e-09) (1.67298e-09 4.30268e-11 5.70822e-10) (2.87949e-10 1.25752e-10 -8.40462e-11) (-1.72963e-10 2.18507e-10 -3.2014e-10) (-1.66588e-09 4.87223e-10 -6.69142e-10) (-9.89069e-10 2.18919e-10 1.73187e-10) (-8.22226e-11 8.45139e-11 4.16483e-10) (3.88244e-10 5.21828e-11 7.20417e-10) (4.0201e-10 -4.88416e-11 3.92223e-10) (2.19282e-10 -7.52374e-11 8.0254e-11) (1.85321e-10 -7.96892e-11 -5.62442e-11) (1.21162e-10 -3.7896e-11 -1.13126e-10) (1.02095e-10 3.24893e-11 -1.42887e-10) (3.44716e-11 6.21232e-11 -4.14431e-11) (-4.54436e-12 4.24442e-11 -7.5837e-12) (-2.89253e-11 1.73889e-11 -6.7632e-11) (-3.45923e-10 -1.85205e-10 -8.73221e-10) (-2.07644e-09 -5.34125e-10 -1.62965e-09) (-7.823e-09 -3.43e-10 -1.94638e-10) (-8.84664e-09 9.24507e-10 2.5104e-09) (-2.7499e-09 6.12463e-10 9.85833e-10) (-8.23334e-10 8.01352e-11 1.01567e-10) (-9.35109e-10 -9.56721e-11 -1.22905e-10) (-1.17149e-09 -1.17798e-10 -2.10678e-10) (-5.94381e-10 1.67735e-11 -1.2411e-10) (-9.99495e-11 4.00119e-11 -5.38706e-11) (-5.30408e-12 2.54485e-11 -3.23464e-11) (9.45787e-12 1.4228e-11 -8.3481e-12) (3.74253e-11 2.72039e-11 2.91093e-11) (1.62197e-10 6.35715e-11 1.82133e-10) (3.00659e-10 3.40384e-11 2.91318e-10) (2.7683e-10 -4.09066e-11 1.88193e-10) (1.22009e-10 -7.12248e-11 2.41619e-11) (3.77581e-11 -9.54796e-11 -8.01995e-11) (-5.2363e-11 -1.27033e-10 -3.27964e-10) (-1.62678e-10 1.95703e-11 -4.99794e-10) (-1.03064e-10 4.94557e-11 -1.96379e-10) (7.88429e-12 -8.5413e-13 1.39955e-12) (1.15105e-09 -2.64373e-10 7.17257e-10) (4.76749e-09 -9.81847e-10 3.04781e-09) (6.56013e-09 -9.1512e-10 4.05437e-09) (4.41179e-09 -9.62955e-11 2.25619e-09) (1.4055e-09 3.19589e-10 2.88361e-10) (1.36904e-10 2.08036e-10 -1.64163e-10) (-7.2016e-10 4.47595e-10 -5.63272e-10) (-1.50357e-09 3.67686e-10 -1.64969e-10) (-3.18536e-10 8.84472e-11 3.63127e-10) (3.28348e-10 4.74117e-11 9.84501e-10) (8.36099e-10 -8.78718e-11 1.05108e-09) (4.62574e-10 -1.29151e-10 3.40356e-10) (1.53868e-10 -6.71512e-11 4.17863e-12) (3.35953e-11 -2.1573e-11 -6.9648e-11) (3.41919e-11 2.48338e-11 -1.67304e-10) (1.28221e-11 6.08662e-11 -5.31773e-11) (1.74999e-11 7.48015e-11 1.11592e-11) (2.31238e-11 2.77485e-11 -6.02506e-12) (7.86757e-11 -1.74281e-11 -2.78307e-10) (-6.75869e-10 -2.54536e-10 -1.16639e-09) (-6.828e-09 -5.18563e-10 -1.60509e-09) (-1.4396e-08 5.65705e-10 2.11824e-09) (-6.23446e-09 8.50024e-10 1.93002e-09) (-1.4679e-09 1.97004e-10 3.25506e-10) (-9.53855e-10 -7.73917e-12 -5.23618e-11) (-1.2881e-09 -8.52944e-11 -2.08768e-10) (-1.01272e-09 -2.68082e-11 -1.97237e-10) (-2.62966e-10 3.80563e-11 -1.02117e-10) (-1.64495e-11 2.28336e-11 -3.8286e-11) (1.63579e-11 1.97785e-11 -1.54418e-11) (7.02728e-11 3.84624e-11 3.31264e-11) (3.05165e-10 9.67309e-11 2.56817e-10) (6.10741e-10 8.63972e-11 4.9728e-10) (7.08762e-10 -3.17396e-11 4.52942e-10) (3.98728e-10 -1.31669e-10 1.35441e-10) (6.35416e-11 -1.08826e-10 -5.75427e-11) (-3.28543e-10 -2.90563e-10 -5.3498e-10) (-8.21924e-10 -3.52506e-11 -1.21785e-09) (-5.3153e-10 1.86994e-10 -8.85784e-10) (-2.85393e-11 2.40218e-12 -7.6617e-11) (3.14382e-10 -1.36017e-10 1.35636e-10) (3.99073e-09 -1.09533e-09 2.46434e-09) (9.16768e-09 -1.46954e-09 5.94878e-09) (8.33849e-09 -4.20982e-10 5.11274e-09) (3.65057e-09 4.89872e-10 1.76999e-09) (6.35943e-10 3.73221e-10 3.8842e-11) (-6.42032e-11 2.6804e-10 -2.41331e-10) (-8.38643e-10 3.44378e-10 -3.84656e-10) (-4.16471e-10 7.39518e-11 1.39727e-10) (1.83547e-11 -1.03199e-11 6.08291e-10) (6.35584e-10 -1.30715e-10 1.22476e-09) (3.72687e-10 -1.28646e-10 4.98411e-10) (4.65459e-11 -2.89571e-11 1.98434e-11) (-1.90755e-11 -1.81533e-11 -6.0135e-11) (-9.06311e-11 2.39017e-11 -2.17236e-10) (-1.07323e-10 9.08269e-11 -1.02929e-10) (-4.84964e-11 9.2945e-11 1.62829e-11) (3.35082e-11 5.34575e-11 1.87817e-11) (2.74052e-10 4.96358e-11 -1.80126e-10) (9.17064e-11 -4.34573e-11 -6.24659e-10) (-3.08233e-09 -1.57671e-10 -1.4115e-09) (-1.55157e-08 2.0626e-10 7.37389e-10) (-1.12866e-08 6.6358e-10 2.61564e-09) (-3.10447e-09 2.71309e-10 7.07032e-10) (-1.25971e-09 6.5228e-11 1.67158e-11) (-1.15736e-09 -1.13708e-11 -1.69162e-10) (-9.11539e-10 -3.76297e-11 -2.01863e-10) (-2.9471e-10 -1.22652e-12 -1.26043e-10) (-2.02497e-11 1.04741e-11 -4.5396e-11) (1.6571e-11 1.59854e-11 -2.05905e-11) (7.02946e-11 3.51403e-11 1.92642e-11) (3.48193e-10 1.002e-10 2.33924e-10) (8.05536e-10 1.26152e-10 5.65647e-10) (1.13152e-09 1.28983e-11 6.782e-10) (8.58148e-10 -1.46255e-10 3.44175e-10) (1.28047e-10 -9.7219e-11 -2.10752e-11) (-5.11484e-10 -3.27516e-10 -5.50243e-10) (-3.59698e-09 -3.30145e-10 -2.85597e-09) (-2.02722e-09 3.31661e-10 -2.20746e-09) (-2.20273e-10 2.4167e-11 -4.57308e-10) (1.16708e-10 -8.04063e-11 -1.98508e-11) (2.60405e-09 -9.48701e-10 1.30822e-09) (8.3369e-09 -1.67049e-09 5.28228e-09) (1.06331e-08 -7.57956e-10 7.04775e-09) (6.66072e-09 5.36973e-10 4.25563e-09) (1.84215e-09 6.87183e-10 1.00278e-09) (1.37681e-10 2.07894e-10 -2.57535e-11) (-1.48297e-10 1.74631e-10 -1.75224e-10) (-1.72416e-10 4.63603e-11 -3.1375e-11) (-5.36951e-11 -1.75104e-11 1.56102e-10) (1.26101e-10 -1.07511e-10 6.47086e-10) (7.97903e-11 -8.29612e-11 3.43394e-10) (-8.13018e-14 -9.26903e-12 9.27823e-12) (-1.09001e-10 -3.0749e-11 -8.35444e-11) (-3.23951e-10 2.42085e-11 -2.7902e-10) (-4.41333e-10 1.6553e-10 -1.94746e-10) (-2.3131e-10 1.62059e-10 1.6658e-11) (4.55731e-12 3.88956e-11 1.26829e-11) (3.86806e-10 1.06666e-10 -1.68169e-10) (3.78587e-10 8.14612e-11 -5.6616e-10) (-1.39039e-09 1.16038e-10 -8.38973e-10) (-1.52011e-08 3.16454e-10 2.11513e-10) (-1.62383e-08 9.06236e-11 2.90821e-09) (-5.15703e-09 7.31023e-11 1.00715e-09) (-1.51688e-09 6.34709e-11 6.31599e-11) (-7.85882e-10 2.24094e-11 -1.31024e-10) (-3.74328e-10 -1.68626e-11 -1.49361e-10) (-8.04563e-11 -1.40826e-11 -8.54293e-11) (-4.3394e-12 -7.07707e-13 -5.54947e-11) (7.94784e-12 5.76125e-12 -1.76141e-11) (1.88578e-11 1.10787e-11 3.56296e-12) (1.67002e-10 5.73094e-11 1.09574e-10) (5.87583e-10 1.12235e-10 3.7303e-10) (1.00496e-09 5.91338e-11 5.74357e-10) (9.76468e-10 -6.67542e-11 4.33091e-10) (2.06159e-10 -6.12291e-11 2.99825e-11) (-2.73029e-10 -1.20597e-10 -2.43692e-10) (-6.49493e-09 -5.09324e-10 -3.60282e-09) (-5.67614e-09 1.90969e-10 -3.84061e-09) (-5.18607e-10 -6.56676e-12 -7.92383e-10) (1.51247e-10 -1.0151e-10 -1.21187e-10) (1.73623e-09 -6.88837e-10 3.79443e-10) (5.09054e-09 -1.34605e-09 2.41932e-09) (7.78802e-09 -9.70604e-10 4.8805e-09) (7.5496e-09 2.38869e-10 5.39378e-09) (3.83646e-09 1.00979e-09 3.05622e-09) (6.69234e-10 4.88886e-10 5.38601e-10) (1.74103e-11 7.79514e-11 -5.81628e-12) (-1.68454e-11 1.78902e-11 -1.57008e-11) (-5.51723e-12 -1.88329e-12 7.73943e-12) (-6.61657e-12 -3.80872e-11 1.30966e-10) (-2.09621e-11 -3.78245e-11 1.15569e-10) (-2.34764e-11 -1.4675e-11 1.07902e-11) (-3.63157e-10 -5.56148e-11 -1.08235e-10) (-6.8634e-10 2.4276e-12 -2.93391e-10) (-6.50951e-10 1.44642e-10 -2.11323e-10) (-2.39758e-10 1.21888e-10 -2.77915e-11) (1.6244e-12 2.368e-11 -7.17607e-12) (3.56384e-10 1.38245e-10 -2.35701e-10) (2.13429e-10 1.66325e-10 -3.80601e-10) (-2.04811e-09 4.9063e-10 -6.35561e-10) (-2.08601e-08 9.13528e-10 1.35886e-09) (-2.10349e-08 -8.20966e-10 3.28767e-09) (-5.51503e-09 -4.35181e-10 8.1716e-10) (-9.23173e-10 -3.67501e-11 1.39749e-11) (-2.02462e-10 5.34192e-12 -7.55404e-11) (-4.78047e-11 1.66914e-13 -9.9799e-11) (2.64687e-11 -4.93996e-12 -1.48522e-10) (4.53286e-11 9.62911e-13 -1.03928e-10) (9.4403e-12 1.21746e-12 -1.529e-11) (4.40194e-13 4.24661e-13 4.14724e-13) (9.54917e-12 8.29603e-12 1.74038e-11) (9.90944e-11 3.31993e-11 7.84726e-11) (3.88527e-10 5.02006e-11 2.12254e-10) (6.5452e-10 1.37672e-11 2.89967e-10) (3.40442e-10 1.32101e-12 1.03569e-10) (-9.19643e-12 4.47706e-13 -9.56004e-12) (-3.29258e-09 -6.85198e-11 -1.43581e-09) (-6.68208e-09 -3.0573e-10 -3.102e-09) (-8.35202e-10 -1.72974e-10 -7.80345e-10) (1.84697e-10 -1.28874e-10 -2.20265e-10) (1.58375e-09 -5.4055e-10 -2.89376e-10) (3.03975e-09 -9.00794e-10 2.95762e-10) (3.61524e-09 -7.96349e-10 1.45534e-09) (4.25564e-09 -2.33506e-10 3.12444e-09) (3.94633e-09 7.1955e-10 3.98333e-09) (1.70799e-09 8.88499e-10 2.10078e-09) (2.70401e-10 2.78811e-10 3.34383e-10) (1.95101e-11 2.69928e-11 1.00963e-11) (2.35659e-12 7.81255e-13 3.65361e-13) (1.72913e-12 -2.04258e-12 3.51687e-12) (-7.43821e-12 -5.51197e-12 9.08146e-12) (-8.27323e-11 -2.16726e-11 5.92025e-12) (-5.17595e-10 -5.08971e-11 -4.8075e-11) (-7.93417e-10 -4.06189e-11 -2.17677e-10) (-4.9349e-10 4.77827e-11 -1.90239e-10) (-8.65534e-11 3.57721e-11 -5.50357e-11) (2.51573e-11 2.90508e-11 -5.62398e-11) (2.15643e-10 1.32714e-10 -2.77801e-10) (-1.48694e-10 2.35476e-10 -2.32808e-10) (-8.64923e-09 2.31793e-09 -8.36391e-11) (-3.54929e-08 2.33783e-09 3.79158e-09) (-2.1051e-08 -1.85559e-09 2.15326e-09) (-2.4952e-09 -6.95392e-10 9.33909e-11) (-6.67491e-11 -3.83847e-11 -9.8292e-12) (9.93575e-13 -1.17927e-12 -1.01478e-11) (6.83698e-11 2.18641e-11 -1.68458e-10) (2.14042e-10 6.33615e-11 -4.35538e-10) (2.11566e-10 4.1383e-11 -3.09221e-10) (7.38676e-11 2.3256e-12 -4.71568e-11) (1.9916e-11 -2.80693e-12 1.31625e-11) (1.14557e-11 -2.35503e-12 3.71536e-11) (7.7512e-12 1.5733e-12 1.60126e-11) (3.15308e-11 5.03138e-12 1.3397e-11) (1.1443e-10 1.28784e-11 2.72775e-11) (2.03494e-10 4.38443e-11 5.81688e-11) (4.32879e-11 3.29915e-11 1.94366e-11) (-1.31406e-10 4.05776e-11 -1.68083e-11) (-1.12595e-09 -1.2761e-10 -3.10664e-10) (-4.57686e-10 -2.44327e-10 -2.80981e-10) (8.61116e-11 -1.68503e-10 -2.07808e-10) (1.09115e-09 -4.18069e-10 -7.18943e-10) (2.06735e-09 -5.69539e-10 -9.36545e-10) (1.53013e-09 -3.97741e-10 -2.02824e-10) (1.14887e-09 -1.8682e-10 6.40042e-10) (1.48585e-09 1.76466e-10 2.10281e-09) (1.24181e-09 7.13776e-10 2.63371e-09) (4.73005e-10 5.02523e-10 1.04967e-09) (1.38383e-10 1.25697e-10 1.46483e-10) (7.4075e-11 3.17226e-11 7.70841e-12) (3.3795e-11 7.61064e-12 -4.48062e-12) (1.73126e-14 9.10475e-14 4.42099e-14) (-8.72452e-11 -3.90541e-12 8.54453e-12) (-1.31436e-10 -5.5866e-12 1.30426e-11) (-3.30007e-10 -1.72066e-11 -9.96747e-11) (-2.36089e-10 7.99757e-12 -1.58535e-10) (-3.58706e-11 9.48536e-12 -7.7233e-11) (3.93163e-11 1.34324e-11 -9.95866e-11) (4.55578e-13 6.0117e-11 -1.15827e-10) (-2.13289e-09 1.1474e-09 -3.35958e-10) (-2.49433e-08 6.83922e-09 1.58153e-09) (-3.65117e-08 2.84077e-09 1.71628e-09) (-6.09982e-09 -1.69185e-09 -7.79924e-10) (-1.32567e-11 -4.34152e-10 -1.6429e-10) (3.15013e-10 -2.39476e-10 3.37609e-11) (7.37425e-11 -1.13348e-11 3.42128e-11) (2.60551e-11 3.04268e-11 -3.35165e-11) (2.20102e-10 2.44253e-10 -6.45581e-10) (4.3812e-10 2.08329e-10 -8.90106e-10) (2.65294e-10 2.4908e-11 -2.05865e-10) (2.46415e-10 -2.7204e-11 9.70331e-11) (3.70318e-10 -8.47094e-11 4.42084e-10) (2.48372e-10 -8.0199e-11 3.26621e-10) (1.43075e-10 -4.57707e-11 8.26655e-11) (9.65296e-11 -1.19805e-11 -1.19615e-11) (3.20313e-11 1.74348e-11 -2.33528e-11) (3.47484e-12 3.71091e-11 -4.99606e-12) (-2.27584e-11 4.51694e-11 3.00615e-11) (-2.81173e-11 -2.83412e-12 3.43294e-11) (-1.73132e-11 -5.27116e-11 2.10716e-11) (1.80963e-11 -9.00034e-11 -3.20223e-11) (1.86185e-10 -1.76869e-10 -3.35647e-10) (8.61353e-10 -3.25416e-10 -1.40708e-09) (1.02375e-09 -3.32572e-10 -1.42469e-09) (2.02301e-10 -6.50217e-11 -1.18577e-10) (1.16703e-10 1.83891e-11 3.08525e-10) (1.3984e-11 3.71227e-10 1.5912e-09) (-7.91516e-11 4.63593e-10 1.14685e-09) (4.18159e-11 1.55155e-10 2.07077e-10) (9.68326e-11 6.88912e-11 2.91673e-11) (1.46107e-10 5.89577e-11 7.29943e-12) (3.69328e-11 1.82556e-11 1.47615e-11) (-7.04859e-12 3.66856e-12 1.00387e-11) (-1.01326e-11 1.06231e-11 2.08466e-11) (-9.57244e-11 9.17233e-12 -1.85041e-11) (-1.19653e-10 -2.4962e-13 -1.01215e-10) (-2.13741e-11 -4.91828e-12 -6.90738e-11) (-1.26271e-12 1.48138e-13 -2.91556e-11) (-2.59814e-10 1.23091e-10 -7.14669e-11) (-8.27058e-09 3.42593e-09 2.29615e-10) (-3.00075e-08 9.01589e-09 9.5103e-10) (-1.05895e-08 5.92018e-10 -1.62635e-09) (9.50386e-11 -1.09804e-09 -9.24819e-10) (4.8514e-09 -3.61602e-09 -1.6779e-09) (3.52692e-09 -1.44987e-09 2.34924e-10) (4.65413e-10 1.86979e-11 5.37268e-10) (-2.07951e-10 2.7138e-10 3.82547e-10) (-2.58411e-10 2.92605e-10 -1.59755e-10) (-5.05532e-13 3.37985e-10 -8.52965e-10) (2.58866e-10 6.98308e-11 -3.73174e-10) (3.28578e-10 -4.25744e-11 6.15672e-11) (8.0637e-10 -2.61075e-10 7.22379e-10) (8.60981e-10 -4.3428e-10 8.81228e-10) (6.06052e-10 -3.37447e-10 3.91147e-10) (3.52424e-10 -1.2197e-10 4.23175e-11) (1.05495e-10 2.68669e-11 -6.49559e-11) (-2.76728e-11 1.36832e-10 -1.17982e-10) (-1.36842e-10 1.38118e-10 -3.14104e-11) (-6.69391e-11 4.29991e-12 5.91618e-11) (-5.40059e-11 -1.34745e-10 1.64212e-10) (-4.96135e-11 -1.3353e-10 1.09231e-10) (-2.2368e-11 -1.76082e-11 -1.19938e-12) (-1.26155e-11 5.47842e-12 -3.42043e-10) (5.36583e-10 -9.51578e-11 -2.47779e-09) (2.77915e-10 -1.94104e-10 -1.80075e-09) (-2.91378e-11 -8.24845e-14 -3.64678e-11) (-4.14388e-10 1.83559e-10 4.9066e-10) (-6.25832e-10 3.91521e-10 8.76456e-10) (-9.45072e-11 1.27324e-10 1.8385e-10) (6.36873e-11 5.50525e-11 4.34909e-11) (4.22478e-10 1.52759e-10 1.32468e-10) (5.21917e-10 1.90406e-10 2.49408e-10) (1.37585e-10 8.10931e-11 1.40504e-10) (-1.28816e-11 1.12724e-10 1.97079e-10) (-5.07155e-11 2.88211e-11 -1.64122e-12) (-7.70428e-11 7.51124e-12 -8.57132e-11) (-1.41152e-11 -4.51852e-12 -3.66148e-11) (-2.82211e-12 1.59689e-12 4.13683e-13) (-7.71216e-10 3.8747e-10 2.73582e-10) (-9.506e-09 4.04316e-09 1.62935e-09) (-1.14034e-08 3.77757e-09 1.79193e-10) (-2.87979e-10 -1.70409e-10 -3.01132e-10) (5.96227e-09 -5.07903e-09 -2.91188e-09) (1.37429e-08 -8.55705e-09 -2.92161e-09) (6.49742e-09 -2.54919e-09 -4.37716e-10) (7.28301e-10 1.25159e-10 2.66351e-10) (-5.74007e-10 9.90777e-10 1.0893e-09) (-3.10932e-09 1.97866e-09 1.62801e-09) (-1.31111e-09 6.45863e-10 -1.61906e-10) (-8.42605e-11 5.19257e-11 -2.19923e-10) (1.65589e-10 -4.59367e-11 -1.30662e-10) (6.62263e-10 -2.11554e-10 5.2343e-12) (1.25485e-09 -4.32304e-10 2.9947e-10) (1.45138e-09 -5.18207e-10 4.38355e-10) (1.06408e-09 -3.44926e-10 2.99719e-10) (3.86121e-10 -5.13444e-11 5.34856e-11) (7.30766e-11 3.88031e-11 -2.41953e-11) (1.27491e-11 3.50762e-11 -2.30587e-11) (2.02479e-13 9.8709e-14 -4.47692e-14) (1.35612e-12 -6.91826e-11 5.72333e-11) (-1.87086e-10 -2.56597e-10 3.26553e-10) (-8.80817e-10 -2.26952e-10 6.83505e-10) (-9.84541e-10 9.66255e-11 1.90718e-10) (-5.40557e-10 2.38206e-10 -9.10345e-10) (-4.65342e-10 3.71979e-10 -4.274e-09) (-1.23742e-09 2.59403e-10 -2.65324e-09) (-1.29116e-09 3.39472e-10 -4.47051e-10) (-7.11523e-10 3.25374e-10 1.6306e-10) (-4.87983e-11 5.62058e-11 3.7554e-11) (3.14063e-11 1.53233e-11 2.18146e-11) (2.1519e-10 2.7304e-11 1.7559e-10) (4.59356e-10 1.21684e-10 6.36928e-10) (3.1158e-10 2.40772e-10 7.74039e-10) (-3.45219e-10 8.72665e-11 2.80687e-10) (-1.62055e-10 2.25011e-11 5.66517e-11) (-7.71573e-11 -9.19175e-12 -2.39799e-11) (-4.55443e-12 -3.65891e-12 -3.30445e-12) (2.17283e-11 1.08497e-11 3.59513e-11) (-4.87647e-11 3.59866e-10 4.65129e-10) (-1.25813e-09 1.32763e-09 1.21119e-09) (-3.49086e-10 2.11885e-10 2.1525e-10) (7.80611e-10 -7.04992e-10 -1.40845e-10) (9.54092e-09 -7.00283e-09 -2.57338e-09) (1.06634e-08 -6.66703e-09 -3.43107e-09) (3.3066e-09 -1.46409e-09 -1.07201e-09) (2.15563e-10 3.40962e-11 -4.03848e-11) (-2.694e-10 5.425e-10 2.42075e-10) (-3.84729e-09 2.71433e-09 1.9883e-09) (-5.15118e-09 2.0074e-09 1.58652e-09) (-1.13944e-09 2.06609e-10 -1.08015e-10) (4.01806e-12 -3.9815e-11 -2.39668e-10) (1.04798e-09 -2.87529e-10 -8.85146e-10) (2.24689e-09 -5.63555e-10 -7.88898e-10) (2.35304e-09 -6.83051e-10 -5.20507e-13) (1.56682e-09 -5.43889e-10 4.91752e-10) (4.93095e-10 -2.01527e-10 3.10531e-10) (4.28223e-11 -1.80673e-11 4.1596e-11) (1.40151e-12 -1.98503e-13 4.54881e-13) (1.36199e-11 -5.58141e-12 -5.01335e-12) (6.7858e-11 -4.15635e-11 -1.95239e-14) (7.13049e-11 -5.32823e-11 6.87608e-11) (-5.20972e-11 -4.1541e-11 3.89104e-10) (-9.2558e-10 1.4069e-10 1.15352e-09) (-1.17016e-09 2.95315e-10 2.64301e-10) (-1.18414e-09 6.0705e-10 -1.85637e-09) (-2.17359e-09 1.29416e-09 -5.84643e-09) (-2.60974e-09 9.37514e-10 -2.9863e-09) (-9.30741e-10 3.17644e-10 -2.91563e-10) (-5.55644e-11 4.85265e-11 3.66331e-11) (1.80524e-11 2.68301e-11 3.24306e-11) (1.55502e-12 1.49204e-11 1.28675e-11) (-9.27365e-11 4.52754e-11 5.40699e-11) (-3.63078e-10 9.59113e-11 2.58192e-10) (-3.03488e-10 2.35589e-11 -2.00302e-10) (-4.38041e-10 -1.20227e-10 -2.58503e-11) (-4.34634e-10 -2.2064e-10 4.21657e-11) (-1.63164e-10 -1.35852e-10 3.26796e-11) (-4.50885e-13 -2.6127e-11 4.62642e-11) (3.51007e-10 1.84857e-10 5.56922e-10) (1.02845e-09 7.43736e-10 1.35511e-09) (1.49416e-09 1.20675e-10 1.01035e-09) (3.92252e-09 -1.8775e-09 4.79006e-10) (4.78398e-09 -3.31447e-09 -1.08066e-09) (1.61461e-09 -1.11835e-09 -9.25268e-10) (8.87209e-11 -3.15832e-11 -8.4856e-11) (-2.31062e-11 3.53226e-11 6.07721e-12) (-4.30047e-10 3.94286e-10 1.68815e-10) (-1.52531e-09 9.02095e-10 4.82528e-10) (-2.57042e-09 6.745e-10 6.27597e-10) (-1.56201e-09 4.18039e-11 1.10161e-10) (-1.44271e-10 -2.45202e-11 -1.16115e-10) (3.9145e-10 -5.49586e-11 -5.23806e-10) (1.81046e-09 -2.14117e-10 -1.0575e-09) (1.53318e-09 -3.08742e-10 -3.4715e-10) (4.66166e-10 -1.77908e-10 1.17778e-10) (7.12795e-11 -8.10017e-11 1.14974e-10) (-4.69992e-12 -3.8662e-11 4.36472e-11) (9.3163e-13 -1.69583e-11 1.41365e-12) (4.59723e-11 -5.55723e-11 -3.48039e-11) (1.53018e-10 -1.18751e-10 -6.9162e-11) (1.56121e-10 -9.15765e-11 1.55794e-11) (1.59026e-10 -3.55409e-11 2.33391e-10) (4.60971e-12 2.32872e-10 1.19899e-09) (-8.4305e-10 6.69126e-10 1.72931e-09) (-5.83431e-10 4.03555e-10 2.05508e-10) (-4.19849e-10 5.5047e-10 -1.11153e-09) (-5.03978e-10 7.07803e-10 -2.35332e-09) (-5.98059e-10 1.82626e-10 -6.06286e-10) (-1.01498e-09 7.35523e-11 9.43425e-11) (-1.20289e-09 1.51401e-10 3.11516e-10) (-5.65053e-10 2.32491e-10 -1.11271e-10) (-3.96914e-10 3.46581e-10 -5.44114e-10) (-3.47404e-10 2.46841e-10 -6.03735e-10) (6.00249e-11 1.0275e-10 -8.22567e-10) (2.61451e-11 -5.74768e-11 -1.2922e-10) (-1.15096e-12 -7.08218e-11 -4.10596e-12) (-1.62087e-11 -9.1038e-11 3.80939e-11) (-6.0232e-12 -4.53714e-11 3.57573e-11) (3.0892e-11 -2.23756e-11 6.17495e-11) (3.50266e-10 -2.40219e-11 2.97055e-10) (1.26005e-09 -2.84658e-10 5.39229e-10) (1.74036e-09 -7.69649e-10 1.61464e-10) (7.6461e-10 -3.96955e-10 -1.46301e-10) (4.02983e-11 -6.06601e-12 -1.19303e-11) (-3.3227e-11 8.4602e-11 9.1847e-11) (-4.22035e-10 5.45768e-10 9.07559e-10) (-6.10008e-10 6.22265e-10 1.14843e-09) (-2.79453e-10 1.88345e-10 3.19337e-10) (-1.14263e-10 8.67312e-12 1.60246e-11) (-2.90027e-10 -5.9607e-11 -9.84086e-11) (-4.98959e-10 -3.15968e-11 -2.24113e-10) (-2.16329e-10 5.11464e-11 -1.96977e-10) (1.28444e-11 3.615e-11 -1.30635e-10) (1.04976e-10 7.53464e-12 -1.0038e-10) (7.24654e-11 -1.89396e-11 -2.07705e-11) (6.7715e-11 -4.05216e-11 9.95155e-13) (1.49083e-10 -9.81251e-11 -3.58182e-11) (3.58303e-10 -2.09692e-10 -1.93462e-10) (5.13257e-10 -3.08984e-10 -3.29212e-10) (3.9135e-10 -2.96173e-10 -1.8942e-10) (1.72292e-10 -1.85311e-10 2.15535e-11) (6.89557e-11 -1.0762e-10 1.76218e-10) (-5.56917e-11 7.47578e-11 7.27047e-10) (-6.75627e-10 9.14064e-10 2.01634e-09) (-1.30386e-09 1.34559e-09 1.89269e-09) (-4.11496e-10 4.0814e-10 2.0531e-10) (-4.33395e-11 8.98111e-11 -2.10274e-10) (-2.52224e-11 3.1627e-12 -6.13059e-10) (-4.40846e-10 -3.57121e-11 -4.17606e-10) (-2.61344e-09 2.50105e-10 -2.84303e-10) (-4.20466e-09 1.09707e-09 -2.59421e-10) (-1.85251e-09 9.41834e-10 -9.63007e-10) (-4.32543e-10 5.45819e-10 -1.3201e-09) (-9.21476e-11 4.97875e-11 -2.46553e-10) (2.39456e-11 -3.45963e-11 -5.95889e-11) (4.60054e-11 -8.22447e-11 4.33898e-12) (6.25431e-11 -1.02215e-10 5.62575e-11) (7.05305e-11 -5.39744e-11 4.19502e-11) (1.33344e-10 -3.81726e-11 2.26096e-11) (2.70582e-10 -6.53413e-11 -4.74203e-12) (3.35116e-10 -1.3897e-10 -4.66902e-11) (2.00135e-10 -1.42138e-10 -6.35028e-11) (2.97929e-11 -2.52325e-11 -1.37974e-11) (3.79502e-12 1.07589e-11 9.80973e-12) (6.12896e-14 3.14887e-10 3.64393e-10) (-5.6723e-11 8.683e-10 1.40734e-09) (-1.3573e-10 7.09187e-10 1.65849e-09) (-1.47549e-10 1.27849e-10 7.10431e-10) (-1.21008e-10 -5.39662e-11 1.42715e-10) (-2.83467e-10 -1.10625e-10 -4.20561e-12) (-7.089e-10 -3.08242e-11 -2.24081e-10) (-8.43571e-10 2.30814e-10 -3.70557e-10) (-3.21445e-10 1.91007e-10 -2.41426e-10) (-5.33524e-12 4.01397e-11 -8.53189e-11) (2.05326e-10 -1.52501e-11 -1.59722e-10) (8.66415e-10 -2.26535e-10 -4.13233e-10) (1.55697e-09 -5.40038e-10 -7.90511e-10) (1.57786e-09 -7.27044e-10 -1.0098e-09) (9.95513e-10 -6.57338e-10 -7.22854e-10) (3.60105e-10 -3.8036e-10 -1.75853e-10) (7.43575e-11 -2.09331e-10 9.46911e-11) (-1.69351e-10 -2.46495e-10 4.38409e-10) (-6.41118e-10 -1.45533e-11 9.13499e-10) (-7.65746e-10 6.11119e-10 1.17434e-09) (-5.2706e-10 1.07736e-09 1.23139e-09) (-2.23483e-10 5.87417e-10 6.22731e-10) (-1.73157e-11 3.13527e-11 2.94056e-11) (1.39484e-12 -1.30483e-11 -5.649e-11) (-6.7448e-11 -6.63334e-11 -4.4042e-10) (-6.54319e-10 1.02517e-10 -6.8736e-10) (-2.48465e-09 7.01175e-10 -8.52827e-10) (-2.98286e-09 1.05679e-09 -7.88065e-10) (-9.80011e-10 4.50269e-10 -6.08192e-10) (-1.4028e-09 4.15096e-10 2.18595e-10) (-1.23745e-10 4.62686e-12 1.20588e-10) (3.44469e-11 -8.41339e-11 1.69159e-10) (1.50261e-10 -1.57405e-10 1.59688e-10) (1.70504e-10 -1.35678e-10 5.00277e-12) (2.88139e-10 -1.74773e-10 -2.2655e-10) (4.52813e-10 -2.19528e-10 -5.78017e-10) (3.4273e-10 -1.93119e-10 -5.59144e-10) (9.60189e-11 -9.10672e-11 -2.14379e-10) (5.8573e-12 -5.39904e-12 -1.4816e-11) (1.48547e-11 2.28659e-11 1.94192e-11) (2.55993e-10 3.17809e-10 4.04917e-10) (7.9217e-10 6.19859e-10 1.16459e-09) (8.29789e-10 3.2051e-10 1.23714e-09) (3.1554e-10 -3.09473e-11 6.22422e-10) (-1.58839e-11 -5.96507e-11 1.63956e-10) (-2.55134e-10 -5.99648e-11 9.19093e-11) (-8.70372e-10 2.83493e-11 -4.15462e-11) (-8.12052e-10 1.57186e-10 -2.18029e-10) (-1.65842e-10 6.44119e-11 -1.43246e-10) (7.6684e-11 9.67592e-12 -1.58822e-10) (9.90457e-10 -1.48989e-10 -6.87375e-10) (2.61068e-09 -4.56184e-10 -1.42342e-09) (3.00274e-09 -5.41249e-10 -1.68443e-09) (1.7189e-09 -3.87707e-10 -1.20146e-09) (3.72813e-10 -1.85063e-10 -3.90651e-10) (-3.67664e-13 -5.12918e-11 -2.523e-11) (-2.87634e-10 -2.21766e-10 2.34726e-10) (-1.84973e-09 -6.36006e-10 1.56e-09) (-3.70894e-09 -4.26698e-10 2.53576e-09) (-2.24219e-09 3.57815e-10 1.46492e-09) (-2.69117e-10 3.99777e-10 4.25488e-10) (4.21502e-10 5.23792e-10 4.0015e-10) (1.00795e-09 3.84796e-10 3.41252e-10) (8.52079e-10 7.29601e-12 -3.80982e-11) (4.04718e-10 -6.65893e-11 -3.11612e-10) (-6.84116e-11 5.10792e-11 -4.15807e-10) (-1.88721e-09 6.56421e-10 -1.0646e-09) (-5.83932e-09 1.87394e-09 -1.03948e-09) (-5.09423e-09 1.61364e-09 -1.20547e-10) (-2.64079e-09 4.05227e-10 2.07986e-09) (-3.45675e-10 -3.55442e-10 9.86299e-10) (2.35219e-10 -5.79794e-10 5.97053e-10) (2.06368e-10 -3.07654e-10 1.48893e-10) (2.84232e-11 -3.6119e-11 -1.79065e-11) (6.97083e-12 -1.56509e-11 -1.72026e-10) (-3.34118e-11 -6.68746e-11 -7.06176e-10) (-4.24424e-11 -1.94128e-10 -8.9051e-10) (-2.1948e-11 -9.06375e-11 -3.03071e-10) (-7.46193e-14 -1.25705e-12 -7.02648e-12) (2.9796e-11 2.30788e-11 3.11013e-11) (3.58046e-10 1.50883e-10 2.64521e-10) (1.01925e-09 1.81647e-10 5.12096e-10) (1.03561e-09 3.66623e-12 3.64815e-10) (2.96392e-10 -3.11308e-11 6.07436e-11) (2.6257e-12 3.61333e-13 -1.75796e-12) (-9.29832e-11 4.61359e-11 -4.78247e-11) (-2.561e-10 1.36296e-10 -9.79869e-11) (-8.26808e-11 6.06243e-11 -5.20891e-11) (1.60341e-11 1.02576e-11 -3.78547e-11) (3.69019e-10 -6.88872e-11 -2.73344e-10) (1.17993e-09 -3.25817e-10 -7.30428e-10) (1.43188e-09 -4.46878e-10 -8.92967e-10) (7.5668e-10 -2.78429e-10 -5.96743e-10) (1.05182e-10 -7.92576e-11 -2.09499e-10) (-9.82896e-11 -4.11253e-11 -1.12297e-10) (-5.19944e-10 -9.52823e-11 -6.7978e-11) (-1.06111e-09 -2.23877e-10 3.52103e-10) (-1.57636e-09 -4.51718e-10 1.14987e-09) (-1.89727e-09 -5.5798e-10 1.68814e-09) (-1.42674e-09 -1.89466e-10 1.19516e-09) (-3.83144e-10 1.39873e-10 3.29482e-10) (2.35172e-11 1.6211e-10 6.26659e-11) (6.35115e-10 4.68241e-10 -4.3996e-11) (1.60217e-09 5.39017e-10 -4.12647e-10) (1.27899e-09 2.87957e-10 -5.76671e-10) (1.7559e-10 1.20144e-10 -1.83486e-10) (-3.79571e-10 3.15971e-10 -9.8119e-11) (-3.88751e-09 1.74932e-09 6.46942e-10) (-6.20287e-09 2.07875e-09 2.38172e-09) (-1.88549e-10 -3.76924e-10 3.7726e-10) (4.43362e-10 -1.62722e-09 5.49651e-10) (7.1558e-10 -1.68235e-09 3.52756e-10) (5.46355e-11 -2.25913e-10 9.453e-11) (-1.37781e-10 6.63152e-11 8.90732e-11) (-9.09264e-10 8.46943e-10 2.30419e-10) (-9.14534e-10 9.76115e-10 -1.63114e-11) (-2.7421e-10 3.16002e-10 -1.01514e-10) (-1.46774e-11 2.46429e-11 -1.58252e-11) (8.16449e-12 1.50193e-12 7.2928e-13) (1.17854e-10 -6.24929e-12 3.79752e-11) (3.16618e-10 -1.16837e-11 6.24418e-11) (4.27522e-10 -1.33264e-11 -3.1341e-11) (3.96479e-10 -2.526e-11 -2.06584e-10) (3.02122e-10 -3.36425e-11 -4.18503e-10) (1.48736e-10 -2.42858e-11 -5.44781e-10) (1.73959e-11 6.76137e-12 -3.31232e-10) (-5.64395e-13 1.29226e-11 -5.43818e-11) (3.63857e-12 5.63235e-12 -8.4178e-13) (3.66007e-11 1.79691e-11 1.99585e-11) (1.11644e-10 7.05864e-12 3.07942e-11) (1.7859e-10 -4.03069e-11 -1.04852e-11) (1.59543e-10 -7.50028e-11 -8.07843e-11) (6.15742e-11 -5.69132e-11 -1.27748e-10) (-8.99448e-11 -3.79286e-11 -2.65906e-10) (-6.47184e-10 -3.54866e-11 -6.52069e-10) (-1.46749e-09 -2.46707e-10 -8.40389e-10) (-1.4258e-09 -6.08389e-10 -3.57416e-10) (-8.04511e-10 -7.15821e-10 2.54878e-10) (-4.53491e-10 -7.77832e-10 8.67261e-10) (-2.82697e-10 -5.18758e-10 1.32819e-09) (-2.42789e-10 2.85762e-11 9.21701e-10) (-1.42814e-10 2.29119e-10 2.96048e-10) (-2.94836e-11 2.16587e-10 5.12765e-12) (1.12841e-10 2.80209e-10 -1.90875e-10) (2.79121e-10 3.6172e-10 -3.48062e-10) (1.68192e-10 4.33167e-10 -2.46119e-10) (-1.6589e-10 6.56299e-10 -3.84457e-11) (-8.08268e-10 8.79619e-10 3.65982e-10) (-7.01634e-10 2.17271e-10 5.07274e-10) (9.35138e-10 -1.5173e-09 2.62406e-10) (1.32396e-09 -2.2818e-09 3.13479e-10) (3.74389e-10 -7.36407e-10 2.56185e-10) (-4.24136e-11 -3.79832e-11 1.32353e-10) (-8.93792e-10 5.09609e-10 6.54165e-10) (-2.75706e-09 1.66979e-09 1.1024e-09) (-2.68549e-09 1.57608e-09 5.63818e-10) (-8.62347e-10 5.10306e-10 2.55122e-11) (-4.35152e-11 3.56107e-11 -1.93477e-11) (2.88509e-11 5.46849e-12 -1.62311e-11) (2.3958e-10 1.73732e-11 -2.37507e-11) (4.09159e-10 8.34286e-11 4.89327e-11) (3.16968e-10 1.30689e-10 7.47685e-11) (1.23471e-10 8.86748e-11 1.55969e-11) (3.19917e-11 4.17669e-11 -2.39355e-11) (9.39835e-12 2.85453e-11 -5.51786e-11) (-4.02376e-12 1.0773e-11 -5.61805e-11) (-5.00827e-12 -1.26363e-13 -1.42226e-11) (-3.01083e-12 -1.36077e-12 -2.67484e-13) (-1.13718e-11 -9.00347e-12 8.93914e-12) (-2.117e-11 -2.72222e-11 1.63006e-11) (-2.59673e-11 -4.92742e-11 4.3161e-12) (-2.54e-11 -6.48844e-11 -2.69019e-11) (-1.6935e-11 -6.00245e-11 -7.23743e-11) (-4.57741e-13 -3.56863e-11 -1.49356e-10) (2.01051e-11 5.58551e-12 -2.77318e-10) (-1.28702e-12 -5.95502e-13 -3.56723e-10) (-7.22115e-11 -9.00398e-11 -2.81507e-10) (-1.27964e-10 -1.92225e-10 -1.21596e-10) (-1.72848e-10 -3.43851e-10 1.29759e-10) (-1.57221e-10 -4.90909e-10 6.90172e-10) (-6.72754e-11 -2.58016e-10 1.11834e-09) (-8.15703e-11 1.27021e-10 7.07554e-10) (-1.08033e-10 2.0985e-10 1.61388e-10) (-2.31705e-10 4.22894e-10 -1.89085e-10) (-4.03636e-10 8.34193e-10 -8.14145e-10) (-2.63361e-10 7.97934e-10 -6.83744e-10) (-5.10282e-11 3.55638e-10 -1.39167e-10) (1.11379e-11 3.35607e-11 1.16195e-11) (1.29966e-10 -1.42005e-10 8.04571e-11) (5.85456e-10 -8.56392e-10 1.42923e-10) (2.11497e-10 -5.91217e-10 8.45401e-11) (-2.24774e-11 -9.69625e-11 1.5728e-11) (-1.75601e-10 3.05854e-11 5.25847e-11) (-1.26902e-09 6.80022e-10 5.06798e-10) (-2.99305e-09 1.47408e-09 1.25065e-09) (-2.86602e-09 9.33271e-10 8.76629e-10) (-1.05268e-09 1.31109e-10 2.0531e-11) (-1.60357e-10 -2.45148e-11 -1.49714e-10) (4.56875e-11 -1.59575e-11 -2.68165e-10) (2.28701e-10 1.05512e-10 -3.15027e-10) (3.01118e-10 3.21314e-10 -1.87424e-10) (3.20798e-10 5.55189e-10 4.23128e-11) (2.33224e-10 5.42841e-10 2.77054e-10) (9.61071e-11 2.78084e-10 3.02791e-10) (1.72858e-11 7.13517e-11 1.71151e-10) (-2.49004e-12 -2.3197e-12 6.44375e-11) (-5.60676e-12 -2.23618e-11 2.68934e-11) (-1.32789e-11 -5.79062e-11 1.93615e-11) (-3.12203e-11 -1.17158e-10 8.93962e-12) (-4.8301e-11 -1.4599e-10 -9.26403e-12) (-4.82881e-11 -1.19171e-10 -2.98968e-11) (-3.41954e-11 -7.77066e-11 -4.733e-11) (-1.68539e-11 -4.95961e-11 -6.47772e-11) (3.59092e-12 -2.50275e-11 -7.68922e-11) (1.96537e-11 2.45684e-12 -7.19212e-11) (2.04488e-11 2.04166e-11 -4.56983e-11) (7.26627e-12 1.29303e-11 -1.17672e-11) (1.95105e-13 7.28803e-13 1.2929e-13) (-1.90182e-12 -5.19861e-12 7.54805e-12) (-6.598e-12 -4.03586e-11 3.42436e-11) (1.66865e-12 -5.4482e-11 4.40137e-11) (9.68599e-12 -2.22202e-11 3.15201e-11) (9.11891e-12 5.33946e-12 2.09967e-11) (7.49348e-12 4.52424e-11 1.39809e-11) (-1.03167e-11 1.67174e-10 -6.18453e-11) (-1.91872e-11 2.8766e-10 -2.35001e-10) (4.53623e-11 1.37291e-10 -1.66632e-10) (8.80052e-11 -7.86687e-12 -4.89278e-11) (3.86608e-10 -3.34379e-10 1.50485e-11) (-2.58178e-11 -7.85327e-15 2.94426e-12) (-3.40516e-11 3.35392e-13 2.59733e-12) (-2.71511e-11 2.52447e-13 2.10935e-12) (-7.74567e-12 -3.22361e-13 2.1041e-12) (-6.45363e-13 -3.10859e-13 1.68133e-12) (1.25265e-12 -5.09534e-13 5.48088e-12) (2.54832e-13 4.49669e-14 4.05461e-12) (-3.63981e-13 8.29152e-14 6.64621e-13) (-9.16881e-14 1.19438e-14 1.8005e-14) (2.03881e-15 3.37925e-18 8.01303e-15) (1.17366e-13 -7.20288e-15 6.92567e-14) (3.9074e-13 -1.42084e-14 1.24265e-13) (5.4797e-13 -6.95151e-15 -8.50212e-14) (1.15562e-12 -2.76819e-14 -7.64656e-13) (2.75944e-12 -7.9142e-14 -2.50965e-12) (4.63073e-12 -9.59868e-14 -4.53541e-12) (4.60461e-12 -7.52586e-14 -4.49801e-12) (3.01829e-12 -4.04988e-14 -2.58653e-12) (2.09934e-12 -1.71019e-14 -1.30143e-12) (1.91167e-12 1.46161e-14 -8.07011e-13) (1.28675e-12 4.83064e-14 -5.94389e-13) (4.36889e-13 3.59518e-14 -4.83861e-13) (2.63502e-13 2.55806e-15 -9.03197e-13) (1.30101e-12 -7.50399e-14 -1.86972e-12) (5.06502e-12 -5.41313e-15 -3.20321e-12) (7.42221e-12 3.63101e-13 -2.55201e-12) (6.85407e-12 5.34124e-13 -5.59314e-13) (6.01386e-12 4.7005e-13 1.74315e-12) (3.79645e-12 1.90395e-13 2.86827e-12) (2.65351e-13 3.68933e-15 5.80951e-13) (-7.2899e-13 -8.4269e-14 -1.8493e-13) (3.43858e-14 -3.52357e-14 -1.05772e-13) (4.28835e-12 -1.63951e-13 3.54492e-14) (1.71723e-11 -1.39394e-13 2.40875e-12) (2.10484e-11 3.16909e-14 4.25815e-12) (9.38143e-12 2.09747e-13 2.59242e-12) (6.21397e-13 8.13552e-14 3.49679e-13) (-1.31634e-12 1.49763e-13 3.14799e-13) (-7.82665e-12 3.6715e-13 9.37775e-13) (-1.62659e-11 2.07641e-14 2.03422e-12) (-1.3006e-11 -7.81788e-13 7.6513e-13) (-1.07931e-10 -4.8197e-12 -1.36781e-11) (-2.00234e-10 -1.34263e-11 -2.12343e-11) (-1.05382e-10 -1.35024e-11 9.56962e-12) (-2.91415e-11 -6.33534e-12 1.66269e-11) (-1.83469e-11 -1.38927e-12 1.62967e-11) (-2.20188e-11 3.00504e-12 7.83582e-12) (-1.37225e-11 2.09074e-12 -2.88243e-12) (-1.59356e-12 1.71452e-13 -2.67172e-12) (2.60925e-12 -1.73876e-13 -2.90566e-12) (1.17124e-11 -3.91271e-13 -5.81934e-12) (1.8143e-11 -1.44712e-13 -9.86327e-12) (2.0833e-11 1.23631e-13 -1.69468e-11) (2.82851e-11 -5.32427e-13 -2.82611e-11) (4.16163e-11 -1.35558e-12 -3.80981e-11) (5.48977e-11 -1.42414e-12 -3.76803e-11) (6.02109e-11 -8.76964e-13 -2.67218e-11) (5.90704e-11 -9.60437e-14 -1.4232e-11) (6.22845e-11 7.44763e-13 -7.60174e-12) (6.80211e-11 1.75392e-12 -6.30605e-12) (5.63154e-11 1.99172e-12 -7.64942e-12) (2.41796e-11 6.87471e-13 -7.42997e-12) (4.46111e-12 -1.89871e-13 -5.49963e-12) (1.15624e-12 -1.68059e-13 -5.39928e-12) (4.27591e-12 5.94766e-13 -1.93846e-12) (6.04924e-11 7.67338e-12 2.30351e-11) (3.22087e-10 3.11481e-11 1.87756e-10) (7.63237e-10 4.83434e-11 4.6382e-10) (9.15012e-10 3.86318e-11 5.00951e-10) (4.67894e-10 1.00668e-11 1.84772e-10) (7.33595e-11 -3.24172e-12 2.27546e-12) (1.29475e-11 -3.89652e-12 -1.84144e-11) (2.22393e-11 -2.7488e-12 -2.04657e-11) (7.35579e-11 -1.22344e-12 -1.5321e-11) (1.57555e-10 1.73059e-12 9.34271e-12) (1.51096e-10 3.94984e-12 2.65996e-11) (7.162e-11 2.98553e-12 1.61995e-11) (2.56852e-11 7.56796e-13 6.97077e-12) (1.0173e-11 -1.78673e-13 3.96955e-12) (1.51563e-12 -2.98525e-13 1.68629e-12) (5.72616e-11 -1.09852e-12 1.11724e-11) (-1.04233e-12 -7.12825e-14 -1.00391e-12) (-1.08598e-10 -1.25119e-11 -4.08191e-11) (-2.71968e-10 -4.74635e-11 -3.39652e-11) (-1.95885e-10 -3.50505e-11 3.78515e-11) (-1.06608e-10 1.46632e-13 4.372e-11) (-9.28814e-11 2.12723e-11 1.46963e-11) (-5.82478e-11 1.24138e-11 -1.74595e-11) (-9.36151e-12 6.84994e-13 -1.31895e-11) (5.72647e-12 -9.76702e-13 -9.62087e-12) (2.77718e-11 -1.22023e-12 -1.68809e-11) (4.04258e-11 3.26136e-13 -2.40471e-11) (3.94222e-11 8.88524e-13 -3.27447e-11) (4.33983e-11 -9.55714e-13 -4.36242e-11) (5.42473e-11 -2.96416e-12 -4.90699e-11) (6.44859e-11 -3.24413e-12 -3.98044e-11) (7.37865e-11 -2.63125e-12 -2.24113e-11) (8.41002e-11 -1.08375e-12 -6.04571e-12) (9.79125e-11 1.21766e-12 3.18016e-12) (1.16418e-10 3.77366e-12 4.0473e-12) (1.2209e-10 4.73193e-12 -1.21541e-12) (8.23788e-11 2.07302e-12 -7.30044e-12) (1.72238e-11 -2.1764e-13 -7.80786e-12) (3.28467e-14 9.54922e-14 -5.73891e-12) (3.44102e-13 3.44207e-13 -5.3648e-13) (9.08124e-11 1.73353e-11 5.45284e-11) (8.38219e-10 8.40007e-11 5.52181e-10) (1.9637e-09 1.17856e-10 1.2076e-09) (2.58556e-09 9.39186e-11 1.36019e-09) (1.80575e-09 4.03037e-11 6.94604e-10) (4.91124e-10 -2.21847e-12 6.99927e-11) (4.30752e-11 -3.38412e-12 -2.64921e-11) (1.07896e-11 -2.16239e-12 -4.79751e-11) (3.28323e-11 7.89519e-13 -4.03303e-11) (1.12806e-10 4.40403e-12 -2.6221e-11) (2.1709e-10 8.66731e-12 9.03473e-12) (2.42815e-10 6.38938e-12 2.55172e-11) (2.56595e-10 -5.21711e-12 2.68094e-11) (2.91996e-10 -1.72059e-11 3.81762e-11) (2.33651e-10 -1.34143e-11 4.42737e-11) (5.67409e-11 -5.88462e-13 1.3265e-11) (-1.27672e-13 1.68666e-13 -2.59055e-13) (-1.28502e-10 -8.27889e-12 -6.48645e-11) (-6.89564e-10 -1.17504e-10 -1.88171e-10) (-1.04629e-09 -1.68687e-10 8.59461e-12) (-5.97456e-10 2.35897e-12 1.36629e-10) (-2.83735e-10 7.99645e-11 4.46377e-11) (-1.46031e-10 4.20092e-11 -3.26535e-11) (-3.57099e-11 2.92877e-12 -3.13437e-11) (7.27438e-13 -1.91205e-12 -1.20669e-11) (1.77629e-11 -1.78528e-12 -1.497e-11) (3.27704e-11 6.62286e-13 -2.22264e-11) (3.22521e-11 1.88285e-12 -3.03472e-11) (2.90548e-11 -5.12401e-13 -3.64752e-11) (3.11923e-11 -2.76451e-12 -3.68122e-11) (2.99835e-11 -2.7817e-12 -2.30072e-11) (2.87595e-11 -2.15459e-12 -7.57026e-12) (3.45965e-11 -1.22432e-12 3.64053e-12) (4.23148e-11 6.27933e-13 1.0299e-11) (4.99606e-11 2.63728e-12 1.05267e-11) (5.53693e-11 3.3093e-12 7.00949e-12) (4.15083e-11 1.2885e-12 1.96872e-12) (6.6791e-12 -1.24252e-13 -2.06672e-12) (-3.90644e-12 3.25965e-13 -6.5931e-12) (-6.24217e-12 2.32002e-12 -5.24225e-12) (3.24936e-11 1.10228e-11 2.49034e-11) (8.90288e-10 8.9051e-11 6.35935e-10) (2.02942e-09 1.0086e-10 1.39064e-09) (1.94221e-09 3.36655e-11 1.20388e-09) (9.23064e-10 2.38128e-12 4.3773e-10) (1.16604e-10 -2.05901e-12 1.61722e-11) (-6.06755e-12 -1.11209e-12 -2.04921e-11) (-1.57531e-10 -1.33439e-12 -1.73232e-10) (-8.47884e-11 4.64766e-12 -1.31929e-10) (5.40205e-12 2.01579e-12 -1.87498e-11) (3.92004e-11 3.45228e-12 -5.18174e-12) (8.67112e-11 1.36348e-12 8.56246e-12) (1.32073e-10 -1.24498e-11 1.29359e-11) (2.02212e-10 -3.10117e-11 2.14428e-11) (1.98767e-10 -2.4323e-11 3.40195e-11) (2.62984e-11 -9.78126e-13 4.06501e-12) (-5.07477e-12 2.5357e-12 -1.96689e-12) (-3.25598e-10 1.01282e-11 -1.41054e-10) (-1.64014e-09 -2.19016e-10 -5.59866e-10) (-3.57875e-09 -5.57385e-10 -3.59799e-10) (-2.97794e-09 -7.85042e-11 3.44309e-10) (-1.0531e-09 2.60093e-10 1.6057e-10) (-3.69862e-10 1.23167e-10 -4.55234e-11) (-1.03986e-10 1.14144e-11 -6.12021e-11) (-9.56035e-12 -4.46027e-12 -2.01011e-11) (7.40051e-12 -2.47857e-12 -1.11739e-11) (2.354e-11 6.98816e-14 -1.89666e-11) (2.88626e-11 2.71082e-12 -3.04159e-11) (2.44452e-11 -1.8552e-13 -3.74324e-11) (2.17189e-11 -2.94041e-12 -3.53313e-11) (1.64692e-11 -2.59491e-12 -1.76646e-11) (1.17549e-11 -1.68158e-12 -3.02858e-12) (1.7808e-11 -1.62095e-12 6.13212e-12) (2.73454e-11 -3.45326e-13 1.39635e-11) (3.23019e-11 1.70222e-12 1.29695e-11) (3.4285e-11 2.44713e-12 8.57146e-12) (2.54486e-11 7.00934e-13 4.00174e-12) (2.5363e-12 -1.00276e-13 -4.50877e-13) (-1.32662e-11 8.34574e-13 -1.19011e-11) (-7.05117e-11 1.16594e-11 -4.38935e-11) (2.33155e-13 1.14667e-12 8.47612e-13) (6.43953e-10 6.16476e-11 4.85525e-10) (2.71477e-09 6.51523e-11 1.96979e-09) (2.52212e-09 -2.46922e-11 1.81789e-09) (9.48914e-10 -3.05817e-11 5.99757e-10) (6.45277e-11 -3.34042e-12 2.00838e-11) (-3.98468e-11 -9.65122e-14 -4.03209e-11) (-7.34329e-10 1.79424e-11 -4.73657e-10) (-8.38788e-10 3.2277e-11 -5.99413e-10) (-1.11614e-10 1.20087e-11 -1.33348e-10) (3.3851e-12 1.16578e-12 -4.39087e-12) (3.35194e-11 -5.1651e-13 4.28265e-12) (7.64856e-11 -1.70566e-11 1.32575e-11) (1.37921e-10 -4.33404e-11 1.47508e-11) (1.38179e-10 -3.41399e-11 1.42837e-11) (9.84228e-11 -9.31163e-12 -8.70835e-12) (-1.26068e-13 2.61492e-12 -2.26833e-12) (-2.47936e-10 3.64891e-11 -1.21406e-10) (-1.88949e-09 -2.00163e-10 -7.98659e-10) (-6.47719e-09 -1.05831e-09 -1.29813e-09) (-9.61509e-09 -5.88936e-10 2.72278e-10) (-4.007e-09 6.70195e-10 4.97993e-10) (-9.31368e-10 3.19136e-10 -3.28318e-11) (-2.15215e-10 3.49482e-11 -9.27133e-11) (-2.98088e-11 -8.70621e-12 -3.42037e-11) (1.97034e-12 -3.42068e-12 -9.84749e-12) (1.58863e-11 -8.4928e-13 -1.52326e-11) (3.01158e-11 3.54509e-12 -3.20407e-11) (3.18009e-11 7.13394e-13 -4.67181e-11) (2.34092e-11 -3.26165e-12 -4.29218e-11) (1.37063e-11 -2.55617e-12 -1.88241e-11) (6.11268e-12 -1.23908e-12 -1.71185e-12) (1.27942e-11 -2.24415e-12 8.31981e-12) (2.85808e-11 -2.36088e-12 2.34829e-11) (3.9017e-11 3.17801e-13 2.32209e-11) (4.48905e-11 2.10858e-12 1.61139e-11) (4.22803e-11 2.37583e-14 9.53014e-12) (1.02767e-11 -5.05819e-13 1.25299e-13) (-7.99102e-12 9.5193e-13 -9.74583e-12) (-1.83694e-10 2.56237e-11 -1.27288e-10) (-3.74967e-11 1.11779e-11 -2.22403e-11) (1.9255e-10 2.32699e-11 1.44649e-10) (2.93961e-09 3.00039e-11 2.04828e-09) (4.56494e-09 -4.82928e-11 3.21898e-09) (2.91391e-09 -9.55675e-11 1.92429e-09) (6.5456e-10 -1.33784e-11 3.1321e-10) (3.08273e-12 7.59978e-13 -2.19727e-12) (-4.94359e-10 4.88675e-11 -3.0299e-10) (-1.86375e-09 1.24077e-10 -9.8051e-10) (-7.68176e-10 6.79773e-11 -5.04078e-10) (-1.32707e-11 5.58791e-12 -1.81029e-11) (2.22931e-11 6.29604e-13 6.94967e-12) (1.25141e-10 -3.39784e-11 5.1371e-11) (2.57568e-10 -1.01799e-10 5.61437e-11) (2.95371e-10 -9.50367e-11 9.57208e-12) (2.90112e-10 -4.02974e-11 -6.34487e-11) (3.39809e-11 1.73587e-11 -2.34197e-11) (-5.15299e-11 3.22153e-11 -4.8864e-11) (-9.63536e-10 -3.60759e-11 -5.32187e-10) (-6.5049e-09 -1.0824e-09 -1.97307e-09) (-1.92276e-08 -1.73654e-09 -9.64991e-10) (-1.32651e-08 1.14578e-09 1.05043e-09) (-2.6108e-09 7.58009e-10 4.43567e-11) (-3.83397e-10 8.64925e-11 -1.18978e-10) (-5.17653e-11 -1.00599e-11 -4.51627e-11) (-2.03269e-12 -4.88604e-12 -1.10284e-11) (7.79459e-12 -1.56562e-12 -1.06271e-11) (2.53208e-11 2.97453e-12 -2.89549e-11) (3.8166e-11 2.0341e-12 -5.31629e-11) (3.15767e-11 -3.16861e-12 -5.55203e-11) (1.28308e-11 -2.14336e-12 -2.16939e-11) (2.45565e-12 -5.63203e-13 -9.2875e-13) (7.12682e-12 -2.21981e-12 9.38084e-12) (2.2385e-11 -5.11348e-12 3.55932e-11) (3.32586e-11 -2.63183e-12 3.74212e-11) (4.00148e-11 -9.10443e-13 2.79193e-11) (5.53098e-11 -4.08157e-12 2.22474e-11) (4.12951e-11 -3.62372e-12 4.95549e-12) (1.41141e-12 7.89123e-13 -6.7071e-12) (-1.93194e-10 3.3074e-11 -1.86493e-10) (-2.90734e-10 4.22869e-11 -2.28759e-10) (1.51897e-12 3.86969e-13 9.03184e-13) (1.58917e-09 -2.7327e-11 1.09293e-09) (5.46277e-09 -1.73857e-10 3.73754e-09) (5.6513e-09 -3.01281e-10 3.76622e-09) (3.34448e-09 -7.29711e-11 1.82892e-09) (5.89316e-10 5.42727e-11 1.92556e-10) (-2.46787e-11 1.83594e-11 -2.45311e-11) (-1.85762e-09 2.58591e-10 -8.00043e-10) (-2.64397e-09 2.61648e-10 -1.07123e-09) (-3.16672e-10 5.83761e-11 -1.1363e-10) (4.44376e-12 2.26067e-12 1.03573e-11) (2.0813e-10 -5.77837e-11 1.74156e-10) (4.79472e-10 -2.05239e-10 2.12034e-10) (5.38341e-10 -2.01482e-10 3.59739e-11) (3.87472e-10 -7.90118e-11 -1.22756e-10) (1.32502e-10 4.05204e-11 -9.05299e-11) (8.2631e-12 3.87642e-11 -3.82853e-11) (-2.14122e-10 4.95389e-11 -1.80027e-10) (-3.91114e-09 -5.03772e-10 -1.56906e-09) (-2.44251e-08 -2.39831e-09 -2.83262e-09) (-3.20619e-08 7.82062e-10 1.05665e-09) (-7.90833e-09 1.48739e-09 2.31303e-10) (-8.07204e-10 1.87557e-10 -1.65539e-10) (-7.54315e-11 -6.33676e-12 -5.2354e-11) (-6.00194e-12 -5.86849e-12 -1.30116e-11) (3.18371e-12 -1.83175e-12 -8.75692e-12) (1.75656e-11 1.64198e-12 -2.52548e-11) (3.91263e-11 2.18484e-12 -5.47167e-11) (4.41157e-11 -2.79575e-12 -6.86606e-11) (1.74628e-11 -1.98108e-12 -2.87949e-11) (2.2762e-12 -2.59672e-13 -1.16034e-12) (5.7499e-12 -1.77319e-12 1.04084e-11) (2.09371e-11 -7.58673e-12 5.33861e-11) (3.85638e-11 -7.71911e-12 7.16081e-11) (4.75801e-11 -7.72537e-12 6.00632e-11) (4.63728e-11 -1.38236e-11 4.09363e-11) (4.74556e-11 -1.31728e-11 1.49941e-11) (2.39398e-11 3.12166e-13 -1.79421e-11) (-8.84869e-11 3.43078e-11 -1.98098e-10) (-5.74457e-10 7.12218e-11 -6.08707e-10) (-8.64985e-11 -8.00128e-13 -8.86694e-11) (2.63242e-10 -3.38429e-11 1.68892e-10) (3.83344e-09 -3.20621e-10 2.61496e-09) (6.64676e-09 -5.83655e-10 4.43704e-09) (6.68214e-09 -3.96742e-10 3.97231e-09) (4.26455e-09 2.40099e-10 2.002e-09) (4.17986e-10 1.7521e-10 1.25395e-10) (-4.3495e-10 2.00414e-10 -1.70098e-10) (-4.15788e-09 6.1508e-10 -1.19273e-09) (-2.0421e-09 2.84055e-10 -3.10686e-10) (-5.83147e-11 1.66349e-11 6.625e-11) (2.87622e-10 -8.51361e-11 3.90702e-10) (7.94896e-10 -3.42934e-10 4.99702e-10) (6.98578e-10 -2.95269e-10 9.676e-11) (2.41976e-10 -7.19275e-11 -1.24358e-10) (1.15601e-10 3.61568e-11 -1.34649e-10) (4.66585e-11 7.2296e-11 -6.77182e-11) (-1.42076e-11 4.90473e-11 -4.9828e-11) (-1.15128e-09 2.73199e-11 -5.78077e-10) (-1.92402e-08 -1.32938e-09 -2.92122e-09) (-4.96092e-08 -3.99169e-10 1.19847e-10) (-1.96237e-08 1.84811e-09 4.76714e-10) (-1.972e-09 3.23813e-10 -2.6297e-10) (-1.19288e-10 -3.52988e-15 -6.41341e-11) (-8.09187e-12 -4.74457e-12 -1.32452e-11) (1.85519e-12 -1.79625e-12 -1.06619e-11) (1.74434e-11 1.38431e-12 -3.19431e-11) (4.78089e-11 7.71782e-13 -6.62005e-11) (6.8839e-11 -4.71736e-12 -8.61047e-11) (4.03555e-11 -3.25279e-12 -4.54108e-11) (1.06016e-11 -1.51748e-13 -4.3669e-12) (1.34017e-11 -1.51011e-12 1.25387e-11) (4.0715e-11 -1.03891e-11 6.98448e-11) (8.43496e-11 -1.97167e-11 1.29272e-10) (1.11874e-10 -2.30837e-11 1.3742e-10) (8.08123e-11 -3.58587e-11 8.91547e-11) (2.22091e-11 -2.13019e-11 1.96121e-11) (7.40989e-12 -3.93839e-12 -7.9909e-12) (-1.92108e-11 3.73016e-11 -2.29156e-10) (-4.82365e-10 9.67784e-11 -8.84579e-10) (-4.58314e-10 -2.18412e-11 -5.93885e-10) (1.46222e-12 -4.82449e-12 -4.08418e-12) (1.29499e-09 -2.66143e-10 8.22495e-10) (5.47996e-09 -8.29733e-10 3.51456e-09) (8.11439e-09 -8.76049e-10 5.22783e-09) (7.94279e-09 1.1552e-10 4.75246e-09) (3.76019e-09 1.00851e-09 1.8825e-09) (7.28516e-11 1.78305e-10 4.36554e-11) (-2.16797e-09 7.09737e-10 -4.81303e-10) (-4.31655e-09 6.27012e-10 -4.13331e-10) (-5.35078e-10 5.24626e-11 2.58732e-10) (1.79359e-10 -1.01046e-10 4.60085e-10) (8.14672e-10 -3.84941e-10 6.43059e-10) (5.65247e-10 -2.70433e-10 1.09706e-10) (5.63823e-11 -2.99292e-11 -5.83184e-11) (1.69752e-11 2.24429e-11 -1.09927e-10) (3.93678e-12 6.45214e-11 -7.15986e-11) (9.67124e-12 7.76435e-11 -4.15224e-11) (-1.81609e-10 1.02633e-10 -1.20517e-10) (-9.54859e-09 1.60822e-10 -1.40428e-09) (-4.95504e-08 -3.14001e-10 -2.44523e-11) (-3.2934e-08 1.07732e-09 7.54602e-10) (-4.27842e-09 2.96637e-10 -3.94573e-10) (-2.16287e-10 2.58986e-13 -8.8226e-11) (-8.87433e-12 -2.66041e-12 -1.26684e-11) (3.51437e-12 -7.60847e-13 -1.69057e-11) (3.64675e-11 3.63172e-12 -6.84578e-11) (9.37956e-11 -1.43338e-12 -1.26819e-10) (1.28964e-10 -1.24558e-11 -1.35196e-10) (9.48992e-11 -8.68202e-12 -7.12373e-11) (5.54651e-11 -1.43139e-12 -1.29874e-11) (6.20375e-11 -3.39812e-12 2.64987e-11) (1.03445e-10 -1.71063e-11 9.39207e-11) (1.63796e-10 -3.75017e-11 1.71785e-10) (2.06002e-10 -4.74778e-11 2.04833e-10) (1.55134e-10 -6.38714e-11 1.48946e-10) (2.2487e-11 -3.67428e-11 3.36889e-11) (-1.46405e-11 -1.65794e-11 -6.87623e-12) (-7.26678e-11 5.75798e-12 -1.87863e-10) (-2.8291e-10 1.11735e-10 -9.7686e-10) (-5.04928e-10 -1.10116e-11 -1.17409e-09) (-9.37449e-11 -6.72595e-11 -2.29885e-10) (1.58449e-10 -8.84003e-11 5.19971e-11) (2.78023e-09 -7.48543e-10 1.72156e-09) (6.30669e-09 -1.21306e-09 4.43347e-09) (7.90856e-09 -1.79241e-10 6.17021e-09) (6.22418e-09 1.57786e-09 4.5315e-09) (1.51462e-09 1.157e-09 9.72349e-10) (-2.6435e-10 3.69501e-10 -6.63239e-12) (-2.82312e-09 6.78424e-10 -2.47743e-10) (-1.20042e-09 3.83892e-11 3.0565e-10) (-3.89407e-11 -9.78434e-11 2.81194e-10) (2.98395e-10 -2.33843e-10 3.56171e-10) (1.82092e-10 -1.23277e-10 5.04736e-11) (-5.26917e-12 -9.23116e-12 -1.54905e-11) (-3.75096e-11 1.45166e-11 -6.98646e-11) (-4.25972e-11 5.9104e-11 -7.21023e-11) (-8.23365e-12 9.31903e-11 -5.01605e-11) (-7.41882e-11 1.41029e-10 -7.31786e-11) (-4.54652e-09 8.33642e-10 -4.93035e-10) (-3.98972e-08 1.10236e-09 9.91725e-10) (-3.95893e-08 -6.36919e-11 1.38849e-09) (-6.93958e-09 -1.22355e-10 -4.77567e-10) (-3.70183e-10 -2.50072e-11 -1.24692e-10) (-9.12054e-12 -1.31436e-12 -1.32884e-11) (1.29513e-11 2.53907e-12 -3.28463e-11) (1.13692e-10 1.39143e-11 -1.83947e-10) (2.37059e-10 2.06322e-12 -3.31303e-10) (2.23337e-10 -2.48916e-11 -2.6316e-10) (1.61541e-10 -2.36492e-11 -1.13488e-10) (1.8306e-10 -1.55472e-11 -2.27221e-11) (2.83028e-10 -2.03221e-11 8.62671e-11) (3.43298e-10 -4.43702e-11 1.97633e-10) (3.17254e-10 -6.90799e-11 2.32732e-10) (2.64562e-10 -7.25184e-11 2.13951e-10) (1.87421e-10 -7.79387e-11 1.59509e-10) (3.73607e-11 -4.78658e-11 4.95118e-11) (-5.19189e-11 -4.90848e-11 3.10408e-12) (-2.65195e-10 -7.41553e-11 -1.72488e-10) (-3.06558e-10 2.4754e-11 -6.92938e-10) (-2.29041e-10 4.48033e-11 -1.42564e-09) (-5.75098e-11 -1.02995e-10 -8.56656e-10) (7.80287e-11 -8.31092e-11 -9.95937e-11) (8.87945e-10 -4.31291e-10 4.01501e-10) (3.24645e-09 -1.05271e-09 2.60649e-09) (4.80522e-09 -3.92992e-10 5.22664e-09) (5.07833e-09 1.57077e-09 5.83158e-09) (3.01534e-09 2.2329e-09 2.86554e-09) (2.85446e-10 7.09248e-10 2.9197e-10) (-4.11504e-10 3.01905e-10 -2.80223e-11) (-6.57133e-10 2.3195e-11 6.9881e-11) (-1.39896e-10 -9.70936e-11 1.24087e-10) (3.48858e-12 -9.40717e-11 8.87782e-11) (6.69154e-12 -3.04291e-11 8.96374e-12) (-1.79582e-10 -3.73692e-11 -4.03252e-11) (-1.43421e-10 1.29964e-11 -8.01252e-11) (-4.77968e-11 4.1625e-11 -6.1875e-11) (-2.13118e-12 9.57554e-11 -7.17834e-11) (-9.44034e-11 2.37951e-10 -1.1048e-10) (-4.12259e-09 1.42657e-09 -1.60144e-10) (-3.64347e-08 2.86553e-09 2.69632e-09) (-4.11772e-08 -6.9172e-10 2.32761e-09) (-8.6094e-09 -7.63294e-10 -6.19247e-10) (-4.78513e-10 -8.63211e-11 -1.82192e-10) (-3.95394e-12 -1.98463e-12 -1.58617e-11) (5.7036e-11 9.51665e-12 -7.06064e-11) (3.15173e-10 3.84955e-11 -3.90631e-10) (4.81061e-10 2.57101e-11 -6.7961e-10) (3.06704e-10 -3.29054e-11 -4.84459e-10) (1.82654e-10 -4.36143e-11 -1.96923e-10) (2.58368e-10 -4.42079e-11 -4.75523e-11) (7.44034e-10 -8.19836e-11 2.19331e-10) (1.23479e-09 -1.39937e-10 6.09089e-10) (9.40321e-10 -1.47965e-10 5.66028e-10) (4.50893e-10 -1.14458e-10 3.03694e-10) (2.05316e-10 -8.9246e-11 1.4748e-10) (6.16969e-11 -5.65703e-11 5.56898e-11) (-1.50073e-11 -3.67688e-11 1.25889e-11) (-2.77704e-10 -1.32514e-10 -6.74728e-11) (-4.64862e-10 -1.01864e-10 -3.62848e-10) (-2.54183e-10 2.41401e-11 -8.9841e-10) (2.90563e-10 9.53249e-12 -1.45374e-09) (5.44432e-10 -2.09428e-10 -8.63751e-10) (5.74415e-10 -3.28756e-10 -1.60083e-10) (1.08936e-09 -5.57529e-10 7.29787e-10) (1.89701e-09 -3.12118e-10 3.13469e-09) (2.35346e-09 1.28197e-09 5.43087e-09) (2.12642e-09 2.4042e-09 3.8919e-09) (9.73736e-10 1.42879e-09 1.05177e-09) (6.37719e-11 2.30764e-10 4.15335e-11) (-1.6845e-11 7.05174e-12 -3.6814e-12) (-5.26513e-11 -4.23549e-11 5.08328e-12) (-7.23624e-11 -7.73902e-11 2.05254e-11) (-1.12457e-10 -6.63834e-11 8.07398e-12) (-4.24039e-10 -4.91468e-11 -1.7417e-11) (-2.44673e-10 -1.10105e-11 -1.06142e-10) (-4.58833e-11 2.12281e-11 -9.10758e-11) (1.48599e-11 9.76764e-11 -1.22402e-10) (-2.051e-10 3.70353e-10 -1.51659e-10) (-6.5787e-09 2.69036e-09 4.57599e-10) (-3.99427e-08 4.98627e-09 5.19176e-09) (-3.90382e-08 -5.71021e-10 2.28164e-09) (-7.47266e-09 -1.11424e-09 -1.19469e-09) (-2.75477e-10 -1.39464e-10 -2.27917e-10) (3.36505e-11 -1.52617e-11 -3.6706e-11) (2.13451e-10 1.44539e-11 -1.04885e-10) (5.54921e-10 7.23359e-11 -4.40026e-10) (7.10592e-10 8.51366e-11 -8.77131e-10) (4.30092e-10 -1.32306e-11 -8.073e-10) (1.78284e-10 -7.00304e-11 -3.86823e-10) (1.64188e-10 -6.43801e-11 -9.6217e-11) (9.09943e-10 -1.95413e-10 2.21271e-10) (2.96626e-09 -4.59984e-10 1.38498e-09) (3.53416e-09 -5.26793e-10 1.95462e-09) (1.70006e-09 -3.4827e-10 1.03258e-09) (5.10887e-10 -1.754e-10 3.00066e-10) (8.97653e-11 -6.12045e-11 4.81504e-11) (1.91348e-13 -2.02319e-11 4.98319e-12) (-1.2804e-10 -7.73467e-11 -5.69187e-12) (-5.88335e-10 -1.74034e-10 -1.33201e-10) (-4.64728e-10 -5.80353e-11 -3.68452e-10) (6.06181e-12 3.32876e-11 -8.9145e-10) (1.12651e-09 -1.93732e-10 -1.96404e-09) (1.36573e-09 -6.01488e-10 -1.28883e-09) (5.4201e-10 -3.27717e-10 -6.91897e-11) (3.77088e-10 -8.28976e-11 7.92582e-10) (2.9822e-10 1.10314e-09 3.95681e-09) (1.73501e-10 2.36949e-09 4.12754e-09) (4.28422e-10 1.38798e-09 1.30417e-09) (2.58895e-10 3.74165e-10 1.28813e-10) (5.49152e-11 2.76993e-11 -1.92021e-11) (6.2002e-12 -9.36057e-12 -8.58358e-12) (-2.46872e-11 -2.44378e-11 -7.52674e-13) (-2.13744e-10 -5.77087e-11 2.92765e-11) (-2.99207e-11 3.41629e-12 2.74515e-12) (-8.50827e-11 -3.90036e-12 -6.07461e-11) (-8.16606e-11 6.72423e-12 -1.63144e-10) (-7.44748e-11 1.01103e-10 -1.78921e-10) (-7.02766e-10 6.65697e-10 -1.53605e-10) (-9.85681e-09 4.17665e-09 1.7891e-09) (-3.57988e-08 6.00956e-09 6.21333e-09) (-2.40417e-08 -1.57425e-10 1.41677e-11) (-2.67696e-09 -8.94008e-10 -1.45126e-09) (5.88146e-11 -3.00939e-10 -3.8048e-10) (2.70481e-10 -1.20809e-10 -5.884e-11) (3.6472e-10 4.7001e-12 2.92984e-11) (4.70344e-10 9.79139e-11 -1.52589e-10) (7.71071e-10 1.56619e-10 -7.43769e-10) (7.38274e-10 5.78656e-11 -1.26525e-09) (3.30626e-10 -9.75775e-11 -9.1956e-10) (1.57569e-10 -1.15975e-10 -2.57685e-10) (6.25471e-10 -2.46281e-10 5.89015e-11) (3.88862e-09 -8.71587e-10 1.76752e-09) (7.3747e-09 -1.29773e-09 4.07192e-09) (5.15951e-09 -1.08e-09 2.9992e-09) (1.73835e-09 -5.71854e-10 9.00844e-10) (2.72149e-10 -1.54145e-10 9.80558e-11) (-3.36106e-13 -1.00964e-11 -8.63635e-13) (-2.47805e-10 -4.48829e-11 -1.89031e-11) (-1.16072e-09 -1.05622e-10 1.64285e-11) (-1.21169e-09 -6.85176e-11 -8.7594e-11) (-2.85511e-10 -1.21387e-11 -2.57896e-10) (3.4645e-10 -1.8006e-10 -1.14245e-09) (1.72048e-09 -9.91383e-10 -2.70172e-09) (7.34887e-10 -7.1294e-10 -1.15759e-09) (-2.58834e-13 -2.94362e-12 1.12324e-12) (-6.54514e-10 7.82248e-10 1.56051e-09) (-1.69913e-09 2.5777e-09 4.03424e-09) (-5.90522e-10 1.37995e-09 1.53763e-09) (4.01749e-11 1.73919e-10 9.38926e-11) (1.16826e-10 3.01241e-11 -2.87375e-11) (1.70851e-10 -2.9304e-11 -4.1791e-11) (4.89171e-11 -1.00726e-11 6.72448e-12) (1.41669e-13 7.34768e-13 4.74462e-12) (4.84211e-11 6.8814e-11 8.16639e-11) (-1.19689e-11 5.13735e-12 -4.55158e-12) (-1.58617e-10 -6.85008e-12 -1.58138e-10) (-3.93679e-10 1.24169e-10 -2.85871e-10) (-1.64983e-09 1.01916e-09 -3.89535e-11) (-9.31159e-09 4.26585e-09 2.65416e-09) (-1.90341e-08 4.2342e-09 4.11984e-09) (-6.81805e-09 -3.44431e-10 -9.52379e-10) (-4.62008e-10 -1.02311e-09 -1.42802e-09) (8.17426e-10 -1.13861e-09 -9.12466e-10) (5.642e-10 -3.59834e-10 8.09097e-11) (3.94078e-10 2.21383e-11 3.35828e-10) (2.00166e-10 1.43005e-10 1.07331e-10) (2.43535e-10 1.74847e-10 -2.3524e-10) (6.69837e-10 1.9159e-10 -1.33444e-09) (5.52375e-10 -8.93361e-11 -1.46522e-09) (2.61578e-10 -1.8061e-10 -4.78399e-10) (4.61352e-10 -2.41646e-10 -2.19958e-11) (2.52306e-09 -7.41323e-10 1.12204e-09) (5.16418e-09 -1.06763e-09 2.73554e-09) (4.08528e-09 -9.82534e-10 2.05362e-09) (1.78204e-09 -7.13233e-10 7.21031e-10) (5.92838e-10 -3.3614e-10 2.00967e-10) (4.34556e-11 -2.67463e-11 2.77375e-11) (-9.47302e-11 2.52058e-11 3.58694e-11) (-1.25959e-09 1.74907e-10 2.48724e-10) (-1.97001e-09 5.44546e-11 4.75335e-10) (-7.1821e-10 -4.42345e-11 1.77684e-10) (-2.03508e-11 -2.46299e-11 -3.41631e-11) (6.5873e-10 -6.10255e-10 -1.38201e-09) (7.36341e-10 -1.39601e-09 -3.55697e-09) (-9.49769e-10 -3.4581e-10 -1.53396e-09) (-2.34786e-09 8.47914e-10 4.932e-11) (-3.02979e-09 2.34818e-09 1.83348e-09) (-9.83049e-10 1.18404e-09 8.73108e-10) (-1.28856e-11 6.82376e-11 2.04932e-11) (1.37582e-10 4.86986e-12 -4.28456e-11) (5.73305e-10 -5.82334e-11 -3.96587e-12) (8.20754e-10 8.05493e-11 3.08969e-10) (5.17087e-10 2.40101e-10 4.01612e-10) (2.24211e-10 5.61623e-10 7.29669e-10) (-2.09269e-11 9.26675e-11 4.14225e-11) (-2.38725e-10 5.33489e-11 -1.37982e-10) (-5.98741e-10 1.02288e-10 -2.22213e-10) (-1.23548e-09 6.56191e-10 2.90003e-10) (-4.12335e-09 2.33573e-09 2.3187e-09) (-4.45674e-09 1.33822e-09 1.88191e-09) (-3.95947e-10 -1.98878e-10 -1.29228e-10) (1.31022e-09 -2.276e-09 -1.97956e-09) (3.35563e-09 -3.429e-09 -2.25685e-09) (9.85216e-10 -6.93836e-10 -4.55089e-11) (1.29584e-10 7.64857e-11 4.67034e-10) (-4.08911e-10 8.85914e-10 1.19515e-09) (-2.99094e-10 5.71534e-10 1.87744e-10) (-8.33071e-11 2.49818e-10 -3.63595e-10) (2.73505e-10 1.93615e-11 -1.15173e-09) (5.1107e-10 -2.44507e-10 -9.2592e-10) (5.16922e-10 -2.40422e-10 -3.69435e-10) (7.43286e-10 -2.37769e-10 -6.80525e-11) (1.29049e-09 -3.05607e-10 2.59875e-10) (1.88622e-09 -5.61342e-10 6.08109e-10) (2.555e-09 -1.11787e-09 9.35271e-10) (2.78942e-09 -1.34884e-09 1.13238e-09) (1.6611e-09 -5.17335e-10 7.89546e-10) (3.55232e-10 5.54909e-11 2.20668e-10) (5.55737e-12 5.67771e-11 4.87751e-11) (-1.94582e-10 7.29141e-11 1.33835e-10) (-6.71937e-10 -5.18616e-11 5.16986e-10) (-5.15804e-10 -1.93174e-10 5.05516e-10) (-2.32435e-11 -4.84003e-11 2.49366e-12) (3.58994e-11 -3.94005e-10 -1.3764e-09) (-3.50974e-09 -3.33452e-10 -5.82317e-09) (-1.34856e-08 2.34695e-09 -7.03054e-09) (-9.46561e-09 3.85182e-09 -2.29292e-09) (-9.68798e-10 9.64518e-10 -3.16301e-10) (8.17475e-11 8.75985e-11 -5.56809e-11) (4.80483e-10 -3.45964e-11 -4.59575e-12) (3.76878e-10 -8.90313e-11 2.00486e-10) (2.09404e-10 2.27829e-11 4.6051e-10) (2.97144e-10 4.35756e-10 1.06858e-09) (-2.562e-09 1.27141e-09 1.36095e-09) (-1.18829e-09 5.019e-10 5.08183e-10) (-5.11361e-10 6.12758e-11 1.4878e-11) (-2.66228e-10 2.04928e-11 7.53987e-12) (-2.51114e-10 2.45305e-10 3.17548e-10) (-4.8849e-10 1.06279e-09 1.63019e-09) (-1.58929e-10 3.42528e-10 9.90409e-10) (4.30875e-10 -3.98198e-10 1.97331e-10) (6.22907e-09 -5.04524e-09 -2.02321e-09) (9.25116e-09 -6.15911e-09 -5.05521e-09) (2.26834e-09 -1.13412e-09 -1.75546e-09) (1.57882e-12 8.67573e-12 -3.7348e-13) (-2.30214e-09 1.64412e-09 2.32088e-09) (-6.16761e-09 4.02107e-09 4.80634e-09) (-2.54596e-09 1.63336e-09 8.96884e-10) (-1.94894e-10 1.21335e-10 -1.86417e-10) (4.64119e-10 -1.46152e-10 -1.05945e-09) (1.79683e-09 -5.57861e-10 -2.14943e-09) (1.78307e-09 -5.33159e-10 -1.4468e-09) (1.51283e-09 -5.07074e-10 -4.85167e-10) (2.56897e-09 -1.00161e-09 2.92224e-10) (4.60406e-09 -1.9556e-09 1.51411e-09) (4.28033e-09 -1.88641e-09 1.90153e-09) (1.82405e-09 -6.70009e-10 1.01724e-09) (4.2303e-10 -1.891e-11 2.64596e-10) (1.28349e-10 7.81359e-11 6.29813e-11) (7.02771e-11 7.36495e-11 3.5723e-11) (3.73597e-11 4.57887e-11 9.52563e-11) (-3.47891e-11 -1.00002e-11 5.29453e-10) (-1.50464e-10 -1.33059e-10 6.72897e-10) (-6.96738e-12 -5.02779e-12 2.56271e-12) (-1.09953e-09 3.20467e-10 -1.94003e-09) (-1.26845e-08 3.03114e-09 -9.60438e-09) (-1.69067e-08 3.94732e-09 -7.87405e-09) (-1.63334e-09 5.54408e-10 -1.03339e-09) (3.1128e-10 1.63363e-11 -9.7257e-11) (2.53759e-09 -9.72238e-11 2.49246e-10) (1.24175e-09 1.785e-10 3.28123e-10) (-4.3106e-13 1.33914e-10 1.06157e-10) (-1.44825e-09 8.32185e-10 7.4425e-10) (-7.70244e-10 7.04277e-10 -1.86817e-10) (-1.76415e-09 4.95267e-10 3.54418e-10) (-1.87784e-09 -6.85919e-11 4.29185e-10) (-1.54018e-09 -1.78163e-10 2.39321e-10) (-8.68142e-10 1.32418e-10 3.72802e-10) (-2.46545e-10 3.90591e-10 9.20558e-10) (9.77937e-10 1.3246e-10 1.70611e-09) (3.72344e-09 -1.7248e-09 1.62772e-09) (7.27276e-09 -4.69115e-09 -7.36958e-10) (4.66166e-09 -2.83056e-09 -2.69154e-09) (7.69256e-10 -2.63093e-10 -1.11549e-09) (-9.40165e-11 1.46815e-10 -1.76039e-10) (-1.56775e-09 1.0643e-09 7.46068e-10) (-6.4893e-09 3.03036e-09 5.12327e-09) (-5.81346e-09 2.15569e-09 4.16701e-09) (-9.72947e-10 2.44702e-10 3.56925e-10) (2.46563e-11 -2.82012e-11 -1.6282e-10) (2.2848e-09 -5.46716e-10 -2.54772e-09) (5.49869e-09 -1.13641e-09 -4.42976e-09) (5.15848e-09 -1.35277e-09 -2.60188e-09) (3.58619e-09 -1.35265e-09 -4.97262e-10) (2.18135e-09 -1.09788e-09 5.07366e-10) (9.10761e-10 -5.74045e-10 5.25395e-10) (1.59713e-10 -1.25881e-10 1.59169e-10) (5.26869e-12 -6.00294e-12 1.26494e-11) (-8.51724e-14 1.39281e-13 2.18288e-13) (6.24687e-13 6.15137e-13 3.56994e-13) (2.6326e-11 8.91891e-12 3.00271e-11) (1.8994e-10 6.66552e-11 3.92902e-10) (3.25829e-10 1.90923e-10 1.27849e-09) (1.3575e-10 2.03714e-10 7.68906e-10) (2.60133e-11 8.72108e-11 -1.35821e-11) (-4.3941e-10 7.62707e-10 -1.15201e-09) (-2.53262e-09 1.06754e-09 -1.79469e-09) (-2.08528e-09 1.82501e-10 -2.5742e-10) (-4.8643e-10 -1.38823e-10 1.74329e-10) (-1.90598e-11 -2.41838e-11 1.06483e-11) (5.72589e-11 2.11753e-11 -1.20778e-10) (3.32479e-10 5.39656e-10 -8.70567e-10) (-7.64724e-11 7.84423e-10 -7.13365e-10) (6.56098e-10 1.02446e-09 -1.56257e-09) (2.57785e-11 1.24955e-10 -1.16406e-10) (-4.46057e-11 1.24337e-12 1.82527e-11) (-2.94957e-10 -7.59336e-11 1.48522e-10) (-3.72949e-10 -2.60291e-11 1.75349e-10) (-1.05666e-10 1.96176e-11 1.19691e-10) (1.25529e-10 -4.70184e-11 1.73326e-10) (1.1576e-09 -6.64731e-10 2.88782e-10) (1.62221e-09 -1.19301e-09 -2.90157e-10) (3.99542e-10 -3.49953e-10 -2.56496e-10) (-6.0387e-12 3.58003e-12 -1.59507e-11) (-3.51443e-10 2.56364e-10 7.23682e-11) (-1.00351e-09 6.74555e-10 7.78008e-10) (-1.61687e-09 8.72166e-10 2.06644e-09) (-1.38872e-09 4.86336e-10 1.87137e-09) (-3.78339e-10 3.50491e-11 3.84276e-10) (-6.41908e-12 -4.6922e-12 -2.07996e-12) (2.92342e-10 -9.72916e-11 -3.67768e-10) (2.2373e-09 -3.89138e-10 -1.90688e-09) (3.8156e-09 -7.46313e-10 -2.47069e-09) (2.61345e-09 -7.40311e-10 -1.12306e-09) (8.54753e-10 -3.77855e-10 -1.56106e-10) (1.14597e-10 -9.05531e-11 3.60296e-12) (4.49584e-13 -1.27329e-11 -3.48765e-12) (-3.16964e-11 -2.00204e-11 -2.87575e-11) (-5.81148e-11 -2.67111e-11 -5.0436e-11) (-2.0016e-11 -1.40206e-11 -9.56199e-12) (-4.77931e-12 -1.43664e-11 2.66687e-11) (5.13329e-11 -2.40379e-11 3.47873e-10) (1.63946e-10 1.93281e-10 1.07537e-09) (1.73294e-10 6.60024e-10 1.43793e-09) (1.89605e-10 6.36997e-10 6.62801e-10) (2.2975e-10 3.33489e-10 6.01146e-13) (1.77091e-10 1.62811e-10 -2.01208e-10) (-4.36129e-11 -3.84598e-12 -5.04437e-11) (-1.8863e-09 -4.52743e-10 5.75667e-11) (-6.27879e-09 -9.04616e-10 4.21453e-10) (-3.95728e-09 -8.17747e-11 -7.24117e-10) (-8.56714e-10 3.76701e-10 -1.37886e-09) (5.09942e-10 1.20815e-09 -2.73889e-09) (2.77788e-11 4.68698e-10 -8.86886e-10) (9.71818e-11 1.38248e-10 -1.8277e-10) (7.09831e-12 1.38566e-12 7.18022e-13) (1.16753e-11 -1.92859e-11 2.84541e-11) (1.71452e-11 -1.88854e-11 2.56454e-11) (4.52243e-11 -1.81997e-11 1.57189e-11) (1.66238e-10 -8.43169e-11 3.8534e-12) (2.63811e-10 -2.43985e-10 -4.69049e-11) (1.12754e-10 -2.22362e-10 -8.02658e-11) (-4.44232e-12 -3.27132e-11 -2.12493e-11) (-2.07912e-11 2.44772e-11 3.01161e-12) (-1.38593e-10 3.99325e-10 2.22553e-10) (-2.74383e-10 8.38774e-10 8.8166e-10) (-4.19407e-10 7.92432e-10 1.71654e-09) (-3.615e-10 2.5685e-10 1.52875e-09) (-1.25545e-10 -5.91366e-11 4.57466e-10) (-1.07502e-11 -2.47679e-11 2.2635e-11) (1.41612e-11 -3.00254e-11 -3.86783e-11) (2.33586e-10 -1.09165e-10 -3.18697e-10) (8.6616e-10 -2.66046e-10 -7.54483e-10) (1.41336e-09 -3.86359e-10 -9.02754e-10) (1.261e-09 -2.87724e-10 -7.02069e-10) (6.30993e-10 -1.17383e-10 -3.92169e-10) (1.40033e-10 -4.49733e-11 -1.74128e-10) (-2.57043e-11 -5.70131e-11 -1.3713e-10) (-2.2572e-10 -1.60358e-10 -2.03292e-10) (-3.12256e-10 -2.08577e-10 -7.23673e-11) (-2.36348e-10 -1.7439e-10 1.82303e-10) (-2.71577e-10 -1.7164e-10 7.28438e-10) (-2.54996e-10 8.30453e-11 1.01975e-09) (-1.05433e-10 4.03066e-10 7.21963e-10) (1.66315e-10 6.13369e-10 5.30757e-10) (4.35498e-10 4.92973e-10 2.9065e-10) (4.19733e-10 1.7437e-10 5.77548e-12) (1.20381e-10 1.20494e-12 -8.70481e-11) (-1.46951e-10 -2.26699e-11 -1.25732e-10) (-2.9285e-09 -3.18572e-11 -4.08533e-10) (-6.52612e-09 8.56134e-11 -5.53368e-10) (-3.48769e-09 2.56263e-10 -1.18711e-09) (-8.11214e-10 4.20679e-10 -1.16661e-09) (-1.31773e-09 3.5021e-10 -3.04626e-10) (-1.3904e-10 5.06916e-11 2.38486e-11) (-6.59685e-13 -1.79817e-11 5.97278e-11) (1.20344e-10 -1.11822e-10 1.13255e-10) (3.04132e-10 -1.64791e-10 -3.9813e-13) (5.61754e-10 -1.59819e-10 -2.65016e-10) (5.98223e-10 -1.32689e-10 -4.66596e-10) (3.02029e-10 -1.44513e-10 -3.69034e-10) (4.98459e-11 -1.11687e-10 -1.73596e-10) (-1.66726e-11 -3.63081e-11 -4.57741e-11) (-1.41865e-12 9.75014e-13 -9.04864e-14) (6.6555e-11 1.56432e-10 1.38557e-10) (5.9649e-10 8.28879e-10 1.02723e-09) (8.52396e-10 9.8181e-10 1.86463e-09) (2.96005e-10 3.24807e-10 1.36009e-09) (-9.89619e-11 -3.06671e-11 4.50422e-10) (-1.51446e-10 -6.02616e-11 8.85464e-11) (-9.35156e-11 -3.88559e-11 -4.57103e-11) (2.43258e-11 -4.54936e-11 -1.91018e-10) (7.50275e-10 -1.69625e-10 -8.39025e-10) (2.28134e-09 -3.57346e-10 -1.6325e-09) (2.63376e-09 -3.05366e-10 -1.51144e-09) (1.49339e-09 -1.33648e-10 -8.10186e-10) (3.53657e-10 -4.26501e-11 -2.67294e-10) (-5.23787e-12 -2.38412e-11 -7.65361e-11) (-4.07626e-10 -1.51896e-10 -2.02493e-10) (-1.17644e-09 -4.12905e-10 -7.25931e-11) (-1.25827e-09 -4.80896e-10 6.23049e-10) (-1.33418e-09 -4.5203e-10 1.75558e-09) (-1.22334e-09 -8.97744e-11 1.9042e-09) (-4.95533e-10 2.05941e-10 5.66525e-10) (-4.30207e-11 1.59445e-10 4.21732e-11) (3.07044e-10 3.68728e-10 -8.86659e-11) (1.04611e-09 5.06687e-10 -2.52775e-10) (9.10243e-10 2.52095e-10 -2.70387e-10) (1.1094e-10 3.98509e-11 -6.3212e-11) (-9.19582e-11 2.08123e-11 -1.33469e-11) (-1.86128e-09 8.343e-11 7.5836e-11) (-4.4319e-09 1.56823e-10 -2.02453e-10) (-3.74546e-09 4.08794e-10 -6.99768e-10) (-3.44553e-09 7.50816e-10 2.25717e-09) (-6.36796e-10 -1.25332e-10 1.0972e-09) (8.83372e-11 -3.64555e-10 5.84762e-10) (1.98845e-10 -3.57009e-10 1.65582e-10) (1.39397e-10 -3.06471e-10 -1.8917e-10) (1.47087e-10 -5.47575e-10 -1.02747e-09) (1.33015e-10 -6.49117e-10 -1.84998e-09) (1.21569e-10 -3.91548e-10 -1.20758e-09) (6.155e-11 -1.08708e-10 -3.18569e-10) (1.17381e-11 -2.20845e-12 -2.3971e-11) (1.95844e-11 3.21617e-11 1.43896e-12) (1.5165e-10 2.714e-10 8.79899e-11) (5.20496e-10 7.05697e-10 3.51158e-10) (7.28278e-10 7.67598e-10 5.77811e-10) (3.24518e-10 3.36653e-10 3.55546e-10) (1.52715e-11 4.69745e-11 5.28627e-11) (-7.56007e-12 3.83219e-12 -1.34359e-12) (-1.05984e-11 -9.80611e-12 -5.34234e-11) (1.54013e-10 -1.08477e-10 -3.14635e-10) (6.96039e-10 -3.43088e-10 -7.59955e-10) (1.01456e-09 -4.75262e-10 -8.478e-10) (7.16313e-10 -3.52119e-10 -5.0683e-10) (2.49853e-10 -1.3104e-10 -1.63272e-10) (1.78883e-11 -1.46667e-11 -2.09351e-11) (-4.12964e-11 -7.11453e-12 -2.11903e-11) (-5.5909e-10 -4.85357e-11 -1.10168e-10) (-1.42307e-09 -2.07173e-10 -6.5618e-11) (-1.47113e-09 -3.28808e-10 4.12882e-10) (-1.23045e-09 -3.65625e-10 1.19895e-09) (-1.0024e-09 -3.07745e-10 1.89998e-09) (-4.19725e-10 -6.44594e-11 1.05538e-09) (-1.98651e-11 2.55907e-11 1.06425e-10) (7.67833e-11 5.82525e-11 -2.27345e-11) (6.59258e-10 2.89015e-10 -3.95836e-10) (1.19901e-09 4.0918e-10 -7.33225e-10) (7.68336e-10 3.2314e-10 -4.82269e-10) (7.93285e-11 1.26792e-10 -7.79734e-11) (-4.26201e-10 3.66444e-10 7.61042e-11) (-3.76802e-09 1.58752e-09 1.13415e-09) (-6.5189e-09 2.02425e-09 2.55653e-09) (-4.21556e-10 -3.49316e-10 7.1122e-10) (5.65774e-11 -1.1772e-09 6.9814e-10) (2.55742e-10 -1.19947e-09 4.4859e-10) (-8.36075e-12 -2.24386e-10 1.11462e-10) (-1.01816e-10 -1.2585e-12 3.20923e-11) (-4.16991e-10 1.16548e-10 -1.00318e-10) (-4.88865e-10 1.67601e-11 -3.84513e-10) (-2.52746e-10 -1.54629e-10 -4.37394e-10) (-1.13166e-11 -9.35177e-11 -1.70936e-10) (3.11394e-11 -5.79751e-12 -2.15383e-11) (1.42313e-10 8.5966e-11 1.59868e-11) (3.9603e-10 3.50391e-10 4.55016e-11) (6.40719e-10 5.30236e-10 -8.63925e-11) (7.78703e-10 4.93388e-10 -2.98575e-10) (6.63805e-10 2.56701e-10 -3.74051e-10) (3.56605e-10 2.4089e-11 -2.68849e-10) (1.27094e-10 -5.92746e-11 -1.35117e-10) (3.16036e-11 -5.31508e-11 -5.04706e-11) (5.73677e-12 -3.08681e-11 -1.32134e-11) (3.02325e-12 -1.81642e-11 -1.1143e-12) (7.36149e-12 -1.72088e-11 2.14078e-12) (1.80199e-11 -2.17825e-11 7.87848e-13) (2.88765e-11 -1.97207e-11 -8.43921e-12) (2.43013e-11 -6.30667e-12 -2.15479e-11) (1.88119e-12 8.5512e-12 -4.87566e-11) (-1.64626e-10 3.02234e-11 -1.97514e-10) (-8.44294e-10 -7.42646e-11 -5.05836e-10) (-1.42874e-09 -4.00367e-10 -4.31292e-10) (-1.04486e-09 -5.22342e-10 1.44704e-10) (-5.94365e-10 -5.45151e-10 7.76976e-10) (-1.85054e-10 -6.03395e-10 1.74987e-09) (2.73292e-10 -2.73087e-10 1.75698e-09) (2.29855e-10 3.69349e-11 5.50762e-10) (6.43834e-11 4.79879e-11 2.60963e-11) (9.6721e-11 1.84919e-10 -1.93271e-10) (4.67571e-11 6.69904e-10 -6.9153e-10) (-2.37348e-10 1.38601e-09 -7.52229e-10) (-8.12619e-10 2.04147e-09 -1.07835e-10) (-1.52962e-09 1.97768e-09 9.10302e-10) (-1.21829e-09 6.26566e-10 1.13164e-09) (1.74078e-10 -1.08832e-09 3.07362e-10) (3.0021e-10 -1.82923e-09 3.17337e-10) (2.0619e-11 -5.51539e-10 2.32948e-10) (-1.09907e-10 -2.4527e-11 2.05771e-10) (-5.75646e-10 4.08417e-10 5.88527e-10) (-8.53693e-10 5.74991e-10 4.96523e-10) (-3.81585e-10 1.5988e-10 5.15559e-11) (-6.61001e-11 -1.17273e-11 -5.18884e-11) (2.16247e-11 -6.781e-11 -1.13661e-10) (1.37636e-10 -5.76735e-11 -1.23843e-10) (2.52787e-10 6.26464e-11 -7.14561e-11) (4.79226e-10 3.55061e-10 4.78355e-12) (5.89658e-10 5.83751e-10 3.35663e-11) (4.40927e-10 4.18745e-10 -5.91528e-11) (2.37124e-10 1.63274e-10 -1.17636e-10) (1.05395e-10 3.08104e-11 -1.0144e-10) (2.32701e-11 -6.79899e-12 -4.05968e-11) (-1.64678e-12 -4.05745e-12 -3.48734e-12) (-2.86041e-11 -1.93649e-11 1.74053e-11) (-1.08194e-10 -6.92082e-11 9.35692e-11) (-1.50575e-10 -1.21735e-10 1.15977e-10) (-1.13933e-10 -1.26475e-10 4.34043e-11) (-4.92842e-11 -8.66456e-11 -2.57339e-11) (2.24385e-12 -5.70548e-11 -7.65754e-11) (9.29547e-11 -2.69359e-11 -1.98775e-10) (2.02241e-10 5.82291e-11 -3.63054e-10) (1.17351e-10 7.93385e-11 -3.88936e-10) (-8.28998e-11 -5.2307e-12 -3.18263e-10) (-3.29221e-10 -1.7032e-10 -2.73767e-10) (-4.09071e-10 -3.36235e-10 -1.27457e-11) (-2.48566e-10 -4.13218e-10 4.11825e-10) (8.76372e-11 -4.83645e-10 1.21804e-09) (4.01692e-10 -1.6579e-10 1.45397e-09) (1.31318e-10 1.17449e-10 4.38043e-10) (-5.73013e-11 1.75913e-10 8.76776e-12) (-9.36818e-10 1.25616e-09 -7.88725e-10) (-2.01159e-09 2.50763e-09 -1.43405e-09) (-1.25892e-09 1.74842e-09 -3.78174e-10) (-2.42433e-10 3.35437e-10 1.28347e-10) (-1.5565e-11 -5.62888e-11 8.50153e-11) (2.454e-10 -1.01311e-09 1.64424e-10) (1.55994e-11 -1.02672e-09 2.17261e-10) (-1.69759e-10 -2.52259e-10 1.24442e-10) (-4.08296e-10 8.98558e-11 2.41811e-10) (-9.88009e-10 7.41287e-10 7.0829e-10) (-7.48189e-10 6.39757e-10 6.39405e-10) (-7.73668e-11 4.88033e-11 7.27196e-11) (2.34687e-11 -3.5844e-11 -2.22597e-11) (4.02143e-10 -4.30675e-10 -4.03047e-10) (4.82648e-10 -4.61655e-10 -5.235e-10) (1.2158e-10 -6.39212e-11 -1.57278e-10) (3.17482e-11 7.68219e-11 -4.65215e-11) (5.98568e-11 6.79743e-10 -1.29372e-11) (6.88287e-11 1.32068e-09 1.45126e-10) (1.00373e-11 8.26629e-10 1.54825e-10) (-2.58481e-11 1.95297e-10 6.93276e-11) (-1.65695e-11 1.95036e-11 2.67133e-11) (-2.58973e-11 -1.58748e-11 4.18358e-11) (-5.05604e-11 -7.79574e-11 8.37015e-11) (-7.24583e-11 -1.46551e-10 9.80196e-11) (-8.23963e-11 -1.72201e-10 5.83175e-11) (-7.52041e-11 -1.59032e-10 -7.93034e-12) (-5.8824e-11 -1.5468e-10 -8.185e-11) (-2.3305e-11 -1.46987e-10 -1.5791e-10) (2.28078e-11 -9.35736e-11 -1.74047e-10) (4.0871e-11 -1.92749e-11 -1.2092e-10) (3.84093e-11 2.574e-11 -7.28909e-11) (2.97996e-11 3.90281e-11 -4.10238e-11) (1.06742e-11 1.61619e-11 -1.12538e-11) (4.27897e-13 3.91019e-13 -3.14351e-13) (-1.87935e-13 -1.90523e-12 8.34871e-13) (-7.84927e-13 -1.15046e-11 9.43034e-12) (6.76444e-12 -1.93846e-11 3.43389e-11) (2.24671e-11 -8.39786e-12 6.71305e-11) (1.43225e-11 2.4994e-11 4.27543e-11) (-1.97299e-11 1.30205e-10 1.14166e-12) (-2.18208e-10 5.44909e-10 -2.20266e-10) (-2.43145e-10 4.87548e-10 -2.61297e-10) (-1.44032e-11 2.50614e-11 -2.12795e-11) (4.23954e-11 -1.26786e-10 6.50706e-12) (-1.21677e-11 1.32895e-13 6.76037e-12) (-6.74043e-12 2.00225e-14 6.05767e-12) (-2.639e-12 -2.76101e-13 6.55421e-12) (2.09243e-12 -7.97836e-13 1.29016e-11) (1.04424e-11 -9.0615e-13 2.09785e-11) (8.12932e-12 -7.01763e-14 1.16741e-11) (8.86561e-13 1.07678e-13 1.38071e-12) (-1.88952e-14 1.12052e-14 3.0987e-14) (-7.78823e-14 8.29177e-15 -6.40506e-14) (-4.75763e-16 4.51678e-16 1.97338e-15) (3.52517e-14 1.06364e-15 2.52596e-14) (4.5399e-14 2.88836e-15 2.19278e-14) (7.93498e-15 5.97268e-16 -1.26328e-14) (-2.0068e-15 2.47706e-15 -2.15292e-13) (1.23596e-13 -9.89394e-15 -9.51209e-13) (8.42338e-13 -2.49527e-14 -1.80762e-12) (1.85446e-12 -1.74146e-14 -2.02147e-12) (1.89443e-12 1.3893e-14 -1.38686e-12) (1.05808e-12 2.3811e-14 -7.25808e-13) (4.30879e-13 1.45422e-14 -4.14727e-13) (1.18196e-13 2.89207e-15 -1.77779e-13) (8.31299e-15 -1.14137e-15 -9.75028e-15) (1.72541e-15 -7.38453e-16 1.61509e-15) (-3.82795e-15 -1.58469e-15 -3.34082e-14) (-8.05884e-13 2.81793e-14 -1.92545e-12) (-3.08069e-12 -3.05574e-14 -7.78683e-12) (-6.54389e-13 -2.01976e-13 -6.93191e-12) (8.85969e-13 -7.26962e-14 -2.02336e-12) (1.10682e-13 1.42884e-14 -9.54297e-14) (-8.4744e-14 1.86772e-14 1.42593e-13) (-2.08931e-13 9.5131e-15 2.03412e-13) (-2.1714e-15 3.26081e-16 1.12872e-15) (4.44317e-14 3.99933e-15 -4.20853e-14) (1.37474e-13 1.50254e-14 -1.08665e-13) (2.35871e-14 9.35787e-15 -2.94575e-14) (-2.35016e-13 3.29182e-14 -3.90434e-14) (-3.94429e-12 2.49601e-13 -6.30377e-14) (-1.4873e-11 5.23373e-13 1.2932e-12) (-2.21231e-11 4.36977e-13 4.39045e-12) (-1.86265e-11 6.53108e-14 6.66725e-12) (-6.17188e-11 -4.0125e-12 3.72022e-11) (-5.9701e-11 -5.50064e-12 3.2115e-11) (-2.43575e-11 -4.43963e-12 2.07558e-11) (-2.95317e-12 -1.77593e-12 1.03554e-11) (9.72089e-13 -2.87276e-14 2.76859e-12) (4.88578e-14 1.48471e-13 -2.06642e-13) (-2.34612e-12 1.65808e-12 -7.30946e-12) (-3.96512e-12 1.2882e-12 -1.40062e-11) (8.07869e-15 2.40674e-13 -9.22558e-12) (2.37612e-12 -8.87091e-14 -4.54073e-12) (3.6762e-12 -5.24902e-14 -3.34967e-12) (3.72025e-12 -1.12794e-14 -3.77611e-12) (3.31312e-12 -1.72558e-13 -6.07346e-12) (3.2584e-12 -3.59849e-13 -1.01765e-11) (4.30624e-12 -7.10237e-13 -1.19259e-11) (6.38356e-12 -7.87822e-13 -7.93753e-12) (1.24256e-11 -8.56093e-13 -4.61741e-12) (2.43762e-11 -7.57298e-13 -1.53339e-12) (2.8143e-11 -6.14067e-14 -5.30242e-13) (2.0449e-11 3.43569e-13 -1.70343e-12) (9.02526e-12 2.012e-13 -9.26269e-13) (1.46997e-12 -4.4275e-14 1.87479e-13) (-1.45227e-14 -1.53502e-14 3.39253e-14) (-1.66274e-12 -1.36534e-13 -1.06134e-12) (-1.13168e-11 -9.19919e-14 -1.14131e-11) (-7.25225e-12 -2.76794e-13 -9.31053e-12) (3.72582e-13 -2.08017e-14 -1.62773e-13) (2.84987e-11 2.06581e-12 2.12958e-11) (4.86671e-11 6.78379e-12 6.06187e-11) (1.07588e-11 2.24116e-12 2.41721e-11) (-8.04673e-14 -4.45989e-14 4.14525e-13) (-1.33115e-12 -3.53634e-13 -3.00985e-12) (-1.12837e-12 -2.81029e-13 -6.90704e-12) (2.49766e-13 1.1841e-13 -1.32746e-12) (2.62405e-13 9.46315e-14 7.68186e-14) (-1.51182e-13 3.79321e-13 1.70095e-12) (-4.27042e-12 7.01387e-13 6.43598e-12) (-1.61848e-11 4.20598e-13 1.73653e-11) (-3.07639e-11 -1.0085e-12 2.9771e-11) (-4.49751e-11 -2.90986e-12 3.68781e-11) (-1.70365e-11 -2.29021e-12 1.82859e-11) (-9.33145e-11 -1.13461e-11 2.77405e-11) (-1.50883e-10 -2.30142e-11 3.39715e-11) (-5.75356e-11 -7.83519e-12 1.8574e-11) (-5.95665e-12 1.08281e-12 7.28702e-13) (-6.73132e-12 5.56322e-12 -1.08193e-11) (-1.8262e-11 1.3128e-11 -4.99315e-11) (-1.16938e-11 6.16093e-12 -5.6322e-11) (3.00884e-12 1.17364e-12 -3.25163e-11) (9.72266e-12 -6.57434e-13 -1.64041e-11) (1.29103e-11 -3.4427e-13 -1.10651e-11) (1.34054e-11 -2.26349e-13 -1.07183e-11) (1.19873e-11 -5.9553e-13 -1.34959e-11) (1.14669e-11 -9.22319e-13 -1.84056e-11) (1.14132e-11 -1.53159e-12 -1.93643e-11) (9.64369e-12 -1.64479e-12 -9.74714e-12) (1.29435e-11 -2.01484e-12 -1.78398e-12) (3.57703e-11 -3.81823e-12 8.77506e-12) (6.11529e-11 -3.43164e-12 1.51978e-11) (6.11593e-11 -9.46522e-13 7.93762e-12) (4.04535e-11 4.42282e-13 2.46803e-12) (1.32758e-11 1.03229e-13 2.12156e-12) (5.69792e-13 -3.60385e-14 2.34632e-13) (-1.33611e-12 -2.64202e-14 -9.15798e-13) (-1.60335e-11 8.07974e-13 -1.41965e-11) (-1.18276e-11 3.42235e-13 -8.37995e-12) (9.02661e-13 1.58554e-13 1.56135e-12) (1.60102e-10 1.88937e-11 1.5844e-10) (4.05661e-10 6.5056e-11 4.21625e-10) (2.21132e-10 3.79667e-11 2.38027e-10) (2.80748e-11 2.00038e-12 2.02807e-11) (4.4746e-12 -8.77514e-13 -6.3631e-12) (6.818e-12 -3.73302e-12 -3.72654e-11) (7.70118e-12 -1.12104e-12 -1.83677e-11) (8.21967e-12 3.70247e-13 -2.43293e-12) (1.87269e-11 1.22483e-12 7.62574e-12) (2.70598e-11 8.90991e-13 2.10923e-11) (2.78568e-11 -9.89388e-13 3.31691e-11) (2.09445e-11 -2.7636e-12 3.82066e-11) (3.84778e-12 -2.11028e-12 2.70535e-11) (-1.07978e-11 -6.6578e-14 1.71113e-11) (-1.67831e-10 -1.07731e-11 2.80963e-11) (-6.58253e-10 -7.61277e-11 2.93704e-11) (-6.09043e-10 -5.54993e-11 4.61057e-11) (-1.38224e-10 1.54389e-11 -1.66247e-12) (-3.76345e-11 2.44806e-11 -3.43883e-11) (-3.83718e-11 3.45053e-11 -1.00132e-10) (-1.78965e-11 1.41012e-11 -1.05044e-10) (7.21222e-12 1.69389e-12 -5.82998e-11) (1.59868e-11 -1.45813e-12 -2.62406e-11) (1.81308e-11 -6.11022e-13 -1.44953e-11) (1.69969e-11 -3.54195e-13 -1.12184e-11) (1.38544e-11 -9.81566e-13 -1.22683e-11) (1.21139e-11 -1.26931e-12 -1.61807e-11) (1.06787e-11 -1.67552e-12 -1.80534e-11) (5.81673e-12 -1.39082e-12 -7.91418e-12) (2.72413e-12 -8.99676e-13 -1.70263e-13) (1.24784e-11 -3.52984e-12 1.01774e-11) (3.35629e-11 -5.6889e-12 2.47535e-11) (4.04715e-11 -2.98783e-12 1.74422e-11) (3.06157e-11 -1.58107e-13 7.05338e-12) (1.23295e-11 3.81766e-13 3.68708e-12) (6.79276e-13 3.6856e-14 6.26273e-13) (-1.52925e-12 1.09446e-13 -6.1469e-13) (-2.52904e-11 2.72199e-12 -1.98303e-11) (-3.45392e-11 2.69841e-12 -1.98843e-11) (-1.01544e-12 3.91199e-13 2.2864e-12) (2.342e-10 3.40936e-11 2.70405e-10) (9.29805e-10 1.62562e-10 9.43773e-10) (5.97261e-10 1.10324e-10 6.07067e-10) (1.00457e-10 1.00748e-11 8.52906e-11) (4.4853e-12 -1.08257e-12 -3.00774e-12) (2.37059e-12 -1.17806e-11 -6.62258e-11) (3.83865e-12 -1.17935e-11 -8.00806e-11) (8.22299e-12 -2.17244e-12 -1.55626e-11) (1.33702e-11 -7.10434e-13 1.15595e-13) (3.23425e-11 -1.93619e-12 1.75281e-11) (4.88155e-11 -5.56417e-12 4.30275e-11) (4.95719e-11 -7.57144e-12 6.08716e-11) (1.86465e-11 -2.33287e-12 4.27259e-11) (-2.64184e-11 4.8996e-12 3.36447e-11) (-3.623e-10 3.71697e-12 4.44844e-11) (-1.77779e-09 -1.50825e-10 -2.74502e-11) (-2.72224e-09 -2.37616e-10 2.60354e-11) (-1.05639e-09 5.32145e-11 -1.32911e-11) (-1.67991e-10 7.88492e-11 -8.48735e-11) (-7.15935e-11 6.92609e-11 -1.62001e-10) (-2.66096e-11 2.53689e-11 -1.65787e-10) (9.75285e-12 -8.4786e-13 -8.67277e-11) (1.85103e-11 -3.01521e-12 -3.40368e-11) (1.72421e-11 -1.0286e-12 -1.5061e-11) (1.28962e-11 -5.69365e-13 -8.75203e-12) (9.17006e-12 -1.35945e-12 -8.38011e-12) (7.59134e-12 -1.68043e-12 -1.17511e-11) (6.81568e-12 -1.90977e-12 -1.62349e-11) (2.82555e-12 -1.14499e-12 -8.28542e-12) (8.48437e-14 -1.23502e-13 -7.31983e-14) (1.78495e-12 -3.09311e-12 9.12957e-12) (1.51118e-11 -9.40578e-12 3.58512e-11) (2.69098e-11 -6.76824e-12 2.90196e-11) (2.31652e-11 -1.78172e-12 1.22453e-11) (1.03731e-11 3.35343e-13 5.21509e-12) (4.72502e-13 1.47374e-13 1.11706e-12) (-6.16136e-12 5.2137e-13 -5.59965e-13) (-6.37044e-11 6.38403e-12 -3.85987e-11) (-1.08034e-10 8.48523e-12 -6.36014e-11) (-1.23786e-11 9.865e-13 2.09434e-12) (1.66783e-10 3.08833e-11 2.44153e-10) (1.43601e-09 2.60391e-10 1.50668e-09) (1.08477e-09 2.11634e-10 1.14461e-09) (1.8934e-10 2.03774e-11 1.99592e-10) (1.10039e-12 -6.54286e-13 -6.90903e-14) (-3.34473e-11 -2.57686e-11 -9.46667e-11) (-7.98524e-11 -5.20746e-11 -2.52127e-10) (-2.04714e-11 -2.18574e-11 -1.05021e-10) (2.9725e-12 -2.14284e-12 -5.74821e-12) (1.00553e-11 -2.591e-12 5.32386e-12) (3.50242e-11 -9.25678e-12 4.12221e-11) (4.90333e-11 -1.27463e-11 8.05594e-11) (1.84089e-11 -2.01616e-12 6.46528e-11) (-1.00908e-11 9.04355e-12 3.63105e-11) (-3.1575e-10 3.19794e-11 4.86372e-11) (-2.52189e-09 -1.33875e-10 -1.01317e-10) (-6.5332e-09 -5.76575e-10 -1.43731e-10) (-4.70677e-09 1.96366e-11 -4.82187e-11) (-8.13741e-10 2.37757e-10 -2.16794e-10) (-1.42444e-10 1.26042e-10 -2.49615e-10) (-2.98912e-11 4.34653e-11 -2.51743e-10) (1.83522e-11 -6.36231e-12 -1.29002e-10) (2.50589e-11 -5.52968e-12 -4.74188e-11) (1.95356e-11 -1.29293e-12 -1.85256e-11) (1.12754e-11 -6.25893e-13 -8.32974e-12) (6.59298e-12 -1.65167e-12 -6.36188e-12) (5.23273e-12 -2.19313e-12 -8.95389e-12) (5.651e-12 -2.47751e-12 -1.59226e-11) (3.18413e-12 -9.09494e-13 -1.26486e-11) (-2.67039e-14 -7.17915e-14 -3.98643e-13) (-2.01938e-12 -2.33353e-12 8.26934e-12) (2.42284e-12 -1.61959e-11 5.86749e-11) (2.72454e-11 -1.82299e-11 6.3974e-11) (3.61175e-11 -8.28735e-12 3.31536e-11) (2.60766e-11 -1.11156e-12 1.60988e-11) (3.50279e-12 4.31432e-13 4.25651e-12) (-6.09721e-12 6.18938e-13 5.29664e-13) (-1.14769e-10 8.88469e-12 -5.9304e-11) (-2.38542e-10 1.62913e-11 -1.60824e-10) (-5.95728e-11 2.7437e-12 -2.07878e-11) (5.99899e-11 1.76864e-11 1.19294e-10) (1.89277e-09 3.49423e-10 2.01375e-09) (2.44955e-09 4.8727e-10 2.48462e-09) (7.18117e-10 8.32138e-11 7.27995e-10) (2.57251e-11 -5.43444e-12 2.04633e-11) (-2.59871e-11 -2.2288e-11 -4.93289e-11) (-2.1227e-10 -1.09934e-10 -4.07674e-10) (-1.5928e-10 -1.01215e-10 -4.09457e-10) (-1.36573e-11 -2.47911e-11 -7.77315e-11) (4.02171e-12 -2.99771e-12 -8.16197e-13) (4.41897e-11 -1.83328e-11 4.71024e-11) (1.06237e-10 -3.05963e-11 1.40763e-10) (6.59452e-11 -4.9641e-12 1.1609e-10) (3.10536e-11 1.43198e-11 4.06569e-11) (-7.77652e-11 2.85361e-11 1.89963e-11) (-1.86787e-09 1.41239e-11 -1.01785e-10) (-9.29968e-09 -7.18833e-10 -3.72908e-10) (-1.32499e-08 -3.43502e-10 -1.44454e-10) (-3.78738e-09 5.90272e-10 -5.29009e-10) (-3.67347e-10 2.27029e-10 -4.07182e-10) (-2.08339e-11 7.24837e-11 -3.77166e-10) (5.22223e-11 -1.45888e-11 -2.0474e-10) (4.96438e-11 -1.00099e-11 -7.74081e-11) (3.51152e-11 -1.03411e-12 -3.13461e-11) (1.68471e-11 -7.04858e-14 -1.29249e-11) (6.66161e-12 -1.8539e-12 -6.69443e-12) (3.87161e-12 -2.70825e-12 -6.87539e-12) (4.21776e-12 -3.19197e-12 -1.26235e-11) (4.17504e-12 -4.9345e-13 -1.4805e-11) (2.7956e-13 4.70684e-13 -1.80124e-12) (-1.71316e-12 -1.09241e-13 4.48428e-12) (-1.02251e-11 -1.69643e-11 7.39489e-11) (2.00032e-11 -3.79958e-11 1.25803e-10) (5.92753e-11 -2.84645e-11 9.08985e-11) (7.60634e-11 -1.19443e-11 5.92412e-11) (3.30865e-11 -4.6841e-13 2.38109e-11) (-2.15097e-13 7.15326e-14 3.04317e-13) (-1.00294e-10 4.11438e-12 -5.1561e-11) (-3.87105e-10 1.08824e-11 -2.81746e-10) (-1.92538e-10 2.86933e-12 -1.34942e-10) (2.9429e-12 4.04277e-12 1.37848e-11) (1.5193e-09 3.42118e-10 1.69245e-09) (4.54669e-09 9.36636e-10 4.44061e-09) (2.62488e-09 3.4839e-10 2.41851e-09) (4.73634e-10 -7.93117e-12 3.71838e-10) (1.84588e-12 -3.49006e-12 -1.42382e-12) (-1.99188e-10 -9.99125e-11 -2.72619e-10) (-4.41382e-10 -2.05815e-10 -7.06939e-10) (-1.4457e-10 -1.05109e-10 -3.23229e-10) (-1.18815e-13 -1.03835e-11 -1.21376e-11) (4.55895e-11 -2.69061e-11 4.26489e-11) (2.30448e-10 -6.88534e-11 2.18638e-10) (2.27514e-10 -2.05178e-11 1.91971e-10) (1.36442e-10 2.61587e-11 4.03278e-11) (-3.94456e-12 1.23158e-11 1.0908e-12) (-8.36501e-10 1.19541e-10 -7.18023e-11) (-8.82099e-09 -3.29321e-10 -4.0455e-10) (-2.38127e-08 -8.27431e-10 -1.63409e-10) (-1.29231e-08 9.06041e-10 -9.54069e-10) (-1.27052e-09 4.23404e-10 -7.91422e-10) (-3.56014e-11 1.01635e-10 -5.40487e-10) (1.2611e-10 -2.67218e-11 -3.33801e-10) (1.08307e-10 -1.93966e-11 -1.33321e-10) (7.64272e-11 3.90588e-13 -5.92237e-11) (3.61814e-11 2.73164e-12 -2.75602e-11) (9.10175e-12 -1.90087e-12 -1.08182e-11) (2.03469e-12 -3.29034e-12 -6.35673e-12) (6.63237e-13 -3.9361e-12 -8.35856e-12) (1.40831e-12 -8.34709e-13 -1.01413e-11) (6.46031e-13 1.81476e-12 -3.08823e-12) (-8.75605e-13 1.81094e-12 2.85851e-12) (-1.43735e-11 -5.94632e-12 7.29343e-11) (9.16067e-13 -5.01252e-11 1.93099e-10) (7.39712e-11 -6.74496e-11 2.04533e-10) (1.49314e-10 -4.8707e-11 1.70471e-10) (1.26993e-10 -1.71795e-11 9.05485e-11) (8.56028e-12 -5.99689e-13 4.36428e-12) (-3.07675e-11 -1.70263e-12 -2.52026e-11) (-4.18011e-10 -1.95249e-11 -3.45198e-10) (-5.181e-10 -2.82757e-11 -4.24373e-10) (-1.95089e-11 4.08686e-12 -7.94085e-12) (6.34078e-10 2.2787e-10 7.73706e-10) (5.24779e-09 1.16649e-09 5.21715e-09) (5.71132e-09 8.08723e-10 5.07693e-09) (2.6505e-09 1.15445e-10 1.98515e-09) (2.50675e-10 -2.66814e-11 1.44032e-10) (-3.64727e-11 -2.34236e-11 -4.02214e-11) (-7.69414e-10 -2.37919e-10 -7.0682e-10) (-7.01534e-10 -2.38409e-10 -6.77176e-10) (-6.64146e-11 -4.3434e-11 -5.29109e-11) (2.7409e-11 -3.00441e-11 3.54804e-11) (3.50715e-10 -1.23543e-10 2.57505e-10) (4.51565e-10 -6.28162e-11 2.03724e-10) (2.40322e-10 2.34482e-11 -2.1761e-11) (1.96369e-11 2.9029e-11 -1.4519e-11) (-2.6148e-10 1.18331e-10 -4.59326e-11) (-5.7787e-09 2.91311e-10 -1.56384e-10) (-2.79534e-08 -4.0996e-10 4.20745e-10) (-2.78937e-08 7.61392e-10 -8.28206e-10) (-4.32459e-09 6.56203e-10 -1.5701e-09) (-1.57016e-10 1.02019e-10 -7.22778e-10) (2.3608e-10 -4.59168e-11 -5.17189e-10) (2.29676e-10 -3.76041e-11 -2.27227e-10) (1.79516e-10 5.37869e-12 -1.13176e-10) (1.02985e-10 1.48225e-11 -6.85832e-11) (2.4538e-11 -2.16272e-13 -2.89009e-11) (9.99581e-13 -4.82471e-12 -1.13595e-11) (-5.24613e-12 -7.41261e-12 -1.04306e-11) (-3.0725e-12 -1.99027e-12 -6.43592e-12) (-4.59746e-13 2.10862e-12 -1.98703e-12) (-6.5531e-13 7.55541e-12 5.25442e-12) (-7.1146e-12 1.1379e-11 6.82111e-11) (4.6624e-12 -3.76422e-11 2.29143e-10) (1.03836e-10 -1.10695e-10 3.5406e-10) (2.50256e-10 -1.28211e-10 3.9169e-10) (2.28568e-10 -7.68866e-11 2.31441e-10) (5.7964e-11 -1.49362e-11 2.64777e-11) (4.56743e-12 -5.02704e-12 -1.71597e-11) (-1.81359e-10 -3.97725e-11 -3.0196e-10) (-7.49553e-10 -1.0439e-10 -7.63003e-10) (-3.67573e-10 -1.09617e-12 -2.33307e-10) (3.71865e-11 5.18825e-11 9.70219e-11) (3.41426e-09 9.67011e-10 3.6632e-09) (7.50276e-09 1.17269e-09 6.67838e-09) (6.25511e-09 4.00037e-10 4.64041e-09) (2.2039e-09 8.59713e-11 1.36954e-09) (2.17412e-11 -1.04939e-12 1.15503e-11) (-5.87264e-10 -1.0071e-10 -3.19448e-10) (-1.97077e-09 -3.60401e-10 -9.7159e-10) (-5.39284e-10 -1.63319e-10 -1.58809e-10) (1.15416e-12 -3.57991e-11 3.3273e-11) (3.70407e-10 -1.65806e-10 2.29432e-10) (5.6188e-10 -1.12969e-10 1.24467e-10) (2.10806e-10 7.26999e-12 -7.51703e-11) (4.44391e-11 4.75482e-11 -4.91178e-11) (-1.02108e-10 1.07491e-10 -3.93643e-11) (-3.04106e-09 6.28201e-10 8.04337e-11) (-2.31168e-08 9.46228e-10 1.51882e-09) (-3.81739e-08 7.7393e-10 6.51426e-10) (-1.03071e-08 5.78725e-10 -2.33129e-09) (-4.95602e-10 3.98114e-11 -9.57275e-10) (2.95723e-10 -8.84509e-11 -6.73981e-10) (3.96865e-10 -6.93695e-11 -3.38417e-10) (3.97059e-10 1.48543e-11 -2.00048e-10) (3.11066e-10 5.54569e-11 -1.6785e-10) (1.02623e-10 1.62774e-11 -9.4661e-11) (6.15456e-12 -6.13218e-12 -3.23828e-11) (-2.40013e-11 -1.81516e-11 -2.80901e-11) (-2.83885e-11 -1.0926e-11 -1.65415e-11) (-5.72869e-12 3.26159e-12 -1.5189e-12) (-1.9884e-12 2.00138e-11 1.32e-11) (1.09707e-11 3.55564e-11 8.1805e-11) (6.45473e-11 -9.14972e-12 2.42031e-10) (2.64423e-10 -1.42994e-10 5.00795e-10) (5.61124e-10 -2.7284e-10 7.29246e-10) (3.91088e-10 -2.1156e-10 4.58512e-10) (1.21451e-10 -7.71994e-11 8.64192e-11) (6.60578e-11 -3.6799e-11 -4.45885e-11) (5.9989e-11 -6.47475e-11 -3.7824e-10) (-3.80897e-10 -1.10327e-10 -9.67548e-10) (-9.40393e-10 -8.99739e-11 -8.19872e-10) (-1.17001e-10 2.76921e-11 -1.98876e-12) (8.0216e-10 3.65793e-10 1.13437e-09) (6.28256e-09 1.13525e-09 5.82977e-09) (7.92324e-09 5.95974e-10 6.11789e-09) (5.19284e-09 4.92078e-10 3.45128e-09) (8.21348e-10 1.92896e-10 5.35667e-10) (-7.19976e-11 1.35576e-11 -1.04564e-11) (-2.24986e-09 -1.93217e-10 -6.27971e-10) (-1.55721e-09 -3.50821e-10 -2.41288e-10) (-6.74593e-11 -7.84174e-11 4.15517e-11) (1.6978e-10 -1.28912e-10 1.00516e-10) (3.65758e-10 -1.09247e-10 2.37054e-11) (7.27657e-11 -4.73918e-12 -5.24302e-11) (4.10125e-11 4.35878e-11 -5.95561e-11) (-5.2524e-11 1.13225e-10 -4.20747e-11) (-1.67192e-09 7.27671e-10 1.53692e-10) (-1.65559e-08 2.22314e-09 2.23189e-09) (-3.8772e-08 1.68385e-09 2.79413e-09) (-1.62664e-08 2.01916e-10 -2.28052e-09) (-1.12245e-09 -1.26889e-10 -1.27067e-09) (2.50805e-10 -1.68052e-10 -7.45519e-10) (5.10793e-10 -1.15033e-10 -4.11638e-10) (7.05357e-10 1.85564e-11 -2.91425e-10) (7.86928e-10 1.44606e-10 -3.35081e-10) (3.95488e-10 9.30465e-11 -2.72448e-10) (5.35455e-11 3.47276e-12 -1.0609e-10) (-4.92973e-11 -2.75465e-11 -7.36422e-11) (-1.604e-10 -4.61535e-11 -7.21672e-11) (-7.22936e-11 8.0523e-12 -6.05944e-12) (-1.29678e-11 3.19342e-11 2.5146e-11) (5.21364e-11 7.30227e-11 1.2273e-10) (2.50693e-10 2.57081e-11 3.33579e-10) (8.41443e-10 -2.19337e-10 7.82118e-10) (1.51523e-09 -5.58052e-10 1.21267e-09) (9.38644e-10 -4.96059e-10 8.05678e-10) (2.4972e-10 -2.5022e-10 2.29915e-10) (6.15156e-11 -8.19545e-11 -1.37529e-11) (1.99484e-10 -1.20425e-10 -4.08724e-10) (2.30162e-10 -7.37241e-11 -1.45892e-09) (-5.34035e-10 -7.95626e-11 -1.39322e-09) (-5.22251e-10 -1.61505e-11 -3.16996e-10) (-4.53921e-12 2.41427e-11 8.28594e-11) (2.12584e-09 4.00315e-10 2.26904e-09) (5.52509e-09 7.2333e-10 4.9378e-09) (4.95053e-09 8.49904e-10 4.11098e-09) (2.2044e-09 8.16004e-10 1.76165e-09) (5.85094e-11 1.10797e-10 1.08281e-10) (-6.43261e-10 5.85137e-11 -4.12274e-11) (-1.45021e-09 -3.15923e-10 -1.29041e-10) (-2.80725e-10 -2.05852e-10 2.68636e-11) (8.87714e-12 -7.00864e-11 1.47539e-11) (6.18886e-11 -4.57634e-11 -1.33851e-11) (-4.37269e-12 -7.63495e-12 -3.25649e-11) (1.56838e-11 3.01598e-11 -5.82683e-11) (-1.6715e-11 1.16862e-10 -4.90596e-11) (-9.6602e-10 7.21462e-10 1.57193e-10) (-1.21278e-08 3.05518e-09 2.57082e-09) (-3.49363e-08 3.0565e-09 4.66925e-09) (-1.88381e-08 -6.43559e-11 -1.45448e-09) (-1.7006e-09 -4.08057e-10 -1.51542e-09) (2.44806e-10 -3.2912e-10 -8.94275e-10) (6.39418e-10 -2.02238e-10 -4.85949e-10) (9.58888e-10 2.7587e-12 -3.24999e-10) (1.30829e-09 2.36235e-10 -4.34132e-10) (9.4997e-10 2.57773e-10 -5.14378e-10) (2.39558e-10 6.20151e-11 -2.9091e-10) (-4.74837e-11 -1.7606e-11 -1.55611e-10) (-4.37908e-10 -9.19751e-11 -2.39026e-10) (-4.73156e-10 -1.05493e-11 -7.45789e-11) (-6.31407e-11 4.2399e-11 3.728e-11) (1.07014e-10 1.02597e-10 1.6794e-10) (8.72645e-10 8.54918e-11 6.49351e-10) (2.85782e-09 -4.70798e-10 1.55754e-09) (4.30676e-09 -1.27915e-09 2.15058e-09) (2.6033e-09 -1.18385e-09 1.42717e-09) (6.61248e-10 -6.12186e-10 4.66007e-10) (3.13115e-11 -1.7171e-10 3.79857e-11) (-2.10129e-11 -9.11359e-11 -1.24438e-10) (1.8771e-10 -5.35725e-11 -1.20744e-09) (2.85281e-10 7.46962e-11 -2.37054e-09) (-2.16141e-10 -4.61187e-11 -8.36896e-10) (-1.27446e-11 -4.04909e-12 -7.88118e-12) (2.10949e-10 2.85752e-11 3.24045e-10) (1.31942e-09 3.74255e-10 1.79349e-09) (1.63654e-09 8.59796e-10 2.67771e-09) (1.35305e-09 1.13398e-09 2.1266e-09) (4.57909e-10 6.02773e-10 7.03976e-10) (-2.50828e-11 4.91979e-11 4.54581e-11) (-2.22994e-10 -6.29769e-11 8.12349e-12) (-2.92255e-10 -2.26914e-10 -1.8895e-11) (-1.23331e-10 -1.49538e-10 -2.288e-11) (-3.21103e-11 -4.44152e-11 -2.64413e-11) (-9.31403e-11 -3.41738e-11 -1.03163e-10) (-2.46268e-11 2.27906e-11 -1.14921e-10) (-1.93394e-11 1.14835e-10 -7.68398e-11) (-7.12827e-10 7.47238e-10 1.62857e-10) (-9.66551e-09 3.64928e-09 2.94425e-09) (-2.95814e-08 4.27597e-09 6.02857e-09) (-1.64075e-08 -1.28181e-10 -5.05493e-10) (-1.42212e-09 -6.589e-10 -1.45063e-09) (5.39887e-10 -7.13173e-10 -1.31437e-09) (8.85908e-10 -3.82268e-10 -5.96413e-10) (9.49701e-10 -3.75947e-11 -2.22497e-10) (1.28552e-09 2.56788e-10 -2.7451e-10) (1.19675e-09 3.68717e-10 -5.17969e-10) (5.35197e-10 1.93478e-10 -5.12406e-10) (1.79625e-11 3.57812e-11 -3.20246e-10) (-5.51153e-10 -5.94757e-11 -4.6665e-10) (-1.25367e-09 -9.04662e-11 -3.56691e-10) (-2.58805e-10 4.03246e-11 3.51908e-11) (1.13207e-10 7.20425e-11 1.50578e-10) (2.33642e-09 1.16567e-10 1.27685e-09) (8.08506e-09 -1.05767e-09 3.41923e-09) (1.05712e-08 -2.66127e-09 4.27646e-09) (6.23281e-09 -2.40304e-09 2.70919e-09) (1.40979e-09 -1.03161e-09 7.52949e-10) (-1.33666e-11 -2.28504e-10 6.73498e-11) (-5.42105e-10 -2.89594e-10 -1.67044e-10) (-6.33553e-10 -1.23302e-10 -7.87758e-10) (-6.08361e-11 4.85549e-11 -2.01979e-09) (2.79737e-10 -1.39275e-10 -1.77487e-09) (5.12494e-11 -8.93477e-11 -2.29889e-10) (2.10336e-11 -3.41123e-12 1.98447e-11) (1.91676e-10 2.86174e-10 6.56353e-10) (-1.03599e-10 1.18716e-09 2.02991e-09) (-2.47633e-10 1.36837e-09 2.0468e-09) (1.12604e-10 7.20364e-10 8.73629e-10) (6.3081e-11 1.08395e-10 1.34015e-10) (1.06148e-12 -4.22882e-12 3.94386e-12) (-3.70929e-11 -8.35387e-11 -5.46045e-12) (-1.14001e-10 -1.28805e-10 -2.66989e-11) (-1.41898e-10 -8.68098e-11 -5.9413e-11) (-7.73971e-11 -6.01677e-12 -1.08044e-10) (-1.54189e-10 3.30977e-11 -2.23246e-10) (-1.40589e-10 1.30218e-10 -1.09201e-10) (-8.92183e-10 8.47375e-10 2.61825e-10) (-7.59386e-09 3.74959e-09 3.14578e-09) (-1.95765e-08 4.16575e-09 5.71386e-09) (-8.39898e-09 -2.88788e-10 1.19731e-10) (-4.97088e-10 -7.96518e-10 -1.07896e-09) (1.2593e-09 -1.48068e-09 -1.8627e-09) (9.31248e-10 -5.41559e-10 -5.55492e-10) (5.40118e-10 -3.73649e-11 -4.14762e-11) (7.38183e-10 2.1508e-10 -6.38827e-12) (8.98471e-10 3.62073e-10 -2.60139e-10) (6.90005e-10 3.06286e-10 -5.76223e-10) (2.21058e-10 1.6597e-10 -6.22526e-10) (-3.0384e-10 4.72354e-11 -6.33107e-10) (-1.09863e-09 -9.80236e-11 -6.56089e-10) (-4.42805e-10 -4.37639e-11 -8.81324e-11) (4.52261e-11 4.47509e-12 4.74656e-11) (3.41433e-09 -8.2442e-11 1.55748e-09) (1.30603e-08 -1.81065e-09 5.20669e-09) (1.62347e-08 -4.09389e-09 6.70365e-09) (8.83708e-09 -3.55408e-09 4.05554e-09) (1.54013e-09 -1.13487e-09 9.0789e-10) (-8.20793e-11 -1.60436e-10 5.80343e-11) (-1.87665e-09 -4.33776e-10 -2.2671e-10) (-2.69836e-09 -2.94104e-10 -9.22484e-10) (-6.57228e-10 -1.35187e-10 -9.81139e-10) (2.77099e-10 -4.28495e-10 -1.65572e-09) (3.12182e-10 -5.98202e-10 -1.21421e-09) (-2.24817e-11 -5.10325e-11 -7.31764e-11) (-1.74131e-10 2.40939e-10 2.23424e-10) (-1.20017e-09 2.37545e-09 2.15417e-09) (-1.65051e-09 2.30099e-09 2.34024e-09) (-4.2582e-10 5.86333e-10 7.03296e-10) (6.68874e-12 1.79645e-11 4.80213e-11) (6.07013e-11 -5.03726e-11 1.47684e-11) (1.01238e-10 -1.22167e-10 -1.01743e-11) (2.52109e-11 -3.85276e-11 -9.12497e-12) (-3.64451e-12 -5.56136e-12 -9.77713e-12) (-1.34079e-11 2.69926e-11 -1.77051e-11) (-2.57363e-10 8.92214e-11 -1.91602e-10) (-4.39412e-10 1.56976e-10 -1.40262e-10) (-8.61262e-10 6.05186e-10 3.22153e-10) (-3.54644e-09 2.2979e-09 2.27145e-09) (-6.30062e-09 2.03458e-09 3.15946e-09) (-1.55963e-09 -2.78329e-10 2.02369e-10) (4.34561e-11 -1.21498e-09 -9.78377e-10) (1.16194e-09 -2.17314e-09 -1.83352e-09) (4.21558e-10 -5.15472e-10 -3.28219e-10) (1.56939e-10 -1.03075e-11 2.04156e-11) (3.7921e-10 2.28392e-10 1.20448e-10) (4.96858e-10 3.5337e-10 -4.10058e-11) (4.48604e-10 3.08982e-10 -3.81945e-10) (2.5165e-10 2.48613e-10 -7.91381e-10) (-1.40426e-10 1.29235e-10 -1.00731e-09) (-4.92269e-10 -7.33525e-11 -7.86703e-10) (-2.33327e-10 -9.03603e-11 -2.16167e-10) (1.47722e-11 -7.89143e-12 2.15765e-12) (1.96033e-09 -1.76989e-10 7.30497e-10) (7.82783e-09 -1.26989e-09 3.12498e-09) (8.50927e-09 -2.70179e-09 3.9547e-09) (3.57957e-09 -2.06459e-09 2.14221e-09) (6.23641e-10 -6.40962e-10 6.00585e-10) (-1.65132e-11 -8.20788e-11 8.51888e-11) (-3.79726e-10 -6.51754e-11 7.91595e-11) (-1.01953e-09 -9.99646e-11 1.30366e-11) (-2.83814e-10 -9.25082e-11 -9.32259e-11) (1.0516e-10 -2.69618e-10 -4.56748e-10) (4.55936e-10 -1.03196e-09 -1.96279e-09) (-1.15406e-09 -7.1281e-10 -1.62526e-09) (-3.82673e-09 8.05331e-10 -7.3579e-10) (-4.20282e-09 3.78008e-09 1.12539e-09) (-2.12596e-09 3.11216e-09 1.06902e-09) (-2.9916e-10 4.20052e-10 9.55579e-11) (9.40099e-13 -1.9114e-12 -2.04605e-12) (1.42796e-10 -1.75015e-10 -4.89238e-11) (2.36923e-10 -2.2023e-10 9.6746e-12) (1.43731e-10 -4.7839e-11 5.79192e-11) (4.2727e-11 2.60407e-11 2.02939e-11) (-3.33486e-10 4.41243e-10 1.26046e-10) (-2.89518e-10 2.688e-10 -1.02764e-10) (-2.28486e-10 8.94316e-11 -7.68318e-11) (-1.79158e-10 1.02838e-10 1.01731e-10) (-5.38249e-10 6.40719e-10 9.67772e-10) (-6.98961e-10 6.03099e-10 1.2759e-09) (-3.46334e-11 -5.34977e-11 7.97757e-11) (6.92156e-10 -1.41103e-09 -6.92262e-10) (1.49175e-09 -2.81295e-09 -1.81254e-09) (1.83525e-10 -6.4915e-10 -3.59727e-10) (-1.69815e-11 1.45694e-12 7.25353e-12) (-1.50021e-10 4.06531e-10 2.68053e-10) (-8.45901e-12 5.78125e-10 2.21602e-10) (4.6964e-11 2.28664e-10 -8.69126e-11) (7.06649e-11 1.90216e-10 -5.50871e-10) (-3.48311e-11 8.49625e-11 -1.29926e-09) (-1.42023e-10 -9.53663e-11 -1.18081e-09) (-1.08533e-10 -1.24197e-10 -4.69128e-10) (3.76701e-12 -2.38527e-11 -4.60027e-11) (1.74218e-10 -3.99147e-11 2.60236e-11) (1.22505e-09 -3.28088e-10 4.465e-10) (2.14032e-09 -1.0726e-09 9.41135e-10) (2.3797e-09 -1.75069e-09 1.18771e-09) (2.47527e-09 -1.61256e-09 1.33579e-09) (1.95931e-09 -6.49314e-10 1.06826e-09) (6.41798e-10 2.1919e-13 4.19825e-10) (3.8208e-11 2.11192e-11 8.288e-11) (-3.08012e-11 -8.53419e-12 6.39932e-11) (-1.59845e-12 -2.06016e-11 9.48352e-12) (6.85472e-11 -1.74842e-10 -2.74499e-10) (-1.74814e-09 -5.71603e-10 -2.10228e-09) (-1.95778e-08 1.50364e-09 -6.98362e-09) (-2.38809e-08 8.42169e-09 -5.78891e-09) (-5.08875e-09 4.76478e-09 -2.38339e-09) (-1.30885e-10 4.92226e-10 -5.0836e-10) (2.68757e-10 -1.19548e-10 -2.08515e-10) (1.0261e-09 -7.76275e-10 -5.50184e-12) (7.65664e-10 -5.79463e-10 4.68709e-10) (6.73889e-11 -6.43177e-11 3.64999e-10) (-2.42369e-10 2.23255e-10 3.46526e-10) (-4.55083e-09 2.59956e-09 1.37836e-09) (-3.24317e-09 1.14036e-09 1.2846e-10) (-9.7095e-10 9.35875e-11 -1.56431e-10) (-2.97321e-10 2.38945e-11 2.0282e-11) (-2.05028e-10 2.23663e-10 3.90536e-10) (1.1125e-10 5.37237e-10 1.23649e-09) (5.12324e-10 -8.32407e-11 6.09227e-10) (2.26213e-09 -1.6877e-09 -1.73798e-10) (4.11285e-09 -3.50846e-09 -2.38862e-09) (9.48342e-10 -1.11168e-09 -1.06753e-09) (-2.13332e-10 -2.43079e-11 -6.59846e-11) (-4.01461e-09 1.7962e-09 1.32839e-09) (-5.41153e-09 3.98144e-09 3.25765e-09) (-1.95371e-09 1.75665e-09 1.24536e-09) (-1.24246e-10 1.34182e-10 -5.14322e-11) (2.4562e-10 9.63013e-12 -8.63283e-10) (1.19063e-09 -2.73217e-10 -2.56513e-09) (8.4832e-10 -2.90074e-10 -1.92901e-09) (1.58497e-10 -1.45761e-10 -5.49092e-10) (4.44377e-11 -5.46177e-11 -7.24345e-11) (3.41308e-10 -2.20852e-10 2.40555e-11) (2.24095e-09 -1.24055e-09 6.10272e-10) (5.10531e-09 -2.71569e-09 1.7936e-09) (5.23176e-09 -2.51643e-09 2.343e-09) (3.18917e-09 -9.99213e-10 1.70824e-09) (1.62972e-09 -8.36155e-11 8.51649e-10) (8.50965e-10 1.49627e-10 3.57242e-10) (4.50578e-10 1.18489e-10 2.3151e-10) (2.90423e-10 6.20175e-11 2.58086e-10) (1.20192e-10 2.77444e-11 8.54784e-11) (-7.64225e-11 4.58006e-11 -6.66175e-11) (-1.26946e-08 2.3103e-09 -3.93672e-09) (-4.45735e-08 8.88561e-09 -1.27542e-08) (-1.43096e-08 4.95468e-09 -8.96374e-09) (-9.14586e-11 1.47057e-10 -1.84198e-09) (3.28166e-09 -1.69241e-09 -1.16421e-09) (8.77841e-09 -3.91554e-09 1.29036e-09) (6.6908e-09 -1.55074e-09 2.52557e-09) (1.35155e-09 4.52297e-10 1.20994e-09) (-7.47637e-10 1.13926e-09 1.06354e-09) (-5.5492e-12 1.41828e-09 1.94625e-10) (-7.85587e-10 8.58634e-10 3.26008e-10) (-1.09227e-09 2.6812e-10 2.18605e-10) (-1.61256e-09 1.49888e-11 1.96271e-10) (-2.0503e-09 2.53893e-10 4.85577e-10) (-7.70646e-10 2.53873e-10 5.23147e-10) (3.55411e-11 -2.12942e-11 1.18344e-10) (1.26887e-09 -8.4924e-10 -5.73281e-11) (3.2391e-09 -2.0834e-09 -1.26541e-09) (1.14868e-09 -6.62846e-10 -6.59589e-10) (-3.31277e-11 7.10893e-12 -1.01845e-11) (-5.87749e-09 2.05332e-09 1.48937e-09) (-1.65078e-08 6.61224e-09 7.26186e-09) (-8.82696e-09 4.22386e-09 5.97348e-09) (-9.65336e-10 5.30186e-10 7.72322e-10) (6.09881e-11 5.0745e-12 -9.01084e-11) (2.95923e-09 -4.45476e-10 -3.28481e-09) (6.18387e-09 -8.19663e-10 -6.4127e-09) (3.82431e-09 -5.77011e-10 -3.67845e-09) (1.22379e-09 -3.54214e-10 -9.29049e-10) (6.3114e-10 -3.43355e-10 -1.36621e-10) (1.04319e-09 -6.95684e-10 2.52984e-10) (1.46005e-09 -1.01213e-09 6.35409e-10) (1.10993e-09 -7.68467e-10 6.09196e-10) (4.75681e-10 -2.95308e-10 3.30283e-10) (1.61076e-10 -6.84543e-11 1.36739e-10) (8.32075e-11 -7.76792e-12 7.10916e-11) (1.32054e-10 3.03176e-11 1.19676e-10) (4.05262e-10 1.92309e-10 4.34377e-10) (9.3232e-10 5.88964e-10 8.95222e-10) (8.04344e-10 8.29851e-10 4.78515e-10) (-2.54249e-10 8.03844e-10 -7.23648e-11) (-7.66155e-09 3.20068e-09 -1.47864e-09) (-9.00495e-09 1.16014e-09 -2.01458e-09) (-3.62902e-10 -2.6267e-10 -2.26207e-10) (1.45564e-09 -1.53243e-09 -1.10405e-10) (3.51653e-09 -2.58695e-09 1.2544e-10) (2.10002e-09 -9.14154e-10 -2.98928e-10) (1.25292e-09 2.83194e-10 -4.36327e-10) (9.01933e-10 1.22471e-09 -2.3287e-10) (1.14396e-09 1.44039e-09 -1.144e-09) (2.53705e-10 6.64735e-10 -9.86554e-11) (-6.81815e-11 1.60118e-10 9.14495e-11) (-3.29989e-10 9.5136e-11 2.39881e-10) (-5.43438e-10 8.49372e-11 3.16327e-10) (-2.23964e-10 3.98249e-11 1.38252e-10) (9.18587e-13 -9.90648e-12 7.57941e-12) (3.14758e-10 -3.63498e-10 -8.44242e-11) (4.82273e-10 -7.22273e-10 -2.6861e-10) (2.62487e-11 -9.56465e-11 -3.59024e-11) (-3.01924e-10 1.37494e-10 8.81944e-11) (-5.46199e-09 2.77008e-09 1.83725e-09) (-1.35014e-08 5.14401e-09 5.63094e-09) (-7.66675e-09 2.35493e-09 4.7536e-09) (-9.7419e-10 2.52149e-10 9.78018e-10) (8.50101e-12 -2.83467e-12 -2.75484e-13) (1.40057e-09 -2.98329e-10 -1.10244e-09) (5.90134e-09 -9.75469e-10 -4.70322e-09) (8.06349e-09 -1.09654e-09 -5.56087e-09) (5.02968e-09 -7.21297e-10 -2.71884e-09) (1.6975e-09 -4.07445e-10 -5.5232e-10) (3.83143e-10 -2.1517e-10 -3.79842e-12) (6.5881e-11 -1.14228e-10 3.40857e-11) (-1.22711e-11 -7.94252e-11 1.46111e-11) (-5.90598e-11 -8.09894e-11 -6.28354e-13) (-9.80673e-11 -8.1132e-11 -1.14741e-12) (-9.56409e-11 -5.50819e-11 2.60726e-11) (-6.40034e-11 -1.81091e-11 8.59479e-11) (1.43572e-11 9.0661e-11 4.13522e-10) (5.40318e-10 6.00496e-10 1.25534e-09) (1.53789e-09 1.57027e-09 1.6436e-09) (2.00325e-09 2.33569e-09 9.56539e-10) (5.8207e-10 1.15228e-09 1.6712e-10) (-2.80534e-11 5.89114e-11 2.13502e-11) (-3.71875e-10 -2.9331e-10 1.48714e-10) (-1.85189e-09 -1.8154e-09 4.72156e-10) (-2.48843e-09 -2.31544e-09 -2.86773e-10) (-8.54726e-10 -1.10204e-09 -1.06767e-09) (2.9317e-10 -3.51356e-10 -1.79712e-09) (1.30471e-09 8.07324e-10 -2.20105e-09) (-2.69152e-12 6.55411e-10 -7.98389e-10) (5.13324e-11 4.8897e-10 -1.65034e-10) (1.80535e-11 1.29889e-10 4.65469e-11) (7.32979e-12 2.07686e-11 5.40641e-11) (1.23499e-11 -5.79242e-12 3.57786e-11) (2.27539e-11 -1.46399e-11 1.38399e-11) (6.64875e-11 -6.67979e-11 -1.23014e-11) (8.43148e-11 -1.79145e-10 -7.67414e-11) (-1.55713e-11 -1.38818e-10 -7.35314e-11) (-7.65251e-11 -2.93701e-11 -1.46696e-11) (-3.8567e-10 2.59874e-10 1.66171e-10) (-1.341e-09 1.56098e-09 1.03286e-09) (-2.07854e-09 2.02069e-09 1.84267e-09) (-1.38238e-09 8.08198e-10 1.62543e-09) (-3.57957e-10 4.31531e-11 7.57726e-10) (2.106e-11 -5.11091e-11 1.25723e-10) (2.1924e-10 -1.16469e-10 -3.49267e-11) (1.31291e-09 -4.34775e-10 -7.54859e-10) (3.29459e-09 -7.64359e-10 -2.1245e-09) (4.39069e-09 -7.06777e-10 -2.67736e-09) (3.02315e-09 -3.28943e-10 -1.68841e-09) (8.83136e-10 -9.24438e-11 -4.91697e-10) (5.16839e-11 -1.91448e-11 -4.87657e-11) (-3.93925e-11 -3.11252e-11 -2.30433e-11) (-3.91215e-10 -2.13171e-10 -7.85108e-11) (-1.01619e-09 -5.03751e-10 -1.43162e-10) (-1.37515e-09 -5.63158e-10 -3.32596e-11) (-9.35494e-10 -2.83291e-10 3.04743e-10) (-3.78206e-10 -4.14516e-11 5.93285e-10) (5.4619e-11 2.26081e-10 1.01135e-09) (6.25203e-10 7.04837e-10 1.08618e-09) (1.74868e-09 1.59108e-09 1.0324e-09) (2.79831e-09 1.92619e-09 7.21561e-10) (1.25263e-09 5.1195e-10 2.37655e-10) (1.79714e-11 -1.21384e-11 8.20023e-12) (-1.06548e-09 -6.09848e-10 -1.22952e-11) (-5.3407e-09 -2.20016e-09 -5.0635e-10) (-4.90603e-09 -2.20005e-09 -1.48075e-09) (-1.5989e-09 -7.93943e-10 -1.63967e-09) (-3.5879e-10 1.74506e-10 -1.37796e-09) (-1.78214e-09 6.37689e-10 -6.73578e-10) (-5.78361e-10 3.5042e-10 4.62494e-11) (-5.71025e-11 6.10046e-11 1.11969e-10) (7.98089e-11 -1.02443e-11 1.15607e-10) (2.77103e-10 -6.19738e-11 7.93987e-11) (4.35322e-10 -7.48846e-11 -8.48118e-11) (3.46269e-10 -8.28562e-11 -2.10853e-10) (1.29964e-10 -9.43985e-11 -1.94523e-10) (-3.25508e-12 -8.10751e-11 -1.30787e-10) (-4.02791e-11 -2.7133e-11 -4.76476e-11) (-3.77706e-11 1.66909e-11 3.69267e-13) (-9.95734e-11 1.99529e-10 1.48986e-10) (-1.01159e-10 6.24262e-10 7.03134e-10) (-4.20513e-11 6.71689e-10 1.23098e-09) (-6.75277e-11 2.66788e-10 9.74651e-10) (-4.33179e-11 8.69359e-12 2.51055e-10) (1.29809e-12 -2.68899e-12 2.92719e-13) (3.07066e-10 -1.04271e-10 -3.78453e-10) (2.05747e-09 -3.60474e-10 -2.07303e-09) (3.68757e-09 -4.40947e-10 -2.99845e-09) (2.70141e-09 -2.53235e-10 -1.71795e-09) (9.5897e-10 -7.13724e-11 -4.51306e-10) (1.18416e-10 -1.71156e-11 -3.85014e-11) (-2.91572e-12 -4.43667e-12 -5.5881e-13) (-3.50797e-10 -1.40553e-10 -2.57452e-11) (-1.96953e-09 -6.05245e-10 -2.58414e-10) (-3.59297e-09 -9.31461e-10 -3.56269e-10) (-2.63924e-09 -6.07309e-10 3.62263e-10) (-1.06681e-09 -2.33036e-10 9.40111e-10) (-3.44551e-10 -2.865e-11 1.25274e-09) (3.80507e-11 1.32814e-10 6.69965e-10) (1.61786e-10 1.72457e-10 1.74241e-10) (6.01119e-10 4.06862e-10 4.05964e-11) (9.22804e-10 4.16768e-10 -5.45292e-11) (3.22965e-10 1.01023e-10 -1.58343e-11) (2.22568e-12 -7.55411e-14 1.77548e-13) (-1.21672e-10 -7.36877e-11 -5.61891e-12) (-7.77635e-10 -4.05331e-10 -2.12745e-10) (-1.70363e-09 -5.22856e-10 -8.5044e-10) (-2.31809e-09 7.56776e-11 -1.29702e-09) (-6.3488e-09 1.63613e-09 2.8013e-09) (-1.88523e-09 1.38982e-10 1.79651e-09) (-1.92195e-10 -3.06408e-10 7.07185e-10) (1.42386e-10 -3.66362e-10 1.92994e-10) (2.80151e-10 -4.37669e-10 -1.98827e-10) (4.25032e-10 -4.8201e-10 -7.72089e-10) (4.52194e-10 -3.73786e-10 -1.1351e-09) (3.2565e-10 -2.59423e-10 -8.90688e-10) (1.75025e-10 -1.37406e-10 -3.93764e-10) (7.69118e-11 -2.01597e-11 -9.50478e-11) (7.04623e-11 5.12491e-11 -2.88035e-11) (2.01188e-10 3.55616e-10 2.24638e-11) (3.44536e-10 8.77852e-10 2.23623e-10) (3.10226e-10 8.74107e-10 4.32742e-10) (1.59867e-10 3.77179e-10 2.98168e-10) (4.61567e-11 4.92562e-11 5.05059e-11) (4.27055e-11 -7.27304e-12 -1.59607e-11) (2.19459e-10 -1.24063e-10 -2.15097e-10) (3.55204e-10 -2.52134e-10 -4.24169e-10) (2.72447e-10 -2.28646e-10 -3.55219e-10) (1.54015e-10 -1.43845e-10 -1.90971e-10) (7.54713e-11 -6.84906e-11 -7.30846e-11) (1.78894e-11 -1.68114e-11 -1.31496e-11) (-1.28965e-12 -1.3584e-12 -5.31772e-13) (-1.35726e-10 -1.28441e-11 -8.69567e-12) (-9.80374e-10 -8.70716e-11 -1.31971e-10) (-2.20736e-09 -2.52878e-10 -3.1933e-10) (-2.00164e-09 -2.59991e-10 3.91535e-11) (-9.4089e-10 -1.60159e-10 5.42922e-10) (-4.06963e-10 -1.70117e-10 1.01436e-09) (3.34364e-11 -1.67128e-10 1.02084e-09) (2.14207e-10 -7.66386e-11 3.78639e-10) (3.43071e-10 -4.28538e-11 7.92326e-11) (7.57121e-10 -1.51149e-11 -1.95549e-10) (9.47686e-10 7.79863e-11 -4.51012e-10) (5.7602e-10 1.58807e-10 -3.67493e-10) (1.01022e-10 1.13204e-10 -1.09272e-10) (-2.13e-10 2.25683e-10 -3.60712e-11) (-2.95522e-09 1.32661e-09 4.02017e-10) (-7.74382e-09 2.52308e-09 1.87676e-09) (-1.01829e-09 -1.53644e-10 1.37938e-09) (-3.09685e-10 -7.31443e-10 8.9551e-10) (-3.71275e-11 -7.36238e-10 4.83922e-10) (-5.52178e-11 -2.81395e-10 1.19462e-10) (-7.18104e-11 -9.32466e-11 -1.6657e-11) (-1.3132e-10 -1.61239e-10 -2.08011e-10) (-7.68614e-11 -4.01368e-10 -6.48624e-10) (1.5173e-10 -4.954e-10 -7.503e-10) (1.90586e-10 -2.33243e-10 -3.13462e-10) (1.06953e-10 -3.30636e-11 -4.8534e-11) (1.90941e-10 7.43852e-11 1.19366e-11) (5.60908e-10 4.01989e-10 3.54486e-11) (1.12322e-09 8.57422e-10 -1.42677e-10) (1.44126e-09 1.00865e-09 -4.45257e-10) (1.09843e-09 6.55963e-10 -4.84891e-10) (4.56116e-10 1.96582e-10 -2.58522e-10) (6.88579e-11 7.15023e-12 -5.52494e-11) (-3.45869e-12 -8.07571e-12 -5.56748e-12) (-1.24773e-10 -8.09715e-11 4.99638e-12) (-3.17163e-10 -1.83375e-10 2.54187e-11) (-1.91119e-10 -1.45834e-10 -8.61289e-12) (-2.14474e-11 -4.89121e-11 -1.84468e-11) (2.94397e-11 -2.58017e-11 -2.36276e-11) (7.43573e-11 -4.32575e-12 -3.61305e-11) (2.45619e-11 1.33613e-11 -2.14986e-11) (-4.3482e-11 2.51384e-11 -4.61957e-11) (-6.59567e-10 3.25673e-11 -3.12368e-10) (-1.66337e-09 -1.77301e-10 -5.1339e-10) (-1.31632e-09 -3.04025e-10 -4.54044e-11) (-5.3882e-10 -2.63102e-10 3.90009e-10) (-1.27675e-10 -3.74655e-10 9.47176e-10) (5.22775e-10 -4.6747e-10 1.42526e-09) (8.30421e-10 -2.58249e-10 8.8897e-10) (5.01966e-10 -1.12874e-11 1.54664e-10) (2.4744e-10 1.30286e-10 -1.6153e-10) (7.29486e-11 5.27754e-10 -5.71209e-10) (-5.21635e-10 1.25646e-09 -7.43828e-10) (-1.30989e-09 1.90095e-09 -9.38222e-11) (-2.08581e-09 2.11441e-09 1.13475e-09) (-2.06134e-09 1.13474e-09 1.85197e-09) (-1.77768e-10 -4.59869e-10 3.44525e-10) (-1.14387e-10 -8.62938e-10 3.30266e-10) (-5.84625e-11 -3.99958e-10 1.97795e-10) (-2.35746e-11 -5.91709e-11 1.02022e-10) (-9.33971e-12 6.84699e-12 6.72252e-11) (1.75315e-12 6.00392e-13 5.27998e-12) (4.04309e-11 -3.72447e-11 -4.08448e-11) (2.30282e-10 -2.50752e-10 -3.14042e-10) (2.51853e-10 -2.57965e-10 -3.11437e-10) (8.23382e-11 -5.00252e-11 -5.67618e-11) (4.49055e-11 1.89637e-11 8.31019e-12) (1.82337e-10 2.16731e-10 7.90327e-11) (4.15537e-10 5.48078e-10 6.8991e-11) (4.85566e-10 5.84256e-10 -1.24422e-10) (3.23573e-10 3.40781e-10 -2.56724e-10) (9.70644e-11 1.2026e-10 -1.81672e-10) (-1.21601e-11 2.42583e-11 -5.21712e-11) (-6.58339e-11 5.15064e-12 -1.01208e-11) (-2.40162e-10 -4.727e-11 9.10992e-11) (-3.79749e-10 -1.73182e-10 2.29785e-10) (-2.90714e-10 -2.36918e-10 1.80603e-10) (-9.76353e-11 -1.579e-10 3.12883e-11) (6.42878e-12 -8.72175e-11 -4.0865e-11) (1.40457e-10 -8.79863e-11 -1.52339e-10) (3.91059e-10 -3.65541e-12 -3.2381e-10) (3.86989e-10 1.29909e-10 -3.43661e-10) (8.52482e-11 1.08296e-10 -2.06643e-10) (-2.07724e-10 7.97431e-11 -2.65207e-10) (-1.12889e-09 -9.50116e-11 -5.79834e-10) (-1.38262e-09 -4.15416e-10 -3.60868e-10) (-4.16303e-10 -2.83381e-10 8.91876e-11) (1.31851e-11 -2.44688e-10 3.60838e-10) (6.9582e-10 -3.52394e-10 1.15732e-09) (8.73894e-10 -2.43921e-11 1.09945e-09) (1.44853e-10 1.52008e-10 1.94899e-10) (-2.93504e-10 5.47901e-10 -1.01327e-10) (-2.16874e-09 2.15311e-09 -8.90885e-10) (-2.81338e-09 2.37299e-09 -4.67008e-10) (-1.2635e-09 8.74463e-10 3.54132e-10) (-3.20785e-10 2.81982e-12 3.11584e-10) (-7.862e-11 -5.6251e-10 9.13583e-11) (6.51846e-11 -8.56979e-10 1.98097e-10) (3.13776e-11 -3.23111e-10 1.52566e-10) (-7.22701e-12 -2.30793e-11 7.958e-11) (-1.71575e-11 7.84166e-11 1.39058e-10) (1.94134e-11 5.77476e-11 6.60258e-11) (5.50191e-11 2.03912e-12 -9.40487e-12) (3.17672e-10 -1.54297e-10 -2.72167e-10) (3.43703e-10 -2.94602e-10 -4.54442e-10) (6.06918e-11 -1.3823e-10 -1.46328e-10) (-1.29063e-11 -2.93015e-11 -6.0317e-12) (-2.15105e-11 -3.22169e-12 2.15225e-11) (-1.52043e-11 8.60653e-11 7.58303e-11) (9.89918e-11 4.80768e-10 1.74977e-10) (1.75476e-10 8.1127e-10 1.02766e-10) (1.2504e-11 5.01385e-10 -2.86009e-11) (-7.03064e-11 1.46927e-10 -2.56836e-11) (-8.3952e-11 3.10453e-11 7.68976e-12) (-1.28856e-10 -3.19792e-11 6.35117e-11) (-1.38102e-10 -1.06022e-10 1.15908e-10) (-7.81025e-11 -1.2836e-10 7.68548e-11) (-2.11716e-11 -1.23896e-10 2.99061e-12) (3.10132e-11 -1.87696e-10 -9.93999e-11) (9.3548e-11 -2.1315e-10 -2.1428e-10) (8.28137e-11 -1.0016e-10 -1.796e-10) (4.14144e-11 -4.64379e-13 -9.18196e-11) (3.05228e-11 5.35802e-11 -7.10937e-11) (2.22034e-11 9.36606e-11 -6.95558e-11) (-9.75748e-13 4.99571e-11 -4.06424e-11) (-9.31247e-12 4.9366e-12 -1.55263e-11) (-2.33051e-11 -1.877e-11 -1.91089e-11) (-2.05364e-11 -3.01943e-11 -1.08867e-11) (-4.32256e-13 -8.59034e-12 3.48777e-12) (3.4228e-11 -5.72834e-13 4.94851e-11) (1.3815e-10 1.0123e-10 1.99758e-10) (8.511e-11 2.68778e-10 2.06215e-10) (-1.76537e-10 4.99427e-10 9.50359e-11) (-6.03767e-10 6.41233e-10 -6.49065e-11) (-4.20267e-10 1.75421e-10 -4.91597e-11) (-1.33459e-10 -9.64977e-11 6.94956e-12) (2.17281e-14 -6.21063e-14 3.20286e-12) (1.54085e-12 -2.19586e-13 7.71578e-12) (4.36687e-12 -5.19235e-13 1.46186e-11) (6.69648e-12 -3.64233e-13 1.66079e-11) (3.41444e-12 1.242e-13 6.4951e-12) (1.18226e-13 5.07668e-14 2.77824e-13) (-1.13005e-12 2.27557e-13 -8.13549e-13) (-5.21554e-12 3.97157e-13 -2.8489e-12) (-4.61192e-12 1.30559e-13 -2.21577e-12) (-2.06706e-12 3.59884e-14 -7.45861e-13) (-1.16957e-12 5.52006e-14 -1.24335e-13) (-1.69043e-12 1.11913e-13 2.2283e-13) (-4.03363e-12 2.54673e-13 5.78e-13) (-9.67994e-12 4.78669e-13 -1.39071e-13) (-2.00996e-11 6.38043e-13 -2.92563e-12) (-2.74398e-11 5.19339e-13 -4.89077e-12) (-2.01803e-11 3.39465e-13 -3.17049e-12) (-8.74342e-12 2.00905e-13 -1.03044e-12) (-3.27079e-12 4.82398e-14 -1.91243e-13) (-1.20867e-12 -3.31473e-14 -4.21681e-14) (-3.05762e-13 -2.17867e-14 -6.92119e-14) (-6.33473e-14 9.43255e-16 -5.25588e-14) (-6.74322e-14 1.80169e-14 -5.33224e-14) (-1.10198e-12 1.76335e-13 -1.90535e-13) (-1.48874e-11 1.11654e-12 -1.12898e-12) (-5.02141e-11 1.29842e-12 -3.96543e-12) (-3.17526e-11 -1.15942e-12 -5.27241e-12) (-2.38212e-12 -3.78933e-13 -1.51117e-12) (1.68827e-13 -8.79796e-14 -4.5247e-13) (2.11058e-13 -2.2275e-14 -1.64651e-13) (1.29217e-14 4.72519e-15 -1.66757e-14) (-9.24675e-15 1.5842e-14 -5.91944e-14) (-4.04704e-14 4.62626e-14 -3.56362e-13) (-2.78047e-14 4.91124e-14 -8.9715e-13) (-3.36428e-14 1.71721e-14 -7.45265e-13) (-1.76501e-13 1.36996e-14 -2.19357e-13) (-9.69438e-13 1.41822e-14 6.28653e-14) (-2.42734e-12 -7.11027e-15 7.39669e-13) (-1.94185e-12 -9.34011e-15 1.23199e-12) (-7.64052e-13 -2.13771e-14 1.50525e-12) (-1.9673e-12 -9.70222e-13 2.48494e-11) (1.621e-12 -7.22509e-13 1.79927e-11) (2.89567e-12 -6.31878e-14 7.6221e-12) (8.89371e-13 1.83757e-13 5.28555e-13) (3.14692e-13 1.17481e-12 -4.89854e-12) (-1.40523e-11 5.57625e-12 -4.01633e-11) (-4.54157e-11 7.04658e-12 -7.49578e-11) (-4.35565e-11 8.61255e-13 -5.49669e-11) (-2.10402e-11 -1.16296e-12 -2.55372e-11) (-6.89886e-12 -9.9086e-14 -8.27978e-12) (-2.85335e-12 3.31628e-13 -2.61876e-12) (-2.44151e-12 4.62356e-13 -1.24566e-12) (-3.92646e-12 6.99102e-13 -1.67644e-12) (-8.96863e-12 1.18999e-12 -5.25781e-12) (-2.5973e-11 1.70987e-12 -1.33909e-11) (-7.29511e-11 6.95707e-13 -1.47324e-11) (-1.39085e-10 -4.00905e-12 1.40732e-11) (-1.30305e-10 -7.8959e-12 4.42656e-11) (-6.06474e-11 -6.01212e-12 3.07342e-11) (-1.70918e-11 -2.49691e-12 9.38021e-12) (-3.23458e-12 -3.81608e-13 1.13399e-12) (-5.3918e-13 1.35717e-13 -1.14135e-13) (-4.65688e-13 5.04316e-13 -5.84321e-13) (-2.79325e-12 1.47981e-12 -1.80092e-12) (-3.13976e-11 4.16718e-12 -5.7571e-12) (-1.44372e-10 -3.18825e-12 -3.23933e-12) (-1.46561e-10 -1.96092e-11 3.20912e-12) (-2.11938e-11 -5.03945e-12 4.36612e-13) (-6.83826e-14 -2.95575e-14 7.28588e-14) (1.72851e-13 1.82635e-13 6.00186e-13) (-2.81379e-13 2.97483e-13 6.94498e-13) (-7.47788e-13 1.26463e-13 2.43352e-13) (-1.05818e-12 3.35526e-14 -1.07102e-13) (-5.39687e-13 -1.91269e-14 -3.24355e-14) (-4.60968e-13 -2.65786e-14 4.54138e-13) (-2.83461e-12 8.16306e-14 4.98368e-12) (-1.08155e-11 -6.08164e-14 1.8098e-11) (-1.53947e-11 -6.61047e-13 2.61902e-11) (-1.24315e-11 -8.73555e-13 2.82039e-11) (-6.68311e-12 -9.66811e-13 2.77477e-11) (-1.09164e-11 -1.38813e-12 2.4348e-11) (-6.1452e-12 -6.5458e-13 9.86618e-12) (-2.62406e-13 8.97791e-14 4.69026e-13) (1.47075e-12 1.40885e-12 -3.25216e-12) (1.1525e-11 1.39212e-11 -5.77359e-11) (-5.84415e-13 2.43597e-11 -1.57808e-10) (-2.69853e-11 1.41562e-11 -1.67491e-10) (-2.40152e-11 -2.86042e-12 -8.95869e-11) (-8.54581e-12 -4.71754e-12 -3.85291e-11) (-1.78848e-12 -5.7086e-13 -1.46173e-11) (-6.9451e-13 7.06294e-13 -5.22637e-12) (-4.81403e-13 7.20092e-13 -1.97325e-12) (-2.34764e-13 6.79898e-13 -1.54734e-12) (2.01415e-13 1.1709e-12 -4.00659e-12) (-5.53342e-13 1.93375e-12 -8.9952e-12) (-7.18386e-12 1.95004e-12 -8.55085e-12) (-3.78257e-11 1.65724e-12 -1.10688e-12) (-1.16753e-10 -6.94448e-12 4.87211e-11) (-1.26483e-10 -1.97249e-11 8.88431e-11) (-5.51485e-11 -1.3688e-11 4.64588e-11) (-1.16689e-11 -2.62088e-12 8.3121e-12) (-1.00242e-12 2.95988e-13 1.71745e-13) (2.21675e-14 1.36618e-12 -9.87643e-13) (9.16931e-13 3.28937e-12 -3.22237e-12) (-2.31585e-12 2.56949e-12 -3.03886e-12) (-3.08716e-11 1.63866e-12 -4.09586e-12) (-1.22505e-10 -1.72336e-11 8.92727e-12) (-8.91738e-11 -1.5778e-11 1.84218e-11) (-7.69906e-12 1.8216e-13 6.5582e-12) (1.57314e-12 2.78232e-12 7.61263e-12) (2.74419e-12 2.40323e-12 6.09579e-12) (2.89465e-14 8.9265e-14 5.37479e-13) (-8.61403e-13 -1.92266e-13 2.69722e-13) (-1.63571e-12 -4.06508e-13 7.40746e-13) (-1.40005e-12 -4.36443e-13 3.30387e-12) (-1.94977e-12 -1.22677e-13 1.63774e-11) (-6.13821e-12 4.6629e-13 3.86023e-11) (-9.28453e-12 -4.85206e-13 4.66828e-11) (-9.77038e-12 -1.10116e-12 4.49367e-11) (-1.02652e-11 -1.29681e-12 3.70486e-11) (-3.5613e-11 -1.30306e-13 3.35619e-11) (-4.97101e-11 -1.21648e-12 2.1276e-11) (-1.54547e-11 1.47552e-12 1.03188e-12) (-2.84e-15 4.20453e-12 -8.97655e-12) (5.01697e-11 3.72471e-11 -1.24371e-10) (1.10809e-10 5.60085e-11 -3.03959e-10) (9.0401e-11 1.99848e-11 -2.76062e-10) (3.95549e-11 -1.11151e-11 -1.21819e-10) (2.01216e-11 -1.18633e-11 -5.1613e-11) (8.18593e-12 -2.42506e-12 -2.17286e-11) (1.04596e-12 1.12337e-12 -7.86456e-12) (-1.03877e-12 1.3825e-12 -2.96022e-12) (-1.17883e-12 1.06909e-12 -1.63808e-12) (-8.70046e-13 1.00687e-12 -2.40037e-12) (-1.05233e-12 1.83621e-12 -6.54991e-12) (-4.72207e-12 3.0035e-12 -9.41087e-12) (-2.21355e-11 4.60809e-12 -6.85448e-12) (-1.03608e-10 1.95137e-12 2.9183e-11) (-2.06449e-10 -2.6988e-11 1.25833e-10) (-1.63138e-10 -4.24306e-11 1.29234e-10) (-6.18379e-11 -1.63336e-11 4.66867e-11) (-1.24278e-11 9.42204e-13 6.11337e-12) (-2.01697e-12 2.64966e-12 -2.10835e-13) (-3.01015e-13 4.57246e-12 -2.33691e-12) (-2.06857e-12 3.75637e-12 -2.70352e-12) (-2.59019e-11 4.23331e-12 -3.07864e-12) (-1.807e-10 -1.59293e-11 1.83694e-11) (-2.87667e-10 -2.93724e-11 6.46793e-11) (-6.90902e-11 4.94508e-12 4.33922e-11) (3.53992e-12 1.1048e-11 2.9895e-11) (2.84096e-11 1.22614e-11 3.24886e-11) (1.10635e-11 9.41556e-13 6.41095e-12) (2.52816e-13 -2.33673e-13 3.76175e-14) (-1.05068e-12 -8.54845e-13 2.59145e-14) (-1.64027e-12 -1.09361e-12 2.26458e-12) (-7.08857e-13 -1.16891e-12 1.61036e-11) (1.66028e-12 8.8975e-13 4.32507e-11) (3.92696e-13 5.57811e-13 5.3534e-11) (-5.3284e-12 7.65867e-13 5.04485e-11) (-1.62053e-11 1.03528e-12 4.10773e-11) (-1.02269e-10 6.77062e-12 6.71843e-11) (-2.29891e-10 -1.00608e-12 5.71309e-11) (-1.56515e-10 5.02673e-12 2.45194e-12) (-1.4792e-11 8.96079e-12 -1.76398e-11) (7.77269e-11 6.08818e-11 -1.7366e-10) (2.81654e-10 1.04403e-10 -4.99967e-10) (2.43519e-10 2.22285e-11 -4.41098e-10) (9.03613e-11 -2.80951e-11 -1.65719e-10) (3.0373e-11 -2.1797e-11 -5.77094e-11) (7.75452e-12 -5.82347e-12 -2.24522e-11) (-2.1458e-12 9.82929e-13 -1.01757e-11) (-1.16612e-11 4.64921e-12 -9.0817e-12) (-2.06018e-11 6.08553e-12 -7.24673e-12) (-1.60073e-11 3.66579e-12 -6.77298e-12) (-1.11739e-11 2.89401e-12 -1.00279e-11) (-1.80793e-11 6.2241e-12 -1.86977e-11) (-6.1166e-11 1.51525e-11 -2.46953e-11) (-2.37557e-10 2.11507e-11 2.06098e-11) (-5.37038e-10 -3.59863e-11 2.11658e-10) (-5.68154e-10 -1.17041e-10 3.34125e-10) (-3.1649e-10 -7.70077e-11 2.01804e-10) (-1.12907e-10 -4.53631e-12 6.03354e-11) (-2.90893e-11 1.21918e-11 1.02933e-11) (-7.37103e-12 8.56177e-12 -3.58059e-13) (-7.55315e-12 7.15691e-12 -3.39094e-12) (-5.37541e-11 9.61343e-12 -6.66423e-12) (-3.42935e-10 -1.62968e-11 1.87567e-11) (-6.89838e-10 -4.33049e-11 1.13647e-10) (-2.73697e-10 1.65905e-11 1.24158e-10) (-5.74718e-12 2.37701e-11 7.22068e-11) (7.78736e-11 3.01162e-11 9.2211e-11) (4.66499e-11 2.13833e-12 2.46274e-11) (4.04675e-12 -2.40862e-12 -5.55663e-13) (-3.86561e-12 -4.9802e-12 -3.3964e-12) (-9.47744e-12 -5.66226e-12 7.67528e-13) (-7.97364e-12 -3.50496e-12 1.36633e-11) (-3.82005e-12 4.86202e-13 4.65323e-11) (2.8731e-13 2.25202e-12 6.65967e-11) (-8.11588e-12 4.83388e-12 6.78931e-11) (-3.24182e-11 7.15613e-12 6.25182e-11) (-1.67719e-10 2.7655e-11 1.1376e-10) (-5.44937e-10 1.41259e-11 1.25003e-10) (-6.63231e-10 5.066e-12 2.28937e-11) (-1.30915e-10 2.69374e-11 -5.28964e-11) (6.28661e-11 7.48989e-11 -1.92896e-10) (5.53732e-10 1.8306e-10 -7.9435e-10) (5.34742e-10 2.57572e-11 -7.49483e-10) (1.74121e-10 -6.12289e-11 -2.49105e-10) (4.54965e-11 -3.85251e-11 -6.93283e-11) (1.04859e-11 -1.15687e-11 -2.53569e-11) (-4.34303e-12 6.33025e-13 -1.44117e-11) (-3.65685e-11 1.23034e-11 -2.3082e-11) (-9.16196e-11 2.20446e-11 -2.31292e-11) (-8.80477e-11 1.31863e-11 -1.82455e-11) (-4.25628e-11 5.24256e-12 -1.87129e-11) (-2.81646e-11 8.48418e-12 -2.68176e-11) (-6.4801e-11 2.5733e-11 -4.64042e-11) (-2.63121e-10 5.44887e-11 -3.66398e-11) (-7.6723e-10 3.05874e-12 1.66195e-10) (-1.10108e-09 -1.84141e-10 4.88214e-10) (-8.51446e-10 -2.03967e-10 4.80429e-10) (-4.25943e-10 -4.45829e-11 2.46893e-10) (-1.54369e-10 3.02937e-11 8.64149e-11) (-4.0996e-11 2.20013e-11 1.89864e-11) (-1.60248e-11 9.72165e-12 1.702e-13) (-4.42434e-11 8.4594e-12 -9.30784e-12) (-2.50806e-10 -6.96699e-12 -2.32858e-11) (-7.08845e-10 -2.25386e-11 3.14086e-11) (-4.80079e-10 4.0501e-11 1.49728e-10) (-3.06761e-11 4.26107e-11 1.25177e-10) (1.83911e-10 6.93439e-11 2.37588e-10) (1.60219e-10 6.7304e-12 9.88793e-11) (2.45271e-11 -1.1307e-11 2.92337e-13) (-5.94063e-12 -1.8366e-11 -1.70688e-11) (-4.83142e-11 -3.16065e-11 -2.27282e-11) (-3.7221e-11 -1.48976e-11 1.31052e-11) (-2.37601e-11 -3.72392e-12 5.39169e-11) (-3.17544e-12 4.32754e-12 9.59974e-11) (-4.09342e-12 1.44587e-11 1.08408e-10) (-4.11771e-11 2.17588e-11 9.95931e-11) (-1.52395e-10 5.64285e-11 1.41032e-10) (-7.52863e-10 6.26517e-11 2.03666e-10) (-1.6351e-09 1.19973e-11 1.10512e-10) (-7.74202e-10 6.18307e-11 -1.28299e-10) (-2.12234e-11 7.31022e-11 -1.83526e-10) (8.43502e-10 2.81002e-10 -1.12766e-09) (1.24241e-09 5.13118e-11 -1.38785e-09) (4.86695e-10 -1.40673e-10 -4.90291e-10) (1.47394e-10 -9.3556e-11 -1.22746e-10) (4.95994e-11 -3.33434e-11 -4.29946e-11) (4.73577e-12 -8.4792e-13 -1.64716e-11) (-3.02902e-11 1.51133e-11 -2.85983e-11) (-1.63003e-10 4.52061e-11 -4.71764e-11) (-2.64685e-10 3.62663e-11 -3.84267e-11) (-1.70428e-10 7.78626e-12 -3.21738e-11) (-5.64834e-11 8.24688e-12 -3.17644e-11) (-4.69617e-11 3.04122e-11 -5.31082e-11) (-1.46839e-10 7.63862e-11 -7.78539e-11) (-5.22194e-10 8.15339e-11 4.94877e-12) (-1.13481e-09 -1.1424e-10 3.46898e-10) (-1.33995e-09 -2.91038e-10 6.48871e-10) (-9.52269e-10 -1.28444e-10 5.67e-10) (-4.20017e-10 3.34512e-11 3.09536e-10) (-1.1655e-10 3.40996e-11 1.05387e-10) (-3.0316e-11 8.1239e-12 1.68413e-11) (-3.42836e-11 -2.18667e-13 -4.67533e-12) (-9.60672e-11 -8.53713e-12 -3.45031e-11) (-2.66744e-10 7.67312e-12 -5.9155e-11) (-3.46058e-10 7.08327e-11 4.46104e-11) (-5.11379e-11 7.09776e-11 1.4163e-10) (4.12937e-10 1.74247e-10 5.55582e-10) (6.06136e-10 5.43079e-11 4.45448e-10) (1.60393e-10 -4.19606e-11 5.23846e-11) (1.63366e-11 -3.65774e-11 -2.72155e-11) (-7.27014e-11 -8.21488e-11 -9.07353e-11) (-1.25129e-10 -6.06484e-11 -3.05796e-11) (-6.20732e-11 -1.79781e-11 4.73233e-11) (-1.92684e-11 1.95237e-12 1.20518e-10) (1.34536e-11 3.24091e-11 1.75037e-10) (-2.18902e-11 4.8012e-11 1.48591e-10) (-1.0439e-10 8.03692e-11 1.42692e-10) (-7.38357e-10 1.31587e-10 2.44679e-10) (-2.67696e-09 8.57009e-11 2.86149e-10) (-2.64947e-09 8.74289e-11 -1.37943e-10) (-3.02297e-10 9.93876e-11 -2.73199e-10) (7.27448e-10 2.84233e-10 -1.1868e-09) (2.22511e-09 6.69508e-11 -2.25371e-09) (1.2413e-09 -3.23701e-10 -1.01372e-09) (4.68044e-10 -2.53754e-10 -2.63172e-10) (2.06989e-10 -1.08777e-10 -8.83881e-11) (5.17368e-11 -6.75774e-12 -3.84512e-11) (-4.58047e-12 1.51392e-11 -2.73103e-11) (-1.44142e-10 6.22282e-11 -6.69064e-11) (-4.83126e-10 8.1781e-11 -8.00985e-11) (-5.76735e-10 8.56053e-12 -5.08514e-11) (-2.61782e-10 -3.39094e-12 -4.90448e-11) (-7.50099e-11 3.17713e-11 -5.51947e-11) (-9.94175e-11 1.0391e-10 -1.04373e-10) (-2.78389e-10 1.34546e-10 -8.31841e-11) (-8.13924e-10 3.03397e-11 1.16269e-10) (-1.58304e-09 -2.33372e-10 6.06706e-10) (-1.612e-09 -1.99155e-10 9.15935e-10) (-7.4052e-10 -6.0918e-12 6.69664e-10) (-1.26282e-10 8.31971e-12 2.51832e-10) (-7.75667e-12 -5.28248e-12 3.16838e-11) (-1.44046e-11 -1.09489e-11 -1.45232e-12) (-1.0165e-10 -3.67001e-11 -5.03547e-11) (-1.44757e-10 1.34885e-11 -8.28994e-11) (-1.64297e-10 9.09855e-11 -3.65527e-11) (-4.64531e-11 1.05605e-10 1.0248e-10) (6.80738e-10 3.6348e-10 9.38538e-10) (1.67557e-09 2.52162e-10 1.4113e-09) (7.39286e-10 -9.50903e-11 4.21093e-10) (8.41128e-11 -7.18024e-11 -1.00214e-11) (-5.17906e-11 -1.30899e-10 -1.38775e-10) (-2.56425e-10 -1.64254e-10 -1.87724e-10) (-1.63353e-10 -5.87848e-11 6.42084e-12) (-5.99884e-11 -7.90064e-12 1.02503e-10) (4.77897e-12 4.23059e-11 2.11582e-10) (4.40577e-12 7.81383e-11 1.93166e-10) (-6.03663e-11 8.44988e-11 1.13017e-10) (-5.72996e-10 1.79907e-10 2.23952e-10) (-3.08093e-09 2.63502e-10 4.80029e-10) (-5.31032e-09 1.65587e-10 1.52083e-10) (-1.53616e-09 1.6627e-10 -5.13912e-10) (2.25866e-10 1.68325e-10 -8.82305e-10) (2.76523e-09 -1.19378e-11 -2.88646e-09) (2.64869e-09 -6.98885e-10 -1.96581e-09) (1.29584e-09 -6.41848e-10 -6.06577e-10) (6.33267e-10 -2.86703e-10 -1.80012e-10) (2.82208e-10 -2.93487e-11 -1.01072e-10) (6.38207e-11 4.11169e-11 -6.72178e-11) (-4.89267e-11 6.59762e-11 -6.95026e-11) (-4.36623e-10 1.31609e-10 -1.28942e-10) (-1.07878e-09 3.53942e-11 -9.83857e-11) (-1.01708e-09 -8.00096e-11 -5.1747e-11) (-3.4108e-10 3.31399e-11 -8.05023e-11) (-1.48753e-10 1.40701e-10 -1.21921e-10) (-2.28328e-10 2.30164e-10 -1.45041e-10) (-5.59052e-10 1.68682e-10 -2.25784e-11) (-1.56081e-09 -2.12912e-11 4.42399e-10) (-2.10633e-09 -1.53501e-10 1.13989e-09) (-8.48148e-10 -9.02302e-11 1.00589e-09) (3.21033e-11 -9.44099e-11 5.0265e-10) (1.77112e-10 -9.83585e-11 1.65422e-10) (3.27287e-11 -4.66161e-11 -9.93693e-12) (-1.35107e-10 -9.98365e-11 -9.46952e-11) (-6.30052e-10 -1.54335e-11 -2.07704e-10) (-3.79473e-10 2.40082e-10 -1.2056e-10) (-6.2347e-11 2.21099e-10 7.13518e-11) (7.99004e-10 5.92051e-10 1.05055e-09) (3.243e-09 7.24869e-10 2.89086e-09) (2.3311e-09 -6.28188e-11 1.63028e-09) (3.72168e-10 -1.68713e-10 1.47336e-10) (-1.21793e-11 -1.14085e-10 -7.83574e-11) (-4.02496e-10 -2.87497e-10 -3.51221e-10) (-4.05187e-10 -1.60962e-10 -1.34305e-10) (-1.05954e-10 -2.24896e-11 5.56442e-11) (-2.17998e-11 2.42161e-11 1.28753e-10) (1.04179e-11 7.26202e-11 1.52795e-10) (-3.43336e-11 6.27085e-11 6.18934e-11) (-4.02374e-10 1.87734e-10 1.70317e-10) (-2.73887e-09 4.60485e-10 5.90652e-10) (-6.87429e-09 4.48682e-10 7.43768e-10) (-4.00157e-09 2.31445e-10 -4.7939e-10) (-2.06076e-10 6.76113e-11 -6.50863e-10) (2.38604e-09 -2.40494e-10 -2.90074e-09) (4.16926e-09 -1.28931e-09 -3.06389e-09) (2.61441e-09 -1.28559e-09 -1.16452e-09) (1.33751e-09 -5.74448e-10 -3.25306e-10) (8.5539e-10 -7.31822e-11 -2.11537e-10) (4.78495e-10 1.71967e-10 -2.33731e-10) (8.22281e-11 1.56753e-10 -1.52037e-10) (-1.7816e-10 1.49265e-10 -1.40353e-10) (-9.99352e-10 1.2173e-10 -1.82448e-10) (-2.10545e-09 -1.78402e-10 -7.56368e-11) (-1.58981e-09 -5.98974e-11 -9.1474e-11) (-5.53447e-10 2.40542e-10 -1.6517e-10) (-3.95546e-10 4.32741e-10 -2.15829e-10) (-6.07986e-10 3.88792e-10 -1.03902e-10) (-1.48924e-09 2.71449e-10 3.08481e-10) (-2.02765e-09 1.72943e-11 1.16433e-09) (-6.07199e-10 -2.15319e-10 1.30657e-09) (6.6938e-10 -5.13452e-10 1.32844e-09) (1.34995e-09 -6.66171e-10 6.74249e-10) (6.47061e-10 -3.68177e-10 -1.19692e-10) (-2.52372e-11 -1.39562e-10 -1.86174e-10) (-1.65227e-09 -1.7812e-10 -5.16022e-10) (-2.45406e-09 6.96104e-10 -2.33831e-10) (-3.75655e-10 5.82386e-10 8.21802e-11) (6.64685e-10 8.08843e-10 8.21215e-10) (4.29848e-09 1.35638e-09 3.69335e-09) (4.64288e-09 2.15587e-10 3.38194e-09) (1.26593e-09 -2.92815e-10 7.46746e-10) (1.98039e-11 -6.5304e-11 -5.4972e-12) (-4.44877e-10 -3.00731e-10 -2.92211e-10) (-7.88134e-10 -3.15616e-10 -3.16943e-10) (-2.22045e-10 -6.41137e-11 7.29851e-14) (-2.32786e-11 3.65592e-12 3.20792e-11) (-1.51712e-12 3.21397e-11 5.35043e-11) (-2.26159e-11 3.28651e-11 1.83971e-11) (-2.62329e-10 1.61676e-10 1.04875e-10) (-2.02596e-09 5.73448e-10 5.74573e-10) (-6.58165e-09 8.76892e-10 1.29081e-09) (-6.1326e-09 4.02051e-10 1.15064e-10) (-7.03093e-10 -5.06792e-12 -6.23774e-10) (1.41844e-09 -4.77894e-10 -2.27278e-09) (4.41297e-09 -1.87747e-09 -3.42349e-09) (3.22725e-09 -1.83772e-09 -1.44632e-09) (2.04639e-09 -9.30966e-10 -4.5676e-10) (1.80024e-09 -1.54276e-10 -4.00459e-10) (1.69201e-09 4.95111e-10 -6.137e-10) (7.84525e-10 5.91421e-10 -5.23375e-10) (3.14169e-11 2.65386e-10 -2.27481e-10) (-4.43932e-10 1.78322e-10 -1.97856e-10) (-2.34083e-09 -9.2356e-11 -2.03498e-10) (-4.28515e-09 -3.12399e-10 -7.91948e-11) (-2.56971e-09 4.60263e-10 -2.27511e-10) (-1.14109e-09 8.36682e-10 -2.85542e-10) (-9.83281e-10 8.24865e-10 -1.64745e-10) (-1.37609e-09 5.83745e-10 2.597e-10) (-1.18085e-09 1.54647e-10 9.57089e-10) (5.26669e-11 -4.41249e-10 1.84344e-09) (2.62006e-09 -1.71305e-09 3.18254e-09) (3.27737e-09 -1.82815e-09 1.5563e-09) (1.94231e-09 -9.80714e-10 -2.86021e-10) (4.02565e-10 -3.43423e-10 -6.76115e-10) (-1.12329e-09 -1.91708e-10 -8.57462e-10) (-5.78728e-09 8.19468e-10 -4.77945e-10) (-2.15937e-09 1.3744e-09 3.67186e-10) (2.56682e-10 9.2885e-10 5.8546e-10) (3.66919e-09 1.65231e-09 2.82889e-09) (5.39786e-09 6.00993e-10 3.67377e-09) (2.29452e-09 -2.50237e-10 1.43612e-09) (9.64853e-11 -7.24472e-11 6.64325e-11) (-2.10784e-10 -1.43518e-10 -6.7015e-11) (-8.78634e-10 -3.59249e-10 -2.69046e-10) (-4.37596e-10 -1.58818e-10 -8.4238e-11) (-4.91968e-11 -9.58789e-12 3.7816e-12) (-6.04311e-12 5.76299e-12 5.10388e-12) (-3.0389e-11 2.00257e-11 -7.35932e-12) (-1.68194e-10 1.17759e-10 3.34347e-11) (-1.27752e-09 5.56171e-10 4.38686e-10) (-5.03369e-09 1.19357e-09 1.52543e-09) (-6.52447e-09 7.1148e-10 9.79679e-10) (-1.2653e-09 -7.73537e-11 -4.73293e-10) (5.30563e-10 -5.55545e-10 -1.35357e-09) (3.40544e-09 -2.21753e-09 -2.8675e-09) (3.26051e-09 -2.32462e-09 -1.47051e-09) (2.40657e-09 -1.27215e-09 -5.40943e-10) (2.35678e-09 -2.99025e-10 -5.08649e-10) (2.70594e-09 7.00858e-10 -9.05138e-10) (2.08322e-09 1.23224e-09 -1.04959e-09) (6.13277e-10 7.59707e-10 -6.07849e-10) (-9.98802e-11 2.3138e-10 -2.11783e-10) (-1.44102e-09 1.41357e-10 -3.05171e-10) (-6.72855e-09 -3.49653e-10 -2.05378e-10) (-7.82226e-09 6.06417e-10 -1.70158e-10) (-3.38333e-09 1.53711e-09 -2.97084e-10) (-1.61202e-09 1.39063e-09 -1.36784e-10) (-9.43457e-10 7.23522e-10 2.67279e-10) (-2.06869e-10 1.26984e-10 6.3371e-10) (2.23754e-09 -1.1506e-09 3.45001e-09) (6.84747e-09 -3.80507e-09 5.78062e-09) (4.60867e-09 -2.95412e-09 2.53637e-09) (1.59427e-09 -1.07241e-09 -3.63674e-11) (6.90943e-10 -4.89617e-10 -1.00308e-09) (-5.43929e-10 -2.2437e-10 -1.39792e-09) (-3.79368e-09 3.69858e-10 -1.12481e-09) (-4.18272e-09 1.62448e-09 6.88479e-10) (-3.61204e-10 1.04641e-09 6.2185e-10) (1.73228e-09 1.35446e-09 1.36911e-09) (3.29124e-09 7.55728e-10 1.95178e-09) (1.70454e-09 -3.41308e-11 1.06198e-09) (2.00919e-10 -5.78165e-11 1.83392e-10) (-3.211e-11 -2.88073e-11 2.16171e-11) (-3.89801e-10 -1.82602e-10 -1.42302e-11) (-4.55341e-10 -2.06524e-10 -6.74638e-11) (-1.70174e-10 -6.17321e-11 -4.09848e-11) (-3.94019e-11 2.44148e-13 -1.47521e-11) (-7.93386e-11 1.12266e-11 -7.08995e-11) (-1.67709e-10 8.76987e-11 -4.18751e-11) (-9.00811e-10 4.76044e-10 2.69175e-10) (-3.59899e-09 1.30576e-09 1.53459e-09) (-5.68006e-09 1.03919e-09 1.78933e-09) (-1.631e-09 -1.15725e-10 -6.64049e-11) (1.28507e-10 -5.4794e-10 -6.83456e-10) (3.02598e-09 -2.78785e-09 -2.49284e-09) (3.5288e-09 -2.96204e-09 -1.63923e-09) (1.98896e-09 -1.28272e-09 -5.23204e-10) (1.55319e-09 -2.89244e-10 -3.33304e-10) (2.17197e-09 5.22448e-10 -6.45512e-10) (2.42108e-09 1.38644e-09 -1.06868e-09) (1.3363e-09 1.24402e-09 -9.6419e-10) (1.73631e-10 5.30574e-10 -4.54127e-10) (-5.53565e-10 2.72676e-10 -3.02654e-10) (-5.79851e-09 1.49385e-10 -4.78374e-10) (-1.26814e-08 5.90288e-10 -1.21495e-10) (-6.86861e-09 2.0649e-09 -1.40607e-10) (-1.90755e-09 1.61444e-09 1.1418e-11) (-2.48437e-10 5.13146e-10 2.31273e-10) (9.67879e-10 1.2756e-10 1.21967e-09) (9.92569e-09 -3.1971e-09 7.27007e-09) (1.41096e-08 -6.46852e-09 8.7356e-09) (5.29023e-09 -3.55094e-09 3.12313e-09) (4.98356e-10 -6.78372e-10 1.37613e-10) (2.13902e-11 -3.06263e-10 -4.78452e-10) (-6.36185e-10 -3.69855e-10 -1.90141e-09) (-1.80968e-09 -1.85741e-11 -1.4007e-09) (-2.30816e-09 7.52127e-10 1.13014e-10) (-8.83839e-10 1.17639e-09 7.37117e-10) (4.29228e-10 1.02238e-09 6.35679e-10) (8.75338e-10 5.42797e-10 5.30926e-10) (3.46954e-10 7.07281e-11 2.83243e-10) (7.19022e-11 -9.94209e-12 1.65331e-10) (-2.16543e-11 -3.18198e-11 1.18454e-10) (-8.55192e-11 -7.44219e-11 8.08956e-11) (-1.35161e-10 -1.12026e-10 2.06942e-11) (-1.20111e-10 -7.97268e-11 -3.96117e-11) (-8.55163e-11 -3.02468e-11 -6.69285e-11) (-1.05561e-10 -5.48937e-12 -1.39454e-10) (-3.47973e-10 9.18562e-11 -1.54305e-10) (-1.07936e-09 4.62895e-10 1.94371e-10) (-2.96002e-09 1.31224e-09 1.5847e-09) (-4.23027e-09 1.16205e-09 2.32338e-09) (-1.1646e-09 -1.32413e-10 3.77668e-10) (1.90689e-10 -6.77986e-10 -3.67547e-10) (3.42831e-09 -3.65335e-09 -2.46414e-09) (2.67395e-09 -2.72024e-09 -1.58496e-09) (7.66198e-10 -7.32394e-10 -3.1303e-10) (4.34208e-10 -1.58833e-10 -9.53861e-11) (9.49582e-10 2.08538e-10 -2.61733e-10) (1.84948e-09 1.13671e-09 -7.62415e-10) (1.58462e-09 1.54499e-09 -1.02514e-09) (4.70955e-10 8.88352e-10 -7.08032e-10) (-2.03958e-10 3.60004e-10 -3.32434e-10) (-2.36839e-09 4.29861e-10 -4.93826e-10) (-9.01031e-09 5.35433e-10 -4.08368e-10) (-7.23219e-09 1.62521e-09 -1.3605e-10) (-1.35344e-09 1.14988e-09 7.9254e-11) (1.99089e-10 4.21489e-10 2.48346e-10) (5.69213e-09 -9.05921e-11 3.20692e-09) (2.13988e-08 -5.89726e-09 1.09525e-08) (1.92284e-08 -7.83912e-09 1.00884e-08) (4.62709e-09 -2.99646e-09 2.79777e-09) (5.88511e-11 -3.46809e-10 1.10637e-10) (-5.02871e-10 -3.65061e-10 -3.94447e-10) (-1.04565e-09 -5.36225e-10 -1.61198e-09) (-1.30836e-09 -4.75455e-10 -1.58786e-09) (-1.32552e-09 9.84747e-11 -3.57321e-10) (-1.09923e-09 1.05121e-09 4.54968e-10) (-2.2174e-10 1.48503e-09 5.25952e-10) (1.3127e-10 6.16126e-10 1.7644e-10) (5.96519e-12 5.50642e-11 3.99554e-11) (-2.29929e-11 -3.89089e-12 7.98373e-11) (-2.24344e-11 -7.22099e-11 1.62058e-10) (1.03928e-11 -1.11251e-10 1.09633e-10) (1.37292e-11 -8.00105e-11 2.33164e-11) (1.98422e-12 -3.37703e-11 -1.41997e-11) (-1.75618e-11 -2.49632e-11 -5.30453e-11) (-2.89194e-11 1.24418e-11 -3.50854e-11) (-3.14647e-10 8.2982e-11 -1.38387e-10) (-8.76117e-10 2.74149e-10 1.02187e-10) (-1.49758e-09 6.92351e-10 1.07001e-09) (-1.32931e-09 5.79638e-10 1.59712e-09) (-1.30293e-10 -8.75927e-11 2.88458e-10) (7.58575e-10 -1.05193e-09 -2.59494e-10) (2.71358e-09 -3.08714e-09 -2.14255e-09) (9.38312e-10 -1.36111e-09 -1.05132e-09) (9.97974e-11 -2.62098e-10 -1.05496e-10) (2.83677e-11 -5.98216e-11 3.95135e-12) (4.20062e-11 2.7737e-12 -1.19533e-11) (3.88614e-10 3.81426e-10 -2.8691e-10) (8.96655e-10 1.36056e-09 -9.52332e-10) (5.07323e-10 1.21827e-09 -9.20405e-10) (-5.66918e-11 4.83601e-10 -4.35014e-10) (-5.69122e-10 2.44987e-10 -3.11955e-10) (-2.66094e-09 2.36841e-10 -4.80357e-10) (-3.13346e-09 6.55796e-10 -3.23257e-10) (-5.01839e-10 4.77273e-10 -5.51817e-12) (5.64386e-10 4.00099e-10 2.43154e-10) (8.14032e-09 -5.03053e-10 3.11161e-09) (1.839e-08 -5.4212e-09 7.94779e-09) (1.12752e-08 -5.09561e-09 6.01277e-09) (2.1097e-09 -1.55206e-09 1.63404e-09) (-2.78151e-12 -1.9433e-10 1.44088e-10) (-2.33668e-10 -1.76108e-10 -3.0655e-11) (-2.15843e-10 -2.37919e-10 -3.13434e-10) (-3.26911e-10 -4.61366e-10 -8.33083e-10) (-1.66409e-09 -4.20551e-10 -9.41342e-10) (-4.04209e-09 1.27738e-09 -2.34499e-10) (-2.60421e-09 3.24466e-09 8.01134e-11) (-8.0774e-10 2.28465e-09 -4.01194e-10) (-1.41545e-10 3.63908e-10 -1.68347e-10) (-1.49e-12 1.48701e-14 -2.44122e-12) (2.69032e-11 -8.89384e-11 2.06746e-11) (8.44864e-11 -2.53574e-10 7.64624e-11) (5.28964e-11 -1.72794e-10 6.03711e-11) (1.20045e-11 -2.68544e-11 1.31512e-11) (2.22694e-13 -2.14627e-13 -2.89873e-13) (-9.00633e-12 8.61509e-12 1.35963e-12) (-8.47093e-11 5.57511e-11 -7.71288e-11) (-1.78504e-10 7.93504e-11 -5.5606e-11) (-1.84175e-10 1.15989e-10 1.68932e-10) (-3.45962e-11 1.80669e-10 6.65123e-10) (3.13306e-10 -9.00239e-11 4.82911e-10) (7.90574e-10 -6.40747e-10 -7.11997e-11) (1.04631e-09 -1.29531e-09 -1.20077e-09) (2.89748e-10 -6.29856e-10 -7.08236e-10) (8.45804e-12 -1.43991e-10 -4.48807e-11) (-9.80157e-11 -1.39846e-10 1.00401e-10) (-2.95764e-10 -2.90105e-11 1.39849e-10) (-3.58675e-10 2.74966e-10 -4.01077e-11) (-2.82274e-10 8.15255e-10 -5.18863e-10) (6.47256e-11 1.08987e-09 -1.00812e-09) (1.54621e-10 5.99369e-10 -8.11361e-10) (-9.1463e-11 1.30551e-10 -3.70602e-10) (-5.89253e-10 1.89978e-11 -3.89074e-10) (-1.23453e-09 1.81183e-10 -3.6871e-10) (-2.88309e-10 2.21846e-10 -6.96375e-11) (2.06001e-10 1.45413e-10 3.83139e-11) (2.98548e-09 -2.9771e-10 8.00136e-10) (5.98622e-09 -2.22923e-09 2.17506e-09) (4.28659e-09 -2.2667e-09 2.21811e-09) (1.78557e-09 -1.07869e-09 1.42421e-09) (5.70934e-10 -3.61641e-10 6.76974e-10) (1.3455e-10 -1.41953e-10 2.1637e-10) (5.24096e-11 -7.17475e-11 2.12614e-11) (5.39675e-11 -1.0201e-10 -1.04418e-10) (-8.12388e-10 -2.47814e-10 -5.17828e-10) (-1.35005e-08 1.44009e-09 -1.88447e-09) (-1.77991e-08 8.30311e-09 -3.14535e-09) (-5.88407e-09 6.5793e-09 -4.30456e-09) (-9.47967e-10 1.68573e-09 -2.51362e-09) (6.99731e-11 -1.00464e-10 -5.98954e-10) (3.18909e-10 -5.0877e-10 -1.44493e-10) (4.41329e-10 -8.1688e-10 3.53797e-10) (2.54494e-10 -6.22301e-10 6.96796e-10) (5.05845e-11 -2.70624e-10 6.05654e-10) (-2.19593e-11 -1.65119e-11 1.36495e-10) (-1.925e-12 2.79385e-10 4.60624e-10) (-2.08728e-10 1.30933e-10 1.81918e-12) (-5.40692e-10 1.14259e-10 -2.5181e-10) (-4.65889e-10 6.05605e-11 -4.66438e-11) (-2.19393e-10 7.0149e-11 2.14307e-10) (1.91549e-11 2.79677e-11 2.27464e-10) (1.44492e-10 -5.97416e-11 3.0346e-11) (6.37765e-10 -4.02682e-10 -5.46232e-10) (7.69684e-10 -5.61159e-10 -8.38166e-10) (2.30151e-10 -2.50264e-10 -1.06561e-10) (-9.86149e-11 -1.51054e-10 1.65936e-10) (-3.12208e-09 7.66808e-12 1.66813e-09) (-7.30016e-09 1.96369e-09 2.17208e-09) (-2.61517e-09 1.49003e-09 3.32579e-11) (-1.97707e-10 5.28804e-10 -5.40238e-10) (7.80483e-10 6.40376e-10 -1.54757e-09) (1.23336e-09 3.64182e-10 -1.7898e-09) (1.50735e-10 3.79064e-11 -6.22233e-10) (-5.19902e-10 4.10022e-11 -4.08973e-10) (-1.08965e-09 1.98304e-10 -3.49903e-10) (-7.88882e-11 3.04789e-11 -3.33213e-11) (1.2489e-10 -5.65078e-11 -1.1006e-13) (1.36665e-09 -8.499e-10 3.05516e-10) (2.72959e-09 -1.67479e-09 1.04615e-09) (3.30603e-09 -1.47178e-09 1.65964e-09) (2.86495e-09 -7.97872e-10 1.58921e-09) (1.89364e-09 -3.6973e-10 1.01889e-09) (1.26345e-09 -2.01756e-10 4.85467e-10) (8.01681e-10 -1.55102e-11 1.88114e-10) (1.75148e-11 2.60031e-11 1.94842e-11) (-7.05072e-09 1.87041e-09 7.64012e-10) (-3.8444e-08 1.03735e-08 -2.66104e-09) (-1.95384e-08 8.90605e-09 -1.04247e-08) (-2.92815e-09 2.14425e-09 -7.67452e-09) (6.32888e-10 -1.10616e-09 -3.23802e-09) (2.21105e-09 -2.77516e-09 -1.15423e-09) (5.07634e-09 -4.15674e-09 1.10733e-09) (5.91516e-09 -2.77085e-09 2.92912e-09) (3.93759e-09 -6.228e-10 3.19603e-09) (1.37868e-09 4.39848e-10 2.07931e-09) (1.22243e-09 8.3175e-10 8.11121e-10) (4.25093e-10 4.92011e-10 3.77212e-10) (6.67785e-12 1.02427e-10 5.16323e-11) (-1.44e-10 8.07785e-11 5.24252e-11) (-5.83596e-10 1.30772e-10 2.65665e-10) (-5.02628e-10 6.33231e-11 2.96479e-10) (-3.01026e-11 -1.19182e-11 8.81176e-12) (1.084e-10 -1.58695e-10 -1.80879e-10) (5.73151e-10 -5.48933e-10 -6.42459e-10) (2.94228e-10 -2.77341e-10 -1.58387e-10) (-1.4384e-11 -2.68444e-11 7.31963e-11) (-3.36981e-09 8.61377e-10 2.28592e-09) (-1.62134e-08 4.63542e-09 6.61644e-09) (-9.6688e-09 3.25175e-09 2.85814e-09) (-3.47672e-10 2.50634e-10 -6.68841e-11) (1.16029e-09 2.2411e-10 -1.28864e-09) (5.40816e-09 1.22565e-10 -4.49606e-09) (4.05429e-09 1.34576e-10 -3.29113e-09) (4.91146e-10 1.27439e-10 -6.81448e-10) (-1.24267e-10 5.80578e-11 -1.61297e-10) (-2.54376e-10 8.36543e-12 -1.2317e-10) (-1.73709e-11 -3.10949e-11 -2.42645e-11) (2.18674e-10 -2.47301e-10 -3.33008e-11) (8.74601e-10 -6.94341e-10 1.52331e-10) (1.27378e-09 -8.02687e-10 5.20635e-10) (1.21234e-09 -6.19335e-10 6.92036e-10) (8.75052e-10 -3.77339e-10 5.46156e-10) (5.67698e-10 -1.7306e-10 3.33158e-10) (5.97502e-10 8.79363e-11 3.16679e-10) (9.69716e-10 9.51886e-10 6.92318e-10) (-5.07425e-10 2.41227e-09 1.50192e-09) (-1.16239e-08 6.81767e-09 3.42994e-09) (-1.61146e-08 4.44426e-09 -1.60436e-09) (-2.42744e-09 -3.20487e-10 -2.63272e-09) (1.60992e-09 -2.28211e-09 -2.78532e-09) (7.85454e-09 -5.93588e-09 -2.41286e-09) (1.07993e-08 -6.25681e-09 1.94341e-10) (7.08734e-09 -2.89069e-09 8.20705e-10) (3.17517e-09 -4.01115e-10 5.47356e-10) (1.72583e-09 4.82529e-10 6.47059e-10) (1.61466e-10 1.27855e-10 -8.12498e-11) (4.54612e-11 1.38138e-10 6.88006e-11) (-4.8787e-11 1.81097e-10 1.75457e-10) (-1.46899e-10 1.56925e-10 2.20383e-10) (-1.40397e-10 8.39141e-11 2.02541e-10) (-3.53586e-11 6.56543e-12 8.45669e-11) (9.05806e-12 -1.8585e-11 1.05578e-11) (9.81669e-11 -1.75264e-10 -8.46159e-11) (8.32094e-11 -2.84207e-10 -1.90204e-10) (-2.57139e-11 -7.52421e-11 -3.14645e-11) (-2.57644e-10 5.24935e-11 1.68578e-10) (-3.0001e-09 1.81149e-09 2.10264e-09) (-9.7503e-09 4.75993e-09 4.97234e-09) (-7.14906e-09 2.2977e-09 2.88691e-09) (-3.53878e-10 4.40512e-11 1.10568e-10) (5.29396e-10 -1.85256e-10 -3.15922e-10) (5.41027e-09 -1.1249e-09 -2.89405e-09) (8.08256e-09 -6.82635e-10 -4.21186e-09) (4.29946e-09 3.82606e-10 -2.33004e-09) (7.25042e-10 2.99224e-10 -5.0847e-10) (1.00942e-11 2.94042e-11 -3.8892e-11) (-1.81042e-11 -6.75064e-12 -1.45195e-11) (-1.94708e-11 -5.68031e-11 -2.7509e-11) (1.70335e-11 -1.23975e-10 -4.08577e-11) (3.62715e-11 -1.38643e-10 -1.23297e-11) (1.75474e-11 -1.37845e-10 4.11823e-11) (-4.54179e-11 -1.52804e-10 1.06471e-10) (-1.52273e-10 -1.43026e-10 1.99447e-10) (-1.19602e-10 7.029e-12 2.77078e-10) (2.83856e-10 6.99145e-10 8.09162e-10) (1.96688e-09 3.98865e-09 2.55308e-09) (5.85454e-10 4.584e-09 2.72277e-09) (-7.50444e-10 1.20314e-09 9.29642e-10) (-1.94962e-10 -9.64161e-11 8.95941e-11) (-3.8001e-11 -1.11882e-09 4.97784e-12) (6.06962e-10 -2.18178e-09 -2.43419e-10) (1.60274e-09 -2.44249e-09 -1.07677e-09) (2.60887e-09 -1.97657e-09 -2.1427e-09) (2.13152e-09 -7.30731e-10 -2.02167e-09) (8.09424e-10 7.1908e-11 -7.66344e-10) (-1.65211e-10 1.75282e-10 -3.52066e-10) (-1.5344e-10 1.61117e-10 -2.72542e-11) (-1.23992e-10 1.40148e-10 1.12845e-10) (-3.96186e-11 7.08817e-11 1.18299e-10) (1.08013e-11 1.73095e-11 5.35426e-11) (1.77756e-11 -2.77193e-12 1.5178e-11) (1.84767e-11 -1.71383e-11 -3.89214e-12) (6.13812e-12 -5.3786e-11 -4.1659e-11) (-6.47985e-11 -8.11731e-11 -7.65766e-11) (-1.71981e-10 -4.46179e-11 -2.07532e-11) (-5.49169e-10 1.71409e-10 3.20863e-10) (-1.47631e-09 1.22753e-09 1.61272e-09) (-1.86186e-09 1.92143e-09 2.29492e-09) (-9.58315e-10 6.99297e-10 1.10155e-09) (-8.86196e-11 -4.64192e-12 1.33012e-10) (9.09733e-11 -9.30656e-11 -6.85391e-12) (1.40055e-09 -6.14315e-10 -7.32291e-10) (4.19024e-09 -8.76756e-10 -2.54951e-09) (5.31406e-09 -1.16483e-10 -3.14455e-09) (3.14049e-09 5.60085e-10 -1.68527e-09) (6.66216e-10 2.89672e-10 -3.5329e-10) (1.02347e-11 1.62636e-11 -1.43194e-11) (-5.0706e-11 -1.23587e-11 -1.35852e-11) (-1.78495e-10 -1.26029e-10 -4.50117e-11) (-2.10355e-10 -2.37592e-10 -6.13327e-11) (-3.14275e-10 -3.12802e-10 -4.05048e-11) (-9.22663e-10 -4.62179e-10 4.96767e-11) (-2.32052e-09 -5.18329e-10 4.64182e-10) (-2.20024e-09 -5.68045e-11 1.04673e-09) (-5.33426e-10 4.28883e-10 9.40011e-10) (1.12425e-09 1.80029e-09 1.70951e-09) (4.28935e-09 4.20141e-09 2.8288e-09) (2.97472e-09 2.10835e-09 1.89048e-09) (5.24939e-10 7.40343e-13 4.51493e-10) (5.09468e-13 -3.86241e-10 1.4623e-10) (-6.21694e-10 -1.22235e-09 -1.62877e-10) (-8.30454e-10 -1.66527e-09 -9.01497e-10) (-1.94071e-10 -1.64214e-09 -1.73146e-09) (1.86447e-10 -9.25239e-10 -2.01009e-09) (-4.03832e-11 -5.6601e-11 -1.19925e-09) (-2.36298e-09 4.79149e-10 -6.16447e-10) (-1.65544e-09 3.59839e-10 2.03295e-10) (-4.23663e-10 6.51887e-11 3.18729e-10) (2.95745e-12 -1.76005e-11 1.29018e-10) (1.78337e-10 -4.74363e-11 8.33331e-11) (3.61505e-10 -6.95597e-11 -3.87289e-11) (2.55148e-10 -6.26456e-11 -1.37456e-10) (6.47792e-11 -4.16215e-11 -1.06456e-10) (-1.48114e-11 -2.00292e-11 -6.17432e-11) (-4.08559e-11 6.51343e-12 -2.46133e-11) (-1.04048e-10 9.14282e-11 4.37953e-11) (-2.42636e-10 4.19166e-10 3.98406e-10) (-1.9988e-10 6.22349e-10 7.97949e-10) (-2.53201e-11 2.99098e-10 6.04143e-10) (4.99235e-11 2.63795e-11 2.00046e-10) (9.70605e-11 -3.20833e-11 2.80233e-11) (7.40597e-10 -1.88644e-10 -4.16043e-10) (2.30979e-09 -3.49133e-10 -1.95243e-09) (2.52145e-09 -3.92598e-11 -2.4188e-09) (1.18801e-09 1.97087e-10 -1.10711e-09) (2.82971e-10 1.09597e-10 -1.91242e-10) (2.55068e-11 1.60609e-11 -2.25702e-12) (-9.51236e-13 -2.03263e-13 4.77846e-12) (-4.685e-11 -3.38722e-11 2.66884e-11) (-2.83993e-10 -1.74106e-10 2.02007e-11) (-1.13006e-09 -4.46907e-10 -1.49925e-10) (-3.18753e-09 -6.79815e-10 -4.42582e-10) (-5.30808e-09 -5.29841e-10 -2.29911e-11) (-4.31153e-09 -1.16754e-10 1.17234e-09) (-1.43137e-09 1.38879e-10 1.26361e-09) (-7.31338e-12 2.37122e-10 7.02869e-10) (9.903e-10 6.09156e-10 7.80724e-10) (1.95417e-09 7.38633e-10 6.79436e-10) (1.08938e-09 1.22999e-10 2.64221e-10) (2.35474e-10 -9.57426e-11 1.9712e-11) (1.05692e-10 -1.70963e-10 -7.37249e-11) (1.51443e-10 -3.53852e-10 -2.72791e-10) (7.91969e-11 -3.67185e-10 -4.65668e-10) (-2.79429e-10 -1.92465e-10 -5.84924e-10) (-1.31476e-09 9.46299e-11 -9.25825e-10) (-6.54328e-09 1.07949e-09 3.03891e-09) (-2.40977e-09 -7.6396e-11 2.03271e-09) (-2.73186e-10 -3.07038e-10 6.83837e-10) (1.48701e-10 -2.49957e-10 1.64042e-10) (4.00211e-10 -3.13074e-10 -1.40015e-10) (6.66493e-10 -3.39494e-10 -6.3403e-10) (6.61562e-10 -2.6898e-10 -9.06173e-10) (3.99387e-10 -1.83259e-10 -6.57406e-10) (1.57154e-10 -8.28439e-11 -2.68497e-10) (4.9937e-11 -5.4841e-12 -6.37988e-11) (5.33622e-11 4.64458e-11 -2.13347e-11) (2.29098e-10 3.1782e-10 4.56327e-11) (5.56812e-10 7.43387e-10 2.73595e-10) (6.73414e-10 6.75717e-10 3.86611e-10) (4.78754e-10 2.59486e-10 2.09178e-10) (2.4697e-10 2.05465e-11 2.46438e-11) (1.00454e-10 -3.83778e-11 -5.2501e-11) (1.15708e-11 -3.69124e-11 -8.27498e-11) (-6.49732e-11 -2.36456e-11 -1.36682e-10) (-6.18917e-11 4.15507e-12 -1.23665e-10) (-1.71545e-12 6.76748e-12 -4.96111e-11) (1.37283e-11 2.07522e-12 -1.33231e-11) (5.19002e-12 -5.04468e-13 5.4023e-13) (-5.33037e-12 -2.91405e-12 6.06482e-12) (-1.94084e-10 -4.3135e-11 3.5164e-11) (-1.04043e-09 -1.78471e-10 -8.51637e-11) (-2.47441e-09 -2.78008e-10 -4.34162e-10) (-3.29534e-09 -2.93113e-11 -2.72771e-10) (-2.58505e-09 3.20061e-10 5.64472e-10) (-1.18091e-09 3.06449e-10 1.01757e-09) (-1.71264e-10 8.44862e-11 7.19081e-10) (2.14964e-10 -3.69783e-11 3.31813e-10) (6.23036e-10 -1.4496e-10 1.4866e-10) (1.22427e-09 -2.96162e-10 -2.15626e-10) (1.52826e-09 -3.81896e-10 -6.83511e-10) (1.13064e-09 -2.58014e-10 -7.77633e-10) (2.62309e-10 -2.29976e-11 -2.82375e-10) (-4.37925e-11 3.66327e-11 -3.53335e-11) (-1.76035e-09 6.66242e-10 2.69847e-10) (-6.35055e-09 1.6857e-09 1.89132e-09) (-1.15094e-09 -6.85433e-11 1.79588e-09) (-3.17135e-10 -5.21265e-10 9.701e-10) (-1.12492e-11 -5.07011e-10 4.07056e-10) (4.42531e-11 -3.22735e-10 6.9768e-11) (9.83923e-11 -2.8828e-10 -1.32175e-10) (3.19941e-10 -4.6557e-10 -5.49373e-10) (5.86979e-10 -5.76391e-10 -9.963e-10) (4.80614e-10 -3.96635e-10 -7.86725e-10) (1.90858e-10 -1.39998e-10 -2.69257e-10) (5.56113e-11 -2.20216e-11 -4.10838e-11) (6.18853e-11 1.20309e-11 -5.59231e-12) (2.31315e-10 1.22227e-10 -5.4826e-13) (5.79857e-10 3.65378e-10 -6.81595e-11) (7.77003e-10 4.97514e-10 -1.76767e-10) (5.58149e-10 3.53407e-10 -1.81617e-10) (1.68218e-10 1.24691e-10 -7.79868e-11) (3.5643e-12 1.48161e-11 -7.30545e-12) (-7.20408e-11 1.90189e-11 4.67785e-12) (-3.42342e-10 -8.83048e-12 3.7786e-11) (-3.21282e-10 -6.53174e-11 -6.64554e-12) (-7.21615e-11 -4.00992e-11 -3.71317e-11) (9.7963e-12 -2.2562e-11 -3.71412e-11) (7.78936e-11 -2.12761e-11 -5.19044e-11) (6.28314e-11 -1.54423e-12 -1.64097e-11) (1.94626e-12 8.75264e-13 1.031e-13) (-7.21717e-11 1.05213e-11 -8.70325e-12) (-9.08357e-10 2.28949e-11 -2.29678e-10) (-2.36162e-09 1.63086e-11 -6.34463e-10) (-2.13059e-09 7.12732e-11 -2.94499e-10) (-6.79071e-10 4.59811e-11 1.95106e-10) (-9.78125e-11 -2.97299e-12 3.23861e-10) (3.37174e-10 -9.67732e-11 6.83187e-10) (9.30358e-10 -1.97749e-10 7.36557e-10) (1.04648e-09 -1.2472e-10 2.84658e-10) (5.09893e-10 1.07267e-11 -1.20692e-10) (6.88769e-11 6.83287e-11 -1.86042e-10) (-4.34001e-10 3.25324e-10 -3.83087e-10) (-1.81252e-09 1.08808e-09 -9.69514e-11) (-2.83584e-09 1.63924e-09 1.29371e-09) (-2.4164e-09 1.01401e-09 2.27552e-09) (-1.14037e-10 -2.33373e-10 2.53494e-10) (7.71378e-11 -3.83644e-10 1.94039e-10) (1.99526e-10 -3.23216e-10 1.19492e-10) (2.70513e-10 -1.97349e-10 8.68394e-11) (3.71644e-10 -1.39218e-10 3.48759e-11) (5.04316e-10 -1.59346e-10 -1.21229e-10) (5.53231e-10 -2.26576e-10 -3.6037e-10) (3.23601e-10 -2.07609e-10 -3.76874e-10) (5.69954e-11 -8.68321e-11 -1.30776e-10) (-2.33572e-12 -1.33543e-11 -8.82905e-12) (-1.3046e-12 -1.40032e-12 3.76904e-12) (1.59637e-11 1.97103e-11 2.73222e-11) (1.24267e-10 1.30713e-10 4.88871e-11) (2.53177e-10 2.60251e-10 -3.45618e-11) (1.89619e-10 2.20954e-10 -1.2205e-10) (3.92482e-11 9.82939e-11 -8.63571e-11) (-3.3258e-11 4.72929e-11 -3.82827e-11) (-1.50952e-10 5.91415e-11 -7.05607e-12) (-3.59869e-10 3.77144e-11 8.48146e-11) (-3.85702e-10 -5.96369e-11 1.29134e-10) (-1.53482e-10 -8.62696e-11 4.18232e-11) (-1.05817e-11 -4.34777e-11 -1.32976e-11) (1.2368e-10 -8.81319e-11 -1.10067e-10) (5.2765e-10 -8.99303e-11 -3.22516e-10) (6.75337e-10 4.11253e-11 -3.21419e-10) (2.75095e-10 8.92715e-11 -1.25856e-10) (3.16844e-12 3.01824e-11 -2.52913e-11) (-4.94758e-10 1.37161e-10 -1.99512e-10) (-2.6042e-09 1.57795e-10 -8.82414e-10) (-3.17765e-09 -1.13017e-10 -1.07761e-09) (-9.60706e-10 -1.49491e-10 -2.53494e-10) (-2.63509e-11 -2.69173e-11 2.34692e-11) (3.19541e-10 -1.22702e-10 4.0276e-10) (1.11465e-09 -1.00884e-10 1.14515e-09) (6.30985e-10 1.57941e-10 7.38644e-10) (-1.689e-11 1.58519e-10 1.37259e-10) (-1.11969e-09 7.51616e-10 3.23222e-11) (-3.37849e-09 1.40419e-09 2.15253e-11) (-2.43748e-09 6.77126e-10 5.34688e-10) (-6.42721e-10 -3.30794e-11 4.34415e-10) (2.48914e-11 -2.5455e-10 -1.42775e-11) (3.41689e-10 -6.05738e-10 7.01283e-11) (5.0977e-10 -5.79962e-10 2.3185e-10) (3.51843e-10 -2.3035e-10 2.42297e-10) (1.92388e-10 -2.26783e-11 1.36038e-10) (1.15264e-10 2.4156e-11 2.53169e-11) (1.13368e-10 2.2937e-11 -7.47644e-11) (9.31326e-11 -3.12345e-12 -2.04604e-10) (-1.47558e-11 -4.30838e-11 -1.50755e-10) (-9.4877e-11 -8.84115e-11 -4.7984e-11) (-2.37328e-10 -2.16591e-10 1.04856e-10) (-1.84588e-10 -1.57862e-10 2.07293e-10) (-2.5747e-11 3.63052e-12 9.36283e-11) (6.26022e-11 1.34627e-10 8.52124e-11) (2.73345e-10 4.41017e-10 4.82221e-11) (3.52784e-10 5.25693e-10 -5.27826e-11) (1.73543e-10 2.95689e-10 -5.92385e-11) (1.31362e-11 6.77401e-11 -1.20445e-11) (-1.7744e-11 1.10403e-11 2.676e-12) (-7.48335e-11 -2.07938e-11 1.868e-11) (-9.23821e-11 -7.8908e-11 1.42475e-11) (-4.58879e-11 -1.07117e-10 -2.20731e-11) (5.36384e-12 -1.25272e-10 -7.13655e-11) (3.57354e-11 -8.53622e-11 -8.8162e-11) (3.08394e-11 -1.96456e-11 -6.00441e-11) (2.68638e-11 2.19465e-11 -4.81185e-11) (2.66869e-11 8.28864e-11 -6.22921e-11) (-1.15961e-11 1.39944e-10 -7.48957e-11) (-7.88962e-11 1.09433e-10 -7.64253e-11) (-1.38093e-10 2.40841e-11 -9.32773e-11) (-1.93197e-10 -9.87106e-11 -1.39918e-10) (-1.2643e-10 -1.39876e-10 -1.14475e-10) (-1.35535e-11 -2.99073e-11 -1.504e-11) (6.76188e-12 1.25959e-12 1.06986e-11) (1.16923e-10 1.54704e-10 2.37542e-10) (1.35738e-10 5.14729e-10 5.90687e-10) (-1.84125e-10 6.0171e-10 5.07341e-10) (-4.73226e-10 4.1221e-10 2.46238e-10) (-3.76916e-10 8.40297e-11 4.712e-11) (-1.03737e-10 -7.28486e-11 -8.78747e-12) (7.10962e-12 -3.05258e-13 6.82701e-12) (1.28197e-11 -1.60948e-13 1.19749e-11) (1.21684e-11 2.04804e-13 1.0218e-11) (5.46718e-12 3.47315e-13 3.24112e-12) (1.02386e-12 1.15408e-13 1.69585e-13) (5.91659e-14 5.35208e-14 -3.85611e-13) (-7.17272e-13 7.22864e-14 -1.18016e-12) (-1.20982e-12 7.09502e-14 -9.53273e-13) (-6.13323e-13 2.49578e-14 -3.46756e-13) (-1.99404e-14 -7.34535e-15 -1.87349e-13) (1.11487e-12 -3.70901e-14 -1.0917e-12) (4.51952e-12 1.05557e-14 -3.73764e-12) (6.74472e-12 3.51121e-13 -7.34433e-12) (4.94834e-12 8.3412e-13 -1.13486e-11) (-1.94456e-12 1.37918e-12 -1.44201e-11) (-1.62725e-11 1.56881e-12 -1.46818e-11) (-3.89492e-11 1.23193e-12 -9.69413e-12) (-4.23667e-11 5.3152e-13 2.86959e-12) (-1.85567e-11 3.29508e-13 6.43444e-12) (-2.21388e-12 9.86837e-14 1.66299e-12) (3.76015e-13 -5.73163e-15 1.14162e-14) (1.63929e-11 -4.15652e-13 -8.47855e-12) (7.54517e-11 -2.43115e-13 -5.52289e-11) (9.95382e-11 3.73833e-12 -9.01555e-11) (2.59537e-11 3.25259e-12 -3.34191e-11) (-8.83834e-12 1.08572e-12 -1.47989e-12) (-1.01018e-10 2.65985e-12 2.98508e-11) (-1.25805e-10 3.64437e-13 4.28944e-11) (-3.14935e-11 4.30561e-15 5.22139e-12) (-2.9147e-12 -8.32835e-14 -2.06045e-12) (-5.63933e-13 -1.32131e-14 -4.84733e-12) (6.13746e-13 9.56706e-14 -3.86723e-12) (3.43066e-13 5.06914e-14 -8.78459e-13) (6.2911e-14 5.81176e-15 -9.34865e-14) (7.22113e-15 6.58942e-16 -3.76294e-15) (-9.33095e-15 1.1718e-15 2.14783e-14) (-3.65072e-13 3.44946e-14 3.53934e-13) (-6.87314e-13 2.02508e-14 6.19794e-13) (-7.84717e-14 -2.69892e-14 4.62915e-13) (1.41258e-12 -1.27324e-13 1.79569e-12) (3.39457e-11 1.48768e-12 2.91352e-11) (4.15798e-11 3.45032e-12 2.02154e-11) (4.30704e-11 4.74257e-12 6.57616e-13) (4.87371e-11 6.76209e-12 -2.601e-11) (4.22562e-11 4.70572e-12 -4.56583e-11) (1.87801e-11 1.16848e-12 -3.4046e-11) (5.0667e-12 -5.40041e-13 -1.23516e-11) (3.34888e-12 -2.20607e-13 -2.89956e-12) (1.28878e-11 -6.59114e-13 -3.84599e-12) (5.47117e-11 -2.09022e-12 -1.81195e-11) (1.45824e-10 -1.0589e-12 -6.39752e-11) (2.74373e-10 8.37379e-12 -1.39553e-10) (4.03514e-10 2.69065e-11 -2.25184e-10) (4.97495e-10 4.57706e-11 -2.98852e-10) (4.62662e-10 5.50012e-11 -2.98173e-10) (2.11408e-10 3.58359e-11 -1.56148e-10) (1.55862e-11 7.58285e-12 -2.18285e-11) (-6.39215e-11 3.76242e-12 1.38778e-11) (-1.32629e-10 -3.59821e-12 7.57742e-11) (-3.59623e-11 -5.59726e-12 4.06789e-11) (1.33374e-11 -2.52123e-12 4.67116e-12) (2.12362e-10 -1.36369e-11 -6.1426e-11) (8.88259e-10 5.24292e-12 -4.28289e-10) (1.40305e-09 1.02142e-10 -7.68973e-10) (8.77755e-10 1.29467e-10 -4.76342e-10) (1.36561e-10 3.54797e-11 -6.07554e-11) (-2.24341e-11 4.34245e-12 9.38372e-12) (-2.17596e-10 -5.00404e-12 6.53538e-11) (-2.38754e-10 -1.84958e-11 9.19807e-12) (-6.97029e-11 -7.53021e-12 -2.73656e-11) (-9.03099e-12 -8.51293e-13 -1.18893e-11) (-2.05235e-13 1.25924e-13 -1.23411e-12) (3.76827e-14 2.93999e-14 4.91213e-14) (-3.86801e-15 4.84919e-14 9.1538e-13) (-6.31709e-13 3.308e-14 2.58451e-12) (-2.77897e-12 2.26449e-13 5.47434e-12) (-7.03414e-12 8.39034e-13 1.11658e-11) (-5.65453e-12 4.10042e-13 1.21839e-11) (1.12277e-12 -1.54639e-13 1.20965e-11) (1.46506e-11 6.64341e-14 2.05031e-11) (4.65162e-11 5.27842e-12 2.53774e-11) (8.50623e-11 1.1654e-11 9.16634e-12) (1.82877e-10 2.5179e-11 -5.57643e-11) (3.59015e-10 4.35886e-11 -2.21214e-10) (4.25596e-10 2.66105e-11 -3.22414e-10) (2.81149e-10 -2.54456e-12 -2.161e-10) (1.21253e-10 -1.34523e-11 -7.12871e-11) (8.43802e-11 -1.15065e-11 -1.39698e-11) (1.33346e-10 -1.83619e-11 7.46427e-12) (2.05454e-10 -2.21208e-11 -5.30912e-12) (2.53665e-10 -1.38152e-11 -6.05954e-11) (3.05723e-10 6.30749e-12 -1.33048e-10) (3.84427e-10 3.58154e-11 -2.03829e-10) (4.95699e-10 6.34054e-11 -2.60137e-10) (5.81205e-10 8.25455e-11 -2.78031e-10) (4.74899e-10 8.57618e-11 -2.14216e-10) (1.65937e-10 4.8322e-11 -7.89629e-11) (9.17428e-12 6.05772e-12 -3.82141e-12) (-1.11645e-11 3.36516e-12 1.02451e-11) (-2.25199e-11 -3.35626e-12 4.12545e-11) (6.5084e-12 -7.16493e-12 2.08804e-11) (7.05598e-11 -1.61773e-11 1.6323e-12) (3.90469e-10 -1.40755e-11 -1.52166e-10) (7.86467e-10 8.81235e-11 -3.98128e-10) (6.56619e-10 1.58685e-10 -3.14749e-10) (2.52798e-10 9.40963e-11 -7.84927e-11) (3.35761e-11 1.90398e-11 1.94389e-12) (-8.57039e-12 3.63225e-12 6.66991e-12) (-1.57289e-10 -3.5742e-12 1.81319e-11) (-2.44682e-10 -1.91253e-11 -2.85297e-11) (-7.09462e-11 -4.27403e-12 -1.90626e-11) (-5.51403e-12 6.14279e-13 -3.04583e-13) (-1.44726e-12 6.20747e-13 2.22863e-12) (-1.86058e-12 5.38864e-13 5.30319e-12) (-2.9722e-12 6.90583e-13 7.23078e-12) (-5.63632e-12 1.75034e-12 1.02342e-11) (-9.65243e-12 3.16273e-12 1.64352e-11) (-6.66785e-12 2.30768e-12 1.63703e-11) (1.98167e-12 1.10169e-12 1.49606e-11) (1.79891e-11 1.94698e-12 2.13971e-11) (4.89931e-11 7.33379e-12 1.90197e-11) (1.21353e-10 1.81617e-11 -4.03991e-12) (3.49775e-10 4.7541e-11 -1.33442e-10) (7.73357e-10 7.70709e-11 -4.77572e-10) (8.98438e-10 3.5877e-11 -6.53376e-10) (5.24431e-10 -2.63876e-11 -3.95715e-10) (1.58787e-10 -3.296e-11 -9.99964e-11) (6.65169e-11 -2.13438e-11 -6.48435e-12) (8.54395e-11 -2.74732e-11 2.80204e-11) (8.45533e-11 -2.16224e-11 2.50037e-11) (3.34874e-11 -5.00473e-12 -3.60793e-12) (1.49457e-11 2.42517e-12 -1.83114e-11) (1.73193e-11 1.3622e-11 -4.591e-11) (2.57717e-11 2.09351e-11 -5.58695e-11) (3.0953e-11 1.96583e-11 -4.30107e-11) (2.04576e-11 1.5887e-11 -2.39705e-11) (1.77933e-12 1.03553e-11 -9.47415e-12) (-2.36021e-11 1.66651e-11 -5.74712e-12) (-1.37015e-10 3.11375e-11 3.49479e-11) (-2.47154e-10 -7.31793e-13 1.43848e-10) (-1.43079e-10 -3.91303e-11 1.28495e-10) (-1.59423e-11 -1.49322e-11 1.92336e-11) (2.14364e-12 -1.57785e-12 -1.95992e-12) (4.55336e-11 1.7506e-11 -4.91706e-11) (4.6794e-11 4.59261e-11 -5.37871e-11) (5.88516e-12 2.35381e-11 -7.8175e-12) (-7.01996e-12 1.52802e-11 7.69493e-12) (-6.2852e-11 2.49487e-11 3.72359e-11) (-4.49275e-10 2.74781e-11 9.0754e-11) (-9.54012e-10 -3.64067e-11 1.45213e-11) (-4.57928e-10 -2.88495e-11 -2.45355e-11) (-6.05497e-11 9.32642e-13 8.07393e-12) (-1.12609e-11 2.19435e-12 1.0936e-11) (-7.50878e-12 1.14627e-12 1.25765e-11) (-6.27921e-12 1.32968e-12 1.06471e-11) (-6.93771e-12 3.16307e-12 1.09954e-11) (-8.76539e-12 5.07405e-12 1.51338e-11) (-5.26181e-12 4.2585e-12 1.37799e-11) (2.02342e-12 2.44143e-12 1.1502e-11) (1.58521e-11 3.30405e-12 1.6257e-11) (3.85391e-11 6.31175e-12 1.69352e-11) (1.16202e-10 1.55008e-11 -4.57146e-12) (4.41292e-10 5.11272e-11 -1.71048e-10) (1.16404e-09 8.37373e-11 -7.03868e-10) (1.39468e-09 2.67567e-11 -1.01996e-09) (7.00554e-10 -6.52517e-11 -5.80457e-10) (1.40058e-10 -4.96476e-11 -1.15579e-10) (3.36134e-11 -2.44325e-11 -2.3185e-12) (5.855e-11 -4.00543e-11 4.30644e-11) (5.94099e-11 -2.96729e-11 4.78861e-11) (4.13869e-12 -1.55793e-12 2.38908e-12) (-8.99945e-12 3.9083e-12 -1.07402e-11) (-7.49523e-11 3.97186e-11 -9.38172e-11) (-7.0857e-11 5.061e-11 -1.13591e-10) (-2.55386e-11 2.77238e-11 -5.52576e-11) (-1.21718e-11 1.51644e-11 -2.20307e-11) (-3.59235e-11 2.63948e-11 -2.38201e-11) (-2.08103e-10 8.11293e-11 -4.43302e-11) (-7.26878e-10 1.40388e-10 3.29291e-11) (-1.18593e-09 4.16523e-11 3.28572e-10) (-9.63573e-10 -1.39564e-10 4.66748e-10) (-4.34646e-10 -1.43052e-10 2.37801e-10) (-8.71688e-11 -2.8072e-11 2.38786e-11) (-1.09555e-11 5.09333e-12 -7.30717e-12) (-1.14845e-11 3.05883e-11 -2.17516e-11) (-2.9057e-11 4.34164e-11 -8.97312e-12) (-7.98557e-11 5.53259e-11 2.5144e-11) (-3.09983e-10 9.4995e-11 1.12072e-10) (-1.35415e-09 1.37082e-10 2.48787e-10) (-2.75451e-09 -3.77871e-11 1.2145e-10) (-1.58542e-09 -1.214e-10 -1.29904e-11) (-2.47055e-10 -1.58746e-11 3.77103e-11) (-3.39773e-11 1.42491e-12 2.91405e-11) (-1.78101e-11 1.08008e-13 2.5317e-11) (-1.25906e-11 1.19517e-12 1.5719e-11) (-1.08748e-11 4.35816e-12 1.24989e-11) (-1.19541e-11 7.08504e-12 1.63028e-11) (-8.15896e-12 6.98705e-12 1.57212e-11) (1.27787e-13 3.77714e-12 1.1681e-11) (1.06859e-11 3.66182e-12 1.4172e-11) (3.26447e-11 6.09804e-12 1.87549e-11) (9.91698e-11 1.06293e-11 1.80599e-12) (4.88209e-10 4.38547e-11 -1.77188e-10) (1.72855e-09 9.46814e-11 -9.73004e-10) (2.54441e-09 2.87409e-11 -1.73351e-09) (1.36573e-09 -1.32809e-10 -1.08502e-09) (2.75902e-10 -1.03849e-10 -2.29702e-10) (6.94602e-11 -5.97868e-11 -6.9717e-12) (1.41097e-10 -1.10259e-10 1.02523e-10) (2.03226e-10 -1.01337e-10 1.63074e-10) (4.31364e-11 -1.06418e-11 3.41822e-11) (-3.01535e-12 2.687e-12 -1.63701e-12) (-1.62143e-10 8.00034e-11 -1.22163e-10) (-2.73452e-10 1.30604e-10 -2.463e-10) (-1.18097e-10 6.54025e-11 -1.2544e-10) (-2.54129e-11 2.12781e-11 -3.18082e-11) (-1.83209e-11 2.14311e-11 -2.13318e-11) (-1.03266e-10 7.11827e-11 -5.87601e-11) (-5.38241e-10 1.82586e-10 -1.00141e-10) (-1.23554e-09 1.45918e-10 1.08987e-10) (-1.36095e-09 -1.23142e-10 4.42957e-10) (-1.0184e-09 -2.77469e-10 4.62557e-10) (-6.34011e-10 -1.54726e-10 2.28453e-10) (-2.86571e-10 1.49159e-11 5.33391e-11) (-1.15613e-10 6.59109e-11 1.40747e-11) (-5.61947e-11 5.7131e-11 1.76426e-11) (-3.69741e-11 4.34043e-11 2.03303e-11) (-1.41052e-10 8.74541e-11 4.16329e-11) (-1.2424e-09 2.71556e-10 1.25454e-10) (-3.87466e-09 1.16594e-10 1.00608e-11) (-3.01622e-09 -2.43395e-10 -8.8119e-11) (-5.43948e-10 -7.03617e-11 7.40451e-11) (-4.99516e-11 -5.99897e-12 5.05449e-11) (-2.21024e-11 -5.15503e-12 4.3605e-11) (-2.05926e-11 -1.17885e-12 2.37984e-11) (-1.58614e-11 4.98101e-12 1.34739e-11) (-1.37437e-11 9.33009e-12 1.56234e-11) (-9.38377e-12 1.07469e-11 1.72441e-11) (-6.65665e-13 6.71658e-12 1.41041e-11) (9.46332e-12 5.38648e-12 1.60604e-11) (3.2694e-11 7.81855e-12 2.41166e-11) (6.61808e-11 4.94893e-12 9.05958e-12) (3.78399e-10 1.86826e-11 -1.30176e-10) (1.98752e-09 6.642e-11 -1.08803e-09) (4.06887e-09 -2.07939e-12 -2.63384e-09) (2.54593e-09 -2.42866e-10 -1.93056e-09) (5.5557e-10 -2.04498e-10 -4.46093e-10) (1.68731e-10 -1.45925e-10 -2.39798e-11) (3.46249e-10 -2.73277e-10 1.93965e-10) (5.59396e-10 -2.72737e-10 3.48573e-10) (2.5177e-10 -4.50327e-11 1.45165e-10) (8.78674e-12 8.7806e-12 4.71441e-12) (-1.23563e-10 9.94612e-11 -7.30638e-11) (-5.66125e-10 2.67295e-10 -3.56157e-10) (-4.704e-10 1.71321e-10 -2.851e-10) (-1.40103e-10 4.89749e-11 -6.94702e-11) (-2.50249e-11 1.86158e-11 -1.6918e-11) (-3.16432e-11 4.9563e-11 -4.52621e-11) (-1.84878e-10 1.48851e-10 -1.32846e-10) (-6.05996e-10 1.88836e-10 -1.16206e-10) (-1.04076e-09 -1.55272e-12 1.49085e-10) (-1.43459e-09 -2.87827e-10 4.74251e-10) (-1.97187e-09 -3.30028e-10 6.30708e-10) (-2.12318e-09 1.71993e-11 6.11927e-10) (-1.31863e-09 2.47379e-10 5.11041e-10) (-3.45391e-10 1.14245e-10 2.41246e-10) (-1.09284e-11 2.41706e-11 3.31498e-11) (6.92511e-12 4.10836e-11 3.06708e-12) (-2.92812e-10 2.12373e-10 -6.07771e-11) (-2.83667e-09 4.30072e-10 -3.81846e-10) (-3.75605e-09 -1.93009e-10 -3.9564e-10) (-8.02286e-10 -1.36352e-10 7.91165e-11) (-3.80648e-11 -1.75026e-11 6.86277e-11) (-3.70546e-12 -1.79048e-11 7.66742e-11) (-2.46225e-11 -8.70223e-12 3.65245e-11) (-3.21383e-11 4.37825e-12 1.90252e-11) (-1.95678e-11 1.34918e-11 1.62596e-11) (-8.28803e-12 1.67451e-11 1.8663e-11) (1.9043e-12 1.43529e-11 1.96035e-11) (1.46996e-11 1.14171e-11 2.31703e-11) (3.31162e-11 1.14102e-11 3.09018e-11) (3.16097e-11 1.51073e-12 1.18002e-11) (1.66089e-10 -3.77346e-12 -5.58558e-11) (1.47916e-09 -1.60647e-11 -8.63416e-10) (4.51103e-09 -1.1062e-10 -2.99773e-09) (3.63524e-09 -4.02827e-10 -2.75516e-09) (9.6359e-10 -3.75892e-10 -7.30825e-10) (4.16607e-10 -3.47595e-10 -6.84174e-11) (7.52765e-10 -5.76213e-10 2.64004e-10) (1.04101e-09 -5.19048e-10 4.379e-10) (6.67462e-10 -1.14607e-10 2.24253e-10) (1.57509e-10 6.4637e-11 2.68795e-11) (-1.80276e-11 1.04817e-10 -3.94388e-11) (-4.97643e-10 3.64543e-10 -3.02678e-10) (-9.71293e-10 3.5792e-10 -4.38184e-10) (-6.2927e-10 1.24494e-10 -1.54565e-10) (-1.70375e-10 3.33102e-11 -1.86657e-11) (-2.91487e-11 3.10119e-11 -2.48711e-11) (-5.26935e-11 1.38816e-10 -1.34748e-10) (-2.00855e-10 1.8864e-10 -1.79392e-10) (-4.75653e-10 9.80283e-11 -6.32136e-11) (-1.50214e-09 -1.19592e-10 2.76322e-10) (-4.43735e-09 -3.18765e-10 1.07842e-09) (-7.37648e-09 1.43466e-10 2.1642e-09) (-5.30979e-09 3.35031e-10 2.49833e-09) (-1.29791e-09 -3.34931e-11 1.12307e-09) (-1.41299e-11 -1.33907e-11 1.01534e-10) (1.53016e-10 9.75819e-11 -2.40097e-12) (5.43183e-11 3.39775e-10 -1.81144e-10) (-1.16741e-09 6.1484e-10 -6.02178e-10) (-3.17636e-09 1.40758e-10 -8.38108e-10) (-8.64937e-10 -1.43214e-10 3.5441e-11) (-1.24203e-11 -3.80662e-11 1.22613e-10) (1.02823e-10 -6.34197e-11 2.12744e-10) (-7.73287e-12 -2.22889e-11 4.96856e-11) (-8.23593e-11 -8.32446e-12 3.42256e-11) (-7.34601e-11 2.41333e-11 3.08815e-11) (-1.79688e-11 2.88493e-11 2.49195e-11) (6.26527e-12 3.013e-11 2.88807e-11) (2.5764e-11 2.43381e-11 3.47558e-11) (3.33183e-11 1.76692e-11 3.80872e-11) (1.40182e-11 6.6159e-13 1.25562e-11) (3.08529e-11 -6.26401e-12 -9.19167e-12) (6.22226e-10 -7.01587e-11 -4.37136e-10) (3.36956e-09 -2.6798e-10 -2.48058e-09) (4.23438e-09 -6.58827e-10 -3.21816e-09) (1.87861e-09 -7.74717e-10 -1.25063e-09) (1.10456e-09 -8.28932e-10 -2.44611e-10) (1.36998e-09 -1.00959e-09 2.25589e-10) (1.49868e-09 -7.68344e-10 3.74094e-10) (1.12401e-09 -2.10259e-10 1.51551e-10) (6.4195e-10 1.76397e-10 -4.39318e-11) (2.21158e-10 3.06277e-10 -1.3232e-10) (-1.62086e-10 4.21078e-10 -2.54089e-10) (-8.6778e-10 5.15309e-10 -4.28894e-10) (-1.18864e-09 2.47689e-10 -2.22212e-10) (-7.13305e-10 2.78305e-11 2.43697e-11) (-1.47951e-10 3.06514e-11 -9.41612e-12) (-4.62908e-11 1.05373e-10 -9.30372e-11) (-8.44384e-11 2.68983e-10 -2.52474e-10) (-2.6745e-10 1.8595e-10 -1.54989e-10) (-1.75175e-09 1.95467e-10 4.64937e-11) (-8.42809e-09 2.63835e-10 1.40804e-09) (-1.36713e-08 5.23289e-10 4.0189e-09) (-6.17241e-09 -2.17641e-10 3.70335e-09) (-7.42322e-10 -5.41915e-10 1.18389e-09) (-2.0814e-11 -2.27319e-10 2.73491e-10) (2.2861e-11 1.67155e-11 1.19963e-11) (3.56626e-10 8.85263e-10 -3.77999e-10) (-5.32198e-10 1.20235e-09 -9.74552e-10) (-1.95183e-09 6.02451e-10 -1.12086e-09) (-6.11468e-10 -4.12647e-11 -3.98228e-11) (6.69873e-11 -7.45397e-11 2.76362e-10) (6.04042e-10 -2.09237e-10 7.26573e-10) (6.82315e-11 -6.93432e-11 1.27008e-10) (-9.88248e-11 -3.47304e-11 3.45501e-11) (-3.28582e-10 2.34725e-11 6.54766e-11) (-1.03859e-10 6.66156e-11 5.35077e-11) (-3.13933e-12 5.47392e-11 4.05281e-11) (3.29468e-11 4.40208e-11 4.62675e-11) (3.12382e-11 2.24487e-11 4.22903e-11) (8.33104e-12 1.58117e-13 1.61496e-11) (1.27183e-12 -1.70436e-12 3.26774e-13) (1.08675e-10 -4.62808e-11 -1.15696e-10) (1.56229e-09 -3.26291e-10 -1.39165e-09) (4.0169e-09 -9.9479e-10 -3.09247e-09) (3.47776e-09 -1.52386e-09 -2.10469e-09) (2.34724e-09 -1.63861e-09 -6.42378e-10) (2.11244e-09 -1.53147e-09 1.04539e-10) (1.98848e-09 -1.03956e-09 2.46494e-10) (1.60691e-09 -3.50443e-10 5.60982e-12) (1.20961e-09 2.30115e-10 -2.14675e-10) (8.59248e-10 6.89306e-10 -3.72473e-10) (2.57213e-10 7.98606e-10 -4.22195e-10) (-3.46937e-10 5.97447e-10 -3.68897e-10) (-9.36673e-10 3.53466e-10 -2.27938e-10) (-1.21448e-09 1.74366e-11 7.28673e-11) (-7.00326e-10 -2.06933e-11 8.32179e-11) (-1.79365e-10 9.88556e-11 -6.30397e-11) (-1.53887e-10 3.49683e-10 -2.70377e-10) (-4.28242e-10 4.79303e-10 -3.32478e-10) (-2.98391e-09 9.26263e-10 -2.65646e-10) (-1.3096e-08 1.6799e-09 1.48896e-09) (-1.29119e-08 5.5384e-10 4.16324e-09) (-1.50103e-09 -6.87474e-10 1.73703e-09) (4.97103e-10 -1.09692e-09 9.75847e-10) (1.35564e-10 -5.92784e-10 3.94299e-10) (-2.79952e-10 -3.12736e-11 1.73448e-10) (-4.48092e-10 8.76354e-10 -1.0025e-10) (-6.38848e-10 2.57545e-09 -1.57622e-09) (-1.33239e-09 1.31409e-09 -1.56081e-09) (-2.64764e-10 7.21723e-11 -8.74153e-11) (2.59921e-10 -8.90027e-11 5.08023e-10) (1.81999e-09 -4.60919e-10 1.88041e-09) (4.26027e-10 -2.1498e-10 4.5191e-10) (-4.41005e-11 -3.61976e-11 2.42799e-11) (-6.46423e-10 -3.83096e-11 4.91952e-11) (-4.83567e-10 1.28816e-10 1.0818e-10) (-6.20061e-11 8.85075e-11 5.95375e-11) (2.15715e-11 5.62237e-11 4.91517e-11) (1.93591e-11 1.6255e-11 3.46268e-11) (4.27359e-12 -1.02474e-12 2.04916e-11) (-5.9157e-12 -4.98534e-12 6.59707e-12) (-2.28072e-12 -1.35241e-11 -1.39848e-11) (4.02898e-10 -2.28231e-10 -5.08158e-10) (2.88859e-09 -1.22195e-09 -2.36179e-09) (4.46857e-09 -2.40313e-09 -2.56685e-09) (3.7774e-09 -2.59009e-09 -1.09216e-09) (3.11481e-09 -2.13574e-09 -1.96375e-10) (2.55142e-09 -1.32166e-09 -2.48628e-11) (1.90272e-09 -5.01847e-10 -1.45356e-10) (1.2559e-09 1.23792e-10 -2.39828e-10) (9.30893e-10 6.4913e-10 -3.42778e-10) (6.75215e-10 1.152e-09 -5.08056e-10) (6.67982e-11 8.9369e-10 -4.21876e-10) (-3.29082e-10 3.44186e-10 -1.67379e-10) (-9.88091e-10 8.31695e-11 4.06923e-11) (-1.7291e-09 -1.50354e-10 2.55561e-10) (-1.01488e-09 1.66462e-10 -3.60741e-11) (-6.1791e-10 5.61587e-10 -3.29114e-10) (-1.24397e-09 1.22987e-09 -6.53986e-10) (-5.67028e-09 2.55868e-09 -6.946e-10) (-1.40369e-08 3.01065e-09 1.43795e-09) (-4.72871e-09 -1.20967e-10 2.27468e-09) (4.61308e-10 -1.28838e-09 1.43006e-09) (3.05975e-09 -3.15293e-09 1.66385e-09) (4.96917e-10 -8.66822e-10 3.32112e-10) (-8.10214e-10 -1.41736e-10 3.16612e-10) (-4.27893e-09 1.97621e-09 5.50526e-10) (-2.69502e-09 3.84721e-09 -1.6014e-09) (-1.43054e-09 2.68639e-09 -2.3969e-09) (-1.36106e-10 2.18574e-10 -1.79608e-10) (4.82882e-10 -1.91984e-11 5.71264e-10) (3.25911e-09 -6.4131e-10 3.0739e-09) (1.26941e-09 -4.35948e-10 1.17917e-09) (-2.24418e-12 -3.73585e-11 3.90483e-11) (-5.58192e-10 -8.41099e-11 2.25134e-11) (-9.81436e-10 9.70214e-11 8.8282e-11) (-2.3031e-10 1.19887e-10 8.39194e-11) (-6.06898e-12 4.14404e-11 3.76106e-11) (1.68383e-12 2.51097e-12 1.55605e-11) (-5.18854e-12 -3.04691e-12 2.38834e-11) (-5.36373e-11 -1.14278e-11 4.3774e-11) (-5.87112e-11 -2.45686e-11 9.4636e-12) (3.66001e-11 -9.93871e-11 -1.0016e-10) (1.65149e-09 -1.1608e-09 -1.27849e-09) (4.97035e-09 -3.18397e-09 -2.47112e-09) (5.76729e-09 -3.80467e-09 -1.8936e-09) (4.48693e-09 -2.7507e-09 -1.04079e-09) (2.9741e-09 -1.45262e-09 -5.22391e-10) (1.83564e-09 -5.56218e-10 -2.25687e-10) (9.47062e-10 -8.26239e-12 -1.18946e-10) (4.59427e-10 2.94715e-10 -1.35386e-10) (3.94404e-10 7.79636e-10 -3.11786e-10) (2.51452e-10 1.06747e-09 -4.42825e-10) (-7.70793e-11 4.47169e-10 -1.73575e-10) (-4.30337e-10 1.43765e-10 1.08393e-11) (-2.33895e-09 -1.34046e-10 3.6386e-10) (-3.08331e-09 2.10857e-10 7.5532e-11) (-2.1867e-09 1.15368e-09 -5.48363e-10) (-3.30757e-09 2.70684e-09 -1.10628e-09) (-8.13334e-09 4.49942e-09 -8.25251e-10) (-7.38805e-09 2.21874e-09 1.23182e-09) (-3.85572e-10 -3.55909e-10 9.53811e-10) (4.51535e-09 -4.12511e-09 3.79933e-09) (6.42209e-09 -5.24442e-09 2.58288e-09) (9.06743e-10 -1.13837e-09 1.36085e-10) (-5.8481e-10 -1.65323e-10 4.16458e-11) (-8.24375e-09 2.3506e-09 1.08287e-09) (-8.00873e-09 5.79807e-09 -1.00949e-09) (-2.51396e-09 4.17159e-09 -2.87507e-09) (-8.52327e-11 7.09439e-10 -5.59569e-10) (5.04109e-10 9.03147e-11 3.11992e-10) (3.55354e-09 -5.84753e-10 2.90868e-09) (2.17476e-09 -5.98498e-10 1.93278e-09) (1.0159e-10 -8.75137e-11 1.86307e-10) (-2.16465e-10 -5.12352e-11 6.14842e-11) (-8.59317e-10 -1.98379e-12 6.15373e-11) (-3.85974e-10 6.91653e-11 6.58973e-11) (-2.67707e-11 1.56418e-11 2.21207e-11) (-6.63645e-12 -6.10373e-12 5.77785e-12) (-3.90989e-11 -1.17298e-11 3.13878e-11) (-2.25253e-10 -4.18254e-12 1.45541e-10) (-2.75701e-10 -3.58428e-11 1.57684e-10) (-2.18407e-11 -5.75107e-11 9.41652e-12) (9.22315e-10 -9.42064e-10 -4.41012e-10) (5.53013e-09 -3.89899e-09 -2.39414e-09) (8.09671e-09 -4.87516e-09 -3.54203e-09) (5.66151e-09 -2.92161e-09 -2.55625e-09) (2.74968e-09 -1.20564e-09 -9.77903e-10) (1.33339e-09 -4.61272e-10 -1.37725e-10) (6.17112e-10 -7.55113e-11 3.36823e-11) (1.53744e-10 8.02874e-11 -2.41654e-11) (5.50035e-11 3.16716e-10 -1.53205e-10) (-1.07253e-11 7.41767e-10 -3.72939e-10) (-3.38794e-11 5.5659e-10 -2.29542e-10) (-1.50883e-10 1.55721e-10 -4.11543e-12) (-1.57519e-09 7.5523e-11 2.94053e-10) (-4.66682e-09 3.36635e-10 1.48314e-10) (-5.09265e-09 2.10551e-09 -9.40543e-10) (-6.08244e-09 4.53831e-09 -1.53898e-09) (-6.37755e-09 4.41341e-09 -3.82326e-10) (-9.31167e-10 4.90048e-10 5.43557e-10) (2.10997e-09 -1.34519e-09 2.58342e-09) (1.12367e-08 -7.11001e-09 7.35784e-09) (7.4825e-09 -5.34463e-09 3.18702e-09) (9.10452e-10 -1.07309e-09 -3.59227e-11) (-4.90597e-10 -2.45942e-10 -1.97601e-10) (-7.45643e-09 1.36302e-09 3.83342e-10) (-1.17634e-08 6.20167e-09 4.40273e-10) (-4.47359e-09 5.34191e-09 -2.49637e-09) (-2.68396e-10 1.58028e-09 -1.26274e-09) (3.10057e-10 1.47089e-10 -6.09378e-12) (2.25205e-09 -3.51314e-10 1.45818e-09) (2.24339e-09 -6.20459e-10 2.02687e-09) (4.01953e-10 -1.69775e-10 6.55293e-10) (-6.16788e-11 -2.99432e-11 1.23916e-10) (-2.75396e-10 -2.87317e-11 8.26697e-11) (-1.9897e-10 -1.66757e-11 2.38983e-11) (-2.71463e-11 -7.64755e-12 6.18019e-12) (-3.97004e-11 -4.1519e-11 -1.2123e-11) (-2.27318e-10 -5.51865e-11 3.33322e-11) (-6.88184e-10 1.98528e-11 3.20883e-10) (-6.08511e-10 3.3041e-12 5.11375e-10) (-5.58513e-11 -1.10504e-10 1.62196e-10) (9.51044e-10 -9.69871e-10 -6.87064e-11) (6.41406e-09 -4.27987e-09 -2.72909e-09) (8.83771e-09 -4.51569e-09 -5.40154e-09) (5.05745e-09 -2.00528e-09 -3.71515e-09) (1.63997e-09 -6.26458e-10 -8.69773e-10) (6.34913e-10 -2.89352e-10 5.05713e-11) (3.56558e-10 -1.2986e-10 1.5423e-10) (4.64454e-11 9.09698e-12 2.26404e-12) (-4.32973e-11 1.42945e-10 -1.18144e-10) (-3.42249e-10 5.54648e-10 -4.04489e-10) (-2.00769e-10 4.62267e-10 -2.21669e-10) (-7.42782e-11 1.60785e-10 -5.57597e-12) (-5.11575e-10 1.55443e-10 1.28109e-10) (-4.06373e-09 6.50764e-10 5.27553e-11) (-7.85664e-09 3.15909e-09 -1.39617e-09) (-6.84041e-09 5.18602e-09 -1.62651e-09) (-1.98866e-09 2.16045e-09 1.66576e-11) (3.07249e-10 1.45304e-10 4.89863e-10) (9.09764e-09 -3.28478e-09 6.32077e-09) (1.41841e-08 -7.03049e-09 8.57372e-09) (5.09808e-09 -3.44562e-09 2.50116e-09) (4.21511e-10 -6.16311e-10 -4.71115e-11) (-4.9322e-10 -3.65507e-10 -3.61982e-10) (-5.51349e-09 1.46404e-10 -3.15373e-10) (-1.12508e-08 4.45081e-09 1.18157e-09) (-6.2068e-09 6.09068e-09 -1.40476e-09) (-1.16974e-09 3.05521e-09 -2.23131e-09) (1.82971e-10 3.35945e-10 -3.78006e-10) (6.04156e-10 -8.88389e-11 1.5402e-10) (1.64653e-09 -4.98905e-10 1.23509e-09) (8.30787e-10 -2.7261e-10 1.06014e-09) (9.32053e-11 -6.48633e-11 3.11325e-10) (-1.66452e-11 -1.79562e-11 4.2935e-11) (-1.30544e-11 -1.37942e-11 4.00358e-12) (-1.27942e-11 -2.55399e-11 -7.40759e-12) (-1.26259e-10 -8.17611e-11 -3.495e-11) (-4.57877e-10 -9.8861e-11 -2.3169e-11) (-6.73913e-10 -7.79183e-12 2.39628e-10) (-3.24103e-10 5.84001e-12 4.28564e-10) (1.1044e-10 -1.27309e-10 3.08604e-10) (1.63036e-09 -1.0304e-09 7.52036e-11) (5.49988e-09 -2.94585e-09 -2.71823e-09) (5.58504e-09 -2.19572e-09 -5.10981e-09) (2.62378e-09 -6.17061e-10 -3.0628e-09) (4.95249e-10 -1.60154e-10 -3.25074e-10) (2.5721e-10 -2.06839e-10 1.8061e-10) (2.63216e-10 -2.86447e-10 3.20694e-10) (3.75606e-11 -2.41309e-11 9.86907e-12) (-1.89339e-11 6.31875e-11 -1.17627e-10) (-4.3603e-10 4.58326e-10 -5.37208e-10) (-5.15546e-10 4.75442e-10 -3.1547e-10) (-2.57197e-10 2.21374e-10 -1.37507e-12) (-5.78426e-10 2.5606e-10 1.25584e-10) (-3.35703e-09 1.03736e-09 -7.33908e-11) (-7.36625e-09 3.46707e-09 -1.45862e-09) (-4.35516e-09 3.78302e-09 -1.22719e-09) (-2.05354e-10 6.99331e-10 3.44382e-11) (1.9402e-09 8.87434e-11 1.18429e-09) (1.07478e-08 -3.3579e-09 6.31725e-09) (8.95711e-09 -4.03066e-09 5.7066e-09) (2.236e-09 -1.48606e-09 1.42521e-09) (2.26519e-10 -3.06777e-10 2.56618e-11) (-9.84339e-11 -1.98064e-10 -1.49472e-10) (-2.48699e-09 -4.01285e-10 -3.00757e-10) (-1.09493e-08 2.40064e-09 1.12271e-09) (-9.21179e-09 6.72103e-09 -6.02572e-10) (-3.04901e-09 5.26945e-09 -3.43705e-09) (-2.04051e-10 1.40844e-09 -2.2536e-09) (2.48336e-10 -1.72231e-11 -3.84103e-10) (7.8588e-10 -2.9104e-10 9.96774e-11) (1.49652e-09 -4.6727e-10 9.28388e-10) (5.95634e-10 -2.52833e-10 6.50562e-10) (5.84363e-11 -9.12165e-11 1.64202e-10) (-1.13831e-11 -4.17747e-11 3.22588e-11) (-2.88182e-11 -4.40838e-11 1.23674e-12) (-2.91151e-11 -6.38051e-11 7.88629e-12) (-6.09356e-11 -5.60562e-11 -3.33873e-11) (-9.96417e-11 -2.73335e-11 -4.52339e-12) (-4.17975e-11 -2.51099e-12 6.14459e-11) (1.22142e-10 -3.23573e-11 1.75613e-10) (7.04535e-10 -2.39633e-10 6.97957e-11) (1.43854e-09 -5.17681e-10 -9.82111e-10) (1.50309e-09 -3.26544e-10 -2.28052e-09) (7.10128e-10 1.7444e-12 -1.27415e-09) (8.81594e-11 -2.11969e-11 -4.3561e-11) (2.32998e-10 -3.06073e-10 3.58666e-10) (3.38372e-10 -7.10708e-10 6.48354e-10) (6.82285e-11 -1.52065e-10 6.17319e-11) (1.27138e-11 5.98666e-12 -6.80927e-11) (-3.67224e-11 2.8871e-10 -5.38357e-10) (-1.9759e-10 4.37344e-10 -5.8226e-10) (-3.50755e-10 2.93185e-10 -2.18226e-10) (-1.69437e-09 5.363e-10 -1.94072e-11) (-6.63951e-09 1.75669e-09 -6.24341e-11) (-9.26046e-09 3.87956e-09 -1.27924e-09) (-3.39251e-09 2.76965e-09 -1.00087e-09) (-2.51529e-11 3.16878e-10 -3.36358e-11) (1.19347e-09 -1.45892e-11 5.28281e-10) (4.24302e-09 -1.40395e-09 2.53063e-09) (3.70754e-09 -1.50431e-09 2.80514e-09) (1.45767e-09 -6.64617e-10 1.16767e-09) (4.62438e-10 -2.46031e-10 2.10321e-10) (1.31344e-10 -1.1609e-10 -1.19128e-11) (-1.61187e-10 -9.57753e-11 3.75188e-12) (-7.47756e-09 5.4975e-10 1.09436e-09) (-1.61022e-08 6.74254e-09 1.30938e-10) (-6.39283e-09 6.86217e-09 -4.45146e-09) (-1.02724e-09 2.72211e-09 -5.54327e-09) (3.92083e-10 -1.5597e-10 -3.01416e-09) (5.12387e-10 -4.71102e-10 -5.8525e-10) (8.97633e-10 -5.54229e-10 3.47203e-10) (1.01668e-09 -5.90617e-10 1.33954e-09) (1.78164e-10 -3.45109e-10 1.11917e-09) (-1.59573e-10 -2.39144e-10 5.73626e-10) (-8.54944e-11 -1.39773e-10 1.62133e-10) (1.41668e-09 -4.26351e-10 6.63409e-10) (3.44896e-10 -1.20522e-10 2.85345e-11) (-9.99898e-13 -5.15657e-12 -9.55845e-12) (-1.90208e-10 4.82925e-12 -1.21742e-11) (-2.0715e-10 1.72989e-11 8.02892e-11) (-6.59599e-12 7.61945e-13 4.84517e-12) (3.59998e-11 4.13022e-12 -7.65718e-11) (2.26363e-10 6.53992e-11 -5.95087e-10) (2.10836e-10 5.59267e-11 -3.96845e-10) (1.72879e-10 -4.64277e-11 -2.99298e-11) (7.66842e-10 -6.24193e-10 5.61485e-10) (6.73014e-10 -1.09716e-09 1.0957e-09) (-6.02118e-12 -2.98883e-10 2.90349e-10) (-7.35511e-12 -4.43728e-12 -4.26003e-12) (7.31933e-11 1.06212e-10 -3.20186e-10) (5.00836e-10 3.93967e-10 -9.9782e-10) (3.11862e-10 4.3475e-10 -6.79264e-10) (-2.36514e-10 3.51423e-10 -2.29848e-10) (-4.67643e-09 1.66691e-09 -3.21682e-10) (-1.38918e-08 3.89237e-09 -1.22099e-09) (-7.29451e-09 2.84648e-09 -1.63545e-09) (-5.00043e-10 3.4951e-10 -2.65396e-10) (2.15854e-11 -3.16323e-12 2.12486e-12) (5.04891e-10 -2.50186e-10 3.51441e-10) (1.06893e-09 -4.17085e-10 1.03086e-09) (1.32507e-09 -2.63951e-10 1.14831e-09) (1.36039e-09 -2.17022e-10 7.35264e-10) (1.25867e-09 -2.75531e-10 3.58582e-10) (3.08969e-10 -1.0137e-10 1.65978e-10) (-9.01776e-10 1.11255e-10 6.63108e-10) (-1.38075e-08 3.9264e-09 2.88781e-09) (-1.09391e-08 5.48859e-09 -2.82605e-09) (-1.9659e-09 1.76491e-09 -5.09433e-09) (3.37391e-10 -7.66278e-10 -5.77296e-09) (3.4188e-10 -1.16781e-09 -2.16948e-09) (1.89035e-10 -4.26578e-10 -1.28702e-10) (5.31022e-10 -5.74624e-10 6.41674e-10) (9.68161e-10 -6.02639e-10 1.4966e-09) (1.20624e-09 -5.14038e-10 1.57235e-09) (1.63616e-09 -5.35716e-10 1.3753e-09) (3.13345e-09 -3.76952e-10 1.38626e-09) (1.9757e-09 -6.56413e-11 1.00025e-09) (4.5082e-10 6.11854e-11 2.75285e-10) (1.32362e-11 2.53123e-11 4.26904e-11) (-7.34141e-11 4.19731e-11 7.60153e-11) (-8.81328e-11 2.0452e-11 6.17081e-11) (-1.38364e-11 -1.71556e-12 -2.55383e-12) (-4.74737e-12 -2.52586e-11 -8.92548e-11) (7.41914e-11 -8.10285e-11 -2.09734e-10) (1.36325e-10 -1.10498e-10 -8.9834e-11) (1.90924e-10 -1.60924e-10 1.24946e-10) (9.39246e-11 -2.2829e-10 6.05743e-10) (-3.90237e-10 -9.48804e-11 7.63848e-10) (-2.23502e-10 1.63258e-11 1.31825e-10) (6.26622e-12 7.77234e-12 -6.70482e-11) (7.64722e-10 2.03664e-11 -9.31572e-10) (1.29633e-09 2.22572e-10 -1.25374e-09) (3.89269e-10 3.82179e-10 -4.52391e-10) (-3.28851e-10 6.16479e-10 -2.17672e-10) (-3.32455e-09 1.82527e-09 -5.04047e-10) (-4.78727e-09 1.55979e-09 -1.16589e-09) (-1.36895e-09 2.91991e-10 -7.42619e-10) (-8.13202e-11 -2.72225e-11 -1.27274e-10) (8.2684e-12 -2.94442e-11 -7.84235e-12) (5.27972e-11 -8.23654e-11 9.98103e-11) (2.3272e-10 -1.60173e-10 4.28228e-10) (6.14855e-10 -2.71975e-10 6.72094e-10) (1.0661e-09 -3.43679e-10 6.36685e-10) (1.06126e-09 -5.7659e-11 5.55128e-10) (2.84448e-10 4.41996e-10 6.92151e-10) (-3.03419e-09 2.66438e-09 2.85977e-09) (-7.84189e-09 3.28441e-09 2.05097e-09) (-2.17864e-09 1.0214e-10 -1.15642e-09) (-2.74849e-10 -1.52901e-09 -3.37425e-09) (1.3863e-09 -2.11583e-09 -3.73908e-09) (1.5541e-09 -1.10421e-09 -1.52666e-09) (1.63683e-09 -7.2499e-10 -3.61635e-10) (1.96164e-09 -7.1705e-10 2.82743e-10) (2.35404e-09 -6.92785e-10 6.91836e-10) (2.94492e-09 -6.12107e-10 1.08277e-09) (4.12225e-10 -1.50937e-10 7.30008e-11) (2.8191e-10 -8.43932e-11 3.00014e-10) (1.22589e-10 3.98583e-11 3.65581e-10) (-2.62549e-11 1.21335e-10 2.53136e-10) (-6.95248e-11 1.01682e-10 1.22393e-10) (-2.08418e-11 1.76029e-11 1.8786e-11) (-8.46321e-13 -1.35103e-12 -1.02508e-12) (1.22802e-11 -4.25434e-11 -4.03665e-11) (3.3156e-11 -8.15675e-11 -6.28762e-11) (1.90579e-11 -5.1239e-11 -6.32422e-12) (-3.80257e-12 -4.96395e-11 9.66242e-11) (-2.45986e-10 4.52703e-11 7.56911e-10) (-6.99342e-10 3.38606e-10 1.2078e-09) (-2.87259e-10 1.08127e-10 2.89562e-10) (2.34298e-12 -3.72915e-12 -9.62841e-12) (6.32513e-10 -1.99734e-10 -6.88173e-10) (1.70286e-09 -1.18718e-10 -1.55286e-09) (1.12651e-09 3.55528e-10 -8.9092e-10) (2.9655e-10 4.3205e-10 -2.05152e-10) (-1.14316e-10 4.6562e-10 -5.25773e-11) (-4.85955e-10 4.11944e-10 -1.34292e-10) (-4.21828e-10 1.12127e-10 -2.60592e-10) (-1.64713e-10 -5.67817e-11 -2.30885e-10) (-3.53348e-11 -6.67452e-11 -1.02699e-10) (-5.95928e-12 -2.4013e-11 -8.08674e-12) (-8.60664e-12 -4.64921e-11 4.33572e-11) (-2.01511e-11 -1.52371e-10 1.95712e-10) (-5.52195e-11 -1.92228e-10 2.41415e-10) (-3.34232e-11 -4.14931e-11 1.49191e-10) (6.97169e-11 4.87601e-10 6.22066e-10) (4.45101e-11 3.30908e-09 3.05639e-09) (-1.10534e-09 2.88674e-09 3.10479e-09) (-4.63745e-10 1.13583e-10 4.55865e-10) (-3.16056e-10 -6.00946e-10 -1.13068e-10) (5.4984e-11 -1.38346e-09 -8.18074e-10) (1.3231e-09 -1.27061e-09 -1.3694e-09) (3.86702e-09 -1.0595e-09 -2.17306e-09) (4.75861e-09 -6.57512e-10 -2.24509e-09) (2.73002e-09 -3.62865e-10 -1.28259e-09) (1.00756e-09 -2.41455e-10 -3.46241e-10) (2.64158e-11 -4.42008e-11 -1.33854e-10) (-9.0769e-12 -7.34734e-12 5.97286e-13) (-5.09499e-11 -2.32077e-12 7.59138e-11) (-4.46264e-11 5.51799e-11 1.45267e-10) (-2.75815e-12 7.76126e-11 1.01122e-10) (4.20423e-12 2.82318e-11 2.30907e-11) (-2.58235e-13 3.96291e-13 -7.32878e-14) (-2.16229e-11 -1.69794e-11 -2.23582e-11) (-1.01737e-10 -7.53521e-11 -8.5971e-11) (-1.18066e-10 -5.71234e-11 -5.18065e-11) (-9.61399e-11 -3.94903e-12 4.80629e-11) (-2.67401e-10 1.65436e-10 5.67785e-10) (-3.28593e-10 4.2883e-10 1.31293e-09) (-5.12299e-11 1.38751e-10 5.26391e-10) (2.42952e-11 -8.09434e-12 1.6794e-11) (4.12012e-10 -1.64958e-10 -3.24895e-10) (1.3433e-09 -2.37888e-10 -1.43781e-09) (1.3472e-09 2.36791e-10 -1.55446e-09) (5.82655e-10 4.32371e-10 -5.65558e-10) (1.84568e-10 3.23123e-10 -7.9354e-11) (1.75651e-11 1.45063e-10 1.51343e-11) (-1.49583e-11 2.06361e-11 -3.84091e-12) (-3.57542e-11 -1.05724e-11 -3.67779e-11) (-5.90607e-11 -7.33644e-11 -9.199e-11) (-4.91687e-11 -9.28987e-11 -5.34207e-11) (-7.47132e-11 -1.01851e-10 1.56852e-11) (-3.52188e-10 -2.05677e-10 1.66225e-10) (-1.42511e-09 -3.33341e-10 4.37229e-10) (-2.28229e-09 -1.96314e-11 5.30199e-10) (-9.5256e-10 5.01104e-10 5.09893e-10) (1.08888e-10 1.60682e-09 1.42123e-09) (1.82424e-09 2.83142e-09 3.1972e-09) (1.08984e-09 6.46186e-10 1.72681e-09) (1.98095e-10 -2.53909e-10 3.66263e-10) (1.35029e-12 -5.06153e-10 2.42362e-11) (1.02067e-11 -6.36436e-10 -4.01242e-10) (4.57021e-10 -8.76563e-10 -1.26172e-09) (1.27563e-09 -9.57629e-10 -2.31183e-09) (1.18631e-09 -5.40792e-10 -2.0455e-09) (4.21321e-10 -1.81477e-10 -8.99211e-10) (-5.16716e-10 -5.38287e-11 -1.75244e-10) (-5.06074e-10 -5.76645e-11 5.78921e-11) (-1.66328e-10 -2.05627e-11 1.19625e-10) (6.24697e-12 1.28594e-12 6.32715e-11) (1.48333e-10 1.67271e-11 8.51564e-11) (2.6272e-10 9.10907e-12 4.79997e-11) (1.07344e-10 -2.1791e-11 -4.91346e-12) (9.86377e-12 -2.01146e-11 -1.24924e-11) (-3.53672e-11 -4.29031e-11 -3.96849e-11) (-6.0551e-11 -1.81278e-11 -4.36978e-11) (-2.64852e-11 2.43654e-11 -7.73869e-12) (-2.02414e-12 1.81144e-10 9.79341e-11) (1.70003e-10 4.20088e-10 4.45251e-10) (3.02821e-10 2.27594e-10 4.73342e-10) (2.64187e-10 -1.09376e-11 1.72154e-10) (3.13713e-10 -1.03916e-10 -7.02555e-11) (4.18961e-10 -1.31985e-10 -4.88887e-10) (2.3635e-10 2.14976e-11 -8.13069e-10) (-2.85947e-11 1.86061e-10 -6.17154e-10) (-5.07219e-11 1.71584e-10 -2.08933e-10) (6.11845e-13 9.25113e-11 -2.49037e-11) (1.63134e-11 4.28527e-11 1.33827e-11) (5.57966e-12 4.69324e-12 6.02561e-12) (2.98949e-14 -3.61612e-12 2.02246e-12) (-3.11081e-11 -4.04679e-11 4.81432e-12) (-2.71087e-10 -1.50527e-10 1.36802e-11) (-1.39204e-09 -3.39043e-10 4.83759e-11) (-3.96909e-09 -3.72982e-10 6.49718e-11) (-5.17868e-09 6.99597e-11 1.46385e-10) (-2.25948e-09 4.83045e-10 3.93588e-10) (-2.3504e-10 3.91081e-10 4.04791e-10) (8.12506e-10 8.03339e-10 1.1717e-09) (1.62646e-09 4.23063e-10 1.41506e-09) (8.34051e-10 -2.25303e-10 5.23179e-10) (3.36302e-10 -3.07931e-10 1.00259e-11) (3.76452e-10 -4.33722e-10 -3.76952e-10) (5.42087e-10 -4.96562e-10 -9.06253e-10) (3.39534e-10 -2.87646e-10 -9.12746e-10) (-1.87687e-11 -1.02569e-10 -5.18238e-10) (-2.581e-10 -4.84425e-11 -3.15285e-10) (-2.93834e-09 -1.90581e-11 1.36925e-09) (-6.92606e-10 -1.69098e-10 6.8557e-10) (1.64772e-11 -1.10386e-10 2.50183e-10) (3.27355e-10 -1.37228e-10 1.46086e-10) (8.71708e-10 -1.92209e-10 -1.15889e-10) (1.17429e-09 -1.93195e-10 -5.09616e-10) (8.16836e-10 -1.79073e-10 -5.50291e-10) (2.94252e-10 -1.39486e-10 -2.96431e-10) (5.4516e-11 -7.21114e-11 -9.94296e-11) (4.48097e-12 -1.61678e-11 -1.70592e-11) (1.64391e-12 1.00592e-12 -6.11552e-13) (8.252e-11 1.06381e-10 1.89686e-11) (4.67617e-10 5.17866e-10 1.09837e-10) (8.59629e-10 6.91695e-10 1.83004e-10) (6.76437e-10 3.35631e-10 1.19418e-10) (1.92696e-10 3.61246e-11 1.61277e-11) (5.79722e-12 -3.14769e-12 -3.42258e-12) (-3.89439e-11 -1.54698e-11 -3.55736e-11) (-1.52992e-10 -3.3003e-12 -1.36531e-10) (-1.24998e-10 4.84288e-11 -1.62444e-10) (-2.97238e-11 5.23157e-11 -7.62809e-11) (2.30983e-12 2.32596e-11 -9.84141e-12) (1.15982e-12 1.15105e-11 8.98983e-12) (-2.11207e-11 6.11767e-12 3.07417e-11) (-1.4748e-10 -2.40752e-11 5.86628e-11) (-5.44544e-10 -1.17319e-10 4.16731e-13) (-1.31194e-09 -2.24642e-10 -1.95857e-10) (-2.44155e-09 -1.29157e-10 -2.89376e-10) (-3.31284e-09 3.44894e-10 1.70878e-12) (-2.34057e-09 6.92586e-10 4.09716e-10) (-4.84878e-10 3.39815e-10 3.16028e-10) (7.21301e-11 1.02406e-10 1.55387e-10) (6.21736e-10 1.47086e-11 1.87003e-10) (1.38702e-09 -3.17519e-10 -1.79214e-10) (1.71228e-09 -6.42099e-10 -8.57929e-10) (1.08184e-09 -5.5155e-10 -8.88701e-10) (1.35548e-10 -1.30291e-10 -1.92535e-10) (-9.52437e-11 -2.00491e-11 -9.03393e-12) (-1.79429e-09 1.36331e-10 4.45022e-10) (-4.25004e-09 3.23039e-10 1.35806e-09) (-5.55127e-10 -7.80624e-11 1.18154e-09) (5.99043e-11 -2.94689e-10 6.1826e-10) (2.91901e-10 -3.78102e-10 2.97007e-10) (5.27955e-10 -4.72776e-10 3.65673e-12) (9.47363e-10 -6.06393e-10 -4.50543e-10) (1.24334e-09 -5.99643e-10 -9.71061e-10) (9.18625e-10 -3.81381e-10 -9.6929e-10) (3.18989e-10 -1.55617e-10 -4.478e-10) (4.0162e-11 -4.1859e-11 -7.72259e-11) (2.28098e-12 -7.47011e-12 -2.29706e-12) (4.96038e-12 -4.44753e-12 6.615e-12) (3.77842e-11 9.47679e-12 2.09816e-11) (1.85682e-10 9.40038e-11 1.36038e-11) (4.28635e-10 2.35612e-10 -8.47536e-11) (4.57654e-10 2.45298e-10 -1.60567e-10) (1.94835e-10 1.12973e-10 -8.48337e-11) (1.27927e-11 1.55222e-11 -6.40695e-12) (-2.05744e-11 1.05398e-11 5.09201e-12) (-1.49295e-10 2.62246e-11 1.95134e-11) (-1.63304e-10 3.19785e-11 -2.69174e-11) (-6.45227e-11 3.20334e-11 -5.78872e-11) (-7.40665e-12 3.14454e-11 -5.12964e-11) (7.06379e-12 1.60056e-11 -1.45071e-11) (5.12278e-13 2.52803e-12 1.00585e-12) (-1.46104e-11 1.6217e-13 1.2676e-11) (-1.47228e-10 -3.15692e-11 2.74539e-11) (-6.89173e-10 -1.05948e-10 -9.33296e-11) (-1.90578e-09 -2.19263e-11 -4.21622e-10) (-2.87336e-09 4.2402e-10 -4.09421e-10) (-2.02015e-09 6.33594e-10 9.9432e-11) (-4.53176e-10 2.7262e-10 2.24523e-10) (3.22562e-11 5.86145e-11 1.10962e-10) (5.69607e-10 -1.34884e-11 2.36852e-10) (1.41331e-09 -2.96611e-10 9.27217e-11) (1.1004e-09 -3.95651e-10 -1.94382e-10) (1.3047e-10 -1.01881e-10 -9.21289e-11) (-2.04324e-10 -1.19077e-11 -6.38875e-11) (-2.64278e-09 6.10352e-10 2.44098e-10) (-4.56528e-09 1.38363e-09 1.67989e-09) (-2.42506e-09 6.35104e-10 2.00267e-09) (6.49101e-11 -1.53977e-10 1.133e-10) (5.70452e-10 -4.71382e-10 1.75196e-10) (1.18893e-09 -6.58439e-10 1.20273e-10) (1.53034e-09 -5.83989e-10 1.74924e-11) (1.502e-09 -3.89649e-10 -1.78325e-10) (1.10447e-09 -1.92754e-10 -3.86787e-10) (5.06536e-10 -7.11621e-11 -3.77105e-10) (8.95922e-11 -3.267e-11 -1.60452e-10) (-1.37504e-11 -2.36272e-11 -3.1997e-11) (-6.24805e-11 -5.8557e-11 1.15883e-11) (-7.56657e-11 -7.64928e-11 7.77967e-11) (-1.22069e-11 -1.84208e-11 4.96767e-11) (1.56726e-11 1.02804e-11 1.53042e-11) (9.56893e-11 7.11918e-11 -2.07021e-11) (2.02638e-10 1.34024e-10 -1.21721e-10) (1.72058e-10 1.08607e-10 -1.22648e-10) (4.53938e-11 4.67499e-11 -2.84581e-11) (-8.47541e-12 2.82389e-11 7.56163e-12) (-1.53259e-10 8.31345e-11 7.62485e-11) (-3.2411e-10 6.72577e-11 9.60248e-11) (-1.55182e-10 5.00464e-12 -6.09344e-12) (-1.96754e-11 -2.4941e-12 -3.8099e-11) (7.17666e-11 6.40359e-12 -1.44732e-10) (2.07362e-10 3.22602e-11 -2.11287e-10) (1.33078e-10 2.59837e-11 -8.3987e-11) (1.10154e-11 3.48379e-12 -2.12134e-12) (-2.1833e-11 4.03562e-12 8.61325e-12) (-5.85672e-10 5.5535e-11 3.84316e-13) (-2.31956e-09 2.7309e-10 -5.11274e-10) (-3.02263e-09 4.52944e-10 -1.10046e-09) (-1.22723e-09 2.13789e-10 -5.32458e-10) (-4.76717e-11 1.01136e-11 -1.48974e-11) (8.58792e-11 -3.87973e-12 8.30077e-11) (7.21848e-10 -1.48274e-11 6.43367e-10) (5.9032e-10 5.52715e-11 6.91915e-10) (-1.01609e-11 5.5391e-11 1.90838e-10) (-9.63717e-10 2.45569e-10 2.71093e-10) (-3.30283e-09 4.9639e-10 3.12726e-10) (-2.13791e-09 1.04804e-10 3.75907e-10) (-2.69391e-10 -9.14992e-11 1.63045e-10) (2.21862e-10 -2.2775e-10 -1.28112e-10) (7.4179e-10 -5.95343e-10 -5.84486e-12) (1.26921e-09 -9.42929e-10 4.31041e-10) (1.2885e-09 -7.92076e-10 6.55111e-10) (7.3917e-10 -2.77887e-10 3.29452e-10) (2.54833e-10 -1.4131e-11 1.48793e-11) (9.41021e-11 3.21893e-11 -9.17838e-11) (1.98839e-12 2.56315e-11 -1.5688e-10) (-9.41853e-11 -3.47108e-11 -1.07179e-10) (-2.40991e-10 -1.7198e-10 1.1523e-11) (-3.83297e-10 -3.59682e-10 3.10043e-10) (-2.06709e-10 -2.02873e-10 3.47511e-10) (-2.19896e-11 3.13997e-12 9.31101e-11) (1.94172e-11 5.42017e-11 1.81176e-11) (1.1543e-10 1.62525e-10 -5.9206e-11) (2.74433e-10 2.10846e-10 -1.46058e-10) (3.99409e-10 1.9378e-10 -1.19925e-10) (3.24441e-10 1.44299e-10 -9.70852e-12) (8.59048e-11 4.99236e-11 3.1109e-11) (-1.4712e-12 3.38626e-12 8.53601e-12) (-7.4304e-11 -2.06994e-11 2.07402e-11) (-1.93167e-10 -7.49583e-11 -1.04548e-11) (-1.39888e-10 -5.27841e-11 -5.469e-11) (-5.13648e-11 -1.18612e-11 -6.04458e-11) (-1.43152e-11 7.12511e-12 -7.24997e-11) (9.36315e-13 2.08135e-11 -7.01967e-11) (-6.6106e-12 2.92342e-11 -4.05609e-11) (-3.37369e-11 4.81006e-11 -2.96718e-11) (-8.66956e-11 5.71369e-11 -3.80021e-11) (-1.2617e-10 1.15183e-11 -7.28075e-11) (-1.38779e-10 -7.11475e-11 -1.27558e-10) (-9.36936e-11 -1.04273e-10 -1.19495e-10) (-2.11631e-11 -2.46459e-11 -2.13896e-11) (-6.30271e-12 6.68674e-12 1.1976e-11) (-5.22728e-11 2.78794e-10 3.39461e-10) (-2.46361e-10 8.59121e-10 9.27507e-10) (-4.94922e-10 7.73648e-10 7.33052e-10) (-3.77157e-10 2.64951e-10 1.86921e-10) (-9.73736e-11 1.28847e-11 -1.6488e-11) (-1.47641e-12 -3.88464e-11 -4.51429e-11) (5.02488e-11 -1.03471e-12 1.12732e-12) (6.77536e-11 3.98024e-13 -2.15413e-12) (5.28427e-11 1.34583e-12 -4.68198e-12) (3.45135e-11 7.60537e-13 -4.63061e-12) (2.14551e-11 2.70529e-13 -2.59815e-12) (1.41246e-11 5.09201e-14 -1.81441e-12) (1.50689e-11 -1.15384e-13 -2.68021e-12) (3.13198e-11 -1.42442e-13 -6.23428e-12) (8.25884e-11 -1.35274e-13 -1.25027e-11) (2.00782e-10 8.21025e-14 -2.56188e-11) (4.05098e-10 7.82378e-13 -6.52034e-11) (6.62067e-10 4.28437e-12 -1.65896e-10) (9.21394e-10 1.12953e-11 -3.37291e-10) (1.1102e-09 1.94833e-11 -5.10613e-10) (1.08403e-09 2.30486e-11 -5.55184e-10) (7.52483e-10 1.88414e-11 -4.07196e-10) (3.30581e-10 9.05639e-12 -1.87586e-10) (9.41337e-11 2.53469e-12 -5.11391e-11) (2.83918e-11 8.50654e-13 -8.9014e-12) (2.816e-11 5.49123e-13 3.15824e-13) (7.76056e-11 9.70518e-13 4.17299e-12) (2.42469e-10 2.61976e-12 -3.24095e-11) (7.01897e-10 2.23468e-12 -2.48106e-10) (1.51284e-09 7.15373e-12 -7.66743e-10) (1.88472e-09 3.29468e-11 -1.07579e-09) (1.22235e-09 4.70201e-11 -6.70822e-10) (4.20048e-10 2.5578e-11 -1.89095e-10) (6.1417e-11 5.29534e-12 -1.86552e-11) (-3.86303e-12 4.68225e-13 9.38672e-13) (-2.31571e-11 7.4998e-13 3.25059e-12) (-3.79308e-12 1.70858e-14 -3.66499e-13) (3.20623e-12 -3.26638e-13 -2.00614e-12) (3.59803e-11 -5.95002e-13 -1.84038e-11) (6.46395e-11 8.21382e-13 -3.26663e-11) (6.95745e-11 1.76657e-12 -2.6904e-11) (4.85903e-11 1.26793e-12 -9.50361e-12) (1.84879e-11 5.92695e-13 -1.49335e-12) (4.64744e-12 7.06776e-14 2.77863e-13) (4.32763e-12 -1.52684e-13 8.31035e-13) (1.74931e-11 -7.77792e-13 1.93315e-12) (5.54177e-10 8.74477e-12 -7.03626e-11) (6.87475e-10 3.24537e-11 -1.35348e-10) (7.2823e-10 4.27558e-11 -1.93595e-10) (7.03637e-10 2.35273e-11 -1.84459e-10) (5.5789e-10 3.06749e-12 -8.7558e-11) (3.76458e-10 -9.8291e-12 -6.4452e-12) (2.92788e-10 -1.56132e-11 2.38269e-11) (4.05383e-10 -2.05842e-11 2.76617e-11) (9.27023e-10 -3.25434e-11 3.33599e-12) (2.24051e-09 -4.7953e-11 -1.58621e-10) (4.59701e-09 -6.23834e-11 -6.78112e-10) (7.7832e-09 -4.73886e-11 -1.72914e-09) (1.14249e-08 -8.2476e-12 -3.13037e-09) (1.49322e-08 3.84377e-11 -4.24216e-09) (1.6805e-08 1.05354e-10 -4.4257e-09) (1.47449e-08 2.32888e-10 -3.58424e-09) (8.88287e-09 2.90489e-10 -2.1946e-09) (3.44983e-09 1.77676e-10 -9.03921e-10) (1.07508e-09 6.65248e-11 -2.17302e-10) (5.81436e-10 2.15251e-11 -2.08464e-12) (9.58679e-10 -2.05275e-12 1.00807e-10) (2.56888e-09 -5.31509e-11 -2.54936e-11) (6.62635e-09 -1.76707e-10 -1.15863e-09) (1.29033e-08 -2.22112e-10 -3.74938e-09) (1.64413e-08 1.62141e-10 -5.60716e-09) (1.3675e-08 6.2661e-10 -4.56818e-09) (8.38391e-09 6.41242e-10 -2.37111e-09) (3.69039e-09 3.84881e-10 -7.64035e-10) (6.53171e-10 8.89712e-11 -6.65839e-11) (1.26642e-11 1.67158e-12 3.17323e-12) (-9.95178e-12 -4.10891e-12 1.51794e-12) (2.38813e-11 -6.55922e-12 -7.66153e-12) (1.98573e-10 -9.30694e-12 -6.47699e-11) (4.2725e-10 1.66322e-11 -1.0999e-10) (5.75184e-10 3.65168e-11 -8.33253e-11) (5.70219e-10 4.01116e-11 -3.38814e-11) (4.02248e-10 3.13714e-11 -3.45342e-11) (2.57361e-10 1.52658e-11 -3.51254e-11) (2.49215e-10 4.32391e-12 -3.19346e-11) (3.68463e-10 -1.60017e-12 -3.7404e-11) (6.35741e-10 4.32258e-11 -8.99417e-11) (8.36764e-10 7.42944e-11 -1.80272e-10) (1.05889e-09 8.38949e-11 -3.18304e-10) (1.16874e-09 3.84169e-11 -3.67357e-10) (1.01435e-09 -8.50874e-12 -2.34534e-10) (6.1013e-10 -3.13903e-11 -4.49685e-11) (2.98314e-10 -3.07265e-11 4.69366e-11) (2.18544e-10 -2.87822e-11 7.33342e-11) (3.70056e-10 -4.10055e-11 1.03959e-10) (9.39029e-10 -6.91034e-11 9.35505e-11) (2.16979e-09 -1.0793e-10 -1.56364e-10) (3.92638e-09 -1.17854e-10 -8.25972e-10) (5.76331e-09 -1.05081e-10 -1.68508e-09) (7.19249e-09 -9.55104e-11 -2.10897e-09) (7.74311e-09 -6.79307e-11 -1.78402e-09) (6.79599e-09 5.60522e-11 -1.08522e-09) (4.319e-09 1.99732e-10 -5.85769e-10) (1.80982e-09 1.88774e-10 -3.24555e-10) (5.4876e-10 8.88204e-11 -1.24689e-10) (2.28447e-10 3.23114e-11 -1.72568e-11) (3.44584e-10 8.56333e-12 5.91276e-11) (1.0102e-09 -5.80594e-11 1.44129e-10) (2.57208e-09 -2.20689e-10 -8.87931e-11) (4.60822e-09 -3.12794e-10 -8.97089e-10) (5.20052e-09 -2.57563e-11 -1.46872e-09) (4.08098e-09 3.20147e-10 -1.1879e-09) (3.06191e-09 4.31505e-10 -7.47443e-10) (2.38445e-09 4.39178e-10 -4.32289e-10) (1.12385e-09 2.53073e-10 -1.02823e-10) (1.19417e-10 2.66774e-11 1.49303e-11) (-2.89882e-12 -3.18002e-12 3.73991e-12) (-5.0269e-12 -6.67557e-12 6.36726e-13) (1.25598e-11 -3.3165e-12 -5.77965e-12) (1.18009e-10 1.30657e-11 -2.61851e-11) (2.66181e-10 3.99871e-11 -9.22967e-12) (3.73496e-10 5.62133e-11 2.42328e-11) (3.76856e-10 5.8951e-11 -4.01493e-12) (3.47662e-10 4.6552e-11 -4.52971e-11) (3.76037e-10 3.27335e-11 -6.31131e-11) (4.87969e-10 2.7643e-11 -6.77915e-11) (9.5672e-11 1.13857e-11 -8.81664e-12) (2.01566e-10 2.49132e-11 -4.17716e-11) (3.52505e-10 2.75101e-11 -1.26104e-10) (4.16194e-10 -6.73101e-13 -1.77495e-10) (3.07952e-10 -2.37868e-11 -1.14228e-10) (9.36961e-11 -1.58859e-11 -1.55603e-11) (1.14544e-11 -5.68168e-12 8.27969e-12) (2.06914e-12 -9.32414e-12 2.70914e-11) (1.23291e-11 -1.38411e-11 4.65346e-11) (6.86184e-11 -1.91574e-11 5.11405e-11) (2.82181e-10 -3.65384e-11 1.42139e-11) (7.61342e-10 -4.4367e-11 -2.32879e-10) (1.28134e-09 -2.88252e-11 -6.50326e-10) (1.41221e-09 -1.34054e-11 -7.59395e-10) (1.10463e-09 -4.94506e-12 -4.42238e-10) (6.14226e-10 1.96976e-11 -1.14481e-10) (1.80983e-10 2.95135e-11 -4.19406e-12) (1.05594e-11 9.42254e-12 -1.39554e-12) (-1.89678e-11 1.5509e-11 -7.11738e-12) (-5.33587e-11 1.94788e-11 -3.90417e-12) (-1.82512e-11 2.87796e-12 1.13246e-11) (7.24402e-12 -5.98069e-12 2.02376e-11) (1.17629e-10 -4.50207e-11 4.13873e-11) (2.93445e-10 -7.71268e-11 -3.34764e-11) (2.33438e-10 -1.03164e-11 -9.46754e-11) (9.07961e-11 3.34632e-11 -5.40695e-11) (5.63019e-11 4.34524e-11 -3.0421e-11) (8.80805e-11 6.95074e-11 -2.89516e-11) (5.95872e-11 5.88037e-11 -5.85012e-12) (-7.18572e-12 1.03324e-11 8.85844e-12) (-3.30005e-10 -5.18059e-11 1.12918e-10) (-7.00042e-10 -1.99973e-10 1.16338e-10) (-1.39462e-10 -3.22614e-11 -2.46704e-12) (-4.24403e-13 5.0741e-13 -3.51608e-13) (1.39336e-11 8.40625e-12 2.8869e-12) (4.54156e-11 2.00509e-11 1.7491e-11) (4.65594e-11 1.97741e-11 9.33906e-12) (3.45141e-11 1.25871e-11 -3.72648e-12) (3.42637e-11 7.6994e-12 -7.98601e-12) (5.11844e-11 6.36796e-12 -7.10943e-12) (3.36091e-12 6.51583e-13 5.33878e-13) (3.3524e-11 3.2452e-12 -3.8537e-12) (1.36904e-10 -1.40618e-12 -5.15092e-11) (2.22664e-10 -2.46013e-11 -1.16244e-10) (1.62593e-10 -3.57037e-11 -8.9169e-11) (2.3929e-11 -1.02752e-11 -1.10519e-11) (-2.70668e-12 -3.70275e-12 4.29994e-12) (-6.39666e-11 -2.45412e-11 7.33284e-11) (-7.51965e-11 -3.52558e-11 1.34786e-10) (3.28486e-12 -2.19197e-11 7.55611e-11) (5.37001e-11 -1.61367e-11 2.48973e-11) (2.56344e-10 -2.28767e-11 -9.7409e-11) (6.78105e-10 -9.33556e-12 -5.13439e-10) (8.43005e-10 1.19534e-11 -7.26943e-10) (5.57772e-10 1.1925e-11 -3.9657e-10) (1.91851e-10 1.48801e-11 -7.20401e-11) (1.78969e-11 7.81213e-12 1.60263e-12) (-1.94681e-11 1.61542e-11 3.19506e-12) (-3.25101e-10 1.09651e-10 -3.90518e-11) (-7.83968e-10 1.59086e-10 -9.38463e-11) (-5.76866e-10 5.6038e-11 3.33038e-11) (-1.46914e-10 -2.07311e-11 7.44967e-11) (-1.16869e-11 -2.79299e-11 3.56714e-11) (6.63241e-12 -1.80565e-11 8.63592e-12) (-3.44533e-13 -5.78923e-13 -3.40315e-13) (-1.37421e-11 9.43666e-12 -3.33792e-12) (-1.36793e-11 2.38131e-11 -5.71812e-12) (5.49314e-12 4.35168e-11 -2.10265e-11) (1.47419e-12 6.86039e-11 -2.55314e-11) (-1.1541e-10 6.6989e-11 1.4685e-11) (-1.42758e-09 -1.17114e-10 3.12948e-10) (-3.54604e-09 -7.89511e-10 5.35731e-10) (-1.67872e-09 -3.09156e-10 1.00427e-10) (-1.26772e-10 7.30714e-12 3.59954e-12) (-7.87191e-13 4.58441e-12 2.91551e-12) (1.54208e-11 1.57404e-11 1.48912e-11) (1.51595e-11 1.40868e-11 7.31493e-12) (4.42734e-12 4.88735e-12 -1.03678e-12) (9.50007e-13 1.11106e-12 -1.06186e-12) (4.2006e-13 2.17441e-13 -1.60027e-13) (1.80681e-13 1.31868e-13 3.03669e-13) (1.29041e-11 -6.4292e-13 1.64187e-12) (1.42046e-10 -2.31106e-11 -3.7845e-11) (3.46343e-10 -7.98136e-11 -1.50154e-10) (3.02266e-10 -9.06964e-11 -1.50479e-10) (7.19474e-11 -2.902e-11 -3.56368e-11) (-1.3404e-13 -2.13464e-12 1.14419e-12) (-6.43632e-11 -2.49508e-11 6.92985e-11) (-1.12415e-10 -5.14924e-11 1.92215e-10) (-7.13641e-12 -4.22752e-11 1.50808e-10) (5.22579e-11 -2.28643e-11 5.24834e-11) (1.35417e-10 -1.80719e-11 -3.56438e-11) (4.76034e-10 -1.1127e-11 -4.04843e-10) (7.68012e-10 1.4134e-11 -7.9969e-10) (6.12026e-10 2.41642e-11 -5.648e-10) (2.59673e-10 2.76996e-11 -1.49891e-10) (4.67232e-11 1.68894e-11 -5.8672e-12) (-1.49187e-12 8.97856e-12 1.96966e-12) (-1.26824e-10 7.02952e-11 -2.59645e-11) (-5.64371e-10 1.7219e-10 -1.6234e-10) (-6.30837e-10 1.11624e-10 -1.10298e-10) (-2.40162e-10 -7.93226e-12 3.58911e-11) (-7.20001e-11 -4.7656e-11 5.81667e-11) (-6.64422e-11 -6.35786e-11 5.22981e-11) (-2.32132e-10 -5.25754e-11 6.7906e-11) (-4.35621e-10 3.11133e-11 1.43228e-10) (-3.73593e-11 2.31945e-11 2.85461e-11) (1.36337e-10 1.13676e-10 -4.83547e-11) (2.54457e-10 3.23965e-10 -2.24189e-10) (-5.25495e-11 1.25427e-10 -5.75919e-11) (-1.15172e-09 2.09567e-11 1.0094e-10) (-5.50307e-09 -1.14425e-09 6.43602e-10) (-4.97331e-09 -9.5104e-10 3.49319e-10) (-8.43616e-10 -4.42591e-11 8.42413e-11) (-2.11621e-11 1.21201e-11 1.74067e-11) (2.33674e-11 2.52482e-11 3.03541e-11) (4.60959e-11 3.68604e-11 1.8911e-11) (2.19536e-11 1.97781e-11 -4.63691e-12) (4.22168e-12 5.12927e-12 -4.29134e-12) (1.29282e-13 4.29899e-13 -2.61601e-13) (-9.65731e-13 2.55501e-13 1.1581e-12) (6.78815e-12 -3.75121e-12 3.39271e-12) (1.83629e-10 -7.16427e-11 -2.90442e-11) (5.26417e-10 -2.02719e-10 -1.79125e-10) (3.65383e-10 -1.65732e-10 -1.64467e-10) (6.66161e-11 -4.14338e-11 -3.58362e-11) (-9.66099e-14 -2.54678e-12 7.7656e-13) (-2.64703e-11 -1.50006e-11 3.81208e-11) (-3.33278e-11 -3.40502e-11 1.19014e-10) (3.03993e-11 -4.06803e-11 1.43307e-10) (7.59522e-11 -2.62778e-11 7.72035e-11) (8.22942e-11 -1.05924e-11 -6.57924e-12) (2.36791e-10 -6.32556e-12 -2.198e-10) (4.32954e-10 9.99302e-12 -5.82558e-10) (3.66229e-10 3.43574e-11 -4.9628e-10) (1.57346e-10 4.01943e-11 -1.56333e-10) (3.62364e-11 2.17346e-11 -1.60355e-11) (2.64307e-12 1.08354e-11 3.32254e-14) (-3.00753e-11 3.26715e-11 -1.52038e-11) (-1.75895e-10 1.0243e-10 -1.17559e-10) (-2.73389e-10 1.06367e-10 -1.53182e-10) (-1.44856e-10 2.07452e-11 -2.58775e-11) (-1.39531e-10 -4.24197e-11 5.35226e-11) (-6.94066e-10 -2.07821e-10 2.5504e-10) (-3.06979e-09 -3.43261e-10 8.42209e-10) (-3.41931e-09 -2.08349e-10 1.47408e-09) (-3.11131e-10 -3.51875e-11 3.89826e-10) (7.79977e-10 2.05591e-10 -3.58698e-12) (3.7936e-09 1.89457e-09 -1.79406e-09) (4.96925e-10 7.79992e-10 -6.56203e-10) (-6.52348e-10 1.68509e-10 -1.4634e-10) (-6.92569e-09 -1.14103e-09 2.78995e-10) (-9.97848e-09 -1.83867e-09 5.24852e-10) (-2.67005e-09 -2.95224e-10 3.58175e-10) (-1.42755e-10 1.66478e-11 9.98176e-11) (2.33573e-11 2.86938e-11 5.92649e-11) (9.7166e-11 6.62752e-11 3.98494e-11) (7.86094e-11 6.00419e-11 -1.51493e-11) (1.91995e-11 2.12088e-11 -1.49971e-11) (-1.45805e-13 2.05559e-12 -9.4395e-13) (-5.107e-12 8.74344e-14 3.99367e-12) (7.27278e-12 -1.46303e-11 1.0071e-11) (1.71584e-10 -1.31362e-10 3.36887e-12) (3.94795e-10 -2.5859e-10 -1.04683e-10) (1.87914e-10 -1.62605e-10 -9.89501e-11) (2.78632e-11 -4.62264e-11 -2.36565e-11) (5.33392e-12 -1.08445e-11 7.28232e-13) (1.243e-11 -1.13268e-11 1.43408e-11) (4.39041e-11 -1.98512e-11 5.42746e-11) (8.94221e-11 -2.62646e-11 9.77766e-11) (1.00795e-10 -1.7872e-11 7.48464e-11) (7.23673e-11 -5.74139e-12 6.29836e-12) (1.04568e-10 -2.87005e-12 -9.68206e-11) (1.6283e-10 7.52384e-12 -3.42471e-10) (9.86994e-11 3.87003e-11 -3.51704e-10) (1.91935e-11 4.20434e-11 -1.12502e-10) (1.19421e-12 2.00763e-11 -1.31149e-11) (-3.37133e-12 1.54761e-11 -1.22556e-12) (-1.78443e-11 2.3022e-11 -1.36896e-11) (-6.87206e-11 6.31095e-11 -9.04462e-11) (-8.15184e-11 8.61195e-11 -1.33151e-10) (-4.67505e-11 3.48622e-11 -3.50353e-11) (-2.86118e-10 1.05449e-11 6.2505e-11) (-3.60052e-09 -2.76131e-10 8.88226e-10) (-1.19146e-08 -8.12521e-10 3.3094e-09) (-1.01604e-08 -1.28392e-09 5.41918e-09) (-1.27867e-09 -6.68389e-10 1.93239e-09) (8.03134e-10 -5.73064e-11 2.68525e-10) (9.4405e-09 3.32515e-09 -3.336e-09) (6.37581e-09 4.70552e-09 -4.66572e-09) (-2.77303e-10 4.73454e-10 -5.45212e-10) (-7.89222e-09 -6.49585e-10 -7.20772e-10) (-1.61495e-08 -2.69025e-09 2.82155e-10) (-4.94968e-09 -7.72697e-10 8.19366e-10) (-3.96533e-10 -2.85986e-11 3.18479e-10) (8.16353e-12 2.92895e-11 1.32305e-10) (9.40026e-11 7.08674e-11 5.60904e-11) (1.32733e-10 1.08507e-10 -2.65496e-11) (4.60718e-11 5.86745e-11 -3.37849e-11) (-1.67595e-12 7.97287e-12 -2.36774e-12) (-1.25619e-11 -2.47359e-12 1.11972e-11) (-4.36856e-12 -6.30035e-11 5.14872e-11) (9.32939e-11 -1.73842e-10 5.8141e-11) (1.97265e-10 -2.40311e-10 -3.34173e-11) (1.79233e-10 -2.26888e-10 -9.81832e-11) (1.80026e-10 -1.9802e-10 -8.11517e-11) (2.59644e-10 -1.61094e-10 -4.55505e-11) (2.92915e-10 -9.45622e-11 -4.01874e-12) (2.36844e-10 -3.69368e-11 3.49183e-11) (1.8436e-10 -1.74578e-11 6.56256e-11) (1.58519e-10 -1.40058e-11 7.29393e-11) (1.08051e-10 -8.11019e-12 2.60507e-11) (6.22088e-11 -1.50178e-12 -3.23489e-11) (4.94928e-11 1.01686e-11 -1.61061e-10) (-4.73719e-11 5.68228e-11 -3.04079e-10) (-1.27663e-10 9.54537e-11 -1.9621e-10) (-9.64057e-11 8.03028e-11 -4.60942e-11) (-4.57607e-11 4.36291e-11 -1.39175e-12) (-2.87017e-11 2.36535e-11 -1.44094e-11) (-6.22889e-11 4.50281e-11 -8.14412e-11) (-7.09745e-11 8.71197e-11 -1.25935e-10) (-7.49456e-11 9.23156e-11 -4.93178e-11) (-8.84715e-10 2.70276e-10 1.50428e-10) (-8.91884e-09 4.069e-10 1.89529e-09) (-2.10966e-08 -1.00734e-09 6.73651e-09) (-1.14652e-08 -2.81914e-09 8.03975e-09) (-1.12986e-09 -1.85182e-09 2.97669e-09) (4.22014e-10 -3.2317e-10 4.63665e-10) (4.37003e-09 1.67837e-09 -1.06123e-09) (1.36327e-08 9.18729e-09 -7.91878e-09) (1.004e-09 2.50379e-09 -2.70925e-09) (-7.03027e-09 4.41959e-10 -2.22972e-09) (-2.00191e-08 -2.83751e-09 -7.83837e-10) (-5.76737e-09 -1.20669e-09 1.2059e-09) (-4.75205e-10 -1.21812e-10 5.59658e-10) (-3.0289e-11 2.05111e-11 2.90014e-10) (2.75131e-11 5.19791e-11 6.12964e-11) (7.9136e-11 1.07898e-10 -1.3875e-11) (5.70151e-11 1.04463e-10 -4.68022e-11) (-3.29195e-12 1.80059e-11 -3.54959e-12) (-2.4506e-11 -1.2185e-11 3.5619e-11) (-2.78562e-11 -1.67022e-10 1.60369e-10) (8.56848e-11 -2.91685e-10 1.39339e-10) (2.91995e-10 -4.10162e-10 -5.53373e-12) (7.6773e-10 -7.00155e-10 -2.35692e-10) (1.28487e-09 -8.81694e-10 -3.92485e-10) (1.40781e-09 -6.77239e-10 -3.52094e-10) (1.15661e-09 -3.06257e-10 -2.27417e-10) (7.65396e-10 -7.8238e-11 -8.8032e-11) (4.90443e-10 -2.43564e-11 2.71006e-11) (3.90667e-10 -3.77953e-11 1.01305e-10) (3.03834e-10 -3.6337e-11 9.89049e-11) (1.24121e-10 -5.61228e-12 1.28665e-11) (2.05986e-11 7.21715e-12 -2.87118e-11) (-8.02917e-11 6.19246e-11 -1.70617e-10) (-3.81973e-10 1.93128e-10 -2.95393e-10) (-4.59991e-10 2.31653e-10 -1.22013e-10) (-2.35531e-10 1.219e-10 -6.42294e-13) (-8.95793e-11 4.06897e-11 -2.32789e-11) (-1.15451e-10 4.60789e-11 -9.55654e-11) (-1.72785e-10 1.19726e-10 -1.35794e-10) (-3.82256e-10 3.32045e-10 -5.38942e-11) (-2.88017e-09 1.20992e-09 5.17807e-10) (-1.52024e-08 1.96933e-09 3.42668e-09) (-1.75862e-08 -1.25277e-09 6.91194e-09) (-2.68189e-09 -2.46671e-09 3.499e-09) (3.60193e-10 -2.64795e-09 2.57581e-09) (3.46426e-11 -7.0161e-10 9.12783e-10) (1.50344e-10 1.48505e-10 4.01888e-11) (6.92508e-09 6.59093e-09 -3.93864e-09) (3.84956e-09 6.74266e-09 -6.05249e-09) (-5.23348e-09 1.83616e-09 -3.59902e-09) (-1.70157e-08 -1.77706e-09 -2.17199e-09) (-4.16914e-09 -1.19304e-09 1.1554e-09) (-2.94116e-10 -2.11618e-10 7.60232e-10) (-6.24275e-11 1.31414e-12 5.43709e-10) (-7.97424e-11 7.52837e-11 1.42986e-10) (-2.2085e-11 8.78321e-11 9.67043e-12) (9.32204e-12 1.19484e-10 -2.95137e-11) (-7.50043e-12 2.5591e-11 1.25505e-12) (-1.14837e-12 -3.73574e-11 7.92607e-11) (7.10552e-11 -3.10529e-10 2.82644e-10) (2.32516e-10 -5.25399e-10 2.40411e-10) (6.57984e-10 -8.13939e-10 -1.27451e-12) (1.94349e-09 -1.56051e-09 -5.57941e-10) (3.36182e-09 -2.03004e-09 -1.14399e-09) (3.35283e-09 -1.45135e-09 -1.1484e-09) (2.35567e-09 -5.63457e-10 -7.71353e-10) (1.41216e-09 -1.14489e-10 -3.69846e-10) (8.98255e-10 -4.9386e-11 -7.58768e-11) (8.03155e-10 -1.10686e-10 1.31049e-10) (8.02804e-10 -1.39737e-10 2.82881e-10) (4.49728e-10 -3.82831e-11 1.92008e-10) (4.22567e-11 1.06305e-11 1.19075e-11) (-3.94945e-11 3.67775e-11 -3.43797e-11) (-5.23675e-10 2.51542e-10 -2.23583e-10) (-8.75648e-10 3.75298e-10 -1.31834e-10) (-5.3308e-10 2.15697e-10 1.42889e-11) (-2.16946e-10 7.36174e-11 -3.73139e-11) (-2.80506e-10 7.93864e-11 -1.51693e-10) (-6.19358e-10 2.76044e-10 -2.12575e-10) (-1.84614e-09 1.15869e-09 1.06874e-10) (-7.46753e-09 3.38232e-09 1.59071e-09) (-1.4624e-08 2.62664e-09 3.78725e-09) (-3.40382e-09 -1.08979e-09 1.89033e-09) (8.62525e-10 -2.48351e-09 1.54436e-09) (1.73614e-09 -3.10916e-09 2.21375e-09) (-2.63289e-10 -9.42953e-10 1.40812e-09) (-4.21534e-10 1.36297e-10 4.39045e-10) (7.69261e-10 2.38126e-09 -8.18633e-10) (3.53601e-09 8.79484e-09 -6.5023e-09) (-4.03318e-09 3.67311e-09 -5.09209e-09) (-9.7481e-09 -3.60387e-10 -2.65477e-09) (-1.91917e-09 -7.88444e-10 7.10143e-10) (1.20409e-11 -3.19269e-10 1.07809e-09) (7.70051e-11 -1.61068e-11 9.02361e-10) (-2.86113e-10 1.20128e-10 3.51191e-10) (-3.95632e-10 2.41918e-10 1.28135e-10) (-1.05281e-10 1.52514e-10 1.28462e-11) (-9.63286e-12 2.35317e-11 1.47516e-11) (1.22265e-10 -1.22904e-10 1.66317e-10) (3.1088e-10 -4.87825e-10 3.54902e-10) (3.71719e-10 -6.65752e-10 2.58399e-10) (7.81388e-10 -9.87945e-10 -1.35129e-11) (2.59519e-09 -2.0856e-09 -8.05197e-10) (5.5091e-09 -3.12421e-09 -2.22183e-09) (6.10609e-09 -2.34679e-09 -2.92506e-09) (3.98988e-09 -7.71846e-10 -2.17711e-09) (1.85994e-09 -1.03738e-10 -9.68872e-10) (9.39193e-10 -8.0352e-11 -2.58098e-10) (9.80888e-10 -2.10777e-10 9.60074e-11) (1.41729e-09 -3.31005e-10 5.40869e-10) (1.06963e-09 -1.24866e-10 6.27786e-10) (1.48393e-10 3.24018e-11 1.39379e-10) (-5.67072e-11 4.43961e-11 8.05055e-12) (-8.79492e-10 3.50166e-10 -1.4748e-10) (-1.42757e-09 5.19633e-10 -7.19926e-11) (-7.53807e-10 2.80756e-10 6.69184e-11) (-2.53426e-10 9.95313e-11 -2.96188e-11) (-4.54104e-10 1.62274e-10 -2.05224e-10) (-1.866e-09 7.45263e-10 -3.56703e-10) (-5.60062e-09 2.91382e-09 6.05607e-10) (-9.89395e-09 4.74426e-09 2.30482e-09) (-3.80722e-09 8.23494e-10 1.16167e-09) (1.18225e-10 -5.05626e-10 2.34718e-10) (3.86011e-09 -4.10447e-09 1.32356e-09) (2.35005e-09 -2.86163e-09 1.83804e-09) (-2.70784e-10 -8.84538e-10 1.55264e-09) (-2.0085e-09 1.24654e-10 1.76713e-09) (-8.04518e-10 1.38403e-09 -3.20993e-11) (5.70938e-10 7.75304e-09 -4.96891e-09) (-3.50552e-09 6.12497e-09 -6.92228e-09) (-4.34266e-09 4.18116e-10 -2.39212e-09) (-5.91569e-10 -3.6847e-10 2.40681e-10) (4.40925e-10 -4.32649e-10 1.45522e-09) (5.77556e-10 -1.46239e-12 1.66489e-09) (-2.3457e-10 1.38803e-10 5.32334e-10) (-7.83992e-10 2.9517e-10 3.48284e-10) (-2.81325e-10 1.63153e-10 1.05007e-10) (-2.40861e-12 8.93498e-12 2.6554e-11) (2.3589e-10 -2.22727e-10 1.71623e-10) (2.69226e-10 -4.17693e-10 2.37096e-10) (1.80338e-10 -4.40038e-10 1.78836e-10) (4.62116e-10 -6.84847e-10 4.94789e-11) (2.40823e-09 -1.88993e-09 -7.06563e-10) (7.11345e-09 -3.60825e-09 -3.36235e-09) (9.42814e-09 -2.99209e-09 -6.11786e-09) (6.00194e-09 -8.24065e-10 -5.0885e-09) (2.11864e-09 -6.40089e-11 -1.96715e-09) (7.675e-10 -1.3151e-10 -4.13164e-10) (9.86997e-10 -3.3763e-10 7.5253e-11) (1.92375e-09 -5.85778e-10 8.73101e-10) (1.6123e-09 -2.5286e-10 1.20822e-09) (2.28062e-10 4.7212e-11 3.57439e-10) (-1.61581e-10 8.1669e-11 6.84015e-11) (-1.6722e-09 4.63479e-10 -1.43689e-10) (-2.65128e-09 6.62353e-10 -6.62055e-11) (-1.40997e-09 3.75408e-10 1.72819e-10) (-4.07502e-10 1.60017e-10 -6.90107e-12) (-5.73291e-10 3.24125e-10 -2.486e-10) (-2.94044e-09 1.46905e-09 -5.71443e-10) (-7.80429e-09 4.04469e-09 6.09039e-10) (-5.39794e-09 3.01073e-09 1.24183e-09) (-8.72438e-11 3.93198e-11 5.49457e-11) (1.74683e-09 -1.24249e-09 2.748e-10) (4.98221e-09 -3.73737e-09 9.97524e-10) (2.16055e-09 -2.07038e-09 1.28325e-09) (-9.87603e-11 -7.47476e-10 1.27935e-09) (-2.96328e-09 -1.75736e-10 2.74723e-09) (-2.71016e-09 1.66808e-09 7.97312e-10) (-1.83156e-09 6.16835e-09 -3.38487e-09) (-3.18437e-09 7.8236e-09 -8.04962e-09) (-2.08879e-09 7.63681e-10 -2.47088e-09) (-1.42172e-10 -1.3548e-10 -3.75973e-12) (6.72764e-10 -4.26765e-10 1.35102e-09) (1.6316e-09 1.28755e-10 3.00016e-09) (8.96194e-11 2.46617e-10 1.04361e-09) (-3.72421e-10 1.61543e-10 3.71104e-10) (-1.53232e-10 4.35476e-11 1.0617e-10) (1.2982e-11 -1.48873e-11 3.32865e-11) (9.11833e-11 -1.78371e-10 5.56205e-11) (3.78534e-12 -1.93471e-10 7.85958e-11) (-3.30635e-11 -2.10338e-10 1.06033e-10) (1.65911e-10 -3.16362e-10 6.8665e-11) (1.94932e-09 -1.31108e-09 -5.57854e-10) (7.70738e-09 -3.08574e-09 -4.34216e-09) (1.14466e-08 -2.6757e-09 -9.72037e-09) (7.08944e-09 -5.90781e-10 -8.54167e-09) (2.07141e-09 -8.86128e-11 -2.87682e-09) (6.46775e-10 -1.98789e-10 -4.61105e-10) (1.05314e-09 -4.76658e-10 1.78031e-10) (2.26863e-09 -8.47282e-10 1.39942e-09) (1.80657e-09 -4.23706e-10 1.75657e-09) (2.39782e-10 6.49425e-12 5.07412e-10) (-1.52713e-10 5.31461e-11 8.044e-11) (-1.53783e-09 3.43331e-10 -1.66268e-10) (-3.4136e-09 6.47754e-10 -2.11773e-10) (-3.51208e-09 5.57688e-10 3.08185e-10) (-2.12944e-09 4.31314e-10 7.29118e-11) (-1.55035e-09 7.59895e-10 -4.57685e-10) (-3.24092e-09 2.14639e-09 -9.20067e-10) (-5.57958e-09 3.50395e-09 -1.24938e-10) (-1.67398e-09 1.19318e-09 3.64366e-10) (4.70498e-11 2.87183e-12 4.19776e-11) (2.38915e-09 -1.13809e-09 6.03823e-10) (3.87e-09 -2.15783e-09 8.31586e-10) (1.70518e-09 -1.15089e-09 6.16527e-10) (9.5624e-11 -4.60362e-10 6.70879e-10) (-2.73643e-09 -5.06412e-10 2.70906e-09) (-5.05203e-09 1.64604e-09 2.14154e-09) (-3.25092e-09 4.74172e-09 -1.9815e-09) (-2.74797e-09 7.39385e-09 -7.69536e-09) (-1.03319e-09 1.13975e-09 -3.47243e-09) (-5.37456e-11 -1.17733e-10 -1.95607e-10) (2.74446e-10 -1.78063e-10 3.86234e-10) (2.21491e-09 2.4856e-10 3.32951e-09) (1.11895e-09 5.22549e-10 2.39645e-09) (1.3212e-11 1.06445e-10 4.84562e-10) (-1.25952e-11 -1.10911e-11 6.14968e-11) (3.67538e-11 -6.31187e-11 3.62169e-11) (-1.1485e-10 -1.97093e-10 3.93022e-11) (-2.70748e-10 -2.55244e-10 6.93781e-11) (-1.27224e-10 -1.52993e-10 6.49272e-11) (6.83801e-11 -1.09467e-10 1.62927e-11) (1.54098e-09 -6.77381e-10 -5.41272e-10) (6.23971e-09 -1.6379e-09 -4.2167e-09) (9.42218e-09 -1.36039e-09 -1.0134e-08) (5.99992e-09 -3.58776e-10 -9.28949e-09) (1.73273e-09 -2.57491e-10 -2.88288e-09) (5.17999e-10 -2.20699e-10 -3.33389e-10) (9.47592e-10 -4.68541e-10 4.03864e-10) (2.10487e-09 -9.0926e-10 1.9251e-09) (1.63217e-09 -6.42134e-10 1.87562e-09) (2.8287e-10 -1.22267e-10 4.00397e-10) (-4.77874e-12 -5.02268e-13 5.38374e-12) (-3.33937e-10 9.91432e-11 -8.27731e-11) (-1.76358e-09 5.53563e-10 -2.21045e-10) (-4.63562e-09 9.59749e-10 2.05956e-10) (-7.92646e-09 1.00099e-09 2.36367e-10) (-7.74173e-09 1.79751e-09 -1.24355e-09) (-5.56327e-09 3.08358e-09 -1.79978e-09) (-3.52814e-09 2.74685e-09 -7.82986e-10) (-5.38254e-10 5.35763e-10 5.15173e-11) (9.28768e-11 1.0836e-11 7.76178e-11) (1.57859e-09 -5.25143e-10 6.12943e-10) (2.39421e-09 -9.19333e-10 5.50574e-10) (1.4146e-09 -6.28734e-10 2.60887e-10) (2.34574e-10 -2.71886e-10 3.48343e-10) (-1.73624e-09 -5.49199e-10 2.16371e-09) (-6.80643e-09 1.09728e-09 3.69763e-09) (-3.80067e-09 3.25089e-09 -6.69559e-10) (-1.70121e-09 4.90725e-09 -5.6003e-09) (1.97698e-10 1.33944e-09 -5.13926e-09) (2.39278e-10 -3.03324e-10 -1.26241e-09) (3.08071e-11 -2.71715e-11 -7.8526e-12) (7.82777e-10 1.50525e-10 1.15001e-09) (2.02332e-09 5.74136e-10 3.24127e-09) (6.39878e-10 7.09432e-11 1.38801e-09) (5.3524e-11 -9.81621e-11 2.3875e-10) (-1.73431e-11 -1.21708e-10 6.3919e-11) (-1.54162e-10 -2.66082e-10 1.05714e-10) (-1.81875e-10 -2.36317e-10 2.69334e-11) (-9.29141e-11 -1.11232e-10 5.60829e-12) (4.31466e-12 -1.39269e-11 -2.90431e-12) (4.19782e-10 -6.90242e-11 -2.03903e-10) (2.57098e-09 -1.77908e-10 -1.96333e-09) (5.00658e-09 -3.15463e-10 -5.64371e-09) (3.95108e-09 -5.56958e-10 -5.74146e-09) (1.26916e-09 -4.27522e-10 -1.79801e-09) (2.86229e-10 -1.41865e-10 -1.06446e-10) (6.04185e-10 -2.7496e-10 5.40985e-10) (1.59506e-09 -7.76836e-10 1.99047e-09) (1.60773e-09 -9.4551e-10 1.50728e-09) (6.95116e-10 -4.40717e-10 2.56003e-10) (1.2758e-10 -7.18603e-11 -4.63149e-11) (-1.1549e-12 1.18447e-11 -2.92811e-11) (-2.83555e-10 2.63921e-10 -8.58768e-11) (-1.91475e-09 1.00509e-09 9.83902e-11) (-7.32824e-09 1.58703e-09 4.10294e-10) (-1.54292e-08 2.06801e-09 -1.38538e-09) (-1.31845e-08 3.73462e-09 -3.55043e-09) (-4.80452e-09 2.76958e-09 -1.86516e-09) (-5.25906e-10 4.61632e-10 -1.70229e-10) (7.5222e-12 4.08374e-12 8.3406e-12) (4.13191e-10 -1.16318e-10 1.78933e-10) (1.01385e-09 -2.65443e-10 2.31253e-10) (1.03105e-09 -2.54264e-10 1.43652e-10) (4.54722e-10 -1.77834e-10 3.44885e-10) (-5.49318e-10 -3.4485e-10 1.83039e-09) (-5.96209e-09 2.43813e-10 5.27819e-09) (-3.84056e-09 1.6914e-09 9.03418e-10) (-6.76019e-10 1.59504e-09 -2.14291e-09) (1.44389e-09 8.14846e-10 -5.91368e-09) (9.97374e-10 -6.76201e-10 -3.46993e-09) (-2.13685e-11 -8.21341e-11 -3.48459e-10) (-7.08533e-12 2.61926e-11 5.19023e-11) (6.72355e-10 3.54632e-10 1.87905e-09) (9.57465e-10 8.70229e-13 2.81304e-09) (8.99781e-11 -3.35285e-10 1.15799e-09) (-1.23916e-10 -2.95728e-10 3.38345e-10) (5.36059e-10 -4.16567e-10 3.36849e-10) (2.08956e-10 -1.97659e-10 1.05873e-10) (-2.29582e-12 -3.14932e-11 1.40541e-11) (-5.19825e-11 -1.29025e-11 1.04254e-11) (-1.01529e-11 2.78673e-12 -3.48549e-12) (7.17096e-11 1.92615e-11 -9.98512e-11) (6.90866e-10 3.08243e-12 -7.62815e-10) (9.83752e-10 -1.35319e-10 -1.08731e-09) (4.44932e-10 -1.29853e-10 -4.17532e-10) (1.59183e-10 -5.98586e-11 -2.28695e-11) (5.31987e-10 -2.42726e-10 3.55603e-10) (1.74348e-09 -1.0487e-09 1.25426e-09) (2.22301e-09 -1.52073e-09 9.78268e-10) (1.39794e-09 -8.97275e-10 -5.36087e-11) (6.49432e-10 -2.8927e-10 -4.17316e-10) (1.75528e-10 2.28514e-11 -2.39507e-10) (7.49777e-12 1.16506e-10 -6.75023e-11) (-2.20308e-10 4.45328e-10 6.13627e-11) (-1.32643e-09 9.85304e-10 3.50852e-10) (-5.5829e-09 1.612e-09 7.71197e-11) (-1.09854e-08 2.17443e-09 -2.38042e-09) (-7.03732e-09 1.94359e-09 -2.98822e-09) (-1.47617e-09 5.58067e-10 -8.30857e-10) (-1.02205e-10 2.05961e-11 -2.94605e-11) (-9.83862e-12 -9.17526e-12 2.1213e-11) (3.95221e-11 -2.37309e-11 7.6154e-11) (1.97766e-10 -2.97449e-11 1.43614e-10) (4.87786e-10 -1.69015e-11 4.12098e-10) (4.39597e-10 3.31217e-11 1.38234e-09) (-1.48415e-09 1.86635e-10 3.70025e-09) (-2.91483e-09 4.35903e-10 2.46732e-09) (-1.85852e-10 4.06667e-11 -1.03731e-10) (8.47557e-10 -4.27997e-10 -3.07145e-09) (1.25192e-09 -8.51694e-10 -5.27601e-09) (-3.28626e-10 7.10952e-11 -1.92896e-09) (-4.82129e-10 2.49055e-10 -2.74036e-10) (-2.21067e-10 1.61224e-10 2.98552e-10) (9.77539e-11 3.26538e-11 1.16669e-09) (3.76538e-10 -2.79275e-10 1.10044e-09) (4.60923e-10 -4.02359e-10 5.93384e-10) (1.44104e-09 -6.65334e-10 6.83219e-10) (1.21743e-09 -3.94117e-10 8.18275e-10) (4.32934e-10 -1.10903e-10 4.642e-10) (6.75174e-11 -1.1955e-11 1.57543e-10) (6.30747e-12 3.31188e-12 4.8877e-11) (5.05969e-12 4.11999e-13 6.54237e-12) (2.95177e-11 -8.51512e-12 -9.71069e-12) (1.01797e-10 -5.53097e-11 -7.70866e-11) (1.2645e-10 -9.54319e-11 -1.05663e-10) (1.26883e-10 -9.47259e-11 -4.92631e-11) (2.48511e-10 -1.52555e-10 6.40426e-11) (6.2364e-10 -3.56636e-10 3.5709e-10) (7.34343e-10 -4.23576e-10 3.59636e-10) (4.77957e-10 -2.44854e-10 -2.6067e-11) (4.51951e-10 -1.36288e-10 -4.03172e-10) (3.35516e-10 4.73638e-11 -5.7857e-10) (8.55521e-11 1.28717e-10 -2.00104e-10) (1.85235e-11 1.63794e-10 2.77279e-12) (-6.2093e-11 3.78318e-10 2.02414e-10) (-3.65594e-10 4.45958e-10 1.88705e-10) (-1.23932e-09 5.69402e-10 -2.31107e-10) (-2.09937e-09 5.45877e-10 -1.14366e-09) (-1.27134e-09 2.34202e-10 -9.63327e-10) (-4.49306e-10 3.59551e-11 -2.41804e-10) (-3.2134e-10 -1.49847e-11 3.84224e-11) (-3.45183e-10 -4.86495e-11 2.22972e-10) (-1.1365e-10 -3.70004e-11 1.71721e-10) (4.03102e-11 -6.87883e-12 1.42692e-10) (3.79758e-10 1.31891e-10 5.88079e-10) (5.00116e-10 5.45157e-10 1.94568e-09) (-5.75564e-10 5.12619e-10 2.65631e-09) (-3.83797e-10 -1.50739e-10 5.16069e-10) (-1.14903e-10 -6.30673e-10 -4.40549e-10) (2.19319e-10 -1.49619e-09 -3.12842e-09) (-1.04074e-11 2.14957e-10 -3.47312e-09) (-4.08951e-10 1.01108e-09 -1.6199e-09) (-2.38178e-10 3.54058e-10 -2.53244e-10) (-4.40059e-12 3.0019e-12 1.21464e-13) (8.30908e-11 -9.31708e-11 4.13931e-11) (7.06391e-10 -5.10993e-10 2.63288e-10) (4.00846e-10 -4.25418e-10 1.04037e-10) (7.38339e-10 -5.1311e-10 7.45758e-10) (7.6091e-10 -2.38861e-10 1.07754e-09) (2.40495e-10 6.13049e-11 5.64691e-10) (-1.30486e-13 8.15383e-11 1.53759e-10) (-2.00609e-11 2.85912e-11 1.83881e-11) (-7.5216e-12 3.32825e-12 -7.33325e-12) (7.34838e-13 -2.38953e-11 -5.52196e-11) (5.67221e-11 -7.86519e-11 -1.0118e-10) (1.03458e-10 -8.59869e-11 -4.0979e-11) (1.93797e-10 -1.08677e-10 9.69684e-11) (3.88452e-10 -1.62968e-10 4.27721e-10) (4.0666e-10 -1.31909e-10 4.53882e-10) (2.31875e-10 -5.48126e-11 8.66551e-11) (2.71974e-10 -3.39229e-11 -1.84465e-10) (3.3291e-10 4.5078e-11 -6.00416e-10) (1.03708e-10 1.30303e-10 -4.36643e-10) (1.87901e-12 8.31701e-11 -7.07852e-11) (1.41599e-11 1.35829e-10 4.82122e-11) (5.11632e-11 2.40474e-10 1.62668e-10) (-4.57581e-12 1.0802e-10 3.22062e-11) (-7.27428e-11 6.3919e-11 -7.62009e-11) (-2.95222e-10 2.78123e-11 -3.2011e-10) (-3.84167e-10 -3.50527e-11 -2.67128e-10) (-3.36122e-10 -2.09766e-11 -4.07205e-11) (-3.52413e-10 -6.87274e-12 1.44533e-10) (-3.08235e-10 -2.67569e-11 2.4715e-10) (-1.61331e-10 -2.9003e-11 1.73159e-10) (-5.03054e-11 1.30658e-11 1.08898e-10) (3.54975e-11 2.03475e-10 4.26422e-10) (2.60769e-10 6.6551e-10 1.58411e-09) (1.06712e-10 1.24018e-10 1.2752e-09) (-6.01368e-11 -2.82845e-10 2.33027e-10) (-3.05419e-10 -7.11953e-10 -2.89241e-10) (-2.42694e-10 -3.43496e-10 -8.19357e-10) (2.49068e-10 4.80508e-10 -1.41781e-09) (9.35765e-10 1.08995e-09 -1.65787e-09) (7.96519e-10 4.22979e-10 -9.63025e-10) (5.40169e-10 -1.27775e-10 -5.68839e-10) (4.0836e-10 -3.68961e-10 -2.76618e-10) (1.28528e-10 -2.01164e-10 -2.1992e-10) (2.5774e-11 -1.36302e-10 1.14224e-11) (2.14867e-11 -1.49353e-10 1.74874e-10) (3.98411e-11 -5.08671e-11 2.66244e-10) (2.88609e-11 5.49354e-11 1.99655e-10) (-7.44791e-12 5.75299e-11 7.51079e-11) (-1.63853e-11 1.68693e-11 8.33954e-12) (-3.59214e-11 2.7303e-13 -1.6814e-11) (-8.59528e-11 -3.74681e-11 -6.97524e-11) (-7.24827e-11 -3.89213e-11 -6.47028e-11) (-7.36283e-12 -2.92448e-12 -3.87741e-12) (1.14284e-11 5.63675e-12 2.61004e-11) (1.98804e-10 3.79346e-11 2.26541e-10) (4.13108e-10 1.25992e-11 2.24182e-10) (4.23827e-10 -2.61572e-11 -2.68072e-11) (3.01647e-10 -1.63929e-11 -2.40495e-10) (6.22935e-11 2.05757e-11 -2.46339e-10) (-9.69217e-11 5.62235e-11 -1.73697e-10) (-1.31639e-10 1.00741e-10 -7.64459e-11) (-4.20065e-11 1.21521e-10 3.00681e-12) (6.11786e-11 1.72382e-10 2.68162e-11) (8.17209e-11 1.06221e-10 -1.71241e-11) (1.35396e-11 1.55685e-11 -2.69117e-11) (-3.1928e-11 -1.88499e-11 -3.91783e-11) (-1.78052e-10 -1.10689e-10 -2.24463e-11) (-3.34635e-10 -1.90328e-10 1.37606e-10) (-4.34086e-10 -1.58242e-10 3.08925e-10) (-5.57688e-10 -2.60897e-11 3.16778e-10) (-7.19553e-10 1.69625e-10 2.10443e-10) (-5.2937e-10 3.28264e-10 1.89291e-10) (-1.46264e-10 3.83126e-10 4.07543e-10) (2.93317e-10 3.69012e-10 9.65275e-10) (3.59244e-10 -1.07311e-10 7.63781e-10) (8.53849e-11 -2.07719e-10 1.8806e-10) (-2.27068e-12 -8.98179e-11 -1.87997e-11) (3.02526e-11 -5.03591e-11 -2.00253e-10) (4.2153e-10 1.07669e-10 -9.05374e-10) (1.0377e-09 2.05738e-10 -1.56482e-09) (1.05065e-09 -4.57367e-11 -1.51256e-09) (5.21619e-10 -2.45668e-10 -8.5547e-10) (-5.11559e-11 -1.07349e-10 -8.45743e-11) (-7.05524e-11 -1.21673e-10 -2.00619e-11) (-2.73537e-11 -6.15869e-11 2.40238e-11) (8.04816e-12 -1.15681e-11 2.87654e-11) (6.15545e-11 2.67086e-11 7.35481e-11) (8.03044e-11 5.38432e-11 8.66781e-11) (1.3952e-11 1.18514e-11 2.69513e-11) (-6.69681e-12 -3.4266e-12 4.57737e-12) (-7.24468e-11 -4.30216e-11 -1.41636e-11) (-1.03691e-10 -5.50252e-11 -4.64585e-11) (-2.03155e-11 -4.56371e-12 -1.22961e-11) (5.63928e-12 1.1731e-11 1.32049e-12) (1.93679e-10 1.553e-10 7.10328e-11) (5.79118e-10 2.58757e-10 1.44121e-10) (6.25039e-10 1.21233e-10 3.90192e-11) (2.78195e-10 1.78882e-12 -6.05266e-11) (2.58024e-11 -8.50675e-12 -3.53632e-11) (-8.19314e-11 -1.72021e-11 -8.53104e-11) (-4.32331e-10 7.19848e-12 -2.42942e-10) (-4.30415e-10 1.23856e-10 -2.28259e-10) (-1.1154e-10 1.34825e-10 -8.66258e-11) (2.8891e-11 1.22781e-10 -3.19398e-11) (7.63742e-11 8.09597e-11 -3.13812e-12) (1.20089e-11 5.72415e-12 3.93451e-12) (-1.62856e-11 -1.18194e-11 1.153e-11) (-3.66325e-10 -1.32741e-10 1.18316e-10) (-1.31109e-09 -2.23144e-10 3.30643e-10) (-2.15941e-09 -2.0676e-11 3.78349e-10) (-1.99814e-09 3.00183e-10 1.14297e-10) (-9.86356e-10 3.66014e-10 -1.01554e-11) (-1.75717e-10 1.69886e-10 6.60863e-11) (5.90677e-11 1.11596e-10 1.81129e-10) (3.80969e-10 5.98286e-12 4.18855e-10) (4.05097e-10 -1.55806e-10 2.20881e-10) (2.79394e-10 -1.29263e-10 -4.93161e-11) (3.29729e-10 -7.89444e-11 -2.95375e-10) (3.80486e-10 -2.96463e-11 -5.00199e-10) (2.69579e-10 -5.78725e-11 -4.30142e-10) (1.08731e-10 -8.90629e-11 -2.64568e-10) (3.61683e-12 -9.20511e-11 -1.499e-10) (-7.4568e-10 -1.73849e-10 2.07648e-10) (-1.35521e-10 -6.64967e-11 8.78107e-11) (2.35596e-11 -2.53009e-11 5.13448e-11) (3.04297e-10 -1.79331e-11 1.12832e-10) (7.97822e-10 6.43998e-11 4.05681e-11) (8.59599e-10 9.33578e-11 -1.38166e-10) (4.25087e-10 7.62836e-12 -1.72204e-10) (1.03048e-10 -4.40367e-11 -9.9512e-11) (1.09096e-11 -6.62512e-11 -6.76708e-11) (-1.49711e-11 -6.89321e-11 -3.78681e-11) (-6.92654e-13 -1.97614e-11 -2.55322e-12) (1.142e-11 -1.23069e-12 6.49835e-12) (1.27637e-10 6.89124e-11 5.00232e-11) (3.66766e-10 2.22014e-10 8.59668e-11) (4.41736e-10 2.34615e-10 5.76616e-11) (2.47293e-10 1.07356e-10 2.00563e-11) (4.33886e-11 1.56383e-11 9.12838e-13) (-3.48256e-13 1.10261e-13 -1.05244e-12) (-7.09691e-11 -1.39408e-12 -4.98639e-11) (-2.8301e-10 3.65601e-11 -1.86898e-10) (-2.97079e-10 1.01629e-10 -1.85625e-10) (-1.0813e-10 6.95348e-11 -4.61346e-11) (-2.62303e-11 2.5701e-11 8.72945e-12) (-3.20753e-11 1.82671e-11 3.3391e-11) (-1.09378e-10 1.36019e-11 6.20893e-11) (-3.31878e-10 4.1962e-12 5.84333e-11) (-6.45126e-10 -1.12283e-11 1.10806e-11) (-8.65341e-10 5.23263e-12 1.3548e-11) (-8.97648e-10 1.14761e-10 5.04105e-11) (-6.37293e-10 2.53177e-10 3.0682e-11) (-1.97904e-10 2.07802e-10 2.42339e-12) (1.62715e-11 8.7467e-11 -1.7762e-12) (2.16549e-10 8.0237e-11 -3.54486e-11) (5.89514e-10 -2.88651e-11 -2.13659e-10) (6.18256e-10 -1.77914e-10 -3.6752e-10) (2.75205e-10 -1.82331e-10 -1.96282e-10) (4.39836e-11 -1.10173e-10 -1.66045e-11) (-9.29244e-11 -1.65398e-10 8.85177e-11) (-5.79365e-10 -2.86585e-10 2.9314e-10) (-1.11497e-09 -2.65819e-10 3.45327e-10) (-4.37315e-10 -6.24957e-11 4.10513e-10) (6.12718e-11 -9.48734e-11 1.95498e-10) (5.09368e-10 -2.38745e-10 2.34691e-10) (1.10641e-09 -3.71224e-10 1.78825e-11) (1.36434e-09 -3.71729e-10 -3.88539e-10) (1.0322e-09 -2.65813e-10 -6.10818e-10) (4.32784e-10 -1.53837e-10 -4.65434e-10) (8.01903e-11 -8.48335e-11 -2.08681e-10) (-5.83326e-12 -4.89594e-11 -6.32465e-11) (-5.02727e-12 -2.88028e-11 -9.68698e-12) (9.5979e-12 -2.05145e-11 7.24291e-12) (5.22248e-11 -1.58944e-11 2.27003e-11) (1.45969e-10 2.33768e-11 2.60631e-11) (2.27258e-10 8.7017e-11 -3.91845e-12) (2.10758e-10 1.03582e-10 -2.50645e-11) (1.27195e-10 6.94744e-11 -5.66159e-12) (5.13817e-11 3.33252e-11 1.40678e-11) (9.17452e-12 1.26526e-11 1.10618e-11) (-6.69809e-12 8.62055e-12 3.65348e-12) (-7.70599e-11 4.36509e-11 -3.04311e-11) (-2.58968e-10 1.48409e-10 -1.69485e-10) (-3.13518e-10 2.19974e-10 -2.06166e-10) (-1.7599e-10 1.42675e-10 -6.54899e-11) (-7.28153e-11 5.05323e-11 1.67641e-11) (-5.7427e-11 1.33582e-11 4.01097e-11) (-8.76565e-11 -1.51828e-11 4.2349e-11) (-2.20735e-10 -4.40863e-11 1.31947e-11) (-6.35136e-10 -1.5946e-11 -8.85624e-11) (-1.25895e-09 2.08814e-10 -1.89345e-10) (-1.24459e-09 4.24799e-10 -1.14623e-10) (-4.19826e-10 2.55848e-10 -5.36334e-12) (-1.05805e-11 3.63861e-11 3.21591e-12) (1.23246e-10 2.50571e-11 -2.94377e-12) (5.86577e-10 -1.05914e-10 -5.43623e-11) (7.29475e-10 -2.98042e-10 -6.36393e-11) (2.58575e-10 -1.97559e-10 2.33248e-11) (-2.29731e-11 -5.14544e-11 4.12914e-11) (-1.04195e-09 -6.33938e-11 4.02098e-10) (-3.54431e-09 2.64198e-10 1.05643e-09) (-2.60546e-09 1.63607e-10 1.03984e-09) (3.77353e-11 -4.22467e-11 -4.11214e-12) (5.48999e-10 -2.61802e-10 1.60963e-11) (1.20542e-09 -4.31255e-10 6.69911e-11) (1.30339e-09 -3.90087e-10 5.78456e-11) (8.77027e-10 -2.27607e-10 -4.33236e-11) (2.96344e-10 -8.18946e-11 -8.64829e-11) (2.46294e-11 -2.12923e-11 -3.70948e-11) (-4.63743e-11 -3.65295e-11 -4.00008e-11) (-1.62357e-10 -1.03327e-10 -2.5774e-11) (-1.31192e-10 -1.23171e-10 3.83124e-11) (-2.83336e-11 -7.503e-11 5.1451e-11) (2.09611e-11 -2.69716e-11 2.73886e-11) (6.45541e-11 -1.41564e-12 4.30368e-12) (1.7281e-10 4.7823e-11 -7.15946e-11) (2.26959e-10 7.75167e-11 -1.46037e-10) (1.46352e-10 4.52729e-11 -7.87728e-11) (6.21855e-11 2.10128e-11 1.393e-12) (4.23786e-11 3.10803e-11 5.29003e-11) (7.08444e-12 6.00058e-11 1.07266e-10) (-4.19392e-11 5.58115e-11 6.97055e-11) (-5.71181e-11 3.94084e-11 3.6812e-12) (-9.88774e-11 5.80945e-11 -8.57874e-11) (-1.42378e-10 9.2777e-11 -2.07525e-10) (-1.17621e-10 8.03687e-11 -1.66395e-10) (-5.4106e-11 2.53449e-11 -4.20964e-11) (-3.54758e-11 2.16047e-12 3.94296e-12) (-9.44675e-11 -1.03083e-11 4.58448e-11) (-2.59548e-10 3.61009e-12 5.65516e-11) (-6.76655e-10 1.12694e-10 -1.15208e-10) (-1.10146e-09 2.82927e-10 -4.94132e-10) (-7.19693e-10 2.12747e-10 -4.4707e-10) (-1.00155e-10 3.08801e-11 -7.3182e-11) (2.35684e-12 -3.7619e-13 1.90504e-12) (1.95232e-10 -2.89399e-11 1.76838e-10) (4.36778e-10 -1.84565e-11 4.95692e-10) (1.43498e-10 4.7529e-11 3.35996e-10) (-1.17002e-10 7.08704e-11 1.53121e-10) (-6.89087e-10 1.73023e-10 1.25123e-10) (-7.39369e-10 7.41303e-11 -2.51872e-11) (-9.0918e-11 -2.28717e-11 -1.45275e-11) (2.51233e-10 -1.36325e-10 -2.31987e-10) (2.35853e-10 -1.58782e-10 -4.83127e-11) (3.18501e-10 -2.52162e-10 1.60431e-10) (5.11393e-10 -3.92371e-10 4.26151e-10) (4.81704e-10 -2.92061e-10 3.60969e-10) (1.62771e-10 -7.32105e-11 7.13148e-11) (7.27113e-12 -5.17448e-12 -3.68011e-12) (-3.93053e-11 -2.5814e-11 -3.54418e-11) (-2.16202e-10 -1.42212e-10 -6.93578e-11) (-2.51125e-10 -2.23936e-10 3.08951e-11) (-1.05923e-10 -1.42608e-10 1.10369e-10) (-6.17342e-12 -3.18522e-11 7.13534e-11) (1.31485e-11 8.92419e-12 1.57764e-11) (5.08101e-11 5.06333e-11 -2.76923e-11) (1.38294e-10 9.47023e-11 -1.56282e-10) (1.77088e-10 4.74125e-11 -1.77276e-10) (1.29664e-10 -5.33234e-13 -5.99533e-11) (1.01809e-10 -4.05844e-12 2.82767e-11) (9.97699e-11 1.56688e-11 1.25373e-10) (2.61254e-11 3.90432e-11 1.76038e-10) (-7.58032e-11 4.35937e-11 1.34215e-10) (-1.73749e-10 5.49267e-11 6.30967e-11) (-2.47338e-10 7.54474e-11 -6.09818e-11) (-2.69527e-10 7.9505e-11 -2.18948e-10) (-2.49715e-10 4.16258e-11 -3.07931e-10) (-1.92224e-10 6.4127e-12 -2.2562e-10) (-1.10765e-10 8.43239e-12 -8.63114e-11) (-4.73708e-11 1.14518e-11 -1.89888e-11) (-1.32422e-11 3.94423e-12 -4.51834e-12) (-3.96546e-12 -1.76391e-12 -5.98713e-12) (-4.42683e-12 -1.82907e-11 -2.98115e-11) (-9.2864e-12 -3.03759e-11 -4.75806e-11) (-1.28408e-11 -8.87674e-12 -1.68692e-11) (-2.54302e-11 1.01005e-11 9.34976e-12) (-1.46361e-10 1.8132e-10 2.33638e-10) (-2.83587e-10 6.0633e-10 7.32977e-10) (-2.41442e-10 5.89336e-10 5.60952e-10) (-6.26723e-11 1.47849e-10 6.04526e-11) (2.03832e-12 2.17354e-11 -3.80162e-11) (1.20763e-10 -3.7923e-11 -2.18024e-10) (3.95969e-10 6.88188e-13 -2.42432e-11) (5.33408e-10 2.75664e-13 -5.91599e-11) (4.70663e-10 1.8913e-12 -8.4214e-11) (3.02044e-10 1.27645e-12 -5.33511e-11) (1.90791e-10 7.68346e-13 -1.42544e-11) (1.69867e-10 3.77316e-13 9.10841e-12) (2.29486e-10 -2.79583e-14 1.66747e-11) (3.95798e-10 -1.06171e-12 3.55648e-12) (7.35309e-10 -3.26347e-12 -3.11613e-11) (1.30888e-09 -6.70607e-12 -7.9158e-11) (2.09725e-09 -1.06255e-11 -1.53801e-10) (3.06982e-09 -1.67029e-11 -3.05728e-10) (4.25204e-09 -2.68586e-11 -5.44461e-10) (5.49179e-09 -3.60686e-11 -7.76528e-10) (6.07423e-09 -2.65314e-11 -8.52587e-10) (5.13001e-09 4.45341e-12 -7.29572e-10) (3.07646e-09 2.38257e-11 -4.93136e-10) (1.38056e-09 1.8718e-11 -2.56966e-10) (6.02122e-10 8.80604e-12 -1.15786e-10) (3.9781e-10 3.75204e-12 -7.05573e-11) (4.77902e-10 2.339e-12 -8.80923e-11) (8.20572e-10 1.45078e-12 -1.67655e-10) (1.61177e-09 -7.20708e-12 -3.3671e-10) (3.09457e-09 -3.33697e-11 -6.97031e-10) (4.79197e-09 -4.309e-11 -1.24792e-09) (5.44378e-09 -5.53855e-13 -1.56595e-09) (5.03136e-09 3.88232e-11 -1.42798e-09) (4.17082e-09 4.59695e-11 -1.04478e-09) (2.54575e-09 3.39618e-11 -4.85968e-10) (7.83998e-10 1.19099e-11 -6.77169e-11) (1.21216e-10 1.63035e-12 7.03782e-12) (3.19374e-11 1.23922e-12 -6.71723e-13) (8.48246e-11 1.07129e-12 -2.36003e-11) (3.8821e-10 -5.5432e-12 -1.13433e-10) (9.67458e-10 -1.20953e-11 -2.44071e-10) (1.29104e-09 1.1775e-12 -2.99209e-10) (1.01896e-09 1.49436e-11 -2.38483e-10) (5.64653e-10 1.37039e-11 -1.29605e-10) (2.99738e-10 6.90182e-12 -5.51444e-11) (2.62043e-10 2.85807e-12 -2.47407e-11) (4.59716e-09 3.02506e-12 -4.43357e-10) (5.27502e-09 -3.40707e-11 -5.42467e-10) (5.15771e-09 -2.39456e-11 -6.95542e-10) (3.98907e-09 -3.02552e-13 -5.28184e-10) (2.64408e-09 1.14833e-11 -1.69176e-10) (1.94782e-09 5.87693e-12 1.00305e-10) (2.13651e-09 -1.00299e-11 2.30556e-10) (3.40164e-09 -5.02817e-11 2.3065e-10) (6.24642e-09 -1.3483e-10 4.7049e-11) (1.10667e-08 -2.78568e-10 -3.76326e-10) (1.76963e-08 -4.84067e-10 -1.15871e-09) (2.60644e-08 -8.03126e-10 -2.42776e-09) (3.65577e-08 -1.27592e-09 -3.89867e-09) (4.84707e-08 -1.74466e-09 -4.7387e-09) (5.70444e-08 -1.75697e-09 -4.26841e-09) (5.43062e-08 -1.03871e-09 -3.08532e-09) (3.87592e-08 -1.573e-10 -2.33725e-09) (2.07015e-08 2.09238e-10 -1.86632e-09) (9.57701e-09 1.72499e-10 -1.25908e-09) (5.41467e-09 8.12504e-11 -8.14931e-10) (5.13919e-09 1.55114e-11 -6.91561e-10) (7.78566e-09 -1.00242e-10 -8.14216e-10) (1.4259e-08 -4.3788e-10 -1.173e-09) (2.46332e-08 -1.05676e-09 -2.25341e-09) (3.40913e-08 -1.37642e-09 -4.35906e-09) (3.73659e-08 -9.9549e-10 -6.16732e-09) (3.75558e-08 -5.49593e-10 -6.82088e-09) (3.76206e-08 -2.45194e-10 -6.52393e-09) (3.11433e-08 1.87246e-10 -4.06439e-09) (1.55003e-08 3.49434e-10 -4.57352e-10) (4.10118e-09 1.06973e-10 5.42966e-10) (1.03769e-09 1.17353e-11 1.83212e-10) (1.06275e-09 -2.17011e-11 -6.68615e-11) (3.11117e-09 -1.09287e-10 -5.75761e-10) (6.84645e-09 -1.07926e-10 -1.31208e-09) (9.53716e-09 1.20779e-10 -1.76352e-09) (9.52634e-09 2.63943e-10 -1.6857e-09) (7.84185e-09 2.223e-10 -1.2906e-09) (5.76511e-09 1.31466e-10 -8.8839e-10) (4.50652e-09 5.9253e-11 -5.79005e-10) (2.14664e-09 2.70485e-12 -1.62012e-10) (2.17195e-09 -5.00052e-11 -1.23621e-10) (2.25378e-09 -6.71939e-11 -1.84574e-10) (2.06253e-09 -4.14467e-11 -2.00742e-10) (1.54952e-09 -6.80447e-12 -9.75132e-11) (1.04446e-09 7.48028e-12 4.51489e-11) (9.12721e-10 1.29485e-12 1.40836e-10) (1.28693e-09 -3.01564e-11 2.03265e-10) (2.39586e-09 -1.09454e-10 2.06424e-10) (4.48628e-09 -2.6155e-10 4.42632e-11) (7.38215e-09 -4.84009e-10 -4.35903e-10) (1.06945e-08 -7.94429e-10 -1.27189e-09) (1.42804e-08 -1.20142e-09 -2.12104e-09) (1.79604e-08 -1.55095e-09 -2.33838e-09) (2.0544e-08 -1.50572e-09 -1.54406e-09) (1.94226e-08 -8.9339e-10 -2.97907e-10) (1.36071e-08 -1.69091e-10 2.36683e-10) (6.79216e-09 1.33119e-10 -1.38544e-11) (2.77306e-09 1.14009e-10 -2.44755e-10) (1.41211e-09 5.84302e-11 -2.78975e-10) (1.36201e-09 2.07611e-11 -2.86295e-10) (2.30877e-09 -6.25696e-11 -2.63602e-10) (4.6592e-09 -3.44999e-10 -6.11655e-11) (7.87869e-09 -8.28929e-10 1.62079e-10) (9.26977e-09 -9.5227e-10 -1.30318e-10) (8.22297e-09 -6.03852e-10 -6.65093e-10) (7.67635e-09 -3.64955e-10 -1.07917e-09) (9.07348e-09 -2.62244e-10 -1.58765e-09) (9.90201e-09 2.94106e-11 -1.52933e-09) (6.60666e-09 2.9462e-10 -2.38144e-10) (2.39876e-09 1.74124e-10 5.05998e-10) (6.41635e-10 2.34044e-11 2.94579e-10) (3.16974e-10 -2.1432e-11 6.68676e-11) (7.49051e-10 -8.22282e-11 -1.03585e-10) (2.03198e-09 -7.73963e-11 -4.29656e-10) (3.45751e-09 1.38955e-10 -7.11271e-10) (4.0993e-09 2.58773e-10 -7.32137e-10) (4.05914e-09 1.88611e-10 -5.56184e-10) (3.43391e-09 9.96514e-11 -3.99897e-10) (2.58642e-09 5.18599e-11 -2.77802e-10) (4.01737e-11 -1.63014e-12 5.33088e-12) (3.95963e-11 -7.0681e-12 1.14552e-11) (7.38146e-11 -1.41592e-11 1.22291e-11) (1.1719e-10 -1.42031e-11 1.79552e-12) (1.01846e-10 -4.238e-12 -3.11954e-12) (4.40916e-11 1.96911e-12 6.04238e-12) (2.27925e-11 2.01424e-12 1.34558e-11) (4.19268e-11 -1.08713e-12 2.88482e-11) (1.53267e-10 -1.75147e-11 5.55127e-11) (5.16961e-10 -7.18013e-11 5.25158e-11) (1.20179e-09 -1.77146e-10 -1.0314e-10) (1.98256e-09 -3.25455e-10 -4.61933e-10) (2.58326e-09 -4.85796e-10 -8.0738e-10) (2.91804e-09 -5.62282e-10 -8.23649e-10) (2.97302e-09 -4.51893e-10 -4.59731e-10) (2.43264e-09 -1.76624e-10 2.96276e-11) (1.17852e-09 3.18816e-11 2.12859e-10) (2.03977e-10 3.60788e-11 7.17471e-11) (2.15202e-12 3.28585e-12 1.67328e-12) (-1.56311e-11 5.65103e-12 -1.00705e-11) (-1.2534e-11 3.63597e-12 -1.94588e-11) (5.81817e-12 -7.98187e-13 -7.83582e-12) (1.13734e-10 -3.29524e-11 9.02592e-12) (4.28328e-10 -1.52042e-10 1.41249e-10) (3.72589e-10 -1.40058e-10 1.4897e-10) (9.68477e-11 -3.44907e-11 3.52293e-11) (3.43315e-11 -1.01685e-11 -3.41198e-13) (1.9491e-10 -2.24603e-11 -8.07504e-11) (7.63023e-10 3.73028e-11 -3.25815e-10) (5.7015e-10 1.12756e-10 -1.26117e-10) (9.13711e-11 4.13851e-11 6.04513e-11) (-2.38704e-11 1.7266e-11 1.30655e-10) (-5.06434e-11 -1.31681e-11 6.09329e-11) (-4.37486e-12 -5.67768e-12 9.84678e-14) (2.5915e-11 -6.73625e-12 -2.08559e-11) (2.53457e-10 4.78584e-11 -1.21067e-10) (4.85567e-10 1.02949e-10 -1.70134e-10) (4.61635e-10 5.71278e-11 -9.50781e-11) (2.87509e-10 1.40385e-11 -2.68651e-11) (1.10559e-10 2.71168e-12 -2.90354e-12) (-1.27885e-11 -2.05044e-12 7.73232e-12) (-3.8302e-11 -1.37415e-11 3.31315e-11) (-1.25992e-11 -1.29563e-11 2.22303e-11) (2.627e-12 -4.26171e-12 4.94584e-12) (6.83274e-12 -1.91992e-12 8.76238e-13) (2.02349e-12 3.38722e-13 2.04778e-13) (-4.03379e-13 8.06715e-13 1.50357e-12) (-3.15521e-12 1.28174e-12 9.14111e-12) (4.60506e-12 -2.0074e-12 1.27666e-11) (6.00725e-11 -1.77613e-11 2.08909e-11) (3.29652e-10 -8.60202e-11 -3.87313e-11) (8.04021e-10 -2.27054e-10 -2.97964e-10) (1.16439e-09 -3.86803e-10 -5.88425e-10) (1.28772e-09 -4.47827e-10 -6.3097e-10) (1.29828e-09 -3.36772e-10 -4.35056e-10) (1.13149e-09 -1.04373e-10 -1.24679e-10) (5.46109e-10 5.65711e-11 9.64906e-11) (5.26075e-11 3.30079e-11 5.42737e-11) (-7.2058e-11 3.20865e-11 3.80637e-11) (-4.0148e-10 6.42699e-11 -3.3789e-11) (-4.87313e-10 5.09065e-11 -1.87515e-10) (-1.76609e-10 5.23776e-12 -1.04581e-10) (-8.85601e-12 -6.26785e-12 -2.36252e-12) (-2.79583e-12 -4.698e-11 5.31413e-11) (-1.05501e-10 -1.16538e-10 2.14272e-10) (-5.07803e-10 -1.32274e-10 3.64052e-10) (-3.00849e-10 -7.16285e-11 1.33947e-10) (3.70072e-12 -5.94209e-12 -5.60984e-12) (6.79848e-10 2.63182e-11 -4.72935e-10) (1.14226e-09 3.22022e-10 -6.94262e-10) (1.08429e-10 8.19866e-11 -1.64307e-11) (-1.00378e-10 4.63242e-11 1.45007e-10) (-5.41143e-10 -6.07647e-11 3.52035e-10) (-4.89181e-10 -1.42133e-10 1.02804e-10) (-1.03438e-10 -2.51603e-11 -2.67804e-11) (5.97402e-12 1.52854e-11 -2.57713e-11) (1.38851e-10 8.09124e-11 -1.05867e-10) (1.55155e-10 4.37758e-11 -7.6956e-11) (4.38358e-11 3.84388e-12 -1.35661e-11) (3.4972e-13 -1.87795e-14 2.67507e-14) (-1.03634e-10 -5.53079e-12 3.98582e-11) (-4.98108e-10 -8.2066e-11 2.79707e-10) (-3.9916e-10 -1.34584e-10 2.84834e-10) (-5.37911e-11 -4.37759e-11 5.42169e-11) (4.38196e-12 -5.65572e-12 2.62437e-12) (1.96143e-11 -6.0802e-13 -6.96307e-13) (5.9914e-12 3.42341e-12 1.39511e-12) (-5.37534e-13 2.65665e-12 3.63504e-12) (-1.48266e-12 8.40577e-13 6.63536e-12) (8.38489e-12 -3.97243e-12 5.64563e-12) (1.3994e-10 -5.14349e-11 -2.09127e-11) (5.29395e-10 -2.10739e-10 -2.09014e-10) (8.72687e-10 -4.23827e-10 -4.43759e-10) (1.00159e-09 -5.30161e-10 -5.51694e-10) (1.01744e-09 -4.18251e-10 -5.32911e-10) (1.00938e-09 -1.49455e-10 -3.89082e-10) (7.40216e-10 8.5944e-11 -1.08337e-10) (1.68714e-10 7.55097e-11 4.59985e-11) (-1.47078e-11 2.31964e-11 2.69099e-11) (-2.13489e-10 4.78421e-11 1.53245e-11) (-3.89123e-10 5.83586e-11 -1.60211e-10) (-2.80386e-10 3.2657e-11 -2.24501e-10) (-8.15172e-11 -1.52229e-11 -4.66621e-11) (-2.32162e-10 -1.07037e-10 1.29757e-10) (-2.55512e-09 -5.86271e-10 1.54029e-09) (-5.73943e-09 -8.08064e-10 2.84542e-09) (-1.50928e-09 -4.28157e-10 8.85535e-10) (2.38973e-11 -4.70314e-11 1.58224e-11) (1.14737e-09 -7.23843e-11 -6.33073e-10) (2.85824e-09 7.51393e-10 -1.98362e-09) (1.47304e-09 7.47807e-10 -7.72699e-10) (6.03271e-11 6.81829e-11 3.10748e-11) (-1.97084e-10 -1.03e-11 2.00986e-10) (-1.00547e-09 -2.91048e-10 3.12162e-10) (-9.56838e-10 -1.98943e-10 -1.90289e-12) (-8.41812e-11 2.76737e-11 -3.73372e-11) (7.25947e-11 8.2909e-11 -7.45064e-11) (2.47241e-10 9.82636e-11 -1.42594e-10) (9.71309e-11 1.63453e-11 -5.32787e-11) (1.70877e-13 6.67194e-14 -3.6408e-13) (-6.8793e-10 2.08929e-11 2.27043e-10) (-2.338e-09 -2.52733e-10 1.11678e-09) (-1.52121e-09 -4.56958e-10 8.22336e-10) (-1.76038e-10 -1.5458e-10 1.07692e-10) (1.35848e-11 -3.14901e-11 5.11421e-12) (5.5162e-11 -1.27851e-11 2.77373e-12) (4.06138e-11 1.42581e-11 8.68086e-12) (9.85091e-12 1.30251e-11 7.08689e-12) (1.04089e-12 3.56749e-12 2.4015e-12) (3.39885e-12 -1.59606e-13 4.32295e-13) (8.75647e-11 -3.38177e-11 -1.50691e-11) (4.05851e-10 -2.01427e-10 -9.13033e-11) (7.79992e-10 -4.81291e-10 -2.1754e-10) (8.67612e-10 -6.10303e-10 -3.79134e-10) (6.74356e-10 -4.25962e-10 -4.67212e-10) (5.34517e-10 -1.40402e-10 -4.20145e-10) (4.62406e-10 7.53655e-11 -2.58229e-10) (1.7767e-10 9.37694e-11 -4.05226e-11) (7.72455e-13 1.44822e-11 6.03591e-12) (-8.46936e-11 2.19276e-11 7.86798e-12) (-1.50613e-10 2.93446e-11 -7.91116e-11) (-1.37086e-10 5.06919e-11 -1.94676e-10) (-1.31029e-10 1.74884e-11 -9.97304e-11) (-1.4109e-09 -1.36661e-10 3.79493e-10) (-1.08802e-08 -1.17014e-09 4.60758e-09) (-1.42414e-08 -2.13515e-09 6.87519e-09) (-2.5043e-09 -1.20022e-09 2.09198e-09) (2.3838e-10 -3.16679e-10 1.93494e-10) (1.93241e-09 -2.9076e-10 -7.88756e-10) (3.34573e-09 9.16539e-10 -2.60591e-09) (2.62801e-09 1.55763e-09 -1.85439e-09) (6.77292e-10 4.75411e-10 -1.4516e-10) (2.5549e-12 1.55567e-11 3.935e-11) (-8.82728e-10 -2.38167e-10 2.98892e-10) (-2.92128e-09 -5.67368e-10 1.0981e-10) (-8.01858e-10 4.12395e-11 -1.00369e-10) (5.72811e-12 4.62723e-11 -3.13508e-11) (2.79619e-10 1.45535e-10 -1.44874e-10) (1.30333e-10 4.83265e-11 -8.18425e-11) (-6.71235e-12 3.63876e-12 -2.91724e-12) (-1.58343e-09 1.45454e-10 6.52314e-10) (-3.24416e-09 -4.22308e-10 1.69811e-09) (-1.26527e-09 -6.18409e-10 7.13304e-10) (-7.44322e-11 -2.20999e-10 6.31189e-11) (1.15122e-10 -1.39588e-10 -6.04596e-12) (1.58543e-10 -4.65261e-11 2.52861e-12) (6.6666e-11 2.20341e-11 1.86535e-11) (1.78307e-11 3.08054e-11 1.59899e-11) (5.51195e-12 1.59817e-11 4.28717e-12) (1.4561e-11 5.50565e-12 -1.43981e-12) (1.28535e-10 -3.41449e-11 -1.08916e-12) (5.37206e-10 -2.78762e-10 3.17405e-11) (1.0451e-09 -7.04791e-10 -2.72219e-11) (9.06365e-10 -7.4608e-10 -2.66312e-10) (3.80146e-10 -3.57626e-10 -3.34913e-10) (1.46291e-10 -8.07758e-11 -2.47991e-10) (1.19358e-10 4.72013e-11 -1.65697e-10) (7.24062e-11 7.30294e-11 -6.39298e-11) (-3.2541e-12 1.45547e-11 -4.3961e-12) (-9.61985e-11 1.22133e-11 -1.4044e-11) (-1.37849e-10 1.08951e-11 -8.44834e-11) (-7.81933e-11 6.17758e-11 -1.66118e-10) (-1.32134e-10 8.64722e-11 -1.0384e-10) (-2.58828e-09 2.45936e-10 6.4153e-10) (-1.77206e-08 -1.00085e-09 6.99917e-09) (-1.92897e-08 -3.60421e-09 1.00777e-08) (-3.40268e-09 -2.48611e-09 3.73125e-09) (6.56119e-10 -9.82122e-10 6.63116e-10) (3.12889e-09 -6.83918e-10 -9.4797e-10) (3.82553e-09 9.63999e-10 -3.16838e-09) (2.61668e-09 1.96534e-09 -2.50542e-09) (1.01828e-09 9.04158e-10 -4.36151e-10) (5.47738e-11 6.25719e-11 3.33956e-11) (-5.98438e-10 -1.05405e-10 1.62777e-10) (-4.59408e-09 -8.10085e-10 1.15648e-10) (-2.30677e-09 -7.41428e-11 -9.44686e-11) (-4.15333e-11 3.55545e-11 -2.0649e-11) (1.6142e-10 1.24038e-10 -8.81883e-11) (7.97373e-11 7.09525e-11 -5.54444e-11) (-7.31594e-11 4.45002e-11 6.26306e-12) (-1.84951e-09 2.20817e-10 1.04247e-09) (-1.9187e-09 -4.6267e-10 1.29775e-09) (-4.07542e-10 -5.1566e-10 3.73919e-10) (1.13008e-10 -4.27436e-10 5.69181e-11) (4.97219e-10 -4.16857e-10 -7.78957e-11) (5.81066e-10 -1.49535e-10 -8.09265e-11) (2.69879e-10 5.64364e-11 2.88275e-12) (6.42248e-11 6.84964e-11 2.78909e-11) (1.28975e-11 3.97756e-11 2.0039e-11) (1.73566e-11 1.23784e-11 1.12475e-11) (1.77872e-10 -4.27741e-11 5.75242e-11) (8.49909e-10 -4.54287e-10 1.93922e-10) (1.39128e-09 -9.99782e-10 1.00228e-10) (8.66043e-10 -8.09126e-10 -1.95348e-10) (1.78092e-10 -2.51439e-10 -1.89249e-10) (4.12525e-12 -3.25203e-11 -9.38115e-11) (-3.13859e-12 2.81966e-11 -6.42304e-11) (4.21489e-12 5.75305e-11 -4.60939e-11) (-2.96739e-11 3.12471e-11 -2.25908e-11) (-2.82688e-10 7.42528e-13 -8.4541e-11) (-4.1503e-10 -2.1746e-11 -2.07204e-10) (-1.48088e-10 9.39995e-11 -1.90242e-10) (-1.80428e-10 2.27079e-10 -1.12799e-10) (-2.71343e-09 8.33201e-10 7.67215e-10) (-1.74059e-08 -3.41667e-11 7.10265e-09) (-1.69339e-08 -4.01763e-09 9.76284e-09) (-3.05788e-09 -3.50351e-09 4.26381e-09) (8.10805e-10 -1.98562e-09 1.37618e-09) (2.35988e-09 -8.69242e-10 -2.9587e-10) (3.91713e-09 8.85472e-10 -2.96094e-09) (2.41634e-09 2.1324e-09 -3.02886e-09) (8.06777e-10 1.09455e-09 -6.97083e-10) (4.61825e-11 1.15215e-10 7.74769e-12) (-5.47467e-10 -1.1642e-11 8.86948e-11) (-5.05684e-09 -7.42399e-10 1.62131e-10) (-3.86748e-09 -2.63965e-10 2.5637e-10) (-2.35191e-10 5.89165e-11 6.70468e-12) (3.04611e-11 6.59313e-11 -3.2288e-11) (1.84523e-11 8.93057e-11 -3.13949e-11) (-2.7761e-10 1.82159e-10 9.7162e-11) (-1.11207e-09 1.12669e-10 9.44789e-10) (-6.00187e-10 -4.19797e-10 7.78038e-10) (3.76056e-11 -6.20488e-10 3.39593e-10) (7.20117e-10 -9.46236e-10 2.10082e-11) (1.54467e-09 -9.45477e-10 -4.08454e-10) (1.59923e-09 -3.61634e-10 -4.78886e-10) (8.77169e-10 1.11987e-10 -1.95134e-10) (2.88375e-10 1.68054e-10 -7.80159e-13) (8.85166e-11 9.2676e-11 4.52329e-11) (7.70921e-11 3.43596e-11 6.06357e-11) (3.19451e-10 -8.93394e-11 1.67554e-10) (1.02535e-09 -6.20113e-10 3.3037e-10) (1.3298e-09 -1.08279e-09 1.91557e-10) (6.74802e-10 -7.04542e-10 -6.41779e-11) (8.42028e-11 -1.46362e-10 -6.39356e-11) (-1.2786e-11 -1.00342e-11 -2.11324e-11) (-3.89611e-11 2.84081e-11 -3.03864e-11) (-3.9862e-11 7.20006e-11 -3.69043e-11) (-9.87689e-11 6.8353e-11 -5.57622e-11) (-7.49636e-10 -1.9813e-11 -2.55383e-10) (-1.42606e-09 -1.34242e-10 -5.23098e-10) (-4.78877e-10 1.8247e-10 -2.83928e-10) (-3.37238e-10 5.43274e-10 -1.16482e-10) (-2.22605e-09 1.41264e-09 7.28004e-10) (-1.01947e-08 9.20792e-10 4.3786e-09) (-7.74955e-09 -2.69564e-09 4.87653e-09) (-1.45787e-09 -3.38237e-09 2.91744e-09) (6.13723e-10 -3.01428e-09 2.17308e-09) (9.0864e-10 -7.47405e-10 3.6936e-10) (2.04886e-09 3.91723e-10 -1.19879e-09) (2.08778e-09 2.00825e-09 -2.95371e-09) (5.33376e-10 1.25323e-09 -1.05828e-09) (-2.33601e-11 1.85067e-10 -5.24451e-11) (-6.58729e-10 7.75831e-11 3.61798e-11) (-4.50739e-09 -4.49374e-10 3.61754e-10) (-4.93611e-09 -3.52363e-10 1.02972e-09) (-9.97226e-10 1.1388e-10 2.82006e-10) (-6.79625e-11 9.53005e-11 -7.40637e-12) (-7.41287e-11 1.74946e-10 -1.3508e-11) (-4.41723e-10 3.06722e-10 2.44094e-10) (-2.15935e-10 -4.00502e-11 5.16952e-10) (1.19817e-10 -4.9946e-10 5.84864e-10) (8.84961e-10 -1.21319e-09 4.1863e-10) (2.1959e-09 -1.81092e-09 -3.52243e-10) (3.38014e-09 -1.60336e-09 -1.33039e-09) (3.0447e-09 -5.68146e-10 -1.39766e-09) (1.54622e-09 1.69314e-10 -6.58895e-10) (5.36494e-10 2.36335e-10 -1.48224e-10) (2.23369e-10 1.27669e-10 1.57438e-11) (2.28708e-10 4.04594e-11 8.88425e-11) (5.09945e-10 -1.67768e-10 2.27607e-10) (1.04673e-09 -7.00068e-10 3.92471e-10) (1.29809e-09 -1.08269e-09 3.86318e-10) (7.43693e-10 -6.63641e-10 1.90605e-10) (9.19019e-11 -1.01305e-10 2.5121e-11) (-6.42118e-12 -1.75227e-12 1.01307e-13) (-1.02966e-10 4.91188e-11 -1.02624e-11) (-1.14469e-10 1.14573e-10 -3.08195e-11) (-1.75152e-10 1.2188e-10 -8.66453e-11) (-1.24948e-09 2.14817e-11 -4.53062e-10) (-3.58208e-09 -3.12259e-10 -9.99529e-10) (-1.7123e-09 3.97293e-10 -4.62174e-10) (-6.89753e-10 1.06828e-09 -7.55217e-11) (-1.32269e-09 1.75576e-09 4.78989e-10) (-2.27824e-09 7.13512e-10 9.92002e-10) (-1.31198e-09 -8.98633e-10 8.6665e-10) (-4.74595e-10 -2.71273e-09 1.57624e-09) (2.19343e-10 -3.50191e-09 2.80335e-09) (4.52167e-10 -1.12747e-09 1.17807e-09) (4.79564e-10 3.6901e-11 -1.01517e-10) (1.46678e-09 1.44189e-09 -2.03719e-09) (3.43538e-10 1.41017e-09 -1.50854e-09) (-2.21309e-10 3.4925e-10 -2.43219e-10) (-9.80037e-10 1.74654e-10 -5.09733e-11) (-3.4511e-09 -1.2283e-10 5.30344e-10) (-4.64882e-09 -1.01663e-10 1.7673e-09) (-2.43394e-09 3.05244e-10 1.12882e-09) (-6.44129e-10 3.63607e-10 1.84621e-10) (-3.17002e-10 3.40868e-10 8.22573e-11) (-3.07709e-10 2.40654e-10 2.86932e-10) (3.0934e-10 -1.96271e-10 4.19316e-10) (1.1971e-09 -1.08035e-09 7.00335e-10) (2.17382e-09 -1.92043e-09 1.5807e-10) (3.61134e-09 -2.37134e-09 -1.19822e-09) (5.32323e-09 -2.02875e-09 -2.92975e-09) (4.64319e-09 -5.82262e-10 -2.97355e-09) (1.94224e-09 3.20514e-10 -1.29725e-09) (4.67855e-10 2.27004e-10 -2.88799e-10) (1.32974e-10 6.4112e-11 -3.77137e-11) (1.61001e-10 -1.15612e-11 2.36402e-11) (5.11094e-10 -2.62373e-10 1.62831e-10) (1.23368e-09 -8.70291e-10 4.59609e-10) (1.89006e-09 -1.33452e-09 8.28668e-10) (1.42374e-09 -8.61291e-10 8.01189e-10) (2.69149e-10 -1.4395e-10 2.41996e-10) (-1.76441e-11 1.66336e-12 2.53728e-11) (-2.96887e-10 1.03901e-10 3.67282e-11) (-3.4211e-10 2.08925e-10 -2.73571e-11) (-2.72617e-10 1.97733e-10 -1.14765e-10) (-1.29433e-09 1.68449e-10 -5.16845e-10) (-5.69429e-09 -2.84355e-10 -1.36599e-09) (-4.72932e-09 7.22863e-10 -6.60755e-10) (-1.29478e-09 1.60408e-09 -2.64878e-11) (-5.06004e-10 1.9394e-09 1.57966e-10) (-1.04019e-10 2.15825e-10 2.85343e-11) (-2.44814e-11 -1.28974e-10 9.89714e-12) (-1.90006e-11 -1.64816e-09 5.83e-10) (-2.49095e-10 -3.36222e-09 3.06896e-09) (-7.6722e-11 -2.13229e-09 3.07615e-09) (1.21514e-10 -5.79404e-11 1.39e-10) (7.62851e-10 7.05796e-10 -9.01318e-10) (4.41609e-10 1.48399e-09 -1.88604e-09) (-4.81073e-10 5.32416e-10 -6.55187e-10) (-1.57139e-09 2.48542e-10 -2.72756e-10) (-3.06217e-09 7.84341e-11 5.78538e-10) (-3.63384e-09 3.07549e-10 2.08267e-09) (-3.15203e-09 7.14506e-10 2.17037e-09) (-1.63151e-09 7.18061e-10 8.31603e-10) (-4.19994e-10 3.43328e-10 2.38899e-10) (-1.63477e-11 6.11346e-11 1.39438e-10) (1.07139e-09 -5.59394e-10 4.87508e-10) (1.66873e-09 -1.29164e-09 4.2576e-10) (1.94764e-09 -1.63233e-09 -2.49673e-10) (3.60227e-09 -2.14878e-09 -1.91138e-09) (6.44633e-09 -2.01987e-09 -4.7652e-09) (5.72295e-09 -3.51404e-10 -4.89443e-09) (2.00474e-09 5.36279e-10 -1.96158e-09) (3.46366e-10 2.36383e-10 -4.05956e-10) (5.87558e-11 2.88847e-11 -6.2532e-11) (8.62586e-11 -4.34137e-11 -1.99561e-11) (5.38689e-10 -4.36791e-10 1.0287e-10) (1.72014e-09 -1.35252e-09 6.82539e-10) (2.89815e-09 -1.85035e-09 1.70131e-09) (2.38369e-09 -1.09368e-09 1.9696e-09) (5.94835e-10 -1.72343e-10 8.09804e-10) (-5.04945e-11 2.20072e-11 1.28628e-10) (-6.38431e-10 1.75805e-10 1.30676e-10) (-9.80573e-10 3.67367e-10 -1.18796e-11) (-5.57018e-10 3.33924e-10 -1.55023e-10) (-1.07481e-09 3.38911e-10 -4.67238e-10) (-5.48955e-09 1.59992e-10 -1.36668e-09) (-8.49236e-09 9.2997e-10 -9.55024e-10) (-2.43406e-09 1.86687e-09 -8.1674e-11) (-1.19936e-10 1.85732e-09 -9.85134e-11) (2.50658e-10 4.43035e-10 -1.5573e-10) (1.30826e-10 -8.48726e-11 -9.37267e-11) (1.17845e-10 -6.15397e-10 8.53156e-11) (-2.93766e-10 -2.0949e-09 2.06458e-09) (-7.7777e-10 -2.89629e-09 4.89839e-09) (2.12787e-11 -3.52498e-10 8.30343e-10) (2.22615e-10 1.69721e-10 -1.83069e-10) (8.2123e-10 1.24237e-09 -1.87464e-09) (-2.15975e-10 5.62866e-10 -1.02708e-09) (-1.34294e-09 2.22564e-10 -5.49417e-10) (-3.41743e-09 2.50418e-10 3.4905e-10) (-3.44008e-09 6.82119e-10 2.18058e-09) (-2.75853e-09 1.17037e-09 2.90402e-09) (-1.39296e-09 7.69904e-10 1.37121e-09) (-1.56541e-10 1.451e-10 2.33749e-10) (1.43283e-10 -1.65622e-11 1.44469e-10) (6.39853e-10 -5.2587e-10 2.43076e-10) (5.02313e-10 -6.32799e-10 8.24972e-11) (7.08964e-10 -8.0274e-10 -3.37012e-10) (2.59227e-09 -1.4801e-09 -2.17572e-09) (6.16816e-09 -1.52809e-09 -5.97275e-09) (5.42102e-09 -5.0096e-11 -5.95848e-09) (1.64467e-09 5.59599e-10 -2.19207e-09) (2.62178e-10 2.06799e-10 -4.59907e-10) (7.84107e-11 1.3781e-11 -1.33765e-10) (1.87918e-10 -1.46409e-10 -1.30817e-10) (8.293e-10 -7.96133e-10 -2.2447e-11) (2.29616e-09 -1.93741e-09 9.33253e-10) (3.6371e-09 -2.25125e-09 2.66594e-09) (2.95004e-09 -1.12819e-09 3.04795e-09) (8.54847e-10 -1.30491e-10 1.33989e-09) (-3.22753e-11 3.82052e-11 2.15228e-10) (-6.07578e-10 1.62427e-10 1.81711e-10) (-1.67288e-09 4.48898e-10 8.18616e-11) (-1.28151e-09 5.18949e-10 -1.5596e-10) (-1.07407e-09 4.86275e-10 -4.0951e-10) (-3.41752e-09 6.09538e-10 -1.03782e-09) (-9.12593e-09 1.07281e-09 -1.29756e-09) (-5.28014e-09 2.00087e-09 -3.42388e-10) (-4.54123e-10 1.15339e-09 -1.38638e-10) (4.29974e-10 5.87235e-10 -2.36978e-10) (3.47851e-10 1.20922e-11 -1.89635e-10) (1.00224e-10 -1.50077e-10 -2.32368e-11) (-6.0665e-11 -7.24608e-10 7.48887e-10) (-7.2467e-10 -2.32034e-09 4.39266e-09) (-2.87581e-10 -8.75766e-10 2.09517e-09) (2.33455e-11 6.78582e-12 -2.12789e-12) (8.75235e-10 6.0015e-10 -1.28112e-09) (5.5855e-10 5.93006e-10 -1.49153e-09) (-3.20667e-10 1.48333e-10 -4.87878e-10) (-2.95594e-09 4.60301e-10 -3.15274e-10) (-4.66538e-09 1.2913e-09 1.73359e-09) (-2.50797e-09 1.57586e-09 3.14729e-09) (-6.32802e-10 6.97352e-10 1.75336e-09) (4.50992e-11 4.36606e-11 3.4135e-10) (3.25317e-10 -1.69172e-10 2.25309e-10) (1.29673e-11 -3.00174e-10 1.27599e-10) (-4.06232e-11 -2.71101e-10 -1.79858e-11) (1.76009e-10 -3.75783e-10 -3.4419e-10) (1.80382e-09 -8.38883e-10 -2.22179e-09) (4.66983e-09 -7.2747e-10 -5.47141e-09) (3.94964e-09 2.2609e-11 -5.01744e-09) (1.23287e-09 1.81061e-10 -1.8244e-09) (2.40248e-10 4.19021e-11 -4.21031e-10) (1.55181e-10 -4.78275e-11 -2.25596e-10) (4.06676e-10 -2.70842e-10 -2.94431e-10) (1.13851e-09 -8.91956e-10 -1.05057e-10) (2.52438e-09 -1.83559e-09 1.10917e-09) (3.62167e-09 -1.99214e-09 2.91263e-09) (2.70279e-09 -9.19863e-10 2.69674e-09) (8.46856e-10 -1.23078e-10 9.75976e-10) (4.53191e-11 1.57132e-11 1.25802e-10) (-1.60701e-10 6.6444e-11 9.10344e-11) (-1.13767e-09 3.44519e-10 2.0885e-10) (-1.77034e-09 5.57446e-10 5.91494e-11) (-1.2752e-09 5.19367e-10 -2.65502e-10) (-1.78073e-09 6.29731e-10 -6.24889e-10) (-5.09659e-09 1.04667e-09 -1.11269e-09) (-7.2012e-09 1.66026e-09 -7.68989e-10) (-1.97809e-09 1.11764e-09 -1.98744e-10) (-2.04722e-11 2.65769e-10 -7.25607e-11) (1.51988e-10 8.7176e-11 -8.40952e-11) (5.13144e-11 -2.01772e-11 -1.87452e-11) (4.97394e-11 -1.64036e-10 1.98673e-10) (-7.59631e-11 -1.20176e-09 2.65446e-09) (-3.17597e-10 -1.09613e-09 2.85302e-09) (2.22269e-11 -4.51912e-11 7.8853e-11) (5.26158e-10 7.26283e-12 -6.0688e-10) (1.26175e-09 2.60716e-10 -1.80396e-09) (1.52521e-10 1.99651e-10 -7.52426e-10) (-1.64086e-09 6.4052e-10 -7.57528e-10) (-6.7153e-09 2.46444e-09 3.7477e-10) (-3.08816e-09 1.86759e-09 2.41683e-09) (-2.2167e-10 5.86052e-10 2.12399e-09) (3.78156e-10 -1.58623e-10 1.06412e-09) (2.14354e-10 -3.31765e-10 3.81549e-10) (-1.20553e-10 -3.00289e-10 1.64455e-10) (-1.34653e-10 -2.0753e-10 -4.76554e-11) (2.814e-12 -1.72502e-10 -2.52766e-10) (7.57674e-10 -2.65903e-10 -1.2454e-09) (2.52796e-09 -2.16984e-10 -3.02112e-09) (2.69626e-09 -2.0918e-10 -3.0438e-09) (1.19075e-09 -2.69659e-10 -1.41971e-09) (3.47604e-10 -2.11573e-10 -4.6512e-10) (2.08508e-10 -1.65908e-10 -2.32849e-10) (3.64148e-10 -2.12735e-10 -1.66532e-10) (9.28141e-10 -4.59386e-10 1.12565e-10) (2.16833e-09 -1.00034e-09 1.18925e-09) (2.99967e-09 -1.21089e-09 2.12009e-09) (2.04862e-09 -6.69293e-10 1.21332e-09) (6.88286e-10 -1.63798e-10 2.39555e-10) (8.81524e-11 -6.37342e-12 2.10922e-11) (-2.77676e-12 1.0132e-11 1.16364e-11) (-2.43733e-10 1.54573e-10 1.52706e-10) (-8.50933e-10 3.61502e-10 2.68845e-10) (-9.49169e-10 3.46799e-10 5.90065e-12) (-9.0307e-10 3.84971e-10 -2.81064e-10) (-1.82147e-09 6.91392e-10 -5.8498e-10) (-4.08018e-09 1.03295e-09 -6.35048e-10) (-3.9374e-09 8.494e-10 -2.09781e-10) (-8.62982e-10 2.92988e-10 -2.8375e-11) (-1.95726e-11 2.09788e-11 -8.88816e-12) (4.38307e-12 8.05137e-13 -3.35275e-12) (2.47223e-11 -1.58459e-11 2.91991e-11) (1.65075e-10 -3.09154e-10 1.10898e-09) (-7.21906e-11 -8.2423e-10 3.03526e-09) (8.29479e-11 -3.16684e-10 5.87473e-10) (4.35472e-10 -3.15692e-10 -2.8035e-10) (1.52864e-09 -5.35705e-10 -1.81279e-09) (5.52643e-10 1.86928e-10 -1.30137e-09) (-1.12012e-09 1.02053e-09 -1.21695e-09) (-8.35323e-09 4.199e-09 -1.69841e-09) (-5.5421e-09 2.7744e-09 1.32312e-09) (-5.28269e-10 4.11927e-10 1.65539e-09) (4.80807e-10 -4.31186e-10 1.91044e-09) (1.34642e-10 -5.3169e-10 7.7562e-10) (4.53615e-11 -1.61399e-10 1.80657e-10) (-6.64756e-12 -2.70009e-11 2.19259e-11) (-1.72557e-12 -2.60365e-12 -9.37195e-13) (1.84293e-11 -5.56765e-12 -3.12854e-11) (2.68482e-10 -4.02201e-11 -2.475e-10) (7.84194e-10 -2.34482e-10 -6.21469e-10) (9.453e-10 -5.66943e-10 -8.16656e-10) (6.53837e-10 -6.4155e-10 -6.75158e-10) (3.26594e-10 -3.02754e-10 -3.04943e-10) (2.27865e-10 -9.5654e-11 -7.11432e-11) (5.3732e-10 -9.2433e-11 1.36908e-10) (1.45931e-09 -3.05918e-10 6.70547e-10) (2.19364e-09 -6.88425e-10 7.61086e-10) (1.8116e-09 -6.5261e-10 5.66451e-11) (9.09205e-10 -2.90297e-10 -3.31611e-10) (2.23392e-10 -3.58047e-11 -1.51415e-10) (1.11446e-11 7.12526e-12 -3.65572e-12) (-1.86704e-11 7.00685e-11 7.17849e-11) (-1.64277e-10 1.99086e-10 2.31626e-10) (-2.57878e-10 1.6049e-10 1.18663e-10) (-2.74157e-10 1.25258e-10 -6.39502e-11) (-3.49061e-10 1.93504e-10 -2.13378e-10) (-5.59157e-10 2.84255e-10 -2.18861e-10) (-1.31486e-09 3.47235e-10 -6.45478e-11) (-2.15111e-09 1.60899e-10 1.98676e-10) (-1.40787e-09 -6.73291e-11 1.30607e-10) (-3.34342e-10 -4.67348e-11 -6.89714e-12) (-1.15133e-11 -2.59725e-13 3.14505e-12) (7.9211e-11 4.69734e-11 2.80557e-10) (5.02359e-10 -5.63242e-11 2.21547e-09) (5.44323e-10 -6.63823e-10 1.78866e-09) (6.33769e-10 -7.77861e-10 1.13705e-10) (1.42288e-09 -1.29254e-09 -1.4699e-09) (7.13272e-10 -1.38129e-10 -1.51937e-09) (-7.25827e-10 1.38063e-09 -1.62439e-09) (-7.48526e-09 5.80924e-09 -3.46628e-09) (-9.18826e-09 4.67578e-09 -1.39706e-09) (-1.43923e-09 4.28392e-10 4.84732e-10) (-5.94328e-11 -1.8083e-10 4.74978e-10) (1.66764e-10 -3.74423e-10 5.26593e-10) (-2.70181e-11 -1.50577e-10 3.37436e-10) (5.69983e-11 1.38842e-11 5.85351e-10) (1.18511e-10 5.51093e-11 3.86211e-10) (1.05768e-10 -4.57587e-12 1.2691e-10) (1.54725e-10 -5.27875e-11 4.29253e-11) (3.17617e-10 -1.58123e-10 -4.77285e-11) (4.38173e-10 -2.76182e-10 -1.84978e-10) (3.62735e-10 -2.7474e-10 -2.5622e-10) (2.11672e-10 -1.6673e-10 -1.96405e-10) (1.27011e-10 -6.24441e-11 -6.75355e-11) (2.13199e-10 -5.06541e-11 1.23665e-11) (6.28384e-10 -1.54159e-10 1.29763e-10) (1.23115e-09 -3.84523e-10 5.48784e-11) (1.44651e-09 -4.74851e-10 -3.89742e-10) (9.97916e-10 -2.90938e-10 -6.60842e-10) (3.04742e-10 -5.51605e-11 -3.32931e-10) (1.96325e-11 1.19253e-11 -3.04445e-11) (-4.56187e-12 4.9014e-11 2.10608e-11) (-3.35665e-11 1.99669e-10 1.67382e-10) (-4.26365e-11 1.44206e-10 1.11614e-10) (-3.19579e-11 3.37774e-11 -2.87774e-12) (-7.57308e-11 2.68858e-11 -7.93562e-11) (-9.27374e-11 2.91167e-11 -8.6208e-11) (-1.49066e-10 5.46759e-11 -1.82763e-11) (-6.51413e-10 1.45461e-10 1.73313e-10) (-1.69356e-09 7.41565e-11 4.42309e-10) (-1.79876e-09 -1.33685e-10 2.83045e-10) (-6.48358e-10 -3.84917e-11 7.42131e-11) (-5.18489e-11 3.61506e-11 7.3913e-11) (3.4482e-10 2.28447e-10 9.21139e-10) (1.09154e-09 -2.56826e-10 2.09339e-09) (8.56187e-10 -9.96698e-10 8.52365e-10) (6.8124e-10 -1.25274e-09 -4.31297e-10) (3.30952e-10 -5.04402e-10 -9.21644e-10) (-6.133e-11 5.31487e-10 -8.76798e-10) (-2.29128e-09 3.92211e-09 -2.38844e-09) (-5.17586e-09 4.86641e-09 -3.01595e-09) (-2.27966e-09 9.35361e-10 -1.13623e-09) (-3.65563e-10 -1.58747e-10 -1.4022e-10) (-9.69198e-11 -2.05094e-10 7.7902e-11) (-5.15697e-10 -2.63656e-10 1.52791e-10) (-3.72258e-10 -1.2117e-10 8.54951e-10) (1.26686e-10 -2.41512e-11 1.39238e-09) (3.93055e-10 -6.35634e-11 8.19785e-10) (2.02416e-10 -5.94438e-11 1.76091e-10) (1.14455e-10 -5.68764e-11 -2.01317e-11) (2.50338e-10 -1.76143e-10 -2.72352e-10) (4.059e-10 -3.09681e-10 -6.13413e-10) (3.05455e-10 -1.89674e-10 -4.47924e-10) (1.14335e-10 -3.3585e-11 -1.01406e-10) (7.89939e-11 -3.6856e-12 6.91016e-12) (2.76167e-10 -2.31245e-11 1.38512e-10) (6.6712e-10 -1.1898e-10 2.28374e-10) (9.38773e-10 -2.15518e-10 9.5817e-12) (7.7695e-10 -2.04232e-10 -2.46333e-10) (2.47355e-10 -7.15369e-11 -1.59594e-10) (7.56086e-12 1.62764e-12 -1.69855e-11) (-3.98176e-11 5.332e-11 -7.68228e-12) (-1.18996e-10 2.48445e-10 4.52574e-11) (-4.56273e-11 2.66229e-10 5.40148e-11) (-9.10074e-14 7.89566e-11 -6.23598e-12) (-1.09479e-11 1.17171e-11 -2.43205e-11) (-9.96802e-11 -1.86357e-11 -7.02517e-11) (-3.05664e-10 -3.26242e-11 -2.85629e-11) (-5.07319e-10 4.2601e-11 1.65957e-10) (-5.79898e-10 1.14447e-10 3.54495e-10) (-4.64508e-10 6.49012e-11 3.07412e-10) (-2.59657e-10 6.5701e-12 1.33314e-10) (-8.03565e-11 1.08071e-11 4.36074e-11) (-4.06407e-12 2.66662e-11 7.78879e-11) (2.47236e-10 4.8737e-12 4.7245e-10) (4.97461e-10 -3.59751e-10 6.21882e-10) (2.3559e-10 -4.73267e-10 1.55784e-10) (5.2768e-12 -1.95103e-10 -7.97363e-11) (-2.11877e-11 2.5501e-11 -9.00521e-11) (-3.89919e-11 9.26003e-10 -5.57095e-10) (-1.81899e-10 1.98862e-09 -1.33567e-09) (-2.87705e-10 8.37334e-10 -1.25702e-09) (-3.34664e-10 -7.83765e-11 -8.68821e-10) (-5.26999e-10 -3.84192e-10 -4.34539e-10) (-2.79228e-10 -1.39925e-10 -2.28978e-10) (-1.69229e-10 -1.17737e-10 4.29571e-11) (-1.09938e-11 -1.50825e-10 2.30683e-10) (3.65675e-10 -2.33569e-10 5.52918e-10) (6.36851e-10 -1.9162e-10 5.809e-10) (4.10189e-10 -1.03663e-10 2.57995e-10) (8.6584e-11 -3.93519e-11 2.69514e-11) (3.64704e-12 -1.67788e-11 -1.35635e-11) (-6.13216e-11 -4.13336e-11 -9.54763e-11) (-1.18107e-10 -1.57703e-11 -1.54244e-10) (-3.46498e-11 1.09554e-11 -5.80282e-11) (5.37589e-12 3.88986e-12 -5.39166e-12) (1.38846e-10 4.25837e-12 1.36444e-11) (5.59589e-10 -7.76257e-11 5.44413e-11) (7.03331e-10 -1.73678e-10 9.21133e-12) (2.60123e-10 -8.91179e-11 -1.81718e-11) (3.07089e-12 -1.40788e-12 -1.49898e-12) (-1.08864e-10 6.33961e-11 -2.37712e-11) (-5.38884e-10 4.7035e-10 -9.76656e-11) (-4.58132e-10 7.18574e-10 -1.44506e-10) (-8.53859e-11 4.40425e-10 -1.41489e-10) (1.6532e-11 1.15447e-10 -8.2326e-11) (-5.92181e-12 5.27116e-12 -2.05945e-11) (-1.06703e-10 -4.33756e-11 -1.54809e-11) (-4.5533e-10 -1.56576e-10 1.29426e-10) (-4.98219e-10 -1.25352e-10 3.29699e-10) (-2.53116e-10 -1.9395e-11 2.97728e-10) (-9.67151e-11 3.00647e-11 1.18957e-10) (-6.80508e-11 4.27506e-11 2.51237e-11) (-7.46803e-11 5.76305e-11 3.44268e-12) (-1.93049e-11 2.09582e-11 2.33813e-11) (2.83764e-11 -1.55235e-11 1.07225e-10) (1.10104e-10 -1.24903e-10 1.82022e-10) (5.78295e-11 -7.82816e-11 5.83723e-11) (6.53207e-12 -2.60988e-12 2.95176e-13) (5.11316e-11 6.77194e-11 -4.51338e-11) (2.8222e-10 3.64869e-10 -3.29281e-10) (4.60985e-10 3.94652e-10 -7.57515e-10) (2.69434e-10 1.04079e-10 -9.45325e-10) (-1.19605e-10 -1.00839e-10 -6.55771e-10) (2.05961e-11 -5.56433e-11 -5.32206e-11) (3.89037e-11 -1.32757e-10 -5.29645e-11) (8.30986e-11 -1.77933e-10 -2.76902e-11) (8.76946e-11 -8.55746e-11 6.75377e-12) (7.69272e-11 -1.34694e-11 3.50921e-11) (6.27084e-11 2.66036e-11 8.07446e-11) (-6.12274e-12 2.76126e-11 9.92217e-11) (-1.24464e-10 -2.60118e-12 1.03813e-10) (-3.51957e-10 -8.0075e-11 5.21999e-11) (-4.03076e-10 -1.31159e-10 -7.3839e-11) (-1.39834e-10 -6.39396e-11 -6.1856e-11) (-2.74151e-12 -5.86552e-12 -5.19898e-12) (5.28556e-11 -1.10222e-11 1.94724e-13) (3.16679e-10 -3.80246e-11 2.54621e-11) (4.91724e-10 -7.92593e-11 2.83838e-11) (2.66746e-10 -5.30138e-11 8.41812e-12) (1.71156e-11 -1.296e-12 -1.58055e-12) (-4.30464e-11 2.96719e-11 -1.85833e-11) (-6.06089e-10 3.76446e-10 -2.05617e-10) (-1.13649e-09 8.58682e-10 -4.30698e-10) (-6.16761e-10 6.8957e-10 -3.28895e-10) (-7.64525e-11 1.97657e-10 -8.8205e-11) (4.41859e-12 1.32096e-11 -2.82147e-12) (7.21881e-13 -1.06362e-12 4.0113e-12) (-4.51433e-11 -1.93196e-11 3.86789e-11) (-3.03504e-10 -2.75168e-11 1.23435e-10) (-5.67737e-10 5.51501e-11 1.65662e-10) (-4.52557e-10 1.2603e-10 8.61109e-11) (-2.31605e-10 1.16407e-10 -1.91582e-11) (-1.20364e-10 9.09131e-11 -5.85178e-11) (-3.24068e-11 3.53854e-11 -2.00974e-11) (1.77209e-13 1.94585e-12 7.84665e-13) (2.54409e-11 -4.27883e-12 1.29325e-11) (8.20597e-11 -1.84504e-11 5.88897e-12) (1.03004e-10 -3.5952e-12 -2.96609e-11) (9.44871e-11 1.64395e-11 -4.24362e-11) (7.35091e-11 1.01144e-11 -2.99466e-11) (5.55161e-11 -8.78596e-12 -2.49463e-11) (4.07373e-11 -2.11667e-11 -3.52261e-11) (2.65328e-11 -2.99512e-11 -4.8496e-11) (-8.31894e-12 -9.64668e-11 6.40582e-12) (2.63383e-11 -7.99901e-11 -2.67804e-11) (6.28918e-11 -4.81771e-11 -3.06882e-11) (1.10261e-10 -1.86233e-12 -2.05787e-11) (1.95833e-10 8.67659e-11 4.08818e-12) (2.03869e-10 1.53421e-10 3.90849e-11) (6.51771e-11 6.588e-11 2.66132e-11) (2.1785e-13 9.63776e-13 1.04744e-12) (-3.93356e-11 -3.44951e-11 -3.1265e-12) (-1.58414e-10 -1.77726e-10 -3.31012e-11) (-1.26608e-10 -1.90181e-10 -2.00828e-11) (-2.19265e-11 -7.4934e-11 6.83722e-12) (1.56613e-11 -2.50253e-11 1.01706e-11) (7.44914e-11 -2.4826e-11 1.68254e-11) (1.7727e-10 -2.38135e-11 1.55193e-11) (2.10945e-10 -5.84916e-12 1.4341e-11) (1.07921e-10 2.27033e-11 1.23213e-11) (1.3045e-11 2.73788e-11 6.58085e-13) (-1.33414e-10 1.8471e-10 -5.2002e-11) (-8.16303e-10 7.10403e-10 -3.13189e-10) (-1.12275e-09 8.84165e-10 -4.46397e-10) (-4.39414e-10 3.37519e-10 -1.60055e-10) (-4.08566e-11 2.1395e-11 3.18781e-13) (-2.04745e-11 -1.00428e-11 2.54567e-11) (-6.7952e-11 -2.34273e-11 5.84386e-11) (-1.7839e-10 1.57994e-11 4.48131e-11) (-3.12758e-10 1.04389e-10 -1.2642e-11) (-2.46782e-10 1.21171e-10 -3.86316e-11) (-8.10988e-11 5.50188e-11 -2.12741e-11) (-1.05517e-11 1.54101e-11 -1.0163e-11) (6.29471e-12 1.22172e-11 -1.34912e-11) (4.27104e-11 2.15684e-11 -3.49827e-11) (1.03355e-10 2.2557e-11 -7.07762e-11) (1.04665e-10 7.30465e-12 -8.63912e-11) (3.2126e-11 -4.29575e-12 -3.83072e-11) (7.47134e-13 -2.80277e-12 -1.48807e-12) (-1.48714e-11 -4.39132e-11 4.31336e-11) (-6.3598e-11 -2.02403e-10 2.4772e-10) (-8.01944e-11 -2.69943e-10 2.87335e-10) (-4.30264e-11 -1.62546e-10 1.02911e-10) (-3.69723e-11 -3.49575e-11 1.18512e-11) (5.69864e-12 -1.59265e-11 2.23946e-12) (7.3942e-11 -3.13247e-11 7.33623e-12) (1.86976e-10 -2.17494e-11 5.2727e-12) (2.05344e-10 8.6834e-12 -1.61693e-11) (1.19245e-10 1.75303e-11 -2.94167e-11) (3.37674e-11 4.62923e-12 -2.07396e-11) (4.82628e-12 -5.2694e-12 -1.36709e-11) (-9.38826e-12 -3.48992e-11 -2.82284e-11) (-2.3294e-11 -9.5428e-11 -3.35822e-11) (-7.00444e-12 -1.19867e-10 -7.74627e-12) (1.80231e-11 -8.40275e-11 1.43207e-11) (2.45282e-11 -3.74367e-11 1.25096e-11) (2.34105e-11 -1.57044e-11 3.90582e-12) (3.31605e-11 -1.11214e-11 -1.63287e-12) (6.15407e-11 -8.30264e-12 2.29562e-12) (1.08246e-10 1.08609e-11 3.20296e-11) (1.14289e-10 5.51078e-11 6.71154e-11) (3.71894e-11 8.4746e-11 4.70623e-11) (-9.29673e-11 2.14845e-10 4.30605e-12) (-5.6723e-10 6.59436e-10 -2.08949e-10) (-9.0888e-10 8.87433e-10 -4.19981e-10) (-5.18923e-10 4.53884e-10 -2.38273e-10) (-1.31488e-10 7.05643e-11 -2.8288e-11) (-7.01648e-11 -1.24557e-11 2.33175e-11) (-1.40612e-10 -7.22863e-11 7.66067e-11) (-1.74144e-10 -6.21138e-11 6.5429e-11) (-1.459e-10 2.68387e-12 1.42159e-11) (-1.20367e-10 5.67104e-11 -1.99209e-11) (-7.17478e-11 6.89933e-11 -2.86505e-11) (-1.53533e-11 3.21027e-11 -1.46219e-11) (4.30667e-12 1.02942e-11 -6.63917e-12) (1.85746e-11 6.69557e-12 -1.12833e-11) (2.45284e-11 -2.74875e-13 -1.53112e-11) (1.05133e-11 -4.38152e-12 -6.85436e-12) (3.15713e-12 -5.35309e-12 1.5917e-12) (-1.01997e-12 -2.85929e-11 4.00561e-11) (-5.61718e-11 -7.22319e-11 1.50655e-10) (-1.54965e-10 -8.57063e-11 1.76213e-10) (-1.44042e-10 -7.06932e-11 7.97305e-11) (1.18667e-10 -2.57251e-11 -8.77502e-11) (1.20518e-10 -2.45737e-11 -4.47839e-11) (5.66493e-11 -1.00021e-11 3.16084e-12) (1.60048e-11 -3.59953e-12 1.29309e-11) (6.86473e-13 -2.86112e-12 9.112e-12) (-1.40038e-11 -9.88426e-12 8.52768e-12) (-8.30512e-11 -5.47779e-11 1.5612e-13) (-1.67719e-10 -1.35278e-10 -3.16384e-11) (-1.17954e-10 -1.49675e-10 -3.55319e-11) (-2.51613e-11 -1.01237e-10 -1.18792e-11) (2.51769e-11 -6.57656e-11 3.05744e-12) (6.14514e-11 -4.50594e-11 4.88196e-12) (8.0085e-11 -2.08157e-11 -1.21748e-11) (6.8577e-11 -7.27491e-12 -3.49504e-11) (3.96369e-11 -9.79319e-12 -3.40868e-11) (1.84217e-11 -1.08623e-11 -1.05495e-11) (2.61112e-11 -1.24082e-11 1.43465e-11) (1.07203e-10 1.26663e-12 1.34347e-10) (1.95497e-10 1.07589e-10 3.22624e-10) (9.95273e-11 1.81923e-10 2.50904e-10) (-3.22782e-11 1.55562e-10 7.13148e-11) (-2.31585e-10 2.79243e-10 -7.70292e-11) (-5.99177e-10 4.72413e-10 -3.56803e-10) (-6.18611e-10 3.61562e-10 -3.72689e-10) (-3.18417e-10 1.01833e-10 -1.34967e-10) (-1.41687e-10 -9.29564e-12 -1.76262e-12) (-1.23755e-10 -4.85327e-11 5.26062e-11) (-1.09546e-10 -4.40756e-11 4.82884e-11) (-8.24296e-11 -1.1746e-11 -3.37926e-12) (-1.09331e-10 1.55613e-11 -7.08343e-11) (-1.23429e-10 3.73556e-11 -1.23231e-10) (-6.33792e-11 2.31674e-11 -6.01197e-11) (-8.28103e-12 3.65865e-12 -3.21034e-12) (2.03364e-13 1.39405e-12 6.71296e-12) (2.97022e-11 3.59247e-12 5.88679e-11) (7.22054e-11 1.14125e-11 1.06912e-10) (4.80716e-11 1.48789e-11 6.01632e-11) (1.00088e-11 4.87051e-12 6.28682e-12) (9.22236e-12 2.38221e-12 -7.53508e-12) (4.88834e-11 -5.9308e-12 -5.29505e-11) (2.6645e-10 -9.649e-11 -1.5441e-10) (6.88981e-11 -1.52153e-11 -2.48108e-13) (2.46613e-11 5.41087e-12 4.54316e-11) (6.60026e-12 1.56878e-11 1.16276e-10) (-3.913e-12 -1.12691e-12 9.28193e-11) (-4.94158e-12 -1.02113e-11 2.86226e-11) (-1.03764e-11 -1.6126e-11 6.5673e-12) (-5.46525e-11 -7.76361e-11 -1.49955e-11) (-1.35288e-10 -2.09519e-10 -5.95782e-11) (-1.14929e-10 -2.12326e-10 -4.78757e-11) (-2.22146e-11 -6.29997e-11 -5.4787e-12) (1.56686e-12 -2.29945e-12 -1.0855e-13) (2.53087e-11 1.31572e-11 -1.40471e-11) (8.46962e-11 5.97765e-11 -9.1011e-11) (7.54133e-11 3.4909e-11 -1.11803e-10) (2.12771e-11 -8.8175e-12 -3.10937e-11) (7.05507e-12 -1.88245e-11 3.10343e-12) (1.29485e-11 -5.60148e-11 8.27824e-11) (3.87948e-11 -4.21964e-11 2.84732e-10) (6.68663e-11 9.76899e-11 4.65999e-10) (2.3726e-11 2.26744e-10 3.77409e-10) (-5.16787e-11 2.01152e-10 1.32805e-10) (-1.21391e-10 1.65695e-10 -2.53966e-11) (-2.83211e-10 1.63869e-10 -2.16693e-10) (-4.66806e-10 7.15069e-11 -4.00695e-10) (-4.77586e-10 -3.35516e-11 -3.71534e-10) (-2.80549e-10 -4.46529e-11 -1.82472e-10) (-7.48979e-11 -1.7733e-11 -4.06923e-11) (-5.41671e-12 -4.66757e-12 -3.69809e-12) (3.46633e-12 -7.3219e-12 -3.33905e-12) (1.44253e-11 -1.51377e-11 -1.17297e-11) (7.74163e-12 -6.54122e-12 -1.29923e-11) (-2.77278e-12 2.10264e-12 -6.95654e-12) (-4.27432e-11 3.11393e-11 -2.48729e-12) (-1.50759e-10 1.27619e-10 8.53383e-11) (-1.54658e-10 2.0109e-10 2.08249e-10) (-2.18215e-11 1.16756e-10 1.18402e-10) (2.40472e-11 2.28975e-11 7.28693e-12) (1.49228e-10 -6.9764e-12 -9.69308e-11) (3.58161e-10 -1.15265e-10 -2.79633e-10) (2.54866e-10 1.42255e-12 -3.50668e-11) (3.62945e-10 3.4156e-13 -1.02693e-11) (4.86914e-10 -1.2669e-12 1.73012e-11) (4.38611e-10 -1.63522e-12 1.42925e-11) (2.9304e-10 -3.21519e-14 -1.4083e-12) (2.04638e-10 5.14326e-13 -1.28573e-11) (2.32328e-10 2.14687e-13 -2.52622e-11) (4.37901e-10 -4.73149e-13 -4.20944e-11) (9.4536e-10 -5.20136e-12 -4.47413e-11) (1.78518e-09 -1.24844e-11 2.99381e-12) (2.75078e-09 -1.39318e-11 1.08735e-10) (3.7416e-09 -1.47662e-11 2.70465e-10) (4.94264e-09 -2.64091e-11 5.18104e-10) (6.35058e-09 -3.86718e-11 8.36959e-10) (7.32491e-09 -3.82557e-11 1.05621e-09) (6.82626e-09 -1.60126e-11 9.01134e-10) (4.85327e-09 6.58389e-12 4.52844e-10) (2.81281e-09 1.56873e-11 8.48337e-11) (1.68072e-09 1.65708e-11 -7.64465e-11) (1.33269e-09 1.30614e-11 -1.46554e-10) (1.41115e-09 8.80042e-12 -2.05702e-10) (1.7504e-09 -1.65075e-12 -2.41741e-10) (2.22436e-09 -1.16544e-11 -2.06352e-10) (2.87861e-09 -2.15828e-11 -1.13835e-10) (3.84231e-09 -3.25005e-11 -6.69332e-11) (4.94509e-09 -4.02684e-11 -4.77448e-11) (5.91355e-09 -4.08871e-11 1.66348e-10) (6.39851e-09 -2.93608e-11 5.71146e-10) (5.3129e-09 3.3728e-12 8.00324e-10) (2.73966e-09 2.22994e-11 5.36796e-10) (8.72805e-10 1.23155e-11 1.4692e-10) (3.15839e-10 4.04082e-12 -8.90248e-12) (3.00447e-10 2.51869e-12 -7.54804e-11) (5.71877e-10 2.90266e-12 -1.8226e-10) (1.19428e-09 8.41065e-12 -3.74881e-10) (1.97304e-09 1.20757e-11 -5.81514e-10) (2.35394e-09 1.30336e-11 -4.88581e-10) (1.95667e-09 5.84106e-12 -1.92658e-10) (1.01907e-09 3.86519e-12 -6.4056e-11) (3.90445e-10 2.13865e-12 -5.16633e-11) (3.08342e-09 1.0628e-11 -3.17953e-10) (2.7509e-09 -2.50517e-11 -1.38711e-10) (4.00341e-09 -7.63244e-11 6.9572e-11) (4.74309e-09 -7.0741e-11 1.37669e-10) (3.77128e-09 -3.53201e-12 2.71008e-11) (2.43542e-09 2.953e-11 -9.3478e-11) (2.15893e-09 2.64298e-11 -1.84726e-10) (3.48394e-09 -9.92497e-12 -2.71232e-10) (7.27165e-09 -1.22389e-10 -2.19882e-10) (1.39553e-08 -3.37612e-10 1.24996e-10) (2.2244e-08 -6.04636e-10 5.72346e-10) (3.10423e-08 -9.51118e-10 1.0321e-09) (4.13997e-08 -1.47722e-09 1.82303e-09) (5.36071e-08 -1.98708e-09 3.15845e-09) (6.39375e-08 -2.12665e-09 4.53533e-09) (6.4472e-08 -1.58324e-09 4.52841e-09) (5.1123e-08 -7.11039e-10 2.61797e-09) (3.20492e-08 -1.0445e-10 3.09189e-10) (1.88001e-08 8.8062e-11 -9.68561e-10) (1.37597e-08 4.51365e-11 -1.46638e-09) (1.3929e-08 -8.65603e-11 -1.69265e-09) (1.70406e-08 -3.07443e-10 -1.5471e-09) (2.11085e-08 -5.4228e-10 -8.1926e-10) (2.53725e-08 -7.79329e-10 6.92716e-11) (2.9933e-08 -1.04163e-09 2.04544e-10) (3.46192e-08 -1.35424e-09 -2.89977e-10) (4.02858e-08 -1.71298e-09 -1.92822e-10) (4.65335e-08 -1.86689e-09 8.53568e-10) (4.55605e-08 -1.22301e-09 2.30001e-09) (3.11526e-08 -1.87724e-10 2.85467e-09) (1.40113e-08 1.88289e-10 1.73455e-09) (5.43602e-09 1.08804e-10 4.43993e-10) (3.39202e-09 4.77243e-11 -1.96837e-10) (4.64342e-09 5.6761e-11 -9.96033e-10) (9.08256e-09 1.08012e-10 -2.64159e-09) (1.52516e-08 1.16181e-10 -4.29574e-09) (1.96762e-08 5.63855e-12 -3.59488e-09) (2.02612e-08 -1.73303e-10 -1.12807e-09) (1.51063e-08 -1.49529e-10 1.32404e-11) (7.12124e-09 -1.58232e-11 -3.31146e-10) (9.84052e-10 2.51945e-11 -4.62183e-11) (5.44586e-10 1.93115e-13 -3.43527e-11) (1.04338e-09 -4.98238e-11 4.26032e-11) (1.97293e-09 -8.07306e-11 1.47994e-10) (2.08484e-09 -1.82418e-11 1.18219e-10) (1.3525e-09 3.71153e-11 1.54703e-12) (9.26978e-10 4.01565e-11 -7.97956e-11) (1.27375e-09 1.2254e-11 -1.4623e-10) (2.78617e-09 -8.47408e-11 -1.65e-10) (5.76852e-09 -3.03516e-10 -1.78064e-11) (9.38756e-09 -6.19571e-10 1.5388e-10) (1.25525e-08 -9.91955e-10 1.49672e-10) (1.54352e-08 -1.41975e-09 1.94692e-10) (1.87267e-08 -1.75117e-09 5.09634e-10) (2.17932e-08 -1.76398e-09 1.05722e-09) (2.20052e-08 -1.24195e-09 1.35945e-09) (1.72247e-08 -4.93983e-10 9.79808e-10) (1.00399e-08 -2.24159e-11 1.99448e-10) (5.11481e-09 8.47482e-11 -3.35515e-10) (3.42316e-09 3.4041e-11 -5.95681e-10) (3.67452e-09 -7.3462e-11 -7.92272e-10) (4.95259e-09 -2.29019e-10 -7.63436e-10) (6.39753e-09 -3.89821e-10 -2.61475e-10) (7.61927e-09 -5.28387e-10 4.75571e-10) (8.30583e-09 -6.4768e-10 7.62596e-10) (8.27058e-09 -7.64875e-10 4.49912e-10) (8.60381e-09 -9.45234e-10 1.24771e-10) (1.02067e-08 -1.12847e-09 -5.66571e-11) (1.13302e-08 -8.69876e-10 -1.01902e-10) (8.95364e-09 -1.88353e-10 1.83873e-10) (4.61497e-09 1.51048e-10 4.00226e-10) (1.89877e-09 1.1254e-10 2.56451e-10) (1.02648e-09 4.59856e-11 8.55044e-11) (1.26864e-09 4.60907e-11 -1.44881e-10) (3.11843e-09 8.91666e-11 -9.71957e-10) (6.36178e-09 1.04235e-10 -2.32825e-09) (8.19384e-09 -4.89816e-11 -2.10066e-09) (8.25113e-09 -2.52117e-10 -4.4724e-10) (6.80127e-09 -2.48681e-10 5.84541e-10) (3.33472e-09 -4.15303e-11 2.29608e-10) (-1.70808e-12 1.49294e-12 2.52814e-12) (-1.9388e-11 1.94781e-12 1.70302e-12) (1.92743e-13 -6.81634e-13 1.06375e-12) (1.0291e-10 -1.6874e-11 3.84506e-11) (2.55936e-10 -6.50091e-12 6.75631e-11) (1.20298e-10 1.21135e-11 1.87633e-11) (2.72954e-11 6.64056e-12 -4.43951e-12) (3.50248e-11 4.02294e-12 -1.53646e-11) (1.93155e-10 -1.32175e-11 -4.32776e-11) (7.6513e-10 -9.56422e-11 -4.543e-11) (1.62356e-09 -2.50652e-10 1.74287e-12) (2.18809e-09 -4.1396e-10 8.94941e-12) (2.39592e-09 -5.43007e-10 6.92196e-12) (2.59614e-09 -6.00441e-10 7.33091e-11) (2.90746e-09 -5.34441e-10 2.05912e-10) (2.83841e-09 -2.87297e-10 3.22245e-10) (1.81819e-09 -1.41788e-11 2.76875e-10) (5.40155e-10 5.5087e-11 8.53946e-11) (5.19346e-11 1.49003e-11 -2.90915e-12) (6.21493e-12 4.97375e-12 -1.65878e-11) (1.99425e-11 -1.18257e-12 -5.87215e-11) (7.3656e-11 -1.53669e-11 -8.01249e-11) (1.26372e-10 -2.79926e-11 -3.58113e-11) (2.00569e-10 -4.63807e-11 6.12604e-11) (2.49322e-10 -6.65934e-11 1.57839e-10) (1.56073e-10 -5.92995e-11 1.04157e-10) (9.62211e-11 -5.4153e-11 3.97834e-11) (1.90652e-10 -9.39142e-11 -1.20217e-12) (5.19463e-10 -1.23789e-10 -1.06308e-10) (5.5179e-10 -2.96759e-12 -1.26156e-10) (1.62112e-10 4.1047e-11 -1.50693e-11) (1.2494e-11 1.05994e-11 6.97721e-12) (-1.39839e-12 3.42459e-12 5.85938e-12) (3.70473e-13 4.35445e-13 4.55716e-13) (8.4342e-11 1.17193e-11 -6.34347e-11) (7.89609e-10 4.41977e-11 -6.42224e-10) (1.25569e-09 -3.76231e-12 -7.85015e-10) (8.73029e-10 -6.67663e-11 -1.62665e-10) (5.81545e-10 -6.52937e-11 1.78222e-10) (1.43702e-10 -5.43421e-12 9.00453e-11) (-1.87281e-10 3.54781e-11 7.65781e-11) (-7.07654e-10 5.94455e-11 7.67767e-11) (-2.56815e-10 -2.36973e-11 5.10647e-11) (-6.80577e-13 -6.74571e-12 1.38045e-11) (8.23341e-11 -8.81556e-12 5.47946e-11) (4.66572e-11 7.85008e-12 2.25455e-11) (9.29496e-13 1.5655e-12 -2.28612e-13) (-1.89489e-12 2.51958e-12 -5.89346e-12) (7.97691e-12 -9.37169e-13 -1.29148e-11) (1.08095e-10 -2.76909e-11 -3.70363e-11) (3.93876e-10 -1.19121e-10 -3.99304e-11) (6.45679e-10 -2.44753e-10 -1.05009e-11) (7.55259e-10 -3.50941e-10 2.33613e-11) (8.77607e-10 -4.13747e-10 4.76487e-11) (1.09636e-09 -3.81866e-10 7.45955e-11) (1.28239e-09 -2.20541e-10 1.43274e-10) (1.01822e-09 2.08224e-11 2.16844e-10) (3.15404e-10 8.7692e-11 1.26705e-10) (6.75665e-12 1.78064e-11 1.21507e-11) (-6.00976e-11 2.33449e-11 -1.79654e-11) (-1.63662e-10 8.62568e-12 -1.30822e-10) (-1.15695e-10 -1.87161e-11 -1.59788e-10) (-3.02992e-11 -1.3013e-11 -3.97775e-11) (-1.39326e-11 -7.72667e-12 9.82591e-12) (-9.62192e-11 -4.26997e-11 1.66611e-10) (-2.97793e-10 -9.33052e-11 3.29896e-10) (-3.23e-10 -1.34921e-10 2.04857e-10) (-1.87576e-11 -4.78048e-11 6.78862e-12) (2.53927e-10 -1.25309e-10 -1.39231e-10) (6.53592e-10 -1.404e-11 -3.87999e-10) (2.09988e-10 9.0958e-11 -1.40823e-10) (2.31188e-12 2.17507e-11 -3.56275e-12) (-6.38306e-11 3.20776e-11 3.75691e-11) (-1.16464e-10 2.07379e-11 6.61956e-11) (-1.02252e-11 2.77882e-12 -1.20894e-12) (8.21708e-11 2.1946e-11 -1.84912e-10) (4.68885e-10 2.13505e-11 -6.62202e-10) (2.57554e-10 -3.27436e-11 -2.21419e-10) (5.43767e-11 -1.69492e-11 1.20407e-11) (2.77962e-12 -2.38868e-12 3.70737e-11) (-2.42622e-10 5.9297e-11 9.44049e-11) (-1.32782e-09 1.80756e-10 2.0775e-10) (-1.01499e-09 -2.58193e-11 1.96184e-10) (-6.52429e-11 -2.88729e-11 5.50961e-11) (7.35301e-11 -2.19613e-11 7.29978e-11) (1.51266e-10 8.65784e-12 7.72782e-11) (1.99047e-11 9.07484e-12 3.56217e-12) (7.99605e-14 4.86002e-12 -8.21292e-12) (2.05666e-12 2.28604e-12 -2.86707e-11) (3.24482e-11 -1.335e-11 -4.04706e-11) (1.11811e-10 -5.96764e-11 -4.24637e-11) (2.3576e-10 -1.6189e-10 -4.33655e-12) (4.01802e-10 -3.22911e-10 5.85559e-11) (5.97154e-10 -4.58541e-10 5.82646e-11) (7.99391e-10 -4.56112e-10 -1.78303e-11) (1.00388e-09 -3.19191e-10 -3.3241e-11) (1.06067e-09 -5.75015e-11 1.02812e-10) (7.09232e-10 1.58253e-10 2.26548e-10) (1.50459e-10 1.05909e-10 1.06078e-10) (-5.58401e-12 1.56579e-11 5.73708e-12) (-8.02866e-11 1.44121e-11 -6.06448e-11) (-1.95958e-10 -1.99573e-11 -2.49409e-10) (-1.91191e-10 -2.84532e-11 -1.87314e-10) (-2.74071e-10 -2.55401e-11 1.46619e-11) (-1.40495e-09 -8.40784e-11 8.14948e-10) (-3.86285e-09 -3.15083e-10 2.14594e-09) (-2.49526e-09 -5.8895e-10 1.20004e-09) (-8.94101e-11 -1.63414e-10 6.02045e-11) (6.97315e-10 -3.74848e-10 -2.98588e-10) (1.91908e-09 -1.5036e-10 -1.13261e-09) (1.02756e-09 2.91317e-10 -7.83198e-10) (1.79699e-10 1.59804e-10 -1.42042e-10) (4.19263e-12 2.82067e-11 1.01015e-11) (-5.86481e-11 3.21343e-11 9.50185e-11) (-5.76882e-11 9.5884e-12 5.83146e-11) (-1.26525e-12 3.20386e-12 -1.00858e-11) (1.90694e-10 3.46511e-11 -3.82748e-10) (2.64118e-10 -2.34139e-11 -4.11601e-10) (3.21704e-11 -1.64183e-11 -3.11091e-11) (-2.14432e-12 -1.11559e-12 4.82851e-12) (-6.84636e-10 1.45058e-10 1.35412e-10) (-2.11389e-09 3.89569e-10 4.08228e-10) (-1.71881e-09 5.20325e-11 4.19718e-10) (-2.11635e-10 -6.56294e-11 1.22019e-10) (3.66911e-11 -3.00336e-11 5.67963e-11) (2.01512e-10 -1.36304e-11 1.14046e-10) (9.28412e-11 2.07269e-11 2.84715e-11) (1.53056e-11 1.10303e-11 -1.23966e-11) (1.31015e-11 1.15162e-11 -5.71451e-11) (2.38038e-11 -8.54468e-12 -6.85834e-11) (3.33965e-11 -3.01841e-11 -2.91272e-11) (1.04692e-10 -1.16327e-10 1.80101e-11) (3.02516e-10 -3.41993e-10 1.19506e-10) (4.91968e-10 -5.22866e-10 6.92139e-11) (6.2554e-10 -5.39793e-10 -1.2629e-10) (7.44599e-10 -4.0673e-10 -2.17264e-10) (7.74519e-10 -1.47412e-10 -7.48245e-11) (6.84348e-10 1.08736e-10 1.4424e-10) (3.2649e-10 1.79585e-10 1.88054e-10) (2.69792e-11 4.44204e-11 3.2751e-11) (-1.0384e-11 7.20648e-12 -1.26482e-11) (-1.20971e-10 -4.97117e-12 -2.17561e-10) (-3.11124e-10 3.2685e-12 -3.24197e-10) (-1.1271e-09 7.85238e-11 -4.55285e-11) (-5.70228e-09 2.58942e-10 2.0979e-09) (-1.06656e-08 -3.80988e-10 4.81869e-09) (-4.39578e-09 -1.18201e-09 2.30807e-09) (-1.08473e-10 -4.09418e-10 2.03388e-10) (1.11326e-09 -7.03457e-10 -3.28196e-10) (2.52601e-09 -2.87051e-10 -1.45472e-09) (1.45613e-09 4.03709e-10 -1.23425e-09) (3.65085e-10 3.14645e-10 -3.75033e-10) (5.93105e-11 8.29061e-11 -7.09982e-12) (1.63575e-11 5.0036e-11 1.02094e-10) (-4.65613e-11 2.00248e-11 1.52008e-10) (-4.32345e-12 1.8528e-12 4.41823e-12) (4.24722e-11 2.27177e-11 -9.48446e-11) (1.92532e-10 1.89352e-11 -3.64561e-10) (2.4245e-11 -1.90232e-11 -9.95814e-11) (-4.97788e-11 -4.24899e-12 -8.40942e-12) (-1.93545e-09 3.72167e-10 3.51211e-10) (-2.43541e-09 5.08933e-10 6.45167e-10) (-9.83296e-10 6.03548e-11 3.4425e-10) (-7.24808e-11 -3.88008e-11 5.10526e-11) (3.56032e-11 -3.38784e-11 2.92276e-11) (1.43424e-10 -2.95516e-11 8.13703e-11) (8.12085e-11 1.18871e-11 4.87733e-11) (2.04636e-11 1.09396e-11 -3.41709e-12) (4.15482e-11 2.00288e-11 -6.71941e-11) (5.84426e-11 -9.06318e-13 -1.00931e-10) (3.92286e-11 -2.53452e-11 -2.48801e-11) (1.21028e-10 -1.2773e-10 5.75831e-11) (3.2405e-10 -3.94947e-10 2.04626e-10) (4.06389e-10 -5.50498e-10 6.68475e-11) (4.68362e-10 -6.15085e-10 -2.20149e-10) (5.75072e-10 -5.28006e-10 -3.63024e-10) (5.72772e-10 -2.27396e-10 -1.89857e-10) (5.29003e-10 3.75596e-11 3.51598e-11) (3.5726e-10 1.78239e-10 1.591e-10) (6.03955e-11 6.85537e-11 4.96971e-11) (-2.23783e-12 4.97228e-12 -6.32549e-12) (-8.71621e-11 2.25117e-12 -2.07541e-10) (-3.52174e-10 7.45054e-11 -4.0272e-10) (-1.79661e-09 4.12592e-10 -1.40947e-10) (-8.76318e-09 1.14353e-09 2.67269e-09) (-1.40096e-08 -2.39808e-10 5.92498e-09) (-4.89586e-09 -1.70533e-09 2.84368e-09) (-9.84191e-11 -8.51323e-10 4.44884e-10) (1.29188e-09 -1.05604e-09 -2.09654e-10) (2.19176e-09 -4.17031e-10 -1.16583e-09) (1.25341e-09 3.86183e-10 -1.10374e-09) (2.55589e-10 3.26955e-10 -3.57267e-10) (2.04554e-11 8.53954e-11 -5.49413e-12) (-5.7747e-12 7.5159e-11 1.48654e-10) (-8.47829e-11 2.5791e-11 2.49057e-10) (-1.2074e-11 1.27022e-12 1.75921e-11) (3.76025e-11 1.89778e-11 -4.69935e-11) (2.16163e-10 7.31202e-11 -3.11282e-10) (2.2878e-12 8.50458e-12 -1.13347e-10) (-3.73027e-10 2.70204e-11 -5.14947e-11) (-3.8037e-09 7.58298e-10 1.07416e-09) (-2.01604e-09 3.87453e-10 8.62763e-10) (-1.7669e-10 -1.91002e-13 1.1754e-10) (1.03468e-11 -1.2356e-11 4.3768e-12) (1.52336e-10 -6.38431e-11 -8.63614e-12) (1.75419e-10 -3.25414e-11 4.17758e-11) (6.57033e-11 5.9283e-12 5.12423e-11) (8.50935e-12 5.18506e-12 6.34789e-12) (1.71316e-11 7.713e-12 -1.53792e-11) (7.5272e-11 2.59092e-12 -5.98946e-11) (1.20249e-10 -3.55067e-11 -1.25031e-11) (2.85146e-10 -1.83522e-10 1.47599e-10) (4.15497e-10 -4.3172e-10 2.59554e-10) (3.26301e-10 -5.27484e-10 3.19686e-11) (3.17867e-10 -6.61228e-10 -2.77425e-10) (4.04594e-10 -6.26195e-10 -4.08451e-10) (4.05777e-10 -2.87763e-10 -2.0458e-10) (3.77216e-10 -1.74094e-11 -1.97784e-11) (3.31386e-10 1.51072e-10 9.08363e-11) (7.76806e-11 7.80228e-11 3.65483e-11) (-3.20397e-12 6.5489e-12 -8.62417e-12) (-1.35122e-10 9.67673e-12 -2.37388e-10) (-4.77472e-10 1.81783e-10 -5.08548e-10) (-1.91738e-09 8.28768e-10 -2.71559e-10) (-7.64556e-09 1.95493e-09 1.94685e-09) (-1.12013e-08 2.10118e-10 4.31443e-09) (-3.91829e-09 -1.70019e-09 2.21661e-09) (-1.36498e-10 -1.33881e-09 6.50938e-10) (1.22739e-09 -1.39485e-09 8.01865e-11) (1.54256e-09 -5.39565e-10 -5.97639e-10) (8.14641e-10 2.29472e-10 -6.5817e-10) (1.18025e-10 2.61641e-10 -2.26935e-10) (-4.92756e-11 1.22064e-10 1.66822e-11) (-2.13292e-10 1.40506e-10 3.22354e-10) (-3.58511e-10 7.55469e-12 4.50891e-10) (-5.10751e-11 -8.91344e-12 3.35852e-11) (3.72566e-11 1.97598e-11 -5.01862e-11) (2.27148e-10 1.44886e-10 -3.02086e-10) (-3.23329e-11 5.20087e-11 -8.87091e-11) (-1.23175e-09 2.39939e-10 7.16834e-11) (-3.9484e-09 8.20672e-10 1.83464e-09) (-7.47094e-10 7.93529e-11 6.28113e-10) (1.2673e-11 -1.31432e-11 2.48975e-11) (3.73271e-10 -8.98584e-11 -9.06783e-11) (6.48653e-10 -8.40477e-11 -2.5137e-10) (3.30883e-10 -1.78643e-11 -6.3477e-11) (8.35989e-11 4.15781e-12 2.82669e-11) (1.81451e-11 4.45711e-12 1.60308e-11) (1.38877e-11 3.03981e-12 3.16398e-12) (7.93213e-11 7.60524e-13 1.66823e-12) (2.73387e-10 -5.01425e-11 7.87951e-11) (5.08716e-10 -2.28281e-10 2.70963e-10) (4.47708e-10 -4.05204e-10 2.30925e-10) (2.63234e-10 -4.82039e-10 -3.37426e-12) (2.20728e-10 -6.56568e-10 -2.39449e-10) (2.52176e-10 -6.08919e-10 -2.89396e-10) (2.31559e-10 -2.72998e-10 -1.23518e-10) (1.96192e-10 -4.1282e-11 -2.03612e-11) (2.34848e-10 9.88536e-11 2.66513e-11) (8.08152e-11 7.76825e-11 9.53935e-12) (-9.15126e-12 1.07298e-11 -1.5051e-11) (-2.86574e-10 2.57833e-11 -2.83594e-10) (-7.97643e-10 3.50733e-10 -6.5094e-10) (-1.91237e-09 1.31516e-09 -4.92342e-10) (-4.7577e-09 2.2464e-09 6.91609e-10) (-5.50747e-09 5.85306e-10 1.51863e-09) (-2.11532e-09 -1.11685e-09 9.03598e-10) (-2.12225e-10 -1.58839e-09 6.83664e-10) (1.0242e-09 -1.72862e-09 5.33151e-10) (1.04031e-09 -6.39048e-10 -9.00737e-11) (4.45176e-10 5.24416e-11 -2.73074e-10) (4.69704e-11 1.63064e-10 -1.12997e-10) (-1.78859e-10 2.05289e-10 7.23649e-11) (-8.32432e-10 2.54649e-10 7.42941e-10) (-1.14029e-09 -9.21602e-11 8.90662e-10) (-2.76608e-10 -6.08488e-11 8.83249e-11) (-1.11887e-12 1.99973e-11 -4.30522e-11) (8.68194e-11 2.10102e-10 -2.38496e-10) (-2.4482e-10 2.46306e-10 -1.21209e-10) (-2.93163e-09 8.73328e-10 6.36688e-10) (-1.67014e-09 3.31947e-10 1.41952e-09) (-1.83567e-11 -6.26508e-11 2.89598e-10) (5.0463e-10 -1.75275e-10 6.03876e-11) (1.56368e-09 -1.64646e-10 -6.01341e-10) (1.53472e-09 9.48987e-11 -9.09394e-10) (6.24946e-10 7.78474e-11 -3.68635e-10) (1.21374e-10 7.3775e-12 -3.51487e-11) (3.07382e-11 -1.81229e-12 6.02321e-12) (5.34093e-11 -4.36913e-12 2.1471e-11) (2.25229e-10 -1.63593e-11 1.00609e-10) (5.84103e-10 -8.61923e-11 3.14898e-10) (6.86192e-10 -2.55339e-10 4.1712e-10) (4.26443e-10 -3.7487e-10 2.19382e-10) (2.74885e-10 -4.82728e-10 3.68269e-11) (2.3561e-10 -6.01359e-10 -6.94159e-11) (1.77375e-10 -4.73551e-10 -6.28407e-11) (9.3432e-11 -1.81047e-10 -1.63616e-11) (4.91152e-11 -2.40143e-11 -3.08782e-12) (9.65434e-11 4.16834e-11 -6.9182e-12) (6.59933e-11 6.5483e-11 -1.77967e-11) (-2.01162e-11 1.76249e-11 -2.47813e-11) (-5.93702e-10 5.56355e-11 -3.2023e-10) (-1.47964e-09 5.98149e-10 -7.75236e-10) (-2.02233e-09 1.8895e-09 -7.85773e-10) (-2.61632e-09 2.23952e-09 -2.66264e-10) (-1.88551e-09 5.58258e-10 -7.30683e-12) (-7.31086e-10 -4.65551e-10 6.5452e-11) (-2.14546e-10 -1.46089e-09 5.32141e-10) (7.40471e-10 -2.0121e-09 1.06709e-09) (7.96226e-10 -8.03641e-10 3.15053e-10) (2.61978e-10 -4.90391e-11 -8.90424e-11) (3.19121e-11 7.57076e-11 -5.37821e-11) (-1.94056e-10 2.06126e-10 1.00172e-10) (-1.43084e-09 2.99896e-10 1.14521e-09) (-2.68114e-09 -3.29115e-10 1.63257e-09) (-1.44165e-09 -2.57888e-10 3.05873e-10) (-2.56982e-10 9.51745e-11 -1.10909e-10) (-2.30076e-10 4.51473e-10 -2.50697e-10) (-1.06575e-09 9.66617e-10 -4.42225e-11) (-3.14787e-09 1.28978e-09 1.20781e-09) (-5.33934e-11 2.63749e-12 4.39737e-10) (7.07864e-10 -3.36891e-10 4.25499e-10) (1.85534e-09 -5.51616e-10 -1.96822e-10) (2.47978e-09 -6.9224e-11 -1.30494e-09) (2.0577e-09 5.03957e-10 -1.63003e-09) (9.26213e-10 3.33907e-10 -8.8104e-10) (2.81438e-10 3.73441e-11 -2.61738e-10) (9.95046e-11 -2.30422e-11 -6.64951e-11) (9.34787e-11 -3.46043e-11 -7.39597e-12) (2.69967e-10 -7.49949e-11 1.23428e-10) (6.31107e-10 -1.58073e-10 4.65962e-10) (6.80098e-10 -2.98458e-10 5.71345e-10) (5.12078e-10 -4.4751e-10 3.78291e-10) (5.15096e-10 -6.46423e-10 2.7466e-10) (4.75158e-10 -6.72718e-10 2.49434e-10) (2.05879e-10 -3.78405e-10 1.68342e-10) (2.68367e-11 -9.90593e-11 5.18223e-11) (1.62119e-12 -4.26541e-12 2.24522e-12) (1.39632e-11 9.98641e-12 -6.73488e-12) (3.87774e-11 4.72519e-11 -3.55703e-11) (-3.10373e-11 2.79682e-11 -3.89628e-11) (-9.55251e-10 1.06848e-10 -2.87069e-10) (-2.69875e-09 8.89562e-10 -7.42065e-10) (-2.30142e-09 2.31085e-09 -9.92773e-10) (-1.37199e-09 2.21934e-09 -8.56472e-10) (-4.80447e-10 3.83105e-10 -3.17087e-10) (-1.95319e-10 -1.74022e-10 -9.66858e-11) (-1.82378e-10 -9.39221e-10 2.59101e-10) (2.34805e-10 -1.71349e-09 1.16295e-09) (5.63397e-10 -9.29641e-10 6.27769e-10) (2.35828e-10 -1.26364e-10 -1.87679e-11) (5.08853e-11 3.19082e-11 -4.8247e-11) (-4.89188e-11 9.92653e-11 3.87634e-11) (-9.862e-10 2.32413e-10 9.30332e-10) (-4.00017e-09 -4.9143e-10 2.29034e-09) (-5.17173e-09 -6.05761e-10 9.65855e-10) (-2.70461e-09 6.17093e-10 -1.64255e-10) (-1.74118e-09 1.52895e-09 -1.85475e-10) (-1.95351e-09 1.85033e-09 3.77133e-10) (-1.20353e-09 7.7387e-10 8.38187e-10) (5.51578e-10 -1.61311e-10 4.22073e-10) (1.99019e-09 -8.5855e-10 3.35142e-10) (2.32635e-09 -7.19426e-10 -6.69763e-10) (2.27143e-09 5.24939e-11 -1.70625e-09) (1.74131e-09 7.69334e-10 -1.86552e-09) (8.9518e-10 5.81008e-10 -1.14172e-09) (5.2981e-10 1.38639e-10 -6.75354e-10) (4.36403e-10 -7.09797e-11 -4.92382e-10) (2.93999e-10 -1.206e-10 -2.27645e-10) (1.57377e-10 -9.23145e-11 2.3637e-13) (2.14232e-10 -1.64954e-10 2.27177e-10) (3.66207e-10 -3.8226e-10 5.70983e-10) (6.60316e-10 -7.45182e-10 7.83806e-10) (1.15917e-09 -1.1233e-09 9.84673e-10) (1.13863e-09 -9.5321e-10 9.98444e-10) (3.9109e-10 -3.84838e-10 5.59373e-10) (6.07285e-12 -7.45418e-11 1.4981e-10) (-1.59678e-11 -4.57722e-12 1.78689e-11) (-1.87275e-12 3.76037e-12 -3.01339e-12) (1.16565e-11 3.26006e-11 -4.24148e-11) (-3.4692e-11 3.84043e-11 -5.62489e-11) (-9.5324e-10 1.67534e-10 -1.89868e-10) (-4.02474e-09 1.05937e-09 -3.78482e-10) (-3.11258e-09 2.31218e-09 -7.93657e-10) (-8.20988e-10 1.87852e-09 -9.32079e-10) (-5.66261e-11 3.56518e-10 -3.8857e-10) (-2.97445e-11 -5.75476e-11 -8.28298e-11) (-1.7295e-10 -4.25742e-10 7.56316e-11) (-1.75046e-10 -9.51907e-10 7.15475e-10) (3.1935e-10 -8.40662e-10 6.97043e-10) (3.27557e-10 -2.46823e-10 4.29185e-11) (1.5205e-10 -2.91475e-12 -1.03809e-10) (1.68619e-11 3.78807e-11 -3.96644e-12) (-2.07584e-10 1.15574e-10 3.28053e-10) (-3.14634e-09 -2.48046e-10 1.96706e-09) (-1.07401e-08 -4.8682e-10 1.9138e-09) (-1.01626e-08 2.0653e-09 4.13111e-10) (-5.02989e-09 3.28472e-09 6.46953e-10) (-1.8621e-09 1.94466e-09 8.48291e-10) (-1.03529e-10 2.42785e-10 3.23416e-10) (8.7706e-10 -3.57793e-10 3.85656e-10) (1.37426e-09 -7.30769e-10 -9.51543e-11) (1.50062e-09 -5.38514e-10 -1.05362e-09) (1.58958e-09 1.23418e-10 -2.08132e-09) (1.01121e-09 6.77539e-10 -1.66444e-09) (5.18735e-10 4.51739e-10 -7.87271e-10) (5.10498e-10 1.49813e-10 -5.96625e-10) (7.95277e-10 -5.9361e-11 -8.44021e-10) (7.49667e-10 -1.87912e-10 -7.69919e-10) (2.41392e-10 -1.31622e-10 -2.0175e-10) (5.38462e-11 -9.92341e-11 1.96927e-11) (1.48648e-10 -4.59874e-10 3.41681e-10) (7.62363e-10 -1.21565e-09 1.0468e-09) (1.78978e-09 -1.64262e-09 1.79571e-09) (1.77683e-09 -1.07144e-09 1.84922e-09) (6.64979e-10 -3.12759e-10 1.05007e-09) (2.05632e-11 -3.05677e-11 3.41026e-10) (-6.74877e-11 1.32203e-11 8.56681e-11) (-2.31135e-11 1.15885e-11 -6.24334e-13) (-1.07697e-11 2.27616e-11 -4.00853e-11) (-3.33107e-11 3.95951e-11 -7.04842e-11) (-5.17173e-10 1.58947e-10 -1.09789e-10) (-3.66046e-09 9.48186e-10 1.02993e-10) (-4.63429e-09 2.07424e-09 -8.90395e-11) (-1.11171e-09 1.18223e-09 -4.70352e-10) (-4.46385e-11 2.26524e-10 -2.62318e-10) (-1.86549e-11 -2.43618e-11 -9.40417e-11) (-1.09813e-10 -1.31012e-10 -2.10658e-11) (-1.11734e-10 -2.98543e-10 2.42595e-10) (3.30734e-10 -6.13873e-10 6.23862e-10) (6.40423e-10 -4.44773e-10 1.82408e-10) (4.13069e-10 -1.08544e-10 -1.91013e-10) (9.77827e-11 3.22004e-11 -5.82654e-11) (2.54226e-12 3.5367e-11 4.87621e-11) (-1.31972e-09 9.49445e-11 9.08185e-10) (-1.30919e-08 6.3111e-10 2.09167e-09) (-2.02765e-08 4.33891e-09 1.02261e-09) (-7.71365e-09 4.29735e-09 1.79326e-09) (-1.09311e-09 1.33811e-09 1.08492e-09) (1.39932e-10 1.12336e-10 3.3005e-10) (2.6025e-10 -1.97289e-10 1.58986e-10) (3.5521e-10 -3.00517e-10 -2.76587e-10) (1.04344e-09 -4.2018e-10 -1.83453e-09) (1.3689e-09 1.15402e-10 -2.91151e-09) (6.95299e-10 3.53659e-10 -1.36485e-09) (2.80905e-10 1.22107e-10 -3.25508e-10) (2.74363e-10 1.3949e-11 -1.90152e-10) (5.39414e-10 -4.86825e-11 -4.23792e-10) (8.10482e-10 -7.20211e-11 -8.27115e-10) (5.95173e-10 -1.15569e-10 -7.22338e-10) (2.39658e-10 -1.82501e-10 -2.36819e-10) (3.3899e-10 -4.77762e-10 3.76832e-11) (1.08768e-09 -1.35612e-09 8.43412e-10) (1.79628e-09 -1.57079e-09 1.77329e-09) (1.47406e-09 -8.02508e-10 1.66827e-09) (6.34321e-10 -1.64176e-10 9.69913e-10) (1.00591e-10 3.42807e-11 4.42787e-10) (-5.766e-11 5.29082e-11 1.74281e-10) (-3.42202e-11 2.22936e-11 2.10901e-11) (-1.76914e-11 1.44789e-11 -2.23591e-11) (-3.14254e-11 2.79752e-11 -6.88613e-11) (-1.58144e-10 7.67558e-11 -6.19771e-11) (-1.47602e-09 5.11321e-10 1.6623e-10) (-3.92439e-09 1.37514e-09 6.09403e-10) (-2.47046e-09 1.04887e-09 8.11419e-11) (-5.33872e-10 1.89954e-10 -1.77502e-10) (-2.26145e-10 -4.19638e-11 -1.67866e-10) (-1.21933e-10 -6.96776e-11 -5.93562e-11) (1.20175e-12 -4.40851e-11 4.77956e-11) (5.92928e-10 -4.07521e-10 6.22739e-10) (1.21234e-09 -6.41136e-10 4.33109e-10) (8.32508e-10 -3.18914e-10 -2.3961e-10) (2.74884e-10 -2.31235e-11 -1.88161e-10) (2.43101e-11 2.14631e-11 1.78047e-12) (-3.69036e-10 1.82056e-10 2.52111e-10) (-1.03842e-08 1.87968e-09 1.1822e-09) (-2.6786e-08 6.06584e-09 2.94826e-10) (-8.90038e-09 4.08762e-09 2.04489e-09) (-6.04648e-10 8.02284e-10 1.19369e-09) (2.56942e-10 1.39978e-11 6.14783e-10) (2.87415e-11 -3.95015e-11 3.23691e-11) (1.15126e-10 -1.64432e-10 -3.94738e-10) (8.49014e-10 -3.51757e-10 -2.35576e-09) (1.36313e-09 -1.28279e-10 -2.61329e-09) (7.34891e-10 -1.25532e-11 -8.9605e-10) (2.6717e-10 -4.7675e-11 -1.60962e-10) (1.53885e-10 -6.17892e-11 -5.44513e-11) (1.92599e-10 -6.07861e-11 -1.19728e-10) (4.40473e-10 -2.22188e-11 -4.15857e-10) (7.98733e-10 1.96759e-11 -8.13477e-10) (8.21185e-10 -1.68349e-10 -6.2092e-10) (7.66252e-10 -4.27935e-10 -1.244e-10) (1.07847e-09 -8.37013e-10 4.77172e-10) (1.13753e-09 -8.65437e-10 8.75879e-10) (6.85768e-10 -4.08676e-10 6.08216e-10) (2.7616e-10 -8.21888e-11 3.08596e-10) (1.08225e-10 3.79948e-11 2.36327e-10) (2.04642e-11 9.4868e-11 2.22618e-10) (-1.60076e-11 5.09722e-11 6.87531e-11) (-6.08482e-12 8.11753e-12 -2.39073e-12) (-2.23354e-11 1.33662e-11 -4.17583e-11) (-5.62985e-11 2.99332e-11 -3.90119e-11) (-3.62756e-10 1.79666e-10 6.51486e-11) (-1.50019e-09 5.92117e-10 5.31844e-10) (-1.90953e-09 5.28079e-10 5.50693e-10) (-1.00971e-09 7.06643e-11 7.80385e-11) (-5.88096e-10 -1.22119e-10 -1.32395e-10) (-3.16394e-10 -8.70372e-11 -8.89542e-11) (-1.69096e-11 -5.97682e-12 1.67645e-11) (2.97707e-10 -1.13696e-10 3.69648e-10) (1.17523e-09 -5.50021e-10 5.34111e-10) (1.22001e-09 -6.06593e-10 -2.04642e-10) (5.09424e-10 -1.75831e-10 -3.45487e-10) (4.54536e-11 2.22854e-11 -2.82207e-11) (-1.2765e-10 2.14006e-10 9.58906e-11) (-5.27044e-09 2.32378e-09 4.17217e-10) (-2.49018e-08 6.71046e-09 -1.5529e-09) (-1.23726e-08 3.75706e-09 8.86219e-10) (-7.2396e-10 4.23902e-10 9.28814e-10) (1.41781e-10 -2.83614e-11 6.21362e-10) (2.62964e-12 -5.32678e-12 7.8762e-12) (4.38681e-11 -2.43267e-11 -8.42217e-11) (2.99334e-10 -8.92919e-11 -4.76717e-10) (4.92826e-10 -1.3679e-10 -4.43037e-10) (4.59966e-10 -1.88236e-10 -1.95412e-10) (4.06553e-10 -2.92909e-10 -9.57874e-11) (3.36678e-10 -3.45323e-10 -1.33584e-10) (2.32836e-10 -2.06126e-10 -1.81067e-10) (2.14016e-10 -4.35768e-11 -2.34144e-10) (3.61687e-10 1.27418e-10 -3.49717e-10) (5.5026e-10 1.70756e-10 -2.91325e-10) (7.21085e-10 -2.95786e-11 -5.82657e-11) (1.00293e-09 -3.77324e-10 1.84226e-10) (9.32812e-10 -5.57237e-10 1.98509e-10) (4.96461e-10 -3.39905e-10 6.07078e-11) (1.40335e-10 -7.34753e-11 2.62066e-11) (3.90497e-11 1.19072e-11 3.65781e-11) (3.87274e-11 1.15059e-10 1.3108e-10) (1.30961e-11 1.42176e-10 1.20555e-10) (-2.47673e-12 2.71292e-11 7.80083e-12) (-1.12568e-11 7.62805e-12 -1.79877e-11) (-4.17632e-11 7.87941e-12 -3.35287e-11) (-1.0343e-10 4.19771e-11 1.56622e-11) (-3.45504e-10 1.72557e-10 2.41197e-10) (-6.28461e-10 1.8535e-10 4.3564e-10) (-6.36827e-10 -5.85036e-12 2.43468e-10) (-6.35999e-10 -1.29647e-10 -3.8761e-12) (-6.29406e-10 -8.63383e-11 -1.27423e-10) (-1.83689e-10 1.77154e-11 1.00755e-11) (2.2845e-11 1.80169e-12 1.01968e-10) (6.65163e-10 -3.03666e-10 4.75524e-10) (1.23736e-09 -7.48875e-10 6.60971e-11) (7.27065e-10 -4.22918e-10 -3.71892e-10) (7.04081e-11 -5.58926e-14 -6.78467e-11) (-7.46278e-11 2.33241e-10 4.29148e-11) (-2.00967e-09 2.02871e-09 3.16777e-10) (-1.12838e-08 5.30097e-09 -1.62523e-09) (-1.36857e-08 3.41837e-09 -2.5291e-09) (-2.40442e-09 3.08744e-10 1.03448e-10) (-8.76553e-11 -1.7736e-11 1.16697e-10) (-3.30182e-10 -4.46209e-11 8.0732e-11) (-1.65011e-11 8.48516e-12 3.79885e-11) (5.26606e-11 8.31271e-12 6.71365e-11) (2.37435e-10 -6.66204e-11 1.63505e-10) (5.37399e-10 -2.90469e-10 2.1296e-10) (9.02786e-10 -6.03141e-10 5.67295e-11) (1.16937e-09 -7.87411e-10 -3.12109e-10) (8.89612e-10 -5.2027e-10 -5.05151e-10) (3.12418e-10 -7.90371e-11 -2.75319e-10) (1.1822e-10 6.256e-11 -1.20201e-10) (1.441e-10 9.81112e-11 -8.29584e-11) (2.96084e-10 3.37585e-11 -6.61837e-11) (6.78917e-10 -2.29295e-10 -1.07472e-10) (9.98791e-10 -6.34922e-10 -2.25969e-10) (7.89973e-10 -6.26268e-10 -2.42581e-10) (2.5386e-10 -1.83064e-10 -7.26332e-11) (1.98706e-11 2.95715e-12 1.30644e-12) (1.44958e-11 1.36405e-10 4.54449e-11) (-1.09103e-11 3.76344e-10 8.88678e-11) (-9.21125e-12 1.98327e-10 -7.78413e-13) (-1.32376e-11 3.37089e-11 -2.90893e-11) (-5.44052e-11 1.68487e-12 -4.21693e-11) (-2.01153e-10 -7.38283e-12 4.15645e-12) (-4.53026e-10 4.63125e-11 2.37485e-10) (-5.30795e-10 9.90547e-11 4.16038e-10) (-3.87859e-10 3.36349e-11 2.27967e-10) (-3.34855e-10 -3.44634e-11 3.44165e-11) (-3.76339e-10 -4.00516e-11 -6.96536e-11) (-1.87191e-10 2.01996e-11 -5.54357e-12) (-1.66615e-11 1.81796e-11 5.72176e-11) (2.89022e-10 -7.78476e-11 3.44138e-10) (7.753e-10 -4.53965e-10 2.91215e-10) (5.97393e-10 -4.2586e-10 -1.68351e-10) (1.41086e-10 -5.96287e-11 -1.29629e-10) (1.21784e-11 7.50058e-11 -1.5288e-11) (-3.27278e-10 1.00899e-09 1.62492e-10) (-1.9001e-09 2.29816e-09 -3.39895e-10) (-4.6565e-09 2.044e-09 -2.18542e-09) (-4.80592e-09 1.27141e-10 -2.17913e-09) (-2.00262e-09 -3.47682e-10 -4.03631e-10) (-5.14533e-09 -2.96421e-10 -7.58129e-11) (-1.63902e-09 1.13152e-10 8.97893e-10) (-1.05089e-10 1.3455e-11 7.15806e-10) (7.2591e-10 -3.1009e-10 9.02727e-10) (2.12834e-09 -1.07341e-09 7.84602e-10) (3.97221e-09 -2.06795e-09 -1.14683e-10) (4.48251e-09 -2.20084e-09 -1.20052e-09) (2.29182e-09 -9.41042e-10 -1.04868e-09) (4.17265e-10 -3.82514e-11 -3.20996e-10) (3.89741e-11 8.42199e-11 -7.88654e-11) (1.44517e-12 9.46086e-11 -2.76941e-11) (1.28659e-11 1.29554e-11 -8.57172e-13) (1.70958e-10 -9.36974e-11 -5.8409e-12) (7.43135e-10 -6.42689e-10 -9.71285e-11) (9.03918e-10 -8.48441e-10 -1.66336e-10) (3.2229e-10 -2.63964e-10 -5.10665e-11) (1.33344e-11 2.11005e-12 5.14917e-13) (-3.34579e-11 2.12024e-10 1.37601e-11) (-1.83802e-10 7.93604e-10 -5.47852e-11) (-1.29086e-10 7.03821e-10 -2.02186e-10) (-5.43213e-11 2.31206e-10 -1.73346e-10) (-6.79632e-11 3.9587e-11 -8.46221e-11) (-2.72837e-10 -8.50176e-12 -3.91655e-11) (-9.71579e-10 -3.35023e-11 2.45036e-10) (-1.22151e-09 3.52532e-11 5.52704e-10) (-5.40957e-10 5.85942e-11 3.20736e-10) (-9.96351e-11 1.49632e-11 6.2182e-11) (-1.55205e-11 1.96579e-12 4.6554e-12) (-7.63244e-12 2.3315e-12 6.46948e-13) (-2.39397e-12 2.95837e-12 4.96407e-12) (2.88538e-11 -4.64731e-12 4.28135e-11) (1.51312e-10 -9.09886e-11 8.64267e-11) (1.56065e-10 -1.29388e-10 -1.44692e-12) (4.35893e-11 -2.92214e-11 -2.55579e-11) (1.30511e-11 1.91981e-11 -4.35017e-12) (7.13414e-11 3.40742e-10 6.29302e-11) (7.05858e-11 6.93997e-10 -2.33492e-11) (-1.7966e-10 4.7511e-10 -4.1129e-10) (-1.50137e-09 2.08682e-10 -1.47883e-09) (-4.88857e-09 -5.12976e-10 -2.02538e-09) (-2.76156e-09 -1.3694e-10 -6.34544e-10) (-1.52637e-09 -1.89262e-10 1.90472e-10) (-8.67072e-11 -8.77697e-11 1.43947e-10) (6.86192e-10 -4.16108e-10 4.3534e-10) (3.09836e-09 -1.36583e-09 7.67829e-10) (3.65353e-09 -1.64479e-09 4.46042e-10) (1.46736e-09 -8.3156e-10 5.90344e-11) (1.30877e-10 -1.31346e-10 -2.75294e-11) (-1.20871e-11 -7.914e-12 -1.49763e-11) (-7.76409e-11 3.53611e-11 -5.27252e-11) (-3.48276e-11 3.55273e-11 -3.18209e-11) (2.68922e-12 5.77338e-13 -3.29172e-12) (1.32302e-10 -1.05223e-10 -1.4657e-11) (5.4272e-10 -5.17523e-10 -2.19565e-11) (6.52731e-10 -5.99462e-10 -1.4743e-11) (2.46675e-10 -1.62618e-10 1.93305e-11) (1.79138e-11 1.2408e-11 1.1404e-11) (-1.14477e-10 3.45544e-10 6.17321e-11) (-6.41688e-10 1.31252e-09 -9.77191e-11) (-7.13875e-10 1.55891e-09 -5.79386e-10) (-3.11687e-10 8.27884e-10 -6.55438e-10) (-9.88458e-11 2.00194e-10 -2.76411e-10) (-5.74102e-11 1.85276e-11 -3.82417e-11) (-2.85698e-10 -1.85809e-11 6.83677e-11) (-8.27225e-10 -6.61803e-11 3.1976e-10) (-7.039e-10 -2.10965e-11 2.89403e-10) (-1.84152e-10 1.62634e-11 8.67362e-11) (-1.65301e-11 7.78247e-12 8.65528e-12) (-3.36779e-12 4.93102e-12 -3.54396e-13) (-4.39191e-12 6.56066e-12 -1.91015e-12) (-9.84602e-13 1.43118e-12 3.05585e-13) (9.86869e-13 -6.56598e-13 1.20003e-12) (1.16601e-11 -8.11464e-12 2.85604e-12) (1.75641e-11 -4.34921e-12 5.02165e-14) (3.23913e-11 1.67149e-11 6.70178e-12) (1.19955e-10 1.15655e-10 5.16342e-11) (2.41691e-10 2.23151e-10 5.32648e-11) (1.67233e-10 1.45131e-10 -7.96073e-11) (-1.98472e-11 7.08106e-11 -2.1941e-10) (-9.66744e-10 3.22564e-11 -7.32965e-10) (-7.05403e-12 -1.02241e-11 -9.77693e-12) (-1.06575e-12 -6.18359e-11 -2.01805e-11) (1.37744e-10 -2.35502e-10 -3.82425e-11) (4.57887e-10 -4.10283e-10 -5.37326e-11) (4.55734e-10 -2.77836e-10 -8.75183e-12) (1.29411e-10 -6.39553e-11 3.2978e-11) (4.23176e-12 -8.25379e-12 2.12816e-11) (-8.96269e-11 -1.63867e-11 7.16953e-11) (-3.21293e-10 -5.03142e-11 1.00936e-10) (-3.44107e-10 -8.37475e-11 2.85915e-11) (-1.32816e-10 -7.58932e-11 -1.11633e-11) (-1.97738e-11 -7.3233e-11 -1.03191e-11) (8.3968e-11 -2.00318e-10 -1.80496e-11) (2.98369e-10 -4.00372e-10 -3.70205e-11) (3.92369e-10 -3.77536e-10 -2.93195e-11) (2.19378e-10 -1.1626e-10 2.10471e-11) (5.73472e-11 2.80698e-11 3.59615e-11) (-5.88144e-11 3.25267e-10 1.27673e-10) (-8.10877e-10 1.34953e-09 1.00459e-10) (-1.67078e-09 2.12345e-09 -6.05346e-10) (-1.21846e-09 1.46495e-09 -1.09878e-09) (-3.00457e-10 3.97235e-10 -5.22413e-10) (-8.00485e-12 1.36259e-11 -2.61829e-11) (-1.54885e-12 -3.99468e-12 1.36378e-11) (-6.53646e-11 -1.63658e-11 1.14146e-10) (-2.34058e-10 2.23882e-11 1.42112e-10) (-3.3382e-10 8.18464e-11 4.88565e-11) (-1.88881e-10 7.33958e-11 -3.31981e-11) (-4.92563e-11 3.24051e-11 -3.09201e-11) (-7.75512e-12 1.22064e-11 -1.36707e-11) (3.94185e-13 4.52319e-12 -4.0188e-12) (2.86133e-12 2.43798e-12 -1.60054e-12) (1.17111e-11 3.2449e-12 -4.09094e-12) (2.80024e-11 6.81187e-12 -1.25338e-11) (3.32539e-11 1.3692e-11 -1.23315e-11) (3.23172e-11 1.75875e-11 2.52625e-12) (4.77172e-11 1.91319e-11 2.71032e-11) (5.3013e-11 9.4929e-12 3.30138e-11) (1.56192e-11 1.29408e-12 4.77083e-12) (3.87571e-13 -2.81519e-13 -1.14957e-12) (1.91444e-10 -1.69353e-10 1.26562e-11) (3.43765e-10 -3.25119e-10 -9.10152e-11) (3.05666e-10 -3.2539e-10 -1.35618e-10) (1.11518e-10 -1.2028e-10 -5.89896e-11) (9.0947e-12 -6.28003e-12 -3.96158e-12) (-5.86627e-14 3.33224e-12 1.22896e-12) (-1.5452e-11 2.93476e-11 1.30395e-11) (-4.00222e-11 3.11156e-11 1.68202e-11) (-7.15714e-11 2.8299e-12 1.15567e-11) (-1.36453e-10 -6.66543e-11 6.2557e-12) (-1.76735e-10 -1.81808e-10 6.95499e-12) (-1.32867e-10 -2.78185e-10 1.17047e-11) (-3.50028e-11 -3.3661e-10 -8.34313e-13) (7.66089e-11 -3.62375e-10 -3.12628e-11) (1.48679e-10 -2.89191e-10 -3.40357e-11) (1.22222e-10 -1.14016e-10 1.37231e-11) (8.05423e-11 5.89201e-12 5.85224e-11) (5.77678e-11 2.49916e-10 2.14734e-10) (-4.3424e-10 1.11439e-09 4.45383e-10) (-1.76504e-09 2.40275e-09 3.59722e-11) (-2.17434e-09 2.39338e-09 -1.03418e-09) (-8.67856e-10 9.41671e-10 -9.66677e-10) (-6.46962e-11 8.19721e-11 -1.59829e-10) (5.14832e-13 -1.83161e-12 1.85438e-12) (-2.17239e-11 -5.20796e-11 1.20781e-10) (-1.21595e-10 -4.06881e-11 1.74449e-10) (-1.47054e-10 1.23125e-11 7.08648e-11) (-7.67515e-11 2.26459e-11 -6.08726e-12) (-1.1481e-11 6.75885e-12 -1.42637e-11) (1.02643e-11 1.6931e-12 -2.08638e-11) (5.14851e-11 -3.03967e-12 -4.16721e-11) (8.45767e-11 -1.37812e-12 -5.18259e-11) (8.14897e-11 1.00556e-11 -5.2611e-11) (4.51166e-11 2.17345e-11 -4.06604e-11) (8.0352e-12 1.9049e-11 -1.59022e-11) (-8.0516e-12 1.56697e-11 7.98547e-13) (-3.29868e-11 1.8495e-11 3.85005e-11) (-4.19826e-11 -1.06152e-11 1.08681e-10) (6.20243e-12 -4.8678e-11 1.11399e-10) (6.79629e-11 -7.60493e-11 6.7198e-11) (2.63425e-10 -1.59535e-10 -3.51401e-11) (3.18239e-10 -1.6451e-10 -7.84446e-11) (1.85536e-10 -8.42695e-11 -4.95119e-11) (4.31583e-11 -1.86072e-11 -9.25218e-12) (1.16581e-12 -5.55256e-13 1.48566e-13) (-1.69288e-12 8.02642e-13 1.35528e-12) (-1.06989e-11 6.43473e-12 4.45813e-12) (-1.36888e-11 7.78226e-12 1.09237e-12) (-1.19877e-11 1.65766e-12 -3.91581e-12) (-1.99052e-11 -1.52206e-11 -1.15047e-11) (-4.02614e-11 -8.33668e-11 -2.51664e-11) (-4.62485e-11 -2.03271e-10 -3.38378e-11) (-2.84646e-11 -2.90246e-10 -4.87474e-11) (-9.32463e-12 -3.04289e-10 -7.4869e-11) (5.0179e-12 -2.46504e-10 -6.9278e-11) (1.96145e-11 -1.1566e-10 -1.02381e-11) (3.21812e-11 -3.20039e-11 3.81671e-11) (1.36752e-10 8.83939e-11 2.63997e-10) (1.4717e-10 5.72417e-10 6.82571e-10) (-3.32899e-10 1.13072e-09 6.95952e-10) (-1.13802e-09 1.60202e-09 1.64411e-10) (-1.36239e-09 1.46538e-09 -6.78906e-10) (-5.48208e-10 6.08542e-10 -6.89392e-10) (-4.52144e-11 6.62263e-11 -1.39891e-10) (-2.50927e-13 -1.71136e-12 2.39498e-13) (-3.68029e-11 -9.39555e-11 9.66244e-11) (-1.4537e-10 -2.18732e-10 2.02823e-10) (-1.27145e-10 -1.32475e-10 8.12503e-11) (-4.29555e-11 -2.72791e-11 -2.90603e-12) (-1.25936e-11 -1.43912e-13 -1.47948e-11) (-1.38759e-12 1.07157e-11 -2.08766e-11) (1.03265e-11 1.94806e-11 -2.00265e-11) (1.58901e-11 2.68596e-11 -1.42274e-11) (9.21588e-12 3.42674e-11 -8.3305e-12) (-8.50579e-12 4.77633e-11 -3.62236e-12) (-3.07852e-11 5.21278e-11 8.54066e-12) (-2.58362e-11 2.37047e-11 1.92304e-11) (-5.59376e-12 -3.41081e-13 1.57129e-11) (1.74274e-11 -2.13849e-11 2.31125e-11) (1.0633e-10 -8.13289e-11 1.90764e-11) (5.43491e-10 -2.20298e-10 -1.70755e-10) (3.07526e-10 -1.04928e-10 -3.46471e-11) (8.02124e-11 -1.13148e-11 1.81033e-11) (9.94426e-12 6.99492e-12 1.57756e-11) (-1.66562e-11 1.74339e-11 2.87809e-11) (-7.74445e-11 2.17697e-11 4.46426e-11) (-1.44846e-10 -4.13761e-12 3.17339e-11) (-1.51369e-10 -4.36893e-11 -6.23345e-12) (-7.83483e-11 -5.43778e-11 -2.61917e-11) (-1.40509e-11 -4.12941e-11 -2.19772e-11) (2.15206e-11 -4.64418e-11 -2.56062e-11) (5.12951e-11 -5.70549e-11 -4.10417e-11) (4.46681e-11 -6.07115e-11 -6.26024e-11) (1.06312e-11 -8.69183e-11 -9.81171e-11) (-4.1527e-11 -1.43119e-10 -1.2369e-10) (-5.07651e-11 -1.42477e-10 -5.70208e-11) (-9.45034e-12 -6.97344e-11 2.61023e-11) (6.21986e-11 -3.60465e-11 1.86666e-10) (3.64294e-10 2.62057e-10 7.91736e-10) (5.1294e-10 8.19429e-10 1.22279e-09) (6.81848e-11 8.08351e-10 7.13723e-10) (-3.34391e-10 5.93449e-10 1.68682e-10) (-7.69569e-10 6.31777e-10 -2.74623e-10) (-7.54814e-10 4.07048e-10 -5.31535e-10) (-2.63071e-10 7.95842e-11 -2.43561e-10) (-2.5793e-11 -7.58459e-12 -2.30948e-11) (-2.37031e-12 -1.5946e-11 4.6925e-12) (8.08982e-12 -5.09946e-11 2.83437e-11) (5.84627e-12 -5.05783e-11 1.39332e-11) (-8.27925e-12 -3.20205e-11 -1.05875e-11) (-4.216e-11 -2.33476e-11 -3.69008e-11) (-1.2936e-10 1.28546e-11 -6.49958e-11) (-2.26458e-10 9.43328e-11 -4.4049e-11) (-2.11771e-10 1.50794e-10 2.31653e-11) (-1.05264e-10 1.30491e-10 5.87414e-11) (-1.49162e-11 6.22493e-11 3.5119e-11) (1.40318e-11 1.84826e-11 7.40691e-12) (6.3797e-11 6.14591e-12 -1.67434e-11) (2.44748e-10 -5.86687e-11 -1.11865e-10) (4.97362e-10 -1.86946e-10 -2.18867e-10) (4.96821e-10 -2.99094e-10 -1.34085e-10) (2.34038e-10 -5.49049e-11 5.3192e-11) (1.56334e-10 6.05833e-11 1.74524e-10) (7.22806e-11 1.70098e-10 2.77283e-10) (-4.03866e-11 1.69684e-10 2.05643e-10) (-6.74496e-11 7.98795e-11 8.12875e-11) (-3.93213e-11 1.22645e-11 1.72563e-11) (-2.38571e-11 -1.5166e-11 9.21432e-13) (-2.53847e-11 -7.20153e-11 -1.41332e-11) (-1.17437e-11 -1.31476e-10 -4.19329e-11) (5.19781e-13 -7.44046e-11 -4.63796e-11) (1.89654e-12 -1.56082e-11 -4.25228e-11) (-1.94169e-12 1.71967e-11 -1.00522e-10) (-2.13276e-11 2.27029e-11 -1.66187e-10) (-3.03076e-11 -3.14025e-11 -1.21385e-10) (-2.14347e-11 -6.62366e-11 -4.2816e-11) (-1.58245e-11 -8.8201e-11 2.51739e-11) (-1.24245e-11 -9.15754e-11 1.43871e-10) (1.58404e-11 -3.2821e-12 3.91402e-10) (1.34374e-10 2.98922e-10 7.4586e-10) (2.44649e-10 6.71752e-10 8.51461e-10) (1.17303e-10 6.05953e-10 4.53996e-10) (-4.29575e-11 2.36073e-10 6.48286e-11) (-1.19391e-10 9.90376e-11 -6.81213e-11) (-2.98088e-10 1.69121e-11 -2.52642e-10) (-4.01708e-10 -1.29154e-10 -3.75297e-10) (-2.99997e-10 -1.80625e-10 -2.86232e-10) (-1.26436e-10 -1.20411e-10 -1.2541e-10) (-2.27429e-11 -4.9768e-11 -3.47015e-11) (5.64449e-12 -1.8692e-11 -1.09378e-11) (1.34451e-11 -6.86169e-12 -8.15672e-12) (1.05199e-11 3.97586e-12 -6.30614e-12) (8.98755e-14 1.65564e-11 -4.45256e-12) (-7.15092e-11 9.24199e-11 6.78189e-12) (-2.50557e-10 2.21515e-10 6.87306e-11) (-1.99845e-10 1.70518e-10 8.1569e-11) (-1.58025e-11 1.7714e-11 9.56406e-12) (1.77595e-11 -1.01213e-11 -8.40447e-12) (3.05669e-10 -2.39945e-10 -1.72497e-10) (6.39735e-10 -5.01219e-10 -3.24738e-10) (2.11824e-10 -5.76663e-12 -7.0139e-13) (5.27089e-10 -8.50846e-12 -4.17334e-12) (8.96058e-10 -6.54169e-12 7.60493e-11) (1.0941e-09 -2.77863e-12 1.39797e-10) (9.54115e-10 1.384e-12 9.95329e-11) (5.28892e-10 4.50222e-12 3.57545e-12) (2.23386e-10 2.54691e-12 -3.97338e-11) (1.49896e-10 5.28915e-14 -4.5404e-11) (2.40586e-10 -2.02707e-12 -3.52482e-11) (5.74972e-10 -3.79866e-12 2.38712e-11) (1.12188e-09 7.35151e-13 1.58372e-10) (1.70317e-09 9.21043e-12 3.48525e-10) (2.27903e-09 1.44973e-11 6.22372e-10) (2.88535e-09 2.30782e-11 9.70968e-10) (3.34046e-09 3.06279e-11 1.24556e-09) (3.34262e-09 2.89189e-11 1.20813e-09) (2.93378e-09 1.9252e-11 8.5611e-10) (2.46625e-09 8.24808e-12 4.3511e-10) (2.16206e-09 1.32799e-12 1.30763e-10) (2.01087e-09 -3.66157e-13 -2.27022e-11) (2.00393e-09 -3.2542e-12 -4.83719e-11) (2.00537e-09 -2.15144e-12 2.48314e-11) (1.85872e-09 -1.00384e-12 1.39882e-10) (1.45213e-09 2.81117e-13 2.13562e-10) (9.56492e-10 2.32482e-12 2.11477e-10) (7.0906e-10 5.83898e-12 2.20053e-10) (8.14143e-10 1.0903e-11 3.4556e-10) (1.21084e-09 1.81685e-11 6.23198e-10) (1.52343e-09 2.38328e-11 8.38637e-10) (1.27706e-09 2.05439e-11 6.80013e-10) (7.22831e-10 1.04983e-11 2.78072e-10) (4.43521e-10 4.90725e-12 1.89302e-12) (5.91411e-10 4.52681e-12 -2.57863e-10) (1.11039e-09 6.77104e-12 -6.40769e-10) (1.78911e-09 -1.78132e-12 -9.28406e-10) (2.11319e-09 -8.03704e-12 -8.39679e-10) (1.68169e-09 4.30375e-12 -3.58209e-10) (8.66454e-10 1.39733e-11 5.78847e-11) (3.05429e-10 6.0109e-12 1.15872e-10) (1.30797e-10 -1.25068e-12 4.11917e-11) (1.74439e-09 -8.06029e-11 -3.18333e-11) (2.77335e-09 -1.04991e-10 -3.42793e-10) (5.2218e-09 -1.00639e-10 -1.78883e-10) (8.25411e-09 -9.13278e-11 2.97052e-10) (9.42958e-09 -5.57594e-11 4.51851e-10) (7.02586e-09 3.0464e-11 -5.28278e-11) (3.76222e-09 4.99554e-11 -5.31768e-10) (2.26711e-09 1.1118e-11 -5.94403e-10) (2.39666e-09 -1.74229e-11 -4.27303e-10) (4.46611e-09 -5.01132e-11 5.86939e-11) (9.0074e-09 -6.35093e-11 1.22582e-09) (1.53861e-08 -9.94303e-11 2.90742e-09) (2.26111e-08 -1.90243e-10 4.77156e-09) (3.02099e-08 -2.42933e-10 6.72942e-09) (3.62422e-08 -1.65221e-10 8.13292e-09) (3.75563e-08 -3.92019e-11 7.77228e-09) (3.35134e-08 1.8343e-11 5.3262e-09) (2.74636e-08 -5.04401e-11 2.11199e-09) (2.29661e-08 -1.75977e-10 -3.47192e-10) (2.08088e-08 -2.80682e-10 -1.52243e-09) (2.05199e-08 -3.74965e-10 -1.45856e-09) (2.07831e-08 -3.97591e-10 -4.20329e-10) (2.03335e-08 -3.30198e-10 9.29808e-10) (1.73463e-08 -1.95238e-10 1.66505e-09) (1.19438e-08 -8.14449e-11 1.44497e-09) (7.7659e-09 -3.5016e-11 1.14897e-09) (7.16375e-09 -5.47503e-11 1.50248e-09) (1.00793e-08 -1.07563e-10 2.67548e-09) (1.42252e-08 -9.35066e-11 4.03149e-09) (1.47592e-08 2.24631e-11 4.1402e-09) (1.07429e-08 7.45284e-11 2.51244e-09) (6.93131e-09 4.69444e-11 4.60381e-10) (6.60204e-09 2.0222e-11 -1.39197e-09) (1.01524e-08 2.59642e-11 -3.91415e-09) (1.55652e-08 -1.4015e-10 -6.14872e-09) (1.75119e-08 -3.15533e-10 -5.5666e-09) (1.39228e-08 -1.92375e-10 -2.35057e-09) (9.01009e-09 8.40208e-11 5.56459e-10) (5.04798e-09 1.17991e-10 1.47246e-09) (2.4115e-09 -1.42508e-11 6.60984e-10) (4.10596e-10 -2.57708e-11 4.85278e-11) (4.41123e-10 -3.44601e-11 -1.54143e-10) (1.23246e-09 -4.82144e-11 -2.6808e-10) (3.14782e-09 -7.52255e-11 -8.9003e-11) (4.82005e-09 -8.39985e-11 2.37668e-10) (4.20421e-09 -1.53261e-11 1.31254e-10) (2.36778e-09 3.38725e-11 -2.44241e-10) (1.2713e-09 2.0009e-11 -3.92007e-10) (1.01578e-09 1.25988e-12 -3.30459e-10) (1.62046e-09 -2.54342e-11 -1.43054e-10) (3.75293e-09 -8.42417e-11 4.34058e-10) (7.45463e-09 -2.34111e-10 1.54753e-09) (1.15101e-08 -4.4228e-10 2.62567e-09) (1.49667e-08 -5.76361e-10 3.31882e-09) (1.71126e-08 -4.79036e-10 3.6222e-09) (1.67712e-08 -2.41928e-10 3.22792e-09) (1.38284e-08 -4.91102e-11 2.0117e-09) (1.00924e-08 -2.17468e-11 5.02517e-10) (7.56051e-09 -1.0046e-10 -6.49169e-10) (6.60293e-09 -2.02763e-10 -1.3056e-09) (6.5781e-09 -2.95822e-10 -1.41216e-09) (6.65611e-09 -3.35816e-10 -8.81519e-10) (6.51315e-09 -2.79225e-10 -8.94782e-12) (5.66218e-09 -1.57232e-10 6.33651e-10) (3.86073e-09 -4.87056e-11 6.15169e-10) (2.19153e-09 -1.45404e-11 3.34052e-10) (1.64225e-09 -4.48966e-11 2.70033e-10) (2.29067e-09 -1.22778e-10 4.48873e-10) (3.79999e-09 -1.87135e-10 7.42211e-10) (4.73718e-09 -1.15351e-10 8.9219e-10) (4.0735e-09 -5.66621e-12 7.13383e-10) (2.83502e-09 2.23218e-11 2.41924e-10) (2.45924e-09 7.92424e-12 -3.47663e-10) (3.80417e-09 -1.73214e-12 -1.40084e-09) (6.64161e-09 -1.34064e-10 -2.91778e-09) (7.47864e-09 -2.87246e-10 -3.07199e-09) (4.69949e-09 -1.92152e-10 -1.29658e-09) (2.47277e-09 -2.21545e-12 1.1998e-10) (1.93113e-09 8.09931e-11 8.254e-10) (1.16645e-09 2.35931e-11 6.08929e-10) (-1.75881e-11 -1.18159e-12 2.859e-11) (-2.93015e-11 -5.08322e-12 -2.94622e-11) (2.29513e-11 -6.96466e-12 -5.41922e-11) (4.27577e-10 -2.4812e-11 -7.07368e-11) (1.3559e-09 -3.79557e-11 1.57678e-10) (1.15161e-09 -2.42918e-12 1.9716e-10) (3.5046e-10 1.21678e-11 -3.58776e-12) (7.08764e-11 6.24205e-12 -5.40801e-11) (3.10675e-11 1.92846e-12 -5.90547e-11) (4.66777e-11 -2.62958e-12 -3.04266e-11) (3.40189e-10 -2.64685e-11 3.48923e-11) (1.49738e-09 -1.40913e-10 4.46641e-10) (3.07537e-09 -3.24193e-10 1.06054e-09) (4.03282e-09 -3.99288e-10 1.32765e-09) (4.15535e-09 -2.83906e-10 1.323e-09) (3.3954e-09 -7.66712e-11 1.08155e-09) (1.99083e-09 5.02934e-11 5.83452e-10) (7.70112e-10 4.36457e-11 1.1609e-10) (2.65901e-10 1.01851e-11 -7.10621e-11) (2.05271e-10 -1.26729e-11 -1.9538e-10) (2.58883e-10 -4.23414e-11 -3.14402e-10) (2.52305e-10 -4.98974e-11 -2.26886e-10) (1.68244e-10 -2.51881e-11 -5.64225e-11) (1.04671e-10 -7.25654e-12 3.03353e-11) (4.54838e-11 2.5976e-12 4.4983e-11) (4.44336e-12 2.02799e-12 1.50098e-11) (-8.71439e-13 -2.90209e-13 3.76168e-12) (4.99791e-12 -2.88307e-12 4.06253e-12) (7.11329e-11 -1.88964e-11 1.35228e-11) (1.83526e-10 -2.026e-11 1.82695e-11) (1.58756e-10 1.01417e-12 2.06824e-11) (7.03341e-11 6.29629e-12 7.13101e-12) (4.15089e-11 4.04756e-12 -1.44722e-11) (1.60313e-10 5.62092e-12 -1.43923e-10) (7.20406e-10 -2.53181e-11 -6.89148e-10) (1.13814e-09 -7.96485e-11 -1.1047e-09) (3.78884e-10 -3.71263e-11 -4.1483e-10) (8.68446e-12 2.67872e-14 -4.47853e-12) (1.9763e-11 1.71684e-11 1.22919e-10) (2.1892e-11 2.54877e-11 2.87553e-10) (-4.23411e-10 3.64222e-11 3.4516e-10) (-6.02295e-10 2.07531e-12 -7.31205e-11) (-2.10663e-10 -2.27592e-11 -1.98787e-10) (6.69551e-11 -1.47689e-11 -5.27752e-11) (1.00609e-09 -5.56104e-11 1.32396e-10) (1.37307e-09 -8.29556e-12 4.37036e-10) (3.29602e-10 1.49141e-11 9.29754e-11) (8.73721e-12 2.49235e-12 -9.23183e-12) (-3.59548e-11 5.3213e-12 -7.22093e-11) (-3.19739e-11 -8.23514e-13 -5.15343e-11) (3.70459e-12 -1.93429e-12 -3.08986e-12) (2.55278e-10 -6.10076e-11 7.1756e-11) (1.23578e-09 -2.69818e-10 4.7052e-10) (2.34192e-09 -4.44038e-10 9.45952e-10) (2.9155e-09 -3.91538e-10 1.20183e-09) (2.66675e-09 -1.23256e-10 1.22064e-09) (1.61139e-09 9.87254e-11 8.69683e-10) (4.67662e-10 9.02538e-11 2.83094e-10) (2.6759e-11 1.08827e-11 9.41013e-12) (-4.04682e-12 2.85027e-12 -3.18772e-11) (-4.55012e-11 -2.07823e-11 -2.21981e-10) (-4.40354e-11 -4.60165e-11 -2.67132e-10) (-1.79213e-11 -1.53642e-11 -6.40553e-11) (-9.5795e-12 -9.99048e-13 1.97782e-12) (-1.04618e-10 1.49158e-11 8.94381e-11) (-2.80619e-10 4.0185e-11 1.72314e-10) (-2.79451e-10 9.23679e-12 9.90753e-11) (-6.09805e-11 -1.5108e-11 1.19684e-11) (5.43107e-13 -4.52647e-12 -1.83317e-12) (2.68319e-11 -1.1309e-11 -1.33698e-11) (1.73614e-11 -1.26689e-12 -5.77556e-12) (1.15793e-12 6.32443e-13 6.35373e-14) (-2.68652e-13 4.5478e-13 2.18821e-14) (-2.74125e-13 1.33916e-12 -4.37319e-12) (6.30372e-11 -1.00441e-12 -1.33938e-10) (3.56763e-10 -2.90362e-11 -6.91215e-10) (1.38884e-10 -1.94798e-11 -7.07246e-10) (-1.27347e-10 3.00936e-12 -1.50998e-10) (-2.08784e-10 2.21783e-11 9.96421e-11) (-3.21587e-10 5.90201e-11 4.99406e-10) (-6.92019e-10 1.23905e-10 6.58633e-10) (-1.34895e-09 1.24491e-10 1.96719e-10) (-1.08389e-09 -2.578e-11 -4.76311e-10) (-2.44678e-11 -2.61797e-11 -1.02782e-10) (6.63187e-10 -8.41325e-11 8.03482e-12) (2.45585e-09 -8.4005e-11 7.85884e-10) (1.43584e-09 3.02228e-11 5.45268e-10) (1.20467e-10 1.24105e-11 8.48504e-12) (-1.02599e-11 6.1069e-12 -3.90267e-11) (-1.23209e-10 6.81051e-12 -1.31088e-10) (-4.82121e-11 -9.42198e-12 -4.82464e-11) (8.0619e-12 -9.76476e-12 -4.43324e-12) (3.40304e-10 -1.52994e-10 7.46654e-11) (1.48117e-09 -4.82819e-10 4.51872e-10) (2.74852e-09 -6.4572e-10 9.51319e-10) (3.18386e-09 -3.76722e-10 1.31116e-09) (2.5521e-09 6.64357e-11 1.34732e-09) (1.30977e-09 2.4867e-10 8.9531e-10) (2.87589e-10 1.15946e-10 2.32785e-10) (6.48485e-12 6.03086e-12 1.73636e-12) (-1.73491e-11 1.10839e-12 -7.27608e-11) (-9.50773e-11 -4.28885e-11 -3.00858e-10) (-1.26285e-10 -4.281e-11 -2.13128e-10) (-1.33769e-10 -8.02398e-12 -2.76486e-11) (-5.30926e-10 6.14482e-11 2.4582e-10) (-1.19627e-09 1.68158e-10 6.33606e-10) (-9.55859e-10 4.53171e-11 3.87472e-10) (-1.30231e-10 -3.5755e-11 3.19259e-11) (1.84186e-11 -2.66683e-11 -1.75074e-11) (2.20973e-10 -7.99758e-11 -1.31731e-10) (1.45686e-10 -2.12111e-11 -8.50599e-11) (1.17461e-11 1.668e-12 -6.09701e-12) (1.96863e-13 6.92653e-13 5.11798e-13) (2.41437e-13 1.17828e-12 1.63019e-12) (5.14371e-12 7.62844e-13 -2.59344e-12) (1.52096e-10 1.11125e-12 -2.20506e-10) (2.38312e-10 3.73641e-11 -9.05696e-10) (-3.13082e-10 3.26827e-11 -6.69484e-10) (-5.10333e-10 9.42797e-12 -8.9623e-11) (-4.54142e-10 3.83887e-11 3.73507e-10) (-7.83614e-10 1.60623e-10 7.11947e-10) (-2.05973e-09 4.17029e-10 7.31769e-10) (-2.59783e-09 1.38904e-10 -5.00091e-10) (-4.11226e-10 -8.66565e-11 -3.89043e-10) (1.91846e-10 -6.37402e-11 -6.63682e-11) (2.14839e-09 -2.00995e-10 6.01596e-10) (2.8317e-09 -6.25953e-11 1.1152e-09) (8.93069e-10 3.48649e-11 2.32513e-10) (3.42015e-11 9.8404e-12 -2.18862e-11) (-9.03856e-11 1.79832e-11 -1.08852e-10) (-2.41444e-10 -1.14969e-11 -1.62875e-10) (-4.01331e-11 -2.67287e-11 -3.45418e-11) (7.53734e-11 -7.92724e-11 -9.20645e-12) (9.05395e-10 -4.66e-10 1.26499e-10) (2.27763e-09 -8.27603e-10 4.70571e-10) (2.81859e-09 -6.32242e-10 8.02146e-10) (2.43413e-09 -9.77417e-11 9.9193e-10) (1.63115e-09 2.82134e-10 9.43954e-10) (7.1686e-10 2.85335e-10 5.35896e-10) (1.28103e-10 8.04974e-11 8.81469e-11) (7.89462e-12 6.9374e-12 -9.16512e-12) (-2.56804e-11 -5.11985e-12 -1.37921e-10) (-1.90864e-10 -3.41832e-11 -2.55201e-10) (-5.46652e-10 5.3763e-12 -1.20005e-10) (-2.04539e-09 2.68821e-10 5.65746e-10) (-4.04773e-09 5.55367e-10 1.60643e-09) (-2.47223e-09 6.75344e-11 9.17477e-10) (-1.9204e-10 -8.54413e-11 6.33543e-11) (1.26718e-10 -1.20304e-10 -5.22654e-11) (8.63133e-10 -2.75447e-10 -3.62386e-10) (6.15959e-10 -7.25456e-11 -2.80398e-10) (5.20819e-11 5.24145e-12 -2.77434e-11) (-1.29367e-12 1.18946e-12 1.07711e-12) (-1.36636e-11 6.58542e-12 2.38916e-11) (2.37201e-12 2.1034e-12 1.59492e-11) (5.27078e-11 7.36494e-12 -2.57766e-11) (4.04654e-10 1.29969e-10 -7.01605e-10) (-7.53847e-11 1.63815e-10 -1.06447e-09) (-5.46506e-10 5.54936e-13 -3.7645e-10) (-4.57139e-10 -2.25636e-11 1.57565e-10) (-8.62701e-10 1.42273e-10 6.39864e-10) (-2.9898e-09 9.35536e-10 1.40632e-09) (-4.37384e-09 6.41577e-10 -9.58829e-11) (-1.44939e-09 -1.29347e-10 -9.01719e-10) (3.8001e-11 -7.58486e-11 -1.36778e-10) (1.1392e-09 -2.48475e-10 1.76806e-10) (2.78554e-09 -2.51736e-10 1.07147e-09) (1.88757e-09 -2.41316e-11 6.16879e-10) (3.59631e-10 4.42185e-11 6.27947e-12) (4.16106e-13 1.13599e-11 -2.64502e-11) (-1.44158e-10 7.23852e-12 -1.02642e-10) (-6.31964e-11 -3.18933e-11 -4.12988e-11) (4.44527e-11 -7.78578e-11 -1.74162e-11) (6.56627e-10 -4.75728e-10 -4.69465e-14) (1.63463e-09 -9.11348e-10 1.0377e-10) (2.01805e-09 -8.01478e-10 3.00138e-10) (1.81941e-09 -2.96956e-10 4.90956e-10) (1.45952e-09 1.75349e-10 6.08957e-10) (9.22418e-10 3.62352e-10 5.09529e-10) (3.47571e-10 2.0218e-10 1.81647e-10) (7.23144e-11 4.26212e-11 -3.70847e-12) (1.71097e-11 1.20894e-11 -5.49565e-11) (-1.38518e-10 5.82733e-12 -1.6867e-10) (-1.16753e-09 1.28428e-10 -2.14687e-10) (-4.35788e-09 7.76459e-10 7.64379e-10) (-6.71441e-09 1.04993e-09 1.94261e-09) (-3.23974e-09 -1.60292e-12 9.21683e-10) (-2.39192e-10 -1.71324e-10 6.36633e-11) (2.28256e-10 -2.81517e-10 -4.90681e-11) (1.08877e-09 -4.53882e-10 -2.61714e-10) (7.89098e-10 -1.03296e-10 -2.07577e-10) (5.84482e-11 1.18583e-11 -1.67541e-11) (-3.53019e-11 1.35283e-11 1.78009e-11) (-2.87592e-10 3.07191e-11 2.03339e-10) (-1.19018e-10 -2.68464e-12 1.39545e-10) (5.47778e-12 1.16701e-12 -2.03768e-13) (5.50238e-10 2.08578e-10 -5.70987e-10) (5.98899e-10 4.36188e-10 -1.33287e-09) (-1.22695e-10 3.21362e-11 -3.351e-10) (-2.44799e-10 -5.12505e-11 2.24773e-11) (-1.58575e-09 1.93186e-10 8.84933e-10) (-4.64842e-09 1.71046e-09 2.18496e-09) (-4.78503e-09 1.2709e-09 3.9391e-10) (-2.054e-09 -1.86694e-11 -1.20883e-09) (-1.21817e-10 -2.20121e-10 -5.536e-10) (4.92421e-10 -2.30012e-10 -9.69236e-11) (1.98013e-09 -3.92616e-10 6.51904e-10) (2.15256e-09 -1.73399e-10 7.8553e-10) (9.77197e-10 5.06234e-11 1.90444e-10) (1.27192e-10 3.71059e-11 -1.88576e-11) (3.68008e-13 2.25741e-12 -5.16061e-12) (-1.23546e-12 -4.37447e-12 -2.87339e-12) (6.40381e-11 -8.44895e-11 -2.54563e-12) (4.69924e-10 -4.25811e-10 -9.6231e-12) (9.70706e-10 -8.14394e-10 -7.00084e-11) (1.16773e-09 -8.19177e-10 -3.17863e-11) (1.16066e-09 -4.45411e-10 1.41687e-10) (1.16457e-09 -6.01869e-12 3.23676e-10) (1.0047e-09 3.33391e-10 3.93302e-10) (5.39983e-10 2.98161e-10 2.05681e-10) (1.84369e-10 1.02989e-10 8.54872e-12) (5.26351e-11 3.05894e-11 -4.63923e-11) (-6.71472e-11 3.91349e-11 -9.7865e-11) (-1.69997e-09 4.30827e-10 -3.37771e-10) (-6.67087e-09 1.62623e-09 4.21113e-10) (-7.68171e-09 1.49554e-09 1.11091e-09) (-2.62013e-09 -5.76858e-11 3.04792e-10) (-1.74671e-10 -2.25911e-10 8.58482e-12) (3.86427e-10 -5.6167e-10 5.30976e-12) (1.02367e-09 -6.04189e-10 3.51722e-11) (5.2272e-10 -1.07339e-10 3.01817e-11) (2.52713e-11 1.17492e-11 9.47651e-12) (-1.55788e-10 6.32401e-11 9.73985e-11) (-1.01228e-09 7.73575e-11 6.16355e-10) (-7.025e-10 -7.79724e-11 5.00307e-10) (-9.14827e-12 -3.09817e-12 4.1092e-12) (4.11853e-10 1.88256e-10 -4.65185e-10) (1.39745e-09 8.65482e-10 -1.68453e-09) (1.60654e-10 1.26546e-10 -3.74118e-10) (-1.06831e-10 -2.6361e-11 7.07612e-12) (-3.99675e-09 5.64438e-10 1.74039e-09) (-5.52589e-09 2.06704e-09 2.56464e-09) (-2.43143e-09 1.08848e-09 3.63986e-10) (-9.99665e-10 1.16365e-10 -8.75789e-10) (-2.09603e-10 -3.74376e-10 -1.3456e-09) (3.90155e-10 -3.25014e-10 -4.08364e-10) (1.15358e-09 -4.18495e-10 1.73507e-10) (1.82066e-09 -3.38001e-10 6.66035e-10) (1.42069e-09 -4.80761e-11 4.36072e-10) (7.24067e-10 8.88742e-11 1.36662e-10) (2.24965e-10 3.87103e-11 3.55381e-11) (8.58318e-11 -1.437e-11 2.77347e-11) (1.35498e-10 -9.85357e-11 5.8003e-11) (2.7454e-10 -3.02473e-10 5.70098e-11) (4.51268e-10 -5.94718e-10 -7.9415e-11) (6.36681e-10 -7.59039e-10 -2.18079e-10) (7.38925e-10 -5.35152e-10 -1.11918e-10) (8.41234e-10 -1.79809e-10 8.89887e-11) (9.07757e-10 1.67444e-10 2.44925e-10) (6.07279e-10 2.79774e-10 2.04418e-10) (2.12508e-10 1.18202e-10 4.1257e-11) (5.73462e-11 3.81803e-11 -2.19805e-11) (-2.60279e-11 7.21552e-11 -6.95592e-11) (-1.62641e-09 8.47983e-10 -4.7676e-10) (-8.35259e-09 2.84797e-09 -6.94692e-10) (-8.196e-09 1.86987e-09 -4.63497e-10) (-1.68158e-09 -1.2389e-10 -2.65145e-10) (-5.24293e-11 -2.89018e-10 -4.85896e-11) (6.97874e-10 -9.44728e-10 1.45918e-10) (1.0229e-09 -7.65397e-10 3.45151e-10) (3.33257e-10 -1.15112e-10 1.66402e-10) (1.34266e-11 2.14946e-11 4.40446e-11) (-3.18153e-10 1.59358e-10 2.5762e-10) (-1.47109e-09 1.47117e-10 9.8354e-10) (-1.4161e-09 -2.46408e-10 9.5495e-10) (-1.50639e-10 -6.74507e-11 4.78014e-11) (1.35891e-10 7.23406e-11 -2.62657e-10) (1.57747e-09 1.08409e-09 -1.70947e-09) (5.07413e-10 4.53953e-10 -5.73465e-10) (-1.63375e-10 3.131e-11 2.50159e-11) (-4.83248e-09 1.15523e-09 2.09041e-09) (-3.3746e-09 1.30635e-09 1.83793e-09) (-4.77777e-10 3.98223e-10 1.14916e-10) (-1.50598e-10 1.41901e-10 -4.95088e-10) (1.95993e-10 -3.40687e-10 -2.17422e-09) (7.6836e-10 -6.42904e-10 -1.34515e-09) (9.90611e-10 -5.10735e-10 -2.57879e-10) (1.27035e-09 -4.24642e-10 2.93422e-10) (1.12931e-09 -1.86432e-10 4.34653e-10) (1.01243e-09 2.09627e-11 4.21477e-10) (9.38075e-10 1.06358e-10 4.30569e-10) (6.51272e-10 1.6183e-11 3.9546e-10) (3.20095e-10 -1.18301e-10 2.86529e-10) (1.52187e-10 -2.15776e-10 1.48152e-10) (1.73129e-10 -4.00707e-10 -7.72719e-12) (3.89056e-10 -6.73919e-10 -2.68769e-10) (6.05988e-10 -6.113e-10 -3.2033e-10) (6.4344e-10 -2.87469e-10 -1.15115e-10) (6.66368e-10 -1.26698e-11 6.79784e-11) (5.19573e-10 1.4143e-10 1.50404e-10) (1.74622e-10 7.74482e-11 7.50994e-11) (2.05287e-11 1.95139e-11 5.99045e-12) (-2.33377e-11 1.07216e-10 -4.3791e-11) (-1.06704e-09 1.14561e-09 -4.97155e-10) (-5.91133e-09 3.2707e-09 -1.49038e-09) (-6.06119e-09 1.70348e-09 -1.6241e-09) (-1.03361e-09 -2.25109e-10 -5.15392e-10) (2.95777e-11 -4.5413e-10 -1.1667e-10) (6.3316e-10 -9.51845e-10 2.16246e-10) (6.57132e-10 -6.22122e-10 3.77104e-10) (1.82067e-10 -9.54373e-11 1.52132e-10) (-3.75393e-13 2.61985e-11 6.31615e-11) (-3.48154e-10 2.29521e-10 3.50059e-10) (-1.2516e-09 2.23533e-10 1.0578e-09) (-1.59863e-09 -3.56827e-10 1.27113e-09) (-6.18219e-10 -3.21367e-10 2.60156e-10) (-3.59525e-11 -7.30705e-12 -8.62835e-11) (6.14621e-10 7.03988e-10 -9.76319e-10) (5.49218e-10 9.59555e-10 -6.80276e-10) (-4.87364e-10 3.88251e-10 7.45092e-11) (-1.93976e-09 9.61705e-10 1.06648e-09) (-6.51124e-10 3.42303e-10 5.51585e-10) (-1.32143e-11 7.09362e-11 1.00928e-11) (1.49911e-10 1.98565e-10 -4.90436e-10) (8.76136e-10 -1.37646e-10 -2.62806e-09) (1.89991e-09 -9.78691e-10 -3.03859e-09) (2.02862e-09 -9.65483e-10 -1.36859e-09) (1.47311e-09 -5.98616e-10 -2.31482e-10) (7.05072e-10 -2.45484e-10 1.71966e-10) (4.12842e-10 -8.28748e-11 3.23291e-10) (5.59228e-10 1.61629e-11 6.62448e-10) (6.99653e-10 5.41377e-11 9.76595e-10) (3.89132e-10 -9.30243e-11 7.58331e-10) (1.12076e-10 -2.14144e-10 3.357e-10) (1.02564e-10 -3.0313e-10 9.8235e-11) (2.97424e-10 -4.84094e-10 -1.2781e-10) (5.39597e-10 -5.16921e-10 -3.36368e-10) (5.52362e-10 -3.00045e-10 -2.70775e-10) (4.59029e-10 -8.943e-11 -8.85807e-11) (3.56469e-10 2.01572e-11 5.11958e-11) (1.42301e-10 3.08427e-11 8.58785e-11) (6.20498e-12 1.40029e-11 2.67221e-11) (-7.51863e-11 1.23395e-10 6.24158e-12) (-7.14986e-10 1.21227e-09 -3.85052e-10) (-2.38189e-09 2.54501e-09 -1.22521e-09) (-2.14536e-09 9.56652e-10 -1.14155e-09) (-5.30431e-10 -2.6339e-10 -4.18068e-10) (-7.56801e-11 -5.35519e-10 -1.25892e-10) (1.05785e-10 -5.17878e-10 1.08901e-10) (1.57448e-10 -2.64186e-10 1.30018e-10) (8.07208e-11 -5.3178e-11 4.7987e-11) (6.94667e-12 9.24195e-12 1.74734e-11) (-1.45233e-10 1.61497e-10 1.8862e-10) (-6.31245e-10 2.52971e-10 7.44314e-10) (-1.17298e-09 -2.59412e-10 1.23987e-09) (-1.40978e-09 -7.04991e-10 7.41211e-10) (-6.93089e-10 -1.84438e-10 -1.16285e-10) (-1.93247e-10 3.63505e-10 -3.96976e-10) (1.59707e-12 1.43191e-09 -5.89241e-10) (-7.41333e-10 1.19843e-09 1.38175e-10) (-2.22422e-10 4.39795e-10 2.6975e-10) (6.12789e-12 3.59301e-11 4.90055e-11) (4.81528e-11 3.66015e-11 -1.64937e-11) (2.39003e-10 1.81315e-10 -4.43899e-10) (9.69732e-10 1.56232e-11 -2.05653e-09) (3.00364e-09 -1.03535e-09 -4.01637e-09) (4.49975e-09 -1.61349e-09 -3.60967e-09) (3.48415e-09 -1.08472e-09 -1.7292e-09) (1.16027e-09 -3.26461e-10 -2.92202e-10) (1.18781e-10 -4.36103e-11 6.17132e-11) (-9.12104e-12 -4.35102e-11 4.31404e-10) (-2.30707e-10 -5.62892e-11 1.42681e-09) (-2.23531e-10 -2.01531e-10 1.55235e-09) (-3.81529e-12 -3.61544e-10 8.26413e-10) (1.76202e-10 -3.68969e-10 3.39559e-10) (2.93318e-10 -3.12818e-10 8.31546e-11) (3.53875e-10 -2.36037e-10 -1.00453e-10) (3.93205e-10 -1.69752e-10 -2.2091e-10) (3.77413e-10 -9.78582e-11 -1.87828e-10) (2.6138e-10 -3.35853e-11 -3.66999e-11) (9.87614e-11 -5.47727e-13 5.50407e-11) (-1.15346e-11 1.81286e-11 8.01591e-11) (-2.93124e-10 2.1162e-10 1.45991e-10) (-7.9333e-10 1.01375e-09 -1.3559e-10) (-8.65838e-10 1.56327e-09 -7.03562e-10) (-3.75873e-10 3.58652e-10 -4.12379e-10) (-2.5856e-10 -1.83604e-10 -1.98691e-10) (-4.97866e-10 -6.35522e-10 -9.25567e-11) (-2.60409e-10 -4.05779e-10 4.45929e-11) (1.0087e-11 -1.0786e-10 1.36296e-11) (1.00391e-10 -6.13085e-11 -3.78338e-12) (4.18197e-11 5.84107e-12 3.46231e-12) (-8.13594e-12 6.55798e-11 4.29811e-11) (-1.77536e-10 2.11222e-10 3.29262e-10) (-5.14366e-10 -2.05514e-11 7.98614e-10) (-1.77405e-09 -7.22838e-10 1.11383e-09) (-3.63508e-09 -7.43025e-10 2.87763e-10) (-2.37431e-09 8.29508e-10 -5.10784e-10) (-1.15059e-09 2.27024e-09 -3.94653e-10) (-6.74798e-10 1.99824e-09 2.19367e-10) (1.52996e-10 4.37428e-10 1.14922e-10) (1.55142e-10 6.19475e-11 -2.07723e-11) (1.44091e-10 3.77289e-11 -1.38461e-10) (1.50477e-10 7.9936e-11 -3.88648e-10) (5.633e-10 -6.65279e-11 -1.0743e-09) (2.59776e-09 -8.95042e-10 -2.70748e-09) (5.14105e-09 -1.72147e-09 -3.5764e-09) (4.73424e-09 -1.33845e-09 -2.69235e-09) (2.08215e-09 -4.0573e-10 -1.19871e-09) (1.98097e-10 -7.17603e-12 -1.24276e-10) (-3.09936e-11 7.52663e-12 3.34526e-11) (-7.67146e-10 -7.08324e-11 9.11584e-10) (-8.66241e-10 -5.10752e-10 1.56477e-09) (-8.44943e-11 -6.83873e-10 1.14429e-09) (3.66673e-10 -5.53486e-10 7.49989e-10) (3.65758e-10 -2.33877e-10 3.40966e-10) (2.13897e-10 -5.76614e-11 6.92487e-11) (2.09488e-10 -3.00998e-11 -5.59616e-11) (3.17753e-10 -5.77373e-11 -1.65226e-10) (2.76282e-10 -6.5494e-11 -9.58677e-11) (7.37657e-11 -1.79284e-11 2.13121e-11) (-2.53722e-11 1.75011e-11 9.89936e-11) (-6.89851e-10 3.59797e-10 4.56899e-10) (-1.583e-09 1.09949e-09 3.10563e-10) (-8.54724e-10 8.85108e-10 -2.32674e-10) (-2.18036e-10 1.56512e-10 -1.75901e-10) (-3.09462e-10 -1.48457e-10 -1.43721e-10) (-7.74004e-10 -5.72359e-10 -1.34427e-10) (-3.23901e-10 -3.26823e-10 -5.02367e-11) (1.76256e-11 -8.58652e-11 -1.91734e-11) (2.33406e-10 -1.18075e-10 -3.85723e-11) (1.5639e-10 -9.25624e-12 -7.9935e-12) (1.80446e-11 3.53306e-11 1.11825e-11) (-3.70023e-11 1.41488e-10 1.08726e-10) (-1.3572e-10 1.01832e-10 3.21652e-10) (-1.15651e-09 -2.63987e-10 8.41667e-10) (-6.79169e-09 -9.38657e-10 1.12671e-09) (-9.23579e-09 1.56862e-09 1.62044e-10) (-3.42732e-09 3.29776e-09 2.79433e-10) (-5.1752e-10 2.25137e-09 4.03512e-10) (3.57002e-10 7.03519e-10 1.06505e-12) (4.7058e-10 2.44426e-10 -4.01545e-10) (3.7744e-10 2.96411e-11 -6.92045e-10) (2.72269e-10 -1.17935e-10 -5.98797e-10) (7.00614e-10 -4.11197e-10 -7.14487e-10) (2.12589e-09 -1.06242e-09 -1.18617e-09) (3.16678e-09 -1.31969e-09 -1.36895e-09) (2.62157e-09 -7.85723e-10 -1.3098e-09) (1.41797e-09 -9.00263e-11 -1.13866e-09) (4.06542e-10 2.147e-10 -6.56961e-10) (-1.64489e-11 8.6988e-11 -1.23639e-10) (-4.09213e-11 -1.65278e-12 1.35167e-11) (-7.7035e-11 -2.49892e-10 2.76559e-10) (1.96042e-10 -7.33668e-10 7.70953e-10) (3.94311e-10 -5.54172e-10 7.90561e-10) (3.04423e-10 -1.34507e-10 4.68694e-10) (2.05824e-10 2.84116e-11 1.95374e-10) (1.87979e-10 3.99412e-11 3.93749e-11) (3.07538e-10 1.63888e-12 -8.07462e-11) (3.35892e-10 -7.12559e-11 -1.11492e-10) (7.83604e-11 -3.09152e-11 1.97431e-12) (-2.304e-11 8.70806e-12 6.36673e-11) (-8.22836e-10 4.22986e-10 6.43905e-10) (-2.62048e-09 1.42162e-09 1.11263e-09) (-2.22648e-09 1.10823e-09 3.49939e-10) (-8.23594e-10 1.62003e-10 -1.02844e-10) (-5.18574e-10 -2.22127e-10 -1.93835e-10) (-4.56897e-10 -3.98155e-10 -2.44798e-10) (-1.24048e-10 -1.75944e-10 -1.04551e-10) (3.35635e-11 -5.75562e-11 -2.23737e-11) (2.87834e-10 -1.19007e-10 -3.11658e-12) (2.36191e-10 -3.63287e-11 2.38419e-11) (1.85987e-11 1.69847e-11 7.43542e-12) (-1.83911e-11 8.65721e-11 2.93036e-11) (-3.75339e-11 1.0177e-10 9.18667e-11) (-3.62706e-10 4.79205e-11 2.89847e-10) (-5.56886e-09 -3.25537e-10 1.10819e-09) (-1.51137e-08 1.52963e-09 1.36323e-09) (-6.57313e-09 3.71384e-09 1.4087e-09) (-6.64289e-10 2.13911e-09 6.63536e-10) (2.82885e-10 9.76503e-10 -1.48209e-10) (9.10215e-10 6.11211e-10 -1.11347e-09) (1.36474e-09 -2.19973e-10 -1.79371e-09) (1.62735e-09 -1.09513e-09 -1.35922e-09) (1.8713e-09 -1.57227e-09 -6.82523e-10) (1.41e-09 -1.1938e-09 -1.53153e-10) (6.99054e-10 -5.34135e-10 -4.69639e-11) (3.53254e-10 -1.43233e-10 -1.44593e-10) (4.63084e-10 9.47324e-11 -5.07252e-10) (5.95417e-10 5.12005e-10 -1.12856e-09) (3.10922e-10 3.65317e-10 -7.62649e-10) (6.48498e-11 4.22851e-12 -9.08018e-11) (1.00958e-10 -1.42741e-10 4.14521e-11) (2.39498e-10 -4.49504e-10 3.24656e-10) (1.95937e-10 -2.9395e-10 3.53906e-10) (1.26191e-10 -5.06124e-11 2.17954e-10) (1.40595e-10 6.13882e-11 1.56186e-10) (2.16737e-10 1.09179e-10 8.91617e-11) (3.51008e-10 7.86451e-11 -1.63161e-11) (3.78737e-10 -2.76362e-11 -8.52091e-11) (8.53794e-11 -3.04444e-11 -1.01227e-11) (-2.11864e-11 2.98311e-12 2.90691e-11) (-8.72797e-10 4.15124e-10 6.20197e-10) (-2.59549e-09 1.47201e-09 1.49149e-09) (-2.29071e-09 1.07062e-09 9.10303e-10) (-9.06865e-10 9.21099e-11 9.01143e-11) (-5.61938e-10 -2.64999e-10 -1.89844e-10) (-5.45664e-10 -3.92066e-10 -3.33216e-10) (-2.05253e-10 -1.45981e-10 -1.39182e-10) (1.19465e-12 -1.35661e-11 -5.76655e-12) (1.89658e-10 -7.78225e-11 2.59875e-11) (3.03245e-10 -7.73892e-11 5.26339e-11) (3.26695e-11 6.62931e-12 1.04092e-11) (-1.34791e-11 5.11601e-11 9.99648e-12) (-3.78872e-11 1.24524e-10 3.01354e-11) (-6.71479e-11 8.81678e-11 5.62877e-11) (-1.68364e-09 1.90118e-10 3.21608e-10) (-1.25479e-08 1.07149e-09 9.46172e-10) (-1.09998e-08 3.56115e-09 1.74731e-09) (-1.51497e-09 2.14987e-09 7.5003e-10) (-1.5052e-10 7.77001e-10 -1.71927e-10) (7.92271e-10 3.91061e-10 -7.14253e-10) (2.14293e-09 -7.81687e-10 -1.36037e-09) (2.57191e-09 -2.11523e-09 -7.21288e-10) (1.72798e-09 -1.98044e-09 2.06155e-10) (8.16703e-10 -1.14777e-09 3.20179e-10) (3.12265e-10 -4.61021e-10 7.96412e-11) (7.94045e-11 -8.35214e-11 -3.75546e-11) (5.51558e-11 3.60488e-11 -1.30904e-10) (1.42375e-10 4.10419e-10 -6.13119e-10) (2.4744e-10 4.64801e-10 -7.03052e-10) (1.7887e-10 6.17817e-11 -1.9863e-10) (1.99457e-10 -1.27283e-10 -2.48013e-11) (3.1818e-10 -3.65426e-10 1.09988e-10) (2.2344e-10 -2.5263e-10 1.21424e-10) (9.58366e-11 -4.30277e-11 5.97232e-11) (9.94962e-11 4.79847e-11 5.54432e-11) (2.03199e-10 1.66856e-10 5.14662e-11) (3.1361e-10 1.80819e-10 -2.79621e-11) (2.93244e-10 6.20729e-11 -8.96543e-11) (5.80124e-11 -5.13703e-12 -2.4825e-11) (-2.139e-11 4.3999e-12 8.35687e-12) (-9.33912e-10 3.62344e-10 4.42219e-10) (-2.39891e-09 1.19676e-09 1.26704e-09) (-1.72187e-09 8.3953e-10 8.97419e-10) (-5.80331e-10 1.09474e-10 1.64902e-10) (-4.05422e-10 -1.15454e-10 -7.73797e-11) (-5.88676e-10 -2.43748e-10 -2.36521e-10) (-3.52544e-10 -1.27972e-10 -1.29224e-10) (-1.60612e-11 -1.35119e-11 -4.75621e-12) (7.29581e-11 -4.4296e-11 1.11509e-11) (2.76702e-10 -1.07244e-10 2.0884e-11) (7.04643e-11 -1.03081e-11 4.60889e-12) (-1.68876e-13 1.92652e-11 5.99592e-12) (-3.98325e-11 1.43942e-10 4.38053e-11) (-1.57777e-11 1.68242e-10 4.50519e-11) (-1.19386e-10 1.19743e-10 1.10649e-11) (-3.25253e-09 5.87572e-10 -1.26443e-10) (-1.12606e-08 2.35909e-09 6.20637e-11) (-4.50147e-09 2.55959e-09 2.90853e-10) (-1.5281e-09 7.01415e-10 -2.64119e-10) (6.69919e-12 8.75791e-12 -1.14934e-11) (5.20246e-10 -3.14427e-10 9.06765e-12) (1.31702e-09 -1.22288e-09 4.3394e-10) (1.72756e-09 -1.72459e-09 6.5382e-10) (2.05052e-09 -1.81414e-09 2.89009e-10) (1.58553e-09 -1.23574e-09 -1.32486e-10) (3.19507e-10 -2.26222e-10 -8.9218e-11) (4.4804e-13 4.54657e-12 -7.59208e-12) (-1.04863e-10 1.9646e-10 -1.04022e-10) (-4.5516e-11 2.35744e-10 -1.72168e-10) (6.52725e-11 3.35107e-11 -8.37961e-11) (2.81356e-10 -1.98286e-10 -1.0037e-10) (6.06913e-10 -6.69521e-10 -6.37184e-11) (4.94153e-10 -5.32813e-10 -4.15895e-12) (1.90194e-10 -1.05237e-10 1.40631e-11) (1.09221e-10 4.52034e-11 1.69836e-11) (1.92039e-10 2.37147e-10 4.93945e-12) (2.46755e-10 3.26506e-10 -8.77148e-11) (1.7949e-10 1.71721e-10 -1.44633e-10) (3.41635e-11 3.31907e-11 -6.60595e-11) (-5.51825e-11 2.64152e-11 -1.97682e-11) (-9.61107e-10 3.63255e-10 2.27723e-10) (-2.48779e-09 1.01672e-09 9.23723e-10) (-1.83813e-09 7.45959e-10 7.24775e-10) (-5.57472e-10 1.43518e-10 1.33769e-10) (-2.10097e-10 -2.48169e-11 -3.07223e-11) (-2.21294e-10 -8.06937e-11 -6.50393e-11) (-1.66959e-10 -6.05785e-11 -1.99783e-11) (-2.35873e-11 -1.28895e-11 6.14762e-12) (1.55237e-11 -1.31755e-11 7.61963e-12) (1.50904e-10 -6.35743e-11 -2.15931e-12) (1.14085e-10 -2.85773e-11 -2.92761e-11) (1.24504e-11 8.73421e-12 -4.38629e-12) (6.29508e-12 7.84911e-11 2.90678e-11) (5.16974e-11 2.23132e-10 1.1356e-10) (3.67085e-11 1.65371e-10 4.2188e-11) (-2.55938e-10 1.84224e-10 -7.1611e-11) (-4.57241e-09 9.66e-10 -7.79858e-10) (-7.97665e-09 1.87567e-09 -8.90329e-10) (-5.06187e-09 4.80095e-10 -4.64809e-10) (-6.3142e-10 -2.75394e-11 5.68819e-11) (4.72351e-11 -9.63197e-11 8.38987e-11) (1.4616e-09 -1.06384e-09 5.56364e-10) (4.70415e-09 -2.87165e-09 5.02269e-10) (6.3305e-09 -3.51513e-09 -4.65906e-10) (3.18696e-09 -1.7234e-09 -6.08561e-10) (3.0162e-10 -1.66068e-10 -9.4688e-11) (-9.14992e-12 7.97686e-12 -1.48701e-12) (-2.26053e-10 2.01728e-10 2.13602e-11) (-1.16706e-10 1.28449e-10 1.39175e-11) (5.22207e-13 -4.35276e-13 -1.33938e-14) (1.98197e-10 -2.56639e-10 -1.82871e-11) (6.57632e-10 -9.06023e-10 -8.45616e-11) (5.89884e-10 -7.11594e-10 -7.63976e-11) (2.18462e-10 -1.40973e-10 -3.09322e-12) (9.40746e-11 3.95179e-11 1.76479e-11) (1.51367e-10 2.71317e-10 1.52369e-11) (1.75639e-10 5.09012e-10 -1.30051e-10) (1.08494e-10 4.32379e-10 -3.13803e-10) (-2.53e-11 2.18213e-10 -2.93232e-10) (-1.75684e-10 1.34406e-10 -1.5211e-10) (-7.6506e-10 3.47096e-10 3.18095e-11) (-1.78516e-09 7.53601e-10 5.20176e-10) (-1.51024e-09 6.00481e-10 4.87848e-10) (-5.34372e-10 1.61336e-10 1.11717e-10) (-1.38262e-10 2.88857e-12 -3.74752e-12) (-8.79491e-11 -2.75023e-11 -1.20111e-11) (-7.55568e-11 -2.68497e-11 4.10783e-13) (-1.9442e-11 -7.17326e-12 5.22687e-12) (1.29825e-12 -1.69442e-12 1.2581e-12) (5.14479e-11 -2.16907e-11 -2.9747e-12) (9.60693e-11 -3.36048e-11 -2.83355e-11) (3.86758e-11 -1.13637e-12 -1.48707e-11) (2.27174e-11 2.4047e-11 5.36276e-12) (9.23983e-11 1.41165e-10 8.24433e-11) (1.76432e-10 2.32488e-10 1.12173e-10) (2.45219e-11 1.11104e-10 -3.61496e-13) (-6.75699e-10 3.28501e-10 -2.07212e-10) (-5.14813e-09 8.59884e-10 -8.69745e-10) (-1.01926e-09 3.28427e-11 -1.43994e-10) (-2.18726e-10 -9.56682e-11 -3.28871e-11) (1.36617e-10 -1.98299e-10 -1.66782e-11) (1.99584e-09 -1.21784e-09 -7.05429e-11) (3.82989e-09 -1.96102e-09 -7.24362e-11) (2.15901e-09 -1.19134e-09 8.41576e-11) (2.89941e-10 -2.53305e-10 6.30604e-11) (-1.71197e-11 -2.59098e-11 1.63525e-11) (-1.87243e-10 1.07312e-13 4.46661e-11) (-2.05512e-10 4.99894e-11 3.69294e-11) (-2.84798e-11 5.67089e-12 7.16012e-12) (6.89272e-12 -2.2489e-11 3.49154e-12) (1.81927e-10 -3.30979e-10 -6.54858e-12) (4.21255e-10 -7.21044e-10 -6.54817e-11) (3.51259e-10 -5.02319e-10 -3.96388e-11) (1.29196e-10 -9.7352e-11 2.89606e-11) (6.76699e-11 3.96449e-11 6.0947e-11) (7.66884e-11 3.06342e-10 1.3389e-10) (8.94621e-12 6.23645e-10 -3.31485e-11) (-8.87098e-11 7.74325e-10 -4.91389e-10) (-2.40051e-10 6.92198e-10 -8.73741e-10) (-3.44152e-10 4.01326e-10 -5.30938e-10) (-4.09098e-10 2.78359e-10 -8.44683e-11) (-6.67612e-10 3.44401e-10 2.92066e-10) (-5.79973e-10 2.32612e-10 3.73168e-10) (-2.21235e-10 5.83777e-11 1.17066e-10) (-5.69737e-11 3.40658e-12 8.81689e-12) (-3.11075e-11 -5.418e-12 -7.39999e-12) (-2.97203e-11 -8.29557e-12 -1.01351e-11) (-1.5101e-11 -5.79055e-12 -5.90893e-12) (-1.0197e-12 -2.48041e-12 -1.85027e-12) (1.15867e-11 -1.0637e-11 -6.88445e-12) (3.70664e-11 -1.99017e-11 -1.58751e-11) (2.53305e-11 -3.08792e-12 -8.85411e-12) (1.94414e-11 1.56862e-11 1.42303e-12) (6.08482e-11 8.35989e-11 4.19617e-11) (1.40804e-10 1.67131e-10 1.074e-10) (9.93054e-11 1.36647e-10 6.27364e-11) (-1.90402e-11 7.00185e-11 1.88341e-12) (-4.64026e-10 1.71273e-10 -7.80791e-11) (2.91874e-12 -6.59283e-12 1.54067e-12) (1.15278e-10 -1.81616e-10 -4.00997e-11) (5.54753e-10 -6.08934e-10 -1.93259e-10) (7.73662e-10 -6.56785e-10 -2.33572e-10) (3.22214e-10 -2.41155e-10 -7.09435e-11) (1.63365e-11 -1.76439e-11 1.53067e-12) (-2.76392e-11 -6.29785e-12 1.52368e-11) (-2.40077e-10 -8.81768e-12 7.89303e-11) (-3.9332e-10 -2.67809e-11 9.64069e-11) (-2.42347e-10 -5.2727e-11 5.23102e-11) (-6.83424e-11 -5.80911e-11 1.81089e-11) (-8.17519e-12 -1.28421e-10 8.71501e-12) (1.01884e-10 -3.74752e-10 -2.57362e-11) (2.16974e-10 -5.69206e-10 -7.83097e-11) (1.86599e-10 -4.04061e-10 -2.45568e-11) (8.26464e-11 -1.12977e-10 5.5831e-11) (6.15009e-11 2.16247e-11 1.53744e-10) (8.94137e-12 3.85759e-10 4.25783e-10) (-2.32789e-10 8.2991e-10 2.94592e-10) (-5.34164e-10 1.11164e-09 -4.03628e-10) (-8.44107e-10 1.29177e-09 -1.51063e-09) (-6.40999e-10 7.66622e-10 -1.29974e-09) (-1.69232e-10 1.69286e-10 -1.78697e-10) (-6.78745e-11 5.50122e-11 7.77065e-11) (-1.14635e-10 5.38551e-11 3.68579e-10) (-7.92518e-11 7.57164e-12 2.28363e-10) (-2.01177e-11 -2.08798e-12 2.23393e-11) (-9.10456e-12 -2.37268e-12 -5.62857e-12) (-1.21479e-11 -6.01836e-12 -2.60771e-11) (-3.00608e-12 -4.67525e-12 -2.09652e-11) (4.74572e-12 -2.64936e-12 -9.64799e-12) (2.27576e-11 -6.09227e-12 -1.2642e-11) (5.64579e-11 -1.20011e-11 -2.48881e-11) (4.97203e-11 -2.68701e-12 -2.8138e-11) (1.7511e-11 1.05509e-11 -1.3826e-11) (6.13381e-12 2.6392e-11 -3.06377e-12) (1.21166e-12 6.8429e-11 2.67236e-11) (3.24957e-12 9.72137e-11 7.10819e-11) (4.29145e-12 6.76952e-11 6.37291e-11) (1.65838e-13 1.0006e-11 1.37392e-11) (1.7015e-10 -1.4304e-10 1.24585e-11) (3.56984e-10 -3.70225e-10 -1.18768e-10) (2.49404e-10 -3.09784e-10 -1.59759e-10) (4.91377e-11 -8.06134e-11 -5.58765e-11) (-5.4182e-14 -3.12642e-12 -2.76857e-12) (-4.68637e-12 1.41713e-12 1.59835e-12) (-2.05298e-11 9.53531e-12 1.0364e-11) (-3.46555e-11 1.06913e-11 8.97822e-12) (-5.1181e-11 2.04162e-12 -8.85e-13) (-6.23522e-11 -2.032e-11 -9.22995e-12) (-5.69937e-11 -5.94283e-11 -1.08844e-11) (-4.52412e-11 -1.54144e-10 -1.88074e-11) (-9.8731e-12 -3.41678e-10 -5.44363e-11) (2.56081e-11 -4.97951e-10 -9.47067e-11) (2.14194e-11 -4.30292e-10 -4.51655e-11) (8.53316e-12 -1.94239e-10 5.76186e-11) (8.42676e-12 -5.73949e-11 1.86076e-10) (-2.72221e-11 3.02458e-10 7.5472e-10) (-3.09167e-10 1.05361e-09 1.09388e-09) (-6.0964e-10 1.19338e-09 3.07417e-10) (-8.57339e-10 1.2646e-09 -8.60912e-10) (-8.10553e-10 1.2067e-09 -1.96633e-09) (-2.02415e-10 4.25031e-10 -7.87736e-10) (-3.52699e-12 1.44788e-11 -6.50318e-12) (-1.68439e-11 -8.07358e-12 2.18142e-10) (-1.16657e-10 -1.2023e-10 5.24944e-10) (-1.28392e-10 -1.00698e-10 2.37369e-10) (-5.08039e-11 -3.9143e-11 2.90125e-11) (-2.0055e-11 -2.27053e-11 -1.34319e-11) (-7.08187e-12 -2.49881e-11 -3.6606e-11) (1.45795e-11 -2.20651e-11 -5.3954e-11) (5.45147e-11 -1.04178e-11 -7.69168e-11) (1.17714e-10 2.26298e-11 -1.12959e-10) (1.32296e-10 7.42185e-11 -1.10278e-10) (6.66658e-11 8.94201e-11 -5.37712e-11) (1.0941e-11 9.22327e-11 -1.1543e-12) (-3.36416e-11 1.26921e-10 6.58196e-11) (-5.16679e-11 1.15363e-10 1.31363e-10) (-6.6451e-12 3.28784e-11 8.85535e-11) (3.17384e-11 -1.57142e-11 3.87774e-11) (3.2444e-10 -2.38506e-10 -9.18061e-11) (3.0868e-10 -2.66458e-10 -1.17396e-10) (1.11244e-10 -1.05368e-10 -4.93318e-11) (9.73819e-12 -9.97529e-12 -4.48736e-12) (-8.01193e-14 2.21298e-14 1.04755e-13) (-5.46167e-12 3.31211e-12 4.68937e-12) (-1.33021e-11 6.91889e-12 9.07298e-12) (-1.25825e-11 4.78279e-12 4.38661e-12) (-7.52266e-12 8.56238e-13 -1.15051e-12) (-6.00828e-12 -4.20434e-12 -5.71588e-12) (-7.40297e-12 -2.82002e-11 -2.12081e-11) (-6.95483e-12 -1.06047e-10 -5.84686e-11) (-2.03623e-11 -2.36511e-10 -1.13083e-10) (-7.38628e-11 -3.70833e-10 -1.60226e-10) (-1.42649e-10 -4.35911e-10 -1.41968e-10) (-1.38282e-10 -3.27454e-10 -1.85438e-11) (-6.51902e-11 -1.30635e-10 1.0302e-10) (-2.69447e-11 2.36097e-11 4.73315e-10) (5.91664e-11 7.72593e-10 1.60524e-09) (-1.75361e-10 1.40088e-09 1.67354e-09) (-3.62549e-10 8.25345e-10 3.60687e-10) (-3.969e-10 5.72989e-10 -4.50069e-10) (-3.23789e-10 5.66498e-10 -1.29007e-09) (-1.75335e-12 2.21413e-10 -6.17541e-10) (7.68145e-12 9.53835e-12 -1.28985e-11) (1.34279e-11 -1.63774e-11 7.84758e-11) (-2.27608e-11 -1.56396e-10 2.85734e-10) (-7.2119e-11 -2.13222e-10 2.00167e-10) (-6.18085e-11 -1.20534e-10 4.39552e-11) (-4.72306e-11 -5.00157e-11 -1.30109e-11) (-6.43427e-11 -2.38825e-11 -3.95375e-11) (-9.60742e-11 2.06114e-12 -6.54041e-11) (-8.65763e-11 3.57922e-11 -6.62696e-11) (-4.88867e-11 7.27351e-11 -5.10701e-11) (-1.39782e-11 1.55495e-10 -3.73642e-11) (2.75995e-11 2.60958e-10 9.12223e-12) (4.23369e-11 2.29164e-10 5.92545e-11) (3.42073e-11 8.17797e-11 4.11993e-11) (3.1255e-11 7.71133e-12 1.22213e-11) (1.32167e-10 -6.42549e-11 -1.03269e-11) (6.41724e-10 -4.7387e-10 -1.7173e-10) (2.72522e-10 -2.07708e-10 -2.83687e-11) (4.07031e-11 -2.141e-11 1.18716e-11) (4.9807e-12 7.27811e-12 1.08844e-11) (-7.86038e-12 4.40032e-11 2.87104e-11) (-2.23049e-11 5.77688e-11 2.91841e-11) (-1.82881e-11 2.4119e-11 1.12531e-11) (-8.22475e-12 2.35646e-12 9.0433e-13) (-6.253e-12 -5.17917e-12 -3.51105e-12) (-1.99019e-12 -1.90929e-11 -1.47218e-11) (1.65508e-11 -3.83754e-11 -3.71437e-11) (3.28475e-11 -5.57165e-11 -7.03926e-11) (1.57677e-11 -8.31143e-11 -1.16204e-10) (-5.83469e-11 -1.67208e-10 -1.99257e-10) (-1.958e-10 -3.28132e-10 -2.73598e-10) (-2.51765e-10 -3.96892e-10 -1.77545e-10) (-1.33706e-10 -2.20184e-10 2.13102e-11) (-4.04979e-11 -7.19999e-11 1.65254e-10) (1.30198e-10 2.37128e-10 8.95637e-10) (5.27741e-10 1.24919e-09 2.183e-09) (2.82159e-10 1.51984e-09 1.83495e-09) (-1.62653e-10 6.69754e-10 4.34613e-10) (-2.76416e-10 3.00567e-10 -1.1177e-10) (-4.32433e-10 2.1576e-10 -5.22517e-10) (-2.72543e-10 4.1976e-11 -4.55918e-10) (-5.69279e-11 -1.74358e-11 -1.08484e-10) (-1.90686e-12 -7.67501e-12 -5.67223e-12) (1.1784e-11 -2.32578e-11 7.94176e-12) (3.86873e-11 -5.79056e-11 2.45607e-11) (2.71598e-11 -4.81775e-11 1.4411e-11) (-7.65165e-13 -1.21475e-11 2.30722e-12) (-4.955e-11 -8.87351e-12 1.27081e-12) (-3.7067e-10 5.01488e-11 -5.12671e-12) (-7.2403e-10 2.17385e-10 -9.94072e-12) (-5.01539e-10 2.98729e-10 3.09341e-12) (-1.2701e-10 1.95654e-10 7.79672e-12) (2.093e-11 9.27541e-11 -1.05389e-12) (1.14434e-10 4.87326e-11 -2.3898e-11) (3.58303e-10 -7.82873e-11 -1.06027e-10) (6.72347e-10 -3.77882e-10 -2.17644e-10) (1.11934e-10 -1.1561e-10 -1.20198e-10) (2.43713e-11 -3.54603e-12 -5.21404e-12) (8.78647e-11 4.99989e-11 8.26167e-11) (2.33757e-10 1.92075e-10 3.46137e-10) (1.95201e-10 2.34075e-10 3.78539e-10) (5.4107e-11 1.28105e-10 1.60238e-10) (3.86037e-12 2.90427e-11 3.00846e-11) (3.45167e-13 4.21168e-13 1.51413e-12) (6.47775e-12 -1.27695e-11 1.37331e-12) (2.44759e-11 -5.45202e-11 -8.79869e-12) (1.31755e-11 -4.63416e-11 -2.7053e-11) (-1.52091e-11 -2.91829e-11 -6.831e-11) (-1.2182e-10 -2.35741e-11 -2.60312e-10) (-2.67758e-10 -8.68515e-11 -4.9121e-10) (-2.38328e-10 -2.28149e-10 -4.30725e-10) (-9.73468e-11 -2.27769e-10 -1.79787e-10) (-1.58381e-11 -9.591e-11 -7.95784e-12) (1.37478e-12 -4.13199e-11 7.32054e-11) (3.79031e-11 5.92104e-11 4.57594e-10) (1.4714e-10 5.25224e-10 1.21752e-09) (2.74174e-10 1.09061e-09 1.55507e-09) (2.01705e-10 9.82687e-10 9.53469e-10) (1.12267e-11 3.33868e-10 1.88785e-10) (-2.88703e-11 4.69826e-11 -1.44964e-11) (-1.27477e-10 -7.51912e-12 -1.44727e-10) (-3.21927e-10 -1.7547e-10 -3.72656e-10) (-3.93858e-10 -3.05976e-10 -4.24864e-10) (-2.70398e-10 -2.577e-10 -2.91958e-10) (-9.15586e-11 -1.14839e-10 -1.31159e-10) (-9.48921e-12 -2.56168e-11 -4.20633e-11) (5.70278e-12 3.18248e-13 -1.55446e-11) (1.10382e-11 1.47985e-11 -1.00483e-11) (6.93057e-12 3.5972e-11 3.2397e-12) (-2.82396e-11 7.13784e-11 3.9283e-11) (-1.06684e-10 9.85156e-11 9.17213e-11) (-8.75233e-11 4.67264e-11 6.36132e-11) (-5.86234e-12 -9.50318e-13 4.49452e-12) (2.81303e-11 -5.21154e-11 -1.71795e-11) (2.31972e-10 -3.22122e-10 -1.86303e-10) (2.90997e-10 -3.82112e-10 -2.96944e-10) (1.46006e-10 -2.45937e-12 3.17352e-11) (3.36638e-10 -3.81307e-12 6.7249e-11) (5.68785e-10 1.2268e-12 9.00677e-11) (8.74042e-10 3.8382e-12 1.18891e-10) (1.06801e-09 6.73916e-12 1.4769e-10) (7.47851e-10 6.64175e-12 8.76294e-11) (2.46423e-10 2.57012e-12 -5.90007e-12) (6.46879e-11 6.64032e-13 -2.61417e-11) (4.89904e-11 -1.67132e-13 -2.91126e-11) (9.62966e-11 -2.25444e-13 -3.62158e-11) (2.25156e-10 8.56392e-13 -3.86787e-11) (4.5294e-10 1.58872e-12 1.25652e-12) (7.20231e-10 2.65124e-12 1.1067e-10) (8.8824e-10 8.01339e-12 2.39382e-10) (8.88935e-10 1.27684e-11 2.84104e-10) (7.81281e-10 1.39713e-11 2.3578e-10) (6.96645e-10 1.17679e-11 1.60746e-10) (7.06496e-10 8.58995e-12 1.09495e-10) (8.13776e-10 6.18113e-12 9.32473e-11) (1.02186e-09 3.52884e-12 1.14491e-10) (1.35844e-09 7.84482e-13 1.84776e-10) (1.73392e-09 -2.10159e-12 3.1872e-10) (1.74693e-09 1.44631e-12 4.54207e-10) (1.1351e-09 7.72745e-12 3.89625e-10) (4.3545e-10 5.78934e-12 1.6816e-10) (1.34025e-10 2.03283e-12 4.62529e-11) (9.20704e-11 1.90433e-12 3.15299e-11) (1.86308e-10 3.42304e-12 8.65394e-11) (4.10213e-10 6.52753e-12 2.23134e-10) (6.09021e-10 8.1944e-12 3.23711e-10) (6.27912e-10 4.99956e-12 2.41433e-10) (5.79884e-10 2.46965e-13 3.6999e-11) (6.71742e-10 -1.49924e-12 -2.19464e-10) (7.71533e-10 -3.95928e-12 -4.35801e-10) (5.90117e-10 -3.6031e-12 -3.03188e-10) (2.67127e-10 -1.70134e-12 -4.66035e-11) (9.49481e-11 -5.32745e-13 2.69825e-11) (3.16417e-11 2.03543e-13 1.45111e-11) (1.98799e-11 3.37735e-13 4.42642e-12) (4.35239e-11 -8.76228e-14 8.58969e-12) (6.14252e-10 -2.23883e-11 -8.97658e-11) (1.31828e-09 -1.9622e-11 -1.76537e-10) (2.65681e-09 2.57389e-11 -2.09909e-10) (5.69601e-09 6.03332e-11 1.06427e-10) (9.76162e-09 1.05051e-10 1.01644e-09) (9.90234e-09 1.23424e-10 1.33325e-09) (5.38431e-09 4.47933e-11 3.73762e-10) (1.96522e-09 -4.02126e-12 -2.84527e-10) (1.00019e-09 -1.17968e-11 -3.81347e-10) (1.06348e-09 7.69993e-12 -3.68598e-10) (1.94365e-09 3.78486e-11 -2.35448e-10) (4.28098e-09 5.71211e-11 3.97498e-10) (8.16689e-09 7.33836e-11 1.85993e-09) (1.16717e-08 1.82339e-10 3.31816e-09) (1.30411e-08 3.08513e-10 3.64113e-09) (1.22485e-08 3.51976e-10 2.77418e-09) (1.08755e-08 2.57727e-10 1.49741e-09) (1.02748e-08 9.0997e-11 4.89723e-10) (1.07186e-08 -8.00536e-11 -2.41231e-12) (1.21609e-08 -2.32657e-10 8.03577e-11) (1.4994e-08 -3.44253e-10 7.10805e-10) (1.8557e-08 -3.68572e-10 1.84516e-09) (1.95158e-08 -1.74887e-10 3.01915e-09) (1.48755e-08 1.06695e-10 2.9754e-09) (7.39578e-09 1.60267e-10 1.5811e-09) (2.61515e-09 7.55565e-11 4.7037e-10) (1.29761e-09 4.10975e-11 2.202e-10) (1.79847e-09 4.34027e-11 4.94615e-10) (3.90444e-09 6.15222e-11 1.43398e-09) (6.65208e-09 6.59621e-11 2.52318e-09) (8.10078e-09 -2.15395e-12 2.42617e-09) (8.40721e-09 -9.77239e-11 8.96272e-10) (9.41692e-09 -1.52832e-10 -1.37142e-09) (1.05311e-08 -2.28095e-10 -3.4821e-09) (8.52406e-09 -2.5835e-10 -3.12227e-09) (4.03591e-09 -1.43396e-10 -7.85406e-10) (1.1134e-09 -2.19294e-11 2.25268e-10) (2.52832e-10 1.16711e-11 1.70028e-10) (9.87583e-11 7.09359e-12 3.62954e-11) (2.04497e-10 -1.31747e-12 -9.68085e-12) (1.13317e-10 -4.88952e-12 -8.06527e-11) (3.40105e-10 -5.30058e-12 -2.26399e-10) (8.7855e-10 1.56427e-11 -3.60079e-10) (2.74067e-09 2.14125e-11 -3.16677e-10) (6.70752e-09 2.03489e-11 5.33148e-10) (8.59525e-09 5.39739e-11 1.41775e-09) (5.34683e-09 1.0121e-11 7.85297e-10) (1.87522e-09 -2.29325e-11 -5.45482e-11) (6.7409e-10 -1.40023e-11 -2.62816e-10) (5.49414e-10 1.27638e-11 -3.10093e-10) (9.36581e-10 4.27621e-11 -2.53949e-10) (2.36243e-09 5.242e-11 1.71e-10) (5.4817e-09 2.55484e-11 1.51233e-09) (8.65495e-09 1.23923e-10 3.02953e-09) (9.72413e-09 2.84205e-10 3.24626e-09) (8.66535e-09 3.89129e-10 2.25231e-09) (6.93341e-09 2.97162e-10 9.45043e-10) (5.71211e-09 9.40773e-11 -6.73903e-11) (5.16617e-09 -1.18394e-10 -6.46676e-10) (5.05202e-09 -2.89881e-10 -7.62067e-10) (5.55516e-09 -4.0077e-10 -4.75038e-10) (6.74009e-09 -4.1993e-10 1.52834e-10) (7.45342e-09 -2.24284e-10 9.48461e-10) (6.11165e-09 7.27269e-11 1.21735e-09) (3.28684e-09 1.5623e-10 7.16013e-10) (1.16264e-09 8.14709e-11 1.88667e-10) (4.58098e-10 3.27249e-11 3.33965e-11) (5.5136e-10 2.28366e-11 6.71695e-11) (1.42414e-09 1.53089e-11 3.39698e-10) (2.97151e-09 -1.53461e-11 8.80716e-10) (4.05942e-09 -8.52965e-11 1.12898e-09) (4.19781e-09 -1.53335e-10 6.26419e-10) (4.42901e-09 -1.76775e-10 -3.86765e-10) (5.35561e-09 -2.12343e-10 -1.67797e-09) (4.81527e-09 -2.55987e-10 -2.10743e-09) (1.85271e-09 -1.45034e-10 -7.7963e-10) (1.42105e-10 -9.99047e-12 -2.15691e-13) (-2.44298e-12 1.04172e-11 6.75806e-11) (-7.59471e-12 1.19499e-11 3.61982e-11) (7.993e-12 1.3074e-12 -9.91581e-13) (-2.21511e-11 -2.13762e-14 -4.99914e-11) (2.04033e-11 -4.45969e-12 -1.74121e-10) (1.50179e-10 -3.17494e-14 -2.17157e-10) (7.64038e-10 -1.73498e-11 -2.25975e-10) (3.22259e-09 -7.38433e-11 3.29517e-10) (5.17112e-09 -4.42251e-11 1.36373e-09) (2.62859e-09 -1.88246e-11 7.92036e-10) (3.60961e-10 -1.56204e-11 4.54049e-11) (2.35152e-11 -3.87138e-12 -3.6184e-11) (1.40718e-11 3.55287e-12 -1.22951e-10) (7.07799e-11 1.23741e-11 -9.42313e-11) (3.35815e-10 1.34268e-11 -4.05709e-12) (1.61017e-09 -1.92398e-11 6.44595e-10) (3.55067e-09 1.39826e-11 1.91228e-09) (3.91644e-09 1.55207e-10 2.13175e-09) (2.66317e-09 2.28898e-10 1.24174e-09) (1.30621e-09 1.39955e-10 3.6036e-10) (6.05115e-10 3.54347e-11 -4.43653e-11) (4.00526e-10 -3.02844e-11 -2.13551e-10) (3.45812e-10 -8.523e-11 -2.99968e-10) (3.07386e-10 -1.04434e-10 -2.35046e-10) (3.36963e-10 -8.86197e-11 -1.00272e-10) (4.6902e-10 -4.38153e-11 6.22645e-11) (4.25273e-10 3.40168e-11 1.80214e-10) (1.31997e-10 3.7076e-11 9.11584e-11) (3.91014e-12 5.41571e-12 7.22887e-12) (-5.62022e-12 2.32077e-12 -5.98113e-13) (-8.38938e-13 2.93576e-13 -6.01538e-13) (1.51307e-11 -5.93049e-13 1.47893e-12) (1.93419e-10 -1.43209e-11 5.44561e-11) (4.13648e-10 -3.67317e-11 1.39719e-10) (3.89837e-10 -4.15917e-11 9.40209e-11) (3.21475e-10 -3.10504e-11 -4.10715e-11) (5.13562e-10 -3.16097e-11 -3.24653e-10) (6.64053e-10 -4.76422e-11 -7.01255e-10) (1.35469e-10 -3.39864e-11 -3.60545e-10) (-1.89623e-10 -5.96494e-12 -8.65661e-11) (-1.29336e-09 1.1324e-10 3.38746e-10) (-1.065e-09 1.73909e-10 4.47862e-10) (-1.39292e-10 2.23247e-11 1.92645e-11) (-1.88487e-10 1.21438e-11 -1.0283e-10) (-1.53418e-10 -4.74691e-12 -3.67802e-10) (-9.01905e-12 -1.14489e-11 -3.87403e-10) (2.52882e-10 -2.97889e-11 -2.07011e-10) (2.0035e-09 -1.34372e-10 1.50078e-10) (5.73068e-09 -1.67634e-10 1.87556e-09) (4.0086e-09 -5.53423e-11 1.74715e-09) (4.11335e-10 -2.14927e-11 1.87722e-10) (-4.94826e-12 -1.92112e-12 -9.00072e-12) (-1.7126e-10 2.4154e-12 -2.45582e-10) (-5.93382e-11 2.02455e-11 -2.09398e-10) (3.60651e-11 4.13046e-12 -3.01051e-11) (4.99654e-10 -2.19145e-11 2.00109e-10) (2.28252e-09 -5.78102e-11 1.44095e-09) (3.66377e-09 1.52457e-10 2.54118e-09) (2.70313e-09 3.40265e-10 1.8993e-09) (9.87045e-10 1.98438e-10 6.17097e-10) (1.64816e-10 3.47788e-11 4.23105e-11) (3.42018e-11 -3.79774e-12 -4.31219e-11) (8.74923e-12 -6.47629e-11 -2.28407e-10) (-4.63577e-11 -1.37243e-10 -3.38498e-10) (-1.03578e-11 -7.46118e-11 -1.24384e-10) (9.49101e-12 -6.77821e-12 -2.95247e-12) (5.71981e-11 1.53476e-11 5.45519e-11) (2.07787e-11 3.92695e-11 7.98343e-11) (-6.3988e-11 3.4569e-11 5.18932e-11) (-2.37961e-10 3.81699e-11 2.00997e-11) (-1.77998e-10 7.70875e-12 -2.74557e-11) (-1.127e-11 -1.93883e-12 -5.96775e-12) (6.68444e-12 -3.18353e-12 -9.79791e-13) (5.65429e-11 -1.67328e-11 1.58437e-11) (5.44078e-11 -1.67751e-11 2.58798e-11) (1.91455e-11 -5.16482e-12 5.69754e-12) (2.86656e-11 -1.26184e-12 -2.11735e-11) (1.32611e-10 3.65652e-12 -2.37907e-10) (-2.15748e-11 -7.59428e-12 -5.07162e-10) (-1.32344e-09 7.69632e-12 -8.07572e-10) (-5.93362e-09 3.37773e-10 -2.74273e-11) (-5.47802e-09 5.87081e-10 1.37605e-09) (-1.23927e-09 1.54919e-10 3.00934e-10) (-3.64758e-10 4.76769e-11 -3.06258e-11) (-3.24778e-10 2.56012e-11 -4.91994e-10) (-3.01087e-10 -2.73517e-11 -9.32635e-10) (7.72428e-11 -5.88975e-11 -3.7143e-10) (7.73289e-10 -1.26079e-10 -7.53149e-11) (4.59939e-09 -2.91967e-10 1.55854e-09) (6.62874e-09 -1.51454e-10 3.08728e-09) (1.9514e-09 -3.50894e-11 1.00205e-09) (8.00633e-12 -1.08702e-12 3.0987e-12) (-1.88214e-10 -7.58647e-13 -1.93147e-10) (-2.47839e-10 2.44959e-11 -4.18263e-10) (8.06358e-13 4.42665e-12 -1.08111e-10) (1.04574e-10 -1.42398e-11 5.1757e-12) (1.13313e-09 -1.09824e-10 6.44349e-10) (3.58693e-09 5.32048e-11 2.31025e-09) (4.57588e-09 6.08128e-10 3.07936e-09) (2.63294e-09 6.09277e-10 1.84153e-09) (6.2534e-10 1.90336e-10 3.85502e-10) (3.5579e-11 8.05669e-12 -2.17925e-12) (-1.72138e-11 -3.37988e-11 -1.26622e-10) (-3.06295e-10 -2.41662e-10 -5.93225e-10) (-4.73179e-10 -3.37652e-10 -5.97075e-10) (-8.09819e-11 -6.47661e-11 -7.36767e-11) (8.33145e-12 2.56744e-12 1.07898e-11) (8.98923e-11 8.15365e-11 1.46492e-10) (-1.88335e-11 6.22403e-11 1.01424e-10) (-1.58057e-10 4.30968e-11 6.63366e-11) (-1.64313e-10 4.00958e-12 -3.0752e-13) (-1.52773e-11 -5.79656e-12 -1.03592e-11) (1.74459e-11 -1.28936e-11 -1.6963e-11) (6.458e-11 -2.94403e-11 -1.91402e-11) (2.85015e-11 -1.65085e-11 3.07555e-12) (3.63594e-12 -4.39834e-12 5.89818e-12) (2.08413e-12 -3.12061e-13 3.04442e-12) (3.7091e-11 8.47092e-12 -1.81965e-11) (1.00407e-10 3.84458e-11 -2.69381e-10) (-9.34326e-10 8.44497e-11 -1.05002e-09) (-8.15075e-09 4.0121e-10 -1.78338e-09) (-1.06408e-08 7.56243e-10 1.26461e-09) (-3.08196e-09 3.30234e-10 9.88354e-10) (-7.40514e-10 1.25274e-10 2.31416e-10) (-4.1106e-10 9.39357e-11 -3.77531e-10) (-7.65107e-10 2.08731e-11 -1.60663e-09) (-2.54142e-10 -1.56474e-10 -1.04952e-09) (1.35981e-10 -7.35158e-11 -1.13166e-10) (1.89835e-09 -2.70876e-10 7.17116e-10) (5.34984e-09 -2.93957e-10 2.92549e-09) (3.5993e-09 -7.36297e-11 2.0095e-09) (3.14834e-10 -3.75275e-12 1.56263e-10) (-1.99451e-11 7.49484e-13 -2.58993e-11) (-2.33189e-10 7.55723e-12 -3.06991e-10) (-6.51174e-11 -6.98933e-12 -1.685e-10) (1.59979e-11 -9.65981e-12 -1.55357e-11) (3.00045e-10 -8.30087e-11 1.23813e-10) (1.78017e-09 -1.31246e-10 1.05344e-09) (4.3966e-09 4.8419e-10 2.70541e-09) (4.78677e-09 1.18447e-09 3.00405e-09) (2.1573e-09 7.31082e-10 1.35699e-09) (2.74529e-10 1.06283e-10 1.31276e-10) (1.33495e-12 -1.23235e-12 -1.53261e-11) (-3.20837e-10 -1.7466e-10 -4.28536e-10) (-1.3168e-09 -6.27442e-10 -1.08785e-09) (-1.15158e-09 -4.60225e-10 -5.92982e-10) (-8.32141e-11 -1.48744e-11 -7.00101e-12) (2.92266e-11 5.26572e-11 7.37987e-11) (4.31379e-11 1.16829e-10 1.66615e-10) (-5.42483e-11 4.18242e-11 7.96651e-11) (-5.28017e-11 -1.62874e-12 2.13352e-11) (-1.78804e-12 -5.23946e-12 -2.30716e-12) (6.76608e-11 -4.2389e-11 -4.43779e-11) (1.40616e-10 -6.27865e-11 -7.3435e-11) (2.07228e-11 -1.57782e-11 -9.34011e-12) (-1.70476e-11 -1.00884e-11 1.16812e-11) (-1.1432e-10 -1.32563e-11 9.04557e-11) (-4.48381e-12 4.44535e-12 1.36534e-11) (1.1986e-10 5.65838e-11 -9.05123e-11) (-1.07307e-10 1.76828e-10 -7.20171e-10) (-5.18883e-09 4.89598e-10 -2.6053e-09) (-1.24538e-08 5.00626e-10 -3.79195e-10) (-5.3095e-09 3.01735e-10 1.66871e-09) (-1.62075e-09 2.5214e-10 8.92714e-10) (-5.39879e-10 2.0445e-10 -1.5738e-10) (-1.13719e-09 2.27901e-10 -1.92426e-09) (-1.03663e-09 -2.67843e-10 -2.51056e-09) (-8.74718e-11 -1.58225e-10 -3.79733e-10) (2.61956e-10 -1.12058e-10 1.14341e-10) (2.54961e-09 -3.46611e-10 1.79914e-09) (3.33982e-09 -2.05867e-10 2.20732e-09) (1.09285e-09 -1.87117e-11 5.98942e-10) (2.7039e-11 1.40656e-12 3.64779e-12) (-2.06761e-11 -2.45293e-13 -4.22581e-11) (-2.93284e-11 -1.39325e-11 -7.4987e-11) (1.21634e-11 -2.13367e-11 -3.14422e-11) (8.98556e-11 -5.7563e-11 -8.27327e-12) (4.37166e-10 -1.21077e-10 1.8504e-10) (1.7636e-09 6.46655e-11 1.12685e-09) (4.01798e-09 1.03173e-09 2.71304e-09) (3.88344e-09 1.40252e-09 2.43472e-09) (1.37605e-09 5.47879e-10 7.21556e-10) (8.64256e-11 3.17166e-11 1.30941e-11) (-4.77907e-11 -3.10138e-11 -8.20539e-11) (-1.08548e-09 -4.68653e-10 -7.84266e-10) (-2.91463e-09 -8.93868e-10 -1.26014e-09) (-1.54398e-09 -2.19578e-10 -3.57718e-10) (-1.02083e-10 4.70705e-11 2.90585e-11) (-2.28444e-13 9.11193e-11 8.85645e-11) (-1.17857e-11 3.5249e-11 5.51024e-11) (-7.11659e-12 -3.85973e-12 1.17831e-11) (1.29375e-11 -2.42057e-11 3.53648e-12) (1.47008e-10 -9.32958e-11 -3.31433e-11) (2.08691e-10 -8.48908e-11 -6.29501e-11) (2.22432e-11 -1.13118e-11 -5.32097e-12) (-7.57304e-11 -1.44981e-11 4.45811e-11) (-9.76387e-10 -5.00494e-11 5.31415e-10) (-6.30563e-10 2.09806e-11 3.63563e-10) (1.01264e-12 1.13316e-11 -5.66659e-12) (2.22761e-10 2.87331e-10 -6.7381e-10) (-1.30688e-09 4.61712e-10 -1.75727e-09) (-6.76044e-09 2.7237e-10 -1.55399e-09) (-5.90793e-09 -2.12486e-12 1.46869e-09) (-3.32263e-09 3.89887e-10 1.82746e-09) (-1.27144e-09 5.58391e-10 2.59754e-10) (-1.33702e-09 5.34764e-10 -1.63599e-09) (-1.7564e-09 -1.61528e-10 -4.23352e-09) (-8.97151e-10 -4.94218e-10 -1.723e-09) (-1.40759e-11 -4.58892e-11 -1.5737e-11) (6.47455e-10 -2.52685e-10 6.64644e-10) (2.35562e-09 -3.66144e-10 1.90381e-09) (1.86487e-09 -1.18789e-10 1.19952e-09) (4.48487e-10 4.65882e-12 2.11825e-10) (3.03064e-11 -9.56465e-13 -7.88951e-13) (1.71064e-11 -1.13929e-11 -2.1161e-11) (5.8768e-11 -5.37636e-11 -6.39145e-11) (1.00322e-10 -9.1744e-11 -7.74067e-11) (8.37981e-11 -6.08666e-11 -2.04369e-11) (2.07161e-10 -3.07576e-11 1.2203e-10) (1.27833e-09 3.19085e-10 1.12297e-09) (3.12037e-09 1.24448e-09 2.54759e-09) (2.77179e-09 1.10521e-09 1.77409e-09) (9.20835e-10 2.92085e-10 3.64868e-10) (5.05927e-11 1.47204e-12 -1.16805e-11) (-1.95574e-10 -1.06063e-10 -1.96702e-10) (-2.6834e-09 -6.46282e-10 -1.19544e-09) (-4.83186e-09 -4.70448e-10 -1.37581e-09) (-1.62988e-09 1.82371e-10 -2.8707e-10) (-9.86986e-11 7.56955e-11 1.08326e-11) (8.27588e-13 9.1325e-12 7.01318e-12) (1.19747e-11 -8.70168e-12 8.68218e-12) (1.0018e-10 -9.24328e-11 2.88404e-11) (2.61741e-10 -1.63719e-10 3.4053e-11) (2.62343e-10 -1.01863e-10 2.6581e-11) (4.94503e-11 -1.20617e-11 1.97784e-11) (-6.89581e-11 3.02753e-12 7.87957e-11) (-1.43875e-09 8.56791e-12 8.46534e-10) (-2.26118e-09 -3.10413e-11 1.07958e-09) (-2.84844e-10 4.55464e-11 4.69837e-11) (6.43865e-11 1.90739e-10 -3.54529e-10) (-8.03224e-11 5.13015e-10 -1.41265e-09) (-1.71572e-09 2.64067e-10 -1.22516e-09) (-4.24626e-09 -8.58314e-11 4.54378e-10) (-5.86585e-09 6.24941e-10 2.21697e-09) (-3.79738e-09 1.43787e-09 1.46944e-09) (-1.38416e-09 7.65107e-10 -9.70001e-10) (-1.53053e-09 2.3283e-10 -4.76839e-09) (-1.50076e-09 -7.56566e-10 -3.89469e-09) (-2.92209e-10 -2.65371e-10 -3.80379e-10) (9.58942e-11 -1.36878e-10 1.41553e-10) (1.4897e-09 -5.0114e-10 1.4068e-09) (2.23357e-09 -3.35817e-10 1.7663e-09) (1.22789e-09 -3.74015e-11 8.33678e-10) (3.91989e-10 -7.9573e-12 1.74858e-10) (1.85756e-10 -4.38232e-11 1.92397e-12) (2.06254e-10 -1.06648e-10 -7.77257e-11) (1.63494e-10 -1.31031e-10 -1.28523e-10) (5.09317e-11 -7.29688e-11 -8.92188e-11) (4.70568e-12 -7.93483e-12 -7.92823e-12) (7.36208e-11 1.86475e-11 8.41434e-11) (1.07493e-09 4.25965e-10 1.21271e-09) (2.68349e-09 1.00064e-09 2.40598e-09) (2.30895e-09 6.053e-10 1.43825e-09) (7.91298e-10 9.26113e-11 2.32531e-10) (2.78546e-11 -4.93481e-12 -2.06748e-11) (-6.98296e-10 -7.179e-11 -4.15502e-10) (-4.97894e-09 -7.12339e-11 -1.64117e-09) (-4.62991e-09 2.6961e-10 -1.37944e-09) (-6.7908e-10 1.2523e-10 -2.8782e-10) (-2.04898e-12 1.24119e-12 -7.93774e-12) (6.8721e-11 -3.89296e-11 -3.69004e-12) (2.3563e-10 -1.537e-10 4.99643e-11) (3.46369e-10 -1.78127e-10 1.10213e-10) (3.3153e-10 -9.98769e-11 1.4301e-10) (1.34897e-10 -1.33577e-11 1.15372e-10) (-3.5195e-11 2.47124e-11 1.33811e-10) (-9.47945e-10 9.25861e-11 7.26514e-10) (-2.25581e-09 -6.88375e-11 1.19793e-09) (-8.36591e-10 -4.44186e-11 2.5088e-10) (-3.02056e-11 3.82716e-11 -7.02552e-11) (2.86386e-10 4.63348e-10 -9.2389e-10) (-2.55435e-10 3.56061e-10 -9.14256e-10) (-2.16398e-09 1.62117e-10 -3.44169e-10) (-6.91905e-09 1.35415e-09 1.36912e-09) (-7.79909e-09 2.31722e-09 2.79168e-09) (-1.53452e-09 8.33598e-10 -3.76717e-10) (-7.31416e-10 4.08056e-10 -3.53181e-09) (-5.62623e-10 -7.1528e-10 -5.50097e-09) (-2.47582e-10 -5.7082e-10 -1.38479e-09) (9.81386e-11 -1.77656e-10 -2.27139e-11) (1.11161e-09 -6.13537e-10 8.29226e-10) (1.82195e-09 -5.33775e-10 1.68709e-09) (1.12979e-09 -9.18292e-11 1.23601e-09) (5.65079e-10 1.27308e-11 5.60515e-10) (3.68217e-10 -5.14456e-11 2.06054e-10) (3.05301e-10 -1.16159e-10 4.78014e-11) (1.65295e-10 -1.06477e-10 -5.48049e-11) (4.42976e-11 -6.71876e-11 -1.02711e-10) (-2.28821e-11 -3.57194e-11 -1.15027e-10) (-3.70243e-12 -1.85002e-13 -1.00517e-11) (8.52386e-11 3.48917e-11 9.70482e-11) (1.22342e-09 3.00899e-10 1.26747e-09) (2.53023e-09 3.73379e-10 2.0771e-09) (1.94687e-09 1.39969e-10 1.06141e-09) (5.05933e-10 5.71454e-11 1.1351e-10) (-9.31632e-12 1.91493e-11 -1.86237e-11) (-1.56833e-09 3.45098e-10 -5.50065e-10) (-3.8171e-09 3.49073e-10 -1.27885e-09) (-1.19958e-09 -4.43865e-11 -6.79555e-10) (-4.50868e-11 -5.93881e-11 -1.17389e-10) (7.5198e-11 -8.61761e-11 -5.13904e-11) (1.43051e-10 -1.09636e-10 1.55925e-12) (1.78707e-10 -8.3131e-11 5.34898e-11) (2.26009e-10 -3.81229e-11 1.2534e-10) (1.86131e-10 1.82276e-11 1.95777e-10) (1.92552e-11 6.08088e-11 2.01511e-10) (-3.6061e-10 1.23566e-10 4.47141e-10) (-1.08634e-09 -2.68399e-11 7.73682e-10) (-7.9334e-10 -1.97299e-10 3.74338e-10) (-6.59517e-11 -1.81008e-11 -1.0438e-11) (1.14628e-10 1.489e-10 -2.64338e-10) (2.72728e-10 6.25263e-10 -8.51387e-10) (-7.92077e-10 4.92712e-10 -4.77888e-10) (-3.83727e-09 1.98449e-09 1.74003e-10) (-7.31443e-09 2.24458e-09 2.11747e-09) (-1.5025e-09 6.09969e-10 2.13179e-11) (-1.95577e-10 1.62496e-10 -1.54536e-09) (1.10897e-09 -6.30611e-10 -5.46088e-09) (1.30519e-09 -1.0664e-09 -3.5042e-09) (1.16952e-09 -8.28715e-10 -9.14827e-10) (1.7426e-09 -9.20705e-10 1.77945e-10) (1.37746e-09 -5.52049e-10 9.00262e-10) (4.1829e-10 -1.08301e-10 8.80224e-10) (7.16257e-11 2.11185e-11 8.10239e-10) (9.94385e-11 -2.74768e-11 5.60237e-10) (1.44468e-10 -8.41401e-11 2.96619e-10) (6.41654e-11 -5.21522e-11 5.75012e-11) (1.80693e-11 -2.28182e-11 -2.1132e-11) (-1.8487e-12 -3.09741e-11 -1.51209e-10) (-2.4024e-11 4.75511e-13 -1.74449e-10) (8.60685e-12 4.85089e-12 -1.79563e-11) (2.20836e-10 1.84498e-11 1.24899e-10) (1.29922e-09 -5.36695e-11 9.94249e-10) (1.83069e-09 -1.36865e-10 1.29116e-09) (1.0182e-09 8.35796e-11 5.52149e-10) (1.74013e-10 1.5268e-10 7.35007e-11) (-1.68277e-10 2.53598e-10 -2.48235e-11) (-1.14719e-09 3.57185e-10 -3.08103e-10) (-1.01807e-09 -1.50957e-10 -5.20348e-10) (-2.64927e-10 -2.87315e-10 -3.09559e-10) (-1.69936e-11 -1.76351e-10 -1.15709e-10) (2.40358e-11 -6.04233e-11 -2.297e-11) (4.0723e-11 -2.46515e-11 2.38394e-12) (1.04916e-10 -9.03479e-12 4.89067e-11) (1.63201e-10 4.17384e-11 1.61315e-10) (8.42401e-11 9.64167e-11 2.18123e-10) (-6.85415e-11 1.28203e-10 2.53566e-10) (-2.59303e-10 3.62131e-11 3.27e-10) (-4.33505e-10 -1.97102e-10 3.34943e-10) (-3.36426e-10 -2.11212e-10 9.32054e-11) (-3.6346e-11 2.81156e-12 -3.59728e-11) (1.6708e-10 5.90929e-10 -5.13843e-10) (-3.10108e-10 1.21927e-09 -6.91442e-10) (-1.32839e-09 2.24392e-09 -4.53691e-10) (-2.74597e-09 1.3822e-09 4.53996e-10) (-9.88823e-10 2.40706e-10 7.49335e-11) (-7.54907e-11 -4.39935e-11 -3.92283e-10) (1.56541e-09 -7.84153e-10 -3.413e-09) (4.27106e-09 -1.85024e-09 -5.34201e-09) (5.63756e-09 -2.41417e-09 -3.90551e-09) (5.14687e-09 -1.94954e-09 -1.55257e-09) (2.00529e-09 -4.93648e-10 2.58492e-11) (1.48944e-10 2.10722e-11 1.53258e-10) (-3.38306e-10 1.28937e-10 6.13987e-10) (-1.15138e-09 1.45585e-11 1.57895e-09) (-8.60415e-10 -2.56039e-10 1.53235e-09) (-1.77355e-10 -1.77522e-10 5.14447e-10) (5.75752e-12 -1.9325e-11 1.87156e-11) (3.30588e-11 -1.01781e-11 -4.68535e-11) (6.95084e-11 1.57368e-11 -1.95308e-10) (7.17473e-11 1.38074e-11 -1.5754e-10) (1.18841e-10 -1.70823e-11 -4.56363e-11) (5.22193e-10 -1.49546e-10 1.94853e-10) (9.90888e-10 -3.08068e-10 6.99982e-10) (6.86116e-10 -2.05884e-11 5.98799e-10) (2.90384e-10 2.74435e-10 2.73737e-10) (5.12426e-11 5.32349e-10 1.43757e-10) (-2.1724e-10 3.06021e-10 1.06779e-11) (-5.10253e-10 -2.61413e-11 -1.38632e-10) (-8.92572e-10 -5.74408e-10 -4.20384e-10) (-5.69688e-10 -5.52122e-10 -3.75903e-10) (-1.10996e-10 -1.60036e-10 -1.23997e-10) (7.4064e-12 -2.15873e-11 -1.68637e-11) (5.00087e-11 -1.15034e-11 8.928e-12) (1.33884e-10 2.23875e-11 1.06492e-10) (1.35502e-10 1.03553e-10 2.08132e-10) (4.90847e-11 1.52982e-10 2.05641e-10) (-2.33259e-11 7.06181e-11 1.58247e-10) (-1.44507e-10 -7.62664e-11 2.17766e-10) (-7.71617e-10 -4.76663e-10 3.82946e-10) (-9.5469e-10 -2.37732e-10 6.01854e-11) (-3.20297e-10 4.27935e-10 -2.50283e-10) (-1.69599e-10 2.46391e-09 -1.04838e-09) (-1.30999e-10 3.71627e-09 -1.33604e-09) (-5.05754e-10 8.18645e-10 -2.57954e-10) (-2.79807e-10 2.95549e-11 -5.44854e-11) (-4.04995e-11 -1.40887e-10 -1.32313e-10) (1.11285e-09 -9.64902e-10 -1.20296e-09) (4.83182e-09 -2.40227e-09 -3.16333e-09) (7.12827e-09 -3.19444e-09 -3.3253e-09) (5.19413e-09 -2.16902e-09 -2.02892e-09) (1.86142e-09 -3.8112e-10 -8.75629e-10) (2.41975e-10 1.49173e-10 -1.82382e-10) (-1.25389e-10 2.12331e-10 1.8108e-11) (-1.29414e-09 3.90031e-10 8.06848e-10) (-1.93703e-09 -2.92562e-10 1.79589e-09) (-6.22557e-10 -5.09901e-10 1.02491e-09) (1.67858e-11 -1.42359e-10 1.9198e-10) (5.6381e-11 -1.29507e-11 1.11203e-11) (1.24607e-10 3.74706e-11 -7.84055e-11) (1.81339e-10 4.31017e-11 -1.95057e-10) (2.35312e-10 -4.96223e-11 -1.77796e-10) (3.71022e-10 -1.85111e-10 -1.87118e-11) (4.89801e-10 -2.89308e-10 3.23154e-10) (2.77094e-10 -7.86257e-11 4.66415e-10) (8.44485e-11 2.53706e-10 3.87965e-10) (-5.69634e-11 7.81036e-10 3.4899e-10) (-2.43119e-10 6.03811e-10 1.02072e-10) (-4.03817e-10 1.14228e-10 -4.03507e-11) (-1.28833e-09 -5.05712e-10 -3.61084e-10) (-1.42674e-09 -9.3948e-10 -7.19902e-10) (-4.24807e-10 -4.2029e-10 -4.14129e-10) (-6.25192e-12 -8.0939e-11 -8.22044e-11) (5.15552e-11 -2.89982e-11 -5.01226e-12) (1.33956e-10 -9.87844e-12 8.47259e-11) (1.33784e-10 6.20329e-11 1.66516e-10) (6.2192e-11 1.24454e-10 1.49596e-10) (1.78684e-11 1.10838e-10 1.28522e-10) (-4.39402e-11 1.27032e-11 1.46575e-10) (-8.26158e-10 -3.85476e-10 5.83191e-10) (-3.45574e-09 -8.18905e-10 9.0662e-10) (-2.07683e-09 7.27684e-10 -6.50193e-11) (-6.26763e-10 2.98936e-09 -1.03964e-09) (7.45698e-10 5.27296e-09 -2.49669e-09) (4.80227e-10 1.68479e-09 -1.29292e-09) (4.18979e-11 -3.44962e-12 -1.42346e-10) (4.48948e-10 -7.24775e-10 -2.43027e-10) (2.56413e-09 -2.56774e-09 -3.67392e-10) (4.89511e-09 -3.47841e-09 -4.58925e-10) (4.2628e-09 -2.54615e-09 -7.28621e-10) (1.89375e-09 -9.62443e-10 -8.68732e-10) (5.36012e-10 -4.1273e-11 -7.232e-10) (5.77799e-11 5.25635e-10 -8.09372e-10) (-3.73869e-10 8.50177e-10 -5.81117e-10) (-2.74374e-10 2.63833e-10 -2.89271e-11) (-9.2386e-11 -4.2328e-11 1.18179e-10) (4.00415e-11 -4.12492e-10 4.54229e-10) (2.13637e-10 -3.71137e-10 4.41157e-10) (1.29679e-10 -4.79953e-11 1.40561e-10) (1.10641e-10 4.48008e-11 2.32882e-11) (2.23215e-10 8.33901e-11 -1.00283e-10) (3.85383e-10 -2.05372e-11 -2.44809e-10) (3.8661e-10 -1.84562e-10 -1.32023e-10) (2.06611e-10 -1.73003e-10 1.08356e-10) (2.79373e-11 -6.39942e-11 3.29367e-10) (-3.09286e-10 3.74057e-10 7.15132e-10) (-7.88873e-10 1.24356e-09 8.57407e-10) (-8.70229e-10 1.11873e-09 3.62159e-10) (-7.05315e-10 3.11557e-10 -4.91826e-11) (-1.01183e-09 -2.56813e-10 -4.21537e-10) (-1.0936e-09 -7.71556e-10 -8.70771e-10) (-4.24003e-10 -5.47014e-10 -6.10956e-10) (-1.34468e-12 -1.60499e-10 -1.42199e-10) (8.8836e-11 -7.00611e-11 -4.88482e-12) (2.14908e-10 -5.32619e-11 1.21246e-10) (1.56533e-10 2.99425e-11 1.6531e-10) (2.51346e-11 6.89167e-11 8.55532e-11) (-2.27557e-11 1.0384e-10 7.10042e-11) (-3.34619e-11 5.79775e-11 8.61502e-11) (-3.97311e-10 -8.7762e-11 3.87918e-10) (-3.70547e-09 -7.29549e-10 1.54458e-09) (-5.29502e-09 8.04674e-10 9.05994e-10) (-1.63972e-09 2.82483e-09 -6.98514e-10) (1.52213e-10 3.8377e-09 -2.13701e-09) (2.47312e-09 2.75445e-09 -3.00206e-09) (2.25128e-09 -2.2836e-10 -1.53662e-09) (3.87127e-09 -3.13273e-09 -8.22147e-10) (4.83199e-09 -5.35396e-09 5.23496e-10) (2.50562e-09 -3.34463e-09 8.27011e-10) (6.29047e-10 -1.02168e-09 2.29027e-10) (8.26899e-11 -1.47601e-10 -5.8523e-11) (-8.04957e-12 4.31611e-11 -3.28619e-10) (-3.32803e-10 8.12886e-10 -1.27299e-09) (-3.71744e-10 1.05358e-09 -1.07042e-09) (-8.11916e-12 1.4237e-10 -1.20981e-10) (6.69351e-11 -4.08978e-11 2.21065e-11) (4.43014e-10 -4.83646e-10 3.58388e-10) (3.59831e-10 -3.74133e-10 4.13444e-10) (1.27495e-10 -4.08654e-11 1.63073e-10) (9.23099e-11 5.05351e-11 5.53584e-11) (1.98697e-10 9.55784e-11 -3.36166e-11) (4.21124e-10 3.05316e-11 -2.03314e-10) (4.07958e-10 -1.34794e-10 -1.75103e-10) (8.92597e-11 -7.46749e-11 2.02932e-11) (-9.0073e-11 -1.60924e-11 2.1793e-10) (-1.24476e-09 7.39804e-10 1.25372e-09) (-2.61373e-09 2.23532e-09 1.77231e-09) (-2.037e-09 1.79442e-09 7.4541e-10) (-9.70189e-10 4.62251e-10 -8.05309e-11) (-8.15272e-10 -1.33888e-10 -4.75311e-10) (-8.22772e-10 -6.22559e-10 -8.71335e-10) (-3.24197e-10 -5.58705e-10 -5.97979e-10) (2.36348e-11 -2.225e-10 -1.57027e-10) (1.45552e-10 -1.30085e-10 -3.9783e-12) (3.03835e-10 -1.05181e-10 1.45234e-10) (2.17607e-10 1.03573e-11 1.89534e-10) (3.16887e-11 5.53595e-11 7.39993e-11) (-3.65952e-11 9.94509e-11 3.41694e-11) (-3.4598e-11 7.7685e-11 2.13637e-11) (-5.77784e-11 2.86193e-11 7.51786e-11) (-1.37626e-09 -1.2595e-10 8.47885e-10) (-5.74727e-09 5.45212e-10 1.6959e-09) (-3.13498e-09 2.35175e-09 -2.08131e-10) (-7.75235e-10 1.1246e-09 -7.02296e-10) (1.00874e-09 8.11297e-10 -1.31661e-09) (2.60853e-09 -6.34201e-10 -1.38599e-09) (2.82325e-09 -2.51601e-09 -4.32846e-10) (1.55872e-09 -2.64066e-09 4.98474e-10) (5.56404e-10 -1.60596e-09 6.0158e-10) (1.72969e-10 -6.61613e-10 2.81348e-10) (3.623e-12 -7.89472e-11 1.7719e-11) (-5.20996e-11 2.10276e-11 -7.0333e-11) (-3.88453e-10 5.05893e-10 -7.4398e-10) (-2.01513e-10 6.04627e-10 -8.74096e-10) (8.74992e-11 7.65118e-11 -1.80375e-10) (2.59811e-10 -1.37452e-10 -3.7517e-12) (4.89301e-10 -4.64529e-10 2.56622e-10) (2.33467e-10 -2.52104e-10 2.20493e-10) (5.88824e-11 -2.16287e-11 6.50111e-11) (6.82338e-11 4.25651e-11 3.02511e-11) (2.25488e-10 1.32693e-10 -3.72644e-11) (5.01023e-10 1.26725e-10 -2.30825e-10) (4.63634e-10 -3.62406e-11 -2.52964e-10) (4.92408e-11 -2.15482e-11 -1.69231e-11) (-1.28922e-10 3.07407e-11 1.19808e-10) (-2.4063e-09 1.19102e-09 1.52806e-09) (-5.22985e-09 3.27528e-09 2.5512e-09) (-3.65472e-09 2.52196e-09 1.10835e-09) (-1.3175e-09 6.99814e-10 -6.0312e-11) (-5.67646e-10 1.02473e-11 -3.18361e-10) (-3.89695e-10 -3.27097e-10 -4.69867e-10) (-1.26078e-10 -4.66225e-10 -4.10614e-10) (8.23027e-11 -3.1568e-10 -1.8187e-10) (1.80877e-10 -1.94575e-10 -3.25247e-11) (2.63747e-10 -1.31068e-10 7.76264e-11) (2.18047e-10 -2.15893e-11 1.36472e-10) (9.66184e-11 5.81714e-11 1.00469e-10) (3.4673e-11 9.23721e-11 4.91077e-11) (2.6942e-11 8.94828e-11 8.83609e-12) (1.57895e-11 4.2886e-11 8.41257e-12) (-1.13455e-10 5.43671e-11 9.93375e-11) (-2.64704e-09 4.31318e-10 9.61016e-10) (-4.39167e-09 1.49968e-09 3.47553e-10) (-1.44038e-09 3.47659e-10 -2.58391e-10) (-7.0725e-11 5.7678e-12 -1.05111e-10) (1.78563e-10 -1.65823e-10 -1.39255e-10) (6.77754e-10 -7.12458e-10 -1.02607e-10) (1.01856e-09 -1.15705e-09 5.49366e-11) (9.64313e-10 -1.1367e-09 1.13772e-10) (2.99815e-10 -4.92908e-10 1.034e-10) (-1.11386e-11 -5.72563e-11 3.3704e-11) (-8.24476e-11 2.29824e-11 1.75136e-11) (-1.38746e-10 1.4971e-10 -7.13616e-11) (-1.44923e-11 1.10971e-10 -1.20082e-10) (8.47836e-11 -7.05314e-13 -8.30895e-11) (2.65864e-10 -2.13481e-10 -5.60988e-11) (2.84679e-10 -3.9011e-10 4.012e-11) (1.01231e-10 -1.81269e-10 4.72063e-11) (2.2018e-11 -1.92469e-11 1.48789e-11) (4.44114e-11 1.87412e-11 1.31386e-11) (2.11303e-10 1.19863e-10 -2.9817e-11) (5.0768e-10 2.02708e-10 -2.37025e-10) (5.18786e-10 1.08111e-10 -3.65398e-10) (7.26654e-11 1.63393e-11 -7.58876e-11) (-1.30672e-10 7.71157e-11 3.58317e-11) (-2.92736e-09 1.54629e-09 1.26055e-09) (-7.28782e-09 4.14661e-09 2.7187e-09) (-5.36503e-09 3.1598e-09 1.1846e-09) (-1.59814e-09 7.78492e-10 -1.04694e-10) (-3.04162e-10 -3.18161e-12 -1.72291e-10) (-1.02611e-10 -1.86538e-10 -1.72307e-10) (1.13363e-11 -2.89483e-10 -1.64958e-10) (9.41105e-11 -2.21487e-10 -9.65608e-11) (1.67255e-10 -1.72967e-10 -3.78431e-11) (2.58957e-10 -1.60256e-10 2.77116e-11) (2.37824e-10 -7.882e-11 8.11594e-11) (1.35533e-10 1.83884e-11 7.96347e-11) (8.72547e-11 8.35586e-11 6.98729e-11) (8.86364e-11 1.30915e-10 6.11358e-11) (9.0465e-11 1.27697e-10 4.15297e-11) (1.02204e-11 8.17657e-11 3.52806e-11) (-4.16226e-10 2.42417e-10 1.63308e-10) (-2.2589e-09 6.06424e-10 2.35918e-10) (-5.23498e-10 6.3683e-11 -1.07004e-11) (-1.22552e-10 -5.41921e-11 -4.15501e-11) (7.19419e-11 -1.50057e-10 -6.6962e-11) (9.57912e-10 -7.66924e-10 -2.76418e-10) (1.75503e-09 -1.20484e-09 -4.37054e-10) (6.59618e-10 -5.65624e-10 -1.73213e-10) (7.17948e-12 -7.79593e-11 4.39641e-12) (-2.0754e-10 -7.08622e-11 9.72888e-11) (-4.0404e-10 2.48731e-11 1.89189e-10) (-1.31214e-10 4.84213e-11 6.52233e-11) (-8.10685e-13 1.17618e-12 1.06615e-12) (4.35904e-11 -3.1643e-11 -7.74903e-12) (1.75496e-10 -2.24414e-10 -4.96779e-11) (1.42447e-10 -2.95662e-10 -6.10244e-11) (4.00414e-11 -1.24074e-10 -1.6114e-11) (1.08039e-11 -1.59347e-11 5.8882e-12) (3.64374e-11 8.03144e-12 2.08361e-11) (1.59981e-10 8.40949e-11 1.53383e-11) (3.67667e-10 1.9122e-10 -1.60834e-10) (4.42828e-10 2.12574e-10 -4.29212e-10) (1.15163e-10 1.18774e-10 -2.55292e-10) (-1.82759e-10 1.77234e-10 -7.97533e-11) (-2.50011e-09 1.52504e-09 5.70588e-10) (-6.44803e-09 3.72002e-09 2.03792e-09) (-4.82572e-09 2.69002e-09 1.27602e-09) (-1.17441e-09 5.30845e-10 1.24798e-10) (-9.21133e-11 -4.25449e-12 -2.14213e-11) (-1.35881e-11 -5.70413e-11 -3.02083e-11) (2.98943e-11 -1.21678e-10 -6.08268e-11) (9.69371e-11 -1.54145e-10 -8.23132e-11) (2.13142e-10 -2.03275e-10 -7.94246e-11) (3.23749e-10 -2.45473e-10 -2.01989e-11) (2.64182e-10 -1.63093e-10 5.52927e-11) (1.13232e-10 -2.80113e-11 5.93189e-11) (5.42078e-11 3.6086e-11 4.65929e-11) (5.2807e-11 1.00958e-10 5.25695e-11) (5.34046e-11 1.31077e-10 4.47919e-11) (2.58517e-11 1.28146e-10 3.88004e-11) (-6.53233e-11 1.4524e-10 5.11493e-11) (-3.61837e-10 1.97442e-10 7.06394e-11) (5.81111e-13 -7.69538e-13 -3.79579e-13) (9.57349e-11 -1.20501e-10 -6.82319e-11) (6.22355e-10 -5.63222e-10 -3.50074e-10) (8.647e-10 -6.65153e-10 -4.49182e-10) (1.97918e-10 -1.81492e-10 -1.17803e-10) (-9.83283e-12 -1.40676e-11 -9.19307e-16) (-2.84809e-10 -6.15918e-11 1.10413e-10) (-6.6197e-10 -1.16594e-10 2.82248e-10) (-4.5205e-10 -8.43939e-11 1.94526e-10) (-1.00258e-10 -2.7288e-11 4.78431e-11) (-4.4999e-12 -9.06396e-12 4.38067e-12) (1.96607e-11 -4.96691e-11 -5.00919e-12) (5.62553e-11 -1.57667e-10 -4.67078e-11) (3.1196e-11 -1.78566e-10 -6.26296e-11) (2.80838e-12 -8.07722e-11 -1.17012e-11) (7.59662e-12 -2.69717e-11 2.47732e-11) (6.27053e-11 -3.71184e-12 1.19638e-10) (1.49572e-10 7.60469e-11 1.45719e-10) (1.72865e-10 1.26119e-10 -8.27686e-12) (2.60382e-10 2.36006e-10 -3.47979e-10) (1.25074e-10 3.12153e-10 -6.39874e-10) (-2.49033e-10 3.84257e-10 -3.88307e-10) (-1.3986e-09 1.17475e-09 2.12979e-12) (-3.28209e-09 2.26827e-09 1.12174e-09) (-2.34174e-09 1.35428e-09 1.07811e-09) (-4.47937e-10 1.58401e-10 2.28392e-10) (-1.79064e-11 -1.33987e-11 9.76484e-12) (1.35561e-11 -5.80865e-11 -8.57135e-12) (5.45856e-11 -9.88737e-11 -3.84326e-11) (9.63482e-11 -1.05876e-10 -6.73564e-11) (1.67039e-10 -1.3514e-10 -9.74709e-11) (2.08471e-10 -1.65658e-10 -9.38306e-11) (1.20617e-10 -1.09246e-10 -3.27188e-11) (1.86225e-11 -1.60639e-11 3.54543e-12) (2.56962e-12 5.27771e-12 8.25855e-12) (-9.25761e-13 8.93967e-11 5.20006e-11) (8.27229e-12 2.10671e-10 8.35359e-11) (2.36742e-11 2.12428e-10 7.48886e-11) (1.35682e-11 1.26289e-10 4.91639e-11) (4.11307e-14 2.40748e-11 1.09519e-11) (1.22467e-10 -4.55199e-11 1.34319e-11) (2.52388e-10 -2.11589e-10 -9.33164e-11) (2.05712e-10 -2.47996e-10 -1.96423e-10) (2.65275e-11 -8.04856e-11 -1.10489e-10) (-2.59638e-11 -7.9228e-12 -3.10877e-11) (-6.35615e-11 5.38496e-12 3.43567e-13) (-1.16148e-10 -3.51666e-12 5.74674e-11) (-1.48854e-10 -3.44608e-11 9.31869e-11) (-1.33518e-10 -4.91492e-11 6.28026e-11) (-7.8666e-11 -4.30893e-11 1.7671e-11) (-3.5473e-11 -4.15823e-11 -5.53503e-12) (-2.07511e-11 -7.50255e-11 -2.78808e-11) (-1.55922e-11 -1.30856e-10 -6.03557e-11) (-2.16702e-11 -1.33212e-10 -5.37084e-11) (-1.71154e-11 -8.55578e-11 -7.01103e-13) (-1.75908e-13 -8.71885e-11 9.2982e-11) (8.91381e-11 -1.01414e-10 4.55446e-10) (2.03468e-10 7.9439e-11 6.72229e-10) (1.08692e-10 1.36608e-10 1.95474e-10) (5.08996e-11 1.33053e-10 -8.37206e-11) (-2.69421e-11 4.74433e-10 -8.79927e-10) (-4.4824e-10 7.53654e-10 -1.19448e-09) (-8.1185e-10 8.74103e-10 -4.37322e-10) (-1.07886e-09 9.95958e-10 3.89469e-10) (-6.47045e-10 4.99065e-10 6.90994e-10) (-1.09449e-10 2.21477e-11 2.71834e-10) (1.70065e-11 -6.29449e-11 6.55135e-11) (7.05213e-11 -1.38235e-10 5.34952e-12) (8.72003e-11 -1.61448e-10 -5.38271e-11) (6.38172e-11 -1.03216e-10 -6.65268e-11) (5.28745e-11 -5.64976e-11 -6.67767e-11) (5.71596e-11 -3.28445e-11 -7.84969e-11) (4.12482e-11 -1.30246e-11 -7.10129e-11) (7.40784e-12 2.4491e-12 -2.81426e-11) (-3.09323e-12 6.61518e-12 -5.58365e-12) (-9.10002e-12 2.64295e-11 7.22028e-12) (7.68044e-13 7.0567e-11 4.66723e-11) (3.94706e-11 1.15359e-10 9.76815e-11) (7.26638e-11 9.93272e-11 1.00892e-10) (7.7485e-11 2.91976e-11 5.39133e-11) (9.96394e-11 -4.0107e-11 1.38548e-11) (9.44711e-11 -6.49773e-11 -4.06371e-11) (3.22516e-11 -2.95679e-11 -5.02301e-11) (-6.10104e-13 -1.717e-12 -3.40139e-11) (-6.64526e-12 5.08165e-12 -1.55957e-11) (-9.63594e-13 5.03753e-13 -8.32768e-13) (-4.54246e-13 -7.48553e-13 1.0924e-12) (-2.92487e-12 -5.06979e-12 5.1118e-12) (-1.34566e-11 -1.05167e-11 4.29809e-12) (-4.72474e-11 -2.4779e-11 -7.34882e-12) (-9.10885e-11 -5.25824e-11 -3.5388e-11) (-1.10314e-10 -9.06903e-11 -6.40916e-11) (-1.0595e-10 -1.24132e-10 -8.01804e-11) (-8.37232e-11 -1.30362e-10 -6.54748e-11) (-5.37612e-11 -1.13137e-10 -1.34892e-11) (-3.78752e-11 -1.32005e-10 8.53562e-11) (-9.31523e-12 -2.17908e-10 4.94062e-10) (1.0348e-10 -5.41376e-11 1.26882e-09) (1.27422e-10 3.02872e-10 1.08438e-09) (1.63326e-11 1.7143e-10 1.35609e-10) (-7.07148e-11 3.24201e-10 -3.35562e-10) (-5.30128e-10 1.00478e-09 -1.73198e-09) (-7.31855e-10 1.02995e-09 -1.22694e-09) (-3.17303e-10 4.09176e-10 -7.65947e-11) (-1.30332e-10 1.45896e-10 2.52339e-10) (-2.48897e-11 -5.8561e-11 4.46322e-10) (5.51469e-11 -2.21357e-10 3.16361e-10) (5.75728e-11 -2.01622e-10 9.76318e-11) (3.62921e-11 -1.25437e-10 -1.20186e-11) (1.88711e-11 -6.90791e-11 -4.96584e-11) (1.26859e-11 -3.54736e-11 -7.4078e-11) (1.74385e-11 -5.42852e-12 -1.17452e-10) (2.86445e-11 3.52954e-11 -1.55357e-10) (2.37979e-11 5.23941e-11 -1.2389e-10) (3.39959e-12 3.13647e-11 -4.23774e-11) (-3.11659e-12 1.37285e-11 -2.5831e-12) (-8.60278e-12 2.91329e-11 2.7243e-11) (1.43988e-12 6.00455e-11 9.695e-11) (4.19097e-11 5.0373e-11 1.11612e-10) (6.89343e-11 5.68225e-12 6.04397e-11) (1.27366e-10 -1.15312e-10 -2.47339e-13) (7.63309e-11 -8.72345e-11 -2.58796e-11) (1.57765e-11 -1.39572e-11 -1.48682e-11) (7.0024e-12 7.52248e-12 -1.12133e-11) (2.09321e-11 4.33951e-11 -1.89164e-11) (3.65849e-11 5.66986e-11 -8.04414e-12) (2.40893e-11 2.43589e-11 3.34194e-12) (3.74683e-12 1.77831e-12 1.27266e-12) (-1.25292e-13 -9.16818e-13 -1.68251e-13) (-1.31587e-11 -1.74929e-11 -9.73182e-12) (-6.06145e-11 -6.18099e-11 -4.55816e-11) (-1.2998e-10 -1.1709e-10 -9.97507e-11) (-1.79991e-10 -1.57587e-10 -1.46263e-10) (-1.68895e-10 -1.70426e-10 -1.49179e-10) (-1.1422e-10 -1.64069e-10 -9.24473e-11) (-7.17096e-11 -1.55519e-10 -2.48498e-12) (-6.48698e-11 -1.75271e-10 1.56734e-10) (-6.00395e-11 -1.51098e-10 7.1535e-10) (6.41197e-11 3.13575e-10 1.77445e-09) (1.30122e-10 7.27079e-10 1.51995e-09) (1.0521e-11 2.93869e-10 1.95658e-10) (-5.58707e-11 3.13383e-10 -3.29816e-10) (-2.3939e-10 6.39911e-10 -1.39099e-09) (-1.77692e-10 3.56091e-10 -6.97171e-10) (-1.17176e-11 2.6262e-11 -1.95815e-11) (1.18468e-11 1.47516e-14 5.51122e-11) (7.58881e-11 -8.36257e-11 2.10872e-10) (6.29878e-11 -1.28079e-10 1.52167e-10) (1.03762e-11 -8.14094e-11 4.03489e-11) (-1.42415e-11 -4.22106e-11 -1.07989e-12) (-3.31013e-11 -3.00185e-11 -1.71271e-11) (-5.47061e-11 -2.12352e-11 -3.31311e-11) (-6.73973e-11 -5.5368e-12 -4.95616e-11) (-7.022e-11 1.89733e-11 -6.16554e-11) (-6.13648e-11 5.16332e-11 -5.31211e-11) (-4.41284e-11 8.12959e-11 -2.51599e-11) (-1.66051e-11 8.94467e-11 1.22762e-11) (1.40765e-11 5.46631e-11 3.13648e-11) (3.47413e-11 1.32086e-11 2.76208e-11) (8.12715e-11 -3.79047e-11 2.58065e-11) (1.11333e-10 -9.95874e-11 -3.88184e-11) (1.95973e-11 -1.83967e-11 -7.27541e-12) (1.16669e-12 3.82592e-14 2.98357e-13) (6.49775e-12 9.66106e-12 5.83455e-12) (2.87638e-11 3.8479e-11 1.67951e-11) (5.66526e-11 6.23305e-11 1.87003e-11) (5.01923e-11 4.84022e-11 9.41857e-12) (1.7261e-11 1.37953e-11 4.61382e-13) (1.97526e-12 5.22064e-13 -1.09725e-12) (5.57298e-13 -2.82548e-12 -4.6886e-12) (-4.79867e-12 -1.25021e-11 -2.2633e-11) (-2.36569e-11 -2.71851e-11 -6.61904e-11) (-6.17515e-11 -5.42805e-11 -1.38584e-10) (-1.03575e-10 -1.12734e-10 -2.06009e-10) (-1.27759e-10 -2.01162e-10 -2.16739e-10) (-1.34801e-10 -2.62686e-10 -1.40911e-10) (-1.16264e-10 -2.09789e-10 1.19049e-14) (-9.19502e-11 -1.10168e-10 1.51703e-10) (-7.7982e-11 8.41061e-11 7.36481e-10) (2.02149e-10 8.66304e-10 2.01011e-09) (3.63404e-10 1.29912e-09 1.93054e-09) (8.4593e-11 5.73876e-10 4.55683e-10) (-1.68396e-11 1.33293e-10 -4.1293e-11) (-7.20748e-11 8.5622e-11 -2.50594e-10) (-9.8132e-11 -1.97952e-11 -2.46768e-10) (-7.02046e-11 -4.65883e-11 -8.76078e-11) (-3.68841e-11 -2.89285e-11 -1.93691e-11) (-9.1902e-12 -1.03343e-11 -2.91873e-12) (6.00441e-14 -3.4316e-12 -7.99292e-13) (3.4945e-12 -3.80825e-12 -4.14938e-13) (2.48407e-12 -2.40722e-12 9.67616e-13) (-8.64427e-13 -1.10693e-12 1.73363e-12) (-2.71563e-11 -1.48432e-12 1.0365e-11) (-1.22082e-10 1.19671e-11 1.49935e-11) (-1.81007e-10 4.15352e-11 -1.25211e-12) (-9.51538e-11 4.07049e-11 -4.61456e-12) (-7.99966e-12 7.73138e-12 -4.58196e-15) (5.48522e-12 -7.49031e-14 7.15328e-14) (8.89436e-11 -4.5343e-11 -9.75709e-12) (1.81587e-10 -1.32804e-10 -4.24877e-11) (-1.41242e-10 -7.02356e-11 -1.54932e-10) (-9.16221e-11 5.1394e-12 -5.53989e-11) (-3.21922e-12 7.6192e-12 2.63806e-12) (1.62508e-10 9.67269e-11 1.38871e-10) (8.41003e-10 3.04841e-10 5.66357e-10) (1.13517e-09 3.43164e-10 6.84997e-10) (6.83406e-10 1.65102e-10 3.80456e-10) (2.56482e-10 2.19212e-11 1.29697e-10) (8.48222e-11 -2.04165e-11 3.47819e-11) (2.64089e-11 -1.79015e-11 3.30178e-12) (5.20477e-12 -7.82545e-12 -8.25406e-12) (-1.4927e-11 -7.22545e-12 -5.904e-11) (-1.17024e-10 -5.73377e-12 -2.43656e-10) (-2.57794e-10 -9.01193e-11 -4.45406e-10) (-2.84258e-10 -2.60546e-10 -4.63148e-10) (-1.98421e-10 -3.06933e-10 -2.93565e-10) (-9.85189e-11 -1.52047e-10 -7.42731e-11) (-4.61429e-11 -3.57241e-11 2.70451e-11) (-8.08425e-11 3.92114e-11 2.89124e-10) (5.73165e-11 4.61638e-10 1.25176e-09) (4.5359e-10 1.06713e-09 2.03814e-09) (4.81704e-10 9.92505e-10 1.36142e-09) (1.52264e-10 3.32545e-10 2.88301e-10) (5.75243e-12 2.13283e-11 -1.31898e-12) (-2.95972e-11 -9.57041e-12 -6.99421e-11) (-1.88224e-10 -1.34516e-10 -2.73379e-10) (-3.33524e-10 -2.39388e-10 -3.77047e-10) (-2.79778e-10 -1.96157e-10 -3.0548e-10) (-1.23263e-10 -8.73155e-11 -1.74429e-10) (-3.21854e-11 -2.13152e-11 -8.69993e-11) (-4.94086e-12 4.71334e-12 -4.43235e-11) (-7.97773e-13 1.2706e-11 -1.7555e-11) (-2.78886e-12 1.45087e-11 -1.47223e-12) (-1.20006e-11 2.68967e-11 2.28965e-11) (-2.64528e-11 2.99351e-11 6.5327e-11) (-1.72056e-11 3.03474e-12 5.69235e-11) (7.39611e-13 -1.71029e-11 2.01312e-11) (2.49494e-11 -7.21671e-11 -4.51424e-12) (3.81774e-11 -1.63448e-10 -9.11113e-11) (-4.31936e-11 -1.47363e-10 -1.56623e-10) (3.91254e-12 6.48576e-14 1.73406e-12) (1.89179e-12 1.9142e-13 -7.67994e-13) (4.15886e-12 6.74157e-13 -6.87893e-12) (2.65044e-11 1.21556e-12 -2.13464e-11) (1.28717e-10 1.87266e-12 -3.56983e-11) (2.63124e-10 2.36638e-12 -1.24471e-11) (2.25267e-10 8.94061e-13 2.02591e-11) (1.11894e-10 7.74298e-13 1.73556e-11) (4.08495e-11 -2.3821e-13 -1.7375e-12) (1.40834e-11 4.54718e-14 -9.60288e-12) (9.69529e-12 1.69951e-14 -1.37602e-11) (1.2557e-11 -1.62023e-13 -8.30773e-12) (3.00884e-11 -3.29861e-13 -3.27079e-13) (5.20941e-11 -1.7844e-13 1.37933e-11) (5.9006e-11 1.22863e-13 1.82127e-11) (7.59377e-11 4.50471e-14 1.69943e-11) (1.36675e-10 -1.79511e-13 2.18608e-11) (2.76432e-10 3.45785e-14 4.48486e-11) (5.08464e-10 -1.84853e-12 1.00812e-10) (8.00324e-10 -2.83705e-12 1.93876e-10) (1.09884e-09 -3.01866e-12 3.125e-10) (1.31062e-09 6.57413e-13 4.24553e-10) (1.28173e-09 8.76148e-12 4.67799e-10) (9.62155e-10 1.22312e-11 3.87817e-10) (5.30365e-10 7.79086e-12 2.08803e-10) (2.31573e-10 4.33821e-12 6.48282e-11) (1.20536e-10 2.14101e-12 1.53475e-11) (1.25476e-10 1.02511e-12 1.73845e-11) (2.25455e-10 1.14953e-12 6.09977e-11) (3.67227e-10 4.2562e-12 1.27982e-10) (3.81438e-10 6.96186e-12 1.22456e-10) (2.15227e-10 3.8917e-12 3.06324e-11) (5.77772e-11 -5.96284e-14 -1.45776e-11) (3.65342e-12 -4.38118e-13 -6.8635e-12) (-1.524e-12 -1.64096e-13 6.46542e-13) (4.02988e-12 -4.01125e-13 9.73272e-12) (1.2364e-11 -1.57598e-14 1.12569e-11) (7.18353e-12 1.67796e-13 3.08876e-12) (3.12664e-12 1.63912e-14 1.20735e-12) (3.50041e-12 -1.37266e-13 2.1837e-12) (1.45769e-11 1.93861e-12 -2.12457e-11) (2.44843e-11 1.12453e-11 -9.86119e-11) (4.66121e-11 1.51005e-11 -1.53334e-10) (1.33617e-10 8.84237e-12 -1.04549e-10) (7.3954e-10 1.58755e-11 4.83133e-12) (2.52896e-09 3.01319e-11 5.80368e-10) (3.55541e-09 -2.40189e-11 9.38995e-10) (2.56341e-09 -7.56374e-11 5.0766e-10) (1.35242e-09 -6.48143e-11 -4.37323e-12) (6.33662e-10 -2.10169e-11 -2.01427e-10) (2.93304e-10 -1.3015e-12 -1.5153e-10) (2.0536e-10 4.4654e-12 -3.41079e-11) (4.76214e-10 1.6157e-11 1.37212e-10) (9.63979e-10 3.5264e-11 4.18078e-10) (1.24795e-09 3.84497e-11 4.7422e-10) (1.49981e-09 1.80446e-11 3.82796e-10) (2.14838e-09 -2.43831e-11 3.45122e-10) (3.51718e-09 -8.72046e-11 4.66051e-10) (5.67403e-09 -1.5805e-10 8.32014e-10) (8.47824e-09 -2.12493e-10 1.4466e-09) (1.14644e-08 -2.20019e-10 2.14426e-09) (1.36584e-08 -1.19833e-10 2.65299e-09) (1.38051e-08 8.29749e-11 2.80373e-09) (1.14272e-08 2.1737e-10 2.54868e-09) (7.40277e-09 1.89632e-10 1.71741e-09) (3.87242e-09 1.1633e-10 6.96916e-10) (2.08245e-09 6.66137e-11 1.56095e-10) (1.69739e-09 4.48204e-11 1.07936e-10) (2.33587e-09 4.78823e-11 4.6758e-10) (3.8522e-09 7.96978e-11 1.2201e-09) (5.36165e-09 1.00288e-10 1.61034e-09) (5.73598e-09 4.33872e-11 7.903e-10) (4.27019e-09 -5.9928e-11 -5.05851e-10) (1.47153e-09 -8.05487e-11 -5.52003e-10) (1.05461e-10 -1.60609e-11 -3.08531e-11) (-9.72285e-13 -3.66189e-12 2.01371e-11) (6.63146e-12 1.35859e-12 1.23231e-11) (1.0036e-11 1.47176e-12 -1.01618e-12) (1.56871e-11 9.36936e-13 -8.14386e-12) (1.31939e-11 -1.03789e-13 -7.01098e-12) (1.67689e-11 4.57619e-12 -5.02365e-11) (2.4468e-11 2.85415e-11 -1.97827e-10) (4.17761e-11 3.37791e-11 -2.81278e-10) (7.72355e-11 9.31752e-12 -1.08569e-10) (4.06624e-10 8.8138e-12 3.04927e-11) (2.36332e-09 1.15446e-11 9.01239e-10) (4.14465e-09 -1.0621e-10 1.64885e-09) (2.7852e-09 -1.98983e-10 8.42149e-10) (1.2685e-09 -1.44205e-10 7.53675e-11) (6.77187e-10 -6.16069e-11 -2.1228e-10) (3.70277e-10 -1.2362e-11 -2.16586e-10) (1.67913e-10 8.21822e-12 -5.08443e-11) (3.09554e-10 3.02168e-11 1.11924e-10) (8.88818e-10 7.93422e-11 5.18038e-10) (1.31916e-09 1.04755e-10 6.60884e-10) (1.39408e-09 6.52059e-11 4.51657e-10) (1.48655e-09 -9.55178e-12 2.43573e-10) (1.84532e-09 -1.04509e-10 1.5054e-10) (2.47561e-09 -1.93344e-10 1.97738e-10) (3.38303e-09 -2.57212e-10 3.94313e-10) (4.5305e-09 -2.6195e-10 6.77088e-10) (5.54184e-09 -1.5444e-10 8.84591e-10) (5.77471e-09 4.83132e-11 9.01052e-10) (4.9804e-09 1.84944e-10 8.1657e-10) (3.47216e-09 1.84001e-10 6.33315e-10) (1.96933e-09 1.17816e-10 3.11438e-10) (1.12852e-09 7.28635e-11 5.35373e-11) (9.60645e-10 5.54135e-11 -2.8291e-11) (1.30397e-09 5.60436e-11 1.10284e-10) (2.23386e-09 7.30328e-11 6.00617e-10) (3.4357e-09 6.87362e-11 1.16459e-09) (4.13579e-09 -1.57007e-11 9.32194e-10) (4.01144e-09 -1.11679e-10 -1.40226e-10) (2.29258e-09 -1.28247e-10 -8.21068e-10) (1.90468e-10 -3.56571e-11 -1.75459e-10) (-7.06724e-11 -8.39228e-12 -2.91549e-12) (-1.46225e-10 1.44002e-11 4.17046e-11) (-1.19289e-11 5.57744e-12 -4.24585e-12) (4.77613e-12 3.37524e-12 -1.78389e-11) (1.41362e-11 1.1404e-12 -2.40182e-11) (-8.53857e-12 4.10852e-12 -5.43805e-11) (-4.34049e-11 3.50422e-11 -2.25385e-10) (-7.25957e-11 4.32679e-11 -3.68594e-10) (-1.38805e-11 4.97338e-12 -1.17661e-10) (2.72688e-11 -8.35541e-13 3.32412e-12) (9.4969e-10 -2.33021e-11 6.20031e-10) (2.60498e-09 -1.61715e-10 1.68408e-09) (1.56083e-09 -2.1714e-10 8.67806e-10) (3.52463e-10 -9.17612e-11 7.96412e-11) (1.15896e-10 -3.03817e-11 -6.97426e-11) (6.34126e-11 -5.13503e-12 -1.15888e-10) (5.80835e-12 4.68973e-12 -2.15698e-11) (5.03204e-12 5.58195e-12 9.25228e-12) (1.63134e-10 5.45642e-11 2.41477e-10) (4.18266e-10 9.2948e-11 4.29461e-10) (3.53175e-10 5.04284e-11 2.30749e-10) (1.96089e-10 1.69464e-12 5.72769e-11) (1.40908e-10 -2.57244e-11 -1.36891e-12) (1.54383e-10 -4.8895e-11 -1.73479e-11) (2.0843e-10 -6.65696e-11 -4.87533e-12) (3.46479e-10 -7.40482e-11 3.66755e-11) (5.74382e-10 -4.27127e-11 9.68125e-11) (6.87798e-10 3.46336e-11 1.21185e-10) (5.21663e-10 7.17772e-11 1.02021e-10) (2.38113e-10 4.72663e-11 6.52535e-11) (5.83929e-11 1.65371e-11 2.01681e-11) (9.03071e-12 3.7391e-12 2.04718e-14) (1.1517e-11 3.71343e-12 -7.74062e-12) (4.82951e-11 5.89925e-12 -1.30981e-11) (1.953e-10 1.00999e-11 4.59126e-11) (4.92607e-10 7.81394e-12 2.47769e-10) (6.20435e-10 -1.97469e-11 2.77256e-10) (5.08634e-10 -3.42589e-11 8.32027e-12) (3.06958e-10 -2.62205e-11 -2.63357e-10) (-1.10383e-10 -2.14218e-11 -3.2081e-10) (-1.96638e-09 -5.61063e-11 -4.83784e-10) (-3.24683e-09 1.11815e-10 9.3039e-11) (-7.47274e-10 1.01134e-10 -4.44344e-11) (-5.40849e-11 1.19777e-11 -4.45105e-11) (-5.96519e-12 1.47116e-12 -2.93136e-11) (-3.16381e-11 6.48021e-12 -7.68151e-11) (-1.3952e-10 4.95174e-11 -3.2244e-10) (-2.8973e-10 6.77749e-11 -6.40789e-10) (-2.22164e-10 4.10543e-12 -3.56867e-10) (-9.42212e-12 -1.4262e-12 -6.3775e-12) (1.94104e-10 -1.80427e-11 2.58293e-10) (1.68919e-09 -1.81379e-10 1.66491e-09) (1.6395e-09 -3.30901e-10 1.36744e-09) (3.87896e-10 -1.48111e-10 2.001e-10) (7.90636e-11 -3.92665e-11 -4.0443e-11) (4.1523e-11 -1.17871e-11 -1.32859e-10) (-2.25793e-11 1.75391e-11 -7.83558e-11) (-2.6615e-11 1.64563e-11 2.51556e-12) (-1.69151e-11 5.56297e-11 1.52339e-10) (1.66656e-10 1.17935e-10 4.21302e-10) (2.0439e-10 7.86659e-11 2.70423e-10) (5.57158e-11 9.09655e-12 4.43494e-11) (6.12282e-12 -3.36866e-12 1.60002e-13) (3.00045e-12 -1.47687e-11 -9.01674e-12) (9.17086e-13 -2.6382e-11 -1.37032e-11) (9.7137e-12 -2.03428e-11 -5.6826e-12) (6.56281e-11 -2.02741e-11 4.49177e-12) (2.72374e-10 2.44296e-11 4.03668e-11) (3.26257e-10 8.49463e-11 7.1949e-11) (1.11163e-10 4.74007e-11 5.12097e-11) (5.40389e-12 9.60983e-12 1.35467e-11) (-1.13368e-11 5.38613e-12 4.71771e-12) (-1.83689e-11 4.68312e-12 -7.48193e-12) (-2.76061e-12 1.45654e-12 -7.32743e-12) (6.58565e-12 5.15865e-13 -1.32681e-12) (7.14254e-11 -2.21104e-12 4.89779e-11) (1.39285e-10 -1.8626e-11 1.38963e-10) (7.28099e-11 -1.3367e-11 4.49105e-11) (2.58549e-11 -2.15326e-12 -3.84054e-11) (-3.76029e-10 1.99989e-11 -5.62206e-10) (-5.35477e-09 3.74179e-11 -1.88805e-09) (-1.23652e-08 1.78567e-10 -8.14534e-10) (-4.71205e-09 2.77743e-10 -1.11922e-10) (-3.91467e-10 3.98033e-11 -1.07558e-10) (-2.81078e-11 2.52961e-12 -3.88917e-11) (-1.45863e-11 9.55687e-12 -6.48353e-11) (-1.49096e-10 6.52426e-11 -4.07626e-10) (-4.84906e-10 1.04028e-10 -1.01894e-09) (-6.43976e-10 4.68094e-12 -8.68023e-10) (-2.63503e-10 -1.43104e-11 -1.4883e-10) (-1.85027e-11 -5.81206e-12 7.17348e-11) (6.82262e-10 -1.29234e-10 1.17527e-09) (1.64155e-09 -4.30505e-10 1.85726e-09) (9.33248e-10 -3.72585e-10 6.62837e-10) (3.05432e-10 -1.464e-10 1.1312e-11) (1.28834e-10 -4.38939e-11 -1.26435e-10) (1.4553e-11 1.51916e-11 -1.07207e-10) (-3.54599e-11 2.70898e-11 -2.40503e-11) (-6.54476e-11 5.96589e-11 7.98459e-11) (2.5667e-11 1.53278e-10 3.77054e-10) (2.19979e-10 1.69922e-10 4.27444e-10) (1.12483e-10 5.23857e-11 1.32424e-10) (4.77164e-12 -6.07999e-13 4.05266e-12) (-1.09885e-11 -1.63871e-11 -7.62687e-12) (-9.95056e-11 -9.8583e-11 -5.48877e-11) (-1.18126e-10 -1.24657e-10 -6.42772e-11) (-5.22378e-12 -2.68676e-11 -1.5395e-11) (1.14533e-10 -2.66831e-12 -1.6468e-11) (6.49405e-10 1.4492e-10 4.64197e-11) (7.10718e-10 2.13208e-10 1.84265e-10) (1.93921e-10 8.4375e-11 1.29848e-10) (2.82345e-12 1.2767e-11 2.70711e-11) (-8.31691e-12 3.25992e-12 3.48725e-12) (-1.64189e-12 6.67043e-13 -3.1227e-12) (1.05412e-11 -2.52948e-13 -8.99105e-12) (4.48633e-11 -5.63848e-12 6.65274e-12) (7.06091e-11 -2.08105e-11 6.86278e-11) (3.99395e-11 -2.07415e-11 8.04234e-11) (4.65199e-12 4.5291e-13 3.33901e-12) (-5.75988e-11 3.95818e-11 -1.30388e-10) (-3.33207e-09 2.89835e-10 -1.71074e-09) (-1.67223e-08 1.75716e-10 -2.73681e-09) (-1.23292e-08 5.26393e-11 -6.09863e-10) (-1.47837e-09 3.03086e-11 -1.20387e-10) (-3.49421e-11 2.71042e-12 -2.22821e-11) (-1.65576e-12 9.55011e-12 -2.59454e-11) (-5.12667e-11 9.74607e-11 -4.53763e-10) (-5.1177e-10 1.63653e-10 -1.46385e-09) (-1.23712e-09 6.71071e-12 -1.66187e-09) (-1.2352e-09 -4.26046e-11 -6.9538e-10) (-3.42079e-10 -9.74819e-12 8.79864e-11) (2.70406e-11 -7.21344e-11 6.39183e-10) (1.01671e-09 -4.14629e-10 1.70145e-09) (1.41788e-09 -6.29459e-10 1.21631e-09) (9.58507e-10 -4.31624e-10 3.04322e-10) (3.80517e-10 -1.33341e-10 -6.18703e-11) (5.48158e-11 -1.2508e-12 -5.41276e-11) (-1.28329e-11 1.76425e-11 -2.12861e-11) (-7.05523e-11 5.73017e-11 2.40281e-11) (-8.04491e-11 1.50256e-10 2.27082e-10) (9.54723e-11 2.4238e-10 4.52451e-10) (1.66806e-10 1.51755e-10 2.84643e-10) (2.71364e-11 1.44873e-11 3.87598e-11) (-4.51994e-12 -5.02354e-12 1.39788e-12) (-1.50101e-10 -1.17836e-10 -3.74785e-11) (-4.36312e-10 -3.2482e-10 -1.50214e-10) (-2.63858e-10 -2.22658e-10 -1.66275e-10) (3.20493e-12 -2.07646e-11 -4.36396e-11) (2.66585e-10 5.42274e-11 -6.16153e-11) (9.00997e-10 2.52483e-10 1.37017e-10) (7.90015e-10 2.44923e-10 3.58648e-10) (2.24068e-10 8.3633e-11 2.11609e-10) (2.02853e-11 1.19325e-11 3.9367e-11) (3.0907e-12 6.93107e-13 9.25688e-13) (3.876e-11 -1.50282e-12 -1.74288e-11) (8.72054e-11 -1.33589e-11 -1.88951e-11) (3.2168e-11 -1.54643e-11 1.7484e-11) (-2.36147e-11 -2.94748e-11 7.52554e-11) (-5.32225e-11 -1.9388e-12 7.65559e-11) (-6.35737e-12 1.93778e-11 -6.24473e-12) (-7.38294e-10 3.03264e-10 -5.92608e-10) (-1.05531e-08 5.3683e-10 -3.05571e-09) (-1.72856e-08 -6.03094e-10 -2.03597e-09) (-4.54492e-09 -2.94245e-10 -1.64036e-10) (-1.68961e-10 -2.74288e-12 -2.87472e-12) (-2.1391e-11 1.27371e-11 -4.2101e-12) (5.54965e-11 1.47819e-10 -4.02038e-10) (-2.17839e-10 3.03471e-10 -1.9438e-09) (-1.63257e-09 5.72367e-11 -2.63547e-09) (-3.25102e-09 -7.00233e-11 -1.89201e-09) (-1.9937e-09 4.4766e-13 -1.2597e-10) (-3.69842e-10 -5.45192e-11 4.42128e-10) (3.39313e-10 -3.15403e-10 1.09574e-09) (1.44952e-09 -7.75558e-10 1.40419e-09) (1.79701e-09 -8.07112e-10 7.85406e-10) (1.0086e-09 -3.44835e-10 1.60863e-10) (1.6556e-10 -2.60953e-11 -4.68658e-12) (2.72043e-13 2.02972e-12 -8.9859e-13) (-5.78854e-11 4.11761e-11 6.89905e-12) (-1.13633e-10 1.20177e-10 9.44024e-11) (-4.18742e-11 2.55248e-10 3.07931e-10) (1.32867e-10 2.69614e-10 3.93962e-10) (1.06319e-10 9.72436e-11 1.78034e-10) (9.58614e-12 -1.41398e-14 2.29011e-11) (-2.8916e-11 -3.83262e-11 1.18054e-11) (-3.28551e-10 -2.83752e-10 -5.9715e-11) (-6.89083e-10 -4.86417e-10 -3.43564e-10) (-2.82765e-10 -1.90444e-10 -3.57918e-10) (3.18503e-11 -1.01277e-13 -9.77226e-11) (2.9223e-10 8.91933e-11 -1.59989e-11) (6.10695e-10 1.897e-10 2.48557e-10) (3.63034e-10 1.13078e-10 2.69405e-10) (1.10915e-10 2.46526e-11 1.05368e-10) (7.27615e-11 2.92818e-12 3.2471e-11) (1.91514e-10 -2.86908e-12 -9.72562e-13) (2.90347e-10 -1.82409e-11 -1.47117e-11) (7.20125e-11 -1.94525e-11 2.75284e-11) (-9.30086e-11 -4.50262e-11 1.36865e-10) (-8.79618e-10 -5.17809e-11 5.88076e-10) (-2.58538e-10 1.09155e-10 1.12536e-10) (-1.19759e-10 1.97418e-10 -1.6194e-10) (-2.23885e-09 5.15627e-10 -1.33119e-09) (-9.44451e-09 -5.08617e-10 -2.4624e-09) (-7.02433e-09 -9.43725e-10 -7.0685e-10) (-1.2463e-09 -1.09445e-10 1.22803e-10) (-7.75308e-10 1.41604e-10 1.5101e-10) (-1.14433e-11 1.32887e-10 -1.83984e-10) (2.93791e-10 5.14721e-10 -2.25015e-09) (-1.25881e-09 2.1775e-10 -3.50913e-09) (-5.20699e-09 -1.14321e-11 -3.55969e-09) (-6.02625e-09 5.16796e-11 -1.26666e-09) (-1.38928e-09 -8.56537e-11 4.1336e-10) (-1.59432e-11 -2.20085e-10 5.69818e-10) (1.28028e-09 -8.36514e-10 1.35341e-09) (2.38272e-09 -1.10834e-09 1.23352e-09) (1.62508e-09 -5.49709e-10 4.57328e-10) (4.18156e-10 -7.81063e-11 9.68479e-11) (1.17825e-11 2.39418e-12 9.58238e-12) (-4.01225e-11 1.90324e-11 1.6271e-11) (-1.59347e-10 9.76556e-11 3.79618e-11) (-1.20235e-10 2.02271e-10 1.15106e-10) (3.50546e-11 3.18828e-10 3.03119e-10) (2.24292e-10 2.58331e-10 3.90453e-10) (1.90448e-10 6.93638e-11 2.45434e-10) (3.9524e-11 -3.06896e-11 7.46134e-11) (-7.25422e-11 -1.13718e-10 3.37328e-11) (-6.5556e-10 -4.71082e-10 -2.25933e-10) (-9.55329e-10 -5.1116e-10 -8.33256e-10) (-2.21569e-10 -9.88516e-11 -5.31146e-10) (4.30252e-11 1.39008e-11 -6.96433e-11) (1.73357e-10 5.10889e-11 3.7902e-11) (2.26451e-10 5.2975e-11 1.27048e-10) (1.05769e-10 1.0542e-11 5.68045e-11) (8.09519e-11 -2.72783e-12 1.63248e-11) (2.00174e-10 -2.53722e-12 7.1023e-12) (4.04527e-10 -2.54279e-12 5.9989e-11) (3.20487e-10 -2.03418e-11 1.85169e-10) (1.20794e-11 -2.76821e-11 2.96692e-10) (-1.16779e-09 -1.72491e-11 1.08977e-09) (-2.05136e-09 3.29849e-10 9.48989e-10) (-3.81384e-10 2.76632e-10 -4.29063e-11) (-2.78916e-10 2.61754e-10 -4.1952e-10) (-1.34009e-09 -5.76414e-11 -1.0202e-09) (-3.47522e-09 -6.94636e-10 -1.09013e-09) (-3.53518e-09 -3.59805e-10 7.90375e-11) (-4.77345e-09 5.14171e-10 7.15113e-10) (-5.95109e-10 3.01984e-10 -7.79345e-11) (2.04403e-10 5.06935e-10 -1.53224e-09) (-2.98346e-10 4.83262e-10 -4.19444e-09) (-4.32088e-09 2.37274e-10 -4.56763e-09) (-8.7788e-09 1.29038e-10 -3.13305e-09) (-3.09468e-09 -2.08109e-10 2.61976e-11) (-1.37803e-10 -2.01068e-10 3.54371e-10) (1.22484e-09 -8.98121e-10 1.38845e-09) (2.50134e-09 -1.19494e-09 1.53111e-09) (1.54819e-09 -5.3299e-10 5.64439e-10) (4.72706e-10 -9.70285e-11 1.47113e-10) (5.04645e-11 -4.71827e-12 4.53919e-11) (-2.34495e-11 3.65218e-12 2.8204e-11) (-1.96231e-10 6.16029e-11 2.38776e-11) (-2.57947e-10 1.98471e-10 -1.44664e-11) (-7.84485e-11 2.42406e-10 7.35626e-11) (1.73795e-10 3.07086e-10 3.07736e-10) (6.04066e-10 2.64615e-10 6.79966e-10) (5.12221e-10 6.30467e-12 5.79092e-10) (4.85936e-11 -7.74774e-11 1.39178e-10) (-2.75727e-10 -2.13504e-10 3.56301e-12) (-1.36665e-09 -6.18132e-10 -8.11143e-10) (-9.65766e-10 -3.6709e-10 -1.35814e-09) (-5.82501e-11 -4.21712e-11 -4.45743e-10) (4.54349e-11 2.22292e-13 -3.39861e-11) (1.08251e-10 -2.84096e-12 2.58411e-11) (9.57594e-11 -1.16255e-11 2.57141e-11) (6.49998e-11 -8.64318e-12 -2.18939e-12) (9.85425e-11 9.27852e-13 -1.46351e-11) (2.31213e-10 1.3449e-11 3.37866e-11) (4.93655e-10 1.45534e-11 3.06853e-10) (4.04979e-10 2.3431e-11 6.91678e-10) (-3.11614e-10 1.00023e-10 9.78851e-10) (-2.19121e-09 4.079e-10 1.54098e-09) (-1.7107e-09 5.20943e-10 4.87995e-10) (-1.50891e-10 1.12327e-10 -9.19251e-11) (-1.96625e-11 1.11968e-11 -3.19698e-10) (-4.00574e-10 -1.50998e-10 -5.99683e-10) (-2.88969e-09 -1.91797e-10 -5.39797e-10) (-6.19906e-09 1.0141e-09 7.3438e-11) (-5.00653e-09 1.08612e-09 5.56716e-10) (-4.04929e-10 2.64184e-10 -5.2601e-10) (2.90693e-11 5.81355e-10 -3.52804e-09) (-1.88146e-09 5.5629e-10 -4.71694e-09) (-4.55092e-09 2.50616e-10 -3.45278e-09) (-2.01551e-09 -2.73309e-10 -5.25899e-10) (-7.14079e-11 -1.93166e-10 1.8883e-10) (1.22633e-09 -9.49495e-10 1.40401e-09) (1.82339e-09 -9.11798e-10 1.49883e-09) (6.37106e-10 -2.404e-10 4.29159e-10) (1.50055e-10 -3.62963e-11 9.89874e-11) (5.10589e-11 -1.64374e-11 7.3297e-11) (-1.25711e-11 -1.41812e-11 5.97051e-11) (-1.25901e-10 1.0428e-11 2.95125e-11) (-3.80706e-10 1.82942e-10 -1.4049e-10) (-2.6462e-10 3.06142e-10 -1.74413e-10) (-1.79818e-12 1.55986e-10 1.37145e-11) (3.67427e-10 2.48799e-10 3.78512e-10) (1.14163e-09 1.76842e-10 1.24954e-09) (5.64836e-10 -7.92273e-11 8.77357e-10) (-5.56363e-11 -6.5684e-11 1.29194e-10) (-9.00243e-10 -2.97109e-10 -2.55978e-10) (-1.69852e-09 -5.31598e-10 -1.67593e-09) (-4.09776e-10 -2.74155e-10 -1.39269e-09) (1.19226e-10 -9.45408e-11 -3.15928e-10) (1.37789e-10 -5.73805e-11 -3.44696e-11) (1.3267e-10 -5.2091e-11 2.74156e-11) (6.45199e-11 -1.91475e-11 9.37772e-12) (4.44613e-11 2.50098e-13 -4.48721e-12) (8.54081e-11 1.27077e-11 7.41409e-12) (2.66387e-10 2.25591e-11 1.57789e-10) (5.30882e-10 6.37455e-11 6.17169e-10) (2.12662e-10 1.80602e-10 8.08937e-10) (-5.23402e-10 3.23943e-10 8.89192e-10) (-1.26408e-09 3.70365e-10 8.03122e-10) (-2.71915e-10 5.02954e-11 9.81536e-11) (1.07683e-11 -6.19347e-12 -3.04506e-11) (1.22702e-10 -2.18225e-11 -4.17974e-10) (-6.41808e-10 1.32103e-10 -5.62967e-10) (-1.9449e-09 1.04488e-09 -4.86146e-10) (-7.13365e-09 1.56675e-09 6.95259e-10) (-2.23141e-09 2.83049e-10 -3.061e-10) (-3.84839e-10 1.71906e-10 -1.47129e-09) (-2.02972e-10 5.68945e-10 -4.18357e-09) (-6.95397e-10 2.93527e-10 -2.89808e-09) (-1.31167e-10 -1.21073e-10 -4.63063e-10) (2.30189e-10 -2.71217e-10 2.46589e-11) (1.47295e-09 -9.22286e-10 9.77752e-10) (8.4263e-10 -4.49727e-10 1.00684e-09) (2.69105e-11 -4.73113e-11 3.07846e-10) (-8.04034e-11 -3.0805e-12 1.68116e-10) (-4.62666e-11 -3.47812e-11 1.86547e-10) (-2.60853e-11 -7.31975e-11 1.96365e-10) (-4.80813e-11 -1.86591e-11 4.35745e-11) (-1.80067e-10 6.12195e-11 -8.4529e-11) (-3.2041e-10 2.91732e-10 -4.1224e-10) (-8.54366e-11 2.31939e-10 -2.42032e-10) (4.07331e-11 6.94757e-11 6.25003e-12) (5.16e-10 1.79928e-10 5.96047e-10) (9.67597e-10 9.37005e-11 1.66053e-09) (1.1385e-10 -5.72288e-12 7.86315e-10) (-2.70862e-10 -2.44927e-11 9.6482e-11) (-1.17975e-09 -2.19777e-10 -8.52871e-10) (-7.38414e-10 -4.98096e-10 -1.94641e-09) (2.79261e-10 -4.22435e-10 -1.06089e-09) (3.63511e-10 -2.41024e-10 -2.47692e-10) (1.82151e-10 -1.08114e-10 -1.85019e-12) (3.54956e-11 -2.01639e-11 8.80867e-12) (5.96095e-12 -5.79574e-13 6.75998e-13) (2.16073e-11 5.16988e-12 6.36527e-12) (1.32471e-10 9.4161e-12 9.70331e-11) (3.69107e-10 3.35133e-11 4.04116e-10) (3.70554e-10 1.67415e-10 5.68491e-10) (7.88348e-11 2.41899e-10 4.35432e-10) (-1.78884e-10 1.66444e-10 3.37233e-10) (-2.04171e-10 -1.12267e-11 1.98901e-10) (-2.3304e-11 -2.8479e-11 1.28928e-11) (4.53944e-11 -6.69801e-12 -9.58924e-11) (2.61882e-13 2.74437e-10 -4.40039e-10) (-1.67953e-10 1.07027e-09 -5.94704e-10) (-1.81429e-09 1.06232e-09 -9.55357e-11) (-2.42482e-09 1.43349e-10 8.2272e-12) (-5.6876e-10 -1.20988e-10 -4.69065e-10) (2.44942e-11 1.89571e-11 -1.79607e-09) (8.59611e-10 5.59688e-11 -2.82061e-09) (1.54593e-09 -5.45623e-10 -1.85023e-09) (2.90748e-09 -1.36118e-09 -9.26262e-10) (2.64077e-09 -9.75156e-10 2.07912e-10) (4.14042e-10 -3.55208e-11 2.56657e-10) (-2.14524e-10 1.35421e-10 2.8615e-10) (-1.45926e-09 2.77712e-10 9.16416e-10) (-1.02059e-09 -1.32944e-10 9.81311e-10) (-2.72442e-10 -2.77841e-10 6.80846e-10) (-3.27128e-11 -8.9185e-11 1.78446e-10) (-5.89204e-12 1.12908e-12 -5.24263e-13) (-9.83053e-11 1.03454e-10 -1.71143e-10) (-9.15672e-11 1.84415e-10 -3.12603e-10) (8.08896e-12 5.59076e-11 -6.00131e-11) (7.87948e-11 4.34393e-11 7.11597e-11) (4.77416e-10 1.26159e-10 8.9065e-10) (2.55929e-10 2.02317e-10 1.26576e-09) (-2.05897e-10 1.44041e-10 3.80591e-10) (-4.69285e-10 6.74224e-11 -1.37672e-10) (-6.87281e-10 -2.94695e-10 -1.18492e-09) (1.04077e-10 -6.47091e-10 -1.32389e-09) (4.63193e-10 -4.93649e-10 -5.4409e-10) (2.39449e-10 -1.92373e-10 -1.01048e-10) (2.96365e-11 -2.33652e-11 -9.54531e-12) (3.3168e-13 -2.46763e-13 -6.04017e-13) (4.90973e-13 3.61305e-13 4.62556e-13) (4.63471e-11 -8.35199e-13 6.22818e-11) (2.21471e-10 -1.48008e-11 3.32141e-10) (2.57919e-10 7.95744e-11 3.91991e-10) (1.76617e-10 1.95874e-10 2.74046e-10) (3.92949e-11 1.28464e-10 1.6912e-10) (-7.26591e-11 -6.24294e-12 1.54852e-10) (-1.81125e-10 -1.53595e-10 1.47237e-10) (-1.49012e-11 -1.38969e-11 -1.0876e-11) (1.38929e-10 3.34622e-10 -3.88513e-10) (7.07246e-10 1.78571e-09 -1.18535e-09) (1.28562e-11 9.4131e-10 -4.63517e-10) (-1.86696e-10 6.14596e-11 -5.40395e-11) (-2.52204e-10 -1.63595e-10 -9.44167e-11) (-3.71593e-11 -1.435e-10 -1.91634e-10) (4.49745e-10 -2.8217e-10 -5.99709e-10) (1.8491e-09 -9.59423e-10 -1.15401e-09) (2.62851e-09 -1.44606e-09 -1.13759e-09) (1.16016e-09 -4.50464e-10 -5.1118e-10) (1.27499e-10 7.70074e-11 -9.12543e-11) (-2.08841e-10 3.93523e-10 -2.74569e-11) (-1.29323e-09 7.06701e-10 4.01607e-10) (-1.26587e-09 -2.34736e-13 8.85002e-10) (-4.01547e-10 -4.57286e-10 9.01156e-10) (1.03676e-10 -3.33903e-10 5.85884e-10) (6.54989e-11 -2.8656e-11 9.1747e-11) (9.67115e-12 1.26332e-11 -1.00544e-11) (-5.13742e-12 7.26793e-11 -1.52916e-10) (-1.72547e-11 3.88005e-11 -1.29801e-10) (3.22821e-13 4.46752e-13 -1.07856e-12) (7.84435e-11 1.88844e-11 1.90671e-10) (1.9645e-10 2.9152e-10 1.05041e-09) (-2.06846e-10 6.16916e-10 1.06477e-09) (-4.02414e-10 3.26255e-10 2.14286e-10) (-4.22367e-10 4.53138e-12 -2.52668e-10) (-3.63295e-10 -4.81387e-10 -7.49971e-10) (2.9692e-11 -6.37628e-10 -6.95003e-10) (1.37873e-10 -3.46869e-10 -3.43119e-10) (4.92918e-11 -7.99883e-11 -1.03968e-10) (5.37759e-12 -3.93946e-12 -1.70046e-11) (2.50488e-13 3.84958e-13 -1.14985e-13) (1.68366e-11 5.55055e-13 4.47658e-11) (1.03327e-10 -3.66818e-11 2.97399e-10) (9.60518e-11 4.84942e-12 2.92092e-10) (4.91955e-11 8.55327e-11 1.37473e-10) (3.06674e-11 1.11438e-10 1.09064e-10) (-2.37774e-11 1.90177e-11 1.26889e-10) (-1.83084e-10 -1.74917e-10 2.53021e-10) (-6.86328e-11 -6.05179e-11 2.87499e-11) (4.96535e-11 1.50665e-10 -1.64606e-10) (6.25055e-10 1.15994e-09 -8.96131e-10) (1.26479e-09 1.76231e-09 -1.49303e-09) (2.65234e-10 1.95489e-10 -3.22224e-10) (1.78439e-11 -5.98658e-11 -3.12309e-11) (1.79885e-11 -2.51975e-10 4.37829e-11) (2.15084e-10 -3.83716e-10 1.0155e-10) (5.8394e-10 -5.76173e-10 -2.83832e-11) (3.82376e-10 -4.01569e-10 -2.65799e-10) (5.3589e-13 -6.62923e-11 -2.85635e-10) (-4.26158e-10 4.03295e-10 -6.24529e-10) (-9.51135e-10 1.171e-09 -7.07457e-10) (-5.76109e-10 5.92963e-10 -1.44227e-10) (-4.91419e-11 6.67202e-12 4.17788e-11) (1.70249e-10 -3.62801e-10 4.30808e-10) (7.27491e-10 -7.13365e-10 9.57208e-10) (5.16904e-10 -1.89872e-10 5.20624e-10) (1.58327e-10 3.73101e-11 6.97399e-11) (7.56331e-11 5.2404e-11 -6.39283e-11) (3.30856e-11 3.43514e-11 -1.54219e-10) (-5.79172e-12 -6.54618e-12 -3.17032e-11) (-4.25537e-12 -8.95117e-12 2.39401e-11) (-1.61241e-12 1.52913e-10 5.66031e-10) (-1.98095e-10 1.04832e-09 1.52557e-09) (-6.18092e-10 1.1523e-09 9.96005e-10) (-4.65261e-10 2.81246e-10 8.56398e-11) (-5.0265e-10 -1.53119e-10 -3.0981e-10) (-6.99023e-10 -8.13957e-10 -1.03237e-09) (-3.99337e-10 -9.67014e-10 -1.18314e-09) (-6.68033e-11 -4.03637e-10 -5.02188e-10) (4.49168e-12 -3.86617e-11 -6.1351e-11) (1.31379e-12 7.64119e-13 -8.89027e-14) (2.36236e-11 1.4905e-11 5.44221e-11) (6.43291e-11 -2.93611e-12 2.7106e-10) (1.17334e-11 -7.31324e-12 2.43114e-10) (-2.11533e-11 2.7276e-11 6.32729e-11) (-1.40752e-11 4.42166e-11 2.91124e-11) (4.81116e-12 1.8793e-11 4.74996e-11) (-1.31939e-12 -8.99439e-11 2.0052e-10) (-3.60724e-11 -9.3283e-11 1.24033e-10) (4.37884e-12 1.44994e-11 -9.16476e-12) (1.08408e-10 1.70003e-10 -1.33322e-10) (8.27325e-10 7.7943e-10 -1.02826e-09) (8.7503e-10 3.28222e-10 -9.40563e-10) (2.53888e-10 -1.19109e-10 -2.01366e-10) (1.13799e-10 -3.03299e-10 4.97357e-11) (4.39048e-11 -6.04734e-10 3.05508e-10) (-6.76808e-11 -4.13192e-10 1.61185e-10) (-1.48159e-10 -1.52252e-10 -5.15629e-11) (-6.43006e-10 3.75142e-11 -4.778e-10) (-1.53139e-09 9.03854e-10 -1.21101e-09) (-1.15425e-09 1.23303e-09 -9.37217e-10) (-9.93425e-11 2.51534e-10 -1.4132e-10) (8.79009e-11 -1.70582e-11 1.30723e-11) (9.23774e-10 -6.39145e-10 4.49302e-10) (1.07886e-09 -7.70224e-10 7.74851e-10) (4.44686e-10 -1.75092e-10 3.86132e-10) (1.37672e-10 2.70464e-11 7.56816e-11) (8.55662e-11 4.44028e-11 -3.23309e-11) (7.26084e-11 2.59022e-11 -1.16499e-10) (8.90092e-12 -1.59839e-11 -4.47115e-11) (-1.44471e-11 -2.32758e-11 1.65243e-11) (-1.56702e-10 4.80677e-11 3.84067e-10) (-5.50763e-10 1.07962e-09 1.4167e-09) (-1.07279e-09 2.23243e-09 1.5999e-09) (-1.06949e-09 1.11951e-09 3.93479e-10) (-9.31816e-10 1.26923e-10 -3.53341e-10) (-1.24263e-09 -8.41379e-10 -1.35223e-09) (-7.65783e-10 -1.56587e-09 -1.76021e-09) (-1.76995e-10 -9.37861e-10 -8.54871e-10) (-2.88613e-11 -1.43334e-10 -1.23843e-10) (-1.89295e-13 -1.15758e-13 -1.67601e-13) (1.72921e-11 2.66898e-11 4.94209e-11) (8.6597e-11 5.35979e-11 2.51597e-10) (3.35554e-11 2.55356e-11 2.2858e-10) (-2.14804e-11 1.50884e-11 4.17137e-11) (-1.38439e-11 1.40291e-11 -4.37313e-14) (5.22345e-12 4.15384e-12 1.72789e-12) (1.33835e-10 -4.09306e-11 1.37842e-10) (1.18438e-10 -1.17055e-10 2.87806e-10) (6.42196e-12 1.08303e-14 2.33711e-11) (9.75587e-13 4.51383e-13 1.45198e-14) (6.30367e-11 2.31046e-11 -1.04903e-10) (2.15547e-10 7.5032e-12 -3.09806e-10) (1.75476e-10 -6.61908e-11 -2.00081e-10) (4.36187e-11 -6.66239e-11 -3.88237e-11) (-3.92957e-11 -1.0253e-10 1.26282e-11) (-3.77108e-10 -2.47931e-10 7.94354e-11) (-9.47757e-10 -2.29232e-10 6.29256e-12) (-9.92292e-10 5.78326e-11 -2.78869e-10) (-5.64791e-10 2.9722e-10 -4.63195e-10) (-1.0509e-10 2.77753e-10 -3.54256e-10) (1.21855e-10 7.92786e-11 -1.17995e-10) (5.06928e-10 -1.32137e-10 1.19683e-11) (8.69447e-10 -5.14405e-10 3.44816e-10) (4.12999e-10 -3.11565e-10 3.30566e-10) (7.54016e-11 -3.86338e-11 1.00472e-10) (2.14422e-11 9.39832e-12 1.38913e-11) (7.71318e-11 3.83347e-11 -4.08693e-11) (1.93785e-10 4.41984e-11 -2.0667e-10) (7.69147e-11 -2.53768e-11 -1.20187e-10) (-1.24458e-11 -1.77453e-11 3.39396e-12) (-4.97614e-10 2.34632e-11 4.68633e-10) (-1.8711e-09 1.34303e-09 1.7587e-09) (-2.51516e-09 3.20704e-09 1.86454e-09) (-1.75892e-09 2.26686e-09 4.40977e-10) (-7.06415e-10 4.48831e-10 -2.95789e-10) (-3.86398e-10 -2.83725e-10 -5.86189e-10) (-1.59115e-10 -1.37837e-09 -1.22795e-09) (-4.14916e-14 -1.41788e-09 -9.98817e-10) (-8.07446e-11 -3.63172e-10 -2.54517e-10) (-1.9884e-11 -1.45412e-11 -1.19906e-11) (-2.36718e-12 7.18858e-12 1.14755e-11) (7.16618e-11 5.28812e-11 1.53428e-10) (1.72407e-10 6.64898e-11 2.9703e-10) (7.54898e-11 2.85397e-11 1.18612e-10) (1.66307e-11 5.24782e-12 9.46122e-12) (5.12577e-11 1.26371e-12 -2.49296e-12) (1.85266e-10 -1.51856e-11 5.97175e-11) (1.89806e-10 -3.36436e-11 1.97576e-10) (3.25726e-11 -1.09713e-11 8.56009e-11) (1.9483e-11 -1.63695e-11 1.05661e-11) (1.95249e-11 -3.59165e-11 -1.75642e-11) (3.42331e-11 -5.95734e-11 -6.02777e-11) (2.47165e-11 -4.07883e-11 -6.35104e-11) (-1.28057e-11 -1.72658e-11 -4.1557e-11) (-2.12165e-10 -3.09133e-11 -8.49343e-11) (-1.05208e-09 -7.60657e-11 -8.27155e-11) (-1.36219e-09 -7.04368e-11 7.13067e-11) (-4.47785e-10 -6.60067e-13 4.07089e-11) (-1.02459e-11 3.56791e-12 -3.19981e-12) (7.08559e-11 1.89343e-11 -4.0908e-11) (4.27205e-10 -7.00262e-12 -1.10741e-10) (5.87486e-10 -1.48232e-10 -1.70412e-11) (2.65074e-10 -1.40093e-10 6.26799e-11) (2.50098e-11 -3.10935e-11 2.58257e-11) (-2.74049e-12 -3.52691e-12 6.8985e-12) (-3.52624e-15 1.134e-13 2.97956e-13) (4.45216e-11 8.96258e-12 -2.44448e-11) (3.39278e-10 2.43003e-11 -2.51178e-10) (2.99167e-10 -1.49945e-11 -2.71282e-10) (1.10743e-12 -2.19906e-12 -4.95043e-12) (-7.32034e-10 1.42017e-10 4.2118e-10) (-4.17578e-09 2.09496e-09 2.43715e-09) (-5.06402e-09 4.3343e-09 2.31527e-09) (-2.24225e-09 2.61493e-09 3.02092e-10) (-3.03219e-10 3.11003e-10 -2.03514e-10) (-1.95974e-11 -1.96141e-10 -3.11702e-10) (2.61897e-10 -1.18818e-09 -8.95387e-10) (1.4643e-10 -1.02598e-09 -7.02962e-10) (-6.10064e-11 -2.83309e-10 -2.14758e-10) (-4.06652e-11 -3.94115e-11 -2.92145e-11) (-3.58638e-12 -2.33276e-12 2.36405e-12) (2.46441e-11 2.82267e-14 4.8267e-11) (1.65697e-10 3.75547e-11 2.15503e-10) (2.38366e-10 9.26753e-11 2.58543e-10) (1.77665e-10 6.83079e-11 1.24884e-10) (1.44821e-10 2.78717e-11 4.18105e-11) (1.81888e-10 1.20011e-11 4.44717e-11) (1.91452e-10 8.47601e-12 9.57725e-11) (9.02416e-11 -9.89166e-12 7.11988e-11) (3.16184e-10 -1.13132e-10 3.34252e-11) (2.61845e-10 -1.95869e-10 -4.36577e-11) (1.17181e-10 -1.47348e-10 -7.30256e-11) (-8.66249e-12 -3.36166e-11 -3.7958e-11) (-3.6385e-10 3.45104e-11 -1.52655e-10) (-1.99437e-09 4.1141e-10 -4.03137e-10) (-2.57595e-09 3.61066e-10 -2.41156e-10) (-9.03154e-10 -2.52635e-11 4.15672e-11) (-6.07703e-11 -3.22332e-11 3.17837e-11) (2.78046e-11 -2.43662e-11 2.8414e-11) (1.79049e-10 -4.95979e-11 6.25668e-11) (2.75964e-10 -6.54727e-11 5.48436e-11) (1.5065e-10 -5.46558e-11 1.6026e-11) (1.52175e-11 -1.23768e-11 -1.86072e-12) (-2.89069e-12 -2.512e-12 -1.90857e-12) (-8.66874e-12 -1.91032e-12 -1.62473e-12) (4.4469e-14 -3.18119e-13 5.24253e-14) (5.79747e-11 -1.42558e-11 -1.30018e-11) (3.83756e-10 -4.70649e-11 -1.8408e-10) (4.65379e-10 -7.95246e-12 -3.24138e-10) (2.76085e-11 1.67963e-11 -3.61618e-11) (-6.11569e-10 3.32313e-10 2.27741e-10) (-5.81378e-09 2.92868e-09 2.55172e-09) (-7.79061e-09 4.90542e-09 2.91034e-09) (-2.50402e-09 2.11855e-09 4.80743e-10) (-1.06578e-10 1.26042e-10 -6.20391e-11) (8.34105e-11 -9.22707e-11 -1.41062e-10) (3.72136e-10 -5.57666e-10 -4.27496e-10) (2.30943e-10 -5.18989e-10 -3.69652e-10) (2.93974e-11 -2.18292e-10 -1.67987e-10) (-1.03676e-11 -7.69368e-11 -5.44175e-11) (-1.72719e-12 -2.97016e-11 -7.02526e-12) (5.87565e-12 -1.76343e-11 1.18189e-11) (1.84283e-11 -7.40267e-12 4.70218e-11) (4.02107e-11 3.95073e-11 1.01722e-10) (5.98939e-11 7.3266e-11 9.64936e-11) (6.82893e-11 4.6893e-11 4.59104e-11) (1.15064e-10 3.22919e-11 3.48633e-11) (2.34557e-10 2.47423e-11 6.31728e-11) (3.2972e-10 -2.02695e-11 8.40161e-11) (7.43394e-10 -2.9075e-10 -2.45214e-11) (4.10976e-10 -2.61001e-10 -1.39057e-10) (2.82626e-11 -5.42001e-11 -6.86279e-11) (-3.51629e-10 4.04984e-11 -1.59429e-10) (-2.53584e-09 6.34754e-10 -2.71326e-10) (-3.36989e-09 7.23208e-10 6.78336e-11) (-1.12347e-09 6.75883e-11 1.37964e-10) (-7.74709e-11 -4.12462e-11 2.78687e-11) (1.65401e-11 -4.09048e-11 1.47337e-11) (8.10663e-11 -6.31033e-11 2.3384e-11) (9.26629e-11 -4.94351e-11 2.32519e-11) (4.19718e-11 -2.37728e-11 9.31487e-12) (2.77176e-12 -3.99356e-12 -3.04312e-13) (-8.46257e-12 -3.2923e-12 -4.54904e-12) (-3.93501e-11 -2.2e-12 -1.04574e-11) (-1.59143e-11 -3.07352e-12 4.07446e-12) (9.34621e-12 -1.53336e-11 2.71592e-11) (1.64187e-10 -8.01699e-11 9.14523e-11) (4.07279e-10 -1.19009e-10 -3.13415e-11) (4.85797e-10 -5.43034e-11 -3.17753e-10) (1.24239e-10 7.55908e-11 -2.09593e-10) (-2.60469e-10 3.22435e-10 -4.57133e-11) (-3.57402e-09 2.58004e-09 1.30952e-09) (-7.27736e-09 4.40646e-09 2.98551e-09) (-3.29505e-09 1.80007e-09 1.16904e-09) (-2.05482e-10 7.28513e-11 4.30135e-11) (1.29304e-11 -3.06299e-11 -1.31434e-11) (1.97548e-10 -2.09321e-10 -8.73829e-11) (2.80558e-10 -2.2568e-10 -1.20321e-10) (2.2955e-10 -1.63593e-10 -1.44439e-10) (1.28625e-10 -1.30599e-10 -1.52803e-10) (2.29779e-11 -9.58548e-11 -1.08064e-10) (-3.04977e-11 -4.43728e-11 -4.08938e-11) (-4.40967e-11 -9.92825e-12 -2.86091e-12) (-4.25091e-11 2.06176e-11 2.67734e-11) (-5.48522e-12 4.34012e-11 5.09214e-11) (7.96742e-11 5.77869e-11 7.90343e-11) (2.81458e-10 5.47347e-11 1.25752e-10) (5.47612e-10 -6.26275e-12 1.5122e-10) (7.41812e-10 -1.38458e-10 1.1273e-10) (2.66655e-10 -1.34955e-10 4.13939e-11) (5.2143e-11 -3.14358e-11 -2.59868e-11) (-2.06624e-11 1.49619e-11 -5.0952e-11) (-4.05077e-10 2.74501e-10 -2.44115e-10) (-9.13863e-10 5.36582e-10 -2.50164e-10) (-5.24367e-10 2.13459e-10 -3.42227e-11) (-8.01784e-11 -4.2933e-12 1.74592e-11) (-9.77729e-12 -3.20792e-11 1.57128e-11) (9.98503e-12 -5.52746e-11 1.62175e-11) (6.99157e-12 -3.44747e-11 4.66982e-12) (-7.45535e-13 -1.27471e-11 -1.47948e-12) (-5.78696e-12 -7.1916e-12 -4.63876e-12) (-2.27647e-11 -7.26425e-12 -1.46921e-11) (-5.34472e-11 -2.33879e-12 -2.57477e-11) (-4.94288e-11 2.41607e-13 -7.3454e-12) (-2.40476e-11 -8.46994e-12 2.59294e-11) (3.29966e-11 -8.92193e-11 2.38932e-10) (3.54594e-10 -2.69388e-10 6.33509e-10) (4.4567e-10 -1.93194e-10 3.17104e-10) (2.735e-10 -4.649e-11 -8.88633e-11) (1.63506e-10 1.1112e-10 -4.21507e-10) (-3.21227e-10 4.97638e-10 -5.03562e-10) (-2.07926e-09 1.87386e-09 -5.17958e-12) (-4.22452e-09 3.1378e-09 1.67071e-09) (-2.21471e-09 1.35209e-09 1.32498e-09) (-1.89978e-10 4.60512e-11 1.7681e-10) (2.6538e-11 -6.062e-11 2.17328e-11) (2.68847e-10 -2.95562e-10 -4.00034e-11) (3.74928e-10 -3.136e-10 -1.14691e-10) (2.4453e-10 -1.39658e-10 -1.20358e-10) (1.13663e-10 -3.45176e-11 -1.13667e-10) (2.19309e-11 -2.41061e-12 -1.2854e-10) (-1.03536e-10 9.58104e-12 -1.81007e-10) (-2.25061e-10 2.70802e-11 -1.63669e-10) (-9.18014e-11 2.0703e-11 -3.22559e-11) (-1.07802e-12 1.13416e-12 2.10449e-12) (7.99191e-11 -1.41968e-11 6.86697e-11) (3.66982e-10 -1.1112e-10 2.44303e-10) (5.54838e-10 -1.94704e-10 3.1698e-10) (4.91451e-10 -2.01456e-10 2.11384e-10) (1.9564e-11 -2.50375e-11 1.64607e-11) (1.27272e-12 -8.88198e-13 -1.46154e-12) (-7.98287e-12 3.43992e-11 -4.01007e-11) (-3.66407e-11 1.85148e-10 -1.47743e-10) (-1.68507e-13 1.95801e-10 -1.43134e-10) (2.97524e-11 5.91185e-11 -4.75696e-11) (1.9537e-11 3.01552e-12 -6.86345e-12) (1.29785e-11 -1.26186e-11 3.22921e-12) (-4.38517e-12 -2.65465e-11 9.56556e-12) (-7.02176e-11 -6.01351e-11 1.44169e-11) (-2.18332e-10 -9.29004e-11 -1.1741e-11) (-3.05866e-10 -7.49772e-11 -7.7526e-11) (-2.3576e-10 -2.36827e-11 -1.12688e-10) (-1.15159e-10 7.18337e-12 -7.75106e-11) (-3.00406e-11 3.80584e-12 -1.49592e-11) (-1.01442e-11 -5.31794e-12 1.3438e-11) (8.61604e-12 -1.1872e-10 2.93731e-10) (2.66471e-10 -4.06403e-10 1.11517e-09) (4.75774e-10 -3.2096e-10 1.07403e-09) (1.5663e-10 -2.06825e-11 1.33156e-10) (5.54866e-11 8.25209e-11 -1.28939e-10) (-4.36752e-10 7.87736e-10 -9.62935e-10) (-1.90944e-09 1.8865e-09 -1.03285e-09) (-2.27959e-09 1.84794e-09 2.01134e-10) (-8.71211e-10 6.00086e-10 5.80921e-10) (-6.4934e-11 4.81859e-12 1.96322e-10) (1.1914e-10 -1.53256e-10 1.34487e-10) (3.18883e-10 -3.34292e-10 5.1765e-11) (2.62538e-10 -2.41804e-10 -6.79304e-11) (1.06667e-10 -6.98285e-11 -7.95525e-11) (4.55882e-11 3.15067e-12 -7.41211e-11) (3.16139e-11 4.62748e-11 -1.04902e-10) (7.99797e-12 4.59895e-11 -9.70129e-11) (-6.90214e-12 1.06157e-11 -4.66973e-11) (-4.9475e-12 -5.45569e-12 -1.18063e-11) (-3.26809e-12 -1.38215e-11 -1.29512e-12) (8.51128e-13 -3.56195e-11 1.83626e-11) (1.54378e-11 -6.4845e-11 6.2875e-11) (3.83015e-11 -8.10147e-11 1.0124e-10) (4.56401e-11 -6.71501e-11 7.69289e-11) (2.15253e-12 -3.15487e-11 4.35104e-12) (-1.15107e-12 -4.25645e-12 -2.41697e-12) (-1.92385e-12 8.37055e-12 -8.62609e-12) (2.41186e-11 9.50365e-11 -4.40466e-11) (1.43356e-10 2.29884e-10 -8.30295e-11) (2.59363e-10 2.28702e-10 -7.83635e-11) (2.17758e-10 9.8626e-11 -3.64794e-11) (7.6196e-11 4.31872e-12 -5.09982e-12) (5.07038e-12 -6.62122e-12 3.49735e-13) (-3.86319e-11 -3.51349e-11 -1.59319e-12) (-2.94827e-10 -1.2032e-10 -4.80345e-11) (-6.43309e-10 -1.53583e-10 -1.98982e-10) (-6.4783e-10 -8.62222e-11 -3.30905e-10) (-3.35482e-10 -1.99215e-11 -2.6075e-10) (-7.41306e-11 -1.01309e-11 -7.77941e-11) (-3.99677e-12 -6.71777e-12 -1.83948e-12) (1.31844e-11 -7.86298e-11 9.41948e-11) (1.18158e-10 -2.85676e-10 6.61565e-10) (2.996e-10 -2.42204e-10 1.41967e-09) (3.11947e-10 1.00864e-10 1.01373e-09) (8.16609e-11 1.17496e-10 1.17526e-10) (-1.4267e-11 2.97514e-10 -2.17503e-10) (-6.02754e-10 9.47781e-10 -9.89414e-10) (-1.02774e-09 9.18232e-10 -6.84283e-10) (-4.4154e-10 2.66495e-10 -2.77828e-11) (-4.31784e-11 7.231e-12 4.3235e-11) (3.6045e-11 -4.66752e-11 6.58288e-11) (1.46871e-10 -1.17684e-10 7.81259e-11) (1.26809e-10 -9.26519e-11 2.4824e-11) (4.34727e-11 -3.3224e-11 -3.79824e-12) (9.11296e-12 -7.7769e-12 -5.41443e-12) (3.77425e-12 -3.56132e-12 -5.45106e-12) (4.11784e-12 -4.80828e-12 -7.65329e-12) (2.26941e-12 -6.33735e-12 -8.64496e-12) (-3.52799e-12 -5.64954e-12 -7.75943e-12) (-1.27934e-11 -4.30479e-12 -6.93251e-12) (-1.76978e-11 -2.3478e-12 2.29354e-13) (-1.247e-11 -4.88079e-12 8.77911e-12) (-5.98983e-12 -1.70733e-11 1.77409e-11) (3.07476e-12 -3.93074e-11 2.03637e-11) (-1.21315e-11 -2.00938e-11 -1.21561e-11) (-3.337e-11 -6.97325e-12 -1.5071e-11) (-2.03952e-11 6.90937e-12 -5.50378e-12) (1.20687e-12 6.00234e-12 1.00976e-12) (9.62095e-11 4.49615e-11 2.62705e-11) (4.0583e-10 1.03036e-10 9.36297e-11) (5.51422e-10 9.81624e-11 1.18066e-10) (3.07795e-10 4.19363e-11 6.11566e-11) (4.9515e-11 5.58569e-12 5.6135e-12) (-4.67992e-13 2.10527e-13 -1.53874e-12) (-7.11753e-11 4.384e-12 -5.76808e-11) (-2.84305e-10 1.39235e-11 -2.39661e-10) (-3.93514e-10 -2.74419e-12 -4.03908e-10) (-2.67295e-10 -5.03147e-11 -3.55042e-10) (-9.52354e-11 -7.52659e-11 -1.70506e-10) (-2.31594e-11 -7.26184e-11 -5.16117e-11) (-1.06518e-11 -8.67054e-11 9.37823e-12) (-2.21746e-11 -1.1155e-10 1.23609e-10) (-4.01742e-11 -6.39504e-11 5.01739e-10) (5.59787e-11 3.31822e-10 1.26442e-09) (2.50721e-10 8.28436e-10 1.39011e-09) (1.83535e-10 6.14973e-10 4.76419e-10) (4.45243e-11 2.4114e-10 -1.75974e-11) (-1.77646e-11 1.08995e-10 -1.22975e-10) (-4.28598e-11 1.53917e-11 -8.55534e-11) (-3.7265e-11 -2.03834e-11 -3.33368e-11) (-2.57313e-11 -2.42544e-11 -1.41685e-11) (-9.02796e-12 -1.16694e-11 -9.12109e-12) (-8.17196e-13 -4.05957e-12 -6.78758e-12) (2.2502e-12 -1.486e-12 -3.93542e-12) (3.05781e-12 -9.86131e-13 -9.14615e-13) (2.96791e-12 -1.44937e-12 1.47665e-12) (9.58114e-13 -1.70036e-12 2.14266e-12) (-1.74042e-12 -1.79582e-12 1.58092e-12) (-1.19973e-11 -3.50659e-12 1.68671e-12) (-2.63192e-11 -4.15711e-12 2.584e-12) (-1.65723e-11 -5.42335e-12 3.59267e-12) (-3.48348e-12 -7.53088e-12 2.27387e-12) (4.93872e-12 -2.43962e-11 2.13509e-14) (4.30271e-12 -3.39613e-11 -8.52081e-12) (-7.25385e-10 -4.1129e-11 -2.43077e-10) (-8.91366e-10 8.65312e-11 -2.93231e-10) (-2.29264e-10 4.73967e-11 -8.42831e-11) (9.59727e-13 1.57383e-12 1.25151e-13) (3.25406e-10 4.55082e-11 1.2229e-10) (1.54557e-09 1.63056e-10 6.16278e-10) (2.44106e-09 2.50143e-10 1.00134e-09) (1.93535e-09 1.78655e-10 8.13468e-10) (8.63999e-10 6.31565e-11 3.57511e-10) (2.00849e-10 1.64113e-11 6.19826e-11) (1.76402e-11 5.1483e-12 -5.20355e-12) (-3.65436e-12 1.24682e-11 -3.72557e-11) (-6.6242e-11 2.01903e-11 -1.47149e-10) (-1.41697e-10 -4.25046e-11 -2.60335e-10) (-1.62225e-10 -1.72398e-10 -3.10824e-10) (-1.43343e-10 -2.6543e-10 -2.66295e-10) (-1.29681e-10 -2.073e-10 -1.21359e-10) (-1.35086e-10 -1.00633e-10 1.0588e-11) (-2.27394e-10 -2.19227e-11 2.11564e-10) (-2.81201e-10 2.42077e-10 8.12952e-10) (9.13035e-11 7.33376e-10 1.59119e-09) (5.08029e-10 8.65667e-10 1.41223e-09) (3.21652e-10 3.9962e-10 4.44975e-10) (4.73165e-11 5.04995e-11 1.47916e-11) (1.64759e-12 2.85629e-12 -3.08216e-11) (-7.57206e-11 -5.10995e-11 -1.71904e-10) (-1.85286e-10 -1.13942e-10 -2.99563e-10) (-1.71182e-10 -9.79999e-11 -2.82602e-10) (-8.55915e-11 -4.64355e-11 -1.82053e-10) (-3.09318e-11 -1.13749e-11 -9.15018e-11) (-1.35473e-11 2.06153e-12 -3.53805e-11) (-1.07226e-11 3.85477e-12 -9.7579e-12) (-1.85899e-11 4.79815e-12 1.61177e-12) (-3.25882e-11 3.72208e-12 2.32001e-11) (-2.28273e-11 -3.70582e-12 3.75228e-11) (8.38228e-13 -1.11822e-11 2.69836e-11) (2.51215e-11 -2.87985e-11 1.97828e-11) (4.33031e-11 -6.03335e-11 6.18321e-13) (7.03839e-13 -5.33008e-11 -1.86757e-11) (-1.48696e-10 -7.71573e-11 -7.1244e-11) (6.22839e-12 4.68595e-13 -2.84798e-12) (-5.08378e-12 1.61751e-12 -1.71147e-11) (-7.79255e-11 3.97831e-12 -8.88276e-11) (-1.37923e-10 -1.64981e-13 -1.35817e-10) (-4.91082e-11 -1.91935e-12 -6.54318e-11) (6.82654e-13 1.04426e-13 -6.98951e-12) (1.29036e-11 7.63171e-13 1.92529e-12) (3.2599e-11 1.96199e-12 2.57175e-11) (1.21735e-11 1.37641e-12 2.58709e-11) (-8.78016e-12 1.72421e-13 1.32224e-11) (-3.83695e-11 -6.10648e-13 3.49724e-12) (-3.60167e-11 -1.46378e-12 -9.37618e-12) (-7.82952e-12 -4.92965e-13 -3.60539e-12) (-7.16606e-13 -4.11014e-14 -2.65355e-13) (-5.68784e-14 -6.18729e-16 1.22816e-14) (4.82869e-14 1.78498e-15 4.7073e-14) (2.82166e-12 -2.82358e-14 1.25124e-12) (1.99351e-11 -1.28952e-13 7.52502e-12) (5.87286e-11 1.80086e-13 2.23638e-11) (1.04435e-10 1.30424e-12 4.37538e-11) (1.39456e-10 2.60632e-12 6.43661e-11) (1.61681e-10 3.67577e-12 7.90173e-11) (1.59815e-10 4.27491e-12 8.21649e-11) (1.09333e-10 3.76862e-12 6.29718e-11) (3.50822e-11 1.64985e-12 2.38099e-11) (2.73071e-12 1.99969e-13 2.25453e-12) (-6.78835e-13 3.70993e-15 -2.19851e-13) (4.97549e-13 -1.85489e-15 -1.70988e-13) (7.75397e-12 4.13784e-14 3.43324e-13) (1.78764e-11 5.52148e-13 4.04614e-12) (5.17442e-12 5.44949e-13 3.44728e-12) (-1.15297e-11 1.14599e-12 8.99034e-12) (-9.02143e-11 1.77367e-12 4.77359e-11) (-6.63839e-11 -2.81508e-12 5.0526e-11) (-2.83542e-12 -1.15069e-12 1.83224e-11) (1.60681e-11 -7.88429e-13 1.6353e-11) (1.83991e-11 -2.22788e-13 8.39059e-12) (1.22478e-11 -1.40125e-13 3.27512e-12) (1.33135e-11 -1.65163e-13 3.05885e-12) (1.52231e-11 2.38151e-13 1.59073e-12) (2.47189e-10 1.97304e-11 -1.88994e-10) (1.93997e-10 2.74845e-11 -3.12223e-10) (2.22824e-11 1.23502e-11 -3.18213e-10) (-1.54348e-10 -3.92181e-12 -2.68583e-10) (-1.94197e-10 -2.51569e-12 -1.23841e-10) (-3.56209e-11 2.85639e-12 1.14669e-11) (7.71227e-11 1.34244e-11 1.88827e-10) (7.11781e-10 2.36271e-11 7.49631e-10) (7.41164e-10 1.13129e-12 5.72545e-10) (1.6039e-10 -1.20667e-11 1.03355e-10) (-7.16266e-12 -1.55871e-12 -1.70159e-12) (-1.76181e-10 -1.31095e-11 -7.54321e-11) (-1.80495e-10 -2.08466e-12 -6.58151e-11) (-2.9279e-11 2.2941e-12 -5.08857e-12) (-7.19203e-13 2.60265e-13 2.84701e-13) (3.16437e-12 5.04534e-13 1.38168e-12) (5.46187e-11 1.94487e-12 1.63769e-11) (2.89782e-10 2.86248e-12 8.79277e-11) (8.17171e-10 8.87391e-12 2.49784e-10) (1.55786e-09 2.71412e-11 4.67106e-10) (2.24785e-09 5.029e-11 6.33268e-10) (2.73565e-09 7.25326e-11 7.05579e-10) (2.90432e-09 9.43193e-11 7.3487e-10) (2.47192e-09 1.10343e-10 6.99546e-10) (1.38756e-09 8.48545e-11 4.33553e-10) (3.9753e-10 2.83127e-11 1.00288e-10) (7.25454e-11 3.55523e-12 1.70595e-13) (4.77419e-11 -9.4742e-15 -8.66782e-12) (1.55953e-10 2.38606e-12 1.01245e-11) (4.60067e-10 2.51409e-11 1.3563e-10) (5.51162e-10 4.74466e-11 2.47146e-10) (2.03713e-10 1.94253e-11 1.4017e-10) (-5.80915e-12 -3.25496e-12 4.40936e-11) (-1.51331e-10 -2.94159e-11 8.47158e-11) (-5.63955e-11 -1.06403e-11 3.28353e-11) (1.81136e-12 -9.92016e-14 6.35417e-13) (2.54277e-11 1.32179e-12 -1.26615e-11) (5.1799e-11 -3.67786e-13 -2.82667e-11) (8.52526e-11 -1.51012e-12 -3.30232e-11) (1.71302e-10 4.90873e-12 -7.37304e-11) (4.16199e-10 2.85363e-11 -2.69027e-10) (4.53129e-10 3.39399e-11 -4.37779e-10) (1.95956e-10 4.82562e-12 -3.22741e-10) (-2.3039e-11 -3.90493e-12 -1.45782e-10) (-2.39669e-10 1.41903e-11 -1.29803e-10) (-2.83085e-10 3.84965e-11 4.36622e-11) (-3.28866e-11 2.72479e-11 2.65296e-10) (9.69935e-10 -1.47722e-11 1.19908e-09) (1.92771e-09 -1.30113e-10 1.23203e-09) (1.07463e-09 -1.32306e-10 3.99187e-10) (1.44545e-10 -3.0067e-11 9.69978e-12) (-1.42221e-11 -4.12106e-12 -1.40873e-11) (-2.58889e-10 4.15556e-12 -9.95647e-11) (-1.43803e-10 1.55548e-11 -3.07219e-11) (-7.42091e-12 2.68356e-12 4.37422e-13) (1.37965e-12 7.76118e-13 5.57473e-13) (3.95104e-11 4.62772e-12 6.61179e-12) (2.0682e-10 7.49996e-12 4.16933e-11) (6.12048e-10 1.05745e-11 1.52552e-10) (1.17405e-09 2.21466e-11 3.04133e-10) (1.67549e-09 3.83871e-11 3.8772e-10) (1.99955e-09 5.66907e-11 3.63143e-10) (2.1165e-09 7.82605e-11 3.18064e-10) (1.92601e-09 1.1141e-10 3.37943e-10) (1.352e-09 1.22346e-10 3.11276e-10) (6.13596e-10 7.45297e-11 1.33797e-10) (1.68033e-10 2.14734e-11 2.14878e-12) (6.71825e-11 5.37756e-12 -2.10049e-11) (1.21851e-10 6.8938e-12 -1.40049e-11) (4.64016e-10 4.17073e-11 1.11398e-10) (1.02925e-09 1.14776e-10 4.24546e-10) (9.9124e-10 9.54224e-11 4.5357e-10) (2.43139e-10 5.58805e-13 1.24978e-10) (-1.21889e-11 -7.05018e-12 1.01571e-11) (-2.68774e-10 -3.59591e-11 2.75658e-11) (-6.17703e-11 2.43545e-12 -1.4719e-11) (7.06199e-12 5.03569e-12 -2.77029e-11) (7.26775e-11 2.18233e-12 -7.49048e-11) (1.29511e-10 -5.0615e-12 -7.28995e-11) (2.49284e-10 1.57669e-12 -1.13138e-10) (1.82627e-10 1.62541e-11 -1.55392e-10) (1.99175e-10 1.97567e-11 -2.8857e-10) (3.83742e-11 -2.47062e-12 -2.12421e-10) (-1.78058e-10 -1.01874e-11 -1.90802e-10) (-1.1946e-09 6.5074e-11 -3.50943e-10) (-1.84125e-09 2.12634e-10 2.85202e-11) (-4.7918e-10 6.50527e-11 3.99082e-10) (3.27771e-10 -5.99054e-11 8.92503e-10) (1.55871e-09 -2.75506e-10 1.3407e-09) (9.67868e-10 -2.19561e-10 4.79863e-10) (1.41358e-10 -4.29445e-11 3.06102e-11) (-6.98254e-12 -2.00783e-12 -4.90051e-12) (-4.49834e-10 2.74705e-11 -1.22362e-10) (-6.04547e-10 6.61423e-11 -1.06732e-10) (-1.09142e-10 2.26777e-11 -8.04262e-12) (-2.18947e-12 1.71233e-12 2.11505e-13) (3.14192e-12 1.47916e-12 1.71541e-13) (3.86077e-11 4.3636e-12 3.41318e-12) (1.3739e-10 3.51625e-12 2.9606e-11) (2.95748e-10 2.69539e-12 8.47745e-11) (4.29901e-10 6.53909e-12 1.1302e-10) (4.6674e-10 1.49081e-11 8.13575e-11) (4.20562e-10 2.2976e-11 4.08386e-11) (3.07784e-10 3.3558e-11 4.07843e-11) (1.54126e-10 3.38739e-11 4.5654e-11) (3.1094e-11 1.437e-11 1.50094e-11) (-6.17302e-14 1.27495e-12 -4.19899e-13) (-1.42587e-11 3.50088e-12 -1.78475e-11) (-5.21753e-12 1.12202e-12 -1.27291e-11) (1.20055e-11 3.099e-12 1.3789e-12) (1.94485e-10 4.19773e-11 1.21147e-10) (3.07279e-10 5.43959e-11 2.20455e-10) (5.77788e-11 3.36376e-12 4.85182e-11) (-8.24011e-11 -1.7227e-11 7.75869e-12) (-1.79861e-09 -1.52018e-10 -1.19627e-10) (-1.42037e-09 9.94231e-12 -2.50071e-10) (-1.01028e-10 1.98051e-11 -1.02793e-10) (3.0237e-11 3.72547e-12 -8.28563e-11) (7.1067e-11 -6.30036e-12 -6.3154e-11) (1.09221e-10 -2.92588e-12 -6.52364e-11) (1.43628e-10 9.69512e-12 -1.37063e-10) (1.81963e-10 1.82704e-11 -3.36176e-10) (-5.75499e-13 -9.20993e-12 -3.05403e-10) (-4.95669e-10 -2.47937e-11 -3.78182e-10) (-3.31143e-09 1.69439e-10 -8.14571e-10) (-6.14039e-09 6.51182e-10 -4.00827e-10) (-2.51793e-09 2.40419e-10 6.80265e-10) (-1.62083e-10 -7.9082e-11 6.40409e-10) (1.06164e-09 -4.19327e-10 1.35833e-09) (1.3347e-09 -4.59209e-10 9.06387e-10) (2.95991e-10 -1.00826e-10 1.48768e-10) (-1.87003e-12 -1.88609e-13 6.788e-13) (-6.78596e-10 9.03126e-11 -7.7461e-11) (-1.80877e-09 2.13347e-10 -2.15702e-10) (-7.61848e-10 9.85218e-11 -8.42016e-11) (-7.89669e-11 1.94965e-11 -9.27094e-12) (-1.13349e-12 1.33813e-12 -5.69451e-13) (4.0255e-12 1.72287e-12 -8.18288e-13) (2.95383e-11 2.21434e-12 2.23086e-12) (8.53411e-11 -1.7692e-12 2.41887e-11) (1.75227e-10 -6.89645e-12 5.43637e-11) (2.56794e-10 -2.65321e-12 5.36446e-11) (2.81456e-10 9.52203e-12 3.23118e-11) (2.13124e-10 2.72074e-11 3.80693e-11) (8.29169e-11 2.68136e-11 4.33098e-11) (5.79676e-12 1.30549e-11 1.88583e-11) (-3.36794e-11 1.44935e-11 6.59973e-12) (-2.03473e-10 2.3574e-11 -7.59047e-11) (-2.31795e-10 6.24143e-12 -1.41361e-10) (-1.93525e-11 2.61415e-12 -1.21669e-11) (1.21624e-11 7.83392e-12 1.93345e-11) (9.82417e-11 3.376e-11 1.49305e-10) (1.51785e-11 5.64496e-12 5.41752e-11) (-2.68215e-10 -2.54974e-11 2.18022e-11) (-4.65705e-09 -2.76409e-10 -4.66882e-10) (-6.98902e-09 -8.99383e-11 -1.02468e-09) (-1.14309e-09 5.92333e-11 -4.77831e-10) (-1.7163e-11 2.61638e-12 -9.99309e-11) (5.56017e-11 -9.05836e-12 -6.35888e-11) (8.36015e-11 -7.21412e-12 -5.49144e-11) (3.20159e-10 4.86897e-12 -2.16536e-10) (4.71523e-10 2.59437e-11 -5.82621e-10) (1.60895e-10 -1.90475e-11 -5.3619e-10) (-3.46324e-10 -2.49152e-11 -3.90454e-10) (-3.78648e-09 2.29155e-10 -1.0363e-09) (-1.0183e-08 1.18293e-09 -1.23498e-09) (-6.54031e-09 6.72583e-10 3.8339e-10) (-8.0979e-10 -1.05633e-10 5.99172e-10) (3.23165e-10 -3.88323e-10 8.15072e-10) (1.45283e-09 -7.82623e-10 1.18481e-09) (1.04918e-09 -3.86539e-10 6.36016e-10) (1.11107e-10 -1.04324e-11 1.04873e-10) (-1.84501e-10 6.46616e-11 5.69636e-11) (-2.03898e-09 3.4018e-10 -2.37088e-11) (-2.04223e-09 2.19938e-10 -1.87197e-10) (-4.85722e-10 6.84838e-11 -8.29343e-11) (-3.3339e-11 1.23969e-11 -1.28918e-11) (5.33981e-13 2.16853e-12 -1.99776e-12) (1.56087e-11 4.42442e-12 -4.48549e-12) (3.58093e-11 6.66149e-13 -1.75943e-12) (6.39121e-11 -8.20189e-12 7.09676e-12) (1.41126e-10 -1.84283e-11 1.65805e-11) (2.97331e-10 -2.01822e-11 2.5025e-11) (5.09764e-10 2.31154e-11 9.86924e-11) (5.52154e-10 1.03467e-10 2.40571e-10) (2.10941e-10 9.66899e-11 1.95875e-10) (-1.60017e-12 2.72277e-11 4.03446e-11) (-8.86528e-11 2.55082e-11 -6.57865e-12) (-2.84321e-10 2.03072e-11 -1.53717e-10) (-1.17797e-10 5.50708e-12 -8.36719e-11) (-1.13115e-13 7.49654e-13 9.01279e-13) (8.45965e-11 3.06695e-11 1.45407e-10) (6.83396e-11 2.53094e-11 1.9072e-10) (-1.00454e-10 3.99435e-12 5.90922e-11) (-3.90445e-09 -8.96856e-11 -3.06986e-10) (-1.31778e-08 -2.26968e-10 -1.85567e-09) (-5.2057e-09 -2.12277e-11 -1.39219e-09) (-1.83257e-10 -9.70397e-12 -2.01149e-10) (6.1994e-11 -1.31519e-11 -7.1287e-11) (1.73959e-10 -1.71022e-11 -8.36952e-11) (7.40055e-10 -7.03283e-12 -3.8886e-10) (1.23512e-09 3.07005e-11 -1.1057e-09) (6.55599e-10 -2.73783e-11 -1.06837e-09) (-1.47502e-10 -1.20447e-11 -3.95495e-10) (-3.1288e-09 2.6217e-10 -1.01919e-09) (-1.21316e-08 1.60158e-09 -1.94839e-09) (-1.11449e-08 1.3179e-09 -6.10779e-10) (-2.41119e-09 -1.24672e-10 5.58501e-10) (-1.13724e-10 -2.86611e-10 3.86585e-10) (6.8747e-10 -7.2846e-10 7.75913e-10) (1.20245e-09 -6.49601e-10 8.65661e-10) (7.59873e-10 -1.08694e-10 6.40547e-10) (4.04186e-11 7.6751e-11 1.9426e-10) (-7.02244e-10 2.36889e-10 2.34512e-10) (-2.18666e-09 2.78849e-10 6.75627e-12) (-1.25336e-09 1.12269e-10 -1.78108e-10) (-2.25498e-10 3.9816e-11 -7.52264e-11) (-1.13143e-11 9.37395e-12 -1.29406e-11) (9.26245e-12 7.51686e-12 -8.63291e-12) (4.30053e-11 8.02608e-12 -1.57654e-11) (5.33199e-11 -5.82541e-12 -1.77206e-11) (6.23117e-11 -2.04506e-11 -1.86343e-11) (1.12621e-10 -3.65069e-11 -1.21199e-11) (2.89395e-10 -3.52077e-11 6.31529e-11) (7.90849e-10 8.06279e-11 4.00025e-10) (1.13978e-09 3.12542e-10 8.28545e-10) (4.1657e-10 2.25443e-10 4.54164e-10) (7.73763e-13 2.83041e-11 3.14078e-11) (-9.30343e-11 2.64593e-11 -4.21453e-11) (-1.86967e-10 1.42089e-11 -1.45213e-10) (-1.07965e-11 1.15892e-12 -7.28936e-12) (2.86905e-11 7.49009e-12 6.27007e-11) (1.11115e-10 3.30157e-11 3.27711e-10) (-5.2817e-11 3.00904e-11 1.52063e-10) (-1.72943e-09 1.39231e-10 7.15687e-11) (-1.31158e-08 7.23182e-11 -1.7683e-09) (-1.22269e-08 -4.28019e-10 -2.68401e-09) (-1.28496e-09 -1.52587e-10 -6.63554e-10) (1.99148e-11 -1.73199e-11 -5.95346e-11) (2.88524e-10 -2.87738e-11 -1.20802e-10) (1.10229e-09 -1.60402e-11 -5.39656e-10) (2.44718e-09 1.45152e-11 -1.83228e-09) (1.63542e-09 -3.1767e-11 -1.91001e-09) (3.15077e-11 9.63853e-12 -5.12181e-10) (-2.10892e-09 2.93503e-10 -8.87377e-10) (-1.16893e-08 1.84484e-09 -2.33179e-09) (-1.3836e-08 1.92563e-09 -1.81431e-09) (-4.47406e-09 -1.80545e-11 9.93726e-11) (-4.29021e-10 -3.21197e-10 2.48503e-10) (1.76127e-10 -5.46343e-10 3.9022e-10) (6.70419e-10 -6.2938e-10 6.20685e-10) (7.11706e-10 -2.08803e-10 7.39901e-10) (4.02563e-10 1.74242e-10 7.19844e-10) (-1.17497e-10 1.79352e-10 3.3857e-10) (-8.44651e-10 1.93063e-10 2.29782e-10) (-1.30635e-09 1.03459e-10 -5.87506e-11) (-5.75866e-10 5.68191e-11 -1.24709e-10) (-8.76479e-11 2.65417e-11 -4.5307e-11) (-1.30243e-12 1.0554e-11 -1.31685e-11) (3.75524e-11 1.79386e-11 -2.34136e-11) (1.18852e-10 5.86302e-12 -5.12828e-11) (1.45748e-10 -3.81096e-11 -7.76964e-11) (9.32004e-11 -5.61395e-11 -5.92577e-11) (4.3335e-11 -2.94954e-11 -4.22053e-12) (1.56609e-10 -1.78937e-11 1.29621e-10) (8.26577e-10 2.0329e-10 8.12934e-10) (1.25198e-09 5.02996e-10 1.18096e-09) (3.92614e-10 2.46936e-10 3.72603e-10) (4.34066e-12 1.85232e-11 3.59605e-12) (-5.96797e-11 2.51433e-11 -6.34319e-11) (-3.06299e-11 2.61555e-12 -2.80729e-11) (2.34343e-12 -1.44325e-12 1.7307e-11) (6.27911e-11 5.56224e-12 3.58352e-10) (-8.00055e-11 7.50706e-11 4.12464e-10) (-6.71149e-10 1.97326e-10 2.3718e-10) (-6.89266e-09 5.23909e-10 -7.96203e-10) (-1.32809e-08 -6.0903e-10 -2.96904e-09) (-4.047e-09 -6.85941e-10 -1.59316e-09) (-1.14286e-10 -7.04784e-11 -1.50778e-10) (1.70827e-10 -2.88021e-11 -1.0121e-10) (5.02266e-10 -7.89986e-12 -3.36048e-10) (2.67622e-09 -1.80707e-11 -1.96107e-09) (2.74121e-09 -3.97723e-11 -2.75532e-09) (3.43401e-10 5.80327e-11 -8.98281e-10) (-1.15736e-09 3.11214e-10 -7.65474e-10) (-9.73508e-09 1.92287e-09 -2.45457e-09) (-1.45336e-08 2.2995e-09 -2.76863e-09) (-5.86531e-09 1.74086e-10 -5.81465e-10) (-6.95234e-10 -3.58753e-10 1.22414e-10) (3.35046e-11 -4.61449e-10 2.2944e-10) (3.77035e-10 -5.44429e-10 4.06903e-10) (2.88168e-10 -1.81936e-10 4.50874e-10) (2.41712e-10 1.21718e-10 7.15756e-10) (5.77514e-11 2.50919e-10 6.2947e-10) (-1.32917e-10 9.0519e-11 1.81753e-10) (-3.7751e-10 5.01987e-11 5.17962e-11) (-5.03786e-10 4.12512e-11 -4.77719e-11) (-2.27002e-10 4.47312e-11 -3.82123e-11) (-3.29988e-11 2.08213e-11 -1.33722e-11) (3.73448e-12 1.17074e-11 -9.35211e-12) (8.19459e-11 1.91189e-11 -4.58569e-11) (3.33899e-10 -3.96053e-11 -1.77569e-10) (3.16099e-10 -1.1699e-10 -2.39513e-10) (4.2814e-11 -5.70874e-11 -6.83344e-11) (-2.68771e-12 -8.65766e-12 4.83133e-12) (6.06793e-11 1.07265e-11 2.31868e-10) (6.27717e-10 2.68636e-10 8.74429e-10) (8.99959e-10 4.34103e-10 7.46559e-10) (2.76239e-10 1.91027e-10 1.219e-10) (1.09604e-11 3.02882e-11 -1.58023e-11) (-1.02637e-11 7.37033e-12 -1.33943e-11) (-1.70261e-12 -1.72154e-12 1.17593e-11) (3.07913e-11 -2.01493e-11 4.1874e-10) (-1.63739e-10 1.08395e-10 8.27941e-10) (-5.32157e-10 2.69408e-10 4.70511e-10) (-2.27306e-09 4.98701e-10 -6.47018e-11) (-5.99061e-09 -2.23708e-10 -1.63063e-09) (-4.25114e-09 -1.04175e-09 -1.85702e-09) (-8.10326e-10 -3.49911e-10 -5.58361e-10) (-5.11259e-12 -2.02201e-11 -5.17914e-11) (-3.03315e-11 -4.38121e-12 -3.20096e-11) (3.36433e-10 -3.13291e-11 -4.29756e-10) (1.88124e-09 -1.11787e-10 -2.27764e-09) (1.06811e-09 2.0004e-10 -2.07911e-09) (-4.57718e-10 4.20347e-10 -1.00939e-09) (-6.11279e-09 1.7846e-09 -2.37676e-09) (-1.35033e-08 2.30661e-09 -3.10264e-09) (-6.18475e-09 2.16446e-10 -9.24e-10) (-5.20394e-10 -2.74485e-10 4.99774e-11) (1.15801e-10 -4.28484e-10 1.85904e-10) (3.25198e-10 -4.52417e-10 2.72635e-10) (7.37447e-11 -9.39535e-11 1.96134e-10) (-4.35191e-11 8.02e-11 5.39793e-10) (-7.10256e-11 2.12771e-10 7.36429e-10) (-1.64753e-11 6.37132e-11 1.97674e-10) (-7.83411e-12 4.22856e-12 7.63791e-12) (-6.2175e-11 1.03528e-11 -8.61893e-12) (-2.06913e-10 4.2786e-11 -2.15086e-12) (-1.82564e-10 7.13397e-11 3.40653e-11) (-4.27486e-11 3.85041e-11 1.5231e-11) (1.94728e-12 4.73897e-12 -1.92681e-12) (1.5776e-10 -1.50113e-11 -1.17922e-10) (6.93804e-10 -1.68397e-10 -5.92538e-10) (2.58451e-10 -1.41817e-10 -3.93987e-10) (-3.43264e-11 -3.53207e-11 -4.54248e-11) (-9.69221e-11 -2.7773e-11 7.23156e-11) (6.09419e-12 1.84963e-11 2.94937e-10) (4.2354e-10 1.74113e-10 4.97308e-10) (6.65399e-10 3.35166e-10 3.14744e-10) (2.24791e-10 1.87838e-10 1.63825e-11) (9.76853e-12 2.51239e-11 -6.88783e-12) (2.26971e-13 2.46345e-12 1.25773e-11) (6.46118e-11 -1.89175e-11 4.322e-10) (-6.36484e-11 1.26117e-10 1.1717e-09) (-5.62615e-10 3.76953e-10 9.21279e-10) (-8.78778e-10 3.48932e-10 2.70874e-10) (-1.0537e-09 -9.50503e-12 -3.12257e-10) (-1.09259e-09 -5.20655e-10 -8.08189e-10) (-8.51761e-10 -5.0709e-10 -7.05913e-10) (-3.95773e-10 -1.25036e-10 -2.06268e-10) (-1.07085e-09 -4.60968e-11 -7.8939e-11) (-6.55252e-10 -7.27611e-11 -1.00024e-10) (-1.68935e-10 -9.24119e-11 -4.77764e-10) (2.99915e-10 1.67936e-10 -2.10638e-09) (7.34468e-11 9.80129e-10 -2.52725e-09) (-1.88579e-09 1.37004e-09 -2.04249e-09) (-6.10186e-09 1.4551e-09 -2.13529e-09) (-3.44247e-09 -1.61202e-12 -5.38306e-10) (-1.84973e-10 -1.63929e-10 6.05617e-11) (2.57906e-10 -4.17021e-10 2.28835e-10) (2.1136e-10 -2.56985e-10 1.55478e-10) (-7.46239e-12 -1.96381e-11 5.0565e-11) (-2.32624e-10 9.9239e-11 4.43275e-10) (-2.80351e-10 1.70209e-10 9.0642e-10) (-9.12123e-12 1.22988e-11 2.94666e-10) (1.12375e-11 -3.01573e-12 8.98508e-12) (6.12899e-12 1.50581e-12 -8.22299e-12) (-2.76948e-11 1.69637e-11 -1.29233e-11) (-3.94883e-10 1.60845e-10 8.36871e-11) (-5.89561e-10 2.81751e-10 2.94076e-10) (-1.57229e-10 9.34214e-11 1.10282e-10) (-3.50455e-14 -4.01068e-14 -2.29266e-12) (3.11049e-10 -1.21295e-10 -4.59416e-10) (6.99455e-10 -2.46843e-10 -1.0904e-09) (4.47843e-11 -8.16512e-11 -2.78189e-10) (-5.95388e-11 -2.51347e-11 -1.07916e-11) (-8.11817e-11 -3.14997e-11 1.01062e-10) (1.87878e-11 -4.2357e-12 1.38336e-10) (1.92987e-10 8.9067e-11 1.58945e-10) (3.74308e-10 2.79005e-10 1.1228e-10) (1.5e-10 1.70771e-10 3.13541e-11) (3.53767e-11 3.50801e-11 4.35523e-11) (1.54027e-10 9.19066e-12 3.83014e-10) (2.62107e-10 1.17352e-10 1.15465e-09) (-1.88203e-10 3.86083e-10 1.14388e-09) (-4.03159e-10 2.65727e-10 4.83428e-10) (-8.05537e-11 -2.82262e-12 2.14649e-11) (-2.6569e-11 -1.33229e-10 -1.2625e-10) (-5.48509e-11 -2.75984e-10 -4.05551e-10) (-3.41525e-10 -1.21347e-10 -2.74294e-10) (-2.80391e-10 5.98228e-11 -1.0735e-10) (-1.64137e-09 3.0687e-11 2.06222e-11) (-1.87299e-09 -2.66893e-10 -5.22327e-10) (-1.48559e-09 -6.02915e-11 -1.76701e-09) (-9.55892e-10 1.00621e-09 -3.20374e-09) (-6.16539e-10 1.51357e-09 -2.60519e-09) (-5.98027e-10 5.42721e-10 -8.80897e-10) (-1.17876e-10 -7.54213e-12 -6.99648e-11) (3.10216e-11 -1.07888e-10 5.43899e-11) (2.51892e-10 -3.20713e-10 2.61583e-10) (5.79665e-12 -6.29637e-11 6.61426e-11) (-2.06664e-10 1.70056e-11 8.89998e-11) (-5.11214e-10 1.7885e-10 4.16093e-10) (-2.29819e-10 8.9979e-11 8.01477e-10) (1.47023e-10 -1.14717e-10 5.4404e-10) (1.56999e-10 -9.98245e-11 9.35285e-11) (7.71082e-11 -2.9822e-11 -3.8928e-11) (-2.14285e-12 1.32622e-11 -2.92387e-11) (-4.20177e-10 2.35813e-10 -8.02574e-12) (-2.16727e-09 9.41517e-10 7.24778e-10) (-1.91163e-09 7.86066e-10 1.01437e-09) (-2.97709e-10 7.81297e-11 1.21576e-10) (8.67842e-12 -3.97859e-11 -1.39491e-10) (9.04863e-10 -3.93539e-10 -1.53714e-09) (7.36297e-10 -2.96276e-10 -1.13336e-09) (4.01195e-11 -3.80466e-11 -7.81554e-11) (-3.90868e-12 -9.35618e-12 9.50024e-12) (-1.75198e-11 -2.14051e-11 6.29279e-11) (-6.56257e-12 2.2795e-12 2.73883e-11) (1.17796e-11 3.78829e-11 1.70319e-11) (1.06578e-10 1.71852e-10 4.42684e-11) (1.82645e-10 1.51124e-10 1.34273e-10) (4.31248e-10 8.31756e-11 5.11861e-10) (6.99142e-10 9.48627e-11 1.13798e-09) (3.81387e-10 3.15986e-10 1.10322e-09) (1.7149e-11 2.04815e-10 5.41573e-10) (-2.04351e-12 -1.5641e-11 9.70015e-11) (5.52472e-11 -1.25287e-10 9.78793e-13) (1.62334e-10 -2.26481e-10 -2.27667e-10) (2.05074e-11 -3.54462e-11 -1.97697e-10) (1.04672e-10 8.22012e-11 -1.23776e-10) (-4.82544e-11 5.45252e-11 -1.76134e-11) (-7.85596e-10 4.62387e-11 -1.06377e-10) (-2.53686e-09 -5.99384e-11 -1.06294e-09) (-3.31146e-09 5.68986e-10 -2.6363e-09) (-1.34599e-09 9.2088e-10 -2.36218e-09) (1.58752e-10 3.43946e-10 -1.00719e-09) (7.49314e-10 -6.07886e-11 -4.86817e-10) (1.31305e-09 -3.91984e-10 -8.83655e-11) (3.40008e-10 -1.34642e-10 1.21352e-10) (-1.06674e-10 5.34106e-12 6.88357e-11) (-2.02209e-09 4.2888e-10 3.87407e-10) (-1.47683e-09 3.52345e-10 5.8822e-10) (-9.30181e-11 -3.58933e-11 4.2659e-10) (7.03457e-10 -4.62412e-10 8.23421e-10) (1.05905e-09 -5.9412e-10 4.78249e-10) (3.30066e-10 -1.42742e-10 -9.05378e-12) (-8.80834e-13 8.29258e-12 -1.78636e-11) (-8.46993e-10 4.68092e-10 -7.35941e-11) (-4.70061e-09 2.11463e-09 1.08057e-09) (-5.65978e-09 2.29217e-09 2.43301e-09) (-1.62403e-09 5.13864e-10 7.84368e-10) (-4.11489e-11 -1.15133e-11 -3.34618e-11) (7.47129e-10 -4.92861e-10 -1.33958e-09) (2.22407e-09 -8.7884e-10 -2.5944e-09) (8.60165e-10 -3.12575e-10 -7.47871e-10) (8.46811e-11 -3.92415e-11 -1.77534e-11) (1.08762e-11 -1.36553e-11 2.69261e-11) (-2.22477e-11 -4.10083e-12 2.9841e-11) (-9.04163e-11 3.69531e-11 1.81401e-11) (-6.6566e-11 9.25391e-11 2.78328e-12) (4.241e-11 9.21487e-11 4.76965e-11) (5.02694e-10 1.45054e-10 4.63466e-10) (1.1839e-09 7.48013e-11 1.26945e-09) (9.02602e-10 1.99435e-10 1.17267e-09) (3.38601e-10 1.55399e-10 5.86028e-10) (7.05578e-11 -3.26194e-11 1.94308e-10) (2.58934e-11 -1.45408e-10 7.73406e-11) (7.50818e-11 -1.78942e-10 -6.06326e-11) (1.95688e-10 -6.65873e-11 -2.1309e-10) (5.84372e-10 9.18302e-11 -3.10443e-10) (2.4984e-10 2.21463e-10 -1.5427e-10) (-3.04389e-11 7.75214e-11 -3.64899e-11) (-8.23407e-10 1.84924e-10 -1.54441e-10) (-2.47854e-09 2.48872e-10 -5.05377e-10) (-1.30256e-09 7.78384e-11 -5.90059e-10) (-7.78936e-11 -6.384e-11 -3.15317e-10) (6.23256e-10 -2.88216e-10 -6.89642e-10) (1.16611e-09 -2.73707e-10 -7.70029e-10) (2.6815e-10 4.58299e-11 -1.94833e-10) (-1.67558e-10 1.79628e-10 -6.23617e-11) (-2.32466e-09 1.00802e-09 7.01926e-11) (-1.5467e-09 3.62011e-10 3.43965e-10) (-3.84889e-11 -9.89097e-11 1.75769e-10) (1.35859e-09 -1.09931e-09 1.00357e-09) (2.80904e-09 -1.59669e-09 1.23688e-09) (1.09025e-09 -3.78949e-10 2.7768e-10) (1.81111e-11 1.6097e-11 -4.88285e-12) (-1.06396e-09 7.58385e-10 -7.79761e-11) (-6.88155e-09 3.2811e-09 1.21741e-09) (-8.7561e-09 3.522e-09 3.48354e-09) (-2.90324e-09 1.03982e-09 1.75154e-09) (-1.13236e-10 8.02578e-12 4.79108e-11) (1.40474e-10 -2.50432e-10 -4.12905e-10) (1.40006e-09 -1.16441e-09 -2.33358e-09) (1.31186e-09 -7.6936e-10 -1.67986e-09) (3.1662e-10 -1.53715e-10 -2.67986e-10) (3.42718e-11 -1.95122e-11 1.21562e-15) (2.3965e-12 -2.80516e-12 8.8406e-12) (-2.61332e-11 1.66296e-11 1.16547e-11) (-1.70151e-10 1.42237e-10 -1.2851e-11) (-7.82924e-11 1.16322e-10 4.21749e-12) (4.89953e-11 5.79475e-11 8.41746e-11) (5.4669e-10 6.23262e-11 7.00985e-10) (7.08961e-10 6.26395e-11 1.02264e-09) (3.11752e-10 6.94125e-11 5.67176e-10) (9.10246e-11 -3.09107e-11 2.18346e-10) (8.50789e-11 -1.43805e-10 1.14328e-10) (2.53322e-10 -3.22128e-10 -2.59777e-13) (5.09007e-10 -2.55963e-10 -2.22088e-10) (7.03139e-10 -1.24696e-10 -1.26575e-10) (3.21042e-10 1.79968e-10 -1.86166e-10) (5.71629e-11 2.45304e-10 -1.64812e-10) (-2.37613e-10 2.41011e-10 -8.17693e-11) (-7.96672e-10 2.21632e-10 1.27094e-10) (-5.57025e-10 -4.12418e-11 1.68491e-10) (-1.07495e-10 -8.30975e-11 -1.20954e-11) (-8.65437e-11 -1.55864e-10 -2.36998e-10) (-1.82298e-10 -1.03075e-10 -6.91394e-10) (-3.09894e-10 2.78696e-10 -8.36477e-10) (-7.03583e-10 8.22562e-10 -8.00657e-10) (-1.15134e-09 9.00375e-10 -4.89551e-10) (-2.87164e-10 9.4132e-11 -3.63224e-11) (6.99358e-11 -1.51158e-10 8.67103e-11) (1.92232e-09 -1.66113e-09 1.1535e-09) (3.13269e-09 -1.95502e-09 1.75015e-09) (1.17656e-09 -4.37851e-10 5.80934e-10) (3.29277e-11 2.86824e-11 1.43502e-11) (-7.65247e-10 8.02308e-10 -4.57088e-11) (-4.96569e-09 3.1444e-09 7.25884e-10) (-6.7137e-09 3.12937e-09 2.8056e-09) (-2.59403e-09 1.05157e-09 2.17464e-09) (-2.50491e-10 9.779e-11 3.89275e-10) (-3.18235e-13 -5.95428e-12 -4.74643e-12) (7.53672e-11 -3.6811e-10 -7.56771e-10) (1.88212e-10 -8.17087e-10 -2.0034e-09) (1.6698e-10 -4.78628e-10 -1.01979e-09) (7.3513e-11 -1.52201e-10 -1.44671e-10) (2.62305e-11 -4.00949e-11 5.47987e-12) (1.81955e-12 1.74174e-12 5.52365e-12) (-4.77256e-11 1.21498e-10 8.88056e-12) (-1.67041e-10 3.14434e-10 -2.10248e-11) (-5.23132e-11 1.25791e-10 3.78597e-11) (3.48764e-11 6.10537e-11 1.4408e-10) (1.71942e-10 3.79923e-11 4.01532e-10) (1.64444e-10 1.25223e-11 3.33124e-10) (1.54772e-10 -4.95058e-11 1.75605e-10) (4.89e-10 -3.2962e-10 2.22641e-10) (1.34045e-09 -9.97559e-10 2.89041e-10) (1.42942e-09 -8.43817e-10 7.57172e-11) (9.49231e-10 -4.05217e-10 2.28901e-10) (1.61659e-10 3.17368e-11 -3.17582e-11) (6.88162e-11 1.89061e-10 -1.33455e-10) (-7.4387e-11 2.61432e-10 -1.36732e-10) (-1.64257e-10 1.21797e-10 3.21206e-13) (-3.6203e-10 -1.05426e-11 1.39166e-10) (-7.10925e-10 -1.97199e-10 1.35942e-10) (-1.27609e-09 -2.38063e-10 -3.28534e-10) (-1.91692e-09 6.36453e-11 -1.24464e-09) (-1.61107e-09 6.38788e-10 -1.50965e-09) (-8.42952e-10 8.81899e-10 -9.69585e-10) (-1.8003e-10 3.93785e-10 -3.05052e-10) (1.5867e-11 7.53507e-12 -1.43827e-11) (5.56965e-10 -4.27107e-10 1.33853e-10) (1.75704e-09 -1.50025e-09 8.50087e-10) (1.41375e-09 -1.08214e-09 9.23696e-10) (2.93305e-10 -1.54835e-10 2.29927e-10) (-4.33293e-12 1.40056e-11 4.48658e-12) (-7.00011e-10 6.42178e-10 -9.82756e-11) (-2.46044e-09 1.81932e-09 1.95005e-10) (-2.43074e-09 1.4953e-09 1.20785e-09) (-1.20158e-09 6.7702e-10 1.58764e-09) (-3.52775e-10 3.15521e-10 9.94402e-10) (-5.97102e-11 5.86547e-11 9.87738e-11) (-1.23124e-10 -3.72668e-12 -1.81926e-10) (-5.15588e-10 -5.25986e-10 -1.8155e-09) (-1.76155e-10 -1.15196e-09 -2.23406e-09) (1.72077e-10 -8.24865e-10 -7.79256e-10) (5.48347e-11 -2.37419e-10 -5.81049e-11) (-1.22145e-11 -7.941e-12 1.25147e-11) (-2.066e-10 2.21337e-10 7.18174e-11) (-4.32467e-10 7.32175e-10 5.21032e-11) (-2.00656e-10 4.88737e-10 8.09979e-11) (-1.84805e-11 1.34049e-10 9.95152e-11) (2.92603e-11 3.36623e-11 9.09817e-11) (5.8825e-11 -1.01716e-11 5.86931e-11) (2.9639e-10 -1.50015e-10 7.79803e-11) (1.55398e-09 -9.65986e-10 2.97415e-10) (3.4195e-09 -2.2039e-09 9.54818e-10) (2.9081e-09 -1.77438e-09 9.66204e-10) (1.06375e-09 -5.64291e-10 4.93591e-10) (1.65915e-10 -4.25573e-11 6.08296e-11) (2.86605e-11 3.02952e-11 -4.87008e-12) (1.28874e-11 1.34934e-10 -4.56016e-11) (-8.3203e-11 1.63342e-10 -5.14555e-11) (-6.01123e-10 2.1582e-10 -4.45785e-11) (-2.78e-09 1.60463e-10 -8.64086e-11) (-4.04469e-09 -3.49138e-11 -5.29346e-10) (-2.03917e-09 5.52248e-11 -7.86512e-10) (-4.90653e-10 1.78329e-10 -4.92876e-10) (-5.19685e-11 1.99918e-10 -2.50826e-10) (1.00092e-10 1.22654e-10 -1.01902e-10) (3.17344e-10 -1.0289e-11 -3.2154e-11) (8.59183e-10 -4.58846e-10 1.33365e-10) (8.92305e-10 -7.06922e-10 3.14239e-10) (4.02727e-10 -3.33797e-10 2.21359e-10) (6.30304e-11 -3.20994e-11 3.76079e-11) (-2.0659e-12 9.17019e-12 -2.96937e-12) (-3.3257e-10 2.96202e-10 -1.37684e-10) (-1.2928e-09 7.96527e-10 -1.07814e-10) (-1.37344e-09 6.49058e-10 4.74484e-10) (-9.57618e-10 4.50997e-10 1.05622e-09) (-6.11385e-10 5.72148e-10 1.20563e-09) (-3.16054e-10 4.85598e-10 4.45305e-10) (-1.41429e-10 1.6689e-10 -7.51898e-11) (-1.59776e-10 -7.83561e-11 -7.06946e-10) (1.54601e-10 -1.1672e-09 -1.83286e-09) (3.25403e-10 -1.63864e-09 -1.42365e-09) (-3.41471e-11 -5.38657e-10 -2.77644e-10) (-1.52126e-10 -5.31201e-11 1.03018e-11) (-7.98464e-10 3.87762e-10 2.11182e-10) (-1.15829e-09 1.10448e-09 3.16864e-10) (-5.63179e-10 8.97476e-10 2.44148e-10) (-7.29807e-11 2.63635e-10 1.20173e-10) (1.94008e-11 1.823e-11 2.20596e-11) (1.97676e-10 -9.99516e-11 4.95048e-12) (1.17605e-09 -8.08902e-10 -1.1544e-10) (2.84412e-09 -1.89915e-09 9.11836e-11) (3.69099e-09 -2.28816e-09 8.67281e-10) (2.76858e-09 -1.60873e-09 1.10433e-09) (1.00984e-09 -6.31244e-10 4.19024e-10) (2.95359e-10 -1.59991e-10 1.4668e-10) (1.60205e-11 6.6e-13 1.69636e-11) (-4.12952e-11 6.2756e-11 1.80835e-11) (-5.20715e-10 4.15531e-10 -3.83375e-11) (-2.13811e-09 9.64338e-10 -3.50834e-10) (-3.89111e-09 8.95283e-10 -6.71149e-10) (-2.39549e-09 1.48683e-10 -4.56785e-10) (-3.22115e-10 -4.60195e-11 -1.16761e-10) (3.65877e-12 -4.46598e-12 -2.04029e-11) (1.52696e-10 2.50869e-11 -8.24532e-11) (3.83482e-10 5.15801e-11 -9.96811e-11) (4.04545e-10 -3.99877e-11 -2.45367e-11) (2.4299e-10 -1.11536e-10 3.60125e-11) (9.02091e-11 -8.35683e-11 4.06462e-11) (2.96537e-11 -3.31022e-11 2.13972e-11) (1.56722e-11 -5.78772e-12 4.40191e-12) (2.11392e-11 1.14652e-11 -1.11747e-11) (-1.8197e-12 6.73298e-11 -5.54541e-11) (-2.53639e-10 2.02994e-10 -9.46847e-11) (-1.19241e-09 3.84492e-10 1.73953e-10) (-2.20418e-09 5.61789e-10 1.04674e-09) (-1.79412e-09 9.4452e-10 1.35839e-09) (-7.09923e-10 8.84549e-10 5.86629e-10) (-8.93262e-11 2.38693e-10 -2.17434e-11) (5.53011e-11 -1.85039e-11 -2.37531e-10) (5.32119e-10 -1.01588e-09 -1.25865e-09) (4.75595e-10 -1.66948e-09 -1.4323e-09) (-1.48397e-10 -5.5996e-10 -4.14931e-10) (-4.7494e-10 -6.41031e-11 -5.67786e-11) (-1.69568e-09 6.53971e-10 3.50275e-10) (-1.93713e-09 1.27445e-09 6.33363e-10) (-7.08903e-10 7.52381e-10 3.48391e-10) (-2.68342e-11 1.3873e-10 7.15625e-11) (1.42184e-10 1.27518e-11 2.58337e-11) (1.06056e-09 -4.22092e-10 -1.00212e-10) (2.19757e-09 -1.282e-09 -3.40061e-10) (2.21546e-09 -1.54944e-09 -1.41304e-10) (1.88057e-09 -1.36276e-09 2.83706e-10) (1.5983e-09 -1.07464e-09 5.36926e-10) (8.76001e-10 -6.28547e-10 2.54186e-10) (1.8996e-10 -1.36565e-10 7.16775e-11) (-2.32182e-12 8.51967e-13 3.49843e-12) (-4.32123e-10 2.44377e-10 4.16433e-11) (-2.1282e-09 1.14449e-09 -1.20729e-10) (-2.8563e-09 1.36327e-09 -5.10759e-10) (-1.25149e-09 4.33648e-10 -3.85276e-10) (-1.31797e-10 -9.94487e-13 -6.46576e-11) (8.24471e-13 -9.85874e-12 -2.99268e-12) (4.41056e-11 -2.35251e-11 1.16139e-11) (1.2783e-10 -1.10492e-11 4.08508e-11) (1.6635e-10 6.06818e-12 4.8679e-11) (8.28225e-11 -4.14292e-12 2.02578e-11) (9.091e-12 -4.24879e-12 1.06211e-12) (-1.50751e-13 -2.58489e-12 -7.91063e-13) (-5.57173e-13 -3.77932e-12 -8.84635e-13) (4.65002e-12 -4.81163e-12 -4.37103e-13) (2.81099e-11 -2.84549e-12 -6.89236e-12) (4.25395e-11 2.79621e-11 -3.02562e-11) (-1.92055e-11 7.97785e-11 -4.00719e-11) (-6.30946e-10 3.79807e-10 6.23434e-11) (-3.11768e-09 1.07005e-09 1.05951e-09) (-3.85371e-09 1.45045e-09 1.73888e-09) (-1.20689e-09 8.12669e-10 5.82821e-10) (-2.76406e-11 7.9866e-11 -2.34192e-12) (2.12271e-10 -4.92267e-11 -2.05682e-10) (8.8948e-10 -8.0164e-10 -9.48388e-10) (5.15757e-10 -9.87153e-10 -9.20816e-10) (-1.00257e-10 -3.32303e-10 -3.05983e-10) (-4.01784e-10 -6.06478e-11 -1.26939e-10) (-9.60201e-10 3.11312e-10 4.03024e-11) (-9.11712e-10 5.23069e-10 2.70574e-10) (-3.07978e-10 2.61518e-10 2.18233e-10) (-3.96198e-12 4.13486e-11 6.24144e-11) (1.348e-10 -1.30751e-11 5.90008e-11) (5.98681e-10 -2.20043e-10 -4.15935e-13) (9.67438e-10 -5.01704e-10 -1.86349e-10) (1.06088e-09 -6.88832e-10 -1.99384e-10) (1.20237e-09 -8.7268e-10 2.86756e-11) (1.30266e-09 -9.49109e-10 2.76551e-10) (4.29546e-10 -4.09972e-10 1.51277e-10) (1.22028e-11 -1.83584e-11 2.3919e-12) (-8.04446e-11 4.37162e-11 -1.98645e-11) (-8.15669e-10 5.17339e-10 -1.35373e-10) (-1.33207e-09 7.64677e-10 -2.21155e-10) (-5.85253e-10 2.59867e-10 -1.5524e-10) (-5.53163e-11 4.81818e-12 -3.39028e-11) (1.89266e-13 -9.89881e-12 -7.22153e-12) (6.83623e-12 -1.26617e-11 -2.56664e-13) (5.20664e-12 -5.40546e-12 5.39567e-12) (7.26126e-12 -6.83518e-13 1.08885e-11) (7.8122e-12 2.60958e-12 9.97988e-12) (1.24152e-12 8.13834e-13 1.24151e-12) (-2.71201e-13 1.46229e-13 -3.36416e-13) (-3.11831e-12 -5.80518e-13 -2.93978e-12) (-1.34561e-12 -1.60119e-12 -3.22835e-13) (1.75443e-12 -8.98296e-12 8.4566e-12) (1.3864e-11 -1.43053e-11 1.82329e-11) (6.95878e-12 -3.60745e-13 7.29414e-13) (-5.06345e-12 3.14904e-11 -1.95042e-11) (-3.32775e-10 3.36593e-10 -3.73101e-11) (-1.89267e-09 1.21301e-09 5.59295e-10) (-3.19117e-09 1.67222e-09 1.48675e-09) (-1.57466e-09 8.3933e-10 7.90506e-10) (-9.28479e-11 6.26445e-11 3.20424e-11) (3.39665e-11 -1.5109e-11 -3.79985e-11) (3.39754e-10 -2.32802e-10 -3.01596e-10) (3.66297e-10 -3.23695e-10 -3.43698e-10) (1.01074e-10 -1.59579e-10 -1.55221e-10) (-3.11506e-11 -4.83965e-11 -5.90678e-11) (-2.27621e-10 -1.10444e-11 -9.3859e-11) (-4.88651e-10 1.17721e-10 -8.00524e-11) (-2.98605e-10 1.36701e-10 -2.50169e-12) (-3.49498e-11 3.28719e-11 6.09388e-12) (7.33269e-12 5.06895e-12 1.18639e-12) (1.40422e-10 -1.53467e-11 -7.57688e-13) (5.66853e-10 -2.05327e-10 2.16179e-11) (1.28286e-09 -7.21013e-10 2.04986e-10) (1.77418e-09 -1.25868e-09 5.25587e-10) (1.34921e-09 -1.10814e-09 4.94224e-10) (6.94309e-11 -1.22363e-10 6.43087e-11) (-2.13297e-12 -1.51832e-12 -1.05036e-12) (-6.30265e-11 6.59293e-11 -5.47902e-11) (-1.21599e-10 2.5716e-10 -1.58184e-10) (-3.53824e-11 2.59085e-10 -1.54852e-10) (2.93625e-11 9.90949e-11 -7.33318e-11) (1.45548e-11 9.92134e-12 -1.46419e-11) (4.27308e-13 -1.56129e-12 -4.04738e-13) (-2.85885e-11 -2.33747e-11 1.1746e-11) (-1.38153e-10 -5.44269e-11 4.37079e-11) (-1.61288e-10 -3.41046e-11 3.16856e-11) (-7.03334e-11 -4.78592e-12 -2.18598e-12) (-1.84243e-11 2.66734e-12 -1.10989e-11) (-6.72808e-12 4.50329e-12 -1.28265e-11) (-2.04487e-12 2.58467e-12 -4.37692e-12) (-1.13518e-12 5.83765e-13 2.01051e-12) (-4.38595e-12 -1.53998e-11 8.42358e-11) (4.34915e-11 -7.91364e-11 2.4942e-10) (6.16206e-11 -4.56055e-11 1.04507e-10) (4.17576e-12 1.76256e-12 -1.14202e-12) (-1.24746e-10 1.64928e-10 -1.06253e-10) (-1.36025e-09 1.08561e-09 -1.35444e-10) (-3.11605e-09 2.07501e-09 6.6459e-10) (-2.15054e-09 1.3115e-09 8.0117e-10) (-3.58192e-10 1.88901e-10 1.38951e-10) (-1.34763e-12 -8.03951e-13 -5.35972e-13) (7.23658e-11 -6.97908e-11 -4.44175e-11) (2.51896e-10 -1.7681e-10 -9.42666e-11) (2.76482e-10 -1.45887e-10 -7.99536e-11) (9.56095e-11 -4.0883e-11 -5.45042e-11) (-1.3555e-11 -1.38591e-12 -5.04006e-11) (-4.38745e-10 8.80027e-11 -2.79612e-10) (-9.64654e-10 2.47679e-10 -4.33882e-10) (-3.22309e-10 1.17171e-10 -1.83447e-10) (1.1212e-12 2.94012e-12 -1.11519e-11) (2.75079e-10 -9.67475e-11 1.39868e-11) (1.37568e-09 -6.87551e-10 4.26469e-10) (2.26031e-09 -1.43089e-09 1.0602e-09) (1.74561e-09 -1.391e-09 1.05928e-09) (6.44203e-10 -6.8543e-10 4.74879e-10) (-3.37344e-12 -2.81445e-11 1.5674e-11) (-4.53469e-12 -8.86349e-13 -1.78235e-12) (-1.63799e-11 2.8226e-11 -3.47605e-11) (1.46326e-11 1.15161e-10 -1.22546e-10) (1.2097e-10 1.75637e-10 -1.84373e-10) (1.88969e-10 1.38162e-10 -1.4043e-10) (1.07566e-10 4.88996e-11 -3.43785e-11) (1.06726e-11 3.43644e-12 4.32666e-12) (-2.0728e-11 -5.82115e-12 2.34954e-11) (-2.35733e-10 -5.41589e-11 8.97525e-11) (-4.73592e-10 -8.53373e-11 3.07435e-11) (-3.68524e-10 -3.53645e-11 -1.04649e-10) (-1.63658e-10 1.67558e-11 -1.37554e-10) (-5.20377e-11 3.362e-11 -8.75725e-11) (-1.10813e-11 1.64598e-11 -1.56961e-11) (-8.18267e-12 9.01464e-12 1.34576e-11) (-2.79661e-11 -1.04617e-11 2.08047e-10) (5.51531e-11 -1.67061e-10 6.42559e-10) (1.95856e-10 -2.0023e-10 5.56687e-10) (5.66482e-11 -1.25009e-11 6.81474e-11) (-1.92046e-11 7.64755e-11 -3.2584e-11) (-9.67245e-10 1.04125e-09 -4.26238e-10) (-3.09768e-09 2.30381e-09 -3.79999e-10) (-2.68362e-09 1.56829e-09 1.61574e-10) (-6.08475e-10 2.55966e-10 1.09422e-10) (-9.71978e-12 -4.05219e-12 4.36329e-12) (7.59816e-11 -8.82216e-11 -2.09631e-13) (3.12028e-10 -2.38725e-10 -3.11213e-11) (3.32249e-10 -1.74574e-10 -4.94554e-11) (1.52978e-10 -3.08137e-11 -4.23964e-11) (3.37073e-11 1.90248e-11 -3.07337e-11) (-1.58892e-11 4.83949e-11 -5.40199e-11) (-7.27268e-11 5.50802e-11 -7.57938e-11) (-2.09068e-11 2.5297e-12 -2.19576e-11) (1.42111e-11 -2.76572e-11 -8.96941e-12) (2.51887e-10 -2.78182e-10 1.91812e-11) (5.78677e-10 -6.04624e-10 1.27167e-10) (5.11087e-10 -5.84201e-10 2.10285e-10) (2.43183e-10 -3.5804e-10 1.90056e-10) (5.53092e-11 -1.49856e-10 9.42629e-11) (-2.54027e-12 -4.2529e-12 1.35686e-12) (-4.42325e-12 -1.3664e-13 -1.73619e-12) (-6.23065e-12 8.38683e-12 -9.02597e-12) (8.66593e-12 2.55744e-11 -2.14844e-11) (6.92446e-11 5.15384e-11 -3.86685e-11) (1.68414e-10 5.97014e-11 -3.55407e-11) (1.82127e-10 3.16125e-11 2.41046e-12) (7.48954e-11 2.83633e-12 2.34855e-11) (3.8571e-12 -2.60756e-12 9.45504e-12) (-5.3482e-11 -1.53787e-11 2.12491e-11) (-3.58071e-10 -5.03497e-11 -2.35552e-11) (-7.43966e-10 -2.52014e-11 -2.67269e-10) (-7.79015e-10 8.87859e-11 -5.05673e-10) (-4.60565e-10 1.48375e-10 -4.20721e-10) (-1.24154e-10 6.99295e-11 -1.23813e-10) (-5.34706e-12 3.75549e-12 -8.48532e-13) (9.33914e-12 -1.66221e-11 7.65203e-11) (1.38032e-10 -1.69244e-10 5.3181e-10) (3.2307e-10 -2.61937e-10 9.43945e-10) (2.69034e-10 -4.61694e-11 5.68787e-10) (5.6859e-11 7.41094e-11 8.71025e-11) (-1.24302e-10 3.44563e-10 -6.4486e-11) (-1.2579e-09 1.27879e-09 -4.62707e-10) (-2.17282e-09 1.31559e-09 -4.43436e-10) (-1.02067e-09 3.31243e-10 -1.13409e-10) (-9.18608e-11 -1.3622e-11 -9.25734e-12) (1.29307e-11 -2.85611e-11 -4.0653e-12) (1.70441e-10 -1.00984e-10 -1.55526e-11) (3.11132e-10 -8.94981e-11 -1.33267e-11) (2.69048e-10 -2.19256e-11 3.86941e-12) (1.49828e-10 1.08976e-11 1.02529e-11) (6.06837e-11 5.02176e-12 6.26788e-12) (2.26238e-11 -7.74565e-12 1.61677e-12) (2.01916e-11 -3.5597e-11 -3.26773e-12) (1.70412e-11 -1.11495e-10 -2.38751e-11) (-5.16454e-12 -1.45272e-10 -4.70171e-11) (-1.32356e-11 -8.65033e-11 -3.05491e-11) (-4.95582e-12 -3.34861e-11 -5.86945e-12) (-1.67563e-13 -1.7385e-11 3.74477e-12) (-5.01572e-13 -1.25361e-11 5.53015e-12) (-4.90798e-12 1.32477e-13 -2.59609e-12) (-5.39976e-11 1.38697e-11 -2.26812e-11) (-7.32854e-11 2.02415e-11 -3.25308e-11) (-1.10048e-11 3.08413e-12 -6.96894e-12) (5.5592e-12 -6.39216e-13 -5.31387e-13) (1.47983e-10 -1.78963e-11 2.58273e-11) (4.37899e-10 -3.77399e-11 1.10881e-10) (4.66218e-10 -1.97007e-11 1.50709e-10) (1.6768e-10 3.41925e-12 7.13117e-11) (3.83865e-12 1.22802e-12 2.77639e-12) (-4.58083e-11 1.01097e-11 -2.22001e-11) (-3.92495e-10 5.9967e-11 -2.7639e-10) (-7.47345e-10 1.1393e-10 -6.49246e-10) (-5.99251e-10 7.73915e-11 -5.82287e-10) (-1.96978e-10 -5.39879e-12 -2.03126e-10) (-1.75002e-11 -1.46362e-11 -1.87133e-11) (4.10172e-12 -2.2621e-11 9.83987e-12) (3.67546e-11 -6.68552e-11 1.08272e-10) (7.17053e-11 -4.91652e-11 3.67327e-10) (1.16432e-10 1.7307e-10 7.70211e-10) (1.91875e-10 5.46227e-10 9.11405e-10) (1.6494e-10 6.07028e-10 4.87725e-10) (2.54086e-11 3.09597e-10 7.53345e-11) (-4.29478e-11 9.14482e-11 -2.56425e-11) (-7.38469e-11 1.32571e-11 -3.73904e-11) (-9.77897e-11 -4.5139e-11 -4.55547e-11) (-5.34946e-11 -5.11624e-11 -4.21032e-11) (-5.76096e-12 -2.25604e-11 -3.3499e-11) (2.83748e-11 -9.1296e-12 -4.33939e-11) (8.026e-11 4.71117e-12 -4.96812e-11) (9.80703e-11 7.36782e-12 -2.05339e-11) (6.54682e-11 -5.52944e-12 7.61658e-12) (2.38605e-11 -1.46309e-11 1.12505e-11) (1.41304e-12 -1.90885e-11 8.34031e-12) (-2.77958e-11 -3.75386e-11 8.72009e-12) (-6.04122e-11 -4.90026e-11 5.53029e-12) (-3.62377e-11 -3.27225e-11 8.04603e-13) (-5.24106e-12 -1.34952e-11 -2.90446e-13) (2.3499e-12 -7.627e-12 -3.5421e-13) (5.27365e-13 -1.62693e-12 -3.98094e-13) (-3.24846e-10 9.74999e-11 -6.86147e-11) (-5.69315e-10 2.10895e-10 -2.42677e-10) (-3.69983e-10 1.07375e-10 -2.28458e-10) (-6.59261e-11 -1.75698e-12 -5.6282e-11) (3.23994e-12 -7.31874e-12 -2.18378e-12) (1.56604e-10 -6.99132e-11 6.11611e-11) (7.078e-10 -1.29897e-10 3.18162e-10) (1.31267e-09 -3.36439e-11 5.97955e-10) (1.26247e-09 1.25822e-10 5.66477e-10) (5.71401e-10 1.39824e-10 2.3663e-10) (7.84247e-11 4.56593e-11 1.71126e-11) (-2.79336e-12 1.61635e-11 -1.76318e-11) (-7.4865e-11 1.93774e-11 -1.18278e-10) (-1.17205e-10 -4.5827e-11 -2.1271e-10) (-6.82744e-11 -1.2011e-10 -2.0138e-10) (-1.52603e-11 -1.43629e-10 -1.31265e-10) (-5.4218e-12 -9.15922e-11 -4.04619e-11) (-1.60127e-11 -3.3672e-11 9.36981e-12) (-7.29606e-11 -1.53868e-11 9.6951e-11) (-2.0792e-10 1.31388e-10 4.42089e-10) (-1.6262e-10 4.72089e-10 9.61574e-10) (1.43751e-10 6.97316e-10 1.08731e-09) (2.46659e-10 4.71946e-10 5.46812e-10) (7.58219e-11 1.05524e-10 7.07451e-11) (3.0043e-12 4.24926e-12 -5.34813e-12) (-3.1813e-11 -2.37347e-11 -8.38921e-11) (-1.32524e-10 -1.00347e-10 -2.58835e-10) (-1.42765e-10 -1.00306e-10 -3.12564e-10) (-6.18108e-11 -3.15567e-11 -1.99389e-10) (-1.1267e-11 5.56092e-12 -7.30041e-11) (-2.7766e-12 5.11627e-12 -1.2932e-11) (-4.32083e-12 1.28898e-12 -9.63378e-13) (-3.22021e-11 -6.2193e-12 9.59598e-12) (-7.0583e-11 -3.15243e-11 2.82382e-11) (-4.00645e-11 -3.4929e-11 2.06035e-11) (-4.07998e-12 -2.38477e-11 7.4022e-12) (1.62841e-11 -3.4824e-11 5.3125e-12) (1.82414e-11 -3.52889e-11 6.57544e-12) (-2.36261e-12 -1.10443e-11 4.11641e-12) (-5.4076e-11 -1.39327e-12 3.31145e-12) (7.01849e-10 7.66522e-12 -1.10934e-10) (5.09345e-10 1.03177e-11 -1.29183e-10) (2.43626e-10 5.618e-12 -8.0315e-11) (6.26796e-11 1.75441e-12 -3.76443e-11) (-1.53121e-11 -1.61786e-14 -5.5167e-11) (-1.28826e-10 -5.06208e-12 -1.59229e-10) (-6.68947e-11 -3.32323e-12 -9.14162e-11) (1.86048e-13 3.83667e-13 -6.55485e-12) (2.95924e-12 6.67414e-13 1.84506e-12) (3.91313e-12 2.19668e-12 2.11502e-11) (2.64183e-12 1.22903e-12 3.05654e-11) (8.25995e-12 -5.5692e-14 1.18782e-11) (1.86169e-11 -2.72e-13 3.79012e-12) (2.20777e-11 -1.93324e-14 -5.77497e-12) (5.89931e-12 5.73834e-14 -6.32059e-12) (-2.10015e-12 -6.54144e-14 -5.56932e-12) (-7.15211e-12 -1.8361e-13 -6.16749e-12) (-1.88141e-12 -7.51138e-14 -1.66918e-12) (5.7709e-14 -5.93767e-15 -1.35558e-13) (1.07284e-12 5.10338e-15 -1.59525e-13) (1.66666e-12 5.48711e-14 2.55942e-13) (1.16653e-12 7.54193e-14 6.00881e-13) (5.88347e-13 8.36756e-14 7.95142e-13) (-2.02051e-13 1.0349e-13 8.28003e-13) (-2.71001e-12 2.27303e-13 1.25251e-12) (-9.99976e-12 3.81584e-13 9.39275e-13) (-1.11781e-11 1.66978e-13 -4.46726e-13) (-3.16449e-12 -4.61636e-14 -4.02757e-13) (-1.61458e-13 -1.68139e-14 -1.20847e-13) (9.45389e-15 1.51596e-15 -1.6273e-13) (-7.50393e-15 8.54157e-15 -4.43103e-14) (-6.23472e-14 4.36477e-14 2.91357e-13) (3.59417e-12 2.45016e-13 7.0659e-12) (4.99444e-11 -4.6368e-14 3.28989e-11) (2.00711e-10 -1.06336e-12 6.10911e-11) (3.15326e-10 2.7967e-13 4.95008e-11) (3.14516e-10 -1.17674e-12 3.66075e-11) (3.44035e-10 -3.25063e-12 3.49455e-11) (4.79478e-10 -3.99894e-12 2.42425e-11) (6.64525e-10 -7.56102e-13 -3.13228e-11) (7.71138e-09 -2.73425e-11 -1.09098e-09) (8.01122e-09 -6.14301e-11 -1.05021e-09) (6.79564e-09 -9.36514e-11 -5.184e-10) (4.19587e-09 -3.75785e-11 -2.70707e-10) (9.97299e-10 8.88841e-12 -3.35276e-10) (-9.88535e-11 1.03257e-11 -2.85971e-10) (-7.52097e-10 2.15197e-11 -3.47667e-10) (-1.97193e-10 1.75268e-11 7.23021e-11) (2.09381e-11 3.27398e-11 3.82051e-10) (2.27163e-10 3.29617e-11 6.23825e-10) (1.93933e-10 -7.96014e-12 3.24569e-10) (1.61138e-10 -1.83233e-11 9.60196e-11) (2.34066e-10 -1.66471e-11 9.00285e-12) (3.30563e-10 -2.71108e-12 -8.47271e-11) (2.57666e-10 9.03326e-12 -1.45076e-10) (8.01091e-11 6.85962e-12 -1.14268e-10) (-6.68512e-12 2.71371e-12 -6.60282e-11) (-8.64144e-12 6.37275e-13 -1.64624e-11) (8.20756e-13 4.86564e-14 -1.65446e-13) (3.14437e-11 1.44718e-12 1.50013e-11) (9.2622e-11 5.37558e-12 4.93727e-11) (1.0946e-10 8.35311e-12 6.30728e-11) (8.424e-11 9.15359e-12 5.7096e-11) (3.6877e-11 6.77921e-12 3.39611e-11) (1.95768e-12 1.91532e-12 7.654e-12) (-2.14619e-11 5.19984e-13 -9.99593e-13) (-7.02429e-11 -4.41948e-12 -2.80148e-11) (-4.05942e-11 -4.57782e-12 -2.57045e-11) (-2.97629e-12 -3.13427e-13 -3.35569e-12) (3.13627e-13 1.12852e-13 9.37147e-15) (2.83409e-12 1.55322e-12 4.96467e-12) (1.17803e-11 4.94756e-12 4.01552e-11) (5.21755e-11 3.38244e-12 8.6858e-11) (2.54413e-10 1.47385e-12 1.03951e-10) (1.14505e-09 1.6901e-11 -5.58052e-11) (2.39468e-09 5.43678e-11 -5.11792e-10) (2.80965e-09 3.39445e-11 -6.17138e-10) (3.13944e-09 -1.59898e-11 -4.68626e-10) (4.23741e-09 -4.58519e-11 -4.32754e-10) (6.03355e-09 -4.30492e-11 -6.93094e-10) (4.69455e-09 -1.13056e-10 -7.84514e-10) (4.90713e-09 -2.10623e-10 -6.55677e-10) (4.32342e-09 -2.57493e-10 -9.56085e-11) (3.06009e-09 -1.53018e-10 2.84978e-10) (9.09019e-10 6.88751e-12 -1.20944e-11) (3.6462e-12 1.94304e-11 -7.78546e-11) (-1.01596e-09 1.71151e-10 -4.73734e-10) (-1.00488e-09 1.51829e-10 1.8048e-10) (-1.35333e-10 7.16925e-11 7.54392e-10) (7.01107e-10 1.90203e-11 1.35383e-09) (7.34365e-10 -8.32886e-11 7.43345e-10) (3.93978e-10 -8.71926e-11 1.92012e-10) (2.05041e-10 -4.52573e-11 1.81742e-11) (1.51305e-10 -1.56345e-11 -2.88684e-11) (1.85848e-10 3.09048e-12 -7.37124e-11) (2.26343e-10 1.83336e-11 -1.45354e-10) (1.21067e-10 1.70166e-11 -1.48204e-10) (2.11271e-11 7.76238e-12 -6.47518e-11) (3.77576e-12 1.21343e-12 -5.27911e-12) (2.47564e-11 2.73569e-12 1.04432e-11) (1.51897e-10 1.18399e-11 8.79808e-11) (2.76264e-10 2.1358e-11 1.49843e-10) (2.90559e-10 2.85875e-11 1.52901e-10) (2.08792e-10 3.11785e-11 1.19656e-10) (7.91729e-11 1.79281e-11 5.41547e-11) (4.42914e-12 1.66197e-12 3.7002e-12) (-1.16899e-11 -1.05365e-12 -6.60227e-12) (-6.18639e-11 -1.09053e-11 -5.12224e-11) (-1.84573e-11 -2.3482e-12 -2.08003e-11) (4.24706e-13 4.06042e-13 -1.65117e-13) (1.52789e-11 9.30795e-12 1.64525e-11) (4.72338e-11 2.24718e-11 8.57521e-11) (7.11589e-11 1.34877e-11 1.18954e-10) (1.44319e-10 4.7335e-12 6.21724e-11) (9.561e-10 3.57938e-11 -2.14365e-10) (3.01217e-09 1.28369e-10 -1.26217e-09) (3.68955e-09 1.07521e-10 -1.55647e-09) (3.2571e-09 9.99991e-13 -1.03343e-09) (3.22769e-09 -4.95799e-11 -6.53476e-10) (3.82887e-09 -6.56553e-11 -6.25062e-10) (1.12236e-09 -7.86052e-11 -2.66116e-10) (1.02124e-09 -1.1525e-10 -2.17761e-10) (6.45511e-10 -1.03067e-10 -5.76074e-12) (2.83832e-10 -4.37795e-11 1.21388e-10) (1.08014e-11 2.18363e-12 1.88119e-11) (-5.23456e-10 1.22274e-10 -1.44039e-10) (-4.6182e-09 7.59956e-10 -1.33662e-09) (-4.39623e-09 6.09748e-10 -3.20178e-11) (-7.4015e-10 8.97962e-11 8.60905e-10) (5.23073e-10 -7.83529e-11 1.51955e-09) (7.94634e-10 -1.79434e-10 9.08418e-10) (2.75781e-10 -1.04347e-10 1.75159e-10) (3.44211e-11 -2.0203e-11 7.58557e-12) (1.19301e-12 -1.2937e-12 -1.16121e-12) (1.40882e-12 -4.23174e-14 -3.39623e-12) (2.87354e-11 6.55937e-12 -3.16316e-11) (8.67491e-11 2.30851e-11 -1.1373e-10) (4.00916e-11 2.14025e-11 -1.16391e-10) (3.13971e-14 7.39621e-12 -3.17432e-11) (1.12652e-13 2.00113e-13 -7.44112e-14) (2.54252e-11 4.23634e-12 2.72091e-11) (1.23521e-10 1.14701e-11 1.02717e-10) (1.66226e-10 1.84659e-11 1.1955e-10) (1.17895e-10 2.32631e-11 8.85295e-11) (4.21795e-11 1.56426e-11 4.20489e-11) (1.04101e-12 2.23852e-12 4.75403e-12) (-2.27309e-11 -7.10667e-13 -5.52045e-12) (-1.97267e-10 -3.04366e-11 -1.13534e-10) (-1.90505e-10 -2.34045e-11 -1.35903e-10) (-1.21493e-11 3.53002e-12 -9.23426e-12) (4.62897e-12 9.21425e-12 8.97475e-12) (3.28498e-11 3.36487e-11 8.25232e-11) (2.26082e-11 1.60059e-11 9.9092e-11) (9.38401e-12 -1.72179e-13 1.31133e-11) (2.45534e-10 3.65575e-12 -1.25036e-10) (2.05387e-09 7.62558e-11 -1.34746e-09) (2.85271e-09 8.43922e-11 -1.81395e-09) (1.796e-09 -2.37762e-11 -9.21501e-10) (1.09943e-09 -4.86139e-11 -3.56105e-10) (9.9462e-10 -5.02561e-11 -2.2387e-10) (6.19438e-10 -8.41213e-11 -1.74192e-10) (5.98074e-10 -1.25679e-10 -1.85855e-10) (3.07455e-10 -9.18194e-11 -3.52044e-11) (7.54115e-11 -2.86462e-11 6.10488e-11) (-6.00906e-11 1.05222e-11 1.07198e-10) (-1.96903e-09 3.97175e-10 1.42193e-11) (-1.16464e-08 1.92942e-09 -2.55193e-09) (-1.2969e-08 1.7142e-09 -1.50887e-09) (-3.04522e-09 1.78726e-10 1.14335e-09) (-4.79663e-11 -1.89372e-10 1.36909e-09) (9.45284e-10 -3.44289e-10 1.3561e-09) (4.58794e-10 -2.0389e-10 3.90967e-10) (3.25359e-11 -2.71908e-11 3.00492e-11) (-8.56754e-12 -3.79293e-12 2.24259e-12) (-4.45729e-11 -2.20141e-12 -4.19988e-12) (-9.42059e-12 2.40869e-12 -7.72375e-12) (2.10323e-11 1.79673e-11 -5.64108e-11) (6.16535e-11 4.95718e-11 -1.94826e-10) (-1.04495e-11 3.53944e-11 -1.43355e-10) (-1.56265e-11 8.07885e-12 -2.10186e-11) (-2.2559e-12 9.3117e-13 2.7454e-12) (2.4333e-11 2.615e-12 5.42514e-11) (1.1617e-10 9.00847e-12 1.4259e-10) (1.21894e-10 2.39497e-11 1.38877e-10) (4.31464e-11 2.21544e-11 7.23818e-11) (-4.62398e-12 7.42801e-12 1.89452e-11) (-8.10037e-11 1.92289e-12 2.39806e-12) (-5.72451e-10 -6.82184e-11 -2.13949e-10) (-9.63273e-10 -1.16102e-10 -5.1323e-10) (-2.63938e-10 1.23398e-11 -1.45277e-10) (-7.7635e-12 1.17105e-11 4.79761e-12) (1.55675e-11 5.1105e-11 9.84152e-11) (-8.40271e-12 3.01841e-11 1.55083e-10) (-1.92799e-11 -2.79845e-12 3.23978e-11) (1.13217e-11 -3.92368e-12 -2.43132e-11) (1.17486e-09 6.11865e-12 -1.1364e-09) (3.07181e-09 5.76206e-11 -2.44558e-09) (1.90585e-09 -4.77655e-11 -1.25556e-09) (8.11315e-10 -5.77474e-11 -3.50395e-10) (5.51684e-10 -5.09356e-11 -1.44878e-10) (7.77045e-10 -1.36865e-10 -2.23361e-10) (9.07283e-10 -2.46322e-10 -3.2775e-10) (6.16636e-10 -2.13194e-10 -1.73208e-10) (1.53998e-10 -5.66132e-11 4.32601e-11) (-1.59104e-11 9.34016e-12 1.20952e-10) (-1.35648e-09 3.93697e-10 3.46237e-10) (-1.17441e-08 2.46948e-09 -1.95116e-09) (-1.96631e-08 3.00126e-09 -3.70974e-09) (-7.70041e-09 4.3212e-10 4.26126e-10) (-7.28007e-10 -2.70961e-10 9.08494e-10) (6.32699e-10 -4.95816e-10 1.23731e-09) (1.15394e-09 -4.94349e-10 9.76869e-10) (3.70487e-10 -1.37683e-10 3.1785e-10) (2.21344e-12 -9.94819e-12 3.69298e-11) (-8.59707e-11 -9.81481e-12 3.51773e-11) (-9.17013e-11 -2.85168e-12 7.44008e-12) (-5.69072e-12 4.2964e-12 -8.57769e-12) (7.72825e-11 6.09718e-11 -1.53896e-10) (1.00687e-10 1.08658e-10 -3.48071e-10) (-2.207e-11 4.81285e-11 -1.55395e-10) (-2.08072e-11 6.51424e-12 -1.51204e-11) (-6.9826e-12 8.39735e-14 8.16367e-12) (3.33115e-11 -3.32589e-12 9.12604e-11) (2.0763e-10 2.51051e-11 2.79284e-10) (2.32088e-10 7.06806e-11 2.96792e-10) (4.9645e-11 3.99375e-11 1.1893e-10) (-2.9938e-11 7.32066e-12 2.36815e-11) (-4.99885e-10 -4.87126e-11 -1.09638e-10) (-1.8104e-09 -2.28071e-10 -8.23415e-10) (-1.22619e-09 -2.84638e-11 -6.43741e-10) (-7.24224e-11 3.81386e-11 -1.44299e-11) (2.049e-11 8.37423e-11 1.29052e-10) (2.94324e-11 8.7614e-11 3.37158e-10) (-7.03805e-11 8.49994e-13 1.39968e-10) (-2.97845e-11 -8.34418e-12 -9.55687e-12) (3.06871e-10 -3.16771e-11 -5.80676e-10) (3.10798e-09 9.66541e-12 -2.89037e-09) (3.17218e-09 -4.99592e-11 -2.24079e-09) (1.38255e-09 -7.59795e-11 -6.70419e-10) (7.61416e-10 -7.31905e-11 -2.19012e-10) (1.07742e-09 -2.26122e-10 -3.51772e-10) (1.28537e-09 -4.39343e-10 -5.48066e-10) (1.06441e-09 -4.27881e-10 -4.4636e-10) (3.42854e-10 -1.18195e-10 -3.5056e-11) (2.88106e-11 7.97016e-12 6.25882e-11) (-5.98767e-10 3.01685e-10 3.32131e-10) (-7.78682e-09 2.25256e-09 -6.76168e-10) (-1.97649e-08 3.72898e-09 -4.42671e-09) (-1.25531e-08 8.84689e-10 -1.5784e-09) (-2.29516e-09 -5.24266e-10 5.76082e-10) (-6.7819e-11 -4.10025e-10 5.08964e-10) (8.07624e-10 -5.86751e-10 8.93181e-10) (1.01842e-09 -3.00457e-10 9.28338e-10) (2.51044e-10 -3.26868e-11 3.95938e-10) (-3.50469e-11 -8.04505e-12 1.05149e-10) (-1.15794e-10 -1.62035e-11 6.30466e-11) (-4.23528e-11 -8.5702e-13 5.85363e-12) (6.62051e-12 1.29301e-11 -2.0089e-11) (2.48739e-10 1.61748e-10 -3.42762e-10) (1.96983e-10 1.76116e-10 -4.80426e-10) (-1.19006e-11 4.09049e-11 -1.32759e-10) (-3.32552e-11 1.85807e-12 -1.71516e-11) (-2.6763e-11 -6.8769e-12 1.91748e-11) (2.55935e-11 -3.28722e-12 1.35872e-10) (3.44195e-10 9.17969e-11 5.18935e-10) (4.35194e-10 1.74427e-10 5.78125e-10) (5.39503e-11 4.83943e-11 1.4656e-10) (-9.80741e-11 -1.44179e-13 1.48975e-11) (-1.5598e-09 -1.87491e-10 -5.94791e-10) (-2.73319e-09 -1.64961e-10 -1.37388e-09) (-4.49669e-10 1.00755e-10 -1.87384e-10) (1.17944e-11 8.52764e-11 1.02443e-10) (2.13625e-10 2.1108e-10 6.84247e-10) (-5.83896e-11 4.09368e-11 4.20425e-10) (-1.97045e-10 -2.86769e-11 5.83615e-11) (-1.15583e-10 -5.20727e-11 -2.6738e-10) (1.21569e-09 -1.15364e-10 -1.85087e-09) (3.53371e-09 -1.06099e-10 -2.84898e-09) (2.2923e-09 -9.06232e-11 -1.22969e-09) (1.20022e-09 -1.07521e-10 -4.08096e-10) (1.73139e-09 -4.04411e-10 -6.82018e-10) (1.78842e-09 -7.49743e-10 -8.78605e-10) (1.44885e-09 -7.06653e-10 -7.44724e-10) (7.23014e-10 -2.33424e-10 -2.29199e-10) (1.21622e-10 1.80428e-11 3.35544e-11) (-1.41652e-10 1.79176e-10 1.43936e-10) (-3.79701e-09 1.62839e-09 -4.14396e-11) (-1.40451e-08 3.51497e-09 -3.3057e-09) (-1.33903e-08 1.31579e-09 -3.18925e-09) (-4.60327e-09 -8.15661e-10 -3.19589e-10) (-7.01293e-10 -6.34248e-10 3.11984e-10) (5.2025e-11 -4.20648e-10 4.18896e-10) (4.55448e-10 -2.69863e-10 7.25042e-10) (5.33451e-10 -4.06714e-11 8.26401e-10) (1.36847e-10 -3.40292e-12 3.73966e-10) (-1.90273e-11 -1.43968e-11 9.95127e-11) (-3.597e-11 -1.01154e-11 3.41437e-11) (-4.94394e-12 9.63279e-13 8.52306e-13) (5.5801e-11 4.7217e-11 -6.22276e-11) (5.3662e-10 3.01236e-10 -5.55251e-10) (3.28708e-10 2.14892e-10 -5.43769e-10) (-1.12084e-11 2.57656e-11 -1.22319e-10) (-1.20179e-10 -1.54219e-11 -4.20865e-11) (-1.55645e-10 -2.50591e-11 5.82194e-11) (-1.10386e-11 2.08974e-11 2.0219e-10) (4.87967e-10 2.19002e-10 8.02381e-10) (5.88769e-10 2.58788e-10 7.69039e-10) (1.96302e-11 2.57552e-11 7.72777e-11) (-4.56269e-10 -2.88031e-11 -1.11772e-10) (-3.11125e-09 -2.09951e-10 -1.47235e-09) (-1.47138e-09 1.2502e-10 -7.11474e-10) (-1.70816e-11 4.80474e-11 3.70796e-11) (4.784e-10 3.37413e-10 1.00931e-09) (1.83967e-10 1.79868e-10 1.08593e-09) (-2.99795e-10 -7.93822e-12 2.65862e-10) (-6.44222e-10 -1.26777e-10 -2.62343e-10) (-7.15903e-11 -1.78361e-10 -9.28449e-10) (1.55363e-09 -2.13455e-10 -1.9551e-09) (2.38074e-09 -1.24057e-10 -1.52924e-09) (1.85604e-09 -1.61837e-10 -7.65238e-10) (2.32004e-09 -6.23176e-10 -1.07875e-09) (1.90244e-09 -9.49464e-10 -1.00798e-09) (1.33905e-09 -8.28401e-10 -8.53338e-10) (1.02765e-09 -3.30521e-10 -5.7713e-10) (4.67297e-10 7.95329e-11 -1.10601e-10) (9.85261e-12 1.44296e-10 5.11665e-11) (-1.78328e-09 1.14575e-09 9.47265e-11) (-8.29555e-09 2.77606e-09 -1.83369e-09) (-9.81943e-09 1.37596e-09 -3.03506e-09) (-4.64302e-09 -7.43743e-10 -1.04826e-09) (-1.33963e-09 -9.17678e-10 5.8868e-11) (-3.72158e-10 -4.98451e-10 2.91804e-10) (-8.84509e-11 -1.80092e-10 3.89667e-10) (1.16096e-10 -4.07364e-11 5.88125e-10) (2.60392e-10 -5.09901e-12 5.26008e-10) (1.70785e-10 -2.92972e-11 2.61865e-10) (3.91955e-11 -1.83965e-11 9.19002e-11) (-5.17134e-12 -2.22275e-12 2.01835e-11) (-6.51612e-13 1.39977e-12 2.16679e-14) (1.50623e-10 9.6845e-11 -1.23846e-10) (9.41649e-10 3.9908e-10 -7.31743e-10) (4.67268e-10 2.05057e-10 -5.79736e-10) (-4.64409e-11 1.40386e-11 -1.35379e-10) (-6.01428e-10 -4.52466e-11 -1.39277e-10) (-6.33494e-10 -7.99467e-12 1.44322e-10) (-6.12468e-11 6.6177e-11 2.71713e-10) (5.49732e-10 2.82275e-10 8.82992e-10) (4.79018e-10 2.08059e-10 5.83943e-10) (-7.61289e-12 6.11238e-12 9.9545e-12) (-1.34478e-09 -2.75877e-11 -5.84131e-10) (-2.19099e-09 8.08575e-11 -1.11281e-09) (-6.90762e-11 4.25233e-11 -8.28111e-13) (5.17099e-10 3.32218e-10 9.59525e-10) (8.08675e-10 4.44421e-10 2.17286e-09) (-2.07101e-10 7.83436e-11 6.49565e-10) (-7.60611e-10 -1.13983e-10 6.11372e-12) (-7.75941e-10 -3.36167e-10 -7.77733e-10) (9.57168e-11 -2.89129e-10 -9.60888e-10) (1.00863e-09 -2.31966e-10 -1.03521e-09) (1.87176e-09 -2.80299e-10 -1.01856e-09) (7.12616e-10 -3.3996e-10 -4.00408e-10) (9.60695e-10 -6.82745e-10 -6.97805e-10) (9.3558e-10 -8.74334e-10 -1.25551e-09) (1.03396e-09 -4.4855e-10 -1.48496e-09) (8.03505e-10 2.0984e-10 -7.14227e-10) (1.06601e-10 2.53051e-10 -3.95661e-11) (-1.1123e-09 9.67905e-10 1.47111e-10) (-5.34895e-09 2.09437e-09 -7.48584e-10) (-5.28673e-09 9.42554e-10 -1.72644e-09) (-1.91208e-09 -3.73773e-10 -6.96938e-10) (-7.05946e-10 -5.84952e-10 -1.08788e-10) (-6.25985e-10 -5.05325e-10 1.44957e-10) (-6.2235e-10 -2.20617e-10 4.13332e-10) (-2.61183e-10 -3.08574e-11 5.00537e-10) (7.62972e-11 -2.3781e-11 3.57781e-10) (3.60527e-10 -7.2827e-11 3.50148e-10) (4.40431e-10 -6.89835e-11 3.30454e-10) (1.01706e-10 -6.87405e-12 1.34181e-10) (-5.90988e-12 6.05119e-12 2.19002e-11) (-9.37648e-13 5.67248e-12 -2.45495e-12) (3.07295e-10 1.34311e-10 -2.35177e-10) (1.40971e-09 3.89093e-10 -9.57866e-10) (3.94296e-10 1.51047e-10 -5.13926e-10) (-2.77476e-10 4.26797e-11 -2.49888e-10) (-2.00491e-09 5.86106e-11 -3.20319e-10) (-1.06374e-09 9.294e-11 1.79731e-10) (-4.07674e-11 6.71103e-11 2.29015e-10) (4.94965e-10 2.02763e-10 6.8778e-10) (1.93525e-10 9.77438e-11 2.32156e-10) (-7.96866e-11 2.31344e-11 -2.18135e-11) (-1.2337e-09 1.05571e-10 -6.66964e-10) (-2.00658e-10 6.04847e-11 -7.38057e-11) (2.67468e-10 1.95537e-10 5.37609e-10) (1.48828e-09 6.63077e-10 3.06446e-09) (1.98471e-10 2.87874e-10 1.62471e-09) (-2.3313e-10 -2.71069e-11 1.80308e-10) (-4.7955e-10 -2.72175e-10 -2.549e-10) (-2.71268e-10 -4.19549e-10 -5.83367e-10) (7.88993e-11 -2.41762e-10 -3.93694e-10) (3.24232e-10 -1.80734e-10 -3.07057e-10) (-2.09392e-11 -6.30604e-11 -3.00126e-11) (-1.85915e-11 -2.27103e-10 -2.05639e-10) (-7.07682e-12 -7.642e-10 -1.3666e-09) (7.46088e-11 -6.72185e-10 -2.94276e-09) (4.66706e-10 3.42777e-10 -2.03995e-09) (1.96283e-10 5.47315e-10 -4.57118e-10) (-4.92449e-10 7.20014e-10 1.24717e-11) (-2.63867e-09 1.20161e-09 -6.82937e-11) (-1.97474e-09 3.53802e-10 -5.0961e-10) (-3.05819e-10 -1.11765e-10 -1.71648e-10) (-1.02814e-10 -1.69633e-10 -5.58259e-11) (-4.16281e-10 -2.42924e-10 8.23178e-12) (-1.38456e-09 -1.48162e-10 3.82546e-10) (-8.34748e-10 1.63265e-11 6.63971e-10) (-3.80568e-11 -3.89703e-11 3.67214e-10) (3.52513e-10 -1.36773e-10 3.53941e-10) (7.51e-10 -1.80027e-10 4.08942e-10) (3.88296e-10 -2.39544e-11 2.77616e-10) (1.64924e-11 2.30874e-11 7.20656e-11) (-3.59806e-11 2.56286e-11 1.92183e-11) (3.73904e-12 1.80514e-11 -2.72016e-11) (6.84505e-10 1.43886e-10 -5.75605e-10) (1.34807e-09 2.52609e-10 -1.08072e-09) (5.47729e-11 9.30559e-11 -2.78339e-10) (-1.26812e-09 2.27781e-10 -4.7434e-10) (-2.72994e-09 2.9356e-10 -3.27364e-10) (-4.82902e-10 7.32535e-11 9.03318e-11) (3.81658e-11 3.64043e-11 1.65151e-10) (3.64518e-10 1.23525e-10 4.44017e-10) (2.45713e-11 3.04267e-11 3.75756e-11) (-1.64492e-10 6.32539e-11 -9.82297e-11) (-1.72355e-10 5.66994e-11 -1.01132e-10) (7.28442e-11 7.45309e-11 1.71182e-10) (1.6619e-09 6.11027e-10 2.93412e-09) (1.30412e-09 5.55642e-10 3.22586e-09) (7.0398e-11 -4.94303e-12 5.72778e-10) (-1.0948e-11 -6.83531e-11 1.44627e-11) (2.18888e-11 -3.22038e-10 -1.91047e-10) (2.98071e-11 -2.87558e-10 -2.22765e-10) (-1.55101e-11 -9.27075e-11 -6.1689e-11) (-2.93323e-11 -3.21336e-11 -2.12259e-11) (-2.42346e-10 -1.44405e-10 -1.24099e-10) (-1.06309e-09 -5.71005e-10 -1.04968e-09) (-2.4528e-09 -7.79268e-10 -3.37458e-09) (-1.70503e-09 2.7642e-10 -3.41394e-09) (-2.16027e-10 8.30228e-10 -1.41264e-09) (-5.38641e-11 6.3816e-10 -3.32447e-10) (-2.78961e-10 3.31682e-10 -4.18875e-11) (-2.36269e-10 6.0772e-11 -2.38023e-11) (-4.35206e-11 -3.40418e-11 -8.47713e-12) (-3.46111e-11 -6.27955e-11 -6.82169e-12) (-3.30591e-10 -8.13561e-11 -3.30233e-11) (-1.67243e-09 1.38323e-10 1.68268e-10) (-1.12942e-09 1.57764e-10 6.7785e-10) (-5.85e-11 -5.75032e-11 5.91633e-10) (6.12298e-10 -2.96663e-10 6.98667e-10) (8.10586e-10 -3.22259e-10 4.42799e-10) (2.49811e-10 -5.20904e-11 1.40854e-10) (2.05546e-12 1.99516e-11 3.80858e-11) (-1.49893e-10 9.74389e-11 7.08313e-11) (-7.09754e-11 4.42893e-11 -2.22245e-11) (1.35563e-10 2.7284e-11 -2.31684e-10) (1.25639e-09 3.13698e-11 -1.13488e-09) (4.58994e-10 1.36902e-10 -5.69047e-10) (-2.55564e-10 1.5188e-10 -2.0089e-10) (-2.12666e-09 4.6057e-10 -3.2543e-10) (-1.12896e-09 1.52589e-10 -3.58505e-11) (-3.76489e-11 6.65241e-12 3.70116e-11) (1.34141e-10 3.53e-11 2.11018e-10) (1.22326e-10 7.12271e-11 1.39663e-10) (-3.85067e-12 1.8616e-11 -4.53209e-12) (-5.10749e-11 3.83811e-11 -5.40521e-11) (1.32807e-11 1.7236e-11 2.5185e-11) (1.29945e-09 3.3842e-10 1.88778e-09) (2.80918e-09 5.05582e-10 4.30629e-09) (1.4265e-09 -8.49508e-11 2.12757e-09) (5.44747e-10 -3.66391e-10 4.54049e-10) (5.07034e-10 -5.49988e-10 -2.38579e-12) (3.35958e-10 -4.0641e-10 -1.9396e-10) (4.67524e-11 -9.43545e-11 -7.31413e-11) (8.09129e-11 -1.85792e-11 -1.99656e-11) (-6.59486e-13 2.24443e-13 -1.39921e-12) (-5.5384e-10 -2.52504e-11 -2.97923e-10) (-4.29929e-09 -2.23972e-10 -2.37273e-09) (-6.40771e-09 7.66408e-11 -3.82803e-09) (-2.02336e-09 5.64559e-10 -1.8483e-09) (-4.64579e-11 4.66891e-10 -6.28408e-10) (3.03418e-10 3.72972e-10 -3.26091e-10) (1.10456e-10 6.24197e-11 -5.27597e-11) (4.15217e-12 -3.62493e-12 9.40747e-13) (-1.24207e-10 -5.55628e-11 2.5354e-11) (-1.4954e-09 3.11454e-11 -1.82928e-11) (-2.8239e-09 5.39029e-10 1.22016e-10) (-8.86523e-10 2.15729e-10 5.23663e-10) (1.50879e-10 -9.52372e-11 7.77942e-10) (1.46317e-09 -6.29312e-10 1.42174e-09) (1.10486e-09 -4.97569e-10 6.70686e-10) (7.50577e-11 -3.25786e-11 5.44099e-11) (-7.05358e-11 3.92537e-11 3.20881e-11) (-6.42574e-10 3.19279e-10 1.30303e-10) (-3.80052e-10 1.76436e-10 -9.76551e-12) (4.91824e-12 5.29914e-12 -7.26017e-11) (8.88283e-10 -1.81069e-10 -8.78545e-10) (1.02301e-09 -5.55709e-11 -9.434e-10) (3.00891e-11 7.47714e-11 -1.31381e-10) (-5.40863e-10 2.80102e-10 -9.00421e-11) (-8.334e-10 2.06891e-10 7.32753e-11) (-1.24283e-10 3.49871e-12 7.83176e-11) (1.27109e-11 -5.5839e-12 8.74495e-11) (3.50554e-11 1.78819e-11 4.82355e-11) (7.25147e-12 2.18691e-11 -8.72472e-12) (-1.35192e-11 5.9069e-11 -7.94396e-11) (5.95522e-12 1.09327e-11 -4.81869e-12) (5.79539e-10 7.93089e-11 6.23143e-10) (2.93297e-09 -1.38269e-11 3.42084e-09) (3.01577e-09 -5.14208e-10 3.24868e-09) (1.47324e-09 -7.69928e-10 1.18178e-09) (6.67183e-10 -6.58092e-10 1.99572e-10) (4.1514e-10 -4.45487e-10 -1.11458e-10) (2.67219e-10 -1.71629e-10 -1.05466e-10) (4.18369e-10 -8.85638e-11 8.29344e-11) (8.56542e-11 3.66619e-11 1.47025e-11) (-8.18068e-11 1.03784e-10 -4.28514e-11) (-2.07575e-09 6.11564e-10 -6.52221e-10) (-5.96598e-09 4.78382e-10 -1.45169e-09) (-3.83195e-09 -5.09356e-11 -1.02399e-09) (-3.6768e-10 2.43835e-11 -3.12929e-10) (3.19578e-10 1.66326e-10 -4.94237e-10) (1.1797e-09 3.72361e-10 -9.36485e-10) (2.65203e-10 7.88547e-11 -2.39008e-10) (-1.7358e-10 2.60803e-11 -5.34726e-11) (-3.39783e-09 4.90778e-10 -1.18727e-10) (-4.09654e-09 8.04903e-10 1.23047e-10) (-4.51223e-10 7.33787e-11 2.2455e-10) (4.08067e-10 -2.25039e-10 5.76084e-10) (2.51431e-09 -1.09527e-09 1.78246e-09) (1.40502e-09 -5.60447e-10 1.02709e-09) (3.53621e-11 5.71461e-13 1.00343e-10) (-5.03076e-10 2.72632e-10 1.51987e-10) (-1.75848e-09 8.39126e-10 1.97648e-10) (-9.70344e-10 4.04257e-10 6.00244e-11) (-3.21879e-11 3.45709e-12 -1.73861e-11) (3.0668e-10 -1.98121e-10 -3.48455e-10) (1.18155e-09 -4.77837e-10 -1.14935e-09) (3.93736e-10 -1.0175e-11 -4.94477e-10) (-7.96812e-12 5.38382e-11 -4.94579e-11) (-9.16716e-11 7.31132e-11 2.01809e-11) (-5.31745e-11 1.57198e-11 6.27079e-11) (-1.37729e-11 -1.26075e-11 8.07861e-11) (-4.1221e-12 -1.71777e-12 1.83697e-11) (-1.21113e-11 1.05894e-11 -1.12967e-11) (-6.48363e-11 1.05551e-10 -1.77367e-10) (3.5953e-12 7.48064e-11 -1.0476e-10) (8.69858e-11 2.39517e-11 2.98661e-11) (1.02364e-09 -1.44069e-10 9.21492e-10) (1.75729e-09 -5.99087e-10 1.71215e-09) (1.07521e-09 -6.63547e-10 8.68141e-10) (6.39048e-10 -5.65543e-10 2.5704e-10) (6.53603e-10 -5.42507e-10 8.5784e-11) (6.60171e-10 -3.74561e-10 8.60895e-11) (6.2738e-10 -2.21861e-10 3.9106e-10) (1.15935e-10 5.23882e-11 6.17481e-11) (-4.67158e-11 2.40593e-10 -1.7046e-11) (-7.57433e-10 7.306e-10 -1.42801e-10) (-1.7097e-09 5.82773e-10 -4.0364e-11) (-1.67169e-09 -5.91848e-11 6.89024e-11) (-7.0977e-10 -1.90801e-10 -1.32077e-10) (-1.2617e-10 -4.55398e-11 -2.63734e-10) (2.67477e-10 1.44868e-10 -8.7922e-10) (3.43352e-10 3.38874e-10 -9.46485e-10) (-2.29535e-10 2.54493e-10 -3.98749e-10) (-1.99257e-09 5.93708e-10 -5.30536e-10) (-2.09342e-09 2.67629e-10 -2.73467e-10) (-9.82718e-11 -5.19971e-11 1.86307e-12) (5.29666e-10 -4.95732e-10 2.52112e-10) (1.78851e-09 -1.05168e-09 1.084e-09) (6.36511e-10 -2.1867e-10 9.03349e-10) (-2.10948e-10 2.91543e-10 6.53935e-10) (-1.74251e-09 1.35353e-09 9.23475e-10) (-2.79272e-09 1.84434e-09 5.70918e-10) (-1.22788e-09 6.5479e-10 2.16847e-10) (-7.58408e-11 8.26615e-12 2.19529e-11) (4.10184e-11 -9.15699e-11 -4.75616e-11) (4.36593e-10 -5.13949e-10 -7.30014e-10) (3.98996e-10 -3.41966e-10 -1.16516e-09) (1.63775e-11 7.51216e-12 -3.55082e-10) (-1.22732e-11 8.1665e-12 -2.03926e-11) (-8.50219e-13 -7.93029e-13 3.3956e-12) (2.28542e-11 -1.80283e-11 5.69195e-11) (1.79231e-11 -5.50668e-12 5.33395e-11) (-7.5312e-12 6.27322e-12 3.44553e-12) (-1.41602e-10 1.11632e-10 -1.25354e-10) (-1.46553e-10 1.89983e-10 -2.59115e-10) (1.11296e-11 4.04941e-11 -4.81986e-11) (1.11496e-10 -1.0372e-11 2.49224e-11) (5.08092e-10 -2.38802e-10 2.73773e-10) (7.47925e-10 -5.23712e-10 4.92125e-10) (8.2419e-10 -7.04848e-10 6.24932e-10) (1.03675e-09 -8.65946e-10 7.80314e-10) (1.12685e-09 -7.46331e-10 7.74766e-10) (1.144e-09 -4.13038e-10 8.02157e-10) (4.57712e-10 1.05281e-10 2.76321e-10) (1.5569e-10 3.36253e-10 7.29487e-11) (-1.08073e-10 5.17579e-10 -1.14062e-12) (-3.71442e-10 3.11056e-10 4.10095e-11) (-9.03641e-10 6.12757e-11 1.30533e-10) (-1.67067e-09 -2.11638e-10 -7.4901e-11) (-1.51264e-09 -1.44565e-10 -7.07679e-10) (-6.93421e-10 8.04803e-11 -1.04368e-09) (-1.20214e-10 2.79601e-10 -9.17723e-10) (-4.93585e-12 2.90406e-10 -4.67208e-10) (-4.73033e-11 1.13249e-10 -1.39252e-10) (-8.14709e-12 -2.35979e-12 -2.39197e-11) (9.98426e-11 -1.8521e-10 -4.50774e-11) (4.99735e-10 -6.69979e-10 1.02522e-10) (2.86536e-10 -3.80765e-10 2.70539e-10) (-1.2142e-10 -5.33381e-12 3.49097e-10) (-2.35893e-09 1.38928e-09 1.76321e-09) (-5.68756e-09 4.0737e-09 2.64838e-09) (-3.83747e-09 3.20169e-09 1.3215e-09) (-8.09879e-10 6.81249e-10 3.37369e-10) (-3.19884e-11 7.71503e-12 5.07814e-11) (2.7731e-11 -6.5538e-11 2.63305e-11) (8.28311e-11 -1.93494e-10 -1.77762e-10) (1.23787e-11 -3.90828e-10 -1.18404e-09) (-2.26522e-10 -2.79279e-10 -1.44492e-09) (-1.06715e-10 -1.40101e-10 -4.0888e-10) (3.28132e-12 -4.71442e-11 -2.88407e-11) (4.81827e-11 -4.4494e-11 3.29096e-11) (7.64116e-11 -2.77543e-12 9.17612e-11) (7.23195e-12 4.06991e-11 4.88486e-11) (-1.09449e-10 1.29527e-10 -6.74648e-12) (-2.94353e-10 2.55806e-10 -1.78486e-10) (-9.287e-11 9.36589e-11 -1.00396e-10) (2.04719e-12 7.18153e-13 -2.7798e-12) (9.107e-11 -6.42804e-11 3.67024e-11) (2.92694e-10 -3.0129e-10 2.24638e-10) (4.97488e-10 -5.80739e-10 5.01548e-10) (8.89375e-10 -8.63735e-10 8.44486e-10) (1.35635e-09 -9.31156e-10 1.08431e-09) (1.29804e-09 -6.13169e-10 9.12493e-10) (1.15765e-09 -3.23436e-11 7.24848e-10) (8.92286e-10 5.0806e-10 4.53197e-10) (5.12106e-10 7.03639e-10 2.04195e-10) (-8.31829e-12 3.20144e-10 4.02873e-11) (-8.25578e-10 3.38974e-10 -2.7436e-12) (-3.94782e-09 2.75918e-10 -4.64613e-10) (-4.19907e-09 -5.95285e-11 -1.34902e-09) (-1.3062e-09 -6.31311e-11 -1.02575e-09) (-1.03723e-10 2.84851e-11 -3.25096e-10) (8.02492e-11 5.40424e-11 -1.09862e-10) (2.41964e-10 6.80024e-11 -6.9729e-11) (5.20563e-10 -6.07778e-11 -6.35394e-11) (7.79806e-10 -3.68406e-10 -9.90425e-11) (4.95524e-10 -3.81529e-10 -6.09034e-11) (4.32721e-11 -6.1378e-11 9.51013e-12) (-1.37692e-10 3.27157e-11 9.33436e-11) (-2.79069e-09 1.43983e-09 1.20442e-09) (-7.5787e-09 4.44051e-09 2.71135e-09) (-5.26927e-09 3.45525e-09 1.82413e-09) (-9.25278e-10 6.30334e-10 4.41781e-10) (-3.11821e-11 8.13689e-12 6.40803e-11) (1.74914e-11 -2.84265e-11 3.65193e-11) (1.24078e-11 -1.96799e-11 -1.50436e-11) (1.9889e-11 -1.31359e-10 -4.54393e-10) (-2.61792e-11 -4.02747e-10 -1.19772e-09) (-1.76239e-11 -4.70829e-10 -7.65138e-10) (-1.63379e-11 -2.26726e-10 -1.93571e-10) (-5.28342e-12 -2.12943e-11 -9.78413e-12) (-6.58809e-13 3.41656e-12 2.25644e-12) (-5.43173e-12 8.226e-11 4.07985e-11) (-6.45763e-11 1.56117e-10 6.7865e-11) (-1.50533e-10 1.51035e-10 3.85096e-11) (-8.20893e-11 4.98026e-11 4.16342e-12) (-1.44883e-12 -3.84887e-13 4.76037e-13) (3.07874e-11 -4.382e-11 1.10785e-11) (1.13553e-10 -1.58494e-10 3.06159e-11) (1.43703e-10 -2.26177e-10 6.47389e-11) (2.85876e-10 -3.71648e-10 2.15877e-10) (7.97697e-10 -6.71541e-10 6.14327e-10) (7.79355e-10 -7.01564e-10 5.83252e-10) (6.18985e-10 -2.5592e-10 5.27979e-10) (3.94482e-10 1.49741e-10 4.04873e-10) (2.67335e-10 4.51436e-10 3.33138e-10) (-2.97073e-11 5.14092e-10 1.51114e-10) (-6.86086e-10 6.53571e-10 -6.35037e-11) (-2.02122e-09 6.60255e-10 -6.04039e-10) (-1.49954e-09 6.33071e-11 -7.66454e-10) (-2.5807e-10 -9.2776e-11 -2.81852e-10) (1.39763e-11 -2.29567e-11 -4.45013e-11) (1.22627e-10 -1.11326e-11 -1.37935e-11) (3.77885e-10 -1.44547e-11 4.99029e-11) (5.39839e-10 -1.02989e-10 4.50397e-11) (4.87472e-10 -1.82703e-10 -5.89465e-11) (2.8048e-10 -1.32344e-10 -1.07886e-10) (5.73622e-11 -2.20445e-11 -3.2831e-11) (-2.06634e-12 4.51729e-12 1.07373e-12) (-4.30302e-10 3.63189e-10 2.06799e-10) (-2.4809e-09 1.59027e-09 9.58857e-10) (-3.61524e-09 1.67596e-09 1.12653e-09) (-1.82887e-09 5.01954e-10 5.35663e-10) (-4.10069e-10 2.8122e-11 1.81328e-10) (-4.05049e-11 3.67001e-12 4.41413e-11) (2.09527e-12 2.1771e-12 1.51374e-12) (8.49544e-11 -5.75739e-12 -8.92231e-11) (3.92945e-10 -2.96815e-10 -6.19171e-10) (3.32849e-10 -7.22031e-10 -9.03449e-10) (-1.21076e-10 -4.47043e-10 -4.06996e-10) (-2.87539e-10 -1.15415e-10 -9.3397e-11) (-3.62907e-10 1.31938e-10 1.88682e-11) (-2.24098e-10 3.02341e-10 6.12232e-11) (-7.34006e-11 2.64992e-10 8.02677e-11) (-1.45565e-11 9.53351e-11 5.69912e-11) (2.79054e-12 5.35978e-12 1.23041e-11) (2.59655e-11 -2.49518e-11 8.74219e-12) (7.48525e-11 -9.76158e-11 -2.13565e-11) (3.811e-11 -8.84273e-11 -4.09359e-11) (6.99069e-12 -5.94367e-11 -1.85644e-11) (4.37255e-11 -1.30366e-10 2.96587e-11) (3.66523e-10 -5.05209e-10 2.72831e-10) (3.1965e-10 -4.71552e-10 2.7582e-10) (2.34829e-11 -6.50838e-11 9.52215e-11) (-8.29876e-11 7.02508e-11 1.10832e-10) (-4.08184e-10 5.26791e-10 2.38902e-10) (-5.71988e-10 8.92825e-10 1.10282e-10) (-3.11013e-10 5.42354e-10 -1.07125e-10) (-5.38031e-11 9.53751e-11 -8.54667e-11) (-2.38905e-13 -7.01845e-12 -3.91121e-11) (8.85315e-12 -2.70799e-11 -2.27369e-11) (4.6876e-12 -7.9339e-12 -5.03859e-13) (1.11989e-11 -1.9733e-12 1.05376e-11) (4.28325e-11 1.49254e-12 3.37678e-11) (6.74195e-11 -1.07625e-11 2.36643e-11) (9.59892e-11 -3.21181e-11 -2.16297e-11) (1.5095e-10 -5.4607e-11 -1.02439e-10) (1.1983e-10 -3.45247e-11 -8.8577e-11) (2.0836e-11 -1.04705e-13 -6.32932e-12) (-8.683e-12 2.85171e-11 2.481e-11) (-3.77883e-10 3.30337e-10 2.61646e-10) (-1.59749e-09 7.59614e-10 5.76743e-10) (-2.82324e-09 6.58926e-10 6.1028e-10) (-2.18606e-09 2.34556e-10 4.13253e-10) (-4.69117e-10 5.71447e-11 1.20482e-10) (-4.67829e-13 1.51052e-12 3.6328e-13) (2.57099e-10 -1.76975e-11 -1.40629e-10) (8.64108e-10 -3.37574e-10 -7.30887e-10) (4.71788e-10 -5.41148e-10 -7.98566e-10) (-1.35623e-10 -2.81134e-10 -3.00599e-10) (-7.26253e-10 -1.22935e-10 -5.86296e-11) (-1.54175e-09 4.94959e-10 3.68668e-10) (-9.11068e-10 7.94932e-10 3.47747e-10) (-1.30823e-10 3.13708e-10 9.62193e-11) (1.22217e-11 2.71144e-11 1.18559e-11) (4.31672e-11 -2.32373e-11 2.97228e-12) (1.32794e-10 -1.48186e-10 -4.95287e-11) (1.0955e-10 -1.50205e-10 -1.06481e-10) (4.16321e-11 -7.06292e-11 -7.36939e-11) (3.38751e-11 -5.83188e-11 -2.86559e-11) (1.68484e-10 -2.38233e-10 3.77987e-11) (4.74063e-10 -6.42685e-10 2.47153e-10) (9.53265e-11 -1.55447e-10 1.0722e-10) (-1.38828e-11 -3.62754e-13 8.89376e-12) (-2.62013e-10 1.79253e-10 7.40504e-12) (-4.88292e-10 4.52926e-10 -3.30873e-11) (-1.86751e-10 2.63743e-10 -4.01616e-11) (1.76407e-12 4.42929e-11 -1.58536e-11) (3.74169e-11 7.43524e-12 -1.42797e-11) (3.56387e-11 -1.2934e-11 -6.95059e-12) (1.70383e-12 -2.90203e-12 6.2635e-13) (-8.00584e-12 -4.53339e-13 4.90197e-12) (-2.2288e-11 9.50951e-12 1.48931e-11) (-5.79181e-12 5.82551e-12 7.55094e-12) (9.88973e-13 3.83508e-13 4.23757e-13) (2.75257e-11 -4.9374e-12 -1.62242e-11) (9.58151e-11 -2.03725e-11 -7.86265e-11) (8.00248e-11 -2.14171e-11 -5.22408e-11) (2.13596e-11 -9.06701e-12 3.67798e-12) (8.90833e-13 7.00527e-13 4.24618e-11) (-1.87013e-10 1.29413e-10 2.14099e-10) (-1.18439e-09 6.7654e-10 4.94504e-10) (-2.98251e-09 1.26716e-09 5.21112e-10) (-2.91254e-09 9.53593e-10 2.89505e-10) (-7.59351e-10 2.53437e-10 7.65659e-11) (-5.59444e-12 6.6713e-12 -1.02738e-12) (1.94274e-10 -5.16839e-12 -1.02462e-10) (6.69411e-10 -2.03284e-10 -4.84482e-10) (4.26812e-10 -3.69851e-10 -5.38271e-10) (-1.67597e-11 -2.48397e-10 -2.14365e-10) (-3.34471e-10 -1.75578e-10 -2.34493e-11) (-1.3075e-09 1.21873e-10 3.88126e-10) (-1.60168e-09 8.4315e-10 5.42384e-10) (-4.97092e-10 5.54832e-10 4.61036e-11) (-1.40774e-11 9.93341e-11 -9.09975e-11) (1.20515e-10 -2.94619e-11 -2.17124e-10) (2.31412e-10 -1.88087e-10 -2.5997e-10) (1.99093e-10 -1.79005e-10 -1.11379e-10) (2.26052e-10 -1.83816e-10 3.20457e-12) (4.89623e-10 -4.0445e-10 1.77019e-10) (8.4277e-10 -7.90847e-10 4.33911e-10) (6.22155e-10 -6.94039e-10 4.0468e-10) (8.99655e-12 -2.60513e-11 3.87415e-11) (-1.08911e-11 8.13197e-12 -6.21216e-13) (-6.68176e-11 1.13997e-10 -7.21204e-11) (-3.64855e-11 2.07859e-10 -1.57548e-10) (5.65229e-11 1.4821e-10 -1.3357e-10) (9.53151e-11 5.69714e-11 -6.40613e-11) (7.13946e-11 4.86922e-12 -6.84884e-12) (1.83052e-11 -6.87119e-12 1.65656e-11) (-2.24041e-11 -1.04512e-11 4.41818e-11) (-1.3716e-10 -2.8959e-12 7.98506e-11) (-1.44417e-10 1.35132e-11 2.01895e-11) (-4.03041e-11 6.78771e-12 -2.18712e-11) (3.62688e-13 3.46596e-12 -4.482e-11) (5.17834e-11 1.03943e-11 -9.43443e-11) (5.97622e-11 2.04715e-11 -6.55261e-11) (1.45246e-11 5.47787e-12 -3.47739e-12) (1.26483e-11 -5.24833e-12 4.47242e-11) (-1.42313e-11 -4.58848e-11 2.68954e-10) (-1.04617e-10 2.71452e-11 3.46727e-10) (-2.99354e-10 2.2995e-10 2.87576e-10) (-1.11988e-09 8.14693e-10 2.31227e-10) (-2.08638e-09 1.27447e-09 -2.55133e-11) (-1.22271e-09 6.78559e-10 -9.9763e-11) (-1.35878e-10 8.2603e-11 -2.66838e-11) (2.6187e-12 -3.5458e-13 -4.44828e-12) (9.31571e-11 -6.00159e-11 -5.93008e-11) (2.05804e-10 -1.76419e-10 -1.33182e-10) (1.60178e-10 -1.77611e-10 -1.11872e-10) (1.28167e-11 -4.31687e-11 -1.96253e-11) (-1.43487e-10 -5.68765e-12 1.73967e-11) (-1.54327e-09 4.85657e-10 2.19796e-10) (-2.04341e-09 1.03381e-09 -1.16361e-10) (-5.49283e-10 4.37355e-10 -4.84544e-10) (6.66199e-11 3.61596e-11 -5.21635e-10) (4.38974e-10 -3.19058e-10 -4.53739e-10) (8.35379e-10 -7.4323e-10 -7.24859e-11) (1.40727e-09 -1.26092e-09 5.99899e-10) (1.62526e-09 -1.41244e-09 1.06889e-09) (1.06821e-09 -9.80981e-10 9.00529e-10) (2.92203e-10 -3.32114e-10 3.60801e-10) (-1.14574e-11 -2.59364e-12 6.68118e-12) (-1.84239e-11 1.00123e-11 -7.45818e-12) (-1.62131e-11 3.89256e-11 -4.61579e-11) (2.87064e-11 6.43113e-11 -9.37341e-11) (9.37761e-11 5.14463e-11 -9.85266e-11) (1.19194e-10 1.66874e-11 -4.78035e-11) (9.1114e-11 -2.48693e-12 1.59608e-11) (5.03887e-11 -1.55548e-12 6.61654e-11) (-6.78952e-12 8.50563e-12 1.12649e-10) (-6.96474e-11 1.28523e-11 8.70748e-11) (-7.35906e-11 8.57214e-12 6.62644e-12) (-9.42681e-11 1.54705e-11 -9.94964e-11) (-9.80134e-11 4.71224e-11 -2.94924e-10) (-3.12949e-11 6.8149e-11 -2.64894e-10) (3.8006e-12 3.10823e-11 -5.53524e-11) (2.07119e-12 4.95184e-12 3.04973e-12) (1.01422e-11 -1.40959e-12 1.33472e-10) (8.01276e-12 -9.34772e-11 5.30479e-10) (-4.99483e-12 -7.07356e-11 6.32914e-10) (-4.3401e-11 9.12325e-11 3.29039e-10) (-1.91787e-10 3.16941e-10 1.94835e-10) (-7.62625e-10 8.70413e-10 6.94083e-11) (-1.13496e-09 9.31082e-10 -1.45435e-10) (-5.81169e-10 3.15834e-10 -1.42145e-10) (-1.00141e-10 5.09861e-12 -4.37178e-11) (-1.18394e-11 -4.2864e-11 -2.4521e-11) (6.70247e-11 -1.53358e-10 -5.72543e-11) (1.93297e-10 -2.15066e-10 -9.27867e-11) (1.43336e-10 -8.9582e-11 -6.48214e-11) (6.86962e-12 2.17005e-12 -5.57583e-12) (-1.2019e-10 1.15624e-10 2.00718e-12) (-6.38363e-10 4.17039e-10 3.61725e-11) (-2.79804e-10 1.43023e-10 -3.56669e-11) (5.32337e-13 -1.06888e-11 -1.52249e-11) (4.34953e-10 -4.55265e-10 -1.3916e-10) (1.43104e-09 -1.4091e-09 -1.11243e-10) (1.43159e-09 -1.41914e-09 5.38165e-11) (6.17347e-10 -6.63765e-10 1.23422e-10) (1.12211e-10 -1.66438e-10 7.91632e-11) (-4.13693e-13 -2.66732e-11 2.61089e-11) (-2.29255e-11 1.08722e-11 -6.64302e-12) (-1.94948e-11 1.78679e-11 -1.61024e-11) (-5.01087e-12 1.64208e-11 -2.08666e-11) (1.15104e-11 8.44665e-12 -1.85314e-11) (4.3582e-11 -4.99193e-12 -1.9004e-11) (1.11394e-10 -4.06267e-11 -5.68557e-13) (1.64467e-10 -7.06544e-11 5.96311e-11) (1.47974e-10 -5.41019e-11 1.22643e-10) (6.91115e-11 -1.43333e-11 1.22012e-10) (-2.28508e-12 4.52015e-12 5.29268e-11) (-4.00233e-11 1.17509e-11 1.17678e-11) (-2.42137e-10 7.49423e-11 -1.26983e-10) (-6.08556e-10 2.3746e-10 -5.69377e-10) (-6.10684e-10 2.90822e-10 -7.23802e-10) (-2.09052e-10 1.20691e-10 -2.73431e-10) (-7.30213e-12 6.15921e-12 -7.69102e-12) (1.44241e-11 -5.52972e-12 4.07276e-11) (1.53618e-10 -9.78653e-11 3.9587e-10) (2.97766e-10 -1.58484e-10 7.79307e-10) (2.28479e-10 8.68805e-12 6.44973e-10) (4.95153e-11 1.77409e-10 3.16459e-10) (-1.84831e-10 4.20762e-10 2.09015e-10) (-7.32704e-10 7.652e-10 7.29462e-11) (-9.41216e-10 5.22771e-10 -1.37127e-10) (-4.61696e-10 5.93026e-11 -1.69789e-10) (-1.01993e-10 -7.31523e-11 -1.08977e-10) (4.02001e-11 -1.19814e-10 -1.23199e-10) (2.15988e-10 -1.47431e-10 -1.59629e-10) (2.63818e-10 -6.21783e-11 -9.85607e-11) (1.40231e-10 2.29174e-11 -1.02475e-11) (5.35204e-11 4.69759e-11 2.81485e-11) (1.6802e-11 4.25829e-11 4.74372e-11) (8.79518e-12 2.18348e-12 3.16226e-11) (5.33663e-11 -8.74185e-11 4.22425e-11) (2.18936e-10 -4.35024e-10 -1.72498e-11) (2.39796e-10 -5.98413e-10 -1.79984e-10) (7.27384e-11 -3.24521e-10 -1.73706e-10) (-9.37629e-12 -8.16161e-11 -6.17304e-11) (-1.29366e-11 -1.05231e-11 -1.10194e-11) (-1.6152e-11 1.38939e-12 -3.81238e-12) (1.38935e-11 3.98769e-11 -1.30323e-11) (-1.92339e-12 1.98433e-11 -1.33691e-11) (-7.14182e-12 3.29125e-12 -1.07976e-11) (-7.1389e-12 -7.54323e-12 -8.88446e-12) (-1.58641e-12 -1.79075e-11 -4.03511e-12) (1.2917e-11 -3.19257e-11 6.99286e-12) (4.41863e-11 -4.71659e-11 3.40869e-11) (8.05715e-11 -4.41611e-11 7.30564e-11) (7.65199e-11 -1.53688e-11 7.92065e-11) (1.98821e-11 5.18256e-12 2.42135e-11) (-2.89825e-12 5.94737e-12 -1.0203e-12) (-1.42327e-10 9.23236e-11 -1.16743e-10) (-5.78446e-10 2.63595e-10 -4.70282e-10) (-6.82863e-10 2.15926e-10 -5.41065e-10) (-2.58614e-10 2.7818e-11 -2.17467e-10) (-1.65886e-11 -1.08129e-11 -1.98301e-11) (1.32402e-11 -1.79071e-11 6.78209e-12) (1.03213e-10 -6.39934e-11 1.1705e-10) (2.05198e-10 -4.22368e-11 3.6746e-10) (2.59549e-10 1.37658e-10 6.51725e-10) (2.71519e-10 4.32093e-10 7.91769e-10) (1.6925e-10 5.37764e-10 5.85352e-10) (-4.23276e-12 2.94521e-10 2.08129e-10) (-5.65181e-11 6.99448e-11 2.77093e-11) (-9.09594e-11 -1.31954e-12 -1.96199e-11) (-1.28199e-10 -8.01956e-11 -8.30202e-11) (-6.66834e-11 -1.04155e-10 -1.34418e-10) (2.83883e-11 -7.44772e-11 -1.78848e-10) (1.31673e-10 -1.44656e-11 -2.09157e-10) (1.6588e-10 4.91382e-11 -1.31624e-10) (1.18079e-10 5.22351e-11 -1.85224e-11) (7.23234e-11 1.92965e-11 4.07497e-11) (4.22068e-11 -2.77642e-11 6.33682e-11) (5.24661e-12 -1.00621e-10 6.63154e-11) (-7.36867e-11 -1.88139e-10 2.94595e-11) (-1.47649e-10 -1.98609e-10 -3.87123e-11) (-9.70299e-11 -9.85639e-11 -5.3673e-11) (-1.29137e-11 -1.2228e-11 -1.46878e-11) (1.52492e-12 1.813e-12 -2.89049e-12) (1.56677e-11 2.45275e-11 -8.06492e-12) (7.41649e-12 1.19341e-10 -1.26241e-11) (-4.53734e-11 2.08352e-10 -8.5273e-11) (-1.14061e-10 1.34418e-10 -1.19741e-10) (-1.31554e-10 1.17341e-11 -9.59714e-11) (-1.19031e-10 -8.49316e-11 -5.84761e-11) (-6.75263e-11 -1.35665e-10 -7.24335e-12) (4.56218e-12 -1.12479e-10 3.79728e-11) (7.71341e-11 -8.30774e-11 8.37155e-11) (1.84796e-10 -3.80176e-11 1.52297e-10) (2.1867e-10 3.59053e-11 1.48329e-10) (1.02829e-10 4.90422e-11 4.68275e-11) (1.83293e-11 2.08438e-11 -6.79851e-12) (-3.96358e-12 1.71883e-11 -3.87109e-11) (-3.45285e-11 -4.41455e-12 -9.20265e-11) (-3.35307e-11 -4.59001e-11 -9.55724e-11) (-3.62758e-12 -6.01156e-11 -5.78868e-11) (1.39743e-11 -4.32436e-11 -1.61681e-11) (1.12586e-11 -2.10115e-11 1.14508e-11) (4.27368e-12 -9.86096e-12 7.15523e-11) (-4.68113e-11 8.28895e-11 3.05961e-10) (-1.01871e-10 3.43507e-10 6.66985e-10) (-2.03082e-11 5.8853e-10 8.34659e-10) (8.63281e-11 4.60042e-10 5.34489e-10) (3.84115e-11 1.14595e-10 1.10865e-10) (1.73285e-13 8.54465e-13 1.56599e-13) (-2.45488e-11 -3.28381e-11 -6.00012e-11) (-1.04163e-10 -1.37862e-10 -2.88046e-10) (-9.97205e-11 -1.03185e-10 -4.00104e-10) (-2.87928e-11 1.38465e-11 -2.70625e-10) (6.16693e-12 4.40849e-11 -9.27173e-11) (3.27144e-12 1.3003e-11 -8.22607e-12) (-5.19017e-13 1.02779e-12 2.02219e-12) (-1.66713e-11 -1.31853e-11 1.85666e-11) (-6.33296e-11 -6.35105e-11 2.78431e-11) (-8.54276e-11 -1.05962e-10 -6.68522e-13) (-5.75758e-11 -1.05696e-10 -2.187e-11) (-2.18801e-11 -7.17762e-11 -9.76522e-12) (-2.81079e-12 -2.66779e-11 5.43833e-12) (1.08055e-12 -1.99218e-12 3.9598e-12) (5.35915e-12 1.71412e-11 7.15245e-12) (1.77452e-09 -1.70745e-12 -7.1934e-11) (1.41167e-09 -1.39745e-13 1.75455e-11) (1.0356e-09 -2.76481e-13 1.10564e-10) (8.89816e-10 -2.17352e-12 1.43975e-10) (7.81422e-10 1.18631e-12 8.65917e-11) (3.51276e-10 2.92573e-12 -3.03992e-11) (2.5198e-11 8.0934e-15 -4.11545e-11) (-4.39081e-11 -3.5108e-12 -6.64366e-11) (1.47391e-12 -9.83615e-13 -1.509e-11) (3.43996e-11 5.51524e-13 -1.20599e-11) (6.03287e-11 1.96589e-12 4.61201e-12) (1.03843e-10 1.09168e-12 2.12745e-11) (2.15568e-10 4.81082e-13 4.12758e-11) (3.04843e-10 2.55349e-12 4.93335e-11) (2.42046e-10 3.38022e-12 4.36965e-11) (7.42957e-11 2.36382e-12 1.77831e-11) (2.04657e-12 1.51777e-13 6.24646e-13) (-7.79735e-12 3.96025e-14 -1.46921e-12) (-5.93883e-12 -2.25811e-13 -1.13227e-12) (-6.00402e-15 -6.78074e-15 1.02783e-14) (2.60969e-12 -1.95129e-13 7.49497e-13) (7.66404e-12 -3.0901e-13 9.96479e-13) (9.02149e-12 -2.16486e-13 1.72733e-13) (9.44374e-12 -3.99453e-14 -6.52435e-13) (1.27586e-11 1.54949e-13 -1.04465e-12) (2.27846e-11 3.09256e-13 1.76795e-13) (4.4262e-11 4.21024e-13 4.15575e-12) (7.37534e-11 4.01286e-13 4.74301e-12) (9.86686e-11 -6.8664e-14 -9.6897e-12) (1.1958e-10 -1.34526e-12 -3.72303e-11) (1.51726e-10 -3.17081e-12 -6.51649e-11) (1.99226e-10 -2.47363e-12 -8.09017e-11) (2.46327e-10 1.40096e-12 -7.3183e-11) (2.83947e-10 3.43734e-12 -5.32705e-11) (3.06164e-10 3.0148e-12 -4.0167e-11) (3.48162e-10 1.48103e-12 -4.16562e-11) (4.53863e-10 1.76498e-12 -3.82165e-11) (7.01328e-10 6.53027e-13 -3.38136e-11) (1.1531e-09 -1.14871e-12 -4.64863e-11) (1.65277e-09 2.0188e-12 -7.99859e-11) (1.71651e-08 -3.036e-10 -5.44451e-10) (1.73968e-08 -2.9041e-10 4.48189e-10) (1.5216e-08 -2.02414e-10 1.60185e-09) (1.33841e-08 -1.81809e-10 2.0394e-09) (1.22065e-08 -7.92749e-11 1.4169e-09) (8.75205e-09 6.22371e-11 -7.73327e-11) (2.20777e-09 5.30377e-11 -6.88006e-10) (-2.5758e-11 -5.52915e-12 -2.1128e-10) (-1.16051e-10 -5.44563e-12 -3.30615e-11) (2.6168e-11 4.32819e-12 4.95424e-11) (4.43209e-10 2.72613e-11 3.7559e-10) (1.14853e-09 4.34616e-13 5.59814e-10) (2.24682e-09 -3.37837e-11 5.78274e-10) (3.32395e-09 -4.06407e-11 4.37377e-10) (3.63001e-09 -3.64976e-11 2.86348e-10) (2.52366e-09 3.95975e-12 1.37735e-10) (7.50478e-10 2.07336e-11 -6.22056e-12) (4.13861e-11 2.79616e-12 -1.46221e-11) (-1.33013e-11 -4.37583e-13 -1.13697e-11) (-6.78939e-13 -3.45347e-13 -3.62963e-13) (1.48659e-11 -1.62239e-12 5.84421e-12) (5.92629e-11 -2.30954e-12 2.00086e-11) (6.87539e-11 -2.53216e-13 1.87315e-11) (5.73686e-11 1.36809e-12 1.39371e-11) (6.43702e-11 1.4293e-12 1.51331e-11) (1.2077e-10 -4.95546e-13 2.61097e-11) (2.96976e-10 -4.78452e-12 4.67093e-11) (6.86947e-10 -6.30163e-12 3.25238e-11) (1.27883e-09 -3.61298e-12 -1.28165e-10) (1.80449e-09 -6.24952e-12 -4.23959e-10) (2.0392e-09 -6.24053e-12 -5.736e-10) (2.09854e-09 3.51164e-11 -4.95529e-10) (2.39462e-09 1.12964e-10 -4.32553e-10) (2.90945e-09 1.52894e-10 -5.66186e-10) (2.99618e-09 1.08052e-10 -7.42734e-10) (2.81244e-09 3.9057e-11 -7.6766e-10) (3.20512e-09 -1.62148e-12 -7.0385e-10) (4.87335e-09 -4.25134e-11 -6.7257e-10) (8.45188e-09 -1.14303e-10 -7.38667e-10) (1.33679e-08 -1.95149e-10 -8.28085e-10) (9.48145e-09 -5.1757e-10 -3.32446e-10) (9.85051e-09 -4.99396e-10 2.9852e-10) (8.47434e-09 -3.1569e-10 1.11111e-09) (6.89949e-09 -1.89113e-10 1.53653e-09) (5.80067e-09 -7.58398e-11 1.27332e-09) (4.52733e-09 5.39803e-11 3.8943e-10) (1.8177e-09 1.18306e-10 -3.88068e-10) (3.66924e-11 2.65292e-11 -1.68045e-10) (-5.60808e-10 4.68188e-11 -1.49849e-10) (-1.51774e-10 3.58383e-11 2.06277e-10) (4.11887e-10 5.10779e-11 7.59054e-10) (1.25237e-09 -3.0166e-11 9.31609e-10) (1.84433e-09 -9.96761e-11 6.9425e-10) (2.1446e-09 -1.21811e-10 3.73896e-10) (2.32957e-09 -1.2764e-10 1.45862e-10) (2.24255e-09 -9.03596e-11 -9.36823e-12) (1.51341e-09 -6.66045e-12 -1.00268e-10) (4.43834e-10 2.01678e-11 -9.20288e-11) (2.67399e-11 3.4453e-12 -2.50833e-11) (-2.17495e-12 1.29301e-13 -5.33688e-12) (4.952e-13 -7.42475e-14 2.12752e-13) (2.3989e-11 -2.91986e-13 1.66768e-11) (6.00752e-11 3.16982e-12 3.46374e-11) (6.2109e-11 6.4229e-12 3.26438e-11) (6.05453e-11 4.8666e-12 3.14677e-11) (7.52035e-11 -1.15734e-12 3.51929e-11) (1.32056e-10 -1.1687e-11 4.00069e-11) (3.18734e-10 -2.42992e-11 3.021e-11) (7.37982e-10 -2.35965e-11 -6.54453e-11) (1.16961e-09 -5.48837e-12 -2.73433e-10) (1.26219e-09 1.91175e-11 -3.581e-10) (1.23497e-09 6.70873e-11 -2.47458e-10) (1.66692e-09 1.73484e-10 -1.84991e-10) (2.7441e-09 2.76063e-10 -4.24064e-10) (3.35098e-09 2.197e-10 -8.69951e-10) (2.72172e-09 7.00896e-11 -9.09435e-10) (2.31266e-09 -3.26794e-11 -7.07758e-10) (2.83664e-09 -1.01247e-10 -5.5677e-10) (4.60018e-09 -2.08675e-10 -5.18435e-10) (7.23366e-09 -3.70079e-10 -5.20154e-10) (3.15501e-09 -3.78543e-10 3.20439e-12) (2.96921e-09 -3.18346e-10 2.53885e-10) (1.96798e-09 -1.39787e-10 4.94636e-10) (1.09807e-09 -2.5149e-11 5.49923e-10) (6.3839e-10 1.2989e-11 4.29592e-10) (3.15132e-10 2.99001e-11 1.55522e-10) (3.76122e-11 1.76451e-11 -1.4221e-11) (-4.90177e-10 1.34342e-10 -3.8265e-10) (-4.47559e-09 4.06364e-10 -9.86114e-10) (-1.92114e-09 1.88941e-10 6.91896e-10) (1.45511e-11 3.27539e-11 8.67997e-10) (7.42885e-10 -7.01499e-11 8.8548e-10) (8.00577e-10 -1.02964e-10 4.54299e-10) (5.69186e-10 -7.98798e-11 1.46945e-10) (4.39927e-10 -6.32703e-11 2.12621e-11) (4.45699e-10 -4.83957e-11 -5.00513e-11) (3.87413e-10 -9.13665e-12 -1.0088e-10) (1.45916e-10 1.51172e-11 -7.53682e-11) (5.25897e-12 7.23047e-12 -2.88059e-11) (-6.79793e-11 1.00937e-11 -5.14917e-11) (-6.44057e-11 2.90652e-12 -1.4238e-11) (-5.30263e-12 3.0933e-13 4.79974e-12) (6.72974e-12 2.2114e-12 1.58042e-11) (1.84637e-11 5.92035e-12 2.26711e-11) (1.72438e-11 4.075e-12 1.92128e-11) (1.24131e-11 -7.73665e-13 1.44623e-11) (8.98213e-12 -4.35011e-12 8.05081e-12) (1.89538e-11 -8.33836e-12 2.38867e-12) (1.05339e-10 -1.55486e-11 -2.84514e-11) (2.95621e-10 -2.81562e-12 -1.29155e-10) (3.39133e-10 1.9736e-11 -1.62015e-10) (2.95383e-10 3.95529e-11 -8.49857e-11) (5.25916e-10 1.02562e-10 -3.62931e-11) (1.26529e-09 1.95881e-10 -1.63974e-10) (1.84095e-09 1.57576e-10 -5.51356e-10) (1.21627e-09 1.76217e-11 -5.45179e-10) (6.73441e-10 -5.80493e-11 -3.11178e-10) (6.67689e-10 -8.90907e-11 -1.77891e-10) (1.24573e-09 -1.60915e-10 -1.27947e-10) (2.31305e-09 -2.83189e-10 -9.52292e-11) (2.3222e-09 -4.42138e-10 5.88716e-11) (2.27013e-09 -3.77626e-10 2.51721e-10) (1.29109e-09 -1.36158e-10 3.80563e-10) (4.75774e-10 6.00803e-12 3.37894e-10) (1.8489e-10 3.52602e-11 2.89299e-10) (6.51608e-11 3.39339e-11 1.56949e-10) (-6.88298e-12 1.3296e-11 6.79063e-12) (-1.45522e-09 3.69515e-10 -6.23013e-10) (-1.19147e-08 1.20372e-09 -2.84683e-09) (-8.6068e-09 5.60721e-10 7.87201e-10) (-6.8175e-10 -2.64702e-11 1.1664e-09) (6.27635e-10 -1.43113e-10 1.18067e-09) (8.05881e-10 -1.52714e-10 6.67287e-10) (3.47655e-10 -7.73025e-11 1.75515e-10) (1.11916e-10 -3.44782e-11 2.72284e-11) (8.18569e-11 -2.40094e-11 -9.92128e-12) (1.3929e-10 -1.315e-11 -6.444e-11) (1.20229e-10 1.75679e-11 -1.03004e-10) (1.88811e-12 2.19924e-11 -6.68131e-11) (-2.40233e-10 5.34534e-11 -1.62229e-10) (-5.45103e-10 4.77764e-11 -1.54754e-10) (-2.26244e-10 9.36367e-12 4.54636e-12) (-2.26696e-11 4.17622e-12 2.34949e-11) (4.31916e-12 8.52017e-12 3.06176e-11) (1.15119e-11 6.88169e-12 2.94112e-11) (5.2468e-12 -6.11825e-13 1.91078e-11) (-1.09422e-12 -5.36369e-12 9.24162e-12) (-2.20915e-12 -6.10732e-12 1.29221e-12) (4.51588e-12 -6.86002e-12 -8.69659e-12) (7.12591e-11 -4.44011e-12 -7.41783e-11) (1.34063e-10 2.09807e-11 -1.14092e-10) (1.10747e-10 3.19798e-11 -4.68479e-11) (2.40672e-10 7.66583e-11 -2.54741e-12) (9.30863e-10 1.81478e-10 -8.52955e-11) (1.9392e-09 1.7381e-10 -6.24323e-10) (1.37444e-09 -8.82799e-12 -7.53079e-10) (4.73429e-10 -8.66829e-11 -3.24921e-10) (2.86641e-10 -8.70842e-11 -1.26348e-10) (5.84812e-10 -1.50091e-10 -7.52708e-11) (1.43694e-09 -3.03522e-10 -3.40293e-11) (2.44187e-09 -6.21252e-10 7.52229e-11) (2.63597e-09 -5.88229e-10 2.45024e-10) (1.52767e-09 -2.30505e-10 3.2891e-10) (4.40242e-10 5.21694e-12 2.30207e-10) (1.07789e-10 4.22327e-11 1.69177e-10) (5.03083e-11 5.53877e-11 1.87076e-10) (1.41898e-12 4.87612e-11 6.37666e-11) (-6.40379e-10 3.05285e-10 -1.84925e-10) (-1.12946e-08 1.74602e-09 -3.1142e-09) (-1.66105e-08 1.02012e-09 -1.01491e-09) (-2.44358e-09 -1.77674e-10 1.32628e-09) (3.25897e-10 -2.08739e-10 1.11894e-09) (1.33939e-09 -2.8854e-10 1.2773e-09) (6.88834e-10 -1.3673e-10 4.89972e-10) (1.2402e-10 -4.57545e-11 8.32199e-11) (2.28086e-11 -1.65712e-11 9.36633e-12) (4.39132e-11 -1.50081e-11 -1.40185e-11) (1.91198e-10 6.77455e-12 -1.20191e-10) (1.38399e-10 5.79393e-11 -1.63614e-10) (-6.56479e-11 5.96447e-11 -1.2744e-10) (-6.87589e-10 1.29134e-10 -2.89412e-10) (-9.02339e-10 6.82399e-11 -1.5882e-10) (-2.37262e-10 2.37243e-11 3.34408e-11) (-1.67954e-11 1.36296e-11 3.64473e-11) (2.56652e-11 1.90056e-11 6.7757e-11) (3.34304e-11 3.0424e-12 6.77182e-11) (7.03486e-12 -1.38761e-11 3.59487e-11) (-1.07807e-11 -1.91805e-11 1.11019e-11) (-1.58308e-11 -2.06876e-11 -1.35289e-11) (4.62389e-12 -1.13673e-11 -6.07644e-11) (4.7356e-11 1.94844e-11 -9.78191e-11) (4.13095e-11 2.75022e-11 -2.48552e-11) (1.31214e-10 7.1698e-11 3.686e-11) (6.23363e-10 1.68016e-10 5.98951e-11) (2.34395e-09 2.29092e-10 -5.73203e-10) (3.20542e-09 -1.13082e-12 -1.53419e-09) (1.29468e-09 -1.95546e-10 -8.39397e-10) (4.65619e-10 -1.65144e-10 -2.59757e-10) (5.56091e-10 -2.02439e-10 -1.10239e-10) (1.33917e-09 -3.911e-10 -3.67876e-11) (1.99808e-09 -6.95268e-10 1.21412e-10) (2.34397e-09 -7.13984e-10 1.56858e-10) (1.48474e-09 -3.15703e-10 1.32948e-10) (3.50844e-10 -3.33137e-12 8.14828e-11) (2.66103e-11 2.29361e-11 3.92274e-11) (-1.28089e-11 4.68439e-11 9.097e-11) (2.66649e-13 8.11785e-11 1.07502e-10) (-1.40452e-10 1.71933e-10 1.17536e-11) (-5.80733e-09 1.55318e-09 -1.65317e-09) (-1.88301e-08 1.3523e-09 -2.95569e-09) (-6.60854e-09 -5.93658e-10 8.43997e-10) (-2.56985e-10 -2.30873e-10 5.7786e-10) (8.47645e-10 -2.80494e-10 1.10547e-09) (1.01096e-09 -1.46572e-10 8.85487e-10) (2.77031e-10 -6.25227e-11 2.51907e-10) (3.76276e-11 -2.83673e-11 4.2759e-11) (1.64322e-11 -1.37619e-11 6.45082e-12) (9.75802e-11 -1.35609e-11 -3.39116e-11) (3.63189e-10 7.2329e-11 -2.15879e-10) (1.39335e-10 1.11034e-10 -1.8706e-10) (-1.91714e-10 1.12154e-10 -1.79535e-10) (-1.24167e-09 1.8588e-10 -3.75189e-10) (-1.11572e-09 1.18748e-10 -1.53865e-10) (-1.74006e-10 4.56728e-11 3.68502e-11) (3.30927e-12 2.26043e-11 5.46852e-11) (1.042e-10 1.99249e-11 1.60527e-10) (8.78607e-11 -3.20181e-11 1.4914e-10) (9.18541e-13 -3.77967e-11 4.40035e-11) (-3.73098e-11 -4.06667e-11 -7.46808e-12) (-5.74739e-11 -3.57548e-11 -9.83339e-11) (-2.22799e-11 1.95823e-11 -1.45053e-10) (4.61544e-12 2.48432e-11 -2.03641e-11) (6.47389e-11 8.16102e-11 7.43149e-11) (3.09233e-10 1.3688e-10 1.95662e-10) (1.18756e-09 1.31997e-10 -1.02308e-10) (3.70909e-09 -3.88618e-11 -1.59033e-09) (3.27375e-09 -3.84235e-10 -1.86999e-09) (1.11661e-09 -3.40777e-10 -6.25523e-10) (6.49318e-10 -2.82647e-10 -1.67323e-10) (1.09645e-09 -4.32215e-10 -8.54753e-12) (1.13455e-09 -6.01067e-10 8.50693e-11) (1.62751e-09 -7.37653e-10 -9.70271e-11) (1.57962e-09 -4.66195e-10 -2.90677e-10) (5.39924e-10 -2.4758e-11 -1.29856e-10) (1.63565e-11 1.53962e-11 -1.63356e-13) (-5.33776e-11 5.27794e-11 5.1835e-11) (-7.4982e-11 9.93665e-11 1.15194e-10) (-5.45249e-11 1.70306e-10 6.32267e-11) (-1.56034e-09 8.57038e-10 -4.19694e-10) (-1.17765e-08 1.31036e-09 -2.54182e-09) (-1.01283e-08 -1.10375e-09 -6.50424e-10) (-1.52362e-09 -6.3229e-10 4.67161e-10) (-2.36925e-11 -1.35722e-10 3.26083e-10) (3.09353e-10 -4.66683e-11 4.97015e-10) (2.84048e-10 -2.50895e-11 3.15375e-10) (1.49603e-10 -4.90854e-11 1.35384e-10) (1.05955e-10 -4.95623e-11 6.9824e-11) (1.22731e-10 -3.41071e-11 2.48465e-11) (3.1821e-10 1.74757e-11 -7.78991e-11) (5.10942e-10 1.81673e-10 -2.59989e-10) (6.74195e-11 1.11088e-10 -1.25297e-10) (-4.69135e-10 1.85229e-10 -2.32847e-10) (-1.96199e-09 3.10794e-10 -4.78027e-10) (-1.09959e-09 1.99679e-10 -1.95354e-10) (-7.59013e-11 3.91417e-11 2.08155e-11) (4.79227e-11 2.39443e-11 1.00842e-10) (2.4992e-10 -3.41714e-11 3.30852e-10) (1.12738e-10 -8.9671e-11 1.97572e-10) (-1.25969e-11 -3.80211e-11 1.66927e-11) (-8.19391e-11 -5.54126e-11 -8.76083e-11) (-1.30199e-10 1.01018e-11 -2.51357e-10) (-4.55316e-11 5.40888e-11 -5.88702e-11) (1.34731e-11 1.26311e-10 1.28621e-10) (2.40621e-10 2.23627e-10 4.92153e-10) (3.06835e-10 5.49086e-11 1.31466e-10) (1.36444e-09 -8.0472e-11 -5.46484e-10) (2.87435e-09 -4.17301e-10 -1.66308e-09) (1.78296e-09 -4.93072e-10 -9.08092e-10) (8.02523e-10 -3.63943e-10 -1.81681e-10) (7.81557e-10 -4.14203e-10 3.89458e-11) (9.09633e-10 -6.68023e-10 -6.27229e-11) (1.69422e-09 -1.01158e-09 -5.45084e-10) (2.56594e-09 -8.78682e-10 -1.28462e-09) (1.53039e-09 -7.88413e-11 -9.6471e-10) (1.19808e-10 7.549e-11 -1.13237e-10) (-5.73933e-11 6.24107e-11 2.00996e-11) (-2.08427e-10 1.51661e-10 1.73331e-10) (-9.84027e-11 2.02485e-10 1.1967e-10) (-3.59303e-10 4.28766e-10 -5.33377e-11) (-3.88592e-09 8.00954e-10 -1.0065e-09) (-8.20349e-09 -1.0541e-09 -1.34766e-09) (-4.81641e-09 -1.52697e-09 -1.09781e-10) (-1.13424e-09 -3.64837e-10 3.25755e-10) (-7.90169e-11 -8.60504e-12 1.32155e-10) (5.25413e-11 -3.14734e-13 9.27043e-11) (2.21719e-10 -4.75162e-11 1.4438e-10) (4.84481e-10 -1.15775e-10 2.5246e-10) (5.56331e-10 -1.07574e-10 2.44346e-10) (4.49341e-10 -2.36023e-11 6.39595e-11) (5.18913e-10 1.01003e-10 -1.23477e-10) (3.6337e-10 1.97605e-10 -1.76041e-10) (-1.53431e-11 8.4286e-11 -5.629e-11) (-1.10518e-09 3.58189e-10 -2.90059e-10) (-2.40093e-09 4.89518e-10 -6.48647e-10) (-7.23757e-10 2.31833e-10 -2.46483e-10) (-1.2334e-11 1.13193e-11 5.20272e-12) (1.08666e-10 -9.09951e-12 1.79348e-10) (2.99883e-10 -1.24649e-10 4.28922e-10) (6.89009e-11 -8.284e-11 1.13991e-10) (-7.30954e-12 -2.04439e-11 -1.10353e-11) (-1.10583e-10 -1.15095e-11 -1.98728e-10) (-1.57638e-10 9.256e-11 -1.44825e-10) (-6.86353e-11 1.66266e-10 1.51584e-10) (2.35316e-10 4.53961e-10 1.11477e-09) (2.14441e-10 1.02676e-10 4.6194e-10) (1.14187e-10 -2.36939e-11 -1.40474e-11) (7.08175e-10 -2.38998e-10 -5.17662e-10) (9.48214e-10 -3.76046e-10 -5.20229e-10) (6.75563e-10 -3.48632e-10 -1.22711e-10) (6.4499e-10 -4.26924e-10 3.1791e-11) (1.13928e-09 -9.11145e-10 -3.11989e-10) (1.88247e-09 -1.28464e-09 -1.04264e-09) (2.92284e-09 -1.14445e-09 -2.36687e-09) (2.53019e-09 -1.1726e-10 -2.607e-09) (3.96312e-10 2.70062e-10 -6.91942e-10) (-7.02477e-11 1.03304e-10 -3.60998e-11) (-3.09241e-10 1.97681e-10 1.97085e-10) (-2.16077e-10 2.40707e-10 2.17068e-10) (-1.48336e-10 2.82958e-10 5.05224e-11) (-6.57981e-10 2.88886e-10 -1.9184e-10) (-3.35745e-09 -4.80678e-10 -7.833e-10) (-7.28296e-09 -1.93281e-09 -9.07349e-10) (-6.14902e-09 -1.03196e-09 -1.77705e-10) (-1.06238e-09 -1.10024e-11 9.46905e-11) (-2.65586e-12 3.96121e-13 4.01527e-12) (1.60297e-10 -3.80127e-11 6.48345e-11) (7.78731e-10 -1.75971e-10 3.53959e-10) (1.38831e-09 -2.05702e-10 6.87919e-10) (1.08458e-09 -6.79047e-11 3.83584e-10) (5.56405e-10 4.5233e-11 -1.28091e-11) (3.36209e-10 1.19297e-10 -1.26867e-10) (7.22123e-11 9.43263e-11 -3.93457e-11) (-1.9846e-10 1.72451e-10 -1.85836e-11) (-1.83527e-09 6.15004e-10 -3.67568e-10) (-1.75133e-09 5.65472e-10 -8.29005e-10) (-2.7136e-10 1.32322e-10 -2.19601e-10) (1.31263e-13 3.29836e-13 1.05693e-12) (1.42867e-10 -6.74583e-11 2.38374e-10) (2.57249e-10 -1.47426e-10 3.59583e-10) (5.1381e-11 -4.10862e-11 3.56951e-11) (-2.6183e-12 -6.38559e-12 -2.98517e-11) (-1.42946e-10 7.03062e-11 -1.34036e-10) (-1.61414e-10 1.76569e-10 1.22564e-10) (1.37044e-10 6.33107e-10 1.55772e-09) (4.49648e-10 3.38666e-10 1.61678e-09) (5.58729e-11 -2.01403e-11 1.17504e-10) (4.56467e-11 -6.55102e-11 -3.46902e-11) (1.68536e-10 -2.02408e-10 -1.30633e-10) (3.19653e-10 -3.05278e-10 -9.41504e-11) (6.10152e-10 -5.17289e-10 -9.48902e-11) (5.10507e-10 -6.34112e-10 -2.94966e-10) (8.04961e-10 -9.282e-10 -1.06674e-09) (1.37147e-09 -1.0024e-09 -2.79484e-09) (1.69097e-09 -1.39657e-10 -4.04473e-09) (4.82195e-10 5.54068e-10 -2.0548e-09) (-1.37094e-10 2.53812e-10 -2.76955e-10) (-2.80502e-10 2.04762e-10 8.70201e-11) (-3.17131e-10 2.41619e-10 2.35135e-10) (-1.37456e-10 2.04559e-10 8.14708e-11) (-8.39533e-11 8.54504e-11 -2.21017e-11) (-5.43012e-10 -6.53641e-11 -1.66359e-10) (-4.52152e-09 -9.99429e-10 -7.03607e-10) (-1.05807e-08 -1.09536e-09 -1.10202e-09) (-4.49413e-09 3.03493e-11 -5.85806e-10) (-1.08166e-10 3.34731e-12 -3.10199e-11) (1.06624e-10 -3.79119e-11 2.2182e-11) (9.64245e-10 -2.69438e-10 4.00854e-10) (1.85941e-09 -3.07785e-10 9.47128e-10) (1.65816e-09 -9.19992e-11 7.19868e-10) (7.62133e-10 3.54664e-11 8.26066e-11) (2.92727e-10 6.34572e-11 -1.13578e-10) (5.54801e-11 5.18324e-11 -3.29367e-11) (-4.85829e-11 1.03096e-10 3.77872e-11) (-7.57487e-10 4.55769e-10 9.99847e-11) (-1.48906e-09 6.57804e-10 -5.65953e-10) (-6.99523e-10 3.85702e-10 -8.06099e-10) (-4.68118e-11 3.54747e-11 -1.25652e-10) (8.86184e-12 -6.09037e-12 9.18727e-12) (2.07941e-10 -1.15991e-10 2.91641e-10) (2.615e-10 -1.14157e-10 2.63955e-10) (2.37417e-11 -6.76017e-12 6.2545e-12) (-3.24775e-11 2.40871e-11 -3.04013e-11) (-2.12092e-10 1.60388e-10 7.37469e-11) (-7.44615e-11 5.58108e-10 1.33792e-09) (9.54344e-10 6.18462e-10 3.11499e-09) (5.20656e-10 -4.88217e-11 1.06972e-09) (1.31975e-10 -1.40208e-10 1.06907e-10) (1.7631e-10 -2.90012e-10 -1.52511e-11) (2.52741e-10 -4.13026e-10 -3.92125e-11) (3.43792e-10 -4.82993e-10 -6.57689e-11) (7.4872e-11 -2.64744e-10 -1.45038e-10) (-1.12383e-10 -3.90652e-10 -5.16203e-10) (-5.07742e-10 -6.41744e-10 -2.09664e-09) (-5.09458e-10 -1.86208e-10 -4.12373e-09) (-1.52701e-10 5.32645e-10 -3.20588e-09) (-1.56617e-10 3.88112e-10 -7.94687e-10) (-1.31384e-10 1.55778e-10 -6.50851e-11) (-2.37004e-10 1.9404e-10 8.18209e-11) (-1.93754e-10 1.77831e-10 7.64518e-11) (-3.69069e-11 4.07094e-11 8.63659e-12) (-2.86443e-11 -1.97265e-12 -3.48452e-12) (-1.16212e-09 -1.85392e-10 -1.55092e-10) (-8.11817e-09 -2.43637e-10 -9.89247e-10) (-7.40085e-09 2.99451e-10 -1.07919e-09) (-4.77e-10 1.59982e-11 -1.24182e-10) (8.04501e-11 -3.62783e-11 1.27917e-11) (1.12692e-09 -3.62068e-10 4.22534e-10) (1.66474e-09 -3.89492e-10 8.10158e-10) (1.22465e-09 -1.18222e-10 5.70385e-10) (6.19034e-10 1.2286e-11 1.01613e-10) (3.25397e-10 3.66615e-11 -1.20859e-10) (7.78917e-11 3.43336e-11 -5.90282e-11) (-1.45855e-11 4.71558e-11 2.64908e-11) (-4.73473e-10 3.99242e-10 3.53218e-10) (-1.005e-09 6.08508e-10 4.31676e-11) (-7.26259e-10 4.56829e-10 -6.84833e-10) (-1.52286e-10 1.50617e-10 -5.57488e-10) (1.15359e-11 -3.07636e-12 -3.07309e-11) (9.54807e-11 -5.07239e-11 9.08684e-11) (3.46267e-10 -1.37411e-10 4.03274e-10) (1.28376e-10 -2.51362e-11 1.19997e-10) (-2.39689e-12 6.49454e-12 -6.73605e-13) (-1.6744e-10 1.3376e-10 2.59595e-11) (-1.69657e-10 3.25594e-10 6.86467e-10) (1.14203e-09 5.31614e-10 3.31586e-09) (2.2067e-09 -1.92817e-10 3.24708e-09) (1.50476e-09 -6.90828e-10 1.16462e-09) (1.16685e-09 -8.70106e-10 2.98077e-10) (8.94564e-10 -8.16889e-10 -3.21213e-11) (3.88285e-10 -4.79683e-10 -1.13137e-10) (4.27993e-11 -5.42884e-11 -2.83075e-11) (-5.79575e-11 -3.2102e-11 -7.61564e-11) (-8.93118e-10 -1.00479e-10 -1.00585e-09) (-2.04123e-09 -2.13504e-11 -2.89694e-09) (-1.19988e-09 1.7681e-10 -2.48017e-09) (-2.22455e-10 1.93122e-10 -8.03889e-10) (-2.51845e-11 1.19176e-10 -1.66666e-10) (-4.29433e-11 1.1523e-10 -5.76548e-11) (-9.96945e-11 1.26174e-10 -1.22573e-11) (-5.69015e-11 4.30483e-11 2.42963e-11) (-3.49632e-11 -9.30979e-13 2.63481e-11) (-3.81197e-10 -1.95071e-11 8.78743e-12) (-4.13949e-09 3.13783e-10 -5.97257e-10) (-6.3663e-09 6.79326e-10 -7.74744e-10) (-7.80728e-10 6.2137e-11 -1.22589e-11) (5.06864e-11 -2.3486e-11 3.785e-11) (9.17661e-10 -2.83171e-10 3.68424e-10) (1.00277e-09 -2.92112e-10 3.72166e-10) (5.11904e-10 -1.09903e-10 1.54715e-10) (2.83197e-10 -3.40139e-11 1.46508e-11) (2.62969e-10 -1.39194e-11 -8.85859e-11) (1.58e-10 9.48319e-12 -9.94248e-11) (3.59638e-12 6.29819e-12 7.38778e-13) (-2.70351e-10 2.47432e-10 3.06772e-10) (-1.08292e-09 7.24656e-10 6.20491e-10) (-8.18795e-10 4.85663e-10 -1.36945e-10) (-2.66703e-10 1.79748e-10 -4.17356e-10) (1.22623e-11 7.73974e-12 -9.29915e-11) (7.6833e-11 -2.45658e-11 3.17554e-11) (3.88775e-10 -1.19086e-10 3.91348e-10) (2.29975e-10 -3.53712e-11 2.20779e-10) (6.03734e-12 8.44326e-12 2.00404e-12) (-6.53252e-11 9.60647e-11 -2.86308e-11) (-7.47083e-11 1.36139e-10 1.35117e-10) (6.18091e-10 2.09405e-10 1.62714e-09) (2.96734e-09 -6.03298e-10 3.81566e-09) (3.31488e-09 -1.47965e-09 2.51258e-09) (2.22389e-09 -1.47818e-09 7.05362e-10) (1.23636e-09 -1.01947e-09 -7.18397e-11) (4.29609e-10 -3.82757e-10 -1.19288e-10) (3.12299e-11 -1.32283e-11 2.26079e-11) (-2.76654e-12 8.27269e-12 2.07878e-12) (-2.4542e-10 1.46788e-10 -1.73104e-10) (-1.24414e-09 2.95709e-10 -9.81572e-10) (-1.51439e-09 2.29131e-11 -1.12874e-09) (-5.37812e-10 -5.31544e-11 -4.44577e-10) (-3.65482e-11 3.00916e-11 -1.39689e-10) (1.40621e-10 2.0408e-10 -2.90853e-10) (1.30856e-10 2.6232e-10 -2.61508e-10) (-3.42598e-12 3.936e-11 -2.5914e-11) (-7.17313e-11 -6.50657e-14 2.0389e-11) (-7.72634e-10 -1.30879e-11 8.26805e-11) (-3.11858e-09 4.12619e-10 -1.76863e-10) (-3.64037e-09 6.50857e-10 -1.3425e-11) (-6.47759e-10 1.03348e-10 2.5322e-10) (5.78849e-11 -1.98979e-11 1.83802e-10) (5.35757e-10 -1.22627e-10 3.27007e-10) (4.03398e-10 -1.0458e-10 3.95315e-11) (1.89219e-10 -6.18206e-11 -9.50819e-11) (1.47397e-10 -6.20752e-11 -1.06437e-10) (1.90932e-10 -7.15363e-11 -7.85476e-11) (2.05749e-10 -4.90196e-11 -4.91248e-11) (3.68752e-11 2.29674e-12 -4.20449e-12) (-5.29271e-11 5.4934e-11 5.39982e-11) (-8.3893e-10 5.16657e-10 5.5049e-10) (-1.01147e-09 5.54292e-10 3.44977e-10) (-2.39097e-10 1.32052e-10 -4.98814e-11) (-1.66312e-12 4.92809e-12 -8.95398e-12) (7.94157e-11 -1.35163e-11 3.16691e-11) (3.22832e-10 -9.32695e-11 2.46373e-10) (1.96256e-10 -4.94611e-11 1.201e-10) (2.5516e-11 9.73194e-12 -9.37375e-12) (-4.27176e-12 1.07965e-10 -1.02018e-10) (-9.92481e-12 9.16192e-11 -2.14787e-11) (1.40272e-10 7.1113e-11 2.34211e-10) (1.36839e-09 -4.45383e-10 1.50083e-09) (2.27603e-09 -1.38225e-09 1.57763e-09) (1.60756e-09 -1.3541e-09 5.00598e-10) (7.46267e-10 -7.63381e-10 5.01211e-11) (2.1481e-10 -2.06106e-10 4.21602e-11) (1.20785e-11 3.68472e-12 1.10128e-10) (6.63033e-12 9.82106e-11 8.69112e-11) (-6.92037e-11 2.1737e-10 3.22816e-12) (-2.85457e-10 2.44192e-10 -1.18138e-10) (-5.74359e-10 4.1814e-11 -1.42737e-10) (-6.16408e-10 -2.1169e-10 -1.11493e-10) (-1.61068e-10 -8.53839e-11 -1.21277e-10) (8.91241e-11 8.5203e-11 -3.88177e-10) (7.47012e-10 6.32839e-10 -1.17468e-09) (4.1858e-10 3.9309e-10 -5.96934e-10) (-1.5054e-11 2.01443e-11 -3.05486e-11) (-8.69528e-10 1.55678e-13 1.17257e-11) (-2.8984e-09 5.00782e-11 1.527e-10) (-1.82958e-09 6.6951e-11 3.28816e-10) (-3.14914e-10 -4.7782e-13 3.07145e-10) (3.25769e-11 8.26266e-13 4.18181e-10) (1.13711e-10 2.5161e-11 2.27369e-10) (1.35061e-11 6.20164e-12 -1.31858e-12) (9.07997e-11 3.62472e-12 -2.69664e-10) (1.99191e-10 -1.04296e-10 -4.43849e-10) (1.64857e-10 -1.10851e-10 -1.01433e-10) (2.21372e-10 -1.21666e-10 6.7209e-11) (1.47799e-10 -4.59031e-11 6.94977e-11) (2.21677e-12 2.51136e-12 1.9111e-12) (-2.2006e-10 1.36049e-10 2.29351e-11) (-7.22272e-10 3.1874e-10 8.70538e-11) (-2.55198e-10 9.546e-11 2.5796e-11) (-2.08529e-12 1.29863e-12 1.20522e-12) (5.47791e-11 -8.06563e-12 2.94764e-11) (2.04453e-10 -4.57324e-11 1.01542e-10) (1.68336e-10 -4.0856e-11 4.78593e-11) (6.16368e-11 3.13162e-12 -1.99799e-11) (3.9649e-11 7.26206e-11 -9.13531e-11) (2.15792e-11 1.31668e-10 -1.05536e-10) (2.88223e-11 2.5895e-11 9.5578e-14) (2.79652e-10 -1.07454e-10 1.76388e-10) (7.38926e-10 -6.72404e-10 4.20962e-10) (4.97465e-10 -7.802e-10 2.70675e-10) (1.03209e-10 -3.61223e-10 1.42455e-10) (1.04109e-11 -1.02292e-10 1.09927e-10) (8.85441e-12 2.45166e-11 2.52084e-10) (1.32405e-10 2.76828e-10 3.96736e-10) (1.23391e-10 4.3145e-10 2.7759e-10) (-1.04542e-11 1.68955e-10 7.52901e-11) (-6.19889e-11 1.23775e-11 2.52067e-11) (-3.6148e-10 -1.62699e-10 1.95668e-11) (-5.602e-10 -2.3844e-10 -2.29474e-10) (-3.27631e-10 -2.39672e-11 -6.16032e-10) (1.89393e-10 3.42623e-10 -1.16395e-09) (5.67105e-10 4.65992e-10 -9.29398e-10) (1.60715e-10 1.23228e-10 -1.75669e-10) (4.94012e-13 8.21686e-13 -1.82975e-12) (-2.84092e-11 -2.78721e-11 -1.30934e-13) (-8.13535e-11 -1.16489e-10 1.9713e-11) (-1.48388e-10 -1.4811e-10 1.26078e-10) (-6.03937e-10 -4.48282e-11 6.67207e-10) (-1.51078e-09 6.28555e-10 1.37385e-09) (-1.15376e-09 7.50603e-10 4.28354e-10) (-3.23725e-10 2.59336e-10 -2.4585e-10) (7.54325e-12 2.58039e-11 -2.49305e-10) (8.80828e-11 -4.88842e-11 -3.26017e-11) (3.02485e-10 -1.86582e-10 2.22592e-10) (3.11301e-10 -1.72353e-10 2.37872e-10) (5.04506e-11 -1.68183e-11 2.27496e-13) (-2.13072e-11 2.05504e-11 -6.69918e-11) (-3.31102e-10 9.83008e-11 -2.63388e-10) (-3.20983e-10 3.72117e-11 -1.8978e-10) (-3.42572e-11 8.87415e-14 -2.79592e-11) (4.56424e-12 4.39124e-13 -2.29531e-12) (8.62125e-11 5.95814e-12 7.95054e-12) (1.9686e-10 4.83737e-12 3.96951e-11) (1.26331e-10 1.07456e-11 3.16646e-11) (1.32426e-11 1.06014e-11 3.13807e-12) (-5.4074e-12 1.90227e-11 -5.12905e-12) (-2.36705e-12 5.71062e-12 -3.77728e-12) (4.90497e-12 -6.58063e-12 -2.25836e-12) (3.48445e-11 -9.32408e-11 -4.17757e-12) (-9.84248e-12 -1.61498e-10 2.91764e-12) (-7.59381e-11 -1.50599e-10 4.46439e-11) (-6.05465e-11 -8.00145e-11 1.16904e-10) (7.2072e-11 2.56909e-11 3.57596e-10) (5.94816e-10 4.13129e-10 1.02697e-09) (1.02059e-09 8.09041e-10 1.14568e-09) (4.98333e-10 4.14373e-10 5.0752e-10) (1.08748e-11 2.16062e-11 5.41284e-11) (-3.00605e-10 -7.57574e-11 3.10015e-11) (-1.57115e-09 -3.30803e-10 -5.0949e-10) (-1.60106e-09 -2.21591e-10 -1.36789e-09) (-4.29842e-10 9.70948e-12 -1.18826e-09) (2.0058e-10 5.69372e-11 -5.41923e-10) (4.97668e-10 2.38674e-11 -2.44192e-10) (9.63469e-10 -1.44701e-10 -8.16687e-11) (1.21266e-09 -4.02935e-10 -2.96733e-11) (6.36687e-10 -2.99736e-10 -5.11163e-11) (1.41562e-11 -1.25625e-11 3.36117e-13) (-8.60063e-10 2.15704e-10 3.9291e-10) (-8.57441e-09 2.71686e-09 4.0311e-09) (-1.23943e-08 4.47617e-09 5.13345e-09) (-4.17776e-09 1.73998e-09 1.03564e-09) (-1.83142e-10 8.18192e-11 -9.13435e-12) (2.5448e-11 -1.96708e-11 3.74772e-12) (3.53219e-10 -2.60783e-10 1.3043e-10) (4.08021e-10 -2.91024e-10 9.57738e-11) (1.52377e-10 -9.74243e-11 -6.51639e-11) (3.07422e-11 -3.63589e-11 -1.70223e-10) (-1.35382e-10 -4.46169e-11 -3.13381e-10) (-2.10363e-10 -6.69371e-11 -2.71867e-10) (-7.71e-11 -1.41019e-11 -1.21073e-10) (-3.15017e-12 2.87801e-11 -7.47022e-11) (3.87846e-11 6.1427e-11 -7.76965e-11) (4.56166e-11 3.6623e-11 -2.3709e-11) (5.83628e-11 2.33695e-11 2.94806e-11) (4.56297e-11 2.1979e-11 9.31448e-11) (-2.79579e-11 1.6625e-11 8.26063e-11) (-6.24894e-11 3.29602e-12 3.52638e-11) (-3.1634e-11 -1.1952e-11 -8.37577e-12) (-2.51918e-11 -4.34652e-11 -5.38646e-11) (-3.26406e-11 -8.62628e-11 -8.97053e-11) (-3.58528e-11 -6.09596e-11 -2.56223e-11) (-2.20633e-11 -3.04936e-11 4.24038e-11) (1.34318e-10 -1.28458e-11 2.32625e-10) (7.2476e-10 9.05818e-11 8.1708e-10) (1.27612e-09 3.58097e-10 1.16964e-09) (8.33882e-10 3.59939e-10 7.5369e-10) (8.11447e-11 8.87354e-11 1.30003e-10) (-9.12614e-11 3.24928e-11 3.8533e-12) (-6.7322e-10 -1.27749e-11 -3.28966e-10) (-7.36738e-10 -1.88472e-10 -7.22253e-10) (-2.18921e-10 -1.80561e-10 -5.45668e-10) (8.48528e-11 -9.19221e-11 -2.63343e-10) (3.96715e-10 -9.9706e-11 -2.12529e-10) (1.09098e-09 -2.33398e-10 -1.77541e-10) (1.38541e-09 -3.63035e-10 -1.20694e-10) (6.04244e-10 -1.64894e-10 -7.75024e-11) (1.70792e-11 3.46414e-12 -2.8571e-12) (-3.57727e-10 3.13527e-10 1.84807e-10) (-3.8423e-09 2.19564e-09 2.23677e-09) (-7.70091e-09 3.20279e-09 4.63359e-09) (-4.79151e-09 1.36016e-09 2.6758e-09) (-8.70431e-10 1.03175e-11 4.00115e-10) (-4.66314e-11 -6.33793e-11 1.49465e-11) (3.701e-11 -8.971e-11 -1.21592e-11) (8.05853e-11 -6.20884e-11 -2.95842e-11) (1.0097e-10 -2.89552e-11 -7.73001e-11) (1.08054e-10 -4.05017e-11 -1.95585e-10) (2.1532e-11 -1.14402e-10 -2.72541e-10) (-1.0312e-10 -1.45363e-10 -1.96697e-10) (-1.30642e-10 -5.87157e-11 -9.05534e-11) (-1.09924e-10 5.70384e-11 -9.48923e-11) (-1.08725e-10 2.68468e-10 -2.70216e-10) (-1.45491e-11 2.1371e-10 -2.1391e-10) (1.09402e-11 1.99498e-11 -9.3447e-12) (4.41551e-11 3.82966e-12 7.05503e-11) (3.35985e-11 -1.52841e-11 2.09859e-10) (-5.28304e-11 -1.2423e-11 1.19581e-10) (-6.252e-11 -1.48682e-11 1.71472e-11) (-7.30135e-11 -3.26501e-11 -5.02541e-11) (-6.03797e-11 -4.17025e-11 -8.19035e-11) (-1.60963e-11 -1.21618e-11 -1.54396e-11) (-2.03956e-13 -3.75559e-12 9.83701e-12) (4.87348e-11 -3.23872e-11 6.64083e-11) (1.16303e-10 1.18185e-11 9.86044e-11) (1.59605e-10 1.17779e-10 1.21522e-10) (1.52766e-10 2.13327e-10 1.08702e-10) (7.8061e-11 1.38758e-10 3.18122e-11) (2.17912e-11 2.24112e-11 -7.88333e-12) (2.53835e-11 -1.58448e-11 -2.39256e-11) (3.99375e-11 -8.2395e-11 -5.22938e-11) (8.3244e-12 -5.86635e-11 -3.32431e-11) (-5.21338e-13 -1.07689e-11 -9.60898e-12) (8.45608e-12 -2.35983e-12 -7.19028e-12) (1.38682e-10 -1.25203e-11 -3.90004e-11) (4.52014e-10 -5.37481e-11 -1.19349e-10) (3.21237e-10 -2.7546e-11 -1.4264e-10) (1.60842e-11 1.09612e-11 -2.69498e-11) (-1.60914e-10 1.18522e-10 2.49002e-11) (-1.15808e-09 6.66167e-10 8.26375e-10) (-2.11258e-09 9.25845e-10 2.13701e-09) (-1.93557e-09 3.75986e-10 1.8377e-09) (-1.21153e-09 -1.26222e-10 6.41349e-10) (-7.06371e-10 -2.37183e-10 -2.03307e-11) (-3.07144e-10 -1.41638e-10 -2.07689e-10) (-4.2504e-11 -3.05328e-11 -1.41308e-10) (7.36123e-11 1.91013e-12 -1.67416e-10) (1.77614e-10 -1.81236e-11 -2.57325e-10) (9.23579e-11 -7.82151e-11 -1.88373e-10) (-2.66939e-11 -7.1936e-11 -5.70688e-11) (-2.08341e-10 -6.66076e-11 1.90951e-11) (-5.3041e-10 1.77183e-10 1.06854e-10) (-4.77639e-10 5.04319e-10 -1.09003e-10) (-1.82603e-10 4.60811e-10 -3.25364e-10) (1.29734e-11 9.82435e-11 -1.15723e-10) (1.91382e-11 -3.3167e-12 3.1081e-13) (9.47546e-11 -7.53031e-11 1.0352e-10) (4.81993e-11 -7.33144e-11 1.02923e-10) (-7.23375e-12 -1.85442e-11 1.5163e-11) (-4.7845e-11 -2.39206e-11 -6.18532e-12) (-1.069e-10 -3.64786e-11 -1.7216e-11) (-6.21203e-11 -3.05351e-11 1.17973e-11) (-7.63053e-12 -2.36185e-11 2.79912e-11) (-2.03164e-11 -1.18243e-11 2.96666e-11) (-2.89917e-11 8.74258e-12 1.07606e-11) (-3.09547e-11 3.56169e-11 -2.52744e-12) (2.75631e-12 3.66738e-11 -9.92358e-12) (8.0278e-11 3.62554e-11 -2.08401e-11) (3.15181e-10 -2.1283e-11 -3.66704e-11) (4.03333e-10 -1.30413e-10 -6.96816e-12) (1.57552e-10 -8.39987e-11 2.49273e-11) (7.41347e-12 -7.5012e-12 7.69537e-12) (-8.81009e-12 2.23861e-12 6.19599e-12) (-1.40006e-11 7.63579e-12 2.5316e-12) (5.87161e-13 1.21565e-12 -1.81531e-12) (8.7683e-11 2.18738e-12 -6.41337e-11) (2.67821e-10 3.06266e-11 -2.19061e-10) (9.79187e-11 6.69881e-11 -1.49776e-10) (-4.05769e-11 5.14529e-11 -2.32061e-11) (-5.18023e-10 2.0518e-10 3.45632e-10) (-1.70815e-09 3.3566e-10 1.79602e-09) (-2.33283e-09 2.92764e-10 2.29558e-09) (-2.06442e-09 1.98331e-10 1.05803e-09) (-1.40876e-09 5.52103e-11 -8.84555e-11) (-6.24124e-10 -1.74186e-11 -5.15625e-10) (-5.77448e-11 -8.96741e-12 -4.28426e-10) (2.61092e-10 -4.36778e-12 -3.7682e-10) (4.97866e-10 -7.75616e-11 -3.23416e-10) (2.86611e-10 -1.64122e-10 -1.48932e-10) (3.62564e-13 -1.16024e-10 -2.13386e-11) (-5.03132e-10 -2.08407e-10 1.44017e-10) (-1.95919e-09 3.61808e-10 7.66707e-10) (-1.93721e-09 1.40024e-09 6.56285e-10) (-6.26741e-10 1.06946e-09 -1.97886e-10) (1.13438e-11 5.12171e-10 -6.15746e-10) (3.02451e-10 5.14791e-11 -7.06212e-10) (3.61966e-10 -2.67873e-10 -3.99521e-10) (3.04761e-10 -3.4237e-10 -7.38286e-11) (1.94601e-10 -2.54491e-10 1.16614e-10) (8.93531e-11 -1.24332e-10 1.55207e-10) (3.52161e-11 -6.07264e-11 1.39282e-10) (8.43892e-12 -4.30199e-11 1.13015e-10) (-1.04092e-11 -3.43258e-11 7.50228e-11) (-2.39123e-12 1.17933e-11 2.08747e-11) (-5.71137e-12 1.52523e-11 3.85695e-13) (-1.89858e-12 2.47492e-11 -1.87597e-11) (2.01308e-11 2.50155e-11 -4.28352e-11) (6.11882e-11 8.91294e-12 -6.05782e-11) (8.46718e-11 -1.95934e-11 -4.28632e-11) (6.48093e-11 -3.29376e-11 1.96164e-12) (4.69731e-11 -3.29072e-11 4.56206e-11) (2.5882e-11 -1.48615e-11 7.64057e-11) (1.76152e-12 6.14797e-12 4.01623e-11) (-7.81615e-13 1.84401e-12 1.36816e-12) (5.49392e-13 5.98028e-12 -2.49892e-11) (4.38946e-11 2.78907e-11 -1.86842e-10) (1.26833e-10 1.185e-10 -3.18602e-10) (9.9997e-11 1.90846e-10 -2.00725e-10) (-2.14958e-13 1.10174e-10 -1.29887e-11) (-1.41205e-10 1.28211e-10 2.17992e-10) (-7.99448e-10 1.24034e-10 1.25756e-09) (-1.59281e-09 1.38696e-10 2.07003e-09) (-1.50233e-09 3.10557e-10 1.20136e-09) (-8.71554e-10 2.29514e-10 1.5636e-10) (-3.58926e-10 8.09034e-11 -2.25401e-10) (-5.80373e-11 1.18972e-11 -2.77061e-10) (1.50265e-10 -1.41421e-11 -2.38773e-10) (3.402e-10 -5.60098e-11 -1.76514e-10) (2.8654e-10 -1.15595e-10 -9.11654e-11) (4.79434e-11 -8.7167e-11 -3.06411e-11) (-1.71441e-10 -1.39077e-10 1.24302e-11) (-1.60091e-09 -5.31689e-11 5.4454e-10) (-3.58022e-09 1.40763e-09 1.47771e-09) (-2.27966e-09 2.0474e-09 4.23843e-10) (-4.11853e-10 9.67576e-10 -7.25702e-10) (4.61308e-10 2.95372e-10 -1.82531e-09) (1.03304e-09 -8.26716e-10 -1.82597e-09) (9.50005e-10 -1.25202e-09 -6.01001e-10) (8.9898e-10 -1.29674e-09 4.03711e-10) (7.91675e-10 -1.00451e-09 1.01445e-09) (4.7288e-10 -4.70333e-10 8.85771e-10) (1.74272e-10 -1.16779e-10 4.28819e-10) (3.01936e-11 -1.05061e-12 1.26195e-10) (-1.25595e-10 8.24254e-11 3.3498e-12) (-4.10259e-11 5.51949e-11 -3.24068e-11) (8.05796e-12 3.44386e-11 -5.09351e-11) (6.21585e-11 1.59241e-11 -7.60814e-11) (1.11189e-10 -1.98246e-11 -6.49103e-11) (1.40148e-10 -6.2902e-11 -1.1727e-11) (1.88425e-10 -1.15629e-10 8.70541e-11) (2.29653e-10 -1.38395e-10 2.33998e-10) (1.73754e-10 -6.12105e-11 2.62271e-10) (5.24852e-11 1.5546e-11 9.71844e-11) (2.32322e-12 1.14928e-11 2.26805e-12) (-3.83225e-11 7.07289e-11 -1.22127e-10) (-1.66964e-10 1.71107e-10 -5.56699e-10) (-1.09415e-10 1.67227e-10 -5.07385e-10) (4.47359e-12 7.6861e-11 -9.4187e-11) (2.23571e-11 5.3334e-11 2.44207e-11) (3.0684e-11 1.03723e-10 2.68491e-10) (-1.20397e-10 9.58442e-11 8.17951e-10) (-4.24336e-10 1.26047e-10 1.26764e-09) (-4.96363e-10 2.64934e-10 9.84941e-10) (-2.98253e-10 2.49309e-10 3.43084e-10) (-1.10608e-10 1.06555e-10 1.82792e-11) (-4.32661e-11 3.55691e-11 -5.45666e-11) (-1.54558e-11 -6.98045e-12 -8.15381e-11) (7.66682e-12 -5.72234e-11 -8.77885e-11) (4.5788e-11 -1.41616e-10 -1.1637e-10) (9.84927e-11 -1.99929e-10 -1.47796e-10) (3.9242e-11 -7.84818e-11 -6.79586e-11) (-2.44909e-11 1.53968e-12 -1.23456e-12) (-1.07871e-09 5.12515e-10 3.99973e-10) (-2.68989e-09 1.64788e-09 9.70837e-10) (-9.63503e-10 7.26359e-10 7.62344e-11) (-2.01709e-11 1.59955e-11 -9.23766e-11) (5.70191e-10 -6.25247e-10 -5.93133e-10) (1.75071e-09 -2.00317e-09 -7.17011e-10) (1.72788e-09 -1.93976e-09 -1.07431e-10) (6.23557e-10 -7.4184e-10 1.69767e-10) (4.25459e-11 -9.92692e-11 7.2388e-11) (-4.41335e-11 -1.07879e-11 4.52443e-11) (-1.43025e-10 4.70783e-11 5.40707e-11) (-3.26074e-10 1.74441e-10 -1.58948e-10) (-7.72874e-11 7.95e-11 -7.4594e-11) (-3.85848e-13 1.51352e-11 -1.85503e-11) (1.68029e-11 -2.75928e-12 -9.34797e-12) (9.43325e-11 -6.20616e-11 -6.87317e-12) (2.4499e-10 -1.97236e-10 4.3187e-11) (3.554e-10 -2.74286e-10 1.59606e-10) (3.49169e-10 -2.07387e-10 2.83783e-10) (2.47739e-10 -5.86034e-11 3.18345e-10) (9.87262e-11 5.34457e-11 1.91213e-10) (2.96369e-12 5.96459e-11 3.85364e-11) (-9.18278e-11 1.4154e-10 -7.97938e-11) (-4.59692e-10 3.37888e-10 -5.67653e-10) (-6.55649e-10 2.79625e-10 -8.68336e-10) (-2.41517e-10 7.75013e-11 -3.4389e-10) (-5.66524e-12 4.02593e-12 -9.23869e-12) (1.7836e-11 5.95997e-12 3.99424e-11) (1.01971e-10 8.75468e-12 3.54737e-10) (1.23739e-10 3.88274e-11 7.80315e-10) (7.42799e-11 1.72627e-10 9.50721e-10) (-3.64708e-12 2.95187e-10 7.00587e-10) (-7.06139e-11 2.30638e-10 2.8679e-10) (-6.70412e-11 7.89292e-11 4.26501e-11) (-6.37972e-11 9.47027e-12 -3.10256e-11) (-1.10861e-10 -1.04856e-10 -1.78074e-10) (-4.94716e-11 -3.55587e-10 -4.58037e-10) (1.3988e-10 -4.37834e-10 -5.70181e-10) (1.3331e-10 -1.50155e-10 -2.66701e-10) (1.57681e-11 8.70698e-12 -2.35946e-11) (-4.27796e-11 1.31876e-10 4.37892e-11) (-3.06678e-10 4.43315e-10 3.31868e-10) (-1.6768e-10 1.87698e-10 2.42902e-10) (1.13806e-11 -1.58595e-11 3.50926e-11) (4.16104e-10 -4.73866e-10 1.46266e-11) (1.14282e-09 -1.33436e-09 -3.11744e-10) (6.99005e-10 -9.52345e-10 -3.991e-10) (6.56712e-11 -2.01692e-10 -1.44551e-10) (-8.70414e-11 -3.12149e-11 -6.9445e-11) (-4.27837e-10 7.09181e-11 -1.453e-10) (-5.91086e-10 1.92082e-10 -1.93794e-10) (-1.17862e-10 1.04119e-10 -6.33231e-11) (-4.61443e-11 1.39533e-11 -3.96119e-11) (-1.04519e-11 -1.57834e-11 -2.51025e-11) (1.85773e-11 -5.39404e-11 -2.55665e-11) (8.2782e-11 -1.22914e-10 -5.57835e-12) (1.36476e-10 -1.60002e-10 4.20173e-11) (1.18363e-10 -1.23707e-10 7.23558e-11) (6.55587e-11 -5.25436e-11 6.89406e-11) (3.19867e-11 -1.72553e-12 5.74623e-11) (1.09156e-11 3.77796e-11 5.2169e-11) (-3.64435e-11 1.06439e-10 4.00807e-11) (-2.02329e-10 2.481e-10 -4.28192e-11) (-4.4992e-10 3.07189e-10 -2.5141e-10) (-4.1953e-10 1.30433e-10 -3.51251e-10) (-1.4377e-10 -2.20447e-11 -2.00437e-10) (1.21021e-12 -2.96715e-11 -4.96847e-11) (5.8367e-11 -3.73908e-11 -4.91461e-12) (2.05354e-10 -6.73429e-11 1.21747e-10) (3.60888e-10 -3.88384e-11 4.15796e-10) (4.18925e-10 1.24536e-10 7.80005e-10) (3.68055e-10 3.80471e-10 1.01295e-09) (1.98942e-10 4.41949e-10 8.01424e-10) (1.72262e-11 1.95091e-10 2.9682e-10) (-1.60354e-11 1.50236e-11 2.77595e-11) (-2.72464e-11 -1.96793e-11 -1.02534e-11) (-7.39302e-11 -1.33595e-10 -1.31828e-10) (-4.01547e-11 -2.16602e-10 -3.35391e-10) (3.86277e-11 -1.30067e-10 -4.62951e-10) (5.41838e-11 4.6934e-11 -3.47929e-10) (2.17078e-11 1.07762e-10 -1.17551e-10) (9.17089e-12 7.28425e-11 3.52749e-12) (1.7654e-11 2.57448e-11 5.614e-11) (6.39725e-11 -8.93431e-11 1.44991e-10) (1.00463e-10 -3.55137e-10 1.8699e-10) (7.11806e-12 -3.96732e-10 6.04788e-11) (-5.30281e-11 -1.74704e-10 -4.29709e-11) (-4.13146e-11 -2.96814e-11 -5.2182e-11) (-5.48255e-11 4.72801e-11 -7.46711e-11) (-1.11075e-10 1.77792e-10 -1.03183e-10) (-1.59238e-10 2.18741e-10 -8.75258e-11) (2.04003e-10 4.38982e-10 -2.75613e-11) (3.12805e-11 2.52001e-10 -3.99971e-11) (-2.47895e-11 4.81257e-11 -2.3158e-11) (-3.5374e-11 -1.04905e-11 -2.09827e-11) (-8.3199e-11 -1.14902e-10 -4.37306e-11) (-9.62489e-11 -2.16349e-10 -4.5238e-11) (-5.39536e-11 -1.43336e-10 -1.39512e-11) (-1.29748e-11 -3.04783e-11 4.72721e-12) (-1.49351e-12 -1.36871e-12 4.22383e-12) (1.40875e-12 9.94178e-12 1.36238e-11) (5.28143e-12 2.65492e-11 1.87701e-11) (1.16407e-13 1.86965e-11 6.44657e-12) (-2.57574e-12 3.48285e-12 -1.19594e-12) (-8.17265e-12 -5.21499e-12 -9.98291e-12) (-9.2819e-12 -3.91313e-11 -3.77519e-11) (2.59334e-11 -6.65452e-11 -5.40023e-11) (8.02383e-11 -6.81314e-11 -3.71121e-11) (1.32408e-10 -5.67035e-11 1.87208e-11) (1.55727e-10 -2.39785e-11 1.21045e-10) (1.46696e-10 6.53846e-11 3.06427e-10) (8.48324e-11 2.98245e-10 6.43254e-10) (3.71607e-12 5.49237e-10 8.69212e-10) (2.34044e-12 4.07308e-10 5.8052e-10) (4.21614e-12 7.8226e-11 1.23051e-10) (-2.34172e-13 -4.91234e-13 2.27371e-13) (-2.5355e-11 -7.32272e-11 -9.79325e-11) (-1.11985e-10 -1.9185e-10 -4.64666e-10) (-1.71301e-10 -5.90317e-11 -6.46993e-10) (-1.33636e-10 1.11123e-10 -3.97679e-10) (-4.84985e-11 7.95374e-11 -8.66877e-11) (-8.11994e-12 1.41293e-11 3.76903e-12) (-1.22563e-11 -7.9354e-12 4.36257e-11) (-4.21817e-11 -1.03814e-10 1.11786e-10) (-8.46627e-11 -2.05743e-10 7.05921e-11) (-9.60273e-11 -2.17534e-10 -3.31615e-11) (-6.25639e-11 -1.33078e-10 -6.78432e-11) (-1.13251e-11 -2.91639e-11 -2.19532e-11) (1.91245e-12 -1.85203e-13 -1.42489e-12) (5.99358e-11 5.04588e-11 -1.86712e-12) (2.23358e-10 2.83352e-10 -5.1618e-12) (6.04277e-10 1.32519e-12 4.59328e-11) (5.54627e-10 3.24396e-12 7.63813e-11) (3.90944e-10 3.37702e-12 5.5791e-11) (3.12252e-10 2.59441e-12 1.63181e-11) (3.61849e-10 3.76143e-13 5.98955e-12) (4.08941e-10 -9.23608e-13 5.81569e-11) (2.37174e-10 1.72692e-13 9.21913e-11) (3.14331e-11 4.1613e-13 1.66776e-11) (2.01883e-12 1.6315e-14 -1.98145e-12) (1.366e-11 -5.50238e-13 -1.48397e-11) (5.71014e-11 -2.19232e-12 -1.57019e-11) (1.37595e-10 -2.60095e-12 6.01e-12) (1.95274e-10 -1.23728e-12 1.89279e-11) (1.70788e-10 7.98751e-13 2.11214e-11) (8.51251e-11 1.75416e-12 1.95686e-11) (1.82448e-11 7.70374e-13 8.49388e-12) (1.21801e-12 8.15009e-14 1.07293e-12) (1.11225e-13 3.32632e-15 3.6261e-14) (1.09694e-12 -7.15802e-15 -7.833e-14) (5.44392e-12 -3.00741e-14 7.55189e-13) (1.20914e-11 -7.14153e-14 3.831e-12) (2.2009e-11 -2.57961e-13 7.63144e-12) (3.68741e-11 -4.91826e-13 8.53087e-12) (6.23071e-11 -7.78163e-13 4.6037e-12) (1.17544e-10 -1.65154e-12 -5.1122e-12) (2.20898e-10 -2.34802e-12 -1.89028e-11) (3.59276e-10 -2.24442e-12 -2.9301e-11) (5.03825e-10 -2.00216e-12 -3.90803e-11) (6.41199e-10 -1.65091e-12 -4.59188e-11) (7.00808e-10 -1.67879e-13 -3.76581e-11) (6.03351e-10 2.7334e-12 -4.32262e-11) (3.96446e-10 2.37495e-12 -8.61839e-11) (1.73566e-10 1.05527e-12 -9.52966e-11) (4.71356e-11 -1.14912e-14 -5.34081e-11) (1.30513e-11 3.6077e-13 -1.83893e-11) (1.4037e-11 3.26632e-13 -1.0145e-11) (3.89088e-11 5.68933e-13 -1.47879e-11) (1.04128e-10 5.6011e-13 -2.1765e-11) (2.43123e-10 2.89141e-13 -2.17004e-11) (4.54399e-10 1.39404e-12 -9.11058e-14) (5.78658e-09 -5.17498e-11 8.68544e-10) (7.32519e-09 3.74046e-12 1.38733e-09) (6.93637e-09 5.14856e-11 1.20173e-09) (6.18459e-09 6.15951e-11 4.76151e-10) (6.3373e-09 -1.11088e-11 -1.54129e-10) (6.61424e-09 -5.76938e-11 -8.89911e-11) (4.64791e-09 -2.42434e-11 5.83747e-10) (1.16626e-09 1.19691e-11 2.84167e-10) (8.37408e-11 9.86599e-13 -1.27934e-11) (6.18797e-11 -3.46074e-12 -5.2072e-11) (2.76067e-10 -9.57061e-12 -1.64023e-11) (1.0807e-09 -1.76874e-12 2.51608e-10) (1.94585e-09 2.29838e-11 4.61079e-10) (2.31201e-09 3.96552e-11 5.13038e-10) (1.94676e-09 5.03685e-11 5.02866e-10) (1.00953e-09 3.86966e-11 3.15434e-10) (2.81254e-10 1.16175e-11 7.37278e-11) (8.07889e-11 1.35695e-12 -7.04766e-12) (9.76049e-11 -1.80016e-13 -4.09717e-11) (1.56792e-10 1.45569e-12 -4.79089e-11) (1.95008e-10 1.65803e-12 -1.23934e-11) (2.67062e-10 -2.65619e-12 2.93191e-11) (3.98404e-10 -9.56343e-12 5.55568e-11) (5.85047e-10 -1.859e-11 6.17208e-11) (9.10287e-10 -2.86729e-11 6.69076e-11) (1.51924e-09 -3.54585e-11 8.7553e-11) (2.51559e-09 -3.68117e-11 8.58036e-11) (4.00211e-09 -4.92493e-11 -5.66387e-11) (6.05052e-09 -9.43107e-11 -3.34646e-10) (8.04546e-09 -1.39514e-10 -4.61105e-10) (8.65033e-09 -9.68856e-11 -4.17812e-10) (7.2787e-09 1.25996e-11 -6.78123e-10) (3.90415e-09 9.40461e-11 -9.20976e-10) (9.58667e-10 4.28671e-11 -5.11571e-10) (1.20172e-10 6.80695e-12 -1.43578e-10) (3.60379e-11 -1.0292e-12 -4.54025e-11) (9.3942e-11 -4.06991e-12 -4.3818e-11) (4.18632e-10 -1.35189e-11 -6.45832e-11) (1.36435e-09 -3.32684e-11 -1.22788e-11) (3.28313e-09 -5.22435e-11 2.70567e-10) (3.74544e-09 -1.93274e-10 7.50196e-10) (5.4621e-09 -1.39423e-10 1.38961e-09) (5.49899e-09 -1.68826e-11 1.42644e-09) (4.52575e-09 5.98463e-11 7.77888e-10) (3.88548e-09 9.17829e-12 5.42541e-11) (3.60176e-09 -4.77834e-11 -2.95688e-10) (2.68392e-09 -2.6353e-11 2.07101e-11) (8.90964e-10 2.29019e-11 1.76723e-10) (3.36272e-11 4.6573e-12 1.97951e-12) (-1.30666e-12 1.73218e-12 -1.52891e-11) (2.18269e-11 1.41183e-12 -1.16109e-12) (5.75539e-10 2.5285e-11 2.49761e-10) (1.59095e-09 6.67541e-11 5.76949e-10) (2.18339e-09 6.86338e-11 6.01802e-10) (2.21053e-09 5.62819e-11 5.66464e-10) (1.6359e-09 5.03833e-11 4.37403e-10) (8.05668e-10 3.13825e-11 1.80272e-10) (2.79162e-10 1.03612e-11 -1.18421e-12) (1.71139e-10 5.30462e-12 -7.26657e-11) (2.29623e-10 1.09803e-11 -1.27491e-10) (2.51037e-10 1.43555e-11 -9.25358e-11) (2.4149e-10 7.46618e-12 -2.24127e-11) (2.84553e-10 -1.87432e-12 2.38924e-11) (3.54976e-10 -1.45484e-11 5.36236e-11) (4.61663e-10 -2.54112e-11 8.70608e-11) (6.85955e-10 -3.63363e-11 1.42353e-10) (1.11898e-09 -4.56293e-11 1.91022e-10) (1.89695e-09 -6.73441e-11 1.26866e-10) (3.11568e-09 -1.28326e-10 -1.24592e-10) (4.41826e-09 -2.02134e-10 -3.67044e-10) (5.03237e-09 -1.88696e-10 -3.46648e-10) (4.6285e-09 -4.21332e-11 -3.45021e-10) (3.23461e-09 1.32278e-10 -5.20769e-10) (1.20321e-09 1.23453e-10 -4.41573e-10) (1.80001e-10 2.69976e-11 -1.5897e-10) (2.24189e-11 5.60551e-13 -4.85264e-11) (2.75352e-11 -4.68249e-12 -2.61444e-11) (1.53212e-10 -1.92542e-11 -3.48676e-11) (6.30778e-10 -6.33288e-11 -4.86512e-13) (1.79505e-09 -1.39082e-10 2.09965e-10) (1.48269e-09 -1.8618e-10 4.6068e-10) (2.50862e-09 -1.50308e-10 9.94072e-10) (2.38881e-09 2.55326e-12 1.08523e-09) (1.30351e-09 7.38621e-11 5.49408e-10) (5.76556e-10 3.82377e-11 9.67046e-11) (3.33046e-10 6.07249e-12 -6.33051e-11) (1.75725e-10 1.15803e-12 -3.40183e-11) (1.4067e-11 2.85087e-12 7.20849e-12) (-7.67827e-11 1.62719e-11 1.20025e-11) (-5.23884e-10 4.96963e-11 -1.37986e-10) (-9.34239e-11 1.02355e-11 -1.20998e-11) (6.52326e-11 1.14687e-11 8.219e-11) (6.31187e-10 4.94832e-11 3.7589e-10) (9.2498e-10 3.68481e-11 3.47825e-10) (8.24748e-10 5.92049e-12 2.38735e-10) (5.10644e-10 2.11125e-12 1.38932e-10) (1.80487e-10 5.02527e-12 3.81261e-11) (2.67099e-11 1.95789e-12 -4.8436e-12) (9.53246e-12 1.79683e-12 -2.26458e-11) (2.18299e-11 6.02877e-12 -7.21377e-11) (4.00909e-11 9.03411e-12 -6.86383e-11) (2.87578e-11 4.40575e-12 -2.10738e-11) (2.47939e-11 7.79023e-13 -1.54796e-12) (3.84248e-11 -3.60927e-12 1.01433e-11) (6.43143e-11 -9.68306e-12 2.78139e-11) (1.16027e-10 -1.83845e-11 5.86397e-11) (2.1356e-10 -2.71597e-11 8.72142e-11) (4.21455e-10 -4.08865e-11 6.61369e-11) (8.67281e-10 -7.61807e-11 -7.1313e-11) (1.37627e-09 -1.17405e-10 -2.69409e-10) (1.43822e-09 -1.00228e-10 -2.68098e-10) (1.12482e-09 -1.03989e-11 -1.69593e-10) (6.79688e-10 7.80821e-11 -1.6372e-10) (2.05396e-10 6.82559e-11 -1.3478e-10) (1.93171e-12 2.19431e-11 -7.31905e-11) (-7.1005e-11 2.4838e-12 -8.16129e-11) (-2.86689e-11 -8.85806e-12 -3.03411e-11) (3.37427e-12 -3.97925e-12 -4.13907e-12) (1.02149e-10 -3.17838e-11 3.36942e-12) (5.30224e-10 -1.05624e-10 1.07996e-10) (8.84809e-10 -1.99611e-10 3.06293e-10) (1.89156e-09 -2.05954e-10 8.80218e-10) (2.11654e-09 2.97137e-12 1.23907e-09) (1.0714e-09 1.3814e-10 7.58914e-10) (2.37034e-10 6.07056e-11 1.48846e-10) (3.10951e-11 8.47629e-12 -4.18234e-12) (9.9861e-12 2.18413e-12 -1.07913e-11) (-2.44737e-12 1.24329e-12 9.62473e-13) (-4.44989e-10 6.8042e-11 7.70442e-11) (-2.3424e-09 2.05484e-10 -2.41788e-10) (-1.29143e-09 9.40957e-11 -1.31864e-10) (-2.45576e-11 9.7591e-12 5.29863e-11) (3.57645e-10 4.55415e-11 3.23186e-10) (7.16969e-10 3.18266e-11 3.55662e-10) (5.8435e-10 -2.11087e-11 2.06764e-10) (2.90166e-10 -2.27581e-11 8.74518e-11) (6.83728e-11 -4.43377e-12 1.33607e-11) (2.40358e-12 1.91326e-13 -1.6898e-12) (-1.59578e-11 2.99264e-12 -2.77862e-11) (-6.69476e-11 1.178e-11 -1.17442e-10) (-4.27249e-11 1.6612e-11 -1.3688e-10) (-4.24254e-12 8.8255e-12 -5.10896e-11) (7.01888e-13 7.37724e-13 -3.36698e-12) (8.19688e-13 -2.48755e-13 3.93e-13) (1.04651e-11 -4.57286e-12 1.21305e-11) (4.07e-11 -1.68216e-11 5.05553e-11) (8.49309e-11 -2.73699e-11 8.29942e-11) (1.56577e-10 -3.54243e-11 6.2912e-11) (4.28257e-10 -6.84558e-11 -3.48161e-11) (9.60505e-10 -1.17875e-10 -2.86458e-10) (1.0799e-09 -1.01578e-10 -3.50391e-10) (7.28641e-10 -1.083e-11 -1.8959e-10) (4.90043e-10 8.74783e-11 -1.33859e-10) (1.74014e-10 9.28855e-11 -1.27282e-10) (-3.21648e-11 4.83585e-11 -1.19058e-10) (-3.38862e-10 1.47554e-11 -2.57393e-10) (-3.20698e-10 -5.35177e-11 -1.77469e-10) (-3.49213e-11 -2.13456e-11 -2.52782e-11) (1.38075e-11 -1.47276e-11 -2.78496e-12) (2.225e-10 -8.59946e-11 4.58609e-11) (8.0575e-10 -2.56751e-10 1.92114e-10) (1.74558e-09 -3.03387e-10 6.92224e-10) (2.14242e-09 -6.30445e-11 1.21749e-09) (1.27235e-09 1.92951e-10 1.01472e-09) (2.72207e-10 1.26517e-10 3.06681e-10) (1.06174e-11 1.28005e-11 8.68101e-12) (1.42892e-12 4.53015e-12 -8.75898e-12) (-7.53665e-13 1.44008e-12 -1.17079e-12) (-1.94298e-10 4.97544e-11 4.86224e-11) (-2.46738e-09 2.89632e-10 -5.42865e-11) (-3.23883e-09 2.49445e-10 -2.82037e-10) (-2.81462e-10 3.72905e-11 1.15526e-10) (1.85209e-10 5.15906e-11 2.49371e-10) (8.34643e-10 7.23241e-11 4.74948e-10) (8.24409e-10 -3.61655e-11 3.28583e-10) (4.53749e-10 -6.34353e-11 1.53171e-10) (1.63207e-10 -2.52913e-11 3.51467e-11) (3.17398e-11 -1.60594e-12 -5.03686e-12) (9.2986e-13 2.14719e-12 -9.88774e-12) (-5.45525e-11 1.61499e-11 -7.67748e-11) (-1.21814e-10 3.2811e-11 -1.89294e-10) (-5.87656e-11 2.95157e-11 -1.6728e-10) (-8.63372e-12 1.12303e-11 -5.67866e-11) (-9.12249e-14 2.79172e-13 -3.32569e-12) (1.38304e-12 -1.09607e-12 2.15403e-12) (3.33899e-11 -2.19941e-11 6.13481e-11) (1.02978e-10 -5.44633e-11 1.64239e-10) (1.3831e-10 -5.87666e-11 1.20869e-10) (2.71685e-10 -7.89708e-11 1.57604e-11) (7.91554e-10 -1.45152e-10 -2.54548e-10) (1.05016e-09 -1.25597e-10 -4.14688e-10) (5.74764e-10 -1.95217e-11 -1.83615e-10) (4.13642e-10 8.13098e-11 -8.31546e-11) (5.86782e-10 2.41353e-10 -1.81281e-10) (1.58475e-10 1.24711e-10 -1.90412e-10) (-1.15533e-10 3.2576e-11 -2.11601e-10) (-3.45651e-10 -7.07446e-11 -2.7435e-10) (-1.10242e-10 -6.31435e-11 -8.80722e-11) (7.16896e-12 -2.43868e-11 -1.27442e-11) (1.89573e-10 -1.0476e-10 7.71521e-12) (8.93536e-10 -3.33755e-10 8.13338e-11) (1.70066e-09 -3.71663e-10 4.34598e-10) (1.83613e-09 -1.10909e-10 8.61141e-10) (1.03587e-09 1.78785e-10 8.68923e-10) (1.93039e-10 1.8236e-10 4.03174e-10) (-2.42074e-11 5.24965e-11 5.16458e-11) (-3.70639e-11 2.41917e-11 -1.97126e-11) (-7.84182e-12 7.15706e-12 -1.06624e-11) (-2.44724e-11 1.55937e-11 9.89083e-12) (-1.18406e-09 2.16238e-10 9.10821e-11) (-4.28984e-09 3.5501e-10 -2.29465e-10) (-1.312e-09 1.12813e-10 1.47243e-10) (2.50094e-12 2.98117e-11 8.72501e-11) (6.09262e-10 1.04128e-10 3.73769e-10) (9.681e-10 -2.1708e-11 3.80622e-10) (6.49232e-10 -1.17272e-10 2.20065e-10) (2.89997e-10 -7.42348e-11 7.66158e-11) (1.22706e-10 -1.96015e-11 4.72666e-12) (3.54751e-11 4.14966e-12 -1.23696e-11) (-1.54672e-12 7.52249e-12 -1.37099e-11) (-9.3616e-11 3.64176e-11 -1.01828e-10) (-1.50972e-10 5.11277e-11 -2.32504e-10) (-6.43669e-11 4.27194e-11 -2.32396e-10) (-1.46462e-11 1.48486e-11 -9.71071e-11) (-5.93719e-13 -1.82208e-13 -3.38018e-12) (8.41064e-12 -1.07795e-11 2.3142e-11) (1.15442e-10 -8.51737e-11 2.31921e-10) (2.03116e-10 -1.20385e-10 2.56834e-10) (2.38729e-10 -1.08346e-10 6.73076e-11) (6.01493e-10 -1.70468e-10 -1.85512e-10) (8.44922e-10 -1.35534e-10 -3.75632e-10) (2.80827e-10 -9.93748e-12 -1.04002e-10) (5.09149e-11 2.11202e-11 -1.67461e-12) (2.55962e-10 1.52456e-10 -1.64625e-11) (7.18565e-10 3.34205e-10 -2.90079e-10) (1.8556e-10 8.89698e-11 -2.89511e-10) (-9.20857e-11 -4.28274e-11 -2.48697e-10) (-1.16983e-10 -1.00103e-10 -1.59182e-10) (5.1296e-12 -5.76808e-11 -4.07987e-11) (2.12656e-10 -1.47221e-10 -3.19193e-11) (1.03463e-09 -4.36924e-10 -5.17524e-11) (1.82357e-09 -4.51142e-10 9.6522e-11) (1.51832e-09 -1.35641e-10 3.41151e-10) (5.49328e-10 1.03591e-10 3.84748e-10) (4.3848e-11 1.73258e-10 3.22548e-10) (-2.25781e-10 1.96394e-10 2.0771e-10) (-2.82045e-10 1.23371e-10 -2.80931e-11) (-7.69689e-11 2.85766e-11 -5.14113e-11) (-1.31189e-12 3.63404e-12 4.43102e-13) (-2.1624e-10 7.9662e-11 6.59554e-11) (-2.98183e-09 3.05811e-10 6.31978e-11) (-3.05351e-09 2.23239e-10 7.43055e-11) (-2.04384e-10 6.9883e-11 7.30765e-11) (1.03243e-10 5.06596e-11 6.45052e-11) (6.73445e-10 1.29759e-11 1.92838e-10) (7.8173e-10 -1.59922e-10 2.02864e-10) (4.50411e-10 -1.48991e-10 1.12112e-10) (2.64529e-10 -7.08095e-11 4.83855e-11) (1.9636e-10 -4.41236e-12 1.98936e-11) (5.49555e-11 2.26858e-11 2.61437e-12) (-6.45679e-12 1.31885e-11 -6.17383e-12) (-1.29045e-10 5.34163e-11 -1.09147e-10) (-1.66661e-10 7.25854e-11 -3.36644e-10) (-7.01702e-11 7.89307e-11 -4.47317e-10) (-2.46338e-11 1.77508e-11 -1.58684e-10) (-4.92326e-13 -8.22909e-13 -7.81288e-13) (3.86995e-11 -5.62864e-11 1.20625e-10) (2.25217e-10 -1.76629e-10 3.57318e-10) (2.926e-10 -1.753e-10 1.50767e-10) (5.07954e-10 -2.06923e-10 -1.05479e-10) (6.6242e-10 -1.56327e-10 -2.70245e-10) (1.27809e-10 -4.18896e-12 -3.76841e-11) (-3.72493e-12 1.1815e-11 1.22841e-11) (-5.32207e-12 6.20221e-11 4.95495e-11) (2.73721e-10 1.89131e-10 -2.75194e-11) (7.20054e-10 2.24234e-10 -4.39896e-10) (2.38206e-10 -2.67943e-11 -3.88891e-10) (1.82397e-11 -1.11441e-10 -2.0823e-10) (4.01924e-11 -1.20071e-10 -9.43504e-11) (2.69478e-10 -2.219e-10 -7.55628e-11) (1.45974e-09 -6.70199e-10 -2.8657e-10) (2.70254e-09 -7.4487e-10 -5.62224e-10) (1.94621e-09 -2.32942e-10 -3.46012e-10) (2.37728e-10 4.38453e-11 1.92192e-11) (-7.68246e-11 1.09605e-10 1.22905e-10) (-7.00593e-10 4.08221e-10 3.84761e-10) (-5.86478e-10 2.57755e-10 4.19889e-11) (-1.53038e-10 5.19883e-11 -7.5913e-11) (-8.58291e-13 2.50988e-12 -1.91396e-12) (-1.72312e-11 1.89493e-11 2.01585e-11) (-1.23794e-09 1.74545e-10 2.09972e-10) (-4.05542e-09 2.83612e-10 1.17814e-10) (-1.4953e-09 3.10665e-10 -6.34853e-11) (-1.6986e-11 3.04945e-11 -1.23743e-11) (1.83564e-10 1.94791e-11 -1.35505e-11) (5.97066e-10 -1.49865e-10 8.52962e-11) (4.86072e-10 -2.13626e-10 1.39731e-10) (3.03695e-10 -1.29426e-10 1.18489e-10) (3.58955e-10 -5.02818e-11 1.34678e-10) (4.04008e-10 7.55143e-11 1.62178e-10) (9.33856e-11 7.46185e-11 6.57653e-11) (-2.03903e-11 2.82372e-11 2.06713e-12) (-1.45141e-10 6.90856e-11 -1.60446e-10) (-1.49958e-10 1.39053e-10 -6.96823e-10) (-3.92829e-11 1.07132e-10 -7.9616e-10) (-3.03841e-11 6.19119e-13 -1.45433e-10) (-2.98287e-12 -7.9156e-12 4.88565e-12) (6.19987e-11 -1.13873e-10 1.79692e-10) (2.26592e-10 -1.93473e-10 1.91726e-10) (4.12439e-10 -2.31679e-10 1.85844e-12) (5.3548e-10 -1.87958e-10 -1.24213e-10) (1.03184e-10 -7.00882e-12 8.43497e-13) (-6.60937e-11 5.93621e-11 9.94041e-11) (-4.78947e-10 3.16234e-10 5.1657e-10) (-1.53723e-11 1.05247e-10 9.75215e-11) (2.26125e-10 1.00828e-10 -7.62602e-11) (3.93718e-10 4.24052e-12 -3.10052e-10) (1.90282e-10 -1.18898e-10 -2.06519e-10) (1.79256e-10 -1.93175e-10 -1.27188e-10) (4.75537e-10 -3.57152e-10 -1.29819e-10) (2.64916e-09 -1.2686e-09 -8.53269e-10) (5.32442e-09 -1.61704e-09 -2.44719e-09) (4.11776e-09 -6.03275e-10 -2.39643e-09) (3.8737e-10 7.03279e-11 -3.76267e-10) (-2.19671e-10 1.38155e-10 -2.24063e-11) (-1.35004e-09 5.46454e-10 3.13884e-10) (-6.70907e-10 2.93697e-10 1.0564e-10) (-9.05557e-11 4.73269e-11 -3.37303e-11) (-2.62577e-12 4.76173e-12 -5.48259e-12) (-2.15269e-12 7.70895e-12 6.40918e-12) (-4.89805e-10 9.74241e-11 1.71818e-10) (-4.02373e-09 3.12667e-10 3.02837e-10) (-3.9906e-09 6.84087e-10 -5.38642e-10) (-5.36879e-10 2.76155e-10 -4.04839e-10) (3.26592e-11 1.77957e-11 -8.58177e-11) (1.56973e-10 -7.89994e-11 -5.8779e-12) (2.82151e-10 -2.14295e-10 1.72454e-10) (2.88165e-10 -2.03477e-10 2.47765e-10) (4.43796e-10 -1.2176e-10 2.94428e-10) (7.59491e-10 7.38109e-11 3.94223e-10) (5.57221e-10 2.55455e-10 3.56167e-10) (6.33183e-11 1.11915e-10 1.01214e-10) (-2.95692e-11 3.64237e-11 -1.02987e-11) (-1.06419e-10 1.11073e-10 -3.93496e-10) (7.52292e-11 2.07528e-10 -1.38358e-09) (3.69805e-11 6.28793e-11 -8.57665e-10) (-2.42073e-11 -1.77635e-11 -5.85916e-11) (-1.81514e-11 -4.23997e-11 2.97116e-11) (4.52913e-11 -1.24479e-10 1.07358e-10) (2.02543e-10 -1.95935e-10 7.96236e-11) (3.44299e-10 -1.88755e-10 2.17137e-11) (1.28809e-10 -1.68482e-11 4.26826e-11) (-7.29261e-11 1.04263e-10 1.82758e-10) (-1.2033e-09 7.27482e-10 1.33414e-09) (-6.75215e-10 4.85899e-10 9.7891e-10) (3.28685e-12 3.78301e-11 5.32507e-11) (5.53055e-11 4.98206e-13 -1.46781e-11) (1.21449e-10 -6.48973e-11 -4.29232e-11) (2.61712e-10 -2.10969e-10 -3.55264e-11) (8.70946e-10 -5.79906e-10 -1.41262e-10) (2.93151e-09 -1.59144e-09 -1.36334e-09) (4.91488e-09 -1.85468e-09 -3.75385e-09) (4.0488e-09 -7.5914e-10 -4.62072e-09) (5.45414e-10 1.76619e-10 -1.72434e-09) (-5.62543e-10 2.59489e-10 -4.72514e-10) (-1.10939e-09 3.47212e-10 -4.30488e-11) (-3.48432e-10 1.50243e-10 5.40491e-11) (-4.18186e-11 3.78871e-11 -7.16776e-12) (-2.10679e-11 2.15477e-11 -1.40819e-11) (-2.90914e-11 2.01264e-11 4.52319e-12) (-3.0322e-10 7.16056e-11 1.27376e-10) (-2.83681e-09 2.69223e-10 4.43364e-10) (-5.20476e-09 8.42281e-10 -6.93956e-10) (-1.69589e-09 6.56162e-10 -1.28634e-09) (-1.10796e-10 8.79113e-11 -4.87041e-10) (2.20172e-11 -4.05299e-11 -3.6004e-11) (1.24414e-10 -2.15409e-10 1.31665e-10) (4.23341e-10 -3.9701e-10 4.50567e-10) (6.84036e-10 -2.63532e-10 5.60324e-10) (6.9231e-10 3.60325e-11 5.04504e-10) (5.41629e-10 2.63939e-10 4.24314e-10) (2.0728e-10 2.38847e-10 2.45183e-10) (9.66036e-12 6.43577e-11 3.46857e-11) (-1.64782e-12 4.35042e-11 -6.73321e-11) (2.25125e-10 1.79627e-10 -9.36802e-10) (4.82927e-10 1.57855e-10 -1.58061e-09) (7.12546e-11 -1.69774e-11 -4.17126e-10) (-1.28775e-11 -2.31096e-11 -1.07781e-11) (-2.70327e-11 -1.0249e-10 6.68517e-11) (4.97681e-11 -1.60136e-10 9.94876e-11) (1.1738e-10 -1.31128e-10 6.65272e-11) (5.46722e-11 -1.63851e-11 3.70824e-11) (-3.23825e-11 1.087e-10 1.44896e-10) (-1.09788e-09 9.02978e-10 1.39255e-09) (-1.4731e-09 1.0195e-09 2.39021e-09) (-2.29957e-10 2.3133e-10 8.3954e-10) (3.18207e-11 -4.90352e-12 9.77894e-11) (8.91951e-11 -7.00575e-11 5.08708e-11) (3.33059e-10 -2.93203e-10 5.63193e-11) (1.11621e-09 -8.09874e-10 -1.76699e-10) (1.05192e-09 -9.10238e-10 -9.16118e-10) (1.4638e-09 -1.04399e-09 -2.71643e-09) (1.38209e-09 -5.40801e-10 -4.95707e-09) (-1.59403e-10 2.34845e-10 -3.60215e-09) (-7.6911e-10 1.98914e-10 -1.0815e-09) (-2.97754e-10 4.56226e-11 -1.20564e-10) (-2.76041e-11 1.47736e-11 4.47431e-13) (-1.28941e-11 3.45487e-11 -6.76061e-12) (-6.99837e-11 8.3527e-11 -3.40416e-11) (-1.42996e-10 6.83635e-11 -2.01385e-12) (-2.36102e-10 4.25823e-11 1.19067e-10) (-1.23234e-09 1.40287e-10 4.50058e-10) (-4.1573e-09 7.26013e-10 -1.30485e-10) (-2.89903e-09 8.6861e-10 -1.65254e-09) (-4.19661e-10 2.04639e-10 -1.03846e-09) (6.56448e-11 -7.96094e-11 -1.94164e-10) (2.62724e-10 -2.88185e-10 4.41442e-11) (7.4804e-10 -6.26924e-10 5.60258e-10) (8.03557e-10 -4.20418e-10 8.22255e-10) (3.71385e-10 -4.01993e-11 5.21539e-10) (1.09253e-10 9.94625e-11 2.62152e-10) (5.65765e-11 1.43403e-10 1.79603e-10) (4.05379e-11 1.12966e-10 9.4987e-11) (2.17028e-11 3.52957e-11 2.79109e-12) (1.64574e-10 8.95964e-11 -2.31817e-10) (6.99142e-10 1.73273e-10 -1.15326e-09) (5.45622e-10 2.95403e-11 -9.31436e-10) (5.56882e-11 -3.71833e-11 -9.8553e-11) (-2.6986e-12 -4.59493e-11 1.26955e-11) (-9.62108e-12 -1.23742e-10 9.02731e-11) (1.16324e-11 -8.94974e-11 7.29008e-11) (2.54074e-12 -7.9991e-12 1.59112e-11) (-2.64754e-11 6.4777e-11 5.2454e-11) (-5.15428e-10 6.41344e-10 6.42845e-10) (-1.12954e-09 1.12999e-09 2.2392e-09) (-2.46853e-10 4.63069e-10 2.10177e-09) (3.22617e-10 -4.78874e-11 8.8549e-10) (5.06649e-10 -2.64643e-10 4.06211e-10) (7.95082e-10 -5.46678e-10 1.84439e-10) (9.5169e-10 -7.73105e-10 -1.90915e-10) (1.60244e-10 -2.21298e-10 -2.77254e-10) (-2.03271e-11 -2.30559e-10 -1.13856e-09) (-4.69929e-10 -6.51668e-11 -3.45659e-09) (-7.62847e-10 1.22355e-10 -3.33957e-09) (-3.16164e-10 -5.96065e-11 -7.88938e-10) (-1.73974e-11 -2.32057e-11 -3.05968e-11) (6.87294e-13 -3.36673e-13 -4.81559e-13) (7.5707e-12 4.88945e-11 -3.53974e-11) (-8.45528e-11 2.05043e-10 -1.35661e-10) (-1.54574e-10 1.16975e-10 -4.20189e-11) (-1.67918e-10 2.39789e-11 1.06784e-10) (-5.60744e-10 4.13451e-11 4.58193e-10) (-2.24317e-09 4.72502e-10 4.9171e-10) (-2.90736e-09 7.84416e-10 -8.41123e-10) (-5.86764e-10 1.89883e-10 -8.3872e-10) (1.83689e-10 -9.57719e-11 -3.75685e-10) (6.43903e-10 -3.79941e-10 -1.61011e-10) (7.14518e-10 -4.65282e-10 2.31492e-10) (4.22597e-10 -2.61235e-10 4.31921e-10) (1.94421e-10 -9.52792e-11 4.45596e-10) (2.37634e-11 -1.16261e-11 2.84477e-10) (-4.38691e-11 3.58165e-11 1.77154e-10) (-3.609e-11 7.74094e-11 1.28245e-10) (6.25816e-12 7.79793e-11 6.80767e-11) (2.9245e-11 4.21341e-11 -3.34138e-12) (2.12308e-10 9.36492e-11 -2.41014e-10) (4.90014e-10 5.58699e-11 -6.11287e-10) (2.18362e-10 -3.93498e-11 -2.43129e-10) (1.77518e-11 -2.10617e-11 -8.98805e-12) (5.31071e-12 -3.64916e-11 2.88939e-11) (1.39726e-11 -3.8168e-11 4.87892e-11) (4.39004e-12 -3.55878e-12 1.14054e-11) (-1.04023e-11 2.68821e-11 6.65256e-12) (-1.49962e-10 2.91479e-10 9.18265e-11) (-3.41242e-10 6.2884e-10 7.22793e-10) (6.0992e-11 4.30535e-10 1.68509e-09) (8.74339e-10 -1.65238e-10 1.68497e-09) (1.28411e-09 -6.0978e-10 9.68293e-10) (1.15138e-09 -7.38731e-10 2.68746e-10) (5.63258e-10 -4.70095e-10 -1.22839e-10) (-2.23557e-12 -3.83011e-12 -6.24757e-12) (-1.02236e-10 6.3919e-11 -2.29755e-10) (-3.63436e-10 2.3772e-10 -1.1563e-09) (-2.53802e-10 2.67794e-11 -1.06739e-09) (-1.35888e-11 -9.70246e-11 -1.71465e-10) (3.08045e-11 -9.30672e-11 4.27861e-14) (2.18861e-11 -2.32217e-11 2.29659e-12) (4.94225e-11 5.30679e-11 -8.7352e-11) (6.55399e-11 3.90718e-10 -4.80838e-10) (-5.13306e-11 2.11527e-10 -2.14659e-10) (-4.69648e-11 2.04184e-11 1.57311e-11) (-5.34577e-10 -8.10121e-12 5.00827e-10) (-1.87152e-09 2.50362e-10 1.025e-09) (-2.09335e-09 4.69754e-10 2.2958e-10) (-3.43761e-10 8.53231e-11 -1.82709e-10) (1.15564e-10 -2.66003e-11 -1.5243e-10) (8.0772e-10 -2.21723e-10 -2.94814e-10) (5.23447e-10 -1.94975e-10 -9.2594e-11) (6.59846e-11 -4.8029e-11 1.00967e-11) (9.85834e-12 -3.06124e-11 4.23489e-11) (7.23029e-12 -6.92445e-11 1.54864e-10) (-2.17475e-11 -7.04101e-11 2.23308e-10) (-9.69831e-11 8.4621e-12 2.13664e-10) (-1.3901e-10 1.16982e-10 1.64017e-10) (-6.50276e-11 1.06158e-10 5.29373e-11) (1.19561e-12 2.98485e-11 -1.25559e-11) (6.61918e-11 3.05985e-11 -9.13559e-11) (1.01734e-10 2.33679e-12 -9.5303e-11) (4.36198e-11 -7.58765e-12 -1.32837e-11) (4.59104e-11 -1.26439e-11 1.91199e-11) (1.02367e-10 -1.95454e-11 4.8922e-11) (1.01502e-10 1.01643e-12 2.74927e-11) (2.14129e-11 2.19946e-11 -4.86966e-12) (-3.06849e-11 1.37085e-10 -4.56161e-11) (-5.46181e-11 1.94461e-10 2.23371e-11) (7.00604e-11 1.33292e-10 2.43991e-10) (6.09624e-10 -1.25136e-10 7.71024e-10) (1.02508e-09 -5.93985e-10 7.16012e-10) (5.71996e-10 -5.04375e-10 2.25233e-10) (7.69316e-11 -1.10795e-10 1.34328e-11) (-9.41532e-11 3.5803e-11 4.95956e-11) (-6.42345e-11 1.17655e-10 -3.43129e-11) (-1.1394e-11 1.37448e-10 -1.3638e-10) (9.79649e-12 8.42707e-12 -3.80702e-11) (8.03934e-12 -5.47685e-11 4.15429e-12) (-1.08834e-11 -2.29253e-10 6.8874e-11) (8.26129e-12 -8.2016e-11 -1.05254e-11) (1.02027e-10 1.23187e-11 -1.67401e-10) (5.18714e-10 4.49153e-10 -8.26919e-10) (3.8808e-10 4.56255e-10 -6.43247e-10) (-8.82603e-14 4.18882e-11 -2.5106e-11) (-6.84539e-10 9.83036e-11 3.99435e-10) (-3.75204e-09 1.87441e-10 1.95305e-09) (-3.30929e-09 1.16757e-10 1.41007e-09) (-4.63379e-10 -1.6738e-11 2.02801e-10) (6.75725e-12 -1.69267e-12 2.84646e-12) (4.28495e-10 -7.0271e-12 -1.05583e-10) (7.74406e-10 -1.49189e-12 -4.29156e-10) (2.41597e-10 -3.57035e-11 -3.09764e-10) (3.91912e-12 -5.01593e-11 -7.77129e-11) (-1.03506e-11 -8.1173e-11 9.25787e-12) (3.51977e-11 -1.91936e-10 2.04901e-10) (4.86498e-12 -9.88948e-11 3.42849e-10) (-1.45984e-10 6.70514e-11 2.35644e-10) (-3.1223e-10 1.77785e-10 1.00952e-10) (-1.7164e-10 1.03277e-10 -4.27393e-11) (-1.87939e-11 2.28308e-11 -3.93508e-11) (2.11011e-11 1.27069e-11 -3.34704e-11) (5.04038e-11 1.54344e-11 -2.45698e-11) (8.56414e-11 1.56292e-11 -1.56533e-11) (1.59079e-10 1.25911e-11 -1.74825e-11) (2.09876e-10 2.46136e-11 -7.38207e-12) (1.09302e-10 4.52049e-11 9.02825e-12) (1.63038e-11 4.84874e-11 -4.63696e-12) (-1.69231e-11 7.86388e-11 -2.83412e-11) (5.18746e-12 1.47156e-11 -3.40076e-12) (8.50947e-11 -2.72435e-11 4.17159e-11) (2.31122e-10 -2.28535e-10 1.9025e-10) (4.68542e-11 -2.18203e-10 1.91046e-10) (-9.2164e-11 -7.51747e-11 1.23899e-10) (-1.95202e-10 1.06198e-10 1.25264e-10) (-3.78242e-11 1.84514e-10 9.64997e-11) (7.34437e-11 1.57767e-10 9.23595e-11) (5.66804e-11 1.96697e-11 7.68687e-11) (2.01499e-11 -1.14064e-10 1.20582e-10) (-5.77377e-11 -2.99865e-10 8.55822e-11) (-4.33803e-11 -2.40657e-10 -1.10105e-10) (5.48616e-11 -1.14272e-10 -3.41782e-10) (2.87021e-10 1.70078e-10 -6.09949e-10) (4.18877e-10 4.3739e-10 -5.1415e-10) (1.10942e-10 2.07962e-10 -8.73977e-11) (-4.69592e-11 6.37477e-11 4.29557e-11) (-4.10801e-10 -2.001e-11 3.15063e-10) (-7.39932e-10 -3.70696e-10 5.85523e-10) (-6.53566e-10 -4.3129e-10 5.70433e-10) (-3.52234e-10 -1.08439e-10 3.10613e-10) (-5.56187e-11 2.83717e-11 2.96684e-11) (2.00249e-11 8.40753e-11 -1.33311e-10) (2.7485e-10 1.39854e-10 -8.90675e-10) (1.89764e-10 -1.15362e-10 -6.61794e-10) (6.65306e-11 -1.37277e-10 -8.97044e-11) (1.49199e-10 -2.2625e-10 1.76911e-10) (2.1974e-10 -1.66978e-10 5.10704e-10) (2.01123e-11 3.83768e-11 3.05115e-10) (-9.5023e-11 5.92086e-11 8.43166e-11) (-1.54361e-10 3.94134e-11 -2.46606e-11) (-7.12074e-11 6.29616e-12 -8.09895e-11) (7.52946e-12 1.53372e-11 -1.27056e-10) (7.26393e-11 5.76656e-11 -1.83862e-10) (5.06076e-11 6.27586e-11 -1.31866e-10) (1.29815e-11 2.74434e-11 -3.61467e-11) (1.37565e-11 1.68886e-11 2.46486e-12) (8.40156e-11 6.76305e-11 9.185e-11) (7.9948e-11 8.49438e-11 1.12899e-10) (5.80276e-12 1.94277e-11 7.59105e-12) (-1.32627e-12 3.62136e-12 -7.72043e-12) (-3.01068e-13 -8.41162e-12 -7.97856e-12) (-1.20533e-11 -4.24095e-11 1.05227e-11) (-1.23267e-10 -9.76721e-11 9.3989e-11) (-2.95522e-10 -3.48422e-11 1.70666e-10) (-7.87045e-11 8.24439e-11 9.33049e-11) (1.67828e-11 3.76915e-10 4.69304e-10) (3.55453e-10 5.03914e-10 9.2013e-10) (3.79e-10 1.02594e-10 7.6292e-10) (1.32436e-10 -1.70719e-10 3.1222e-10) (3.68893e-12 -2.2176e-10 5.02485e-11) (-6.56084e-11 -3.22006e-10 -2.18211e-10) (-8.00333e-11 -2.93929e-10 -5.66286e-10) (3.61665e-12 -3.20626e-11 -4.45103e-10) (8.57546e-11 1.20635e-10 -1.96144e-10) (2.15425e-10 2.04803e-10 -8.82485e-11) (3.36206e-10 1.29584e-10 3.31096e-12) (4.59764e-10 -1.11253e-10 5.7202e-11) (3.53533e-10 -3.25554e-10 1.07245e-10) (-4.62692e-11 -1.33579e-10 1.13061e-10) (-2.23703e-09 1.26344e-10 1.05995e-09) (-8.55124e-09 2.02384e-09 2.64686e-09) (-5.52562e-09 1.51352e-09 6.55427e-10) (-6.35695e-10 1.25248e-10 -2.81336e-10) (3.77441e-11 -6.92614e-11 -1.81896e-10) (3.84763e-10 -2.31773e-10 -1.47633e-10) (5.62621e-10 -2.43642e-10 9.90113e-11) (2.75446e-10 -7.13746e-11 1.38082e-10) (2.5086e-11 -1.45697e-13 2.60291e-11) (-4.06567e-12 -6.8722e-13 2.75458e-12) (-2.42059e-11 -1.79633e-11 -3.66459e-12) (-4.38988e-12 -2.77467e-11 -2.01483e-11) (6.94975e-11 -1.83499e-11 -1.0442e-10) (2.04724e-10 1.49295e-10 -4.16527e-10) (-2.82991e-11 3.3621e-10 -6.11723e-10) (-4.04171e-10 3.21786e-10 -4.14422e-10) (-2.88142e-10 1.6178e-10 -1.59232e-12) (-8.78269e-11 1.2914e-10 2.63866e-10) (1.08626e-10 1.74676e-10 5.20304e-10) (4.43815e-11 4.43506e-11 1.05528e-10) (-1.07448e-13 -1.08641e-13 -1.75782e-12) (-4.00088e-11 -4.87332e-11 -8.0175e-11) (-1.08444e-10 -1.14718e-10 -1.06759e-10) (-1.10468e-10 -7.45888e-11 -3.97871e-11) (-7.50238e-11 -5.78085e-12 1.13487e-11) (-2.61585e-11 8.91271e-11 9.02343e-11) (1.27301e-10 4.01446e-10 5.59098e-10) (5.575e-10 4.83341e-10 1.11935e-09) (6.51702e-10 1.20741e-10 9.56723e-10) (2.66049e-10 -9.92959e-11 3.05068e-10) (5.31561e-11 -8.16139e-11 1.93845e-11) (2.34309e-11 -1.80538e-10 -1.18515e-10) (-1.94717e-11 -3.06635e-10 -3.47307e-10) (-2.7228e-11 -1.85995e-10 -3.51405e-10) (3.24063e-11 -2.46735e-11 -2.15767e-10) (1.66967e-10 4.08508e-11 -1.83217e-10) (4.94165e-10 2.16932e-11 -2.10816e-10) (5.15998e-10 -1.28873e-10 -1.06403e-10) (5.98303e-11 -5.06169e-11 7.75006e-12) (-2.28403e-10 2.68164e-11 1.40526e-10) (-3.48751e-09 1.58375e-09 1.73704e-09) (-8.1657e-09 3.84734e-09 4.23815e-09) (-6.05628e-09 1.9524e-09 3.26771e-09) (-1.12756e-09 -1.26944e-11 6.03804e-10) (-1.74267e-11 -6.55307e-11 5.92184e-12) (2.10945e-10 -1.83459e-10 -1.32539e-10) (3.06704e-10 -9.27865e-11 -2.0507e-10) (1.14685e-10 1.53487e-11 -9.67667e-11) (1.47947e-11 9.1387e-12 -2.64136e-11) (-1.34653e-12 -7.7254e-12 -1.29975e-11) (-8.31875e-12 -9.38396e-11 -4.21106e-11) (2.02618e-11 -1.84908e-10 -6.88723e-11) (4.75623e-11 -6.56144e-11 -6.06762e-11) (1.02071e-10 7.35565e-11 -1.69104e-10) (-2.44786e-12 4.94606e-10 -5.7321e-10) (-7.02948e-10 7.71794e-10 -7.80846e-10) (-9.44861e-10 4.31507e-10 -2.0646e-10) (-4.07203e-10 1.31178e-10 3.33305e-10) (-7.9359e-11 1.19297e-10 7.91174e-10) (7.91457e-11 6.55456e-11 3.72539e-10) (3.16428e-12 4.39787e-13 4.03749e-12) (-5.57074e-12 -3.59294e-11 -6.25933e-11) (-6.41432e-11 -1.43744e-10 -1.88941e-10) (-5.88218e-11 -7.70894e-11 -7.77193e-11) (-1.2817e-11 -5.66398e-13 -3.06779e-13) (-1.66687e-11 1.37736e-11 1.61953e-11) (4.58728e-11 7.28841e-11 7.60587e-11) (2.62723e-10 1.56208e-10 2.07525e-10) (4.07703e-10 9.37792e-11 2.26157e-10) (3.82693e-10 -4.73688e-11 1.23817e-10) (3.86239e-10 -2.11479e-10 2.94356e-11) (3.70349e-10 -3.83313e-10 -4.38175e-11) (1.51958e-10 -2.81419e-10 -5.94672e-11) (5.42892e-12 -7.55743e-11 -4.00627e-11) (-1.14259e-11 -1.29698e-11 -4.95573e-11) (2.99834e-11 2.68916e-11 -1.297e-10) (1.86191e-10 4.84461e-11 -2.14777e-10) (2.18713e-10 2.79822e-12 -1.30825e-10) (5.2307e-12 -1.05495e-12 -1.78136e-12) (-5.99707e-10 1.18254e-10 2.00767e-10) (-4.60385e-09 1.51539e-09 1.73852e-09) (-5.40136e-09 2.35222e-09 3.09631e-09) (-2.4454e-09 8.77911e-10 2.32147e-09) (-5.98937e-10 -9.50831e-11 7.35649e-10) (-9.38065e-11 -9.44468e-11 4.08898e-11) (-6.32019e-11 -6.21734e-11 -1.51477e-10) (-7.8556e-11 8.17803e-11 -4.64235e-10) (-5.15364e-11 1.93094e-10 -4.03063e-10) (-5.09219e-12 6.94861e-11 -1.45976e-10) (1.68157e-11 -1.36147e-11 -4.55796e-11) (7.18394e-11 -1.58485e-10 -6.83545e-11) (6.24248e-11 -3.02e-10 -2.83649e-11) (-1.56179e-11 -8.72262e-11 9.87171e-12) (-1.36969e-11 8.82524e-12 -5.11587e-12) (-1.23196e-10 3.88495e-10 -2.62146e-10) (-3.94728e-10 9.26118e-10 -8.26751e-10) (-5.05674e-10 4.93586e-10 -5.36272e-10) (-1.1477e-10 4.07324e-11 -1.71328e-11) (-1.53185e-11 -1.69592e-11 1.52362e-10) (1.5978e-10 -5.21988e-11 4.62003e-10) (1.02279e-10 -2.91076e-11 1.7466e-10) (1.0115e-11 -1.10002e-11 8.60797e-12) (-8.49845e-12 -2.58495e-11 -8.70805e-12) (-6.28697e-11 -5.12297e-11 -1.65893e-11) (-6.8225e-11 -1.63568e-11 6.09201e-12) (-1.99826e-11 -7.33502e-12 9.61593e-12) (4.24285e-14 -6.10942e-13 -6.40278e-14) (3.84925e-11 -1.0061e-11 -8.78208e-12) (2.46421e-10 -5.67979e-11 -3.3535e-11) (5.74413e-10 -1.7013e-10 -4.00983e-11) (6.89881e-10 -2.69982e-10 -1.35884e-11) (3.90859e-10 -2.0026e-10 2.67222e-11) (7.84895e-11 -6.07348e-11 2.87793e-11) (1.54435e-12 -7.60301e-12 9.08626e-12) (-2.66282e-12 -2.94951e-14 1.82808e-12) (7.78673e-13 3.56011e-12 -5.05837e-12) (9.53122e-11 4.20317e-11 -1.05679e-10) (3.11553e-10 9.49873e-11 -2.64894e-10) (1.12374e-10 6.31647e-11 -1.18217e-10) (-1.49139e-10 9.55403e-11 -3.02254e-11) (-3.51046e-09 1.04874e-09 7.181e-10) (-7.4204e-09 1.77609e-09 3.02207e-09) (-4.28217e-09 6.85341e-10 2.99058e-09) (-1.34741e-09 -3.63659e-11 1.12053e-09) (-3.27085e-10 -6.81495e-11 4.59478e-11) (-3.29083e-10 -1.72742e-11 -4.36542e-10) (-3.04453e-10 2.50419e-10 -1.05735e-09) (-3.46336e-11 3.35051e-10 -7.29952e-10) (9.87447e-11 9.20671e-11 -2.31744e-10) (1.87758e-10 -9.17581e-11 -1.10443e-10) (4.29394e-10 -5.44063e-10 -1.2506e-11) (2.05504e-10 -6.65827e-10 2.41085e-10) (-1.86225e-10 -2.73844e-10 3.15409e-10) (-5.16462e-10 1.40074e-10 3.39047e-10) (-5.60559e-10 7.06694e-10 -3.12963e-11) (-3.28327e-10 1.19334e-09 -9.3736e-10) (-3.11574e-11 9.5964e-10 -1.62388e-09) (4.06115e-11 1.76468e-10 -7.97891e-10) (3.46495e-11 -3.49737e-11 -7.43925e-11) (1.43386e-10 -1.38945e-10 9.61814e-11) (4.35281e-10 -3.33483e-10 5.48606e-10) (3.49181e-10 -2.35273e-10 6.06499e-10) (7.50197e-11 -6.82392e-11 2.88226e-10) (-3.16275e-11 -1.89448e-11 1.06715e-10) (-5.29793e-11 -1.47099e-11 4.87366e-11) (-2.40477e-11 8.23281e-12 8.87989e-12) (-1.28418e-11 -5.9853e-13 -1.28162e-11) (6.85742e-12 -1.28349e-11 -4.75374e-11) (8.00636e-11 -3.52743e-11 -1.06443e-10) (1.35771e-10 -4.37438e-11 -1.03268e-10) (8.38743e-11 -3.1825e-11 -3.56575e-11) (2.94204e-11 -2.01964e-11 8.68156e-12) (2.8806e-11 -3.82885e-11 6.55265e-11) (3.48305e-11 -5.30993e-11 1.46553e-10) (2.12039e-11 -1.80906e-11 6.93842e-11) (2.68948e-12 3.41057e-13 3.1238e-13) (4.23743e-11 3.89303e-11 -1.16863e-10) (1.5333e-10 1.9024e-10 -4.95124e-10) (1.59623e-10 2.70442e-10 -4.46138e-10) (9.60068e-12 2.06742e-10 -1.02254e-10) (-3.93217e-10 4.43115e-10 2.04229e-10) (-2.39449e-09 9.69448e-10 1.60384e-09) (-3.79791e-09 5.61728e-10 3.01373e-09) (-2.25754e-09 1.13698e-11 1.88877e-09) (-6.29824e-10 -5.90302e-11 2.74826e-10) (-2.27753e-10 -3.46566e-11 -1.87068e-10) (-1.59243e-10 3.7325e-11 -7.92138e-10) (1.69691e-10 1.66546e-10 -7.95651e-10) (3.8484e-10 6.23422e-11 -3.69719e-10) (6.85271e-10 -2.3098e-10 -1.44217e-10) (7.92075e-10 -6.78984e-10 1.46825e-10) (1.7061e-10 -5.37039e-10 3.1088e-10) (-5.26879e-10 -3.26281e-10 5.67965e-10) (-2.1267e-09 4.02908e-10 1.26821e-09) (-1.92263e-09 1.3051e-09 6.60118e-10) (-4.90556e-10 9.38248e-10 -3.94894e-10) (2.1514e-10 7.54253e-10 -1.48816e-09) (6.638e-10 2.23259e-12 -2.01266e-09) (5.52823e-10 -5.231e-10 -9.8787e-10) (5.05924e-10 -6.14903e-10 -1.64365e-10) (8.26481e-10 -8.85996e-10 5.79888e-10) (9.6195e-10 -8.01364e-10 1.34628e-09) (5.15966e-10 -2.65389e-10 1.21299e-09) (7.61e-11 2.60284e-11 5.31043e-10) (-3.68582e-11 3.29655e-11 1.1423e-10) (-3.20458e-10 1.99918e-10 -1.2447e-10) (-1.34996e-10 5.82147e-11 -1.99823e-10) (-3.1969e-12 -2.18899e-11 -2.13591e-10) (7.37299e-11 -5.76203e-11 -1.45095e-10) (6.57271e-11 -4.47366e-11 -4.28913e-11) (4.61244e-11 -3.12625e-11 1.00489e-11) (7.72577e-11 -5.01394e-11 7.99634e-11) (1.87538e-10 -9.35719e-11 2.61762e-10) (3.03044e-10 -8.96104e-11 4.15016e-10) (1.8676e-10 -1.49156e-11 2.09292e-10) (1.9775e-11 5.37228e-12 3.95354e-12) (3.7214e-12 3.94008e-11 -1.5833e-10) (-1.20637e-10 1.25869e-10 -7.08877e-10) (-1.11984e-10 1.33871e-10 -5.03504e-10) (-9.13091e-12 6.2772e-11 -4.3204e-11) (1.14309e-11 2.22696e-10 1.88766e-10) (-1.96312e-10 5.62935e-10 9.8527e-10) (-8.97209e-10 6.09869e-10 1.85561e-09) (-1.22053e-09 3.40423e-10 1.78797e-09) (-5.8731e-10 1.15735e-10 6.76329e-10) (-5.17129e-11 1.03994e-11 2.98259e-11) (3.86673e-12 -1.37896e-12 -3.65334e-11) (1.36604e-10 -4.08546e-11 -2.11692e-10) (2.75659e-10 -1.2448e-10 -2.07444e-10) (3.26523e-10 -2.50149e-10 -1.10007e-10) (2.64119e-10 -3.23219e-10 -5.9623e-11) (7.60635e-11 -1.5243e-10 -2.91101e-11) (-9.53248e-12 -9.47337e-12 3.16474e-12) (-5.34461e-10 1.87551e-10 2.57097e-10) (-2.20867e-09 1.09648e-09 1.01473e-09) (-1.43154e-09 8.61263e-10 4.13611e-10) (-1.07631e-10 7.1264e-11 -7.14465e-11) (1.4403e-10 -1.88406e-10 -4.12361e-10) (7.62118e-10 -9.24452e-10 -8.87512e-10) (9.77828e-10 -1.02938e-09 -5.03335e-10) (5.82104e-10 -4.89684e-10 1.20989e-11) (1.50313e-10 -8.79692e-11 1.17578e-10) (1.86929e-12 3.06155e-11 1.10771e-10) (-1.76272e-10 1.87056e-10 1.7254e-10) (-3.90806e-10 3.08842e-10 7.18463e-11) (-2.47994e-10 2.58927e-10 -2.30024e-10) (-6.62057e-11 4.28671e-11 -9.04004e-11) (-1.41257e-11 -1.28844e-11 -3.10838e-11) (-1.02309e-13 -3.43916e-11 -2.04155e-11) (1.82484e-11 -4.36321e-11 -9.33989e-12) (5.08872e-11 -4.91334e-11 9.78724e-12) (1.25497e-10 -6.20499e-11 6.56251e-11) (2.41374e-10 -5.74613e-11 1.93343e-10) (3.22503e-10 1.10238e-11 3.37119e-10) (2.39782e-10 1.04664e-10 2.9777e-10) (4.81181e-11 7.34475e-11 7.31001e-11) (-2.17605e-11 4.18955e-11 -2.06823e-11) (-2.62471e-10 1.09528e-10 -3.43123e-10) (-5.02204e-10 6.41571e-11 -7.04674e-10) (-2.22643e-10 1.72666e-11 -2.99837e-10) (-7.95767e-12 5.24642e-12 -3.85875e-12) (1.259e-11 8.35092e-11 1.75114e-10) (-1.99938e-11 3.1941e-10 8.89489e-10) (-2.43187e-10 4.04644e-10 1.37659e-09) (-2.4686e-10 2.8238e-10 1.09152e-09) (-4.99986e-11 1.17955e-10 4.62405e-10) (2.37713e-11 1.566e-11 8.59766e-11) (2.031e-11 -9.63069e-12 6.19336e-12) (6.78728e-11 -9.31787e-11 -6.03586e-11) (1.46757e-10 -3.95745e-10 -3.33946e-10) (1.54374e-10 -7.29536e-10 -7.09405e-10) (2.99256e-11 -4.86457e-10 -5.81721e-10) (-3.75957e-11 -4.46608e-11 -1.15432e-10) (-9.34857e-11 9.55656e-11 8.22976e-13) (-4.18284e-10 5.81453e-10 3.35533e-10) (-3.32038e-10 4.69574e-10 4.11108e-10) (-1.07869e-11 2.40893e-11 5.14376e-11) (1.44856e-10 -1.31464e-10 7.21909e-12) (8.63496e-10 -8.51376e-10 -2.55402e-10) (8.51633e-10 -9.44755e-10 -3.7873e-10) (1.52473e-10 -2.62717e-10 -1.32455e-10) (-3.07066e-11 -2.23771e-11 -2.70353e-11) (-2.99617e-10 9.22072e-11 -9.35354e-11) (-5.98794e-10 3.85072e-10 -2.30088e-10) (-5.11463e-10 4.82249e-10 -3.08643e-10) (-2.3551e-10 1.58813e-10 -2.31296e-10) (-6.47427e-11 3.72871e-11 -1.75617e-10) (-7.1966e-12 -2.80677e-11 -1.16258e-10) (2.26972e-11 -6.75249e-11 -6.77899e-11) (7.70219e-11 -1.26897e-10 -2.84738e-11) (1.74384e-10 -1.9964e-10 4.58963e-11) (1.99819e-10 -1.73883e-10 1.12258e-10) (1.02764e-10 -5.85857e-11 1.02297e-10) (3.32056e-11 1.94949e-11 9.14759e-11) (-2.39513e-11 1.42348e-10 1.6481e-10) (-1.40354e-10 2.9449e-10 1.85441e-10) (-1.96544e-10 2.32057e-10 4.38321e-11) (-1.96771e-10 1.01971e-10 -9.63415e-11) (-2.02335e-10 -8.45623e-13 -2.30874e-10) (-9.73303e-11 -5.50775e-11 -2.15043e-10) (2.53869e-12 -2.31703e-11 -5.57192e-11) (2.39987e-11 -7.68493e-12 1.4659e-12) (1.43349e-10 -1.39671e-12 1.51295e-10) (2.95266e-10 6.56636e-11 5.74359e-10) (3.50008e-10 1.57499e-10 9.87779e-10) (3.2624e-10 1.87879e-10 9.96005e-10) (2.35096e-10 1.10786e-10 6.22866e-10) (9.78049e-11 2.67277e-12 1.95427e-10) (2.2956e-11 -2.47393e-11 2.19365e-11) (2.48451e-11 -8.34104e-11 -3.92908e-11) (3.24717e-11 -2.04739e-10 -2.45705e-10) (5.61874e-13 -2.03248e-10 -5.48697e-10) (-1.02902e-10 -2.96086e-11 -6.48143e-10) (-1.69095e-10 1.13695e-10 -3.62029e-10) (-1.03508e-10 9.43483e-11 -6.51879e-11) (-3.3806e-11 3.51552e-11 3.04852e-11) (8.55655e-13 -1.85035e-11 8.82764e-11) (7.25064e-11 -2.11374e-10 2.0943e-10) (9.44902e-11 -3.44144e-10 1.71303e-10) (2.92855e-11 -1.32715e-10 1.68949e-11) (-1.44928e-12 -8.38518e-12 -1.13637e-11) (-6.66601e-11 5.51092e-11 -6.69976e-11) (-4.41681e-10 3.25266e-10 -1.72313e-10) (-8.7142e-10 5.35918e-10 -2.14807e-10) (-6.36372e-10 3.83914e-10 -2.55882e-10) (-1.20632e-10 2.46818e-10 -8.41225e-12) (-1.20306e-10 1.02485e-10 -4.83534e-11) (-5.25134e-11 -2.61223e-12 -4.67522e-11) (-9.93826e-12 -7.80645e-11 -6.72888e-11) (9.12289e-11 -2.19466e-10 -1.02737e-10) (1.44104e-10 -2.23203e-10 -7.00095e-11) (4.3547e-11 -5.84825e-11 -1.32995e-11) (1.61064e-14 -7.70437e-14 6.01075e-14) (-3.31228e-11 3.88026e-11 1.81221e-11) (-1.32745e-10 1.61388e-10 8.55046e-11) (-1.40308e-10 1.65511e-10 1.09948e-10) (-5.5938e-11 5.03014e-11 4.53427e-11) (-6.70253e-12 -3.19703e-13 2.5333e-12) (-5.58437e-12 -2.31408e-11 -1.42672e-11) (1.75724e-11 -8.65063e-11 -7.81076e-11) (7.27548e-11 -9.90899e-11 -1.08706e-10) (1.22874e-10 -6.5656e-11 -6.179e-11) (2.16426e-10 -4.52837e-11 3.43439e-11) (4.09408e-10 -8.80183e-12 2.88878e-10) (5.3154e-10 1.11316e-10 6.85403e-10) (4.30338e-10 2.7e-10 9.21233e-10) (2.20524e-10 3.12853e-10 7.91549e-10) (7.08277e-11 1.53519e-10 3.71894e-10) (8.46032e-12 9.43747e-12 4.52014e-11) (-7.92655e-13 -7.93286e-12 -4.67637e-12) (-5.43972e-11 -9.8767e-11 -1.81952e-10) (-2.34892e-10 -1.09942e-10 -5.4087e-10) (-3.81737e-10 5.11036e-11 -5.9468e-10) (-2.86361e-10 9.64169e-11 -2.64229e-10) (-1.04346e-10 2.43607e-11 -2.05103e-11) (-6.42579e-11 -1.72333e-11 5.65487e-11) (-7.66169e-11 -1.03214e-10 1.64222e-10) (-5.91235e-11 -1.55049e-10 1.29798e-10) (-3.35241e-11 -1.07256e-10 1.16224e-11) (-1.84622e-11 -6.43766e-11 -5.18567e-11) (2.79133e-12 -1.85831e-11 -7.12905e-11) (2.84448e-11 2.63951e-11 -5.64962e-11) (6.76929e-11 1.03018e-10 -4.13624e-11) (7.41683e-11 2.22378e-10 -9.87319e-13) (-1.61872e-11 2.91683e-10 2.38845e-11) (2.54412e-11 -1.1582e-15 -4.21802e-12) (1.91818e-11 1.51922e-13 2.44713e-12) (7.7666e-12 8.94596e-14 3.72683e-12) (5.10108e-12 -5.93092e-15 4.07936e-12) (8.81884e-12 -1.77095e-13 6.20345e-12) (1.24969e-11 6.86905e-14 7.8936e-12) (6.77452e-12 2.87053e-13 4.43473e-12) (1.01716e-12 2.58839e-14 6.15456e-13) (3.28583e-13 -3.04744e-14 6.57803e-14) (1.69188e-12 -1.29477e-13 5.58993e-14) (4.54237e-12 -1.54884e-13 -1.12537e-13) (9.80948e-12 -1.12233e-13 -1.14064e-12) (2.93823e-11 -3.08068e-13 -6.12652e-12) (6.40965e-11 -3.37325e-13 -1.06251e-11) (6.95664e-11 8.74062e-14 -4.96001e-12) (3.66527e-11 3.04774e-13 -7.08664e-14) (1.33623e-11 2.08212e-13 -1.54431e-12) (7.60377e-12 1.00076e-13 -3.43928e-12) (6.48102e-12 1.81613e-14 -3.76078e-12) (5.02466e-12 -1.95282e-14 -1.66316e-12) (6.32514e-12 -5.93841e-14 3.41444e-14) (1.40517e-11 -9.07195e-14 2.05282e-12) (3.18772e-11 -4.21911e-14 3.35732e-12) (6.93801e-11 -3.11986e-13 1.41566e-12) (1.44564e-10 -2.14412e-12 -4.28135e-12) (2.57324e-10 -3.91037e-12 -9.48798e-12) (3.39713e-10 -2.60716e-12 -8.1675e-12) (3.28011e-10 5.96052e-13 -8.04996e-14) (2.6131e-10 2.1562e-12 1.21335e-11) (1.81501e-10 1.5814e-12 2.14025e-11) (8.27061e-11 6.12039e-13 1.46144e-11) (1.26034e-11 5.69842e-15 1.71343e-12) (-1.67361e-12 -6.99301e-14 -1.00462e-12) (-7.25146e-12 -2.61094e-13 -6.26207e-12) (-2.84931e-12 -1.77306e-13 -6.85509e-12) (8.4685e-13 -6.49179e-14 -7.065e-12) (2.19589e-12 1.1697e-14 -7.49387e-12) (2.83919e-12 1.36239e-14 -6.72174e-12) (6.00976e-12 -2.43422e-14 -6.89694e-12) (1.56047e-11 2.60541e-14 -7.92526e-12) (2.76086e-10 3.22811e-12 9.51537e-11) (5.14651e-10 1.51537e-11 2.30739e-10) (4.63467e-10 1.08377e-11 2.26019e-10) (3.09916e-10 -2.27845e-12 1.30273e-10) (2.78564e-10 -8.60625e-12 7.74557e-11) (2.95834e-10 1.66623e-12 6.32194e-11) (2.24065e-10 1.49942e-11 5.26521e-11) (7.54945e-11 5.10667e-12 1.8454e-11) (1.14734e-11 -6.42035e-13 1.04732e-12) (6.18752e-12 -8.35238e-13 -2.60731e-12) (1.75119e-11 2.43652e-13 -1.2871e-11) (5.62345e-11 2.94017e-12 -2.93252e-11) (2.36983e-10 5.82641e-12 -4.96809e-11) (7.13316e-10 1.59098e-11 2.60106e-11) (1.09851e-09 3.05983e-11 2.32142e-10) (8.51567e-10 2.42295e-11 2.43493e-10) (4.6923e-10 5.90456e-12 6.52842e-11) (3.97518e-10 -5.1225e-12 -7.64021e-11) (4.32685e-10 -8.96279e-12 -1.6672e-10) (3.14337e-10 -4.04543e-12 -1.10451e-10) (1.88651e-10 -1.26861e-12 -3.23788e-11) (1.85308e-10 -1.51468e-12 3.17387e-12) (3.28034e-10 -3.79174e-12 2.79469e-11) (7.03322e-10 -1.35475e-11 5.72281e-11) (1.38211e-09 -3.57865e-11 1.03533e-10) (2.29488e-09 -5.44951e-11 1.57147e-10) (3.11491e-09 -4.45269e-11 1.58094e-10) (3.61442e-09 -2.6927e-11 1.03723e-10) (3.89976e-09 -2.26269e-11 1.1172e-10) (3.89133e-09 -1.7731e-11 2.41771e-10) (3.00804e-09 8.80005e-12 2.9186e-10) (1.28632e-09 1.5646e-11 8.32399e-11) (1.43624e-10 1.32306e-13 -3.02089e-11) (-3.42494e-11 -3.09248e-12 -5.39335e-11) (-9.06474e-11 -7.51695e-12 -1.12696e-10) (-1.9698e-11 -2.14974e-12 -6.34453e-11) (4.90341e-12 -3.07025e-13 -2.69745e-11) (5.73345e-12 -3.61688e-13 -8.33281e-12) (9.08966e-12 -6.48523e-13 -3.06012e-12) (6.18002e-11 -1.62068e-12 9.88768e-12) (1.78572e-10 -2.88975e-12 1.13983e-10) (6.36666e-10 2.33171e-11 3.83146e-10) (7.96581e-10 3.35389e-11 4.47385e-10) (4.56017e-10 5.53707e-12 2.10741e-10) (2.34699e-10 -1.07845e-11 5.96673e-11) (2.00893e-10 -1.95977e-12 2.05159e-11) (2.24618e-10 2.30257e-11 2.59202e-11) (1.36907e-10 2.02506e-11 2.53697e-11) (1.69325e-11 1.29337e-12 2.95488e-12) (6.91444e-13 -8.71272e-14 -9.38713e-13) (6.34359e-12 2.31083e-12 -1.60998e-11) (3.93243e-11 9.24886e-12 -3.92914e-11) (2.03643e-10 1.67026e-11 -5.46281e-11) (8.96414e-10 3.84663e-11 8.64935e-11) (1.98227e-09 8.64587e-11 5.87643e-10) (1.88376e-09 8.66765e-11 7.47504e-10) (1.06069e-09 2.72801e-11 3.42065e-10) (7.13457e-10 -1.32074e-11 1.70002e-12) (7.96685e-10 -3.15685e-11 -2.41346e-10) (7.13037e-10 -1.86787e-11 -2.83459e-10) (3.78252e-10 -2.53741e-12 -1.23288e-10) (1.88883e-10 1.41401e-13 -2.89518e-11) (1.93755e-10 -2.44812e-12 2.14609e-12) (3.79963e-10 -1.34252e-11 3.68881e-11) (7.59985e-10 -3.34189e-11 1.1281e-10) (1.24418e-09 -4.62215e-11 2.13786e-10) (1.67681e-09 -3.38158e-11 2.4183e-10) (2.02514e-09 -3.05726e-11 1.50821e-10) (2.39134e-09 -5.68712e-11 4.3574e-11) (2.67495e-09 -7.45368e-11 6.09363e-11) (2.50543e-09 -2.79667e-11 1.73813e-10) (1.67691e-09 2.81388e-11 1.355e-10) (5.26863e-10 1.95891e-11 -3.03112e-11) (3.37143e-11 1.9642e-12 -3.36463e-11) (-4.74448e-11 -3.76452e-12 -8.81372e-11) (-5.19552e-11 -3.0909e-12 -1.01336e-10) (-2.83546e-12 1.3471e-13 -4.03617e-11) (3.306e-12 -1.58447e-13 -8.04383e-12) (1.50888e-12 -2.91297e-13 -4.54176e-13) (1.55897e-11 -2.38368e-12 9.44968e-12) (1.70047e-11 -5.21077e-12 4.94012e-11) (2.40758e-10 1.20464e-11 2.72629e-10) (4.52374e-10 4.59737e-11 4.08453e-10) (1.82852e-10 1.81801e-11 1.53355e-10) (1.85606e-11 -1.21359e-12 1.13058e-11) (4.34936e-12 -5.46473e-13 -3.30607e-13) (1.78339e-11 4.04135e-12 -6.63138e-13) (2.18936e-11 8.44225e-12 4.97424e-12) (1.41214e-13 3.50202e-13 4.14082e-13) (-1.63695e-11 2.6603e-13 -4.0502e-12) (-2.10807e-11 5.34271e-12 -2.85263e-11) (7.56816e-12 1.24661e-11 -4.129e-11) (7.14686e-11 1.30017e-11 -3.65275e-11) (4.97217e-10 2.20925e-11 6.71324e-11) (1.58692e-09 5.90192e-11 6.17614e-10) (1.52522e-09 6.61052e-11 8.19813e-10) (5.71957e-10 8.46774e-12 3.16825e-10) (1.75197e-10 -1.45724e-11 2.54297e-11) (1.84119e-10 -2.71513e-11 -9.52446e-11) (2.36496e-10 -2.50761e-11 -1.95428e-10) (1.11591e-10 -4.36866e-12 -9.95525e-11) (1.62184e-11 -1.40533e-13 -1.39089e-11) (2.33497e-12 -1.64858e-13 -9.93532e-13) (1.0912e-11 -1.78906e-12 1.95114e-12) (7.76024e-11 -1.01872e-11 2.80985e-11) (2.24295e-10 -1.75775e-11 9.65177e-11) (3.52493e-10 -9.19549e-12 1.30471e-10) (4.21891e-10 -7.02215e-12 7.73815e-11) (4.98895e-10 -2.43689e-11 -3.17494e-12) (5.39584e-10 -3.71708e-11 -3.48259e-11) (4.39066e-10 -1.37604e-11 7.33951e-12) (2.34213e-10 1.2492e-11 2.5599e-11) (3.56933e-11 6.81844e-12 -3.24377e-12) (-9.93562e-12 4.01101e-12 -1.90597e-11) (-2.29171e-10 1.16555e-12 -1.81168e-10) (-3.51921e-10 -9.06077e-12 -2.62735e-10) (-1.12662e-10 -5.0939e-13 -1.12455e-10) (-1.75208e-11 1.52731e-13 -1.97678e-11) (-5.09388e-12 -7.61724e-13 -1.08081e-12) (-4.70922e-12 -2.11771e-12 5.85141e-12) (-3.07413e-11 -1.1134e-11 5.09933e-11) (5.76019e-11 3.13824e-13 1.97033e-10) (2.95764e-10 5.99581e-11 4.42306e-10) (1.51086e-10 4.16057e-11 2.13308e-10) (1.77295e-12 9.07399e-13 8.06456e-12) (-2.76738e-12 -7.18977e-13 -1.13915e-12) (1.38003e-13 2.40616e-13 -5.66288e-13) (5.95711e-12 4.42285e-12 1.65848e-12) (-2.01402e-12 2.31119e-12 3.04201e-12) (-1.02499e-10 5.28347e-12 3.0179e-12) (-1.50355e-10 1.82052e-11 -7.57218e-11) (-3.25272e-11 3.02752e-11 -9.33055e-11) (3.05683e-11 1.48605e-11 -4.47299e-11) (2.4611e-10 8.33202e-12 2.14137e-11) (1.43639e-09 1.15206e-11 6.46887e-10) (1.86157e-09 3.18434e-11 1.1675e-09) (5.90249e-10 -1.20248e-11 4.5466e-10) (6.86256e-11 -1.4919e-11 3.49764e-11) (3.48032e-11 -1.72094e-11 -3.14297e-11) (9.85231e-11 -3.6774e-11 -1.8094e-10) (7.63223e-11 -1.39492e-11 -1.83869e-10) (3.04342e-12 -7.58021e-13 -4.74235e-11) (-9.92869e-12 -2.69956e-13 -1.04086e-11) (-5.42643e-12 -1.36271e-12 -1.52848e-12) (5.76362e-13 -1.32923e-12 2.21771e-12) (5.08109e-11 -9.41405e-12 5.66811e-11) (1.66169e-10 -5.02639e-12 1.42731e-10) (2.15952e-10 -3.24483e-12 9.81898e-11) (2.64728e-10 -2.12845e-11 7.50334e-12) (3.03064e-10 -3.85935e-11 -5.54791e-11) (2.02523e-10 -1.5971e-11 -2.63271e-11) (7.13273e-11 6.14012e-12 5.83183e-12) (3.31365e-12 2.31582e-12 -1.1623e-13) (-5.436e-11 1.50289e-11 -3.71356e-11) (-6.43894e-10 2.67002e-11 -3.61113e-10) (-1.27354e-09 -1.76688e-11 -6.48077e-10) (-7.02906e-10 -1.09099e-11 -3.9245e-10) (-1.73831e-10 1.16028e-12 -1.0766e-10) (-5.69486e-11 -2.74333e-12 -1.69961e-11) (-5.0641e-11 -9.29662e-12 1.42577e-11) (-4.2831e-11 -1.53135e-11 3.64006e-11) (-6.20897e-12 -9.69042e-12 1.3024e-10) (1.66014e-10 5.88985e-11 4.06337e-10) (1.68795e-10 9.33496e-11 3.42988e-10) (5.63968e-13 9.44785e-12 2.85181e-11) (-2.39173e-11 -2.24233e-12 -5.78443e-12) (-7.33754e-12 -8.83006e-13 -8.65861e-12) (9.80638e-12 4.96192e-12 -6.38443e-13) (8.03968e-12 8.83929e-12 1.11914e-11) (-8.14887e-11 1.48544e-11 3.00278e-11) (-3.48856e-10 4.35454e-11 -7.465e-11) (-1.34434e-10 7.19663e-11 -1.93119e-10) (2.4861e-11 4.45279e-11 -1.29626e-10) (1.29138e-10 9.95748e-12 -2.53913e-11) (1.27634e-09 -1.57677e-11 5.47254e-10) (3.08e-09 7.67299e-13 1.87821e-09) (1.49616e-09 -4.44757e-11 1.11279e-09) (2.44181e-10 -4.64877e-11 1.75939e-10) (3.08334e-11 -1.76586e-11 -5.06953e-12) (6.82217e-11 -4.16561e-11 -1.17093e-10) (1.39404e-10 -3.97932e-11 -3.16485e-10) (6.09743e-11 -4.77008e-12 -2.19405e-10) (-1.71049e-11 1.29081e-12 -6.59765e-11) (-4.84159e-11 -5.46806e-12 -3.53139e-11) (-2.9788e-11 -8.75031e-12 -5.32471e-12) (-1.09103e-12 -4.54483e-12 1.74939e-11) (1.07532e-10 -3.19219e-12 1.80532e-10) (2.4456e-10 -1.75827e-12 2.16733e-10) (2.90188e-10 -3.02117e-11 6.69386e-11) (3.6632e-10 -6.34703e-11 -5.5918e-11) (2.81642e-10 -3.69306e-11 -5.07991e-11) (1.28751e-10 5.46603e-12 7.3098e-12) (3.51155e-11 1.31737e-11 6.03092e-12) (-2.40267e-12 6.50195e-12 -7.14223e-12) (-3.08607e-10 4.17843e-11 -2.24665e-10) (-1.33098e-09 -1.94824e-12 -7.29495e-10) (-1.45618e-09 -3.96204e-11 -6.75588e-10) (-5.60888e-10 -5.45414e-12 -2.62632e-10) (-1.28227e-10 -2.20097e-12 -5.31947e-11) (-5.33826e-11 -9.25652e-12 6.25264e-13) (-9.32905e-12 -7.1028e-12 8.71948e-12) (-1.14262e-12 -1.02001e-11 5.77692e-11) (6.81476e-11 4.21345e-11 2.58401e-10) (1.0709e-10 1.4025e-10 3.94504e-10) (-1.53835e-11 4.33155e-11 9.27663e-11) (-6.44223e-11 1.88565e-12 -3.63726e-12) (-6.7174e-11 -1.58327e-11 -5.14923e-11) (4.29556e-12 1.04384e-12 -4.57745e-12) (6.07414e-11 2.85868e-11 3.22572e-11) (-2.22393e-11 2.21826e-11 4.50562e-11) (-4.47296e-10 8.04542e-11 1.98192e-11) (-3.48283e-10 1.358e-10 -2.94611e-10) (-5.7515e-12 1.29162e-10 -3.71103e-10) (8.35054e-11 1.97967e-11 -9.1112e-11) (6.2531e-10 -3.55092e-11 2.14572e-10) (3.40133e-09 -1.26956e-10 2.07037e-09) (3.23757e-09 -1.63828e-10 2.2756e-09) (8.41957e-10 -1.36232e-10 6.31821e-10) (9.69723e-11 -4.40701e-11 4.49396e-11) (3.34883e-11 -2.64631e-11 -3.11992e-11) (1.12209e-10 -5.15489e-11 -2.33933e-10) (2.00864e-10 -2.47842e-11 -4.61941e-10) (6.2181e-11 6.22862e-12 -2.8576e-10) (-5.64159e-11 -3.01723e-12 -1.21865e-10) (-2.04253e-10 -3.39092e-11 -1.04157e-10) (-1.38697e-10 -2.71592e-11 8.17343e-12) (-1.47396e-11 -2.65428e-12 8.68325e-11) (1.56613e-10 4.10503e-12 2.56896e-10) (2.40886e-10 -3.20259e-11 1.28331e-10) (2.70097e-10 -6.62072e-11 -7.72392e-12) (2.51321e-10 -5.13845e-11 -2.32337e-11) (1.70013e-10 -6.31815e-13 3.71042e-11) (9.28372e-11 2.77948e-11 4.13239e-11) (2.3468e-11 1.80031e-11 -2.77491e-12) (-2.6728e-11 2.66946e-11 -6.93125e-11) (-5.44078e-10 2.9276e-11 -4.7367e-10) (-1.38507e-09 -4.87947e-11 -7.32981e-10) (-1.0621e-09 -4.14973e-11 -3.9816e-10) (-2.89485e-10 -1.06136e-11 -9.18085e-11) (-3.74223e-11 -7.25285e-12 -5.52843e-12) (2.16535e-12 -5.4488e-12 3.86215e-12) (1.99096e-11 -9.54181e-12 2.90116e-11) (3.90139e-11 2.73072e-11 1.14132e-10) (2.35378e-11 1.50982e-10 3.02262e-10) (-7.78756e-11 1.24327e-10 2.07202e-10) (-1.16169e-10 1.9401e-11 2.52857e-11) (-1.79311e-10 -4.68046e-11 -9.94941e-11) (-1.53421e-11 -9.83172e-12 -3.13236e-11) (3.51369e-11 1.52189e-11 1.12456e-11) (3.01176e-11 5.9782e-11 1.08255e-10) (-3.46429e-10 1.2036e-10 1.43187e-10) (-6.28544e-10 2.1784e-10 -2.97221e-10) (-1.04803e-10 2.73228e-10 -7.57616e-10) (1.27873e-10 8.41656e-11 -3.8336e-10) (1.18246e-10 -1.68469e-11 -3.00955e-12) (1.76991e-09 -2.23378e-10 1.16497e-09) (4.13441e-09 -4.0343e-10 2.9778e-09) (1.88484e-09 -3.09892e-10 1.44583e-09) (3.53009e-10 -1.17017e-10 2.55675e-10) (4.18093e-11 -2.51577e-11 7.28526e-12) (4.63579e-11 -2.68038e-11 -6.25867e-11) (2.11663e-10 -4.44705e-11 -3.84349e-10) (3.42133e-10 -5.67329e-12 -6.62829e-10) (8.08326e-11 8.00483e-12 -3.78408e-10) (-1.80669e-10 -2.36094e-11 -2.26698e-10) (-8.125e-10 -1.02514e-10 -1.90102e-10) (-5.16172e-10 -3.79931e-11 1.28152e-10) (-5.04006e-11 1.55734e-12 1.2659e-10) (4.96072e-11 -1.36156e-11 7.27889e-11) (9.94862e-11 -4.21729e-11 2.21913e-11) (2.11461e-10 -6.58877e-11 3.07779e-11) (3.44828e-10 -1.47317e-11 1.59155e-10) (2.39387e-10 6.31812e-11 1.89717e-10) (6.77385e-11 4.39545e-11 3.90079e-11) (2.88347e-11 2.73579e-11 -3.38164e-11) (-4.75964e-11 3.44107e-11 -2.23575e-10) (-4.73393e-10 -1.19739e-11 -4.98487e-10) (-8.00314e-10 -5.62223e-11 -3.96213e-10) (-3.59807e-10 -3.784e-11 -9.64759e-11) (-2.59068e-11 -9.62157e-12 -2.36177e-12) (3.56935e-11 -2.71561e-11 9.30352e-12) (6.74354e-11 -2.31681e-11 3.16365e-11) (2.4803e-11 1.48688e-11 4.02755e-11) (-3.37069e-11 1.32089e-10 1.65907e-10) (-2.00565e-10 2.32346e-10 2.88362e-10) (-2.20825e-10 6.26555e-11 1.01337e-10) (-2.38438e-10 -5.78936e-11 -7.33075e-11) (-1.54788e-10 -7.22597e-11 -1.40909e-10) (-9.21182e-13 3.39768e-13 -1.39405e-12) (2.21038e-11 7.60421e-11 1.1417e-10) (-2.71457e-10 1.95954e-10 2.76447e-10) (-7.15797e-10 2.8739e-10 -1.36112e-10) (-2.22868e-10 3.87532e-10 -1.01506e-09) (2.65827e-10 2.7434e-10 -1.15875e-09) (4.5182e-11 -8.82938e-12 -8.03371e-11) (2.98527e-10 -1.33244e-10 2.67518e-10) (2.21895e-09 -5.53181e-10 2.1675e-09) (2.12218e-09 -4.86714e-10 2.02312e-09) (6.10838e-10 -1.91765e-10 5.6495e-10) (1.4792e-10 -5.24677e-11 8.36961e-11) (7.409e-11 -2.01531e-11 -1.01048e-11) (1.74407e-10 -3.01075e-11 -1.47901e-10) (5.20717e-10 -4.17054e-11 -6.09672e-10) (6.02931e-10 -2.18266e-12 -8.74234e-10) (6.08713e-11 1.34032e-12 -4.24218e-10) (-6.32072e-10 -5.14096e-11 -3.74227e-10) (-2.52617e-09 -1.49384e-10 -6.2813e-11) (-1.39508e-09 -6.3299e-11 3.88111e-10) (-1.07569e-10 -2.82079e-11 8.29441e-11) (1.57874e-11 -2.49955e-11 1.47432e-11) (2.07587e-10 -9.36907e-11 6.44088e-11) (6.68079e-10 -3.02641e-11 3.66185e-10) (6.52187e-10 1.92274e-10 5.95683e-10) (1.46756e-10 1.30422e-10 2.15413e-10) (1.81231e-11 2.35978e-11 3.86762e-12) (4.13643e-11 2.7885e-11 -1.04279e-10) (-6.70917e-12 -6.29781e-13 -2.90854e-10) (-1.31569e-10 -2.74497e-11 -2.27907e-10) (-8.2317e-11 -2.60649e-11 -6.32818e-11) (-2.81389e-12 -6.95244e-12 -2.21227e-12) (3.20006e-10 -1.44047e-10 -7.80258e-11) (1.67555e-10 -6.28479e-11 -2.25966e-11) (4.02379e-12 1.35601e-12 1.35726e-12) (-6.77979e-11 9.73077e-11 6.25095e-11) (-3.48881e-10 3.00505e-10 2.60552e-10) (-3.46736e-10 1.23771e-10 1.8983e-10) (-2.21128e-10 -4.09694e-11 -2.08896e-12) (-3.38371e-10 -1.31142e-10 -1.98816e-10) (-2.15324e-10 -2.07808e-11 -1.03595e-10) (-1.20465e-10 8.5649e-11 8.8878e-11) (-4.26151e-10 3.44617e-10 4.6862e-10) (-5.90344e-10 3.10715e-10 5.73611e-11) (-1.87366e-10 3.56132e-10 -8.19262e-10) (6.00601e-10 5.34837e-10 -2.14351e-09) (9.65143e-11 1.75576e-11 -4.51725e-10) (-1.74566e-12 -3.34695e-11 2.05588e-11) (2.98282e-10 -4.09142e-10 9.57094e-10) (8.94243e-10 -4.96997e-10 1.63036e-09) (6.24682e-10 -2.40912e-10 7.25564e-10) (4.17194e-10 -1.04037e-10 2.22743e-10) (4.21526e-10 -4.64633e-11 7.54752e-11) (3.92795e-10 -2.31253e-11 -3.26899e-11) (5.04443e-10 -4.20642e-11 -2.36644e-10) (9.43061e-10 -7.08473e-11 -7.69662e-10) (7.90443e-10 1.49058e-11 -9.85955e-10) (-4.33988e-11 2.29079e-11 -3.82792e-10) (-1.60741e-09 -1.95316e-11 -4.09148e-10) (-3.51126e-09 -2.36364e-10 3.49608e-10) (-1.07591e-09 -2.3975e-10 3.00568e-10) (-5.12501e-11 -6.90206e-11 2.51995e-11) (3.83854e-11 -5.27151e-11 1.61562e-11) (2.81299e-10 -1.91277e-11 1.96362e-10) (7.71963e-10 3.77019e-10 8.48857e-10) (3.32008e-10 4.39682e-10 7.08902e-10) (9.99403e-12 1.04693e-10 1.20329e-10) (1.93364e-12 5.17768e-12 -2.48871e-12) (3.32535e-11 9.34389e-13 -7.40499e-11) (5.62691e-11 -2.27449e-11 -1.20987e-10) (7.64284e-11 -4.32206e-11 -9.33292e-11) (1.87128e-10 -9.46723e-11 -9.38799e-11) (2.09934e-09 -7.05011e-10 -1.00984e-09) (1.13434e-09 -3.60972e-10 -8.43721e-10) (1.05107e-11 -5.6675e-12 -1.36929e-10) (-5.40682e-10 2.11233e-10 -1.20577e-10) (-9.09445e-10 4.02489e-10 1.38156e-10) (-2.65468e-10 1.01739e-10 1.31569e-10) (-3.42203e-11 -6.7201e-12 1.82744e-11) (-1.20568e-10 -4.87763e-11 -4.83675e-11) (-6.91943e-10 -3.84022e-11 -2.57498e-10) (-1.005e-09 2.56817e-10 9.06655e-11) (-1.13475e-09 5.60942e-10 7.08105e-10) (-5.76626e-10 3.17639e-10 2.3197e-10) (-7.41815e-11 1.82313e-10 -3.27049e-10) (8.97525e-10 6.09965e-10 -2.33841e-09) (3.68579e-10 1.67312e-10 -1.22152e-09) (-3.33221e-11 -3.22293e-11 -3.34136e-11) (-2.23161e-10 -2.884e-10 3.72882e-10) (2.05828e-11 -4.30559e-10 8.55498e-10) (4.92098e-10 -3.37019e-10 7.3874e-10) (9.47784e-10 -2.55152e-10 6.14062e-10) (1.09056e-09 -1.11333e-10 4.62493e-10) (7.8472e-10 -8.04368e-12 2.558e-10) (4.87499e-10 -3.06578e-11 3.3882e-11) (6.51419e-10 -1.00583e-10 -2.71109e-10) (1.31831e-09 -1.02855e-10 -1.08277e-09) (9.51162e-10 1.40542e-10 -1.22854e-09) (-6.1302e-11 5.11803e-11 -2.59555e-10) (-8.86055e-10 -5.71617e-11 -7.08464e-11) (-1.0851e-09 -3.24763e-10 2.4036e-10) (-3.32847e-10 -2.44114e-10 7.39335e-11) (-8.71463e-11 -9.65955e-11 2.48065e-12) (-1.16567e-11 -5.2497e-12 1.93446e-11) (1.3155e-10 2.91874e-10 4.95365e-10) (3.80099e-10 9.54591e-10 1.27374e-09) (2.09931e-11 4.93402e-10 6.48271e-10) (-1.63841e-11 5.77261e-11 8.1491e-11) (1.1537e-12 4.64407e-13 7.38871e-13) (4.52996e-11 -1.29309e-11 -1.39923e-11) (3.07943e-10 -1.0911e-10 -9.64145e-11) (1.12861e-09 -4.12319e-10 -4.08234e-10) (2.39803e-09 -1.04842e-09 -1.78527e-09) (1.30155e-09 -6.37181e-10 -2.24616e-09) (-5.58515e-10 -7.77142e-11 -1.53861e-09) (-3.18885e-09 3.47509e-10 -1.57739e-09) (-1.8388e-09 1.58891e-10 -3.51942e-10) (-2.73424e-11 -3.86444e-12 6.2975e-12) (9.00974e-11 -1.72523e-11 4.44921e-11) (1.22773e-11 -1.912e-13 4.33123e-12) (-2.66824e-10 5.4619e-11 -7.12233e-11) (-1.86926e-09 4.34629e-10 -6.40826e-11) (-1.8816e-09 6.33682e-10 7.1655e-10) (-6.95723e-10 2.97495e-10 4.81684e-10) (-3.58388e-11 3.26543e-11 -2.20965e-11) (3.51919e-10 2.66988e-10 -1.07589e-09) (6.65055e-10 3.17632e-10 -1.76763e-09) (2.10216e-11 -2.24535e-11 -2.73794e-10) (-4.75413e-11 -7.23662e-11 6.89033e-12) (-4.23749e-11 -2.3832e-10 2.20676e-10) (2.59022e-10 -3.53175e-10 5.34771e-10) (8.5613e-10 -3.81363e-10 1.04761e-09) (1.05907e-09 -1.99777e-10 1.17936e-09) (6.54683e-10 -4.64857e-11 6.58473e-10) (3.52367e-10 -4.52487e-11 2.12616e-10) (4.24618e-10 -1.14128e-10 -2.56239e-11) (1.0833e-09 -2.43464e-10 -6.33821e-10) (1.88155e-09 2.26319e-12 -1.6671e-09) (1.09523e-09 2.63595e-10 -1.1815e-09) (3.76518e-11 1.9275e-11 -8.1509e-11) (-7.00034e-11 -3.48057e-11 6.08561e-12) (-3.667e-10 -2.1545e-10 5.02545e-11) (-5.7735e-10 -2.52231e-10 -2.78265e-11) (-6.16052e-10 -5.75511e-11 4.94244e-11) (-4.33769e-10 2.83017e-10 3.99487e-10) (-1.29799e-10 1.19172e-09 1.34111e-09) (1.32118e-10 1.20123e-09 1.36315e-09) (3.78941e-11 3.37657e-10 5.06783e-10) (4.49264e-11 3.5113e-11 1.25818e-10) (1.25426e-10 -2.48e-11 7.18003e-11) (5.30841e-10 -1.87045e-10 3.34975e-12) (1.50467e-09 -6.34397e-10 -5.21584e-10) (8.98067e-10 -6.26168e-10 -1.22912e-09) (-3.40498e-11 -4.9128e-10 -2.37164e-09) (-2.68694e-09 -2.2554e-10 -3.72512e-09) (-4.20505e-09 -3.17899e-10 -2.80434e-09) (-6.88502e-10 -3.47046e-10 -4.06627e-10) (1.49037e-10 -2.1557e-10 -1.76626e-11) (8.2114e-10 -2.45655e-10 1.45192e-10) (3.5305e-10 9.85975e-11 8.03341e-11) (-4.77238e-11 1.3652e-10 -5.83293e-12) (-1.19159e-09 5.94061e-10 -8.55208e-11) (-1.46963e-09 4.8042e-10 3.57998e-10) (-5.09702e-10 1.60292e-10 5.04521e-10) (-4.64427e-11 1.84323e-11 8.17873e-11) (8.22267e-12 1.29794e-11 -5.06384e-11) (2.49628e-10 1.19839e-10 -8.82935e-10) (2.66018e-10 -1.39165e-12 -8.22761e-10) (6.61909e-11 -8.28417e-11 -1.63307e-10) (2.04742e-11 -5.83298e-11 -7.97156e-12) (4.15313e-11 -8.01747e-11 7.63683e-11) (1.97228e-10 -1.55266e-10 4.61873e-10) (5.2561e-10 -2.34233e-10 1.33597e-09) (5.59994e-10 -2.70158e-10 1.43711e-09) (3.44619e-10 -1.99036e-10 5.82302e-10) (2.77824e-10 -1.45041e-10 1.39256e-10) (5.37928e-10 -1.94477e-10 -1.45779e-10) (1.20147e-09 -1.55672e-10 -8.1643e-10) (1.58079e-09 1.55118e-10 -1.29144e-09) (7.82248e-10 1.47156e-10 -6.07529e-10) (4.7447e-11 1.38905e-12 -4.53033e-11) (-4.38961e-11 -1.94882e-11 -1.62115e-11) (-5.01168e-10 -9.80604e-11 -8.92026e-11) (-1.2278e-09 7.26206e-12 -5.82033e-11) (-1.61474e-09 4.59822e-10 4.7743e-10) (-1.08004e-09 1.15889e-09 1.21203e-09) (-6.22438e-11 1.4549e-09 1.39779e-09) (3.63758e-10 7.99471e-10 8.99963e-10) (3.58221e-10 2.06992e-10 4.64009e-10) (4.71015e-10 -3.64311e-11 3.0653e-10) (7.41849e-10 -2.55359e-10 1.10029e-10) (9.94988e-10 -5.03772e-10 -3.74306e-10) (1.56824e-11 -1.21587e-10 -2.82852e-10) (-1.04187e-09 -1.16801e-10 -1.56769e-09) (-3.92901e-09 -2.04307e-10 -3.5753e-09) (-2.29007e-09 -8.62523e-10 -1.98515e-09) (2.13338e-11 -6.70211e-10 -3.1027e-10) (1.41866e-09 -1.34259e-09 1.64433e-10) (1.53933e-09 -7.19672e-10 3.15e-10) (4.36051e-10 3.9287e-11 2.84389e-11) (8.57582e-11 2.44945e-10 -6.56241e-11) (-2.98828e-10 5.49566e-10 -1.46368e-10) (-4.1595e-10 3.28616e-10 2.83522e-11) (-1.40074e-10 5.61162e-11 1.82482e-10) (-3.31958e-11 -3.17241e-11 2.99647e-10) (1.69526e-12 -1.0797e-11 4.2731e-11) (1.29312e-11 -4.99089e-13 -2.24601e-11) (1.80795e-10 -1.61813e-12 -3.61614e-10) (1.89878e-10 -6.49012e-11 -4.30042e-10) (1.56436e-11 -4.655e-11 -1.61862e-10) (-1.45539e-11 -7.07423e-12 -2.28875e-11) (-3.35089e-12 -4.61932e-13 6.98016e-12) (6.94097e-11 -4.0559e-11 3.55587e-10) (4.15107e-10 -3.43228e-10 1.37608e-09) (5.68771e-10 -6.22951e-10 1.42943e-09) (4.00751e-10 -4.15484e-10 5.41634e-10) (2.71535e-10 -1.89739e-10 7.34682e-11) (3.84996e-10 -1.15075e-10 -1.56569e-10) (6.95584e-10 1.0973e-11 -4.71031e-10) (6.85929e-10 1.28869e-10 -5.02157e-10) (1.98432e-10 6.35103e-11 -1.94838e-10) (-8.6863e-12 1.42463e-11 -5.82397e-11) (-2.1378e-10 3.00856e-11 -1.39105e-10) (-6.62528e-10 1.13057e-10 -1.57241e-10) (-1.39758e-09 4.16259e-10 2.12342e-10) (-1.82877e-09 9.96665e-10 1.00955e-09) (-6.17548e-10 1.05239e-09 9.47648e-10) (3.13851e-10 7.53499e-10 5.96991e-10) (8.14e-10 4.49897e-10 5.01819e-10) (9.4495e-10 4.02651e-11 3.86228e-10) (6.73162e-10 -2.0775e-10 1.33129e-10) (2.53886e-10 -1.70972e-10 -8.42528e-11) (-7.00025e-11 6.27665e-12 -3.57876e-11) (-9.592e-10 1.87061e-10 -5.49758e-10) (-1.16873e-09 -6.99267e-11 -8.17236e-10) (-1.46254e-10 -4.27929e-10 -3.00328e-10) (9.05247e-10 -1.47656e-09 -2.61767e-11) (1.66484e-09 -1.64855e-09 4.56606e-10) (7.92977e-10 -5.46541e-10 1.50508e-10) (1.99196e-10 -5.07902e-11 -5.99135e-11) (1.06637e-10 8.83554e-11 -1.39526e-10) (5.46285e-11 2.74509e-10 -2.07369e-10) (-1.13499e-11 1.9415e-10 -6.19378e-11) (-3.04434e-11 6.3789e-11 6.34839e-11) (-4.04247e-10 3.14115e-11 6.83263e-10) (-1.24137e-09 -2.05709e-10 1.38686e-09) (-4.90129e-10 -1.43762e-10 4.16088e-10) (1.83089e-12 -2.42458e-12 -1.45752e-12) (3.75525e-10 3.96215e-11 -3.6099e-10) (3.00911e-10 1.44607e-10 -6.83992e-10) (-2.23051e-10 1.30831e-10 -5.54064e-10) (-3.02643e-10 6.40883e-11 -2.24318e-10) (-2.52001e-11 -3.07488e-12 1.17763e-11) (9.7731e-11 -1.57223e-10 3.77819e-10) (5.83229e-10 -6.8642e-10 1.24351e-09) (6.37215e-10 -7.6901e-10 1.06517e-09) (3.24407e-10 -3.59412e-10 3.11439e-10) (1.75375e-10 -1.31356e-10 1.19872e-11) (2.29742e-10 -5.79298e-11 -1.08156e-10) (3.26999e-10 4.53264e-11 -2.06151e-10) (1.88028e-10 1.0053e-10 -1.7515e-10) (-3.39826e-12 8.17309e-11 -1.34162e-10) (-3.21147e-10 1.72537e-10 -3.22633e-10) (-7.67383e-10 2.95256e-10 -3.99975e-10) (-9.94376e-10 4.17629e-10 -5.96063e-11) (-1.38821e-09 6.54913e-10 5.52006e-10) (-8.52418e-10 6.07984e-10 6.45208e-10) (-1.28854e-11 2.40641e-10 1.8513e-10) (4.97892e-10 2.73609e-10 1.72858e-10) (1.01201e-09 1.10117e-10 2.222e-10) (5.12221e-10 -8.9461e-11 1.31203e-10) (2.55204e-11 -1.55716e-11 7.42397e-12) (-8.44598e-11 8.56169e-11 2.80103e-11) (-1.99169e-10 1.18251e-10 1.83379e-11) (-1.45643e-11 -6.16299e-12 5.52188e-12) (2.29842e-10 -4.39769e-10 1.51113e-10) (9.30319e-10 -1.37735e-09 4.80993e-10) (7.38297e-10 -1.00603e-09 2.0655e-10) (3.72251e-10 -4.16984e-10 -1.0974e-10) (2.36737e-10 -1.6575e-10 -2.18576e-10) (1.44219e-10 -1.36126e-11 -1.98776e-10) (7.47043e-11 8.39476e-11 -1.24456e-10) (3.61796e-11 1.54691e-10 -5.49437e-11) (-4.44435e-11 2.07898e-10 8.62579e-11) (-5.22425e-10 3.29856e-10 6.91037e-10) (-1.68014e-09 -1.86442e-10 1.84243e-09) (-1.5858e-09 -9.11964e-10 1.53202e-09) (-2.77466e-10 -3.11678e-10 2.30284e-10) (2.4443e-11 -6.0143e-12 -3.4813e-11) (6.53483e-10 4.87542e-10 -9.06378e-10) (3.80453e-10 8.03231e-10 -1.24717e-09) (-2.5428e-10 3.17477e-10 -5.54945e-10) (-1.53157e-10 1.76012e-11 -9.10599e-11) (-1.54746e-11 -2.92954e-11 2.21363e-11) (1.43567e-10 -2.5528e-10 3.02357e-10) (3.93561e-10 -4.95049e-10 6.16619e-10) (3.16871e-10 -4.16429e-10 4.15858e-10) (2.04953e-10 -2.62078e-10 1.13443e-10) (2.33011e-10 -1.96135e-10 -4.66396e-11) (3.06587e-10 -9.75184e-11 -1.51561e-10) (1.62019e-10 4.48103e-11 -1.34445e-10) (-4.66714e-11 1.14709e-10 -1.36335e-10) (-9.53184e-10 4.4789e-10 -5.3112e-10) (-1.94601e-09 7.16572e-10 -7.41728e-10) (-1.03809e-09 5.54387e-10 -1.79558e-10) (-4.38002e-10 3.66131e-10 1.90625e-10) (-2.82056e-10 2.38851e-10 2.85458e-10) (-4.35338e-11 5.11344e-11 7.38657e-11) (3.63723e-11 1.49232e-11 1.76805e-11) (2.67757e-10 2.23248e-11 4.17281e-11) (1.93455e-10 2.1983e-11 4.70156e-11) (1.19406e-11 1.64405e-11 1.30232e-11) (3.10939e-11 1.0498e-10 8.54309e-11) (4.37971e-11 9.67372e-11 1.80848e-10) (1.41673e-10 -5.55979e-11 3.21696e-10) (3.56709e-10 -4.47842e-10 4.98955e-10) (4.13564e-10 -6.71861e-10 3.04363e-10) (3.80392e-10 -5.9745e-10 -3.31427e-11) (4.11158e-10 -5.31297e-10 -2.95184e-10) (3.33651e-10 -3.50215e-10 -3.58958e-10) (1.46744e-10 -8.66159e-11 -1.86003e-10) (5.49781e-11 3.26131e-11 -6.20541e-11) (6.63976e-11 1.51661e-10 -2.74621e-11) (6.71354e-11 2.256e-10 5.56408e-11) (3.67969e-11 8.41214e-11 9.41867e-11) (3.29148e-11 -6.30151e-11 1.45049e-10) (-9.42011e-11 -3.54363e-10 3.03906e-10) (-8.19537e-10 -4.96812e-10 4.54475e-10) (-1.8459e-09 -9.26212e-11 3.18892e-10) (-8.66563e-10 3.58646e-10 -2.08034e-10) (-1.43773e-10 4.75873e-10 -4.3501e-10) (8.92615e-11 4.59351e-10 -4.70131e-10) (2.00983e-11 1.07414e-10 -1.32801e-10) (8.9657e-13 3.53811e-13 -5.17942e-12) (1.03995e-11 -2.43507e-11 9.19319e-12) (6.3043e-11 -1.30679e-10 8.15175e-11) (1.321e-10 -2.54108e-10 1.18978e-10) (2.47957e-10 -4.22151e-10 5.62975e-11) (4.30113e-10 -5.64019e-10 -8.74238e-11) (4.41961e-10 -3.54874e-10 -1.59357e-10) (1.43603e-10 -1.65362e-11 -8.43133e-11) (-4.75738e-11 1.33043e-10 -1.03019e-10) (-1.55661e-09 9.13314e-10 -5.72e-10) (-3.743e-09 1.34488e-09 -7.75077e-10) (-1.55103e-09 6.54427e-10 -2.74102e-11) (-1.72523e-10 2.12061e-10 1.70502e-10) (-1.17052e-11 1.30702e-10 1.92943e-10) (-1.31584e-11 1.7119e-11 3.78935e-11) (-2.476e-12 -5.1768e-13 -3.08698e-13) (9.28391e-13 -1.68317e-12 -5.14982e-12) (8.69783e-12 2.90951e-12 -5.2495e-12) (2.0466e-11 2.78706e-11 8.43147e-12) (2.23158e-10 1.05902e-10 2.53314e-10) (3.6428e-10 2.49206e-10 5.9729e-10) (3.83833e-10 1.09869e-10 6.56423e-10) (3.28223e-10 -1.18945e-10 4.09075e-10) (3.35009e-10 -2.67056e-10 1.77822e-10) (4.74319e-10 -4.76648e-10 -1.75187e-11) (5.28755e-10 -6.29781e-10 -2.10522e-10) (2.7816e-10 -4.22258e-10 -2.3361e-10) (4.31184e-11 -1.04008e-10 -1.20593e-10) (-1.01114e-11 1.01543e-11 -7.267e-11) (-2.50025e-11 1.11527e-10 -9.07725e-11) (6.52041e-12 1.38415e-10 -5.09356e-11) (1.18782e-11 1.69971e-11 -1.7427e-12) (8.44487e-12 -1.85721e-11 1.14361e-11) (-9.02855e-11 -1.1123e-10 1.03927e-10) (-1.06167e-09 -2.9852e-11 6.3725e-10) (-3.54878e-09 8.04311e-10 1.73589e-09) (-2.66418e-09 7.50851e-10 1.15176e-09) (-2.70858e-10 1.46076e-10 6.64532e-11) (6.05797e-11 1.38239e-10 -1.0726e-10) (3.99206e-10 4.52112e-10 -4.98748e-10) (2.07376e-10 2.48547e-10 -3.76281e-10) (2.4063e-11 1.60494e-11 -1.10709e-10) (1.12138e-11 -5.67087e-11 -6.64965e-11) (8.65264e-11 -2.45796e-10 -1.276e-10) (3.1768e-10 -6.54317e-10 -2.15064e-10) (5.6442e-10 -9.90575e-10 -1.31764e-10) (4.91679e-10 -6.67135e-10 2.82854e-11) (1.18266e-10 -7.43955e-11 2.32831e-12) (1.38684e-12 5.62834e-11 -3.39089e-11) (-7.52803e-10 7.38059e-10 -4.39204e-10) (-2.98014e-09 1.47053e-09 -8.44683e-10) (-2.49033e-09 9.48862e-10 -1.44558e-11) (-5.14375e-10 3.42915e-10 4.03261e-10) (-4.05386e-11 2.23559e-10 4.07928e-10) (-1.15513e-11 3.79588e-11 6.17359e-11) (-1.50136e-11 -2.24962e-12 -1.10607e-11) (-1.40566e-11 -3.80652e-11 -6.40565e-11) (2.55376e-11 -2.67893e-11 -2.28261e-11) (7.4078e-11 -6.49105e-12 3.12669e-11) (4.11408e-11 -2.5257e-11 1.12996e-10) (8.35835e-11 4.78935e-11 2.10056e-10) (2.01985e-10 6.27244e-11 2.55187e-10) (3.86859e-10 -4.34599e-11 2.26793e-10) (7.34272e-10 -3.03727e-10 1.49839e-10) (1.05883e-09 -6.65131e-10 -1.72356e-11) (7.2947e-10 -6.11435e-10 -1.1194e-10) (1.26912e-10 -1.69444e-10 -4.92844e-11) (-9.40585e-12 -1.09068e-11 -1.30094e-11) (-1.5526e-10 6.22858e-11 -1.07725e-10) (-3.65554e-10 2.70918e-10 -3.60389e-10) (-1.92268e-10 2.42841e-10 -3.72734e-10) (4.10957e-12 2.08795e-11 -7.52086e-11) (1.80322e-11 -2.4471e-11 1.03429e-11) (-7.31279e-11 -1.31953e-10 2.91153e-10) (-1.22153e-09 7.67611e-11 1.16535e-09) (-3.40192e-09 9.56921e-10 1.98911e-09) (-2.24025e-09 7.58126e-10 1.29374e-09) (-3.0849e-10 1.68298e-10 2.2482e-10) (8.60007e-12 9.55715e-11 -2.0854e-11) (2.82205e-10 6.72371e-10 -5.51078e-10) (3.15694e-10 9.62354e-10 -1.15339e-09) (7.49185e-11 3.39658e-10 -8.89428e-10) (4.72203e-11 -1.20532e-10 -5.78617e-10) (1.48697e-10 -4.77785e-10 -4.55574e-10) (3.45411e-10 -9.85312e-10 -2.37752e-10) (6.02357e-10 -1.55112e-09 3.03295e-10) (5.5728e-10 -1.17961e-09 5.93052e-10) (1.35954e-10 -1.51962e-10 1.14599e-10) (1.48289e-11 4.18796e-11 -2.19647e-11) (-3.57947e-10 7.24755e-10 -5.39167e-10) (-1.82461e-09 1.48678e-09 -1.22965e-09) (-2.46665e-09 1.18122e-09 -6.81748e-10) (-1.04024e-09 4.78982e-10 2.8715e-10) (-2.25888e-10 2.82595e-10 5.69818e-10) (5.12174e-11 1.63667e-10 4.06258e-10) (2.41079e-11 5.78803e-12 3.87243e-11) (4.49362e-11 -4.18464e-11 7.82846e-13) (1.18672e-10 -1.44358e-10 1.21505e-11) (7.47195e-11 -9.93685e-11 6.41646e-11) (1.88673e-11 -9.66518e-11 3.16399e-11) (2.89429e-11 -7.72818e-11 2.37992e-11) (9.80326e-11 -9.80906e-11 1.62735e-11) (3.29924e-10 -1.83676e-10 -2.94577e-11) (6.5653e-10 -2.71617e-10 -1.37989e-10) (5.86893e-10 -2.24316e-10 -1.54966e-10) (1.61518e-10 -7.04156e-11 -3.45196e-11) (3.2204e-12 -2.61286e-12 2.30532e-12) (-1.81605e-11 9.98873e-12 1.92265e-11) (-4.56135e-11 5.7515e-11 2.1482e-11) (-3.43011e-11 1.13897e-10 -4.37979e-11) (1.10968e-11 1.56885e-10 -1.98657e-10) (8.23874e-11 5.81022e-11 -2.27314e-10) (4.92501e-11 -2.05866e-11 -4.39164e-11) (-3.64541e-12 -1.68731e-11 3.50245e-11) (-8.88771e-10 8.95872e-11 7.43666e-10) (-4.54047e-09 8.60323e-10 2.1932e-09) (-4.59573e-09 8.54059e-10 1.81326e-09) (-1.08238e-09 2.5771e-10 4.24787e-10) (-5.51721e-11 8.51838e-11 -2.54784e-12) (1.35461e-10 5.34456e-10 -3.33591e-10) (3.75062e-10 1.17444e-09 -1.08554e-09) (2.13862e-10 6.09739e-10 -1.10814e-09) (8.71542e-11 -7.32476e-11 -6.33426e-10) (1.23128e-10 -5.12419e-10 -3.55101e-10) (3.52668e-10 -1.38638e-09 7.0737e-11) (6.02321e-10 -2.23099e-09 1.02031e-09) (3.09405e-10 -1.39657e-09 1.1266e-09) (1.91705e-11 -1.42635e-10 2.14007e-10) (-1.14477e-13 3.08313e-11 -7.47989e-12) (-8.3165e-11 6.23885e-10 -5.75152e-10) (-5.77656e-10 1.19712e-09 -1.42605e-09) (-9.10272e-10 8.62852e-10 -1.1402e-09) (-4.63017e-10 2.82862e-10 -2.18692e-10) (-1.10571e-10 8.60983e-11 1.34384e-10) (1.51128e-10 1.47488e-10 8.07915e-10) (5.66369e-10 3.42434e-11 1.09283e-09) (4.21025e-10 -1.45324e-10 5.21424e-10) (1.76264e-10 -1.64611e-10 1.62758e-10) (5.6847e-11 -1.30282e-10 5.59046e-11) (-3.94803e-11 -3.26438e-11 -2.75306e-11) (-5.09307e-11 -7.8406e-11 -1.27927e-10) (4.51742e-11 -1.38003e-10 -2.3853e-10) (2.04417e-10 -1.94775e-10 -3.03909e-10) (1.79117e-10 -1.39419e-10 -1.7831e-10) (3.46406e-11 -3.3431e-11 -2.79626e-11) (1.83936e-13 -3.20146e-12 1.6809e-12) (-1.1412e-11 -7.40739e-12 3.49629e-11) (-8.71917e-12 1.3794e-12 8.97595e-11) (2.04251e-11 2.36796e-11 6.08715e-11) (5.83358e-11 6.06403e-11 1.16588e-11) (1.62693e-10 1.33218e-10 -1.29756e-10) (2.19063e-10 7.90374e-11 -3.28916e-10) (1.08752e-10 -1.70026e-11 -1.99173e-10) (2.63532e-12 8.56441e-13 -9.68633e-13) (-1.51683e-10 2.01404e-10 3.52477e-10) (-1.64228e-09 9.10128e-10 1.79381e-09) (-3.62307e-09 7.96422e-10 2.35543e-09) (-2.7073e-09 8.80089e-11 1.07858e-09) (-6.56533e-10 3.45018e-11 4.59714e-11) (-1.18314e-10 1.37899e-10 -1.4422e-10) (5.16093e-11 5.58927e-10 -5.41332e-10) (1.88133e-10 4.39303e-10 -5.71989e-10) (1.26815e-10 -1.13742e-11 -2.13336e-10) (3.47593e-10 -5.44237e-10 -1.64703e-10) (9.76207e-10 -1.90645e-09 2.30021e-10) (8.47521e-10 -1.99332e-09 7.81717e-10) (4.81418e-11 -7.47463e-10 6.69193e-10) (-3.03207e-10 -1.18239e-10 4.43941e-10) (-2.39914e-10 1.11408e-10 1.2048e-10) (-1.02036e-10 1.53186e-10 -1.34782e-10) (-5.3644e-11 2.91691e-10 -7.01212e-10) (-2.65938e-12 2.27199e-10 -9.04283e-10) (3.7467e-11 1.03121e-10 -3.68596e-10) (2.01449e-11 1.44859e-11 -1.53207e-11) (1.63285e-10 1.83645e-11 1.97698e-10) (5.99549e-10 -7.53349e-11 1.02406e-09) (5.18622e-10 -1.6153e-10 1.04155e-09) (9.76859e-11 -8.28988e-11 2.97701e-10) (-8.61664e-12 -1.63297e-11 1.7883e-11) (-2.16212e-10 6.13754e-11 -2.28738e-10) (-1.1424e-10 -1.15246e-10 -4.70936e-10) (4.03161e-11 -3.07149e-10 -4.91425e-10) (3.72903e-11 -2.17737e-10 -1.89808e-10) (-3.79459e-12 -4.46674e-11 -1.70499e-11) (-5.5277e-12 -2.72034e-12 2.49724e-12) (-1.36892e-11 7.80811e-12 1.27054e-11) (-6.00708e-12 1.29248e-11 2.22522e-11) (2.40669e-11 1.44202e-11 4.41046e-11) (1.1776e-10 1.69005e-11 7.47061e-11) (2.10668e-10 2.2271e-11 2.58775e-11) (1.78363e-10 2.11793e-11 -8.44135e-11) (6.77774e-11 -2.98249e-12 -1.63862e-10) (-5.25633e-11 -2.97623e-11 -1.43779e-10) (-4.95753e-11 -4.98692e-12 -5.59632e-12) (-1.29864e-10 1.56346e-10 3.74004e-10) (-2.91362e-10 9.18237e-10 1.87491e-09) (-8.78265e-10 9.98831e-10 2.24408e-09) (-1.20202e-09 4.28117e-10 1.26386e-09) (-6.80729e-10 7.33652e-11 2.78477e-10) (-1.3818e-10 1.80857e-11 -4.19431e-11) (-3.99443e-12 2.47051e-11 -7.75281e-11) (1.18977e-10 1.20151e-11 -1.1104e-10) (4.43357e-10 -2.07479e-10 -1.21577e-10) (1.1824e-09 -1.0484e-09 -1.10399e-10) (1.4145e-09 -1.60402e-09 -1.57131e-10) (4.81099e-10 -6.42098e-10 -6.59404e-11) (1.75315e-12 -2.03328e-11 1.24472e-11) (-3.30576e-10 1.25362e-10 2.81092e-10) (-1.0044e-09 3.77713e-10 6.53375e-10) (-4.41774e-10 8.40294e-11 1.35529e-10) (-8.78834e-11 -4.49924e-11 -8.66059e-11) (6.80421e-12 -1.90885e-10 -4.09429e-10) (1.21041e-10 -1.25666e-10 -3.85562e-10) (8.96774e-11 7.34374e-12 -1.02933e-10) (1.02651e-10 6.15728e-11 2.43412e-13) (1.53088e-10 1.43401e-10 1.26976e-10) (6.36129e-11 1.69237e-10 1.87432e-10) (-7.09622e-11 1.36365e-10 1.02615e-10) (-1.78569e-10 1.25082e-10 -2.2175e-11) (-8.3132e-11 4.52821e-11 -1.76334e-10) (-4.39733e-11 -1.44208e-10 -1.86119e-10) (-5.40408e-11 -4.08764e-10 -2.05495e-10) (-9.25009e-11 -3.67654e-10 -9.75622e-11) (-5.37428e-11 -9.58387e-11 -1.00533e-11) (-9.66407e-12 -2.54311e-12 5.92927e-12) (-9.71572e-12 3.86825e-11 4.2681e-11) (1.43596e-11 1.24983e-10 1.31129e-10) (4.99823e-11 1.20726e-10 1.58029e-10) (6.50095e-11 5.537e-11 1.02336e-10) (4.69294e-11 1.20726e-11 2.81311e-11) (3.09112e-11 8.14961e-13 -1.46461e-11) (3.19912e-11 -5.90033e-12 -1.14494e-10) (-5.23825e-11 -2.40837e-11 -2.69623e-10) (-1.25975e-10 -3.13011e-11 -1.69636e-10) (-6.22634e-11 -4.53022e-12 8.05292e-12) (-1.37883e-10 1.08765e-10 4.31066e-10) (-2.2613e-10 5.96045e-10 1.70648e-09) (-4.59843e-10 7.72873e-10 1.9276e-09) (-3.89276e-10 3.80838e-10 9.14802e-10) (-6.46948e-11 5.67886e-11 1.63676e-10) (1.53756e-11 -3.76955e-12 1.63594e-11) (2.11378e-10 -1.1445e-10 1.91392e-12) (6.41432e-10 -5.04676e-10 -1.62893e-10) (8.28248e-10 -9.69653e-10 -5.39633e-10) (4.50874e-10 -9.53758e-10 -7.7507e-10) (-4.19064e-11 -4.06241e-10 -4.77482e-10) (-1.64077e-10 -4.15865e-11 -1.34971e-10) (-2.72627e-10 1.51923e-10 3.11289e-11) (-2.39396e-10 2.93303e-10 2.25038e-10) (-1.61681e-11 8.28875e-11 1.12013e-10) (4.23103e-11 -1.81799e-11 2.50691e-11) (1.97702e-10 -1.97825e-10 -3.68643e-11) (1.7134e-10 -2.3193e-10 -9.45482e-11) (1.82892e-11 -3.99882e-11 -2.45083e-11) (-6.47555e-12 3.20465e-12 -4.53522e-12) (-9.07726e-11 1.25944e-10 -3.43434e-11) (-2.30809e-10 4.59218e-10 -1.37725e-10) (-3.05024e-10 6.59187e-10 -2.76231e-10) (-2.18314e-10 3.69186e-10 -2.79382e-10) (1.09662e-11 1.08966e-10 -2.73263e-10) (2.08111e-12 -1.62108e-11 -2.41926e-10) (-6.11157e-11 -9.56461e-11 -1.91621e-10) (-1.12709e-10 -1.32274e-10 -1.2175e-10) (-8.50692e-11 -1.08787e-10 -2.70817e-11) (-2.71038e-11 -6.20128e-11 2.84686e-11) (1.00745e-11 -3.54149e-11 6.37684e-11) (4.07451e-11 7.70754e-12 1.09843e-10) (4.27448e-11 8.49683e-11 1.47857e-10) (5.49069e-12 1.41754e-10 1.50446e-10) (-2.3711e-11 9.30765e-11 7.82367e-11) (-1.40039e-11 1.90753e-11 7.66727e-12) (-2.02681e-11 4.39726e-12 -2.11618e-11) (-7.0348e-11 -1.73219e-11 -1.34283e-10) (-8.65753e-11 -2.87966e-11 -1.95042e-10) (-2.39654e-11 -7.75418e-12 -5.88298e-11) (4.88297e-13 -6.96325e-14 8.5419e-13) (8.65631e-11 1.43398e-11 2.12576e-10) (3.00217e-10 1.15589e-10 9.07755e-10) (3.22514e-10 2.12833e-10 1.2121e-09) (2.42022e-10 1.27457e-10 8.27653e-10) (1.94126e-10 -1.39254e-11 3.76218e-10) (1.75862e-10 -1.01047e-10 1.48315e-10) (1.96314e-10 -1.842e-10 1.78411e-11) (1.93182e-10 -2.27694e-10 -1.44565e-10) (1.29202e-10 -1.80599e-10 -3.40688e-10) (-3.59345e-11 -7.69332e-11 -5.36107e-10) (-3.10304e-10 3.41901e-12 -5.34914e-10) (-4.75377e-10 -8.66629e-12 -2.85069e-10) (-3.31564e-10 -4.40381e-11 -8.14989e-12) (-1.18149e-10 -5.43036e-11 8.67913e-11) (-1.78169e-11 -7.77131e-11 1.13376e-10) (4.46859e-11 -8.77115e-11 9.21942e-11) (4.07206e-11 -3.38261e-11 2.18603e-11) (1.34743e-11 1.33231e-12 -4.34936e-12) (-5.52836e-12 3.67087e-11 -2.07769e-11) (-1.97258e-10 2.19732e-10 -6.76525e-11) (-4.93381e-10 4.41845e-10 -1.22684e-10) (-3.42489e-10 4.03241e-10 -2.02637e-10) (-9.54602e-11 2.48763e-10 -2.53045e-10) (-3.75489e-10 1.80588e-10 -5.65255e-11) (-3.30806e-10 1.84406e-11 -1.97633e-10) (-2.03273e-10 -1.49828e-10 -2.99145e-10) (-2.55487e-11 -2.82596e-10 -3.22476e-10) (1.05138e-10 -2.84358e-10 -2.0104e-10) (8.30412e-11 -1.3759e-10 -4.21673e-11) (1.42561e-11 -1.69884e-11 6.27587e-12) (1.36976e-12 9.71409e-12 1.31139e-11) (-2.02667e-11 1.35496e-10 7.0876e-11) (-5.04551e-11 2.90091e-10 1.18806e-10) (-4.79232e-11 1.93621e-10 8.47746e-11) (-1.59357e-11 3.23446e-11 1.89663e-11) (-1.38573e-12 -4.74726e-13 2.01497e-13) (-3.84097e-12 -2.20571e-11 -1.53687e-11) (6.60191e-12 -6.36366e-11 -6.72445e-11) (2.61888e-11 -5.75352e-11 -8.63107e-11) (2.92814e-11 -2.01134e-11 -3.60944e-11) (4.26148e-11 -6.70033e-12 7.92011e-12) (2.26458e-10 5.57494e-12 2.33341e-10) (5.8995e-10 9.18854e-11 8.784e-10) (6.98509e-10 2.18377e-10 1.2324e-09) (4.34551e-10 1.84316e-10 8.31272e-10) (1.3095e-10 4.18871e-11 2.36899e-10) (8.49359e-12 -3.12173e-12 9.06689e-12) (-4.13021e-12 -1.84784e-11 -2.90364e-11) (-9.91062e-11 -5.60761e-11 -2.37581e-10) (-2.65662e-10 6.77694e-12 -4.24527e-10) (-3.0247e-10 6.36056e-11 -3.06825e-10) (-1.95408e-10 1.96534e-11 -8.39846e-11) (-1.41383e-10 -3.54796e-11 2.8371e-11) (-1.71155e-10 -1.27914e-10 1.34725e-10) (-1.49808e-10 -1.85882e-10 1.65848e-10) (-6.09133e-11 -1.0289e-10 5.24199e-11) (-7.84577e-12 -2.02505e-11 -7.32965e-12) (1.00591e-11 -2.39808e-13 -4.01383e-11) (6.18384e-11 7.01832e-11 -1.04599e-10) (7.6189e-11 1.51752e-10 -7.61632e-11) (1.26602e-11 1.84068e-10 6.96034e-12) (-1.11631e-10 2.40206e-10 7.70205e-11) (-2.84737e-10 2.67826e-10 6.69072e-11) (-5.20721e-12 -2.49083e-13 6.78456e-14) (-1.70745e-12 -4.71319e-14 -1.71296e-14) (-1.27733e-12 4.06748e-14 2.05463e-13) (-1.47238e-12 7.02675e-14 6.51826e-13) (-8.64779e-13 3.59076e-14 6.07392e-13) (-1.36758e-13 2.1861e-15 2.42481e-13) (1.17511e-13 -6.45097e-15 1.8226e-13) (1.18346e-12 -3.90692e-14 4.27906e-13) (2.77581e-12 -1.37725e-14 3.95219e-14) (7.45735e-13 5.75413e-14 -5.55267e-13) (-4.84931e-12 5.38357e-13 -4.55803e-12) (-4.0652e-11 1.92437e-12 -2.40606e-11) (-3.2192e-11 6.77722e-13 -2.40382e-11) (-2.03583e-12 -1.35854e-13 -7.44363e-12) (4.27844e-12 -1.3543e-13 -3.95885e-12) (3.76906e-12 6.90269e-14 -5.28596e-13) (5.26653e-13 3.67574e-14 3.09502e-13) (2.88888e-15 6.33713e-15 1.23435e-13) (-7.71065e-15 2.2701e-15 4.44621e-14) (-9.05027e-16 6.39243e-16 2.62259e-14) (-1.81623e-14 2.299e-15 2.04284e-14) (-1.1157e-14 1.06324e-15 8.55859e-15) (5.58426e-14 -1.23e-15 2.3042e-14) (1.04158e-12 -6.19918e-14 3.41175e-13) (5.30516e-12 -3.32777e-13 1.96874e-12) (9.38176e-12 -4.72692e-13 4.0405e-12) (6.6911e-12 -1.74623e-13 3.20462e-12) (2.52636e-12 2.18454e-15 1.42526e-12) (9.85454e-13 1.09597e-14 7.95575e-13) (6.50368e-13 2.06521e-14 8.61258e-13) (5.35503e-13 3.84061e-14 1.15645e-12) (5.63456e-13 1.2414e-14 1.03004e-12) (1.76555e-12 -3.78725e-14 6.76384e-13) (1.15337e-11 -1.8743e-13 -1.89249e-12) (2.90562e-11 -1.19574e-13 -1.16171e-11) (2.61157e-11 1.01903e-13 -1.48269e-11) (6.25418e-12 1.04462e-13 -5.48554e-12) (-7.13106e-13 1.37803e-14 -7.03467e-13) (-8.37677e-12 -1.38691e-13 -3.6853e-13) (-1.24389e-11 -5.40418e-13 4.97475e-13) (-9.54699e-11 -5.81322e-12 3.70184e-11) (-4.29247e-11 -2.51332e-13 1.89761e-11) (-1.13378e-11 1.03854e-12 7.32494e-12) (-2.41316e-12 4.1704e-13 2.54343e-12) (-2.19885e-13 5.9024e-14 4.63468e-13) (2.76582e-13 1.4782e-14 1.93214e-13) (3.62363e-12 2.67249e-15 6.04062e-13) (2.10257e-11 1.64925e-13 -1.07229e-12) (5.94537e-11 2.97665e-12 -1.89361e-11) (6.42267e-11 8.65215e-12 -4.98264e-11) (5.83056e-12 9.08755e-12 -5.73553e-11) (-1.15813e-10 7.95124e-12 -1.18676e-10) (-1.90689e-10 -8.81189e-12 -1.15994e-10) (-1.5541e-11 -2.44518e-12 -1.06321e-11) (9.49972e-12 -1.12703e-13 4.21027e-12) (7.68453e-11 5.28623e-12 5.824e-11) (6.64886e-11 2.81018e-12 6.00573e-11) (3.45901e-11 -1.92902e-12 2.39653e-11) (2.40989e-11 -2.26535e-12 8.79131e-12) (1.45682e-11 -9.25837e-13 2.75662e-12) (5.50064e-12 -1.63179e-13 4.68735e-13) (2.90141e-12 -1.42277e-13 1.32192e-14) (6.75227e-12 -6.16629e-13 6.04602e-13) (3.23793e-11 -3.06118e-12 6.7764e-12) (9.05137e-11 -6.69289e-12 2.43924e-11) (1.05364e-10 -4.30459e-12 3.09653e-11) (6.30028e-11 2.67022e-14 1.81693e-11) (3.84101e-11 8.47609e-13 1.04416e-11) (4.34732e-11 1.17996e-12 1.26672e-11) (6.14258e-11 2.54494e-12 2.08233e-11) (6.17567e-11 3.41635e-12 2.35802e-11) (3.95137e-11 9.80963e-13 1.28461e-11) (3.50791e-11 -1.72144e-12 -9.62728e-13) (1.16842e-10 -7.02879e-12 -5.06849e-11) (3.51532e-10 -3.75311e-12 -1.95184e-10) (5.03933e-10 1.10644e-11 -2.74854e-10) (3.06068e-10 1.61979e-11 -1.53611e-10) (5.04525e-11 4.27943e-12 -2.02502e-11) (-7.11697e-12 -6.58219e-16 2.68362e-12) (-7.38709e-11 -5.22911e-12 2.95165e-11) (-1.06119e-10 -3.94292e-13 5.80876e-11) (-9.39526e-11 5.45546e-12 5.16411e-11) (-1.99352e-11 4.30382e-12 1.66106e-11) (-6.53079e-13 8.82482e-13 2.65042e-12) (8.48202e-13 2.36374e-13 5.03642e-13) (2.83959e-12 2.04787e-13 2.34694e-13) (9.73829e-12 1.88571e-13 4.76686e-13) (3.74507e-11 9.62959e-13 -7.7448e-13) (1.14656e-10 8.3565e-12 -2.7796e-11) (2.18778e-10 3.21179e-11 -1.16165e-10) (1.52796e-10 4.2795e-11 -1.54545e-10) (5.84076e-12 1.68607e-11 -9.02238e-11) (-1.09422e-10 -3.32915e-12 -8.896e-11) (-8.04474e-11 -1.09844e-11 -2.14705e-11) (3.05146e-12 -2.40268e-13 8.80086e-12) (2.33739e-10 2.33035e-11 2.06313e-10) (3.69512e-10 2.06473e-11 2.78359e-10) (2.48992e-10 -1.26297e-11 1.27702e-10) (1.71841e-10 -2.08471e-11 4.3929e-11) (1.09346e-10 -1.12631e-11 1.25876e-11) (4.7655e-11 -3.54906e-12 1.11077e-12) (1.35486e-11 -1.45322e-12 -1.37695e-12) (5.38199e-12 -1.19897e-12 -4.57484e-13) (1.08052e-11 -2.62846e-12 2.2964e-12) (4.03116e-11 -5.55465e-12 1.47683e-11) (5.80996e-11 -1.00713e-12 2.15059e-11) (2.96942e-11 3.3731e-12 8.76911e-12) (1.45631e-11 2.43767e-12 2.36141e-12) (2.677e-11 2.53947e-12 3.84862e-12) (7.90583e-11 6.36357e-12 1.60192e-11) (1.42412e-10 1.35408e-11 3.39206e-11) (1.33711e-10 9.44487e-12 2.82313e-11) (7.86733e-11 -1.70423e-12 1.54485e-12) (8.24679e-11 -9.46071e-12 -3.56017e-11) (2.4164e-10 -1.21972e-11 -1.68342e-10) (4.77887e-10 7.76056e-12 -3.16707e-10) (4.54898e-10 3.50038e-11 -2.54093e-10) (1.75257e-10 2.47559e-11 -7.23681e-11) (1.1064e-11 2.69936e-12 -5.53164e-13) (-1.45978e-11 7.93413e-13 1.19327e-11) (-3.15622e-10 1.27329e-11 1.37935e-10) (-3.16164e-10 2.36899e-11 1.42499e-10) (-8.47895e-11 1.5782e-11 5.32391e-11) (-4.11004e-12 2.29651e-12 6.77686e-12) (4.27347e-13 1.99037e-13 4.64532e-13) (1.13141e-12 4.34361e-14 -9.28251e-15) (1.93521e-12 -8.06689e-14 1.74219e-13) (9.49124e-12 1.62037e-13 1.68622e-12) (4.63858e-11 4.82974e-12 -5.98581e-12) (1.50637e-10 2.96524e-11 -7.7865e-11) (1.82434e-10 6.29089e-11 -1.70354e-10) (2.95783e-11 3.15069e-11 -1.08871e-10) (-1.18942e-10 5.12055e-12 -9.87984e-11) (-3.84861e-10 -3.99127e-11 -6.37425e-11) (-5.08161e-11 -5.57142e-12 3.54956e-11) (1.84984e-10 2.67415e-11 2.56461e-10) (5.52321e-10 4.3584e-11 4.8782e-10) (3.10493e-10 -1.82303e-11 1.93874e-10) (1.4137e-10 -2.79364e-11 4.0356e-11) (7.49274e-11 -1.49355e-11 4.9837e-12) (2.36808e-11 -3.90973e-12 -7.82701e-13) (1.40322e-12 -4.24132e-13 -5.79869e-13) (-1.32184e-12 -6.69258e-13 -6.95175e-13) (-8.04044e-12 -2.72003e-12 3.849e-13) (-3.71629e-12 -1.45136e-12 3.37809e-12) (3.38866e-14 5.00622e-13 3.89008e-12) (-7.31504e-14 1.47613e-12 1.56072e-12) (-7.02728e-13 1.00412e-12 4.40043e-14) (7.96825e-16 9.8661e-14 -4.43774e-14) (4.90314e-12 1.0072e-12 6.85949e-13) (3.27273e-11 5.95545e-12 8.01627e-12) (4.12367e-11 6.19733e-12 1.00632e-11) (1.44626e-11 -1.57421e-13 3.10623e-13) (5.5613e-12 -2.74639e-12 -6.96207e-12) (2.505e-11 -9.89371e-12 -5.8721e-11) (1.0162e-10 -3.73376e-12 -1.62441e-10) (1.29428e-10 2.09741e-11 -1.53873e-10) (3.7151e-11 1.55395e-11 -3.88266e-11) (-3.65125e-13 1.18807e-12 -2.92057e-13) (-6.88538e-11 8.93713e-12 3.24218e-11) (-8.46107e-10 5.50815e-11 2.7491e-10) (-9.93002e-10 7.40754e-11 3.51857e-10) (-3.80368e-10 5.01993e-11 1.74069e-10) (-4.1376e-11 8.46286e-12 3.14389e-11) (-5.24151e-13 1.52142e-13 1.07915e-12) (1.42103e-14 -1.39519e-14 5.13649e-16) (-2.15796e-14 -4.00882e-14 1.96052e-14) (2.32526e-13 -1.42482e-13 8.17975e-13) (8.53935e-12 1.18018e-12 2.38766e-12) (8.26194e-11 1.98888e-11 -3.76771e-11) (2.11868e-10 8.19843e-11 -2.03028e-10) (6.00619e-11 6.44788e-11 -1.89254e-10) (-1.88397e-10 2.56863e-11 -1.74803e-10) (-1.13862e-09 -8.85113e-11 -2.11438e-10) (-6.70023e-10 -6.81599e-11 1.48435e-10) (2.92437e-11 1.20523e-11 2.35089e-10) (6.70362e-10 6.18014e-11 7.36562e-10) (4.1895e-10 -2.56389e-11 3.19264e-10) (1.31972e-10 -3.6815e-11 4.3498e-11) (6.53686e-11 -2.20711e-11 -3.94347e-12) (1.91417e-11 -6.01192e-12 -4.31801e-12) (2.80493e-13 -3.22892e-13 -5.4414e-13) (-1.98237e-11 -3.51742e-12 -6.06772e-12) (-1.59997e-10 -2.13339e-11 -1.0671e-11) (-2.51715e-10 -2.33375e-11 3.47366e-11) (-8.75426e-11 8.44112e-12 3.84244e-11) (-2.24571e-11 1.44186e-11 1.32832e-11) (-1.7356e-11 1.09691e-11 1.12032e-12) (-8.69219e-12 2.68427e-12 -2.27741e-12) (-4.69254e-14 3.49515e-14 -3.75383e-14) (5.11964e-12 1.49872e-12 1.56843e-12) (1.40083e-11 3.3978e-12 5.20422e-12) (2.66275e-12 1.51222e-14 5.80404e-13) (-8.97485e-13 -1.70916e-12 -2.58475e-12) (-1.73763e-11 -1.3677e-11 -4.10185e-11) (-5.5304e-12 -1.4487e-11 -1.2853e-10) (5.02865e-11 1.59767e-11 -1.82326e-10) (2.96288e-11 2.89396e-11 -8.60575e-11) (-9.95287e-12 9.71593e-12 -8.93686e-12) (-2.07005e-10 3.48696e-11 4.86059e-11) (-8.67593e-10 1.15807e-10 2.06902e-10) (-1.5382e-09 1.57307e-10 4.5576e-10) (-8.30641e-10 1.08372e-10 3.2129e-10) (-1.3288e-10 2.0583e-11 8.22088e-11) (-2.94163e-12 -1.10361e-13 4.44448e-12) (1.05328e-13 -1.78113e-13 5.26445e-14) (-3.25494e-13 -3.86905e-13 2.27659e-14) (-3.5442e-12 -1.284e-12 3.63911e-12) (1.43438e-12 3.87951e-13 6.12866e-12) (4.2122e-11 1.11038e-11 -4.44053e-12) (3.23487e-10 1.08913e-10 -2.35538e-10) (2.96557e-10 1.65708e-10 -4.36281e-10) (-9.18125e-11 6.1857e-11 -2.51385e-10) (-1.34443e-09 -4.48306e-11 -4.26199e-10) (-2.42087e-09 -2.24253e-10 1.4793e-10) (-2.65002e-10 -1.58433e-11 3.49438e-10) (7.07283e-10 6.34018e-11 1.00746e-09) (9.02531e-10 -3.68138e-11 7.30583e-10) (3.23948e-10 -7.99047e-11 1.21567e-10) (1.93375e-10 -6.64661e-11 -2.01263e-11) (1.15678e-10 -3.49562e-11 -3.53616e-11) (2.11673e-11 -5.91958e-12 -1.01947e-11) (-2.85339e-12 -1.08698e-12 -2.74501e-12) (-2.07118e-10 -2.32425e-11 -2.74768e-11) (-1.06444e-09 -7.63091e-11 3.62492e-11) (-9.82928e-10 3.82242e-11 1.78276e-10) (-1.90733e-10 7.42487e-11 6.70505e-11) (-4.26017e-11 3.30927e-11 8.51777e-12) (-1.91705e-11 7.7305e-12 -4.20614e-12) (-1.81248e-12 1.98609e-13 -1.04131e-12) (1.99433e-12 5.39485e-13 1.8716e-13) (2.22662e-11 4.932e-12 6.57773e-12) (1.54464e-11 8.05881e-13 3.88733e-12) (1.01291e-12 -1.21796e-12 -8.99443e-13) (-1.4132e-11 -1.34369e-11 -2.16795e-11) (-5.90916e-11 -2.80427e-11 -9.51395e-11) (-3.80645e-11 -1.31295e-12 -1.6197e-10) (2.45847e-11 4.4037e-11 -1.59975e-10) (-5.50155e-13 3.15145e-11 -4.79033e-11) (-1.04442e-10 4.18129e-11 -3.91454e-12) (-3.807e-10 1.26022e-10 4.38658e-11) (-1.24163e-09 2.34842e-10 2.9781e-10) (-1.01533e-09 1.7988e-10 3.45637e-10) (-2.2071e-10 3.86499e-11 1.27408e-10) (-5.49068e-12 -7.60264e-13 1.05862e-11) (2.67615e-12 -1.97593e-12 1.01515e-12) (3.88997e-13 -1.13074e-12 -1.71259e-13) (-1.06415e-11 -4.16391e-12 5.76968e-12) (-1.62877e-11 -1.8553e-12 2.60283e-11) (1.08918e-11 4.01442e-12 9.76914e-12) (2.88448e-10 8.75919e-11 -1.39914e-10) (8.6103e-10 3.30162e-10 -8.06296e-10) (1.92978e-10 1.85947e-10 -5.76296e-10) (-6.93004e-10 6.80558e-11 -4.8971e-10) (-4.04079e-09 -2.65153e-10 -2.37085e-10) (-1.80894e-09 -1.65812e-10 7.98311e-10) (2.47019e-10 -3.41813e-14 9.05195e-10) (1.55046e-09 -5.52215e-11 1.38107e-09) (8.45919e-10 -1.59526e-10 3.8474e-10) (5.14566e-10 -1.62629e-10 -1.42299e-11) (4.75344e-10 -1.38849e-10 -1.41305e-10) (2.78526e-10 -5.876e-11 -1.0101e-10) (3.55382e-11 -6.26827e-12 -1.96494e-11) (-3.87893e-11 -4.27147e-12 -1.32505e-11) (-1.52423e-09 -7.66297e-11 -2.02096e-11) (-4.66719e-09 4.89313e-11 4.09589e-10) (-1.98362e-09 3.65724e-10 3.38624e-10) (-2.16309e-10 1.24632e-10 3.91402e-11) (-3.77191e-11 2.05059e-11 -5.66711e-12) (-7.49772e-12 6.04826e-13 -4.22311e-12) (6.6141e-13 1.21461e-13 -3.82828e-13) (3.22402e-11 6.0567e-12 5.48905e-12) (5.82022e-11 3.84269e-12 1.2221e-11) (1.93395e-11 -5.85917e-12 -8.92004e-13) (-3.72065e-13 -9.02413e-12 -9.01988e-12) (-6.74468e-11 -3.58505e-11 -6.40556e-11) (-1.8408e-10 -2.70297e-11 -1.64609e-10) (-1.13191e-10 3.3474e-11 -1.6767e-10) (-2.21833e-11 5.29739e-11 -9.19108e-11) (-3.80928e-11 4.32933e-11 -2.80499e-11) (-1.42574e-10 1.01565e-10 -1.16616e-11) (-4.66184e-10 1.96398e-10 7.75637e-11) (-6.17891e-10 1.95613e-10 1.90801e-10) (-2.06612e-10 5.28716e-11 1.20398e-10) (-6.96631e-12 -1.74497e-12 1.84873e-11) (1.37063e-11 -8.37603e-12 5.69931e-12) (1.11007e-11 -8.29478e-12 -2.14036e-12) (-3.54809e-12 -3.07245e-12 1.11746e-12) (-5.4104e-11 -8.81632e-12 4.44439e-11) (-5.15005e-12 3.0899e-12 3.0628e-11) (1.19544e-10 3.59167e-11 -2.12303e-11) (1.31308e-09 3.80864e-10 -9.19163e-10) (1.14799e-09 4.99589e-10 -1.41094e-09) (-1.83371e-10 1.67656e-10 -5.6089e-10) (-3.64007e-09 2.2635e-12 -7.5056e-10) (-5.58266e-09 -4.77425e-10 1.05955e-09) (-5.19015e-10 -1.24118e-10 9.27132e-10) (1.22542e-09 -1.29907e-10 1.48464e-09) (1.67558e-09 -2.64121e-10 8.89096e-10) (1.15751e-09 -3.18293e-10 1.2845e-10) (1.14169e-09 -3.34888e-10 -2.1766e-10) (1.08168e-09 -2.47766e-10 -3.23126e-10) (5.54631e-10 -6.97296e-11 -1.78967e-10) (2.14288e-11 -7.61695e-14 -1.57619e-11) (-6.24357e-10 1.21557e-11 -4.94154e-11) (-8.72392e-09 1.46566e-10 4.29894e-10) (-1.14737e-08 9.78641e-10 1.12065e-09) (-2.16427e-09 5.83439e-10 2.29833e-10) (-1.49599e-10 6.739e-11 -1.19221e-11) (-1.14928e-11 1.75346e-12 -8.08637e-12) (2.27044e-12 1.32633e-13 -2.71003e-12) (5.40056e-11 1.05238e-11 1.49795e-12) (1.29447e-10 1.40063e-11 2.56491e-11) (7.94938e-11 -1.24082e-11 7.02995e-12) (1.4311e-11 -1.40966e-11 -9.66025e-12) (-2.71366e-11 -2.67974e-11 -3.3854e-11) (-2.50123e-10 -4.45885e-11 -1.28464e-10) (-4.89798e-10 3.07622e-11 -2.12159e-10) (-2.80094e-10 9.29721e-11 -1.45599e-10) (-9.74772e-11 7.87822e-11 -5.33868e-11) (-2.21502e-10 1.40089e-10 -2.68046e-11) (-1.84516e-10 1.52934e-10 -3.11959e-12) (-1.96949e-10 1.42459e-10 4.70651e-11) (-8.10072e-11 4.41514e-11 5.64482e-11) (-6.2104e-13 -2.07309e-12 2.04239e-11) (3.85003e-11 -2.1544e-11 1.68603e-11) (6.4904e-11 -3.38005e-11 -1.06476e-11) (4.40341e-12 -5.21917e-12 -2.82141e-12) (-2.58532e-11 -6.01219e-12 1.41538e-11) (-4.115e-11 2.12943e-12 5.70207e-11) (2.24345e-11 8.55243e-12 9.51896e-12) (1.05649e-09 2.39758e-10 -5.70728e-10) (2.41935e-09 7.76749e-10 -2.12265e-09) (3.71282e-10 4.45735e-10 -1.12016e-09) (-1.81764e-09 2.96334e-10 -8.7608e-10) (-7.96769e-09 -4.25168e-10 4.06264e-10) (-2.89785e-09 -5.25652e-10 1.57576e-09) (1.36711e-10 -1.93462e-10 8.40577e-10) (1.58519e-09 -3.51766e-10 1.07562e-09) (2.11957e-09 -5.35918e-10 5.22893e-10) (2.1792e-09 -6.32021e-10 6.51091e-12) (2.14219e-09 -5.79164e-10 -3.01043e-10) (1.74549e-09 -3.06155e-10 -3.78035e-10) (7.116e-10 -3.69659e-12 -2.06729e-10) (-8.33666e-12 9.54482e-12 -1.08036e-11) (-5.63567e-09 5.16411e-10 6.48686e-11) (-2.55696e-08 1.63171e-09 1.66579e-09) (-1.31487e-08 1.49851e-09 9.59515e-10) (-1.13608e-09 2.14484e-10 -8.12835e-12) (-2.06971e-11 2.22383e-12 -1.26328e-11) (9.18487e-12 1.15598e-12 -9.43895e-12) (9.8981e-11 2.8334e-11 -1.06688e-11) (2.08243e-10 4.83558e-11 3.89584e-11) (1.42315e-10 -1.50162e-12 2.95964e-11) (3.52928e-11 -1.91409e-11 -7.74365e-12) (-2.46121e-12 -2.09785e-11 -2.41329e-11) (-1.11326e-10 -3.1406e-11 -6.66682e-11) (-5.07136e-10 1.37812e-11 -1.0403e-10) (-8.42164e-10 1.3194e-10 -7.29243e-11) (-5.20744e-10 1.68832e-10 -4.65781e-11) (-6.38282e-10 1.99702e-10 7.29614e-12) (-3.55663e-10 2.30197e-10 -4.19523e-11) (-1.30017e-10 1.43122e-10 -3.95878e-12) (-1.29405e-11 2.44085e-11 1.46006e-11) (2.17299e-11 -2.04225e-12 2.5652e-11) (1.01364e-10 -4.69277e-11 3.89152e-11) (1.54878e-10 -7.76623e-11 -2.35227e-11) (8.01415e-11 -3.61739e-11 -4.48628e-11) (-4.70195e-14 -2.84722e-13 -3.83289e-13) (-3.27392e-11 5.85046e-12 2.70218e-11) (1.12328e-12 4.08766e-12 1.06087e-11) (4.6077e-10 8.23625e-11 -1.76025e-10) (2.53544e-09 6.44162e-10 -1.79276e-09) (1.34454e-09 8.39195e-10 -1.84359e-09) (-5.52023e-10 3.97161e-10 -7.49315e-10) (-5.46383e-09 1.21508e-10 -4.89211e-10) (-5.43408e-09 -8.38191e-10 1.38313e-09) (-5.95271e-10 -3.50691e-10 7.47832e-10) (4.82779e-10 -3.22149e-10 6.23445e-10) (2.00647e-09 -7.00658e-10 8.52221e-10) (3.04685e-09 -9.97473e-10 6.43069e-10) (2.84202e-09 -8.83255e-10 2.69309e-10) (2.22802e-09 -5.69121e-10 -7.21629e-11) (1.72307e-09 -1.52224e-10 -3.07108e-10) (5.00769e-10 1.40541e-10 -1.87874e-10) (-6.11382e-10 3.00565e-10 -1.01815e-10) (-1.91047e-08 2.3096e-09 6.03851e-10) (-2.78821e-08 1.47509e-09 1.33361e-09) (-5.79457e-09 3.09484e-11 7.57107e-11) (-2.40708e-10 -2.96081e-11 -4.04172e-11) (-8.87548e-13 1.07467e-12 -4.03816e-12) (5.12453e-11 4.12563e-11 -1.48886e-11) (2.32049e-10 1.21323e-10 2.62967e-11) (2.17944e-10 5.2548e-11 5.53597e-11) (7.98318e-11 -1.51444e-11 5.40358e-12) (2.39898e-11 -2.20253e-11 -1.94671e-11) (-6.44412e-12 -1.24325e-11 -2.20962e-11) (-1.06394e-10 2.42866e-13 -2.9125e-11) (-5.29173e-10 7.01219e-11 3.97844e-11) (-8.27464e-10 1.44579e-10 9.58179e-11) (-6.04093e-10 9.75411e-11 1.11505e-11) (-1.074e-09 3.337e-10 -1.09481e-10) (-4.38816e-10 2.3182e-10 -6.05382e-11) (-7.82071e-12 1.32682e-11 2.51114e-12) (7.1171e-11 -5.1705e-12 3.91189e-11) (2.34442e-10 -8.20768e-11 8.59367e-11) (1.73043e-10 -9.13503e-11 -8.13982e-12) (8.59304e-11 -4.50414e-11 -7.37451e-11) (1.13241e-11 5.07387e-13 -2.84119e-11) (-1.07243e-11 8.37951e-12 8.81618e-13) (-1.31221e-11 1.15704e-11 1.81914e-11) (5.98121e-11 1.15907e-11 -5.36511e-12) (1.13402e-09 2.08613e-10 -6.60386e-10) (1.55153e-09 7.56474e-10 -1.57524e-09) (7.04447e-11 5.30247e-10 -8.33084e-10) (-1.44096e-09 3.33223e-10 -5.65136e-10) (-3.33913e-09 -3.69473e-10 2.07026e-10) (-1.02939e-09 -4.38805e-10 4.67403e-10) (2.30117e-11 -2.29826e-10 2.49404e-10) (8.48683e-10 -5.99567e-10 6.03005e-10) (2.07565e-09 -1.00564e-09 1.04388e-09) (2.54256e-09 -9.95051e-10 1.07755e-09) (1.98487e-09 -6.58419e-10 5.78693e-10) (1.47007e-09 -3.20018e-10 3.9089e-11) (1.23905e-09 1.23539e-10 -3.14312e-10) (1.5002e-10 2.32518e-10 -1.39e-10) (-3.24079e-09 1.24546e-09 -2.13081e-10) (-1.70949e-08 1.24299e-09 3.37546e-10) (-1.05158e-08 -9.54064e-10 7.21335e-11) (-2.30139e-09 -5.34852e-10 -1.04352e-10) (-4.2739e-10 -2.57209e-11 -5.25157e-11) (-5.82779e-11 7.41959e-11 -1.93691e-11) (9.99064e-11 1.82855e-10 -1.59998e-13) (3.04835e-10 1.93688e-10 6.16121e-11) (2.06199e-10 3.32421e-11 3.76236e-11) (8.941e-11 -2.37374e-11 -5.66099e-12) (2.39438e-11 -1.21058e-11 -1.2656e-11) (-2.27071e-14 -1.68072e-13 -9.87995e-13) (-2.42887e-11 4.58397e-12 3.12596e-12) (-1.68855e-10 1.86521e-11 3.16574e-11) (-1.9177e-10 8.05388e-12 -6.06738e-11) (-1.22277e-09 1.89013e-10 -3.53084e-10) (-9.55321e-10 1.74666e-10 -2.71935e-10) (-2.66578e-11 5.65558e-13 -9.15052e-12) (7.65459e-11 -3.19092e-11 3.34491e-11) (4.06916e-10 -1.34483e-10 1.86454e-10) (2.32871e-10 -8.65493e-11 7.0034e-11) (1.64419e-11 -1.00201e-11 -1.75098e-11) (-4.37451e-11 1.99593e-11 -1.02855e-10) (-9.73541e-11 7.43731e-11 -6.55461e-11) (-5.69503e-11 5.26113e-11 2.61943e-11) (2.42041e-12 7.19556e-12 1.67171e-11) (1.14455e-10 4.60626e-12 -2.25297e-11) (6.17802e-10 1.96855e-10 -4.96121e-10) (5.31684e-10 5.13446e-10 -8.55e-10) (-6.73573e-11 2.20548e-10 -3.59102e-10) (-3.35878e-10 1.51703e-11 -1.51797e-10) (-3.14974e-10 -1.38324e-10 -1.90831e-11) (-4.26926e-11 -1.08435e-10 2.91341e-11) (1.8599e-10 -2.86407e-10 1.85956e-10) (8.14802e-10 -6.97183e-10 8.03579e-10) (1.42656e-09 -9.12548e-10 1.49442e-09) (1.54558e-09 -7.87259e-10 1.28368e-09) (1.14435e-09 -4.6104e-10 4.69937e-10) (9.1354e-10 -1.13314e-10 -5.8599e-11) (7.09152e-10 3.09441e-10 -2.74241e-10) (-8.45816e-12 2.9215e-10 -1.11646e-10) (-1.77607e-09 5.37518e-10 -1.02032e-10) (-4.72557e-09 -4.42967e-10 -6.26205e-11) (-5.00225e-09 -1.16549e-09 -1.5996e-10) (-4.67211e-09 -5.93371e-10 -1.62817e-10) (-2.49615e-09 4.5447e-10 -1.22029e-10) (-3.26613e-10 4.23859e-10 -3.13314e-11) (1.85893e-10 3.5881e-10 3.28249e-11) (3.84333e-10 2.16329e-10 6.84104e-11) (2.6376e-10 3.15437e-11 3.66502e-11) (1.28845e-10 -8.10309e-12 1.13695e-11) (4.01441e-11 -7.50222e-15 5.77399e-12) (5.11008e-12 7.39521e-14 1.85279e-12) (-1.02392e-12 -3.68932e-13 -1.58093e-13) (-2.18423e-10 -2.16454e-11 -1.4814e-10) (-1.70398e-09 4.29807e-11 -9.10254e-10) (-1.49353e-09 -1.3264e-10 -9.05589e-10) (-1.19555e-10 -1.63259e-10 -1.948e-10) (2.07283e-10 -2.23621e-10 -1.27508e-11) (8.22174e-10 -3.87913e-10 3.86657e-10) (7.02684e-10 -1.3648e-10 4.72114e-10) (3.51937e-11 1.4526e-11 3.50558e-11) (-2.14011e-10 1.17931e-10 -1.07659e-10) (-9.38269e-10 4.47619e-10 -4.71826e-10) (-3.0347e-10 2.21886e-10 -4.86745e-11) (-1.19412e-12 3.27992e-11 5.71488e-11) (1.54872e-10 -2.75683e-11 1.40512e-10) (2.02337e-10 -3.39804e-11 -6.96276e-12) (2.89129e-10 7.28432e-11 -2.98674e-10) (2.53872e-10 2.11676e-10 -5.49204e-10) (4.8717e-11 8.78494e-11 -2.93812e-10) (-1.69507e-11 -3.983e-12 -1.3233e-10) (-1.14184e-11 -3.78376e-11 -7.47606e-11) (1.46103e-11 -4.66598e-11 -1.0581e-11) (1.65014e-10 -2.34803e-10 2.28967e-10) (6.39933e-10 -7.05389e-10 1.19472e-09) (1.08038e-09 -9.87853e-10 1.78394e-09) (1.09436e-09 -7.84918e-10 1.05655e-09) (7.0662e-10 -3.17126e-10 2.42426e-10) (5.04085e-10 3.08721e-11 -5.52086e-11) (3.85215e-10 2.66158e-10 -1.24194e-10) (2.84064e-11 9.4091e-11 -3.07349e-11) (-2.22318e-10 2.69324e-11 -2.91032e-11) (-2.51289e-09 -3.43867e-10 -1.32511e-10) (-8.34034e-09 -7.80152e-10 -2.31883e-10) (-1.07777e-08 3.35763e-10 -2.20173e-10) (-4.13564e-09 1.32331e-09 -1.86337e-10) (-2.84622e-10 5.63372e-10 -2.73105e-11) (2.85638e-10 4.11149e-10 2.74595e-11) (5.02e-10 2.41763e-10 6.57286e-11) (4.3179e-10 9.41037e-11 8.86609e-11) (2.66226e-10 2.92374e-11 8.98331e-11) (8.93351e-11 -5.84003e-12 3.49904e-11) (1.70011e-12 -2.35787e-12 -9.50915e-13) (-6.81073e-10 -6.17188e-11 -3.11759e-10) (-2.70582e-09 -1.82764e-10 -1.61526e-09) (-1.44503e-09 -6.80886e-10 -1.60756e-09) (5.56001e-11 -1.01767e-09 -1.0957e-09) (7.56117e-10 -1.08126e-09 -5.19989e-10) (9.842e-10 -7.6719e-10 2.18293e-10) (1.01118e-09 -2.90247e-10 8.53765e-10) (4.71328e-10 2.32918e-10 7.93518e-10) (-1.58093e-10 3.2895e-10 2.40608e-10) (-1.42457e-09 9.06461e-10 -2.26752e-10) (-1.11327e-09 6.26206e-10 -3.27575e-10) (-8.25376e-12 1.97001e-11 9.05956e-12) (6.1058e-10 -1.22799e-10 4.2251e-10) (1.30321e-09 -4.24939e-10 6.76316e-10) (3.76953e-10 -1.0297e-10 5.24837e-11) (7.26061e-11 9.32529e-12 -1.26877e-10) (-4.08445e-11 1.00557e-10 -5.28648e-10) (-1.49148e-10 1.77305e-10 -7.81494e-10) (-6.55327e-11 1.53998e-10 -7.04339e-10) (2.57134e-11 2.10646e-11 -2.55159e-10) (1.89991e-11 -1.55789e-11 -3.87567e-12) (2.45956e-10 -2.69791e-10 3.86518e-10) (7.37853e-10 -8.61266e-10 1.34076e-09) (9.71602e-10 -1.07189e-09 1.35848e-09) (7.78449e-10 -6.631e-10 6.08529e-10) (3.95828e-10 -1.62554e-10 1.36706e-10) (2.52572e-10 4.39435e-11 2.64947e-11) (1.69642e-10 1.0181e-10 5.21876e-12) (9.87635e-12 1.94653e-11 -5.48736e-13) (-2.58373e-10 4.22757e-11 -2.02104e-11) (-4.00862e-09 -1.14535e-11 -2.23416e-10) (-1.22302e-08 1.28455e-10 -4.41636e-10) (-1.10151e-08 1.46523e-09 -3.95225e-10) (-2.60483e-09 1.39951e-09 -2.27491e-10) (-7.72846e-11 5.48761e-10 -6.96683e-11) (4.37704e-10 4.6602e-10 -1.55736e-11) (7.06394e-10 3.30697e-10 1.18566e-10) (6.15062e-10 1.28536e-10 2.31948e-10) (1.94067e-10 -1.26943e-11 1.09942e-10) (-2.33463e-12 -3.95006e-12 9.19335e-13) (-9.33558e-10 -6.12841e-11 -2.04474e-10) (-1.42865e-09 -4.11372e-10 -9.04905e-10) (-1.12e-10 -1.08514e-09 -1.16071e-09) (2.02326e-09 -2.76529e-09 -1.89082e-09) (2.53572e-09 -2.47898e-09 -9.11184e-10) (1.23383e-09 -9.91957e-10 8.29333e-11) (3.65223e-10 -1.86597e-10 2.23166e-10) (1.10025e-10 7.28643e-11 2.54668e-10) (-1.03997e-10 4.45325e-10 4.49315e-10) (-6.59584e-10 8.47318e-10 3.34622e-10) (-7.12782e-10 5.90592e-10 -4.66223e-11) (-1.90317e-11 2.11136e-11 -2.14962e-12) (2.8186e-10 -1.0722e-10 2.13621e-10) (8.9585e-10 -5.49107e-10 1.0121e-09) (3.69827e-10 -2.8153e-10 5.9484e-10) (3.04946e-11 -8.18067e-12 1.93087e-11) (8.21907e-12 5.42847e-11 -1.81704e-10) (-5.9966e-10 4.04771e-10 -1.41944e-09) (-1.23768e-09 7.41396e-10 -2.43083e-09) (-4.34709e-10 4.70742e-10 -1.53589e-09) (3.84102e-11 5.4506e-11 -2.60447e-10) (6.93902e-11 -3.56175e-11 1.1217e-11) (4.45758e-10 -4.0017e-10 4.40662e-10) (7.98219e-10 -8.67085e-10 8.46322e-10) (7.34952e-10 -8.21753e-10 6.6591e-10) (4.57877e-10 -4.03285e-10 3.37081e-10) (2.43531e-10 -1.01016e-10 1.69385e-10) (1.26494e-10 7.10889e-12 9.56066e-11) (2.82736e-11 2.05911e-11 3.16165e-11) (-2.48108e-11 2.30243e-11 8.08178e-12) (-9.58522e-10 2.09673e-10 -1.12078e-10) (-6.60435e-09 6.16041e-10 -6.9452e-10) (-1.29449e-08 1.48377e-09 -6.80784e-10) (-6.98811e-09 2.14239e-09 -2.49169e-10) (-9.20209e-10 1.01542e-09 -1.76789e-10) (1.75025e-10 5.56708e-10 -1.10519e-10) (5.93775e-10 4.28058e-10 3.40464e-11) (6.91019e-10 1.71198e-10 2.62886e-10) (2.20891e-10 -1.53764e-11 1.75821e-10) (-2.55558e-11 -9.6306e-12 2.08334e-11) (-6.54914e-11 -7.47489e-12 2.38733e-11) (-6.93384e-12 -8.03806e-11 -2.26202e-11) (9.652e-10 -1.2452e-09 -4.08794e-10) (3.18095e-09 -2.88892e-09 -8.46887e-10) (2.82276e-09 -2.16582e-09 -4.19338e-10) (1.25571e-09 -8.61483e-10 -3.79309e-11) (2.67332e-10 -1.69931e-10 1.17772e-11) (5.23051e-12 -1.3338e-12 1.60679e-12) (-3.78663e-11 7.77205e-11 3.16395e-11) (-2.54509e-10 4.517e-10 1.40351e-10) (-2.51901e-10 4.0457e-10 7.12811e-11) (-2.4699e-11 5.3394e-11 1.62328e-11) (3.67826e-11 -7.35454e-13 1.07692e-10) (1.24928e-10 -2.45155e-10 8.52464e-10) (-5.36278e-11 -5.51109e-10 1.18976e-09) (2.75759e-11 -1.98273e-10 2.38559e-10) (5.4915e-11 -2.84872e-12 -3.99726e-11) (1.2773e-10 4.19233e-10 -7.8469e-10) (-1.03717e-09 1.30766e-09 -2.3907e-09) (-1.7918e-09 1.31065e-09 -2.89311e-09) (-4.20365e-10 3.85176e-10 -1.15974e-09) (4.34771e-11 -1.40298e-14 -1.31396e-10) (1.70648e-10 -1.2074e-10 5.4132e-12) (4.80911e-10 -4.59567e-10 2.27379e-10) (5.87024e-10 -6.29171e-10 3.54319e-10) (4.44178e-10 -4.75667e-10 3.40941e-10) (2.64549e-10 -2.48471e-10 2.93038e-10) (1.24e-10 -9.671e-11 2.07266e-10) (1.34687e-11 -9.76876e-12 6.99633e-11) (-3.80188e-11 1.54532e-11 2.24951e-11) (-5.27078e-10 1.52038e-10 -7.36374e-11) (-3.15051e-09 5.69286e-10 -5.6368e-10) (-8.70719e-09 1.45502e-09 -5.39828e-10) (-8.5953e-09 2.41145e-09 3.79597e-10) (-2.29187e-09 1.54853e-09 1.02853e-10) (-7.93857e-11 5.22863e-10 -7.86083e-11) (3.21101e-10 2.95501e-10 -3.58618e-11) (4.6343e-10 8.70021e-11 1.24248e-10) (1.84157e-10 -2.14371e-11 1.51507e-10) (-8.1838e-12 -3.66764e-12 4.59729e-11) (3.24792e-10 -5.75073e-11 2.7584e-10) (6.91433e-10 -3.17e-10 3.62263e-10) (1.35448e-09 -9.67052e-10 3.53184e-10) (1.35766e-09 -1.12307e-09 8.43031e-11) (9.1241e-10 -7.43795e-10 -1.06159e-10) (5.7467e-10 -4.42879e-10 -1.50993e-10) (2.66682e-10 -2.15032e-10 -1.13332e-10) (3.84148e-11 -3.28795e-11 -3.82609e-11) (-6.05933e-12 1.46242e-11 -1.55843e-11) (-8.88939e-11 2.01689e-10 -3.18235e-11) (-1.09538e-10 3.35667e-10 4.49558e-12) (-9.89734e-12 1.28119e-10 2.89141e-11) (4.19874e-11 3.23471e-11 6.87604e-11) (2.23191e-10 -1.31989e-10 3.59671e-10) (3.00242e-10 -5.4555e-10 6.64979e-10) (-1.92577e-11 -4.65108e-10 3.85556e-10) (-6.50215e-11 -6.18657e-11 3.49011e-11) (-1.01877e-10 1.21273e-10 -9.86952e-11) (-5.59053e-10 1.19503e-09 -9.16994e-10) (-1.35752e-09 1.92977e-09 -1.8753e-09) (-9.48493e-10 9.83741e-10 -1.58013e-09) (-9.32483e-11 1.10081e-10 -5.85019e-10) (1.21162e-10 -1.03306e-10 -1.99739e-10) (2.67127e-10 -2.7792e-10 -9.33288e-11) (3.08916e-10 -3.73491e-10 3.07728e-11) (2.23076e-10 -3.16882e-10 1.16708e-10) (1.32036e-10 -2.35379e-10 1.67693e-10) (6.51622e-11 -1.60952e-10 1.70457e-10) (1.11277e-11 -5.94916e-11 8.49396e-11) (-1.09855e-11 -2.55917e-12 1.44783e-11) (-1.86477e-10 6.28931e-11 -1.27292e-11) (-1.75323e-09 4.65854e-10 -3.0164e-10) (-6.56844e-09 1.51319e-09 -3.69461e-10) (-9.17679e-09 2.69836e-09 7.89708e-10) (-3.85039e-09 2.02695e-09 6.14649e-10) (-3.22735e-10 5.0499e-10 -2.31683e-11) (1.03801e-10 1.20897e-10 -6.70559e-11) (3.05631e-10 -8.05137e-12 -3.61289e-11) (3.2854e-10 -9.74639e-11 1.06536e-10) (2.625e-10 -5.92956e-11 2.05329e-10) (1.50971e-09 -1.16172e-10 1.34734e-09) (1.01083e-09 -1.74184e-10 9.97596e-10) (4.46178e-10 -2.22868e-10 4.0304e-10) (1.8922e-10 -1.75554e-10 9.68301e-11) (2.08024e-10 -2.24382e-10 -9.44583e-12) (3.89911e-10 -3.7967e-10 -9.4573e-11) (3.60741e-10 -3.32573e-10 -1.21442e-10) (5.81472e-11 -6.03439e-11 -5.55003e-11) (-4.07855e-11 3.26965e-11 -7.23421e-11) (-3.6056e-10 4.67496e-10 -3.28941e-10) (-3.64558e-10 7.19898e-10 -3.52456e-10) (-3.83599e-11 2.50526e-10 -9.75259e-11) (3.16177e-11 1.90447e-11 9.46679e-13) (1.77645e-10 -1.27977e-10 1.21641e-10) (1.81058e-10 -5.13211e-10 4.32826e-10) (-2.70264e-10 -5.49708e-10 6.32381e-10) (-7.78812e-10 -2.09512e-10 6.21747e-10) (-6.17362e-10 2.4664e-10 2.53461e-10) (-2.93618e-10 6.09165e-10 -7.42692e-11) (-1.89876e-10 1.37227e-09 -6.98654e-10) (-2.21234e-10 1.27193e-09 -1.32002e-09) (-7.13255e-11 4.14913e-10 -1.24577e-09) (1.58935e-10 -1.59801e-10 -8.3686e-10) (2.28849e-10 -3.54673e-10 -4.49521e-10) (1.22784e-10 -2.87358e-10 -1.54782e-10) (2.96933e-11 -1.97179e-10 -1.50986e-11) (1.36474e-11 -2.32528e-10 7.43995e-11) (8.36517e-11 -3.32596e-10 1.79123e-10) (1.42039e-10 -2.70779e-10 1.66965e-10) (4.58142e-11 -5.48137e-11 4.38881e-11) (-1.95697e-12 2.35708e-12 1.21175e-12) (-4.95326e-10 3.03793e-10 -6.89551e-11) (-4.71245e-09 1.94533e-09 -3.43002e-10) (-1.0662e-08 3.80876e-09 4.65113e-10) (-6.09083e-09 2.64371e-09 7.59414e-10) (-5.84069e-10 4.62211e-10 -4.02017e-11) (7.58768e-11 4.29507e-11 -1.1441e-10) (8.35746e-10 -2.65137e-10 -3.70478e-10) (1.44628e-09 -5.70909e-10 8.80015e-11) (1.56614e-09 -3.61106e-10 8.83592e-10) (1.23715e-09 -3.37982e-10 1.54275e-09) (4.91406e-10 -1.82089e-10 9.09802e-10) (1.84245e-10 -1.12206e-10 3.21284e-10) (1.7297e-10 -1.21489e-10 1.02255e-10) (4.50524e-10 -2.96398e-10 -2.06498e-11) (6.9641e-10 -4.29783e-10 -1.85291e-10) (3.19655e-10 -1.71665e-10 -1.20692e-10) (1.16215e-11 3.96625e-13 -1.16268e-11) (-1.1686e-10 1.3265e-10 -6.94816e-11) (-7.29137e-10 7.35238e-10 -4.21584e-10) (-8.29164e-10 9.56998e-10 -7.92936e-10) (-2.3925e-10 3.82954e-10 -5.59196e-10) (2.7535e-11 6.16835e-12 -1.52708e-10) (1.4791e-10 -1.68179e-10 -3.32296e-13) (5.49097e-10 -9.03859e-10 8.76013e-10) (5.93634e-11 -1.09368e-09 2.02442e-09) (-9.73494e-10 -2.66296e-10 1.58045e-09) (-1.33071e-09 4.86428e-10 7.77464e-10) (-7.45106e-10 9.32669e-10 1.05078e-10) (-2.02567e-10 1.58169e-09 -4.67931e-10) (1.68698e-10 1.75768e-09 -1.32531e-09) (1.96608e-10 7.88026e-10 -1.72579e-09) (2.0445e-10 -1.51163e-10 -1.52287e-09) (1.53204e-10 -5.14936e-10 -8.16033e-10) (4.67713e-11 -4.3768e-10 -2.56038e-10) (8.06814e-12 -4.11081e-10 -8.69222e-12) (8.11597e-11 -5.13075e-10 1.6602e-10) (2.54816e-10 -5.38444e-10 2.69385e-10) (2.56978e-10 -3.04962e-10 1.70862e-10) (6.50172e-11 -4.72387e-11 2.62321e-11) (4.8259e-13 1.29245e-12 -4.15836e-13) (-1.61179e-10 1.74939e-10 -5.40127e-11) (-2.05241e-09 1.35993e-09 -3.11699e-10) (-6.92818e-09 3.32249e-09 -1.67053e-10) (-5.84705e-09 2.47394e-09 5.15119e-10) (-7.34486e-10 3.58143e-10 1.05238e-10) (1.27996e-11 -2.11878e-12 -7.56823e-12) (7.19785e-10 -3.03995e-10 -1.31263e-10) (1.57293e-09 -6.41735e-10 3.22902e-10) (1.77489e-09 -5.50714e-10 1.24627e-09) (4.34207e-10 -2.71436e-10 1.99966e-10) (1.92735e-10 -1.74713e-10 9.08425e-11) (1.35773e-10 -1.53181e-10 2.65902e-11) (1.86614e-10 -1.93944e-10 -4.67196e-11) (2.00929e-10 -1.87121e-10 -1.01866e-10) (8.27083e-11 -7.42435e-11 -5.07201e-11) (5.57793e-12 -2.61071e-12 -1.55651e-12) (3.27332e-13 2.08522e-11 1.48731e-11) (-5.93186e-11 2.09165e-10 8.7422e-11) (-1.81242e-10 4.55158e-10 3.42698e-11) (-1.82266e-10 4.4609e-10 -1.88973e-10) (-3.70165e-11 2.09541e-10 -3.35261e-10) (1.71272e-10 -4.15267e-11 -4.02444e-10) (4.57874e-10 -3.27912e-10 -2.7381e-10) (7.4627e-10 -5.50429e-10 3.03317e-10) (5.55907e-10 -4.77374e-10 1.26265e-09) (-6.27455e-10 -5.76603e-11 1.7287e-09) (-2.55693e-09 5.59425e-10 1.62228e-09) (-2.4805e-09 1.17537e-09 4.67176e-10) (-8.79724e-10 1.34326e-09 -2.68469e-10) (-3.40872e-11 1.59404e-09 -8.67246e-10) (2.79388e-10 8.86602e-10 -1.23831e-09) (1.54649e-10 -3.26252e-11 -1.08231e-09) (3.48264e-11 -5.54845e-10 -7.3069e-10) (3.4707e-11 -8.15657e-10 -3.18845e-10) (1.7329e-10 -9.44511e-10 7.38736e-11) (3.68077e-10 -8.56479e-10 4.10563e-10) (3.81808e-10 -5.09089e-10 4.88947e-10) (1.6228e-10 -1.33004e-10 2.13095e-10) (7.60218e-12 -2.73422e-12 9.74118e-12) (-1.00773e-11 7.48385e-12 -7.37263e-12) (-1.45188e-10 1.17283e-10 -1.13988e-10) (-5.16119e-10 5.35963e-10 -3.60184e-10) (-1.3023e-09 1.19594e-09 -4.8998e-10) (-1.65189e-09 1.11967e-09 -3.78027e-11) (-5.85875e-10 3.17281e-10 2.86696e-10) (-7.43132e-12 1.95678e-11 1.86092e-10) (3.58941e-10 -1.16459e-10 3.4326e-10) (7.75824e-10 -3.03823e-10 4.04947e-10) (7.49468e-10 -3.44081e-10 3.19655e-10) (7.62268e-11 -7.31168e-11 -1.42966e-10) (2.47952e-10 -3.20594e-10 -5.06315e-10) (3.22461e-10 -5.87895e-10 -6.16102e-10) (1.02346e-10 -4.63535e-10 -3.08894e-10) (-7.50406e-11 -1.84577e-10 -7.64423e-11) (-1.54736e-10 -5.67683e-11 -1.91367e-11) (-1.65171e-10 4.92455e-11 1.04415e-11) (-6.12021e-11 1.0539e-10 4.85894e-11) (9.54081e-11 2.32422e-10 1.71382e-10) (3.6155e-10 3.33418e-10 2.87865e-10) (3.46427e-10 1.7342e-10 1.07823e-10) (2.66939e-10 7.44265e-12 -8.52707e-11) (3.43453e-10 -1.98488e-10 -3.49259e-10) (2.36852e-10 -3.20009e-10 -3.53038e-10) (5.54833e-11 -8.8136e-11 -1.92187e-11) (1.16792e-10 -5.40877e-13 3.4378e-10) (-5.17746e-11 5.59084e-10 1.85842e-09) (-1.32941e-09 8.32465e-10 2.11865e-09) (-2.39737e-09 7.38785e-10 1.12325e-09) (-1.68264e-09 8.09416e-10 -6.5614e-13) (-6.07372e-10 8.96732e-10 -4.34615e-10) (-8.81502e-11 6.73363e-10 -5.63927e-10) (8.40424e-12 8.18963e-11 -3.1063e-10) (-1.19621e-12 -3.02607e-10 -2.89358e-10) (1.3203e-10 -1.18103e-09 -2.79813e-10) (4.6639e-10 -1.59171e-09 8.44626e-11) (4.66197e-10 -9.30934e-10 3.83328e-10) (2.02418e-10 -3.01753e-10 3.74551e-10) (1.65228e-11 -5.53594e-11 2.01076e-10) (-1.87846e-11 -6.48922e-12 3.21017e-11) (-2.5794e-11 -1.33653e-11 -1.05568e-11) (-5.94541e-11 -4.12058e-11 -8.71793e-11) (-3.88133e-11 2.96283e-11 -1.27625e-10) (-1.15682e-11 3.82471e-10 -2.79665e-10) (-3.39484e-11 8.05199e-10 -2.06524e-10) (-7.43255e-11 4.29768e-10 1.15168e-10) (-3.20589e-11 1.55372e-10 2.923e-10) (4.94848e-11 1.08101e-11 3.62796e-10) (4.42956e-11 -2.18587e-11 1.037e-10) (1.25613e-11 -8.1967e-12 -2.0128e-12) (1.62377e-10 -1.12356e-10 -5.0879e-10) (4.91076e-10 -6.84392e-10 -9.45267e-10) (2.69829e-10 -9.0368e-10 -5.53234e-10) (-1.10648e-10 -6.45872e-10 -1.226e-10) (-2.47067e-10 -3.28968e-10 1.30357e-11) (-1.29314e-10 -5.9437e-11 2.1084e-12) (-3.22782e-11 1.42513e-11 -8.22127e-12) (-7.53586e-12 5.71017e-11 -1.33992e-11) (5.38204e-11 1.48896e-10 7.52181e-12) (2.07958e-10 2.46119e-10 8.51511e-11) (3.51164e-10 2.07215e-10 1.07249e-10) (2.35068e-10 4.68557e-11 -1.65751e-13) (5.53686e-11 -3.03258e-11 -5.31786e-11) (-8.55276e-11 -1.4222e-10 -1.29611e-10) (-4.08245e-10 -3.06862e-10 -1.81492e-11) (-4.96582e-10 -1.87001e-10 5.73248e-10) (-4.14747e-10 5.23953e-10 2.35323e-09) (-3.70887e-10 1.44831e-09 3.15631e-09) (-7.53397e-10 8.70797e-10 1.28347e-09) (-8.03116e-10 4.59566e-10 2.18706e-10) (-5.39829e-10 3.52358e-10 -1.61621e-10) (-1.00533e-10 1.26353e-10 -1.06183e-10) (9.11272e-12 -4.5161e-12 -1.98571e-11) (2.91308e-10 -4.844e-10 -1.20398e-10) (1.07999e-09 -1.93433e-09 -3.02075e-10) (1.0797e-09 -1.7078e-09 -3.12189e-10) (2.59039e-10 -3.02856e-10 -4.91595e-11) (9.04111e-12 1.133e-12 1.21691e-11) (-4.32245e-11 6.99568e-11 1.31391e-10) (-6.97904e-11 1.63543e-11 1.15602e-10) (-2.28771e-11 -4.36983e-11 1.43882e-11) (-1.3847e-11 -2.1027e-10 -9.91153e-11) (-2.50164e-11 -1.62061e-10 -1.44805e-10) (-2.58554e-11 5.95296e-12 -5.01867e-11) (-7.00135e-11 3.05901e-10 -1.03253e-10) (-3.50312e-11 8.95941e-10 -6.39906e-11) (-2.34056e-11 7.46745e-10 9.75312e-11) (-6.55239e-11 3.30847e-10 1.00901e-10) (-4.67875e-11 1.07026e-10 7.65211e-12) (-1.12043e-11 4.0853e-11 -7.82384e-11) (1.62548e-10 -1.61739e-10 -3.7907e-10) (3.30926e-10 -7.28131e-10 -5.48074e-10) (1.54422e-10 -1.00058e-09 -3.62471e-10) (-1.81832e-10 -7.6538e-10 -1.23046e-10) (-3.54444e-10 -4.17905e-10 1.35295e-12) (-2.81822e-10 -1.27404e-10 7.06093e-11) (-1.16231e-10 2.27238e-11 8.2008e-11) (-3.56854e-11 9.5406e-11 9.56208e-11) (3.50747e-11 1.40647e-10 8.67006e-11) (8.3277e-11 1.13874e-10 4.27848e-11) (1.0219e-10 6.52828e-11 6.80391e-12) (9.14324e-11 2.43741e-11 -2.72142e-11) (6.25424e-11 -1.58683e-12 -6.73898e-11) (1.36404e-11 -2.58327e-11 -1.18859e-10) (-7.7788e-11 -4.8775e-11 -1.07629e-10) (-2.14457e-10 -6.52481e-11 3.05025e-11) (-6.16038e-10 4.51637e-12 8.45967e-10) (-9.09754e-10 7.12063e-10 2.90026e-09) (-7.99488e-10 1.32571e-09 2.97557e-09) (-4.96986e-10 7.50146e-10 1.06914e-09) (-9.78295e-11 1.39292e-10 1.24588e-10) (3.16386e-12 9.53954e-13 1.80847e-12) (2.76139e-10 -1.90635e-10 -2.00998e-11) (1.15443e-09 -1.1136e-09 -2.95786e-10) (1.24156e-09 -1.67943e-09 -8.35887e-10) (2.68362e-10 -9.12395e-10 -7.87035e-10) (-2.23204e-10 -2.17337e-10 -3.86609e-10) (-3.16178e-10 5.29593e-11 -1.38118e-10) (-1.60873e-10 1.09749e-10 3.70381e-11) (-7.91183e-12 3.13593e-11 4.75159e-11) (6.34492e-11 -2.37381e-11 5.11732e-11) (1.70058e-10 -1.48544e-10 3.30387e-11) (8.2449e-11 -1.11122e-10 -6.10891e-12) (-5.7359e-14 -4.76614e-12 1.09174e-13) (-4.79048e-11 3.90406e-11 1.00007e-11) (-2.34315e-10 3.91112e-10 -1.99806e-12) (-3.36257e-10 1.01476e-09 -1.78643e-10) (-2.54604e-10 1.23167e-09 -3.8804e-10) (-8.57842e-11 6.67162e-10 -3.68534e-10) (3.28599e-11 1.38185e-10 -2.56284e-10) (2.32387e-10 -4.95958e-12 -4.60076e-10) (1.2252e-10 -1.63048e-10 -4.28208e-10) (-5.35381e-11 -2.06975e-10 -3.01304e-10) (-2.69001e-10 -2.53772e-10 -2.21188e-10) (-5.88692e-10 -3.56556e-10 -1.00641e-10) (-6.22601e-10 -3.28684e-10 1.24646e-10) (-2.51594e-10 -1.239e-10 1.87499e-10) (-2.93015e-11 1.63168e-12 1.27501e-10) (7.61368e-11 8.95015e-11 1.51801e-10) (1.57342e-10 1.70121e-10 1.3725e-10) (9.51461e-11 1.0799e-10 4.63669e-11) (1.72648e-11 2.2145e-11 -1.23159e-12) (2.18475e-13 3.50468e-12 -9.53827e-12) (-2.35531e-11 -4.31486e-12 -5.80308e-11) (-7.48004e-11 -6.79153e-12 -1.30273e-10) (-8.85352e-11 1.79012e-11 -1.00786e-10) (-4.27189e-11 2.20327e-11 -2.98713e-12) (-6.7435e-11 8.38611e-11 2.30884e-10) (4.27701e-11 2.73837e-10 1.23242e-09) (2.41389e-10 3.33489e-10 1.60887e-09) (2.45633e-10 1.20963e-10 8.2464e-10) (1.94542e-10 -5.62011e-11 2.58977e-10) (2.7301e-10 -2.05803e-10 9.64386e-11) (3.63261e-10 -3.54288e-10 -8.64943e-11) (2.36332e-10 -2.51664e-10 -2.53681e-10) (5.38477e-11 -9.81142e-11 -3.73023e-10) (-2.10592e-10 9.09173e-12 -5.3177e-10) (-5.05344e-10 1.11561e-11 -4.76771e-10) (-4.72166e-10 -8.5384e-11 -1.79767e-10) (-2.23262e-10 -1.16607e-10 2.1183e-11) (-6.86214e-11 -9.71571e-11 6.8492e-11) (-3.43817e-13 -5.77253e-11 5.31617e-11) (1.20366e-11 -1.19776e-11 1.5807e-11) (8.19909e-12 4.47055e-12 4.05837e-12) (5.75634e-12 3.57383e-11 7.40329e-12) (-4.50254e-11 1.28813e-10 3.02622e-11) (-1.19885e-10 2.36972e-10 3.40883e-11) (-7.20297e-11 2.62847e-10 -4.08692e-11) (4.51703e-11 2.47444e-10 -1.61508e-10) (1.78428e-10 1.73111e-10 -3.24721e-10) (-2.08072e-10 2.94659e-11 -9.98507e-11) (-1.82232e-10 -7.99946e-11 -3.62194e-10) (-2.63024e-11 -2.22739e-10 -6.67324e-10) (5.18524e-11 -2.34472e-10 -4.79006e-10) (-3.16238e-11 -1.6007e-10 -1.36606e-10) (-1.59549e-10 -2.21303e-10 -1.10993e-12) (-3.1297e-10 -2.54592e-10 1.33996e-10) (-1.46603e-10 -5.15257e-11 9.12951e-11) (-1.54614e-11 3.07407e-11 2.9503e-11) (9.84778e-11 2.06591e-10 7.05011e-11) (2.92747e-10 3.72197e-10 1.04769e-10) (2.04458e-10 1.96068e-10 5.80887e-11) (3.70312e-11 2.30124e-11 3.64509e-12) (2.52385e-12 -1.42377e-12 -4.0877e-12) (-7.53128e-12 -1.48753e-11 -3.32636e-11) (-2.60427e-11 -9.60558e-12 -6.67831e-11) (-2.5398e-11 1.57661e-11 -4.7545e-11) (-9.12315e-12 1.57465e-11 -4.18637e-12) (3.39493e-12 4.40767e-11 7.70722e-11) (1.63352e-10 1.16005e-10 5.76344e-10) (4.52678e-10 1.23302e-10 1.09903e-09) (4.25459e-10 5.14884e-11 7.91654e-10) (1.43772e-10 -8.08334e-12 1.91181e-10) (9.9363e-12 -4.52401e-12 2.84793e-12) (-2.14027e-12 -1.37379e-11 -5.02285e-11) (-6.87735e-11 -1.84998e-11 -2.52532e-10) (-1.28056e-10 3.49569e-12 -3.60447e-10) (-1.00359e-10 -1.80813e-12 -2.1419e-10) (-4.57247e-11 -1.23136e-11 -4.66505e-11) (-4.50765e-11 -2.40997e-11 8.20505e-12) (-1.08782e-10 -7.69605e-11 9.34902e-11) (-1.20324e-10 -9.74434e-11 1.23334e-10) (-3.9741e-11 -3.49765e-11 3.166e-11) (-1.17661e-12 -1.2987e-12 -5.71136e-13) (7.74477e-12 5.54958e-12 -1.20729e-11) (2.82024e-11 3.26293e-11 -2.09348e-11) (1.87663e-11 6.10423e-11 6.55034e-12) (-3.70918e-11 1.25085e-10 7.26449e-11) (-1.66768e-10 1.77803e-10 1.30273e-10) (-2.31274e-10 1.22116e-10 4.65167e-11) (1.3446e-10 3.24253e-13 1.19852e-11) (1.27521e-10 -4.09693e-13 7.64342e-12) (1.22056e-10 -6.22092e-13 9.02584e-13) (1.06182e-10 -5.02428e-13 5.32432e-13) (8.25599e-11 -4.77379e-14 3.83628e-12) (6.5892e-11 -4.02874e-14 4.23297e-12) (7.37641e-11 -5.08232e-13 9.10769e-13) (1.27837e-10 -3.91032e-13 -1.23356e-11) (2.16775e-10 1.71961e-12 -4.71763e-11) (2.18592e-10 5.07979e-12 -7.43275e-11) (7.37128e-11 3.63757e-12 -3.69407e-11) (-5.56679e-12 6.28785e-13 -4.41494e-12) (-1.61514e-10 4.39497e-13 -1.84549e-11) (-1.9098e-10 -4.63797e-12 -2.54193e-11) (-1.94117e-11 -1.29811e-12 -7.9622e-12) (-6.03639e-13 -1.27862e-13 -1.47948e-12) (-4.52123e-13 3.29036e-14 -5.05269e-13) (-1.0463e-12 6.33619e-14 -5.99537e-14) (-5.75529e-13 6.37687e-15 1.65388e-13) (-1.8326e-13 -7.15805e-15 1.45829e-13) (-1.99845e-13 -4.67138e-15 3.04773e-13) (-3.40304e-13 -1.09962e-14 7.05483e-13) (-3.35525e-13 -3.04412e-14 1.28383e-12) (6.36525e-14 -7.30861e-14 2.5213e-12) (1.02531e-12 -9.86147e-14 3.82764e-12) (1.12142e-12 -3.21691e-14 2.37368e-12) (2.13329e-13 1.28508e-14 2.97293e-13) (4.35246e-15 2.6126e-15 -2.30769e-15) (9.10304e-15 2.3857e-15 -3.76147e-14) (2.54715e-13 -3.39224e-15 -1.02649e-13) (3.45774e-12 -5.5735e-14 -4.33052e-13) (1.96564e-11 -1.65679e-13 -1.84379e-12) (6.64218e-11 -2.33431e-13 -9.04881e-12) (1.50097e-10 4.61049e-14 -3.2391e-11) (2.44604e-10 1.02612e-12 -7.23567e-11) (3.08543e-10 2.06811e-12 -1.09867e-10) (3.09585e-10 2.9312e-12 -1.13611e-10) (2.56347e-10 3.23798e-12 -7.88217e-11) (1.91347e-10 2.68258e-12 -3.24147e-11) (1.51195e-10 1.51857e-12 -1.71754e-13) (2.00436e-09 2.38446e-11 8.88835e-11) (2.02024e-09 -9.91003e-12 6.63572e-11) (2.15105e-09 -2.49252e-11 -7.78697e-12) (2.19246e-09 -1.92309e-11 -3.53291e-11) (2.00861e-09 -5.04503e-13 -2.42813e-11) (1.66939e-09 2.38537e-12 -3.26198e-11) (1.50368e-09 -1.27108e-11 -7.76345e-11) (1.87264e-09 -1.63408e-11 -2.07568e-10) (2.82893e-09 1.92723e-11 -5.19707e-10) (3.48946e-09 1.04737e-10 -8.59432e-10) (2.50195e-09 1.34365e-10 -6.65399e-10) (5.47696e-10 3.95394e-11 -1.21918e-10) (-4.24916e-11 -2.29633e-12 2.35331e-12) (-8.58962e-10 -8.28147e-11 -1.49853e-11) (-4.84759e-10 -4.7286e-11 -5.54641e-11) (-4.34627e-11 -1.31592e-13 -6.42445e-12) (-8.6808e-12 1.70845e-12 2.19699e-12) (-6.19692e-12 8.63569e-13 5.42108e-12) (-2.5192e-12 -1.64382e-13 5.3401e-12) (-1.01787e-12 -4.06218e-13 5.21427e-12) (-1.76296e-12 -2.09225e-13 6.28459e-12) (-2.64709e-12 -2.09657e-13 6.7053e-12) (-1.39236e-12 -1.56021e-13 5.01391e-12) (2.70495e-13 -1.63785e-14 3.29832e-12) (8.9599e-13 1.26557e-13 1.33896e-12) (7.3533e-13 1.76188e-13 -7.2831e-14) (2.93736e-12 9.47412e-13 -4.3954e-12) (6.88937e-12 1.46842e-12 -1.09718e-11) (1.21713e-11 7.4433e-13 -1.04371e-11) (2.83767e-11 -1.55744e-13 -9.28628e-12) (8.07993e-11 -1.47574e-12 -8.98837e-12) (2.29346e-10 -2.83507e-12 -1.7987e-11) (6.09304e-10 -4.08854e-12 -8.49451e-11) (1.37357e-09 -4.05013e-12 -2.98368e-10) (2.45382e-09 4.38187e-12 -6.82827e-10) (3.4797e-09 2.53037e-11 -1.08556e-09) (3.93892e-09 6.21183e-11 -1.22056e-09) (3.60761e-09 9.51561e-11 -9.48692e-10) (2.84802e-09 9.91093e-11 -4.61295e-10) (2.24616e-09 6.71386e-11 -7.41627e-11) (1.12023e-09 5.45531e-11 6.49708e-11) (1.19122e-09 8.06614e-12 7.20153e-11) (1.39368e-09 -2.41017e-11 3.04336e-11) (1.62458e-09 -3.01003e-11 1.13535e-11) (1.75038e-09 -8.53253e-12 1.40286e-11) (1.61686e-09 4.23694e-12 -7.59733e-12) (1.33239e-09 -9.6397e-12 -4.85322e-11) (1.28363e-09 -2.23277e-11 -1.14611e-10) (1.70788e-09 -6.48267e-12 -2.80003e-10) (2.39657e-09 7.62823e-11 -5.67029e-10) (2.42598e-09 1.60732e-10 -6.44347e-10) (1.34238e-09 1.16313e-10 -2.72643e-10) (1.31871e-10 8.95009e-12 -2.93738e-12) (-1.37904e-10 -2.18042e-11 1.87777e-11) (-1.26065e-09 -1.31407e-10 -1.59487e-11) (-4.22277e-10 -1.75332e-13 -6.86072e-12) (-3.00965e-11 9.13011e-12 9.35674e-12) (-3.15898e-12 2.21692e-12 6.61354e-12) (1.72958e-12 4.62247e-14 7.1204e-12) (3.51017e-12 -9.22961e-13 7.46402e-12) (1.5973e-12 -3.84351e-13 6.87608e-12) (-1.28915e-12 -3.30569e-13 6.62347e-12) (-2.008e-12 -1.74546e-13 4.85099e-12) (-4.90844e-13 1.12089e-13 1.81349e-12) (1.00853e-13 1.11956e-13 1.33645e-13) (1.16963e-12 1.13603e-12 -2.05608e-12) (1.15584e-11 6.57301e-12 -2.43823e-11) (3.11322e-11 9.85236e-12 -4.93047e-11) (5.01569e-11 6.48881e-12 -4.39453e-11) (7.73225e-11 2.78623e-12 -3.00177e-11) (1.25875e-10 1.31891e-13 -1.58093e-11) (2.21252e-10 -2.32993e-12 -6.51657e-12) (4.46291e-10 -7.77647e-12 -3.23857e-11) (9.00918e-10 -1.8786e-11 -1.51812e-10) (1.54233e-09 -2.78077e-11 -3.77234e-10) (2.15218e-09 -1.73223e-11 -6.24447e-10) (2.42167e-09 3.03632e-11 -7.3373e-10) (2.19515e-09 9.73763e-11 -6.07222e-10) (1.67274e-09 1.26233e-10 -3.18171e-10) (1.26005e-09 1.01907e-10 -6.22156e-11) (3.59496e-11 9.50331e-12 1.35009e-11) (4.49163e-11 1.92338e-12 1.8402e-11) (7.76783e-11 -5.62653e-12 1.87119e-11) (1.39181e-10 -1.07652e-11 2.26848e-11) (2.06551e-10 -6.97171e-12 3.07825e-11) (2.06691e-10 -6.77625e-13 2.48948e-11) (1.32969e-10 -1.99617e-12 8.04336e-12) (8.93905e-11 -5.30011e-12 -4.56228e-12) (1.32344e-10 -6.04981e-12 -2.89088e-11) (3.01893e-10 1.36918e-11 -1.10293e-10) (4.15626e-10 5.75634e-11 -1.91424e-10) (1.90764e-10 4.39553e-11 -8.82701e-11) (1.98428e-12 1.39405e-12 -5.44631e-13) (-3.6484e-10 -2.39125e-11 6.53716e-11) (-3.58368e-09 -3.08511e-10 1.77601e-10) (-2.68078e-09 -6.10262e-11 5.38516e-11) (-2.21762e-10 4.24718e-11 4.38588e-11) (-5.68508e-12 5.3721e-12 1.08365e-11) (4.35943e-12 6.61706e-13 9.25734e-12) (5.90975e-12 -1.36055e-12 8.04656e-12) (2.2232e-12 -4.87212e-13 5.46017e-12) (-1.82183e-12 -3.98629e-13 5.65344e-12) (-8.15459e-12 -2.81576e-13 8.19837e-12) (-8.39063e-12 6.85098e-13 5.94107e-12) (-2.25027e-12 1.00021e-12 7.73848e-13) (-1.07131e-12 2.31149e-12 -3.02309e-12) (5.77934e-12 1.14466e-11 -3.23063e-11) (3.0424e-11 1.73835e-11 -6.99534e-11) (4.7995e-11 1.01516e-11 -5.6844e-11) (5.62557e-11 3.22728e-12 -3.03686e-11) (6.30272e-11 -3.41859e-13 -1.02856e-11) (7.60563e-11 -2.92526e-12 3.53247e-12) (1.15794e-10 -8.27441e-12 4.97785e-12) (2.19628e-10 -1.94175e-11 -2.51124e-11) (3.97116e-10 -3.17394e-11 -9.9899e-11) (5.49141e-10 -2.81516e-11 -1.89104e-10) (5.37822e-10 3.40588e-12 -2.19658e-10) (3.55778e-10 3.83239e-11 -1.5708e-10) (1.56623e-10 3.89465e-11 -5.76123e-11) (5.68865e-11 2.03373e-11 -2.76534e-12) (-1.7808e-12 3.25063e-12 1.74303e-12) (-1.56435e-12 6.95577e-13 3.08316e-12) (3.51133e-13 -6.8054e-13 2.0756e-12) (6.02261e-12 -2.589e-12 5.1433e-12) (2.5535e-11 -4.11627e-12 1.46035e-11) (3.65883e-11 -1.67083e-12 1.82528e-11) (1.61228e-11 -5.89507e-13 7.95767e-12) (2.69168e-12 -6.59126e-13 1.25296e-12) (2.40578e-12 -9.56337e-13 -4.24701e-13) (3.03099e-11 -5.45554e-13 -1.68953e-11) (1.22736e-10 2.44044e-11 -8.72247e-11) (6.77767e-11 3.18845e-11 -7.0702e-11) (-1.04711e-11 8.02733e-12 -7.45571e-12) (-1.05163e-09 2.12446e-11 1.17715e-10) (-8.53683e-09 -4.75176e-10 6.08845e-10) (-1.07307e-08 -4.04031e-10 3.60696e-10) (-1.68861e-09 1.16664e-10 2.00984e-10) (-3.63366e-11 1.55368e-11 3.08099e-11) (5.07635e-12 1.54098e-12 1.27425e-11) (6.2446e-12 -1.69409e-12 8.93344e-12) (1.20201e-12 -7.18487e-13 4.79512e-12) (-4.86064e-12 -7.20992e-13 7.38721e-12) (-3.37195e-11 -7.47908e-13 2.01647e-11) (-6.7802e-11 3.04278e-12 2.76847e-11) (-4.2856e-11 8.36287e-12 1.03903e-11) (-1.37794e-11 7.99318e-12 -6.10406e-12) (-7.70596e-12 1.63065e-11 -3.51465e-11) (1.67377e-11 2.17124e-11 -7.73142e-11) (3.69206e-11 1.12539e-11 -6.19318e-11) (4.05903e-11 2.2333e-12 -3.03501e-11) (3.64679e-11 -1.39859e-12 -9.27304e-12) (3.28287e-11 -3.20954e-12 3.46695e-12) (3.89591e-11 -7.11202e-12 9.57369e-12) (6.82264e-11 -1.58406e-11 3.72347e-12) (1.56984e-10 -3.26589e-11 -3.00196e-11) (2.89058e-10 -4.08457e-11 -9.97682e-11) (3.43577e-10 -1.15883e-11 -1.63582e-10) (2.21183e-10 3.40543e-11 -1.43566e-10) (5.85192e-11 3.37861e-11 -5.50279e-11) (3.19786e-12 9.84812e-12 -5.52368e-12) (-3.22426e-12 9.97365e-12 -3.35182e-12) (-3.53046e-12 2.01669e-12 6.75764e-13) (-7.96832e-13 -2.26416e-13 3.99723e-13) (5.30252e-13 -8.54826e-13 8.67908e-13) (1.35699e-11 -4.01188e-12 9.10871e-12) (4.62308e-11 -3.93485e-12 2.67601e-11) (4.07161e-11 -1.01256e-12 2.43993e-11) (9.79615e-12 -1.52509e-12 8.07977e-12) (1.16272e-12 -1.22406e-12 1.38413e-12) (4.00964e-12 -1.71496e-12 -1.07598e-12) (7.94322e-11 5.19856e-12 -4.41034e-11) (1.87656e-10 5.61422e-11 -1.34251e-10) (1.91309e-11 2.77913e-11 -3.80886e-11) (-5.24411e-10 8.64034e-11 -1.12902e-11) (-9.60142e-09 -1.84953e-10 6.57376e-10) (-2.28219e-08 -1.01442e-09 1.00792e-09) (-7.7802e-09 -3.93984e-11 6.68875e-10) (-2.65509e-10 3.81662e-11 1.21654e-10) (9.59637e-12 2.98682e-12 2.34365e-11) (2.03457e-11 -3.00133e-12 1.8197e-11) (5.39624e-12 -1.69263e-12 7.08139e-12) (-2.1222e-12 -8.41856e-13 5.64787e-12) (-4.61741e-11 -7.922e-13 2.56724e-11) (-1.9488e-10 7.71521e-12 6.67121e-11) (-2.36459e-10 2.98648e-11 5.53607e-11) (-9.20664e-11 3.07769e-11 -7.40183e-12) (-3.00598e-11 2.6199e-11 -4.18743e-11) (1.93108e-12 2.68797e-11 -8.11225e-11) (3.71357e-11 1.33541e-11 -7.2525e-11) (5.54205e-11 2.8213e-12 -4.59425e-11) (5.60119e-11 -1.74773e-12 -2.11541e-11) (4.2334e-11 -3.30647e-12 -5.74334e-13) (3.77929e-11 -7.63837e-12 1.17899e-11) (4.63205e-11 -1.69525e-11 1.59384e-11) (7.92186e-11 -3.27e-11 5.82157e-12) (1.7891e-10 -5.46091e-11 -3.56454e-11) (3.36392e-10 -4.51082e-11 -1.25459e-10) (3.70533e-10 3.20965e-11 -1.9498e-10) (1.86025e-10 8.22503e-11 -1.404e-10) (2.61195e-11 4.03303e-11 -3.71084e-11) (3.02615e-12 3.01594e-11 -1.53513e-11) (-4.70747e-12 6.44275e-12 -3.42127e-12) (-2.41947e-12 3.93754e-13 -1.31766e-12) (-1.76549e-13 -2.73459e-13 -1.05576e-13) (3.83596e-12 -1.98171e-12 2.3509e-12) (4.18965e-11 -5.85178e-12 2.34248e-11) (8.15295e-11 -2.5446e-12 4.52066e-11) (4.13175e-11 -2.19189e-12 2.949e-11) (5.08617e-12 -3.22341e-12 8.21446e-12) (7.63416e-13 -2.36528e-12 1.67847e-12) (1.78839e-11 -5.82415e-12 -7.20845e-12) (2.02715e-10 2.69379e-11 -1.1187e-10) (2.04877e-10 1.01676e-10 -1.53775e-10) (-6.83943e-11 6.28991e-11 -4.11029e-11) (-5.8468e-09 4.04483e-10 1.84368e-10) (-2.85274e-08 -8.80024e-10 1.334e-09) (-2.00184e-08 -9.31936e-10 1.45106e-09) (-1.68331e-09 -3.47601e-11 4.70931e-10) (4.09303e-12 5.35138e-13 4.5968e-11) (8.18284e-11 -6.23227e-12 5.57864e-11) (4.79831e-11 -7.28511e-12 2.67788e-11) (6.60165e-12 -1.82499e-12 8.17629e-12) (-1.42812e-11 -2.61223e-13 1.29424e-11) (-2.45115e-10 1.42165e-11 8.60275e-11) (-7.05246e-10 7.08424e-11 1.6229e-10) (-4.93796e-10 1.01768e-10 2.50561e-11) (-1.11738e-10 5.34695e-11 -6.36423e-11) (-1.58117e-11 3.07883e-11 -8.52451e-11) (3.67962e-11 1.12832e-11 -8.17825e-11) (9.08582e-11 -2.18187e-12 -7.47136e-11) (1.16681e-10 -5.44126e-12 -5.34344e-11) (7.96082e-11 -2.82682e-12 -1.49919e-11) (4.56564e-11 -6.52104e-12 9.32093e-12) (3.91285e-11 -1.65016e-11 2.09879e-11) (4.41129e-11 -3.04651e-11 1.95087e-11) (7.25028e-11 -4.65485e-11 -4.7601e-13) (1.54187e-10 -5.41204e-11 -5.11354e-11) (2.251e-10 -3.42611e-12 -1.13735e-10) (1.78234e-10 7.43002e-11 -1.1742e-10) (6.59172e-11 7.75758e-11 -6.21758e-11) (5.63062e-13 4.52361e-11 -1.19887e-11) (-2.20839e-12 1.37753e-11 -6.59618e-12) (-9.52387e-13 2.18931e-12 -4.02859e-12) (9.56013e-14 -1.30909e-13 -1.09826e-12) (3.02913e-12 -1.18753e-12 6.52677e-13) (4.70238e-11 -7.8482e-12 2.10836e-11) (1.46538e-10 -8.28158e-12 6.21733e-11) (1.27056e-10 -2.45292e-12 5.9982e-11) (2.40381e-11 -4.50907e-12 2.00993e-11) (1.04308e-12 -4.70187e-12 4.89003e-12) (5.25944e-12 -8.08552e-12 -1.03697e-12) (9.30235e-11 -1.65739e-11 -5.36647e-11) (3.05449e-10 9.80387e-11 -1.92872e-10) (5.13306e-11 1.27863e-10 -9.2428e-11) (-1.98087e-09 5.81549e-10 -1.0387e-10) (-2.23028e-08 3.48634e-10 8.25384e-10) (-2.85285e-08 -1.81919e-09 1.80632e-09) (-5.60015e-09 -6.15615e-10 1.09559e-09) (-1.00866e-10 -3.27404e-11 1.3408e-10) (1.20991e-10 -1.78475e-11 1.13233e-10) (1.89261e-10 -2.37524e-11 9.35838e-11) (8.31894e-11 -1.17588e-11 4.0874e-11) (2.97803e-12 -3.41787e-13 7.34114e-12) (-1.19072e-10 1.5924e-11 5.79305e-11) (-1.14016e-09 1.30629e-10 2.85187e-10) (-1.80944e-09 2.58851e-10 1.91717e-10) (-5.61208e-10 1.42324e-10 -1.2053e-10) (-4.63522e-11 3.08658e-11 -8.93942e-11) (4.63921e-11 1.77998e-12 -8.98693e-11) (1.69159e-10 -2.627e-11 -1.22269e-10) (2.57282e-10 -2.29746e-11 -1.2476e-10) (1.79759e-10 1.03892e-12 -5.99492e-11) (6.74173e-11 3.69509e-13 -5.13686e-13) (3.20885e-11 -9.68128e-12 1.59076e-11) (2.70959e-11 -2.49426e-11 1.81288e-11) (2.95082e-11 -3.8323e-11 5.53e-12) (3.08659e-11 -3.28717e-11 -1.31087e-11) (2.06362e-11 -7.61539e-12 -1.80794e-11) (1.44912e-11 1.51562e-11 -1.92755e-11) (1.06725e-11 4.92256e-11 -2.17033e-11) (-2.62404e-11 5.48138e-11 4.22711e-12) (-1.41524e-12 1.73898e-11 -4.87957e-12) (4.38061e-12 5.98809e-12 -9.42281e-12) (5.98217e-12 1.43774e-12 -6.4491e-12) (1.22206e-11 -1.24982e-12 7.45673e-13) (8.79827e-11 -1.33775e-11 3.26316e-11) (2.88753e-10 -2.67928e-11 8.84772e-11) (3.4019e-10 -8.89837e-12 8.17825e-11) (1.10062e-10 -2.98943e-12 2.90657e-11) (9.34729e-12 -5.08564e-12 3.82513e-12) (1.02769e-11 -1.62628e-11 -2.81226e-12) (5.39106e-11 -3.78076e-11 -3.95793e-11) (1.34107e-10 1.99741e-11 -1.11032e-10) (1.31704e-10 1.95208e-10 -1.43411e-10) (-4.74756e-10 4.54563e-10 -1.13474e-10) (-1.0395e-08 1.30587e-09 1.4662e-10) (-2.28307e-08 -1.29119e-09 9.86261e-10) (-8.07529e-09 -1.33351e-09 1.07649e-09) (-5.38926e-10 -1.97715e-10 3.24016e-10) (4.03165e-11 -4.53261e-11 1.34836e-10) (2.17172e-10 -5.49682e-11 1.76779e-10) (2.4079e-10 -3.85388e-11 1.28138e-10) (8.32292e-11 -4.45573e-12 4.76008e-11) (-7.53812e-12 7.04652e-12 1.837e-11) (-7.55292e-10 1.50952e-10 2.71897e-10) (-3.40095e-09 4.61293e-10 5.61779e-10) (-2.32564e-09 3.26899e-10 -8.59713e-11) (-1.97517e-10 3.45041e-11 -1.18218e-10) (3.2205e-11 -1.18759e-11 -5.46182e-11) (2.98929e-10 -8.37634e-11 -1.43444e-10) (5.65785e-10 -7.57078e-11 -2.47512e-10) (4.28924e-10 2.19841e-11 -2.12094e-10) (1.54338e-10 2.90494e-11 -5.43096e-11) (3.29597e-11 1.37065e-12 2.41247e-12) (1.51679e-11 -1.25253e-11 7.14069e-12) (1.14921e-11 -3.23076e-11 4.55571e-12) (-3.06823e-12 -2.67386e-11 -2.09848e-12) (-1.72606e-11 -9.2145e-12 -4.14015e-12) (-5.41713e-11 1.87293e-11 -6.06137e-12) (-6.27664e-11 6.2059e-11 2.13471e-12) (-1.20582e-10 8.03971e-11 4.70512e-11) (-1.35532e-12 9.33453e-12 -1.40657e-12) (1.64051e-11 1.10303e-11 -1.84311e-11) (2.67727e-11 7.67626e-12 -1.77108e-11) (3.45643e-11 2.13124e-12 3.32352e-12) (1.39478e-10 -1.86241e-11 5.44134e-11) (4.22644e-10 -6.24499e-11 1.09783e-10) (6.56566e-10 -4.4728e-11 5.16212e-11) (4.35873e-10 1.86756e-12 -2.7716e-11) (1.27607e-10 -1.28659e-11 -2.63853e-11) (5.38584e-11 -3.42424e-11 -2.43895e-11) (4.80664e-11 -5.26323e-11 -4.41649e-11) (2.18816e-11 -7.67961e-12 -3.98612e-11) (3.69751e-11 1.11318e-10 -8.47659e-11) (-1.43576e-10 4.57185e-10 -1.16016e-10) (-2.78075e-09 1.07789e-09 -9.40905e-11) (-1.02646e-08 -1.1603e-10 -1.89012e-11) (-6.05015e-09 -1.22072e-09 2.10979e-10) (-7.37801e-10 -3.23575e-10 2.22047e-10) (-3.13804e-11 -7.32721e-11 1.25074e-10) (6.75776e-11 -8.00292e-11 1.77938e-10) (1.13896e-10 -7.69607e-11 1.62534e-10) (1.34122e-10 -3.10083e-11 1.13729e-10) (5.75471e-11 2.0329e-11 6.36749e-11) (-1.26961e-10 9.10897e-11 1.37831e-10) (-2.38391e-09 5.10757e-10 7.27967e-10) (-4.47739e-09 4.42813e-10 3.92611e-10) (-1.0842e-09 -2.02692e-11 -1.44569e-10) (-1.0417e-11 -1.88748e-11 -1.50002e-11) (1.65858e-10 -1.00156e-10 -3.66587e-11) (6.13038e-10 -1.2556e-10 -1.8943e-10) (9.26407e-10 8.66907e-11 -5.20606e-10) (5.11179e-10 1.78628e-10 -3.81912e-10) (1.09503e-10 4.52832e-11 -6.81075e-11) (1.25468e-11 -2.86116e-12 -2.69796e-12) (3.55495e-12 -1.99712e-11 2.28022e-12) (-3.83323e-11 -4.47919e-11 9.51362e-12) (-2.80394e-10 -4.99292e-11 4.34874e-11) (-7.82329e-10 9.92557e-11 1.37763e-10) (-6.45506e-10 2.19191e-10 1.68342e-10) (-2.23769e-10 5.98561e-11 1.02776e-10) (-6.52645e-12 3.76257e-12 4.28329e-13) (7.17486e-12 4.73894e-12 -9.87155e-12) (2.90261e-11 1.01516e-11 -1.31185e-11) (5.4332e-11 9.37981e-12 1.23788e-11) (1.616e-10 -2.26378e-11 6.59572e-11) (4.70076e-10 -1.17325e-10 8.25351e-11) (1.0026e-09 -1.60459e-10 -7.15603e-11) (1.17373e-09 -3.67319e-11 -2.87378e-10) (7.20656e-10 7.60927e-12 -2.78381e-10) (2.51422e-10 -4.90853e-11 -1.34734e-10) (3.76941e-11 -3.93796e-11 -4.20425e-11) (-9.24986e-12 -7.82379e-12 -1.1993e-11) (-2.77631e-11 4.12327e-11 -2.01378e-11) (-3.65611e-11 3.68122e-10 -7.07227e-11) (-3.42955e-10 4.85378e-10 -8.91734e-11) (-1.84223e-09 2.57571e-10 -2.63521e-10) (-2.41524e-09 -5.22734e-10 -4.07859e-10) (-5.85366e-10 -2.84839e-10 -6.26974e-11) (-3.29174e-11 -5.05121e-11 4.18492e-11) (2.28194e-11 -8.21816e-11 1.66617e-10) (4.55859e-13 -1.17458e-10 2.3357e-10) (-1.38396e-11 -7.27868e-11 1.48379e-10) (2.51767e-11 -2.98673e-12 9.45641e-11) (2.49462e-11 8.88465e-11 1.82951e-10) (-4.52586e-10 2.75565e-10 4.53651e-10) (-2.25035e-09 3.2285e-10 6.66106e-10) (-1.5859e-09 -1.94303e-10 4.90768e-11) (-1.77547e-10 -1.57371e-10 -4.14254e-11) (2.08789e-11 -1.01233e-10 -7.64263e-12) (6.86378e-11 -4.94485e-11 -9.88484e-12) (3.20112e-10 4.87514e-11 -1.75576e-10) (9.10576e-10 4.3797e-10 -7.82535e-10) (5.4225e-10 3.37682e-10 -5.67432e-10) (8.60236e-11 2.96499e-11 -8.33345e-11) (1.95304e-12 -4.76982e-12 -2.69701e-12) (-6.26875e-11 -3.69435e-11 1.499e-11) (-5.95185e-10 -3.27721e-11 1.44187e-10) (-1.40327e-09 1.72887e-10 3.82855e-10) (-1.02539e-09 2.22061e-10 3.70195e-10) (-5.4593e-11 -3.8893e-12 2.42051e-11) (-1.9514e-12 -2.2471e-12 -2.71758e-12) (2.30331e-12 -2.10374e-12 -8.40132e-12) (2.60424e-12 1.27348e-12 -3.07996e-13) (3.71976e-11 1.21529e-11 3.27825e-11) (1.50317e-10 -2.01833e-11 1.01297e-10) (3.09194e-10 -1.27127e-10 7.5889e-11) (5.73032e-10 -2.12057e-10 -9.64709e-11) (1.11034e-09 -1.23785e-10 -4.47694e-10) (1.43485e-09 1.12974e-10 -7.46092e-10) (6.31287e-10 6.44799e-11 -4.11976e-10) (2.05386e-11 -3.63187e-12 -2.94343e-11) (-7.93281e-11 -1.08014e-11 1.23676e-11) (-2.12712e-10 5.65929e-11 1.0314e-10) (-2.72008e-11 1.61051e-10 5.09937e-11) (1.07638e-10 3.19717e-10 -5.1314e-11) (-2.16497e-11 8.13602e-11 -9.6507e-11) (-3.10525e-10 -7.28153e-11 -3.51831e-10) (-3.79776e-10 -1.92792e-10 -3.68638e-10) (-4.0868e-11 -3.53747e-11 -2.49797e-11) (3.85241e-12 -3.64615e-11 6.86569e-11) (8.89793e-12 -1.4768e-10 4.1294e-10) (-1.28718e-10 -1.88387e-10 4.59444e-10) (-1.14264e-10 -7.75299e-11 2.49603e-10) (-1.89727e-11 3.30206e-11 2.05777e-10) (-2.51407e-11 1.52388e-10 3.81699e-10) (-2.15699e-10 9.55467e-11 3.08135e-10) (-2.49586e-10 -6.80856e-11 8.06132e-11) (-1.46143e-10 -1.77349e-10 -5.62154e-11) (-7.09588e-11 -1.67577e-10 -5.32643e-11) (-5.47406e-11 -6.86382e-11 -3.46311e-14) (-5.12054e-12 -1.16698e-12 -8.73912e-13) (1.15159e-10 1.32136e-10 -1.43139e-10) (7.70468e-10 6.44335e-10 -8.76778e-10) (4.65875e-10 3.06767e-10 -5.93771e-10) (2.43048e-11 1.19835e-11 -5.88092e-11) (-6.91473e-11 -4.32544e-12 -7.77078e-13) (-7.3322e-10 6.77876e-11 2.06511e-10) (-1.1735e-09 1.83485e-10 4.19279e-10) (-5.0039e-10 5.52959e-11 2.19808e-10) (7.43065e-12 -2.18547e-11 4.76258e-12) (1.05853e-10 -1.12108e-10 -9.70237e-11) (9.00823e-11 -9.34417e-11 -1.3684e-10) (1.10864e-12 -2.60072e-12 -4.30474e-12) (-9.99341e-15 4.81645e-12 2.97635e-11) (9.7224e-11 -1.8401e-12 2.0715e-10) (2.52101e-10 -8.02631e-11 2.49541e-10) (1.79598e-10 -9.56059e-11 5.30611e-11) (1.72439e-10 -7.38704e-11 -1.1304e-10) (4.39445e-10 2.93768e-11 -5.16943e-10) (4.55702e-10 2.25724e-10 -6.15577e-10) (2.71982e-11 5.79368e-11 -7.01283e-11) (-8.07668e-11 2.92473e-11 7.20428e-11) (-2.81134e-10 -2.83755e-12 4.6768e-10) (-1.88956e-11 3.63075e-11 1.96668e-10) (1.53189e-10 1.10772e-10 3.03146e-11) (4.61895e-10 2.49381e-10 -3.49493e-10) (3.06515e-10 1.05534e-10 -9.048e-10) (-1.35038e-10 -7.32316e-11 -1.25652e-09) (-1.54124e-10 -4.78043e-11 -4.50738e-10) (-1.13992e-12 -1.32259e-12 -4.86661e-13) (3.31412e-11 -6.71861e-11 2.69946e-10) (-5.30701e-11 -2.02159e-10 7.10742e-10) (-2.08369e-10 -1.81401e-10 5.39161e-10) (-1.10118e-10 -6.12697e-11 3.22625e-10) (3.12847e-11 1.77845e-11 3.60914e-10) (8.01477e-11 1.67698e-11 3.08635e-10) (8.312e-12 -2.16941e-11 4.12068e-11) (-2.00562e-11 -6.58066e-11 -1.72392e-11) (-1.35649e-10 -1.52424e-10 -7.40996e-11) (-4.14808e-10 -2.15383e-10 -1.87003e-11) (-5.09258e-10 -1.2874e-10 5.35329e-11) (-5.11073e-11 2.47782e-11 -1.45053e-11) (2.49612e-10 3.9865e-10 -3.54973e-10) (7.57824e-10 8.30845e-10 -1.06948e-09) (1.00603e-10 2.52389e-10 -4.39222e-10) (-1.95671e-10 9.25077e-11 -8.31358e-11) (-8.88271e-10 2.34476e-10 2.44818e-10) (-7.29461e-10 1.4342e-10 4.18698e-10) (-9.72299e-11 -1.80991e-11 1.01372e-10) (3.69606e-10 -3.26634e-10 9.94526e-11) (1.27594e-09 -8.28712e-10 -3.87951e-10) (1.00207e-09 -6.2807e-10 -6.3167e-10) (4.51975e-11 -6.23686e-11 -8.06933e-11) (-4.66517e-11 -1.40613e-11 1.58376e-11) (-1.06241e-10 -1.92661e-11 1.83128e-10) (4.0257e-11 -2.64971e-11 3.20867e-10) (1.49214e-10 -2.19371e-11 2.51799e-10) (2.01623e-11 -2.58622e-12 1.40364e-11) (5.53571e-12 1.43265e-11 -8.64291e-11) (-2.36742e-11 2.0266e-10 -5.36477e-10) (-2.17591e-11 1.97449e-10 -2.3442e-10) (6.72967e-12 4.10152e-11 3.6999e-11) (2.70591e-10 -3.67301e-11 7.50685e-10) (4.91196e-10 -2.29605e-10 1.02689e-09) (1.18457e-10 -3.71446e-11 1.59023e-10) (5.38126e-11 1.93205e-11 -4.72741e-11) (3.67987e-10 3.06006e-10 -1.16865e-09) (3.26793e-10 6.11423e-10 -3.33282e-09) (-1.66633e-10 3.4767e-10 -2.47997e-09) (-4.00684e-11 3.26526e-11 -2.53956e-10) (7.69989e-12 -4.2966e-12 2.02492e-11) (1.08759e-10 -1.05262e-10 4.44484e-10) (4.21145e-11 -1.70507e-10 5.26312e-10) (-2.51215e-11 -1.34601e-10 3.62984e-10) (3.4623e-11 -1.04748e-10 3.86112e-10) (1.49057e-10 -9.37119e-11 4.44648e-10) (9.00296e-11 -7.59199e-11 1.89819e-10) (3.25025e-12 -3.31755e-11 2.28714e-11) (-6.47933e-11 -6.56339e-11 1.33501e-12) (-4.56951e-10 -2.19866e-10 8.83469e-12) (-1.24068e-09 -4.02399e-10 5.2267e-11) (-7.35892e-10 -7.01165e-11 -6.54481e-11) (-6.85654e-11 1.97574e-10 -1.6772e-10) (4.89022e-10 1.23501e-09 -1.09728e-09) (7.27257e-12 1.0598e-09 -1.0966e-09) (-6.4568e-10 5.51403e-10 -3.65065e-10) (-1.01959e-09 4.09022e-10 2.93895e-10) (-4.082e-10 6.74673e-11 4.56169e-10) (1.86567e-11 -9.78208e-11 2.03308e-10) (1.58202e-09 -1.3533e-09 3.48458e-10) (3.61276e-09 -2.41186e-09 -9.52118e-10) (2.55633e-09 -1.5256e-09 -1.52424e-09) (2.53257e-10 -2.17051e-10 -3.16419e-10) (-3.37717e-11 -2.40512e-11 -2.52382e-12) (-2.88667e-10 -9.21725e-11 2.45043e-10) (-2.76938e-10 -6.14501e-11 4.70499e-10) (-5.75366e-11 4.92836e-11 3.11067e-10) (9.34581e-12 7.03905e-11 1.02934e-10) (-6.80604e-12 3.98784e-11 -1.03006e-11) (-1.05285e-10 1.79947e-10 -2.85244e-10) (-7.87804e-11 2.13814e-10 -3.08708e-10) (2.64268e-11 2.97739e-11 4.39452e-12) (7.3942e-10 -1.01661e-10 8.84274e-10) (1.71031e-09 -6.10207e-10 2.36469e-09) (6.3229e-10 -2.71703e-10 9.42089e-10) (3.66543e-12 -3.042e-12 5.59086e-12) (-1.62056e-10 9.58665e-11 -4.62726e-10) (-5.6695e-10 9.13235e-10 -3.46348e-09) (-4.7552e-10 1.33629e-09 -5.39453e-09) (-1.79446e-10 4.01821e-10 -1.96737e-09) (3.51187e-12 3.52226e-12 -5.11752e-11) (6.42673e-11 -3.34151e-11 7.66736e-11) (2.8243e-10 -1.42857e-10 3.6988e-10) (2.80885e-10 -1.62979e-10 3.68448e-10) (1.98914e-10 -1.4763e-10 3.49565e-10) (1.73506e-10 -1.72983e-10 4.81182e-10) (1.16545e-10 -1.82462e-10 4.61586e-10) (1.79524e-11 -1.18613e-10 2.13763e-10) (-3.68472e-11 -5.76471e-11 6.31773e-11) (-1.84257e-10 -1.02482e-10 4.74436e-11) (-1.09464e-09 -3.83432e-10 2.89232e-11) (-2.60825e-09 -4.49898e-10 -2.14349e-10) (-1.43826e-09 4.26908e-10 -5.38827e-10) (-5.21699e-10 1.61437e-09 -1.19492e-09) (-5.10334e-10 2.46216e-09 -1.67971e-09) (-8.83162e-10 1.21544e-09 -4.87254e-10) (-5.74454e-10 3.4754e-10 2.97962e-10) (-1.40751e-10 -6.07918e-11 5.59432e-10) (3.93391e-10 -5.04445e-10 6.59117e-10) (2.92147e-09 -2.07336e-09 4.07122e-10) (3.77098e-09 -2.39076e-09 -1.03342e-09) (2.20471e-09 -1.31523e-09 -1.44601e-09) (3.64917e-10 -2.67371e-10 -4.58626e-10) (3.30151e-12 -1.77802e-11 -1.98601e-11) (-2.70363e-11 -2.49653e-11 3.33294e-11) (-1.50031e-10 -7.05133e-11 2.39773e-10) (-2.4289e-10 1.67972e-11 3.41184e-10) (-1.9406e-10 1.52153e-10 2.14039e-10) (-1.07757e-10 1.76713e-10 2.99871e-11) (-9.41078e-11 2.16178e-10 -1.51059e-10) (-2.40373e-11 1.73875e-10 -2.02693e-10) (4.5617e-11 3.64751e-11 -7.6803e-12) (6.03898e-10 -4.05346e-11 6.60229e-10) (1.52322e-09 -6.01547e-10 2.44278e-09) (1.01391e-09 -5.81158e-10 1.65245e-09) (1.36915e-10 -6.84873e-11 1.39185e-10) (-2.13106e-11 1.97896e-11 -7.14568e-11) (-9.03839e-10 6.3145e-10 -1.86391e-09) (-1.7569e-09 1.67721e-09 -5.34974e-09) (-8.84811e-10 1.08865e-09 -4.48846e-09) (-8.26012e-11 7.97906e-11 -8.58805e-10) (1.78107e-11 -1.91747e-11 -1.64523e-11) (1.81981e-10 -1.22578e-10 1.14211e-10) (4.16137e-10 -1.90975e-10 2.59805e-10) (4.22603e-10 -1.51611e-10 2.72142e-10) (3.12171e-10 -1.32452e-10 3.23439e-10) (1.62985e-10 -1.50105e-10 4.17655e-10) (-1.59833e-11 -1.64057e-10 4.13999e-10) (-9.77216e-11 -1.24541e-10 2.45094e-10) (-1.12869e-10 -9.26716e-11 1.06957e-10) (-4.69598e-10 -2.17556e-10 9.24638e-11) (-3.16232e-09 -5.49047e-10 -7.00838e-11) (-6.79063e-09 8.40502e-10 -1.13511e-09) (-4.37797e-09 3.31089e-09 -2.06336e-09) (-1.95101e-09 4.01226e-09 -1.91592e-09) (-6.20178e-10 1.46612e-09 -2.97434e-10) (-6.30925e-11 1.42203e-10 1.82144e-10) (3.2883e-10 -2.63167e-10 7.39986e-10) (1.46938e-09 -1.18051e-09 1.13257e-09) (3.42271e-09 -2.20971e-09 4.89254e-10) (1.88006e-09 -1.1154e-09 -2.66193e-11) (5.99428e-10 -2.91124e-10 -1.41816e-10) (1.75095e-10 -5.16487e-11 -9.02992e-11) (7.49102e-11 -1.35243e-11 -4.03632e-11) (2.56803e-11 -8.30199e-12 -4.40872e-12) (2.60448e-13 -1.95975e-12 3.5576e-12) (-1.0688e-10 1.77914e-11 5.65805e-11) (-5.85476e-10 2.16639e-10 1.20801e-10) (-6.66532e-10 3.84079e-10 -6.25284e-11) (-2.65121e-10 2.65998e-10 -2.04716e-10) (-2.37315e-12 1.19078e-10 -1.38988e-10) (1.18858e-10 6.00965e-11 -2.32913e-11) (6.54069e-10 1.2339e-11 4.48729e-10) (1.38095e-09 -5.06171e-10 1.68933e-09) (9.48187e-10 -8.48584e-10 1.656e-09) (1.46265e-10 -2.40704e-10 3.81564e-10) (-7.58528e-12 4.47157e-12 1.41745e-12) (-6.05385e-10 5.53094e-10 -5.55472e-10) (-2.03071e-09 1.80043e-09 -2.97631e-09) (-1.56374e-09 1.50365e-09 -4.33082e-09) (-2.2171e-10 2.22474e-10 -1.99503e-09) (7.27594e-11 -1.11776e-10 -2.69419e-10) (9.9698e-11 -1.47152e-10 -1.70768e-11) (1.15027e-10 -1.51547e-10 5.38311e-11) (6.94099e-11 -6.51292e-11 4.52272e-11) (5.29838e-11 -2.8547e-11 5.84587e-11) (6.54792e-11 -3.06122e-11 1.54059e-10) (4.95415e-11 -5.89976e-11 2.93422e-10) (1.58709e-11 -9.87713e-11 2.68807e-10) (3.67378e-12 -1.02138e-10 1.46208e-10) (-6.78775e-11 -8.98179e-11 8.3668e-11) (-1.48397e-09 -2.10274e-10 2.09385e-10) (-1.05672e-08 1.3303e-09 -5.85492e-10) (-1.38003e-08 5.89319e-09 -2.98348e-09) (-4.76427e-09 5.12518e-09 -2.24218e-09) (-3.15332e-10 1.1221e-09 -3.28005e-10) (1.27313e-10 3.56911e-11 4.85231e-11) (1.5788e-09 -9.0253e-10 6.53116e-10) (3.4762e-09 -2.33265e-09 1.0144e-09) (1.97607e-09 -1.22494e-09 1.74702e-09) (6.51768e-10 -2.97173e-10 8.90436e-10) (9.53512e-11 -4.288e-11 1.57489e-10) (1.35379e-11 -1.00724e-11 8.15147e-12) (4.93746e-11 -3.275e-11 -1.67814e-11) (1.39852e-10 -6.15984e-11 -4.83222e-11) (8.14156e-11 -9.71512e-12 -2.51931e-11) (1.46325e-12 1.63421e-11 -7.29989e-12) (-2.78223e-10 2.51407e-10 -1.07032e-10) (-9.63763e-10 5.95548e-10 -4.88553e-10) (-6.99502e-10 3.87171e-10 -6.53006e-10) (-9.87561e-11 1.01066e-10 -2.78637e-10) (3.21712e-11 1.80693e-11 -2.92375e-11) (2.45186e-10 9.74349e-12 1.85506e-10) (6.95327e-10 -3.15353e-10 1.22513e-09) (3.97554e-10 -7.99747e-10 1.80847e-09) (-1.08319e-10 -4.27712e-10 8.83056e-10) (-7.00809e-11 1.2152e-11 9.80554e-11) (-1.93182e-10 3.61991e-10 -9.50115e-11) (-6.67889e-10 1.37752e-09 -1.15855e-09) (-7.68028e-10 1.35283e-09 -2.56183e-09) (-1.48717e-10 2.11111e-10 -2.25675e-09) (1.73007e-10 -3.6651e-10 -8.95423e-10) (1.04693e-10 -3.46828e-10 -2.18346e-10) (-1.20448e-11 -1.90498e-10 -2.05464e-11) (-5.59682e-11 -7.42605e-11 1.37364e-11) (-4.51615e-11 -2.28622e-11 2.2863e-11) (-1.69768e-11 -8.98327e-12 3.09642e-11) (8.61902e-12 -1.8565e-11 4.91923e-11) (5.08407e-11 -4.99847e-11 6.20204e-11) (1.4011e-10 -1.1579e-10 9.12076e-11) (1.57807e-10 -1.09318e-10 1.49128e-10) (-6.7146e-11 8.2657e-13 1.56288e-10) (-3.59093e-09 9.77898e-10 7.99022e-10) (-1.27311e-08 4.44314e-09 -9.17937e-10) (-6.56281e-09 3.94526e-09 -2.41337e-09) (-3.10939e-10 6.855e-10 -7.09836e-10) (5.53632e-10 -6.6137e-11 -3.59898e-10) (2.2836e-09 -1.38276e-09 -6.97185e-11) (3.15211e-09 -2.24115e-09 1.30265e-09) (1.65318e-09 -7.25953e-10 2.66926e-09) (1.03268e-09 -3.31074e-10 2.09517e-09) (2.74843e-10 -1.18394e-10 5.18373e-10) (6.95071e-11 -5.57829e-11 5.01626e-11) (8.56305e-11 -8.11514e-11 -3.53708e-11) (9.55769e-11 -7.02121e-11 -9.00907e-11) (3.64737e-11 4.54588e-12 -4.31154e-11) (1.42409e-11 7.6726e-11 -2.51151e-11) (-6.92045e-11 2.76943e-10 -3.31934e-11) (-1.88644e-10 3.45521e-10 -1.54842e-10) (-1.93817e-10 2.22006e-10 -3.77036e-10) (-1.23814e-10 7.16615e-11 -5.56389e-10) (-2.05962e-11 -7.69461e-12 -2.03856e-10) (2.89446e-12 -4.10273e-12 1.65711e-12) (2.65319e-10 -3.00018e-10 6.26967e-10) (9.50934e-10 -1.24342e-09 2.68048e-09) (3.30493e-10 -8.60099e-10 2.2736e-09) (-2.51675e-10 4.51251e-11 5.41072e-10) (-6.68424e-10 8.1093e-10 7.54637e-11) (-1.12453e-09 2.19137e-09 -1.05204e-09) (-7.19391e-10 1.64931e-09 -2.06217e-09) (-1.56634e-10 2.26204e-10 -2.19957e-09) (1.62678e-10 -7.21274e-10 -1.67128e-09) (6.26227e-11 -6.7842e-10 -5.87868e-10) (-6.18933e-11 -3.22413e-10 -5.03517e-11) (-8.87357e-11 -1.67502e-10 7.72678e-11) (-4.643e-11 -5.62319e-11 5.77833e-11) (-5.29974e-12 -5.32687e-12 7.75208e-12) (1.3593e-13 -1.3236e-13 -1.48649e-13) (8.47201e-12 -4.82644e-12 -8.16275e-12) (3.97025e-11 -2.88925e-11 -1.01169e-11) (1.13614e-10 -6.21841e-11 6.01377e-11) (1.11039e-10 1.37951e-11 2.21696e-10) (-3.83518e-10 3.63674e-10 5.18934e-10) (-3.47832e-09 1.52239e-09 7.159e-10) (-4.19432e-09 1.38571e-09 -7.80756e-10) (-8.31176e-10 2.36065e-10 -8.10996e-10) (8.32994e-11 -1.03772e-10 -4.34555e-10) (3.66728e-10 -2.77668e-10 -1.28736e-10) (9.76199e-10 -6.2662e-10 8.14274e-10) (5.18946e-10 -1.37138e-10 3.51157e-10) (7.18805e-10 -2.46039e-10 6.65939e-10) (4.28092e-10 -2.5963e-10 3.86986e-10) (1.20731e-10 -1.6217e-10 8.62635e-11) (2.46065e-12 -7.11104e-11 -9.79459e-12) (-4.37315e-11 -3.61825e-11 -5.02588e-11) (-5.42802e-11 2.1259e-11 -5.88387e-11) (-2.19944e-11 8.03743e-11 -1.30407e-11) (5.75877e-11 2.57408e-10 1.05809e-10) (1.72427e-10 2.91631e-10 1.63238e-10) (1.3623e-10 1.0614e-10 1.05199e-11) (1.76436e-10 3.32431e-11 -1.63207e-10) (2.29749e-10 -5.14982e-11 -4.45681e-10) (1.38259e-10 -9.76784e-11 -2.58006e-10) (1.35831e-10 -1.19544e-10 5.62811e-12) (6.59181e-10 -4.75801e-10 8.75848e-10) (6.37368e-10 -4.2943e-10 2.3358e-09) (-6.19269e-10 2.36754e-10 1.81267e-09) (-2.24524e-09 1.32408e-09 1.07067e-09) (-3.08012e-09 2.63701e-09 -5.19172e-10) (-1.58661e-09 1.7161e-09 -1.60356e-09) (-4.88054e-10 2.81061e-10 -1.66794e-09) (-4.95216e-11 -6.0717e-10 -1.62044e-09) (5.15798e-11 -7.6212e-10 -7.73823e-10) (5.00316e-11 -5.33621e-10 -1.24752e-10) (1.06264e-10 -4.38434e-10 1.51335e-10) (1.39704e-10 -2.50127e-10 2.33188e-10) (7.93878e-11 -4.70696e-11 1.27945e-10) (1.99696e-11 8.11124e-12 3.13982e-11) (7.25767e-13 1.31612e-12 1.39154e-12) (-8.99376e-13 -1.92405e-12 -1.57271e-13) (-2.6852e-12 -2.06149e-11 1.37581e-12) (2.72254e-12 -3.1284e-12 3.34531e-12) (1.39989e-11 7.08154e-11 3.1585e-11) (-2.28082e-10 4.50037e-10 1.02718e-10) (-1.12269e-09 6.60819e-10 3.00635e-11) (-1.26388e-09 2.50704e-10 -2.19393e-10) (-2.84466e-10 -1.05993e-11 -1.55248e-10) (2.39035e-12 -1.02059e-11 -2.35962e-11) (1.2718e-10 -4.12946e-11 1.80322e-11) (4.74611e-10 -1.58967e-10 -3.22675e-10) (5.74364e-10 -3.82618e-10 -2.15723e-10) (2.05802e-10 -3.62577e-10 4.9311e-12) (-1.04163e-10 -3.03545e-10 9.83999e-11) (-4.95784e-10 -2.83113e-10 9.84539e-11) (-6.11314e-10 -4.59533e-11 -8.04153e-11) (-3.01424e-10 1.40986e-10 -1.65052e-10) (-4.27399e-11 1.59893e-10 -8.98018e-11) (1.36522e-10 2.04574e-10 9.26001e-12) (5.35488e-10 2.75631e-10 2.34573e-10) (7.95354e-10 1.19425e-10 2.95927e-10) (4.99624e-10 -4.63712e-11 2.30809e-11) (1.71334e-10 -6.99173e-11 -1.16046e-10) (2.39899e-11 -8.58138e-11 -1.1156e-10) (-2.98143e-11 -1.02318e-10 -1.33975e-11) (-1.64739e-11 -2.03513e-10 3.24158e-10) (2.8303e-10 5.42297e-12 1.76777e-09) (6.73251e-11 8.79559e-10 2.49761e-09) (-9.69992e-10 1.21869e-09 1.37384e-09) (-2.15039e-09 1.76019e-09 2.55562e-10) (-2.02001e-09 1.4827e-09 -9.05451e-10) (-9.39251e-10 3.75408e-10 -1.01003e-09) (-4.10104e-10 -2.98961e-10 -7.3501e-10) (-1.4021e-10 -8.06864e-10 -5.19517e-10) (2.42041e-10 -1.3267e-09 -2.56395e-10) (5.37176e-10 -1.10543e-09 3.36e-11) (3.2661e-10 -3.12876e-10 1.23915e-10) (1.2723e-10 -4.1642e-12 1.22982e-10) (5.63668e-11 7.86e-11 1.5757e-10) (-2.22898e-12 2.69952e-11 6.3735e-11) (-4.86192e-12 -8.68219e-12 6.23715e-12) (-1.53695e-11 -1.08783e-10 -2.07792e-11) (4.23149e-12 -9.8627e-11 -3.04426e-11) (4.18818e-12 1.35718e-12 -2.19423e-12) (8.23513e-11 3.5473e-10 -1.86261e-11) (-1.27763e-10 1.04013e-09 -2.17626e-11) (-5.87507e-10 8.54286e-10 -7.36822e-12) (-5.07548e-10 3.68921e-10 -3.95684e-11) (-7.118e-11 5.38791e-11 -4.80332e-11) (6.94115e-11 5.64476e-12 -1.11702e-10) (8.07105e-10 -3.56799e-10 -8.55494e-10) (5.55177e-10 -5.30939e-10 -4.27676e-10) (6.60345e-11 -4.29282e-10 -2.45457e-11) (-4.17942e-10 -7.33058e-10 1.97243e-10) (-8.40046e-10 -8.34757e-10 2.16859e-10) (-4.08472e-10 -3.47198e-10 2.33692e-11) (-2.75879e-11 -2.27706e-11 -6.37309e-12) (8.67886e-12 1.05803e-11 -2.81881e-12) (1.53584e-10 1.93664e-10 -2.51977e-12) (3.38445e-10 4.20064e-10 1.45387e-11) (3.35759e-10 3.35885e-10 4.56683e-13) (1.54286e-10 1.10567e-10 -2.99523e-11) (1.87324e-11 6.67328e-12 -1.81832e-11) (-2.64881e-11 -2.86223e-11 -2.77879e-11) (-3.3093e-10 -2.6539e-10 1.24506e-11) (-8.19326e-10 -5.45252e-10 6.18197e-10) (-9.35091e-10 -1.80534e-10 2.10037e-09) (-5.42826e-10 1.22848e-09 3.55365e-09) (-5.05361e-10 1.87562e-09 2.2169e-09) (-8.3781e-10 1.38377e-09 5.39987e-10) (-9.51757e-10 8.82289e-10 -1.90204e-10) (-4.01979e-10 1.37223e-10 -2.14617e-10) (-1.16754e-10 -2.18742e-10 -1.36842e-10) (2.56227e-10 -1.52199e-09 -3.46755e-10) (1.11575e-09 -2.72237e-09 -5.68171e-10) (8.04024e-10 -1.28829e-09 -4.03908e-10) (1.28513e-10 -9.01176e-11 -6.00006e-11) (3.47238e-11 4.52261e-11 9.67584e-12) (5.14313e-11 1.62083e-10 1.03901e-10) (2.93117e-11 3.74293e-11 5.28386e-11) (2.7695e-11 -3.03587e-11 5.97802e-12) (8.08462e-11 -2.37624e-10 -7.37574e-11) (4.69731e-12 -2.20654e-10 -5.85563e-11) (-2.0351e-11 -2.43249e-11 4.36119e-12) (-6.4899e-11 9.11209e-11 3.26949e-11) (-2.22809e-10 9.37346e-10 2.12206e-11) (-3.65817e-10 1.8618e-09 -2.41185e-10) (-3.29874e-10 1.27495e-09 -3.92934e-10) (-4.16325e-11 3.85127e-10 -3.32071e-10) (2.70523e-10 6.2631e-11 -5.08848e-10) (4.59744e-10 -2.74663e-10 -7.20418e-10) (2.92841e-10 -4.16487e-10 -4.44309e-10) (4.53262e-11 -3.00116e-10 -1.34651e-10) (-1.59764e-10 -3.43522e-10 -1.53057e-11) (-6.74843e-10 -6.32286e-10 9.72594e-11) (-1.1271e-09 -7.61367e-10 2.10571e-10) (-5.99136e-10 -3.70256e-10 2.01908e-10) (-5.32556e-11 -4.08974e-11 6.98926e-11) (6.62035e-11 2.42649e-11 8.17665e-11) (3.22215e-10 1.80417e-10 1.58204e-10) (3.54252e-10 2.48963e-10 6.29662e-11) (1.98153e-10 1.69234e-10 -6.58834e-11) (1.13923e-10 1.03543e-10 -1.51547e-10) (4.73368e-11 4.2217e-11 -1.89885e-10) (-4.03843e-11 -7.34264e-12 -1.05569e-10) (-2.26872e-10 -3.59919e-11 -4.04019e-12) (-1.06398e-09 2.08651e-11 8.68005e-10) (-1.9241e-09 8.60922e-10 3.36637e-09) (-1.51823e-09 2.11924e-09 4.26325e-09) (-6.79209e-10 1.62918e-09 1.86597e-09) (-1.32625e-10 3.70417e-10 2.45093e-10) (1.43542e-12 3.1781e-13 6.15969e-13) (3.17763e-10 -4.22102e-10 -1.06662e-10) (1.2482e-09 -1.86464e-09 -6.63335e-10) (9.65283e-10 -1.78573e-09 -1.00712e-09) (1.09468e-10 -5.608e-10 -5.51864e-10) (-1.00141e-10 -5.72352e-11 -1.81115e-10) (-1.05474e-10 5.7821e-11 -6.67163e-11) (-2.67543e-11 5.03409e-11 -2.13216e-12) (1.65612e-11 1.55233e-11 8.38851e-12) (1.03591e-10 -2.60901e-11 1.28475e-11) (1.46189e-10 -1.07728e-10 -8.25128e-12) (3.24604e-11 -5.24217e-11 5.61241e-13) (-9.91251e-12 -8.1523e-12 1.25442e-11) (-1.03492e-10 6.31229e-11 9.57079e-11) (-1.88995e-10 3.43147e-10 1.4946e-10) (-1.42585e-10 8.52673e-10 -2.60654e-11) (4.35198e-11 1.13529e-09 -4.1289e-10) (2.05586e-10 6.55223e-10 -5.88618e-10) (3.34388e-10 1.44514e-10 -6.52608e-10) (3.77742e-10 -6.96571e-12 -6.90151e-10) (2.0519e-10 -9.64266e-11 -5.23534e-10) (-3.14801e-12 -8.5466e-11 -2.1253e-10) (-2.27674e-10 -1.59496e-10 -1.33969e-10) (-1.35855e-09 -6.91084e-10 -2.88057e-11) (-3.0563e-09 -1.57344e-09 4.52338e-10) (-2.47468e-09 -1.44993e-09 6.46104e-10) (-5.37072e-10 -3.97693e-10 2.61589e-10) (5.00755e-12 -1.40484e-11 3.21073e-11) (3.29493e-10 1.14789e-10 1.34783e-10) (9.17287e-10 4.25489e-10 2.2845e-10) (7.02196e-10 3.776e-10 9.22856e-11) (2.01488e-10 1.28509e-10 -4.02236e-11) (3.68411e-11 3.7676e-11 -6.43042e-11) (-2.201e-11 4.26202e-11 -1.25972e-10) (-1.49119e-10 1.066e-10 -1.81723e-10) (-4.21146e-10 2.65277e-10 -1.00873e-10) (-7.95293e-10 5.23944e-10 4.2321e-10) (-8.77786e-10 8.15328e-10 1.54886e-09) (-2.84085e-10 7.31962e-10 1.97613e-09) (1.75467e-10 1.95148e-10 9.25335e-10) (1.95483e-10 -8.66166e-11 2.23609e-10) (3.09365e-10 -3.03838e-10 1.33658e-11) (3.74159e-10 -4.4686e-10 -2.65223e-10) (2.29594e-10 -2.68303e-10 -4.06401e-10) (6.33482e-11 -7.41364e-11 -3.56557e-10) (-4.23363e-11 4.64581e-12 -2.07496e-10) (-7.5006e-11 4.44338e-12 -8.8738e-11) (-6.2267e-11 -1.4423e-11 -2.8741e-11) (-2.85708e-11 -2.52123e-11 -3.07843e-12) (-6.88411e-12 -3.03568e-11 4.53981e-12) (4.86827e-12 -2.06621e-11 4.78729e-12) (2.21555e-12 -2.49453e-12 1.54995e-12) (5.65234e-13 3.71218e-12 3.87619e-12) (-1.85524e-11 5.27326e-11 4.32062e-11) (-6.57934e-11 1.4847e-10 1.22111e-10) (-3.59064e-11 1.63751e-10 9.90301e-11) (3.604e-11 1.29471e-10 4.65112e-12) (1.55818e-10 1.63166e-10 -1.49556e-10) (3.32323e-10 1.37733e-10 -4.71204e-10) (-4.4726e-11 -2.48284e-11 -1.87347e-10) (2.29359e-10 -8.20043e-11 -9.22273e-10) (4.64629e-10 2.46477e-11 -1.11792e-09) (7.90371e-11 1.07216e-11 -2.86354e-10) (-1.04182e-10 -6.87874e-11 -2.61266e-11) (-1.63296e-09 -1.18478e-09 4.89577e-10) (-3.92115e-09 -2.99321e-09 1.27972e-09) (-2.68045e-09 -1.94514e-09 6.18302e-10) (-3.96799e-10 -2.37328e-10 1.58616e-11) (1.82942e-12 3.39066e-12 -2.4847e-12) (2.92934e-10 1.87513e-10 -7.43218e-12) (8.76835e-10 4.30359e-10 1.21613e-10) (7.94351e-10 3.40546e-10 1.50438e-10) (2.50194e-10 1.21024e-10 2.3664e-11) (2.34996e-11 2.90296e-11 -1.61382e-11) (-2.6421e-11 6.07518e-11 -5.52349e-11) (-1.38207e-10 1.90318e-10 -1.20514e-10) (-2.45381e-10 3.17576e-10 -6.99901e-11) (-2.54868e-10 3.11122e-10 1.22955e-10) (-1.74528e-10 2.38423e-10 3.66415e-10) (1.15062e-11 1.23878e-10 5.6675e-10) (1.61869e-10 -6.957e-12 4.16825e-10) (1.06322e-10 -3.7003e-11 1.04424e-10) (4.85035e-11 -2.37917e-11 -1.21666e-11) (7.67245e-11 -4.04959e-11 -1.35147e-10) (1.0622e-10 -4.43114e-11 -3.1731e-10) (9.02356e-11 -3.35043e-11 -2.9125e-10) (3.42193e-11 -2.3511e-11 -1.03279e-10) (2.05956e-12 -7.28606e-12 -7.31866e-12) (-9.65178e-12 -1.40769e-11 1.11613e-11) (-7.90976e-11 -5.07818e-11 7.69727e-11) (-1.52013e-10 -6.98053e-11 1.0086e-10) (-9.08727e-11 -3.9713e-11 3.45385e-11) (-8.86014e-12 -5.42373e-12 4.95069e-13) (2.20573e-12 2.72911e-13 -3.94077e-13) (4.093e-11 2.50857e-11 1.15105e-11) (6.0372e-11 8.7096e-11 6.84105e-11) (-1.02162e-11 1.21425e-10 1.26802e-10) (-8.29809e-11 7.60994e-11 8.74295e-11) (-5.37909e-11 1.24084e-11 -5.58669e-12) (6.93656e-10 9.92639e-15 2.28752e-11) (7.45092e-10 1.40758e-12 7.19419e-11) (8.40851e-10 1.92803e-12 9.62423e-11) (1.00459e-09 1.73245e-12 1.0114e-10) (1.22511e-09 -2.00412e-13 9.92854e-11) (1.45748e-09 -3.8374e-13 1.01065e-10) (1.60752e-09 -4.45331e-13 8.57205e-11) (1.54427e-09 1.43471e-12 3.99806e-12) (1.2496e-09 3.77404e-12 -1.35555e-10) (8.26e-10 3.46717e-12 -2.09319e-10) (4.12991e-10 2.50606e-12 -1.21697e-10) (1.47473e-10 1.65148e-12 -4.9114e-12) (5.96431e-11 1.22654e-12 3.84126e-11) (2.9355e-11 7.14109e-13 3.64657e-11) (1.26233e-11 2.53017e-13 5.48095e-12) (1.38377e-11 2.80914e-13 -6.71108e-12) (1.01367e-11 2.43348e-13 -8.57192e-12) (2.11553e-12 1.73046e-14 -8.98736e-13) (1.11927e-12 -1.71714e-14 3.65299e-13) (2.27447e-12 -1.02928e-13 1.197e-12) (2.85065e-12 -1.58115e-13 1.50248e-12) (2.22946e-12 -1.31178e-13 1.26342e-12) (2.00832e-12 -1.2143e-13 1.09872e-12) (3.58596e-12 -1.47051e-13 1.36424e-12) (7.82098e-12 -3.01144e-14 1.38028e-12) (1.12597e-11 2.47543e-13 -2.54906e-13) (1.18485e-11 3.50907e-13 -2.79034e-12) (1.31591e-11 2.64521e-13 -4.43001e-12) (1.89214e-11 1.5316e-13 -4.76374e-12) (3.46647e-11 -1.45352e-13 -4.64311e-12) (6.91312e-11 -7.11258e-13 -7.10977e-12) (1.34656e-10 -1.30546e-12 -1.85182e-11) (2.35606e-10 -1.28554e-12 -4.75204e-11) (3.50522e-10 -5.65114e-13 -9.75143e-11) (4.45421e-10 9.9041e-13 -1.52772e-10) (5.08483e-10 1.96075e-12 -1.87798e-10) (5.53624e-10 1.46179e-12 -1.90695e-10) (5.93168e-10 -8.50377e-13 -1.64078e-10) (6.24075e-10 -2.94584e-12 -1.11654e-10) (6.54542e-10 -2.3985e-12 -4.36944e-11) (5.76974e-09 1.10971e-13 -1.3422e-10) (6.21061e-09 -8.34754e-12 2.46558e-10) (7.48421e-09 -4.62682e-11 5.278e-10) (9.61451e-09 -9.18412e-11 6.57456e-10) (1.23555e-08 -1.4298e-10 6.22496e-10) (1.52623e-08 -1.74951e-10 5.30583e-10) (1.74982e-08 -2.00845e-10 4.41163e-10) (1.80062e-08 -1.83317e-10 6.79756e-11) (1.61598e-08 -9.01157e-11 -8.81685e-10) (1.20779e-08 8.45499e-12 -1.78786e-09) (7.21856e-09 6.03006e-11 -1.48288e-09) (3.52585e-09 4.51175e-11 -3.10508e-10) (1.80093e-09 9.15266e-12 4.39428e-10) (1.02103e-09 -2.08281e-11 5.5743e-10) (4.98337e-10 -1.47489e-11 1.73504e-10) (3.56073e-10 1.13019e-12 -7.27826e-11) (3.1056e-10 1.16841e-11 -1.5601e-10) (1.5496e-10 5.07986e-12 -4.70044e-11) (9.08769e-11 1.96711e-13 7.0359e-12) (8.41761e-11 -3.03655e-12 2.50127e-11) (6.22914e-11 -3.46339e-12 2.04941e-11) (3.84368e-11 -1.97786e-12 9.20475e-12) (2.84124e-11 -9.55834e-13 2.59569e-12) (3.41557e-11 5.41995e-13 -2.82067e-12) (6.56902e-11 5.15421e-12 -2.04788e-11) (1.39185e-10 1.42691e-11 -7.52095e-11) (2.43872e-10 2.02324e-11 -1.5765e-10) (3.84404e-10 1.64932e-11 -2.05786e-10) (5.96217e-10 8.14114e-12 -1.9185e-10) (9.27451e-10 -5.53605e-12 -1.3942e-10) (1.38534e-09 -2.29158e-11 -9.73046e-11) (1.9659e-09 -3.91157e-11 -1.27236e-10) (2.67885e-09 -4.42118e-11 -2.86004e-10) (3.51438e-09 -4.35842e-11 -6.04899e-10) (4.36914e-09 -4.20687e-11 -1.01059e-09) (5.11174e-09 -5.33745e-11 -1.32562e-09) (5.70438e-09 -7.78269e-11 -1.42026e-09) (6.10565e-09 -1.02796e-10 -1.29687e-09) (6.15289e-09 -9.42452e-11 -9.92883e-10) (5.89887e-09 -4.33437e-11 -5.7136e-10) (2.03163e-09 1.64736e-11 -1.39969e-10) (2.18565e-09 8.70024e-12 6.77264e-12) (2.80375e-09 -3.88404e-11 1.60497e-10) (3.92113e-09 -1.06355e-10 2.9247e-10) (5.43745e-09 -1.77105e-10 3.43151e-10) (7.14357e-09 -2.33417e-10 3.18771e-10) (8.60306e-09 -2.81697e-10 2.95709e-10) (9.0979e-09 -2.87278e-10 2.08669e-10) (8.26621e-09 -1.94675e-10 -1.62851e-10) (6.28769e-09 -5.70326e-11 -7.1872e-10) (3.88206e-09 4.71018e-11 -8.54595e-10) (1.97625e-09 5.80002e-11 -3.83621e-10) (1.06312e-09 1.98008e-11 1.06612e-10) (7.45177e-10 -2.71437e-11 3.8145e-10) (3.67582e-10 -3.3439e-11 2.41275e-10) (1.38542e-10 -5.1933e-12 1.37857e-11) (1.693e-10 1.09577e-11 -8.92272e-11) (1.70773e-10 1.45041e-11 -8.02525e-11) (1.34134e-10 6.66389e-12 -1.04927e-11) (1.29947e-10 1.10441e-13 2.94929e-11) (9.84509e-11 -4.37645e-12 3.33389e-11) (6.31754e-11 -2.76713e-12 1.52593e-11) (5.08572e-11 -1.15596e-12 9.37145e-13) (5.60582e-11 2.50187e-12 -9.9286e-12) (8.60773e-11 1.224e-11 -3.32563e-11) (1.7851e-10 3.23959e-11 -1.10393e-10) (3.25594e-10 4.86241e-11 -2.45485e-10) (5.50753e-10 4.17997e-11 -3.47757e-10) (8.49505e-10 2.39586e-11 -3.26006e-10) (1.20383e-09 -2.37948e-12 -2.0758e-10) (1.54206e-09 -3.29461e-11 -7.3691e-11) (1.78238e-09 -5.83083e-11 -7.70208e-13) (1.93073e-09 -6.90979e-11 -2.70886e-11) (2.06484e-09 -7.00747e-11 -1.51928e-10) (2.24912e-09 -7.25911e-11 -3.32066e-10) (2.44024e-09 -8.57249e-11 -4.8481e-10) (2.5652e-09 -1.07315e-10 -5.35261e-10) (2.57816e-09 -1.21568e-10 -4.88771e-10) (2.43916e-09 -9.65442e-11 -3.95108e-10) (2.19107e-09 -3.24006e-11 -2.76363e-10) (7.09183e-11 7.60277e-12 -1.40392e-11) (8.26153e-11 6.18889e-12 -1.97807e-12) (1.52514e-10 -3.75073e-12 2.02852e-11) (3.18881e-10 -2.60623e-11 6.01673e-11) (6.11859e-10 -5.71904e-11 1.04202e-10) (1.03421e-09 -8.81015e-11 1.36133e-10) (1.46814e-09 -1.14199e-10 1.64263e-10) (1.63965e-09 -1.16995e-10 1.71251e-10) (1.35598e-09 -7.07449e-11 7.99889e-11) (7.87573e-10 -1.05656e-11 -7.98915e-11) (3.10779e-10 1.98753e-11 -1.35472e-10) (6.91277e-11 1.43835e-11 -6.02588e-11) (3.04297e-12 1.08475e-12 -8.92809e-13) (-9.76886e-13 -2.32939e-12 4.47998e-11) (-5.1667e-11 -2.06585e-11 1.51915e-10) (-4.80875e-11 -6.37365e-12 4.09222e-11) (-1.98257e-11 2.7158e-12 -1.25905e-11) (-7.53231e-12 5.81138e-12 -2.51104e-11) (7.18274e-13 8.44198e-13 -2.05138e-12) (1.90705e-12 3.2445e-13 1.71814e-12) (4.12227e-12 -9.29017e-13 8.18067e-12) (2.1528e-12 -6.24094e-13 4.11945e-12) (1.35384e-12 -1.49511e-13 4.6379e-13) (5.13734e-12 6.8596e-13 -1.99664e-12) (1.80642e-11 6.14098e-12 -1.2291e-11) (5.51976e-11 2.16704e-11 -5.21329e-11) (1.15324e-10 3.47343e-11 -1.30901e-10) (1.87879e-10 2.47396e-11 -1.81134e-10) (2.77524e-10 8.55253e-12 -1.50529e-10) (3.79153e-10 -9.09253e-12 -7.02955e-11) (4.76993e-10 -2.82489e-11 1.694e-11) (5.04336e-10 -4.04766e-11 7.09963e-11) (4.51091e-10 -4.05151e-11 6.90351e-11) (3.67729e-10 -3.33792e-11 2.80217e-11) (3.02062e-10 -2.73815e-11 -1.8365e-11) (2.60224e-10 -2.57606e-11 -4.94426e-11) (2.18964e-10 -2.62214e-11 -5.4894e-11) (1.70719e-10 -2.38742e-11 -4.27765e-11) (1.24864e-10 -1.38969e-11 -3.09474e-11) (8.8914e-11 -1.94979e-13 -2.29154e-11) (6.47843e-13 2.8214e-12 -5.06708e-12) (8.748e-13 1.42964e-12 -2.10019e-12) (1.70069e-12 8.40406e-14 -2.11577e-13) (1.32327e-11 -3.58465e-12 4.43731e-12) (5.73369e-11 -1.57508e-11 2.04146e-11) (1.85501e-10 -3.85912e-11 5.28028e-11) (4.50451e-10 -7.17565e-11 1.13393e-10) (7.28415e-10 -9.39768e-11 1.88402e-10) (7.05074e-10 -6.39249e-11 1.73856e-10) (3.54625e-10 -7.73009e-12 3.77389e-11) (7.51658e-11 1.15052e-11 -3.14011e-11) (7.56191e-13 1.30859e-11 -3.87685e-11) (-4.51362e-11 1.26066e-11 -2.82427e-11) (-1.43422e-10 9.19214e-13 5.30127e-11) (-5.13533e-10 -5.67499e-11 3.92858e-10) (-8.83551e-10 -6.88766e-11 4.83842e-10) (-6.14597e-10 6.31251e-12 6.11696e-11) (-2.37216e-10 2.85217e-11 -9.64757e-11) (-4.86313e-11 1.15376e-11 -3.34226e-11) (-6.33895e-12 1.42044e-12 3.59672e-13) (-1.30467e-11 -1.26116e-12 1.4403e-11) (-2.0108e-11 -2.91455e-12 2.11114e-11) (-6.36489e-12 -8.86573e-13 4.16532e-12) (-1.93605e-13 7.4028e-14 -1.33242e-13) (2.1185e-12 2.86334e-12 -4.6739e-12) (1.67119e-11 1.53587e-11 -2.88242e-11) (4.29428e-11 2.55378e-11 -7.72733e-11) (6.20047e-11 1.48437e-11 -1.00004e-10) (9.84565e-11 1.73923e-12 -8.22748e-11) (1.66503e-10 -9.84264e-12 -4.53242e-11) (2.56518e-10 -2.59208e-11 8.60132e-12) (2.92982e-10 -3.82179e-11 5.64901e-11) (2.45201e-10 -3.68618e-11 6.42989e-11) (1.56982e-10 -2.59485e-11 3.7175e-11) (8.39201e-11 -1.61183e-11 8.59388e-12) (4.34153e-11 -1.04321e-11 -4.39243e-12) (2.03692e-11 -7.14901e-12 -5.66985e-12) (6.61719e-12 -3.93457e-12 -2.94652e-12) (1.48621e-12 -1.22101e-12 -1.57921e-12) (6.59253e-13 3.06537e-13 -2.53521e-12) (-4.25698e-12 8.62533e-12 -1.55652e-11) (4.81101e-13 1.01786e-11 -1.96436e-11) (1.62144e-12 1.49261e-12 -6.10849e-12) (6.96893e-13 -5.45039e-13 -7.54362e-13) (2.04379e-12 -2.40504e-12 4.13807e-13) (1.65521e-11 -1.06518e-11 6.22701e-12) (1.20488e-10 -4.13977e-11 4.22286e-11) (4.58004e-10 -1.01169e-10 1.66624e-10) (8.39193e-10 -1.20235e-10 3.12479e-10) (7.55464e-10 -4.00737e-11 2.26491e-10) (3.12062e-10 2.99454e-11 1.5466e-11) (4.93542e-11 2.40449e-11 -3.71227e-11) (-1.71334e-11 1.74204e-11 -3.7958e-11) (-1.20115e-10 1.06824e-11 -1.64377e-11) (-5.47896e-10 -4.65287e-11 2.41153e-10) (-1.42388e-09 -1.34896e-10 7.81308e-10) (-1.49069e-09 -5.76014e-11 5.05155e-10) (-5.96411e-10 2.57868e-11 -1.43982e-11) (-1.16897e-10 2.20083e-11 -5.9208e-11) (-1.22336e-11 4.22002e-12 -6.53914e-12) (-1.15363e-11 4.13856e-13 8.3777e-12) (-4.88491e-11 -5.80757e-12 4.6292e-11) (-4.21017e-11 -6.34325e-12 3.05674e-11) (-4.61579e-12 -5.01603e-14 1.5009e-12) (7.97202e-13 2.05544e-12 -2.61491e-12) (1.86856e-11 1.81461e-11 -2.81881e-11) (3.93783e-11 2.64269e-11 -6.24843e-11) (3.95824e-11 1.16345e-11 -5.79489e-11) (4.98037e-11 1.62477e-13 -3.69952e-11) (1.42376e-10 -1.15715e-11 -2.65056e-11) (3.5138e-10 -3.56389e-11 3.63022e-12) (5.07679e-10 -5.69739e-11 3.84032e-11) (4.54786e-10 -5.59942e-11 5.23545e-11) (2.71818e-10 -3.98128e-11 3.82083e-11) (1.17345e-10 -2.42623e-11 1.50366e-11) (4.00653e-11 -1.31834e-11 3.34835e-12) (9.4239e-12 -6.22311e-12 1.06759e-12) (5.04539e-13 -2.87383e-12 6.52446e-13) (-2.64069e-12 -2.58477e-12 -2.11222e-14) (-3.79359e-12 1.21741e-13 -3.12995e-12) (-3.11564e-11 1.64124e-11 -2.64154e-11) (6.34104e-13 2.51937e-11 -4.34169e-11) (1.24523e-11 1.22161e-11 -3.47567e-11) (2.20634e-12 -3.49723e-13 -8.89092e-12) (-1.3786e-12 -2.19455e-12 -1.93559e-12) (-2.00261e-12 -4.6331e-12 2.90724e-13) (9.29296e-12 -1.3553e-11 8.45963e-12) (1.567e-10 -7.07057e-11 8.7101e-11) (5.85658e-10 -1.44441e-10 2.87639e-10) (8.38943e-10 -9.55381e-11 3.38697e-10) (6.41323e-10 3.08635e-11 1.35291e-10) (2.83528e-10 7.66809e-11 -3.72907e-11) (3.77336e-11 3.38586e-11 -4.47687e-11) (-5.27537e-11 1.92338e-11 -3.68384e-11) (-5.49283e-10 -8.8052e-12 5.96398e-11) (-1.71357e-09 -1.39631e-10 6.67991e-10) (-2.05214e-09 -1.3651e-10 8.82848e-10) (-9.62623e-10 -8.74315e-12 2.44154e-10) (-1.73995e-10 2.16711e-11 -2.61623e-11) (-1.73104e-11 7.00576e-12 -1.20466e-11) (-5.61398e-12 1.35049e-12 1.69488e-12) (-6.25492e-11 -6.11642e-12 5.36273e-11) (-1.37791e-10 -2.24693e-11 1.03791e-10) (-5.35696e-11 -6.84215e-12 3.06184e-11) (-5.66968e-13 6.69005e-13 -3.03914e-13) (2.75845e-11 2.21521e-11 -3.17706e-11) (7.08607e-11 3.75188e-11 -8.40363e-11) (4.5399e-11 9.94214e-12 -5.03739e-11) (3.44016e-11 -3.71952e-12 -1.36007e-11) (1.35665e-10 -2.20179e-11 9.66083e-12) (4.79445e-10 -6.28092e-11 4.29319e-11) (8.57376e-10 -8.86987e-11 7.35624e-12) (8.61944e-10 -6.48896e-11 -4.41331e-11) (5.2779e-10 -4.0389e-11 -3.84448e-11) (2.04189e-10 -2.64903e-11 -1.15527e-11) (4.99504e-11 -1.51482e-11 2.08574e-12) (6.12459e-12 -6.73309e-12 3.82871e-12) (-9.25305e-12 -1.21804e-11 9.38505e-12) (-7.52957e-11 -3.0926e-11 2.0716e-11) (-9.4178e-11 -8.22072e-12 -6.03684e-12) (-2.90808e-10 4.28111e-11 -7.03565e-11) (-2.23023e-11 3.21537e-11 -4.90402e-11) (3.23652e-11 3.06991e-11 -6.06523e-11) (1.75826e-11 6.87679e-12 -2.81552e-11) (-9.7791e-13 -1.35553e-12 -4.03963e-12) (-9.01346e-12 -8.46899e-12 -1.44534e-12) (-2.18224e-12 -1.5998e-11 7.04561e-12) (8.05971e-11 -6.76008e-11 6.15811e-11) (4.30913e-10 -1.64571e-10 2.37133e-10) (6.477e-10 -1.29433e-10 2.90723e-10) (4.86405e-10 -3.07841e-12 1.28355e-10) (3.18755e-10 7.67739e-11 -1.46601e-11) (1.36303e-10 7.87209e-11 -6.76961e-11) (-9.86854e-12 2.83035e-11 -3.35289e-11) (-4.51346e-10 5.30666e-11 -5.23541e-11) (-1.88148e-09 -7.97639e-11 3.14206e-10) (-2.08827e-09 -1.79026e-10 6.5652e-10) (-8.65824e-10 -4.28285e-11 3.22204e-10) (-1.24228e-10 1.53845e-11 3.14824e-11) (-5.26178e-12 3.71288e-12 -1.09086e-12) (-1.1121e-12 9.6152e-13 6.20547e-13) (-4.90806e-11 -4.22646e-12 4.26738e-11) (-2.67338e-10 -4.65862e-11 1.96366e-10) (-3.29068e-10 -5.71427e-11 1.94117e-10) (-5.59812e-11 -1.22361e-15 2.19993e-11) (6.27462e-12 9.37878e-12 -1.12746e-11) (1.13684e-10 5.29934e-11 -1.20246e-10) (8.38449e-11 1.40343e-11 -8.25467e-11) (3.78864e-11 -9.62278e-12 -1.15618e-11) (1.69937e-10 -5.20175e-11 3.57908e-11) (7.20303e-10 -1.40732e-10 9.06954e-11) (1.44365e-09 -1.42904e-10 -6.39692e-11) (1.47779e-09 -3.75505e-11 -2.75625e-10) (8.95057e-10 1.02215e-11 -2.44661e-10) (3.35513e-10 -2.15336e-12 -9.44995e-11) (7.16264e-11 -1.22878e-11 -9.90284e-12) (6.36747e-12 -7.31645e-12 4.77634e-12) (-3.63173e-11 -2.98161e-11 2.92684e-11) (-3.89284e-10 -1.15849e-10 1.06999e-10) (-7.65401e-10 -8.18889e-11 4.35316e-11) (-1.36877e-09 4.61251e-11 -4.64348e-11) (-9.98996e-11 4.22282e-11 -5.93065e-11) (2.64824e-11 3.50834e-11 -5.67196e-11) (4.29701e-11 2.31428e-11 -4.60228e-11) (2.57381e-12 5.70431e-13 -4.83833e-12) (-1.26423e-12 -3.50136e-12 -4.43905e-13) (8.61066e-12 -2.77865e-11 1.07159e-11) (1.53042e-10 -1.24713e-10 8.27667e-11) (5.2299e-10 -2.30876e-10 2.28724e-10) (5.98116e-10 -1.5325e-10 2.22761e-10) (3.12673e-10 -1.68155e-11 6.97229e-11) (1.42637e-10 3.82996e-11 -1.7135e-11) (8.99659e-11 6.85794e-11 -5.71601e-11) (4.97554e-12 5.49998e-11 -4.6683e-11) (-2.37849e-10 9.11113e-11 -6.59267e-11) (-1.46818e-09 4.50994e-11 3.3971e-13) (-1.97923e-09 -1.67252e-10 1.56588e-10) (-7.23693e-10 -6.07362e-11 1.18488e-10) (-5.26329e-11 9.22239e-12 2.49898e-11) (4.12074e-12 7.17089e-12 8.5104e-12) (1.5547e-11 8.99845e-12 1.81456e-11) (-1.08976e-11 -9.01752e-13 3.96825e-11) (-2.50354e-10 -5.6685e-11 2.2359e-10) (-8.09826e-10 -1.63099e-10 4.84527e-10) (-7.61897e-10 -7.9507e-11 3.27683e-10) (-1.02914e-10 1.71104e-11 7.49141e-12) (6.22814e-12 2.01149e-11 -4.00178e-11) (4.40993e-11 1.19062e-11 -6.44147e-11) (4.04799e-11 -1.55291e-11 -1.25866e-11) (2.87993e-10 -1.29052e-10 5.53741e-11) (1.25878e-09 -3.53663e-10 9.9441e-11) (2.4768e-09 -2.71802e-10 -2.30182e-10) (2.51488e-09 9.36875e-11 -6.70124e-10) (1.49121e-09 1.9376e-10 -6.3396e-10) (5.45063e-10 7.99431e-11 -2.69076e-10) (1.11965e-10 6.53769e-13 -3.86595e-11) (8.78029e-12 -6.10202e-12 3.59041e-12) (-4.95278e-11 -3.42888e-11 3.71767e-11) (-9.20528e-10 -2.10758e-10 2.34317e-10) (-2.61192e-09 -2.60518e-10 2.9047e-10) (-3.52879e-09 -4.64959e-11 3.74367e-10) (-3.19605e-10 4.12347e-11 -3.15979e-11) (7.4927e-12 2.02612e-11 -2.99145e-11) (6.56578e-11 3.9407e-11 -6.22642e-11) (1.93582e-11 6.12645e-12 -1.47793e-11) (7.63681e-12 -6.22414e-12 -2.89271e-13) (7.64652e-11 -7.73677e-11 3.06235e-11) (3.7466e-10 -2.5795e-10 1.28594e-10) (7.40068e-10 -3.42349e-10 2.01698e-10) (6.50839e-10 -1.86544e-10 1.31879e-10) (2.67439e-10 -2.00878e-11 1.89342e-11) (6.87153e-11 2.30151e-11 -2.11885e-11) (3.1486e-11 4.75025e-11 -4.37273e-11) (-2.69368e-12 7.95489e-11 -5.8791e-11) (-1.08128e-10 1.00806e-10 -5.06447e-11) (-6.49826e-10 1.22735e-10 -6.97103e-11) (-1.47885e-09 -7.14257e-11 -1.88046e-10) (-8.90231e-10 -8.44814e-11 -1.75528e-10) (-5.7138e-11 6.71573e-12 -8.12385e-12) (2.67171e-11 1.72103e-11 2.25244e-11) (2.36812e-10 5.86896e-11 1.8388e-10) (1.49623e-10 1.12172e-11 2.11236e-10) (-7.18261e-11 -4.07356e-11 2.012e-10) (-8.3259e-10 -2.07716e-10 6.00687e-10) (-2.22164e-09 -2.63885e-10 1.04686e-09) (-1.83331e-09 1.97352e-11 5.41656e-10) (-3.40301e-10 5.20928e-11 -1.99618e-11) (-6.47408e-12 1.50805e-12 -1.33831e-11) (7.60471e-11 -3.78675e-11 -1.5219e-11) (7.82209e-10 -3.57025e-10 5.01183e-11) (2.01735e-09 -7.01046e-10 -9.14201e-12) (2.78295e-09 -4.61073e-10 -3.82448e-10) (2.94345e-09 1.72762e-10 -8.08821e-10) (2.17829e-09 5.46283e-10 -9.65788e-10) (9.57992e-10 3.12505e-10 -5.7285e-10) (2.14277e-10 4.58618e-11 -1.28545e-10) (1.11007e-11 -2.66237e-12 -2.95096e-12) (-4.48003e-11 -1.91348e-11 1.91126e-11) (-1.5072e-09 -2.04704e-10 2.95431e-10) (-5.34668e-09 -3.86409e-10 7.74132e-10) (-5.14796e-09 -2.22874e-10 1.12631e-09) (-7.60834e-10 -3.91927e-11 1.81613e-10) (-3.88807e-12 2.41567e-12 -2.48743e-12) (4.37687e-11 2.67579e-11 -4.19459e-11) (5.58116e-11 1.58255e-11 -3.22515e-11) (5.94147e-11 -1.77619e-11 -1.68733e-12) (2.35097e-10 -1.522e-10 5.68916e-11) (6.91545e-10 -4.26088e-10 1.16528e-10) (1.06961e-09 -5.19519e-10 5.86629e-11) (8.44299e-10 -2.7046e-10 -2.5174e-11) (3.16508e-10 -2.81742e-11 -4.25744e-11) (4.86884e-11 2.17391e-11 -2.44515e-11) (-5.01466e-13 4.12034e-11 -3.12733e-11) (-4.05577e-11 9.28817e-11 -5.06527e-11) (-6.3432e-11 1.01456e-10 -2.97743e-11) (-1.2173e-10 7.12198e-11 -2.09161e-11) (-4.38112e-10 2.13124e-11 -1.41918e-10) (-7.77042e-10 -5.30453e-11 -4.26799e-10) (-2.56129e-10 2.03943e-11 -2.09743e-10) (2.70235e-12 5.0085e-12 -2.66909e-12) (3.23107e-10 6.24967e-11 2.09417e-10) (8.67292e-10 3.88657e-11 7.84234e-10) (3.00196e-10 -5.43348e-11 5.53877e-10) (-3.30756e-10 -1.29067e-10 4.77769e-10) (-2.72036e-09 -3.19916e-10 1.45712e-09) (-4.26153e-09 -4.43839e-11 1.75504e-09) (-1.5246e-09 4.0999e-11 4.03268e-10) (-3.47923e-11 -1.01345e-11 -1.00256e-11) (1.96363e-10 -1.18599e-10 -8.59019e-11) (1.11378e-09 -5.3667e-10 -1.38885e-10) (1.58911e-09 -6.92016e-10 -2.48886e-11) (1.58495e-09 -4.3726e-10 -1.33987e-10) (1.78103e-09 -3.24894e-13 -4.68592e-10) (2.01843e-09 5.6083e-10 -8.47904e-10) (1.39116e-09 6.45724e-10 -7.9233e-10) (4.36075e-10 2.04313e-10 -3.02399e-10) (2.73752e-11 1.04127e-11 -2.67334e-11) (-6.45621e-11 -1.02312e-12 -5.3562e-12) (-2.00139e-09 -3.34447e-11 1.892e-10) (-6.74981e-09 -1.88746e-10 1.02756e-09) (-2.32553e-09 -3.06636e-10 7.80457e-10) (-5.30172e-10 -1.44423e-10 2.99518e-10) (-6.36986e-11 -7.85643e-12 3.96974e-11) (-3.02329e-12 3.27394e-12 4.19809e-13) (5.79085e-12 4.16587e-12 -1.91394e-12) (7.94086e-11 -1.85581e-11 1.66845e-12) (4.63561e-10 -2.42003e-10 1.71278e-11) (1.23424e-09 -6.84757e-10 -8.97483e-11) (1.75015e-09 -8.37989e-10 -3.21294e-10) (1.2978e-09 -4.51793e-10 -3.33407e-10) (4.21056e-10 -4.70982e-11 -1.40067e-10) (3.59165e-11 2.50211e-11 -2.58913e-11) (-4.37813e-11 7.19922e-11 -2.32306e-11) (-1.93109e-10 1.88021e-10 -2.02652e-12) (-1.06572e-10 1.28658e-10 3.44599e-11) (-1.12718e-11 2.75982e-11 7.96399e-12) (-9.81746e-12 6.12429e-12 -1.69042e-11) (-2.28598e-10 -2.32704e-12 -3.6624e-10) (-5.02466e-10 8.33046e-11 -8.13204e-10) (-8.86313e-11 6.73451e-11 -2.30306e-10) (4.86567e-11 1.49941e-11 1.14034e-11) (9.33615e-10 4.27872e-13 7.9152e-10) (1.42686e-09 -1.22025e-10 1.59728e-09) (1.34252e-10 -9.47917e-11 6.94976e-10) (-1.4671e-09 -1.62279e-10 1.1474e-09) (-4.37547e-09 -8.2539e-11 2.1276e-09) (-1.80834e-09 -6.74671e-11 7.90794e-10) (-3.84824e-11 -2.57779e-11 -5.83815e-13) (2.45898e-10 -1.95156e-10 -1.88361e-10) (7.54177e-10 -4.55863e-10 -2.49254e-10) (6.58183e-10 -4.22887e-10 4.7086e-11) (5.01966e-10 -2.72923e-10 1.04324e-10) (6.03046e-10 -9.56746e-11 -9.84203e-11) (1.18389e-09 2.68142e-10 -6.25796e-10) (1.3195e-09 7.0652e-10 -9.72227e-10) (5.48954e-10 4.48188e-10 -5.42437e-10) (2.72944e-11 8.20839e-11 -9.51799e-11) (-2.35865e-10 8.48035e-11 -6.18847e-11) (-2.12952e-09 2.35406e-10 7.49521e-11) (-4.0466e-09 3.04335e-11 6.66453e-10) (-1.37697e-10 -1.26458e-10 1.21969e-10) (1.27398e-11 -1.08023e-10 9.5696e-11) (-1.87919e-11 -3.07498e-11 5.31567e-11) (-1.25321e-10 8.6539e-12 7.56932e-11) (-8.22612e-11 1.73533e-11 4.0487e-11) (1.24428e-12 -2.02641e-12 3.73967e-12) (2.18317e-10 -1.28072e-10 1.51714e-11) (1.03029e-09 -5.72383e-10 -1.61447e-10) (1.84338e-09 -8.8455e-10 -5.80513e-10) (1.60302e-09 -5.86247e-10 -6.85928e-10) (5.12297e-10 -8.34476e-11 -2.68819e-10) (2.48173e-11 3.09056e-11 -3.06922e-11) (-1.74487e-10 2.0535e-10 5.69918e-13) (-7.32661e-10 5.4157e-10 3.08586e-10) (-4.18689e-10 3.20194e-10 4.31544e-10) (7.52098e-12 4.32018e-11 9.08193e-11) (7.2128e-11 1.02528e-12 -2.72309e-11) (1.52526e-10 -6.10309e-12 -5.97855e-10) (-3.56021e-10 2.05975e-10 -1.88191e-09) (-4.84389e-10 3.15844e-10 -1.43349e-09) (-5.56963e-12 3.37408e-11 -8.99815e-11) (2.63752e-10 -8.1344e-12 2.12126e-10) (1.59452e-09 -2.04509e-10 1.77814e-09) (8.8858e-10 -1.32105e-10 1.55225e-09) (-3.2724e-10 -2.25387e-11 7.24062e-10) (-2.13289e-09 -1.77802e-11 1.31474e-09) (-1.30924e-09 -1.30116e-10 6.87679e-10) (-6.31887e-11 -5.57731e-11 2.23226e-11) (8.34395e-11 -1.41445e-10 -7.2586e-11) (2.43431e-10 -2.63168e-10 -6.93343e-11) (2.39939e-10 -2.85905e-10 1.01156e-10) (1.97983e-10 -2.44662e-10 1.58898e-10) (1.54517e-10 -8.34694e-11 8.3334e-12) (4.49633e-10 8.8996e-11 -3.61977e-10) (7.59756e-10 6.29893e-10 -1.13169e-09) (2.69661e-10 7.32287e-10 -9.22508e-10) (-1.7771e-10 3.80951e-10 -3.13409e-10) (-7.90373e-10 4.33741e-10 -1.24986e-10) (-1.81919e-09 4.17147e-10 1.67332e-10) (-1.08738e-09 -2.49067e-11 2.8017e-10) (2.19667e-10 -2.82385e-10 7.3062e-11) (5.5846e-10 -4.58799e-10 3.27463e-11) (6.73037e-11 -5.84645e-11 3.02633e-11) (-6.82981e-11 -3.02496e-12 7.13894e-11) (-3.83653e-10 1.63701e-11 2.36715e-10) (-1.62951e-10 -2.82865e-11 1.23202e-10) (4.41193e-12 -2.16235e-11 2.18285e-11) (2.31751e-10 -1.39933e-10 -1.18995e-12) (8.65661e-10 -4.01253e-10 -2.83099e-10) (1.1071e-09 -4.36214e-10 -6.00582e-10) (4.35985e-10 -1.05393e-10 -3.25976e-10) (1.67879e-11 3.31862e-11 -3.98115e-11) (-2.60736e-10 3.56242e-10 2.86192e-11) (-7.96088e-10 7.87805e-10 5.89789e-10) (-5.05459e-10 4.2504e-10 1.02713e-09) (2.53461e-11 1.17789e-11 5.15342e-10) (9.88432e-11 -2.9885e-11 2.20826e-11) (4.40717e-10 -5.85137e-11 -7.90005e-10) (1.66484e-10 3.26858e-10 -3.33911e-09) (-8.41457e-10 6.79186e-10 -3.59347e-09) (-2.75823e-10 1.84929e-10 -7.82909e-10) (7.10935e-12 -6.14054e-13 3.17867e-12) (6.3524e-10 -1.47356e-10 7.4803e-10) (1.08002e-09 -1.5336e-10 1.52641e-09) (1.472e-10 3.07518e-11 6.74498e-10) (-3.75837e-10 4.04279e-11 4.74224e-10) (-5.91639e-10 -7.77864e-11 4.26041e-10) (-1.63611e-10 -1.18181e-10 1.28176e-10) (-7.01891e-12 -1.19055e-10 3.88831e-11) (9.84068e-11 -2.3425e-10 6.2196e-11) (1.8514e-10 -3.56633e-10 1.62576e-10) (1.23807e-10 -3.35446e-10 1.8552e-10) (2.5867e-11 -8.14141e-11 2.10286e-11) (3.74156e-11 1.66861e-11 -1.19058e-10) (1.83387e-11 6.67157e-10 -1.23226e-09) (-6.46564e-10 1.42258e-09 -1.74579e-09) (-1.18556e-09 1.27521e-09 -7.93372e-10) (-1.51701e-09 1.0054e-09 1.04541e-11) (-9.40551e-10 3.48913e-10 3.07126e-10) (-7.50305e-11 -3.32673e-11 7.25203e-11) (6.61955e-10 -5.78562e-10 -1.07276e-10) (5.79514e-10 -6.081e-10 -3.27153e-10) (5.76209e-11 -1.07074e-10 -3.88211e-11) (-1.75896e-11 -1.63906e-11 2.14273e-11) (-1.09893e-10 -1.89183e-11 1.38875e-10) (-8.40732e-11 -1.84999e-11 1.38749e-10) (-6.18546e-12 -1.12398e-11 5.59742e-11) (3.92833e-11 -1.10537e-11 2.51789e-11) (2.20128e-10 -5.10757e-11 -3.2056e-11) (4.26126e-10 -1.26993e-10 -2.25549e-10) (2.12423e-10 -6.27735e-11 -1.98888e-10) (5.65415e-12 2.21952e-11 -3.7015e-11) (-1.80922e-10 3.01303e-10 1.49491e-11) (-3.97618e-10 6.79226e-10 5.01185e-10) (-1.13819e-10 4.50556e-10 1.22888e-09) (2.72756e-10 -8.26988e-11 1.35437e-09) (1.20963e-10 -1.18788e-10 2.26167e-10) (8.08074e-11 -5.08221e-11 -1.76984e-10) (2.27995e-10 2.49976e-10 -3.09351e-09) (-8.37516e-10 9.79443e-10 -5.91586e-09) (-1.02399e-09 4.23593e-10 -2.81527e-09) (-9.64131e-11 -1.42163e-11 -1.70108e-10) (3.7555e-11 -3.65182e-11 5.03343e-11) (5.17259e-10 -1.25418e-10 5.988e-10) (5.89604e-10 6.77406e-11 7.21898e-10) (1.20059e-10 9.12625e-11 3.30272e-10) (-6.76173e-11 9.20456e-12 2.02916e-10) (-1.28994e-10 -1.05643e-10 2.24004e-10) (-4.62064e-11 -2.01649e-10 1.8366e-10) (9.67867e-11 -3.07306e-10 1.6209e-10) (2.07837e-10 -4.16903e-10 1.86962e-10) (8.60069e-11 -4.0286e-10 2.09246e-10) (-9.22973e-11 -2.08595e-10 9.81178e-11) (-1.44776e-10 -1.30603e-11 -7.9969e-11) (-1.0404e-09 8.79903e-10 -1.45058e-09) (-2.96173e-09 2.74196e-09 -3.17826e-09) (-3.12371e-09 2.58389e-09 -1.39387e-09) (-1.54637e-09 1.23786e-09 2.49876e-10) (-2.08365e-10 1.71337e-10 2.37693e-10) (7.7612e-11 -6.06176e-11 7.58294e-11) (8.41786e-10 -5.34865e-10 -5.22101e-11) (5.8194e-10 -6.25444e-10 -3.50102e-10) (1.36864e-10 -3.16084e-10 -1.65999e-10) (-2.63556e-12 -7.3532e-11 -1.57346e-11) (-1.00597e-11 -1.26396e-11 5.60697e-12) (-6.14491e-12 -2.6259e-13 7.81323e-12) (-7.37908e-13 6.73227e-12 1.42922e-11) (1.479e-11 1.31654e-11 2.06799e-11) (4.21028e-11 1.04396e-11 9.49474e-12) (8.01783e-11 -7.92499e-12 -3.03391e-11) (4.39204e-11 -1.37071e-11 -4.89321e-11) (-6.69769e-12 1.13492e-11 -1.89022e-11) (-1.35996e-10 2.1234e-10 1.30268e-11) (-1.68493e-10 5.23081e-10 3.76402e-10) (2.19062e-10 4.75215e-10 1.21709e-09) (7.61017e-10 -1.10235e-10 1.95019e-09) (3.55926e-10 -3.01908e-10 7.33323e-10) (7.38787e-12 -2.24189e-11 -6.00178e-12) (-1.54226e-10 8.10613e-11 -1.4057e-09) (-8.6261e-10 1.03327e-09 -6.22574e-09) (-1.60014e-09 7.92228e-10 -5.84103e-09) (-7.43523e-10 -1.14625e-10 -1.47059e-09) (-4.95505e-11 -7.38334e-11 -4.59983e-11) (8.42681e-11 -1.07302e-10 1.26067e-10) (4.44817e-10 -4.96985e-11 4.392e-10) (5.40908e-10 1.70861e-10 4.81803e-10) (2.32694e-10 1.22885e-10 2.8979e-10) (5.8757e-11 -6.43733e-12 1.56116e-10) (4.34033e-11 -1.05902e-10 1.37903e-10) (8.54749e-11 -2.26818e-10 1.3163e-10) (1.23446e-10 -3.23551e-10 1.50186e-10) (4.36948e-11 -4.08229e-10 2.60791e-10) (-2.73088e-10 -4.45344e-10 3.74474e-10) (-6.47959e-10 -1.61167e-10 1.2555e-10) (-2.00538e-09 8.34081e-10 -1.03954e-09) (-5.23919e-09 3.64916e-09 -3.98118e-09) (-4.81374e-09 3.64773e-09 -2.32465e-09) (-1.2356e-09 1.17194e-09 1.65235e-10) (-6.29641e-12 1.7031e-10 2.61479e-10) (4.08797e-10 -1.03178e-10 2.56736e-10) (7.68928e-10 -4.31731e-10 2.6777e-10) (8.78007e-10 -6.40838e-10 -3.69794e-13) (5.87971e-10 -4.72544e-10 -9.77664e-11) (1.82535e-10 -1.53584e-10 -3.06524e-11) (1.50274e-11 -1.37138e-11 -5.81025e-13) (-4.00504e-13 1.06036e-13 2.70645e-13) (-1.58801e-11 9.91503e-12 4.8785e-12) (-2.30761e-11 1.86336e-11 1.67275e-12) (-5.03696e-12 8.10176e-12 -6.2718e-12) (8.09444e-12 3.22774e-12 -2.65833e-11) (1.25491e-11 -4.9505e-12 -4.72418e-11) (-1.31058e-11 1.05445e-11 -2.24582e-11) (-1.1545e-10 1.4629e-10 3.78284e-12) (-1.39398e-10 3.73717e-10 2.40565e-10) (1.36649e-10 3.52898e-10 7.84717e-10) (5.77832e-10 -1.11707e-10 1.58645e-09) (3.56669e-10 -3.88041e-10 1.02328e-09) (-5.9184e-13 -3.88953e-11 5.06966e-11) (-1.53209e-10 5.30078e-11 -3.16513e-10) (-7.54453e-10 8.29507e-10 -3.55433e-09) (-7.69095e-10 9.04913e-10 -5.73353e-09) (-4.31423e-10 -1.09687e-10 -2.47502e-09) (-6.95146e-11 -2.0382e-10 -2.68735e-10) (1.75949e-11 -1.74409e-10 5.1305e-11) (7.55899e-11 -1.36694e-10 1.79945e-10) (7.54436e-11 6.52515e-13 1.24559e-10) (8.75162e-11 6.74722e-11 9.37076e-11) (6.64425e-11 4.49369e-11 5.86569e-11) (2.80559e-11 -1.52507e-12 2.557e-11) (2.22658e-11 -3.28625e-11 2.33707e-11) (3.59316e-11 -1.17569e-10 5.69232e-11) (7.3675e-11 -3.20205e-10 2.36372e-10) (-3.54891e-11 -5.52027e-10 6.45065e-10) (-4.73941e-10 -3.23144e-10 5.90426e-10) (-1.26545e-09 2.7325e-10 4.71261e-11) (-4.0521e-09 2.52239e-09 -2.27353e-09) (-4.94694e-09 3.88432e-09 -3.39376e-09) (-1.32771e-09 1.25929e-09 -5.04132e-10) (-2.00527e-11 9.59578e-11 8.78907e-11) (3.28343e-10 -6.73821e-11 3.05079e-10) (5.25371e-10 -3.90425e-10 5.87017e-10) (1.18811e-09 -7.30217e-10 9.58541e-10) (1.13026e-09 -5.66055e-10 6.52902e-10) (6.78268e-10 -2.64518e-10 2.67995e-10) (2.62238e-10 -7.8092e-11 6.20312e-11) (3.65231e-11 -4.67326e-12 3.35034e-12) (-5.9957e-13 2.28433e-12 -5.3438e-13) (-5.00266e-11 3.73403e-11 -1.39812e-11) (-1.00679e-10 5.0751e-11 -6.42209e-11) (-7.26821e-11 1.36188e-11 -1.54595e-10) (-4.33482e-11 -2.37172e-11 -2.84615e-10) (-7.75207e-11 2.75529e-11 -1.85588e-10) (-1.80763e-10 1.62768e-10 -6.95289e-11) (-3.06197e-10 4.03479e-10 2.05486e-10) (-1.57632e-10 3.69034e-10 7.38369e-10) (1.34574e-10 -5.90746e-11 1.61011e-09) (1.8745e-10 -4.47956e-10 1.42148e-09) (2.01599e-12 -8.36704e-11 2.13609e-10) (-2.22244e-11 1.92155e-11 -3.24016e-11) (-2.96465e-10 4.88256e-10 -1.46021e-09) (-1.28663e-10 5.82848e-10 -3.92229e-09) (2.81728e-10 -2.08107e-10 -2.82232e-09) (1.71329e-10 -3.89729e-10 -6.89223e-10) (4.37354e-11 -2.54858e-10 -4.82244e-11) (-4.27621e-11 -1.94933e-10 1.11874e-10) (-9.71318e-11 -6.73332e-11 1.15423e-10) (-6.52502e-11 1.69107e-11 4.78633e-11) (-2.36569e-11 2.93985e-11 9.10812e-12) (-4.44148e-12 1.63407e-11 -3.72795e-12) (7.62871e-13 3.17835e-12 -5.5591e-12) (1.26569e-11 -1.37257e-11 -1.17132e-11) (1.62503e-10 -1.77878e-10 6.34471e-11) (7.56999e-10 -7.50514e-10 9.46005e-10) (4.65738e-10 -7.05113e-10 1.69241e-09) (-3.40437e-10 -4.58428e-11 5.75745e-10) (-1.26594e-09 5.79406e-10 -2.10124e-10) (-3.16408e-09 2.23783e-09 -2.56865e-09) (-2.08089e-09 1.67907e-09 -2.11735e-09) (-2.19343e-10 1.6841e-10 -1.66154e-10) (1.0869e-11 -1.14304e-11 3.05571e-11) (1.83123e-10 -8.14649e-11 3.18863e-10) (1.70748e-09 -5.30785e-10 2.2292e-09) (1.99558e-09 -7.02954e-10 2.23145e-09) (9.31977e-10 -5.08426e-10 7.55095e-10) (2.00091e-10 -1.81939e-10 6.08327e-11) (1.1775e-11 -2.86294e-11 -2.21828e-11) (-1.9728e-11 7.56714e-12 -2.88307e-11) (-4.96836e-11 6.68357e-11 -2.83189e-11) (-2.35771e-11 6.86866e-11 -2.05535e-11) (1.29635e-11 3.39088e-11 -5.52794e-11) (8.40611e-11 4.10398e-12 -2.80984e-10) (-7.77327e-14 1.57263e-11 -3.55496e-10) (-1.72909e-10 1.197e-10 -1.77573e-10) (-4.22537e-10 3.27244e-10 6.47857e-11) (-3.32153e-10 2.79133e-10 5.37242e-10) (6.745e-11 -1.36421e-10 1.63209e-09) (5.81611e-10 -8.26668e-10 2.59523e-09) (8.89986e-11 -2.45863e-10 9.4343e-10) (-5.27531e-11 4.57236e-11 3.60521e-11) (-3.22766e-10 4.28615e-10 -6.11415e-10) (-1.63308e-10 5.02072e-10 -2.73189e-09) (7.48371e-10 -4.48484e-10 -3.90635e-09) (6.8075e-10 -8.71321e-10 -2.10866e-09) (6.80819e-11 -4.01094e-10 -3.62925e-10) (-1.04875e-10 -1.96523e-10 3.55579e-11) (-2.49464e-10 -1.87055e-10 2.74248e-10) (-1.71316e-10 -3.76289e-11 2.44056e-10) (-4.90445e-11 3.04778e-11 5.19168e-11) (-3.0178e-11 4.73853e-11 -1.74292e-11) (-2.47444e-11 6.01923e-11 -9.86951e-11) (1.75906e-11 1.87124e-12 -8.84804e-11) (8.09106e-11 -5.7231e-11 -2.50212e-11) (5.18136e-10 -3.00779e-10 3.77615e-10) (1.04227e-09 -4.67532e-10 1.5305e-09) (1.7299e-10 -1.06304e-10 9.8498e-10) (-2.63984e-10 5.85816e-11 1.36251e-10) (-1.78018e-09 6.25882e-10 -1.04591e-09) (-3.54893e-09 1.43931e-09 -3.44148e-09) (-1.87725e-09 6.56741e-10 -1.80136e-09) (-9.73106e-11 1.69975e-11 -5.33574e-11) (7.06584e-14 -3.181e-13 -9.65541e-14) (4.15992e-10 -1.90387e-10 4.33278e-10) (1.2078e-09 -7.02224e-10 1.31877e-09) (6.45493e-10 -5.9853e-10 8.23404e-10) (3.15008e-11 -1.27031e-10 9.55784e-11) (-6.38607e-11 -2.5488e-11 -2.46527e-11) (-2.78354e-10 7.7952e-11 -1.68098e-10) (-1.4512e-10 1.18104e-10 -7.67885e-11) (5.61768e-12 3.96473e-11 5.92177e-12) (1.8173e-10 6.49869e-11 3.8776e-11) (4.64408e-10 4.13786e-11 -5.78135e-11) (3.52005e-10 4.06056e-11 -2.05023e-10) (5.13675e-11 5.39585e-11 -1.22719e-10) (-6.06401e-11 5.69682e-11 -4.83367e-11) (-7.01165e-11 2.45218e-11 4.31561e-11) (1.02097e-11 -1.08312e-10 5.21211e-10) (6.38591e-10 -5.04339e-10 2.20256e-09) (2.82053e-10 -8.98828e-11 2.28628e-09) (-4.22462e-10 3.43274e-10 7.7815e-10) (-6.22898e-10 4.50532e-10 -9.27548e-11) (-5.75199e-10 3.4357e-10 -1.35226e-09) (8.51271e-11 -4.17989e-10 -3.70056e-09) (3.93433e-10 -9.76425e-10 -3.10797e-09) (1.52614e-11 -4.59289e-10 -6.68997e-10) (-3.92948e-11 -1.66843e-10 -1.26994e-11) (-2.52056e-11 -2.09008e-10 1.84862e-10) (4.19317e-11 -1.48982e-10 2.80414e-10) (4.12448e-11 -1.65766e-11 1.657e-10) (4.71087e-12 1.95155e-11 3.74167e-11) (-5.6476e-12 1.06164e-11 1.21471e-12) (-7.71889e-12 3.59116e-12 -7.6913e-12) (-3.35192e-14 -3.5344e-12 -3.7735e-12) (4.20087e-11 -2.88713e-11 1.20676e-11) (2.36944e-10 -4.74423e-11 1.57756e-10) (2.0691e-10 4.31581e-11 2.33634e-10) (-1.45578e-11 3.97938e-11 5.07742e-11) (-4.86361e-10 2.1401e-10 -1.78236e-10) (-2.00104e-09 7.28832e-10 -1.74227e-09) (-2.07308e-09 7.41561e-10 -2.37169e-09) (-5.18316e-10 1.55925e-10 -6.21562e-10) (1.09605e-10 -1.35066e-11 -3.58619e-10) (1.66188e-11 -2.87559e-11 -2.12789e-11) (-4.5619e-11 -1.36316e-10 1.17315e-10) (-3.98046e-10 -3.69533e-10 5.29653e-10) (-4.65736e-10 -2.49327e-10 3.86948e-10) (-1.03094e-10 -4.05049e-11 3.36998e-11) (-2.13128e-12 -1.05162e-12 -6.29108e-12) (3.84402e-11 1.47971e-11 -3.324e-11) (1.38447e-10 7.00247e-11 -4.02447e-11) (2.1877e-10 1.25255e-10 -1.17265e-11) (1.8943e-10 1.20466e-10 -6.23178e-12) (7.59329e-11 7.04477e-11 -1.90849e-11) (3.96694e-12 2.59436e-11 -1.42876e-11) (-2.87031e-11 9.48636e-12 -1.0854e-11) (-9.73282e-11 -5.09781e-11 2.61392e-11) (-1.46329e-10 -2.30686e-10 2.8696e-10) (4.6005e-11 -2.7075e-10 1.14302e-09) (3.19743e-10 4.90841e-10 2.27429e-09) (-2.06899e-10 1.20409e-09 1.75013e-09) (-6.3037e-10 8.38001e-10 3.70971e-10) (-7.73177e-10 4.25784e-10 -5.1393e-10) (-9.57622e-10 -1.36973e-10 -1.52561e-09) (-6.28969e-10 -7.4532e-10 -1.39989e-09) (-1.62764e-10 -8.37051e-10 -5.50834e-10) (1.87326e-10 -8.88581e-10 -1.38024e-10) (3.29001e-10 -5.48164e-10 4.64793e-11) (1.36998e-10 -9.41954e-11 6.89426e-11) (5.66616e-11 4.39681e-11 9.19559e-11) (1.43441e-11 1.85481e-10 1.93957e-10) (-2.45822e-11 1.12784e-10 1.04226e-10) (-2.72767e-12 2.94739e-12 3.36978e-12) (6.05037e-13 -2.09276e-11 -9.85619e-12) (3.34877e-11 -9.11538e-11 -3.2425e-11) (5.37948e-11 -5.11055e-11 1.65611e-12) (6.39607e-11 1.34814e-11 3.25176e-11) (5.68579e-11 1.33397e-10 5.84873e-11) (-6.6956e-11 2.91073e-10 -1.02507e-11) (-2.39841e-10 4.14412e-10 -3.07839e-10) (-2.09416e-10 3.99366e-10 -8.27181e-10) (5.11602e-11 1.75984e-10 -9.06453e-10) (3.3883e-10 1.99553e-10 -7.91712e-10) (6.89689e-12 9.04539e-12 -7.68779e-11) (-1.13894e-10 -6.06574e-11 3.98517e-11) (-9.04288e-10 -6.25504e-10 5.24738e-10) (-1.4132e-09 -1.23457e-09 6.26288e-10) (-8.6988e-10 -9.88659e-10 2.03201e-10) (-1.94948e-10 -3.3467e-10 2.33422e-11) (7.30682e-12 -3.02758e-11 7.3721e-12) (1.42314e-10 2.23791e-11 3.85746e-11) (5.64911e-10 2.75892e-10 8.26294e-11) (6.87294e-10 4.95607e-10 -3.32827e-11) (3.64797e-10 4.14033e-10 -1.48802e-10) (5.90226e-11 1.83333e-10 -1.06985e-10) (-3.862e-11 3.94396e-11 -3.54241e-11) (-2.1806e-10 -3.3085e-11 1.77794e-12) (-7.18333e-10 -2.29583e-10 3.51646e-10) (-9.77514e-10 -9.93199e-11 1.26655e-09) (-6.76983e-10 8.08745e-10 2.48618e-09) (-2.89327e-10 1.92119e-09 2.4564e-09) (-4.30348e-10 1.35948e-09 8.2676e-10) (-4.16755e-10 3.77803e-10 -2.13334e-11) (-4.32484e-10 -1.12856e-10 -2.58499e-10) (-3.89305e-10 -9.85792e-10 -5.35766e-10) (3.79171e-10 -2.28197e-09 -8.5609e-10) (1.22541e-09 -2.21339e-09 -9.34275e-10) (7.40426e-10 -7.5763e-10 -4.72424e-10) (1.00181e-10 -3.0587e-11 -5.09533e-11) (1.99233e-11 5.35792e-11 2.01864e-11) (5.86652e-12 2.2965e-10 1.6136e-10) (1.58827e-11 1.16369e-10 1.02619e-10) (2.95371e-12 1.78886e-12 2.41469e-12) (7.63314e-12 -2.74386e-11 -1.93706e-11) (-6.8868e-12 -7.22796e-11 -3.85889e-11) (-8.90506e-12 -2.77093e-11 1.95515e-13) (-1.91156e-12 -1.20356e-12 1.13076e-11) (1.1153e-11 5.09704e-11 3.74084e-11) (5.10745e-11 1.89681e-10 3.53705e-12) (1.35878e-10 3.13054e-10 -1.98297e-10) (3.72446e-10 4.15751e-10 -7.09109e-10) (6.07212e-10 4.17839e-10 -1.24794e-09) (1.94362e-10 9.80218e-11 -6.82663e-10) (5.17973e-12 3.22127e-11 -2.98016e-10) (-3.56026e-11 -9.65532e-12 -4.99045e-11) (-1.71932e-10 -1.15824e-10 8.3159e-12) (-9.49306e-10 -7.32326e-10 2.72097e-10) (-2.50958e-09 -1.86626e-09 6.8457e-10) (-2.70845e-09 -2.02381e-09 6.65271e-10) (-8.51604e-10 -7.83235e-10 2.67749e-10) (-9.79331e-12 -6.55329e-11 4.17781e-11) (2.63184e-10 2.57048e-11 1.07907e-10) (1.01285e-09 4.38632e-10 2.12056e-10) (1.20183e-09 7.98235e-10 -1.62419e-11) (7.50275e-10 6.93642e-10 -3.19147e-10) (2.19479e-10 3.29579e-10 -3.07305e-10) (-4.97842e-11 8.44364e-11 -1.20153e-10) (-5.25976e-10 8.9556e-11 -3.70177e-11) (-2.25527e-09 3.87621e-10 9.5499e-10) (-3.05269e-09 1.39743e-09 3.09509e-09) (-1.72156e-09 2.3704e-09 3.88157e-09) (-3.98899e-10 1.70187e-09 2.02213e-09) (-1.51185e-11 2.43098e-10 2.45526e-10) (1.64195e-11 -2.5493e-11 -2.24149e-12) (5.23326e-10 -1.02921e-09 -4.41584e-10) (1.39682e-09 -2.46263e-09 -1.47805e-09) (1.16658e-09 -1.79149e-09 -1.63025e-09) (4.18933e-10 -5.03658e-10 -8.01321e-10) (4.6983e-11 -2.29775e-11 -1.49269e-10) (-1.7591e-12 1.14579e-11 -8.32574e-12) (-5.28213e-12 2.60354e-11 1.41331e-11) (4.55449e-12 1.36227e-11 1.84922e-11) (5.17473e-12 -9.25241e-13 4.90167e-12) (1.29663e-12 -3.86249e-12 1.37938e-13) (-7.11232e-12 -5.05075e-12 -2.95853e-13) (-3.621e-11 1.81776e-12 1.3086e-11) (-4.0031e-11 2.67084e-11 4.0931e-11) (2.66046e-12 5.74359e-11 5.03568e-11) (1.02229e-10 1.41722e-10 3.65249e-11) (2.71017e-10 2.45508e-10 -9.27748e-11) (3.90293e-10 2.45789e-10 -3.62383e-10) (3.78107e-10 1.73413e-10 -6.6399e-10) (3.24452e-10 1.13492e-10 -5.98707e-10) (1.07074e-10 1.1729e-10 -4.80993e-10) (-5.68401e-11 2.62146e-11 -1.8077e-10) (-3.1207e-10 -9.79143e-11 -9.12093e-11) (-1.95892e-09 -9.3554e-10 2.7066e-10) (-4.87733e-09 -2.83533e-09 1.18729e-09) (-4.95399e-09 -3.59656e-09 1.18859e-09) (-1.88149e-09 -1.85003e-09 2.74412e-10) (-1.49166e-10 -2.79718e-10 -2.62168e-11) (3.03553e-11 -1.48849e-11 -6.755e-12) (3.10906e-10 9.69282e-11 4.7548e-11) (6.89448e-10 3.46076e-10 1.93534e-10) (6.45025e-10 4.1457e-10 1.29091e-10) (3.46273e-10 3.03971e-10 -4.80104e-11) (1.16406e-10 2.16819e-10 -1.20595e-10) (-8.16767e-11 2.516e-10 -1.35581e-10) (-7.96007e-10 6.81688e-10 -7.59526e-11) (-2.6053e-09 1.61788e-09 7.89853e-10) (-2.69885e-09 1.79979e-09 2.03657e-09) (-8.39278e-10 8.75441e-10 1.65145e-09) (6.12475e-11 1.01142e-10 5.54917e-10) (2.20492e-10 -1.59117e-10 1.41231e-10) (5.97089e-10 -6.12326e-10 -2.16261e-10) (8.89188e-10 -8.67926e-10 -8.67482e-10) (7.89538e-10 -5.47818e-10 -1.11566e-09) (4.176e-10 -1.4441e-10 -7.21686e-10) (1.0256e-10 -1.26425e-12 -2.0383e-10) (6.48833e-12 4.07195e-13 -1.30093e-11) (1.49842e-13 -1.4724e-12 6.19047e-13) (-1.92334e-12 -1.90968e-11 1.15461e-11) (-6.15778e-12 -3.00875e-11 1.40827e-11) (-6.43732e-12 -9.59587e-12 4.78362e-12) (-1.09566e-11 3.6993e-12 5.34032e-12) (-5.41547e-11 6.36761e-11 4.28607e-11) (-9.46275e-11 1.6491e-10 1.35495e-10) (-4.14537e-11 1.53577e-10 1.56098e-10) (3.1856e-11 6.7338e-11 7.02351e-11) (9.00277e-11 3.74892e-11 1.10283e-11) (2.40582e-10 3.50669e-11 -1.20926e-10) (3.83394e-10 5.2499e-11 -4.0342e-10) (5.92378e-11 -2.09897e-11 -4.67624e-10) (3.20678e-10 2.65438e-10 -1.38064e-09) (1.79301e-10 4.48133e-10 -1.09098e-09) (-6.71342e-11 1.13023e-10 -1.85304e-10) (-2.92648e-10 -7.33942e-11 6.17371e-11) (-1.96149e-09 -1.6133e-09 1.13786e-09) (-3.7474e-09 -4.57021e-09 2.14473e-09) (-2.82427e-09 -4.07838e-09 8.56857e-10) (-8.675e-10 -1.19921e-09 -2.3067e-10) (-1.03075e-10 -8.78697e-11 -1.58681e-10) (1.22154e-11 4.80913e-11 -7.86599e-11) (7.29153e-11 9.93139e-11 -2.05967e-11) (1.15127e-10 1.19631e-10 6.19562e-11) (8.12214e-11 9.476e-11 7.67078e-11) (2.33316e-11 6.37519e-11 2.96053e-11) (-7.67601e-12 1.01226e-10 3.83688e-12) (-7.54835e-11 2.63377e-10 -1.39623e-11) (-2.05217e-10 4.76659e-10 3.5351e-11) (-3.00215e-10 5.09848e-10 1.88145e-10) (-1.91241e-10 2.7964e-10 2.71294e-10) (-2.17577e-11 6.12652e-11 1.87859e-10) (6.22025e-11 -2.58561e-11 9.87326e-11) (1.44875e-10 -8.20045e-11 2.94192e-11) (2.36996e-10 -1.23073e-10 -1.08628e-10) (2.63846e-10 -1.07917e-10 -2.77049e-10) (1.80111e-10 -5.6969e-11 -3.19035e-10) (6.0406e-11 -3.43846e-11 -1.85821e-10) (5.64996e-12 -2.91476e-11 -4.8547e-11) (-5.85472e-12 -3.58721e-11 -2.51919e-12) (-3.21098e-11 -8.33908e-11 5.85756e-11) (-8.59466e-11 -9.78362e-11 1.33167e-10) (-9.11311e-11 -4.29263e-11 9.44255e-11) (-2.26467e-11 -8.31499e-13 1.39765e-11) (7.89736e-13 3.0944e-12 -4.01933e-13) (6.87697e-11 5.05541e-11 -1.81823e-12) (2.35447e-10 1.46079e-10 7.59952e-11) (2.42984e-10 1.66443e-10 2.08463e-10) (7.76366e-11 7.57367e-11 1.77415e-10) (-3.29676e-12 3.43167e-12 2.89112e-11) (-4.85228e-12 -6.04323e-12 -1.3688e-11) (2.63254e-10 1.76451e-12 -3.30043e-12) (2.93695e-10 1.48318e-12 1.59948e-12) (3.55432e-10 9.26025e-13 1.86922e-11) (4.78856e-10 -5.54454e-13 4.00841e-11) (7.25867e-10 -1.09753e-12 7.09361e-11) (1.14486e-09 -5.37428e-12 1.29174e-10) (1.64677e-09 -6.80368e-12 2.08042e-10) (1.93465e-09 -5.58441e-12 2.22354e-10) (1.65125e-09 -2.71389e-13 9.33139e-11) (1.02602e-09 4.09886e-12 -4.83341e-11) (5.36798e-10 3.8717e-12 -5.53212e-11) (3.26661e-10 2.79038e-12 9.06363e-12) (3.39368e-10 2.43086e-12 8.2449e-11) (5.15028e-10 4.98017e-13 1.40443e-10) (8.03966e-10 -3.1919e-12 1.12083e-10) (9.81588e-10 8.19449e-14 -5.01654e-12) (7.37039e-10 6.15407e-12 -7.04492e-11) (3.41675e-10 4.85405e-12 -3.32369e-11) (1.31908e-10 1.41215e-12 8.47488e-12) (7.14492e-11 2.1536e-13 2.65838e-11) (5.59522e-11 -2.79677e-13 3.70085e-11) (3.42433e-11 -8.59486e-14 2.99371e-11) (1.41125e-11 -3.68289e-14 1.16818e-11) (8.07787e-12 -1.71989e-14 1.63354e-12) (2.06781e-11 2.31633e-13 -9.01159e-12) (4.90407e-11 1.24969e-12 -3.45377e-11) (6.43826e-11 2.35427e-12 -5.18728e-11) (6.09007e-11 2.20547e-12 -4.62325e-11) (5.74788e-11 1.34088e-12 -2.94562e-11) (7.25508e-11 5.20332e-13 -1.53021e-11) (1.19797e-10 -4.27781e-13 -3.99537e-12) (1.97264e-10 -1.26254e-12 -2.83451e-12) (2.79471e-10 -1.18882e-12 -2.58352e-11) (3.37746e-10 -6.26414e-13 -6.51353e-11) (3.60757e-10 -1.01803e-12 -9.04265e-11) (3.50043e-10 -2.34606e-12 -7.99018e-11) (3.16578e-10 -2.9555e-12 -4.33081e-11) (2.79953e-10 -2.02799e-12 -8.43687e-12) (2.56441e-10 -3.6666e-13 6.53996e-12) (2.50641e-10 8.91581e-13 3.51115e-12) (2.55499e-09 2.55922e-11 -2.52232e-10) (2.89797e-09 1.44909e-11 -1.34469e-10) (3.53695e-09 -1.90628e-12 1.00609e-10) (4.66488e-09 -2.36973e-11 3.52522e-10) (6.68548e-09 -4.95688e-11 5.98905e-10) (1.0033e-08 -1.16286e-10 9.47551e-10) (1.45118e-08 -1.97782e-10 1.48565e-09) (1.84109e-08 -2.45841e-10 1.80933e-09) (1.85524e-08 -1.95213e-10 1.16041e-09) (1.44154e-08 -5.6263e-11 -1.66106e-10) (9.02841e-09 3.59235e-11 -6.74082e-10) (5.4121e-09 5.63536e-11 -1.25546e-10) (4.46491e-09 2.56143e-11 6.7427e-10) (5.72657e-09 -4.79598e-11 1.44129e-09) (8.03429e-09 -1.43533e-10 1.49996e-09) (9.80849e-09 -1.09706e-10 5.11262e-10) (9.04822e-09 6.40383e-11 -5.16055e-10) (6.01907e-09 1.32102e-10 -5.86857e-10) (3.28575e-09 5.64709e-11 -1.10144e-10) (1.71742e-09 7.56359e-12 2.02918e-10) (9.88185e-10 -8.81789e-12 2.75553e-10) (5.58379e-10 -6.4729e-12 1.9817e-10) (2.76252e-10 -1.3631e-12 7.35588e-11) (1.65494e-10 2.48772e-12 -1.45393e-11) (2.67455e-10 1.23198e-11 -1.68169e-10) (6.36029e-10 3.934e-11 -5.52895e-10) (1.14245e-09 7.0084e-11 -9.13342e-10) (1.50892e-09 7.40754e-11 -9.38094e-10) (1.67973e-09 5.07887e-11 -6.71563e-10) (1.86149e-09 1.5576e-11 -3.2754e-10) (2.24339e-09 -2.22971e-11 -3.80195e-11) (2.74942e-09 -4.47028e-11 9.4325e-11) (3.22603e-09 -4.20097e-11 -1.35846e-11) (3.60091e-09 -3.80142e-11 -2.8687e-10) (3.84941e-09 -5.58188e-11 -5.3136e-10) (3.89459e-09 -8.63208e-11 -5.81837e-10) (3.62924e-09 -9.40739e-11 -4.3027e-10) (3.12298e-09 -6.24919e-11 -2.43806e-10) (2.65425e-09 -1.53037e-11 -1.82645e-10) (2.45536e-09 1.7736e-11 -2.29463e-10) (1.2804e-09 2.41324e-11 -2.63412e-10) (1.43652e-09 6.76628e-12 -2.09412e-10) (1.61882e-09 -1.32156e-11 -5.14137e-11) (1.96606e-09 -3.03868e-11 1.17858e-10) (2.73253e-09 -5.17027e-11 2.66768e-10) (4.18355e-09 -1.01828e-10 4.38241e-10) (6.2908e-09 -1.89204e-10 7.31411e-10) (8.37467e-09 -2.67994e-10 1.04844e-09) (8.91676e-09 -2.50173e-10 8.85886e-10) (7.28323e-09 -1.18887e-10 1.48481e-10) (4.76433e-09 -3.26279e-12 -3.78434e-10) (2.79652e-09 4.18006e-11 -2.49409e-10) (2.02343e-09 1.85189e-11 1.76476e-10) (2.44655e-09 -5.31162e-11 6.96916e-10) (3.454e-09 -1.59908e-10 1.04398e-09) (4.00921e-09 -1.47879e-10 6.34718e-10) (3.9507e-09 6.91656e-12 -8.20765e-11) (3.32005e-09 1.20893e-10 -4.25116e-10) (2.39352e-09 8.29271e-11 -2.53297e-10) (1.5216e-09 2.17888e-11 3.6665e-11) (8.95647e-10 -4.47123e-12 1.67412e-10) (5.31479e-10 -1.00006e-11 1.48744e-10) (3.28746e-10 -5.63391e-12 7.08955e-11) (2.16608e-10 3.04398e-12 -6.54235e-12) (2.12372e-10 1.4691e-11 -1.02591e-10) (3.76947e-10 3.66424e-11 -3.48439e-10) (7.44507e-10 6.74786e-11 -6.99285e-10) (1.18485e-09 8.09172e-11 -8.35225e-10) (1.49197e-09 6.54474e-11 -6.56709e-10) (1.65736e-09 2.47493e-11 -3.22531e-10) (1.81536e-09 -2.84761e-11 -2.07525e-12) (1.96342e-09 -5.92322e-11 1.95516e-10) (2.04213e-09 -5.51296e-11 2.01755e-10) (2.08545e-09 -4.64572e-11 6.72537e-11) (2.10499e-09 -6.22291e-11 -9.10562e-11) (2.0237e-09 -8.97069e-11 -1.75337e-10) (1.76952e-09 -9.15907e-11 -1.60944e-10) (1.42993e-09 -5.6932e-11 -1.15595e-10) (1.19358e-09 -1.15151e-11 -1.24367e-10) (1.15872e-09 2.03346e-11 -1.98019e-10) (8.69296e-11 5.59809e-12 -5.02056e-11) (1.10851e-10 7.13459e-14 -4.64971e-11) (1.05432e-10 -4.86659e-12 -1.34698e-11) (1.11168e-10 -7.659e-12 1.55216e-11) (1.77356e-10 -1.16649e-11 4.39751e-11) (3.9459e-10 -2.5645e-11 8.98267e-11) (8.69942e-10 -6.09104e-11 1.92729e-10) (1.47696e-09 -1.04395e-10 3.67675e-10) (1.66922e-09 -9.99559e-11 4.00919e-10) (1.15449e-09 -3.75335e-11 1.40001e-10) (5.06116e-10 3.67436e-12 -5.95258e-11) (1.57449e-10 9.65059e-12 -5.36023e-11) (4.62521e-11 2.55298e-12 -1.27667e-12) (8.41701e-11 -7.32179e-12 6.43878e-11) (2.46426e-10 -4.09305e-11 2.25714e-10) (3.01498e-10 -3.60089e-11 1.83074e-10) (2.48775e-10 2.08383e-12 2.32346e-11) (2.61509e-10 3.03408e-11 -8.35472e-11) (2.12652e-10 2.64523e-11 -8.44736e-11) (1.04889e-10 6.0369e-12 -1.43739e-11) (3.75732e-11 -2.44985e-13 1.51228e-11) (1.54641e-11 -1.94071e-12 1.83836e-11) (6.23073e-12 -1.14494e-12 8.1821e-12) (2.12988e-12 5.38342e-14 4.30655e-13) (6.05323e-12 2.5345e-12 -1.0598e-11) (2.08942e-11 1.40967e-11 -9.30563e-11) (6.05966e-11 2.44123e-11 -2.36664e-10) (1.53693e-10 2.63122e-11 -2.82471e-10) (2.44689e-10 2.3097e-11 -2.11701e-10) (2.69999e-10 1.06725e-11 -8.62086e-11) (2.84631e-10 -9.56885e-12 2.44792e-11) (3.19719e-10 -2.48838e-11 1.08239e-10) (3.24422e-10 -2.22747e-11 1.2853e-10) (2.93824e-10 -1.46473e-11 8.92531e-11) (2.54232e-10 -1.56874e-11 3.97114e-11) (2.00472e-10 -1.98756e-11 7.64939e-12) (1.23326e-10 -1.57305e-11 -2.68904e-12) (5.90205e-11 -6.14559e-12 -3.4441e-12) (3.53674e-11 3.67438e-14 -7.19276e-12) (4.79183e-11 4.32332e-12 -2.26736e-11) (6.06581e-12 2.57849e-12 -2.67123e-11) (1.492e-11 -6.76499e-13 -2.60403e-11) (6.23448e-12 -1.36625e-12 -5.08891e-12) (1.10616e-12 -5.20839e-13 3.46373e-13) (1.62231e-12 -9.4585e-13 2.66154e-12) (1.11996e-11 -2.82489e-12 8.76763e-12) (8.90005e-11 -1.40839e-11 3.95131e-11) (3.50163e-10 -4.57241e-11 1.53077e-10) (6.56388e-10 -6.77223e-11 3.05207e-10) (5.44652e-10 -3.06754e-11 2.03895e-10) (1.72988e-10 1.97411e-12 1.25764e-11) (2.02114e-11 3.34611e-12 -1.34779e-11) (-2.9488e-13 3.60743e-13 -1.47191e-12) (-3.76885e-12 -1.46004e-12 6.38928e-12) (-3.10362e-12 -1.91342e-11 8.49528e-11) (2.27741e-11 -2.1499e-11 1.22824e-10) (1.16849e-11 6.00422e-13 2.01153e-11) (1.1814e-11 5.24083e-12 -5.94583e-12) (3.08916e-11 1.19988e-11 -3.4384e-11) (1.0927e-11 2.53249e-12 -1.00359e-11) (1.64186e-14 2.61011e-14 3.67426e-13) (-1.46113e-11 -3.04298e-12 1.96934e-11) (-3.07295e-11 -6.02834e-12 2.99356e-11) (-1.3345e-11 -8.93892e-13 7.01858e-12) (-7.86379e-12 2.18477e-12 -4.50718e-12) (-3.40257e-11 1.45648e-11 -5.83211e-11) (-8.41807e-11 2.43166e-11 -1.82397e-10) (-5.60539e-11 1.66273e-11 -2.01698e-10) (2.54138e-11 1.18719e-11 -1.25452e-10) (7.88329e-11 9.11799e-12 -6.94921e-11) (9.96479e-11 -6.4318e-13 -1.4278e-11) (1.09726e-10 -1.18256e-11 3.60518e-11) (1.12291e-10 -1.32456e-11 6.79132e-11) (9.4706e-11 -8.41451e-12 6.19656e-11) (6.70885e-11 -7.20495e-12 3.7239e-11) (3.51455e-11 -6.757e-12 1.54731e-11) (7.12027e-12 -2.45045e-12 3.16313e-12) (1.31371e-15 -8.87181e-14 8.56243e-14) (-1.28752e-12 1.97365e-13 -6.45678e-13) (-2.09659e-12 1.6235e-12 -6.96457e-12) (-2.78868e-12 3.72369e-12 -5.1229e-11) (3.2187e-11 -3.63458e-12 -8.05118e-11) (2.22407e-11 -5.54743e-12 -3.09896e-11) (1.23332e-12 -9.11955e-13 -1.18301e-12) (-9.29435e-13 -7.01055e-13 7.9642e-13) (-2.55263e-12 -1.29406e-12 2.585e-12) (7.55099e-13 -1.26153e-12 2.56117e-12) (3.82396e-11 -1.09972e-11 3.0327e-11) (2.32938e-10 -3.83843e-11 1.64276e-10) (4.5126e-10 -3.78415e-11 2.62085e-10) (3.23926e-10 -2.00158e-12 1.02738e-10) (8.54048e-11 7.09196e-12 -9.33899e-12) (4.14336e-12 7.98333e-13 -4.74801e-12) (-3.56265e-12 -1.15803e-12 2.71993e-13) (-3.71369e-11 -1.65519e-11 3.87386e-11) (-5.14313e-11 -2.43492e-11 1.03586e-10) (-1.15444e-11 8.19154e-13 5.03095e-11) (2.02282e-12 2.56305e-12 1.84277e-12) (2.44171e-11 1.10183e-11 -1.80192e-11) (3.70328e-11 8.32762e-12 -2.52968e-11) (5.50438e-12 6.61404e-13 -1.89263e-13) (-3.99807e-12 -2.15212e-12 1.10831e-11) (-4.36399e-11 -1.36225e-11 5.02176e-11) (-3.30701e-11 -7.19038e-12 2.86841e-11) (-4.47924e-12 7.12184e-13 8.4483e-13) (-1.23512e-11 7.54312e-12 -1.75933e-11) (-8.03765e-11 2.29974e-11 -1.06452e-10) (-1.69793e-10 1.55871e-11 -1.76074e-10) (-7.22581e-11 5.75105e-12 -9.26429e-11) (7.7805e-12 3.275e-12 -2.58773e-11) (1.06303e-10 3.79078e-12 -3.792e-11) (2.56477e-10 -9.31034e-12 -1.30233e-11) (2.64037e-10 -1.42029e-11 3.57239e-11) (1.88955e-10 -9.95549e-12 5.76475e-11) (1.25108e-10 -1.08451e-11 5.66704e-11) (6.92616e-11 -1.19063e-11 4.12798e-11) (1.47575e-11 -4.64058e-12 1.52272e-11) (-2.0281e-12 -4.77999e-13 3.68648e-12) (-2.03081e-11 2.59593e-12 1.85633e-12) (-2.03323e-11 4.88781e-12 -1.50252e-11) (-4.01119e-11 4.51503e-12 -6.67044e-11) (3.48081e-11 -7.7763e-12 -1.48663e-10) (7.52721e-11 -1.50703e-11 -1.25677e-10) (1.50954e-11 -5.75517e-12 -2.08634e-11) (-7.48107e-13 -6.66941e-13 -1.65313e-13) (-1.99912e-11 -4.81978e-12 6.9713e-12) (-2.27998e-11 -5.09971e-12 1.06209e-11) (-4.27069e-12 -3.33454e-12 9.77515e-12) (3.35232e-11 -1.29582e-11 5.76856e-11) (2.10476e-10 -2.81409e-11 1.83535e-10) (3.52446e-10 -1.12366e-11 1.6518e-10) (2.40219e-10 9.51056e-12 2.75378e-11) (4.28443e-11 2.93915e-12 -1.17075e-11) (-3.12394e-12 -1.03402e-12 -1.87954e-12) (-1.77172e-10 -3.6374e-11 2.32281e-11) (-4.0071e-10 -5.83828e-11 1.21515e-10) (-1.46616e-10 4.08048e-12 7.00848e-11) (-3.17137e-12 4.87004e-12 3.47003e-12) (2.34335e-11 1.29865e-11 -8.8651e-12) (1.06747e-10 1.84037e-11 -2.86079e-11) (1.06582e-10 4.95683e-12 1.17754e-11) (2.12881e-11 -3.72315e-12 2.69502e-11) (-2.97692e-11 -1.86745e-11 6.62943e-11) (-7.57027e-11 -2.64561e-11 8.25517e-11) (-1.14023e-11 -1.95958e-12 1.03602e-11) (-4.68666e-13 1.7553e-12 -2.36501e-12) (-2.22278e-11 1.74541e-11 -4.85127e-11) (-1.65202e-10 2.24953e-11 -1.35892e-10) (-2.23089e-10 4.68337e-12 -1.12337e-10) (-2.37942e-11 1.82409e-13 -1.54353e-11) (2.28632e-11 -7.75432e-13 -9.9042e-12) (3.25018e-10 -1.05676e-11 -5.90268e-11) (6.52266e-10 -7.49217e-12 -8.85469e-11) (5.78584e-10 1.87911e-12 -3.68063e-11) (3.39837e-10 -9.43968e-12 3.1732e-11) (1.66792e-10 -1.74686e-11 6.17079e-11) (4.54284e-11 -8.09411e-12 4.52177e-11) (-7.61196e-12 3.27452e-13 2.40953e-11) (-9.66504e-11 1.33447e-11 3.53489e-11) (-1.25753e-10 1.81242e-11 -1.95315e-11) (-2.28729e-10 -6.41196e-13 -1.2497e-10) (-2.5317e-11 -1.27878e-11 -1.60308e-10) (8.71038e-11 -1.54346e-11 -2.03504e-10) (4.85516e-11 -8.53553e-12 -7.854e-11) (-1.37217e-13 -1.04661e-12 -2.65323e-12) (-2.85891e-11 -6.04864e-12 6.28425e-12) (-7.71807e-11 -1.16042e-11 2.76585e-11) (-3.22562e-11 -6.9196e-12 2.42122e-11) (4.33002e-12 -7.44695e-12 3.45712e-11) (1.16955e-10 -2.31448e-11 1.22705e-10) (3.09995e-10 -2.56632e-11 1.58951e-10) (3.42362e-10 -2.97252e-12 6.087e-11) (1.28804e-10 6.44862e-12 -1.24379e-11) (-7.69362e-13 2.18088e-14 -1.74521e-12) (-4.57787e-10 -3.73842e-11 -3.55324e-11) (-1.88065e-09 -1.27899e-10 -5.53025e-12) (-1.06327e-09 2.07372e-11 -1.26709e-12) (-6.19346e-11 2.83621e-11 -1.00399e-11) (2.56411e-11 2.02125e-11 -1.43491e-11) (2.3824e-10 2.80123e-11 -1.92379e-11) (5.79002e-10 -1.74592e-11 1.50689e-10) (4.39689e-10 -3.35646e-11 2.87824e-10) (4.06819e-11 -3.16682e-11 1.68292e-10) (-1.48564e-10 -6.30193e-11 2.11727e-10) (-1.05616e-10 -3.36872e-11 8.96127e-11) (-2.29834e-13 3.0763e-14 1.34362e-14) (1.22249e-11 1.61789e-11 -3.6294e-11) (-4.11358e-11 2.66383e-11 -7.76152e-11) (-1.82091e-10 1.70339e-11 -8.45336e-11) (-6.30431e-11 -3.81693e-12 -1.23534e-11) (3.40745e-12 -1.64179e-12 -1.6333e-12) (2.6354e-10 -3.03293e-11 -8.21354e-11) (8.01595e-10 -2.34111e-11 -2.67709e-10) (9.12557e-10 2.8069e-11 -2.81298e-10) (6.19684e-10 1.44834e-11 -1.15064e-10) (3.16655e-10 -1.07891e-11 2.94695e-11) (1.12073e-10 -5.27604e-12 7.61048e-11) (-2.27944e-12 6.71937e-12 6.52195e-11) (-2.16308e-10 3.57638e-11 1.23547e-10) (-5.01065e-10 4.17295e-11 2.28782e-11) (-9.45143e-10 -4.59122e-11 -2.71945e-10) (-2.0251e-10 -4.0033e-11 -2.58309e-10) (1.94462e-11 -9.73997e-12 -1.68048e-10) (3.20478e-11 1.95301e-12 -6.55606e-11) (-2.72434e-13 2.38672e-15 -2.62108e-12) (-2.67247e-11 -4.37173e-12 5.23906e-12) (-5.9074e-11 -1.24114e-11 2.1942e-11) (-1.16303e-11 -5.14755e-12 1.20446e-11) (1.84523e-11 -7.61455e-12 2.78704e-11) (1.66579e-10 -2.82637e-11 1.14817e-10) (3.45659e-10 -4.23981e-11 1.39494e-10) (3.60098e-10 -2.55052e-11 4.86037e-11) (1.75829e-10 4.98956e-12 -1.85885e-11) (2.48038e-12 1.97501e-12 -3.21033e-12) (-4.3886e-10 2.86833e-11 -5.97557e-11) (-3.24976e-09 -2.6623e-11 -3.05766e-10) (-3.26389e-09 5.72092e-11 -5.53332e-10) (-4.87189e-10 1.18176e-10 -2.12587e-10) (1.285e-11 2.93826e-11 -3.60813e-11) (2.40281e-10 2.539e-11 -1.42548e-11) (9.7842e-10 -1.00074e-10 3.69678e-10) (1.71991e-09 -1.82256e-10 1.11288e-09) (6.69669e-10 -8.01814e-11 8.32677e-10) (-1.12059e-10 -8.09569e-11 4.50134e-10) (-5.27448e-10 -1.49941e-10 4.19211e-10) (-1.5226e-10 -3.33659e-11 4.13195e-11) (-9.37729e-12 6.62922e-12 -2.58929e-11) (-9.95315e-12 3.74625e-11 -8.7968e-11) (-4.43308e-11 2.04581e-11 -4.22789e-11) (-1.0647e-11 -6.57653e-13 -2.27436e-12) (2.09761e-11 -1.06666e-11 -2.87366e-12) (4.36231e-10 -9.07271e-11 -1.44315e-10) (9.9994e-10 -8.72854e-11 -4.80593e-10) (9.63404e-10 1.68302e-11 -5.30866e-10) (5.41841e-10 3.37698e-11 -2.7573e-10) (2.38006e-10 7.29882e-12 -4.99801e-11) (1.07275e-10 8.05849e-12 4.70059e-11) (1.63428e-11 2.41926e-11 9.36756e-11) (-2.98165e-10 8.2228e-11 2.34272e-10) (-1.17197e-09 8.11663e-11 1.67554e-10) (-2.17074e-09 -9.03923e-11 -3.49282e-10) (-5.98196e-10 -1.1073e-10 -3.8526e-10) (-3.6783e-11 -1.51761e-11 -1.11253e-10) (7.823e-12 3.57191e-12 -2.54629e-11) (-1.61652e-13 5.72559e-13 -1.00081e-12) (-7.91565e-12 -1.42679e-12 1.41401e-12) (-8.30101e-12 -5.48619e-12 3.29955e-12) (3.21681e-12 -4.17269e-12 3.19396e-12) (9.56528e-11 -2.12822e-11 3.97499e-11) (3.41644e-10 -4.611e-11 1.29961e-10) (4.58464e-10 -6.43241e-11 1.26601e-10) (3.46028e-10 -4.61446e-11 2.21023e-11) (1.52556e-10 -5.88396e-13 -3.12487e-11) (9.31559e-12 8.69909e-12 -9.19562e-12) (-2.07606e-10 7.16242e-11 -3.50414e-11) (-2.32936e-09 2.1078e-10 -2.58103e-10) (-3.8288e-09 1.65994e-10 -9.44011e-10) (-1.37872e-09 2.31104e-10 -8.11348e-10) (-8.50911e-11 9.00256e-11 -2.10239e-10) (5.74979e-11 1.18349e-11 -3.01556e-11) (5.16068e-10 -1.15807e-10 2.53099e-10) (2.11883e-09 -4.27251e-10 1.65322e-09) (2.57594e-09 -2.11791e-10 2.50505e-09) (3.9471e-10 -6.67061e-11 1.17688e-09) (-6.48661e-10 -1.71615e-10 8.09691e-10) (-1.22692e-09 -2.28785e-10 4.15206e-10) (-4.64809e-10 -1.56145e-11 -9.93348e-11) (-1.192e-10 5.32557e-11 -1.33444e-10) (-1.28694e-11 1.98642e-11 -3.50585e-11) (1.21846e-11 -1.57545e-12 -3.25132e-12) (3.4339e-10 -1.10592e-10 4.35543e-14) (1.17696e-09 -2.85123e-10 -1.5904e-10) (1.55983e-09 -1.86347e-10 -5.31501e-10) (1.11816e-09 4.01446e-12 -6.57082e-10) (4.5692e-10 4.28835e-11 -3.83648e-10) (1.0548e-10 1.19751e-11 -8.95533e-11) (1.59378e-11 4.87097e-12 8.50533e-13) (-3.29604e-12 3.20777e-11 5.69135e-11) (-4.10531e-10 1.82913e-10 3.11648e-10) (-1.97732e-09 2.50859e-10 3.74462e-10) (-3.01049e-09 -3.34395e-11 -1.42976e-10) (-8.98623e-10 -1.76467e-10 -2.69864e-10) (-7.25223e-11 -2.7787e-11 -5.42981e-11) (-1.18837e-12 -1.35297e-13 -4.71948e-12) (8.51538e-14 3.10919e-13 -8.28472e-13) (7.14735e-14 -4.08228e-13 -4.60051e-13) (6.7315e-12 -7.2104e-12 -3.66589e-12) (7.1054e-11 -2.99911e-11 -1.16655e-11) (2.70479e-10 -5.40921e-11 1.30309e-11) (5.19036e-10 -7.71909e-11 9.87739e-11) (5.5129e-10 -9.43308e-11 1.19667e-10) (3.23255e-10 -5.90836e-11 3.21372e-11) (9.7192e-11 -1.39825e-12 -1.85395e-11) (1.22206e-11 1.76102e-11 -1.42457e-11) (-8.01142e-11 7.95078e-11 -2.49481e-11) (-8.51194e-10 2.48029e-10 -7.63184e-11) (-2.1338e-09 2.34365e-10 -5.02762e-10) (-1.60651e-09 2.52452e-10 -1.02212e-09) (-4.56578e-10 2.33733e-10 -7.9758e-10) (-6.73563e-12 3.85743e-11 -1.78593e-10) (4.58312e-11 -2.70809e-11 1.61801e-11) (9.61753e-10 -4.44259e-10 1.0621e-09) (3.18556e-09 -5.72755e-10 3.61011e-09) (2.21026e-09 -4.7862e-11 3.3112e-09) (-1.42246e-10 -6.51463e-11 1.19663e-09) (-1.4558e-09 -2.16955e-10 8.18753e-10) (-1.49262e-09 -1.15538e-10 6.97336e-13) (-3.79756e-10 4.77713e-11 -2.3622e-10) (-8.40686e-12 2.32363e-11 -8.0907e-11) (1.33122e-10 -1.94385e-11 -4.82253e-11) (8.15297e-10 -2.78232e-10 5.06328e-11) (1.65755e-09 -5.31037e-10 1.42991e-10) (1.7751e-09 -3.10202e-10 -1.56046e-10) (1.26009e-09 1.98807e-11 -5.20336e-10) (5.28255e-10 9.86122e-11 -4.96514e-10) (8.13528e-11 3.34293e-11 -1.73258e-10) (-2.97596e-12 7.1483e-12 -1.16716e-11) (-7.55789e-11 6.20695e-11 4.2594e-11) (-8.71213e-10 4.15723e-10 4.10895e-10) (-2.93994e-09 5.88151e-10 5.82226e-10) (-2.53046e-09 1.02284e-10 1.84813e-10) (-8.962e-10 -1.56365e-10 6.17176e-11) (-1.47229e-10 -5.1465e-11 3.11905e-11) (-9.49317e-12 -4.35728e-12 3.46645e-12) (8.76002e-14 -3.43892e-13 -2.77881e-13) (1.71046e-11 -1.02402e-11 -1.40942e-11) (1.26576e-10 -5.45888e-11 -8.64549e-11) (3.4738e-10 -1.00364e-10 -1.97648e-10) (5.22928e-10 -1.09275e-10 -1.8122e-10) (6.13461e-10 -1.21849e-10 -3.84161e-11) (5.96616e-10 -1.37826e-10 1.00102e-10) (3.19294e-10 -7.32294e-11 9.16404e-11) (4.46819e-11 1.51181e-12 1.21937e-11) (6.20647e-13 2.06558e-11 -2.89561e-12) (-6.04728e-11 1.1524e-10 -1.74897e-11) (-1.91597e-10 1.53358e-10 -1.55667e-11) (-5.12114e-10 1.37624e-10 -1.1345e-10) (-8.92395e-10 1.76826e-10 -5.71478e-10) (-7.79169e-10 3.28646e-10 -1.19775e-09) (-2.713e-10 1.92049e-10 -9.18167e-10) (-6.18233e-12 -1.64598e-11 -6.30239e-11) (1.5295e-10 -1.9621e-10 2.66044e-10) (1.75876e-09 -8.1593e-10 2.91929e-09) (3.37641e-09 -3.93587e-10 5.31353e-09) (8.56967e-10 1.98457e-11 2.58e-09) (-5.22785e-10 -3.40587e-11 7.37521e-10) (-1.09331e-09 -8.17754e-11 1.47436e-10) (-4.77624e-10 -1.01533e-11 -2.59115e-10) (-3.01582e-11 9.78261e-13 -1.54528e-10) (1.28838e-10 -4.60058e-11 -7.17458e-11) (6.58645e-10 -3.14116e-10 1.43493e-10) (1.33069e-09 -6.22242e-10 4.99772e-10) (1.38571e-09 -4.06052e-10 2.21248e-10) (1.11601e-09 -1.80715e-11 -3.00717e-10) (6.36475e-10 1.86281e-10 -5.88318e-10) (8.70818e-11 1.11611e-10 -3.59966e-10) (-1.07252e-10 7.20768e-11 -1.29692e-10) (-4.19679e-10 2.33099e-10 -9.27726e-12) (-1.48887e-09 7.45137e-10 3.44568e-10) (-2.95306e-09 8.28407e-10 5.28179e-10) (-1.21217e-09 1.62373e-10 1.40767e-10) (-4.45705e-10 -8.25548e-11 1.5936e-10) (-1.85135e-10 -9.69294e-11 2.045e-10) (-9.01679e-11 -7.00614e-11 1.63105e-10) (-1.27759e-11 -2.07716e-11 2.67641e-11) (1.36066e-11 -1.49566e-11 -9.53809e-12) (2.63099e-10 -9.75078e-11 -2.41999e-10) (8.4181e-10 -1.83848e-10 -7.69231e-10) (1.07182e-09 -2.13302e-10 -8.04722e-10) (8.43439e-10 -2.28035e-10 -3.38954e-10) (5.68971e-10 -2.01611e-10 1.53982e-11) (2.48684e-10 -8.93537e-11 1.2455e-10) (2.32512e-11 6.34267e-12 4.90109e-11) (-6.69842e-11 9.64572e-11 6.53041e-11) (-1.96422e-10 2.86811e-10 8.86465e-11) (-8.83581e-11 1.6811e-10 3.49578e-11) (-2.57918e-11 3.42756e-11 -1.26927e-11) (-1.4799e-10 5.19881e-11 -1.9023e-10) (-6.1716e-10 2.47345e-10 -1.07595e-09) (-6.70468e-10 3.70119e-10 -1.67979e-09) (-1.65928e-10 1.38558e-11 -5.25582e-10) (1.4513e-12 -3.757e-11 1.12646e-11) (5.02733e-10 -5.87091e-10 1.34102e-09) (2.20976e-09 -8.23032e-10 4.56573e-09) (1.75496e-09 -9.13288e-11 3.83281e-09) (6.16718e-12 4.57128e-11 8.49374e-10) (-2.52969e-10 -4.14113e-12 1.18011e-10) (-2.62288e-10 -3.20295e-11 -1.13243e-10) (-5.459e-11 -3.28132e-11 -1.04838e-10) (2.89294e-11 -3.75886e-11 -2.18108e-11) (2.88257e-10 -2.43113e-10 1.62905e-10) (8.16248e-10 -5.91425e-10 5.9426e-10) (9.02312e-10 -4.51648e-10 3.61329e-10) (6.84216e-10 -8.96822e-11 -1.3246e-10) (5.37128e-10 1.94666e-10 -5.58399e-10) (5.92423e-11 2.57173e-10 -5.99291e-10) (-4.2843e-10 2.69572e-10 -4.35345e-10) (-1.13739e-09 5.88178e-10 -2.39649e-10) (-1.82479e-09 1.0393e-09 1.04193e-10) (-1.95651e-09 8.23246e-10 2.13366e-10) (-3.85392e-10 1.32526e-10 1.73445e-11) (-1.164e-10 -2.97363e-11 6.42977e-11) (-7.81956e-11 -1.11255e-10 2.34547e-10) (-7.11539e-11 -1.85084e-10 4.19442e-10) (-5.64295e-11 -1.02598e-10 1.8411e-10) (-2.54315e-12 -1.55055e-11 4.50791e-12) (1.09318e-10 -5.62069e-11 -1.49992e-10) (8.64654e-10 -1.57748e-10 -9.6972e-10) (1.5639e-09 -2.9677e-10 -1.43468e-09) (1.16665e-09 -3.76827e-10 -7.53187e-10) (4.69901e-10 -2.38764e-10 -1.02794e-10) (1.02708e-10 -6.88247e-11 6.65114e-11) (-1.62747e-11 1.56934e-11 1.08267e-10) (-3.59083e-10 3.33237e-10 3.70148e-10) (-6.22085e-10 7.06212e-10 5.42777e-10) (-1.32984e-10 2.938e-10 2.29154e-10) (1.54132e-11 2.71307e-11 7.12172e-12) (3.69354e-11 2.50267e-11 -1.43658e-10) (-2.84191e-10 1.18926e-10 -1.11293e-09) (-9.80701e-10 3.63745e-10 -2.22591e-09) (-5.48522e-10 1.25452e-10 -1.15827e-09) (-3.1797e-11 -2.75967e-11 -4.81737e-11) (7.08128e-11 -1.98468e-10 2.74463e-10) (8.67481e-10 -6.38434e-10 1.96712e-09) (1.52699e-09 -3.13368e-10 2.87675e-09) (4.96786e-10 5.84658e-11 1.1731e-09) (-2.40512e-11 1.07772e-11 1.10053e-10) (-7.23423e-11 -1.19055e-11 1.22601e-12) (-5.64606e-11 -3.01762e-11 -3.07149e-11) (-3.46299e-13 -2.66985e-11 -4.52473e-12) (1.40067e-10 -1.8437e-10 1.12335e-10) (5.51017e-10 -5.76595e-10 5.21484e-10) (5.87254e-10 -5.31177e-10 4.40054e-10) (2.23735e-10 -1.11567e-10 6.79951e-12) (1.58286e-10 6.8664e-11 -2.45581e-10) (-9.44011e-11 3.7115e-10 -7.12009e-10) (-9.96411e-10 6.4974e-10 -8.86585e-10) (-2.28295e-09 1.21738e-09 -6.47133e-10) (-2.2376e-09 1.4676e-09 -1.44228e-10) (-1.17105e-09 7.8293e-10 -7.21484e-12) (-1.31153e-10 9.1612e-11 -2.03071e-11) (-4.18916e-11 -2.08983e-11 1.91584e-11) (-9.80301e-11 -1.76067e-10 1.84113e-10) (-8.80901e-11 -2.54109e-10 3.24993e-10) (-1.84584e-11 -1.02103e-10 1.38052e-10) (8.62276e-12 -1.20751e-11 7.53806e-12) (1.17204e-10 -1.63116e-11 -7.65189e-11) (6.7036e-10 -4.23933e-11 -5.34763e-10) (1.25575e-09 -2.09907e-10 -9.47393e-10) (9.78581e-10 -3.44593e-10 -6.26961e-10) (3.05713e-10 -1.87775e-10 -1.24399e-10) (1.95444e-11 -2.2507e-11 1.21012e-11) (-6.0079e-11 3.08408e-11 1.00398e-10) (-5.9491e-10 5.36557e-10 5.78438e-10) (-9.38989e-10 1.06976e-09 1.0768e-09) (-2.63397e-10 5.01643e-10 7.38023e-10) (5.47124e-11 4.94299e-11 1.2064e-10) (9.77833e-11 2.66095e-12 -7.78869e-11) (7.7158e-11 5.13794e-11 -1.20517e-09) (-1.01348e-09 2.17844e-10 -3.07282e-09) (-1.34314e-09 1.06018e-10 -2.33315e-09) (-3.32354e-10 -8.87492e-11 -4.19032e-10) (-1.67388e-11 -5.25394e-11 1.06754e-11) (2.06414e-10 -2.72013e-10 4.38372e-10) (9.50932e-10 -3.2239e-10 1.37576e-09) (1.08013e-09 3.8051e-11 1.33268e-09) (2.71925e-10 8.52887e-11 3.76416e-10) (1.96228e-12 5.18529e-12 1.94636e-11) (-5.19884e-12 -2.95192e-12 2.94362e-13) (-2.15735e-13 -1.88143e-11 -2.67244e-12) (8.20758e-11 -1.37806e-10 4.69508e-11) (3.37555e-10 -5.17271e-10 3.88792e-10) (3.75675e-10 -6.91119e-10 6.31131e-10) (9.26809e-11 -1.95765e-10 1.37416e-10) (3.86833e-13 -1.79645e-12 -2.00564e-11) (-3.114e-10 3.28629e-10 -5.6213e-10) (-1.89833e-09 1.25302e-09 -1.39902e-09) (-3.82026e-09 2.21425e-09 -1.25284e-09) (-2.84941e-09 2.07513e-09 -4.45194e-10) (-8.90299e-10 8.34329e-10 -1.28897e-10) (-7.34914e-11 8.73986e-11 -4.16429e-11) (-2.42071e-12 -5.23145e-12 -2.7082e-12) (-6.64056e-12 -1.06568e-10 1.2121e-11) (-9.32019e-13 -1.36879e-10 3.9038e-11) (1.4964e-11 -5.19258e-11 1.81848e-11) (3.25152e-11 -1.49945e-11 3.26571e-12) (1.42657e-10 -3.8241e-12 -1.9631e-11) (3.56029e-10 -2.13965e-11 -8.3664e-11) (5.27425e-10 -1.15935e-10 -1.57516e-10) (4.31271e-10 -1.75584e-10 -1.5053e-10) (1.27217e-10 -7.9231e-11 -4.59564e-11) (9.79617e-13 -1.19048e-12 1.91778e-13) (-8.85653e-11 6.87117e-11 6.38491e-11) (-6.70451e-10 6.70774e-10 4.99396e-10) (-8.95644e-10 1.13601e-09 1.10885e-09) (-2.50038e-10 5.74444e-10 1.09137e-09) (1.30184e-10 5.05637e-11 4.62576e-10) (8.59038e-11 -2.1161e-11 1.02316e-11) (2.62158e-10 -1.01278e-11 -7.59901e-10) (-4.03744e-10 1.67583e-10 -3.39884e-09) (-1.91944e-09 -3.3084e-11 -4.17028e-09) (-1.45533e-09 -3.46548e-10 -1.8483e-09) (-2.4334e-10 -1.86931e-10 -1.76076e-10) (1.78814e-11 -1.52361e-10 1.07894e-10) (4.82023e-10 -3.39789e-10 7.00145e-10) (9.37998e-10 -1.0309e-10 9.70233e-10) (7.28705e-10 1.75404e-10 5.40369e-10) (2.4512e-10 1.20239e-10 1.22238e-10) (3.5298e-11 1.75763e-11 3.74584e-12) (9.64649e-12 -4.29749e-12 -3.69564e-12) (2.92398e-11 -5.74618e-11 9.93076e-12) (1.20249e-10 -3.53201e-10 2.43659e-10) (2.78826e-10 -9.09148e-10 8.96503e-10) (1.82309e-10 -7.0297e-10 7.23243e-10) (-5.82707e-12 -5.46389e-11 3.89912e-11) (-2.3616e-10 1.15087e-10 -1.69325e-10) (-2.67151e-09 1.67775e-09 -1.45851e-09) (-6.11546e-09 3.69788e-09 -2.04506e-09) (-4.29264e-09 3.06836e-09 -9.2465e-10) (-1.04331e-09 1.03325e-09 -2.59638e-10) (-1.48166e-10 1.53926e-10 -8.6012e-11) (4.30935e-12 -3.92663e-12 -1.29552e-11) (6.49185e-11 -9.96055e-11 -4.51315e-11) (1.08039e-10 -1.73899e-10 -1.91847e-11) (1.17919e-10 -1.46204e-10 4.20384e-11) (1.54866e-10 -1.16421e-10 9.58947e-11) (1.88922e-10 -1.03392e-10 1.02887e-10) (1.65719e-10 -8.36303e-11 2.73455e-11) (1.6451e-10 -7.82255e-11 -6.14031e-11) (1.51267e-10 -5.99944e-11 -1.2355e-10) (4.65002e-11 -9.63832e-12 -5.39547e-11) (-1.31533e-12 6.22693e-12 -3.27056e-12) (-1.39302e-10 1.79463e-10 5.88491e-11) (-6.80063e-10 8.31037e-10 3.9064e-10) (-8.5217e-10 1.10815e-09 8.81005e-10) (-3.09794e-10 5.08531e-10 1.00358e-09) (8.12162e-11 3.08232e-12 6.77823e-10) (8.88343e-11 -5.74367e-11 9.39879e-11) (1.9008e-10 -5.05196e-11 -2.61196e-10) (4.57523e-10 8.07659e-11 -2.27582e-09) (-4.02801e-10 -7.61161e-12 -3.75613e-09) (-1.09563e-09 -4.2731e-10 -2.46049e-09) (-4.75528e-10 -3.78368e-10 -5.63469e-10) (-4.84225e-11 -1.70619e-10 2.73817e-11) (1.57067e-10 -3.05641e-10 3.97313e-10) (2.814e-10 -1.49924e-10 5.13181e-10) (1.47067e-10 5.52705e-11 1.90349e-10) (9.1012e-11 1.03566e-10 4.62652e-11) (5.34938e-11 7.63237e-11 -1.24502e-11) (1.44556e-11 1.37588e-11 -1.51695e-11) (1.09091e-11 -1.11327e-11 -9.5655e-12) (1.00643e-10 -1.64442e-10 5.00099e-11) (5.94404e-10 -8.80373e-10 7.35072e-10) (1.10266e-09 -1.55221e-09 1.8507e-09) (3.33141e-10 -6.10216e-10 8.61435e-10) (-5.13493e-11 -3.29455e-12 3.07551e-11) (-1.99341e-09 1.09241e-09 -6.47901e-10) (-7.56979e-09 4.59126e-09 -2.42867e-09) (-7.30715e-09 4.78813e-09 -1.87482e-09) (-2.18445e-09 1.71122e-09 -5.6493e-10) (-6.45085e-10 4.83621e-10 -1.42477e-10) (7.39629e-13 1.35274e-12 -1.76575e-13) (2.09639e-10 -9.46523e-11 5.65547e-11) (8.30671e-10 -4.12214e-10 3.65953e-10) (1.34566e-09 -6.79219e-10 8.51922e-10) (8.82276e-10 -5.77325e-10 7.68063e-10) (1.47867e-10 -2.33597e-10 2.04372e-10) (-1.01874e-11 -7.23913e-11 -4.38364e-12) (-2.91404e-11 -1.10277e-10 -1.86742e-10) (6.34873e-11 -1.03719e-10 -5.7875e-10) (7.63066e-11 3.55433e-11 -4.28222e-10) (-2.50136e-11 6.3044e-11 -6.70406e-11) (-3.11308e-10 3.49978e-10 8.00186e-11) (-1.0192e-09 1.13424e-09 5.44e-10) (-1.05157e-09 1.27224e-09 9.87291e-10) (-4.49344e-10 5.47321e-10 1.15706e-09) (-1.01393e-12 -6.49452e-11 1.07711e-09) (1.19448e-10 -1.74424e-10 3.31883e-10) (8.39337e-11 -6.25481e-11 -5.19363e-11) (5.76616e-10 -9.98789e-11 -1.31191e-09) (8.93851e-10 1.79535e-12 -3.25657e-09) (1.75888e-10 -1.90127e-10 -2.37743e-09) (-1.00267e-10 -2.66735e-10 -6.3081e-10) (-2.45387e-11 -1.69288e-10 -3.59385e-11) (2.126e-11 -2.6777e-10 2.15829e-10) (-2.05997e-11 -1.82422e-10 3.56303e-10) (-7.26804e-11 4.19735e-12 1.6808e-10) (-5.78324e-11 7.74831e-11 3.82245e-11) (-3.71829e-11 1.59149e-10 -6.67517e-11) (2.21857e-11 1.67357e-10 -2.09493e-10) (8.0077e-11 3.38742e-11 -2.42093e-10) (1.44241e-10 -1.10688e-10 -1.29958e-10) (5.83687e-10 -5.30181e-10 2.54106e-10) (1.98351e-09 -1.69713e-09 2.31762e-09) (1.76466e-09 -1.59445e-09 3.11577e-09) (5.12505e-11 -1.83393e-10 5.50189e-10) (-7.59275e-10 2.82415e-10 -7.18288e-12) (-6.18954e-09 3.15383e-09 -1.87835e-09) (-1.01417e-08 5.68975e-09 -2.88447e-09) (-5.1723e-09 3.1873e-09 -1.19809e-09) (-1.39649e-09 1.0194e-09 -1.50067e-10) (4.02598e-11 8.68301e-11 7.8871e-11) (1.39917e-09 -1.31648e-10 9.35399e-10) (3.42305e-09 -1.22677e-09 2.05918e-09) (2.4293e-09 -1.53866e-09 1.44333e-09) (4.1033e-10 -6.07218e-10 2.7087e-10) (-5.17457e-11 -1.54398e-10 -1.704e-11) (-1.16148e-10 -9.81259e-11 -9.63246e-11) (-3.00909e-11 -5.84514e-11 -1.47323e-10) (1.30496e-10 -4.74932e-11 -3.79284e-10) (1.9193e-10 7.96565e-11 -4.68172e-10) (-2.56631e-11 1.32433e-10 -1.47986e-10) (-5.91801e-10 5.00801e-10 5.09787e-11) (-1.94345e-09 1.34833e-09 8.05284e-10) (-1.5845e-09 1.25364e-09 1.22941e-09) (-4.913e-10 4.80315e-10 1.22127e-09) (9.89692e-11 -1.25606e-10 1.53768e-09) (2.60491e-10 -3.55875e-10 9.25988e-10) (5.13733e-11 -5.85713e-11 3.1552e-11) (3.45299e-10 -1.40827e-10 -7.48471e-10) (1.63186e-09 -2.02539e-10 -4.03568e-09) (1.79366e-09 -2.35015e-10 -4.28335e-09) (5.76015e-10 -3.19502e-10 -1.33883e-09) (4.59537e-11 -1.58697e-10 -1.13296e-10) (-1.00389e-10 -2.08576e-10 1.08063e-10) (-4.39202e-10 -2.8788e-10 4.78516e-10) (-5.10511e-10 -8.62474e-11 5.29379e-10) (-2.07798e-10 6.49177e-11 1.77147e-10) (-4.33488e-11 5.94116e-11 -2.70697e-12) (-5.89388e-14 1.117e-10 -1.44777e-10) (9.32459e-11 8.4646e-11 -3.54686e-10) (1.3609e-10 -3.87272e-11 -2.537e-10) (1.65174e-10 -8.85535e-11 -3.35754e-11) (7.40228e-10 -3.56335e-10 5.89086e-10) (1.4112e-09 -6.90245e-10 1.89811e-09) (3.23572e-10 -2.28682e-10 8.29172e-10) (-1.82687e-10 3.71313e-11 6.58288e-11) (-3.87766e-09 1.36832e-09 -1.15047e-09) (-1.08544e-08 4.34097e-09 -3.48953e-09) (-8.22299e-09 3.90264e-09 -2.11877e-09) (-2.30948e-09 1.06235e-09 -7.65225e-10) (-7.12519e-11 8.04298e-11 2.40543e-11) (4.68207e-10 -4.73503e-11 4.48529e-10) (1.56532e-09 -8.491e-10 1.19455e-09) (6.51071e-10 -7.8483e-10 4.838e-10) (3.36501e-11 -2.82598e-10 1.36466e-11) (-2.37175e-11 -1.30534e-10 -5.8785e-11) (2.16079e-11 -5.4231e-11 -4.03636e-11) (9.2382e-11 -3.505e-11 -3.92992e-11) (1.78977e-10 1.48198e-11 -7.10405e-11) (1.6094e-10 1.08019e-10 -1.28515e-10) (2.70514e-11 1.93286e-10 -1.33112e-10) (-3.09233e-10 3.74692e-10 -6.87918e-11) (-1.34973e-09 7.31319e-10 2.90292e-10) (-1.5385e-09 5.63337e-10 7.04393e-10) (-5.34909e-10 1.47565e-10 6.80296e-10) (-4.51366e-12 -5.30438e-11 1.07672e-09) (3.37176e-10 -1.37198e-10 1.33266e-09) (9.17858e-11 -2.09617e-11 2.31299e-10) (5.78828e-11 -1.57222e-11 -1.28702e-10) (7.88654e-10 -3.85652e-10 -3.09265e-09) (1.25276e-09 -1.02397e-09 -5.14938e-09) (3.46468e-10 -7.39589e-10 -1.78372e-09) (-1.01751e-11 -2.06151e-10 -1.31816e-10) (-3.97617e-11 -1.25845e-10 7.58533e-11) (-3.48945e-11 -9.67247e-11 1.88328e-10) (-3.64832e-12 -3.3776e-11 1.86172e-10) (3.22789e-13 1.06159e-11 1.15748e-10) (-9.61649e-12 2.00724e-11 3.87993e-11) (-1.32639e-11 1.54324e-11 3.73426e-12) (-2.26414e-11 2.04436e-11 -2.25549e-11) (-1.16463e-11 1.964e-11 -4.33581e-11) (1.77468e-11 1.08159e-11 -2.25544e-11) (1.27264e-10 5.4246e-12 2.39887e-11) (3.78399e-10 -5.42698e-11 2.58582e-10) (1.88881e-10 -5.22027e-11 2.20939e-10) (-3.04142e-12 9.95268e-13 8.90628e-12) (-4.01939e-10 1.75971e-10 -1.79874e-10) (-2.77916e-09 1.13023e-09 -1.43625e-09) (-5.04365e-09 1.95782e-09 -2.23751e-09) (-5.11139e-10 5.2352e-10 -7.53523e-10) (-4.95727e-10 2.15214e-10 -2.33525e-10) (-3.51508e-10 -3.07864e-11 9.61459e-11) (-4.19275e-10 -2.81611e-10 3.39563e-10) (-2.70969e-10 -4.03024e-10 2.7567e-10) (-2.32623e-11 -3.66117e-10 7.95769e-11) (1.91719e-10 -4.07673e-10 -1.88275e-11) (3.49103e-10 -2.89974e-10 -2.5516e-11) (3.93928e-10 -6.52298e-11 2.02076e-11) (4.14038e-10 1.82804e-10 4.17426e-11) (3.21252e-10 4.65653e-10 -2.33948e-12) (6.22454e-11 7.05146e-10 -9.53975e-11) (-2.74634e-10 6.3999e-10 -1.21549e-10) (-4.84038e-10 3.37073e-10 -3.36665e-11) (-5.6399e-10 5.26133e-11 1.03951e-10) (-3.96071e-10 -1.14102e-10 2.55928e-10) (-1.7125e-10 -9.76703e-11 4.90925e-10) (7.55431e-11 1.30812e-10 9.9546e-10) (1.44644e-10 3.20189e-10 7.14462e-10) (6.72825e-12 4.23667e-11 2.18406e-11) (-6.49843e-11 -1.4101e-11 -3.35025e-10) (-3.64822e-10 -5.56561e-10 -1.3494e-09) (-3.28834e-10 -9.02783e-10 -9.4306e-10) (-2.64903e-12 -7.73192e-10 -2.82978e-10) (2.4858e-10 -5.35487e-10 -1.96512e-11) (2.69145e-10 -2.25229e-10 5.06341e-11) (1.21496e-10 -2.28342e-11 5.06931e-11) (4.40389e-11 4.15927e-11 5.85895e-11) (-3.63345e-12 1.03059e-10 9.82716e-11) (-3.98317e-11 8.80304e-11 6.54742e-11) (-2.17339e-11 2.57254e-11 6.91141e-12) (-7.04057e-12 6.67908e-12 -7.04076e-12) (1.4532e-12 3.58469e-12 -7.25871e-12) (1.59148e-11 4.14716e-12 -2.45037e-12) (6.09623e-11 1.20781e-12 2.6506e-11) (6.01493e-11 -6.6268e-12 4.34722e-11) (1.17781e-11 -9.67054e-13 6.02804e-12) (9.34197e-12 6.66254e-12 -1.73061e-11) (2.79725e-11 1.09379e-10 -2.33295e-10) (-1.31422e-10 4.0574e-10 -6.89714e-10) (4.09225e-11 3.13703e-10 -3.39921e-10) (-1.55199e-10 1.51622e-10 -8.74512e-11) (-5.77604e-10 3.63654e-11 1.14073e-10) (-1.24117e-09 -5.70907e-10 5.4227e-10) (-1.38993e-09 -1.51151e-09 7.35636e-10) (-1.03681e-09 -1.86817e-09 4.98455e-10) (-4.86589e-10 -1.16184e-09 1.80921e-10) (-6.66123e-11 -2.85683e-10 3.25559e-11) (2.41728e-11 -2.00516e-11 5.8996e-12) (2.69534e-10 1.19796e-10 3.28741e-11) (8.00782e-10 7.04923e-10 6.47638e-11) (7.53987e-10 1.10544e-09 1.01419e-11) (1.93101e-10 6.96399e-10 -4.07382e-11) (-7.04714e-11 1.89335e-10 -2.26575e-11) (-1.92992e-10 5.0141e-11 5.3113e-13) (-4.61526e-10 -3.51884e-11 1.14774e-10) (-5.64917e-10 4.42103e-11 4.09904e-10) (-4.94065e-10 4.30063e-10 9.64164e-10) (-2.27982e-10 8.71218e-10 1.26449e-09) (-9.12118e-11 3.8141e-10 4.04232e-10) (-2.47752e-11 5.21142e-12 2.40759e-12) (-1.63927e-10 -3.73458e-10 -2.38097e-10) (1.1219e-10 -1.68378e-09 -8.95065e-10) (1.12782e-09 -2.37758e-09 -1.29544e-09) (1.27363e-09 -1.42126e-09 -9.40571e-10) (4.30699e-10 -2.69499e-10 -2.54517e-10) (2.83006e-11 3.58813e-12 -5.57756e-12) (-1.62622e-12 6.52407e-11 5.48601e-11) (-6.34588e-11 1.94058e-10 2.07206e-10) (-5.37573e-11 1.28753e-10 1.40609e-10) (-1.7245e-11 2.57041e-11 1.54063e-11) (-2.07659e-11 1.67944e-11 -1.55702e-11) (-3.65219e-11 3.22685e-11 -4.752e-11) (-8.62983e-12 1.61478e-11 -1.70868e-11) (2.68083e-12 2.06131e-12 -4.27518e-13) (3.21051e-11 -9.06956e-13 5.94757e-12) (8.93128e-11 -1.08908e-12 -1.63218e-11) (2.17811e-10 4.92929e-11 -1.65376e-10) (4.18063e-10 2.51208e-10 -5.45939e-10) (3.55181e-10 4.27662e-10 -6.6175e-10) (4.35729e-13 1.17746e-10 -1.43525e-10) (-1.04824e-10 1.73844e-10 -1.44941e-10) (-1.34047e-10 6.14482e-11 -4.80483e-11) (-2.80297e-10 -1.3724e-10 4.58906e-11) (-1.0508e-09 -1.10455e-09 4.58247e-10) (-2.25485e-09 -2.54039e-09 1.01866e-09) (-2.20414e-09 -2.40495e-09 7.28886e-10) (-8.29647e-10 -1.01921e-09 1.38848e-10) (-5.91217e-11 -1.38435e-10 1.81849e-12) (2.10284e-11 -2.36399e-12 5.4397e-12) (2.97713e-10 2.17532e-10 8.05863e-11) (7.28137e-10 8.2809e-10 1.27507e-10) (6.3853e-10 1.01877e-09 -5.06699e-11) (1.47247e-10 4.77235e-10 -1.17265e-10) (-7.77765e-11 1.18308e-10 -4.30211e-11) (-5.71216e-10 1.30597e-10 4.76775e-11) (-1.7924e-09 3.86614e-10 6.03956e-10) (-2.21071e-09 1.07775e-09 1.52636e-09) (-1.22232e-09 1.3998e-09 1.85038e-09) (-1.71236e-10 6.77384e-10 9.85676e-10) (4.70151e-11 1.6514e-11 1.08394e-10) (3.40629e-10 -4.30376e-10 -9.55605e-11) (1.72633e-09 -2.33929e-09 -1.41181e-09) (2.53954e-09 -3.01683e-09 -2.77664e-09) (1.42731e-09 -1.39325e-09 -2.01494e-09) (2.42263e-10 -1.8332e-10 -5.36157e-10) (-1.86329e-12 5.95947e-12 -2.67127e-11) (-1.63288e-11 2.0488e-11 1.70983e-11) (-2.47952e-11 4.64222e-11 1.06998e-10) (-3.18103e-12 2.35499e-11 1.15308e-10) (-6.51563e-12 2.80393e-12 3.81147e-11) (-1.98878e-11 5.70036e-12 7.70078e-12) (-1.00555e-10 5.85824e-11 -2.92086e-11) (-1.21378e-10 1.36688e-10 -8.86377e-11) (-1.33569e-11 9.20317e-11 -6.24537e-11) (6.30088e-11 4.79063e-11 -3.70267e-11) (2.21369e-10 2.54227e-11 -4.74653e-11) (3.22654e-10 -1.14628e-11 -8.01411e-11) (2.16869e-10 -4.45338e-13 -1.12623e-10) (8.17303e-11 3.98308e-11 -1.06627e-10) (3.80695e-11 6.55124e-11 -1.48457e-10) (-6.27283e-11 9.12525e-11 -1.67928e-10) (-1.20109e-10 2.26233e-11 -1.02744e-10) (-3.15477e-10 -1.59684e-10 -3.32319e-11) (-1.1305e-09 -9.21275e-10 2.99389e-10) (-1.94971e-09 -1.88247e-09 7.26284e-10) (-1.5551e-09 -1.9271e-09 5.11554e-10) (-6.06059e-10 -1.16424e-09 4.71457e-11) (-9.96283e-11 -3.84198e-10 -8.78908e-11) (1.21235e-12 -3.21041e-11 -1.82159e-11) (2.83376e-12 4.11963e-12 1.12477e-12) (3.68997e-11 1.08039e-10 5.97102e-11) (8.84275e-11 2.5357e-10 1.14134e-10) (9.60456e-11 2.48961e-10 4.31018e-11) (4.43715e-11 1.60332e-10 -1.52249e-11) (-3.18982e-11 1.24487e-10 -5.94892e-12) (-4.09634e-10 3.91711e-10 1.29872e-10) (-1.73905e-09 1.18993e-09 7.67817e-10) (-2.0209e-09 1.38508e-09 1.30577e-09) (-4.84199e-10 4.02478e-10 6.59956e-10) (5.38201e-11 -2.57808e-11 1.24132e-10) (6.80678e-10 -5.38551e-10 -3.4136e-11) (1.89478e-09 -1.48028e-09 -1.08539e-09) (1.93968e-09 -1.26929e-09 -1.91517e-09) (8.55491e-10 -3.97252e-10 -1.34364e-09) (1.05408e-10 -2.39452e-11 -3.96594e-10) (-1.37893e-11 1.20715e-12 -3.68029e-11) (-9.50713e-12 -4.06343e-12 4.11998e-12) (-1.08614e-11 -2.98984e-11 5.13036e-11) (9.45162e-12 -4.81521e-11 8.56361e-11) (-1.23659e-12 -1.2084e-11 3.54177e-11) (-3.52223e-11 1.99564e-11 2.23138e-11) (-2.64079e-10 2.05471e-10 3.76205e-11) (-3.77705e-10 3.70225e-10 3.14097e-11) (-8.93956e-11 1.78706e-10 1.88083e-11) (4.07947e-11 6.11856e-11 1.21755e-11) (2.66515e-10 5.74621e-11 1.87909e-11) (5.33293e-10 -4.06396e-12 -3.33258e-11) (4.35439e-10 -1.74891e-11 -1.26171e-10) (1.78448e-10 2.50207e-11 -1.43568e-10) (7.15995e-12 7.11954e-11 -4.92398e-10) (-1.63573e-10 4.20066e-10 -1.1106e-09) (-2.80512e-10 3.78018e-10 -8.50973e-10) (-1.87807e-10 6.23819e-11 -2.3056e-10) (-1.98235e-10 -9.70426e-11 -8.49347e-12) (-5.91431e-10 -7.37622e-10 4.05566e-10) (-9.08845e-10 -2.10975e-09 1.04138e-09) (-6.45891e-10 -2.52226e-09 7.56844e-10) (-2.25866e-10 -1.15572e-09 -1.7206e-11) (-4.84005e-11 -1.73756e-10 -1.49486e-10) (-2.64021e-11 3.08113e-11 -1.18067e-10) (-3.14959e-11 1.05329e-10 -5.21382e-11) (-4.26072e-11 1.23942e-10 4.18419e-11) (-5.70363e-11 1.20257e-10 1.18814e-10) (-5.19302e-11 8.58552e-11 1.05086e-10) (-4.37866e-11 8.14483e-11 6.962e-11) (-5.93786e-11 1.56432e-10 8.50037e-11) (-1.10297e-10 3.177e-10 1.69362e-10) (-1.42365e-10 3.45691e-10 2.40882e-10) (-5.22148e-11 1.28251e-10 1.47212e-10) (8.58262e-12 2.82511e-12 2.96573e-11) (6.39767e-11 -4.99455e-11 4.79959e-12) (2.12512e-10 -1.68457e-10 -1.31563e-10) (2.83777e-10 -1.94557e-10 -3.38041e-10) (2.04885e-10 -1.15037e-10 -3.84939e-10) (7.36801e-11 -4.92988e-11 -2.22365e-10) (5.55391e-12 -2.64326e-11 -5.798e-11) (-8.47522e-12 -2.52718e-11 -7.99333e-12) (-3.35801e-11 -7.00404e-11 3.24913e-11) (-6.43379e-11 -1.01487e-10 1.02447e-10) (-5.4188e-11 -4.32866e-11 1.00389e-10) (-2.50219e-11 1.75816e-11 4.66492e-11) (-1.85612e-11 9.51464e-11 3.31203e-11) (1.10765e-11 2.51059e-10 2.06218e-11) (7.73816e-11 2.68079e-10 4.08196e-11) (1.42839e-10 1.65383e-10 9.73679e-11) (2.27789e-10 6.52571e-11 1.85895e-10) (2.15351e-10 -5.12639e-11 1.8739e-10) (7.44698e-11 -5.47265e-11 3.8103e-11) (2.64303e-11 -2.65995e-11 -5.06933e-11) (1.17679e-10 3.92125e-13 -7.95069e-12) (9.58891e-11 2.71301e-13 9.1662e-13) (9.9944e-11 2.94251e-13 3.65039e-12) (1.56448e-10 -6.45326e-14 -3.96818e-13) (3.35354e-10 -1.41784e-12 -2.53295e-12) (7.46799e-10 -5.85324e-12 3.48836e-11) (1.41751e-09 -1.36054e-11 1.76771e-10) (1.99099e-09 -1.15407e-11 3.70629e-10) (1.9664e-09 -6.16685e-12 3.63039e-10) (1.44205e-09 -2.26339e-12 1.38428e-10) (9.53551e-10 1.10978e-12 -2.41661e-11) (6.72487e-10 4.3085e-12 -2.28318e-11) (6.12015e-10 5.7863e-12 6.99443e-11) (7.9399e-10 2.89888e-12 1.73093e-10) (1.08641e-09 -1.68144e-12 1.68118e-10) (1.30501e-09 -4.03061e-12 2.33922e-11) (1.33043e-09 -3.17742e-12 -8.88035e-11) (1.13635e-09 2.32594e-12 -1.82976e-11) (8.06426e-10 3.39174e-12 9.59137e-11) (4.4132e-10 1.44609e-12 1.38011e-10) (1.82678e-10 6.41633e-13 1.08511e-10) (6.44152e-11 -1.34547e-13 6.18863e-11) (2.76808e-11 -6.13842e-14 2.02613e-11) (4.30668e-11 5.1278e-14 -1.52159e-12) (1.68737e-10 2.02976e-12 -8.38186e-11) (3.8401e-10 9.5988e-12 -2.70338e-10) (5.02587e-10 1.66862e-11 -4.19159e-10) (4.22356e-10 1.77328e-11 -3.82255e-10) (2.47155e-10 1.12088e-11 -2.06881e-10) (1.25002e-10 4.41793e-12 -7.06328e-11) (8.56172e-11 1.52634e-12 -2.19083e-11) (8.34368e-11 5.46125e-13 -1.15882e-11) (8.80238e-11 8.3644e-14 -1.5784e-11) (1.04634e-10 -7.05499e-13 -2.24486e-11) (1.47396e-10 -1.92885e-12 -2.42045e-11) (2.10566e-10 -2.71411e-12 -1.47502e-11) (2.52134e-10 -1.83749e-12 2.28551e-13) (2.40992e-10 2.00992e-14 1.42581e-12) (1.99635e-10 6.338e-13 -9.71147e-12) (1.55316e-10 6.10528e-13 -1.50512e-11) (1.91969e-09 -1.27835e-12 -1.76794e-10) (1.46785e-09 -5.20152e-12 2.65969e-13) (1.3005e-09 -2.53989e-12 7.10881e-11) (1.6348e-09 -4.38736e-12 3.03459e-11) (2.9253e-09 -2.38599e-11 -7.48134e-11) (5.81918e-09 -8.92157e-11 -2.7517e-11) (1.06703e-08 -2.12336e-10 6.39965e-10) (1.61397e-08 -3.01053e-10 1.99557e-09) (1.87036e-08 -2.97641e-10 2.64348e-09) (1.66276e-08 -2.36946e-10 1.51189e-09) (1.2391e-08 -1.25805e-10 2.48486e-11) (8.69335e-09 -8.82037e-12 -2.18001e-10) (7.00089e-09 4.91528e-11 6.05071e-10) (8.07498e-09 2.35022e-11 1.6727e-09) (1.06208e-08 -2.67661e-13 1.91494e-09) (1.26808e-08 -9.58545e-12 7.03839e-10) (1.35969e-08 -4.66783e-11 -6.12874e-10) (1.34214e-08 -3.98683e-11 -4.34779e-10) (1.16059e-08 -5.74088e-12 6.94576e-10) (7.55165e-09 3.76626e-11 1.34558e-09) (3.33881e-09 2.09372e-11 1.02248e-09) (1.09011e-09 -2.66245e-12 4.70361e-10) (3.95509e-10 -7.77948e-12 1.3433e-10) (4.17532e-10 -9.64332e-12 -4.8829e-11) (1.36749e-09 -7.36337e-12 -6.6704e-10) (3.68761e-09 5.75095e-11 -2.14852e-09) (6.16697e-09 1.76211e-10 -3.52337e-09) (6.96237e-09 2.65767e-10 -3.64305e-09) (5.54099e-09 2.30479e-10 -2.43371e-09) (3.41178e-09 1.23052e-10 -9.86487e-10) (2.1289e-09 4.08692e-11 -2.02743e-10) (1.60266e-09 3.8158e-12 2.27776e-11) (1.31971e-09 -6.35349e-12 -1.71854e-11) (1.21607e-09 -1.31115e-11 -1.04714e-10) (1.42615e-09 -2.54765e-11 -1.62923e-10) (1.98278e-09 -3.48468e-11 -1.73148e-10) (2.6058e-09 -2.63736e-11 -1.48204e-10) (2.88705e-09 8.14432e-13 -1.88661e-10) (2.78863e-09 1.46081e-11 -3.02911e-10) (2.43712e-09 8.87433e-12 -3.27682e-10) (1.53461e-09 -1.74445e-11 -2.13883e-10) (1.06902e-09 -1.9169e-11 -3.11725e-11) (7.70018e-10 -1.1445e-11 5.86595e-11) (7.48505e-10 -8.35314e-12 4.35261e-11) (1.15439e-09 -2.0124e-11 -5.05361e-11) (2.19648e-09 -6.63075e-11 -1.63571e-10) (3.89551e-09 -1.57855e-10 -1.82347e-11) (5.96238e-09 -2.51508e-10 5.888e-10) (7.32219e-09 -2.80476e-10 1.18881e-09) (6.81878e-09 -2.26758e-10 8.96125e-10) (5.20022e-09 -1.25493e-10 1.10783e-10) (3.65933e-09 -2.5556e-11 -1.99769e-10) (2.76051e-09 1.97629e-11 1.42656e-10) (3.14422e-09 -3.83303e-12 8.13495e-10) (4.42546e-09 2.10389e-12 1.28553e-09) (5.40361e-09 4.77312e-11 7.17545e-10) (5.8867e-09 2.64985e-11 -3.10905e-10) (6.17677e-09 -4.19503e-11 -6.21883e-10) (6.07517e-09 -5.80632e-11 -2.57154e-11) (4.80183e-09 3.31404e-12 6.8744e-10) (2.5714e-09 1.83131e-11 7.18703e-10) (9.53443e-10 -1.59559e-12 3.68889e-10) (3.364e-10 -1.24548e-11 1.16974e-10) (2.17699e-10 -1.40692e-11 4.92154e-14) (4.39679e-10 -2.38132e-11 -1.92139e-10) (1.21915e-09 -2.42063e-11 -7.59874e-10) (2.50258e-09 2.95115e-11 -1.52125e-09) (3.49668e-09 1.31324e-10 -1.82427e-09) (3.43111e-09 1.82799e-10 -1.41336e-09) (2.4643e-09 1.34136e-10 -6.45889e-10) (1.57576e-09 5.60603e-11 -9.42932e-11) (1.13683e-09 9.48299e-12 1.18743e-10) (8.84224e-10 -4.08191e-12 1.07321e-10) (7.17769e-10 -6.19973e-12 2.27888e-11) (7.20081e-10 -1.19099e-11 -3.99075e-11) (9.58821e-10 -1.80136e-11 -7.90662e-11) (1.38025e-09 -1.39788e-11 -1.07094e-10) (1.76466e-09 4.79755e-12 -1.67599e-10) (1.95957e-09 1.45423e-11 -2.81563e-10) (1.89768e-09 -3.26146e-13 -3.35434e-10) (1.97969e-10 -9.81607e-12 -5.52428e-11) (7.85105e-11 -6.21856e-12 -3.54086e-12) (2.73708e-11 -2.57435e-12 1.13362e-11) (1.55071e-11 -1.37468e-12 9.5095e-12) (2.74951e-11 -2.19149e-12 2.18735e-12) (1.16061e-10 -1.03852e-11 -2.46386e-11) (2.99933e-10 -3.1436e-11 -3.79423e-11) (5.52466e-10 -5.76377e-11 6.70125e-11) (8.32312e-10 -7.29504e-11 2.7118e-10) (7.96545e-10 -5.453e-11 2.75955e-10) (4.78092e-10 -2.05122e-11 6.50919e-11) (2.41403e-10 -4.02304e-13 -3.29812e-11) (1.11022e-10 3.3206e-12 -1.19933e-12) (1.58778e-10 -1.88611e-12 1.03852e-10) (4.23901e-10 4.85019e-12 3.44589e-10) (5.76003e-10 3.52983e-11 2.47876e-10) (6.02305e-10 3.34112e-11 -5.33531e-11) (7.18118e-10 -4.13769e-12 -2.61489e-10) (7.66159e-10 -2.71034e-11 -1.6406e-10) (6.38123e-10 -1.53572e-11 9.07169e-11) (2.98564e-10 8.33514e-13 1.69766e-10) (5.89079e-11 -1.02909e-12 8.413e-11) (2.27653e-12 -2.50612e-12 1.99635e-11) (-2.12874e-13 -3.93006e-13 4.1175e-13) (2.4952e-12 -2.65701e-12 -1.08975e-11) (4.54014e-11 -9.99623e-12 -1.16274e-10) (1.73244e-10 -5.53926e-12 -3.13371e-10) (3.67009e-10 2.53335e-11 -4.55361e-10) (4.63346e-10 6.31654e-11 -4.0236e-10) (2.84275e-10 4.90969e-11 -1.62745e-10) (9.2158e-11 1.40856e-11 -1.08651e-11) (4.61577e-11 2.70848e-12 2.48691e-11) (3.53351e-11 -5.71884e-13 3.03357e-11) (2.10967e-11 -4.33089e-13 1.3415e-11) (1.84059e-11 -4.33248e-13 4.5724e-12) (4.13911e-11 -1.3377e-12 1.49758e-12) (1.13298e-10 -1.81481e-12 -3.74671e-12) (2.1999e-10 1.65486e-12 -2.39426e-11) (3.0097e-10 3.48502e-12 -6.72286e-11) (3.02267e-10 -3.87397e-12 -9.45003e-11) (5.79423e-11 -7.99988e-12 -4.39118e-11) (8.07982e-12 -2.32277e-12 -4.44386e-12) (-2.7017e-13 -5.87994e-13 1.49482e-12) (-8.16647e-12 -1.94327e-12 1.2463e-11) (-3.40132e-12 -8.64733e-13 3.77684e-12) (8.60334e-14 -1.94985e-13 -3.12599e-13) (6.40324e-12 -2.63005e-12 -6.97067e-12) (9.75132e-12 -3.73207e-12 -1.58346e-12) (3.9125e-11 -1.07254e-11 2.9766e-11) (1.12756e-10 -1.74942e-11 1.00334e-10) (1.09809e-10 -7.86653e-12 5.91963e-11) (4.29761e-11 -2.60274e-13 1.66761e-12) (3.93864e-12 1.39467e-13 -4.59886e-13) (2.63421e-12 -1.55243e-12 1.54702e-11) (5.51415e-11 2.82764e-12 1.72966e-10) (1.43272e-10 3.86698e-11 1.94011e-10) (9.10194e-11 2.47386e-11 1.28061e-11) (1.36616e-10 8.30538e-12 -1.18223e-10) (2.03258e-10 -2.14353e-11 -1.61661e-10) (1.86035e-10 -2.0148e-11 -9.27867e-12) (1.02654e-10 -8.67267e-12 9.1249e-11) (3.18812e-12 -5.38478e-12 1.11446e-10) (-6.80273e-11 -1.15946e-11 9.28558e-11) (-6.94728e-11 -1.18015e-11 3.3657e-11) (-3.9286e-11 -6.514e-12 -8.91535e-12) (-4.81312e-11 -7.14851e-12 -5.97407e-11) (-6.86125e-11 -6.37846e-12 -1.57016e-10) (-4.03802e-11 6.25776e-12 -2.13344e-10) (4.91112e-11 3.12557e-11 -2.2543e-10) (1.13956e-10 4.91071e-11 -1.8163e-10) (3.47115e-11 1.6733e-11 -3.57295e-11) (5.25768e-13 4.31758e-13 3.52765e-13) (-3.01196e-12 3.49924e-14 9.78886e-12) (-6.25302e-12 -2.9513e-13 1.1258e-11) (-4.02241e-12 5.5548e-14 4.97691e-12) (-6.75815e-13 2.93255e-14 1.50687e-12) (1.11573e-12 2.6791e-14 9.73325e-13) (1.25365e-11 4.08765e-13 -6.34406e-13) (4.85689e-11 6.31578e-13 -2.16667e-11) (8.54591e-11 -4.17404e-12 -5.87184e-11) (1.2488e-10 -2.01115e-11 -1.37412e-10) (6.25954e-11 -1.40066e-11 -6.75097e-11) (2.7471e-12 -1.43686e-12 -2.07484e-12) (-2.32873e-12 -1.66655e-12 4.69636e-12) (-9.76647e-12 -3.19799e-12 1.37342e-11) (-2.10702e-12 -7.18181e-13 1.22109e-12) (-2.81819e-12 -9.28056e-13 -3.565e-12) (-1.28398e-11 -2.81637e-12 -9.27363e-12) (-1.51804e-11 -3.71491e-12 3.46547e-12) (-2.49654e-12 -4.75009e-12 2.0652e-11) (4.5913e-11 -8.07303e-12 4.66401e-11) (7.6094e-11 -4.97128e-12 2.65389e-11) (9.20572e-12 -1.19414e-12 2.49843e-12) (-7.088e-12 -4.23369e-12 1.02874e-11) (-3.21924e-11 -6.20372e-12 9.48115e-11) (5.02097e-11 4.75744e-11 1.68545e-10) (6.1652e-11 4.72248e-11 3.64535e-11) (4.43501e-11 2.7837e-11 -7.83493e-11) (1.06693e-10 -1.70664e-11 -2.5347e-10) (1.97599e-10 -4.52071e-11 -8.26357e-11) (3.22765e-10 -4.95006e-11 1.62376e-10) (1.63974e-10 -3.0851e-11 2.89385e-10) (-1.13966e-11 -2.3765e-11 1.79866e-10) (-4.8051e-11 -1.78965e-11 7.07999e-11) (-2.87706e-11 -7.0758e-12 1.05743e-11) (-3.86249e-11 -4.92743e-12 -1.88564e-11) (-1.21789e-10 -5.74903e-12 -1.044e-10) (-2.29341e-10 -9.44761e-14 -2.00835e-10) (-1.46967e-10 1.75259e-11 -1.68456e-10) (-3.84924e-12 2.55749e-11 -9.43122e-11) (7.94134e-11 3.8559e-11 -9.16851e-11) (5.50098e-11 1.62351e-11 -2.90333e-11) (5.58048e-12 1.00124e-12 2.71527e-13) (1.94011e-14 -2.47546e-15 1.19878e-12) (-3.19679e-12 2.49921e-13 4.21118e-12) (-6.59374e-12 9.38504e-13 9.17878e-12) (-4.35334e-12 1.19404e-12 1.19656e-11) (5.5509e-13 5.45566e-13 3.87685e-12) (4.93354e-12 2.11669e-13 -1.71011e-12) (5.86881e-11 -5.10432e-12 -5.70748e-11) (7.76465e-11 -2.3547e-11 -1.30495e-10) (1.81217e-10 -3.87665e-11 -2.75914e-10) (7.63521e-11 -1.75281e-11 -1.11326e-10) (2.08022e-12 -1.48483e-12 -2.48725e-12) (-2.31844e-12 -2.2667e-12 5.22879e-12) (-6.59532e-12 -2.26496e-12 9.43817e-12) (-9.50307e-12 6.41237e-14 6.87809e-13) (-8.27427e-11 3.85444e-12 -2.31298e-11) (-1.93e-10 -2.62918e-12 -1.42811e-11) (-6.19698e-11 -8.9059e-12 2.46925e-11) (8.43811e-12 -6.53344e-12 2.21097e-11) (9.39591e-11 -1.46849e-11 5.35566e-11) (2.60693e-11 -6.2955e-12 1.66871e-11) (-4.12729e-11 -1.59104e-11 2.36796e-11) (-3.95743e-10 -5.25144e-11 1.59638e-10) (-1.34251e-10 4.74294e-11 1.11124e-10) (1.49638e-11 6.23172e-11 1.87074e-11) (4.45439e-11 9.26115e-11 -1.30792e-10) (8.22171e-11 8.64528e-12 -3.90979e-10) (1.78715e-10 -7.473e-11 -1.30316e-10) (6.35075e-10 -1.64976e-10 2.64916e-10) (1.00966e-09 -1.81065e-10 9.51605e-10) (4.21213e-10 -9.70374e-11 6.74372e-10) (4.45724e-11 -3.96566e-11 2.00556e-10) (-7.54566e-12 -8.45307e-12 2.88046e-11) (-6.89552e-12 -1.21048e-12 2.20122e-14) (-6.93731e-11 1.98173e-12 -4.70347e-11) (-3.06347e-10 1.37481e-11 -1.8781e-10) (-4.76728e-10 2.82112e-11 -2.39124e-10) (-1.83716e-10 3.18486e-11 -1.0952e-10) (-1.31563e-13 1.13438e-11 -2.23704e-11) (1.00683e-10 2.67187e-11 -5.21594e-11) (1.68373e-10 1.82317e-11 -5.29453e-11) (6.1431e-11 3.4522e-12 -1.65581e-11) (2.90476e-12 4.76053e-13 -2.26262e-13) (-1.763e-12 8.91034e-13 3.66182e-12) (-2.29914e-11 5.87248e-12 4.00159e-11) (-3.60666e-11 7.39404e-12 6.58042e-11) (-7.73713e-12 9.05125e-13 1.23111e-11) (1.40276e-12 -1.00794e-12 -3.49268e-12) (-3.20548e-12 -1.32785e-11 -3.77736e-11) (1.2613e-10 -5.09844e-11 -3.22531e-10) (2.05824e-10 -4.1227e-11 -4.13297e-10) (5.24889e-11 -1.50809e-11 -1.06132e-10) (2.87632e-13 -8.99918e-13 -8.8556e-13) (-4.31272e-12 -2.13244e-12 7.20425e-12) (-1.33597e-11 2.19052e-12 9.82621e-12) (-7.63517e-11 1.76371e-11 -1.41475e-13) (-2.36816e-10 2.519e-11 -1.52979e-11) (-1.18133e-10 -6.51076e-12 1.75582e-11) (-1.84856e-12 -5.34107e-12 1.12748e-11) (7.51829e-11 -2.19487e-11 5.57506e-11) (4.99808e-11 -1.54065e-11 3.92966e-11) (-5.31783e-11 -1.90281e-11 2.77943e-11) (-1.31689e-09 -1.50503e-10 1.55612e-10) (-1.41231e-09 1.21709e-10 9.27449e-11) (-1.41087e-10 1.53624e-10 -4.26938e-11) (6.57536e-11 2.26458e-10 -2.76008e-10) (1.63807e-10 6.91842e-11 -5.24687e-10) (1.51349e-10 -8.47953e-11 -1.44065e-10) (5.21309e-10 -2.48204e-10 2.88694e-10) (1.70707e-09 -5.12509e-10 1.67746e-09) (2.00323e-09 -4.06798e-10 2.04462e-09) (7.91975e-10 -1.47762e-10 9.15904e-10) (1.05616e-10 -2.89749e-11 1.69267e-10) (1.65941e-12 -8.51532e-13 3.9057e-12) (-7.5702e-12 2.28498e-12 -9.9137e-12) (-1.42122e-10 2.80812e-11 -1.19036e-10) (-4.62634e-10 5.6642e-11 -2.33186e-10) (-4.01107e-10 4.80031e-11 -1.40742e-10) (-4.13661e-11 1.12378e-11 -1.84165e-11) (1.82647e-11 4.94864e-12 -9.177e-12) (2.402e-10 1.13599e-11 -6.9801e-11) (3.36103e-10 8.85188e-12 -1.17248e-10) (1.36e-10 1.21109e-11 -5.68119e-11) (7.45045e-12 3.02006e-12 -1.23239e-12) (-1.24506e-11 8.53216e-12 2.41542e-11) (-1.30474e-10 2.75001e-11 1.75285e-10) (-1.664e-10 8.22112e-12 1.72996e-10) (-3.88371e-11 -6.83931e-12 1.57659e-11) (-7.86689e-11 -4.33519e-11 -5.4793e-11) (2.08521e-11 -6.53561e-11 -2.29612e-10) (1.46273e-10 -3.91521e-11 -3.86571e-10) (6.62679e-11 -7.79417e-12 -1.73232e-10) (-1.02609e-14 -1.82572e-12 -9.06378e-12) (-7.29867e-12 -1.6443e-12 3.9416e-12) (-2.05986e-11 4.05054e-12 1.4997e-11) (-2.96238e-11 1.52244e-11 7.86933e-12) (-5.43611e-11 2.06379e-11 3.37458e-13) (-2.95434e-11 2.6371e-12 5.49606e-12) (-6.37345e-14 -3.48531e-12 6.84022e-12) (6.50606e-11 -2.7311e-11 5.03847e-11) (7.3181e-11 -2.79722e-11 5.10014e-11) (-1.99058e-11 -9.33649e-12 1.30034e-11) (-1.44667e-09 -1.06838e-10 2.49758e-11) (-3.36988e-09 1.72605e-10 -4.29922e-10) (-8.94274e-10 4.15218e-10 -4.84974e-10) (1.57201e-11 3.78093e-10 -5.52958e-10) (2.38979e-10 1.64962e-10 -6.6459e-10) (6.67322e-11 -5.23511e-11 -1.28176e-10) (1.2793e-10 -1.67223e-10 1.48888e-10) (1.16601e-09 -7.75589e-10 1.7809e-09) (3.0991e-09 -9.5889e-10 3.47505e-09) (2.82249e-09 -4.01061e-10 2.67681e-09) (7.64348e-10 -7.25721e-11 8.07378e-10) (4.17539e-11 -6.14986e-12 5.25194e-11) (-1.80581e-13 8.32629e-13 -3.05759e-12) (-4.72033e-11 2.99063e-11 -9.33753e-11) (-1.92162e-10 6.82038e-11 -1.75468e-10) (-2.25211e-10 5.11092e-11 -1.04032e-10) (-3.23539e-11 5.69545e-12 -8.77014e-12) (6.78164e-12 -9.01279e-13 -2.36884e-13) (1.91976e-10 -2.3036e-11 -2.49369e-11) (3.36974e-10 -2.33301e-11 -1.09138e-10) (1.87418e-10 1.09035e-11 -1.04153e-10) (2.81761e-11 1.38124e-11 -1.97488e-11) (-4.55064e-12 1.02529e-11 7.18457e-12) (-1.52468e-10 6.05688e-11 1.59388e-10) (-4.06625e-10 3.55037e-11 3.01187e-10) (-2.96517e-10 -4.02505e-11 8.71547e-11) (-2.87779e-10 -1.47173e-10 -1.12045e-10) (-9.93615e-11 -1.10886e-10 -1.97375e-10) (3.57098e-12 -2.85372e-11 -1.7315e-10) (1.06068e-11 7.81711e-12 -7.09523e-11) (-1.96567e-12 1.38984e-12 -4.73283e-12) (-1.38112e-11 4.28455e-13 4.28257e-12) (-3.08987e-11 4.95945e-12 1.34e-11) (-1.64382e-11 1.03246e-11 4.35491e-12) (-4.53343e-12 7.09926e-12 7.20451e-13) (2.29049e-13 1.27055e-12 1.19573e-12) (1.76679e-11 -4.21789e-12 1.57035e-11) (1.20259e-10 -4.43099e-11 6.4255e-11) (1.33505e-10 -5.42679e-11 4.97383e-11) (1.86467e-13 -2.04523e-12 1.23789e-12) (-6.89779e-10 1.01907e-11 -3.39655e-11) (-3.00501e-09 2.8694e-10 -5.65554e-10) (-1.43201e-09 4.92489e-10 -9.55153e-10) (-9.08878e-11 4.90811e-10 -9.89866e-10) (2.6689e-10 3.0128e-10 -9.63423e-10) (6.81151e-13 -2.05269e-11 -2.05868e-10) (-4.75601e-11 -9.46252e-11 3.74101e-11) (1.85304e-10 -7.51724e-10 1.19239e-09) (2.4185e-09 -1.48778e-09 3.97066e-09) (4.76943e-09 -8.48096e-10 5.15405e-09) (2.3815e-09 -9.12314e-11 2.55225e-09) (1.99384e-10 -9.56003e-12 2.97391e-10) (-8.20594e-13 1.69171e-13 -4.21512e-13) (-7.3787e-11 3.67213e-11 -1.22102e-10) (-1.41876e-10 9.03742e-11 -2.16704e-10) (-6.82455e-11 3.91059e-11 -7.20412e-11) (-4.52461e-13 2.77168e-13 -4.68708e-13) (6.35841e-11 -2.07337e-11 1.7335e-11) (3.45228e-10 -9.53977e-11 3.22603e-11) (3.16305e-10 -6.45888e-11 -5.81706e-11) (9.09261e-11 -2.55193e-12 -7.13431e-11) (7.30088e-12 1.57002e-11 -3.14273e-11) (-1.64666e-11 2.73322e-11 -4.40432e-12) (-1.13419e-10 8.34092e-11 7.8361e-11) (-3.3254e-10 7.37497e-11 1.94011e-10) (-4.26572e-10 -6.28181e-11 8.04895e-11) (-6.28257e-10 -2.71686e-10 -1.44234e-10) (-5.75595e-10 -3.04229e-10 -2.98203e-10) (-1.85002e-10 -5.68906e-11 -1.30288e-10) (-2.63536e-11 8.19529e-12 -1.99337e-11) (-4.54572e-12 3.87187e-12 -8.72072e-13) (-4.0757e-12 1.43423e-12 1.4972e-12) (-6.87212e-12 1.37921e-12 4.59458e-13) (-4.69109e-12 3.3837e-12 -1.71654e-12) (3.45677e-13 4.05882e-12 -4.4617e-13) (1.43174e-11 7.97972e-12 7.89464e-12) (9.10465e-11 -4.23361e-12 4.89464e-11) (2.72942e-10 -8.10668e-11 9.57312e-11) (2.97806e-10 -1.1556e-10 4.49607e-11) (2.91518e-11 -1.15735e-11 -3.43487e-12) (-1.00945e-10 2.60788e-11 -2.21847e-11) (-1.4118e-09 3.28502e-10 -2.38245e-10) (-1.3764e-09 4.39339e-10 -6.88824e-10) (-2.79073e-10 4.15692e-10 -1.01548e-09) (3.02578e-10 4.65715e-10 -1.53869e-09) (-1.4114e-11 7.78436e-11 -6.93619e-10) (-1.39935e-10 -9.64994e-11 -8.10486e-11) (-2.5791e-10 -5.80377e-10 5.53981e-10) (8.51371e-10 -1.65029e-09 3.229e-09) (3.87105e-09 -1.42919e-09 6.38401e-09) (3.84843e-09 -1.80199e-10 5.12822e-09) (7.00529e-10 2.89048e-11 1.12266e-09) (-1.37981e-12 8.56869e-13 9.57534e-12) (-1.0145e-10 3.10193e-11 -1.12133e-10) (-1.96064e-10 1.06797e-10 -3.01605e-10) (-5.09055e-11 4.10635e-11 -9.54848e-11) (2.57097e-12 -2.21069e-13 -7.5315e-13) (2.07119e-10 -7.65608e-11 8.16121e-11) (6.33558e-10 -2.10613e-10 1.63734e-10) (4.21436e-10 -1.10636e-10 -1.20398e-11) (6.28279e-11 -7.3055e-12 -5.42336e-11) (-1.68882e-11 2.34492e-11 -6.50608e-11) (-5.76207e-11 6.53653e-11 -4.9984e-11) (-7.17551e-11 9.00418e-11 1.07412e-11) (-1.40014e-10 7.95806e-11 6.56225e-11) (-3.20706e-10 -2.31446e-11 4.57024e-11) (-8.5979e-10 -2.42249e-10 -1.84783e-10) (-1.89947e-09 -5.92726e-10 -3.77467e-10) (-1.38041e-09 -2.34302e-10 -6.34284e-11) (-3.52129e-10 1.63535e-11 7.13762e-11) (-2.26395e-11 7.1804e-12 1.43283e-11) (1.56046e-13 4.998e-14 -6.31712e-15) (5.50709e-12 3.69781e-13 -9.94297e-12) (4.47372e-12 5.67436e-12 -2.62337e-11) (2.25434e-12 7.30292e-12 -1.21064e-11) (8.15321e-12 3.91581e-12 6.72366e-13) (1.23994e-10 -1.48364e-11 5.9434e-11) (4.51235e-10 -1.48238e-10 1.94732e-10) (4.62731e-10 -1.8737e-10 1.45219e-10) (9.89805e-11 -2.58342e-11 9.30809e-12) (-2.08922e-12 1.10568e-11 -6.85536e-12) (-2.80026e-10 1.88482e-10 -8.86509e-11) (-7.41302e-10 3.37682e-10 -2.61649e-10) (-4.22975e-10 2.68669e-10 -5.30943e-10) (-3.64648e-11 4.16882e-10 -1.43235e-09) (4.89085e-11 3.36733e-10 -1.83221e-09) (-1.82283e-10 -7.39325e-11 -5.30214e-10) (-1.73025e-10 -2.68846e-10 6.56969e-11) (-9.56466e-11 -1.31831e-09 1.9403e-09) (1.55309e-09 -1.68064e-09 5.57567e-09) (3.17358e-09 -5.1238e-10 6.3541e-09) (1.34477e-09 6.26593e-11 2.39879e-09) (3.75028e-11 9.48983e-12 1.05138e-10) (-3.43259e-11 1.03371e-11 -3.20902e-11) (-1.75009e-10 6.3189e-11 -2.41582e-10) (-6.76683e-11 2.67312e-11 -1.04894e-10) (9.81026e-13 -8.90089e-13 -3.09391e-13) (2.00097e-10 -1.01652e-10 1.18186e-10) (7.22529e-10 -2.76543e-10 2.96437e-10) (5.87434e-10 -1.50527e-10 5.37409e-11) (1.06625e-10 -9.36393e-12 -6.60351e-11) (-2.98169e-11 2.73876e-11 -9.22354e-11) (-1.51636e-10 1.09227e-10 -1.31862e-10) (-1.01985e-10 1.36338e-10 -4.87569e-11) (-5.96591e-11 8.73037e-11 -1.47516e-13) (-1.37803e-10 2.46374e-11 -9.45278e-12) (-7.38984e-10 -1.76201e-11 -2.78541e-10) (-2.95116e-09 -4.49783e-10 -3.22706e-10) (-3.83377e-09 -3.92805e-10 6.62725e-10) (-1.47081e-09 -7.12488e-11 7.34927e-10) (-7.34722e-11 -1.5182e-11 8.38443e-11) (2.34099e-11 -1.08141e-11 -6.96886e-12) (2.09372e-10 -4.18151e-11 -1.86818e-10) (1.94772e-10 -5.83171e-12 -2.41687e-10) (5.37112e-11 7.63424e-12 -7.64946e-11) (1.20715e-11 -4.77538e-13 -4.28072e-12) (7.49661e-11 -2.72718e-11 4.82033e-11) (2.71468e-10 -1.337e-10 2.31055e-10) (2.53313e-10 -1.41288e-10 2.39616e-10) (5.63659e-11 -1.74235e-11 5.54921e-11) (7.63127e-12 1.50563e-11 3.4156e-12) (-1.45381e-11 9.26798e-11 -2.49897e-11) (-1.08224e-10 1.4317e-10 -6.9543e-11) (-2.57311e-10 1.73778e-10 -2.21535e-10) (-3.46087e-10 2.80491e-10 -7.84883e-10) (-2.93909e-10 4.86273e-10 -2.07782e-09) (-2.29109e-10 9.61732e-11 -1.59926e-09) (-8.71943e-11 -1.3326e-10 -1.48437e-10) (-1.97355e-10 -6.05945e-10 6.13135e-10) (6.13369e-11 -1.31745e-09 3.34748e-09) (1.35305e-09 -7.62676e-10 4.92244e-09) (1.37758e-09 -6.67209e-11 2.90341e-09) (2.1943e-10 1.9735e-11 3.90053e-10) (-2.53602e-13 3.63574e-13 -1.967e-13) (-5.72019e-11 1.85487e-11 -7.92795e-11) (-5.56806e-11 1.17004e-11 -7.06947e-11) (-5.80436e-13 -1.21765e-12 -5.04355e-13) (1.12386e-10 -9.04567e-11 1.03807e-10) (6.06302e-10 -3.13916e-10 3.7261e-10) (6.83942e-10 -2.13251e-10 1.64647e-10) (2.19455e-10 -1.74392e-11 -7.25566e-11) (-6.28149e-13 2.7897e-11 -8.97003e-11) (-2.36729e-10 1.33107e-10 -1.95386e-10) (-2.87218e-10 2.37448e-10 -1.4312e-10) (-1.22939e-10 1.9926e-10 -7.65831e-11) (-1.14971e-10 9.56953e-11 -7.84634e-11) (-7.22489e-10 2.50906e-10 -4.32067e-10) (-2.54576e-09 2.64383e-11 -3.64029e-10) (-4.08199e-09 -2.86166e-10 9.57617e-10) (-1.75633e-09 -2.42275e-10 1.18207e-09) (-8.8988e-11 -7.77617e-11 1.75379e-10) (1.1594e-10 -7.99167e-11 -2.51464e-11) (7.89372e-10 -2.83774e-10 -5.37423e-10) (9.67551e-10 -2.12893e-10 -7.16417e-10) (3.78565e-10 -5.93196e-11 -2.68759e-10) (5.05986e-11 -1.33211e-11 -2.82085e-11) (4.99245e-12 -5.13589e-12 3.29389e-12) (6.36412e-12 -2.31124e-11 4.53758e-11) (1.45546e-12 -4.27353e-11 1.37772e-10) (-1.08204e-11 -6.53672e-12 1.42054e-10) (-1.00003e-12 4.54083e-11 7.91184e-11) (3.46666e-11 9.88662e-11 4.59096e-11) (3.9456e-11 7.90713e-11 -2.14872e-12) (-9.23363e-12 4.12938e-11 -4.51216e-11) (-2.88732e-10 1.58071e-10 -4.70081e-10) (-7.54999e-10 4.27183e-10 -1.61146e-09) (-5.53501e-10 3.28757e-10 -1.85115e-09) (-1.43554e-10 -7.60565e-11 -4.28456e-10) (-8.8143e-11 -1.53334e-10 5.15666e-11) (-2.37043e-10 -6.00185e-10 1.02397e-09) (2.7042e-10 -6.08729e-10 2.21673e-09) (9.43572e-10 -2.22453e-10 2.12733e-09) (4.92035e-10 5.98068e-12 7.02079e-10) (3.0556e-11 7.33067e-12 2.80193e-11) (-3.2193e-12 4.79439e-12 -9.1819e-12) (-2.05572e-11 8.45354e-12 -3.47192e-11) (-4.03862e-13 -1.14354e-12 -1.0268e-12) (8.96712e-11 -9.51817e-11 9.75421e-11) (5.6986e-10 -4.34538e-10 5.20076e-10) (7.05344e-10 -3.68062e-10 3.91424e-10) (2.6126e-10 -5.60251e-11 1.18881e-12) (2.74531e-11 2.29227e-11 -6.05248e-11) (-2.13623e-10 1.43518e-10 -1.93825e-10) (-6.98647e-10 4.21574e-10 -2.75184e-10) (-5.34526e-10 5.12661e-10 -2.38686e-10) (-3.36879e-10 3.81682e-10 -2.86329e-10) (-6.46421e-10 5.71952e-10 -5.82751e-10) (-1.10923e-09 3.43305e-10 -4.27137e-10) (-1.77702e-09 1.14731e-11 1.50991e-10) (-9.78209e-10 -2.51516e-10 4.6465e-10) (-5.32433e-11 -1.10512e-10 8.44728e-11) (3.14402e-10 -2.62904e-10 -3.87978e-11) (1.39551e-09 -6.47439e-10 -4.07674e-10) (1.52909e-09 -5.43983e-10 -3.96438e-10) (6.2761e-10 -1.96882e-10 -1.46407e-10) (6.42273e-11 -2.56707e-11 -2.84238e-11) (-5.6698e-12 -2.19351e-12 -6.06668e-12) (-7.91946e-11 4.88684e-13 -4.96939e-12) (-1.21483e-10 9.05998e-12 5.60947e-11) (-1.19502e-10 4.03958e-11 1.68089e-10) (-7.85944e-11 1.30312e-10 2.85782e-10) (4.52905e-11 1.93629e-10 2.76881e-10) (1.46962e-10 1.30895e-10 1.36985e-10) (6.91957e-11 3.02368e-11 -1.11378e-11) (-3.044e-11 2.50783e-11 -2.19592e-10) (-8.43971e-10 1.79862e-10 -1.42909e-09) (-1.27634e-09 3.50259e-10 -2.04444e-09) (-5.26642e-10 4.97371e-11 -8.76983e-10) (-1.25404e-10 -7.87074e-11 -9.1098e-11) (-1.39061e-10 -2.04961e-10 1.59695e-10) (-6.10143e-12 -3.797e-10 7.16402e-10) (5.11692e-10 -2.72277e-10 1.13825e-09) (6.48557e-10 2.72016e-12 7.58086e-10) (2.14426e-10 6.36493e-11 1.41661e-10) (2.43085e-11 2.10683e-11 -6.04549e-12) (4.5097e-12 1.06748e-11 -2.01761e-11) (3.36772e-12 -2.49056e-12 -3.27572e-12) (1.13318e-10 -1.20918e-10 9.75404e-11) (6.42131e-10 -6.37514e-10 7.21864e-10) (8.65982e-10 -7.38813e-10 8.76098e-10) (3.0218e-10 -1.74956e-10 1.8432e-10) (9.75895e-12 2.31793e-12 -4.94961e-12) (-1.49242e-10 1.2187e-10 -1.10977e-10) (-1.03806e-09 5.96981e-10 -3.37915e-10) (-1.31491e-09 9.28184e-10 -4.21148e-10) (-7.53871e-10 8.03295e-10 -5.15078e-10) (-5.42997e-10 8.40181e-10 -7.35796e-10) (-3.28456e-10 4.32676e-10 -4.64408e-10) (-1.9012e-10 7.49849e-11 -1.21492e-10) (-7.25978e-11 -4.22024e-11 -1.77595e-11) (5.12148e-12 -1.42204e-10 -1.15133e-11) (2.74711e-10 -4.17394e-10 1.32016e-11) (6.72025e-10 -6.35389e-10 2.05194e-10) (8.70623e-10 -6.0526e-10 3.70066e-10) (5.51071e-10 -2.95919e-10 1.67708e-10) (9.47049e-11 -3.85735e-11 -1.52301e-11) (-1.04388e-11 6.96778e-12 -3.23179e-11) (-2.44409e-10 9.10172e-11 -1.26653e-10) (-3.98262e-10 1.35213e-10 -3.23582e-11) (-2.67235e-10 1.36384e-10 1.302e-10) (-1.98492e-10 2.55714e-10 3.45728e-10) (-2.74021e-11 3.44257e-10 5.18858e-10) (1.9545e-10 1.96922e-10 3.71466e-10) (2.09892e-10 3.62554e-11 7.78668e-11) (1.08144e-10 -1.59505e-11 -1.32372e-10) (-3.21451e-10 -6.36561e-11 -1.02819e-09) (-1.89905e-09 8.55585e-12 -2.62741e-09) (-1.8504e-09 2.81427e-11 -2.07388e-09) (-6.06966e-10 -1.26833e-10 -5.52992e-10) (-1.17859e-10 -1.18456e-10 -1.15738e-11) (-1.29647e-11 -2.45955e-10 2.6017e-10) (2.79475e-10 -2.74001e-10 6.4373e-10) (3.92968e-10 -2.02844e-11 4.84139e-10) (1.97121e-10 9.62658e-11 1.2337e-10) (6.83453e-11 7.4379e-11 -1.15644e-11) (3.13528e-11 3.49109e-11 -3.72761e-11) (3.50555e-11 -5.07553e-12 -1.96557e-11) (2.21888e-10 -1.49124e-10 7.0992e-11) (9.13876e-10 -7.4901e-10 7.33926e-10) (1.50155e-09 -1.30142e-09 1.59659e-09) (8.0356e-10 -6.82469e-10 9.60949e-10) (4.61463e-11 -3.44895e-11 8.53206e-11) (-1.08768e-10 6.97653e-11 5.58875e-12) (-1.25641e-09 6.78461e-10 -2.0754e-10) (-2.09437e-09 1.22457e-09 -5.54749e-10) (-1.21414e-09 1.09182e-09 -7.12254e-10) (-4.45161e-10 7.92075e-10 -7.47089e-10) (-3.90456e-11 6.10503e-10 -6.6268e-10) (-5.67226e-12 1.62343e-10 -2.77e-10) (-2.15295e-11 -2.28763e-11 -5.8805e-11) (-5.67288e-11 -1.82877e-10 1.50467e-12) (-9.77748e-12 -5.86193e-10 3.62051e-10) (3.73804e-10 -1.01525e-09 9.92535e-10) (7.40233e-10 -9.01709e-10 7.58562e-10) (6.67926e-10 -4.75431e-10 1.08918e-10) (3.32497e-10 -1.05661e-10 -1.79904e-10) (4.00905e-11 6.34808e-11 -1.66844e-10) (-2.49835e-10 2.32811e-10 -2.02635e-10) (-5.77818e-10 3.49677e-10 -5.26564e-11) (-4.94599e-10 3.26407e-10 1.84529e-10) (-3.75741e-10 4.25888e-10 4.10437e-10) (-1.89937e-10 4.41684e-10 5.77794e-10) (7.36946e-11 1.81153e-10 4.22231e-10) (1.86228e-10 -3.5755e-12 1.46392e-10) (2.57036e-10 -7.36622e-11 -9.91304e-11) (1.75997e-10 -1.34127e-10 -6.72392e-10) (-7.41382e-10 -2.16076e-10 -1.99011e-09) (-1.9323e-09 -2.62855e-10 -2.58402e-09) (-1.14457e-09 -2.61826e-10 -1.13314e-09) (-1.9097e-10 -1.3655e-10 -1.00693e-10) (-1.95434e-11 -1.48235e-10 1.17336e-10) (1.92947e-10 -2.29618e-10 4.73123e-10) (2.22956e-10 -2.12456e-11 3.3415e-10) (5.67193e-11 5.53563e-11 4.36281e-11) (1.99948e-11 8.35404e-11 -4.34471e-11) (1.61986e-11 7.75097e-11 -1.25544e-10) (5.86129e-11 -7.25863e-13 -1.15397e-10) (2.42134e-10 -1.27316e-10 -7.75741e-11) (1.01031e-09 -5.85884e-10 3.54014e-10) (2.2358e-09 -1.40462e-09 1.81448e-09) (2.07702e-09 -1.45743e-09 2.59308e-09) (4.51595e-10 -3.76127e-10 1.08698e-09) (-1.4971e-10 5.21667e-11 2.27041e-10) (-1.36447e-09 5.96285e-10 1.52234e-10) (-2.75768e-09 1.22828e-09 -4.65193e-10) (-1.59818e-09 1.03888e-09 -7.97316e-10) (-1.23755e-09 8.3319e-10 -1.01505e-09) (-2.70597e-10 6.88473e-10 -6.34347e-10) (-5.7418e-11 3.01496e-10 -2.30586e-10) (-1.41567e-11 1.00254e-11 -8.28112e-13) (-9.30567e-11 -1.88306e-10 3.11357e-10) (1.56802e-10 -1.12827e-09 1.5222e-09) (7.56497e-10 -1.6399e-09 1.43756e-09) (8.73871e-10 -1.25224e-09 2.79647e-10) (1.02638e-09 -9.2484e-10 -5.40233e-10) (8.06597e-10 -2.99882e-10 -8.49794e-10) (1.6094e-10 1.84117e-10 -4.61295e-10) (-2.66714e-10 4.32477e-10 -2.43632e-10) (-8.05567e-10 6.67124e-10 9.5289e-11) (-1.083e-09 7.31119e-10 5.39417e-10) (-1.03741e-09 8.05428e-10 8.21084e-10) (-6.30274e-10 6.31848e-10 8.78787e-10) (-1.17897e-10 1.67216e-10 5.81276e-10) (1.04456e-10 -6.18609e-11 2.00554e-10) (2.97391e-10 -1.61775e-10 -5.98376e-11) (6.9309e-10 -2.5065e-10 -9.28295e-10) (3.19e-10 -1.31884e-10 -2.03476e-09) (-6.93728e-10 -1.92515e-10 -2.17369e-09) (-9.19296e-10 -3.47949e-10 -1.13281e-09) (-2.48124e-10 -1.95944e-10 -1.29928e-10) (2.35106e-13 -1.36142e-10 1.20524e-10) (3.16337e-10 -2.37699e-10 6.07472e-10) (3.19308e-10 -8.17754e-12 4.88136e-10) (6.229e-11 7.35131e-11 6.43098e-11) (7.70054e-12 1.28955e-10 -7.67382e-11) (-3.49219e-11 1.64913e-10 -3.46388e-10) (4.45266e-12 -1.30462e-11 -5.16983e-10) (1.2824e-10 -1.86014e-10 -3.86684e-10) (2.99556e-10 -2.39621e-10 -1.073e-10) (1.01873e-09 -5.19672e-10 5.47002e-10) (2.00108e-09 -8.66506e-10 2.17383e-09) (1.16443e-09 -5.05891e-10 2.23921e-09) (-8.37986e-11 2.74472e-11 7.64274e-10) (-1.11156e-09 3.79782e-10 4.58324e-10) (-3.58296e-09 1.00021e-09 -2.83419e-10) (-3.44498e-09 1.02336e-09 -1.22961e-09) (-4.323e-09 1.2846e-09 -1.85876e-09) (-1.20176e-09 1.01536e-09 -5.73546e-10) (-9.03517e-11 4.653e-10 7.44057e-11) (2.34994e-10 2.17045e-10 4.59453e-10) (8.4132e-10 -4.96191e-10 1.38288e-09) (9.64984e-10 -1.46765e-09 1.33354e-09) (5.79142e-10 -1.43449e-09 2.7016e-10) (6.4252e-10 -1.33166e-09 -4.74122e-10) (9.323e-10 -1.02997e-09 -9.13933e-10) (7.31363e-10 -2.92676e-10 -8.15188e-10) (2.20192e-10 2.28032e-10 -4.36803e-10) (-1.84994e-10 6.12869e-10 -2.27997e-10) (-1.20915e-09 1.23425e-09 3.15579e-10) (-3.02828e-09 1.60365e-09 1.40273e-09) (-3.28513e-09 1.34633e-09 1.85137e-09) (-1.46447e-09 6.85017e-10 1.33002e-09) (-2.25838e-10 1.13268e-10 6.81168e-10) (1.29412e-10 -1.03831e-10 2.73383e-10) (3.96474e-10 -2.39497e-10 -6.36543e-11) (1.30318e-09 -4.37601e-10 -1.43646e-09) (1.62859e-09 -8.53092e-11 -3.11092e-09) (5.90722e-10 4.4923e-11 -2.00417e-09) (3.42326e-11 -7.68205e-11 -3.92749e-10) (2.12165e-12 -6.51615e-11 -1.69592e-11) (4.2168e-11 -2.05047e-10 1.65594e-10) (4.18531e-11 -2.15207e-10 3.93495e-10) (-6.02141e-11 -4.00441e-11 3.05069e-10) (-6.01701e-11 4.04378e-11 9.72162e-11) (-1.6356e-11 2.87968e-11 -3.35125e-12) (-3.20036e-12 4.69885e-11 -1.15639e-10) (2.03759e-11 -1.28801e-11 -4.10638e-10) (4.1764e-11 -1.39873e-10 -5.76306e-10) (1.01631e-10 -1.12476e-10 -2.97548e-10) (1.56241e-10 -5.52698e-11 -2.36129e-11) (6.6374e-10 -1.14109e-10 5.23364e-10) (8.87053e-10 -9.71925e-11 1.33012e-09) (1.22714e-10 5.97142e-11 7.46839e-10) (-4.41062e-10 1.82856e-10 3.33259e-10) (-2.60725e-09 6.34783e-10 -9.7671e-11) (-5.54101e-09 9.98251e-10 -1.59427e-09) (-3.10305e-09 7.42675e-10 -1.22202e-09) (-3.18802e-09 1.19068e-09 -9.39545e-10) (-6.28711e-10 4.39113e-10 1.07079e-10) (3.48095e-11 6.08933e-11 2.98842e-10) (4.21272e-10 -3.97874e-10 5.83946e-10) (5.57167e-10 -9.60971e-10 2.47051e-10) (6.96532e-10 -1.29098e-09 -2.77785e-10) (8.26915e-10 -1.0782e-09 -4.96426e-10) (6.5409e-10 -4.77867e-10 -3.35372e-10) (3.41602e-10 -4.05511e-11 -1.7315e-10) (2.177e-10 2.0825e-10 -1.66793e-10) (6.56576e-11 5.51531e-10 -1.7547e-10) (-4.4838e-10 8.47317e-10 5.8885e-11) (-2.10433e-09 1.26494e-09 8.35358e-10) (-4.12059e-09 1.1384e-09 1.861e-09) (-2.5569e-09 4.84787e-10 1.51349e-09) (-4.4177e-10 7.82215e-11 6.03845e-10) (6.23843e-11 -2.60699e-11 2.04161e-10) (2.72339e-10 -9.73816e-11 1.12082e-11) (9.58662e-10 -3.5756e-10 -8.98635e-10) (1.44205e-09 -6.12094e-10 -2.40881e-09) (8.30467e-10 -5.47708e-10 -1.66743e-09) (2.69852e-10 -3.22485e-10 -4.13162e-10) (1.06043e-10 -1.79893e-10 -2.93543e-11) (5.5127e-11 -1.09134e-10 6.87325e-11) (9.28049e-12 -3.66606e-11 9.5966e-11) (-4.13908e-11 1.46959e-11 1.57532e-10) (-8.37698e-11 4.43626e-11 1.85774e-10) (-5.46757e-11 1.96692e-11 8.50644e-11) (-1.4823e-11 1.35444e-12 5.67388e-12) (-3.55215e-11 5.39497e-13 -4.65476e-11) (-9.72732e-11 3.24105e-11 -2.92482e-10) (-3.12216e-11 9.33112e-11 -4.00593e-10) (7.73137e-11 6.2453e-11 -1.28827e-10) (1.95077e-10 5.16215e-11 4.63688e-11) (4.0572e-10 3.15226e-11 3.75752e-10) (1.80956e-10 1.09531e-11 2.85709e-10) (-1.06858e-12 1.21815e-11 3.89796e-11) (-1.05554e-10 4.39258e-11 -5.43304e-12) (-9.34245e-10 2.30547e-10 -3.36033e-10) (-2.23036e-10 2.13789e-10 -1.72474e-10) (-1.54897e-09 6.61924e-10 -1.05849e-10) (-2.61104e-09 4.86635e-10 4.20098e-10) (-1.37288e-09 -2.52808e-10 5.16733e-10) (-4.09528e-10 -5.56014e-10 2.55264e-10) (1.47624e-11 -9.70289e-10 7.10706e-11) (4.06522e-10 -1.10657e-09 -1.28948e-10) (4.27225e-10 -5.43626e-10 -1.44368e-10) (2.82239e-10 -1.04671e-10 -6.69713e-11) (3.08609e-10 1.1116e-10 -3.01993e-11) (4.59006e-10 4.68951e-10 -2.08704e-12) (4.21111e-10 8.59114e-10 2.87372e-11) (1.66002e-11 8.19873e-10 7.74674e-11) (-5.36696e-10 6.32531e-10 1.82567e-10) (-1.53045e-09 4.37306e-10 4.40226e-10) (-1.7234e-09 1.0483e-11 5.7752e-10) (-6.10257e-10 -5.49645e-11 3.80379e-10) (-5.2299e-11 -5.79836e-13 1.63684e-10) (6.0048e-11 1.08769e-12 7.66447e-11) (9.07037e-11 -3.48875e-11 -1.93052e-11) (1.72175e-10 -2.50726e-10 -3.02435e-10) (1.50171e-10 -6.36857e-10 -6.32357e-10) (1.77138e-10 -6.9084e-10 -4.98091e-10) (2.2467e-10 -4.06733e-10 -2.06704e-10) (1.68936e-10 -1.47577e-10 -4.04512e-11) (9.59719e-11 -3.17941e-11 1.965e-11) (6.98662e-11 5.94639e-12 5.59884e-11) (5.51336e-11 2.86777e-11 1.08291e-10) (1.36997e-11 3.60834e-11 1.20434e-10) (-2.14332e-11 2.3586e-11 5.39358e-11) (-3.79159e-11 2.19638e-11 4.48064e-12) (-1.05288e-10 7.67144e-11 -8.69242e-11) (-1.02862e-10 1.62686e-10 -2.02047e-10) (1.54851e-11 1.25821e-10 -1.1187e-10) (8.22457e-11 6.00093e-11 -1.15848e-11) (1.81532e-10 1.7393e-11 6.45411e-11) (1.58503e-10 -2.57324e-11 4.20787e-11) (9.87062e-11 -1.28562e-11 -4.09151e-11) (1.19259e-10 2.90914e-11 -1.68735e-10) (3.69133e-11 9.38328e-11 -1.87508e-10) (-2.07818e-11 2.61693e-11 -1.99101e-11) (-3.17757e-10 2.18427e-10 6.12146e-11) (-1.05197e-09 2.75294e-10 3.57555e-10) (-1.3427e-09 -3.62887e-10 5.21721e-10) (-1.21536e-09 -1.41198e-09 5.36328e-10) (-8.0476e-10 -2.22663e-09 3.75108e-10) (-2.35976e-10 -1.43862e-09 7.18461e-11) (1.34086e-11 -2.9903e-10 -2.34451e-11) (2.00691e-11 -9.5027e-12 -4.20831e-12) (1.46184e-10 1.26656e-10 1.83517e-11) (4.44625e-10 6.5259e-10 1.47623e-10) (4.89094e-10 1.15104e-09 2.52756e-10) (1.39649e-10 9.22216e-10 1.69111e-10) (-1.21223e-10 3.48395e-10 5.92383e-11) (-2.61371e-10 1.0339e-10 4.48754e-11) (-5.86343e-10 -4.89635e-11 1.28062e-10) (-6.28652e-10 -5.9889e-11 2.6861e-10) (-3.48246e-10 6.94198e-11 3.34711e-10) (-9.97742e-11 9.31684e-11 2.77024e-10) (5.19251e-12 4.86265e-13 7.01172e-11) (3.97843e-11 -1.03122e-10 -2.40936e-12) (3.39804e-10 -8.46745e-10 -4.22336e-10) (9.35941e-10 -1.60115e-09 -1.1747e-09) (9.45134e-10 -1.10494e-09 -1.11814e-09) (3.63503e-10 -2.93944e-10 -4.49946e-10) (4.75618e-11 -1.91097e-11 -5.86605e-11) (2.20618e-12 1.16603e-12 8.83451e-13) (9.46887e-12 2.23322e-11 6.89252e-11) (1.59015e-12 6.46317e-11 2.46546e-10) (-3.44804e-11 7.03788e-11 2.19699e-10) (-4.59473e-11 5.02902e-11 5.93339e-11) (-9.28903e-11 1.13079e-10 -2.96356e-11) (-1.63627e-10 3.3278e-10 -2.31446e-10) (-3.07935e-11 3.81372e-10 -2.88456e-10) (1.17041e-10 2.0216e-10 -1.54944e-10) (1.96481e-10 7.84494e-11 -8.70539e-11) (2.63918e-10 -5.6715e-12 -1.00959e-10) (2.39228e-10 -5.96697e-11 -1.59453e-10) (1.42467e-10 -6.10981e-11 -1.79255e-10) (2.7464e-11 -6.92165e-12 -7.82631e-11) (-7.62206e-11 4.85606e-11 -5.07497e-11) (-3.27949e-10 2.61902e-10 -1.35888e-10) (-3.1619e-10 1.4419e-10 -4.34908e-11) (-2.83559e-10 -1.34179e-10 6.08917e-11) (-6.68772e-10 -1.11172e-09 3.68675e-10) (-9.31244e-10 -2.20184e-09 5.82512e-10) (-6.41045e-10 -1.53376e-09 2.31432e-10) (-1.94002e-10 -4.25429e-10 -1.4086e-12) (-9.80441e-12 -2.04598e-11 -7.83905e-13) (6.77495e-12 1.55038e-11 1.17773e-11) (1.12245e-10 3.09896e-10 1.6733e-10) (2.09958e-10 8.90038e-10 3.31423e-10) (3.57397e-11 1.00092e-09 2.01389e-10) (-1.64823e-10 4.66456e-10 1.54344e-11) (-2.3111e-10 1.23621e-10 -9.82466e-12) (-4.33807e-10 -2.51915e-11 6.8861e-11) (-6.12673e-10 -6.37877e-11 2.76089e-10) (-5.21884e-10 9.28091e-11 4.37434e-10) (-2.02739e-10 1.54023e-10 3.85226e-10) (3.77846e-11 2.34273e-11 1.55234e-10) (3.04661e-10 -1.95642e-10 6.53999e-11) (1.4808e-09 -1.25237e-09 -6.66021e-10) (2.3359e-09 -1.98939e-09 -2.10095e-09) (1.3437e-09 -1.08256e-09 -2.02409e-09) (2.39493e-10 -2.18034e-10 -8.63376e-10) (-3.2687e-11 -1.12692e-11 -1.83257e-10) (-1.58287e-11 2.13946e-12 -1.05409e-11) (-1.27173e-11 4.27656e-12 2.37518e-11) (-8.38298e-13 1.43265e-11 1.79952e-10) (1.92944e-11 1.60565e-11 3.16925e-10) (-2.337e-11 2.53319e-11 1.92703e-10) (-4.85293e-11 4.8296e-11 5.25919e-11) (-1.13737e-10 2.03125e-10 -4.63775e-11) (-8.55418e-11 5.47487e-10 -3.20864e-10) (1.73988e-10 5.35107e-10 -4.34627e-10) (3.27078e-10 2.13409e-10 -2.80799e-10) (3.84378e-10 -2.72638e-11 -1.40453e-10) (3.52197e-10 -1.74037e-10 -3.71326e-11) (1.22868e-10 -1.07075e-10 -2.69674e-12) (1.2429e-12 -5.32843e-12 -3.59487e-12) (-2.89483e-11 2.58722e-11 -2.35697e-11) (-1.73766e-10 1.28192e-10 -1.37721e-10) (-1.58008e-10 4.67582e-11 -1.1276e-10) (-1.3122e-10 -9.84627e-11 -4.68967e-11) (-3.38354e-10 -5.9424e-10 3.25984e-11) (-5.79501e-10 -1.15192e-09 1.45524e-10) (-5.73212e-10 -1.05825e-09 1.04768e-10) (-3.2098e-10 -5.52401e-10 6.04453e-12) (-7.59962e-11 -1.20497e-10 -1.19328e-11) (-2.50474e-12 -1.50853e-12 6.16998e-13) (-3.92134e-12 4.54457e-11 3.79388e-11) (-4.6613e-12 2.76844e-10 2.15752e-10) (-1.48039e-11 4.28141e-10 2.53349e-10) (-3.70165e-11 2.75371e-10 8.08244e-11) (-4.84523e-11 9.2972e-11 -2.27434e-12) (-6.68776e-11 3.29872e-11 6.2838e-12) (-1.59482e-10 3.92855e-11 9.875e-11) (-2.88792e-10 1.31131e-10 3.2218e-10) (-1.92905e-10 1.65929e-10 3.39737e-10) (4.08059e-12 2.61448e-11 8.20568e-11) (1.39462e-10 -6.06396e-11 5.65927e-12) (7.88945e-10 -4.46889e-10 -4.5786e-10) (1.11175e-09 -5.98289e-10 -1.18308e-09) (6.18419e-10 -2.82899e-10 -1.09464e-09) (1.42819e-10 -8.45655e-11 -4.78931e-10) (1.91057e-12 -3.27394e-11 -9.55045e-11) (-7.19412e-12 -1.28419e-11 -8.66602e-12) (-7.89934e-12 -1.17357e-11 7.3186e-12) (-7.07909e-12 -1.45055e-11 3.37971e-11) (-3.12602e-12 -6.81711e-12 8.55738e-11) (-2.77152e-11 3.17421e-11 1.30069e-10) (-1.19172e-10 1.21291e-10 1.46338e-10) (-2.38065e-10 2.62143e-10 8.14934e-11) (-1.49082e-10 2.71039e-10 -6.11509e-11) (3.11535e-11 1.72368e-10 -1.17346e-10) (2.40591e-10 1.08913e-10 -1.47803e-10) (5.21291e-10 -2.03891e-11 -1.05442e-10) (5.40862e-10 -1.40518e-10 1.52083e-11) (2.02063e-10 -7.63074e-11 3.54586e-11) (5.18474e-12 -1.53958e-12 7.06288e-13) (-6.2551e-12 2.9778e-11 -1.33066e-10) (-5.55696e-11 2.06598e-10 -6.05945e-10) (-1.77788e-11 1.62258e-10 -7.73097e-10) (-2.81707e-11 -4.70007e-11 -4.10658e-10) (-8.38896e-11 -1.3169e-10 -1.25356e-10) (-3.18868e-10 -4.10243e-10 6.06032e-11) (-7.41302e-10 -1.0349e-09 5.12409e-10) (-6.58639e-10 -1.21877e-09 5.50684e-10) (-2.17889e-10 -5.27349e-10 8.11704e-11) (-3.96832e-11 -5.57977e-11 -4.80776e-11) (-6.24087e-11 6.56349e-11 -9.433e-11) (-1.41752e-10 2.4321e-10 -6.57612e-11) (-1.61264e-10 2.72614e-10 9.70184e-11) (-1.18937e-10 1.86294e-10 1.90403e-10) (-5.609e-11 7.59756e-11 1.37774e-10) (-2.42312e-11 2.52095e-11 7.0642e-11) (-2.10514e-11 2.5442e-11 6.57518e-11) (-2.98588e-11 6.50916e-11 1.22502e-10) (-2.39466e-11 9.96344e-11 1.59488e-10) (1.13357e-12 3.81681e-11 6.04546e-11) (2.11241e-12 5.0894e-13 8.51963e-13) (3.57815e-11 -2.4246e-11 -5.47651e-11) (1.32015e-10 -1.0369e-10 -2.88075e-10) (2.04695e-10 -1.59763e-10 -4.58432e-10) (1.8357e-10 -1.79168e-10 -3.63723e-10) (9.93398e-11 -1.48882e-10 -1.68989e-10) (2.87646e-11 -8.13847e-11 -3.99781e-11) (2.1111e-12 -3.60828e-11 4.54102e-12) (-6.9629e-12 -2.34365e-11 2.53144e-11) (-1.7895e-11 -1.2265e-11 5.71366e-11) (-3.56807e-11 2.37809e-11 9.19015e-11) (-7.89375e-11 1.20951e-10 1.29162e-10) (-1.71334e-10 3.32231e-10 1.50266e-10) (-1.96146e-10 4.59609e-10 8.6327e-11) (-4.43629e-11 2.57132e-10 1.72249e-11) (4.16493e-11 6.9105e-11 1.36958e-11) (1.45661e-10 1.12802e-11 6.45799e-11) (2.78886e-10 -1.10134e-10 1.59559e-10) (1.56364e-10 -1.11513e-10 8.21864e-11) (1.56527e-11 -1.39001e-11 -6.83568e-12) (9.77376e-11 7.10096e-13 -7.32357e-12) (4.17898e-11 3.82547e-13 -2.38065e-12) (3.53257e-11 4.00307e-13 -4.18077e-12) (5.59296e-11 4.93806e-13 -1.22818e-11) (1.0596e-10 3.41172e-13 -1.76677e-11) (2.44233e-10 -7.01713e-13 1.13726e-11) (5.62154e-10 -4.25947e-13 1.35894e-10) (9.72493e-10 1.98094e-12 3.29339e-10) (1.24676e-09 6.47217e-12 4.31726e-10) (1.44257e-09 2.99933e-12 4.12387e-10) (1.55566e-09 -2.12002e-12 3.24485e-10) (1.2457e-09 1.15633e-12 2.06592e-10) (6.53601e-10 4.82481e-12 1.10391e-10) (3.1361e-10 2.84862e-12 5.17869e-11) (2.57535e-10 -2.14196e-13 2.14402e-11) (3.82894e-10 -3.17901e-12 1.2126e-11) (6.74861e-10 -6.07527e-12 3.75974e-11) (9.81614e-10 8.82704e-13 8.13375e-11) (1.06322e-09 1.04522e-11 1.52296e-10) (8.1784e-10 1.27854e-11 2.26935e-10) (4.69816e-10 9.49257e-12 2.35969e-10) (2.61522e-10 4.3953e-12 1.77418e-10) (2.07004e-10 1.27864e-12 8.88073e-11) (3.5591e-10 -8.52461e-13 -1.44137e-11) (8.65662e-10 6.33642e-13 -3.29399e-10) (1.65184e-09 1.49369e-11 -8.95051e-10) (2.14303e-09 2.76898e-11 -1.30221e-09) (1.70872e-09 2.82274e-11 -1.12013e-09) (7.25017e-10 1.49088e-11 -5.22566e-10) (1.50478e-10 3.61606e-12 -1.07425e-10) (2.18724e-11 4.17237e-13 -7.74277e-12) (9.07671e-12 -4.88102e-14 1.30987e-12) (1.18286e-11 -3.38098e-13 8.9943e-13) (3.3137e-11 -8.51827e-13 -5.74504e-12) (1.05966e-10 -1.57388e-12 -2.07826e-11) (2.68901e-10 -2.53779e-12 -2.53278e-11) (4.8707e-10 -2.90539e-12 1.18302e-12) (5.89195e-10 -1.15314e-12 2.43254e-11) (4.67559e-10 -5.22992e-13 6.60508e-12) (2.48985e-10 9.29559e-13 -1.17998e-11) (2.30167e-09 4.11048e-12 -2.10254e-11) (9.82301e-10 3.82265e-12 5.86844e-11) (6.13949e-10 3.79776e-12 3.82524e-11) (7.52348e-10 -7.0613e-13 -4.16857e-11) (1.2071e-09 -1.4946e-11 -1.44938e-10) (2.12975e-09 -3.81297e-11 -6.16849e-11) (4.25252e-09 -5.36699e-11 5.55746e-10) (7.55259e-09 -4.63663e-11 1.76169e-09) (1.08678e-08 -5.94506e-11 2.67717e-09) (1.39521e-08 -2.31686e-10 2.7329e-09) (1.66622e-08 -4.11956e-10 2.21277e-09) (1.55538e-08 -2.58462e-10 1.66534e-09) (9.53025e-09 6.88032e-11 1.28164e-09) (4.64457e-09 1.26076e-10 7.5532e-10) (3.10858e-09 4.21278e-11 2.12155e-10) (3.63652e-09 -4.79692e-11 -2.38506e-10) (5.6784e-09 -1.02403e-10 -4.1421e-10) (8.88725e-09 1.71906e-12 3.80073e-11) (1.18584e-08 2.15325e-10 1.35551e-09) (1.13523e-08 3.27064e-10 2.74906e-09) (7.18138e-09 2.11702e-10 2.81372e-09) (3.45431e-09 4.32409e-11 1.74913e-09) (2.02734e-09 -4.97771e-11 7.24433e-10) (2.81482e-09 -1.27995e-10 -4.59012e-11) (6.72867e-09 -2.43166e-10 -1.82147e-09) (1.35332e-08 -2.86042e-10 -4.71522e-09) (2.00934e-08 -2.01823e-10 -6.86474e-09) (2.10246e-08 -1.81654e-11 -6.70988e-09) (1.34597e-08 1.28917e-10 -4.08205e-09) (4.48348e-09 9.04888e-11 -1.18875e-09) (9.0754e-10 2.34256e-11 -8.44061e-11) (2.64327e-10 5.38949e-12 5.57744e-11) (1.62136e-10 7.22842e-13 3.17827e-11) (2.44187e-10 -1.25025e-12 -4.00827e-11) (7.09467e-10 -3.6037e-12 -2.3175e-10) (1.87126e-09 -1.35884e-11 -4.49106e-10) (3.83766e-09 -3.86809e-11 -4.57154e-10) (5.71366e-09 -4.66351e-11 -3.01565e-10) (6.06609e-09 -3.55869e-11 -2.26631e-10) (4.50885e-09 -5.95269e-12 -1.70548e-10) (1.91247e-09 -5.19075e-12 -8.54253e-12) (7.71258e-10 2.76943e-12 8.6162e-11) (3.56776e-10 4.50033e-12 7.54922e-11) (3.68655e-10 -6.12159e-13 3.3242e-11) (6.19181e-10 -2.09349e-11 -5.38533e-11) (9.13825e-10 -5.00359e-11 -1.01251e-10) (1.38398e-09 -6.91889e-11 5.09189e-11) (2.46538e-09 -7.76515e-11 5.06117e-10) (3.86728e-09 -8.9351e-11 9.62234e-10) (5.1696e-09 -2.37106e-10 9.46003e-10) (6.39938e-09 -4.23961e-10 6.0274e-10) (6.46051e-09 -3.20897e-10 4.25733e-10) (4.17793e-09 3.03587e-11 5.35803e-10) (1.90237e-09 1.40783e-10 4.57342e-10) (1.02157e-09 7.86545e-11 1.62715e-10) (1.01728e-09 8.83263e-12 -1.64054e-10) (1.71551e-09 -4.90129e-11 -5.2713e-10) (3.37002e-09 -1.84094e-11 -5.74548e-10) (6.7297e-09 1.54037e-10 3.06656e-10) (9.2606e-09 3.31663e-10 2.07178e-09) (7.07938e-09 2.21748e-10 2.69115e-09) (3.41838e-09 3.06029e-12 1.7308e-09) (1.45876e-09 -1.04036e-10 6.62823e-10) (1.14172e-09 -1.50087e-10 1.16048e-10) (2.23477e-09 -2.58898e-10 -5.32569e-10) (4.72943e-09 -3.78752e-10 -1.68401e-09) (7.25686e-09 -3.72269e-10 -2.48845e-09) (8.22415e-09 -2.03983e-10 -2.4259e-09) (6.33969e-09 2.75982e-11 -1.62645e-09) (2.73796e-09 9.30672e-11 -5.871e-10) (6.09988e-10 3.80378e-11 -4.31749e-11) (1.3511e-10 1.19179e-11 4.28123e-11) (7.28242e-11 6.51778e-12 3.8311e-11) (8.85592e-11 5.41975e-12 2.50248e-12) (3.19723e-10 8.73785e-12 -1.17364e-10) (9.91652e-10 -1.25958e-12 -3.55413e-10) (2.11234e-09 -4.46501e-11 -4.65151e-10) (3.30741e-09 -8.88028e-11 -3.93081e-10) (3.85994e-09 -8.00119e-11 -3.00329e-10) (3.30195e-09 -3.5527e-11 -1.87901e-10) (2.35223e-10 1.48574e-12 1.07671e-11) (2.63507e-11 1.34485e-12 1.47546e-11) (-3.2974e-13 1.16009e-12 1.42039e-11) (-2.52735e-13 2.27849e-13 6.83496e-12) (4.91407e-12 -9.37771e-13 8.18151e-13) (2.69718e-11 -6.54072e-12 -8.63216e-12) (3.13203e-11 -7.9547e-12 -4.38834e-12) (7.3783e-11 -1.13814e-11 2.72165e-11) (2.47113e-10 -1.88908e-11 1.20124e-10) (4.88726e-10 -5.74102e-11 1.46289e-10) (7.7157e-10 -1.30673e-10 8.33904e-11) (8.58189e-10 -1.06105e-10 6.66985e-11) (4.37653e-10 2.2972e-11 1.13083e-10) (9.17637e-11 4.18717e-11 8.41238e-11) (7.33473e-12 1.22739e-11 1.77522e-11) (1.18308e-12 2.38676e-12 -8.2348e-12) (5.56552e-11 -1.00547e-11 -1.85035e-10) (3.1565e-10 -2.08132e-11 -3.06425e-10) (1.50347e-09 1.58417e-11 -1.50993e-10) (3.74446e-09 1.31076e-10 9.72062e-10) (3.10243e-09 8.63505e-11 1.64469e-09) (1.04961e-09 -4.12167e-11 9.38425e-10) (1.84346e-10 -5.66037e-11 2.45356e-10) (4.11603e-11 -2.72849e-11 2.55508e-11) (1.18293e-10 -5.31767e-11 -6.1987e-11) (4.87283e-10 -1.1618e-10 -3.74709e-10) (9.14273e-10 -1.23613e-10 -6.65815e-10) (9.9733e-10 -5.37656e-11 -6.38568e-10) (6.78704e-10 3.20674e-11 -4.01511e-10) (1.58708e-10 3.29734e-11 -1.06651e-10) (-2.63298e-14 2.49399e-12 -2.13941e-12) (-4.46823e-11 1.05067e-11 2.14546e-11) (-7.73444e-11 1.19766e-11 5.7246e-11) (-1.58973e-11 3.31117e-12 1.11511e-11) (8.5577e-13 4.54381e-13 -1.71429e-12) (9.08606e-11 -9.95325e-14 -6.37222e-11) (3.87648e-10 -2.17279e-11 -1.42942e-10) (7.40094e-10 -5.22414e-11 -1.31233e-10) (8.67566e-10 -4.75631e-11 -8.58097e-11) (6.40255e-10 -1.57573e-11 -4.00145e-11) (6.36611e-11 1.08902e-12 -1.03991e-11) (-1.9897e-14 3.75379e-13 1.59416e-12) (-7.18435e-11 6.10223e-12 5.36311e-11) (-1.32252e-10 4.16902e-12 8.74081e-11) (-2.77101e-11 -3.04282e-12 1.67377e-11) (-1.70775e-12 -1.26413e-12 -4.09744e-13) (-6.27494e-12 -3.40692e-12 -3.76956e-12) (-1.97269e-11 -4.86804e-12 -2.36812e-13) (-4.09397e-12 -1.85141e-12 4.21214e-12) (2.27037e-11 -1.06228e-11 1.39681e-11) (2.2476e-10 -8.2497e-11 4.80088e-11) (3.46332e-10 -9.46939e-11 9.72245e-11) (1.73836e-10 9.98615e-12 1.17871e-10) (4.15492e-11 6.94211e-11 1.32201e-10) (-5.6133e-11 6.53314e-11 8.33901e-11) (-1.09393e-10 3.70214e-11 -3.41845e-11) (-3.09078e-10 2.30091e-12 -4.86538e-10) (-5.92176e-11 -5.08423e-11 -5.96973e-10) (4.89881e-10 -4.03107e-11 -2.58394e-10) (2.96397e-09 -7.40639e-12 6.65826e-10) (3.87236e-09 3.091e-11 2.25022e-09) (1.19745e-09 -9.31713e-11 1.44128e-09) (1.07645e-10 -1.02309e-10 4.4232e-10) (-9.33164e-12 -4.42829e-11 6.65896e-11) (1.95772e-12 -1.33313e-11 -3.76125e-12) (4.84035e-11 -4.06076e-11 -9.15418e-11) (1.47297e-10 -5.39844e-11 -2.53116e-10) (1.94666e-10 -2.7225e-11 -3.09011e-10) (1.72148e-10 2.41773e-11 -2.72373e-10) (5.99772e-11 4.72271e-11 -1.57009e-10) (-4.68546e-11 3.14288e-11 -5.57045e-11) (-3.5362e-10 6.07682e-11 -8.93029e-13) (-6.7782e-10 6.30435e-11 1.82247e-10) (-4.41266e-10 3.68078e-11 1.47659e-10) (-8.80867e-11 9.34502e-12 1.00263e-11) (-1.40028e-12 3.56721e-13 -5.33868e-12) (5.91891e-11 -7.25559e-12 -4.2624e-11) (2.383e-10 -3.21515e-11 -8.39091e-11) (3.46424e-10 -3.93751e-11 -8.96502e-11) (2.56534e-10 -1.50045e-11 -6.39317e-11) (1.42069e-10 -3.24649e-12 -9.5909e-11) (9.55613e-12 1.36279e-12 -7.80018e-12) (-1.38803e-11 2.40919e-12 6.8287e-12) (-1.30427e-10 5.44283e-12 8.23452e-11) (-7.81025e-11 -6.51672e-12 6.18965e-11) (-8.47312e-12 -3.80109e-12 6.44333e-12) (-1.87112e-11 -5.70381e-12 -3.60271e-12) (-2.25892e-10 -1.94009e-11 -4.16854e-11) (-2.84497e-10 -2.79409e-11 -3.65169e-11) (-8.83041e-12 -8.55885e-12 -1.45761e-12) (9.89232e-11 -7.14443e-11 2.20078e-11) (2.14282e-10 -1.14201e-10 1.26672e-10) (6.01621e-11 -1.44482e-11 1.6096e-10) (-2.95719e-11 1.10154e-10 2.75919e-10) (-7.3645e-11 1.55903e-10 1.82456e-10) (-1.43438e-10 9.93752e-11 -2.48512e-11) (-7.31422e-10 1.20934e-10 -8.70208e-10) (-6.23626e-10 -1.22715e-10 -1.57158e-09) (2.14664e-10 -1.04494e-10 -4.74722e-10) (1.77192e-09 -1.64466e-10 1.46255e-10) (5.50504e-09 -1.77273e-10 2.83069e-09) (3.58678e-09 -2.21283e-10 3.3261e-09) (6.99053e-10 -2.57869e-10 1.37381e-09) (6.1873e-11 -1.39351e-10 3.12116e-10) (1.3337e-11 -3.26089e-11 2.20131e-11) (1.96736e-11 -2.15991e-11 -2.07005e-11) (3.89098e-11 -2.97634e-11 -9.54188e-11) (3.27182e-11 -1.87442e-11 -1.51479e-10) (3.14682e-11 1.1715e-11 -1.71609e-10) (4.32037e-11 5.46432e-11 -1.88479e-10) (1.6481e-12 5.85646e-11 -1.23322e-10) (-7.5148e-11 3.76551e-11 -4.78068e-11) (-3.33698e-10 5.27186e-11 3.03752e-11) (-4.73672e-10 4.55754e-11 1.41114e-10) (-2.26881e-10 2.33788e-11 7.25505e-11) (-1.92041e-11 2.3893e-12 2.8274e-12) (2.4554e-12 -5.4333e-13 -1.66449e-12) (7.60362e-11 -1.52907e-11 -2.61391e-11) (1.93592e-10 -3.55586e-11 -7.63844e-11) (2.39943e-10 -2.82517e-11 -1.31781e-10) (1.0632e-10 -1.36817e-11 -1.49062e-10) (6.72232e-11 -1.30619e-12 -1.1687e-10) (-4.5757e-13 1.72943e-12 -1.2004e-11) (-3.20561e-11 2.7545e-12 7.35834e-12) (-7.24246e-11 -4.80825e-12 5.3406e-11) (-2.13967e-11 -6.9931e-12 2.85744e-11) (-1.39218e-11 -2.84288e-12 6.04496e-12) (-2.55109e-10 -2.65132e-12 -3.30024e-11) (-6.28072e-10 -3.90462e-11 -1.41133e-10) (-1.08553e-10 -5.32785e-11 -5.1314e-11) (2.25417e-11 -5.09778e-11 -5.60521e-12) (5.88451e-11 -7.74946e-11 7.72102e-11) (-1.19551e-10 -5.30759e-11 3.27398e-10) (-7.13537e-10 1.88875e-10 7.95718e-10) (-4.14192e-10 3.10802e-10 3.76656e-10) (-1.16893e-10 1.65142e-10 -2.86837e-11) (-3.69502e-10 2.59818e-10 -7.9664e-10) (-4.58141e-10 -8.91866e-11 -2.02117e-09) (9.04432e-11 -2.40581e-10 -1.02256e-09) (3.29419e-10 -1.15231e-10 -7.83199e-11) (2.47318e-09 -3.29744e-10 1.64949e-09) (3.7725e-09 -4.69933e-10 4.2164e-09) (2.1033e-09 -5.89285e-10 3.20705e-09) (8.39764e-10 -4.24294e-10 1.22565e-09) (3.21995e-10 -1.66316e-10 2.57009e-10) (1.09911e-10 -4.58105e-11 8.15294e-12) (3.69442e-11 -1.60745e-11 -3.80684e-11) (3.62789e-12 -8.62895e-12 -8.11054e-11) (-3.37907e-11 1.25666e-11 -1.2821e-10) (-3.03619e-11 4.77715e-11 -1.46973e-10) (2.61069e-12 6.68907e-11 -1.34395e-10) (-6.00086e-13 3.61841e-11 -5.67438e-11) (-1.82572e-11 1.17125e-11 -9.19855e-12) (-9.56281e-11 1.81944e-11 2.20041e-11) (-1.34691e-10 1.68758e-11 5.42839e-11) (-4.5125e-11 5.84888e-12 2.43647e-11) (-1.41441e-12 1.97764e-14 2.45857e-12) (3.29551e-12 -1.38647e-12 1.47191e-12) (1.51689e-11 -5.89007e-12 -4.876e-12) (4.94425e-11 -1.39679e-11 -4.98337e-11) (-9.63828e-12 -8.45182e-12 -6.15187e-11) (2.62804e-11 -1.91526e-11 -1.7844e-10) (1.65228e-11 -6.02266e-12 -1.33139e-10) (-1.21902e-11 1.89973e-13 -2.33664e-11) (-2.36134e-11 -2.20276e-12 3.66524e-12) (-2.03776e-11 -5.12348e-12 2.31488e-11) (-9.42904e-12 -4.29987e-13 1.45737e-11) (-7.18967e-11 9.40954e-12 7.24987e-12) (-3.36522e-10 -8.3348e-12 -8.32775e-11) (-1.61208e-10 -7.68405e-11 -1.05597e-10) (-1.68118e-11 -7.03273e-11 -3.85985e-11) (-2.10803e-11 -4.98468e-11 3.29433e-11) (-5.35707e-10 -1.01788e-10 5.89406e-10) (-2.22831e-09 1.89293e-10 1.55048e-09) (-1.48405e-09 4.72325e-10 6.28398e-10) (-1.82237e-10 2.36741e-10 -7.62325e-11) (1.02573e-10 3.65767e-10 -7.70614e-10) (4.3927e-10 6.02966e-11 -2.05876e-09) (1.85587e-10 -2.88302e-10 -1.54544e-09) (1.16738e-12 -7.37256e-11 -1.27328e-10) (1.6821e-10 -1.27269e-10 3.50766e-10) (1.48989e-09 -6.18203e-10 3.41191e-09) (2.40037e-09 -1.08796e-09 4.47539e-09) (2.74587e-09 -1.05161e-09 2.95089e-09) (2.15484e-09 -5.65871e-10 1.29479e-09) (9.05884e-10 -1.51255e-10 2.64013e-10) (1.59221e-10 -1.91807e-11 -2.47484e-11) (1.46082e-11 -6.25772e-13 -4.35411e-11) (-4.4282e-11 1.85324e-11 -1.08674e-10) (-8.01132e-11 5.51118e-11 -1.39669e-10) (-3.1417e-11 5.92724e-11 -1.00729e-10) (8.66332e-12 3.36647e-11 -4.75766e-11) (8.15184e-12 9.32945e-12 -1.03461e-11) (3.3817e-13 7.45058e-13 -2.77902e-14) (-2.27111e-12 1.30059e-12 2.34341e-12) (-6.38651e-12 2.07493e-12 6.69205e-12) (-4.06702e-12 1.13076e-12 7.87348e-12) (-4.15111e-12 -3.45743e-13 1.01755e-11) (-6.88176e-12 -1.51735e-12 5.93813e-12) (-7.75631e-12 -2.22185e-12 -4.29278e-12) (-1.12e-10 -1.30551e-11 -5.69697e-11) (-5.30058e-11 -3.07872e-11 -1.33617e-10) (-1.39441e-11 -3.44806e-11 -1.94886e-10) (-2.79831e-11 -1.23538e-11 -1.04782e-10) (-3.07505e-11 -5.31027e-12 -2.11815e-11) (-2.27546e-11 -4.61692e-12 6.97735e-12) (-7.70345e-12 3.91064e-13 1.11868e-11) (-4.97985e-12 3.83482e-12 4.62953e-12) (-2.24419e-11 3.25004e-12 -8.21215e-12) (-4.92206e-11 -3.37233e-11 -6.07052e-11) (-5.04204e-11 -8.03199e-11 -7.52006e-11) (-1.24933e-10 -7.47149e-11 2.3435e-11) (-1.07284e-09 -1.05146e-10 7.48594e-10) (-2.98197e-09 1.18116e-10 1.73307e-09) (-1.94373e-09 3.46115e-10 4.45535e-10) (-2.02182e-10 2.15832e-10 -2.01519e-10) (6.2698e-10 5.35194e-10 -1.15311e-09) (1.59149e-09 3.09955e-10 -2.39343e-09) (5.06719e-10 -1.2622e-10 -1.57427e-09) (-2.49449e-10 -1.17245e-10 -4.12449e-10) (-4.18961e-10 -1.42902e-10 1.68358e-10) (-4.10443e-10 -6.0615e-10 1.97641e-09) (1.3237e-09 -1.56799e-09 4.41008e-09) (4.04475e-09 -1.94343e-09 4.7592e-09) (4.65223e-09 -1.08373e-09 3.19356e-09) (2.32438e-09 -2.37964e-10 1.05271e-09) (4.2395e-10 -1.23635e-11 6.34426e-11) (2.5879e-11 4.08592e-12 -2.91807e-11) (-3.31102e-11 2.36716e-11 -9.11344e-11) (-8.40974e-11 5.86751e-11 -1.24876e-10) (-3.60822e-11 4.98043e-11 -6.76335e-11) (4.20921e-12 2.03573e-11 -2.08319e-11) (1.8089e-11 1.00782e-11 -8.02768e-12) (2.27947e-11 4.31893e-12 -5.81514e-13) (1.18156e-11 1.15235e-12 1.91601e-12) (4.38041e-12 1.0118e-12 1.46345e-12) (1.65327e-12 1.40604e-12 1.90917e-12) (-5.8115e-12 4.68167e-12 9.68497e-12) (-7.61031e-11 1.28729e-11 4.30133e-11) (-1.58318e-10 2.35169e-12 1.95738e-11) (-1.32992e-10 -1.37377e-11 -3.53928e-11) (-6.70322e-11 -3.71156e-11 -7.90816e-11) (-4.53103e-11 -4.96643e-11 -1.39026e-10) (-6.61921e-11 -2.8848e-11 -1.28304e-10) (-9.23378e-11 -1.38717e-11 -6.13201e-11) (-8.35213e-11 -1.11633e-11 -2.7611e-12) (-2.88116e-11 -1.45937e-12 1.15088e-11) (-1.28557e-12 1.24088e-12 1.30934e-12) (1.10599e-12 1.11031e-12 -1.61325e-12) (4.69435e-12 -6.56136e-12 -2.34616e-11) (-1.9063e-11 -2.65734e-11 -3.93078e-11) (-1.41868e-10 -4.53532e-11 1.1321e-11) (-9.01407e-10 -5.04264e-11 5.46788e-10) (-2.09898e-09 6.24014e-11 1.27204e-09) (-1.45018e-09 1.65422e-10 2.96861e-10) (-1.8937e-10 1.47251e-10 -3.03477e-10) (1.06739e-09 5.46735e-10 -1.72768e-09) (2.63589e-09 5.20966e-10 -2.84144e-09) (8.93644e-10 9.69028e-11 -1.47818e-09) (-2.72402e-10 -1.02073e-11 -5.10446e-10) (-1.56839e-09 -1.96815e-10 -1.5972e-10) (-1.6179e-09 -7.38851e-10 1.18637e-09) (-1.3757e-10 -1.74734e-09 3.15256e-09) (3.24161e-09 -2.6604e-09 5.67785e-09) (5.3931e-09 -1.52658e-09 5.30761e-09) (3.16611e-09 -2.5168e-10 2.25303e-09) (5.70763e-10 1.07695e-11 2.47951e-10) (1.76947e-11 4.73536e-12 -1.2007e-11) (-3.42484e-11 2.47267e-11 -7.99838e-11) (-7.79314e-11 5.31476e-11 -1.06632e-10) (-2.21441e-11 3.17838e-11 -3.5757e-11) (5.33856e-12 1.01061e-11 -5.19342e-12) (3.47437e-11 1.11386e-11 6.64866e-13) (5.22866e-11 3.40025e-12 3.76515e-12) (2.00549e-11 -5.17772e-13 -2.26254e-13) (2.62046e-12 4.76534e-13 -5.75777e-13) (7.55732e-13 1.87509e-12 -1.34184e-13) (-3.89541e-12 1.03454e-11 3.72197e-12) (-4.93813e-11 3.03838e-11 2.13559e-11) (-1.45186e-10 2.4997e-11 1.85518e-11) (-2.44426e-11 -2.6108e-12 -1.09373e-11) (-2.76593e-11 -2.54564e-11 -3.46035e-11) (-4.94311e-11 -4.62165e-11 -7.60747e-11) (-1.25167e-10 -4.03823e-11 -1.06581e-10) (-2.18933e-10 -2.16967e-11 -8.25142e-11) (-1.95099e-10 -1.67506e-11 -1.00629e-11) (-8.53115e-11 -8.74595e-12 1.15124e-11) (-1.01493e-11 4.07289e-13 2.97253e-13) (-1.22745e-13 6.52975e-13 -1.83058e-12) (1.9134e-12 2.15521e-13 -7.9908e-12) (-1.5192e-12 -8.86147e-13 -3.592e-12) (-1.52596e-11 -2.20264e-12 6.41873e-12) (-1.39212e-10 -3.33937e-12 1.41609e-10) (-4.91628e-10 2.11883e-11 4.36272e-10) (-6.51793e-10 7.16317e-11 2.63841e-10) (-1.46818e-10 5.16297e-11 -1.02758e-10) (4.57648e-10 2.03315e-10 -1.01363e-09) (2.31103e-09 3.64275e-10 -2.76418e-09) (1.55674e-09 3.05436e-10 -2.16618e-09) (5.66823e-12 1.56841e-10 -8.08171e-10) (-9.01099e-10 2.2375e-11 -5.11844e-10) (-1.48461e-09 -5.78154e-10 2.70693e-10) (-9.34888e-10 -1.68242e-09 1.98707e-09) (1.16669e-09 -2.80869e-09 5.17772e-09) (3.47261e-09 -1.69222e-09 6.03898e-09) (2.7655e-09 -2.41654e-10 3.18955e-09) (6.278e-10 3.96449e-11 4.98309e-10) (1.36957e-11 4.34822e-12 -7.65409e-13) (-2.29319e-11 1.62245e-11 -5.04185e-11) (-5.51493e-11 3.29769e-11 -7.35084e-11) (-9.41544e-12 1.31328e-11 -1.39618e-11) (6.9205e-12 5.58241e-12 6.53217e-13) (6.81283e-11 1.05767e-11 1.89564e-11) (7.82135e-11 1.72144e-12 1.35048e-11) (1.0048e-11 -2.48643e-13 -1.53025e-12) (-1.53356e-12 6.49806e-13 -2.34248e-12) (-1.57505e-11 1.05852e-11 -9.2262e-12) (-2.03838e-11 2.94664e-11 -6.35656e-12) (-2.31945e-11 3.72229e-11 1.36295e-12) (-2.56368e-11 1.72836e-11 -7.92337e-13) (2.40555e-12 2.21485e-12 -9.02235e-12) (-1.94461e-12 -7.46092e-12 -1.04851e-11) (-4.91962e-11 -3.11126e-11 -2.79667e-11) (-2.79503e-10 -5.97088e-11 -6.58241e-11) (-4.4974e-10 -3.31209e-11 -4.65296e-11) (-2.58987e-10 -2.11477e-11 5.00821e-12) (-8.33863e-11 -1.61394e-11 6.75465e-12) (-2.64688e-11 -5.42153e-12 -2.50157e-12) (-1.52522e-11 -3.27776e-13 -7.06873e-12) (-9.70432e-12 1.295e-12 -5.31043e-12) (-1.12126e-12 4.0257e-13 2.41523e-14) (2.59052e-12 1.28326e-12 6.42138e-12) (1.78527e-11 3.28158e-12 4.10487e-11) (-9.37476e-12 7.75588e-12 7.26492e-11) (-1.14237e-10 3.00461e-11 1.08394e-10) (-9.28876e-11 2.5889e-11 2.07921e-11) (-2.35891e-12 1.33138e-11 -7.19378e-11) (5.37078e-10 3.39477e-11 -1.02393e-09) (1.28595e-09 2.35263e-10 -2.57083e-09) (6.16342e-10 5.04718e-10 -2.53383e-09) (-2.82689e-10 2.24561e-10 -1.15612e-09) (-3.5838e-10 -1.56631e-10 -1.78857e-10) (-6.86381e-10 -1.07351e-09 8.79921e-10) (-3.69021e-10 -2.51545e-09 4.18197e-09) (9.44702e-10 -1.57271e-09 5.35415e-09) (1.41818e-09 -2.46282e-10 3.13106e-09) (5.44252e-10 4.77463e-11 6.86287e-10) (2.9255e-11 7.7369e-12 1.314e-11) (-2.10844e-12 5.7703e-12 -1.73241e-11) (-1.4661e-11 1.07983e-11 -3.14122e-11) (-6.10151e-13 2.20301e-12 -2.72596e-12) (1.42127e-11 3.44091e-12 6.67146e-12) (1.05165e-10 1.57114e-12 4.98421e-11) (9.75979e-11 -1.81423e-12 3.12866e-11) (4.24627e-12 1.73911e-13 -4.05125e-13) (-2.80457e-11 4.58874e-12 -1.62656e-11) (-1.60999e-10 4.20768e-11 -7.09012e-11) (-1.26128e-10 7.90255e-11 -6.98887e-11) (-3.55655e-11 6.62188e-11 -4.06007e-11) (-5.66737e-13 2.80711e-11 -2.06132e-11) (4.77135e-11 2.53106e-11 -9.23581e-11) (2.33249e-12 -7.3675e-13 -5.84415e-12) (-6.30707e-11 -1.21149e-11 5.19367e-12) (-6.19454e-10 -3.81528e-11 8.52276e-11) (-7.88455e-10 -2.06675e-11 1.07383e-10) (-2.10031e-10 -2.65306e-11 3.05577e-11) (-1.73795e-11 -1.22551e-11 2.44843e-12) (-3.29036e-12 -6.6802e-12 -4.1694e-13) (-4.39838e-12 -4.88292e-12 -2.06515e-12) (-5.76612e-12 -3.64842e-12 -3.16153e-12) (-5.69932e-13 -3.58731e-13 -3.9413e-13) (2.36134e-12 9.81209e-13 1.61706e-12) (2.73789e-11 1.29646e-11 2.57799e-11) (2.71291e-11 2.04636e-11 5.23205e-11) (-4.75363e-12 2.3512e-11 5.93984e-11) (-2.27416e-11 1.76735e-11 4.39861e-11) (-3.22312e-12 8.53998e-13 3.53598e-12) (3.69625e-12 -5.23031e-12 -2.82321e-11) (1.1972e-10 3.17481e-11 -8.41655e-10) (2.46893e-10 5.45042e-10 -3.32783e-09) (-3.75557e-11 6.40991e-10 -3.50162e-09) (-1.22494e-10 -6.15438e-11 -6.69839e-10) (-1.38888e-10 -2.97448e-10 1.21678e-10) (-8.23366e-10 -1.56489e-09 2.46715e-09) (-7.46518e-10 -1.27212e-09 4.05626e-09) (2.37823e-10 -2.64935e-10 2.36703e-09) (3.44199e-10 1.75285e-11 6.5444e-10) (6.96835e-11 1.32687e-11 4.24952e-11) (1.10701e-11 4.73408e-12 -1.04782e-11) (6.55816e-12 4.35206e-12 -1.62625e-11) (7.7923e-12 1.25778e-12 -2.43224e-12) (7.20313e-11 -4.26471e-12 3.78955e-11) (2.45639e-10 -2.92598e-11 1.60186e-10) (2.0993e-10 -1.84197e-11 1.19174e-10) (1.29316e-11 7.11783e-13 5.70072e-12) (-4.20922e-11 8.73753e-12 -1.47869e-11) (-4.03706e-10 7.16686e-11 -1.39448e-10) (-4.4898e-10 1.42845e-10 -2.4236e-10) (-1.652e-10 1.39169e-10 -2.37181e-10) (9.94614e-12 9.60308e-11 -1.98979e-10) (8.05663e-11 7.66774e-11 -2.83215e-10) (1.87595e-12 1.42728e-11 -3.08471e-11) (-1.5314e-10 3.81477e-11 1.69343e-11) (-1.13683e-09 1.09042e-10 2.51954e-10) (-9.89727e-10 -1.86542e-11 2.21552e-10) (-9.81615e-11 -4.48066e-11 2.4353e-11) (1.76586e-11 -4.36947e-11 3.93406e-12) (6.7016e-11 -6.89087e-11 1.08744e-11) (1.94546e-11 -2.13737e-11 5.41219e-12) (-3.52991e-13 -2.86545e-12 -6.1959e-13) (-1.10231e-11 -3.79723e-12 -9.57353e-12) (-1.75229e-11 3.9728e-12 -1.47989e-11) (-6.88025e-12 7.75107e-12 -2.35481e-12) (-7.88013e-13 1.35799e-11 1.27084e-11) (2.52539e-11 2.88568e-11 6.28735e-11) (8.40698e-11 2.8451e-11 1.21427e-10) (8.44637e-11 -2.44017e-12 1.0006e-10) (6.97075e-12 -5.39365e-12 1.02735e-11) (-2.89502e-11 -1.28532e-12 -4.11755e-11) (-4.16129e-10 2.85088e-10 -1.17258e-09) (-5.67177e-10 7.40244e-10 -3.42463e-09) (-1.69758e-10 5.87252e-11 -1.77752e-09) (-7.27744e-11 -1.05371e-10 -7.91131e-11) (-7.18268e-10 -6.20437e-10 8.08952e-10) (-1.36891e-09 -8.50704e-10 2.33878e-09) (-3.07989e-10 -2.78912e-10 1.46206e-09) (1.67028e-10 -1.78406e-11 4.49258e-10) (1.15143e-10 1.9686e-11 6.66269e-11) (5.64834e-11 1.51457e-11 -1.79334e-11) (5.19919e-11 8.8421e-12 -3.41678e-11) (9.62783e-11 -3.94929e-12 -8.31832e-12) (3.52593e-10 -5.44531e-11 1.52077e-10) (7.99904e-10 -1.55183e-10 5.52538e-10) (7.19383e-10 -1.14066e-10 5.5394e-10) (1.36227e-10 -2.99485e-12 1.13862e-10) (-9.06464e-12 4.6414e-12 2.22569e-12) (-3.89703e-10 7.91077e-11 -7.9198e-11) (-7.39132e-10 1.5645e-10 -2.79403e-10) (-3.62081e-10 1.42824e-10 -3.65033e-10) (-4.70509e-11 1.16533e-10 -4.08789e-10) (4.79461e-11 1.3736e-10 -5.29345e-10) (2.07957e-11 1.38149e-10 -2.22074e-10) (-1.08513e-10 1.27977e-10 -4.61117e-11) (-5.0027e-10 1.91466e-10 5.61286e-11) (-4.22142e-10 -2.626e-11 5.52174e-11) (-9.6287e-11 -1.26221e-10 7.89305e-12) (4.87055e-11 -2.41359e-10 1.89713e-11) (1.543e-10 -2.2119e-10 8.24031e-11) (8.30356e-11 -6.39352e-11 7.62226e-11) (2.46646e-12 -1.28997e-12 9.60614e-12) (-4.28677e-11 1.15697e-11 -1.21346e-11) (-2.75605e-10 6.36526e-11 -1.63267e-10) (-3.08871e-10 8.22246e-11 -1.8057e-10) (-6.78097e-11 2.71696e-11 -2.6711e-11) (3.88889e-12 3.20578e-12 5.66816e-12) (2.56738e-10 8.04747e-12 1.75405e-10) (6.68969e-10 -4.75532e-11 3.96996e-10) (2.57946e-10 -5.02121e-11 1.59441e-10) (-1.94687e-12 -6.26226e-13 1.37656e-13) (-4.1964e-10 1.24872e-10 -2.98849e-10) (-1.00501e-09 5.92072e-10 -1.49043e-09) (-6.26802e-10 3.95313e-10 -1.76088e-09) (-3.12043e-10 -6.09083e-11 -4.45029e-10) (-6.40782e-10 -3.01128e-10 1.36303e-10) (-1.27378e-09 -6.6521e-10 1.09538e-09) (-4.53373e-10 -3.39193e-10 8.61807e-10) (4.4407e-11 -4.09367e-11 2.4761e-10) (9.36602e-11 2.19313e-11 5.462e-11) (9.39054e-11 3.24106e-11 -2.2208e-11) (1.17341e-10 1.66686e-11 -6.17554e-11) (2.77293e-10 -2.76191e-11 -4.10703e-11) (9.59752e-10 -1.63458e-10 2.64259e-10) (2.11086e-09 -3.8632e-10 1.19965e-09) (2.13973e-09 -3.78067e-10 1.68336e-09) (7.79889e-10 -8.3003e-11 7.97878e-10) (2.70949e-11 1.53186e-11 8.66071e-11) (-1.65905e-10 5.26442e-11 3.22737e-11) (-7.17711e-10 1.43054e-10 -1.20812e-10) (-5.87361e-10 1.21373e-10 -3.38199e-10) (-1.89388e-10 8.86144e-11 -4.48115e-10) (-4.31433e-11 1.16634e-10 -5.66278e-10) (5.71121e-11 3.16917e-10 -5.49102e-10) (-7.36455e-11 3.39632e-10 -2.59408e-10) (-2.03995e-10 1.86503e-10 -8.62706e-11) (-2.49342e-10 -2.3752e-11 -3.80332e-11) (-2.83936e-10 -3.25735e-10 -2.83396e-11) (-1.23135e-10 -5.35807e-10 5.56944e-11) (1.32797e-10 -3.92978e-10 1.77104e-10) (2.19079e-10 -1.43036e-10 2.1472e-10) (5.46095e-11 1.763e-11 8.38504e-11) (-4.91757e-11 5.07878e-11 1.57339e-11) (-4.86404e-10 1.96451e-10 -1.77154e-10) (-7.19368e-10 1.50351e-10 -3.75977e-10) (-2.35966e-10 7.53213e-12 -1.29969e-10) (-1.73711e-12 -2.04792e-12 -7.75421e-13) (1.41745e-10 -3.35763e-11 8.5012e-11) (6.95323e-10 -4.0847e-11 3.902e-10) (6.41954e-10 2.38316e-12 3.14555e-10) (4.01884e-11 3.95009e-12 1.49897e-11) (-1.43661e-10 3.86517e-11 -8.67789e-11) (-1.13551e-09 3.73494e-10 -8.72806e-10) (-1.08685e-09 5.03204e-10 -1.3954e-09) (-6.02681e-10 1.49007e-10 -8.31103e-10) (-5.45558e-10 -1.4648e-10 -1.89238e-10) (-9.11702e-10 -4.98267e-10 3.34447e-10) (-5.33057e-10 -4.14848e-10 5.33849e-10) (-4.98553e-11 -6.79811e-11 1.73391e-10) (1.54681e-11 6.37428e-12 2.00676e-11) (3.55833e-11 2.08572e-11 -1.34652e-11) (7.75298e-11 1.51716e-11 -6.70586e-11) (2.25715e-10 -3.79912e-11 -1.04694e-10) (9.58068e-10 -1.88553e-10 3.60419e-11) (2.97574e-09 -4.32864e-10 1.09508e-09) (4.32446e-09 -5.15212e-10 2.75971e-09) (2.57878e-09 -2.66566e-10 2.51827e-09) (4.66519e-10 6.74948e-12 8.9948e-10) (-8.21294e-11 4.56228e-11 1.88619e-10) (-4.02584e-10 8.95613e-11 7.28461e-11) (-5.58211e-10 8.0693e-11 -1.83891e-10) (-2.85279e-10 4.63329e-11 -3.75121e-10) (-2.11306e-10 8.30242e-11 -5.31049e-10) (-3.44725e-11 3.82224e-10 -6.72545e-10) (-9.57652e-11 5.87228e-10 -5.31645e-10) (-3.09833e-10 3.18385e-10 -2.33541e-10) (-6.19886e-10 -4.36549e-11 -1.09785e-10) (-7.95609e-10 -6.53148e-10 7.34806e-11) (-2.06378e-10 -8.48732e-10 2.69806e-10) (4.27975e-10 -6.9113e-10 3.22925e-10) (5.4426e-10 -2.48375e-10 1.90346e-10) (8.82318e-11 2.93928e-11 2.99903e-11) (-9.50984e-11 1.44046e-10 4.39409e-12) (-8.56999e-10 4.86975e-10 -1.65707e-10) (-9.19424e-10 2.64593e-10 -2.97749e-10) (-2.07135e-10 -1.43368e-11 -7.96476e-11) (-4.52597e-12 -1.5691e-11 6.36911e-12) (1.14676e-10 -5.94793e-11 1.44035e-10) (4.34848e-10 -2.57772e-11 4.055e-10) (5.48799e-10 2.68934e-11 3.10072e-10) (2.19628e-10 1.51779e-11 1.48282e-11) (9.03294e-12 1.03145e-11 -7.04106e-11) (-5.00282e-10 1.25296e-10 -6.2952e-10) (-1.04778e-09 3.43409e-10 -1.14894e-09) (-5.47531e-10 2.05379e-10 -6.89866e-10) (-2.0618e-10 -2.19474e-11 -1.68128e-10) (-3.05684e-10 -1.91302e-10 5.24946e-12) (-4.02194e-10 -3.1344e-10 2.26049e-10) (-1.09945e-10 -9.94662e-11 1.66807e-10) (2.9621e-12 -1.40328e-12 2.64025e-11) (5.86239e-12 3.96103e-12 -2.72839e-12) (2.05297e-11 2.83443e-12 -6.93193e-11) (6.27341e-11 -5.26967e-11 -1.79464e-10) (2.36527e-10 -1.16936e-10 -1.71207e-10) (1.13898e-09 -2.27146e-10 9.71168e-11) (3.56669e-09 -1.98772e-10 1.67694e-09) (4.33169e-09 5.92317e-11 3.46411e-09) (1.88828e-09 1.42019e-10 2.63925e-09) (1.29216e-10 1.00593e-10 9.10823e-10) (-2.43817e-10 5.45489e-11 2.43243e-10) (-4.53751e-10 2.8922e-11 -2.71574e-11) (-4.30739e-10 2.99177e-12 -3.34248e-10) (-1.13755e-09 3.478e-11 -8.27646e-10) (-8.69705e-10 4.14115e-10 -8.20292e-10) (-6.58928e-10 7.24105e-10 -5.9402e-10) (-5.51225e-10 4.50875e-10 -1.88053e-10) (-4.00028e-10 6.09493e-12 9.84163e-11) (-2.26865e-10 -4.2525e-10 3.7994e-10) (4.82485e-10 -1.06433e-09 6.10388e-10) (1.3172e-09 -1.16253e-09 1.44374e-10) (9.57787e-10 -4.16174e-10 -3.23124e-10) (1.14666e-10 5.07585e-11 -1.2762e-10) (-3.30474e-10 3.63717e-10 -1.62278e-10) (-1.68371e-09 9.07153e-10 -2.08552e-10) (-1.14709e-09 3.55221e-10 -6.91001e-11) (-1.34838e-10 -4.65003e-12 3.70624e-11) (-2.64781e-12 -3.85416e-11 1.22686e-10) (1.18489e-10 -3.41239e-11 3.93894e-10) (2.05686e-10 5.7917e-12 4.19637e-10) (2.4012e-10 -1.99115e-11 1.73328e-10) (3.64692e-10 -4.46861e-11 -7.22517e-11) (3.82875e-10 -1.81912e-11 -4.59279e-10) (-1.40816e-11 3.63846e-11 -7.92264e-10) (-6.60331e-10 7.23061e-11 -1.11067e-09) (-7.88494e-10 2.38483e-11 -8.23728e-10) (-4.59061e-10 -5.26196e-11 -3.13006e-10) (-2.37415e-10 -7.50468e-11 -2.79476e-11) (-1.03505e-10 -6.77032e-11 1.08117e-10) (5.42843e-11 -7.59299e-11 2.91582e-10) (2.76561e-10 -3.57485e-11 3.26654e-10) (1.434e-10 -2.69852e-12 5.26053e-11) (4.26264e-11 -1.69908e-11 -6.51009e-11) (-3.03301e-11 -1.6916e-10 -4.95351e-10) (-7.38734e-11 -3.36898e-10 -7.99828e-10) (1.05148e-10 -1.50447e-10 -2.66114e-10) (4.45919e-10 -6.10212e-11 8.10832e-11) (2.1374e-09 2.69431e-10 1.58846e-09) (2.56764e-09 6.93788e-10 2.99218e-09) (8.35444e-10 4.49152e-10 1.85729e-09) (-8.82524e-11 1.12011e-10 4.66382e-10) (-3.2463e-10 1.41716e-11 8.27145e-11) (-8.82318e-10 -6.4735e-11 -3.4743e-10) (-2.59647e-09 3.25649e-11 -8.82231e-10) (-4.43349e-09 8.32199e-10 -1.14563e-09) (-3.00487e-09 1.45884e-09 -2.56574e-10) (-7.54365e-10 6.46057e-10 3.50678e-10) (-3.28186e-11 4.91987e-11 3.54874e-10) (4.4336e-10 -5.24999e-10 5.66202e-10) (1.26177e-09 -1.46413e-09 7.46544e-11) (1.68602e-09 -1.62109e-09 -1.01718e-09) (9.98532e-10 -5.84836e-10 -1.11085e-09) (1.7531e-10 1.176e-10 -4.19532e-10) (-2.35801e-10 4.58174e-10 -2.03264e-10) (-1.16006e-09 1.0079e-09 1.52968e-10) (-1.14526e-09 5.86476e-10 5.32994e-10) (-4.62563e-10 8.46964e-11 4.67963e-10) (-1.96915e-10 -3.12852e-11 4.05177e-10) (-7.87875e-11 -2.16497e-11 3.02639e-10) (2.00362e-11 -2.11744e-11 1.40391e-10) (1.41622e-10 -6.68519e-11 5.5608e-11) (7.14102e-10 -2.65915e-10 -2.72335e-10) (1.27719e-09 -2.79513e-10 -1.1022e-09) (6.49804e-10 2.72483e-11 -1.13837e-09) (-7.51436e-11 1.17554e-10 -6.04769e-10) (-4.89041e-10 9.75941e-11 -4.06398e-10) (-5.20191e-10 -7.48102e-13 -1.383e-10) (-1.3055e-10 -3.64091e-11 4.50329e-11) (2.83203e-11 -6.76272e-11 1.85008e-10) (4.33293e-10 -1.40316e-10 6.28095e-10) (4.91628e-10 -6.52717e-11 5.31813e-10) (1.57892e-10 -2.08461e-11 1.10307e-10) (2.30156e-11 -1.678e-11 -1.64421e-11) (-6.20316e-12 -1.62837e-10 -3.88444e-10) (-1.56472e-10 -4.62934e-10 -1.57525e-09) (-4.03532e-11 -3.98814e-10 -1.637e-09) (1.05183e-10 -6.81119e-11 -2.60786e-10) (2.93037e-10 2.95814e-11 1.48811e-10) (1.25683e-09 4.41334e-10 1.49185e-09) (1.03714e-09 6.65464e-10 1.83429e-09) (1.42398e-10 2.87365e-10 6.55889e-10) (-8.50778e-11 4.58535e-11 7.84198e-11) (-6.25759e-10 2.76152e-12 -1.32377e-10) (-5.31232e-10 7.73845e-11 -1.25608e-10) (-3.56738e-09 5.36256e-10 -2.29484e-10) (-5.81168e-09 1.15068e-09 5.30847e-10) (-1.98593e-09 4.26713e-10 7.80666e-10) (-7.36815e-11 -5.14133e-11 1.70516e-10) (3.09497e-10 -3.74132e-10 7.92701e-11) (9.61608e-10 -9.55314e-10 -4.46034e-10) (9.02132e-10 -7.7236e-10 -8.22153e-10) (3.98448e-10 -2.0971e-10 -5.45086e-10) (1.11164e-10 7.00121e-11 -2.1074e-10) (2.44461e-11 2.58367e-10 -9.94671e-11) (-1.3122e-10 6.08777e-10 1.2153e-10) (-3.44101e-10 6.36236e-10 5.14024e-10) (-4.89897e-10 3.3895e-10 7.53117e-10) (-5.52516e-10 4.74147e-11 6.84836e-10) (-3.5423e-10 -6.05215e-11 3.53035e-10) (-5.16686e-11 -3.47711e-11 6.65908e-11) (3.44584e-11 -4.10667e-11 7.8476e-12) (3.9614e-10 -2.53441e-10 -1.82341e-10) (8.28463e-10 -4.47167e-10 -6.99277e-10) (6.57701e-10 -2.54395e-10 -8.23307e-10) (2.61762e-10 2.92854e-12 -4.08282e-10) (5.56067e-11 3.33989e-11 -7.30948e-11) (7.05283e-12 5.81435e-12 1.46076e-12) (8.88423e-12 -1.25108e-12 4.27144e-11) (-1.25561e-11 -3.8309e-11 1.63474e-10) (-7.05081e-11 -6.67705e-11 2.68105e-10) (-9.44448e-11 -7.07362e-11 2.54363e-10) (-5.80424e-11 -6.2965e-11 1.15799e-10) (-2.74973e-11 -3.97751e-11 1.15139e-11) (-6.19447e-11 -7.18322e-11 -1.12657e-10) (-1.44736e-10 -9.82348e-11 -7.99475e-10) (8.55639e-11 9.91577e-11 -1.78861e-09) (3.64387e-10 1.80125e-10 -1.089e-09) (2.22016e-10 8.07962e-11 -1.02012e-10) (5.03829e-10 1.99963e-10 3.92671e-10) (6.77393e-10 3.55621e-10 9.28754e-10) (2.72621e-10 1.96879e-10 4.38371e-10) (2.3182e-11 2.76038e-11 3.67737e-11) (-1.04658e-11 5.98471e-12 -4.00947e-12) (-8.41552e-11 4.28466e-11 2.34325e-11) (-1.08965e-09 3.30682e-10 3.49725e-10) (-3.11569e-09 4.08189e-10 9.11731e-10) (-2.38215e-09 -2.96753e-10 6.82222e-10) (-5.77443e-10 -4.87055e-10 1.50313e-10) (-2.4978e-11 -5.33331e-10 -4.0694e-11) (2.38431e-10 -4.90503e-10 -1.80348e-10) (2.22366e-10 -1.89445e-10 -1.9359e-10) (1.2564e-10 -1.36086e-11 -1.37894e-10) (7.91376e-11 4.77291e-11 -8.6893e-11) (8.88879e-11 9.65201e-11 -4.89589e-11) (1.51252e-10 2.10197e-10 3.04651e-11) (1.57482e-10 3.83776e-10 2.54902e-10) (-8.21959e-11 4.44284e-10 5.17617e-10) (-5.32206e-10 3.17296e-10 6.2261e-10) (-8.73077e-10 7.09041e-11 4.90099e-10) (-5.32817e-10 -9.1477e-11 1.86777e-10) (-8.19556e-11 -5.84179e-11 3.07326e-11) (1.42887e-11 -5.98824e-11 4.93662e-12) (1.4478e-10 -1.98253e-10 -5.49066e-11) (2.87038e-10 -3.34207e-10 -2.13531e-10) (3.21014e-10 -2.68199e-10 -3.03459e-10) (2.36129e-10 -8.96283e-11 -2.10885e-10) (9.21258e-11 4.45039e-12 -6.77386e-11) (9.71849e-12 5.40215e-12 -4.84853e-12) (-2.32378e-13 9.31741e-13 2.16041e-12) (-6.67998e-12 -6.88638e-12 3.70094e-11) (9.53222e-13 -4.44665e-11 1.37351e-10) (8.56205e-12 -6.82779e-11 1.9142e-10) (-1.97366e-11 -3.16939e-11 7.7653e-11) (-3.66987e-11 -7.01062e-12 1.10296e-12) (-1.87349e-10 3.64206e-11 -2.09513e-10) (-2.1828e-10 2.19342e-10 -7.74414e-10) (1.92199e-10 3.79271e-10 -9.18516e-10) (4.71408e-10 3.22927e-10 -4.06333e-10) (5.85838e-10 2.72464e-10 5.62022e-12) (4.99161e-10 1.86779e-10 1.73185e-10) (1.73413e-10 5.40361e-11 5.28475e-11) (2.1172e-11 5.88637e-12 -2.22091e-12) (-7.54075e-14 9.24718e-13 -6.23032e-13) (-9.10253e-11 2.1745e-11 2.43911e-11) (-3.61867e-10 2.42628e-10 1.64365e-10) (-5.88081e-10 2.46362e-10 3.00467e-10) (-5.14411e-10 -1.43543e-10 2.53803e-10) (-5.00301e-10 -7.73049e-10 2.45544e-10) (-2.73559e-10 -1.22797e-09 1.18984e-10) (4.35408e-12 -5.40534e-10 -4.20968e-11) (2.67655e-11 -4.28537e-11 -2.84174e-11) (4.66308e-11 3.26426e-11 -3.3053e-11) (9.7518e-11 1.17753e-10 -2.37257e-11) (1.16369e-10 1.42221e-10 3.66426e-11) (1.13779e-10 1.64604e-10 9.62303e-11) (6.56896e-11 2.2091e-10 1.42998e-10) (-6.88365e-11 2.49082e-10 1.70975e-10) (-3.43409e-10 2.28091e-10 2.22804e-10) (-8.52657e-10 7.53303e-11 3.26298e-10) (-9.94581e-10 -1.82489e-10 3.59904e-10) (-4.2806e-10 -1.91079e-10 2.37772e-10) (-4.85923e-11 -9.86037e-11 9.15195e-11) (8.7195e-11 -1.48137e-10 4.53607e-11) (3.65392e-10 -3.6351e-10 -1.30759e-10) (5.77818e-10 -4.50254e-10 -4.9701e-10) (3.7486e-10 -1.94103e-10 -5.54155e-10) (8.45667e-11 3.02937e-12 -3.09484e-10) (-2.40134e-11 2.27732e-11 -1.12307e-10) (-1.84224e-11 1.21834e-12 -1.96307e-11) (-3.47658e-12 -3.12821e-12 2.2356e-12) (7.4087e-12 -1.98014e-11 5.98651e-11) (5.11127e-11 -2.01324e-11 2.44179e-10) (3.12538e-11 2.63385e-11 2.7948e-10) (-1.36727e-11 3.52158e-11 7.68471e-11) (-2.40051e-11 4.02497e-11 -1.32739e-11) (-6.4831e-11 2.09478e-10 -3.17447e-10) (1.06157e-10 4.42755e-10 -8.56581e-10) (3.84537e-10 4.31168e-10 -7.19884e-10) (3.92447e-10 2.35393e-10 -2.65344e-10) (2.1948e-10 5.23847e-11 -3.8367e-11) (6.27829e-11 -2.37555e-11 2.85681e-12) (8.35017e-12 -3.96758e-11 2.57175e-12) (-2.46494e-11 -2.84999e-11 2.65881e-12) (-1.10894e-10 3.06791e-11 -1.21743e-11) (-3.91719e-10 2.53623e-10 -7.91021e-11) (-2.8466e-10 1.45617e-10 -2.78699e-11) (-1.31173e-10 -6.18e-11 2.32399e-11) (-2.90022e-10 -6.58212e-10 1.44272e-10) (-3.90647e-10 -1.31757e-09 2.03786e-10) (-2.44191e-10 -6.80336e-10 4.51911e-11) (-3.73042e-11 -5.68273e-11 -6.23722e-12) (-1.1375e-12 7.90565e-12 -2.33787e-13) (4.5384e-11 1.5068e-10 5.32748e-11) (1.16735e-10 3.40297e-10 2.37902e-10) (6.51122e-11 3.87093e-10 3.56148e-10) (-5.66649e-11 2.88365e-10 2.38846e-10) (-1.50601e-10 1.96414e-10 9.32693e-11) (-2.79679e-10 1.49706e-10 2.37131e-11) (-3.92977e-10 4.36234e-11 2.79171e-11) (-3.25025e-10 -7.5627e-11 9.61961e-11) (-1.21605e-10 -9.1425e-11 1.09942e-10) (1.03679e-11 -6.95911e-11 7.31656e-11) (1.60355e-10 -1.28319e-10 4.43216e-11) (4.62834e-10 -2.66237e-10 -1.73212e-10) (5.62845e-10 -2.77286e-10 -6.0768e-10) (2.80258e-10 -8.71656e-11 -8.45388e-10) (-2.66995e-11 3.19651e-11 -7.23386e-10) (-7.0808e-11 -1.64078e-11 -3.28113e-10) (-1.35756e-11 -3.54838e-11 -6.98115e-11) (-4.34126e-13 -1.34926e-11 -3.16433e-12) (-3.03748e-12 -7.88719e-12 2.29965e-11) (-2.71619e-11 2.89098e-11 1.77132e-10) (-4.69626e-11 1.13571e-10 4.08281e-10) (-2.98014e-11 1.20335e-10 3.21714e-10) (-4.75196e-12 6.06404e-11 6.40123e-11) (1.80189e-11 8.17352e-11 -3.78774e-11) (1.77633e-10 2.88133e-10 -3.91348e-10) (4.31026e-10 3.69873e-10 -6.75847e-10) (3.97323e-10 1.69889e-10 -3.66037e-10) (2.20802e-10 -4.92387e-12 -6.75392e-11) (1.60429e-10 -9.89384e-11 3.98185e-11) (7.24354e-11 -1.21337e-10 6.48647e-11) (-9.78289e-12 -2.52747e-11 1.24834e-11) (-4.67849e-11 2.99471e-11 -3.54674e-12) (-2.69515e-10 2.16166e-10 -1.07998e-10) (-2.25928e-10 1.3896e-10 -1.26759e-10) (-8.39667e-11 -3.00087e-11 -4.87752e-11) (-1.92804e-10 -3.60761e-10 -5.37555e-11) (-5.2023e-10 -9.81466e-10 9.22773e-12) (-8.00456e-10 -9.65787e-10 7.22075e-11) (-5.79962e-10 -3.59007e-10 3.39445e-11) (-1.73352e-10 2.38216e-12 -1.16406e-12) (-4.11549e-11 7.2289e-11 8.11623e-12) (1.82868e-11 1.6342e-10 8.1806e-11) (5.49303e-11 2.4179e-10 2.61406e-10) (-3.49288e-11 2.52842e-10 3.43264e-10) (-1.63871e-10 2.26311e-10 2.17878e-10) (-2.81866e-10 2.09603e-10 7.55711e-11) (-3.06215e-10 1.36106e-10 -3.04584e-12) (-1.288e-10 2.73233e-11 1.84716e-11) (-1.88448e-11 -1.55906e-12 2.41258e-11) (1.5442e-11 -5.64458e-12 3.12563e-11) (6.26233e-11 -9.89955e-12 1.39672e-11) (1.49902e-10 -2.09076e-11 -9.21874e-11) (2.40899e-10 -2.86493e-11 -4.07013e-10) (2.03348e-10 -5.47281e-11 -7.20852e-10) (1.38458e-10 -1.52169e-10 -6.09371e-10) (1.14904e-10 -1.90741e-10 -2.90996e-10) (7.25924e-11 -1.31065e-10 -7.11349e-11) (2.53923e-11 -5.4109e-11 1.2395e-11) (3.78657e-12 -2.15939e-11 3.86263e-11) (-1.73482e-11 3.33281e-12 8.55814e-11) (-4.90436e-11 5.40774e-11 1.50847e-10) (-6.95733e-11 1.05846e-10 1.755e-10) (-4.62225e-11 9.95532e-11 9.54164e-11) (-3.46547e-12 5.11454e-11 6.26106e-12) (5.66098e-11 7.44373e-11 -7.29386e-11) (2.60001e-10 1.0522e-10 -2.55739e-10) (4.22065e-10 3.46175e-11 -2.75891e-10) (4.2143e-10 -7.70604e-11 -1.16211e-10) (3.40146e-10 -1.55284e-10 3.11835e-11) (1.40317e-10 -1.06199e-10 6.62218e-11) (3.71784e-12 -7.09261e-12 8.32371e-12) (7.28473e-11 5.05822e-11 -1.14732e-10) (1.88734e-10 1.37718e-10 -5.32824e-10) (2.06882e-10 1.52049e-11 -7.15951e-10) (6.54529e-11 -1.73379e-10 -4.39908e-10) (-1.18011e-10 -2.92323e-10 -1.96223e-10) (-6.36294e-10 -6.8719e-10 3.20377e-11) (-1.48986e-09 -1.15313e-09 5.39243e-10) (-1.30965e-09 -8.64789e-10 5.63649e-10) (-4.40461e-10 -1.79523e-10 1.15437e-10) (-1.54495e-10 6.5754e-11 -4.51174e-11) (-2.56651e-10 3.90295e-10 -2.09438e-10) (-2.79848e-10 4.91483e-10 -1.59946e-10) (-1.89814e-10 2.55682e-10 4.63241e-11) (-1.68343e-10 1.52684e-10 1.82653e-10) (-1.60828e-10 1.11062e-10 2.46195e-10) (-1.07152e-10 7.29849e-11 1.69568e-10) (-4.60962e-11 4.37917e-11 9.07321e-11) (-7.60193e-12 3.04517e-11 6.0483e-11) (1.5417e-11 2.42237e-11 4.33574e-11) (1.99795e-11 1.28707e-11 1.23465e-11) (3.20807e-11 8.55601e-12 -1.86019e-11) (1.03288e-10 -1.06955e-11 -1.47851e-10) (2.2102e-10 -1.20723e-10 -3.77638e-10) (3.2132e-10 -3.07202e-10 -4.723e-10) (3.21105e-10 -4.09794e-10 -3.54339e-10) (2.01051e-10 -3.30516e-10 -1.50294e-10) (7.75322e-11 -1.76812e-10 -1.59621e-11) (1.87928e-11 -7.15678e-11 2.98067e-11) (-1.04505e-12 -2.81546e-11 4.96263e-11) (-2.38465e-11 8.75679e-12 9.70164e-11) (-8.68459e-11 1.03418e-10 1.81882e-10) (-2.04266e-10 2.75477e-10 2.45362e-10) (-2.70394e-10 3.84907e-10 1.76203e-10) (-1.37476e-10 2.47083e-10 2.13611e-11) (-8.00593e-12 7.00651e-11 -2.11254e-11) (2.80493e-11 1.89784e-11 -1.13252e-11) (9.60112e-11 -2.75408e-12 1.91324e-11) (1.7073e-10 -3.84319e-11 9.84577e-11) (1.18809e-10 -2.5856e-11 8.01679e-11) (3.51853e-11 3.94939e-12 2.15235e-12) (7.28795e-11 5.60929e-13 3.95338e-11) (5.61737e-12 1.2821e-13 6.38772e-12) (-3.0678e-12 4.79778e-14 5.31226e-13) (-9.41197e-12 9.14766e-14 -1.17457e-12) (-4.5046e-12 -1.78387e-14 -1.37039e-12) (4.03636e-13 -3.02599e-14 -1.61197e-13) (3.20475e-11 -3.1203e-14 3.27755e-12) (1.32385e-10 1.57018e-12 2.49988e-11) (2.47426e-10 3.85507e-12 6.66482e-11) (3.44942e-10 6.30928e-12 1.35609e-10) (3.42978e-10 7.34926e-12 1.84497e-10) (1.66489e-10 3.80229e-12 1.1699e-10) (2.75176e-11 4.32428e-13 2.71164e-11) (1.9496e-12 1.0093e-14 4.15562e-12) (1.03228e-12 -2.56393e-14 1.65666e-12) (2.96005e-12 3.24773e-14 1.3783e-12) (1.05751e-11 3.9206e-13 -1.65131e-12) (4.50774e-11 1.48923e-13 -1.76939e-11) (1.64829e-10 -6.13954e-13 -3.95481e-11) (4.02284e-10 6.18955e-13 -2.10295e-11) (6.11362e-10 5.79762e-12 6.32081e-11) (6.45539e-10 1.01523e-11 1.40598e-10) (7.13168e-10 7.10565e-12 1.84776e-10) (1.04279e-09 -2.10098e-12 1.08668e-10) (1.9379e-09 -2.44455e-11 -1.83843e-10) (3.41335e-09 -4.4465e-11 -7.45607e-10) (4.03143e-09 -3.02273e-11 -1.00179e-09) (2.347e-09 -3.56744e-13 -5.45214e-10) (3.6963e-10 2.38292e-12 -7.63402e-11) (-1.60999e-11 2.72184e-13 -6.50386e-13) (-3.79993e-11 -1.86323e-13 3.49082e-13) (-1.55406e-12 -1.90244e-14 -9.23094e-13) (9.63176e-12 2.91818e-13 -8.55044e-12) (3.62668e-11 1.2721e-12 -3.43577e-11) (5.76279e-11 2.14096e-12 -5.68437e-11) (1.04246e-10 1.87732e-12 -5.9302e-11) (2.67567e-10 1.34036e-12 -4.0762e-11) (5.12112e-10 3.08676e-12 2.85268e-11) (5.31811e-10 4.6367e-12 9.30965e-11) (2.86096e-10 2.29669e-12 8.96407e-11) (2.58734e-09 9.9012e-12 6.71072e-10) (4.57522e-10 1.00788e-11 1.54237e-10) (2.73084e-11 1.02169e-12 3.10745e-12) (-2.2117e-11 2.93538e-13 -7.08707e-12) (-4.08473e-11 -1.10848e-12 -9.07327e-12) (-4.6299e-13 -1.91835e-13 -4.02521e-13) (1.03003e-10 1.67632e-12 1.4683e-11) (9.64382e-10 2.52543e-11 2.25168e-10) (2.74307e-09 4.72792e-11 7.66976e-10) (5.09644e-09 4.52769e-11 1.62804e-09) (6.64248e-09 7.70172e-11 2.32212e-09) (4.74451e-09 1.36356e-10 1.76134e-09) (1.3145e-09 6.94581e-11 4.9803e-10) (1.28219e-10 8.57798e-12 3.7772e-11) (1.74389e-11 2.69812e-13 -2.00402e-12) (3.49215e-11 6.08141e-13 -2.46467e-11) (1.88006e-10 8.53396e-12 -1.22374e-10) (6.75679e-10 2.18065e-11 -2.53108e-10) (1.74958e-09 5.7516e-11 -8.48603e-11) (3.69376e-09 1.60825e-10 8.2422e-10) (5.49285e-09 2.7335e-10 2.27341e-09) (5.6323e-09 1.92966e-10 2.7834e-09) (5.96061e-09 -3.65514e-11 2.40045e-09) (8.97101e-09 -3.96726e-10 1.47944e-09) (1.68101e-08 -9.9097e-10 -5.27582e-10) (2.90591e-08 -1.53994e-09 -3.70961e-09) (3.80765e-08 -1.49533e-09 -5.51124e-09) (3.25682e-08 -6.57254e-10 -4.01092e-09) (1.29993e-08 5.72434e-11 -1.09273e-09) (1.02738e-09 3.99851e-11 -1.27125e-11) (-8.42079e-11 5.76582e-12 5.78378e-12) (-7.19464e-11 1.86873e-12 -2.26149e-11) (6.05683e-11 5.61603e-12 -8.16759e-11) (4.79159e-10 3.01984e-11 -4.19152e-10) (8.29588e-10 4.46202e-11 -6.85118e-10) (9.76564e-10 2.06064e-11 -5.99564e-10) (1.74017e-09 -2.33076e-11 -4.03841e-10) (3.96647e-09 -8.09407e-11 -3.1892e-11) (6.28718e-09 -9.66134e-11 4.99596e-10) (5.72723e-09 -4.44901e-11 8.78032e-10) (2.54135e-09 -3.58715e-11 5.59596e-10) (6.30949e-10 2.46206e-11 2.2933e-10) (4.14748e-11 5.68503e-12 1.22712e-11) (9.61087e-13 6.47302e-13 -2.30841e-12) (-1.29873e-11 5.68184e-13 -7.36323e-12) (-1.17835e-11 -5.49285e-13 -2.57471e-12) (2.97988e-12 5.79735e-14 2.3422e-13) (3.59014e-10 9.8161e-12 7.57427e-11) (1.73177e-09 2.36769e-12 4.38016e-10) (3.48996e-09 -6.48148e-11 9.83886e-10) (4.79814e-09 -7.22434e-11 1.50411e-09) (3.95248e-09 9.67119e-11 1.36086e-09) (1.34812e-09 1.31824e-10 5.02671e-10) (1.05392e-10 2.50134e-11 3.49943e-11) (1.5905e-12 1.57421e-12 -3.89406e-12) (3.75651e-12 3.18261e-12 -5.19758e-11) (1.21361e-10 9.31321e-12 -1.87454e-10) (5.98223e-10 3.02076e-11 -3.64905e-10) (1.50506e-09 9.35461e-11 -1.31393e-10) (3.6071e-09 3.14801e-10 1.13335e-09) (6.56856e-09 6.07743e-10 3.71784e-09) (6.61757e-09 3.40665e-10 4.43934e-09) (5.11039e-09 -1.78292e-10 3.06553e-09) (4.88415e-09 -6.20373e-10 1.53378e-09) (6.98468e-09 -1.07813e-09 1.38361e-10) (1.08802e-08 -1.42994e-09 -1.54338e-09) (1.36065e-08 -1.28135e-09 -2.4631e-09) (1.21361e-08 -6.02891e-10 -1.91769e-09) (6.25156e-09 4.77679e-11 -7.05152e-10) (9.77543e-10 9.3889e-11 -3.73482e-11) (3.76148e-12 3.07696e-12 2.22415e-12) (-8.15766e-11 9.51512e-12 -1.99871e-12) (-9.33685e-12 3.37296e-12 -2.07933e-11) (1.88717e-10 2.51096e-11 -2.14575e-10) (7.1176e-10 5.84606e-11 -5.76825e-10) (9.01056e-10 2.57223e-11 -5.76691e-10) (1.06066e-09 -4.80179e-11 -3.56369e-10) (1.96175e-09 -1.57296e-10 -1.21667e-10) (3.53809e-09 -2.54629e-10 1.90102e-10) (4.12168e-09 -1.95425e-10 4.7465e-10) (5.61553e-10 -6.62123e-12 2.34224e-10) (5.92567e-11 1.84917e-11 8.49821e-11) (-4.57589e-11 1.74575e-11 3.33208e-11) (-1.75267e-10 2.49411e-11 -1.61041e-11) (-2.2284e-10 1.28791e-11 -5.91529e-11) (-2.38757e-10 -6.54427e-13 -3.2277e-11) (-7.34764e-11 -1.08303e-12 -6.92105e-12) (1.7372e-12 -5.11954e-14 3.91609e-13) (3.34827e-10 -1.80056e-11 8.54265e-11) (1.14489e-09 -9.1941e-11 3.60327e-10) (1.73322e-09 -1.14446e-10 7.01482e-10) (1.32301e-09 4.85809e-11 7.05692e-10) (2.48049e-10 7.70808e-11 2.11594e-10) (-1.7543e-11 1.94808e-11 1.70993e-11) (-2.43376e-10 4.29437e-11 -6.95304e-11) (-3.24594e-10 1.11619e-11 -2.76016e-10) (-8.11713e-11 -4.74423e-12 -3.12198e-10) (1.7685e-10 1.80092e-12 -3.18185e-10) (4.36251e-10 3.76323e-11 -1.38576e-10) (1.6055e-09 2.32633e-10 6.39137e-10) (4.62727e-09 6.36057e-10 3.48687e-09) (4.87963e-09 2.78601e-10 4.51355e-09) (2.49206e-09 -2.94337e-10 2.41013e-09) (1.22429e-09 -4.22067e-10 7.57395e-10) (1.15605e-09 -4.67265e-10 5.73689e-11) (1.74336e-09 -5.46014e-10 -5.44623e-10) (2.03906e-09 -4.0101e-10 -8.91417e-10) (1.49095e-09 -1.05767e-10 -6.76953e-10) (5.05274e-10 6.13232e-11 -2.41266e-10) (8.15669e-12 1.65582e-11 -1.44796e-11) (-3.79949e-10 9.68051e-11 5.44585e-13) (-1.49628e-09 1.33534e-10 5.36738e-11) (-8.55759e-10 3.89404e-11 -9.49771e-11) (-8.51258e-11 1.18433e-11 -8.98839e-11) (5.96897e-11 2.10285e-11 -1.78059e-10) (1.72008e-10 1.23684e-11 -2.24621e-10) (1.58778e-10 -1.98825e-11 -1.0452e-10) (2.9372e-10 -6.56998e-11 -2.55011e-11) (7.32441e-10 -1.39371e-10 9.86524e-11) (1.00944e-09 -1.15741e-10 2.25599e-10) (2.49345e-10 -9.57689e-12 1.20467e-10) (1.96696e-11 2.76716e-11 8.34094e-11) (-2.97071e-10 9.97936e-11 1.78394e-10) (-1.00613e-09 1.50484e-10 7.69374e-11) (-1.15232e-09 8.38552e-11 -1.4903e-10) (-1.10942e-09 2.03276e-11 -1.14463e-10) (-7.79827e-10 -6.71473e-12 -5.64919e-11) (-1.05905e-10 -6.49973e-12 -2.39252e-11) (7.68589e-12 -3.48639e-12 -1.85356e-13) (4.12136e-10 -9.40516e-11 1.34048e-10) (1.18245e-09 -1.87778e-10 6.15417e-10) (1.37379e-09 2.2994e-11 1.05012e-09) (4.34708e-10 1.99278e-10 5.84238e-10) (-1.08218e-10 1.10309e-10 1.31514e-10) (-9.44988e-10 1.87542e-10 -9.91033e-11) (-1.3806e-09 3.27906e-11 -7.72447e-10) (-5.58005e-10 -7.11463e-11 -8.4899e-10) (1.97427e-11 -4.24447e-11 -5.71835e-10) (1.09879e-10 1.31818e-11 -1.45545e-10) (5.00486e-10 1.30825e-10 2.06924e-10) (3.72458e-09 7.32992e-10 3.31643e-09) (6.02017e-09 3.6659e-10 6.27604e-09) (2.89902e-09 -5.53376e-10 3.47002e-09) (9.33521e-10 -5.57886e-10 9.56888e-10) (4.37904e-10 -3.59609e-10 1.20975e-10) (5.10842e-10 -3.16787e-10 -2.07975e-10) (6.27896e-10 -2.2403e-10 -4.37842e-10) (4.66129e-10 -4.81111e-11 -4.05713e-10) (1.93905e-10 6.67374e-11 -2.41102e-10) (-2.68876e-11 7.51007e-11 -9.95494e-11) (-9.5011e-10 2.87009e-10 -1.7257e-10) (-4.04162e-09 4.27061e-10 2.62515e-12) (-4.22314e-09 1.61613e-10 -1.72951e-11) (-1.48939e-09 4.889e-11 -2.73501e-10) (-1.93529e-10 2.39875e-11 -1.98257e-10) (1.12938e-11 1.16931e-11 -1.8072e-10) (6.04745e-11 -1.40327e-11 -9.89637e-11) (8.82719e-11 -3.77837e-11 -3.28107e-11) (2.36242e-10 -9.11258e-11 1.78199e-11) (3.90535e-10 -9.58512e-11 8.58288e-11) (2.09937e-10 -3.81543e-11 2.67213e-11) (4.31716e-11 1.98717e-11 3.88542e-11) (-9.69703e-11 7.56888e-11 9.63904e-11) (-8.02167e-10 2.08961e-10 1.61224e-10) (-1.40333e-09 1.75974e-10 -7.14205e-11) (-1.52806e-09 7.58401e-11 -1.37846e-10) (-1.46953e-09 5.83395e-12 -8.49078e-11) (-6.02383e-10 -3.44037e-11 -1.25266e-10) (-3.23578e-11 -1.95168e-11 -2.9569e-11) (6.56309e-11 -5.33499e-11 1.32018e-12) (4.35799e-10 -1.90137e-10 2.65155e-10) (7.45955e-10 -8.23747e-11 9.02359e-10) (7.22266e-10 3.6434e-10 1.28499e-09) (2.31574e-11 3.44993e-10 4.99513e-10) (-4.94937e-10 2.38463e-10 5.6547e-11) (-1.22301e-09 9.24537e-11 -7.38555e-10) (-6.58594e-10 -1.77794e-10 -1.28025e-09) (9.98258e-12 -1.75564e-10 -1.1871e-09) (1.97334e-11 -2.39571e-12 -3.936e-10) (2.14806e-11 2.18194e-11 1.7325e-12) (1.94177e-09 6.31986e-10 2.00267e-09) (8.08408e-09 6.38211e-10 8.25249e-09) (5.73391e-09 -9.87261e-10 6.27792e-09) (1.60079e-09 -1.04661e-09 1.87678e-09) (4.54928e-10 -5.37249e-10 3.18849e-10) (3.54709e-10 -3.12281e-10 -5.48007e-11) (3.8736e-10 -1.85565e-10 -2.16901e-10) (2.60198e-10 -4.35582e-11 -2.32763e-10) (1.50913e-10 5.60369e-11 -2.13817e-10) (6.66326e-11 1.31154e-10 -2.00539e-10) (-1.40363e-10 1.54319e-10 -1.473e-10) (-1.40432e-09 3.32316e-10 -1.64153e-10) (-3.63921e-09 2.51455e-10 5.14134e-11) (-3.14369e-09 6.99311e-11 -5.67509e-11) (-1.06129e-09 3.99402e-11 -2.44172e-10) (-1.10389e-10 9.97422e-12 -1.25914e-10) (2.8998e-11 -9.63239e-12 -7.49623e-11) (1.20122e-10 -5.00338e-11 -6.04253e-11) (2.39427e-10 -1.13867e-10 -2.87633e-11) (3.026e-10 -1.23408e-10 -6.88567e-12) (1.51181e-10 -6.13429e-11 -5.33612e-11) (2.79511e-11 4.23958e-12 -2.40197e-12) (-1.21509e-11 2.73795e-11 1.56187e-11) (-3.33594e-10 1.64711e-10 8.27495e-11) (-9.24243e-10 2.21547e-10 1.09514e-11) (-1.21046e-09 1.40351e-10 -7.20084e-11) (-1.40475e-09 4.55721e-11 -4.27898e-11) (-8.58828e-10 -5.02156e-11 -1.23973e-10) (-1.43883e-10 -6.47493e-11 -1.01217e-10) (1.09653e-11 -6.78506e-11 -4.11071e-11) (5.70899e-11 -9.85804e-11 4.2456e-11) (1.28946e-11 -9.35054e-11 3.61304e-10) (-1.36335e-10 3.10121e-10 1.31409e-09) (-1.18088e-10 7.14109e-10 1.16501e-09) (-1.48069e-10 2.42344e-10 1.3015e-10) (-2.24754e-10 8.68353e-11 -2.97497e-10) (-3.07095e-11 -2.2837e-10 -1.38344e-09) (4.50806e-10 -3.88514e-10 -1.92734e-09) (-1.07673e-10 -5.58819e-11 -8.69981e-10) (-2.11545e-10 8.72286e-11 -1.48714e-10) (1.00099e-10 2.01885e-10 4.0226e-10) (4.72849e-09 5.72082e-10 6.07819e-09) (5.77429e-09 -1.14752e-09 7.48529e-09) (1.75773e-09 -1.50349e-09 2.80984e-09) (7.18693e-10 -9.2225e-10 7.52679e-10) (6.56244e-10 -5.06404e-10 1.33736e-10) (5.02428e-10 -2.07518e-10 -9.34994e-11) (1.9891e-10 -2.92934e-11 -1.20018e-10) (7.54067e-11 3.4828e-11 -1.15381e-10) (7.43769e-11 1.15887e-10 -1.78497e-10) (5.41412e-11 1.61485e-10 -1.75626e-10) (-7.37946e-11 9.6105e-11 -7.42938e-11) (-7.68994e-10 1.60982e-10 -4.28076e-11) (-2.22019e-09 1.16793e-10 7.78525e-11) (-1.99818e-09 4.41841e-11 -4.44298e-11) (-5.53649e-10 1.14167e-11 -1.10228e-10) (-1.52419e-11 -3.65729e-12 -1.69804e-11) (4.59157e-11 -2.41885e-11 -2.1095e-11) (1.97288e-10 -1.00383e-10 -3.61938e-11) (2.40561e-10 -1.29583e-10 -6.55988e-11) (8.81505e-11 -7.09487e-11 -9.84494e-11) (2.01849e-11 -6.71168e-12 -3.10381e-11) (-4.84871e-12 8.81904e-12 -4.32901e-12) (-1.33051e-10 9.32243e-11 3.87739e-12) (-3.86144e-10 1.66849e-10 -3.70403e-12) (-5.3581e-10 1.40598e-10 -1.6697e-11) (-6.87273e-10 7.16934e-11 1.52793e-11) (-5.02029e-10 -3.17157e-11 -2.60948e-11) (-1.07587e-10 -6.50133e-11 -7.36766e-11) (-7.47275e-12 -1.22887e-10 -1.04268e-10) (-2.12592e-11 -1.00462e-10 -1.59737e-11) (-3.57166e-10 -1.45888e-10 2.74145e-10) (-1.78777e-09 3.76144e-10 1.68773e-09) (-1.16874e-09 9.67582e-10 1.55668e-09) (-8.22112e-11 3.01555e-10 1.64932e-10) (1.43503e-10 1.1401e-10 -2.5639e-10) (1.42101e-09 -3.35416e-10 -2.12506e-09) (1.69369e-09 -5.99163e-10 -2.66071e-09) (2.20285e-11 -7.63621e-11 -9.30623e-10) (-1.25814e-09 2.59517e-10 -7.04474e-10) (-1.02544e-09 3.7042e-10 2.74846e-10) (2.59982e-10 2.67009e-10 2.19902e-09) (2.01573e-09 -8.9353e-10 5.44249e-09) (1.3963e-09 -1.89291e-09 3.36982e-09) (1.59624e-09 -1.7128e-09 1.62012e-09) (1.75358e-09 -1.0055e-09 6.77082e-10) (9.55283e-10 -2.84106e-10 9.3106e-11) (2.22047e-10 -1.58173e-11 -6.02132e-11) (4.79358e-11 2.49915e-11 -6.02183e-11) (3.81114e-11 6.85268e-11 -9.77531e-11) (9.59038e-11 1.28842e-10 -1.37951e-10) (1.04577e-10 1.20203e-10 -9.88326e-11) (-6.60476e-13 2.77194e-11 -1.3805e-11) (-2.29083e-10 6.02084e-11 2.0929e-12) (-1.00212e-09 5.93646e-11 3.47022e-11) (-8.18118e-10 4.64288e-12 -1.09621e-11) (-1.22424e-10 -1.10869e-11 -6.17445e-12) (5.19007e-14 -2.31546e-12 2.50696e-13) (3.56765e-11 -2.83755e-11 -2.676e-12) (8.42837e-11 -6.86455e-11 -4.70801e-11) (1.16346e-11 -5.63801e-11 -9.60162e-11) (1.9442e-12 -2.4343e-11 -7.3827e-11) (-2.09616e-11 6.52721e-12 -2.22055e-11) (-1.55478e-10 7.15899e-11 -3.46809e-11) (-2.89345e-10 1.29701e-10 -4.14106e-11) (-1.93849e-10 8.79974e-11 -1.55441e-11) (-1.26706e-10 4.01306e-11 1.29166e-11) (-6.73944e-11 -3.38839e-12 8.6252e-12) (-1.11876e-11 -2.45686e-11 -1.51792e-11) (2.80856e-11 -1.34976e-10 -1.15041e-10) (-7.85707e-11 -1.40569e-10 -7.73195e-11) (-1.20502e-09 -2.58809e-10 2.48532e-10) (-4.82531e-09 5.14812e-10 1.9253e-09) (-2.6719e-09 1.13915e-09 1.35991e-09) (-6.70098e-11 2.20403e-10 3.9686e-11) (9.47026e-10 2.82636e-10 -7.16314e-10) (4.08658e-09 -5.00577e-10 -3.28728e-09) (3.12703e-09 -6.91729e-10 -2.81316e-09) (2.57008e-10 -3.67784e-11 -5.76875e-10) (-1.08685e-09 2.85207e-10 -5.83246e-10) (-4.81504e-09 1.08802e-09 -6.02321e-11) (-2.39043e-09 3.60422e-10 1.76259e-09) (-5.82296e-10 -7.59695e-10 3.02896e-09) (9.54436e-10 -2.26696e-09 3.3222e-09) (2.65412e-09 -2.67934e-09 2.81737e-09) (2.82216e-09 -1.40652e-09 1.60857e-09) (1.26326e-09 -2.77687e-10 3.95086e-10) (2.29512e-10 3.36324e-12 -1.09135e-11) (4.07733e-11 2.21132e-11 -3.76881e-11) (2.91613e-11 4.04229e-11 -5.13454e-11) (6.7919e-11 6.6268e-11 -5.91257e-11) (1.71582e-10 1.05813e-10 -6.49419e-11) (1.75724e-10 9.94209e-11 -3.77072e-11) (2.02494e-11 2.36958e-11 -4.51531e-12) (-3.34632e-11 1.67149e-11 -2.1349e-12) (-2.26108e-10 1.99415e-11 -9.68905e-12) (-1.71628e-10 -8.06631e-12 -1.27226e-12) (-2.93205e-11 -8.2895e-12 6.34992e-12) (-3.08262e-12 -4.45665e-12 1.84426e-12) (-9.78574e-13 -1.44427e-11 -1.11654e-11) (-4.08525e-11 -4.39044e-11 -9.94244e-11) (-2.92388e-11 -3.71559e-11 -9.60116e-11) (-4.34026e-11 -3.9223e-12 -2.97008e-11) (-2.40793e-10 5.23161e-11 -3.49734e-11) (-5.26862e-10 1.40892e-10 -6.85263e-11) (-3.1559e-10 1.01734e-10 -4.09972e-11) (-4.92988e-11 2.09565e-11 2.01676e-12) (-1.60353e-13 -1.12145e-13 4.82026e-13) (4.11773e-11 -3.41037e-11 -7.79714e-12) (1.25074e-10 -1.33818e-10 -9.08033e-11) (-3.4166e-11 -8.46556e-11 -6.61466e-11) (-1.53374e-09 -1.73052e-10 4.03007e-11) (-7.0938e-09 7.76688e-10 1.56078e-09) (-4.00907e-09 1.23883e-09 9.33655e-10) (-5.91168e-11 1.44283e-10 -5.75253e-11) (1.881e-09 2.34315e-10 -1.31342e-09) (5.41372e-09 -7.35011e-10 -3.37387e-09) (3.14734e-09 -6.50002e-10 -2.04667e-09) (3.92292e-10 -2.62663e-12 -3.70968e-10) (-2.11799e-10 1.5538e-10 -1.68185e-10) (-3.99099e-09 1.21082e-09 -4.09984e-10) (-5.82545e-09 6.27935e-10 1.21533e-09) (-2.0981e-09 -9.72785e-10 1.92402e-09) (5.2665e-11 -2.43951e-09 2.77965e-09) (2.44921e-09 -3.09397e-09 3.66918e-09) (2.74847e-09 -1.39847e-09 2.41546e-09) (1.15847e-09 -1.83956e-10 6.43723e-10) (2.00389e-10 2.10554e-11 2.61923e-11) (4.30461e-11 2.18083e-11 -2.90717e-11) (3.58489e-11 2.77251e-11 -3.36699e-11) (7.03143e-11 3.88875e-11 -2.16207e-11) (1.70066e-10 6.73826e-11 3.49247e-12) (2.47618e-10 9.30276e-11 2.55753e-11) (1.44568e-10 7.1125e-11 9.15256e-12) (1.65898e-11 1.83871e-11 -3.96912e-12) (-8.11188e-12 7.20729e-12 -6.48658e-12) (-4.36698e-11 6.33493e-12 -1.55294e-11) (-4.69848e-11 -4.57763e-14 -4.73582e-12) (-3.56035e-11 -4.00145e-12 1.3283e-12) (-3.20973e-11 -1.21908e-11 -1.68751e-11) (-3.71981e-11 -2.11137e-11 -1.00242e-10) (-3.22251e-11 -2.87249e-11 -7.8071e-11) (-5.32812e-11 -1.24599e-11 -1.46162e-11) (-3.39006e-10 2.05047e-11 2.30287e-11) (-8.68033e-10 1.25784e-10 -3.63273e-11) (-7.38884e-10 1.29903e-10 -1.00458e-10) (-1.28673e-10 2.28889e-11 -1.84519e-11) (4.54516e-13 -6.31745e-13 1.5444e-13) (1.03429e-10 -6.43901e-11 5.07632e-12) (1.83097e-10 -1.26394e-10 -2.26295e-11) (9.73601e-12 -2.2268e-11 -1.43291e-11) (-5.22051e-10 1.52277e-11 -4.8045e-11) (-4.64713e-09 8.42874e-10 5.61611e-10) (-3.97349e-09 1.15284e-09 5.88553e-10) (-1.00801e-10 9.59169e-11 -6.02597e-11) (1.29186e-09 -2.05982e-11 -9.16929e-10) (4.0423e-09 -8.76929e-10 -2.22039e-09) (2.3333e-09 -6.34417e-10 -1.34351e-09) (5.02316e-10 -1.902e-11 -4.03484e-10) (4.17381e-11 1.4313e-10 -1.62903e-10) (-7.23125e-10 5.66411e-10 -3.30325e-10) (-2.93639e-09 5.51861e-10 -8.4907e-11) (-2.44113e-09 -9.81914e-10 9.24884e-10) (-9.67494e-10 -2.56263e-09 2.36063e-09) (1.03865e-09 -2.8741e-09 3.71229e-09) (1.57386e-09 -1.0813e-09 2.47879e-09) (6.92849e-10 -7.59662e-11 6.54158e-10) (1.39677e-10 2.86646e-11 4.22135e-11) (5.4605e-11 2.244e-11 -2.76484e-11) (6.94233e-11 2.49979e-11 -3.66365e-11) (1.412e-10 3.16785e-11 -2.7129e-12) (2.80838e-10 4.959e-11 8.76591e-11) (3.12498e-10 7.21443e-11 1.3785e-10) (1.50372e-10 6.21397e-11 6.3413e-11) (1.80297e-11 1.99121e-11 2.87157e-12) (-7.80069e-12 1.23444e-11 -9.52688e-12) (-4.53756e-11 1.98556e-11 -3.28866e-11) (-4.42509e-11 1.42568e-11 -2.44734e-11) (-2.41171e-11 6.84437e-12 -1.09444e-11) (-2.27302e-11 3.16191e-13 -2.33004e-11) (-1.00426e-11 1.19808e-11 -1.11143e-10) (-1.70328e-11 -6.17603e-12 -4.07165e-11) (-7.68925e-11 -1.54546e-11 1.1083e-11) (-5.68693e-10 -2.26652e-11 1.41767e-10) (-1.16516e-09 4.03792e-11 -5.35708e-12) (-8.60655e-10 4.73553e-11 -1.94077e-10) (-1.5932e-10 2.29711e-12 -5.52238e-11) (-6.58557e-13 -1.38713e-12 -6.99202e-15) (3.64747e-11 -3.43978e-11 2.36674e-11) (6.37834e-11 -5.82729e-11 4.38268e-11) (5.97684e-12 -6.3459e-12 4.58697e-12) (-6.0865e-11 2.5582e-11 -6.23722e-12) (-1.31214e-09 5.17503e-10 5.3064e-11) (-2.14021e-09 8.30015e-10 2.75686e-10) (-1.70348e-10 9.2404e-11 -1.25438e-11) (2.55508e-10 -3.77571e-11 -1.71784e-10) (1.79949e-09 -6.07315e-10 -8.48248e-10) (1.51295e-09 -6.35788e-10 -8.18535e-10) (5.24818e-10 -1.67501e-10 -5.3643e-10) (2.52188e-10 1.9195e-10 -5.75771e-10) (1.02247e-11 5.24358e-10 -6.37558e-10) (-3.86695e-10 2.66946e-10 -3.01152e-10) (-7.82834e-10 -3.46563e-10 1.1126e-10) (-1.13192e-09 -2.01313e-09 1.6849e-09) (-3.1125e-10 -2.36388e-09 3.2944e-09) (2.84398e-10 -7.26401e-10 2.03464e-09) (2.1011e-10 -1.57327e-11 4.65597e-10) (6.36973e-11 2.12086e-11 3.09913e-11) (7.08229e-11 2.09081e-11 -3.35841e-11) (1.54582e-10 1.97605e-11 -6.26777e-11) (3.5856e-10 9.36582e-12 1.54919e-11) (6.71798e-10 2.13901e-12 2.66376e-10) (6.39296e-10 4.16081e-11 4.06624e-10) (2.15132e-10 6.11343e-11 1.81056e-10) (7.12381e-12 1.76449e-11 1.51155e-11) (-4.43944e-11 2.9616e-11 -1.21169e-11) (-1.41117e-10 4.85089e-11 -7.15429e-11) (-8.39217e-11 3.15956e-11 -6.18632e-11) (-1.99796e-11 1.72494e-11 -3.25537e-11) (-6.93544e-12 1.75013e-11 -5.2219e-11) (-9.88855e-12 5.05918e-11 -1.30067e-10) (-1.50317e-11 1.17367e-11 -2.71321e-11) (-1.08792e-10 1.30852e-12 3.78715e-11) (-7.08448e-10 -4.19264e-11 2.43123e-10) (-1.05555e-09 -7.02011e-11 1.52179e-11) (-6.60168e-10 -6.44708e-11 -2.13474e-10) (-1.61697e-10 -2.84714e-11 -8.58068e-11) (-5.664e-12 -3.79057e-12 -1.63105e-12) (7.63164e-12 -1.17121e-11 1.16299e-11) (3.98424e-11 -3.45542e-11 4.42161e-11) (2.2831e-11 -1.15789e-11 3.11431e-11) (-7.28596e-12 1.48309e-11 1.35228e-11) (-3.37868e-10 2.82812e-10 6.67326e-11) (-1.00299e-09 6.19827e-10 1.59487e-10) (-2.59653e-10 1.44714e-10 3.72851e-11) (1.00631e-11 -3.67781e-12 -4.27906e-12) (5.14828e-10 -2.67309e-10 -1.17849e-10) (8.14631e-10 -5.26032e-10 -2.5103e-10) (4.50827e-10 -3.3078e-10 -4.41896e-10) (2.88491e-10 -1.95452e-11 -1.10827e-09) (1.99621e-10 7.44892e-10 -2.05253e-09) (-3.02117e-11 4.87206e-10 -9.52575e-10) (-3.16075e-11 -1.74579e-11 -2.34405e-11) (-4.79351e-10 -8.51917e-10 7.59836e-10) (-1.212e-09 -1.64643e-09 2.63053e-09) (-6.99733e-10 -5.48185e-10 1.80246e-09) (-4.34275e-11 -4.64727e-12 3.20988e-10) (1.6117e-11 8.25552e-12 1.05182e-11) (8.31771e-11 1.69128e-11 -4.84152e-11) (2.55674e-10 -9.51664e-13 -1.15929e-10) (6.87186e-10 -6.4908e-11 -4.25714e-12) (1.55614e-09 -1.57305e-10 5.50442e-10) (1.77984e-09 -7.74089e-11 1.12957e-09) (7.25338e-10 7.89162e-11 6.98357e-10) (3.2554e-11 4.44179e-11 1.00874e-10) (-9.16874e-11 4.63179e-11 1.04667e-11) (-2.90525e-10 7.02044e-11 -1.05301e-10) (-1.76912e-10 3.53128e-11 -1.32274e-10) (-4.41168e-11 2.29322e-11 -8.77174e-11) (-1.0524e-11 3.81148e-11 -1.07491e-10) (-1.65715e-11 1.01806e-10 -2.48288e-10) (-2.56141e-11 6.22805e-11 -7.8286e-11) (-7.29853e-11 3.50288e-11 1.35624e-11) (-4.72728e-10 2.31838e-11 1.74152e-10) (-7.67018e-10 -8.55053e-11 8.27105e-11) (-5.19703e-10 -1.27523e-10 -9.47604e-11) (-1.65956e-10 -6.67757e-11 -5.67159e-11) (-1.61529e-11 -1.25135e-11 -4.64108e-12) (2.21447e-12 -4.23131e-12 2.52572e-13) (3.45809e-11 -1.60295e-11 -1.65372e-13) (4.48277e-11 -7.82837e-12 6.33939e-12) (4.1482e-12 1.14309e-11 1.38042e-11) (-2.46399e-10 2.48123e-10 1.47304e-10) (-1.02798e-09 7.3792e-10 3.13362e-10) (-4.85783e-10 3.0436e-10 1.37588e-10) (-7.0239e-13 6.9754e-13 5.77888e-12) (3.58312e-10 -2.32034e-10 1.41753e-10) (8.42291e-10 -6.5761e-10 2.38423e-10) (3.17267e-10 -2.97012e-10 -8.81915e-11) (1.30497e-10 -1.13567e-10 -7.41451e-10) (-1.32192e-10 5.55327e-10 -3.32936e-09) (-1.0563e-10 6.77532e-10 -2.69944e-09) (-3.81833e-11 1.02512e-11 -1.98092e-10) (-3.09195e-10 -2.29181e-10 2.36419e-10) (-1.94175e-09 -9.15401e-10 1.96785e-09) (-1.49024e-09 -4.22578e-10 1.65829e-09) (-1.55712e-10 -1.63589e-11 2.52842e-10) (3.55652e-12 2.0545e-12 2.09962e-12) (8.04442e-11 1.13957e-11 -5.93172e-11) (2.61908e-10 -2.662e-11 -1.62355e-10) (7.34948e-10 -1.44767e-10 -1.05131e-10) (2.22176e-09 -3.64179e-10 5.6436e-10) (4.03095e-09 -3.44531e-10 2.1667e-09) (2.86412e-09 8.60661e-11 2.39012e-09) (4.69605e-10 1.66664e-10 7.62269e-10) (-7.7044e-11 5.83277e-11 9.84279e-11) (-3.66371e-10 7.01296e-11 -3.69092e-11) (-3.33451e-10 1.42909e-11 -1.8596e-10) (-1.17541e-10 1.04413e-12 -1.87451e-10) (-3.52756e-11 4.06971e-11 -2.32582e-10) (-9.43961e-12 1.29774e-10 -4.35855e-10) (-2.94204e-11 1.79598e-10 -2.36315e-10) (-7.44631e-11 1.11124e-10 -4.92497e-11) (-1.7015e-10 7.39153e-11 1.66151e-11) (-2.41235e-10 -1.64116e-11 1.67625e-11) (-1.96984e-10 -1.04747e-10 -3.78444e-12) (-1.14585e-10 -1.1151e-10 1.77732e-11) (-4.79135e-11 -5.4286e-11 2.89799e-11) (-8.48373e-12 -9.57754e-12 6.14774e-12) (6.56616e-13 -1.27987e-12 -2.43924e-12) (2.5275e-11 2.88674e-12 -3.64401e-11) (7.88497e-12 1.84065e-11 -1.74818e-11) (-1.91892e-10 1.98791e-10 4.9636e-11) (-1.25486e-09 8.05288e-10 4.39565e-10) (-7.70531e-10 4.23143e-10 3.65018e-10) (-2.23862e-12 -4.43762e-12 5.75586e-11) (7.47384e-10 -5.19452e-10 3.88469e-10) (1.46315e-09 -1.14164e-09 5.37713e-10) (3.4886e-10 -3.30401e-10 1.06565e-10) (7.89562e-12 -4.74693e-12 -4.73537e-11) (-2.40493e-10 5.19078e-10 -1.64044e-09) (-7.57119e-10 1.09384e-09 -3.94258e-09) (-7.35813e-10 2.14592e-10 -1.35559e-09) (-9.46649e-10 -1.65282e-10 4.8303e-12) (-2.36629e-09 -6.05411e-10 1.38529e-09) (-1.44432e-09 -3.82426e-10 1.21143e-09) (-1.63303e-10 -4.31971e-11 1.97119e-10) (5.09975e-13 2.70408e-13 1.0556e-12) (3.67849e-11 3.6216e-12 -3.36466e-11) (1.43232e-10 -3.13963e-11 -1.39941e-10) (4.09715e-10 -1.35339e-10 -1.85702e-10) (1.55171e-09 -3.52842e-10 1.02617e-10) (4.86681e-09 -4.79973e-10 1.9312e-09) (6.82983e-09 1.44019e-10 4.5056e-09) (2.98927e-09 5.6045e-10 3.23446e-09) (1.36266e-10 2.14885e-10 7.15853e-10) (-2.89362e-10 7.59873e-11 1.54409e-10) (-4.6224e-10 -8.94363e-12 -8.99158e-11) (-2.37661e-10 -5.45616e-11 -2.36815e-10) (-7.97033e-11 -9.27969e-12 -3.57806e-10) (4.12659e-12 5.69975e-11 -5.29181e-10) (-4.97599e-12 2.2157e-10 -3.78069e-10) (-9.00769e-11 2.22761e-10 -1.61855e-10) (-1.38252e-10 1.14334e-10 -5.16835e-11) (-1.1797e-10 -1.08168e-12 -1.89884e-11) (-9.90769e-11 -8.48601e-11 -4.43993e-12) (-6.65164e-11 -1.12869e-10 3.51401e-11) (-4.50293e-11 -6.81155e-11 7.06995e-11) (-3.77454e-11 -1.83376e-11 6.0405e-11) (-1.79964e-11 1.67468e-12 1.05868e-11) (-1.7479e-11 8.06694e-12 -2.17872e-11) (-4.635e-11 5.64349e-11 -1.18147e-10) (-2.07743e-10 1.97863e-10 -1.25323e-10) (-7.21471e-10 4.51507e-10 9.08237e-11) (-3.90885e-10 1.3818e-10 2.21691e-10) (2.7909e-11 -8.92774e-11 1.08798e-10) (1.00675e-09 -9.18969e-10 3.77626e-10) (1.41863e-09 -1.07278e-09 4.16289e-10) (2.80434e-10 -1.92145e-10 1.39939e-10) (-4.28184e-13 2.16008e-12 5.72643e-13) (-1.28752e-10 3.09226e-10 -3.41843e-10) (-3.91993e-10 1.2079e-09 -2.23159e-09) (-7.20354e-10 6.98695e-10 -1.94112e-09) (-8.63909e-10 1.14476e-11 -3.96508e-10) (-1.85352e-09 -4.71456e-10 5.03491e-10) (-1.55613e-09 -5.74251e-10 8.28804e-10) (-4.23183e-10 -1.63782e-10 2.62069e-10) (-3.21405e-11 -6.82706e-12 1.55053e-11) (-1.77732e-12 1.44624e-13 -3.8213e-12) (1.01832e-11 -1.37004e-11 -6.00884e-11) (1.03772e-10 -7.70366e-11 -1.59043e-10) (5.58507e-10 -1.96034e-10 -1.75451e-10) (2.86244e-09 -3.42077e-10 5.78688e-10) (7.68528e-09 2.75104e-10 3.86478e-09) (7.67872e-09 1.36105e-09 6.18308e-09) (2.15268e-09 9.23484e-10 3.26599e-09) (-6.25639e-11 1.89475e-10 6.58595e-10) (-2.32448e-10 1.75921e-12 9.44897e-11) (-2.10592e-10 -7.5812e-11 -1.23261e-10) (-1.1339e-10 -9.21665e-11 -3.64507e-10) (-3.37952e-11 -4.15269e-11 -4.88656e-10) (-1.30768e-11 1.6976e-10 -4.24894e-10) (-1.31266e-10 2.40798e-10 -2.13125e-10) (-3.88426e-10 2.12798e-10 -8.96367e-11) (-7.10663e-10 -1.81684e-11 8.01034e-12) (-5.56337e-10 -2.81651e-10 5.28362e-11) (-9.98151e-11 -1.55585e-10 3.60008e-11) (2.19616e-11 -3.78769e-11 2.80574e-11) (3.40239e-11 4.28166e-12 4.08165e-11) (-4.00575e-12 2.59002e-11 2.85923e-11) (-6.71428e-11 5.48564e-11 -2.57047e-12) (-2.04788e-10 1.32738e-10 -1.51012e-10) (-3.43922e-10 2.28492e-10 -2.84752e-10) (-2.73563e-10 1.32814e-10 -1.24176e-10) (-3.54208e-11 -1.12561e-11 -8.53784e-13) (1.0994e-10 -2.66255e-10 7.90766e-11) (8.47618e-10 -9.28544e-10 4.24268e-10) (9.5588e-10 -6.45898e-10 5.41262e-10) (2.47975e-10 -7.53568e-11 1.88353e-10) (1.67533e-12 1.70413e-11 1.05796e-11) (-1.21088e-10 2.54713e-10 -1.40755e-10) (-1.98815e-10 8.40124e-10 -9.19819e-10) (-2.17477e-11 6.28425e-10 -1.00003e-09) (-3.08935e-11 3.5127e-11 -1.24521e-10) (-1.47923e-10 -9.79836e-11 1.09868e-11) (-9.14214e-10 -5.07602e-10 2.28536e-10) (-1.295e-09 -4.51312e-10 2.13912e-10) (-6.23844e-10 -1.09244e-10 6.34889e-11) (-1.32604e-10 -1.24034e-11 -1.24619e-11) (-4.1996e-11 -1.91145e-11 -4.46727e-11) (-2.49616e-11 -8.36453e-11 -1.61524e-10) (9.74028e-11 -1.34641e-10 -2.15386e-10) (5.14867e-10 -1.40971e-10 -9.37852e-11) (3.05283e-09 1.25141e-10 1.17889e-09) (7.31454e-09 1.62878e-09 5.11219e-09) (5.71451e-09 2.25488e-09 6.00635e-09) (1.19065e-09 8.25427e-10 2.36843e-09) (-2.79529e-11 4.7043e-11 2.67809e-10) (-4.66575e-11 -2.77439e-11 -4.70172e-12) (-9.48909e-11 -1.14514e-10 -2.26457e-10) (-1.98189e-10 -1.07911e-10 -2.90886e-10) (-3.19902e-10 5.59207e-11 -3.70775e-10) (-5.85286e-10 2.91151e-10 -3.24181e-10) (-1.35166e-09 4.37248e-10 -1.63379e-10) (-1.74548e-09 -3.37221e-12 9.92775e-11) (-5.89759e-10 -2.95753e-10 8.87287e-11) (2.51792e-11 -1.30182e-10 1.02071e-11) (4.54204e-10 -1.50757e-10 -9.25475e-12) (4.22781e-10 7.71415e-11 3.51281e-11) (3.09878e-11 7.85362e-11 2.93176e-11) (-2.62748e-10 2.09761e-10 2.13651e-12) (-8.76331e-10 3.76218e-10 -3.18717e-10) (-8.3387e-10 2.69438e-10 -5.26354e-10) (-2.54977e-10 1.64651e-11 -2.0439e-10) (-1.09984e-11 -4.6088e-11 -1.60591e-11) (2.5845e-10 -3.72877e-10 1.99826e-10) (9.60912e-10 -7.35481e-10 8.04706e-10) (1.00457e-09 -4.11217e-10 7.25577e-10) (3.62284e-10 -2.84163e-11 1.78254e-10) (2.58341e-11 2.53256e-11 -3.57817e-12) (-6.68429e-11 1.7189e-10 -1.34059e-10) (-1.47364e-10 4.40825e-10 -4.55844e-10) (3.8839e-11 3.13843e-10 -4.40945e-10) (2.57661e-11 3.02463e-11 -1.06515e-10) (-5.90804e-11 -3.61667e-11 -3.31397e-11) (-8.56493e-10 -2.73203e-10 -4.47148e-11) (-1.4614e-09 -2.96131e-10 4.70521e-11) (-4.31929e-10 -1.02807e-10 7.1193e-11) (-1.37317e-11 -1.75329e-11 1.0624e-11) (1.50057e-11 -3.32088e-11 -9.3257e-12) (1.91765e-11 -1.42216e-10 -1.66486e-10) (-9.63385e-11 -3.20629e-10 -5.8498e-10) (-3.75955e-11 -1.66272e-10 -3.57574e-10) (6.86886e-11 -5.98833e-12 -1.91879e-12) (1.75118e-09 5.37612e-10 1.39634e-09) (4.95102e-09 2.249e-09 5.00674e-09) (3.54913e-09 1.97892e-09 4.22257e-09) (6.8716e-10 3.87036e-10 9.97041e-10) (9.35876e-12 -2.77625e-12 1.92293e-11) (-4.12635e-11 -5.63939e-11 -5.97318e-11) (-2.81432e-10 -5.33539e-11 -8.58783e-11) (-2.43058e-09 1.20197e-10 -3.29075e-10) (-5.11258e-09 9.73748e-10 -1.16724e-10) (-3.6959e-09 8.33345e-10 4.16807e-10) (-6.87665e-10 -4.1591e-12 2.32371e-10) (1.39952e-11 -1.20107e-10 2.4046e-11) (7.32701e-10 -6.3218e-10 -3.05962e-10) (1.41274e-09 -5.04467e-10 -7.50467e-10) (7.78084e-10 1.23507e-10 -3.43754e-10) (1.02638e-10 2.14751e-10 -1.89709e-11) (-4.89059e-10 5.39944e-10 4.82723e-11) (-1.96574e-09 8.00215e-10 -2.51556e-10) (-1.65941e-09 2.55841e-10 -5.30833e-10) (-2.51741e-10 -4.30151e-11 -1.03332e-10) (1.33748e-11 -4.34964e-11 2.55991e-11) (4.46898e-10 -3.08216e-10 4.27878e-10) (9.42401e-10 -4.60124e-10 7.32824e-10) (8.62008e-10 -3.37175e-10 3.94432e-10) (4.56937e-10 -1.22823e-10 2.01728e-11) (8.6984e-11 1.07171e-11 -5.3895e-11) (-4.95483e-11 9.7655e-11 -1.10915e-10) (-4.48521e-10 3.66162e-10 -3.49629e-10) (-5.63152e-10 3.10838e-10 -4.20685e-10) (-4.66258e-10 8.488e-11 -3.17361e-10) (-5.56847e-10 -5.01495e-11 -2.20379e-10) (-3.82346e-10 -7.67376e-11 -3.1001e-11) (-3.67391e-11 -2.86411e-11 4.29662e-11) (2.34927e-10 -1.15797e-10 2.71898e-10) (8.07668e-10 -2.72056e-10 4.76516e-10) (5.51967e-10 -2.30516e-10 7.19407e-11) (2.93714e-10 -2.35038e-10 -3.56178e-10) (3.79309e-11 -5.69127e-10 -1.70992e-09) (-6.65588e-10 -6.36767e-10 -2.49654e-09) (-2.93284e-10 -1.28027e-10 -6.18702e-10) (9.203e-12 9.13077e-12 1.87287e-11) (1.10893e-09 6.49731e-10 1.59816e-09) (2.89828e-09 1.64716e-09 3.47863e-09) (1.87853e-09 9.89822e-10 1.84751e-09) (3.61872e-10 1.30114e-10 2.50964e-10) (1.53879e-12 -7.69619e-13 7.63572e-14) (-1.80464e-11 1.16316e-11 1.5769e-11) (-1.36793e-09 2.17844e-10 3.71761e-10) (-5.38042e-09 4.83045e-10 1.28912e-09) (-4.03113e-09 -3.96373e-11 1.13105e-09) (-4.71914e-10 -2.06754e-10 1.67907e-10) (6.25938e-11 -2.1935e-10 -6.80633e-11) (5.09852e-10 -5.45377e-10 -5.6336e-10) (4.76212e-10 -2.45827e-10 -6.57178e-10) (1.89455e-10 9.60282e-11 -2.37868e-10) (8.41553e-11 3.19814e-10 -3.26609e-11) (-2.53551e-10 8.08012e-10 2.32418e-10) (-9.30862e-10 9.17008e-10 3.27161e-10) (-8.05696e-10 3.58976e-10 1.37432e-10) (-1.37217e-10 7.03361e-12 4.57305e-11) (7.52383e-12 -3.06608e-11 4.65801e-11) (1.87652e-10 -1.37009e-10 1.68185e-10) (3.62611e-10 -2.30938e-10 1.67219e-10) (4.0744e-10 -2.86397e-10 3.1004e-11) (3.29474e-10 -2.4708e-10 -1.16624e-10) (1.36883e-10 -7.54833e-11 -1.28828e-10) (2.03473e-11 3.0318e-11 -7.08201e-11) (-6.80955e-11 1.47958e-10 -7.74814e-11) (-1.97017e-10 2.04504e-10 -4.43417e-11) (-1.8756e-10 8.93557e-11 -1.02786e-12) (-8.93497e-11 3.41487e-12 2.5899e-11) (-2.84487e-11 -1.94649e-11 5.40639e-11) (4.19469e-11 -6.33456e-11 2.02925e-10) (1.75525e-10 -1.30814e-10 3.90708e-10) (1.67153e-10 -1.46111e-10 2.48374e-10) (8.61255e-11 -9.23398e-11 2.21905e-11) (1.86206e-10 -1.66141e-10 -3.13296e-10) (5.98023e-10 -3.03226e-10 -2.23717e-09) (4.70174e-10 -1.98354e-10 -4.4312e-09) (-2.10594e-10 -2.86821e-11 -2.40907e-09) (-5.34147e-11 1.88733e-11 -1.40236e-10) (2.94251e-11 5.87988e-11 1.19327e-10) (5.95809e-10 4.39945e-10 1.05066e-09) (1.01992e-09 5.44361e-10 1.09314e-09) (6.32099e-10 2.44372e-10 3.98674e-10) (1.2937e-10 4.55769e-11 5.99066e-11) (-2.89356e-11 3.45432e-11 5.28609e-11) (-2.18184e-10 1.88279e-10 2.40694e-10) (-6.12719e-10 2.04306e-10 4.38757e-10) (-5.58614e-10 -1.29469e-10 2.81114e-10) (-2.6584e-10 -3.83208e-10 6.33646e-11) (-5.83809e-11 -5.87387e-10 -1.24347e-10) (4.19278e-11 -3.51449e-10 -2.27431e-10) (-2.17219e-12 -5.29831e-11 -1.78681e-10) (-5.678e-11 1.3467e-10 -1.95903e-10) (-8.17163e-11 3.84056e-10 -1.29169e-10) (-2.68314e-11 5.20483e-10 1.01245e-10) (9.02797e-12 4.05336e-10 2.74757e-10) (4.66211e-12 1.76775e-10 2.59002e-10) (-3.86576e-12 5.15969e-11 2.05004e-10) (-1.41381e-11 -1.74132e-12 1.39159e-10) (-1.52891e-11 -1.93477e-11 5.4563e-11) (-9.41756e-12 -2.86151e-11 1.48984e-11) (4.2602e-12 -8.80912e-11 -6.11857e-12) (7.53783e-11 -2.09612e-10 -5.56089e-11) (1.75301e-10 -2.41814e-10 -1.16312e-10) (1.79381e-10 -1.03068e-10 -1.20919e-10) (1.11564e-10 2.28315e-11 -7.36749e-11) (4.39582e-11 6.38765e-11 -2.73953e-11) (-6.42856e-12 4.71968e-11 -7.83183e-13) (-3.70614e-11 2.6247e-11 1.0762e-11) (-5.65797e-11 1.36504e-13 2.46242e-11) (-4.63979e-11 -2.83231e-11 4.38872e-11) (-2.46975e-11 -6.35337e-11 8.08428e-11) (3.13673e-12 -8.34848e-11 9.91831e-11) (5.84455e-12 -4.22281e-11 3.06084e-11) (4.5838e-12 -1.77853e-11 -1.92499e-11) (9.90011e-11 -1.74456e-11 -4.90345e-10) (5.31635e-10 2.84104e-10 -1.96678e-09) (6.44211e-10 5.30771e-10 -2.08399e-09) (1.90668e-10 2.4263e-10 -5.06892e-10) (2.24516e-11 4.11713e-11 4.98591e-13) (4.8283e-11 8.62489e-11 1.62638e-10) (3.93488e-11 5.74518e-11 1.94541e-10) (4.95665e-12 5.87712e-12 5.73992e-11) (-3.84609e-12 1.93155e-12 1.70471e-11) (-1.19192e-10 4.0876e-12 4.55666e-11) (-1.75139e-10 1.20685e-10 8.36536e-11) (-1.08494e-10 7.52767e-11 8.66381e-11) (-4.57106e-11 -3.73906e-11 5.43347e-11) (-6.15446e-11 -3.47779e-10 1.0269e-10) (-1.84609e-11 -5.33037e-10 4.215e-11) (-1.97161e-12 -1.42144e-10 -3.05431e-11) (-6.38416e-12 3.60956e-12 -2.97765e-11) (-5.11686e-11 1.92067e-10 -1.56336e-10) (-3.27905e-11 3.03237e-10 -1.40312e-10) (3.59804e-11 1.2612e-10 -3.84879e-12) (1.04518e-10 8.40741e-11 1.02868e-10) (1.67537e-10 1.00691e-10 3.02966e-10) (2.53863e-11 1.3421e-10 3.60537e-10) (-2.14333e-10 1.56496e-10 3.36866e-10) (-4.64719e-10 7.92795e-11 2.6772e-10) (-4.23428e-10 -1.05287e-10 1.20025e-10) (-1.56995e-10 -1.76474e-10 2.19772e-11) (1.86384e-11 -2.00229e-10 -1.75913e-11) (1.78416e-10 -2.1518e-10 -8.09307e-11) (1.91959e-10 -9.08969e-11 -1.37725e-10) (7.80644e-11 3.00316e-11 -1.35123e-10) (-3.04923e-11 1.06467e-10 -1.46448e-10) (-1.40577e-10 1.11703e-10 -1.25935e-10) (-1.50971e-10 3.01266e-11 -6.52403e-11) (-7.56083e-11 -2.51005e-11 -1.96732e-11) (-1.45731e-11 -2.12376e-11 9.69337e-13) (6.63929e-12 -1.62983e-11 1.41327e-11) (4.09569e-11 -1.66198e-11 5.76445e-11) (5.94946e-11 -1.75759e-12 7.4424e-11) (2.90955e-11 1.07096e-12 1.43881e-11) (5.41356e-11 2.13352e-12 -5.58357e-11) (2.24166e-10 7.27176e-11 -4.91313e-10) (3.5424e-10 3.45624e-10 -9.1835e-10) (2.25923e-10 4.33496e-10 -5.56748e-10) (5.70803e-11 1.55517e-10 -8.22555e-11) (6.48128e-12 1.46004e-11 1.1818e-11) (-1.10303e-13 -2.6529e-11 6.22501e-11) (-4.15477e-11 -1.17164e-10 1.12302e-10) (-8.952e-11 -8.86425e-11 6.86708e-11) (-3.91055e-11 -7.38889e-12 4.09305e-12) (-1.20265e-10 5.15212e-11 -4.12037e-11) (-9.92335e-11 4.19058e-11 -4.29449e-11) (-3.94134e-11 -2.23061e-11 -7.63498e-12) (-1.05079e-10 -2.7076e-10 4.56015e-11) (-1.97726e-10 -5.93334e-10 1.37048e-10) (-1.55996e-10 -2.57747e-10 5.6066e-11) (-5.10294e-11 -5.28412e-12 -3.38233e-12) (-8.34243e-11 1.43684e-10 -3.28751e-11) (-5.05425e-11 3.38577e-10 -5.34436e-12) (3.16411e-11 2.5589e-10 9.93846e-11) (7.21381e-11 1.612e-10 2.05781e-10) (4.13504e-11 9.99886e-11 2.2398e-10) (-3.82994e-11 8.14578e-11 1.27775e-10) (-1.57467e-10 1.22793e-10 7.59459e-11) (-3.27698e-10 1.34819e-10 1.0313e-11) (-2.47022e-10 1.45908e-11 -3.20436e-11) (-6.39978e-11 -4.01629e-11 -2.0906e-11) (-7.03677e-13 -5.1429e-11 -2.04777e-11) (3.44263e-11 -5.62641e-11 -4.06547e-11) (2.61668e-11 -2.02206e-11 -6.6758e-11) (-1.51002e-11 3.49878e-11 -1.56795e-10) (-9.56284e-11 1.02913e-10 -2.86331e-10) (-6.50501e-11 4.16921e-11 -2.53162e-10) (1.59155e-11 -4.56894e-11 -1.44661e-10) (8.20411e-11 -1.18137e-10 -8.29667e-11) (1.14545e-10 -1.49779e-10 1.60306e-11) (7.21287e-11 -9.04639e-11 1.05677e-10) (2.27183e-11 -1.5729e-11 1.79255e-10) (-9.34234e-12 6.14311e-11 2.21022e-10) (9.14565e-12 5.32164e-11 1.02167e-10) (2.16591e-11 1.60542e-11 8.2563e-12) (1.28401e-10 3.96223e-11 -9.44026e-11) (3.24687e-10 1.34702e-10 -3.57204e-10) (2.87842e-10 2.39566e-10 -3.51995e-10) (1.14363e-10 1.5167e-10 -1.07715e-10) (1.8921e-11 2.00387e-11 2.5265e-12) (1.48332e-11 -1.56463e-11 3.30493e-11) (1.02463e-11 -1.0037e-10 1.00252e-10) (-2.46079e-11 -6.58572e-11 5.2612e-11) (-3.85386e-12 7.0283e-12 6.96398e-12) (-2.76071e-11 3.94161e-11 -7.16733e-12) (-2.61504e-11 2.29502e-11 -2.47001e-11) (-2.16464e-11 -2.23819e-11 -2.25512e-11) (-1.33583e-10 -2.92463e-10 -2.74099e-11) (-5.52848e-10 -8.16894e-10 1.10616e-10) (-1.0594e-09 -7.47979e-10 2.30338e-10) (-1.10729e-09 -1.028e-10 1.18009e-10) (-9.15711e-10 4.74688e-10 -7.53712e-11) (-5.60275e-10 6.78466e-10 -1.31058e-10) (-1.56529e-10 3.40713e-10 3.17258e-11) (-3.25279e-11 1.42304e-10 1.52704e-10) (-2.02573e-11 1.14549e-10 3.33923e-10) (-5.47856e-11 1.05096e-10 2.40258e-10) (-8.04329e-11 1.01747e-10 6.70116e-11) (-1.2735e-10 1.24399e-10 -2.94206e-11) (-1.05788e-10 7.32516e-11 -6.51649e-11) (-2.60412e-11 9.40094e-12 -2.24317e-11) (-8.17408e-13 -7.26992e-13 -3.53827e-12) (6.76475e-12 -2.63402e-12 -1.031e-11) (2.76346e-11 -5.3939e-12 -5.41217e-11) (6.26962e-11 -2.56879e-11 -1.63391e-10) (1.46413e-10 -1.18396e-10 -3.08551e-10) (2.71417e-10 -2.65612e-10 -3.72312e-10) (3.16053e-10 -3.36413e-10 -2.55379e-10) (2.13097e-10 -2.3965e-10 -5.11863e-11) (1.02859e-10 -1.21093e-10 6.53013e-11) (5.66964e-11 -6.59982e-11 1.45111e-10) (2.31321e-11 -8.92017e-12 2.38629e-10) (-7.13171e-12 5.42027e-11 2.51019e-10) (-9.73972e-12 5.8337e-11 1.29425e-10) (1.71444e-12 1.50874e-11 1.29217e-11) (1.42691e-11 1.56002e-11 -2.279e-11) (8.99659e-11 5.89043e-11 -1.90523e-10) (1.50753e-10 9.52503e-11 -2.74335e-10) (1.30097e-10 5.77362e-11 -1.3829e-10) (9.56454e-11 4.66501e-12 -3.31029e-11) (9.90205e-11 -3.51874e-11 1.62899e-11) (7.2044e-11 -4.60218e-11 4.60165e-11) (1.35385e-11 -9.04029e-12 2.37126e-11) (1.13528e-10 5.9268e-11 -6.13378e-11) (1.21754e-10 5.03147e-11 -1.6608e-10) (1.08075e-10 -2.89836e-11 -2.28233e-10) (4.38375e-11 -1.34414e-10 -1.90173e-10) (-1.10865e-10 -2.62974e-10 -1.08637e-10) (-7.67334e-10 -6.72474e-10 1.08721e-10) (-2.11198e-09 -1.0209e-09 6.63859e-10) (-2.24765e-09 -4.63316e-10 7.25284e-10) (-1.06771e-09 2.28056e-10 2.04524e-10) (-4.98019e-10 5.12073e-10 -1.27456e-10) (-3.41735e-10 6.51406e-10 -3.36644e-10) (-2.2201e-10 3.26513e-10 -1.85684e-10) (-1.42142e-10 9.52711e-11 -3.05736e-12) (-1.70528e-10 6.35701e-11 1.25091e-10) (-1.758e-10 9.41552e-11 2.41039e-10) (-1.07647e-10 1.1808e-10 1.9237e-10) (-4.7097e-11 9.01322e-11 8.8334e-11) (-1.15908e-11 4.24807e-11 2.70025e-11) (2.09454e-12 1.08231e-11 4.40984e-12) (6.99257e-12 2.36295e-12 -1.94323e-12) (5.23391e-11 -2.25013e-11 -3.66416e-11) (2.13239e-10 -1.72472e-10 -1.79817e-10) (4.69781e-10 -4.48256e-10 -3.82349e-10) (5.76432e-10 -5.44313e-10 -4.16913e-10) (4.0451e-10 -3.62651e-10 -2.46871e-10) (1.73835e-10 -1.68662e-10 -6.94952e-11) (6.07427e-11 -8.98202e-11 1.1263e-11) (2.65626e-11 -9.52862e-11 7.1505e-11) (-8.04079e-12 -1.0515e-10 1.72348e-10) (-6.04408e-11 -3.4726e-11 2.59913e-10) (-1.36694e-10 1.21631e-10 3.04962e-10) (-2.28617e-10 3.22945e-10 2.56425e-10) (-2.14962e-10 3.64314e-10 5.08689e-11) (-8.36301e-11 2.11265e-10 -1.10258e-10) (2.25932e-11 7.96078e-11 -1.37602e-10) (8.90028e-11 3.55237e-12 -9.3811e-11) (1.50675e-10 -3.61469e-11 -2.11834e-11) (2.22958e-10 -4.21822e-11 7.54965e-11) (2.1131e-10 5.21132e-12 9.75523e-11) (1.36225e-10 4.26154e-11 2.09108e-11) (1.73192e-10 -1.73727e-10 -1.74128e-10) (2.29108e-10 -1.55557e-10 -3.80499e-10) (1.39079e-10 -4.95852e-11 -3.23682e-10) (8.92202e-12 -9.57183e-13 -7.43308e-11) (-1.72403e-11 -1.21004e-12 -2.56535e-12) (-1.6734e-10 -2.77726e-11 1.00965e-10) (-3.84507e-10 -5.65566e-11 2.9263e-10) (-3.29684e-10 1.26065e-11 2.26871e-10) (-1.06732e-10 5.50716e-11 3.43798e-11) (-2.35644e-11 7.67536e-11 -5.64945e-11) (7.13402e-11 1.49784e-10 -2.53749e-10) (1.05408e-10 8.87318e-11 -2.81374e-10) (1.09206e-11 1.92455e-11 -7.20391e-11) (-3.88966e-11 2.38091e-11 -4.59216e-12) (-4.66177e-10 2.1419e-10 2.25238e-10) (-1.21832e-09 4.17708e-10 8.59874e-10) (-1.24154e-09 1.99071e-10 1.22893e-09) (-6.52135e-10 -9.07474e-11 9.71328e-10) (-1.73459e-10 -1.68572e-10 4.55491e-10) (4.89665e-12 -1.45778e-10 1.33597e-10) (1.07259e-10 -2.2463e-10 1.52385e-13) (3.58191e-10 -4.02276e-10 -2.87799e-10) (7.15273e-10 -3.56617e-10 -7.96356e-10) (8.95068e-10 -3.1356e-12 -1.14927e-09) (5.63602e-10 1.65269e-10 -8.06668e-10) (1.14544e-10 2.27752e-11 -1.88026e-10) (1.54759e-12 -1.06181e-11 -3.92175e-12) (-7.4499e-11 -1.40986e-10 1.55613e-10) (-3.88213e-10 -3.74338e-10 8.80003e-10) (-7.44264e-10 -2.36873e-10 1.48786e-09) (-7.07624e-10 1.79501e-10 1.03021e-09) (-3.79234e-10 3.47016e-10 3.15181e-10) (-1.54988e-10 3.7196e-10 -3.64851e-11) (2.44186e-11 3.90147e-10 -2.61363e-10) (1.71105e-10 2.39453e-10 -2.92426e-10) (1.56736e-10 5.54268e-11 -1.20762e-10) (1.1007e-10 -1.59688e-11 -7.92748e-12) (1.21709e-10 -6.31471e-11 5.36669e-11) (1.19771e-10 -1.02755e-10 5.48769e-11) (1.18435e-10 -1.27646e-10 -1.9145e-11) (2.07411e-10 -5.51165e-10 -8.2218e-10) (8.80283e-12 -2.2561e-10 -4.55821e-10) (-3.06849e-11 -4.19333e-11 -8.20479e-11) (-2.39802e-11 -1.37165e-11 1.02459e-12) (-7.45497e-11 -3.89449e-11 7.29347e-11) (-1.00113e-10 -4.89809e-11 1.53267e-10) (-4.34474e-11 1.15193e-12 1.08483e-10) (-1.28938e-12 4.52612e-11 4.64155e-11) (3.18331e-11 1.49613e-10 -7.21811e-13) (7.37212e-11 2.63629e-10 -1.47202e-10) (8.70333e-11 1.97137e-10 -2.6264e-10) (5.36402e-11 5.57969e-11 -2.01272e-10) (8.66551e-12 5.24424e-12 -6.17641e-11) (-4.11621e-12 6.82767e-12 -6.69395e-12) (-4.61673e-11 7.33948e-11 1.99223e-11) (-1.61691e-10 2.12906e-10 1.46156e-10) (-2.43256e-10 1.69856e-10 3.21461e-10) (-2.59912e-10 -5.68735e-11 5.08995e-10) (-1.52596e-10 -3.15442e-10 5.11562e-10) (1.46613e-11 -2.9767e-10 1.98437e-10) (7.52954e-11 -1.62453e-10 -2.65025e-11) (1.22964e-10 -1.02232e-10 -2.06094e-10) (1.39233e-10 8.45405e-12 -4.347e-10) (9.56763e-11 9.64187e-11 -5.03017e-10) (5.69987e-11 6.48396e-11 -3.4651e-10) (2.34619e-11 6.64024e-14 -1.0171e-10) (1.34507e-12 -5.76755e-12 -6.42436e-13) (-6.61125e-11 -1.31128e-10 2.45086e-10) (-6.65212e-10 -5.39901e-10 1.51056e-09) (-1.61789e-09 -6.83672e-10 2.35101e-09) (-1.59251e-09 -2.13652e-10 1.3833e-09) (-7.52628e-10 1.89756e-10 3.26441e-10) (-2.40464e-10 2.86629e-10 -7.9182e-12) (-4.22349e-12 3.72718e-10 -1.08708e-10) (1.74242e-10 3.2473e-10 -1.06207e-10) (1.99184e-10 1.45054e-10 -3.45614e-11) (1.79969e-10 1.43208e-11 1.19351e-12) (2.24836e-10 -1.08891e-10 -2.58488e-11) (3.28232e-10 -3.34151e-10 -2.05368e-10) (3.70714e-10 -6.0208e-10 -6.10654e-10) (3.06962e-10 -5.63897e-10 -1.12958e-09) (3.30725e-11 -5.06228e-10 -6.80708e-10) (-1.27092e-10 -2.96609e-10 -1.86162e-10) (-3.42705e-10 -2.71144e-10 3.66188e-11) (-7.90998e-10 -2.9779e-10 3.34175e-10) (-6.31821e-10 -1.36614e-10 3.85447e-10) (-7.36864e-11 9.78371e-12 8.86823e-11) (7.68255e-11 8.80873e-11 2.47163e-11) (7.47206e-10 6.86727e-10 -2.23834e-10) (1.17454e-09 1.14059e-09 -6.46642e-10) (6.43985e-10 6.13732e-10 -5.28874e-10) (1.71607e-10 9.87104e-11 -1.89637e-10) (5.47233e-11 -2.27016e-11 -5.93657e-11) (4.57861e-11 -4.44725e-11 -2.3379e-11) (3.10024e-11 -1.61984e-11 3.06571e-12) (2.54812e-11 1.42012e-11 1.98502e-11) (2.44517e-11 7.80713e-11 6.99491e-11) (-3.43694e-12 8.05694e-11 9.5494e-11) (-6.00035e-12 1.07613e-11 4.45682e-11) (-9.98719e-13 -1.46935e-11 1.26173e-11) (-4.77291e-12 -4.77945e-11 -7.01762e-12) (-3.35337e-11 -6.44627e-11 -4.2738e-11) (-8.24681e-11 -4.87449e-11 -7.7094e-11) (-8.98582e-11 -1.95817e-11 -9.70276e-11) (-2.90032e-11 -8.49386e-12 -7.41613e-11) (8.15725e-12 -8.65624e-12 -3.14914e-11) (5.62185e-12 -4.47194e-12 5.06795e-13) (-7.05183e-12 -3.39693e-11 1.18518e-10) (-3.05912e-10 -1.73728e-10 7.35473e-10) (-8.87986e-10 -3.90783e-10 1.15973e-09) (-1.05028e-09 -3.90746e-10 7.2248e-10) (-7.39482e-10 -1.52566e-10 2.15153e-10) (-3.52306e-10 5.83137e-11 5.91368e-11) (-1.55897e-10 1.7064e-10 7.98816e-11) (-2.68205e-11 2.83936e-10 1.54068e-10) (1.12126e-10 2.41348e-10 1.60854e-10) (1.50658e-10 9.4682e-11 7.35248e-11) (1.77294e-10 2.28537e-12 -2.45505e-11) (3.24492e-10 -1.23308e-10 -2.81864e-10) (4.5377e-10 -3.68033e-10 -8.51474e-10) (1.76463e-10 -2.4814e-10 -5.37136e-10) (-6.91602e-11 -4.04102e-10 -3.97825e-10) (-5.29615e-10 -5.65869e-10 -2.17297e-10) (-1.86303e-09 -8.19361e-10 2.40336e-10) (-3.48631e-09 -7.56467e-10 1.03369e-09) (-1.8563e-09 -3.12384e-10 6.18429e-10) (-4.29653e-11 -1.08092e-11 5.49349e-12) (3.91995e-10 9.44164e-11 -2.35545e-10) (2.54764e-09 9.84637e-10 -1.2737e-09) (3.52615e-09 1.74065e-09 -1.60523e-09) (2.32921e-09 1.08307e-09 -1.01319e-09) (8.72256e-10 1.69616e-10 -4.01044e-10) (1.72902e-10 -6.77937e-11 -8.23196e-11) (8.9134e-12 -2.98806e-11 1.01435e-11) (-4.50122e-11 -2.13488e-11 1.4762e-10) (-6.53739e-11 1.48556e-10 4.80253e-10) (6.05738e-11 3.13102e-10 5.54362e-10) (8.36972e-11 1.95854e-10 2.91209e-10) (1.44617e-11 3.15416e-11 5.49525e-11) (-1.30388e-12 2.22963e-13 2.25115e-12) (-1.22184e-11 -2.28501e-12 -3.65149e-12) (-4.06667e-11 -8.1485e-13 -2.63872e-11) (-4.8355e-11 -3.11444e-12 -5.16821e-11) (-2.63628e-11 -2.76093e-11 -7.85687e-11) (1.7896e-11 -7.94985e-11 -1.27472e-10) (3.19182e-11 -7.4084e-11 -8.30495e-11) (-1.01751e-12 -1.42048e-11 -8.97211e-13) (-1.13081e-10 -5.58838e-11 1.79886e-10) (-6.31091e-10 -1.76742e-10 1.00076e-09) (-9.58743e-10 -2.7079e-10 1.31956e-09) (-6.3938e-10 -1.21366e-10 6.37166e-10) (-2.52997e-10 2.94739e-11 1.40909e-10) (-1.01992e-10 6.48133e-11 2.2372e-11) (-2.94405e-11 4.74524e-11 5.63565e-12) (1.1494e-12 2.01106e-11 2.69673e-12) (1.20448e-11 1.27273e-11 -2.13032e-12) (3.69959e-11 1.94295e-11 -2.3158e-11) (9.86092e-11 3.85302e-11 -1.00667e-10) (2.00505e-10 4.10753e-11 -2.72897e-10) (2.69753e-10 -5.33071e-11 -4.82889e-10) (-1.64128e-10 -1.57465e-10 -2.31483e-10) (-5.61915e-10 -8.41003e-10 -3.26857e-10) (-8.94016e-10 -1.16678e-09 3.36194e-11) (-1.49351e-09 -7.62152e-10 6.43603e-10) (-3.00124e-09 -3.82302e-10 1.36972e-09) (-1.70459e-09 -3.26785e-10 3.68978e-10) (-1.45984e-10 -2.1373e-10 -2.98104e-10) (1.37928e-09 -5.34205e-10 -2.3245e-09) (3.65237e-09 3.08838e-10 -3.81699e-09) (3.19961e-09 1.1215e-09 -2.24064e-09) (1.54071e-09 8.72555e-10 -5.48695e-10) (3.38895e-10 3.23671e-10 9.20536e-11) (3.51659e-11 1.95628e-10 4.64099e-10) (-2.57427e-10 -2.16519e-11 1.89388e-09) (-4.0277e-10 -4.10731e-10 2.66688e-09) (-2.38859e-10 -9.4929e-11 1.39146e-09) (-2.0783e-11 1.79131e-10 3.58847e-10) (9.85193e-11 3.77212e-10 1.39753e-10) (1.82951e-10 4.44544e-10 -4.04195e-12) (1.24556e-10 2.132e-10 -7.28934e-11) (7.8319e-11 7.74621e-11 -1.03098e-10) (9.96364e-11 3.10458e-12 -2.24534e-10) (1.75941e-10 -2.09044e-10 -5.59771e-10) (2.08622e-10 -5.89356e-10 -8.78537e-10) (2.36963e-11 -5.39182e-10 -5.1748e-10) (-9.19889e-11 -1.31081e-10 -2.82941e-11) (-4.83617e-10 -4.97306e-11 4.37927e-10) (-1.33934e-09 1.22405e-10 1.77639e-09) (-1.34863e-09 -1.46838e-10 2.11488e-09) (-6.43618e-10 -2.9681e-10 1.20711e-09) (-1.19876e-10 -7.18033e-11 3.43208e-10) (3.81132e-12 2.54504e-11 5.59219e-11) (4.7216e-11 9.71706e-11 1.78651e-11) (1.09954e-10 1.76626e-10 -6.6609e-11) (1.53197e-10 1.65697e-10 -2.05155e-10) (2.24377e-10 1.44292e-10 -4.41639e-10) (2.72935e-10 1.34041e-10 -6.13785e-10) (2.1421e-10 1.53808e-10 -5.07858e-10) (8.49347e-11 1.2162e-10 -3.00061e-10) (-2.07676e-11 2.96768e-11 -1.78252e-10) (-4.46264e-10 -6.17401e-10 -3.78727e-10) (-1.42532e-09 -2.95527e-09 -8.57197e-10) (-1.67134e-09 -2.48677e-09 -1.28056e-10) (-8.8472e-10 -5.05834e-10 5.67593e-10) (-8.45182e-10 1.04054e-10 9.85367e-10) (-2.47081e-10 -7.75887e-12 2.21903e-10) (-1.91889e-11 -1.17418e-10 -1.57345e-10) (6.79916e-10 -5.44092e-10 -1.90998e-09) (1.14889e-09 9.42735e-11 -2.13761e-09) (6.22065e-10 5.51429e-10 -6.07899e-10) (6.49238e-10 8.98535e-10 2.70139e-10) (1.49575e-09 1.35147e-09 1.98348e-09) (1.67285e-09 3.74553e-10 3.12203e-09) (1.62741e-10 -6.4688e-10 2.08224e-09) (-1.44969e-09 -1.06356e-09 1.71157e-09) (-2.4034e-09 -7.20526e-10 1.26444e-09) (-7.27082e-10 8.08169e-11 3.37984e-10) (-1.3028e-11 2.19993e-10 6.26734e-11) (7.64032e-10 1.06868e-09 -9.64498e-11) (1.67973e-09 1.68358e-09 -7.03238e-10) (1.55594e-09 1.16776e-09 -1.28627e-09) (1.26012e-09 3.68833e-10 -1.80598e-09) (8.33859e-10 -4.38079e-10 -2.0904e-09) (3.38114e-11 -5.97711e-10 -1.04152e-09) (-3.94822e-10 -3.19078e-10 -1.42805e-10) (-1.52166e-09 -4.69982e-10 8.58902e-10) (-1.74949e-09 -5.97453e-10 2.24399e-09) (-6.46748e-10 -7.51827e-10 2.33002e-09) (4.21761e-11 -6.63359e-10 1.61531e-09) (7.37908e-11 -2.68199e-10 6.66706e-10) (-1.86024e-12 -1.08569e-11 1.17529e-10) (2.24757e-12 4.39667e-11 2.32635e-11) (1.32846e-10 2.69158e-10 -3.78174e-11) (7.2846e-10 7.01319e-10 -3.63041e-10) (1.58718e-09 9.17659e-10 -1.02622e-09) (1.4548e-09 6.63806e-10 -1.32169e-09) (4.82135e-10 3.20204e-10 -7.85267e-10) (9.3325e-12 1.9348e-10 -3.38144e-10) (-1.36595e-10 1.65355e-10 -2.16639e-10) (-1.68829e-10 1.62904e-11 -1.60494e-10) (-4.35379e-09 -3.72549e-09 -2.27797e-09) (-1.01834e-08 -9.37435e-09 -4.56598e-09) (-5.26465e-09 -4.99345e-09 -8.15817e-10) (-5.34443e-10 -5.47952e-10 7.23343e-10) (2.31839e-10 1.6535e-10 1.67445e-09) (3.75067e-10 2.03518e-10 7.8032e-10) (6.18467e-11 8.891e-12 1.38083e-11) (1.00059e-10 8.05696e-12 -1.49625e-10) (1.82122e-10 1.07326e-10 -1.68657e-10) (7.90403e-10 4.64884e-10 1.09434e-10) (2.36785e-09 9.50664e-10 1.15554e-09) (1.5236e-09 3.33616e-10 1.04382e-09) (4.53375e-11 -1.91788e-11 2.42664e-10) (-2.11338e-09 -3.37996e-10 1.10521e-09) (-9.85539e-09 -1.32269e-09 3.22062e-09) (-8.5228e-09 -1.33623e-09 2.16975e-09) (-1.66663e-09 -1.99807e-10 2.11071e-10) (-4.88261e-11 4.71545e-11 -1.90741e-11) (2.80703e-10 5.40726e-10 -1.79046e-10) (1.56809e-09 1.76064e-09 -8.46073e-10) (2.68604e-09 1.95769e-09 -1.95985e-09) (2.24933e-09 8.52354e-10 -2.35438e-09) (6.21349e-10 -1.0399e-10 -1.02978e-09) (-4.6066e-11 -1.18268e-10 -1.09359e-10) (-4.25999e-10 -3.68522e-10 2.06645e-10) (-5.67278e-10 -7.48121e-10 8.34841e-10) (-1.61193e-10 -8.54991e-10 1.14784e-09) (2.02692e-10 -5.41692e-10 1.04767e-09) (2.19941e-10 -1.52965e-10 6.3477e-10) (3.33149e-11 -4.36631e-12 1.69512e-10) (-2.05263e-11 3.92448e-12 2.3468e-11) (-3.10663e-11 1.08488e-11 1.64073e-12) (5.91445e-12 2.84661e-11 -1.42632e-11) (5.80894e-10 3.94438e-10 -2.81399e-10) (3.10547e-09 1.58619e-09 -1.37581e-09) (4.51565e-09 2.53606e-09 -2.20753e-09) (1.78475e-09 1.55696e-09 -1.15833e-09) (4.6844e-11 3.37479e-10 -1.82722e-10) (-2.76608e-10 1.25369e-10 -8.33469e-11) (-9.91457e-10 -3.63356e-10 -3.38956e-10) (-2.4049e-08 -1.19502e-08 -9.05932e-09) (-2.53312e-08 -2.10581e-08 -1.00381e-08) (-5.8836e-09 -7.26736e-09 -1.55061e-09) (-2.13652e-10 -4.69207e-10 6.88296e-10) (1.37217e-09 6.42079e-10 4.34722e-09) (2.78493e-09 1.22347e-09 4.45007e-09) (1.48866e-09 4.45482e-10 1.14098e-09) (5.81095e-10 1.13032e-10 1.436e-10) (4.59844e-10 7.58006e-11 6.24347e-11) (6.56825e-10 1.15223e-10 1.17613e-10) (4.95275e-10 1.17389e-10 3.47924e-11) (1.10579e-11 2.27514e-11 -7.47897e-12) (-1.41874e-09 3.86251e-10 1.80893e-10) (-9.04636e-09 4.56051e-10 2.81415e-09) (-9.55969e-09 -1.56141e-09 3.7179e-09) (-2.42124e-09 -1.19626e-09 6.02098e-10) (-1.66827e-10 -2.34384e-10 -1.6322e-10) (5.59364e-11 -2.97857e-11 -2.38697e-10) (1.52386e-10 2.07225e-10 -2.49664e-10) (4.74617e-10 7.74857e-10 -3.89986e-10) (1.38208e-09 1.48645e-09 -8.91551e-10) (2.21984e-09 1.34429e-09 -1.36001e-09) (1.50023e-09 3.33299e-10 -8.93676e-10) (5.32681e-10 -1.43507e-10 -2.41489e-10) (2.21362e-10 -2.72301e-10 2.20534e-11) (7.07981e-11 -4.03546e-10 2.45339e-10) (-1.30904e-10 -2.87833e-10 3.54953e-10) (-1.74619e-10 -8.12369e-11 3.10712e-10) (-5.16678e-11 1.40576e-11 1.88497e-10) (4.77123e-12 7.28253e-12 9.47945e-11) (-8.30102e-12 -8.71512e-12 4.11839e-11) (-2.57494e-11 -7.75328e-12 2.10395e-11) (-3.84295e-12 1.16152e-12 -6.49042e-14) (6.19504e-11 2.72965e-11 -4.89684e-11) (1.06669e-09 3.05847e-10 -4.88813e-10) (3.86699e-09 1.74005e-09 -1.33322e-09) (4.13801e-09 3.25519e-09 -1.26821e-09) (6.37204e-10 1.32617e-09 -2.81685e-10) (-5.66146e-10 4.20677e-10 -1.47431e-10) (-6.41158e-09 -1.05854e-09 -1.97345e-09) (-2.42262e-08 -1.72781e-08 -9.31037e-09) (-2.0137e-08 -2.66096e-08 -1.02026e-08) (-6.2278e-09 -8.22945e-09 -2.84947e-09) (-4.85996e-10 -2.02895e-10 3.92296e-10) (1.27874e-09 1.24968e-09 5.97129e-09) (7.06624e-09 2.38853e-09 1.24671e-08) (5.50067e-09 1.75519e-09 5.97162e-09) (1.55378e-09 6.33072e-10 1.10299e-09) (2.03332e-10 1.12666e-10 8.9634e-11) (1.20347e-11 1.48955e-11 -1.28545e-11) (-1.26762e-10 7.3561e-11 -2.11228e-10) (-1.41232e-09 3.49208e-10 -7.10404e-10) (-3.7248e-09 4.17135e-10 -2.78578e-11) (-2.75453e-09 -3.36401e-10 1.05529e-09) (-5.98302e-10 -4.57172e-10 5.16873e-10) (-1.80974e-11 -1.6221e-10 4.06006e-11) (5.433e-11 -1.09546e-10 -1.1018e-10) (1.07764e-10 -7.29347e-11 -3.13107e-10) (9.59501e-11 5.14706e-11 -3.17485e-10) (1.36977e-10 2.17392e-10 -3.09846e-10) (4.57907e-10 4.82784e-10 -4.90468e-10) (1.04824e-09 4.37974e-10 -6.80032e-10) (1.60704e-09 -3.8995e-11 -7.06526e-10) (1.94382e-09 -5.64298e-10 -4.31914e-10) (1.6476e-09 -5.57499e-10 8.12805e-11) (6.83972e-10 -1.19675e-10 3.018e-10) (9.40272e-11 5.22336e-11 1.76418e-10) (-6.56005e-11 9.26802e-11 1.30655e-10) (-8.43145e-11 6.55939e-11 7.92624e-11) (-3.05994e-11 1.44781e-11 3.98667e-11) (-3.11578e-11 -4.92477e-12 4.94301e-11) (-4.07193e-11 -1.20907e-11 4.7088e-11) (-8.64294e-12 -6.50006e-12 6.44393e-12) (2.0206e-12 -2.07305e-11 -7.54111e-12) (1.94684e-11 -2.16428e-11 -2.27525e-11) (2.49319e-10 2.13461e-10 -1.40839e-10) (1.73428e-09 2.61582e-09 -8.4281e-10) (9.85821e-10 3.09985e-09 -9.64131e-10) (-9.13741e-10 1.1679e-09 -7.13144e-10) (-8.73294e-09 -1.41275e-09 -3.36849e-09) (-1.01697e-08 -1.50423e-08 -6.20106e-09) (-1.33877e-08 -2.41581e-08 -8.61651e-09) (-7.84582e-09 -6.96118e-09 -2.53945e-09) (-1.74525e-09 -3.69564e-12 7.14679e-10) (6.83373e-10 1.17123e-09 5.25791e-09) (9.15631e-09 1.51567e-09 1.58764e-08) (9.04688e-09 2.25446e-09 1.07256e-08) (2.85538e-09 1.42915e-09 2.6323e-09) (1.87208e-10 2.1997e-10 1.07868e-10) (-1.70151e-10 1.23308e-10 -2.59122e-10) (-2.69824e-09 1.95274e-10 -2.2939e-09) (-6.9417e-09 -1.55172e-11 -2.93565e-09) (-4.53775e-09 -4.48135e-10 -3.87827e-10) (-5.21622e-10 -2.52765e-10 1.89308e-10) (2.62253e-11 -6.767e-11 5.12046e-11) (8.29568e-11 -4.27213e-11 8.51412e-12) (4.01155e-11 -2.82212e-11 -3.51661e-11) (2.80965e-11 -8.10346e-11 -1.46272e-10) (3.95276e-11 -8.18442e-11 -2.76702e-10) (1.04669e-10 5.90822e-11 -2.99157e-10) (2.38483e-10 1.77488e-10 -3.10682e-10) (4.14501e-10 9.53282e-11 -2.31038e-10) (8.54269e-10 -1.54425e-10 -1.1974e-10) (1.43973e-09 -3.79678e-10 1.97513e-10) (1.55251e-09 -1.0641e-10 4.75674e-10) (1.18845e-09 3.78925e-10 3.9941e-10) (6.01228e-10 4.8249e-10 1.1382e-10) (1.37147e-10 1.90061e-10 -1.16192e-11) (5.65327e-12 1.56087e-11 -8.34528e-13) (-3.12816e-12 -5.1485e-13 5.63813e-12) (-3.21548e-11 -1.91818e-11 4.42745e-11) (-2.42079e-11 -1.93522e-11 3.62618e-11) (-5.15632e-12 -1.58259e-11 7.66538e-12) (-9.4148e-11 -1.14281e-10 -7.85662e-12) (-7.75916e-10 -2.85282e-10 -4.10315e-11) (-7.59932e-10 2.83004e-10 -1.68128e-10) (-2.44531e-10 1.65871e-09 -7.22124e-10) (5.67628e-10 3.11651e-09 -1.51763e-09) (-3.17771e-10 9.53315e-10 -8.57471e-10) (-2.61971e-09 -1.26152e-09 -1.72218e-09) (-4.71025e-09 -1.28927e-08 -5.98415e-09) (-1.23092e-08 -1.75129e-08 -5.81256e-09) (-1.02931e-08 -4.75749e-09 7.43117e-11) (-2.71193e-09 4.44835e-10 1.95818e-09) (9.83423e-10 8.1921e-10 4.23672e-09) (7.24089e-09 2.62601e-10 1.01609e-08) (7.1818e-09 1.24572e-09 7.88631e-09) (2.95958e-09 1.44811e-09 2.74382e-09) (3.41887e-10 3.9532e-10 1.62974e-10) (-3.04983e-10 2.85549e-10 -4.7535e-10) (-5.63244e-09 3.85292e-10 -3.96715e-09) (-1.1653e-08 -1.05938e-09 -4.62873e-09) (-3.74159e-09 -1.2029e-09 -8.72082e-10) (-8.06149e-11 -1.47482e-10 -5.98962e-12) (1.15405e-10 -4.37626e-11 2.98164e-11) (9.54769e-11 1.3449e-11 3.54473e-11) (1.11055e-13 -3.19786e-13 5.42308e-13) (-8.76883e-11 -1.01959e-10 -5.91584e-11) (-8.54242e-11 -2.37113e-10 -3.08715e-10) (1.80379e-10 -3.96241e-11 -5.16428e-10) (4.30684e-10 2.28978e-10 -5.00397e-10) (3.02764e-10 9.89234e-11 -9.67685e-11) (3.49746e-10 -3.92939e-11 1.92653e-10) (6.41674e-10 -1.14043e-10 8.14541e-10) (7.77232e-10 1.85869e-10 9.98368e-10) (9.38367e-10 5.87139e-10 5.28749e-10) (1.21459e-09 8.82392e-10 -2.20068e-10) (9.87538e-10 6.41255e-10 -7.00662e-10) (2.38698e-10 9.04007e-11 -2.15408e-10) (3.65271e-12 -2.56614e-12 -1.98733e-12) (-8.1541e-12 -1.45578e-11 1.49545e-11) (-1.10233e-12 -1.10392e-11 1.40676e-11) (-2.08155e-12 -1.19009e-11 5.63429e-12) (-5.06271e-10 -2.66648e-10 5.8372e-11) (-4.65243e-09 -1.14687e-09 3.72003e-10) (-4.82209e-09 2.23199e-10 -3.12858e-10) (-1.16888e-09 1.16187e-09 -8.46405e-10) (2.50437e-10 2.08476e-09 -1.54455e-09) (1.79691e-10 6.81264e-10 -9.36908e-10) (-4.50964e-10 -1.05608e-09 -1.26145e-09) (-3.42081e-09 -9.40963e-09 -5.4177e-09) (-1.47897e-08 -1.15544e-08 -2.69391e-09) (-1.41888e-08 -2.92396e-09 4.78104e-09) (-2.67359e-09 6.83453e-10 4.67842e-09) (1.58397e-09 3.81282e-10 3.86147e-09) (3.32619e-09 -1.19761e-11 3.30818e-09) (2.83812e-09 4.30906e-10 2.22948e-09) (1.48295e-09 6.94821e-10 1.05606e-09) (2.26386e-10 2.89733e-10 6.43279e-11) (-3.85353e-10 3.44112e-10 -4.65786e-10) (-5.11544e-09 3.15965e-10 -3.09466e-09) (-6.86789e-09 -1.3628e-09 -2.96059e-09) (-1.03713e-09 -7.55302e-10 -5.03692e-10) (4.06618e-11 -8.71135e-11 -2.09101e-11) (1.45983e-10 1.38648e-11 5.9185e-11) (8.20622e-11 9.08044e-11 1.37966e-10) (-4.52962e-11 7.5939e-12 7.95375e-11) (-2.71664e-10 -2.2112e-10 2.82786e-11) (-3.56369e-10 -4.47347e-10 -3.56423e-10) (-1.68902e-11 -1.34603e-10 -8.3079e-10) (6.21052e-10 4.04154e-10 -1.19323e-09) (4.94168e-10 2.36268e-10 -2.94141e-10) (2.58519e-10 3.0367e-11 1.87524e-10) (3.15104e-10 -5.54294e-11 1.12427e-09) (2.33006e-10 1.95147e-10 1.31867e-09) (3.11869e-10 4.07344e-10 4.68994e-10) (7.72815e-10 7.62411e-10 -1.45473e-10) (1.23871e-09 7.88753e-10 -8.4093e-10) (4.90303e-10 1.09143e-10 -4.20545e-10) (6.9774e-11 -3.64872e-11 -6.50108e-11) (2.75585e-11 -2.34589e-11 -7.23879e-12) (3.64001e-11 -9.13256e-12 8.22672e-12) (1.03027e-12 -2.98932e-12 8.34492e-12) (-9.0019e-10 -3.28704e-10 3.51031e-10) (-6.4795e-09 -1.9301e-09 1.27447e-09) (-7.01706e-09 -7.38436e-10 -3.41911e-10) (-1.96814e-09 7.92956e-10 -1.26654e-09) (9.1164e-13 1.32229e-09 -1.61393e-09) (6.33403e-10 5.9012e-10 -1.54843e-09) (4.3432e-10 -1.5965e-09 -2.26639e-09) (-3.74768e-09 -5.21801e-09 -3.60909e-09) (-1.7235e-08 -6.89327e-09 3.91817e-10) (-1.11864e-08 -1.1417e-09 8.51313e-09) (-5.47894e-10 3.42575e-10 8.78695e-09) (1.7443e-09 1.87293e-11 3.86844e-09) (5.95312e-10 4.98919e-11 5.52716e-10) (4.58848e-10 1.62401e-10 1.42058e-10) (4.74451e-10 2.83331e-10 4.66878e-11) (1.19363e-10 1.76519e-10 -8.11331e-11) (-4.50194e-10 2.70998e-10 -4.57483e-10) (-3.53369e-09 -2.85222e-11 -1.73601e-09) (-2.30963e-09 -8.76613e-10 -9.80181e-10) (-7.31677e-11 -2.24243e-10 -1.0795e-10) (1.39114e-10 -5.16726e-11 -2.12975e-12) (3.19443e-10 1.36554e-10 1.86778e-10) (2.54546e-10 2.18573e-10 3.88904e-10) (8.06917e-12 -2.10103e-12 1.91549e-10) (-1.84616e-10 -2.17741e-10 1.04806e-10) (-7.67865e-10 -5.60272e-10 -3.66805e-10) (-7.9151e-10 -1.69077e-10 -1.35501e-09) (2.58536e-10 4.78705e-10 -1.90077e-09) (6.63517e-10 3.53209e-10 -6.7355e-10) (2.44132e-10 7.65358e-11 1.05917e-10) (1.15452e-10 4.97265e-11 9.4418e-10) (-1.89872e-10 2.22082e-10 1.17788e-09) (1.39374e-12 1.96937e-10 2.18982e-10) (2.59893e-10 2.92794e-10 -8.4586e-11) (7.73044e-10 3.49965e-10 -5.13327e-10) (9.48833e-10 -6.15053e-12 -7.8678e-10) (8.94137e-10 -2.82004e-10 -7.47863e-10) (4.73787e-10 -1.02123e-10 -2.81127e-10) (1.01175e-10 3.85574e-11 4.51372e-12) (-2.95164e-11 5.71124e-11 1.48226e-10) (-1.32906e-09 -4.40772e-10 1.16593e-09) (-6.49867e-09 -2.66745e-09 2.0993e-09) (-8.01591e-09 -1.85729e-09 -9.55794e-10) (-2.62696e-09 3.18147e-10 -2.17185e-09) (3.97321e-11 8.50377e-10 -1.94039e-09) (1.21679e-09 3.62745e-10 -2.34459e-09) (8.61591e-10 -1.66372e-09 -2.78906e-09) (-4.54655e-09 -2.60116e-09 -2.06497e-09) (-1.34382e-08 -3.01176e-09 2.80234e-09) (-3.48911e-09 -6.74751e-10 7.7411e-09) (3.97258e-09 -5.90849e-10 1.21435e-08) (1.33507e-09 -1.25377e-10 3.47926e-09) (9.55595e-12 3.28266e-11 1.25475e-10) (1.33889e-11 5.16324e-11 -1.55252e-11) (1.59909e-10 2.17607e-10 -1.78051e-10) (5.42004e-11 2.19972e-10 -2.81342e-10) (-6.88683e-10 2.22874e-10 -5.75329e-10) (-1.76463e-09 -2.5946e-10 -6.73255e-10) (-2.97895e-10 -2.96447e-10 -1.14612e-10) (9.025e-11 -1.07467e-10 -1.48512e-11) (3.50937e-10 1.4128e-11 6.62712e-11) (7.40409e-10 3.01937e-10 3.82868e-10) (6.60321e-10 2.54613e-10 5.53016e-10) (1.3821e-10 -3.19939e-11 2.34146e-10) (-1.29349e-10 -1.526e-10 8.71636e-11) (-1.33715e-09 -5.0841e-10 -4.83469e-10) (-1.69775e-09 -6.35095e-11 -1.92679e-09) (-7.20904e-11 3.4548e-10 -1.78048e-09) (4.61915e-10 2.29842e-10 -4.68796e-10) (2.58297e-10 1.09236e-10 1.41561e-10) (7.96233e-11 1.56743e-10 7.83841e-10) (-2.20884e-10 2.08415e-10 6.68366e-10) (-2.42129e-11 5.71066e-11 4.24017e-11) (1.18854e-10 7.08897e-11 -9.0971e-11) (1.32951e-09 -2.07733e-11 -9.18151e-10) (3.65258e-09 -7.59321e-10 -2.58544e-09) (2.57746e-09 -6.67147e-10 -2.07694e-09) (3.59053e-10 7.0239e-11 -3.02991e-10) (2.86095e-11 2.64849e-10 9.58358e-11) (-3.12683e-10 5.39165e-10 1.10376e-09) (-1.82884e-09 -8.27176e-10 2.6469e-09) (-8.19574e-09 -3.97806e-09 2.60247e-09) (-1.03161e-08 -3.26611e-09 -2.79717e-09) (-2.58287e-09 -2.92519e-10 -3.19667e-09) (4.10413e-10 4.26211e-10 -2.13549e-09) (1.43546e-09 1.17041e-10 -2.29255e-09) (2.63543e-10 -7.93928e-10 -1.66098e-09) (-5.39274e-09 -1.15058e-09 -8.12406e-10) (-5.4999e-09 -1.07173e-09 2.90591e-09) (1.35859e-09 -1.07213e-09 7.63514e-09) (6.50292e-09 -1.23429e-09 1.13464e-08) (4.82227e-10 -5.85628e-11 2.2086e-09) (-3.45759e-10 9.6219e-11 2.47462e-10) (-3.57176e-10 1.89825e-10 -7.77593e-11) (-1.51793e-10 2.30374e-10 -2.63908e-10) (-2.25777e-10 2.59022e-10 -4.41206e-10) (-5.31374e-10 7.82756e-11 -3.79361e-10) (-2.20102e-10 -1.28098e-10 -6.96792e-11) (2.1808e-11 -1.07338e-10 1.34519e-11) (1.96547e-10 -7.65375e-11 4.83062e-11) (5.38685e-10 9.48758e-11 1.78712e-10) (1.0105e-09 3.15458e-10 4.50474e-10) (6.90179e-10 1.75152e-10 4.38117e-10) (5.57285e-11 -1.28996e-11 1.04844e-10) (-2.79305e-10 -1.14863e-10 5.11219e-11) (-1.87236e-09 -3.08093e-10 -8.11713e-10) (-1.39315e-09 4.37028e-11 -1.88165e-09) (6.50015e-11 1.43448e-10 -1.0331e-09) (2.66877e-10 9.94905e-11 -1.26183e-10) (2.87819e-10 1.50471e-10 2.83928e-10) (4.23639e-11 2.20668e-10 6.00566e-10) (-9.98972e-11 1.23335e-10 1.98786e-10) (8.51311e-13 4.91936e-12 -2.44812e-12) (6.1746e-10 -1.12784e-10 -4.17829e-10) (4.18637e-09 -1.24565e-09 -2.64168e-09) (3.26467e-09 -1.29991e-09 -3.04922e-09) (3.76391e-10 -1.67356e-10 -8.95071e-10) (-5.94036e-12 1.9464e-10 -1.12346e-10) (7.08778e-11 1.28991e-09 7.00473e-10) (3.40326e-10 1.18577e-09 2.78964e-09) (-1.79263e-09 -1.25458e-09 3.59044e-09) (-1.25482e-08 -5.74254e-09 1.98361e-09) (-1.19261e-08 -4.87425e-09 -5.77064e-09) (-1.55503e-09 -8.38827e-10 -3.47251e-09) (6.76303e-10 1.43125e-10 -1.85843e-09) (7.82395e-10 1.18071e-10 -1.30105e-09) (-2.35767e-10 -1.67753e-10 -6.25742e-10) (-4.29854e-09 -3.12643e-10 3.38518e-10) (-1.01195e-09 -5.35321e-10 1.88642e-09) (5.0913e-09 -1.68209e-09 8.51777e-09) (4.43e-09 -8.30793e-10 7.17223e-09) (-2.04612e-10 5.08824e-11 1.13167e-09) (-1.78789e-09 2.72519e-10 4.78393e-10) (-2.05384e-09 4.51753e-10 -3.23411e-10) (-8.20495e-10 3.41804e-10 -5.46591e-10) (-3.77713e-10 1.69738e-10 -3.96725e-10) (-9.21831e-11 -9.81152e-12 -7.20924e-11) (1.81002e-13 -3.85953e-11 4.10472e-12) (8.9407e-11 -9.26048e-11 5.25223e-11) (1.99092e-10 -3.45684e-11 9.73784e-11) (4.62911e-10 9.01205e-11 2.1101e-10) (5.944e-10 1.7194e-10 2.90617e-10) (2.10073e-10 7.31969e-11 1.57196e-10) (-1.02835e-11 3.64484e-12 2.33692e-11) (-5.24502e-10 -4.89654e-11 -5.61877e-11) (-1.30912e-09 -8.70099e-11 -9.05938e-10) (-4.58523e-10 2.56781e-11 -1.1845e-09) (1.49427e-10 4.01711e-11 -3.54982e-10) (2.06048e-10 6.54013e-11 2.94991e-11) (2.24059e-10 1.73309e-10 3.58865e-10) (-4.46284e-12 1.7934e-10 2.90968e-10) (-5.2175e-12 2.5102e-11 1.4656e-11) (1.83926e-10 -4.09373e-11 -1.1597e-10) (3.02963e-09 -1.22612e-09 -1.70556e-09) (2.969e-09 -1.52272e-09 -2.76026e-09) (9.96631e-12 -4.5955e-10 -1.31258e-09) (-6.82493e-10 4.1206e-11 -6.18309e-10) (-1.29017e-10 4.11069e-10 1.88584e-11) (2.03342e-09 2.60094e-09 2.12684e-09) (3.05889e-09 1.63188e-09 4.94448e-09) (-2.05883e-09 -1.17701e-09 2.93724e-09) (-1.62582e-08 -6.81448e-09 -1.11624e-09) (-8.36345e-09 -5.12345e-09 -7.23495e-09) (-4.1994e-10 -8.97562e-10 -2.86446e-09) (3.94396e-10 1.13477e-10 -1.08883e-09) (8.00234e-11 1.40243e-10 -4.09603e-10) (-7.85749e-10 7.90826e-11 -4.09669e-10) (-1.53994e-09 -1.04069e-10 5.74848e-10) (5.36933e-10 -6.31283e-10 1.99508e-09) (6.02343e-09 -1.60894e-09 7.41161e-09) (1.78876e-09 -2.31295e-10 3.52643e-09) (-6.02753e-10 1.25193e-10 7.94938e-10) (-3.58944e-09 3.65379e-10 4.9244e-10) (-3.67992e-09 3.72879e-10 -5.68108e-10) (-1.22006e-09 2.1015e-10 -6.04246e-10) (-2.08745e-10 3.74061e-11 -1.84977e-10) (-4.81175e-12 -5.86816e-12 -8.23651e-12) (2.41974e-11 -3.50317e-11 1.03485e-11) (7.49639e-11 -5.10205e-11 4.89229e-11) (1.21013e-10 -1.13596e-11 8.15779e-11) (1.7948e-10 3.92481e-11 1.10034e-10) (1.34696e-10 5.31979e-11 8.70383e-11) (1.97535e-11 2.15226e-11 2.8479e-11) (-3.55261e-11 1.43762e-11 1.09914e-11) (-3.34514e-10 1.5815e-11 -1.31433e-10) (-3.64587e-10 -1.21512e-11 -4.93632e-10) (1.24053e-11 1.27077e-12 -4.06403e-10) (1.13564e-10 1.77729e-11 -7.52748e-11) (1.49716e-10 6.41053e-11 9.10177e-11) (8.13972e-11 1.31066e-10 2.05057e-10) (9.91626e-12 7.81305e-11 6.68659e-11) (5.82637e-11 1.22905e-11 -1.98711e-11) (1.78266e-09 -6.76367e-10 -7.76985e-10) (3.21618e-09 -1.75272e-09 -2.25521e-09) (-6.55504e-12 -5.52819e-10 -1.28629e-09) (-2.55013e-09 -3.51408e-10 -1.63728e-09) (-1.52792e-09 1.77416e-10 -2.54842e-10) (1.85252e-10 4.36251e-10 3.32142e-10) (7.00279e-09 3.7539e-09 4.62014e-09) (2.77133e-09 1.2314e-09 3.75582e-09) (-3.16923e-09 -8.82848e-10 1.50879e-09) (-1.16878e-08 -5.76065e-09 -4.56704e-09) (-3.22111e-09 -3.81087e-09 -6.01569e-09) (-8.75583e-11 -5.46898e-10 -1.87134e-09) (-5.99795e-12 1.29386e-10 -4.05813e-10) (-2.20265e-10 2.03392e-10 -2.01402e-10) (-1.61601e-09 3.48331e-10 -1.68975e-10) (-2.082e-10 -7.30509e-11 2.9194e-10) (1.7199e-09 -8.58085e-10 2.46118e-09) (3.97436e-09 -9.43823e-10 4.74787e-09) (4.87543e-10 2.715e-11 1.59624e-09) (-8.16592e-10 1.6849e-10 6.46055e-10) (-3.49709e-09 2.4788e-10 3.69265e-10) (-3.09606e-09 8.32608e-11 -4.43512e-10) (-8.87764e-10 2.81471e-11 -3.84694e-10) (-9.67147e-11 -5.27586e-12 -8.55532e-11) (-5.09761e-13 -5.22021e-12 -5.32542e-12) (1.49005e-11 -1.77749e-11 5.02734e-12) (3.12651e-11 -1.94959e-11 2.42969e-11) (3.45321e-11 -2.57446e-12 3.01132e-11) (2.86584e-11 9.35015e-12 2.2353e-11) (1.33861e-11 1.1071e-11 1.16854e-11) (-5.88895e-13 8.20834e-12 5.08407e-12) (-2.51893e-11 1.49338e-11 -1.60319e-12) (-6.30458e-11 1.34876e-11 -5.05757e-11) (-1.23275e-11 1.32638e-12 -9.95288e-11) (7.08996e-11 4.08166e-12 -8.97049e-11) (8.10847e-11 2.01134e-11 -1.1447e-11) (5.23726e-11 4.53568e-11 4.53984e-11) (2.65852e-11 6.95588e-11 5.55006e-11) (4.99003e-11 4.04345e-11 2.41315e-12) (8.2821e-10 -1.54559e-10 -2.7553e-10) (3.59651e-09 -1.63833e-09 -1.6262e-09) (4.83606e-10 -6.97812e-10 -1.07228e-09) (-2.98126e-09 -5.19127e-10 -1.95895e-09) (-6.06304e-09 -1.4262e-10 -1.15038e-09) (-5.62074e-10 7.70622e-11 2.86095e-10) (1.82035e-09 8.22119e-10 1.748e-09) (5.71409e-09 2.49276e-09 3.71588e-09) (2.1176e-10 3.78077e-10 6.83143e-10) (-3.33413e-09 -6.93981e-10 -2.38924e-10) (-4.16827e-09 -3.63717e-09 -4.74461e-09) (-8.62375e-10 -2.32122e-09 -4.05925e-09) (-2.59135e-10 -1.56376e-10 -8.61919e-10) (-2.48724e-10 1.89249e-10 -2.19184e-10) (-7.50875e-10 4.32734e-10 -1.2267e-10) (-1.27283e-09 3.07182e-10 1.21153e-10) (6.9015e-11 -9.43886e-11 2.75196e-10) (1.83118e-09 -7.54824e-10 2.17992e-09) (1.76067e-09 -3.92736e-10 2.47454e-09) (4.97798e-11 7.70405e-11 7.88715e-10) (-7.34974e-10 1.47795e-10 4.76365e-10) (-2.12816e-09 9.65366e-11 2.51547e-10) (-1.66407e-09 -5.2867e-11 -2.17332e-10) (-4.87912e-10 -3.43093e-11 -2.11576e-10) (-5.89319e-11 -1.27115e-11 -5.71333e-11) (-5.7844e-13 -4.54789e-12 -5.40473e-12) (4.76872e-12 -6.61329e-12 1.21303e-12) (6.69273e-12 -5.33441e-12 6.31403e-12) (3.83055e-12 -3.49737e-13 3.90724e-12) (1.99156e-12 1.30112e-12 1.40498e-12) (1.09873e-12 2.53015e-12 1.1121e-12) (-1.44017e-12 5.0544e-12 2.11124e-12) (-4.869e-12 5.61861e-12 1.1297e-12) (-7.13698e-13 1.30494e-12 -1.3277e-12) (1.60626e-11 3.2001e-12 -1.42491e-11) (7.00376e-11 1.27542e-11 -3.11791e-11) (5.02099e-11 2.37367e-11 -4.92565e-12) (2.63351e-11 3.53355e-11 1.03029e-11) (5.05196e-11 5.4644e-11 1.22105e-12) (3.78973e-10 5.28389e-11 -1.08995e-10) (2.5777e-09 -7.35536e-10 -8.4417e-10) (1.70124e-09 -1.09162e-09 -1.11401e-09) (-9.80831e-10 -4.68676e-10 -9.60031e-10) (-9.83667e-09 -2.96684e-10 -2.51316e-09) (-4.74522e-09 -1.44941e-11 3.99676e-10) (-6.11531e-11 2.98644e-11 6.24253e-10) (2.42203e-09 6.21815e-10 2.30788e-09) (1.29933e-09 8.06934e-10 1.10372e-09) (-1.10369e-10 1.20672e-10 7.38148e-11) (-1.16153e-09 -4.34694e-10 -9.44527e-10) (-8.50343e-10 -2.21428e-09 -3.75619e-09) (-5.70277e-10 -1.09534e-09 -2.15402e-09) (-4.86524e-10 1.18258e-11 -4.66611e-10) (-6.62608e-10 3.47736e-10 -1.51938e-10) (-9.11667e-10 4.444e-10 2.35239e-11) (-3.79132e-10 9.30619e-11 1.15776e-10) (2.43957e-10 -1.35141e-10 3.62352e-10) (1.17694e-09 -4.66216e-10 1.50553e-09) (6.31797e-10 -1.368e-10 1.23656e-09) (-8.07034e-11 6.99729e-11 4.63638e-10) (-5.29477e-10 9.8783e-11 3.22014e-10) (-1.04169e-09 2.24487e-11 1.49267e-10) (-7.34493e-10 -5.78608e-11 -1.03515e-10) (-2.35307e-10 -3.30839e-11 -1.19824e-10) (-3.42525e-11 -1.02618e-11 -4.0356e-11) (-6.08456e-13 -3.05069e-12 -4.6415e-12) (1.06679e-12 -2.15512e-12 -6.74906e-14) (7.02296e-13 -9.66423e-13 6.78896e-13) (1.80676e-13 -1.32999e-14 9.92541e-14) (1.77116e-13 2.33547e-13 2.14605e-14) (6.9416e-14 1.02424e-12 6.60588e-13) (-1.34077e-12 4.3809e-12 5.26204e-12) (-1.20401e-12 5.0718e-12 7.24656e-12) (2.53676e-12 2.29899e-12 2.25246e-12) (2.55476e-11 7.658e-12 -4.0895e-12) (6.7515e-11 2.32218e-11 -2.26916e-11) (6.02454e-11 3.71045e-11 -2.00234e-11) (7.7955e-11 6.18721e-11 -2.40194e-11) (2.80799e-10 1.09584e-10 -9.09209e-11) (1.27051e-09 -4.77692e-11 -3.95054e-10) (2.57889e-09 -9.05545e-10 -9.17046e-10) (7.58307e-11 -2.87315e-10 -3.09708e-10) (-5.70276e-09 -6.22858e-10 -1.92991e-09) (-1.23621e-08 7.44146e-11 -1.13665e-09) (-1.70304e-09 -2.46654e-11 7.89817e-10) (2.72835e-10 -5.36757e-12 9.56459e-10) (7.78946e-10 2.06854e-10 9.74311e-10) (1.22492e-10 1.80902e-10 1.98163e-10) (-4.46495e-11 4.29315e-11 -2.85139e-11) (-1.27265e-10 -3.3763e-10 -1.04839e-09) (-1.22353e-10 -1.17432e-09 -2.37149e-09) (-6.44032e-10 -4.34068e-10 -1.03995e-09) (-7.9738e-10 1.16297e-10 -3.38766e-10) (-8.67635e-10 3.77421e-10 -4.46296e-11) (-5.06695e-10 2.29316e-10 5.92112e-11) (-3.88959e-11 9.24413e-12 3.54281e-11) (2.83455e-10 -1.23744e-10 3.58398e-10) (6.39616e-10 -2.50787e-10 9.65721e-10) (2.54756e-10 -5.41896e-11 6.97913e-10) (-7.2339e-11 4.59889e-11 2.96226e-10) (-2.47754e-10 4.51628e-11 1.75824e-10) (-3.6256e-10 -1.09156e-12 6.76901e-11) (-2.41436e-10 -3.06965e-11 -4.69563e-11) (-8.62539e-11 -1.83403e-11 -6.09369e-11) (-1.34848e-11 -5.8537e-12 -2.43566e-11) (2.1976e-13 -2.01185e-12 -3.65806e-12) (6.19089e-13 -1.12452e-12 -3.62235e-13) (4.93615e-13 -4.42076e-13 2.42351e-14) (3.67258e-13 -1.68027e-14 -3.876e-14) (1.72939e-13 1.14615e-13 9.96921e-14) (3.5144e-13 1.04838e-12 2.85844e-12) (1.07078e-13 4.96319e-12 1.50748e-11) (3.0232e-12 7.1282e-12 1.84245e-11) (8.966e-12 5.74112e-12 8.12942e-12) (3.55257e-11 1.37696e-11 -3.53987e-12) (1.08259e-10 4.12824e-11 -4.26133e-11) (2.03345e-10 8.37833e-11 -8.89219e-11) (4.17049e-10 1.45927e-10 -1.57165e-10) (9.09947e-10 1.51095e-10 -2.84138e-10) (1.87414e-09 -2.01654e-10 -5.26729e-10) (7.49431e-10 -3.6761e-10 -3.19359e-10) (-5.19384e-10 -2.60642e-10 -3.27701e-10) (-9.59796e-09 -3.54956e-10 -1.90893e-09) (-6.90696e-09 6.73616e-11 2.48888e-10) (-3.50991e-10 -2.78287e-11 4.77739e-10) (2.58055e-10 -2.23624e-11 6.7017e-10) (1.76014e-10 6.25561e-11 3.15527e-10) (1.65629e-11 4.47121e-11 3.41762e-11) (1.60142e-11 2.7192e-11 -7.17949e-11) (2.18392e-10 -2.80565e-10 -1.03155e-09) (-1.65522e-10 -5.21499e-10 -1.19413e-09) (-5.73376e-10 -1.83994e-10 -5.75763e-10) (-7.11461e-10 1.24087e-10 -2.01656e-10) (-5.22195e-10 2.08868e-10 -5.97803e-12) (-1.17642e-10 5.63439e-11 2.19514e-11) (3.69546e-12 -8.77649e-13 1.78446e-11) (2.30348e-10 -8.44063e-11 2.95549e-10) (3.46266e-10 -1.30268e-10 6.33179e-10) (1.32623e-10 -2.50836e-11 4.57489e-10) (-3.33609e-11 2.76364e-11 1.99924e-10) (-8.33579e-11 1.7032e-11 8.48026e-11) (-9.50732e-11 -2.62512e-12 2.39685e-11) (-6.80158e-11 -1.22078e-11 -2.14325e-11) (-2.9767e-11 -8.9446e-12 -3.22885e-11) (-4.01206e-12 -3.39711e-12 -1.56306e-11) (5.28835e-13 -1.46278e-12 -3.05683e-12) (7.50261e-13 -8.34727e-13 -5.17089e-13) (1.30247e-12 -5.76996e-13 -1.77306e-13) (1.27245e-12 -8.24474e-14 9.70434e-14) (7.50595e-13 7.28902e-14 1.10896e-12) (2.07585e-12 8.71743e-13 1.14456e-11) (6.61442e-12 4.43587e-12 2.95759e-11) (1.51959e-11 8.38876e-12 2.8394e-11) (3.32993e-11 1.25282e-11 1.55782e-11) (1.25332e-10 3.59183e-11 -1.55332e-11) (3.96441e-10 9.79126e-11 -1.27598e-10) (8.73518e-10 1.87838e-10 -2.88771e-10) (1.37029e-09 2.54717e-10 -3.74482e-10) (1.80611e-09 1.54664e-10 -3.87936e-10) (1.75872e-09 -1.76434e-10 -3.01728e-10) (2.4025e-10 -1.24102e-10 -9.1999e-11) (-6.5919e-10 -1.7271e-10 -2.93127e-10) (-7.10791e-09 -3.59358e-11 -1.01661e-09) (-2.25723e-09 5.60026e-12 4.61212e-10) (-6.15977e-11 -2.42366e-11 3.25774e-10) (1.31184e-10 -1.54526e-11 3.71086e-10) (5.40484e-11 2.06858e-11 1.20164e-10) (1.54093e-11 1.53732e-11 6.57059e-12) (1.02815e-10 2.64088e-11 -1.40459e-10) (2.02412e-10 -1.59955e-10 -6.81216e-10) (-1.51166e-10 -2.33805e-10 -6.60492e-10) (-3.92331e-10 -7.67968e-11 -3.67179e-10) (-3.52418e-10 6.58832e-11 -1.21808e-10) (-1.35882e-10 5.74253e-11 -1.45552e-11) (-4.99121e-12 4.22808e-12 1.55565e-12) (2.73857e-11 -4.57113e-12 2.83791e-11) (1.00637e-10 -3.53858e-11 1.61576e-10) (9.14421e-11 -5.20287e-11 3.36684e-10) (3.59992e-12 -1.09081e-11 2.83318e-10) (-4.81904e-11 1.8016e-11 1.51565e-10) (-4.7941e-11 8.72845e-12 5.38451e-11) (-3.54145e-11 -8.27294e-13 9.31336e-12) (-2.74699e-11 -4.57594e-12 -1.33269e-11) (-1.49945e-11 -4.12771e-12 -2.25148e-11) (-3.21748e-12 -1.94091e-12 -1.31465e-11) (-7.02314e-14 -7.77391e-13 -2.54374e-12) (2.78977e-13 -2.73995e-13 -2.85514e-13) (8.80878e-13 -2.38956e-13 2.24745e-14) (9.02797e-13 -3.72556e-14 6.92513e-13) (1.3994e-13 -2.11304e-13 6.62322e-12) (-2.62708e-12 -4.93664e-13 3.47377e-11) (8.44545e-12 3.18108e-12 5.33439e-11) (3.56941e-11 1.022e-11 4.66066e-11) (1.35642e-10 2.84944e-11 4.05324e-11) (5.86016e-10 9.24385e-11 -3.62835e-11) (1.82555e-09 2.26114e-10 -3.31872e-10) (3.85528e-09 4.06418e-10 -7.08017e-10) (5.77447e-09 5.30966e-10 -8.45625e-10) (7.40336e-09 3.581e-10 -7.40571e-10) (6.4558e-09 -2.21511e-10 -5.03368e-10) (1.14107e-09 -2.13498e-10 -2.63029e-10) (-5.8466e-10 -7.26776e-11 -2.88564e-10) (-4.6388e-09 1.16493e-10 -3.81034e-10) (-5.37869e-10 -3.03291e-12 2.67603e-10) (-1.19101e-11 -1.76513e-11 2.35973e-10) (3.8406e-11 -6.59638e-12 2.0899e-10) (2.30189e-11 6.59114e-12 5.90442e-11) (2.2467e-11 9.51354e-12 2.0666e-12) (1.16407e-10 1.59587e-11 -1.27893e-10) (9.73462e-11 -6.8533e-11 -4.05406e-10) (-1.81235e-10 -1.09886e-10 -4.61642e-10) (-3.60227e-10 -3.47019e-11 -3.35401e-10) (-1.78119e-10 3.08225e-11 -1.11425e-10) (-1.9249e-11 1.0722e-11 -1.49168e-11) (1.38458e-12 8.5961e-13 -5.86853e-13) (3.28855e-11 -3.59624e-12 2.12547e-11) (1.31555e-11 -4.35817e-12 2.36033e-11) (-1.30277e-11 -1.0585e-11 9.04644e-11) (-6.83808e-11 -4.15201e-12 1.38919e-10) (-7.34707e-11 9.5623e-12 1.06965e-10) (-3.34245e-11 4.21909e-12 3.63834e-11) (-9.98502e-12 8.60698e-14 4.46439e-12) (-5.6148e-12 -6.99309e-13 -3.41798e-12) (-4.66958e-12 -9.25571e-13 -9.40865e-12) (-1.6981e-12 -4.79807e-13 -7.03759e-12) (-1.25303e-13 -1.79866e-13 -1.2488e-12) (3.43835e-14 -2.59401e-14 -3.98731e-14) (1.51168e-13 -2.79695e-14 1.13233e-13) (4.36328e-14 -2.26345e-15 1.37658e-12) (-4.99854e-12 -4.69341e-13 1.28242e-11) (-1.73821e-11 -1.67681e-12 4.25589e-11) (-7.2646e-12 6.04123e-13 4.62298e-11) (2.22044e-11 4.13099e-12 3.29556e-11) (2.19066e-10 2.17677e-11 4.71666e-11) (1.35928e-09 8.92267e-11 -8.31581e-11) (4.70709e-09 2.26211e-10 -6.75042e-10) (1.04762e-08 4.30809e-10 -1.61086e-09) (1.72485e-08 5.58577e-10 -2.35321e-09) (2.18949e-08 2.94293e-10 -2.45487e-09) (1.36868e-08 -3.73259e-10 -1.82265e-09) (4.9692e-10 -5.60301e-11 -2.95576e-10) (-3.09341e-09 7.02232e-11 -9.1403e-10) (-1.54922e-09 8.34654e-11 -7.73713e-11) (-4.64833e-11 -6.78859e-13 4.70001e-11) (-9.05613e-12 -8.65196e-12 1.15163e-10) (-5.27028e-12 -5.09679e-12 1.35833e-10) (5.98539e-12 1.06926e-12 5.36373e-11) (1.01462e-11 2.99834e-12 6.62511e-12) (2.77222e-11 4.1639e-12 -2.26726e-11) (6.36139e-12 -1.00572e-11 -1.16131e-10) (-1.7736e-10 -3.53271e-11 -2.56169e-10) (-3.44919e-10 -1.82056e-11 -2.98222e-10) (-1.40944e-10 1.1141e-11 -1.37165e-10) (-1.1208e-11 5.81375e-12 -3.4696e-11) (9.359e-12 2.12923e-12 -1.27305e-11) (1.39692e-11 -3.1399e-13 -3.88125e-13) (6.47864e-12 -1.31773e-13 -7.26849e-12) (-2.14961e-14 -3.12302e-14 -8.84205e-14) (-6.93536e-12 -5.01502e-13 3.84335e-12) (-1.48773e-11 2.54659e-13 1.20414e-11) (-6.05442e-12 3.13136e-13 7.88641e-12) (-1.23871e-12 6.03894e-14 2.59383e-12) (-1.18004e-13 -9.31997e-15 1.19882e-13) (-7.92732e-14 -1.21863e-14 -1.0593e-13) (-2.39547e-14 -1.57827e-14 -3.65996e-13) (8.07407e-14 -1.47584e-14 -1.85153e-13) (5.98327e-14 -1.0471e-14 -4.47908e-14) (2.12647e-14 -3.57253e-15 -1.51005e-15) (5.70466e-15 -2.11705e-15 1.76838e-14) (-1.11591e-13 -2.21779e-14 2.94199e-13) (-1.21934e-12 -1.70499e-13 2.40337e-12) (-1.95007e-12 -1.77924e-13 5.24489e-12) (1.32939e-12 5.09028e-14 4.97591e-12) (2.38504e-11 8.96206e-13 9.2058e-12) (1.98524e-10 5.18423e-12 -3.60583e-12) (7.50152e-10 1.24824e-11 -1.23486e-10) (1.69147e-09 2.19915e-11 -3.74054e-10) (2.70337e-09 1.40282e-11 -6.18011e-10) (2.69653e-09 -1.75311e-11 -6.36129e-10) (6.73248e-10 -2.02291e-11 -2.80561e-10) (-1.1086e-10 1.82357e-12 -1.13705e-10) (-5.39943e-10 9.18241e-12 -2.24841e-10) (-3.58623e-11 7.84176e-13 -2.12922e-11) (-9.30475e-14 5.98712e-15 -1.57924e-13) (-4.77851e-13 -2.85382e-13 2.84924e-12) (-5.79264e-12 -1.28012e-12 2.07279e-11) (-8.96644e-12 -1.33025e-12 3.09839e-11) (4.34386e-13 7.62392e-13 2.22019e-11) (7.3275e-12 1.19438e-12 9.60394e-12) (2.01977e-12 1.20858e-13 4.78226e-13) (-2.97463e-12 -5.46611e-13 -3.26693e-12) (-4.55072e-11 -3.96089e-12 -3.15021e-11) (-4.83999e-11 -2.04043e-12 -4.09173e-11) (-1.43996e-11 3.11828e-13 -2.68489e-11) (2.94663e-12 1.0965e-12 -2.59173e-11) (1.46991e-11 1.0374e-12 -2.52138e-11) (2.35074e-10 -1.36731e-10 -1.3426e-10) (2.61452e-10 -1.10207e-10 -2.70176e-10) (9.22117e-11 -2.58467e-11 -1.39902e-10) (-7.87491e-13 2.00209e-12 -9.06895e-12) (-6.47919e-11 2.53848e-11 2.27313e-11) (-2.93753e-10 9.57534e-11 1.76433e-10) (-3.24123e-10 1.12451e-10 2.0722e-10) (-1.06803e-10 6.01926e-11 5.22913e-11) (-1.10626e-11 2.56094e-11 -1.22803e-11) (4.24182e-11 5.99098e-11 -1.11154e-10) (1.31541e-10 4.345e-11 -2.27156e-10) (1.02287e-10 -2.22801e-11 -1.33922e-10) (2.40871e-11 -1.90181e-11 -1.54488e-11) (5.28044e-14 -5.00967e-12 1.18942e-11) (-1.24369e-10 6.01291e-11 1.86965e-10) (-7.53554e-10 3.72405e-10 7.05981e-10) (-1.51972e-09 4.32494e-10 1.15454e-09) (-1.34676e-09 -5.33944e-11 1.01842e-09) (-5.65875e-10 -3.41884e-10 4.95307e-10) (-8.59226e-11 -2.52914e-10 9.90905e-11) (9.20256e-11 -2.03855e-10 -9.32328e-11) (4.30541e-10 -1.77376e-10 -5.36466e-10) (8.07587e-10 1.93775e-10 -1.14808e-09) (6.21465e-10 4.46151e-10 -1.04157e-09) (1.91523e-10 1.96105e-10 -3.93259e-10) (1.32952e-11 3.38088e-12 -3.20114e-11) (-6.05554e-12 -5.07971e-11 1.63418e-11) (-1.41341e-10 -3.78938e-10 3.50574e-10) (-4.9033e-10 -6.30831e-10 1.1383e-09) (-7.51945e-10 -2.71569e-10 1.61563e-09) (-5.59982e-10 2.69434e-10 1.03497e-09) (-2.19309e-10 3.83142e-10 2.63175e-10) (-6.22902e-11 4.48021e-10 -1.18796e-10) (1.03022e-10 5.01882e-10 -5.00052e-10) (2.10066e-10 2.42746e-10 -5.04232e-10) (1.46483e-10 7.50797e-12 -1.78701e-10) (1.01183e-10 -5.6445e-11 -2.13848e-11) (1.47175e-10 -1.29137e-10 7.22608e-11) (1.68326e-10 -1.58131e-10 9.8964e-11) (1.64354e-10 -1.30228e-10 1.11992e-11) (1.8628e-10 -2.66538e-10 -4.4505e-10) (1.32524e-11 -8.86506e-11 -1.45555e-10) (-1.03005e-11 -1.38868e-11 -6.54399e-12) (-3.45842e-11 -1.20003e-11 3.77472e-11) (-7.2307e-11 1.53558e-11 1.22722e-10) (-5.69003e-11 6.40282e-11 1.26619e-10) (-1.38073e-11 1.0256e-10 7.78961e-11) (3.69155e-11 1.6254e-10 1.7448e-11) (1.19726e-10 2.31729e-10 -1.14752e-10) (2.35312e-10 2.23474e-10 -3.38431e-10) (2.90196e-10 7.04905e-11 -4.5624e-10) (1.73364e-10 -6.21907e-11 -2.55832e-10) (3.38554e-11 -3.50454e-11 -3.56535e-11) (6.59338e-13 -3.55555e-12 4.90201e-12) (-3.24457e-11 3.95905e-11 8.89778e-11) (-1.49043e-10 2.40204e-10 2.86251e-10) (-2.24342e-10 2.95842e-10 3.42219e-10) (-1.42125e-10 8.7331e-11 2.0202e-10) (-4.78391e-11 -2.8281e-11 7.2072e-11) (-1.3411e-11 -5.30285e-11 1.24618e-11) (-4.63755e-12 -7.1612e-11 -4.81766e-11) (-1.61794e-11 -6.94825e-11 -1.4713e-10) (-3.85115e-11 -2.74022e-11 -2.27139e-10) (-3.07474e-11 9.68393e-12 -2.34092e-10) (1.49766e-12 3.40888e-12 -1.63029e-10) (9.33943e-12 -1.3843e-11 -4.96091e-11) (-1.97649e-13 -1.51549e-11 3.31129e-12) (-1.34904e-10 -1.85788e-10 3.41876e-10) (-9.79882e-10 -6.12221e-10 1.95153e-09) (-1.97497e-09 -6.67572e-10 3.10396e-09) (-1.54347e-09 -1.67118e-10 1.73296e-09) (-4.93237e-10 1.17125e-10 3.08738e-10) (-9.26173e-11 1.20491e-10 -2.10093e-11) (3.73797e-11 2.14916e-10 -1.49654e-10) (1.7844e-10 2.06684e-10 -1.94641e-10) (1.77148e-10 7.32386e-11 -1.00613e-10) (1.55954e-10 -2.1373e-11 -4.31815e-11) (2.16351e-10 -1.32208e-10 -6.26323e-11) (3.25622e-10 -3.00811e-10 -2.13312e-10) (3.58319e-10 -3.8996e-10 -4.59272e-10) (2.20388e-10 -4.52746e-10 -8.70872e-10) (-3.68334e-11 -3.83306e-10 -2.53504e-10) (-2.77682e-10 -4.82222e-10 8.63423e-11) (-7.60697e-10 -5.59947e-10 4.80714e-10) (-7.57561e-10 -2.06301e-10 4.64623e-10) (-1.54216e-10 4.36323e-11 1.06415e-10) (4.88656e-11 1.32636e-10 1.70066e-11) (8.27852e-10 8.73646e-10 -2.1971e-10) (1.80404e-09 1.5613e-09 -7.80652e-10) (1.51766e-09 1.11844e-09 -9.36546e-10) (6.77959e-10 3.4995e-10 -5.41428e-10) (1.83758e-10 2.16022e-11 -1.55647e-10) (4.79898e-11 -2.45816e-11 -2.42561e-11) (3.25749e-11 -2.98776e-11 8.83211e-12) (3.2981e-11 -1.97507e-11 3.22203e-11) (3.24436e-11 1.03544e-11 5.42417e-11) (2.29767e-11 5.4292e-11 7.56482e-11) (-6.8615e-13 5.16037e-11 5.3747e-11) (-5.79826e-12 8.57101e-12 1.0137e-11) (-8.11954e-12 -3.55016e-12 -7.0252e-13) (-5.91191e-11 -4.48678e-11 -3.12536e-11) (-1.68974e-10 -9.86639e-11 -8.73724e-11) (-2.38755e-10 -9.44441e-11 -1.24564e-10) (-1.56187e-10 -5.79845e-11 -1.22339e-10) (-3.93319e-11 -4.1462e-11 -8.20309e-11) (6.76581e-12 -3.72863e-11 -3.477e-11) (3.11148e-12 -3.11728e-11 1.09638e-11) (-1.21407e-10 -1.11845e-10 2.7231e-10) (-7.96539e-10 -2.12382e-10 1.22732e-09) (-1.34808e-09 -2.24904e-10 1.57373e-09) (-9.59181e-10 -1.33907e-10 7.22075e-10) (-4.24883e-10 -9.17683e-12 1.35813e-10) (-1.56225e-10 5.17703e-11 1.0732e-11) (-5.08734e-11 7.5455e-11 1.72409e-11) (1.06993e-11 1.1704e-10 5.07011e-11) (8.36491e-11 1.14853e-10 6.25399e-11) (1.20576e-10 5.42684e-11 1.47774e-11) (2.09762e-10 -7.15801e-12 -1.08152e-10) (4.35375e-10 -1.53179e-10 -5.5631e-10) (5.09393e-10 -3.62321e-10 -1.13452e-09) (7.41655e-11 -3.22732e-10 -3.17248e-10) (-4.18482e-10 -7.24334e-10 -2.10572e-11) (-2.98831e-09 -2.16055e-09 1.0285e-09) (-6.79748e-09 -2.83552e-09 2.35204e-09) (-4.62088e-09 -1.3761e-09 1.21376e-09) (-4.12952e-10 -1.02441e-10 -1.43124e-11) (1.70075e-10 1.18322e-10 -2.07361e-10) (2.39579e-09 1.67608e-09 -1.40781e-09) (4.58961e-09 3.63277e-09 -2.02266e-09) (4.04397e-09 3.04862e-09 -1.49994e-09) (2.09391e-09 1.04042e-09 -7.1577e-10) (7.64027e-10 -3.94216e-11 -2.55925e-10) (2.33191e-10 -2.73465e-10 -5.10963e-11) (-2.65953e-11 -2.75111e-10 1.11562e-10) (-2.29923e-10 -1.65262e-10 3.70747e-10) (-2.32286e-10 1.40934e-10 5.2077e-10) (-4.65143e-11 3.00533e-10 3.56368e-10) (4.67262e-11 1.99186e-10 1.21794e-10) (2.91347e-11 5.98825e-11 8.1611e-12) (6.01392e-12 1.13007e-11 -9.37925e-12) (-5.88969e-12 4.29683e-12 -1.8855e-11) (-4.18201e-11 -1.92148e-12 -4.3811e-11) (-8.00643e-11 -2.44646e-11 -6.58083e-11) (-5.30183e-11 -5.95144e-11 -6.41588e-11) (-6.83427e-12 -1.04811e-10 -5.9395e-11) (2.17384e-12 -9.16872e-11 -1.85224e-11) (-6.14601e-11 -6.61582e-11 4.54489e-11) (-6.02759e-10 -1.36722e-10 5.16746e-10) (-1.49162e-09 -2.12307e-10 1.50125e-09) (-1.17002e-09 -2.40357e-10 1.30266e-09) (-3.41159e-10 -7.38798e-11 3.22119e-10) (-4.62843e-11 7.5247e-12 1.12059e-11) (-2.74218e-11 4.28206e-11 -2.31317e-11) (-8.96624e-12 8.85399e-11 -2.66321e-11) (2.14688e-11 8.45602e-11 -5.04311e-12) (4.60896e-11 5.7022e-11 -7.35621e-12) (1.00984e-10 4.80001e-11 -6.31036e-11) (2.75263e-10 3.85811e-11 -3.12913e-10) (4.85579e-10 -4.67433e-11 -7.54992e-10) (3.95335e-10 -2.26128e-10 -7.6464e-10) (-3.50978e-10 -2.9747e-10 -6.08065e-11) (-2.56877e-09 -2.10549e-09 6.62605e-10) (-6.24732e-09 -4.56314e-09 2.55337e-09) (-7.50109e-09 -4.0542e-09 3.28053e-09) (-3.51693e-09 -1.61882e-09 1.11606e-09) (-2.40726e-10 -2.2323e-10 -1.83238e-10) (9.48647e-10 -1.04408e-10 -1.87785e-09) (3.41191e-09 1.3344e-09 -4.24735e-09) (3.39592e-09 2.24102e-09 -3.06305e-09) (2.04996e-09 1.47127e-09 -1.13408e-09) (5.85558e-10 3.804e-10 -1.2154e-10) (3.11055e-12 3.12624e-11 4.83548e-11) (-1.17986e-09 3.78883e-11 1.31321e-09) (-3.67264e-09 -5.58435e-10 4.83618e-09) (-2.47303e-09 -6.22548e-10 4.89511e-09) (-3.62757e-10 1.46515e-10 1.60484e-09) (1.38323e-10 3.38994e-10 2.82983e-10) (5.56607e-10 8.24824e-10 -1.41549e-10) (8.54984e-10 9.73429e-10 -6.61026e-10) (7.25816e-10 6.25146e-10 -8.12502e-10) (4.79558e-10 2.88332e-10 -7.04591e-10) (2.9778e-10 7.08255e-11 -5.27997e-10) (1.97405e-10 -8.96118e-11 -3.65558e-10) (1.5586e-10 -2.73833e-10 -2.74098e-10) (3.74901e-11 -4.67203e-10 -1.32608e-10) (-3.06725e-10 -5.66255e-10 1.85705e-10) (-1.42813e-09 -6.90322e-10 1.28159e-09) (-2.72482e-09 -3.29222e-10 2.98491e-09) (-1.81749e-09 -1.53342e-10 2.48609e-09) (-4.15523e-10 -7.9628e-11 8.01669e-10) (-1.37256e-11 1.438e-11 8.0051e-11) (2.81455e-11 6.74133e-11 4.37419e-12) (1.21817e-10 2.76762e-10 -1.15774e-10) (1.92347e-10 3.52854e-10 -2.68327e-10) (2.53075e-10 2.49403e-10 -3.82734e-10) (3.82854e-10 1.25487e-10 -5.63827e-10) (5.13001e-10 1.2477e-11 -7.58876e-10) (4.38977e-10 -2.05289e-11 -7.04912e-10) (1.7263e-10 -1.1723e-11 -3.69546e-10) (-9.02085e-12 -3.28145e-11 -9.98924e-11) (-6.3628e-10 -4.37605e-10 3.81074e-11) (-3.33476e-09 -3.64251e-09 7.28277e-10) (-7.02003e-09 -6.65693e-09 1.82535e-09) (-4.81967e-09 -3.112e-09 1.77407e-09) (-1.00778e-09 -4.84461e-10 4.65545e-10) (-1.1382e-12 -4.69066e-11 -4.76257e-11) (1.12165e-09 -3.22062e-10 -1.76774e-09) (2.25802e-09 1.35905e-10 -3.5344e-09) (8.66141e-10 5.51148e-10 -1.57279e-09) (-2.69617e-11 3.79862e-10 -1.90709e-10) (-9.44109e-10 1.21867e-09 7.35271e-10) (-1.81812e-09 1.45939e-09 3.57923e-09) (-1.32291e-09 -5.71118e-10 6.71785e-09) (-1.81736e-09 -2.50426e-09 6.31511e-09) (-2.50332e-09 -1.79706e-09 3.14026e-09) (-9.32381e-10 -2.14823e-10 6.53856e-10) (-1.68565e-11 1.47525e-10 4.17034e-11) (1.42743e-09 1.95046e-09 -3.8816e-10) (4.31593e-09 4.56142e-09 -2.10986e-09) (4.80234e-09 4.21479e-09 -3.62033e-09) (3.95886e-09 2.33738e-09 -4.02906e-09) (3.06461e-09 5.73454e-10 -3.39095e-09) (1.91316e-09 -5.2554e-10 -1.83758e-09) (6.23304e-10 -6.48694e-10 -4.24451e-10) (-1.08773e-10 -4.89201e-10 1.70245e-10) (-2.78109e-09 -1.24478e-09 2.11188e-09) (-7.65556e-09 -1.54024e-09 5.60805e-09) (-4.68994e-09 -1.47978e-09 4.33344e-09) (-7.7895e-10 -7.70525e-10 1.4429e-09) (6.53705e-11 -1.97765e-10 3.64287e-10) (1.28318e-10 2.22302e-11 1.07248e-10) (3.50772e-10 3.53007e-10 3.63592e-11) (8.60856e-10 1.10966e-09 -3.23678e-10) (1.21101e-09 1.31897e-09 -8.98154e-10) (1.17088e-09 7.4866e-10 -1.22151e-09) (9.06954e-10 1.56473e-10 -1.25573e-09) (4.46533e-10 -7.17162e-11 -8.50295e-10) (8.32782e-11 -4.3528e-12 -3.16057e-10) (-3.08646e-11 2.86774e-11 -9.09822e-11) (-1.12619e-10 9.40486e-12 -4.84537e-11) (-1.86136e-09 -1.24712e-09 2.36523e-11) (-1.19134e-08 -9.75734e-09 -4.37844e-10) (-1.39109e-08 -1.14343e-08 -8.40683e-10) (-1.71017e-09 -1.39808e-09 1.34037e-10) (-1.41256e-12 1.04204e-12 2.80367e-11) (1.05897e-10 3.41512e-11 1.02708e-11) (3.47671e-10 1.20402e-11 -2.78997e-10) (2.81158e-10 1.01225e-10 -4.95358e-10) (-3.77757e-11 2.60438e-10 -1.9574e-10) (-2.37498e-10 6.40816e-10 2.75793e-10) (2.9021e-10 7.70163e-10 1.90832e-09) (1.06285e-09 -3.59899e-10 4.20183e-09) (-1.40009e-09 -1.27118e-09 3.83721e-09) (-9.30752e-09 -2.34709e-09 5.26858e-09) (-1.20514e-08 -2.39727e-09 3.21889e-09) (-2.33617e-09 -5.77342e-10 1.85319e-10) (-1.13789e-11 1.78122e-11 -1.42981e-11) (1.08383e-09 1.4315e-09 -2.89001e-10) (6.00417e-09 6.36644e-09 -1.73481e-09) (1.11934e-08 8.84534e-09 -5.2489e-09) (1.15238e-08 5.60955e-09 -7.39144e-09) (7.64173e-09 1.16026e-09 -5.35105e-09) (2.35663e-09 -5.58695e-10 -1.3801e-09) (5.54933e-11 -1.68646e-10 2.69386e-11) (-2.66494e-09 -1.02221e-09 1.68272e-09) (-1.07406e-08 -2.45923e-09 5.54207e-09) (-6.97537e-09 -2.79477e-09 3.83764e-09) (-1.13714e-09 -1.27464e-09 9.73047e-10) (2.02891e-11 -2.97469e-10 1.931e-10) (1.35772e-10 -5.64459e-11 8.53264e-11) (2.45564e-10 8.62301e-11 1.0447e-10) (3.84304e-10 3.32758e-10 1.04191e-10) (7.17773e-10 7.51304e-10 -4.79135e-11) (1.41754e-09 1.14671e-09 -5.39211e-10) (1.99117e-09 9.97027e-10 -1.18267e-09) (1.43671e-09 4.09017e-10 -1.21414e-09) (3.07673e-10 8.32614e-11 -4.78167e-10) (-3.8089e-11 4.64744e-11 -9.66093e-11) (-2.2019e-10 1.21067e-10 -5.38737e-11) (-3.24059e-10 2.8136e-11 -2.76119e-12) (-9.4336e-09 -3.61875e-09 -4.1539e-10) (-3.34687e-08 -2.27111e-08 -4.60064e-09) (-1.98348e-08 -1.95152e-08 -4.93225e-09) (-1.05451e-09 -1.0375e-09 -2.01835e-10) (1.14705e-10 3.94127e-10 2.70716e-10) (6.45672e-10 1.07607e-09 6.01889e-10) (3.28896e-10 2.98764e-10 4.69194e-11) (2.83869e-10 1.7013e-10 -6.39766e-11) (6.4043e-10 2.87251e-10 1.22385e-10) (2.18607e-09 3.36623e-10 1.19031e-09) (1.76369e-09 -1.7773e-10 1.58095e-09) (-2.92805e-10 -1.51282e-10 8.19411e-10) (-1.01308e-08 -2.78133e-10 4.22356e-09) (-2.03844e-08 -1.70973e-09 5.85742e-09) (-4.82457e-09 -1.98864e-09 9.20701e-10) (-1.07076e-10 -4.98702e-10 -2.39783e-10) (2.40228e-10 -8.62313e-11 -3.26602e-10) (3.69091e-10 6.0378e-10 -2.65978e-10) (1.73619e-09 3.59623e-09 -2.74233e-10) (5.62247e-09 7.10051e-09 -1.43836e-09) (8.48965e-09 5.88321e-09 -3.45846e-09) (5.45915e-09 1.7832e-09 -2.57992e-09) (7.72058e-10 2.79012e-11 -2.73069e-10) (-5.33544e-11 -3.24036e-11 5.42324e-11) (-1.72821e-09 -5.87013e-10 8.82032e-10) (-2.29335e-09 -1.54877e-09 9.66785e-10) (-1.24537e-09 -1.74868e-09 4.63972e-10) (-5.60989e-10 -9.34208e-10 1.20218e-10) (-9.59692e-11 -1.2084e-10 -1.84863e-12) (2.10594e-12 5.96473e-13 -9.87578e-14) (2.29163e-10 1.08726e-10 6.06271e-11) (6.17276e-10 3.31409e-10 2.38653e-10) (5.92189e-10 3.78338e-10 1.86067e-10) (5.40589e-10 3.05342e-10 -1.15937e-11) (8.2845e-10 2.94257e-10 -2.8084e-10) (9.932e-10 3.46856e-10 -5.59432e-10) (3.67389e-10 2.96799e-10 -3.59453e-10) (-3.45259e-11 2.21689e-10 -1.0757e-10) (-3.25876e-10 3.2927e-10 1.0521e-12) (-1.00558e-09 1.61391e-10 6.93708e-11) (-1.61438e-08 -5.21721e-09 -7.83344e-10) (-3.4298e-08 -3.0542e-08 -7.02785e-09) (-2.35837e-08 -2.91892e-08 -8.11684e-09) (-5.51044e-09 -2.67214e-09 -7.37691e-10) (-1.53489e-09 2.53251e-09 1.54796e-09) (1.14595e-09 4.88146e-09 3.76429e-09) (2.20515e-09 1.75268e-09 1.93272e-09) (2.86335e-09 6.28052e-10 9.51999e-10) (3.45977e-09 2.68366e-10 6.30407e-10) (1.81998e-09 2.52475e-11 3.86483e-10) (1.8971e-11 -3.69234e-12 1.96712e-11) (-2.80653e-09 7.81244e-11 5.11545e-10) (-1.27918e-08 -2.46997e-10 2.33249e-09) (-5.5063e-09 -1.61477e-09 1.23145e-09) (-2.08701e-10 -7.7841e-10 -5.59009e-11) (7.81333e-10 -9.07421e-10 -6.04882e-10) (5.40952e-10 -9.75952e-11 -4.33129e-10) (2.472e-10 4.41517e-10 -1.64341e-10) (4.47365e-10 2.22073e-09 1.07002e-10) (1.45508e-09 3.83216e-09 1.05573e-10) (2.66972e-09 3.24831e-09 -5.82425e-10) (1.81186e-09 1.14863e-09 -5.52657e-10) (3.10505e-10 5.00693e-11 -8.2601e-11) (6.62377e-11 -1.00284e-10 -2.0912e-11) (2.47912e-10 -6.9146e-10 -1.56362e-10) (5.04626e-10 -1.22004e-09 -2.55074e-10) (4.1115e-11 -4.92953e-10 1.20201e-12) (-2.72571e-10 -1.81718e-10 8.1828e-11) (-5.54013e-10 -3.0361e-11 7.91098e-11) (-1.25215e-10 3.96269e-11 1.24883e-11) (1.69072e-11 3.38895e-11 1.87043e-11) (2.58097e-10 1.63953e-10 1.38912e-10) (2.92991e-10 1.44114e-10 1.3115e-10) (1.25945e-10 2.76003e-11 2.62044e-11) (1.26784e-10 2.81699e-12 -2.32842e-11) (3.58566e-10 1.19838e-10 -1.69963e-10) (5.91828e-10 5.09703e-10 -3.84088e-10) (2.98002e-10 6.83634e-10 -1.93605e-10) (-1.30915e-10 5.98259e-10 3.16531e-11) (-1.83893e-09 6.16156e-10 1.87117e-10) (-9.05159e-09 -3.95042e-09 -6.90952e-10) (-1.90815e-08 -2.77103e-08 -6.32217e-09) (-2.40921e-08 -3.2053e-08 -8.97403e-09) (-1.80416e-08 -5.75886e-09 -2.02494e-09) (-6.69823e-09 4.82146e-09 2.69244e-09) (8.37652e-10 7.42254e-09 6.45487e-09) (6.23794e-09 4.9711e-09 7.38922e-09) (5.87061e-09 1.9152e-09 3.85374e-09) (2.59231e-09 4.80973e-10 8.96159e-10) (1.83215e-10 1.13931e-11 -4.52368e-13) (-4.44688e-10 -6.1447e-11 -1.41531e-10) (-6.95067e-09 -3.95002e-10 -4.84168e-10) (-6.84343e-09 -1.11164e-09 9.65198e-11) (-6.35739e-10 -7.25235e-10 -1.45468e-10) (5.1432e-10 -1.10899e-09 -5.47006e-10) (5.67552e-10 -6.28701e-10 -4.60154e-10) (7.11964e-11 -2.69234e-11 -6.19916e-11) (8.78333e-11 1.77341e-10 -4.66765e-11) (4.72537e-10 1.36556e-09 -4.75762e-11) (1.01827e-09 2.5674e-09 -2.83144e-11) (1.2111e-09 1.88863e-09 -2.21842e-10) (8.4467e-10 5.34957e-10 -2.91684e-10) (7.37288e-10 -1.60177e-10 -3.25896e-10) (1.38477e-09 -1.17629e-09 -6.49751e-10) (1.81131e-09 -1.81435e-09 -6.96462e-10) (9.03957e-10 -6.82637e-10 -2.13735e-10) (9.40526e-11 -3.19914e-11 -1.02517e-11) (-7.83625e-12 1.08187e-11 2.94866e-12) (-1.60476e-10 7.58057e-11 4.16583e-11) (-1.27745e-10 4.44086e-11 7.36952e-11) (-1.63691e-11 2.07963e-11 6.51189e-11) (2.89586e-11 2.82224e-11 5.44411e-11) (7.89417e-12 8.24715e-12 7.30153e-12) (-6.86714e-13 -6.94658e-13 2.3324e-13) (-2.39266e-12 -6.17649e-12 2.01063e-12) (2.91531e-11 1.18894e-11 -7.79881e-12) (6.36813e-10 5.16241e-10 -2.89376e-10) (1.16295e-09 1.39201e-09 -4.0906e-10) (2.65257e-10 1.22013e-09 -9.43018e-12) (-1.44479e-09 8.77212e-10 1.57012e-10) (-3.26162e-09 -2.97727e-09 -6.22427e-10) (-1.28844e-08 -2.59565e-08 -5.8462e-09) (-2.8685e-08 -2.88975e-08 -7.32716e-09) (-2.59199e-08 -5.88052e-09 -1.33413e-09) (-5.46543e-09 3.14175e-09 1.65664e-09) (1.45789e-09 5.38872e-09 4.06495e-09) (8.24798e-09 6.94458e-09 8.85412e-09) (7.4036e-09 3.55096e-09 6.21038e-09) (2.57065e-09 8.56131e-10 1.44154e-09) (7.74896e-11 1.60727e-11 2.09801e-12) (-8.33102e-10 -1.40512e-10 -3.5064e-10) (-5.87146e-09 -1.05607e-09 -1.24444e-09) (-2.65101e-09 -1.32091e-09 -8.86746e-10) (-1.26758e-10 -1.08078e-09 -8.05513e-10) (2.78245e-10 -7.54566e-10 -6.15911e-10) (-1.22467e-11 -7.10528e-11 -3.17803e-11) (-5.90928e-11 -1.40381e-11 1.70604e-11) (-6.49119e-12 1.72731e-11 -7.8386e-12) (4.39436e-10 6.56357e-10 -4.1444e-10) (1.59921e-09 2.12295e-09 -1.16455e-09) (1.50325e-09 1.59184e-09 -8.90979e-10) (9.16619e-10 3.93549e-10 -3.95737e-10) (7.61655e-10 -2.01658e-10 -1.50488e-10) (9.0716e-10 -7.19199e-10 1.0615e-10) (8.8716e-10 -7.83263e-10 2.96525e-10) (6.66657e-10 -2.94202e-10 1.0556e-10) (5.65679e-10 7.28778e-11 -1.41351e-10) (3.05926e-10 2.37805e-10 -2.0443e-10) (1.8209e-11 9.62328e-11 -3.9443e-11) (-2.19937e-11 2.82864e-11 2.58714e-11) (-2.65343e-11 1.12922e-11 9.71617e-11) (-5.59025e-12 3.71517e-12 3.72497e-11) (-1.15729e-11 2.87183e-13 5.08462e-12) (-1.4184e-10 -6.145e-11 4.86765e-11) (-2.12022e-10 -1.14022e-10 1.52089e-10) (-8.36523e-13 2.92439e-12 3.59268e-12) (5.32415e-10 5.31177e-10 -3.16638e-10) (1.51336e-09 1.80283e-09 -8.12981e-10) (4.66294e-10 1.66688e-09 -2.10538e-10) (-6.60135e-10 5.80757e-10 2.40518e-11) (-1.54793e-09 -3.41083e-09 -8.40829e-10) (-1.53993e-08 -2.43943e-08 -5.25816e-09) (-4.84329e-08 -2.8015e-08 -4.41821e-09) (-2.86108e-08 -4.4656e-09 2.46227e-09) (-1.25287e-09 8.12879e-10 7.07472e-10) (2.72111e-09 3.12915e-09 1.55105e-09) (8.57956e-09 6.31367e-09 4.95104e-09) (7.0254e-09 4.29336e-09 5.16266e-09) (2.39322e-09 1.14024e-09 1.63745e-09) (5.89857e-11 1.89422e-11 2.77178e-11) (-5.47201e-10 -1.56035e-10 -1.61689e-10) (-2.70056e-09 -1.05257e-09 -8.85148e-10) (-1.13874e-09 -1.30963e-09 -1.32148e-09) (-5.8957e-11 -1.23069e-09 -1.54471e-09) (-4.14703e-11 -2.04834e-10 -2.0521e-10) (-2.35726e-10 -5.40941e-11 1.51208e-10) (-7.38902e-10 -3.3188e-11 5.6714e-10) (-6.39579e-11 -3.31892e-12 3.25248e-12) (3.79629e-10 3.10731e-10 -7.88582e-10) (2.63877e-09 1.99586e-09 -3.20413e-09) (2.73173e-09 1.84958e-09 -2.40523e-09) (1.32957e-09 5.55e-10 -6.37107e-10) (5.07881e-10 -1.05462e-12 5.29536e-11) (4.17397e-10 -2.41123e-10 4.05484e-10) (4.07965e-10 -3.20073e-10 5.99377e-10) (3.3123e-10 -7.71761e-11 1.79497e-10) (6.98264e-10 1.59804e-10 -2.15842e-10) (1.02768e-09 5.39541e-10 -6.80767e-10) (3.26334e-10 2.82034e-10 -2.0395e-10) (1.65242e-11 1.66981e-11 1.07266e-11) (4.59894e-12 -1.57384e-11 4.79997e-11) (-5.6309e-12 -1.19387e-11 1.5604e-11) (-6.71476e-11 -1.33394e-11 1.87562e-11) (-6.42005e-10 -1.22783e-10 3.39915e-10) (-1.00645e-09 -1.5047e-10 7.75765e-10) (-7.63402e-11 4.13351e-11 4.98769e-11) (3.10467e-10 4.77277e-10 -3.45092e-10) (1.11669e-09 1.56884e-09 -1.0318e-09) (3.24186e-10 1.33354e-09 -4.12361e-10) (-1.17234e-10 1.21366e-10 -4.45229e-11) (-1.04862e-09 -4.03255e-09 -1.12542e-09) (-2.50376e-08 -2.21937e-08 -4.61474e-09) (-7.70704e-08 -2.591e-08 1.44076e-09) (-2.18635e-08 -3.40592e-09 6.68714e-09) (-7.26749e-11 1.66091e-10 5.87678e-10) (3.60365e-09 1.98604e-09 3.83712e-10) (8.38693e-09 5.07302e-09 -2.18892e-10) (6.46398e-09 3.97743e-09 1.22438e-09) (2.21466e-09 1.10413e-09 1.01543e-09) (4.26099e-11 1.80672e-11 8.56262e-11) (-8.82267e-10 -2.71014e-10 1.28726e-10) (-1.61553e-09 -8.98491e-10 -6.14863e-10) (-4.92012e-10 -1.29935e-09 -1.81953e-09) (4.58537e-11 -7.23208e-10 -1.1962e-09) (-3.77e-11 -2.85552e-11 -9.14695e-12) (-7.31847e-10 7.88663e-11 9.51606e-10) (-1.05685e-09 3.26852e-11 1.3942e-09) (-1.71052e-10 -3.25687e-11 6.07998e-11) (4.7823e-11 9.43485e-11 -8.29972e-10) (2.47326e-09 1.29911e-09 -4.69244e-09) (3.43121e-09 1.48105e-09 -3.8018e-09) (1.48085e-09 5.40621e-10 -7.77619e-10) (4.82682e-10 1.1881e-10 1.38023e-10) (4.07485e-10 -1.42557e-11 5.47953e-10) (3.38166e-10 -7.44331e-11 5.49618e-10) (2.72137e-10 2.68326e-13 1.31585e-10) (7.07082e-10 1.8328e-10 -2.00468e-10) (1.23292e-09 5.79235e-10 -5.88624e-10) (6.3049e-10 3.47669e-10 -1.92086e-10) (1.00233e-10 9.34002e-12 1.69014e-11) (1.36432e-11 -4.27726e-11 1.01444e-11) (-7.05813e-11 -5.12176e-11 -1.44601e-11) (-6.88986e-10 3.73607e-11 1.4669e-10) (-2.35271e-09 2.24841e-10 1.71675e-09) (-1.98518e-09 1.34048e-10 1.97839e-09) (-1.65224e-10 8.19726e-11 8.83483e-11) (1.46793e-10 3.65127e-10 -4.12054e-10) (6.28322e-10 1.0425e-09 -1.10628e-09) (2.09088e-10 6.98752e-10 -4.75736e-10) (3.05143e-12 -6.4963e-12 -4.30414e-11) (-1.6316e-09 -3.54698e-09 -1.15183e-09) (-4.52413e-08 -2.07867e-08 -3.99885e-09) (-8.19491e-08 -1.907e-08 8.59415e-09) (-1.0241e-08 -2.55418e-09 7.03642e-09) (7.49413e-10 1.11643e-11 1.86618e-09) (3.29011e-09 1.20153e-09 6.77432e-10) (7.43857e-09 3.51138e-09 -1.54969e-09) (7.09854e-09 3.39235e-09 -1.51831e-09) (1.54255e-09 7.73682e-10 8.6757e-11) (-7.03757e-11 3.07054e-11 1.06626e-10) (-1.43175e-09 -3.59022e-10 2.8011e-10) (-5.14748e-10 -5.91734e-10 -5.40416e-10) (2.28364e-10 -9.58049e-10 -1.55579e-09) (1.46164e-11 -1.59036e-10 -2.65965e-10) (-1.07495e-10 -2.28609e-12 1.13693e-10) (-5.09358e-10 1.62727e-10 1.4129e-09) (-3.45399e-10 1.61427e-11 1.01809e-09) (-9.61501e-11 -1.26449e-11 3.41449e-11) (-2.08108e-10 7.12856e-11 -9.1732e-10) (1.08306e-09 5.46407e-10 -4.00782e-09) (1.65754e-09 5.28391e-10 -2.52457e-09) (6.76891e-10 2.1977e-10 -2.96812e-10) (7.17738e-10 2.34918e-10 3.53894e-10) (9.24474e-10 2.52839e-10 8.27236e-10) (6.10652e-10 1.35226e-10 4.3805e-10) (5.15691e-10 9.91583e-11 3.99622e-11) (9.56466e-10 2.46589e-10 -2.88193e-10) (1.24421e-09 4.67309e-10 -3.57193e-10) (7.44783e-10 1.75439e-10 -4.48583e-11) (2.22055e-10 -1.15705e-10 4.26834e-12) (-6.54495e-11 -2.07312e-10 -1.01996e-10) (-9.89193e-10 -1.42081e-10 -2.57747e-10) (-2.98402e-09 7.8512e-10 1.15021e-09) (-3.8459e-09 1.28331e-09 4.70731e-09) (-1.69322e-09 3.54555e-10 2.45419e-09) (-1.34796e-10 5.48837e-11 1.19708e-11) (2.67388e-11 3.16623e-10 -7.77427e-10) (4.04385e-10 6.01398e-10 -1.32637e-09) (2.85179e-10 2.83729e-10 -5.36562e-10) (2.31575e-10 -2.23487e-10 -2.68249e-10) (-4.84991e-09 -3.33209e-09 -1.22654e-09) (-7.11814e-08 -1.74277e-08 -1.38239e-09) (-5.41092e-08 -1.18444e-08 1.06276e-08) (-3.36435e-09 -1.7773e-09 4.80526e-09) (1.10024e-09 -1.27628e-10 2.32126e-09) (1.76474e-09 6.47767e-10 8.17487e-10) (3.54079e-09 1.64267e-09 -3.0824e-10) (3.59396e-09 1.69693e-09 -8.25906e-10) (4.55214e-10 3.28453e-10 -6.17323e-11) (-9.67049e-11 2.76981e-11 3.94527e-11) (-1.81143e-10 -1.22172e-10 -4.92353e-11) (1.88384e-10 -5.43878e-10 -6.45763e-10) (2.09728e-10 -3.36578e-10 -5.42169e-10) (-6.49489e-12 -4.45922e-12 -2.87684e-12) (-1.73379e-10 4.04655e-11 4.14324e-10) (-6.72905e-11 5.613e-11 1.00726e-09) (-3.89548e-11 4.31282e-12 3.33901e-10) (-2.64376e-11 3.58508e-12 -9.16291e-12) (-1.15188e-10 9.61449e-11 -1.06793e-09) (6.20128e-10 1.48659e-10 -2.78024e-09) (4.25627e-10 9.73157e-11 -9.19982e-10) (1.53101e-10 4.76519e-11 -1.12972e-11) (9.83807e-10 3.05536e-10 6.98593e-10) (1.77728e-09 5.98223e-10 1.16415e-09) (1.34585e-09 4.56468e-10 4.16389e-10) (1.18939e-09 3.13861e-10 -1.71719e-10) (1.41758e-09 3.34324e-10 -4.70269e-10) (1.26925e-09 2.74601e-10 -2.27116e-10) (8.83473e-10 -1.23032e-10 3.57453e-11) (1.10299e-10 -3.01562e-10 -8.33642e-11) (-1.96826e-09 -9.7538e-10 -9.54322e-10) (-4.4122e-09 2.87728e-10 -3.23668e-10) (-3.18513e-09 1.62952e-09 3.08074e-09) (-1.74798e-09 1.79959e-09 6.5284e-09) (-5.87694e-10 2.42909e-10 1.33048e-09) (-1.28906e-10 2.67237e-11 -1.34692e-10) (3.51481e-11 1.35957e-10 -1.84276e-09) (6.73764e-10 1.79779e-10 -1.99976e-09) (7.25569e-10 -2.56722e-12 -8.92272e-10) (3.51755e-10 -4.01342e-10 -3.85266e-10) (-1.7736e-08 -3.8044e-09 -1.11331e-09) (-7.5741e-08 -1.19411e-08 2.67594e-09) (-2.26214e-08 -6.45308e-09 6.94447e-09) (-9.12573e-10 -1.13602e-09 2.90457e-09) (6.32687e-10 -4.44083e-11 1.61946e-09) (6.44971e-10 3.34232e-10 5.06194e-10) (1.05284e-09 6.09032e-10 4.69172e-11) (8.80984e-10 5.6597e-10 -1.68181e-10) (7.8914e-11 1.00693e-10 -2.3293e-11) (-1.01147e-12 2.04746e-13 -1.37062e-12) (1.11735e-10 -1.62307e-10 -1.67633e-10) (3.21674e-10 -3.48518e-10 -4.42261e-10) (6.38512e-12 -2.2246e-11 -3.1022e-11) (-4.7059e-11 7.83137e-12 6.09213e-11) (-7.33625e-11 2.19077e-11 4.29269e-10) (1.40583e-11 4.19797e-13 3.59383e-10) (-7.43302e-12 4.60237e-12 3.70727e-11) (-1.32408e-11 1.21806e-11 -4.79058e-11) (1.69281e-10 6.9865e-11 -1.00972e-09) (4.41023e-10 1.27074e-11 -1.40834e-09) (8.53324e-11 1.77766e-11 -2.36465e-10) (6.04165e-11 1.84266e-11 2.90513e-11) (1.00492e-09 2.94271e-10 7.77561e-10) (2.17098e-09 7.52617e-10 1.12228e-09) (2.13493e-09 7.31219e-10 3.20886e-10) (2.00116e-09 5.18342e-10 -3.88155e-10) (1.73153e-09 3.45291e-10 -5.28844e-10) (1.4145e-09 1.95375e-11 -1.34637e-10) (6.36353e-10 -3.44993e-10 1.2843e-11) (-1.24357e-09 -1.00191e-09 -6.23459e-10) (-1.51448e-08 -2.74771e-09 -3.62559e-09) (-6.46309e-09 6.21716e-10 1.31267e-09) (-4.28624e-10 1.77394e-09 4.8354e-09) (1.08571e-09 1.68084e-09 5.70737e-09) (-2.77481e-11 4.98697e-11 1.36169e-10) (-4.08115e-11 -9.53441e-11 -9.65376e-10) (9.923e-10 -6.23537e-10 -4.37193e-09) (1.45202e-09 -3.59061e-10 -2.89273e-09) (7.37757e-10 -1.86426e-10 -8.15676e-10) (-6.39442e-11 -1.21844e-10 -1.08253e-10) (-3.66315e-08 -2.32621e-09 7.51434e-10) (-4.83446e-08 -7.34858e-09 3.71404e-09) (-6.53865e-09 -2.94653e-09 3.06358e-09) (-2.19911e-10 -6.57092e-10 1.7469e-09) (2.48136e-10 4.1531e-11 1.00631e-09) (2.05564e-10 1.70627e-10 2.72759e-10) (2.37957e-10 1.89801e-10 4.22751e-11) (1.82987e-10 1.62048e-10 -4.18632e-11) (4.65459e-11 4.06948e-11 -2.52652e-11) (8.74413e-11 -2.22224e-11 -6.65197e-11) (2.91105e-10 -2.0673e-10 -2.62029e-10) (4.88132e-11 -6.31246e-11 -7.6157e-11) (-7.08444e-12 -6.65015e-13 3.30254e-12) (-6.15653e-11 2.0247e-11 1.3132e-10) (-1.18505e-11 4.45159e-13 1.66239e-10) (2.39941e-13 -1.18091e-12 6.13221e-11) (-6.38209e-13 6.32789e-13 1.14503e-12) (1.51119e-11 1.14486e-11 -7.39172e-11) (2.56497e-10 2.20663e-11 -6.23092e-10) (2.55092e-10 1.7487e-11 -5.89817e-10) (3.8541e-11 1.28656e-11 -6.68883e-11) (7.9936e-11 2.41727e-11 4.24249e-11) (7.74083e-10 2.3538e-10 4.84406e-10) (1.86742e-09 6.29887e-10 6.76044e-10) (2.46186e-09 7.35198e-10 1.6851e-10) (2.35835e-09 5.1959e-10 -3.87229e-10) (1.74337e-09 2.00702e-10 -3.23484e-10) (1.29692e-09 -2.21902e-10 3.97084e-11) (5.21123e-12 -1.43713e-10 -2.84283e-11) (-1.42022e-08 -3.49171e-09 -4.17954e-09) (-3.23957e-08 -4.15183e-09 -3.55145e-09) (-3.31453e-09 1.00636e-10 2.7025e-09) (2.56902e-09 1.91072e-09 6.75843e-09) (1.24639e-09 9.69919e-10 2.24456e-09) (1.02459e-10 2.70768e-11 -1.35732e-10) (1.86743e-09 -9.52291e-10 -5.01026e-09) (2.79752e-09 -1.52136e-09 -6.68597e-09) (9.99731e-10 -3.84955e-10 -1.91195e-09) (2.83139e-11 -1.98994e-11 -9.14186e-11) (-2.06023e-09 -1.3255e-10 -2.33662e-11) (-3.79898e-08 -7.48258e-10 2.0847e-09) (-1.86955e-08 -3.91901e-09 2.08427e-09) (-1.63409e-09 -1.21694e-09 1.22979e-09) (-7.26469e-11 -3.35611e-10 1.09422e-09) (9.77982e-11 7.41849e-11 6.57062e-10) (8.41853e-11 9.38782e-11 1.58102e-10) (6.73161e-11 6.18387e-11 1.61462e-11) (7.26288e-11 5.59339e-11 -2.814e-11) (1.03588e-10 2.7982e-11 -6.37326e-11) (2.24462e-10 -5.57378e-11 -1.61614e-10) (1.09118e-10 -7.67895e-11 -1.0878e-10) (-8.6606e-13 -3.09746e-12 -2.41208e-12) (-3.01715e-11 6.33301e-12 2.76395e-11) (-1.92475e-11 7.60803e-12 5.56997e-11) (-3.27998e-13 -2.13795e-12 3.14189e-11) (-3.88687e-12 -7.36718e-13 1.51845e-11) (-5.16562e-13 2.27401e-13 3.75587e-13) (1.88803e-11 3.81463e-12 -4.30941e-11) (2.03215e-10 1.38569e-11 -3.39195e-10) (2.11966e-10 3.90979e-11 -2.99531e-10) (8.55065e-11 2.67104e-11 -5.00958e-11) (1.49085e-10 4.62725e-11 3.8238e-11) (5.10941e-10 1.71582e-10 1.63448e-10) (1.31941e-09 4.25732e-10 1.93998e-10) (2.12753e-09 5.39547e-10 -3.01361e-11) (2.01206e-09 3.31539e-10 -2.04185e-10) (1.54927e-09 -2.65025e-11 3.43199e-11) (3.5469e-10 -1.49031e-10 9.46721e-11) (-2.03672e-09 -6.09753e-10 -5.06338e-10) (-3.74942e-08 -4.82384e-09 -9.18863e-09) (-2.36037e-08 -3.94772e-09 1.73132e-10) (-8.84389e-10 -2.81831e-10 2.86623e-09) (2.30357e-09 1.07287e-09 4.23143e-09) (7.84813e-10 3.73172e-10 2.78262e-10) (2.67356e-09 -1.73843e-10 -3.10234e-09) (5.26796e-09 -2.27542e-09 -9.50765e-09) (1.73468e-09 -1.00947e-09 -4.05499e-09) (4.11651e-11 -4.21227e-11 -2.84602e-10) (-3.56804e-10 6.34182e-11 2.14569e-11) (-9.78288e-09 8.06886e-10 1.2372e-09) (-2.14314e-08 -5.59745e-10 1.3578e-09) (-4.7272e-09 -1.60531e-09 7.22369e-10) (-4.85936e-10 -5.32381e-10 5.90475e-10) (-6.32439e-11 -1.57648e-10 7.47097e-10) (5.11906e-11 6.49763e-11 4.42955e-10) (4.82316e-11 4.80309e-11 9.24998e-11) (3.12468e-11 2.21105e-11 4.11762e-12) (6.25735e-11 2.71622e-11 -3.51109e-11) (1.39713e-10 1.02764e-11 -1.02192e-10) (1.27619e-10 -3.45878e-11 -1.09321e-10) (1.22353e-11 -1.18223e-11 -1.71937e-11) (-3.38028e-12 -5.96391e-13 6.24826e-13) (-1.03575e-11 3.63282e-12 1.09845e-11) (-8.68992e-13 6.11625e-13 7.6922e-12) (-3.58881e-12 -1.98465e-12 1.40319e-11) (-1.75729e-11 -1.81491e-12 2.61632e-11) (-1.35959e-12 1.18353e-13 1.53803e-12) (2.22175e-11 1.80894e-12 -2.67878e-11) (2.23672e-10 2.25272e-11 -2.44834e-10) (3.14973e-10 6.75414e-11 -2.48346e-10) (2.34821e-10 6.84216e-11 -7.27826e-11) (2.02328e-10 6.96732e-11 1.03071e-13) (3.33727e-10 1.26936e-10 -1.00859e-11) (8.22627e-10 2.63355e-10 -9.18054e-11) (1.36759e-09 2.97019e-10 -1.49191e-10) (1.44613e-09 9.68243e-11 2.16098e-11) (8.59275e-10 -1.29364e-10 2.71288e-10) (-4.14749e-11 -3.30233e-11 2.68899e-11) (-1.19446e-08 -9.57921e-10 -2.71839e-09) (-3.62305e-08 -3.71439e-09 -8.31825e-09) (-6.45296e-09 -1.94878e-09 9.57374e-10) (1.05231e-10 -3.69837e-10 1.79078e-09) (1.25757e-09 3.36723e-10 1.33484e-09) (2.22083e-09 3.38853e-10 -6.29226e-10) (5.8828e-09 -9.38112e-10 -6.07993e-09) (2.98711e-09 -1.31601e-09 -5.48974e-09) (1.57924e-10 -1.9058e-10 -9.37981e-10) (-1.41714e-10 2.97475e-11 -3.59852e-11) (-2.79701e-09 6.35366e-10 7.91048e-10) (-1.54894e-08 1.85712e-09 2.43934e-09) (-6.75484e-09 -4.82923e-10 3.4126e-10) (-9.63872e-10 -5.32869e-10 2.13905e-10) (-2.09184e-10 -2.49992e-10 3.48301e-10) (-6.99834e-11 -6.80894e-11 5.39164e-10) (3.15313e-11 4.03132e-11 2.90828e-10) (2.86754e-11 2.04486e-11 4.98738e-11) (2.00168e-11 8.5681e-12 -1.19435e-12) (6.03354e-11 1.36533e-11 -4.35363e-11) (9.58749e-11 -2.02455e-14 -8.53304e-11) (3.55187e-11 -1.04861e-11 -3.88489e-11) (3.97886e-13 -1.22092e-12 -2.26518e-12) (-1.09448e-12 5.5238e-14 9.80006e-14) (-3.82667e-13 2.85407e-13 5.8003e-13) (-5.84454e-13 -1.09589e-13 3.439e-12) (-1.82028e-11 -2.90468e-12 3.07329e-11) (-3.20729e-11 -3.4954e-12 4.61549e-11) (-1.16058e-13 -4.24919e-14 2.32463e-12) (4.91847e-11 4.3135e-12 -2.71498e-11) (3.2629e-10 4.17846e-11 -2.25058e-10) (5.33577e-10 1.13235e-10 -2.77018e-10) (4.55442e-10 1.25582e-10 -1.27465e-10) (2.80249e-10 9.76117e-11 -5.48793e-11) (2.50662e-10 1.02938e-10 -8.67272e-11) (4.29221e-10 1.40672e-10 -1.60942e-10) (6.97249e-10 1.0575e-10 -1.03487e-10) (8.04792e-10 -3.69605e-11 1.69995e-10) (8.21172e-11 -4.01411e-11 1.03669e-10) (-1.83703e-09 -1.39765e-10 9.73943e-12) (-1.98875e-08 -4.30031e-10 -4.94024e-09) (-1.47972e-08 -1.96433e-09 -3.55669e-09) (-6.09218e-10 -4.713e-10 2.44774e-10) (2.80701e-10 -2.18465e-10 6.58465e-10) (1.01975e-09 1.0859e-10 4.59833e-10) (2.94729e-09 6.55022e-11 -1.22394e-09) (3.10086e-09 -6.71052e-10 -3.51053e-09) (6.13594e-10 -3.89974e-10 -1.75589e-09) (-1.04232e-10 -1.03635e-11 -1.45989e-10) (-1.10338e-09 2.70027e-10 3.01941e-10) (-5.64584e-09 1.28666e-09 1.82367e-09) (-1.1925e-08 1.49283e-09 1.8452e-09) (-1.21824e-09 -1.93372e-10 8.11016e-12) (-2.109e-10 -1.63962e-10 7.36666e-11) (-1.16627e-10 -1.18279e-10 2.28932e-10) (-5.28584e-11 -2.83418e-11 3.77778e-10) (2.56157e-11 2.05049e-11 1.86062e-10) (2.02039e-11 7.77035e-12 2.77661e-11) (1.91964e-11 3.89465e-12 -3.88311e-12) (5.25935e-11 6.27051e-12 -4.17711e-11) (4.92065e-11 -1.23988e-12 -4.93379e-11) (9.66092e-12 -2.60046e-12 -1.35182e-11) (9.71745e-14 -3.45208e-13 -1.23176e-12) (-6.31907e-14 3.23925e-15 -7.36199e-14) (1.59449e-14 4.35026e-14 1.64017e-13) (-2.04529e-12 -4.96467e-13 8.28568e-12) (-2.85305e-11 -3.69164e-12 4.95196e-11) (-1.88166e-11 -3.36601e-12 4.24639e-11) (4.41578e-12 1.71474e-13 5.26445e-12) (1.01296e-10 1.10377e-11 -2.79241e-11) (4.87492e-10 6.74271e-11 -2.15289e-10) (8.73911e-10 1.66351e-10 -3.3101e-10) (8.31102e-10 1.94111e-10 -2.24126e-10) (4.56458e-10 1.34026e-10 -1.27185e-10) (2.21451e-10 8.22784e-11 -1.10706e-10) (1.99459e-10 5.75147e-11 -1.01815e-10) (2.85786e-10 1.3012e-11 -1.66977e-11) (1.4833e-10 -3.00725e-11 8.4477e-11) (-1.14612e-10 -2.64568e-11 6.68998e-11) (-5.14511e-09 2.79186e-11 -7.02347e-10) (-1.33576e-08 -1.20631e-10 -3.90262e-09) (-2.36361e-09 -6.14298e-10 -7.25701e-10) (-4.04947e-12 -1.19474e-10 5.0624e-11) (2.32537e-10 -1.00768e-10 2.32578e-10) (7.45936e-10 3.12107e-11 1.44104e-10) (1.43125e-09 -7.01154e-11 -7.22619e-10) (9.37239e-10 -3.01594e-10 -1.34866e-09) (4.94383e-13 -8.72254e-11 -3.98091e-10) (-2.8651e-10 3.12064e-11 -1.84533e-11) (-1.97549e-09 4.84656e-10 8.17455e-10) (-4.61926e-09 1.04886e-09 1.52475e-09) (-4.5869e-09 5.54517e-10 6.03026e-10) (-1.06463e-10 -3.26176e-11 -1.17115e-11) (-4.5518e-11 -4.33703e-11 2.74629e-11) (-5.74671e-11 -5.14962e-11 1.45386e-10) (-1.88831e-11 -1.40958e-11 2.49717e-10) (3.08954e-11 8.45677e-12 1.23889e-10) (2.39103e-11 3.01222e-12 2.16041e-11) (3.03787e-11 1.82323e-12 -6.55267e-12) (5.52258e-11 2.90891e-12 -3.79831e-11) (3.60181e-11 -4.43383e-13 -3.20714e-11) (1.10976e-11 -1.09587e-12 -1.16398e-11) (2.23603e-12 -4.44525e-13 -2.86243e-12) (8.50649e-13 -3.72262e-14 -5.19061e-13) (1.44342e-12 4.96283e-14 1.20985e-12) (-7.69783e-14 -8.31084e-13 1.36313e-11) (-1.6053e-11 -3.79341e-12 4.53511e-11) (-6.59542e-13 -2.23699e-12 3.05536e-11) (2.66416e-11 1.25564e-12 1.41569e-11) (2.21669e-10 2.12439e-11 -3.05019e-11) (8.06009e-10 9.54905e-11 -2.31501e-10) (1.48704e-09 2.18935e-10 -3.92134e-10) (1.60434e-09 2.71823e-10 -3.1779e-10) (1.04054e-09 2.07937e-10 -1.93166e-10) (5.02219e-10 1.14802e-10 -1.34983e-10) (3.33783e-10 5.55436e-11 -8.4013e-11) (2.83253e-10 1.05852e-12 1.08086e-11) (3.64913e-11 -8.68549e-12 2.40194e-11) (-1.92643e-10 -5.74908e-12 1.6101e-11) (-3.98273e-09 2.18705e-10 -9.966e-10) (-3.75917e-09 -7.53103e-11 -1.43883e-09) (-1.06438e-10 -8.61731e-11 -7.17529e-11) (5.90679e-11 -7.66593e-11 2.44097e-11) (2.50527e-10 -6.77503e-11 1.36315e-10) (7.18745e-10 -1.62339e-11 5.3272e-11) (1.08459e-09 -1.13171e-10 -5.5288e-10) (5.95451e-10 -1.91832e-10 -7.55524e-10) (1.45974e-11 -2.62412e-11 -1.13867e-10) (-1.1245e-10 2.41653e-11 3.04165e-11) (-8.8948e-10 2.76018e-10 4.90853e-10) (-1.43649e-09 3.88308e-10 5.04645e-10) (-6.87737e-10 9.70408e-11 5.34548e-11) (-1.31976e-12 -1.56238e-12 -2.10325e-12) (-4.82646e-12 -6.59444e-12 6.23829e-12) (-1.94907e-11 -1.84691e-11 7.97172e-11) (-7.44418e-13 -9.13927e-12 1.59363e-10) (2.83582e-11 1.78912e-12 8.40547e-11) (2.45446e-11 1.71826e-13 1.62628e-11) (3.68275e-11 -3.4637e-13 -9.48091e-12) (5.3593e-11 3.12124e-13 -3.62578e-11) (3.80929e-11 2.40584e-13 -3.31162e-11) (1.81905e-11 -6.40785e-13 -1.82298e-11) (6.91208e-12 -5.58813e-13 -6.94475e-12) (3.90795e-12 -8.44685e-14 -1.03994e-12) (5.6478e-12 1.82997e-14 4.86184e-12) (1.52135e-12 -7.30605e-13 2.02423e-11) (-4.58706e-12 -2.20921e-12 3.70028e-11) (1.42649e-11 -1.28438e-12 3.13339e-11) (1.06313e-10 4.28985e-12 4.01027e-11) (5.91137e-10 3.88636e-11 -1.50553e-12) (1.88851e-09 1.42587e-10 -2.12704e-10) (3.80794e-09 3.35806e-10 -3.95934e-10) (5.34807e-09 5.13186e-10 -3.02595e-10) (5.61784e-09 5.69167e-10 -1.23179e-10) (5.07797e-09 4.93247e-10 -6.30994e-11) (4.53781e-09 3.13875e-10 6.40174e-11) (2.99962e-09 6.25519e-11 2.99669e-10) (4.05989e-10 -8.51077e-12 9.15125e-11) (-1.90542e-10 1.28171e-11 -3.4972e-11) (-2.52453e-09 1.84556e-10 -8.99446e-10) (-4.73423e-10 -3.45354e-11 -2.88468e-10) (1.04799e-11 -2.04137e-11 -1.55758e-11) (8.36588e-11 -4.92552e-11 1.55325e-11) (3.53599e-10 -6.02215e-11 1.04183e-10) (1.06381e-09 -6.38537e-11 -7.20927e-11) (1.58863e-09 -1.79819e-10 -8.31428e-10) (8.65091e-10 -1.99825e-10 -8.63111e-10) (5.83088e-11 -2.03393e-11 -9.81934e-11) (-2.3846e-11 8.48391e-12 1.16762e-11) (-1.98848e-10 8.43194e-11 1.37109e-10) (-1.2443e-10 5.45166e-11 4.66032e-11) (-1.19548e-11 4.60258e-12 -4.01357e-12) (1.17866e-11 -4.30978e-13 -1.42777e-11) (4.41243e-13 -3.17972e-13 8.19323e-15) (-2.3193e-12 -2.81345e-12 2.00974e-11) (-2.74375e-13 -4.28907e-12 6.65274e-11) (1.10297e-11 -5.73695e-13 4.04402e-11) (8.62529e-12 -6.70277e-13 6.04867e-12) (9.92838e-12 -7.72021e-13 -4.5213e-12) (1.18916e-11 -5.9929e-13 -1.55458e-11) (8.21438e-12 1.58632e-13 -1.72696e-11) (3.05766e-12 -2.51465e-15 -1.05704e-11) (6.25479e-13 -6.25898e-14 -2.07469e-12) (4.88816e-13 2.25759e-15 1.66494e-13) (2.32596e-12 2.15987e-13 5.86216e-12) (5.78803e-13 1.5498e-13 1.20473e-11) (3.15601e-12 -7.94503e-14 1.51882e-11) (2.49305e-11 5.04021e-14 2.68255e-11) (1.7324e-10 5.4504e-12 6.09674e-11) (8.97504e-10 3.33633e-11 7.99222e-11) (3.04774e-09 1.2392e-10 -5.44251e-12) (7.2444e-09 3.16148e-10 -2.15814e-11) (1.25467e-08 5.49448e-10 3.49452e-10) (1.69778e-08 7.30316e-10 9.91192e-10) (1.9487e-08 7.46048e-10 1.57296e-09) (1.78044e-08 4.55654e-10 2.01827e-09) (7.33723e-09 5.5051e-11 1.36042e-09) (1.092e-10 1.27786e-12 4.26339e-11) (-1.73478e-09 8.17658e-11 -3.31105e-10) (-1.07748e-09 7.75297e-11 -4.29163e-10) (-1.57617e-11 -2.77107e-12 -2.57202e-11) (1.58735e-11 -8.29567e-12 -9.43715e-12) (3.54629e-11 -1.31205e-11 1.03635e-11) (1.7463e-10 -2.3707e-11 6.29855e-11) (4.91049e-10 -3.7977e-11 -5.2733e-11) (6.12334e-10 -7.76937e-11 -4.33653e-10) (1.80306e-10 -6.61975e-11 -3.86966e-10) (-7.80343e-11 -9.32925e-12 -8.17066e-11) (-2.1181e-10 2.3206e-11 2.43088e-11) (-9.74811e-11 2.73935e-11 2.99899e-11) (-3.28406e-12 3.27518e-12 -1.38868e-12) (1.00751e-11 4.24656e-12 -1.42982e-11) (2.12446e-11 1.92641e-12 -3.35617e-11) (1.01048e-11 1.70137e-13 -1.56416e-11) (8.53895e-13 -4.60548e-14 -9.60226e-13) (2.03649e-13 -1.02327e-13 7.02387e-13) (1.11866e-12 -8.60447e-14 2.79167e-12) (1.35711e-12 -1.11446e-13 1.41734e-12) (1.61303e-13 -2.19013e-14 1.23544e-14) (-6.28415e-14 -2.27226e-14 -2.95739e-13) (-4.48213e-13 -2.98406e-15 -1.07911e-12) (-3.02557e-13 9.4221e-15 -1.00286e-12) (-1.8818e-14 -8.75229e-16 -2.13005e-13) (6.85024e-15 1.9423e-16 -8.51467e-16) (6.40193e-14 1.04061e-14 9.39536e-14) (3.73941e-13 2.55659e-14 2.47286e-13) (1.79284e-12 7.17613e-14 1.00454e-12) (5.17019e-12 8.93662e-14 3.83712e-12) (1.86186e-11 3.96364e-13 1.07525e-11) (8.10179e-11 1.35452e-12 2.33565e-11) (3.10312e-10 5.71146e-12 3.45534e-11) (8.50227e-10 1.42123e-11 5.03483e-11) (1.63205e-09 2.22512e-11 1.25186e-10) (2.38542e-09 2.77762e-11 2.91789e-10) (2.77562e-09 2.52406e-11 4.93112e-10) (1.964e-09 6.7585e-12 5.26649e-10) (3.00318e-10 -1.93969e-12 1.67912e-10) (-8.11627e-11 -8.71906e-13 3.15833e-11) (-3.04722e-10 4.79057e-12 -1.90722e-11) (-3.16672e-11 2.61738e-12 -1.16124e-11) (5.41997e-13 2.93426e-13 -1.97559e-12) (2.98621e-12 -1.98026e-13 -3.31475e-12) (1.10738e-12 -2.26015e-13 2.19315e-13) (1.07932e-11 -1.18232e-12 1.2676e-11) (2.21772e-11 -1.29297e-12 1.19331e-11) (1.11486e-11 -1.1738e-12 -6.31893e-12) (-1.21628e-11 -4.50558e-12 -3.79062e-11) (-1.038e-10 -8.64215e-12 -7.38386e-11) (-1.34973e-10 -5.16265e-12 -4.2218e-11) (-4.75302e-11 9.43422e-13 -1.24318e-11) (-4.05925e-12 7.0281e-13 -4.98571e-12) (6.10177e-12 1.75367e-12 -1.52103e-11) (2.98037e-10 -2.02796e-10 -1.19474e-10) (1.07626e-10 -9.29613e-11 -9.09966e-11) (4.77456e-12 -7.11019e-12 -9.33278e-12) (-1.39403e-11 8.68969e-12 4.51534e-12) (-1.88927e-10 1.47999e-10 9.49452e-11) (-4.45118e-10 3.47294e-10 1.74428e-10) (-3.88021e-10 3.07953e-10 6.65275e-11) (-1.42743e-10 1.33266e-10 -4.2952e-11) (-3.12057e-11 5.32068e-11 -7.93692e-11) (2.20465e-11 2.318e-11 -1.37177e-10) (6.33488e-11 -2.12039e-11 -1.34357e-10) (6.76307e-11 -4.74299e-11 -5.87262e-11) (7.99138e-11 -6.91851e-11 1.18489e-11) (1.11419e-10 -9.50728e-11 1.33879e-10) (7.79299e-11 -4.18366e-11 3.11271e-10) (-1.09205e-10 1.22671e-10 5.11254e-10) (-5.53266e-10 3.17156e-10 6.86656e-10) (-8.70107e-10 2.20093e-10 5.62901e-10) (-5.03473e-10 -4.61362e-11 1.78804e-10) (-1.05943e-10 -6.91618e-11 -2.34384e-11) (-8.38371e-12 -6.815e-11 -1.41903e-10) (9.24937e-11 -1.45418e-11 -4.50383e-10) (8.69916e-11 1.15202e-10 -5.83081e-10) (8.45874e-12 1.11577e-10 -3.76547e-10) (-7.31824e-12 2.52732e-11 -1.12184e-10) (-4.77858e-14 -4.27559e-12 -7.23992e-12) (5.73337e-12 -6.20155e-11 3.5909e-11) (-1.79184e-11 -3.5841e-10 4.10366e-10) (-2.44719e-10 -6.46794e-10 1.21003e-09) (-4.97649e-10 -3.26148e-10 1.54104e-09) (-3.59098e-10 2.01594e-10 8.48926e-10) (-1.26615e-10 3.10295e-10 1.85869e-10) (-3.02241e-11 3.99037e-10 -1.44818e-10) (8.30391e-11 4.22681e-10 -5.04891e-10) (1.8244e-10 1.96743e-10 -5.18238e-10) (1.88667e-10 2.92704e-13 -2.42282e-10) (2.19221e-10 -8.63259e-11 -7.74795e-11) (3.64072e-10 -1.90363e-10 3.83983e-11) (4.77294e-10 -2.65969e-10 8.706e-11) (4.41168e-10 -2.59533e-10 -1.23817e-11) (2.91618e-11 -1.4051e-10 -1.53178e-10) (-4.19556e-11 -9.95492e-11 -2.99945e-11) (-7.50466e-11 -8.5215e-11 6.98302e-11) (-8.05668e-11 -1.51822e-11 1.78394e-10) (-4.76012e-11 1.43215e-10 2.28264e-10) (-5.98506e-12 3.35653e-10 1.8135e-10) (5.43255e-12 3.61171e-10 1.97516e-11) (5.64518e-12 2.24747e-10 -1.2042e-10) (3.97795e-11 1.26612e-10 -2.64268e-10) (1.39113e-10 5.56769e-12 -4.65274e-10) (2.42521e-10 -1.37929e-10 -5.05069e-10) (2.22894e-10 -1.62662e-10 -2.76061e-10) (1.24968e-10 -8.69913e-11 -5.03856e-11) (8.24982e-11 -3.5143e-11 4.73517e-11) (1.07798e-10 2.7225e-11 1.96299e-10) (9.41201e-11 2.065e-10 4.19808e-10) (-1.79749e-11 3.22815e-10 4.31991e-10) (-8.63617e-11 1.75347e-10 1.8975e-10) (-5.68682e-11 2.9167e-11 2.86533e-11) (-8.15608e-11 -1.60443e-11 -2.22199e-11) (-1.74263e-10 -7.26171e-11 -1.12976e-10) (-2.16324e-10 -8.28099e-11 -1.8209e-10) (-1.62887e-10 -5.27127e-11 -1.7958e-10) (-7.74868e-11 -3.67651e-11 -1.45918e-10) (-1.46001e-11 -3.80706e-11 -1.01491e-10) (9.69535e-12 -3.15477e-11 -3.42554e-11) (7.30061e-12 -3.78262e-11 1.9067e-11) (-1.0974e-10 -2.20024e-10 4.61121e-10) (-9.18111e-10 -5.60404e-10 2.10807e-09) (-1.81089e-09 -4.99677e-10 3.12788e-09) (-1.20721e-09 -4.67648e-11 1.61657e-09) (-2.42062e-10 8.87485e-11 2.1151e-10) (-1.91917e-11 5.91697e-11 -2.2001e-11) (1.0441e-10 1.76348e-10 -2.09298e-10) (2.97925e-10 1.90095e-10 -3.50928e-10) (3.60665e-10 8.41569e-11 -2.79808e-10) (3.71317e-10 -6.12395e-12 -1.94437e-10) (3.90399e-10 -7.3745e-11 -1.88394e-10) (3.5422e-10 -1.32041e-10 -2.49707e-10) (2.00246e-10 -1.64464e-10 -2.66248e-10) (-6.81613e-11 -3.37547e-10 -2.79827e-10) (-5.15953e-10 -8.4629e-10 1.02067e-10) (-1.31505e-09 -1.49253e-09 1.06375e-09) (-1.06958e-09 -7.33322e-10 1.11085e-09) (-1.82213e-10 4.23304e-11 2.6107e-10) (1.22686e-10 4.10625e-10 8.0522e-11) (1.16758e-09 1.78407e-09 -4.23116e-10) (1.79009e-09 2.12121e-09 -1.21832e-09) (1.14996e-09 9.68034e-10 -1.2028e-09) (5.69094e-10 1.49558e-10 -7.88717e-10) (2.91036e-10 -1.00225e-10 -3.83806e-10) (1.41507e-10 -8.25624e-11 -9.10952e-11) (1.16976e-10 -5.10952e-11 2.3238e-11) (1.77716e-10 -2.69776e-11 1.24453e-10) (2.08287e-10 5.51816e-11 2.0117e-10) (1.85291e-10 1.5608e-10 2.16946e-10) (1.03067e-10 1.81195e-10 1.61714e-10) (1.37395e-11 8.75011e-11 5.61985e-11) (-1.25362e-11 1.56133e-11 4.50698e-12) (-7.63615e-11 -5.09631e-12 -2.25446e-11) (-2.92513e-10 -9.33856e-11 -1.04155e-10) (-4.82666e-10 -1.80403e-10 -1.70375e-10) (-4.24874e-10 -1.74383e-10 -1.89248e-10) (-2.112e-10 -1.33233e-10 -1.69172e-10) (-5.25016e-11 -1.12128e-10 -1.13772e-10) (9.46994e-12 -9.99599e-11 -3.59924e-11) (-7.74765e-12 -1.121e-10 7.3579e-11) (-3.50698e-10 -2.58072e-10 6.45839e-10) (-1.55308e-09 -3.13723e-10 1.91445e-09) (-1.9414e-09 -1.72601e-10 1.83319e-09) (-8.4147e-10 -2.76069e-11 5.51667e-10) (-1.37627e-10 2.46839e-11 3.01451e-11) (-1.70403e-11 2.68337e-11 -1.32745e-11) (1.87187e-11 5.82754e-11 -1.97682e-11) (8.45776e-11 9.74362e-11 -8.97565e-12) (1.8051e-10 1.15891e-10 -6.90642e-12) (3.04109e-10 1.05423e-10 -7.5881e-11) (4.77423e-10 6.56173e-11 -3.01377e-10) (5.46156e-10 -4.99243e-11 -6.47125e-10) (2.50684e-10 -2.18357e-10 -6.20702e-10) (-4.57943e-10 -7.84621e-10 -1.02851e-10) (-3.38698e-09 -3.49542e-09 1.50236e-09) (-8.04721e-09 -5.84815e-09 4.36056e-09) (-6.15717e-09 -3.3407e-09 2.81564e-09) (-9.08523e-10 -3.37936e-10 1.58501e-10) (2.82997e-11 1.15615e-10 -1.30083e-10) (1.70422e-09 2.1091e-09 -1.38952e-09) (4.15963e-09 4.53992e-09 -2.46596e-09) (3.6734e-09 3.19014e-09 -1.96617e-09) (1.80534e-09 8.96377e-10 -8.94448e-10) (9.12681e-10 -1.20053e-11 -3.16382e-10) (7.22185e-10 -4.05748e-10 -6.72335e-11) (4.18049e-10 -5.69047e-10 1.74928e-10) (5.40906e-11 -3.74854e-10 3.21551e-10) (-5.70449e-11 -7.80465e-11 3.17169e-10) (1.12898e-11 1.63156e-10 2.3403e-10) (1.84794e-10 5.12877e-10 1.70317e-10) (3.04954e-10 6.31113e-10 -1.51934e-11) (1.73282e-10 3.07526e-10 -1.00688e-10) (2.28097e-11 5.56137e-11 -5.20761e-11) (-2.9221e-11 4.55312e-12 -4.16955e-11) (-2.00857e-10 -5.47529e-11 -1.20484e-10) (-3.77878e-10 -1.65961e-10 -2.02637e-10) (-2.40693e-10 -2.32686e-10 -1.68171e-10) (-6.43173e-11 -2.50474e-10 -6.10687e-11) (-3.21387e-11 -2.36802e-10 7.90921e-11) (-3.38915e-10 -2.60538e-10 4.16168e-10) (-2.08395e-09 -2.77919e-10 1.66979e-09) (-3.60858e-09 -3.0621e-10 2.47634e-09) (-1.84194e-09 -3.59766e-10 1.15313e-09) (-2.41644e-10 -9.48105e-11 8.07303e-11) (-1.14125e-11 -4.13061e-12 -3.46489e-11) (7.47953e-11 9.84678e-11 -1.82571e-10) (2.20345e-10 2.92279e-10 -2.01358e-10) (3.12094e-10 3.69227e-10 -7.26366e-11) (3.35631e-10 2.93343e-10 -1.25796e-11) (3.32796e-10 1.8383e-10 -8.27396e-11) (3.53127e-10 1.07937e-10 -2.50924e-10) (2.63906e-10 -1.28434e-11 -3.87696e-10) (3.29406e-11 -1.72055e-10 -2.6523e-10) (-1.43964e-09 -1.19778e-09 3.45512e-10) (-7.58688e-09 -5.75e-09 3.63238e-09) (-1.2181e-08 -8.67818e-09 6.23422e-09) (-5.85408e-09 -4.3161e-09 2.05222e-09) (-5.34878e-10 -5.77461e-10 -2.83479e-10) (3.3583e-10 3.96466e-11 -1.1534e-09) (1.58462e-09 1.74163e-09 -2.67625e-09) (1.93367e-09 2.83137e-09 -2.2124e-09) (1.44333e-09 1.58248e-09 -9.03389e-10) (8.71335e-10 3.00854e-10 -2.51173e-10) (3.34143e-10 -1.23929e-10 -7.00199e-13) (-9.05121e-11 -1.89999e-10 2.06807e-10) (-3.45674e-09 -7.8758e-10 2.89592e-09) (-7.42092e-09 -4.23682e-10 6.80814e-09) (-2.79586e-09 3.70883e-10 3.99765e-09) (-6.23447e-12 4.39348e-10 7.51573e-10) (1.11721e-09 1.06056e-09 1.81567e-11) (3.77486e-09 2.50038e-09 -1.79797e-09) (4.68075e-09 2.47159e-09 -3.14911e-09) (2.92104e-09 1.29606e-09 -2.43628e-09) (9.18847e-10 3.65638e-10 -1.07543e-09) (1.09009e-10 2.289e-11 -3.39962e-10) (-3.21243e-11 -8.16304e-11 -1.74445e-10) (-6.54138e-11 -2.33012e-10 -1.16958e-10) (-1.87584e-10 -5.33571e-10 8.26438e-11) (-1.02882e-09 -1.04677e-09 8.98807e-10) (-3.62845e-09 -1.31132e-09 3.11279e-09) (-4.90523e-09 -6.20531e-10 4.45791e-09) (-2.33708e-09 -2.3423e-10 2.49273e-09) (-2.97447e-10 -7.90217e-11 4.28092e-10) (3.4217e-13 -6.83824e-13 3.22433e-12) (6.93521e-11 4.76637e-11 -7.57801e-11) (2.70078e-10 2.80243e-10 -4.04504e-10) (4.3033e-10 4.54556e-10 -6.35976e-10) (4.92164e-10 3.79612e-10 -5.80078e-10) (4.60534e-10 1.99455e-10 -4.34003e-10) (3.50709e-10 6.95682e-11 -3.22385e-10) (1.86706e-10 1.63839e-11 -2.20121e-10) (3.88566e-11 -1.18754e-11 -1.04501e-10) (-6.64321e-11 -7.64509e-11 -5.41314e-11) (-1.25736e-09 -8.48638e-10 4.23199e-10) (-7.93849e-09 -6.29025e-09 3.83448e-09) (-1.13433e-08 -9.73137e-09 4.1194e-09) (-2.63935e-09 -2.93027e-09 -5.67137e-11) (7.64322e-11 -3.32878e-10 -5.64014e-10) (1.39018e-09 3.0769e-10 -2.06043e-09) (1.80452e-09 1.10857e-09 -2.38088e-09) (9.5919e-10 7.68142e-10 -1.10365e-09) (1.56611e-10 1.25663e-10 -1.419e-10) (-5.88935e-11 2.3705e-11 2.15454e-11) (-4.62361e-09 9.38021e-10 2.10528e-09) (-1.62279e-08 2.32201e-09 1.01871e-08) (-1.16666e-08 -1.4353e-09 1.325e-08) (-4.50071e-09 -3.12444e-09 8.68275e-09) (-1.0616e-09 -9.15727e-10 2.23772e-09) (-4.19155e-12 3.50381e-11 8.56124e-11) (1.09531e-09 1.22504e-09 -3.66416e-10) (5.86903e-09 5.23226e-09 -3.41338e-09) (9.60788e-09 6.93924e-09 -7.10169e-09) (8.64561e-09 4.75024e-09 -7.47427e-09) (4.93746e-09 1.86795e-09 -4.80699e-09) (1.79028e-09 2.15604e-10 -1.94227e-09) (5.27779e-10 -2.49608e-10 -5.41889e-10) (1.82061e-10 -3.16619e-10 -4.38314e-11) (-1.42575e-10 -6.19905e-10 5.43769e-10) (-2.88014e-09 -1.41452e-09 3.38838e-09) (-9.35864e-09 -1.37546e-09 7.57291e-09) (-8.2706e-09 -1.14392e-09 5.60694e-09) (-1.93444e-09 -7.02142e-10 1.34875e-09) (-4.85008e-11 -1.06597e-10 9.09756e-11) (1.46496e-10 -2.06914e-11 1.76504e-11) (7.43699e-10 3.02811e-10 -1.10191e-10) (1.24649e-09 8.78338e-10 -5.16411e-10) (1.1276e-09 8.87581e-10 -8.75575e-10) (6.89565e-10 3.88322e-10 -8.083e-10) (3.16705e-10 2.45891e-11 -5.13902e-10) (9.20419e-11 -5.14888e-11 -2.42819e-10) (6.56004e-12 -1.35747e-11 -1.01329e-10) (-1.99045e-11 6.86128e-12 -6.05711e-11) (-7.51019e-11 -1.98179e-11 -3.23512e-11) (-1.77219e-09 -8.80363e-10 5.90916e-10) (-1.3968e-08 -9.73162e-09 3.40628e-09) (-1.60303e-08 -1.55391e-08 -4.18758e-10) (-1.77275e-09 -3.77886e-09 -2.00434e-09) (1.25562e-09 -1.60145e-10 -1.60521e-09) (4.03476e-09 2.03996e-09 -2.86203e-09) (2.98265e-09 1.7979e-09 -1.74927e-09) (5.31668e-10 3.98239e-10 -2.86118e-10) (-2.43598e-10 2.28096e-10 4.70842e-11) (-8.56744e-09 3.21763e-09 3.0105e-09) (-1.52149e-08 3.56225e-09 9.98361e-09) (-6.112e-09 -1.53694e-09 1.08102e-08) (-3.93266e-09 -3.75646e-09 8.75959e-09) (-5.10378e-09 -2.57908e-09 4.15316e-09) (-2.50719e-09 -7.38899e-10 6.55362e-10) (-7.65342e-11 9.25868e-12 -2.61369e-11) (5.77599e-10 6.86842e-10 -3.40433e-10) (4.98083e-09 4.55328e-09 -2.29313e-09) (1.1474e-08 8.26262e-09 -6.66236e-09) (1.28665e-08 6.58475e-09 -9.44553e-09) (8.68975e-09 2.53823e-09 -7.08466e-09) (3.96653e-09 1.26656e-10 -2.86584e-09) (1.26049e-09 -3.7476e-10 -4.35211e-10) (2.72032e-10 -2.68469e-10 3.09595e-10) (-1.2222e-09 -5.63925e-10 2.3766e-09) (-9.52038e-09 -4.98965e-10 7.38136e-09) (-1.39594e-08 -8.63852e-10 6.23922e-09) (-5.58948e-09 -1.32065e-09 1.19756e-09) (-5.95689e-10 -4.63247e-10 -9.77823e-11) (6.63081e-11 -1.22143e-10 -6.89865e-11) (6.35383e-10 -3.75993e-11 -4.54222e-11) (1.75169e-09 5.2511e-10 1.84908e-10) (2.2489e-09 1.08315e-09 1.95386e-10) (1.60532e-09 7.9808e-10 -1.7336e-10) (6.87668e-10 2.03624e-10 -3.12568e-10) (1.71289e-10 -3.66232e-11 -2.01841e-10) (-3.01871e-12 -4.38749e-11 -1.06003e-10) (-5.68325e-11 -1.45007e-12 -8.11993e-11) (-6.48651e-11 4.5699e-11 -7.55177e-11) (-7.19546e-11 1.51832e-11 -1.91702e-11) (-3.82338e-09 -8.66643e-10 7.14181e-10) (-2.22912e-08 -1.47162e-08 6.60229e-10) (-2.56837e-08 -2.89768e-08 -5.70981e-09) (-5.26476e-09 -8.17949e-09 -3.56168e-09) (2.24109e-10 8.15303e-11 -5.38407e-10) (4.58043e-09 4.25014e-09 -2.45252e-09) (4.90715e-09 4.57175e-09 -1.76658e-09) (6.51759e-10 1.33654e-09 -1.40856e-10) (-1.18748e-09 1.43385e-09 7.20508e-10) (-2.45693e-09 1.34355e-09 2.84948e-09) (-4.26929e-10 -7.15777e-10 4.79543e-09) (-7.65228e-10 -2.17086e-09 5.72147e-09) (-5.32694e-09 -1.86688e-09 4.58984e-09) (-6.80297e-09 -1.53086e-09 1.70801e-09) (-1.08591e-09 -6.13491e-10 -3.12962e-10) (1.48854e-11 -1.15953e-10 -2.13026e-10) (2.42264e-10 2.12991e-10 -2.15374e-10) (1.58516e-09 2.197e-09 -7.11606e-10) (5.1665e-09 5.58771e-09 -2.66564e-09) (8.51078e-09 5.63424e-09 -5.54748e-09) (7.26028e-09 2.38009e-09 -4.78894e-09) (3.39384e-09 2.23646e-10 -1.59133e-09) (8.23851e-10 -8.66207e-11 7.48504e-11) (9.16509e-11 -1.72993e-12 6.50805e-10) (-2.31371e-09 3.80749e-10 2.94276e-09) (-7.12978e-09 3.16694e-10 3.86559e-09) (-5.91787e-09 -1.00479e-09 9.96723e-10) (-2.03762e-09 -1.20799e-09 -6.30434e-10) (-3.03977e-10 -7.63508e-10 -7.46468e-10) (2.69213e-10 -2.99383e-10 -4.21688e-10) (5.73771e-10 2.67713e-12 -1.15669e-10) (1.49032e-09 5.42776e-10 4.59887e-10) (2.18774e-09 1.06366e-09 1.06059e-09) (1.48375e-09 6.0609e-10 6.11823e-10) (5.08324e-10 6.33655e-11 8.02007e-11) (9.4297e-11 -3.98523e-11 -3.51774e-11) (-1.85541e-13 -2.08467e-11 -3.3839e-11) (-3.7845e-11 1.44522e-11 -5.16188e-11) (-6.47486e-11 9.73696e-11 -6.78008e-11) (-1.92341e-10 1.25219e-10 -2.1745e-12) (-3.68584e-09 -3.84848e-10 5.17657e-10) (-1.81277e-08 -1.43321e-08 -1.70959e-09) (-3.06016e-08 -3.69333e-08 -6.86855e-09) (-2.10295e-08 -1.73559e-08 -2.81236e-09) (-3.24814e-09 2.84522e-10 -2.95222e-10) (4.71711e-10 4.23704e-09 -4.95015e-10) (3.95121e-09 7.43849e-09 -6.26196e-10) (1.96502e-09 3.20307e-09 1.56909e-10) (8.94667e-10 7.5502e-10 6.10876e-10) (1.98126e-09 -2.40832e-10 2.09749e-09) (1.37073e-09 -1.26142e-09 2.95484e-09) (-1.73087e-09 -9.86127e-10 2.36073e-09) (-6.89703e-09 -1.02467e-09 2.30239e-09) (-2.75156e-09 -8.27603e-10 -1.64907e-10) (-2.24461e-10 -4.60855e-10 -4.91157e-10) (1.28919e-10 -1.61082e-10 -3.09049e-10) (1.03776e-10 1.09899e-10 -6.66914e-11) (6.45928e-10 1.37834e-09 -3.97198e-11) (2.0979e-09 3.33909e-09 -6.35525e-10) (3.70012e-09 3.3591e-09 -1.92654e-09) (3.28424e-09 1.46795e-09 -1.70307e-09) (1.35274e-09 2.27473e-10 -3.85075e-10) (2.54665e-10 2.79983e-11 1.23032e-10) (-4.28114e-11 8.02631e-11 4.02169e-10) (-7.12302e-10 1.34464e-10 7.35475e-10) (-1.01768e-09 -1.09435e-10 3.25552e-10) (-7.1171e-10 -4.17287e-10 -1.92516e-10) (-2.83508e-10 -6.06792e-10 -5.22962e-10) (1.4735e-10 -5.63577e-10 -6.22587e-10) (2.22487e-10 -1.86256e-10 -2.71199e-10) (1.1192e-10 1.60958e-11 -1.93004e-11) (3.20142e-10 2.52764e-10 2.20601e-10) (6.94643e-10 5.54702e-10 6.84088e-10) (5.72203e-10 2.56431e-10 5.48299e-10) (1.84281e-10 -3.17858e-11 1.31166e-10) (4.45104e-11 -5.31528e-11 -1.09314e-11) (1.60198e-11 -3.66914e-11 -7.60385e-11) (1.37224e-11 4.77676e-11 -1.0299e-10) (8.0856e-12 2.3185e-10 -7.02751e-11) (-3.09496e-10 4.22499e-10 1.07353e-10) (-1.46519e-09 -8.3715e-11 3.93373e-10) (-7.83485e-09 -9.11793e-09 -1.29829e-09) (-2.22301e-08 -3.03508e-08 -4.50627e-09) (-3.78283e-08 -2.43205e-08 -2.13411e-10) (-2.74829e-08 -8.65456e-10 2.68994e-09) (-4.23535e-09 5.34009e-09 6.59051e-10) (2.92458e-09 8.06604e-09 3.5893e-10) (6.18835e-09 5.91578e-09 1.03871e-09) (5.12224e-09 1.83924e-09 1.73813e-09) (2.52599e-09 -3.74706e-10 1.77842e-09) (-7.2142e-11 -5.96657e-10 1.02077e-09) (-3.28008e-09 -1.10358e-09 1.49126e-09) (-3.44249e-09 -8.26334e-10 2.05258e-11) (-7.16552e-10 -4.89585e-10 -6.80999e-10) (-6.95768e-11 -4.91808e-10 -7.87426e-10) (2.63015e-11 -8.65416e-11 -1.4919e-10) (2.06066e-11 3.59339e-11 4.46396e-12) (3.69555e-10 1.03432e-09 3.37197e-10) (1.24421e-09 2.74156e-09 3.34788e-10) (1.6696e-09 2.31944e-09 -4.3912e-10) (1.0906e-09 7.96922e-10 -4.51449e-10) (3.83085e-10 1.10701e-10 -7.57737e-11) (1.08936e-10 6.87042e-12 5.25055e-11) (3.74853e-11 -4.69348e-12 6.1167e-11) (8.81088e-12 -8.32556e-12 8.95453e-12) (3.70274e-11 -5.32885e-11 -4.63558e-11) (1.17469e-10 -1.97496e-10 -2.67739e-10) (1.26526e-10 -2.42583e-10 -3.99531e-10) (4.05919e-11 -1.11964e-10 -2.16792e-10) (-1.18191e-12 -4.70526e-12 -1.06629e-11) (-6.20392e-12 1.53179e-11 3.3113e-11) (4.04234e-11 1.38793e-10 3.13379e-10) (1.37109e-10 1.60041e-10 4.55587e-10) (6.37726e-11 9.36109e-12 2.10373e-10) (8.658e-12 -2.70566e-11 1.70398e-11) (6.39025e-11 -1.22403e-10 -1.81003e-10) (3.77417e-10 -6.49355e-11 -8.41296e-10) (4.48209e-10 3.31162e-10 -5.79111e-10) (2.73063e-10 6.53418e-10 -5.89727e-12) (-2.92014e-10 8.83638e-10 4.81754e-10) (-3.47603e-10 -5.85177e-11 2.40372e-10) (-3.05515e-09 -6.14672e-09 -3.08938e-10) (-1.41318e-08 -2.10756e-08 -1.88949e-09) (-3.65445e-08 -2.09474e-08 -2.70376e-10) (-3.84376e-08 -4.53116e-09 4.2236e-09) (-6.90442e-09 3.362e-09 2.0631e-09) (1.46025e-09 4.57429e-09 9.23025e-10) (8.11665e-09 7.23275e-09 1.58881e-09) (6.90262e-09 3.05909e-09 2.17573e-09) (1.9179e-09 -7.79686e-12 1.28164e-09) (-9.29333e-11 -3.30782e-10 4.644e-10) (-1.63672e-09 -8.47561e-10 2.93483e-10) (-1.80802e-09 -8.23974e-10 -9.578e-10) (-1.16035e-09 -7.68631e-10 -1.81513e-09) (-4.98895e-10 -5.16688e-10 -9.06769e-10) (-7.45066e-11 -8.28086e-11 -8.07345e-11) (-3.93848e-13 8.51163e-12 1.70735e-12) (1.49646e-10 5.93906e-10 1.59891e-10) (5.4764e-10 1.8582e-09 4.06204e-10) (7.03372e-10 1.55992e-09 7.92843e-11) (4.27702e-10 4.29191e-10 -9.88538e-11) (3.21751e-10 5.5542e-11 -5.65503e-11) (4.67385e-10 -9.24708e-11 3.04585e-12) (7.71809e-10 -2.47026e-10 9.50703e-12) (1.2535e-09 -3.98972e-10 -1.97781e-10) (1.51447e-09 -3.611e-10 -5.86259e-10) (8.66007e-10 -9.41834e-11 -5.87565e-10) (1.55779e-10 2.15196e-11 -2.57747e-10) (-3.50723e-11 2.6776e-11 -7.24267e-11) (-1.47784e-10 5.09367e-11 2.85164e-11) (-3.42187e-10 7.70129e-11 4.37215e-10) (-2.80873e-10 -1.24617e-11 8.37109e-10) (-1.18677e-10 -8.26982e-11 4.94049e-10) (-4.76804e-11 -5.39652e-11 8.84895e-11) (-4.90016e-12 -4.5075e-11 -4.34707e-11) (4.89587e-10 -2.12026e-10 -1.20088e-09) (1.49978e-09 2.52037e-10 -2.54832e-09) (9.19442e-10 7.21958e-10 -8.97138e-10) (4.9715e-10 1.1246e-09 2.49552e-10) (-1.43776e-10 1.21953e-09 9.22222e-10) (-5.43276e-11 -6.81792e-11 1.55927e-10) (-1.60953e-09 -4.80484e-09 4.89443e-10) (-1.37146e-08 -1.6275e-08 -2.03992e-10) (-3.80474e-08 -1.72982e-08 -1.62538e-09) (-2.76775e-08 -4.39994e-09 1.82206e-09) (-4.45319e-09 1.22733e-09 2.05572e-09) (8.85583e-10 2.80515e-09 1.69993e-09) (8.07196e-09 6.95087e-09 3.09163e-09) (7.33325e-09 3.44696e-09 2.68321e-09) (1.60284e-09 5.01353e-11 1.08782e-09) (-6.17891e-11 -2.38082e-10 2.27095e-10) (-9.4966e-10 -6.29806e-10 -2.98087e-10) (-1.82645e-09 -8.67053e-10 -2.35851e-09) (-1.38371e-09 -7.95415e-10 -2.45028e-09) (-5.94279e-10 -4.45017e-10 -5.05858e-10) (-3.36589e-10 -1.76907e-10 2.12434e-11) (-3.83422e-11 1.2717e-11 1.24415e-11) (1.26237e-10 3.36862e-10 -4.4646e-11) (5.90425e-10 1.17036e-09 -1.52045e-10) (4.49022e-10 7.96605e-10 -8.49727e-11) (2.73704e-10 1.84729e-10 -7.09743e-11) (4.42931e-10 -1.25719e-11 -1.20353e-10) (6.49829e-10 -1.49084e-10 -1.33167e-10) (6.80055e-10 -1.81167e-10 -1.03675e-10) (8.48789e-10 -1.56518e-10 -1.72669e-10) (1.30939e-09 -1.76037e-11 -4.37601e-10) (1.40972e-09 2.718e-10 -6.59799e-10) (5.65453e-10 3.06247e-10 -3.65121e-10) (2.49337e-11 1.05621e-10 -3.49968e-11) (-1.7002e-10 1.46428e-10 1.86763e-10) (-6.0616e-10 -3.11559e-12 1.07976e-09) (-5.72351e-10 -4.68706e-10 1.26705e-09) (-2.63178e-10 -3.07696e-10 3.71907e-10) (-7.40996e-11 -7.21449e-11 3.38711e-12) (7.65053e-12 -4.22256e-11 -2.12468e-10) (7.90103e-10 1.51691e-10 -1.82939e-09) (1.25223e-09 5.6237e-10 -2.19045e-09) (5.07142e-10 5.2372e-10 -4.38232e-10) (4.16399e-10 9.75044e-10 3.95328e-10) (1.11965e-10 9.42617e-10 8.44303e-10) (4.24725e-11 -1.01263e-10 1.96996e-10) (-1.37911e-09 -3.46476e-09 8.44132e-10) (-1.95985e-08 -1.45007e-08 9.82309e-11) (-4.54381e-08 -1.57382e-08 -3.51594e-09) (-1.46525e-08 -3.5556e-09 6.73906e-11) (-8.36182e-10 6.56113e-11 5.4372e-10) (4.39173e-10 1.11622e-09 1.21683e-09) (4.4641e-09 3.92296e-09 3.03699e-09) (5.42191e-09 2.79249e-09 2.98428e-09) (1.03165e-09 1.70322e-10 9.70245e-10) (-5.5144e-11 -7.93889e-11 6.5855e-11) (-6.04999e-10 -4.3051e-10 -7.70311e-10) (-7.54647e-10 -7.62416e-10 -2.99928e-09) (-3.81196e-10 -4.92778e-10 -1.30325e-09) (-4.93938e-10 -2.66461e-10 -1.04611e-10) (-1.56624e-09 -3.27515e-10 5.97649e-10) (-4.74428e-10 4.98212e-11 2.24554e-10) (6.92029e-11 1.33131e-10 -6.97251e-11) (1.48373e-09 1.1364e-09 -1.01438e-09) (1.2902e-09 7.86611e-10 -7.57046e-10) (4.38813e-10 9.72368e-11 -1.85731e-10) (2.07784e-10 -4.36729e-11 -5.25612e-11) (9.90107e-11 -2.97218e-11 -1.47599e-11) (8.39434e-11 -1.13064e-11 -1.43439e-11) (3.20422e-10 1.49247e-11 -1.0681e-10) (1.33386e-09 2.28647e-10 -5.72604e-10) (2.46983e-09 7.70794e-10 -1.01548e-09) (1.79656e-09 9.59956e-10 -4.75717e-10) (5.19522e-10 5.44462e-10 1.80858e-10) (7.76986e-11 3.39507e-10 7.2936e-10) (-2.70171e-10 -2.69796e-10 1.55218e-09) (-4.12457e-10 -8.42832e-10 9.23566e-10) (-4.15673e-10 -4.86837e-10 8.38309e-11) (-3.01663e-10 -1.0448e-10 -1.16481e-10) (-6.38535e-11 6.64742e-11 -1.71266e-10) (4.28931e-10 4.34599e-10 -1.032e-09) (6.41032e-10 4.36294e-10 -1.03844e-09) (1.75934e-10 1.72236e-10 -1.01719e-10) (2.23204e-10 4.51964e-10 2.98947e-10) (1.97189e-10 5.10143e-10 5.53916e-10) (8.27918e-11 -1.3408e-10 2.34873e-10) (-1.7583e-09 -2.40355e-09 7.26407e-10) (-2.91054e-08 -1.31416e-08 -1.40089e-09) (-4.25498e-08 -1.27564e-08 -4.96889e-09) (-5.81828e-09 -2.27673e-09 -2.0951e-10) (-4.45719e-11 -1.84075e-11 6.80569e-11) (3.25792e-10 4.29606e-10 5.69902e-10) (1.63213e-09 1.61964e-09 1.89902e-09) (2.03734e-09 1.31921e-09 2.13334e-09) (3.31419e-10 1.46261e-10 5.71088e-10) (-4.06689e-12 -1.09592e-11 -4.23493e-12) (1.14734e-10 -4.40222e-10 -1.22331e-09) (5.63607e-10 -6.59512e-10 -2.32177e-09) (-3.40713e-11 -1.39591e-10 -3.6888e-10) (-7.60317e-10 -1.31829e-10 1.24183e-10) (-2.98543e-09 -1.09858e-10 1.44687e-09) (-8.24564e-10 8.571e-11 4.9853e-10) (2.08638e-11 3.90314e-11 -3.23479e-11) (1.49745e-09 6.72124e-10 -1.29746e-09) (1.92276e-09 4.91028e-10 -1.43865e-09) (3.5465e-10 -3.18004e-11 -2.68119e-10) (7.04761e-12 -1.40629e-11 -1.04553e-11) (1.43197e-13 -2.79183e-13 1.70386e-13) (5.1832e-11 2.19017e-11 -4.69102e-12) (5.56178e-10 2.005e-10 -2.54067e-10) (1.86854e-09 6.27122e-10 -1.03065e-09) (2.95046e-09 1.15332e-09 -1.13904e-09) (2.74129e-09 1.40862e-09 -5.50913e-11) (1.97265e-09 1.30912e-09 1.27634e-09) (1.20563e-09 5.75254e-10 2.36203e-09) (2.94545e-10 -7.30119e-10 1.76428e-09) (-5.74121e-10 -1.22028e-09 5.04223e-10) (-1.85231e-09 -9.64545e-10 -2.29312e-10) (-1.51619e-09 1.59177e-10 -5.24903e-11) (-1.49194e-10 2.44509e-10 -5.22222e-11) (4.14571e-10 5.04803e-10 -5.54556e-10) (5.48414e-10 2.67771e-10 -5.93931e-10) (5.96919e-11 2.83958e-11 -2.13326e-11) (4.50568e-11 1.03034e-10 1.20114e-10) (8.82931e-11 1.7986e-10 2.79501e-10) (1.31496e-11 -1.3113e-10 1.90829e-10) (-3.68249e-09 -2.23792e-09 5.25758e-10) (-3.62931e-08 -1.07769e-08 -3.97377e-09) (-2.58103e-08 -8.23964e-09 -4.49337e-09) (-1.62561e-09 -1.04711e-09 -1.31787e-10) (5.80613e-12 -8.83879e-12 2.6441e-11) (2.46527e-10 2.45155e-10 2.9624e-10) (6.91129e-10 7.57121e-10 9.92625e-10) (6.50406e-10 5.86493e-10 1.15669e-09) (1.22368e-10 5.32388e-11 2.30954e-10) (8.59327e-11 -6.2612e-11 -6.74497e-11) (7.63813e-10 -5.45903e-10 -1.19158e-09) (5.72096e-10 -3.24353e-10 -1.03377e-09) (-1.79368e-11 -6.06873e-12 -5.631e-11) (-1.05755e-09 7.71394e-11 3.11569e-10) (-2.28729e-09 1.08622e-10 1.25469e-09) (-2.94115e-10 3.01237e-11 2.27015e-10) (6.19852e-11 2.52254e-11 -4.66025e-11) (1.5487e-09 2.7894e-10 -1.23458e-09) (1.45044e-09 9.04038e-11 -1.33976e-09) (5.14242e-11 -5.0598e-11 -2.12507e-10) (-2.33083e-10 -7.26395e-11 -7.50792e-11) (-5.2613e-11 5.35242e-13 1.76711e-11) (1.35294e-10 8.08819e-11 3.45726e-11) (1.36298e-09 5.78723e-10 -3.24254e-10) (2.61206e-09 1.03992e-09 -1.16587e-09) (2.77531e-09 1.17734e-09 -9.06649e-10) (2.74426e-09 1.31815e-09 3.53457e-10) (3.43414e-09 1.61499e-09 2.60346e-09) (2.8294e-09 3.24467e-10 3.86844e-09) (3.4294e-10 -9.85501e-10 1.24771e-09) (-2.28557e-09 -2.09742e-09 9.83597e-11) (-6.45585e-09 -1.01246e-09 -7.0235e-11) (-2.79659e-09 1.03451e-09 1.0085e-09) (-7.9811e-11 5.37272e-10 1.92149e-10) (7.18979e-10 5.92621e-10 -4.62464e-10) (7.35897e-10 1.55363e-10 -5.98751e-10) (3.90633e-11 -7.6035e-12 -2.22398e-11) (-5.11523e-12 6.28366e-12 1.95075e-11) (6.35603e-12 2.79751e-11 1.03112e-10) (-2.00924e-10 -1.43704e-10 1.98004e-10) (-9.37173e-09 -2.49836e-09 1.11965e-10) (-3.24557e-08 -7.54922e-09 -5.53023e-09) (-1.02007e-08 -4.28067e-09 -2.81851e-09) (-3.67405e-10 -3.89044e-10 -5.75319e-11) (1.22207e-11 -1.94554e-12 2.89116e-11) (1.77266e-10 1.93754e-10 2.29216e-10) (3.65623e-10 4.1758e-10 5.41568e-10) (2.802e-10 2.45641e-10 4.88077e-10) (1.07276e-10 2.50828e-12 8.69199e-11) (2.58883e-10 -1.61162e-10 -1.31637e-10) (5.16632e-10 -3.70666e-10 -5.64561e-10) (1.3702e-10 -6.38599e-11 -2.15754e-10) (-3.68953e-11 1.88137e-11 -9.3372e-12) (-1.00259e-09 2.20447e-10 3.82513e-10) (-8.9492e-10 7.64055e-11 5.19054e-10) (-1.38454e-11 -1.31607e-13 1.75382e-11) (3.53458e-10 1.50064e-11 -1.65479e-10) (1.95296e-09 7.9428e-11 -1.27538e-09) (8.55684e-10 -6.51572e-13 -9.5409e-10) (-1.27776e-10 -4.35885e-11 -2.52364e-10) (-9.97115e-10 -1.37493e-10 -2.52556e-10) (-1.9253e-10 3.69232e-12 2.38971e-11) (1.46927e-10 9.92312e-11 6.00141e-11) (1.85917e-09 8.28663e-10 -6.5139e-11) (2.93022e-09 1.20406e-09 -6.52379e-10) (2.36292e-09 9.77387e-10 -3.83302e-10) (2.32107e-09 9.824e-10 6.40435e-10) (4.00384e-09 1.34048e-09 3.21513e-09) (2.97319e-09 -1.27218e-10 3.49538e-09) (-2.68254e-10 -8.30639e-10 5.23456e-10) (-1.00115e-08 -4.09596e-09 -5.86521e-10) (-1.17276e-08 -1.6692e-10 2.03435e-09) (-1.83405e-09 1.43466e-09 1.98744e-09) (3.95892e-10 8.23626e-10 3.9229e-10) (1.36426e-09 6.92765e-10 -6.96922e-10) (9.99909e-10 2.2307e-12 -8.52018e-10) (5.65271e-11 -6.39731e-11 -9.0954e-11) (-1.24552e-11 -8.12757e-12 1.99017e-12) (-1.17938e-11 -9.41372e-12 4.63515e-11) (-1.72655e-09 -2.55078e-10 5.68226e-10) (-1.62826e-08 -2.0942e-09 -8.64789e-10) (-1.87044e-08 -4.46815e-09 -4.78605e-09) (-2.95028e-09 -1.86195e-09 -1.31535e-09) (-8.18396e-11 -1.22379e-10 -3.58851e-12) (1.63086e-11 1.12511e-11 6.05512e-11) (1.51725e-10 1.77355e-10 2.41541e-10) (2.36539e-10 2.38489e-10 3.25597e-10) (1.56661e-10 9.0331e-11 1.87097e-10) (1.01256e-10 -2.06798e-11 2.91205e-11) (2.11339e-10 -1.54682e-10 -1.27149e-10) (1.66219e-10 -1.47473e-10 -2.01436e-10) (2.62697e-12 -8.07263e-13 -1.17596e-11) (-1.69065e-10 9.03657e-11 4.1669e-11) (-6.41221e-10 1.78046e-10 2.5866e-10) (-1.9934e-10 1.59216e-12 1.06899e-10) (4.30083e-12 -2.96265e-12 1.26231e-12) (5.99823e-10 -3.51955e-11 -2.54193e-10) (1.56894e-09 4.25353e-11 -1.05501e-09) (3.81889e-10 4.06534e-11 -5.57844e-10) (-2.07251e-10 -6.61411e-12 -2.39941e-10) (-7.28921e-10 -6.4315e-11 -2.57202e-10) (-8.65414e-11 7.8159e-12 -2.07337e-11) (1.10085e-10 8.71312e-11 2.00067e-11) (1.50036e-09 7.38762e-10 1.29634e-10) (2.55543e-09 1.04775e-09 4.44179e-11) (2.10486e-09 7.62619e-10 2.10654e-10) (2.36438e-09 7.77895e-10 1.07683e-09) (4.08402e-09 9.61204e-10 3.33152e-09) (1.27548e-09 -2.14667e-10 1.57701e-09) (-2.20605e-09 -1.37916e-09 1.63128e-10) (-2.69835e-08 -6.00614e-09 -1.05308e-09) (-1.16113e-08 2.4317e-10 4.36295e-09) (-3.02102e-10 1.12837e-09 1.76939e-09) (1.37362e-09 1.0866e-09 2.28767e-10) (2.38633e-09 6.60256e-10 -1.42986e-09) (1.21863e-09 -2.66217e-10 -1.32402e-09) (8.20283e-11 -2.22276e-10 -3.29724e-10) (-3.0137e-11 -3.91405e-11 -1.94172e-11) (-6.60051e-11 -3.05974e-11 6.94968e-11) (-6.4526e-09 -3.4553e-11 1.23868e-09) (-1.52352e-08 -1.35345e-09 -1.8147e-09) (-6.78304e-09 -2.15657e-09 -2.78934e-09) (-7.89385e-10 -7.26585e-10 -5.03739e-10) (-3.16032e-11 -3.92334e-11 2.18988e-11) (2.34829e-11 3.90383e-11 1.51964e-10) (1.53064e-10 1.58451e-10 2.71915e-10) (1.49912e-10 1.20015e-10 1.81971e-10) (8.12997e-11 2.54571e-11 5.40581e-11) (7.65621e-11 -2.65841e-11 -1.22104e-11) (1.11039e-10 -9.80428e-11 -1.08637e-10) (1.96438e-11 -3.06185e-11 -4.26901e-11) (-1.74673e-11 7.57167e-12 1.12289e-12) (-2.97137e-10 1.36573e-10 9.28446e-11) (-3.21424e-10 6.42798e-11 1.05382e-10) (-7.16877e-11 -1.89599e-11 3.07609e-11) (7.11145e-12 -7.2071e-12 -9.81893e-13) (4.21434e-10 -2.91178e-11 -2.27257e-10) (8.38092e-10 8.36282e-11 -6.84634e-10) (1.36445e-10 5.79959e-11 -2.87607e-10) (-1.08522e-10 1.03612e-11 -1.32498e-10) (-1.43901e-10 -1.45646e-11 -1.01794e-10) (-6.0832e-12 6.03459e-12 -1.66214e-11) (1.4404e-10 1.11831e-10 -1.2205e-11) (1.15053e-09 6.07351e-10 2.10008e-10) (2.23102e-09 8.28625e-10 5.43164e-10) (2.28013e-09 6.25909e-10 7.91682e-10) (2.79777e-09 6.50141e-10 1.64218e-09) (2.5952e-09 4.61501e-10 2.25845e-09) (8.2763e-11 -5.21357e-11 2.46984e-10) (-8.09626e-09 -2.20664e-09 -1.18024e-09) (-3.54226e-08 -5.57475e-09 -1.14024e-09) (-6.46202e-09 -7.92727e-11 3.33914e-09) (4.45884e-10 5.27741e-10 7.84758e-10) (2.80146e-09 1.1518e-09 -4.77666e-10) (3.15595e-09 3.86177e-10 -2.24218e-09) (1.40226e-09 -5.60614e-10 -1.8692e-09) (1.22333e-10 -3.41421e-10 -5.28652e-10) (-4.76999e-11 -4.98024e-11 -1.47587e-11) (-7.53506e-10 -5.61797e-11 3.97473e-10) (-9.23356e-09 3.20784e-10 1.14107e-09) (-7.25177e-09 -8.03498e-10 -1.76832e-09) (-1.80778e-09 -9.0715e-10 -1.26507e-09) (-2.51742e-10 -2.59283e-10 -1.44536e-10) (-4.00817e-11 -2.32203e-11 6.71815e-11) (4.0759e-11 6.50096e-11 2.71659e-10) (1.31251e-10 1.05898e-10 2.26095e-10) (8.03301e-11 4.78261e-11 6.92133e-11) (4.28657e-11 6.40723e-12 4.75847e-12) (6.01015e-11 -2.42066e-11 -3.94769e-11) (4.20655e-11 -4.3488e-11 -6.44858e-11) (-2.27667e-12 -3.07607e-12 -3.99076e-12) (-9.73753e-11 3.15821e-11 2.63932e-11) (-3.03923e-10 9.1784e-11 7.69209e-11) (-2.59828e-10 6.19364e-12 7.0866e-11) (-7.92098e-11 -3.14634e-11 2.67384e-11) (3.34316e-12 -6.03804e-12 -3.74572e-12) (2.35926e-10 -9.65193e-12 -1.87e-10) (3.62644e-10 7.75631e-11 -3.78128e-10) (6.21823e-11 4.46655e-11 -1.47847e-10) (-1.07952e-11 5.23872e-12 -4.0235e-11) (-4.50393e-12 -1.25714e-12 -2.00938e-11) (1.45856e-11 1.20529e-11 -2.07312e-11) (1.99662e-10 1.34533e-10 -1.54679e-11) (1.0547e-09 4.75132e-10 2.55372e-10) (2.07035e-09 5.62522e-10 7.33786e-10) (2.43359e-09 3.97338e-10 1.18301e-09) (2.24822e-09 3.87151e-10 1.63885e-09) (6.0556e-10 1.71695e-10 7.71704e-10) (-1.43717e-10 -1.37265e-11 4.34551e-11) (-1.08602e-08 -1.55818e-09 -3.09169e-09) (-1.88976e-08 -2.96983e-09 -2.37309e-09) (-1.05978e-09 -1.86664e-10 4.97923e-10) (5.58028e-10 1.89471e-10 2.1879e-10) (2.85763e-09 7.04132e-10 -9.19171e-10) (3.20907e-09 1.1791e-11 -2.50054e-09) (1.40189e-09 -6.24399e-10 -1.84234e-09) (2.76089e-11 -1.65606e-10 -2.17518e-10) (-4.42517e-10 -9.32587e-11 1.56334e-10) (-3.92646e-09 1.98419e-10 1.64685e-09) (-5.52904e-09 1.9297e-10 1.85185e-10) (-1.926e-09 -3.6811e-10 -9.93139e-10) (-4.90566e-10 -3.64585e-10 -5.19241e-10) (-1.08894e-10 -8.76576e-11 -1.33556e-11) (-5.79341e-11 -1.04558e-11 1.58436e-10) (5.36586e-11 5.78817e-11 2.8358e-10) (7.46965e-11 4.62327e-11 1.08686e-10) (3.85017e-11 1.67963e-11 1.4294e-11) (3.7195e-11 3.31392e-12 -1.47176e-11) (4.54759e-11 -1.53276e-11 -4.73137e-11) (8.00614e-12 -1.10681e-11 -1.94533e-11) (-1.26665e-11 -1.35159e-12 -1.07464e-12) (-1.84255e-10 3.76754e-11 3.75565e-11) (-3.22816e-10 4.45261e-11 7.38944e-11) (-2.82363e-10 -2.48457e-11 8.40042e-11) (-6.72948e-11 -2.86459e-11 1.55069e-11) (2.57095e-12 -6.55718e-12 -9.54277e-12) (1.11969e-10 -8.40438e-13 -1.32542e-10) (1.59356e-10 5.07528e-11 -1.99772e-10) (6.36478e-11 3.08876e-11 -8.66024e-11) (2.20543e-11 4.88959e-12 -2.07734e-11) (1.9728e-11 1.983e-12 -9.55114e-12) (4.41007e-11 1.93221e-11 -1.05506e-11) (2.43057e-10 1.15768e-10 1.13058e-11) (8.68345e-10 2.59365e-10 1.95775e-10) (1.58453e-09 2.2048e-10 6.39614e-10) (1.74541e-09 1.66881e-10 1.10817e-09) (6.59209e-10 1.87731e-10 7.43532e-10) (-9.06865e-12 5.29405e-11 1.2481e-10) (-5.62371e-10 2.96308e-11 -1.58614e-10) (-5.54715e-09 -5.00232e-10 -3.21505e-09) (-3.27231e-09 -8.37382e-10 -1.82345e-09) (-2.16958e-11 -3.13607e-11 -1.19019e-11) (4.0938e-10 3.00161e-11 -1.8828e-11) (1.84105e-09 2.16963e-10 -8.08426e-10) (2.14389e-09 -1.74438e-10 -1.68047e-09) (3.83024e-10 -2.21723e-10 -5.22784e-10) (-1.62672e-10 -6.72176e-11 1.12385e-11) (-2.91969e-09 3.68277e-11 1.4279e-09) (-6.58257e-09 5.60782e-10 2.4548e-09) (-1.45131e-09 2.10626e-11 -2.086e-10) (-3.82846e-10 -1.31822e-10 -4.39429e-10) (-1.46673e-10 -1.20271e-10 -1.71129e-10) (-6.00573e-11 -3.38919e-11 2.6419e-11) (-4.13723e-11 -6.21596e-13 1.99025e-10) (4.40957e-11 2.97624e-11 1.6979e-10) (3.44462e-11 1.54294e-11 3.32337e-11) (2.75179e-11 8.79052e-12 -2.5204e-12) (3.94201e-11 3.93152e-12 -2.56247e-11) (2.6458e-11 -5.65414e-12 -2.72697e-11) (4.87047e-13 -2.01171e-12 -3.67245e-12) (-2.75996e-11 -6.80964e-13 -3.20204e-13) (-1.83644e-10 2.06933e-11 2.84901e-11) (-2.62774e-10 1.3706e-11 7.30015e-11) (-1.76468e-10 -2.63867e-11 5.97227e-11) (-2.31728e-11 -1.24393e-11 8.48829e-13) (4.41502e-12 -5.96565e-12 -1.48137e-11) (6.12957e-11 2.2164e-12 -8.77006e-11) (1.0549e-10 3.20444e-11 -1.20926e-10) (1.11571e-10 2.84886e-11 -6.81671e-11) (1.37743e-10 1.59087e-11 -1.94352e-11) (1.59756e-10 1.40591e-11 1.51608e-11) (1.91096e-10 3.66687e-11 2.87841e-11) (3.3436e-10 7.65464e-11 4.60763e-11) (5.77676e-10 7.18809e-11 1.50045e-10) (7.90991e-10 3.65791e-11 4.1662e-10) (4.36006e-10 6.59057e-11 4.30948e-10) (1.69832e-11 5.54044e-11 1.37275e-10) (-7.92621e-11 3.57375e-11 2.08056e-11) (-4.87006e-10 4.0091e-11 -4.81544e-10) (-1.39535e-09 -1.97147e-10 -2.45693e-09) (-2.56263e-10 -3.45338e-10 -1.10854e-09) (7.87775e-11 -7.94317e-11 -1.00486e-10) (2.8318e-10 -1.99652e-11 -9.10028e-11) (7.62645e-10 1.38314e-11 -4.15619e-10) (3.73409e-10 -6.14363e-11 -3.19178e-10) (-2.2488e-11 -1.46598e-11 -5.90741e-12) (-1.53327e-09 -8.68214e-11 7.72606e-10) (-4.59992e-09 2.94567e-10 2.48871e-09) (-4.24919e-09 3.96108e-10 1.42101e-09) (-9.11041e-11 -7.14812e-13 -7.41544e-11) (-2.8688e-11 -4.18909e-11 -1.83337e-10) (-1.81856e-11 -2.23477e-11 -2.99657e-11) (-1.41603e-11 -1.06306e-11 2.53107e-11) (1.6967e-11 -7.0124e-13 1.45052e-10) (5.69842e-11 1.18024e-11 8.83202e-11) (5.00691e-11 1.0317e-11 1.87247e-11) (7.24441e-11 1.24896e-11 -1.28893e-11) (9.08273e-11 7.56185e-12 -3.38893e-11) (5.11075e-11 -2.86524e-12 -2.19856e-11) (3.47453e-12 -1.08869e-12 -2.55761e-12) (-5.30582e-12 4.17925e-14 -7.26011e-13) (-6.02967e-11 5.49054e-12 1.22206e-11) (-9.79667e-11 2.22478e-12 4.11522e-11) (-4.3229e-11 -9.83186e-12 1.7056e-11) (-2.74418e-12 -2.98239e-12 -1.54402e-12) (9.59157e-12 -4.84749e-12 -1.58887e-11) (6.55904e-11 1.32315e-12 -6.71686e-11) (1.71642e-10 2.54144e-11 -1.10468e-10) (3.39497e-10 3.82722e-11 -8.51142e-11) (5.6125e-10 3.57002e-11 1.70469e-11) (7.29364e-10 3.28695e-11 1.28977e-10) (7.61865e-10 4.34882e-11 1.45018e-10) (6.91627e-10 3.91072e-11 1.1388e-10) (6.98706e-10 5.94455e-12 1.84809e-10) (5.68536e-10 7.57441e-12 2.8539e-10) (1.85859e-10 4.14968e-11 1.63253e-10) (9.26809e-12 1.85923e-11 2.2886e-11) (-1.9274e-12 1.02972e-11 -1.46233e-11) (5.84074e-11 4.3499e-11 -8.07372e-10) (4.23561e-10 -1.00089e-10 -2.22242e-09) (4.41086e-10 -2.16887e-10 -8.2648e-10) (3.15377e-10 -1.05505e-10 -1.69733e-10) (5.41936e-10 -3.8954e-11 -1.76464e-10) (6.5485e-10 -1.37377e-11 -2.79573e-10) (1.14806e-10 -1.36776e-11 -4.39011e-11) (-3.92489e-11 -8.83026e-12 4.66781e-11) (-9.52916e-10 2.79279e-11 8.47182e-10) (-1.77435e-09 2.02439e-10 1.26763e-09) (-7.63136e-10 1.02854e-10 2.59669e-10) (3.78172e-11 5.74161e-13 -5.89288e-11) (7.03493e-11 -1.72402e-11 -1.15727e-10) (3.54011e-12 -2.77865e-12 -3.27682e-12) (1.16969e-11 -5.44371e-12 3.26602e-11) (8.04708e-11 -5.27774e-13 1.2575e-10) (1.32378e-10 7.76294e-12 8.61103e-11) (1.97542e-10 1.55673e-11 2.50681e-11) (3.43042e-10 2.74758e-11 -3.55308e-11) (4.23118e-10 2.11427e-11 -6.27035e-11) (2.52014e-10 8.86847e-13 -4.25851e-11) (3.59673e-11 -1.57182e-12 -1.10196e-11) (-1.25413e-12 1.04565e-13 -5.18601e-13) (-2.65093e-11 2.04569e-12 7.95302e-12) (-3.06007e-11 4.15633e-13 1.73075e-11) (-4.59511e-12 -1.60573e-12 1.51888e-12) (1.31195e-13 -1.03544e-12 -1.21739e-12) (1.39583e-11 -3.23831e-12 -1.2214e-11) (1.0987e-10 4.49772e-13 -5.73416e-11) (4.3949e-10 2.52905e-11 -1.2028e-10) (1.15489e-09 5.00763e-11 -5.4979e-11) (2.19863e-09 5.22562e-11 2.56576e-10) (3.2355e-09 3.06244e-11 6.391e-10) (3.77576e-09 8.9742e-12 7.88574e-10) (3.99897e-09 -3.20145e-11 8.97346e-10) (3.72359e-09 -9.46174e-11 1.11285e-09) (2.45253e-09 -1.10598e-11 1.03583e-09) (8.74839e-10 9.49807e-11 4.45698e-10) (2.78386e-10 6.52389e-11 6.70336e-11) (5.70821e-10 8.51703e-11 -3.09509e-10) (2.22175e-09 9.77768e-11 -2.42832e-09) (3.58872e-09 -4.05512e-11 -3.41224e-09) (3.03144e-09 -2.97358e-10 -1.61516e-09) (3.31806e-09 -3.04953e-10 -9.45017e-10) (4.55373e-09 -1.636e-10 -1.25995e-09) (4.106e-09 -8.92492e-11 -1.19143e-09) (1.2969e-09 -3.64117e-11 -1.72607e-10) (9.27583e-11 -9.54092e-13 9.1081e-11) (-2.00499e-10 3.90211e-11 4.5236e-10) (-3.00535e-10 6.81532e-11 3.83526e-10) (-1.00371e-11 4.63832e-12 6.98379e-12) (9.15572e-11 3.66518e-12 -6.23144e-11) (5.82074e-11 -1.6216e-12 -4.87697e-11) (7.37521e-12 -4.54705e-13 3.74897e-14) (2.34113e-11 -4.78826e-13 2.72796e-11) (7.904e-11 1.85163e-13 6.48197e-11) (1.4469e-10 1.6609e-12 4.36384e-11) (2.66817e-10 5.37335e-12 -5.41635e-12) (4.29422e-10 1.32054e-11 -5.33887e-11) (3.97258e-10 1.01688e-11 -4.68497e-11) (1.17637e-10 1.58189e-12 -2.16613e-11) (6.26926e-13 4.81149e-14 -2.76455e-12) (-3.88984e-11 1.60441e-12 -2.94271e-12) (-3.78159e-11 2.31284e-12 1.1676e-11) (-5.54054e-12 2.80977e-13 3.74156e-12) (-9.64593e-14 -5.6901e-14 3.36611e-14) (2.93979e-13 -1.62196e-13 -1.39449e-13) (7.06972e-12 -8.47535e-13 -1.6854e-12) (9.84055e-11 1.31579e-13 -1.39668e-11) (5.7176e-10 1.63446e-11 -1.55931e-11) (1.84664e-09 4.06519e-11 1.79839e-10) (4.01479e-09 4.06411e-11 7.46542e-10) (6.26927e-09 -1.33972e-11 1.46956e-09) (8.0309e-09 -9.21766e-11 2.19241e-09) (8.49511e-09 -2.19687e-10 2.92666e-09) (6.43133e-09 -2.55993e-10 3.13036e-09) (2.62059e-09 -7.76869e-11 1.88989e-09) (6.63735e-10 2.77423e-11 5.3034e-10) (4.65126e-10 2.48576e-11 5.12458e-11) (1.79515e-09 3.73912e-11 -1.04425e-09) (5.04236e-09 2.98961e-11 -4.0463e-09) (7.37983e-09 -4.1027e-11 -4.45944e-09) (7.75821e-09 -3.14457e-10 -2.98369e-09) (8.78884e-09 -4.23666e-10 -2.77005e-09) (9.88507e-09 -3.42944e-10 -3.53578e-09) (6.3484e-09 -2.02012e-10 -2.39613e-09) (1.00852e-09 -2.50386e-11 -2.19101e-10) (-4.35615e-11 4.02405e-12 1.2014e-10) (-5.0199e-10 4.84604e-11 6.17979e-10) (-1.33238e-10 2.51445e-11 1.82634e-10) (7.19385e-12 1.5278e-12 1.03727e-12) (6.2932e-12 5.36712e-13 -1.87953e-12) (7.55882e-12 5.01214e-13 -5.08961e-12) (3.1414e-12 1.32643e-13 -1.47859e-12) (5.31575e-12 8.86335e-14 -9.89816e-14) (1.60255e-11 -2.10283e-13 2.15222e-12) (2.57823e-11 -4.18854e-13 -5.08759e-13) (2.68286e-11 -4.29101e-13 -5.18232e-12) (2.09761e-11 -7.84081e-14 -4.69775e-12) (8.36734e-12 5.96816e-14 -1.08028e-12) (3.44603e-13 4.04797e-15 -1.36322e-13) (-3.06349e-12 -1.01948e-14 -1.12279e-12) (-6.83585e-12 8.27552e-14 -9.396e-13) (-9.64708e-13 6.74495e-14 2.29738e-13) (5.45781e-14 2.02894e-14 8.94757e-14) (4.27126e-13 2.01448e-14 2.58923e-13) (3.41778e-13 -3.87406e-14 5.12393e-13) (4.94594e-13 -7.84959e-14 8.7856e-13) (3.05325e-12 -8.42782e-14 1.52603e-12) (3.17904e-11 5.22197e-13 5.08937e-12) (1.67295e-10 2.7508e-12 2.52308e-11) (4.4971e-10 3.2523e-12 9.02569e-11) (7.56026e-10 -3.35306e-12 2.1002e-10) (9.19976e-10 -1.55203e-11 3.69838e-10) (8.05182e-10 -2.8365e-11 5.15517e-10) (4.47838e-10 -2.59817e-11 5.22467e-10) (1.45466e-10 -1.28353e-11 3.61263e-10) (5.24203e-11 -3.66162e-12 1.31724e-10) (3.82317e-11 -1.40332e-12 1.94045e-11) (1.10142e-10 -1.48354e-12 -6.63281e-11) (3.88232e-10 1.59253e-12 -3.66744e-10) (7.37735e-10 3.31577e-12 -5.1874e-10) (8.77903e-10 -1.6086e-11 -4.32173e-10) (9.07225e-10 -3.20827e-11 -4.4471e-10) (7.61874e-10 -2.95145e-11 -5.32059e-10) (2.8321e-10 -1.16617e-11 -3.13081e-10) (-4.58866e-13 -8.96833e-13 -2.91593e-11) (-8.33636e-11 -3.92886e-13 2.78524e-11) (-1.24647e-10 3.27114e-13 9.70125e-11) (-2.45031e-11 8.08056e-13 3.21197e-11) (5.34812e-13 1.55793e-13 1.21844e-12) (1.32989e-10 -1.17026e-10 -2.78968e-11) (2.33413e-11 -2.91523e-11 -7.58683e-12) (1.4067e-13 -1.98341e-13 5.92458e-13) (-2.16385e-11 4.52434e-11 3.48767e-11) (-1.44751e-10 2.9144e-10 1.31361e-10) (-2.90678e-10 5.23752e-10 1.00196e-10) (-2.73115e-10 4.0823e-10 -6.07201e-11) (-1.82623e-10 1.75302e-10 -1.52675e-10) (-1.59075e-10 3.4323e-11 -2.13626e-10) (-1.48861e-10 -6.89182e-11 -2.43538e-10) (-6.97035e-11 -8.43534e-11 -1.42499e-10) (-1.73302e-12 -3.41512e-11 -2.84484e-11) (2.71482e-11 -2.8759e-11 8.81276e-12) (1.45787e-10 -7.15974e-11 1.34937e-10) (3.08246e-10 -6.94568e-11 4.219e-10) (2.87125e-10 5.55974e-11 6.33625e-10) (4.89187e-11 1.73196e-10 5.22764e-10) (-1.37132e-10 1.58122e-10 2.6867e-10) (-1.79748e-10 8.25069e-11 6.46565e-11) (-2.03568e-10 3.32344e-11 -8.03467e-11) (-2.87758e-10 -1.01951e-12 -3.01295e-10) (-3.56294e-10 -2.93209e-11 -5.2045e-10) (-3.0023e-10 -4.22903e-11 -5.024e-10) (-1.42235e-10 -4.02509e-11 -2.79774e-10) (-3.22463e-11 -2.73778e-11 -8.14318e-11) (-2.94519e-12 -1.41192e-11 -8.36517e-12) (2.59866e-12 -4.83294e-11 3.49352e-11) (1.3313e-11 -2.21845e-10 3.57386e-10) (-4.45931e-11 -4.26489e-10 1.10776e-09) (-1.8288e-10 -2.47632e-10 1.36515e-09) (-1.45649e-10 9.14746e-11 6.22071e-10) (-3.84054e-11 1.13289e-10 8.39228e-11) (-1.88182e-12 1.53111e-10 -8.53244e-11) (8.47248e-11 2.10961e-10 -3.69816e-10) (2.09682e-10 1.07877e-10 -4.99556e-10) (2.76056e-10 -2.46461e-11 -3.51052e-10) (3.24088e-10 -1.06568e-10 -1.75813e-10) (4.27031e-10 -1.90046e-10 -5.40825e-11) (4.61833e-10 -2.46433e-10 1.30697e-11) (3.21242e-10 -2.10101e-10 -9.41404e-12) (-1.55887e-11 -8.91815e-11 -3.31926e-11) (-5.80406e-11 -1.1442e-10 4.82318e-11) (-6.05094e-11 -7.74763e-11 1.72176e-10) (-8.49685e-12 9.0015e-11 2.72387e-10) (6.55044e-11 4.66377e-10 3.3834e-10) (5.42011e-11 7.61269e-10 1.63582e-10) (-3.40388e-11 5.23748e-10 -9.95805e-11) (-5.36695e-11 1.89807e-10 -1.9956e-10) (-4.55531e-11 1.32458e-11 -3.2576e-10) (-5.98779e-12 -1.96015e-10 -5.35557e-10) (6.44455e-11 -3.08692e-10 -5.47432e-10) (9.4431e-11 -1.92354e-10 -2.86319e-10) (6.80741e-11 -5.60912e-11 -6.17885e-11) (7.99285e-11 -1.7004e-11 1.53589e-11) (2.11632e-10 2.96389e-11 1.65289e-10) (3.57451e-10 1.7089e-10 4.31139e-10) (3.02152e-10 3.17128e-10 5.56978e-10) (5.89582e-11 2.61876e-10 3.49414e-10) (-9.44109e-11 1.23043e-10 1.14473e-10) (-3.10765e-10 8.73285e-11 1.05889e-11) (-7.41006e-10 -1.64142e-12 -1.87357e-10) (-8.08129e-10 -1.39432e-10 -3.48149e-10) (-4.46443e-10 -1.7854e-10 -3.19752e-10) (-1.51605e-10 -1.48517e-10 -2.27657e-10) (-2.13212e-11 -1.09303e-10 -1.36434e-10) (1.21191e-11 -5.91439e-11 -3.32526e-11) (1.40347e-11 -6.82766e-11 5.29454e-11) (-6.07073e-11 -2.4842e-10 6.74257e-10) (-5.94356e-10 -3.85541e-10 2.29613e-09) (-1.15228e-09 -1.35805e-10 2.84671e-09) (-6.96625e-10 1.46175e-10 1.25649e-09) (-9.73821e-11 8.21266e-11 1.15752e-10) (6.34591e-12 5.70552e-11 -4.14973e-11) (1.90302e-10 1.63514e-10 -3.42723e-10) (4.51246e-10 1.56966e-10 -5.96925e-10) (5.32909e-10 6.64581e-11 -5.31466e-10) (4.58083e-10 -8.24128e-12 -3.60288e-10) (3.18164e-10 -5.66571e-11 -2.36681e-10) (1.66217e-10 -8.16676e-11 -1.59306e-10) (4.81756e-11 -8.4953e-11 -9.25446e-11) (-3.5282e-10 -4.33042e-10 2.01128e-11) (-1.20258e-09 -1.33922e-09 9.8652e-10) (-1.21179e-09 -1.2374e-09 1.73411e-09) (-2.46514e-10 -8.92534e-11 7.20503e-10) (1.81931e-10 4.8095e-10 2.89316e-10) (1.20961e-09 2.277e-09 -2.24347e-10) (1.31364e-09 2.49788e-09 -1.19199e-09) (4.46636e-10 8.7005e-10 -1.04793e-09) (9.09679e-11 3.8165e-11 -7.48431e-10) (2.14649e-11 -3.23153e-10 -6.96075e-10) (6.17145e-11 -3.12513e-10 -3.84339e-10) (8.86579e-11 -1.1416e-10 -7.50268e-11) (2.01256e-10 -6.91642e-11 5.33952e-11) (5.07425e-10 1.15849e-11 2.84908e-10) (6.62466e-10 2.24171e-10 4.30266e-10) (5.54305e-10 3.87979e-10 3.72484e-10) (2.99624e-10 3.55219e-10 2.31569e-10) (5.69626e-11 1.8044e-10 9.26271e-11) (-4.31028e-11 6.72323e-11 2.54858e-11) (-2.38322e-10 4.63562e-11 -7.88724e-12) (-6.9815e-10 -8.29858e-11 -1.19838e-10) (-9.23589e-10 -2.68838e-10 -2.52209e-10) (-6.8201e-10 -3.32662e-10 -3.11145e-10) (-3.33709e-10 -3.11693e-10 -2.85559e-10) (-9.20331e-11 -2.68282e-10 -1.7637e-10) (1.42102e-11 -2.03635e-10 -1.84904e-11) (6.66261e-12 -2.14905e-10 2.12448e-10) (-3.64265e-10 -2.90496e-10 1.06172e-09) (-1.45609e-09 -1.17296e-10 2.22177e-09) (-1.61015e-09 9.25227e-11 1.64125e-09) (-4.92826e-10 8.62965e-11 3.15982e-10) (-3.0525e-11 2.66187e-11 -4.66125e-12) (4.54575e-11 7.80724e-11 -7.38626e-11) (2.5407e-10 1.79957e-10 -1.78666e-10) (4.61917e-10 2.06685e-10 -2.01915e-10) (5.86142e-10 1.7336e-10 -2.04679e-10) (6.19182e-10 1.09312e-10 -2.67463e-10) (4.91368e-10 1.32874e-11 -3.52593e-10) (1.95488e-10 -7.24941e-11 -2.94185e-10) (-2.48437e-11 -1.184e-10 -1.40639e-10) (-1.59835e-09 -1.52262e-09 7.10291e-10) (-5.61475e-09 -4.95688e-09 4.15475e-09) (-6.54641e-09 -4.94492e-09 5.07758e-09) (-1.69286e-09 -9.18712e-10 1.15806e-09) (-1.57489e-11 5.69734e-11 -6.32949e-12) (1.2627e-09 2.27945e-09 -1.13471e-09) (3.77047e-09 5.21157e-09 -3.24321e-09) (2.68493e-09 2.86756e-09 -2.66699e-09) (7.73141e-10 3.65353e-10 -9.19075e-10) (2.57521e-10 -1.49698e-10 -2.61881e-10) (3.74612e-10 -3.97915e-10 -1.00632e-10) (7.73472e-10 -7.06828e-10 1.87375e-10) (7.83873e-10 -6.2434e-10 5.31766e-10) (4.25236e-10 -2.30835e-10 5.37883e-10) (2.59347e-10 8.61508e-11 3.40087e-10) (3.96288e-10 4.74138e-10 2.32365e-10) (6.06716e-10 1.13021e-09 2.48167e-11) (4.38954e-10 1.1591e-09 -1.80403e-10) (6.71596e-11 4.77805e-10 -1.43667e-10) (-7.33722e-11 9.63391e-11 -6.39548e-11) (-3.21489e-10 -7.69862e-12 -1.1362e-10) (-8.72866e-10 -2.65949e-10 -2.54201e-10) (-1.02408e-09 -5.33847e-10 -4.01228e-10) (-5.67007e-10 -6.28545e-10 -3.56005e-10) (-1.54944e-10 -6.03706e-10 -1.04857e-10) (-7.1607e-11 -5.21299e-10 2.54683e-10) (-5.62592e-10 -4.62914e-10 1.00704e-09) (-2.56572e-09 -1.15018e-10 2.51884e-09) (-3.84783e-09 5.6435e-11 2.43988e-09) (-1.59345e-09 -2.14297e-10 5.93542e-10) (-1.28246e-10 -7.25581e-11 -4.21748e-11) (8.56894e-11 -3.19619e-11 -2.15131e-10) (5.95341e-10 2.37549e-10 -6.01042e-10) (1.08505e-09 7.2136e-10 -5.83945e-10) (1.1944e-09 8.98441e-10 -2.30664e-10) (9.69658e-10 6.67709e-10 -3.97655e-11) (5.82533e-10 3.11258e-10 -9.56665e-11) (2.34073e-10 8.19608e-11 -1.50539e-10) (3.0025e-11 -1.41622e-11 -1.02904e-10) (-1.45787e-10 -1.55413e-10 -7.29571e-11) (-2.12607e-09 -1.60009e-09 1.14673e-09) (-9.12939e-09 -6.72773e-09 5.82105e-09) (-9.38295e-09 -7.35489e-09 5.37434e-09) (-1.78582e-09 -1.71452e-09 3.23885e-10) (-5.57321e-11 -4.04109e-11 -3.97349e-10) (7.15473e-10 1.73186e-09 -2.17271e-09) (1.74316e-09 4.25601e-09 -3.09298e-09) (1.51298e-09 2.5802e-09 -1.60319e-09) (6.09433e-10 3.48633e-10 -3.40215e-10) (6.4115e-10 -3.57545e-10 -8.47834e-11) (8.63669e-10 -1.26181e-09 2.89922e-10) (-5.41049e-11 -1.02161e-09 8.05181e-10) (-2.26322e-09 -9.06431e-10 2.85822e-09) (-4.27062e-09 3.70292e-10 4.68015e-09) (-9.76939e-10 7.14588e-10 1.60595e-09) (4.90953e-10 6.49085e-10 2.27454e-10) (5.07206e-09 2.93591e-09 -1.62792e-09) (9.99564e-09 4.75701e-09 -4.80799e-09) (7.22439e-09 3.39377e-09 -4.29414e-09) (1.86466e-09 9.91355e-10 -1.54715e-09) (4.64057e-11 6.86088e-11 -2.21659e-10) (-2.86797e-10 -9.72535e-11 -2.33482e-10) (-6.12415e-10 -4.59254e-10 -3.71213e-10) (-3.63168e-10 -6.41753e-10 -2.06335e-10) (-2.62301e-10 -7.11413e-10 1.99387e-10) (-1.12391e-09 -1.02168e-09 1.33566e-09) (-4.43291e-09 -9.13614e-10 3.91081e-09) (-6.36247e-09 -5.38835e-11 4.54574e-09) (-2.80516e-09 -6.96508e-11 1.7941e-09) (-2.52837e-10 -9.29552e-11 1.30808e-10) (1.67669e-11 -4.70334e-11 -3.62751e-11) (3.32826e-10 -1.12486e-10 -3.6728e-10) (7.62585e-10 8.85675e-11 -7.54129e-10) (9.06128e-10 4.00412e-10 -7.57562e-10) (7.99208e-10 5.18053e-10 -4.78421e-10) (5.70511e-10 4.05554e-10 -2.22466e-10) (3.18856e-10 2.23711e-10 -1.21877e-10) (1.2387e-10 8.95049e-11 -9.23562e-11) (1.11476e-11 9.27714e-12 -3.31734e-11) (-8.27057e-11 -6.31061e-11 -1.68558e-12) (-1.60279e-09 -9.02351e-10 9.4863e-10) (-7.7114e-09 -5.85461e-09 5.2921e-09) (-6.24587e-09 -6.7987e-09 3.02786e-09) (-8.67905e-10 -2.04502e-09 -8.15298e-10) (4.18933e-10 -3.71343e-10 -2.37491e-09) (9.44012e-10 1.97224e-09 -3.6091e-09) (8.08402e-10 2.83303e-09 -2.36248e-09) (5.2295e-10 1.01929e-09 -5.4858e-10) (2.30199e-10 2.68175e-11 -2.43286e-12) (1.14091e-10 -3.58508e-10 2.39305e-10) (-3.18364e-09 -1.45524e-09 2.32439e-09) (-2.45006e-08 -3.19991e-10 1.32682e-08) (-2.66087e-08 5.76963e-10 1.81496e-08) (-6.04173e-09 -9.68905e-10 7.1075e-09) (-1.35974e-10 -1.09858e-10 7.80872e-10) (5.54546e-10 2.82546e-10 2.28006e-11) (5.45195e-09 3.17257e-09 -2.52696e-09) (1.44992e-08 7.91457e-09 -8.54529e-09) (1.63107e-08 8.17652e-09 -1.04303e-08) (8.25138e-09 4.03141e-09 -5.95315e-09) (1.51998e-09 7.09269e-10 -1.63083e-09) (9.87798e-11 -5.28513e-11 -3.74119e-10) (-1.37446e-11 -2.76457e-10 -2.40987e-10) (5.09695e-12 -4.25906e-10 -1.46991e-11) (-2.0301e-10 -5.97254e-10 6.12481e-10) (-2.28165e-09 -7.9615e-10 3.16974e-09) (-7.59388e-09 8.49574e-11 6.39489e-09) (-7.80352e-09 4.09667e-10 4.25416e-09) (-2.20262e-09 -1.96258e-10 6.72513e-10) (-9.8521e-11 -9.13931e-11 -2.60273e-11) (1.85237e-10 -1.43148e-10 -1.2886e-10) (9.13477e-10 -1.36625e-10 -3.52032e-10) (1.36303e-09 1.34038e-10 -4.94375e-10) (1.01369e-09 2.43717e-10 -4.3713e-10) (4.05237e-10 1.27e-10 -2.25934e-10) (1.01579e-10 3.69477e-11 -7.90516e-11) (3.9601e-11 2.47039e-11 -5.03186e-11) (5.13451e-11 5.8735e-11 -9.70078e-11) (2.86664e-11 5.95366e-11 -9.68278e-11) (-2.50764e-11 -1.02455e-12 -6.4265e-12) (-1.42646e-09 -5.87215e-10 1.04863e-09) (-7.06041e-09 -5.673e-09 4.17667e-09) (-6.41882e-09 -9.38465e-09 4.20129e-10) (-1.29313e-09 -5.42793e-09 -3.81598e-09) (1.26996e-09 -6.94507e-10 -4.73795e-09) (2.69427e-09 3.16635e-09 -5.0436e-09) (2.15218e-09 3.28934e-09 -2.28626e-09) (8.22494e-10 8.54724e-10 -1.47679e-10) (6.70578e-11 5.433e-11 1.64245e-10) (-4.89958e-09 2.53371e-10 3.28305e-09) (-4.10398e-08 3.48514e-09 1.90046e-08) (-3.52564e-08 -1.14378e-09 2.31573e-08) (-8.14076e-09 -3.92523e-09 9.81892e-09) (-1.22781e-09 -1.28457e-09 1.70384e-09) (-3.72514e-11 -3.36763e-11 1.03956e-11) (1.46794e-10 1.41884e-10 -1.99038e-10) (2.19787e-09 1.62949e-09 -1.52229e-09) (7.22187e-09 4.40138e-09 -4.16213e-09) (1.09741e-08 5.80319e-09 -6.32734e-09) (8.29169e-09 3.93957e-09 -5.16459e-09) (3.37817e-09 1.19255e-09 -2.49745e-09) (9.70871e-10 -6.68953e-11 -8.42093e-10) (2.97172e-10 -2.56912e-10 -1.66515e-10) (9.1033e-11 -2.56659e-10 2.08223e-10) (-7.08679e-10 -3.88088e-10 1.90605e-09) (-4.83285e-09 6.1582e-10 5.49882e-09) (-8.49279e-09 1.60832e-09 4.69822e-09) (-4.61959e-09 4.51978e-10 5.49269e-10) (-8.01757e-10 -2.1509e-10 -4.89441e-10) (9.91955e-11 -3.72184e-10 -5.76503e-10) (8.6592e-10 -4.73402e-10 -5.99832e-10) (1.51619e-09 -2.44635e-10 -2.55827e-10) (1.74672e-09 1.00167e-10 9.89844e-11) (1.17274e-09 1.8045e-10 1.68442e-10) (3.82999e-10 3.76301e-11 5.95727e-11) (5.81444e-11 -6.69349e-12 8.13177e-13) (1.43399e-11 -7.31243e-13 -1.30171e-11) (4.16989e-11 4.03594e-11 -8.60727e-11) (4.59919e-11 1.01358e-10 -1.29523e-10) (-1.85028e-11 1.51415e-11 -1.12807e-12) (-1.30352e-09 -3.29393e-10 1.01815e-09) (-7.17469e-09 -6.29823e-09 2.49383e-09) (-1.27672e-08 -1.87847e-08 -3.16269e-09) (-6.60836e-09 -1.21793e-08 -7.04057e-09) (-9.26891e-11 -1.00317e-09 -3.21285e-09) (3.53178e-09 3.26232e-09 -4.89738e-09) (5.97875e-09 5.76734e-09 -3.58247e-09) (1.87969e-09 2.18844e-09 9.16852e-11) (-1.30938e-09 1.66034e-09 1.71711e-09) (-2.07705e-08 6.3312e-09 1.23406e-08) (-2.15237e-08 9.76706e-10 1.7256e-08) (-5.58645e-09 -3.73716e-09 1.00287e-08) (-1.67073e-09 -2.24139e-09 3.13294e-09) (-5.82265e-10 -5.04415e-10 9.14438e-11) (-2.34863e-10 -1.92145e-10 -4.61344e-10) (1.41372e-10 8.37684e-11 -6.50872e-10) (9.16685e-10 7.06186e-10 -9.44167e-10) (2.7972e-09 1.98016e-09 -1.6848e-09) (4.52342e-09 2.73244e-09 -2.47389e-09) (4.16767e-09 2.03421e-09 -2.31765e-09) (2.43986e-09 7.6691e-10 -1.37233e-09) (9.10459e-10 2.55998e-11 -3.73868e-10) (2.10254e-10 -6.10149e-11 6.51727e-11) (2.10813e-11 -3.47437e-11 6.39279e-10) (-1.42249e-09 5.92134e-10 2.77015e-09) (-4.14464e-09 1.55805e-09 3.49054e-09) (-3.38027e-09 8.19264e-10 8.23313e-10) (-8.67378e-10 -9.90413e-11 -5.10138e-10) (9.47629e-11 -7.15757e-10 -1.27069e-09) (1.27005e-09 -1.28921e-09 -1.66397e-09) (1.00664e-09 -5.73991e-10 -5.84469e-10) (4.7036e-10 -4.73384e-11 -1.0062e-11) (4.7316e-10 1.52409e-10 2.24313e-10) (4.88208e-10 1.99532e-10 3.98134e-10) (2.58036e-10 2.85385e-11 2.65535e-10) (6.85836e-11 -3.2171e-11 6.15105e-11) (2.05344e-11 -9.68953e-12 -6.49538e-12) (7.49969e-11 4.05898e-11 -9.82656e-11) (9.06913e-11 1.44632e-10 -1.27476e-10) (-2.32749e-11 5.71764e-11 2.42497e-11) (-7.91856e-10 -1.47235e-10 7.44282e-10) (-6.68072e-09 -6.75017e-09 8.61499e-10) (-2.22559e-08 -2.68133e-08 -5.55681e-09) (-2.09566e-08 -1.8834e-08 -5.85675e-09) (-4.00747e-09 -1.55057e-09 -1.41268e-09) (2.05333e-11 7.30221e-10 -5.76349e-10) (3.32366e-09 4.73352e-09 -1.68313e-09) (1.99602e-09 4.7185e-09 -7.68733e-11) (-1.15826e-09 2.90124e-09 1.51819e-09) (-1.82012e-09 9.87052e-10 3.31988e-09) (-2.58193e-10 -1.88514e-09 6.01525e-09) (-4.54558e-10 -2.65198e-09 4.74968e-09) (-1.1171e-09 -9.06686e-10 8.48297e-10) (-1.05706e-09 -5.56575e-10 -6.39066e-10) (-6.13479e-10 -4.35621e-10 -1.57722e-09) (7.07949e-11 4.66099e-11 -8.87666e-10) (4.97768e-10 4.52699e-10 -5.47679e-10) (1.43761e-09 1.21439e-09 -6.78743e-10) (1.96809e-09 1.41504e-09 -7.83864e-10) (1.50368e-09 8.53672e-10 -6.05953e-10) (7.10201e-10 2.64407e-10 -2.19826e-10) (2.31609e-10 3.66523e-11 3.32012e-11) (1.18396e-10 1.90352e-11 2.04374e-10) (-6.46295e-11 1.75893e-10 6.97412e-10) (-6.37665e-10 5.88854e-10 1.10433e-09) (-7.65227e-10 5.05896e-10 4.42879e-10) (-2.13897e-10 7.48322e-11 -1.18387e-10) (1.34086e-10 -3.3333e-10 -8.66417e-10) (1.50867e-09 -1.54673e-09 -2.29622e-09) (1.30093e-09 -1.1766e-09 -1.26006e-09) (1.9306e-10 -1.46883e-10 -7.30618e-11) (3.22899e-11 1.39451e-11 6.4006e-11) (6.28012e-11 2.02626e-10 3.86355e-10) (1.00049e-10 2.14372e-10 5.4987e-10) (7.16551e-11 -9.89509e-13 2.71685e-10) (3.0047e-11 -3.46226e-11 2.38741e-11) (1.11865e-10 -4.47062e-11 -1.19401e-10) (3.60021e-10 1.66997e-10 -4.30599e-10) (2.95317e-10 3.81653e-10 -2.04135e-10) (7.76982e-12 2.45342e-10 1.52839e-10) (-3.64889e-10 -6.27172e-11 5.37622e-10) (-5.0025e-09 -6.04925e-09 2.23902e-12) (-2.30261e-08 -2.39469e-08 -4.52731e-09) (-3.24119e-08 -1.86829e-08 -1.3356e-09) (-2.09739e-08 -3.45687e-09 2.72343e-09) (-6.41912e-09 1.97937e-09 1.53797e-09) (-1.07974e-09 2.36521e-09 3.59338e-10) (8.9386e-10 3.10119e-09 1.32019e-10) (1.77284e-09 1.72583e-09 5.68496e-10) (2.19668e-09 1.30756e-10 1.77433e-09) (1.42024e-09 -1.25565e-09 2.98893e-09) (-5.23712e-10 -8.55452e-10 1.40202e-09) (-9.00602e-10 -4.18935e-10 -2.43468e-11) (-1.32385e-09 -5.97257e-10 -1.59173e-09) (-7.28612e-10 -4.20149e-10 -1.77023e-09) (-3.50882e-11 3.78977e-11 -3.40485e-10) (1.55123e-10 2.63932e-10 -1.04769e-10) (7.0304e-10 9.86757e-10 -7.03795e-11) (9.08886e-10 1.06083e-09 -1.6269e-10) (4.78185e-10 4.34816e-10 -1.32043e-10) (1.2126e-10 6.34455e-11 -1.75266e-11) (4.987e-11 -1.30248e-12 2.37464e-11) (8.32442e-11 -1.0456e-11 9.81359e-11) (1.10875e-10 5.77137e-11 1.77492e-10) (7.10695e-11 1.24943e-10 1.14764e-10) (3.53079e-11 6.87337e-11 -1.63281e-11) (2.18564e-10 1.80944e-11 -3.44168e-10) (1.12439e-09 -6.37612e-10 -1.58301e-09) (1.2722e-09 -1.03105e-09 -1.72263e-09) (1.82418e-10 -2.36068e-10 -2.91108e-10) (-1.76478e-11 -9.78554e-12 2.49806e-11) (-3.21092e-10 1.25112e-10 7.57875e-10) (-3.75861e-10 3.32059e-10 1.40687e-09) (-1.10047e-10 1.12511e-10 7.39206e-10) (7.26732e-12 -2.42069e-11 5.04432e-11) (1.48401e-10 -1.69178e-10 -2.17991e-10) (7.40198e-10 -2.41549e-10 -1.33601e-09) (8.01665e-10 4.37025e-10 -1.06903e-09) (5.35187e-10 8.33776e-10 -1.18572e-10) (1.68088e-10 8.47947e-10 6.88713e-10) (-2.46824e-11 -2.5891e-11 3.00331e-10) (-2.59434e-09 -4.21123e-09 -2.02548e-10) (-1.39404e-08 -1.41541e-08 -2.34155e-09) (-1.84766e-08 -9.55541e-09 -4.06343e-11) (-1.35042e-08 -2.69192e-09 2.08756e-09) (-7.12112e-09 -1.23268e-10 1.97776e-09) (-2.05833e-09 6.85967e-10 1.02784e-09) (-8.24528e-11 7.71401e-10 5.33454e-10) (1.33722e-09 1.29919e-09 9.77328e-10) (1.90118e-09 6.54034e-10 1.56783e-09) (5.24553e-10 -1.32873e-10 1.04871e-09) (-1.26187e-10 -1.14054e-10 1.51311e-10) (-8.67193e-10 -3.2068e-10 -6.23591e-10) (-1.8114e-09 -7.0779e-10 -2.50329e-09) (-7.39666e-10 -3.2274e-10 -1.24259e-09) (-4.63783e-11 1.74235e-11 -7.73917e-11) (1.43077e-11 2.05415e-10 2.15488e-11) (2.34158e-10 9.31883e-10 1.32392e-10) (3.31255e-10 9.21285e-10 -1.78241e-11) (1.36268e-10 2.57204e-10 -7.62621e-11) (3.18965e-11 9.76636e-12 -2.4298e-11) (8.37968e-11 -6.38799e-11 -2.19176e-11) (3.00081e-10 -1.52032e-10 4.79332e-11) (7.14993e-10 -2.60836e-11 1.90459e-10) (1.09803e-09 3.1102e-10 1.40007e-10) (1.11647e-09 4.01416e-10 -2.83865e-10) (1.15309e-09 1.14666e-10 -8.99308e-10) (1.06025e-09 -2.97755e-10 -1.44527e-09) (2.79951e-10 -2.1647e-10 -8.02911e-10) (-4.20921e-11 -7.0284e-12 -5.31065e-11) (-4.49902e-10 8.45039e-11 4.21608e-10) (-1.16012e-09 1.86402e-10 2.33903e-09) (-6.8917e-10 8.55675e-13 2.17592e-09) (-6.04987e-11 -7.96452e-11 3.21365e-10) (6.66874e-11 -1.26307e-10 -1.05196e-10) (6.32021e-10 -8.23426e-10 -1.9519e-09) (4.46858e-10 -3.4541e-10 -2.34483e-09) (1.59439e-10 2.98241e-10 -4.46948e-10) (5.80407e-10 1.32452e-09 4.09391e-10) (7.45931e-10 1.72614e-09 1.63688e-09) (1.54771e-10 -4.86997e-12 1.82139e-10) (-8.79784e-10 -1.89984e-09 -1.01575e-10) (-5.21119e-09 -5.77375e-09 -6.43536e-10) (-4.61405e-09 -3.34443e-09 -2.25096e-10) (-2.08886e-09 -9.64496e-10 -1.41976e-10) (-1.43689e-09 -2.85507e-10 4.12136e-12) (-1.44449e-09 1.18401e-10 5.70763e-10) (-7.0679e-10 6.32517e-10 1.23779e-09) (5.61641e-10 1.02869e-09 1.95102e-09) (1.13628e-09 5.796e-10 1.80621e-09) (1.71692e-10 1.49257e-11 3.32369e-10) (-2.88327e-11 -9.9599e-12 -3.31726e-11) (-7.27448e-10 -2.22133e-10 -1.4788e-09) (-8.93888e-10 -4.67267e-10 -2.03059e-09) (-2.8401e-10 -1.27397e-10 -4.55682e-10) (-3.90303e-11 1.79031e-11 -9.96646e-12) (-5.7789e-11 2.2867e-10 7.52543e-11) (-1.37394e-11 7.30782e-10 1.09739e-10) (3.77163e-11 6.57941e-10 -6.66886e-11) (2.80361e-11 1.56509e-10 -1.03361e-10) (1.64485e-11 -1.29889e-11 -5.36012e-11) (4.40005e-11 -1.4826e-10 -4.74216e-11) (9.95873e-11 -2.06982e-10 4.36261e-11) (2.38597e-10 -8.87368e-11 6.62056e-11) (1.21838e-09 2.62493e-10 -1.06162e-10) (2.97857e-09 9.67275e-10 -1.14366e-09) (3.12752e-09 8.36417e-10 -2.18659e-09) (1.39222e-09 2.96249e-10 -1.67713e-09) (6.99043e-11 9.672e-11 -3.56355e-10) (-1.67342e-10 1.03236e-10 3.559e-11) (-9.18282e-10 3.28328e-10 1.44358e-09) (-8.63951e-10 -9.23628e-11 3.12734e-09) (-1.03789e-10 -3.51299e-10 1.28607e-09) (4.12576e-11 -1.11697e-10 2.97459e-11) (2.3286e-10 -5.33951e-10 -9.44179e-10) (-3.5087e-10 -8.61958e-10 -2.93825e-09) (-9.60731e-10 -2.34013e-10 -1.63646e-09) (-9.79421e-11 7.55834e-11 -3.8133e-11) (5.28453e-10 1.06285e-09 8.6363e-10) (1.58402e-09 1.75039e-09 1.80633e-09) (3.11059e-10 6.89244e-11 1.88522e-10) (-8.06423e-11 -3.76886e-10 3.49269e-11) (-1.01738e-09 -1.6607e-09 3.82275e-11) (-1.25416e-09 -1.58129e-09 -1.62122e-10) (-1.0443e-09 -8.39628e-10 -4.73422e-10) (-8.89214e-10 -2.47935e-10 -4.06498e-10) (-5.04071e-10 6.14541e-11 1.20637e-11) (-3.99505e-10 2.74355e-10 6.62614e-10) (2.44803e-10 7.2664e-10 2.20084e-09) (8.11542e-10 5.52164e-10 1.92315e-09) (1.36728e-10 6.58179e-11 1.48301e-10) (7.21739e-11 1.95796e-11 -2.60327e-10) (3.48726e-11 -2.05636e-10 -1.69114e-09) (-2.17517e-10 -2.3825e-10 -1.03434e-09) (-1.3927e-10 -2.3829e-11 -8.67102e-11) (-1.54673e-10 7.84764e-11 7.45094e-11) (-8.14984e-11 2.27776e-10 9.11161e-11) (1.82224e-11 4.20025e-10 -1.7087e-11) (6.70939e-12 3.7492e-10 -1.52819e-10) (-2.53611e-11 8.55256e-11 -1.03509e-10) (-8.38566e-12 -1.97106e-11 -2.07455e-11) (-9.46715e-13 -2.62972e-10 5.13086e-11) (-2.38265e-11 -3.85141e-10 1.0598e-10) (7.11765e-13 -5.31696e-11 -2.39113e-11) (4.59864e-10 1.30887e-10 -5.20974e-10) (3.71291e-09 1.45752e-09 -2.69362e-09) (5.10093e-09 2.07435e-09 -3.34843e-09) (1.71656e-09 9.94687e-10 -1.21845e-09) (9.04786e-11 2.31901e-10 -3.57232e-11) (-2.09074e-10 4.60709e-10 6.85936e-10) (-3.26291e-10 3.85003e-10 2.93932e-09) (3.25495e-10 -5.24839e-10 2.75488e-09) (2.42985e-10 -4.36471e-10 4.81274e-10) (9.1193e-11 -3.09511e-10 -2.2025e-10) (-3.6337e-10 -5.79273e-10 -1.72352e-09) (-2.0433e-09 -4.94385e-10 -3.12261e-09) (-2.15368e-09 -3.4527e-10 -1.29461e-09) (-3.57825e-10 -3.29193e-11 1.23876e-10) (2.72905e-10 3.71772e-10 7.48511e-10) (1.47939e-09 1.11897e-09 1.3312e-09) (3e-10 1.30384e-10 2.16058e-10) (1.02595e-10 -1.28584e-10 8.92766e-11) (-5.15938e-11 -5.58159e-10 1.00499e-10) (-6.39302e-10 -1.03787e-09 -2.79517e-10) (-1.61144e-09 -1.1513e-09 -1.04419e-09) (-1.48231e-09 -4.17208e-10 -8.1355e-10) (-3.99844e-10 5.52124e-11 -9.27645e-11) (-7.79901e-11 9.88243e-11 1.4135e-10) (2.483e-10 4.07006e-10 1.13061e-09) (7.31499e-10 4.16943e-10 1.2928e-09) (3.78117e-10 1.0365e-10 1.33578e-10) (4.9708e-10 1.24713e-11 -5.33071e-10) (3.03387e-10 -1.26342e-10 -1.16287e-09) (-1.02642e-10 -4.23559e-11 -2.82902e-10) (-1.96733e-10 2.33396e-11 4.23409e-11) (-3.27353e-10 1.55176e-10 2.40437e-10) (-7.14213e-11 1.47128e-10 5.18374e-11) (7.14302e-11 2.51482e-10 -1.02253e-10) (9.10258e-11 2.4682e-10 -2.23143e-10) (9.70103e-12 2.3799e-11 -5.35018e-11) (3.01194e-11 -5.53868e-11 3.4363e-12) (5.30039e-11 -4.12173e-10 1.62523e-10) (-3.67109e-10 -4.82043e-10 5.43901e-11) (-5.21304e-10 -2.48631e-10 -3.92302e-10) (1.18137e-10 1.46451e-10 -1.12192e-09) (2.34943e-09 1.32032e-09 -2.7849e-09) (3.13336e-09 1.96351e-09 -2.01011e-09) (1.38983e-09 1.21074e-09 -2.39292e-10) (6.53154e-10 9.34888e-10 7.24158e-10) (8.56221e-10 1.15467e-09 2.78564e-09) (1.57858e-09 1.06747e-10 4.52965e-09) (1.14748e-09 -9.43962e-10 2.17035e-09) (1.43977e-10 -3.93419e-10 1.09408e-10) (-1.95125e-10 -3.6264e-10 -5.52031e-10) (-1.13022e-09 -2.10065e-10 -2.13974e-09) (-1.78356e-09 -3.50187e-11 -2.16248e-09) (-1.08863e-09 -2.72206e-10 -4.66582e-10) (-4.63446e-10 -2.18052e-10 2.77392e-10) (-6.29008e-11 4.96827e-11 5.16886e-10) (3.86237e-10 4.00829e-10 6.01466e-10) (1.48351e-10 8.472e-11 2.09238e-10) (2.25917e-10 -1.32518e-10 1.94093e-10) (2.8014e-11 -2.74066e-10 2.56654e-11) (-6.25966e-10 -8.58578e-10 -6.15231e-10) (-1.85527e-09 -1.18934e-09 -1.64207e-09) (-1.35624e-09 -4.47759e-10 -8.41565e-10) (-3.64499e-10 2.42681e-11 -6.72343e-11) (-5.83886e-11 7.70227e-11 8.46894e-11) (2.14718e-10 2.43866e-10 4.86177e-10) (7.54496e-10 2.83889e-10 6.50442e-10) (7.96479e-10 1.15469e-10 4.32896e-11) (6.63256e-10 -1.33467e-12 -5.57781e-10) (1.35958e-10 -2.31329e-11 -4.48467e-10) (-2.85418e-11 2.45251e-12 -2.03852e-11) (-2.18667e-10 6.52042e-11 1.95469e-10) (-2.20728e-10 1.22287e-10 2.23072e-10) (-1.73997e-11 4.94401e-11 1.66646e-12) (1.24058e-10 1.77882e-10 -1.95968e-10) (2.31173e-10 1.83873e-10 -3.29509e-10) (1.27392e-10 -2.60603e-12 -8.74033e-11) (1.73527e-10 -1.71903e-10 3.83796e-11) (-1.73452e-10 -3.4943e-10 1.24745e-10) (-2.25569e-09 -9.30978e-10 -1.7423e-10) (-1.65532e-09 -4.21318e-10 -9.45797e-10) (-3.68238e-11 8.36701e-11 -7.742e-10) (1.05369e-09 7.11876e-10 -1.1944e-09) (1.61462e-09 1.20539e-09 -6.81409e-10) (1.44361e-09 1.23688e-09 3.48509e-10) (1.92454e-09 1.64224e-09 2.02199e-09) (3.20698e-09 1.53441e-09 4.79519e-09) (3.3768e-09 -2.92868e-10 4.9364e-09) (7.30558e-10 -7.93249e-10 1.19606e-09) (-1.48129e-10 -2.48581e-10 -1.37762e-11) (-7.60819e-10 -1.77386e-10 -7.34412e-10) (-8.10636e-10 2.16836e-10 -1.45614e-09) (-3.48324e-10 6.46541e-11 -7.13131e-10) (-1.14948e-10 -8.18358e-11 -4.92925e-11) (-3.11448e-10 -2.44691e-10 2.62421e-10) (-3.21431e-10 -3.45758e-11 4.28173e-10) (-5.23289e-11 1.50798e-10 2.71926e-10) (2.40496e-11 5.88768e-11 2.3181e-10) (4.44615e-11 -3.57789e-11 7.32909e-11) (-4.10624e-11 -1.58293e-10 -7.62656e-11) (-8.22816e-10 -9.16689e-10 -1.26346e-09) (-1.38922e-09 -1.00043e-09 -1.71154e-09) (-8.61049e-10 -3.30701e-10 -5.52542e-10) (-3.56536e-10 1.76221e-11 1.25238e-12) (-8.54055e-11 8.97392e-11 1.23602e-10) (1.93617e-10 1.84797e-10 3.07724e-10) (7.17568e-10 2.06942e-10 2.98738e-10) (9.67181e-10 1.00064e-10 -1.97856e-10) (6.3246e-10 8.23964e-12 -5.59563e-10) (4.10998e-11 4.61074e-12 -9.65075e-11) (-3.04807e-11 1.27782e-11 3.79114e-11) (-2.49215e-10 1.17313e-10 4.84928e-10) (-9.64762e-11 6.76939e-11 1.50735e-10) (9.0287e-12 1.82363e-11 -1.68876e-11) (3.42907e-10 1.56468e-10 -4.63772e-10) (5.66821e-10 1.22833e-10 -5.94705e-10) (4.7977e-10 -7.65235e-11 -2.04257e-10) (1.32957e-10 -1.28684e-10 3.08958e-11) (-7.42853e-10 -4.09693e-10 1.2061e-10) (-5.20619e-09 -1.16636e-09 -8.98133e-10) (-2.40547e-09 -4.86917e-10 -1.41204e-09) (-8.11313e-11 3.33874e-11 -3.87077e-10) (4.08726e-10 2.71923e-10 -2.70265e-10) (9.74132e-10 6.56431e-10 1.39583e-11) (1.47985e-09 1.08056e-09 7.75434e-10) (2.55893e-09 1.64975e-09 2.42994e-09) (4.31697e-09 1.37294e-09 4.80359e-09) (2.72891e-09 -3.38955e-10 3.54649e-09) (-5.52969e-11 -3.27006e-10 4.67953e-10) (-1.32031e-09 -3.67248e-10 -3.54199e-11) (-9.88115e-10 1.45957e-10 -4.98633e-10) (-1.08276e-10 2.25768e-10 -4.84408e-10) (1.076e-10 3.78414e-11 -2.5765e-10) (1.76666e-11 -4.91034e-11 -1.30217e-11) (-1.56483e-10 -1.98111e-10 1.42456e-10) (-5.68236e-10 -1.05099e-10 3.87072e-10) (-3.20351e-10 1.30634e-10 3.59588e-10) (-1.43322e-10 6.35203e-11 2.68089e-10) (-9.86156e-12 -4.4875e-12 7.05388e-12) (-1.53004e-10 -2.33893e-10 -3.39971e-10) (-7.43746e-10 -8.47899e-10 -1.72446e-09) (-8.72939e-10 -6.83286e-10 -1.25036e-09) (-7.04332e-10 -2.19648e-10 -2.90081e-10) (-4.97328e-10 3.22355e-11 1.19838e-10) (-9.6626e-11 9.32975e-11 1.75778e-10) (2.04353e-10 1.39253e-10 2.1151e-10) (7.63651e-10 1.81225e-10 5.76809e-11) (1.14133e-09 1.19539e-10 -5.35671e-10) (4.98737e-10 4.74154e-11 -5.04845e-10) (6.23738e-12 4.03363e-12 -7.62566e-12) (-6.68682e-11 5.78516e-11 3.05975e-10) (-2.55844e-10 1.4102e-10 8.4285e-10) (-4.27364e-11 2.21292e-11 9.15415e-11) (4.23408e-11 7.31707e-12 -5.64771e-11) (7.27926e-10 5.65237e-11 -8.71629e-10) (1.09328e-09 2.22367e-12 -9.77589e-10) (5.76838e-10 -9.91483e-11 -2.48836e-10) (7.44327e-12 -2.31081e-11 7.34863e-12) (-1.34013e-09 -3.54158e-10 1.5173e-11) (-4.1186e-09 -7.88807e-10 -1.31539e-09) (-1.94791e-09 -3.93199e-10 -1.44685e-09) (-1.44411e-10 1.6287e-11 -2.403e-10) (7.97385e-11 6.86989e-11 -5.47306e-12) (8.73809e-10 4.68909e-10 4.58493e-10) (1.90552e-09 1.03136e-09 1.3411e-09) (2.96045e-09 1.46255e-09 2.50309e-09) (4.08124e-09 1.12822e-09 3.98558e-09) (7.69519e-10 -7.38737e-11 1.44522e-09) (-1.22878e-09 -3.34768e-10 5.81388e-10) (-4.02067e-09 -1.27149e-10 1.42603e-10) (-5.12965e-10 2.30994e-10 -1.23027e-10) (2.00487e-10 2.05383e-10 -2.25842e-10) (6.83672e-10 3.41659e-11 -3.99253e-10) (2.17919e-10 -1.77009e-10 -8.3453e-11) (-7.08737e-11 -1.55325e-10 3.33103e-11) (-6.5605e-10 -1.76615e-10 2.99869e-10) (-6.58386e-10 8.07321e-11 5.41671e-10) (-3.47168e-10 8.69015e-11 2.42135e-10) (-4.79708e-11 -6.43448e-12 -3.13686e-11) (-1.83971e-10 -3.53031e-10 -8.05352e-10) (-4.71974e-10 -6.47832e-10 -1.55148e-09) (-6.28146e-10 -3.89144e-10 -6.89307e-10) (-8.04951e-10 -1.50503e-10 -8.64391e-11) (-5.65371e-10 4.45367e-11 2.61391e-10) (-4.74276e-11 6.26724e-11 1.51794e-10) (1.91797e-10 9.073e-11 9.41271e-11) (8.11677e-10 1.74671e-10 -2.05098e-10) (1.07824e-09 1.5786e-10 -7.33446e-10) (2.85302e-10 6.57758e-11 -2.71096e-10) (1.61391e-11 1.17487e-11 2.06649e-11) (3.5304e-12 9.97979e-11 8.47589e-10) (-2.49654e-10 8.40156e-11 8.71973e-10) (-3.11344e-11 -8.88976e-13 3.83617e-11) (5.93535e-11 -2.02044e-11 -1.30335e-10) (7.55684e-10 -6.19766e-11 -1.01419e-09) (8.96084e-10 -4.72941e-11 -8.10871e-10) (1.68131e-10 -2.27524e-11 -8.33301e-11) (-2.91793e-11 -1.34783e-11 5.89083e-12) (-9.30848e-10 -2.17437e-10 -1.8086e-10) (-1.47406e-09 -3.90686e-10 -8.96328e-10) (-8.04651e-10 -1.61588e-10 -6.87581e-10) (-5.04989e-11 8.22884e-12 -2.87486e-11) (1.50156e-10 8.24358e-11 1.80885e-10) (1.63321e-09 4.69082e-10 1.3855e-09) (2.97285e-09 1.00372e-09 2.23941e-09) (3.74452e-09 1.42712e-09 2.6852e-09) (2.22138e-09 7.98134e-10 1.90808e-09) (-8.13176e-11 3.58493e-11 2.33249e-10) (-5.09921e-09 -2.18056e-10 5.25414e-10) (-5.08207e-09 2.8994e-10 1.72863e-10) (-1.02086e-10 1.08863e-10 -7.0444e-12) (7.8026e-10 3.35666e-10 -2.81805e-10) (1.71149e-09 -5.78908e-11 -6.93117e-10) (6.08939e-10 -3.94497e-10 -3.05422e-10) (-4.04463e-11 -1.65955e-10 -2.2467e-11) (-7.3799e-10 -2.22227e-10 2.8213e-10) (-1.07834e-09 5.9292e-11 6.95491e-10) (-2.68414e-10 7.12778e-11 7.06555e-11) (-4.44108e-11 -1.32556e-11 -1.56814e-10) (-3.80605e-11 -3.63223e-10 -1.06623e-09) (-3.03265e-10 -3.80957e-10 -9.50189e-10) (-5.66564e-10 -2.14296e-10 -3.30977e-10) (-8.09513e-10 -8.38383e-11 1.11808e-10) (-3.48501e-10 3.35268e-11 2.63779e-10) (-7.3952e-13 2.37816e-11 6.04841e-11) (1.65065e-10 6.0736e-11 -9.25366e-12) (7.45519e-10 1.69425e-10 -4.09007e-10) (7.47178e-10 1.66756e-10 -5.71737e-10) (1.79277e-10 5.65069e-11 -7.665e-11) (1.60815e-10 5.35073e-11 2.49057e-10) (4.319e-11 8.67954e-11 1.13647e-09) (-3.06549e-10 2.40625e-12 5.67315e-10) (-5.89554e-11 -1.22827e-11 7.21199e-12) (3.14633e-11 -4.57782e-11 -2.2402e-10) (3.87423e-10 -7.37235e-11 -6.70608e-10) (3.01944e-10 -8.56338e-12 -2.91839e-10) (1.11618e-11 -1.4438e-13 -7.57437e-12) (-5.93736e-11 -1.65491e-11 -1.05707e-11) (-3.83836e-10 -1.45556e-10 -2.27016e-10) (-4.57307e-10 -1.74279e-10 -3.99362e-10) (-1.79309e-10 -2.79875e-11 -8.98826e-11) (-3.91603e-12 6.58607e-12 5.34453e-11) (9.48592e-10 8.26876e-11 1.21426e-09) (2.90014e-09 3.16981e-10 2.5762e-09) (3.60851e-09 8.43581e-10 2.52654e-09) (2.99717e-09 1.11229e-09 1.78547e-09) (5.70654e-10 3.81834e-10 3.73121e-10) (-4.80637e-10 1.49837e-10 -2.26527e-12) (-6.79633e-09 1.97913e-10 -8.22446e-10) (-3.079e-09 2.6895e-10 -2.81627e-10) (2.32688e-12 4.02266e-11 -8.1137e-12) (1.40778e-09 3.46266e-10 -3.71827e-10) (2.58544e-09 -2.26457e-10 -9.65612e-10) (8.4325e-10 -5.24227e-10 -4.43545e-10) (-7.98707e-11 -1.70103e-10 -2.01681e-11) (-1.38291e-09 -2.78696e-10 5.00351e-10) (-1.5204e-09 1.21833e-10 7.46075e-10) (-5.32013e-11 2.28318e-11 -2.33584e-11) (6.62022e-11 -3.80856e-11 -4.09598e-10) (5.76185e-11 -2.41257e-10 -8.53077e-10) (-2.44472e-10 -1.80402e-10 -4.43124e-10) (-5.24509e-10 -1.14616e-10 -1.15853e-10) (-4.93127e-10 -2.80323e-11 1.98901e-10) (-1.0308e-10 1.54642e-11 1.41554e-10) (6.48076e-12 6.03701e-12 9.03503e-12) (1.58074e-10 5.38035e-11 -8.57649e-11) (5.42674e-10 1.44835e-10 -3.95322e-10) (4.96473e-10 1.34495e-10 -2.87351e-10) (3.08831e-10 7.26324e-11 5.03488e-11) (3.39389e-10 6.23285e-11 5.4886e-10) (-1.51029e-10 2.73147e-11 7.37665e-10) (-3.90862e-10 -2.59242e-11 2.81424e-10) (-1.35851e-10 -2.94616e-11 -5.32021e-11) (-1.48717e-11 -5.17154e-11 -2.3296e-10) (1.06447e-10 -3.63472e-11 -2.59206e-10) (4.86122e-11 2.76644e-12 -5.69327e-11) (3.61587e-13 1.908e-13 -1.85089e-12) (-3.40022e-11 -1.66243e-11 -3.03049e-11) (-1.24101e-10 -7.97557e-11 -1.37645e-10) (-1.06305e-10 -4.54671e-11 -6.76491e-11) (-2.27158e-11 -5.50455e-12 2.51757e-11) (3.08218e-10 -3.2992e-11 6.49045e-10) (1.67922e-09 -1.22245e-10 1.9456e-09) (2.392e-09 9.91254e-11 2.17447e-09) (2.35427e-09 4.84665e-10 1.72026e-09) (1.48972e-09 6.59951e-10 7.70563e-10) (1.9668e-10 2.30235e-10 1.01338e-11) (-4.53015e-10 2.39495e-10 -3.2002e-10) (-2.88787e-09 2.15731e-10 -1.26812e-09) (-9.7647e-10 8.99891e-11 -4.18416e-10) (3.00407e-11 3.21132e-11 -2.94089e-11) (1.49894e-09 2.20347e-10 -4.05003e-10) (2.42774e-09 -3.4493e-10 -8.16625e-10) (3.13081e-10 -2.7883e-10 -1.69607e-10) (-4.86729e-10 -2.77808e-10 9.67803e-11) (-2.60442e-09 -2.45445e-10 9.40662e-10) (-1.16075e-09 1.32059e-10 4.3847e-10) (6.6666e-12 1.88354e-11 -7.97717e-11) (2.0798e-10 -6.72448e-11 -5.69948e-10) (2.76715e-11 -1.19807e-10 -4.64911e-10) (-1.80493e-10 -7.31862e-11 -1.75921e-10) (-3.25334e-10 -4.075e-11 1.75283e-11) (-1.57792e-10 -3.73959e-12 1.40184e-10) (-7.38561e-12 5.46442e-12 4.47647e-11) (1.26997e-11 5.47534e-12 -7.00628e-13) (1.58282e-10 5.03472e-11 -1.15666e-10) (4.1169e-10 1.07068e-10 -2.52416e-10) (5.26338e-10 1.08138e-10 -1.09291e-10) (4.83372e-10 6.71034e-11 1.95887e-10) (1.27994e-10 1.92798e-11 3.30038e-10) (-2.55693e-10 -5.08824e-12 3.43273e-10) (-3.7808e-10 -3.13136e-11 8.61992e-11) (-1.36987e-10 -3.50886e-11 -1.00212e-10) (-2.11716e-11 -3.76266e-11 -1.522e-10) (2.98643e-11 -1.25633e-11 -8.55525e-11) (1.45414e-11 2.02268e-12 -1.88001e-11) (2.60142e-12 -1.10518e-13 -7.00279e-12) (-5.20568e-12 -1.13357e-11 -2.67405e-11) (-2.07717e-11 -1.9862e-11 -2.83665e-11) (-1.13204e-11 -6.75214e-12 5.86134e-12) (6.18562e-11 -2.86395e-11 2.42349e-10) (8.24625e-10 -1.60944e-10 1.22175e-09) (1.29991e-09 -2.03397e-10 1.52871e-09) (1.1966e-09 5.65335e-12 1.23092e-09) (9.20172e-10 2.20503e-10 7.1494e-10) (6.39526e-10 3.2758e-10 2.00506e-10) (2.67838e-10 2.60984e-10 -1.5336e-10) (-4.17277e-11 1.74693e-10 -3.71223e-10) (-3.69903e-10 6.20184e-11 -5.92656e-10) (-1.33631e-10 2.1783e-11 -2.64208e-10) (1.11942e-10 4.4356e-11 -1.12944e-10) (1.09938e-09 7.67365e-11 -3.55068e-10) (7.72088e-10 -1.8203e-10 -2.36469e-10) (-2.82215e-11 -6.26673e-11 4.3556e-12) (-1.84561e-09 -4.16759e-10 6.23875e-10) (-2.45198e-09 -9.52258e-11 9.08442e-10) (-3.30321e-10 5.09243e-11 7.18647e-11) (2.80921e-10 3.48997e-11 -2.89681e-10) (4.71287e-10 -7.19131e-11 -5.79738e-10) (1.01475e-10 -5.50229e-11 -2.34106e-10) (-1.81865e-11 -1.12214e-11 -2.66382e-11) (-2.6677e-11 -3.71153e-12 1.48563e-11) (4.41813e-13 -1.90294e-13 5.08636e-11) (3.58088e-11 4.5743e-12 2.94931e-11) (9.80069e-11 1.78368e-11 -1.50867e-11) (3.2446e-10 6.1285e-11 -1.34845e-10) (7.12126e-10 1.12538e-10 -2.09891e-10) (9.89264e-10 1.13496e-10 -4.58148e-11) (6.28066e-10 5.32751e-11 1.96562e-10) (9.29119e-11 7.56958e-12 1.35873e-10) (-4.54303e-11 -9.19129e-13 6.09021e-11) (-6.02589e-11 -7.54032e-12 -4.36777e-12) (-2.77444e-11 -1.60029e-11 -5.52899e-11) (1.29006e-11 -2.14392e-11 -8.06022e-11) (4.22948e-11 -8.39964e-12 -5.39135e-11) (5.64873e-11 7.24865e-13 -3.60739e-11) (5.97823e-11 -4.28256e-12 -3.82763e-11) (3.52164e-11 -1.29562e-11 -3.02338e-11) (6.15597e-12 -4.89338e-12 -2.55473e-12) (3.57299e-11 -1.57639e-11 5.16872e-11) (4.64797e-10 -9.35348e-11 5.81958e-10) (1.09458e-09 -2.49923e-10 1.17444e-09) (1.25252e-09 -2.38169e-10 1.23783e-09) (1.15918e-09 -5.26438e-11 9.70535e-10) (1.05511e-09 1.45836e-10 5.35027e-10) (1.10364e-09 3.44615e-10 5.79647e-11) (1.10307e-09 4.61736e-10 -4.58086e-10) (6.76969e-10 2.51854e-10 -6.48956e-10) (4.14785e-10 6.48341e-11 -6.59129e-10) (3.89038e-10 4.39712e-11 -4.84735e-10) (6.78729e-10 1.00073e-10 -3.49715e-10) (1.05417e-09 4.55221e-11 -2.22685e-10) (2.65982e-10 -5.84109e-11 3.48068e-12) (-5.47607e-11 -5.11546e-11 6.89394e-11) (-7.69291e-10 -1.4952e-10 4.77175e-10) (-3.5599e-10 -7.11863e-12 2.00245e-10) (7.8613e-14 1.12138e-12 -1.29018e-12) (1.38915e-09 4.23753e-11 -7.2435e-10) (1.2543e-09 -7.83377e-11 -7.96391e-10) (3.70763e-10 -4.85049e-11 -2.80352e-10) (3.05401e-11 -5.1324e-12 -1.67748e-11) (3.28969e-11 -1.27289e-12 2.07628e-11) (2.08579e-10 6.36866e-13 1.13334e-10) (4.7322e-10 1.84852e-11 9.50769e-11) (8.88869e-10 6.00329e-11 -3.32499e-11) (1.75301e-09 1.31857e-10 -2.10698e-10) (3.03131e-09 2.10354e-10 -2.64806e-10) (3.56641e-09 1.99201e-10 2.42337e-11) (2.26092e-09 1.04389e-10 3.7067e-10) (5.14434e-10 2.34081e-11 2.08825e-10) (2.1376e-11 1.05113e-12 1.43508e-11) (4.18985e-13 -9.10914e-13 -3.30448e-12) (6.09623e-12 -1.16713e-11 -4.62812e-11) (3.05799e-11 -1.70847e-11 -6.70916e-11) (7.52834e-11 -1.13369e-11 -6.95241e-11) (1.72675e-10 -5.58435e-12 -9.10941e-11) (2.45942e-10 -1.19802e-11 -1.0642e-10) (1.77836e-10 -2.17551e-11 -5.68692e-11) (1.38038e-10 -2.19575e-11 1.9195e-11) (4.63911e-10 -6.29747e-11 3.01851e-10) (1.29774e-09 -1.91822e-10 1.02283e-09) (1.85526e-09 -3.44378e-10 1.53942e-09) (2.09216e-09 -3.43297e-10 1.70115e-09) (2.31388e-09 -1.61858e-10 1.46708e-09) (2.97561e-09 1.11915e-10 9.45219e-10) (4.50824e-09 5.64554e-10 6.96871e-11) (6.14397e-09 9.48626e-10 -1.08537e-09) (6.63971e-09 6.94734e-10 -2.06709e-09) (6.99065e-09 3.52599e-10 -2.83215e-09) (7.8334e-09 3.61153e-10 -2.72331e-09) (9.03833e-09 5.40189e-10 -1.86662e-09) (7.51587e-09 2.46662e-10 -5.93294e-10) (2.49248e-09 -1.15969e-10 2.72903e-10) (2.12413e-10 -5.80325e-11 1.96879e-10) (-1.40117e-11 -2.51926e-11 1.50695e-10) (1.90856e-11 -1.73799e-14 2.29235e-11) (3.79408e-10 2.50546e-11 -1.0635e-10) (1.19581e-09 5.77824e-12 -5.76671e-10) (7.56635e-10 -2.70444e-11 -4.60831e-10) (1.78514e-10 -7.11597e-12 -1.15793e-10) (5.44112e-11 1.12603e-12 -6.36641e-12) (2.04415e-10 6.06335e-12 6.02721e-11) (6.70263e-10 9.49104e-12 1.5387e-10) (1.33299e-09 2.91201e-11 1.45574e-10) (2.42943e-09 7.2004e-11 9.89124e-11) (4.26545e-09 1.29933e-10 9.15837e-11) (5.96107e-09 1.48907e-10 2.39243e-10) (5.46446e-09 1.06461e-10 5.27451e-10) (2.45607e-09 3.87404e-11 5.03022e-10) (3.63657e-10 9.63766e-12 1.31633e-10) (1.82349e-11 6.94259e-13 4.02186e-12) (-1.65823e-12 -1.607e-12 -1.1449e-11) (-9.37455e-12 -7.89915e-12 -4.33893e-11) (-3.81398e-12 -7.66489e-12 -4.30666e-11) (1.12936e-11 -3.52661e-12 -3.1139e-11) (4.43839e-11 -1.50554e-12 -3.73139e-11) (8.95355e-11 -9.17271e-13 -3.97961e-11) (1.1382e-10 -3.26657e-12 -1.15267e-11) (2.53587e-10 -1.00085e-11 7.87785e-11) (7.05478e-10 -4.52939e-11 3.81451e-10) (1.14114e-09 -1.20049e-10 7.70262e-10) (1.23104e-09 -1.7811e-10 1.00971e-09) (1.28331e-09 -1.74046e-10 1.05052e-09) (1.58464e-09 -1.0679e-10 8.39891e-10) (2.88073e-09 7.85379e-12 4.67522e-10) (6.49579e-09 3.28815e-10 -3.92081e-10) (1.21866e-08 7.2862e-10 -1.86672e-09) (1.84176e-08 6.48847e-10 -4.40375e-09) (2.43331e-08 4.66411e-10 -6.96762e-09) (2.94641e-08 5.42073e-10 -7.5668e-09) (3.01483e-08 6.95253e-10 -5.55758e-09) (1.89058e-08 2.21636e-10 -1.65814e-09) (4.36027e-09 -1.02228e-10 5.35531e-10) (3.0248e-10 -3.79352e-11 3.19124e-10) (3.00736e-13 -8.80638e-12 1.52357e-10) (6.79369e-11 7.2106e-13 2.14532e-11) (5.86065e-10 1.34034e-11 -1.70737e-10) (3.99632e-11 1.9328e-13 -1.62478e-11) (1.91435e-11 -2.31844e-14 -1.48743e-11) (5.50089e-12 2.22732e-13 -4.83864e-12) (1.07017e-11 4.7907e-13 -2.00321e-12) (6.00377e-11 1.06316e-12 2.39415e-12) (1.41936e-10 1.05582e-12 1.19316e-11) (2.18512e-10 1.25624e-12 2.38433e-11) (3.38409e-10 2.80016e-12 5.07606e-11) (5.08682e-10 3.93916e-12 9.12608e-11) (5.59325e-10 -4.86759e-13 1.1896e-10) (3.43449e-10 -2.10103e-12 9.73507e-11) (8.72014e-11 -4.48199e-13 4.29518e-11) (9.86343e-12 1.48147e-13 9.6398e-12) (1.41282e-12 3.51196e-14 9.4894e-13) (6.03086e-13 -3.58972e-14 -3.23099e-13) (-6.51646e-13 -2.31771e-13 -1.84741e-12) (-5.24345e-12 -6.07172e-13 -4.53043e-12) (-7.16027e-12 -4.10682e-13 -4.84736e-12) (-1.49168e-12 2.38187e-14 -1.6518e-12) (3.75205e-13 7.1153e-14 -5.59252e-13) (6.9529e-12 3.20993e-13 -1.00292e-12) (3.62147e-11 2.54961e-13 3.00287e-12) (7.65166e-11 -1.34571e-12 1.44502e-11) (7.63188e-11 -3.74224e-12 2.27373e-11) (6.39291e-11 -5.05262e-12 3.02976e-11) (7.43046e-11 -6.32687e-12 3.85956e-11) (1.13613e-10 -5.90045e-12 3.97137e-11) (2.11551e-10 -3.47427e-12 2.70166e-11) (4.63186e-10 4.81371e-12 -1.74156e-11) (1.05708e-09 1.78213e-11 -1.60144e-10) (2.10694e-09 1.24289e-11 -5.85451e-10) (3.35004e-09 2.48277e-12 -1.19712e-09) (3.99059e-09 -5.69627e-13 -1.44707e-09) (3.23629e-09 6.44088e-12 -1.01159e-09) (1.25306e-09 -2.96911e-12 -2.32294e-10) (1.29145e-10 -2.33051e-12 2.95529e-11) (-1.15849e-11 -1.60536e-12 4.93457e-11) (-1.08078e-11 -5.90194e-13 2.97692e-11) (3.66545e-12 -1.90204e-13 4.30081e-12) (2.3657e-11 -2.46005e-14 -1.13223e-12) (6.23465e-11 -1.15244e-10 -1.22285e-11) (6.18569e-12 -3.93965e-11 2.60167e-12) (-1.01799e-12 -2.16245e-12 5.24041e-12) (-7.01106e-12 4.79229e-11 3.89097e-11) (-3.01326e-11 2.71955e-10 8.08857e-11) (-9.24731e-11 4.39589e-10 -5.63638e-12) (-1.55618e-10 2.9708e-10 -1.16815e-10) (-2.27928e-10 1.08438e-10 -1.78022e-10) (-4.33592e-10 -7.99416e-11 -3.04246e-10) (-5.59006e-10 -2.4535e-10 -3.75508e-10) (-3.09076e-10 -1.51034e-10 -2.22592e-10) (-4.3073e-11 -1.89224e-11 -3.75915e-11) (1.47667e-13 2.25154e-14 8.68107e-14) (3.7119e-11 4.73949e-12 4.19702e-11) (1.6146e-10 1.82049e-11 2.41485e-10) (2.7065e-10 7.75309e-11 5.28457e-10) (2.32485e-10 1.78299e-10 6.17875e-10) (5.41487e-11 1.66021e-10 3.37286e-10) (-3.74805e-11 6.23307e-11 6.4799e-11) (-1.2138e-10 4.01743e-11 -2.92452e-11) (-4.54923e-10 -1.74608e-11 -3.10828e-10) (-7.14098e-10 -1.77493e-10 -6.67671e-10) (-4.98902e-10 -2.19869e-10 -6.2063e-10) (-1.60864e-10 -1.17876e-10 -2.85768e-10) (-2.34266e-11 -3.50447e-11 -5.99084e-11) (-3.8242e-12 -1.12938e-11 -3.10262e-12) (-1.64246e-11 -4.55392e-11 4.0343e-11) (-6.56587e-11 -1.84166e-10 2.96245e-10) (-8.59763e-11 -3.24698e-10 8.21935e-10) (-2.90537e-11 -2.05655e-10 9.70466e-10) (7.34701e-12 -4.02164e-13 4.05953e-10) (5.54293e-12 1.53122e-11 2.70065e-11) (1.66783e-11 2.41228e-11 -3.03074e-11) (1.15206e-10 8.31039e-11 -2.58404e-10) (2.76775e-10 1.24097e-10 -4.69741e-10) (3.79597e-10 1.14159e-10 -4.14545e-10) (3.90623e-10 4.95841e-11 -2.36503e-10) (3.70948e-10 -4.11823e-11 -1.02349e-10) (3.15654e-10 -1.31896e-10 -3.45502e-11) (1.87457e-10 -1.63008e-10 -1.90116e-11) (-1.93746e-11 -6.03571e-11 8.178e-12) (-7.03628e-11 -1.42268e-10 1.28375e-10) (-4.49999e-11 -7.15369e-11 2.4762e-10) (1.77813e-11 1.37455e-10 2.79844e-10) (7.55345e-11 5.33081e-10 2.81998e-10) (7.10679e-11 7.43539e-10 6.75644e-11) (1.59806e-11 3.82378e-10 -1.22238e-10) (-1.15879e-11 7.74221e-11 -1.32087e-10) (-5.1212e-11 -7.99041e-11 -2.59189e-10) (-1.44829e-10 -3.58994e-10 -5.25931e-10) (-1.73356e-10 -4.13389e-10 -5.76252e-10) (-7.49939e-11 -1.58392e-10 -2.97688e-10) (1.77952e-12 -8.33942e-12 -5.3618e-11) (2.19767e-11 1.37998e-11 -6.00102e-12) (1.40925e-10 8.44479e-11 7.32791e-11) (3.59036e-10 2.11504e-10 3.23811e-10) (4.63638e-10 3.23473e-10 6.12007e-10) (2.56414e-10 2.99099e-10 5.91613e-10) (-2.6178e-11 1.53994e-10 2.83822e-10) (-1.98186e-10 7.04148e-11 1.11056e-10) (-6.12451e-10 -3.10537e-11 -6.19497e-11) (-9.30416e-10 -2.87942e-10 -4.16814e-10) (-6.62375e-10 -4.12937e-10 -5.67982e-10) (-2.35786e-10 -2.82235e-10 -3.86926e-10) (-3.45069e-11 -1.06399e-10 -1.28905e-10) (-1.56409e-12 -2.39717e-11 -8.60874e-12) (-9.69174e-12 -5.19293e-11 7.4229e-11) (-1.12053e-10 -2.04515e-10 7.5372e-10) (-3.82999e-10 -2.37388e-10 2.13875e-09) (-5.23336e-10 4.88291e-11 2.23926e-09) (-2.39814e-10 1.66204e-10 7.52487e-10) (-1.60606e-11 3.42638e-11 2.66852e-11) (3.01846e-11 5.64685e-11 -1.17904e-10) (2.487e-10 8.16019e-11 -6.28468e-10) (4.57645e-10 1.50114e-11 -8.73993e-10) (4.58074e-10 -1.30541e-11 -6.40724e-10) (3.50765e-10 -5.4835e-12 -3.48935e-10) (2.16521e-10 -6.32937e-12 -1.7356e-10) (8.13395e-11 -1.87149e-11 -7.17299e-11) (1.09509e-11 -2.12867e-11 -1.84942e-11) (-3.79861e-10 -3.57562e-10 2.28081e-10) (-6.9031e-10 -8.93052e-10 1.08424e-09) (-2.7935e-10 -5.05614e-10 1.24094e-09) (1.17116e-10 1.64054e-10 5.21033e-10) (4.95675e-10 9.99497e-10 2.48127e-10) (6.3189e-10 1.78964e-09 -4.39932e-10) (1.52318e-10 9.1561e-10 -6.60925e-10) (-7.00126e-11 1.51805e-10 -4.64807e-10) (-2.04646e-10 -2.29406e-10 -6.26965e-10) (-3.09829e-10 -5.49065e-10 -7.9651e-10) (-1.65337e-10 -3.80057e-10 -4.67113e-10) (4.81688e-12 -7.59617e-11 -6.94759e-11) (6.57565e-11 -2.30414e-11 1.46363e-11) (3.94948e-10 3.21111e-11 2.07518e-10) (7.46977e-10 2.16351e-10 3.97782e-10) (7.4505e-10 3.60467e-10 3.54933e-10) (4.64584e-10 3.41528e-10 2.19013e-10) (1.50499e-10 2.10452e-10 1.16567e-10) (-1.08738e-11 9.82831e-11 5.69488e-11) (-1.51657e-10 7.63427e-11 4.72694e-11) (-5.73737e-10 -7.65505e-13 -1.24093e-11) (-1.08553e-09 -2.6779e-10 -2.50088e-10) (-1.14066e-09 -5.3202e-10 -5.08954e-10) (-7.23899e-10 -5.93414e-10 -5.07221e-10) (-2.51203e-10 -4.44105e-10 -2.37265e-10) (-2.58492e-11 -2.46833e-10 1.39896e-11) (2.71581e-11 -2.1349e-10 2.97363e-10) (-1.14892e-10 -1.16676e-10 1.18024e-09) (-6.84276e-10 2.92704e-10 2.04098e-09) (-8.33703e-10 4.59493e-10 1.34763e-09) (-2.78507e-10 2.01601e-10 2.28622e-10) (-2.78299e-11 5.1764e-11 -2.93527e-11) (1.00608e-10 8.59639e-11 -2.30644e-10) (4.96203e-10 7.90428e-11 -5.60463e-10) (8.8773e-10 3.11294e-11 -6.67599e-10) (9.25627e-10 2.46519e-11 -5.33296e-10) (6.01485e-10 4.03989e-11 -3.38869e-10) (1.98276e-10 2.41699e-11 -1.60135e-10) (1.18041e-11 -2.0047e-12 -3.89366e-11) (-5.18731e-11 -3.84434e-11 -1.59703e-11) (-1.2817e-09 -9.42612e-10 9.39465e-10) (-2.525e-09 -2.47368e-09 3.29787e-09) (-1.48063e-09 -1.45401e-09 2.67006e-09) (-6.81713e-11 2.00397e-11 2.84839e-10) (4.41211e-10 9.24027e-10 -1.56268e-10) (1.97356e-09 3.56877e-09 -2.12463e-09) (1.52878e-09 2.45577e-09 -2.52063e-09) (4.03044e-10 3.66294e-10 -1.08333e-09) (8.17064e-11 -1.85539e-10 -4.22568e-10) (4.62198e-11 -3.66646e-10 -2.22181e-10) (1.44108e-10 -4.2966e-10 -4.1379e-11) (4.13376e-10 -4.87982e-10 1.97245e-10) (7.49278e-10 -3.89579e-10 5.37174e-10) (8.05625e-10 -2.09345e-11 6.43997e-10) (6.65085e-10 3.38975e-10 4.28722e-10) (5.15482e-10 5.95966e-10 1.70515e-10) (2.66638e-10 6.74239e-10 -1.47134e-11) (1.41788e-11 5.16218e-10 -7.68028e-11) (-1.49906e-10 2.93427e-10 -6.35301e-11) (-3.68004e-10 1.92036e-10 -6.40954e-11) (-8.92548e-10 6.72132e-11 -1.19643e-10) (-1.40148e-09 -2.34149e-10 -2.96325e-10) (-1.24648e-09 -5.80844e-10 -5.34536e-10) (-6.74925e-10 -8.35138e-10 -5.65364e-10) (-2.02651e-10 -8.98738e-10 -2.20408e-10) (-6.546e-11 -7.41551e-10 3.56749e-10) (-4.18569e-10 -5.6978e-10 1.3883e-09) (-1.6361e-09 1.46176e-10 2.61856e-09) (-2.17882e-09 6.28747e-10 1.89115e-09) (-7.71442e-10 2.02385e-10 2.64757e-10) (-5.55361e-11 1.31775e-11 -6.35282e-11) (1.99143e-10 1.48797e-11 -3.92344e-10) (8.57215e-10 9.66518e-11 -7.95952e-10) (1.24602e-09 2.14783e-10 -6.77922e-10) (1.20319e-09 2.82593e-10 -3.42978e-10) (8.90741e-10 2.82204e-10 -1.28342e-10) (4.23987e-10 1.92578e-10 -7.77381e-11) (7.88284e-11 6.79259e-11 -5.09915e-11) (-1.43793e-11 1.24653e-11 -2.10129e-11) (-2.37232e-10 -8.02456e-11 2.22091e-11) (-1.35648e-09 -8.26986e-10 1.21377e-09) (-3.64781e-09 -2.83852e-09 3.88042e-09) (-2.2005e-09 -1.9544e-09 2.14347e-09) (-8.2382e-11 -7.05035e-11 2.69935e-11) (2.1776e-10 5.11874e-10 -6.20354e-10) (1.64377e-09 3.25984e-09 -3.07923e-09) (2.01686e-09 2.91636e-09 -3.09468e-09) (8.78721e-10 5.61643e-10 -1.10532e-09) (2.14697e-10 -9.64161e-11 -1.65376e-10) (2.33733e-10 -4.55562e-10 7.46906e-11) (4.08486e-10 -1.29049e-09 6.87497e-10) (1.27484e-10 -1.32697e-09 1.2954e-09) (-4.08561e-10 -5.69553e-10 1.63398e-09) (-4.68511e-10 2.64233e-10 1.47232e-09) (1.27734e-10 4.7988e-10 4.68645e-10) (1.63441e-09 1.36994e-09 -2.50141e-10) (5.3025e-09 3.05812e-09 -2.50042e-09) (4.98179e-09 2.81886e-09 -3.03007e-09) (1.33419e-09 1.06863e-09 -1.15734e-09) (-1.43703e-11 1.64387e-10 -1.69744e-10) (-4.92382e-10 8.59145e-11 -1.7876e-10) (-1.11685e-09 -2.30164e-10 -3.90698e-10) (-8.50077e-10 -6.47595e-10 -5.98777e-10) (-3.40619e-10 -8.79986e-10 -4.5048e-10) (-1.30897e-10 -7.72252e-10 1.24203e-10) (-5.84686e-10 -8.38688e-10 1.26965e-09) (-2.57633e-09 -3.91693e-10 3.34399e-09) (-3.93663e-09 4.881e-10 3.07027e-09) (-1.74583e-09 2.25364e-10 7.27554e-10) (-1.43522e-10 -2.74457e-11 -3.39738e-11) (7.24481e-11 -1.08468e-10 -2.12845e-10) (5.57503e-10 -2.01064e-10 -6.00702e-10) (8.26449e-10 -4.47008e-11 -5.84117e-10) (7.03693e-10 1.23563e-10 -2.93914e-10) (5.27778e-10 2.01184e-10 -7.62735e-11) (4.15352e-10 2.38693e-10 -2.76289e-12) (2.80932e-10 2.19849e-10 -4.01903e-11) (1.07957e-10 1.31234e-10 -7.75258e-11) (-2.86108e-12 2.9513e-11 -2.94449e-11) (-1.09374e-10 -2.24363e-11 3.20768e-11) (-1.25302e-09 -5.77603e-10 1.08814e-09) (-3.25274e-09 -2.8123e-09 3.28459e-09) (-1.48768e-09 -2.1208e-09 1.09559e-09) (-1.58964e-10 -4.13977e-10 -3.10396e-10) (1.16313e-10 3.93741e-10 -1.68554e-09) (7.48718e-10 2.44546e-09 -3.36711e-09) (1.02896e-09 2.23837e-09 -2.33303e-09) (4.4192e-10 4.7328e-10 -4.90529e-10) (1.04656e-10 -3.25687e-11 1.56748e-11) (2.70375e-10 -9.0976e-10 7.99112e-10) (-1.61923e-09 -2.65318e-09 3.23686e-09) (-1.15305e-08 -2.74425e-09 9.17688e-09) (-1.93439e-08 1.5086e-09 1.2585e-08) (-5.00478e-09 1.27427e-09 4.19132e-09) (5.2108e-11 1.40127e-10 1.75193e-10) (3.38531e-09 1.26356e-09 -9.3516e-10) (1.44344e-08 4.94437e-09 -6.58235e-09) (1.95482e-08 7.27404e-09 -1.02244e-08) (1.03507e-08 4.68798e-09 -6.21348e-09) (1.66284e-09 1.12115e-09 -1.51848e-09) (3.87731e-13 7.79019e-11 -2.38546e-10) (-1.95119e-10 -1.54653e-10 -3.09575e-10) (-1.93932e-10 -5.47163e-10 -4.46144e-10) (-4.57305e-11 -5.96224e-10 -1.25576e-10) (-1.38123e-10 -5.3836e-10 4.84912e-10) (-1.17636e-09 -4.83603e-10 2.4692e-09) (-3.13298e-09 4.75237e-10 3.70183e-09) (-2.58283e-09 6.32108e-10 1.49761e-09) (-5.60142e-10 7.00131e-11 -2.54318e-11) (-4.43098e-11 -7.52082e-11 -1.96314e-10) (3.13715e-10 -2.56938e-10 -4.75491e-10) (6.34945e-10 -2.5851e-10 -4.64597e-10) (6.06687e-10 -1.20845e-10 -2.49417e-10) (3.92852e-10 -2.38389e-11 -5.42162e-11) (2.08886e-10 1.37168e-11 3.36895e-11) (1.16767e-10 3.6394e-11 3.65813e-11) (9.62615e-11 7.73693e-11 -5.00991e-12) (1.16526e-10 1.8168e-10 -1.03762e-10) (2.1156e-11 1.44046e-10 -9.61768e-11) (-6.74935e-11 2.55569e-11 1.69365e-11) (-6.64576e-10 -3.04705e-10 9.25556e-10) (-1.87018e-09 -2.24217e-09 2.38544e-09) (-1.25673e-09 -2.81623e-09 4.94008e-10) (-4.70317e-10 -1.86009e-09 -1.64601e-09) (-8.0627e-11 -1.4551e-10 -3.311e-09) (1.72719e-10 2.10744e-09 -3.64326e-09) (3.12199e-10 1.97694e-09 -1.71616e-09) (1.92504e-10 3.71938e-10 -1.35161e-10) (2.23693e-10 -2.92756e-11 3.05522e-10) (-8.68902e-10 -8.87083e-10 2.63852e-09) (-2.02106e-08 -1.67664e-09 1.42567e-08) (-4.83286e-08 7.36629e-10 2.43457e-08) (-1.4777e-08 -1.25187e-09 9.28947e-09) (-4.52005e-10 -2.8232e-10 5.51523e-10) (9.53632e-11 -1.01459e-11 -3.57448e-11) (1.44974e-09 5.43783e-10 -9.48812e-10) (4.8995e-09 2.43848e-09 -2.72214e-09) (8.97754e-09 4.74207e-09 -4.23596e-09) (8.29759e-09 4.6967e-09 -3.96017e-09) (3.52981e-09 2.0699e-09 -2.18823e-09) (7.97581e-10 2.76383e-10 -8.31317e-10) (2.52622e-10 -2.07447e-10 -4.57832e-10) (1.15457e-10 -3.83231e-10 -2.29266e-10) (-2.87306e-11 -2.97894e-10 1.31776e-10) (-6.2436e-10 -3.81528e-10 1.45959e-09) (-2.17731e-09 4.62902e-10 3.57935e-09) (-2.0628e-09 8.81916e-10 1.89594e-09) (-4.51257e-10 1.73032e-10 1.3954e-11) (-4.92508e-11 -8.88722e-11 -4.2332e-10) (5.41263e-10 -5.78978e-10 -1.12134e-09) (6.27738e-10 -4.78952e-10 -6.45603e-10) (2.54803e-10 -1.18251e-10 -1.19841e-10) (1.07277e-10 -1.30876e-11 1.72295e-13) (8.52638e-11 3.19986e-12 3.42047e-11) (7.73092e-11 -1.53854e-12 5.58531e-11) (5.85513e-11 -1.38551e-12 4.04911e-11) (5.1554e-11 1.69146e-11 4.20003e-12) (1.08184e-10 1.07002e-10 -6.53711e-11) (6.60271e-11 1.63056e-10 -7.43434e-11) (-2.89383e-11 4.55356e-11 3.17023e-11) (-2.99262e-10 -9.05115e-11 8.26961e-10) (-1.32829e-09 -1.91367e-09 1.88876e-09) (-2.14691e-09 -4.90529e-09 9.29259e-11) (-1.96102e-09 -5.431e-09 -3.97586e-09) (-7.0384e-10 -1.47822e-09 -5.28232e-09) (4.56603e-10 1.86885e-09 -4.53752e-09) (9.47336e-10 2.40943e-09 -1.95345e-09) (5.03179e-10 8.21175e-10 1.30668e-10) (-1.58698e-10 5.88058e-10 2.01727e-09) (-1.29249e-08 2.00967e-09 1.28511e-08) (-4.45316e-08 3.26105e-09 2.65873e-08) (-1.88967e-08 -2.52679e-09 1.27693e-08) (-1.27683e-09 -1.28213e-09 1.53475e-09) (2.26511e-11 -1.65849e-10 -3.26625e-11) (2.32345e-10 -8.36602e-11 -5.86856e-10) (6.66381e-10 2.58248e-10 -1.15853e-09) (1.24126e-09 6.719e-10 -1.10993e-09) (2.02251e-09 1.29126e-09 -9.75788e-10) (2.61568e-09 1.84302e-09 -1.03949e-09) (2.09984e-09 1.34453e-09 -1.05051e-09) (1.04442e-09 3.43253e-10 -7.09346e-10) (3.6248e-10 -9.43091e-11 -2.58589e-10) (5.81555e-11 -7.36656e-11 8.53779e-12) (-9.5285e-11 -1.09761e-10 4.46096e-10) (-1.02426e-09 3.131e-10 2.18873e-09) (-1.4836e-09 8.45954e-10 2.02595e-09) (-3.38089e-10 2.15587e-10 1.63062e-10) (-1.26673e-12 -2.96363e-11 -2.98727e-10) (8.36849e-10 -8.86623e-10 -1.87822e-09) (9.41517e-10 -1.08577e-09 -1.50006e-09) (2.01899e-10 -2.54211e-10 -2.32859e-10) (6.49361e-12 -6.65936e-12 1.14201e-12) (4.63505e-12 8.19645e-12 3.11592e-11) (1.42589e-11 2.21805e-11 9.17685e-11) (3.27645e-11 6.64413e-13 1.10549e-10) (3.88852e-11 -1.24982e-11 4.63386e-11) (7.31397e-11 2.33832e-12 -1.33511e-11) (2.67893e-10 1.45309e-10 -1.91002e-10) (2.58514e-10 3.09045e-10 -1.80673e-10) (3.06277e-11 1.22518e-10 6.32037e-11) (-1.68939e-10 1.4031e-10 1.02566e-09) (-1.38046e-09 -2.00218e-09 1.86757e-09) (-5.13333e-09 -9.03318e-09 -2.58987e-10) (-7.58467e-09 -1.10338e-08 -6.34305e-09) (-2.91789e-09 -2.53016e-09 -4.94555e-09) (5.31061e-11 7.38973e-10 -2.11158e-09) (1.356e-09 1.87316e-09 -9.64742e-10) (1.05253e-09 2.08516e-09 9.8961e-10) (-3.71709e-09 4.4214e-09 6.02619e-09) (-1.97608e-08 6.07305e-09 1.56859e-08) (-1.16979e-08 -8.60671e-10 1.09421e-08) (-1.51021e-09 -2.08387e-09 3.42543e-09) (-5.88645e-11 -5.78384e-10 2.69719e-10) (-4.60396e-11 -2.97136e-10 -5.12634e-10) (1.45e-10 -2.42053e-10 -2.07581e-09) (6.19243e-10 5.37662e-11 -1.87784e-09) (7.43917e-10 2.963e-10 -9.47991e-10) (7.91447e-10 5.33642e-10 -4.97232e-10) (7.94822e-10 7.10504e-10 -3.18522e-10) (5.84843e-10 5.30325e-10 -2.23777e-10) (2.57806e-10 1.57692e-10 -8.11738e-11) (7.61495e-11 1.28081e-11 2.17823e-11) (7.43387e-11 7.20592e-12 2.3335e-10) (-7.26537e-11 1.98837e-10 9.68665e-10) (-3.50389e-10 4.9904e-10 1.13447e-09) (-1.33097e-10 2.13208e-10 2.2098e-10) (2.40715e-11 1.93501e-11 -6.74743e-11) (8.7114e-10 -5.4638e-10 -1.47519e-09) (1.53337e-09 -1.555e-09 -2.52745e-09) (4.25319e-10 -7.90248e-10 -9.65465e-10) (-1.64612e-11 -6.18513e-11 -4.53839e-11) (-7.56821e-11 6.02196e-12 7.4633e-11) (-1.97066e-10 1.36582e-10 4.50422e-10) (-1.16722e-10 1.45304e-10 6.08964e-10) (7.71216e-12 7.19145e-12 2.51548e-10) (3.01285e-11 -2.04574e-11 1.36044e-11) (2.95734e-10 -7.74873e-11 -2.56457e-10) (8.12636e-10 2.29538e-10 -8.23414e-10) (6.91854e-10 6.74652e-10 -4.90766e-10) (2.1833e-10 4.89464e-10 1.97527e-10) (1.93871e-10 4.82458e-10 1.60669e-09) (-1.04626e-09 -2.05987e-09 1.61091e-09) (-8.03254e-09 -1.19423e-08 -1.29604e-09) (-1.42529e-08 -1.25134e-08 -6.97811e-09) (-5.85433e-09 -1.79684e-09 -2.72689e-09) (-6.55279e-10 4.78582e-10 -1.2662e-10) (-1.18964e-10 1.66351e-09 6.51232e-10) (-4.95017e-10 2.8197e-09 1.78231e-09) (-9.4681e-10 1.56446e-09 1.64033e-09) (-3.99159e-10 1.06854e-10 1.25627e-09) (3.22547e-10 -9.02759e-10 1.80444e-09) (1.94503e-10 -6.80937e-10 7.3917e-10) (-5.45448e-11 -1.19387e-10 -7.39537e-11) (-3.67114e-10 -3.41298e-10 -1.69019e-09) (6.55303e-11 -3.91929e-10 -2.83339e-09) (3.67143e-10 -1.13537e-10 -1.287e-09) (1.94284e-10 8.00153e-11 -2.58675e-10) (1.84153e-10 2.07362e-10 -9.26464e-11) (2.07119e-10 3.69926e-10 -6.00235e-11) (1.19959e-10 2.87808e-10 -1.03054e-11) (4.76508e-11 1.01956e-10 4.74069e-11) (8.57706e-11 6.45794e-11 1.86116e-10) (2.63329e-10 9.39239e-11 5.57488e-10) (3.47714e-10 2.16884e-10 6.2932e-10) (2.05225e-10 1.99363e-10 2.41605e-10) (1.51887e-10 8.14357e-11 -2.92947e-11) (7.67594e-10 -1.33648e-10 -7.39408e-10) (1.78225e-09 -1.09605e-09 -2.28898e-09) (9.89941e-10 -1.19887e-09 -2.00196e-09) (-6.78286e-11 -3.10623e-10 -5.19206e-10) (-2.73223e-10 -2.04276e-11 -2.15487e-11) (-8.43139e-10 2.48783e-10 7.92676e-10) (-9.15975e-10 5.00974e-10 2.08551e-09) (-2.57381e-10 2.071e-10 1.427e-09) (2.71321e-11 -3.57954e-11 1.36012e-10) (1.48856e-10 -2.05487e-10 -1.86954e-10) (4.42552e-10 -5.08922e-10 -1.23397e-09) (3.61161e-10 1.29616e-10 -9.89609e-10) (4.73811e-10 8.2124e-10 -3.49485e-10) (7.42063e-10 1.57369e-09 8.42138e-10) (1.39308e-09 7.76522e-10 2.22219e-09) (-3.12038e-10 -1.36622e-09 6.45e-10) (-8.06201e-09 -9.53209e-09 -3.12248e-09) (-1.50596e-08 -7.99475e-09 -5.67319e-09) (-8.10851e-09 -1.94694e-10 -8.98084e-11) (-4.79285e-09 2.28418e-09 2.72838e-09) (-2.2068e-09 1.9566e-09 2.32334e-09) (-2.50826e-10 5.85825e-10 6.56996e-10) (2.14988e-10 1.52448e-10 2.77962e-10) (8.74592e-10 -4.92989e-11 6.44794e-10) (6.72674e-10 -1.7688e-10 6.00922e-10) (1.22561e-11 -9.64684e-12 1.27179e-11) (-1.62623e-10 -6.23658e-11 -4.89607e-10) (-2.28834e-10 -4.00813e-10 -2.73107e-09) (3.91343e-10 -5.24151e-10 -2.61155e-09) (1.84413e-10 -7.66241e-11 -6.10818e-10) (1.29899e-11 3.19751e-11 -3.45904e-11) (-8.20639e-12 1.8389e-10 2.21768e-11) (-3.75831e-11 3.83923e-10 9.08448e-11) (-3.30554e-11 2.64599e-10 1.06187e-10) (-1.00845e-12 6.34191e-11 8.74465e-11) (6.03696e-11 -2.23278e-11 1.45822e-10) (2.71414e-10 -7.45326e-11 2.4931e-10) (6.19051e-10 7.58803e-11 2.53709e-10) (9.433e-10 3.16543e-10 2.11792e-11) (1.20375e-09 2.55965e-10 -5.29645e-10) (1.75091e-09 -2.47174e-10 -1.5937e-09) (1.6357e-09 -9.2049e-10 -2.43938e-09) (3.22312e-10 -6.24492e-10 -1.57834e-09) (-3.75701e-10 -8.02618e-11 -4.51687e-10) (-1.12939e-09 2.92549e-10 2.45707e-10) (-1.92529e-09 8.43026e-10 2.44454e-09) (-9.96577e-10 5.98606e-10 3.66068e-09) (7.16628e-11 -5.54807e-11 1.11262e-09) (8.8404e-11 -1.34595e-10 -1.63941e-12) (-6.5408e-11 -1.00641e-09 -1.28595e-09) (-1.51331e-09 -1.27961e-09 -2.50649e-09) (-5.53592e-10 9.95287e-12 -5.60172e-10) (2.36813e-10 6.68924e-10 1.50238e-10) (2.76747e-09 3.32642e-09 2.66999e-09) (2.18752e-09 8.36859e-10 1.68681e-09) (-4.98784e-11 -3.32115e-10 -5.13683e-11) (-5.32185e-09 -4.5703e-09 -3.39349e-09) (-8.45869e-09 -3.10964e-09 -2.8421e-09) (-4.05553e-09 6.28725e-11 7.12285e-10) (-1.8932e-09 7.35037e-10 1.58977e-09) (-6.01771e-10 4.23074e-10 8.82001e-10) (-6.88499e-11 1.28144e-10 3.45921e-10) (1.82456e-10 8.72207e-11 4.08552e-10) (4.67315e-10 1.14701e-10 6.00662e-10) (1.85091e-10 7.48794e-11 1.59464e-10) (4.13692e-11 4.33618e-11 -8.86058e-11) (1.94971e-10 1.96568e-11 -1.61196e-09) (6.75178e-10 -5.13965e-10 -3.08066e-09) (3.92769e-10 -3.22502e-10 -1.3595e-09) (1.94247e-11 7.04133e-12 -1.09508e-10) (-2.36275e-11 7.37338e-11 -5.35184e-12) (-1.19273e-10 3.4677e-10 1.04523e-10) (-1.54847e-10 4.53516e-10 2.08908e-10) (-1.01282e-10 1.94958e-10 1.56774e-10) (-8.16598e-11 -5.17304e-13 8.72013e-11) (-1.97523e-10 -1.88684e-10 1.41679e-10) (-5.20319e-11 -1.07465e-10 5.69773e-11) (1.10088e-10 -4.97454e-12 -6.26825e-12) (1.77748e-09 4.40014e-10 -6.43037e-10) (4.3323e-09 7.57741e-10 -2.42107e-09) (4.37609e-09 -7.35633e-11 -3.52078e-09) (1.65067e-09 -5.20366e-10 -2.41544e-09) (-1.86929e-10 -1.26595e-10 -7.72765e-10) (-1.49015e-09 3.12626e-10 -2.88424e-10) (-2.40537e-09 1.01152e-09 1.46856e-09) (-1.11767e-09 9.58279e-10 3.54443e-09) (5.86021e-10 1.54371e-10 3.05299e-09) (4.84954e-10 -2.57944e-10 5.1345e-10) (8.60689e-11 -3.98091e-10 -3.08432e-10) (-2.91643e-09 -2.02488e-09 -3.05893e-09) (-8.81877e-09 -2.79762e-09 -4.1119e-09) (-2.31782e-09 -4.35111e-10 -1.00626e-10) (2.36696e-10 3.82309e-10 6.79495e-10) (4.47847e-09 3.16973e-09 3.93215e-09) (1.34688e-09 5.52034e-10 7.34895e-10) (2.24536e-11 -5.75979e-11 -8.22009e-11) (-1.43015e-09 -1.07617e-09 -1.28842e-09) (-2.58936e-09 -9.21685e-10 -8.62825e-10) (-1.40909e-09 -1.73868e-10 2.54094e-10) (-5.42953e-10 5.39374e-11 3.987e-10) (-1.40637e-10 7.95056e-11 2.07292e-10) (-8.74098e-12 7.44401e-11 1.47932e-10) (1.28899e-10 1.44375e-10 3.91475e-10) (3.22086e-10 2.43204e-10 5.73e-10) (1.86204e-10 1.46257e-10 9.88432e-11) (2.8025e-10 1.52334e-10 -4.0213e-10) (7.68767e-10 -1.16777e-10 -2.14873e-09) (5.06146e-10 -4.19814e-10 -1.78189e-09) (1.41202e-11 -5.05079e-11 -2.10823e-10) (-1.19681e-11 1.74934e-11 -1.49432e-12) (-5.05546e-11 2.10232e-10 8.23262e-11) (-5.48021e-11 4.28888e-10 1.64201e-10) (-9.23743e-11 3.39141e-10 1.61119e-10) (-1.88558e-10 1.24125e-10 1.10447e-10) (-9.33405e-10 -2.11042e-10 2.29534e-10) (-1.92149e-09 -1.13328e-09 4.50772e-10) (-5.3689e-10 -6.19154e-10 9.52243e-11) (1.28578e-10 -1.12678e-10 -1.52928e-10) (3.27691e-09 3.52812e-10 -2.33171e-09) (7.64424e-09 1.30703e-09 -5.10074e-09) (4.25027e-09 5.2715e-10 -3.40489e-09) (2.10673e-10 6.48203e-11 -5.35648e-10) (-8.09324e-10 2.24741e-10 -1.76655e-10) (-2.39763e-09 8.90357e-10 1.05963e-09) (-1.19249e-09 9.8885e-10 2.69672e-09) (9.7027e-10 5.53404e-10 3.93673e-09) (1.77422e-09 -2.55162e-10 2.03656e-09) (4.16172e-10 -2.52753e-10 4.96098e-11) (-6.05519e-10 -6.39915e-10 -9.69454e-10) (-8.65402e-09 -2.79871e-09 -5.06135e-09) (-1.09863e-08 -3.387e-09 -3.39809e-09) (-2.2045e-09 -9.1588e-10 3.14987e-10) (3.29979e-11 1.8968e-11 9.57299e-10) (2.24617e-09 1.25239e-09 2.6878e-09) (4.11927e-10 2.0303e-10 3.16806e-10) (1.26382e-11 -4.09003e-12 -9.14258e-12) (-2.28217e-10 -1.44104e-10 -2.34982e-10) (-8.58873e-10 -2.7895e-10 -3.12464e-10) (-9.21974e-10 -2.37451e-10 2.8246e-11) (-4.55374e-10 -1.28284e-10 1.3752e-10) (-1.15458e-10 -1.50348e-11 6.59757e-11) (-2.80443e-11 3.57311e-11 5.84233e-11) (6.22673e-11 1.71184e-10 2.27924e-10) (2.98648e-10 3.28887e-10 4.11747e-10) (2.82732e-10 2.14925e-10 7.56974e-11) (3.65722e-10 1.31354e-10 -4.12544e-10) (4.60462e-10 -1.44015e-10 -1.1954e-09) (3.06112e-11 -1.33328e-10 -4.86511e-10) (-2.34909e-11 2.24289e-12 -1.31811e-11) (-6.818e-11 1.09839e-10 1.15654e-10) (4.97426e-12 3.49815e-10 2.90398e-10) (5.47703e-11 3.98407e-10 2.10667e-10) (-6.02263e-11 2.07112e-10 6.93651e-11) (-4.03637e-10 1.14952e-10 3.34029e-11) (-1.55608e-09 -4.88816e-10 1.79225e-10) (-1.88888e-09 -1.57408e-09 4.97011e-10) (-8.91872e-10 -1.20073e-09 -4.46995e-11) (4.64275e-11 -4.09289e-10 -6.20591e-10) (2.14662e-09 1.12323e-10 -2.86442e-09) (3.3513e-09 1.02029e-09 -3.23731e-09) (6.56581e-10 4.49484e-10 -6.73428e-10) (-7.93459e-11 1.08592e-10 -2.17898e-12) (-7.94518e-10 4.15828e-10 6.49526e-10) (-7.512e-10 7.17788e-10 2.08598e-09) (7.19967e-10 7.84818e-10 3.93558e-09) (2.2291e-09 1.65396e-10 3.26767e-09) (1.06283e-09 -1.97361e-10 5.33469e-10) (8.78535e-11 -1.11995e-10 -2.13742e-10) (-2.03642e-09 -7.6974e-10 -2.28401e-09) (-6.68446e-09 -2.15061e-09 -3.8986e-09) (-3.83192e-09 -1.98904e-09 -1.29653e-09) (-5.74886e-10 -4.78087e-10 1.1774e-10) (-9.86391e-12 -3.18035e-11 3.2103e-10) (5.05344e-10 3.48573e-10 8.78973e-10) (5.43583e-11 6.56076e-11 6.3256e-11) (9.94508e-12 2.85312e-12 -7.67631e-12) (-3.49542e-11 -2.01938e-11 -1.12948e-10) (-2.54228e-10 -8.56766e-11 -2.08973e-10) (-4.00583e-10 -1.85075e-10 -9.65208e-11) (-2.95744e-10 -1.81125e-10 7.93387e-12) (-1.18116e-10 -4.67696e-11 1.83181e-11) (-3.95991e-11 2.03456e-11 2.12105e-11) (-8.59097e-12 1.26866e-10 1.02736e-10) (1.35652e-10 2.49298e-10 1.96055e-10) (2.24937e-10 1.7956e-10 2.71233e-11) (2.72303e-10 5.79137e-11 -2.3822e-10) (8.26697e-11 -7.52534e-11 -3.41235e-10) (-1.22e-10 -3.30886e-11 -1.2807e-10) (-1.2546e-10 4.57543e-11 3.82035e-11) (-4.09075e-11 2.29366e-10 3.26237e-10) (2.44705e-10 4.75404e-10 5.85274e-10) (1.51901e-10 3.295e-10 2.52786e-10) (-4.6838e-11 1.09327e-10 1.44083e-11) (-4.19104e-10 5.06086e-11 -8.18922e-11) (-8.87208e-10 -4.87896e-10 1.8211e-11) (-1.3612e-09 -1.51948e-09 2.96225e-10) (-1.28482e-09 -1.47724e-09 -3.48924e-10) (-4.50167e-10 -6.57396e-10 -1.21571e-09) (3.23629e-10 1.42924e-11 -1.63717e-09) (3.55609e-10 3.12445e-10 -5.85774e-10) (7.15286e-11 1.35137e-10 -6.74845e-12) (7.0177e-12 1.68962e-10 2.63535e-10) (1.27306e-13 3.5898e-10 1.30471e-09) (6.1978e-10 6.54806e-10 3.33724e-09) (1.89686e-09 6.03673e-10 4.04044e-09) (1.27451e-09 1.54973e-10 1.32855e-09) (1.48936e-10 -5.96873e-12 -4.13198e-11) (-1.79572e-10 -8.21983e-11 -1.05472e-09) (-1.63142e-09 -5.12562e-10 -2.42013e-09) (-1.58743e-09 -9.28654e-10 -1.30042e-09) (-6.08874e-10 -7.09187e-10 -1.38532e-10) (-2.11913e-10 -3.13886e-10 1.99506e-10) (-7.81335e-11 -3.39065e-11 2.24257e-10) (2.03773e-11 1.10614e-10 2.11836e-10) (-2.49894e-11 3.53819e-11 1.85695e-11) (2.16913e-11 1.79363e-11 -5.08206e-11) (7.2944e-11 1.30923e-11 -3.59105e-10) (-2.7135e-11 -5.59466e-11 -2.78564e-10) (-8.32602e-11 -1.12753e-10 -1.04026e-10) (-1.49167e-10 -1.52437e-10 -2.89033e-11) (-1.68184e-10 -6.47114e-11 3.44973e-12) (-6.62827e-11 2.72326e-11 7.01967e-12) (6.48514e-12 8.45095e-11 2.42706e-11) (1.97215e-10 2.2503e-10 7.00178e-11) (2.91281e-10 1.63119e-10 -1.64246e-11) (6.00784e-11 1.26454e-11 -6.17858e-11) (-2.07489e-10 -3.52709e-11 -1.37572e-10) (-1.00157e-09 1.49516e-11 -3.85045e-11) (-2.90012e-10 1.1923e-10 2.03059e-10) (1.7704e-10 2.76423e-10 4.75873e-10) (7.21395e-10 5.20219e-10 7.51835e-10) (2.44988e-10 2.43437e-10 2.09075e-10) (-1.12145e-11 3.52438e-11 -8.10834e-12) (-1.30838e-10 -1.49675e-11 -8.2402e-11) (-2.72258e-10 -3.08603e-10 -4.48878e-11) (-8.48456e-10 -1.08461e-09 7.9667e-11) (-1.42713e-09 -1.29957e-09 -6.51412e-10) (-1.2922e-09 -8.34896e-10 -1.86819e-09) (-4.06808e-10 -1.81224e-11 -1.01371e-09) (-1.19275e-11 4.51812e-11 -5.1514e-11) (7.45036e-11 9.08635e-11 1.20228e-10) (5.1662e-10 2.63965e-10 9.74664e-10) (1.0661e-09 4.304e-10 2.37014e-09) (1.46528e-09 6.6115e-10 3.46303e-09) (1.25236e-09 5.69485e-10 2.42991e-09) (1.94989e-10 1.042e-10 2.46273e-10) (6.03253e-12 4.3687e-11 -1.54803e-10) (-2.99072e-10 7.35189e-11 -1.76056e-09) (-3.62197e-10 -2.33923e-10 -1.48053e-09) (-8.57229e-11 -2.67405e-10 -2.78536e-10) (-1.80382e-11 -2.99371e-10 6.05281e-11) (-1.13787e-10 -2.78176e-10 3.16629e-10) (-3.74537e-10 -6.23416e-11 4.72279e-10) (-3.28095e-10 1.40313e-10 2.92422e-10) (-1.69563e-10 8.3742e-11 2.09574e-11) (1.53336e-11 4.5113e-11 -1.54952e-10) (2.55929e-10 6.15864e-11 -8.52297e-10) (1.76325e-10 -1.04954e-10 -5.63761e-10) (3.81778e-12 -9.94053e-11 -1.09512e-10) (-1.15193e-10 -1.09788e-10 -1.95079e-11) (-3.40608e-10 -7.40827e-11 7.41039e-12) (-1.03192e-10 3.73513e-11 -2.42816e-12) (3.58349e-11 7.45335e-11 -8.48068e-13) (4.2764e-10 2.75148e-10 -1.52983e-11) (2.82399e-10 1.29742e-10 -6.99603e-11) (-2.57341e-11 9.25414e-12 -2.9801e-11) (-1.53409e-09 8.94839e-13 -1.14704e-10) (-1.71971e-09 8.2366e-11 4.93958e-10) (-1.54988e-10 1.00595e-10 3.58631e-10) (4.93065e-10 2.9034e-10 5.95663e-10) (8.79797e-10 4.05429e-10 4.86801e-10) (2.81057e-10 1.56525e-10 6.2017e-11) (2.12364e-11 2.01501e-11 -3.04515e-11) (-1.48339e-12 -3.01682e-11 -6.64934e-11) (-5.36372e-11 -1.68712e-10 -3.92e-11) (-5.30142e-10 -6.14761e-10 4.31884e-12) (-1.47133e-09 -1.03142e-09 -8.23334e-10) (-1.93997e-09 -9.06128e-10 -2.18542e-09) (-1.01572e-09 -1.18601e-10 -9.55627e-10) (-1.03267e-10 2.23145e-11 2.75259e-12) (1.08955e-10 6.95312e-11 4.62776e-10) (1.57184e-09 2.26029e-10 2.40919e-09) (2.71465e-09 5.91854e-10 3.49408e-09) (1.85744e-09 8.07744e-10 2.76851e-09) (4.34672e-10 4.40366e-10 1.07549e-09) (-2.99563e-11 6.63484e-11 4.45676e-11) (-1.91487e-10 1.68603e-10 -3.82672e-10) (-4.27504e-11 1.85339e-10 -1.44069e-09) (2.9728e-10 -1.16674e-10 -9.44932e-10) (2.62803e-10 -2.45997e-10 -1.91576e-10) (2.38506e-10 -3.50144e-10 1.23057e-10) (-5.12833e-11 -2.11888e-10 2.60302e-10) (-8.3895e-10 -5.59065e-11 6.32399e-10) (-1.18978e-09 2.72497e-10 5.49364e-10) (-1.47003e-10 7.17378e-11 -2.22821e-11) (4.04724e-11 7.61563e-11 -3.48473e-10) (3.63016e-10 5.77225e-11 -1.15904e-09) (2.07696e-10 -1.20517e-10 -5.30026e-10) (-1.83513e-12 -5.54595e-11 -4.82583e-11) (-2.50612e-10 -1.20522e-10 4.17425e-12) (-6.90696e-10 -7.28095e-11 -1.91597e-12) (-1.10096e-10 3.47079e-11 -1.90124e-11) (5.77774e-11 6.45507e-11 -2.15281e-11) (4.50511e-10 2.28721e-10 -1.10787e-10) (1.00406e-10 7.00901e-11 -7.18034e-11) (-2.67924e-10 6.15373e-11 -8.42421e-11) (-1.78523e-09 8.06228e-11 3.14295e-10) (-7.03667e-10 1.04223e-11 7.14464e-10) (1.31798e-10 5.05591e-11 6.49901e-10) (5.25781e-10 1.90556e-10 4.12584e-10) (6.1442e-10 2.40131e-10 6.61264e-11) (3.83538e-10 1.32986e-10 -1.44931e-10) (1.82055e-10 1.87252e-11 -2.00662e-10) (5.09323e-11 -5.5283e-11 -1.04349e-10) (-4.02174e-11 -8.31559e-11 -6.23476e-12) (-3.985e-10 -3.30767e-10 1.56523e-11) (-1.07064e-09 -7.30935e-10 -7.85054e-10) (-2.04618e-09 -8.52899e-10 -1.99645e-09) (-1.59451e-09 -2.19817e-10 -7.25699e-10) (-3.35285e-10 -2.11628e-11 2.08669e-10) (3.97233e-10 -5.4921e-11 1.43429e-09) (3.02521e-09 1.98168e-11 3.91801e-09) (4.26549e-09 8.02422e-10 4.17687e-09) (2.21124e-09 9.8056e-10 2.33329e-09) (1.05307e-10 3.16271e-10 3.95659e-10) (-3.21357e-10 2.40823e-10 -4.05884e-11) (-4.38895e-10 3.17753e-10 -6.19542e-10) (1.77517e-10 1.95934e-10 -9.65348e-10) (8.3975e-10 -1.15035e-10 -8.42202e-10) (1.08191e-09 -5.12718e-10 -3.07437e-10) (4.41585e-10 -4.10333e-10 1.17228e-10) (-8.74984e-11 -1.26862e-10 1.43132e-10) (-1.17019e-09 1.50103e-11 5.71689e-10) (-1.24364e-09 2.79618e-10 4.30391e-10) (-2.66959e-11 3.56696e-11 -4.30442e-11) (1.79588e-10 1.0297e-10 -5.57549e-10) (3.5653e-10 8.75488e-12 -9.03216e-10) (1.01252e-10 -7.20347e-11 -2.18749e-10) (-2.99661e-11 -3.59825e-11 -1.42948e-11) (-8.05792e-10 -1.84564e-10 1.78615e-11) (-1.1623e-09 -7.52284e-11 -8.826e-11) (-9.13437e-11 2.07306e-11 -3.91147e-11) (6.4731e-11 4.85101e-11 -4.66798e-11) (2.41327e-10 1.33964e-10 -1.27272e-10) (8.04422e-12 4.31587e-11 -4.42436e-11) (-3.2582e-10 9.33826e-11 1.186e-12) (-4.58403e-10 2.15502e-11 4.40206e-10) (7.47562e-11 -1.38965e-10 1.22369e-09) (4.40607e-10 -2.11724e-11 8.77417e-10) (1.9389e-10 6.54623e-11 9.32095e-11) (3.0071e-10 1.27599e-10 -1.62656e-10) (3.86181e-10 1.16975e-10 -4.18293e-10) (1.62657e-10 2.09787e-14 -2.86077e-10) (-3.3754e-13 -1.58857e-11 -2.75836e-11) (-7.49059e-11 -5.9039e-11 2.7096e-11) (-1.77518e-10 -1.61058e-10 -2.67966e-11) (-6.65887e-10 -5.32625e-10 -7.43671e-10) (-1.89885e-09 -6.17494e-10 -1.38005e-09) (-1.53238e-09 -1.95982e-10 -1.70414e-10) (-2.87604e-10 -8.80004e-11 5.17175e-10) (1.14222e-09 -2.76224e-10 2.47638e-09) (3.58796e-09 -1.0813e-10 4.15983e-09) (4.30222e-09 7.66507e-10 3.80331e-09) (2.09305e-09 9.78649e-10 1.72463e-09) (6.58922e-11 2.40057e-10 1.29975e-10) (-4.46971e-10 3.51786e-10 -2.56547e-10) (-3.98841e-10 3.42481e-10 -7.21801e-10) (3.26021e-10 1.62516e-10 -7.35062e-10) (1.45834e-09 -1.90655e-10 -8.46341e-10) (1.66963e-09 -7.03923e-10 -3.46234e-10) (1.96156e-10 -2.36334e-10 4.18025e-11) (-2.59847e-10 -1.18729e-10 1.38511e-10) (-1.1566e-09 7.68921e-11 4.0955e-10) (-4.9651e-10 1.54445e-10 1.26945e-10) (5.86299e-11 5.57353e-11 -1.09173e-10) (3.54748e-10 1.01106e-10 -5.74898e-10) (2.72466e-10 -2.38736e-11 -4.42556e-10) (2.10217e-11 -2.74987e-11 -5.04741e-11) (-2.07048e-10 -7.7757e-11 -1.81822e-11) (-1.74939e-09 -2.18419e-10 -6.50573e-11) (-1.11758e-09 -7.48783e-11 -1.78363e-10) (-4.8226e-11 5.26344e-12 -4.25953e-11) (4.415e-11 2.90981e-11 -5.46744e-11) (6.27694e-11 6.01101e-11 -6.71535e-11) (-1.16354e-11 3.07054e-11 -1.4386e-11) (-4.69238e-11 3.42632e-11 7.37366e-11) (2.86329e-10 -8.40489e-11 1.01593e-09) (9.40075e-10 -3.27342e-10 2.01515e-09) (1.66703e-10 -1.65402e-11 3.66226e-10) (1.20286e-11 8.84804e-12 -4.94686e-12) (1.30375e-10 8.36945e-11 -2.65512e-10) (1.81678e-10 8.69691e-11 -4.57781e-10) (2.52392e-11 7.17947e-12 -1.38299e-10) (-5.12765e-12 -3.20527e-12 -2.81761e-12) (-1.83131e-11 -2.29325e-11 8.52639e-12) (-5.21888e-11 -1.04662e-10 -8.34666e-11) (-5.93045e-10 -3.76163e-10 -6.26099e-10) (-1.74021e-09 -3.63835e-10 -6.78893e-10) (-8.27124e-10 -1.11618e-10 1.97137e-10) (-1.95242e-12 -1.28748e-10 7.11589e-10) (1.38876e-09 -3.53852e-10 2.25608e-09) (2.58824e-09 -3.96456e-11 2.84523e-09) (2.92799e-09 5.81919e-10 2.47955e-09) (1.60334e-09 7.60185e-10 1.05984e-09) (1.58283e-10 2.38478e-10 3.40296e-11) (-1.14098e-10 2.48126e-10 -2.82007e-10) (-7.72327e-11 2.66963e-10 -6.68899e-10) (5.20508e-10 1.19702e-10 -7.0585e-10) (1.58509e-09 -2.69867e-10 -7.14239e-10) (7.6371e-10 -4.08381e-10 -1.3808e-10) (-2.89419e-11 -9.32056e-11 3.13759e-11) (-7.57312e-10 -1.42504e-10 2.32454e-10) (-7.30531e-10 8.11278e-11 1.96292e-10) (-6.00713e-11 3.94159e-11 9.75938e-13) (2.92996e-10 9.49905e-11 -2.22013e-10) (4.60147e-10 6.94591e-11 -4.12844e-10) (1.6786e-10 -2.47239e-11 -1.75355e-10) (-6.90285e-12 -1.20033e-11 -1.63215e-11) (-6.34397e-10 -1.13175e-10 -5.40612e-11) (-1.81057e-09 -1.61624e-10 -1.47667e-10) (-5.2568e-10 -5.27566e-11 -1.36186e-10) (-1.86506e-11 -6.57117e-13 -3.18282e-11) (1.34767e-11 1.26547e-11 -3.00041e-11) (1.18449e-11 2.07435e-11 -1.46534e-11) (1.52907e-11 2.3568e-11 1.88173e-11) (4.50677e-10 4.96384e-11 6.05806e-10) (1.45588e-09 -2.81461e-10 2.05453e-09) (3.91001e-10 -1.4947e-10 9.08163e-10) (-1.65259e-12 3.8109e-14 2.50832e-11) (-4.33235e-12 1.20789e-11 -3.86651e-11) (4.35442e-11 5.70549e-11 -3.08122e-10) (4.48652e-11 4.86532e-11 -2.90119e-10) (2.53547e-12 4.52517e-12 -4.27633e-11) (2.80408e-13 -7.43476e-13 -4.62921e-13) (1.12999e-11 -1.79139e-11 -9.90054e-12) (-1.99887e-11 -7.68628e-11 -1.04322e-10) (-5.44611e-10 -1.95806e-10 -3.53567e-10) (-1.09072e-09 -1.53192e-10 -1.48211e-10) (-2.0905e-10 -4.094e-11 1.7019e-10) (2.23337e-10 -1.18458e-10 6.17979e-10) (1.01627e-09 -2.12319e-10 1.32051e-09) (1.60366e-09 2.66609e-11 1.61518e-09) (1.81726e-09 3.84742e-10 1.38372e-09) (1.23098e-09 5.10062e-10 5.76983e-10) (4.14103e-10 2.96107e-10 -5.75938e-11) (2.2611e-10 2.6155e-10 -4.04852e-10) (3.6471e-10 2.39647e-10 -7.55504e-10) (7.28773e-10 5.39802e-11 -6.63644e-10) (6.15857e-10 -1.56476e-10 -2.35174e-10) (3.49912e-11 -6.47637e-11 9.0725e-12) (-3.2992e-10 -1.62447e-10 1.23368e-10) (-8.13852e-10 -8.42583e-11 2.00929e-10) (-1.73809e-10 3.31998e-11 3.25593e-11) (7.96344e-12 1.50549e-11 -1.08582e-11) (1.08537e-09 1.53345e-10 -3.65459e-10) (9.99941e-10 6.9123e-11 -4.11179e-10) (3.38421e-10 -3.43177e-11 -1.66072e-10) (3.61208e-12 -6.61612e-12 -1.00387e-11) (-2.67e-10 -4.34506e-11 -4.00866e-11) (-5.34277e-10 -5.73518e-11 -7.95201e-11) (-6.44842e-11 -1.55623e-11 -3.62098e-11) (3.75589e-12 -1.66771e-12 -1.45974e-11) (2.46025e-11 7.93561e-12 -1.57229e-11) (8.40284e-11 3.36741e-11 1.1649e-11) (6.43554e-10 1.09317e-10 3.64976e-10) (1.95218e-09 -3.20631e-11 1.45601e-09) (1.34497e-09 -1.79174e-10 1.30866e-09) (1.82639e-10 -3.97013e-11 2.49844e-10) (3.54701e-12 1.82218e-13 1.16766e-12) (3.60998e-11 1.18029e-11 -7.99994e-11) (1.27095e-10 3.70588e-11 -2.66793e-10) (1.18595e-10 3.20766e-11 -1.8352e-10) (8.3809e-11 7.45884e-12 -5.45009e-11) (1.80309e-10 -2.13949e-11 -4.11992e-11) (2.6111e-10 -7.31594e-11 -9.593e-11) (4.20143e-11 -4.08393e-11 -6.74225e-11) (-1.04614e-10 -4.1335e-11 -7.33114e-11) (-1.31219e-10 -2.58493e-11 1.40477e-12) (6.89722e-12 -1.58901e-11 6.4863e-11) (4.04795e-10 -1.06837e-10 4.43981e-10) (1.04046e-09 -1.5478e-10 8.84739e-10) (1.67375e-09 3.31623e-12 1.21613e-09) (2.10447e-09 3.01859e-10 1.14128e-09) (1.97766e-09 4.81487e-10 5.36482e-10) (1.56305e-09 4.95878e-10 -2.27821e-10) (1.50916e-09 4.70147e-10 -8.88353e-10) (1.53348e-09 2.99728e-10 -1.03853e-09) (1.1905e-09 3.03287e-11 -4.84288e-10) (4.3437e-10 -8.82279e-11 -1.3904e-11) (2.39424e-11 -3.95777e-11 3.20964e-11) (-8.13849e-11 -5.08605e-11 5.75432e-11) (-5.04598e-11 -8.69809e-12 2.38331e-11) (3.38984e-12 2.32363e-12 3.16823e-13) (3.56933e-10 8.37695e-11 -8.96726e-11) (5.1546e-09 2.98058e-10 -6.07393e-10) (4.55475e-09 1.37376e-10 -7.09871e-10) (2.0456e-09 -6.91279e-11 -3.90797e-10) (1.66645e-10 -2.19136e-11 -4.97272e-11) (-1.96447e-11 -4.23157e-12 -7.14133e-12) (-4.1504e-11 -8.27574e-12 -1.60374e-11) (1.65477e-12 -3.22835e-12 -7.19048e-12) (4.67099e-11 -4.54068e-12 -1.93515e-11) (2.41658e-10 1.66365e-11 6.66352e-12) (1.22298e-09 9.49246e-11 3.42562e-10) (3.86513e-09 9.59806e-11 1.52307e-09) (5.03151e-09 -1.24817e-10 2.41213e-09) (2.81761e-09 -1.70646e-10 1.57446e-09) (7.71045e-10 -4.81144e-11 3.79986e-10) (2.57287e-10 9.48296e-14 -7.02148e-12) (3.70214e-10 1.37634e-11 -2.18772e-10) (5.99742e-10 4.04996e-11 -4.3227e-10) (7.90188e-10 5.36227e-11 -4.05539e-10) (1.27589e-09 2.38821e-11 -3.50298e-10) (2.04644e-09 -7.97445e-11 -3.98621e-10) (1.66478e-09 -1.59821e-10 -4.16607e-10) (3.34851e-10 -6.27558e-11 -1.64847e-10) (6.57859e-12 -5.82894e-12 -1.54209e-11) (2.70411e-12 -1.24878e-12 -2.12686e-13) (1.93079e-10 -3.06558e-11 7.8622e-11) (8.54978e-10 -1.13391e-10 3.51669e-10) (1.73055e-09 -1.48831e-10 7.10135e-10) (2.95596e-09 -2.47251e-11 1.10587e-09) (4.61102e-09 2.96354e-10 1.26411e-09) (6.39955e-09 6.62435e-10 6.72765e-10) (8.31386e-09 1.0458e-09 -8.87665e-10) (1.01648e-08 1.15293e-09 -2.48326e-09) (1.03651e-08 7.81418e-10 -2.28717e-09) (8.09399e-09 1.75704e-10 -6.23228e-10) (3.94506e-09 -2.18062e-10 4.31477e-10) (8.66184e-10 -1.66113e-10 2.87886e-10) (1.41327e-10 -4.41855e-11 8.14883e-11) (1.8048e-10 -1.27158e-11 5.12664e-11) (1.06154e-09 6.33484e-11 2.75582e-11) (3.29516e-09 2.46326e-10 -2.20483e-10) (8.51131e-09 2.02063e-10 -3.82897e-10) (6.59151e-09 5.64003e-11 -5.93705e-10) (1.83872e-09 -3.54165e-11 -2.61305e-10) (4.61272e-11 -1.73572e-12 -1.1527e-11) (-2.74392e-11 1.36322e-13 -5.54711e-12) (-6.89791e-13 -6.59931e-13 -3.06947e-12) (1.81635e-11 -3.0956e-12 -7.37675e-12) (1.02432e-10 -5.21934e-12 4.72501e-12) (7.02533e-10 3.06284e-12 2.04273e-10) (3.18411e-09 2.01903e-11 1.12035e-09) (6.20287e-09 -9.91343e-11 2.47906e-09) (5.87968e-09 -1.90937e-10 2.82111e-09) (2.49743e-09 -1.24704e-10 1.42682e-09) (5.82864e-10 -2.71487e-11 2.60244e-10) (2.64589e-10 -3.24971e-12 -4.11519e-11) (4.68602e-10 3.07959e-13 -3.04251e-10) (7.49515e-10 1.14838e-11 -5.00719e-10) (1.1905e-09 1.79648e-11 -5.38599e-10) (2.0066e-09 -4.02757e-12 -5.70255e-10) (2.39112e-09 -6.0693e-11 -5.55042e-10) (1.09491e-09 -5.29259e-11 -3.12016e-10) (1.09887e-10 -7.10761e-12 -5.87353e-11) (1.34807e-11 5.10715e-14 -1.28897e-11) (9.0282e-11 3.51891e-13 -3.32662e-11) (5.28585e-10 -1.59381e-11 -7.907e-11) (1.19631e-09 -4.78522e-11 -5.98635e-11) (2.01313e-09 -5.46887e-11 5.36207e-11) (3.2582e-09 8.79798e-12 2.47936e-10) (5.53582e-09 1.73508e-10 3.54834e-10) (9.87925e-09 4.5961e-10 -1.79016e-10) (1.72511e-08 9.4878e-10 -2.08312e-09) (2.5291e-08 1.1684e-09 -3.90541e-09) (2.74553e-08 8.12727e-10 -2.68918e-09) (2.0091e-08 1.35215e-10 3.37903e-10) (8.04127e-09 -2.17821e-10 1.29001e-09) (1.57363e-09 -1.19952e-10 5.03506e-10) (4.25327e-10 -3.84986e-11 1.62212e-10) (7.39495e-10 -1.02825e-11 1.40076e-10) (2.66712e-09 6.79187e-11 1.51503e-10) (6.10692e-09 1.90106e-10 4.25921e-12) (5.85566e-10 3.42067e-12 1.36947e-11) (3.07732e-10 2.80244e-14 -1.08887e-11) (2.89669e-11 -1.74697e-13 -2.36769e-12) (-1.17012e-12 5.18227e-14 -8.41183e-14) (1.08048e-13 2.84901e-14 -9.84739e-14) (5.31113e-12 -1.45091e-13 -2.00865e-12) (1.00111e-11 -6.13938e-13 -1.67152e-12) (2.33282e-11 -9.312e-13 2.84479e-12) (1.04604e-10 -1.85192e-12 2.97855e-11) (3.28218e-10 -2.32811e-12 1.20281e-10) (4.967e-10 -9.73679e-12 2.47255e-10) (3.71492e-10 -1.03541e-11 2.67877e-10) (1.34738e-10 -5.57001e-12 1.34209e-10) (3.45857e-11 -1.22294e-12 2.50394e-11) (2.35467e-11 -3.63167e-13 -3.25833e-12) (3.74823e-11 -5.28454e-13 -2.5204e-11) (3.76255e-11 -2.75829e-13 -3.07496e-11) (4.07949e-11 -6.20017e-14 -2.57316e-11) (5.78102e-11 -5.77556e-14 -2.40272e-11) (5.1734e-11 -5.28275e-14 -1.80998e-11) (1.12394e-11 2.43984e-13 -5.17138e-12) (3.37893e-13 1.04992e-13 -9.33117e-13) (2.40946e-12 3.01145e-13 -3.83867e-12) (4.81389e-11 1.79416e-12 -4.26879e-11) (1.78819e-10 1.66372e-12 -1.28199e-10) (3.13462e-10 -8.83019e-13 -1.79899e-10) (3.83885e-10 -3.63828e-12 -1.53286e-10) (3.92869e-10 -3.12368e-12 -7.9417e-11) (4.60868e-10 -4.77781e-13 -1.97034e-11) (8.00733e-10 7.88368e-12 -1.48078e-11) (1.70538e-09 3.01063e-11 -1.66439e-10) (2.84851e-09 3.61879e-11 -3.59815e-10) (2.89486e-09 1.64315e-11 -1.7643e-10) (1.6224e-09 -3.67954e-12 1.37048e-10) (4.55506e-10 -5.7448e-12 1.3602e-10) (8.15638e-11 -2.6089e-12 4.57674e-11) (3.52674e-11 -1.82555e-12 1.98917e-11) (7.70995e-11 -1.48938e-12 2.186e-11) (2.39305e-10 4.07332e-13 3.70827e-11) (4.85317e-10 3.59399e-12 4.52365e-11) (4.22531e-11 -2.31329e-10 -2.76743e-11) (-2.8433e-11 -1.26343e-10 -3.39021e-12) (-1.05865e-11 -1.12062e-11 4.79605e-12) (-7.57855e-12 2.40389e-11 1.04152e-11) (-2.80055e-12 2.13909e-10 2.27272e-11) (-2.25875e-11 3.06274e-10 -1.87704e-11) (-6.44452e-11 1.25844e-10 -4.04526e-11) (-1.45945e-10 1.84559e-11 -7.11909e-11) (-4.69453e-10 -1.75697e-10 -2.16311e-10) (-6.84449e-10 -3.10984e-10 -3.55182e-10) (-4.04373e-10 -1.05096e-10 -2.70649e-10) (-1.06514e-10 4.45084e-11 -1.01189e-10) (-1.35833e-11 7.00049e-11 -2.48011e-11) (2.93533e-11 8.3093e-11 3.37913e-11) (8.78978e-11 9.14149e-11 1.66908e-10) (1.68811e-10 8.29597e-11 4.29318e-10) (1.92166e-10 8.85702e-11 5.97845e-10) (9.26655e-11 8.22845e-11 3.97032e-10) (-7.59532e-12 2.41125e-11 8.87707e-11) (-3.54428e-11 -2.30021e-12 4.41469e-12) (-2.53369e-10 -9.8127e-11 -1.51092e-10) (-5.15567e-10 -3.06519e-10 -4.96448e-10) (-3.89637e-10 -3.1297e-10 -5.41325e-10) (-1.15151e-10 -1.21559e-10 -2.43533e-10) (-9.47494e-12 -1.26833e-11 -3.33964e-11) (-7.83557e-14 -4.02946e-14 3.15132e-14) (-8.26428e-12 -6.22504e-12 2.79158e-11) (-5.18971e-11 -7.34424e-11 1.82367e-10) (-7.9107e-11 -1.99744e-10 4.20243e-10) (-1.56736e-11 -1.9672e-10 4.39063e-10) (3.3602e-11 -6.78349e-11 1.72394e-10) (1.45431e-11 -5.65231e-12 1.16642e-11) (3.89834e-11 5.03856e-12 -3.18605e-11) (1.52966e-10 6.65675e-11 -1.86758e-10) (3.06554e-10 2.01041e-10 -3.26632e-10) (3.91702e-10 2.91779e-10 -3.09886e-10) (3.47663e-10 2.18704e-10 -1.85796e-10) (2.46623e-10 6.44967e-11 -7.92862e-11) (1.8592e-10 -5.92441e-11 -3.79607e-11) (1.43838e-10 -1.80947e-10 -3.1949e-11) (-8.14618e-11 -1.10676e-10 2.74184e-11) (-1.83198e-10 -2.72097e-10 2.17174e-10) (-8.6528e-11 -1.36834e-10 2.72172e-10) (2.38287e-13 5.54577e-11 1.61278e-10) (5.04326e-11 2.98251e-10 1.24535e-10) (9.28308e-11 4.83443e-10 -1.83254e-11) (5.30506e-11 2.21411e-10 -9.40357e-11) (5.84626e-12 1.87059e-11 -5.38022e-11) (-4.06744e-11 -9.45706e-11 -1.39677e-10) (-2.25633e-10 -3.52876e-10 -3.75449e-10) (-4.21973e-10 -3.92872e-10 -5.30571e-10) (-3.12195e-10 -1.30933e-10 -3.71116e-10) (-7.01486e-11 2.91495e-11 -1.14662e-10) (2.30965e-11 7.20496e-11 -3.80934e-11) (2.25134e-10 2.4161e-10 3.27151e-11) (5.71275e-10 4.50404e-10 3.23306e-10) (7.48538e-10 5.29642e-10 7.65749e-10) (5.18867e-10 4.06886e-10 9.50023e-10) (8.63661e-11 1.52789e-10 5.65981e-10) (-9.80767e-11 -2.85156e-12 1.58501e-10) (-3.19527e-10 -1.3948e-10 2.73571e-12) (-7.71692e-10 -5.028e-10 -4.47524e-10) (-7.61341e-10 -6.48537e-10 -8.21122e-10) (-3.15425e-10 -3.32899e-10 -5.00039e-10) (-4.61364e-11 -5.57014e-11 -7.96707e-11) (-2.64423e-12 -2.35961e-12 1.33405e-12) (-2.38379e-11 -5.93054e-12 8.91204e-11) (-1.10262e-10 -2.08339e-11 4.96517e-10) (-2.131e-10 -4.10395e-11 1.11474e-09) (-1.56379e-10 2.12425e-11 1.01028e-09) (-2.2244e-11 3.65447e-11 2.29464e-10) (1.49376e-12 1.95169e-12 -4.85032e-13) (7.00611e-11 3.15362e-12 -1.789e-10) (2.46889e-10 -5.56845e-11 -5.65746e-10) (3.52992e-10 -5.24593e-11 -5.89569e-10) (3.57795e-10 2.82367e-11 -4.07249e-10) (3.31926e-10 9.29559e-11 -2.74186e-10) (2.21512e-10 8.14464e-11 -1.68755e-10) (5.26659e-11 1.38272e-11 -5.64854e-11) (-2.43787e-12 -8.7538e-12 -8.95039e-12) (-1.82247e-10 -2.2265e-10 1.68958e-10) (-1.80567e-10 -5.91732e-10 7.09908e-10) (1.21131e-10 -3.02609e-10 7.81133e-10) (2.1243e-10 1.46462e-10 3.5676e-10) (2.47296e-10 5.40968e-10 1.00859e-10) (1.0104e-10 6.88445e-10 -2.19316e-10) (-5.21827e-11 2.88662e-10 -2.69409e-10) (-9.159e-11 1.70347e-11 -2.50173e-10) (-2.03949e-10 -2.13951e-10 -4.44467e-10) (-3.92596e-10 -3.79645e-10 -6.32847e-10) (-4.59508e-10 -2.89401e-10 -5.09742e-10) (-2.08512e-10 -9.76609e-11 -1.48025e-10) (-7.44759e-12 -5.09254e-12 -9.97731e-13) (4.91725e-11 2.16877e-12 3.39306e-11) (4.67847e-10 1.09087e-10 1.84755e-10) (1.13194e-09 4.10172e-10 3.22023e-10) (1.42909e-09 7.33035e-10 4.38476e-10) (1.00853e-09 7.35643e-10 4.96747e-10) (3.05522e-10 3.71814e-10 3.22788e-10) (-1.89643e-11 7.32198e-11 8.8993e-11) (-2.29113e-10 -7.32053e-12 3.23999e-11) (-1.04069e-09 -3.25461e-10 -2.9453e-10) (-1.74686e-09 -8.04846e-10 -8.95317e-10) (-1.40414e-09 -9.29695e-10 -8.73348e-10) (-5.94138e-10 -6.26967e-10 -2.98271e-10) (-1.56015e-10 -2.86809e-10 6.54743e-11) (-6.09753e-11 -1.80109e-10 3.489e-10) (-6.36612e-11 4.12326e-11 1.08927e-09) (-2.02774e-10 5.18501e-10 1.61046e-09) (-2.73748e-10 5.58267e-10 9.25982e-10) (-9.45708e-11 1.65852e-10 1.09738e-10) (-1.18882e-11 3.23909e-11 -5.34375e-11) (1.33979e-10 -5.54816e-11 -4.29322e-10) (5.11689e-10 -2.84734e-10 -8.20402e-10) (6.54786e-10 -2.69986e-10 -6.66115e-10) (4.66216e-10 -6.93575e-11 -3.34803e-10) (2.35303e-10 5.26571e-11 -1.51133e-10) (7.20089e-11 6.03509e-11 -6.96467e-11) (-1.43519e-12 1.62195e-11 -1.89108e-11) (-3.14661e-11 -1.03726e-11 -1.62986e-12) (-2.31143e-10 -2.64611e-10 3.45562e-10) (-2.44976e-10 -7.47668e-10 1.3088e-09) (1.46788e-10 -2.96047e-10 1.1482e-09) (2.45978e-10 2.05685e-10 2.97845e-10) (5.17245e-10 8.75258e-10 -2.14123e-10) (4.56669e-10 1.18184e-09 -9.8113e-10) (9.40326e-11 4.02593e-10 -8.24914e-10) (-5.42815e-12 -8.63666e-11 -5.44526e-10) (-1.04837e-11 -2.7322e-10 -3.91688e-10) (-2.08752e-11 -2.06562e-10 -1.59674e-10) (-1.40351e-11 -1.08476e-10 -1.45466e-11) (2.37559e-11 -1.08407e-10 7.19568e-11) (1.66022e-10 -1.19181e-10 2.36826e-10) (3.42603e-10 1.97979e-11 3.32587e-10) (3.54625e-10 1.98319e-10 2.22273e-10) (2.46944e-10 2.62271e-10 7.64642e-11) (1.28668e-10 2.35415e-10 4.88805e-12) (5.16382e-11 2.11223e-10 -1.4408e-12) (-2.0916e-11 1.88583e-10 1.31851e-11) (-1.29845e-10 1.65765e-10 1.83081e-11) (-4.17643e-10 1.4764e-10 -2.81737e-11) (-9.02231e-10 -3.11593e-11 -2.72431e-10) (-1.07976e-09 -4.33904e-10 -6.75743e-10) (-8.16779e-10 -8.64206e-10 -7.99562e-10) (-4.91589e-10 -1.00218e-09 -3.28608e-10) (-4.20113e-10 -9.28078e-10 4.24894e-10) (-7.16896e-10 -7.73564e-10 1.71418e-09) (-1.25919e-09 1.7905e-10 2.81144e-09) (-1.22214e-09 9.18588e-10 1.78742e-09) (-4.61993e-10 4.95934e-10 2.68734e-10) (-7.83978e-11 1.48704e-10 -1.32812e-10) (1.19741e-10 6.43322e-11 -5.47178e-10) (4.66063e-10 -1.99874e-10 -9.05403e-10) (5.56696e-10 -3.27122e-10 -6.32357e-10) (4.1163e-10 -1.87672e-10 -2.33551e-10) (2.5616e-10 -2.90947e-11 -5.17798e-11) (1.53006e-10 5.89147e-11 -1.12254e-11) (5.59366e-11 7.5139e-11 -1.24958e-11) (-5.42127e-12 2.86822e-11 -6.34264e-12) (-4.03455e-11 -4.15264e-12 1.55878e-11) (-2.57478e-10 -1.20962e-10 5.44078e-10) (-5.56618e-10 -5.76949e-10 1.8535e-09) (-1.25721e-10 -2.31567e-10 8.86229e-10) (2.46733e-11 2.65299e-11 1.61217e-11) (4.8177e-10 7.1852e-10 -7.28812e-10) (9.81203e-10 1.35718e-09 -2.14549e-09) (6.29857e-10 4.10014e-10 -1.62103e-09) (2.63119e-10 -1.62039e-10 -6.75025e-10) (7.553e-11 -1.38279e-10 -1.25929e-10) (2.60954e-11 -9.61413e-11 4.47687e-11) (5.97858e-11 -3.36064e-10 4.48086e-10) (1.79691e-10 -6.39137e-10 1.02829e-09) (1.9795e-10 -3.51013e-10 9.09306e-10) (1.55347e-10 5.68988e-11 3.55863e-10) (3.33414e-10 3.3099e-10 8.86393e-11) (9.72211e-10 9.34597e-10 -5.11765e-10) (1.12899e-09 1.08516e-09 -1.04383e-09) (4.1986e-10 5.67106e-10 -5.6387e-10) (-4.06005e-12 2.00077e-10 -1.14805e-10) (-2.12496e-10 2.08392e-10 -2.38534e-11) (-5.31092e-10 2.2138e-10 -4.46836e-11) (-5.50408e-10 1.20281e-11 -2.43886e-10) (-5.05752e-10 -3.59166e-10 -5.70692e-10) (-4.61458e-10 -8.69313e-10 -6.38812e-10) (-4.78019e-10 -1.02775e-09 6.76405e-12) (-8.59209e-10 -1.16668e-09 1.22113e-09) (-1.62234e-09 -6.49567e-10 2.73919e-09) (-1.68974e-09 3.5212e-10 2.08387e-09) (-7.16683e-10 3.68381e-10 4.42552e-10) (-9.90427e-11 8.1239e-11 -4.44585e-11) (3.46855e-11 3.59662e-11 -2.04768e-10) (3.02401e-10 -5.74027e-11 -4.83988e-10) (4.40212e-10 -1.64676e-10 -4.60946e-10) (3.05409e-10 -1.43305e-10 -2.09208e-10) (1.44602e-10 -6.03484e-11 -3.76272e-11) (7.47011e-11 -8.01658e-12 7.28341e-12) (5.39035e-11 2.54597e-11 4.04912e-12) (4.22256e-11 6.21662e-11 -1.87274e-11) (4.44336e-12 5.3946e-11 -1.96519e-11) (-1.92791e-11 1.41281e-11 1.60751e-11) (-3.20312e-10 4.19229e-12 6.07889e-10) (-7.98409e-10 -6.07237e-10 1.76492e-09) (-2.05074e-10 -3.82397e-10 5.04362e-10) (1.2701e-11 -2.07447e-11 -3.42387e-11) (4.62766e-10 3.95295e-10 -1.25639e-09) (1.04439e-09 1.009e-09 -2.70412e-09) (6.29702e-10 3.68735e-10 -1.76221e-09) (1.02095e-10 -3.09452e-11 -3.84176e-10) (4.24445e-13 -1.03259e-11 9.16252e-13) (-2.74239e-11 -3.10086e-10 7.14851e-10) (-3.95765e-10 -1.42806e-09 3.41871e-09) (-2.13485e-09 -1.64085e-09 4.87718e-09) (-3.14695e-09 -5.85205e-11 3.633e-09) (-8.37572e-10 5.48246e-10 8.01942e-10) (2.61452e-10 3.91867e-10 -7.32959e-11) (5.02662e-09 2.05286e-09 -2.7143e-09) (1.13776e-08 3.30203e-09 -6.60779e-09) (8.00125e-09 2.49973e-09 -4.97531e-09) (1.81718e-09 9.07393e-10 -1.29681e-09) (6.63735e-11 1.41635e-10 -1.13488e-10) (-6.67684e-11 4.79377e-11 -4.92532e-11) (-1.41699e-10 -3.6647e-11 -1.5291e-10) (-1.99359e-10 -3.19063e-10 -3.8189e-10) (-2.29046e-10 -5.77095e-10 -2.4408e-10) (-3.59846e-10 -6.9868e-10 3.06119e-10) (-7.57424e-10 -7.52108e-10 1.45466e-09) (-9.64461e-10 -1.10594e-10 1.84718e-09) (-4.77276e-10 1.94472e-10 5.814e-10) (-7.35226e-11 4.33202e-11 2.48585e-12) (-2.05736e-11 5.69449e-12 -1.11299e-10) (6.61164e-11 -5.46411e-11 -2.61945e-10) (1.25204e-10 -7.33443e-11 -2.36005e-10) (9.26852e-11 -4.67258e-11 -1.12841e-10) (3.53719e-11 -1.80314e-11 -1.99721e-11) (1.89432e-11 -9.30325e-12 8.93818e-12) (2.97128e-11 -4.32647e-12 3.07651e-11) (3.42478e-11 1.49906e-11 1.70261e-11) (5.44419e-11 6.08483e-11 -2.24334e-11) (3.71874e-11 1.04449e-10 -5.17816e-11) (-1.73678e-11 4.98918e-11 2.03151e-11) (-7.13314e-11 1.22739e-10 4.30654e-10) (-2.60968e-10 -4.40682e-10 1.05189e-09) (-1.30353e-10 -6.90581e-10 3.74162e-10) (-2.63244e-11 -4.41254e-10 -2.9932e-10) (3.64236e-11 -1.31039e-10 -1.35699e-09) (1.28596e-10 5.74556e-10 -2.27678e-09) (1.86819e-11 5.23846e-10 -1.55136e-09) (-3.97123e-11 8.40566e-11 -2.39485e-10) (-1.29222e-11 -7.09054e-12 8.56779e-11) (-3.61809e-10 -6.60897e-10 3.76694e-09) (-5.44962e-09 -1.43216e-09 1.08021e-08) (-1.69029e-08 1.70423e-10 1.34412e-08) (-1.02344e-08 9.8001e-10 5.08891e-09) (-3.36582e-10 6.71888e-11 1.12674e-10) (5.09113e-10 1.14415e-10 -3.23812e-10) (4.41939e-09 1.05348e-09 -2.37689e-09) (8.28221e-09 2.60382e-09 -3.99632e-09) (7.8557e-09 3.17308e-09 -3.52183e-09) (3.87146e-09 2.04121e-09 -1.80493e-09) (9.19631e-10 6.40185e-10 -5.78798e-10) (1.24669e-10 8.09908e-11 -1.82607e-10) (2.77378e-11 -6.47964e-11 -1.79015e-10) (-4.08141e-11 -2.349e-10 -1.85245e-10) (-1.74167e-10 -3.58722e-10 3.64026e-11) (-5.53643e-10 -5.53997e-10 7.33662e-10) (-8.28658e-10 -2.6741e-10 1.47446e-09) (-3.12695e-10 9.28242e-11 5.79293e-10) (-7.03223e-12 8.41021e-12 5.87951e-12) (2.34038e-11 -1.69475e-11 -1.25875e-10) (5.49313e-11 -1.40743e-10 -3.4814e-10) (1.44971e-12 -1.08495e-10 -1.97708e-10) (-1.09043e-11 -2.64969e-11 -4.69879e-11) (-3.41123e-12 -2.72477e-12 -5.2766e-12) (-4.23399e-13 -3.53945e-13 2.19166e-13) (1.3762e-12 -3.75893e-12 9.32514e-12) (1.81508e-11 -8.7044e-12 2.80727e-11) (4.53188e-11 5.29569e-12 2.03201e-11) (1.21912e-10 8.27209e-11 -1.91722e-11) (1.83304e-10 2.56788e-10 -6.62321e-11) (6.57215e-11 2.23895e-10 6.35318e-11) (1.31686e-10 2.6973e-10 4.59808e-10) (-2.29454e-11 -3.289e-10 8.73311e-10) (-2.59481e-10 -1.14151e-09 4.85802e-10) (-6.11335e-10 -1.38123e-09 -6.67836e-10) (-8.62719e-10 -8.23985e-10 -2.17687e-09) (-6.01022e-10 3.47113e-10 -2.99641e-09) (-1.33768e-10 7.20497e-10 -1.75678e-09) (6.92069e-12 1.43345e-10 -9.85276e-11) (-5.48325e-12 3.12265e-10 1.3065e-09) (-3.75203e-09 7.11152e-10 1.10574e-08) (-1.90309e-08 1.46795e-09 1.98528e-08) (-1.78658e-08 2.44674e-10 1.04025e-08) (-1.80129e-09 -3.67335e-10 5.7795e-10) (4.47561e-11 -8.25237e-11 -1.51666e-10) (8.88993e-10 -5.64623e-11 -1.07505e-09) (1.31287e-09 2.8933e-10 -1.15212e-09) (1.44359e-09 6.15229e-10 -7.25243e-10) (1.85315e-09 1.11243e-09 -5.2461e-10) (1.92179e-09 1.35075e-09 -5.44978e-10) (1.25558e-09 8.44519e-10 -5.77391e-10) (5.41137e-10 2.10187e-10 -4.22372e-10) (1.62205e-10 -5.60608e-11 -1.96264e-10) (1.02366e-11 -7.17394e-11 -2.87567e-11) (-1.23037e-10 -1.51518e-10 1.56239e-10) (-5.33339e-10 -1.63878e-10 8.24424e-10) (-3.9149e-10 6.02262e-11 6.72314e-10) (-1.24043e-11 1.0558e-11 2.54794e-11) (5.22024e-11 -2.51899e-11 -9.64013e-11) (1.82719e-10 -2.66525e-10 -5.14517e-10) (1.26301e-11 -2.86477e-10 -3.90522e-10) (-7.38582e-11 -9.22042e-11 -1.09906e-10) (-6.41044e-11 -7.8303e-12 -2.29566e-11) (-4.99149e-11 1.57461e-11 5.3699e-12) (-2.19594e-11 8.42321e-12 2.16664e-11) (-7.96464e-13 -8.61503e-12 4.72914e-11) (4.74272e-11 -3.64566e-11 6.14868e-11) (1.16796e-10 -3.19218e-11 1.23046e-11) (2.79128e-10 7.77536e-11 -1.16243e-10) (4.47925e-10 4.19665e-10 -2.19381e-10) (3.26196e-10 5.38913e-10 6.50695e-11) (1.84622e-10 5.52634e-10 7.49886e-10) (-2.48076e-10 -3.11775e-10 1.30043e-09) (-1.377e-09 -2.1478e-09 9.2738e-10) (-3.53786e-09 -4.41167e-09 -1.97114e-09) (-3.33469e-09 -3.17666e-09 -5.15078e-09) (-8.85364e-10 -2.71965e-10 -3.71112e-09) (2.11247e-10 5.33289e-10 -9.67322e-10) (4.6023e-10 7.63684e-10 3.42703e-10) (-3.06885e-11 3.05755e-09 6.2651e-09) (-1.09736e-08 5.56516e-09 1.76662e-08) (-1.79528e-08 2.28838e-09 1.496e-08) (-3.58985e-09 -7.35379e-10 2.22313e-09) (-2.5473e-11 -1.58893e-10 -7.81951e-11) (8.71e-10 -4.61928e-10 -1.54599e-09) (1.4843e-09 -1.8923e-10 -2.5717e-09) (7.28846e-10 4.44601e-11 -1.11234e-09) (2.1815e-10 8.43813e-11 -2.03928e-10) (1.90333e-10 1.62867e-10 -6.13341e-11) (3.77273e-10 3.85654e-10 -8.0419e-11) (5.11528e-10 4.4186e-10 -1.86389e-10) (3.6021e-10 1.90461e-10 -1.78576e-10) (1.01387e-10 1.07328e-11 -3.71424e-11) (1.16573e-11 -5.95674e-12 1.82693e-11) (-6.86818e-11 5.80664e-12 2.68694e-10) (-1.99517e-10 9.95945e-11 5.14043e-10) (-2.50786e-11 3.15479e-11 9.22345e-11) (3.2782e-11 -8.21718e-12 -2.58537e-11) (3.3669e-10 -2.78304e-10 -5.00741e-10) (1.82842e-10 -5.4468e-10 -6.99846e-10) (-2.34304e-10 -4.10525e-10 -4.09772e-10) (-4.86871e-10 -2.00433e-10 -1.95285e-10) (-4.05994e-10 2.66848e-11 -1.21754e-11) (-1.61609e-10 8.66397e-11 8.02197e-11) (-3.3114e-11 6.07785e-11 1.33075e-10) (7.68222e-11 -3.91755e-12 2.01999e-10) (2.11256e-10 -1.05715e-10 1.49066e-10) (3.4995e-10 -1.4433e-10 -5.66243e-11) (5.04941e-10 1.53893e-11 -3.63437e-10) (5.46506e-10 4.27605e-10 -4.22308e-10) (4.10621e-10 7.0979e-10 3.7823e-11) (6.04557e-10 1.23757e-09 1.72195e-09) (-1.16438e-10 -2.06937e-10 1.46756e-09) (-1.91276e-09 -2.55217e-09 4.50563e-10) (-8.36196e-09 -8.32999e-09 -5.53729e-09) (-7.23948e-09 -5.10625e-09 -7.41692e-09) (-9.61204e-10 -2.06118e-10 -1.33629e-09) (5.15415e-11 2.0995e-10 4.15298e-11) (8.11539e-10 2.66588e-09 2.96596e-09) (-1.5672e-09 4.96383e-09 7.32266e-09) (-3.75325e-09 2.6928e-09 5.93472e-09) (-1.12299e-09 1.10782e-11 1.45423e-09) (-7.70571e-12 -7.99808e-11 2.70813e-11) (4.62595e-10 -3.87407e-10 -8.00974e-10) (1.76685e-09 -6.20142e-10 -3.48257e-09) (1.74615e-09 -4.59076e-10 -3.1217e-09) (5.24639e-10 -1.51598e-10 -7.62268e-10) (3.83174e-11 -3.64639e-12 -4.70771e-11) (1.41168e-12 1.0041e-11 -4.29703e-12) (-2.22352e-12 8.42648e-11 -1.43259e-11) (2.80839e-11 1.61741e-10 -2.71729e-11) (6.33239e-11 1.1762e-10 1.23382e-12) (9.97127e-11 8.85216e-11 7.59622e-11) (1.82951e-10 1.39733e-10 2.96262e-10) (1.78903e-10 1.97965e-10 4.66081e-10) (9.36645e-11 9.53823e-11 2.01557e-10) (6.98054e-11 5.48545e-12 6.49132e-12) (4.26808e-10 -1.7756e-10 -3.21408e-10) (6.9951e-10 -6.0941e-10 -8.91406e-10) (1.54069e-10 -6.33003e-10 -7.6793e-10) (-4.80522e-10 -4.92264e-10 -5.45766e-10) (-1.24574e-09 -2.75381e-10 -3.42935e-10) (-1.14494e-09 1.87404e-10 1.78484e-10) (-4.68723e-10 3.62441e-10 5.39917e-10) (5.8993e-11 3.2231e-10 8.18866e-10) (4.00863e-10 -6.34975e-12 6.28755e-10) (2.63382e-10 -2.1449e-10 1.29855e-10) (4.84775e-11 -2.3948e-10 -1.62494e-10) (-9.91188e-11 -1.08005e-10 -3.85601e-10) (1.36833e-11 1.82237e-10 -2.11134e-10) (3.39065e-10 8.64616e-10 2.25861e-10) (3.48022e-09 2.8945e-09 3.83558e-09) (3.19957e-10 2.98193e-11 5.33449e-10) (-1.79258e-09 -2.00804e-09 -1.02509e-09) (-1.41644e-08 -9.49473e-09 -9.49037e-09) (-9.79186e-09 -3.8435e-09 -4.79066e-09) (-1.15824e-09 1.57987e-10 1.32664e-10) (-5.19698e-10 1.31649e-09 1.76928e-09) (-1.37829e-10 2.14104e-09 3.00105e-09) (4.60649e-11 1.10181e-09 1.56957e-09) (1.04681e-10 2.13887e-10 3.92632e-10) (8.8877e-11 6.86707e-12 4.5539e-11) (2.74966e-10 -5.70921e-11 -2.16756e-10) (1.28934e-09 -3.13172e-10 -1.99557e-09) (2.77768e-09 -7.22287e-10 -4.1743e-09) (1.92239e-09 -6.14723e-10 -2.4167e-09) (2.76954e-10 -1.17562e-10 -3.44773e-10) (-3.15871e-12 -8.16225e-13 -7.43786e-12) (-1.03898e-10 4.7705e-11 -8.37172e-12) (-2.28274e-10 1.71011e-10 -7.8323e-12) (-1.23471e-10 1.70811e-10 2.32088e-11) (7.88787e-12 1.2123e-10 8.55516e-11) (2.90746e-10 2.24248e-10 3.8585e-10) (7.75196e-10 3.53766e-10 7.45625e-10) (7.49859e-10 3.27826e-10 4.93078e-10) (4.47872e-10 1.25518e-10 7.16092e-11) (5.60162e-10 -6.11602e-11 -2.57385e-10) (1.02932e-09 -5.07298e-10 -9.41562e-10) (9.0333e-10 -8.91816e-10 -1.32611e-09) (7.74283e-11 -7.1508e-10 -9.6066e-10) (-9.91235e-10 -5.54084e-10 -7.87346e-10) (-3.19896e-09 -1.22383e-10 -4.02967e-10) (-2.36986e-09 6.8125e-10 8.64239e-10) (-4.00453e-10 7.13067e-10 1.36764e-09) (8.63067e-10 4.53791e-10 1.74178e-09) (7.04904e-10 -2.123e-10 6.43467e-10) (-9.15539e-12 -2.92865e-10 -4.41137e-11) (-2.51956e-09 -1.59016e-09 -1.40714e-09) (-3.82361e-09 -1.08771e-09 -1.49323e-09) (-2.27551e-10 8.34683e-11 2.20619e-11) (1.26719e-09 1.66171e-09 1.53998e-09) (3.98408e-09 3.02527e-09 3.94538e-09) (2.73854e-10 1.42918e-10 8.24918e-11) (-1.97717e-09 -1.27531e-09 -2.18025e-09) (-1.39344e-08 -6.4034e-09 -7.7708e-09) (-8.97661e-09 -2.30933e-09 -1.33054e-09) (-1.61592e-09 2.75766e-10 1.00299e-09) (-3.27513e-10 7.76363e-10 1.42419e-09) (1.16781e-10 6.80367e-10 1.04313e-09) (2.12327e-10 3.67448e-10 4.47386e-10) (2.70982e-10 2.00686e-10 1.60815e-10) (3.77717e-10 1.44975e-10 -6.40084e-11) (9.37349e-10 9.96166e-11 -7.90203e-10) (2.4424e-09 -3.85858e-10 -2.70584e-09) (2.7679e-09 -8.72277e-10 -2.98165e-09) (8.54265e-10 -3.52036e-10 -9.79334e-10) (2.21111e-11 -2.03584e-11 -9.76724e-11) (-1.14307e-10 3.05353e-11 -5.99963e-11) (-4.03346e-10 1.63679e-10 -5.62816e-11) (-3.93875e-10 2.37149e-10 4.05686e-11) (-1.47952e-10 1.6658e-10 1.32202e-10) (3.34788e-11 1.5501e-10 3.29715e-10) (3.62804e-10 1.56983e-10 6.80753e-10) (6.28654e-10 1.85357e-10 5.44635e-10) (8.33365e-10 2.50338e-10 1.30375e-10) (1.22636e-09 1.71377e-10 -4.70201e-10) (1.72441e-09 -2.90567e-10 -1.3765e-09) (1.68805e-09 -9.67416e-10 -1.99589e-09) (5.32938e-10 -9.55698e-10 -1.38464e-09) (-9.54098e-10 -7.25179e-10 -9.02025e-10) (-7.74297e-09 -7.66314e-10 -1.2374e-09) (-9.64787e-09 7.55976e-10 8.17912e-10) (-1.21084e-09 5.15396e-10 1.02203e-09) (1.11618e-09 5.83364e-10 1.75037e-09) (2.77755e-09 1.97144e-10 2.08794e-09) (4.09028e-10 -1.94107e-10 2.19887e-10) (-6.21076e-10 -5.20773e-10 -3.41309e-10) (-5.30452e-09 -2.07511e-09 -2.64935e-09) (-3.99379e-09 -1.25112e-09 -1.23077e-09) (-5.39211e-10 -1.76663e-11 4.23198e-10) (1.33122e-09 1.61311e-09 3.24158e-09) (1.48833e-09 1.69238e-09 2.7319e-09) (1.612e-10 1.53701e-10 3.74005e-11) (-9.72644e-10 -3.46434e-10 -1.17846e-09) (-7.84368e-09 -2.88541e-09 -3.75755e-09) (-6.64798e-09 -1.70717e-09 -4.36176e-10) (-1.24753e-09 1.25255e-11 6.12592e-10) (-9.6835e-11 2.34848e-10 3.84731e-10) (1.56896e-10 3.45437e-10 3.64685e-10) (2.80187e-10 3.62433e-10 2.93878e-10) (3.70135e-10 2.95885e-10 1.68802e-10) (5.51533e-10 2.23304e-10 -7.62497e-11) (1.28365e-09 1.54022e-11 -7.62741e-10) (2.03093e-09 -6.51828e-10 -1.65197e-09) (9.98169e-10 -6.27141e-10 -1.09122e-09) (8.03527e-11 -9.50328e-11 -2.33295e-10) (-4.365e-11 1.7175e-11 -6.73179e-11) (-1.60748e-10 1.09966e-10 -6.89625e-11) (-2.85541e-10 2.0631e-10 -2.70326e-12) (-2.48484e-10 2.07277e-10 1.30308e-10) (-1.34143e-10 1.74497e-10 3.18668e-10) (-6.85874e-11 1.17674e-10 6.71127e-10) (-8.03514e-12 2.16302e-12 5.45075e-10) (6.71692e-11 8.55022e-12 8.49021e-11) (6.06448e-10 8.6849e-11 -2.44136e-10) (2.32684e-09 -3.24834e-11 -1.9209e-09) (2.9801e-09 -8.04855e-10 -3.31933e-09) (1.11292e-09 -9.06903e-10 -1.91937e-09) (-5.69791e-10 -4.32906e-10 -5.33994e-10) (-9.74376e-09 -9.69498e-10 -1.49818e-10) (-1.6703e-08 -4.33606e-10 2.4778e-09) (-2.86473e-09 -5.90612e-11 1.50419e-09) (3.43072e-10 8.26677e-11 7.8246e-10) (2.9174e-09 5.26858e-10 1.77645e-09) (1.55979e-09 1.86948e-10 6.07715e-10) (1.3526e-12 -9.52603e-12 -5.18894e-12) (-1.22581e-09 -6.72607e-10 -8.51822e-10) (-1.8415e-09 -1.12052e-09 -1.77837e-09) (-4.5979e-10 -2.75304e-10 -4.45536e-10) (-9.22305e-11 1.71393e-11 1.25029e-10) (2.87348e-10 1.0754e-09 2.68622e-09) (1.04758e-09 1.24588e-09 1.54173e-09) (1.4556e-10 2.01362e-10 1.5614e-10) (-2.65297e-10 -3.00631e-11 -2.03673e-10) (-4.13687e-09 -1.17432e-09 -1.74838e-09) (-5.78182e-09 -1.41088e-09 -7.61171e-10) (-2.11235e-09 -2.02666e-10 3.18053e-10) (-2.29113e-10 1.07312e-10 1.40061e-10) (2.95413e-11 1.655e-10 9.98032e-11) (2.56607e-10 3.28505e-10 1.81459e-10) (4.83476e-10 3.62472e-10 1.98183e-10) (7.07275e-10 2.07709e-10 2.42866e-11) (1.13367e-09 -1.76336e-10 -3.32552e-10) (9.82911e-10 -6.24156e-10 -6.22391e-10) (1.61475e-10 -3.21409e-10 -3.62758e-10) (-6.67247e-11 -3.44077e-11 -1.33385e-10) (-7.54907e-11 7.22862e-11 -6.37036e-11) (-7.83901e-11 1.68138e-10 -1.83628e-12) (-9.85016e-11 2.15823e-10 1.09183e-10) (-1.16708e-10 2.03005e-10 2.74304e-10) (-1.88614e-10 1.66521e-10 5.73629e-10) (-4.43543e-10 1.61443e-11 8.38595e-10) (-3.59138e-10 -9.29992e-11 4.30129e-10) (-2.4758e-12 -4.58722e-12 -1.67893e-12) (7.75756e-10 -1.39404e-10 -1.08913e-09) (3.10232e-09 -6.85567e-10 -4.21072e-09) (1.73886e-09 -7.18117e-10 -2.82924e-09) (-1.30467e-10 -1.16313e-10 -2.56478e-10) (-4.71876e-09 -2.92795e-10 7.81726e-10) (-1.10372e-08 -8.70441e-10 4.11878e-09) (-3.58336e-09 -9.54753e-10 2.97678e-09) (-4.8589e-11 -2.74325e-10 1.28269e-09) (8.87807e-10 1.17995e-10 8.6344e-10) (1.04586e-09 3.74684e-10 2.49638e-10) (1.83095e-10 8.69478e-11 -7.3611e-11) (-8.14898e-11 -5.3463e-11 -1.88951e-10) (-6.47241e-10 -6.90749e-10 -1.02444e-09) (-3.76773e-10 -7.66499e-10 -1.08506e-09) (5.49566e-12 -9.0975e-11 -1.63413e-10) (4.03145e-11 3.50942e-11 2.16463e-11) (5.87533e-10 7.33805e-10 8.48244e-10) (1.32201e-09 1.02344e-09 6.53555e-10) (4.82656e-10 4.41705e-10 1.38247e-10) (-2.71905e-11 2.12167e-11 -3.99185e-11) (-1.48673e-09 -3.38229e-10 -7.33921e-10) (-3.46948e-09 -8.74343e-10 -8.38212e-10) (-2.19653e-09 -3.03858e-10 -9.87369e-11) (-5.43235e-10 9.76459e-11 5.39219e-11) (-6.60848e-11 9.93173e-11 2.50079e-11) (6.15028e-11 1.69048e-10 5.53058e-11) (3.25197e-10 2.64535e-10 1.33063e-10) (7.13753e-10 1.14104e-10 1.15602e-10) (9.11008e-10 -3.17946e-10 -3.79444e-11) (1.73717e-10 -3.28174e-10 -1.27078e-10) (-4.51086e-10 -3.3647e-10 -2.70021e-10) (-5.89279e-10 -2.33156e-12 -2.8802e-10) (-6.80032e-11 1.46222e-10 -6.63157e-11) (1.58128e-10 3.73745e-10 7.44291e-11) (2.86332e-10 4.32316e-10 3.73463e-10) (1.07091e-10 2.41479e-10 5.40547e-10) (-2.84375e-10 8.23986e-11 6.82005e-10) (-1.0107e-09 -1.19849e-10 8.52287e-10) (-7.37558e-10 -1.9981e-10 2.09162e-10) (-1.31107e-10 -1.53381e-10 -3.5416e-10) (1.0957e-09 -7.16495e-10 -3.13159e-09) (1.36269e-09 -6.45008e-10 -3.27103e-09) (-6.71203e-11 -6.52867e-11 -3.67266e-10) (-1.30239e-09 -4.06403e-12 3.24169e-10) (-3.60598e-09 -3.80607e-10 2.34533e-09) (-2.00345e-09 -9.37478e-10 2.64845e-09) (-3.71626e-10 -7.28191e-10 2.30909e-09) (3.60476e-10 -1.48905e-10 1.39691e-09) (3.63275e-10 1.31222e-10 3.11354e-10) (2.89072e-10 1.75169e-10 -1.06491e-10) (1.28832e-10 8.8152e-11 -3.12342e-10) (-3.86832e-11 -1.50055e-10 -6.28492e-10) (-1.25972e-10 -6.28743e-10 -1.17845e-09) (1.22228e-11 -4.26852e-10 -5.78544e-10) (1.81254e-11 -3.00875e-11 -1.73529e-11) (9.46298e-11 3.52135e-11 8.13347e-11) (6.47772e-10 4.70043e-10 4.55854e-10) (7.08868e-10 4.68986e-10 1.53805e-10) (9.84393e-10 5.74714e-10 -1.76316e-10) (2.1294e-10 1.11904e-10 -2.27565e-10) (-1.57207e-10 -6.383e-11 -3.19093e-10) (-9.56474e-10 -3.20156e-10 -5.35487e-10) (-1.20794e-09 -1.8732e-10 -2.53715e-10) (-5.9323e-10 8.0723e-11 -2.61166e-11) (-1.29121e-10 1.00138e-10 3.60998e-12) (1.14214e-11 8.57551e-11 1.32719e-11) (2.65853e-10 1.6265e-10 7.88837e-11) (8.234e-10 7.62721e-12 1.94836e-10) (2.28384e-10 -1.72668e-10 7.58548e-11) (-9.7446e-10 -5.81296e-10 -1.48619e-11) (-5.19352e-09 -1.12134e-09 -4.62502e-10) (-1.2049e-09 3.07195e-11 -2.21505e-10) (5.36648e-11 1.43922e-10 -4.06283e-11) (1.32262e-09 9.90976e-10 2.08975e-10) (1.60654e-09 9.66243e-10 8.81266e-10) (3.42009e-10 2.54209e-10 6.70246e-10) (-3.86051e-10 1.18096e-11 5.70614e-10) (-1.68887e-09 -2.49249e-10 6.21797e-10) (-1.28003e-09 -3.55291e-10 -3.23165e-10) (-4.19317e-10 -5.45584e-10 -1.62021e-09) (5.8853e-10 -7.41659e-10 -2.88555e-09) (-4.11255e-11 -1.51496e-10 -7.71655e-10) (-4.26305e-10 -6.51402e-13 -2.04157e-11) (-1.33347e-09 -1.3066e-10 9.46685e-10) (-9.03089e-10 -5.25221e-10 1.53558e-09) (-1.70715e-10 -7.24397e-10 2.01883e-09) (3.59963e-10 -4.65484e-10 2.33227e-09) (3.82072e-10 4.47378e-11 1.16475e-09) (1.44443e-10 1.0309e-10 9.67652e-11) (1.93625e-10 1.68954e-10 -2.55487e-10) (1.68589e-10 9.1235e-11 -7.41106e-10) (8.15491e-11 -2.433e-10 -1.12948e-09) (1.22758e-10 -4.30483e-10 -9.33144e-10) (6.08703e-11 -1.29631e-10 -1.34346e-10) (1.6959e-11 -1.9828e-11 2.57378e-11) (5.30617e-11 2.42961e-11 1.74597e-10) (1.92962e-10 1.5507e-10 2.19056e-10) (1.68069e-10 1.18694e-10 -2.82515e-11) (8.75523e-10 3.81219e-10 -4.78257e-10) (7.92732e-10 1.58704e-10 -7.88183e-10) (1.55722e-10 -4.98596e-11 -5.16867e-10) (-1.63882e-10 -8.23657e-11 -2.69005e-10) (-3.34682e-10 -2.6188e-11 -1.21558e-10) (-2.21279e-10 5.29546e-11 -1.12486e-11) (-2.95367e-11 3.40875e-11 1.54401e-12) (5.54782e-11 5.53258e-11 9.27711e-12) (5.47605e-10 1.34817e-10 1.3812e-10) (4.14949e-10 -3.64178e-11 1.9002e-10) (-2.99449e-10 -1.47292e-10 1.12541e-10) (-8.87993e-09 -1.81451e-09 3.61693e-10) (-7.60316e-09 -1.37841e-09 6.92443e-10) (-2.0585e-10 -2.2264e-11 8.94397e-11) (4.51104e-10 2.61614e-10 3.40156e-11) (2.46746e-09 1.38461e-09 5.54261e-11) (1.82864e-09 1.01015e-09 4.98359e-10) (1.80064e-10 1.50677e-10 2.61062e-10) (-4.82892e-10 5.27315e-12 3.24964e-10) (-2.41414e-09 -3.24012e-10 1.09479e-10) (-1.67279e-09 -5.09482e-10 -1.06938e-09) (-1.78775e-10 -6.49843e-10 -1.85259e-09) (2.16715e-10 -3.83619e-10 -1.24009e-09) (-1.69099e-10 -4.87736e-11 -1.63424e-10) (-9.5297e-10 -5.92226e-11 2.97212e-10) (-1.07995e-09 -3.1051e-10 9.87758e-10) (-3.78957e-10 -4.94169e-10 1.17702e-09) (3.4486e-10 -5.2683e-10 1.8536e-09) (8.41651e-10 -1.80149e-10 2.28181e-09) (4.28162e-10 1.92822e-10 9.6599e-10) (7.80288e-11 8.79763e-11 3.01755e-11) (1.80085e-10 1.94814e-10 -4.2553e-10) (2.38672e-10 7.80979e-11 -1.0826e-09) (1.9342e-10 -2.20061e-10 -1.00286e-09) (1.52776e-10 -1.99813e-10 -3.47695e-10) (3.28066e-11 -4.12497e-11 -6.08607e-12) (2.47212e-12 -2.22904e-11 7.67899e-11) (-4.86947e-11 1.17983e-11 1.59728e-10) (-8.78243e-13 2.62143e-11 4.17477e-11) (4.38876e-11 3.48413e-11 -6.08612e-11) (5.5587e-10 1.70682e-10 -5.97116e-10) (7.34652e-10 8.49941e-11 -9.56182e-10) (1.46076e-10 -1.19908e-11 -4.70877e-10) (-4.73254e-11 -8.64034e-12 -8.98526e-11) (-2.99964e-11 3.57126e-12 -3.40464e-12) (-3.54206e-12 4.74228e-12 4.22532e-12) (1.94562e-11 1.46234e-11 5.33237e-12) (1.9917e-10 6.26139e-11 2.73975e-11) (3.2914e-10 5.38917e-11 1.05283e-10) (-7.0599e-12 -1.81742e-12 1.49101e-11) (-4.00237e-09 -4.81912e-10 2.9454e-10) (-1.1842e-08 -2.05365e-09 1.40256e-09) (-2.32438e-09 -8.52123e-10 1.31402e-09) (1.46363e-10 -6.91347e-11 3.41156e-10) (1.0269e-09 3.5109e-10 2.51825e-10) (1.76789e-09 1.02721e-09 -1.67869e-10) (9.54879e-10 6.69872e-10 -8.26904e-11) (2.06121e-11 5.04124e-11 1.65338e-11) (-6.42298e-10 3.7242e-11 9.6437e-11) (-2.1017e-09 -2.67038e-10 -3.68561e-10) (-6.86938e-10 -3.67883e-10 -8.41771e-10) (3.53558e-10 -5.05763e-10 -1.2107e-09) (1.10205e-10 -1.92367e-10 -4.98577e-10) (-3.6967e-10 -5.84284e-11 -1.00958e-10) (-1.79253e-09 -1.68657e-10 5.51072e-10) (-1.23906e-09 -3.74976e-10 8.92999e-10) (-2.32312e-10 -3.3085e-10 7.67272e-10) (4.85899e-10 -3.33744e-10 1.53166e-09) (1.11184e-09 6.19779e-11 2.20271e-09) (4.85146e-10 2.74577e-10 8.22603e-10) (6.66739e-11 8.7559e-11 2.62992e-13) (1.79288e-10 1.97404e-10 -4.98053e-10) (2.98301e-10 5.925e-11 -9.53982e-10) (2.31801e-10 -1.38429e-10 -5.07527e-10) (1.095e-10 -9.95271e-11 -8.97604e-11) (1.51745e-11 -2.49413e-11 1.28756e-11) (-4.05437e-11 -1.48228e-11 6.48563e-11) (-1.42339e-10 1.01328e-11 1.04161e-10) (-2.81197e-11 1.0471e-11 8.21734e-12) (2.81221e-11 2.22165e-11 -1.40732e-10) (3.20168e-10 5.63888e-11 -5.55299e-10) (3.46176e-10 6.3368e-11 -6.00306e-10) (4.69508e-11 1.43922e-11 -1.47984e-10) (-2.52746e-15 1.46301e-13 -5.07926e-13) (4.75656e-12 1.53867e-12 1.43465e-11) (1.33197e-11 4.47946e-12 1.39924e-11) (2.49482e-11 8.86641e-12 1.98878e-12) (5.99624e-11 1.87369e-11 1.52246e-12) (5.19021e-12 3.25693e-12 3.28217e-12) (-6.4396e-10 5.19203e-12 4.85224e-11) (-6.94294e-09 -6.43334e-10 6.01393e-10) (-4.46516e-09 -1.26357e-09 1.84771e-09) (-1.33968e-10 -5.07869e-10 1.03083e-09) (5.98701e-10 -1.46321e-10 6.32935e-10) (7.09965e-10 2.12236e-10 1.77875e-10) (9.33158e-10 5.79055e-10 -1.57691e-10) (4.63026e-10 4.22698e-10 -1.84022e-10) (-5.4087e-12 5.59915e-11 -2.21236e-11) (-4.28426e-10 5.58165e-11 -5.80527e-11) (-4.96961e-10 -9.39669e-11 -2.26677e-10) (4.92409e-11 -2.12731e-10 -4.22974e-10) (6.06023e-10 -4.25473e-10 -8.88092e-10) (-1.56859e-11 -9.09041e-11 -2.30263e-10) (-9.06198e-10 -6.43593e-11 -1.08745e-10) (-2.24933e-09 -1.79848e-10 5.18612e-10) (-8.61214e-10 -2.48108e-10 4.76914e-10) (-1.13939e-10 -1.5736e-10 3.69381e-10) (3.31625e-10 -1.47427e-10 1.08335e-09) (1.02664e-09 2.04023e-10 1.87888e-09) (5.28326e-10 2.93848e-10 6.72893e-10) (9.97567e-11 1.01549e-10 -1.95659e-11) (1.98982e-10 1.60397e-10 -4.11147e-10) (2.84662e-10 2.74906e-11 -5.19511e-10) (1.85361e-10 -8.96666e-11 -1.8452e-10) (4.57938e-11 -5.47108e-11 -1.87879e-11) (-1.12656e-11 -1.61245e-11 6.59034e-12) (-1.83856e-10 -1.89255e-11 5.51335e-11) (-2.98634e-10 1.01611e-11 4.21277e-11) (-6.42797e-11 8.12642e-12 -2.72724e-11) (1.11892e-11 6.60173e-12 -1.78012e-10) (1.5441e-10 1.83088e-11 -3.31181e-10) (1.32767e-10 3.77029e-11 -2.14334e-10) (2.91878e-11 7.79556e-12 -1.67778e-11) (3.73671e-11 2.99687e-12 3.28176e-11) (2.79651e-11 -1.31328e-12 3.9564e-11) (1.31301e-12 2.74705e-13 6.97101e-13) (2.84838e-12 2.05644e-12 -4.80032e-12) (9.95561e-13 1.58664e-12 -1.91195e-12) (-7.72232e-11 1.17667e-11 1.58697e-12) (-2.06529e-09 -8.80896e-12 1.3716e-10) (-3.82775e-09 -5.52144e-10 1.08231e-09) (-6.17465e-10 -5.44852e-10 1.10992e-09) (4.43136e-10 -4.43625e-10 9.88444e-10) (2.80713e-10 -6.53552e-11 2.64082e-10) (1.71811e-10 6.35958e-11 2.25966e-11) (3.37697e-10 2.34728e-10 -9.19678e-11) (2.27092e-10 2.24956e-10 -1.0559e-10) (3.83395e-12 4.79831e-11 -2.623e-11) (-4.07437e-11 1.48881e-11 -2.76038e-11) (9.38768e-12 -2.71161e-11 -8.14485e-11) (5.37509e-10 -3.01952e-10 -5.91102e-10) (2.66292e-10 -2.14262e-10 -4.39316e-10) (-1.38402e-10 -4.83192e-11 -1.31591e-10) (-1.16735e-09 -1.57055e-11 -4.85891e-11) (-1.20298e-09 -7.93018e-11 2.22086e-10) (-2.5059e-10 -7.95048e-11 1.2089e-10) (-3.94438e-11 -5.71959e-11 1.3673e-10) (1.81273e-10 -3.02505e-11 6.36112e-10) (7.83564e-10 2.20585e-10 1.32523e-09) (5.51084e-10 2.67328e-10 5.21315e-10) (1.91632e-10 1.26118e-10 -2.73794e-11) (2.19973e-10 1.05994e-10 -2.44133e-10) (1.88549e-10 -2.65628e-12 -1.90132e-10) (6.44289e-11 -4.6152e-11 -4.42024e-11) (-6.77955e-12 -2.61665e-11 -6.30024e-12) (-1.59421e-10 -5.11827e-11 -6.30018e-12) (-4.47775e-10 -1.97557e-11 -7.70787e-12) (-3.1069e-10 6.05812e-12 -4.92974e-11) (-7.23799e-11 1.83245e-12 -7.16101e-11) (1.07821e-11 -7.49559e-13 -1.07455e-10) (8.10265e-11 1.12188e-11 -1.2897e-10) (9.21511e-11 1.9425e-11 -5.40876e-11) (9.98212e-11 1.14389e-11 2.85918e-11) (6.71569e-11 -5.06748e-13 6.51994e-11) (2.33146e-12 -6.70803e-13 3.54574e-12) (-1.76354e-12 2.68441e-13 -6.57427e-12) (-4.31498e-12 2.76353e-12 -2.22516e-11) (-1.42214e-11 2.95707e-12 -8.10016e-12) (-4.26163e-10 1.96692e-11 1.98472e-11) (-1.83657e-09 -6.53635e-11 3.88819e-10) (-7.68451e-10 -2.51901e-10 7.09171e-10) (1.71063e-10 -3.37335e-10 8.22047e-10) (2.66616e-10 -1.87588e-10 4.40444e-10) (4.28662e-11 -9.73893e-12 3.62359e-11) (3.56833e-11 1.67646e-11 -8.04385e-12) (1.07294e-10 7.72947e-11 -4.44822e-11) (1.147e-10 9.88198e-11 -4.82527e-11) (3.99869e-11 4.16174e-11 -3.16543e-11) (5.88422e-11 1.52402e-11 -6.60216e-11) (4.22611e-10 -9.10181e-11 -3.68372e-10) (4.9077e-10 -2.13011e-10 -4.65322e-10) (1.56663e-11 -4.9948e-11 -9.50826e-11) (-2.5032e-10 -2.68434e-11 -7.76438e-11) (-6.92319e-10 1.71234e-11 -6.3469e-12) (-2.7352e-10 -1.42172e-11 3.63935e-11) (-3.1485e-11 -1.15486e-11 1.59108e-11) (-7.23081e-12 -1.31791e-11 4.60953e-11) (1.26992e-10 1.10607e-11 3.63167e-10) (5.893e-10 1.67381e-10 8.21058e-10) (5.6951e-10 2.18114e-10 3.9458e-10) (3.27629e-10 1.36911e-10 -7.98913e-12) (2.17259e-10 5.64418e-11 -1.09265e-10) (7.15608e-11 -1.17114e-11 -4.10144e-11) (2.25555e-12 -1.34444e-11 -6.17859e-12) (-8.26653e-11 -4.65174e-11 -1.80655e-11) (-3.57548e-10 -5.649e-11 -5.69193e-11) (-4.13712e-10 -8.61939e-12 -7.544e-11) (-1.73198e-10 6.52571e-13 -7.09988e-11) (-4.12956e-11 -2.15144e-12 -6.61482e-11) (7.44778e-11 -2.16851e-12 -7.16402e-11) (2.14085e-10 1.32366e-11 -9.93532e-11) (3.71373e-10 2.97563e-11 -2.53655e-11) (3.6699e-10 1.09457e-11 9.9544e-11) (1.21572e-10 -2.38396e-12 5.04469e-11) (1.84771e-11 -1.43343e-12 -4.98724e-12) (2.62105e-11 -3.86501e-13 -4.26994e-11) (1.57574e-11 9.07226e-13 -3.0854e-11) (-3.96909e-12 5.66914e-13 -2.6056e-12) (-2.25618e-10 4.61739e-12 4.11692e-11) (-3.50375e-10 -4.03852e-11 2.33219e-10) (4.05764e-11 -1.20301e-10 3.90885e-10) (3.98436e-10 -2.24659e-10 5.67296e-10) (2.09473e-10 -9.17715e-11 2.05002e-10) (6.7425e-11 -1.00276e-11 1.82381e-11) (1.01458e-10 1.66529e-11 -2.35927e-11) (1.98061e-10 6.16338e-11 -4.63957e-11) (2.96931e-10 1.02957e-10 -6.5367e-11) (4.56842e-10 1.14872e-10 -1.51159e-10) (9.3786e-10 6.13599e-11 -4.02292e-10) (1.32633e-09 -1.21309e-10 -6.10673e-10) (5.80145e-10 -1.41338e-10 -2.95941e-10) (2.74342e-11 -1.7516e-11 -2.9259e-11) (-2.38081e-11 -1.89975e-12 -9.56984e-12) (-3.59452e-11 3.93874e-12 -4.94734e-12) (-6.29634e-13 -6.91247e-14 6.17022e-14) (2.11114e-12 -1.00562e-12 1.91741e-12) (2.66912e-11 -3.82611e-12 3.7993e-11) (2.4498e-10 1.80457e-11 3.06119e-10) (8.11034e-10 1.42104e-10 6.88902e-10) (1.01632e-09 2.30681e-10 4.52685e-10) (8.71349e-10 1.88318e-10 6.7671e-11) (5.31214e-10 5.58858e-11 -5.18624e-11) (1.62288e-10 -2.0761e-11 -1.54511e-11) (1.23501e-11 -1.09874e-11 -2.76093e-12) (-9.81883e-12 -9.27385e-12 -5.86159e-12) (-4.26489e-11 -9.44673e-12 -1.9011e-11) (-2.86468e-11 -1.36356e-12 -1.68819e-11) (-4.55417e-12 -4.66636e-13 -1.06415e-11) (1.23685e-11 -1.85314e-12 -2.73917e-11) (6.38389e-10 -4.979e-12 -1.18704e-10) (1.22347e-09 1.98615e-11 -9.06539e-11) (1.71579e-09 3.23863e-11 1.31927e-10) (1.39432e-09 2.96131e-12 2.72618e-10) (6.70275e-10 -2.04285e-12 7.61818e-11) (4.05094e-10 -6.11508e-12 -1.17455e-10) (4.03352e-10 -6.11661e-12 -2.37073e-10) (1.83085e-10 -1.96576e-12 -1.15676e-10) (2.80125e-12 9.61909e-14 -2.88618e-12) (-3.45582e-11 -1.47303e-12 1.88941e-11) (6.03367e-12 -1.92929e-11 1.15037e-10) (4.07702e-10 -1.28356e-10 4.68773e-10) (6.09976e-10 -1.6878e-10 5.00725e-10) (3.83529e-10 -8.46214e-11 2.02944e-10) (3.20609e-10 -2.68274e-11 1.3477e-11) (5.53861e-10 1.61881e-11 -1.08838e-10) (1.02309e-09 8.72035e-11 -1.99314e-10) (1.86233e-09 1.90878e-10 -3.61755e-10) (3.40473e-09 2.7428e-10 -7.85775e-10) (5.30881e-09 1.48434e-10 -1.33103e-09) (5.12808e-09 -1.74649e-10 -1.23015e-09) (2.38176e-09 -2.1729e-10 -5.25882e-10) (4.70617e-10 -5.118e-11 -1.13079e-10) (8.93422e-11 -9.22157e-15 -2.91073e-11) (1.23366e-10 1.02147e-11 -3.52011e-11) (2.78701e-10 7.22314e-12 -3.95754e-11) (3.38891e-10 3.20395e-13 8.69712e-12) (4.54908e-10 7.77196e-12 1.32365e-10) (1.14011e-09 4.23142e-11 5.22987e-10) (2.51705e-09 2.00769e-10 1.02106e-09) (3.86493e-09 4.00017e-10 9.27704e-10) (4.49839e-09 4.07446e-10 4.43291e-10) (3.64807e-09 1.47511e-10 1.90259e-10) (1.91416e-09 -7.00848e-11 1.20926e-10) (6.06769e-10 -7.79257e-11 1.85505e-11) (1.30005e-10 -2.42526e-11 -1.69962e-11) (4.56281e-11 -5.61596e-12 -1.57508e-11) (5.52733e-11 -1.67847e-12 -1.88283e-11) (1.26006e-10 -3.02558e-12 -3.44775e-11) (2.94341e-10 -7.59264e-12 -7.14825e-11) (1.16484e-09 -2.6548e-13 8.90887e-11) (1.84545e-09 1.73836e-12 2.34209e-10) (1.83781e-09 -1.03121e-11 3.83758e-10) (1.08896e-09 -8.92928e-12 2.42687e-10) (5.76321e-10 -3.7545e-12 -3.42145e-11) (5.69851e-10 -8.6829e-12 -2.92312e-10) (4.44717e-10 -1.09004e-11 -3.49857e-10) (7.56423e-11 -1.7399e-12 -9.21329e-11) (-1.57959e-11 4.1341e-13 -5.34436e-12) (-9.17719e-12 -4.90274e-13 1.00216e-11) (8.63401e-11 -1.15979e-11 9.14367e-11) (3.3087e-10 -5.04807e-11 2.41727e-10) (3.01055e-10 -4.57054e-11 1.86853e-10) (2.15991e-10 -2.16879e-11 4.87654e-11) (3.78011e-10 -9.43044e-12 -8.34693e-11) (8.33517e-10 1.16687e-11 -2.77868e-10) (1.6616e-09 4.31111e-11 -4.87931e-10) (3.28624e-09 1.06991e-10 -8.5029e-10) (6.23103e-09 1.69659e-10 -1.47692e-09) (8.65046e-09 5.90616e-11 -1.79838e-09) (6.45271e-09 -1.4266e-10 -1.0933e-09) (2.00947e-09 -1.02219e-10 -2.85496e-10) (3.5675e-10 -1.67989e-11 -7.08126e-11) (2.46772e-10 6.48687e-12 -8.23453e-11) (6.56007e-10 3.41206e-11 -1.99642e-10) (1.07198e-09 4.07099e-11 -2.16351e-10) (1.07631e-09 3.59224e-11 -7.53289e-11) (1.30303e-09 3.82951e-11 1.6421e-10) (2.33312e-09 5.50025e-11 6.40848e-10) (4.16958e-09 1.45172e-10 1.18923e-09) (6.69267e-09 2.97232e-10 1.35466e-09) (8.4225e-09 3.01724e-10 1.11745e-09) (6.96501e-09 8.47975e-11 8.08851e-10) (3.4184e-09 -6.76365e-11 4.10652e-10) (9.88561e-10 -4.75223e-11 6.79755e-11) (2.45072e-10 -1.24864e-11 -1.6093e-11) (1.16644e-10 -2.20338e-12 -1.75396e-11) (1.34323e-10 7.05007e-13 -1.01628e-11) (2.54752e-10 6.47924e-13 2.63571e-12) (5.60548e-10 -1.13014e-12 2.54272e-11) (9.5224e-11 -7.05137e-13 3.50226e-11) (1.20099e-10 -1.12353e-12 4.54341e-11) (8.78607e-11 -7.35409e-13 3.75825e-11) (4.93906e-11 -1.52331e-13 1.40387e-11) (4.11354e-11 -2.82e-13 -1.06433e-11) (5.29585e-11 -7.92631e-13 -4.74597e-11) (2.31025e-11 -7.74513e-13 -4.60669e-11) (-4.65717e-12 -5.74335e-14 -1.91661e-11) (-5.12873e-12 1.62811e-13 -4.60097e-12) (9.69478e-14 1.55962e-14 -1.44404e-13) (8.05632e-12 -1.73233e-14 3.9445e-13) (1.94559e-11 -5.81521e-13 3.14167e-12) (2.07727e-11 -7.56673e-13 2.76635e-12) (3.31677e-11 -7.96896e-13 -2.33633e-12) (7.10686e-11 -8.87811e-13 -1.79764e-11) (1.06253e-10 -9.36986e-13 -3.16074e-11) (1.24213e-10 -1.19021e-12 -3.62074e-11) (1.86974e-10 2.87512e-13 -4.9543e-11) (3.55075e-10 3.16236e-12 -7.72143e-11) (4.65506e-10 1.74098e-12 -7.18732e-11) (2.52203e-10 -1.91066e-12 -2.05561e-11) (4.10771e-11 -1.03982e-12 -1.73288e-12) (4.25397e-12 -2.4792e-13 -1.70929e-12) (1.24834e-11 -3.0075e-14 -1.11066e-11) (7.67722e-11 2.76378e-12 -4.81345e-11) (1.60382e-10 5.33182e-12 -7.15824e-11) (1.94117e-10 4.77797e-12 -5.82817e-11) (2.16043e-10 2.16257e-12 -2.23778e-11) (2.48269e-10 -5.21526e-13 3.22267e-11) (3.21417e-10 -4.33274e-13 9.6437e-11) (4.7863e-10 3.38013e-12 1.46469e-10) (6.01251e-10 4.38659e-12 1.54134e-10) (4.51331e-10 7.04268e-13 1.15053e-10) (1.81619e-10 -7.60374e-13 5.18822e-11) (4.42257e-11 -3.0618e-13 1.01411e-11) (1.06816e-11 -1.70158e-13 6.14356e-13) (4.91982e-12 -7.39674e-14 -7.73823e-14) (5.78617e-12 -6.75603e-15 1.01768e-12) (1.52409e-11 6.03189e-14 5.56244e-12) (4.47555e-11 -6.36059e-16 1.7189e-11) (1.09238e-11 -2.88255e-10 -1.56675e-11) (-9.70404e-11 -2.52879e-10 3.91161e-12) (-6.24312e-11 -6.50942e-11 6.30075e-12) (-9.36963e-12 3.2704e-12 -6.47256e-14) (-5.5556e-12 6.88805e-11 -1.1036e-11) (9.07426e-12 1.58476e-10 -2.887e-11) (-1.41207e-11 6.8463e-11 -1.513e-11) (-4.56836e-11 6.56416e-12 -1.24175e-11) (-2.80595e-10 -1.27456e-10 -7.55771e-11) (-5.21659e-10 -2.6173e-10 -2.10816e-10) (-3.59352e-10 -6.67428e-11 -2.34321e-10) (-1.67476e-10 1.54407e-10 -1.88614e-10) (-6.22253e-11 4.9791e-10 -1.85365e-10) (8.04903e-11 6.60018e-10 -4.88021e-12) (1.06509e-10 3.69059e-10 1.77291e-10) (9.61141e-11 1.31618e-10 2.80978e-10) (1.20563e-10 -2.09177e-11 4.57042e-10) (9.54868e-11 -1.14336e-10 4.53709e-10) (8.39637e-12 -9.03071e-11 1.97453e-10) (-3.76404e-11 -5.97032e-11 3.88141e-11) (-1.61409e-10 -1.57273e-10 -6.63141e-11) (-3.80044e-10 -3.41437e-10 -3.46495e-10) (-3.45268e-10 -3.24891e-10 -4.75181e-10) (-1.13243e-10 -1.18432e-10 -2.46014e-10) (-6.36926e-12 -5.67562e-12 -3.3598e-11) (1.0779e-12 3.46874e-12 2.26975e-13) (5.55004e-12 2.84446e-11 3.67661e-11) (-1.33727e-12 2.99305e-11 1.11223e-10) (-8.99195e-12 -2.61756e-11 1.66905e-10) (4.46844e-12 -8.46154e-11 1.56222e-10) (1.9957e-11 -6.70569e-11 6.40029e-11) (1.6552e-11 -2.47428e-11 3.92209e-12) (2.4693e-11 -1.07e-11 -2.005e-11) (6.08565e-11 2.09294e-11 -5.74521e-11) (1.29744e-10 1.12863e-10 -9.36744e-11) (2.06573e-10 2.42922e-10 -1.10387e-10) (2.19289e-10 2.50757e-10 -1.0003e-10) (1.58104e-10 1.03256e-10 -6.41599e-11) (1.00057e-10 -1.49674e-11 -3.35479e-11) (8.93408e-11 -1.35069e-10 -2.63755e-11) (-2.38975e-10 -2.49281e-10 8.30813e-11) (-4.7739e-10 -5.32475e-10 3.34002e-10) (-2.0393e-10 -2.81205e-10 2.86506e-10) (-1.12463e-11 -1.56798e-11 6.72274e-11) (1.48569e-11 4.65836e-11 2.28196e-11) (4.34732e-11 1.42789e-10 -1.88933e-11) (3.53616e-11 8.86971e-11 -4.33711e-11) (1.12566e-11 1.11437e-11 -2.26522e-11) (-4.2523e-12 -1.8837e-11 -3.80581e-11) (-1.50191e-10 -1.18743e-10 -1.7113e-10) (-7.46915e-10 -2.57869e-10 -4.96391e-10) (-1.1476e-09 -1.24247e-10 -6.20075e-10) (-4.24939e-10 9.61154e-11 -2.62895e-10) (-4.56534e-12 1.10343e-10 -6.34629e-11) (4.66954e-10 4.817e-10 -2.97096e-11) (1.33928e-09 9.58772e-10 3.16174e-10) (1.46869e-09 8.68488e-10 8.01706e-10) (9.12147e-10 4.33958e-10 9.67964e-10) (2.70012e-10 6.43205e-11 6.63869e-10) (-5.01897e-11 -7.63038e-11 2.32613e-10) (-2.53763e-10 -2.0761e-10 3.8753e-11) (-7.84406e-10 -6.12298e-10 -4.86014e-10) (-1.00461e-09 -8.02577e-10 -1.06657e-09) (-5.14994e-10 -4.19954e-10 -6.22627e-10) (-9.25172e-11 -6.61829e-11 -6.28923e-11) (-2.51633e-11 -6.08297e-12 3.04613e-11) (-5.23647e-11 4.41509e-11 2.35105e-10) (-6.84562e-11 1.17274e-10 4.69989e-10) (-6.08358e-11 9.62271e-11 4.58547e-10) (-1.78726e-11 2.44525e-11 2.1177e-10) (2.43197e-12 -1.88886e-12 1.65186e-11) (9.60655e-12 -8.89215e-12 -1.41808e-11) (7.64921e-11 -5.91158e-11 -1.81509e-10) (1.67649e-10 -5.74403e-11 -3.38222e-10) (2.45535e-10 3.93779e-11 -3.24527e-10) (3.65194e-10 1.75574e-10 -2.92193e-10) (4.50037e-10 2.64028e-10 -2.43966e-10) (2.92323e-10 1.58269e-10 -1.39961e-10) (4.61662e-11 1.3481e-11 -2.91605e-11) (-8.19885e-12 -1.50596e-11 -3.61798e-12) (-1.14418e-10 -1.4034e-10 9.55956e-11) (-8.87513e-11 -4.28942e-10 3.35657e-10) (1.45006e-10 -3.19285e-10 3.83898e-10) (1.73543e-10 -2.04124e-11 1.87619e-10) (1.00699e-10 1.10043e-10 5.33505e-11) (2.73781e-11 1.38864e-10 -2.33332e-11) (-1.55022e-11 6.12545e-11 -4.66661e-11) (-2.14405e-11 9.02203e-12 -6.12868e-11) (-5.63057e-11 -2.1854e-11 -1.51001e-10) (-2.76422e-10 -1.55213e-11 -3.55059e-10) (-1.11585e-09 8.71506e-12 -6.83022e-10) (-1.88304e-09 -1.5052e-10 -6.03679e-10) (-9.04681e-10 -2.19204e-10 -1.43606e-10) (-4.29141e-11 -3.30676e-11 1.16366e-12) (1.13141e-10 -1.42543e-11 2.28801e-11) (1.23313e-09 2.47841e-10 2.10714e-10) (2.92596e-09 1.09798e-09 6.94301e-10) (3.11396e-09 1.6848e-09 1.173e-09) (1.47043e-09 1.11119e-09 9.32524e-10) (1.52601e-10 2.27709e-10 2.42208e-10) (-6.20843e-11 1.15337e-11 2.13747e-11) (-7.32114e-10 -2.31099e-10 -2.65472e-10) (-1.70237e-09 -8.19765e-10 -1.00331e-09) (-1.5866e-09 -9.87517e-10 -9.30434e-10) (-8.94199e-10 -6.8521e-10 -2.21404e-10) (-5.16526e-10 -4.34015e-10 2.57619e-10) (-3.88711e-10 -2.5009e-10 6.58646e-10) (-2.43453e-10 8.40309e-11 9.75355e-10) (-9.22753e-11 4.01864e-10 9.01591e-10) (-2.19915e-11 3.04416e-10 3.50703e-10) (-1.54888e-12 4.32496e-11 8.55601e-12) (1.45718e-11 -6.9052e-13 -1.1573e-10) (1.34214e-10 -2.26935e-10 -5.95297e-10) (2.71803e-10 -3.64054e-10 -7.06594e-10) (2.53365e-10 -1.74267e-10 -3.5766e-10) (1.86746e-10 -8.71466e-12 -1.33202e-10) (1.74523e-10 8.23097e-11 -7.44558e-11) (1.09328e-10 1.06522e-10 -4.63873e-11) (1.00543e-11 2.78779e-11 -9.42266e-12) (-1.10508e-11 -1.11472e-12 2.81501e-12) (6.04097e-12 -5.12199e-11 3.68678e-11) (1.75303e-10 -2.79467e-10 3.24475e-10) (4.89569e-10 -2.33375e-10 5.73105e-10) (4.12461e-10 7.53042e-11 2.74989e-10) (1.46981e-10 1.34531e-10 -3.12053e-12) (1.15209e-11 8.59958e-11 -9.35562e-11) (-7.65651e-11 6.20017e-12 -1.9771e-10) (-1.0738e-10 -1.18576e-10 -3.09676e-10) (-2.56216e-11 -7.58327e-11 -2.26862e-10) (5.14572e-14 6.61776e-12 -6.08378e-11) (-5.45621e-12 5.26828e-12 -2.9792e-12) (-3.9485e-11 -8.05159e-12 3.37427e-11) (-6.80603e-11 -6.67966e-11 1.1889e-10) (-7.06798e-12 -4.05508e-11 7.60665e-11) (1.66724e-11 -2.88014e-12 1.73485e-11) (6.7973e-11 2.33976e-11 8.84178e-12) (1.92285e-10 9.99355e-11 1.87073e-11) (3.10553e-10 2.47466e-10 8.3335e-11) (2.55212e-10 3.83897e-10 1.44074e-10) (3.09892e-11 3.06826e-10 8.8816e-11) (-1.21663e-10 1.55728e-10 -1.07054e-11) (-3.48026e-10 4.54348e-11 -2.05728e-10) (-6.44453e-10 -3.12694e-10 -6.40039e-10) (-6.91491e-10 -7.16187e-10 -7.25027e-10) (-6.85543e-10 -7.93417e-10 -1.86057e-10) (-1.08838e-09 -9.61429e-10 7.33198e-10) (-1.58254e-09 -7.82918e-10 2.20297e-09) (-1.32495e-09 2.01026e-10 2.51858e-09) (-6.89637e-10 7.26135e-10 1.23992e-09) (-2.06531e-10 3.68198e-10 1.34373e-10) (-6.85283e-11 1.27664e-10 -1.79985e-10) (-4.73748e-12 -1.19153e-10 -7.35264e-10) (1.85381e-10 -5.92624e-10 -1.08561e-09) (2.67756e-10 -5.20583e-10 -6.37595e-10) (1.36831e-10 -1.38565e-10 -1.41329e-10) (4.96617e-11 -1.68392e-12 -1.00651e-11) (6.35106e-11 5.86587e-11 1.67142e-11) (5.33633e-11 1.06588e-10 2.40222e-11) (9.03811e-12 4.13485e-11 4.55046e-12) (-1.4668e-13 2.1619e-13 2.02736e-13) (3.7211e-11 1.2205e-13 8.68653e-11) (2.8292e-10 -7.97322e-11 6.82312e-10) (4.90343e-10 -5.00082e-12 7.61963e-10) (2.59739e-10 8.94303e-11 1.28089e-10) (1.50721e-10 9.9693e-11 -1.38209e-10) (2.603e-11 4.12651e-11 -4.36337e-10) (-2.99069e-10 -2.29068e-10 -7.51436e-10) (-4.76225e-10 -4.39785e-10 -7.57018e-10) (-1.21507e-10 -1.25236e-10 -1.96228e-10) (7.45616e-13 6.73358e-13 1.00176e-12) (1.35281e-10 8.59466e-11 2.83442e-10) (4.29091e-10 2.71922e-11 9.26909e-10) (4.65387e-10 -1.33822e-10 8.1806e-10) (2.00928e-10 -2.20419e-11 2.05465e-10) (8.21943e-11 3.91688e-11 -1.1329e-11) (1.38935e-10 1.41957e-10 -2.05111e-10) (1.04367e-10 1.59192e-10 -2.72884e-10) (2.21712e-11 8.12815e-11 -8.28847e-11) (-1.62785e-11 8.89352e-11 -2.02664e-12) (-1.09704e-10 2.14009e-10 5.49026e-11) (-1.62143e-10 1.84606e-10 -8.75268e-12) (-1.55572e-10 5.45529e-11 -1.44929e-10) (-2.85996e-10 -1.91602e-10 -4.54044e-10) (-4.8395e-10 -5.54923e-10 -4.44857e-10) (-7.86738e-10 -7.9705e-10 1.15784e-10) (-1.32169e-09 -1.0009e-09 1.23912e-09) (-1.3474e-09 -5.18514e-10 2.01281e-09) (-7.70709e-10 2.08201e-10 1.26177e-09) (-2.91398e-10 2.92069e-10 3.02757e-10) (-8.15123e-11 1.16743e-10 -3.21139e-11) (-2.82863e-11 2.61829e-11 -1.92022e-10) (8.2757e-11 -2.26287e-10 -5.33168e-10) (2.10373e-10 -4.61547e-10 -6.24004e-10) (1.3574e-10 -2.54111e-10 -2.68249e-10) (2.85944e-11 -3.57316e-11 -2.91523e-11) (5.96478e-12 -1.32267e-13 1.21358e-12) (1.56982e-11 1.53476e-11 8.8655e-12) (2.45587e-11 4.0148e-11 3.69217e-12) (1.9422e-11 4.31573e-11 -8.41896e-12) (6.5517e-12 1.12478e-11 1.54021e-12) (1.28193e-10 8.59602e-11 2.38959e-10) (3.89967e-10 8.953e-11 1.05846e-09) (3.83131e-10 -2.0004e-11 6.69487e-10) (1.56542e-10 -1.19085e-11 2.73387e-11) (2.32237e-10 -2.10699e-11 -3.303e-10) (2.17061e-11 -1.13119e-10 -8.31718e-10) (-6.50959e-10 -3.94825e-10 -1.20224e-09) (-1.11816e-09 -6.36511e-10 -1.04782e-09) (-4.05223e-10 -2.03296e-10 -1.35506e-10) (-9.75491e-11 -7.90489e-12 2.94662e-10) (4.16409e-10 1.18108e-10 2.4123e-09) (8.44802e-10 -1.50485e-10 3.33354e-09) (2.81367e-10 -4.72135e-11 1.19375e-09) (4.27403e-11 3.86111e-11 5.95193e-11) (3.20724e-10 2.50139e-10 -2.92022e-10) (1.56716e-09 7.29848e-10 -1.7585e-09) (2.00525e-09 6.6495e-10 -2.29189e-09) (8.41232e-10 3.34766e-10 -9.9558e-10) (9.7975e-11 1.18292e-10 -1.32349e-10) (-1.63896e-11 8.84349e-11 -1.18524e-11) (-6.46813e-11 9.47275e-11 -1.91572e-11) (-9.60141e-11 4.26893e-11 -9.51012e-11) (-2.44815e-10 -1.04007e-10 -2.51186e-10) (-4.90722e-10 -4.01849e-10 -1.78579e-10) (-6.94422e-10 -6.79354e-10 2.99912e-10) (-6.09933e-10 -6.17633e-10 8.40174e-10) (-2.72331e-10 -1.7083e-10 7.11e-10) (-7.42089e-11 6.03564e-11 2.33356e-10) (-2.22533e-11 3.89149e-11 1.95718e-11) (-1.72956e-11 1.69486e-11 -2.86438e-11) (-1.89549e-11 -3.36611e-11 -1.27227e-10) (8.81089e-12 -1.56023e-10 -2.50147e-10) (5.5251e-12 -1.66293e-10 -2.06924e-10) (-1.31937e-11 -4.70449e-11 -4.81401e-11) (-2.19642e-12 -1.60474e-12 -1.40623e-13) (-5.05504e-13 4.25536e-12 7.32665e-12) (9.90804e-12 1.60569e-11 9.0418e-12) (2.99215e-11 3.34863e-11 -1.37832e-11) (5.19161e-11 5.23767e-11 -4.71165e-11) (3.73223e-11 3.53955e-11 -2.38393e-12) (4.2971e-10 3.46383e-10 5.04476e-10) (6.48128e-10 2.18055e-10 1.10686e-09) (4.26876e-10 -1.34847e-10 5.25149e-10) (1.65168e-10 -1.35209e-10 -3.49477e-12) (1.05662e-10 -1.91576e-10 -3.8156e-10) (-3.04248e-10 -2.33833e-10 -1.09029e-09) (-1.10387e-09 -3.71782e-10 -1.69089e-09) (-1.32479e-09 -5.03587e-10 -1.1942e-09) (-5.78343e-10 -1.98864e-10 7.55709e-12) (-6.59829e-10 -1.18234e-10 2.07265e-09) (-7.61814e-10 2.24983e-10 8.39051e-09) (-1.78121e-09 6.50715e-10 6.5437e-09) (-9.69216e-10 3.92039e-10 1.15287e-09) (-5.101e-11 4.79993e-11 -2.89134e-11) (4.57121e-10 1.37049e-10 -6.72001e-10) (2.3211e-09 3.36674e-10 -1.97088e-09) (3.25528e-09 6.52567e-10 -2.13088e-09) (2.33748e-09 7.84948e-10 -1.30579e-09) (9.98787e-10 5.79647e-10 -5.25236e-10) (2.67827e-10 2.85983e-10 -1.78243e-10) (3.44427e-11 1.02415e-10 -8.20743e-11) (-3.15483e-11 2.65023e-11 -6.68762e-11) (-1.41359e-10 -5.85107e-11 -8.07283e-11) (-4.05788e-10 -3.16631e-10 5.01482e-11) (-5.25843e-10 -5.38889e-10 4.17065e-10) (-2.19241e-10 -2.86976e-10 4.13455e-10) (-5.8593e-12 -2.62069e-11 1.03262e-10) (6.47443e-12 5.05363e-12 6.01526e-12) (3.36604e-12 4.15528e-12 -7.09616e-12) (-8.43207e-12 -1.07852e-11 -3.19115e-11) (-5.13512e-11 -7.91307e-11 -8.70157e-11) (-1.11405e-10 -1.48868e-10 -1.37367e-10) (-1.43335e-10 -1.28233e-10 -1.30077e-10) (-9.25767e-11 -4.94206e-11 -4.78786e-11) (-2.20344e-11 -5.39751e-12 2.49619e-12) (-1.74617e-12 3.32269e-12 9.86516e-12) (2.26911e-11 2.06055e-11 1.79277e-11) (8.65626e-11 6.64824e-11 -7.04747e-12) (1.69035e-10 1.37825e-10 -5.30908e-11) (2.21258e-10 1.99982e-10 4.01837e-11) (8.68889e-10 5.43468e-10 8.78653e-10) (9.77738e-10 1.92175e-10 1.37186e-09) (3.7122e-10 -2.57524e-10 5.46697e-10) (1.73075e-11 -1.90717e-10 1.1214e-13) (-3.28978e-10 -4.36594e-10 -6.81612e-10) (-1.05956e-09 -5.98101e-10 -2.3626e-09) (-1.22013e-09 -5.21467e-10 -2.66066e-09) (-7.08549e-10 -2.19402e-10 -7.598e-10) (-5.47512e-10 -3.36077e-11 4.3838e-10) (-2.34409e-09 6.7003e-10 7.68907e-09) (-5.07595e-09 2.19183e-09 1.43527e-08) (-3.62866e-09 1.23918e-09 5.05597e-09) (-3.01123e-10 6.36062e-11 8.38873e-11) (8.72223e-11 -8.45694e-11 -4.69784e-10) (8.89101e-10 -3.20671e-10 -1.39486e-09) (8.78314e-10 -1.16845e-10 -8.48895e-10) (6.09613e-10 1.50303e-10 -2.98482e-10) (7.96562e-10 4.97293e-10 -1.74966e-10) (1.07551e-09 9.10232e-10 -2.38591e-10) (8.6885e-10 8.25359e-10 -3.5662e-10) (3.28981e-10 3.3109e-10 -2.62099e-10) (2.61995e-11 3.03619e-11 -5.7148e-11) (-1.70817e-11 -1.41871e-11 -6.03524e-12) (-1.87089e-10 -1.68518e-10 1.06673e-10) (-2.71214e-10 -2.47423e-10 2.67342e-10) (-5.95141e-11 -7.05318e-11 9.82855e-11) (4.17569e-12 -3.58213e-12 2.49532e-12) (4.10902e-11 -9.50787e-12 -2.87175e-11) (2.36727e-11 -2.47274e-11 -4.11009e-11) (-3.22323e-11 -5.79352e-11 -3.75289e-11) (-2.01638e-10 -1.46068e-10 -5.86575e-11) (-3.27655e-10 -1.32179e-10 -9.62959e-11) (-2.34857e-10 -4.6665e-11 -9.54825e-11) (-6.77585e-11 -4.89207e-12 -2.45847e-11) (-3.53084e-12 3.57506e-13 1.61309e-12) (7.43098e-12 3.09339e-12 1.10593e-11) (4.62158e-11 1.80977e-11 1.46293e-11) (1.21385e-10 6.46731e-11 -2.35682e-11) (2.27859e-10 1.55981e-10 -4.97158e-11) (4.15195e-10 3.13969e-10 1.36426e-10) (9.26185e-10 5.97665e-10 1.32305e-09) (5.64799e-10 2.88185e-10 1.69503e-09) (-8.21432e-11 -1.92861e-10 5.34681e-10) (-5.02081e-10 -5.26079e-10 -1.19886e-10) (-1.73662e-09 -1.66116e-09 -2.53622e-09) (-2.09067e-09 -1.90338e-09 -5.05582e-09) (-1.23696e-09 -6.38743e-10 -2.45033e-09) (-2.70146e-10 7.89574e-12 -5.68104e-11) (-1.01406e-09 7.73017e-10 2.94445e-09) (-3.32581e-09 3.61327e-09 1.33497e-08) (-4.49714e-09 3.03969e-09 9.38936e-09) (-6.3965e-10 2.92641e-10 6.35387e-10) (1.09357e-10 -5.14073e-11 -2.98032e-10) (2.15188e-09 -8.95901e-10 -2.9037e-09) (2.35192e-09 -1.06036e-09 -2.51252e-09) (5.60709e-10 -2.66655e-10 -4.76944e-10) (1.77121e-11 -5.84116e-14 -8.46642e-12) (1.60037e-11 7.90193e-11 1.121e-11) (1.61861e-10 4.54088e-10 -6.14548e-12) (4.69028e-10 7.54892e-10 -1.74546e-10) (4.2202e-10 4.54697e-10 -2.23605e-10) (9.84671e-11 6.69375e-11 -5.26833e-11) (7.16803e-13 -6.10817e-13 8.48313e-13) (-4.50231e-11 -3.71269e-11 6.04391e-11) (-8.77608e-11 -5.82993e-11 1.00521e-10) (-7.33495e-12 -1.28695e-11 1.05192e-11) (2.74338e-11 -2.41901e-11 -2.36296e-11) (7.69828e-11 -6.48093e-11 -9.69571e-11) (-5.78524e-12 -5.34747e-11 -4.58768e-11) (-2.79744e-10 -1.89386e-10 -3.47853e-11) (-1.00467e-09 -4.28388e-10 -2.45586e-11) (-8.20686e-10 -2.69787e-10 -1.19474e-10) (-1.72127e-10 -3.78821e-11 -6.4406e-11) (-1.91552e-12 6.11255e-13 -1.76552e-12) (2.13381e-11 9.41522e-12 8.51703e-12) (1.08206e-10 3.38537e-11 3.63009e-11) (1.6305e-10 4.96829e-11 4.2145e-12) (1.9336e-10 5.60997e-11 -4.79007e-11) (2.44142e-10 7.39651e-11 -2.13219e-11) (4.73999e-10 2.20085e-10 2.61636e-10) (-1.74463e-11 4.13723e-10 7.26707e-10) (-1.65885e-10 4.43766e-10 1.39398e-09) (-2.53032e-10 -1.29007e-10 2.92206e-10) (-1.21995e-09 -1.36212e-09 -9.92526e-10) (-3.63471e-09 -4.01593e-09 -5.88507e-09) (-3.86263e-09 -2.50596e-09 -5.31521e-09) (-1.48342e-09 -2.57615e-10 -7.12433e-10) (-9.1218e-10 3.47423e-10 1.17841e-09) (-1.16012e-09 2.62628e-09 7.31457e-09) (-1.22558e-09 3.63444e-09 7.32058e-09) (-2.38001e-10 8.27135e-10 1.09769e-09) (1.20948e-10 6.17884e-11 -1.08716e-10) (2.63864e-09 -4.9644e-10 -3.06188e-09) (5.34005e-09 -1.9414e-09 -5.70745e-09) (2.88197e-09 -1.4789e-09 -2.67334e-09) (3.4877e-10 -2.66042e-10 -2.40464e-10) (5.43682e-14 -4.44143e-12 2.80661e-12) (-6.40549e-11 4.3414e-11 4.06125e-11) (-1.46141e-10 2.44892e-10 3.77839e-11) (-4.18958e-11 3.97733e-10 -4.23052e-11) (1.00617e-10 3.01254e-10 -5.92724e-11) (8.94511e-11 1.11667e-10 1.69691e-12) (3.28679e-11 3.00507e-11 3.42199e-11) (4.98975e-12 1.06414e-11 5.34777e-11) (-9.74852e-13 -3.96201e-12 2.55221e-11) (1.13654e-11 -1.22278e-11 -3.74525e-13) (9.90804e-11 -8.19663e-11 -8.93888e-11) (7.47202e-11 -1.00057e-10 -1.27107e-10) (-3.69683e-11 -8.57258e-11 -5.95158e-11) (-4.67703e-10 -3.47103e-10 -6.67923e-11) (-1.50397e-09 -7.74249e-10 -1.16308e-10) (-1.37808e-09 -4.62173e-10 -1.43386e-10) (-1.98562e-10 -1.2162e-11 -9.39577e-13) (2.26161e-11 3.60903e-11 4.52672e-11) (5.27927e-10 2.47161e-10 4.20324e-10) (8.99132e-10 2.81568e-10 5.16922e-10) (4.48911e-10 1.02452e-10 1.32642e-10) (7.031e-11 1.34099e-12 -1.5717e-11) (3.36956e-12 -2.22604e-12 -5.1725e-12) (-2.58752e-12 1.44418e-11 1.88149e-11) (-1.33746e-10 6.24811e-10 1.176e-09) (1.0063e-10 4.01182e-10 8.33976e-10) (-2.19549e-11 -3.51271e-11 -1.24892e-11) (-1.70977e-09 -2.22902e-09 -2.66732e-09) (-6.20318e-09 -4.19723e-09 -6.4762e-09) (-5.87267e-09 -1.43317e-09 -2.61727e-09) (-2.28385e-09 1.4216e-10 8.69045e-10) (-1.10069e-09 8.48285e-10 3.12735e-09) (7.43337e-11 1.40935e-09 3.32376e-09) (4.70574e-10 8.96221e-10 1.00951e-09) (6.46668e-10 4.98175e-10 -5.65575e-11) (2.47134e-09 4.74715e-10 -1.84716e-09) (5.75895e-09 -7.43047e-10 -5.35934e-09) (5.40065e-09 -1.90991e-09 -5.22061e-09) (1.5843e-09 -9.29655e-10 -1.56336e-09) (7.30598e-11 -1.08158e-10 -9.10336e-11) (-2.66686e-11 -1.31321e-11 6.34633e-12) (-1.97432e-10 4.99046e-11 6.71054e-11) (-3.41496e-10 2.27443e-10 9.03989e-11) (-2.30665e-10 2.9894e-10 4.96419e-11) (-3.27274e-11 2.03255e-10 4.31692e-11) (9.93363e-11 1.82609e-10 1.02467e-10) (2.30061e-10 1.96291e-10 2.05867e-10) (1.77838e-10 9.53513e-11 1.48685e-10) (8.24418e-11 6.75983e-13 3.41841e-11) (1.21349e-10 -6.58868e-11 -3.55804e-11) (1.93791e-10 -1.61988e-10 -1.70349e-10) (1.10762e-10 -1.56693e-10 -1.72795e-10) (-1.05936e-11 -1.49861e-10 -9.29417e-11) (-6.06285e-10 -5.1148e-10 -1.39087e-10) (-4.58773e-09 -1.50583e-09 -3.05309e-10) (-5.62992e-09 -7.25897e-10 8.26345e-11) (-6.78833e-10 1.0918e-10 3.04703e-10) (4.36592e-10 3.26239e-10 7.00191e-10) (2.45718e-09 7.20092e-10 1.74289e-09) (1.60729e-09 3.28444e-10 7.23712e-10) (1.63357e-10 2.74647e-11 -1.45891e-11) (-5.808e-11 -2.64842e-11 -1.33667e-10) (-4.84458e-10 -1.11e-10 -2.40432e-10) (-3.24333e-10 6.22222e-11 1.70533e-10) (-2.71892e-10 5.56411e-10 1.35699e-09) (1.69698e-10 1.68398e-10 2.4608e-10) (4.61033e-11 -1.1502e-10 -2.0815e-10) (-1.93627e-09 -1.84002e-09 -2.81584e-09) (-7.97983e-09 -2.51014e-09 -4.16095e-09) (-6.91371e-09 -4.52705e-10 -3.26556e-10) (-1.68242e-09 1.59213e-10 1.19466e-09) (-1.01802e-10 2.0884e-10 9.96739e-10) (4.43904e-10 3.97219e-10 6.74601e-10) (9.99167e-10 7.23385e-10 2.82076e-10) (2.15371e-09 9.80916e-10 -5.86608e-10) (4.04483e-09 4.85801e-10 -2.26413e-09) (4.85774e-09 -9.20861e-10 -3.28801e-09) (2.79152e-09 -1.2894e-09 -1.95356e-09) (5.45025e-10 -4.28636e-10 -4.1535e-10) (5.46774e-13 -4.36016e-11 -4.39039e-11) (-2.14004e-10 -2.04338e-11 -7.83787e-11) (-8.00492e-10 1.45381e-10 -1.0911e-10) (-8.2033e-10 3.49272e-10 2.05283e-11) (-3.06571e-10 2.88564e-10 1.1025e-10) (5.43226e-13 2.12503e-10 1.58076e-10) (4.34107e-10 3.93672e-10 4.32143e-10) (9.67056e-10 5.01187e-10 5.73146e-10) (7.18314e-10 2.28385e-10 2.16114e-10) (3.32727e-10 -2.05016e-11 -3.02638e-11) (2.81664e-10 -1.82919e-10 -1.83342e-10) (3.0041e-10 -3.58252e-10 -3.55676e-10) (1.31976e-10 -3.22806e-10 -2.42914e-10) (-2.93923e-10 -3.39586e-10 -9.31951e-11) (-6.95123e-09 -1.7014e-09 1.18967e-10) (-2.06928e-08 -2.28133e-09 5.02788e-10) (-7.44689e-09 -6.09026e-10 6.48674e-10) (-7.09526e-11 1.56498e-11 1.3788e-10) (1.84353e-09 4.37233e-10 1.1755e-09) (3.6278e-09 7.77982e-10 1.43764e-09) (1.97321e-09 4.70997e-10 1.36585e-10) (7.04406e-10 2.22573e-10 -4.37361e-10) (7.119e-13 5.50223e-11 -3.62253e-10) (-6.81771e-10 -2.43019e-11 -1.80278e-10) (-1.28987e-09 1.42585e-10 8.84158e-10) (-1.64383e-10 3.58126e-10 7.78747e-10) (1.12358e-10 5.55901e-11 7.68392e-11) (7.85214e-11 -1.05686e-10 -2.05484e-10) (-1.65609e-09 -8.44629e-10 -1.44924e-09) (-7.97309e-09 -1.17993e-09 -2.29212e-09) (-4.74913e-09 -2.78023e-10 -1.064e-10) (-3.40073e-10 -1.664e-11 1.65458e-10) (3.84105e-11 2.68348e-11 1.00131e-10) (4.01384e-10 2.78589e-10 2.77921e-10) (1.15075e-09 7.65987e-10 2.89242e-10) (2.03549e-09 7.89263e-10 -1.39723e-10) (2.57373e-09 5.77447e-11 -6.56129e-10) (2.03861e-09 -7.73636e-10 -6.36294e-10) (8.56599e-10 -6.874e-10 -2.7477e-10) (1.29918e-10 -1.87772e-10 -1.0016e-10) (-3.20203e-11 -2.63363e-11 -8.3143e-11) (-4.1559e-10 9.13835e-11 -2.88299e-10) (-1.23987e-09 3.54353e-10 -3.14109e-10) (-1.08291e-09 4.12986e-10 7.99005e-11) (-2.33086e-10 2.25281e-10 2.11353e-10) (2.21091e-10 3.14867e-10 4.54353e-10) (1.26766e-09 6.80877e-10 9.96449e-10) (1.6824e-09 6.68294e-10 6.57793e-10) (1.02558e-09 2.25356e-10 -2.35268e-11) (5.44486e-10 -1.25796e-10 -3.12548e-10) (4.87605e-10 -5.522e-10 -6.38501e-10) (1.72694e-10 -6.7023e-10 -5.43094e-10) (-6.09858e-10 -5.10686e-10 -1.38519e-10) (-1.11094e-08 -1.47006e-09 1.58556e-09) (-3.0484e-08 -2.00907e-09 4.46543e-09) (-1.1055e-08 -1.95016e-09 1.8753e-09) (-2.08462e-10 -1.77339e-10 1.58786e-10) (4.82273e-10 -3.52327e-11 2.82472e-10) (1.15449e-09 2.53797e-10 4.63677e-10) (7.49968e-10 2.19846e-10 8.08139e-11) (8.12258e-10 2.14453e-10 -3.94744e-10) (1.32794e-09 3.8723e-10 -1.10942e-09) (5.63398e-10 3.29305e-10 -5.91094e-10) (-2.19368e-11 6.99495e-11 -9.78559e-12) (-4.99968e-10 3.21146e-10 5.81618e-10) (2.40363e-10 3.857e-10 4.60393e-10) (1.72653e-10 7.4726e-11 7.52033e-11) (1.22705e-11 -1.67826e-11 -3.08084e-11) (-1.26653e-09 -3.17192e-10 -6.1502e-10) (-5.40722e-09 -5.78401e-10 -1.33951e-09) (-2.36275e-09 -3.38642e-10 -4.17751e-10) (-1.15947e-10 -3.79619e-11 -1.41267e-11) (1.56756e-12 2.34687e-12 2.26279e-12) (1.28649e-10 1.72606e-10 9.25628e-11) (5.90324e-10 5.80488e-10 2.95256e-10) (1.02107e-09 4.52742e-10 2.87977e-10) (1.07766e-09 -1.32313e-10 1.74394e-10) (9.38563e-10 -7.47975e-10 1.42669e-10) (3.18895e-10 -6.58744e-10 3.18489e-12) (-8.69335e-11 -1.95083e-10 -1.15669e-10) (-3.54867e-10 1.45541e-11 -3.39746e-10) (-4.54415e-10 2.96683e-10 -3.44017e-10) (-3.89964e-10 3.06866e-10 -3.19786e-11) (-3.16893e-10 2.58891e-10 2.78765e-10) (-5.86723e-11 2.41535e-10 5.38244e-10) (4.63024e-10 3.79214e-10 8.4295e-10) (1.04245e-09 5.37528e-10 7.59253e-10) (1.17953e-09 4.41788e-10 1.24409e-10) (1.05756e-09 9.1371e-11 -5.07307e-10) (8.60263e-10 -5.21549e-10 -1.02075e-09) (2.30177e-10 -1.00928e-09 -1.02954e-09) (-1.0786e-09 -8.14975e-10 -3.61811e-10) (-1.28419e-08 -1.1792e-09 2.66166e-09) (-3.21286e-08 -8.33932e-10 9.33392e-09) (-1.21727e-08 -2.41568e-09 4.45531e-09) (-4.53944e-10 -6.00873e-10 4.54523e-10) (2.72563e-10 -1.95293e-10 1.5584e-10) (4.60208e-10 2.37323e-11 1.34662e-10) (2.9191e-10 1.06823e-10 2.53468e-11) (2.37959e-10 7.75611e-11 -1.56332e-10) (6.04473e-10 8.22527e-11 -7.67539e-10) (9.27397e-10 1.70259e-10 -9.42684e-10) (7.51038e-10 2.94422e-10 -2.57912e-10) (5.62133e-10 4.63801e-10 2.54425e-10) (3.20256e-10 5.93774e-10 6.02541e-10) (1.30103e-09 7.33867e-10 1.24872e-09) (4.83657e-10 1.87731e-10 2.64545e-10) (2.17051e-12 3.60198e-13 9.65172e-14) (-7.06365e-10 -1.01843e-10 -2.14542e-10) (-2.3587e-09 -4.1298e-10 -7.54073e-10) (-9.05151e-10 -3.1046e-10 -4.35612e-10) (-1.23238e-10 -6.29721e-11 -9.34962e-11) (-2.61597e-11 1.25431e-11 -1.04636e-11) (-3.5632e-11 1.44948e-10 3.91757e-11) (1.54866e-10 3.71616e-10 2.12546e-10) (5.45164e-10 2.573e-10 3.77896e-10) (9.42005e-10 -3.3531e-10 5.15337e-10) (7.80022e-10 -1.05372e-09 4.97596e-10) (-2.46324e-10 -6.8455e-10 3.51412e-11) (-1.83477e-09 -6.12627e-10 -7.36657e-10) (-1.77114e-09 2.95032e-10 -1.00232e-09) (-3.6471e-10 3.531e-10 -1.89746e-10) (-2.56101e-11 2.45971e-10 1.52149e-10) (1.79726e-10 3.63328e-10 7.83445e-10) (3.50406e-10 3.24727e-10 1.11721e-09) (3.30577e-10 2.81375e-10 6.70218e-10) (3.2784e-10 2.13229e-10 1.57787e-10) (8.26176e-10 2.40784e-10 -3.5941e-10) (1.46971e-09 -2.10782e-10 -1.41032e-09) (6.64414e-10 -9.31331e-10 -1.51195e-09) (-9.5427e-10 -8.79376e-10 -7.01987e-10) (-1.06936e-08 -1.27863e-09 1.71704e-09) (-2.73118e-08 -2.41616e-10 9.87889e-09) (-1.3014e-08 -1.99075e-09 6.44386e-09) (-1.07992e-09 -1.03982e-09 9.8124e-10) (1.00701e-10 -3.27223e-10 1.66533e-10) (1.65866e-10 -8.19903e-11 4.1516e-11) (1.82868e-10 2.14825e-11 -1.81846e-11) (2.87494e-10 8.79695e-11 -1.76436e-10) (7.02724e-10 1.62425e-10 -8.72892e-10) (1.2095e-09 2.10904e-10 -1.79567e-09) (1.02605e-09 2.46134e-10 -1.05049e-09) (8.27669e-10 2.86363e-10 -4.05157e-11) (1.54007e-09 7.0136e-10 1.15195e-09) (1.87451e-09 1.08396e-09 2.09571e-09) (2.20174e-09 6.95752e-10 1.77369e-09) (8.8402e-10 2.03883e-10 5.35269e-10) (2.51777e-11 2.549e-12 1.58288e-11) (-1.39692e-10 -4.41257e-11 -5.37865e-11) (-7.64722e-10 -3.10709e-10 -4.89638e-10) (-8.84558e-10 -3.99784e-10 -6.89465e-10) (-7.61982e-10 -1.46411e-10 -4.27485e-10) (-5.01871e-10 1.34041e-10 -1.31127e-10) (-1.44738e-10 1.93483e-10 3.6018e-11) (1.41343e-10 2.51012e-10 1.82505e-10) (1.01347e-09 1.55679e-10 6.91378e-10) (1.63567e-09 -7.9048e-10 1.23196e-09) (8.11612e-11 -7.9008e-10 5.36786e-10) (-2.65465e-09 -1.37078e-09 -2.28492e-10) (-5.55468e-09 -8.05847e-10 -1.9127e-09) (-1.38748e-09 2.6868e-10 -5.98267e-10) (-5.9199e-11 1.51331e-10 2.17247e-11) (3.08824e-10 4.3707e-10 5.19384e-10) (7.19171e-10 5.17652e-10 1.21231e-09) (3.40308e-10 3.03016e-10 8.54938e-10) (6.79853e-11 1.20851e-10 1.7466e-10) (1.57635e-10 1.01452e-10 -6.38451e-11) (1.38189e-09 1.10839e-10 -1.18948e-09) (1.66613e-09 -5.54648e-10 -2.13952e-09) (-1.559e-10 -4.75303e-10 -7.84732e-10) (-5.69278e-09 -1.01289e-09 4.95633e-11) (-2.16935e-08 -4.49843e-10 6.99007e-09) (-1.36387e-08 -1.33249e-09 6.63767e-09) (-1.55329e-09 -1.00253e-09 1.09212e-09) (-3.64624e-11 -3.62127e-10 1.62472e-10) (6.29145e-11 -1.18622e-10 6.27242e-11) (4.88092e-11 -1.91943e-11 8.41266e-12) (1.24829e-10 1.21023e-11 -8.50427e-11) (5.26279e-10 1.14339e-10 -6.52622e-10) (1.36951e-09 2.839e-10 -1.87593e-09) (1.48739e-09 3.52427e-10 -1.91078e-09) (9.2683e-10 2.94837e-10 -6.2931e-10) (9.96602e-10 3.926e-10 2.14794e-10) (2.06775e-09 8.52211e-10 1.67342e-09) (2.71889e-09 1.04889e-09 2.62625e-09) (1.58173e-09 3.18867e-10 9.50354e-10) (6.84856e-10 6.73779e-11 2.89345e-10) (3.56283e-11 -6.26958e-12 3.70994e-12) (-1.11781e-10 -7.98276e-11 -1.18798e-10) (-1.26156e-09 -5.12167e-10 -9.42599e-10) (-2.56791e-09 -5.99714e-10 -1.31805e-09) (-2.06823e-09 -7.77257e-11 -6.51331e-10) (-5.97829e-10 1.67243e-10 -1.10114e-10) (-1.26621e-11 6.75611e-11 1.56974e-11) (6.32564e-10 2.64606e-10 3.59706e-10) (3.19889e-09 -9.25064e-11 1.99769e-09) (1.61936e-09 -8.72185e-10 1.76055e-09) (-6.50485e-10 -5.95156e-10 3.70037e-10) (-6.86776e-09 -1.77492e-09 -1.46732e-09) (-4.37979e-09 -5.82846e-10 -1.29253e-09) (-1.51969e-10 3.16981e-11 -1.06246e-12) (1.01011e-10 1.50588e-10 1.5422e-10) (4.39788e-10 4.26489e-10 5.35021e-10) (2.98987e-10 3.69607e-10 5.85789e-10) (1.88685e-11 1.67594e-10 2.40689e-10) (6.27002e-12 3.84274e-11 5.75519e-12) (4.88441e-10 1.3586e-10 -4.5277e-10) (2.31073e-09 -1.15975e-10 -2.19079e-09) (7.8709e-10 -2.93264e-10 -1.34627e-09) (-8.04078e-10 -1.80299e-10 -3.29464e-10) (-1.15677e-08 -4.71061e-10 2.54907e-09) (-1.37913e-08 -9.68455e-10 5.55292e-09) (-2.20795e-09 -8.59039e-10 1.05422e-09) (-1.30176e-10 -3.03675e-10 4.4915e-11) (-7.74545e-12 -1.22916e-10 3.74557e-11) (1.09411e-11 -3.82144e-11 5.15596e-11) (1.23946e-11 -4.50248e-12 3.95857e-12) (1.41094e-10 6.17463e-13 -1.81463e-10) (8.06426e-10 9.56777e-11 -1.22765e-09) (1.53832e-09 2.94488e-10 -1.89719e-09) (1.24421e-09 3.29835e-10 -9.70101e-10) (8.45899e-10 2.85548e-10 -6.59355e-11) (1.21934e-09 4.6507e-10 6.7317e-10) (1.79766e-09 6.58233e-10 1.4537e-09) (1.94556e-09 5.83044e-10 1.50551e-09) (5.09287e-10 5.63581e-11 1.61248e-10) (2.12114e-10 -1.14198e-11 -1.62819e-11) (5.81225e-12 -2.405e-11 -5.6807e-11) (-6.8704e-10 -2.65517e-10 -6.13072e-10) (-2.71895e-09 -6.26437e-10 -1.36678e-09) (-2.69124e-09 -3.68673e-10 -7.49085e-10) (-9.0837e-10 3.13385e-12 -1.2641e-10) (-6.07929e-11 2.93082e-11 -6.50762e-12) (8.36985e-11 6.20971e-11 3.19611e-11) (1.82067e-09 2.88924e-10 9.52898e-10) (4.3597e-09 -2.88856e-10 3.26522e-09) (3.84897e-10 -3.78337e-10 8.60816e-10) (-2.08434e-09 -7.25162e-10 -1.08195e-11) (-6.84731e-09 -1.26813e-09 -1.8584e-09) (-1.31641e-09 -2.50292e-10 -1.27718e-10) (5.41545e-12 5.72816e-12 7.68282e-11) (3.83668e-10 2.00234e-10 3.93288e-10) (2.88836e-10 2.93172e-10 3.40963e-10) (1.04264e-11 1.98141e-10 1.78263e-10) (-5.18908e-11 1.03051e-10 4.43444e-11) (3.40157e-11 5.59366e-11 -6.63138e-11) (1.24164e-09 8.99437e-11 -1.14508e-09) (1.96619e-09 -1.25408e-10 -1.94653e-09) (1.14156e-10 -2.21758e-11 -3.27529e-10) (-1.20929e-09 8.96707e-12 5.44652e-11) (-6.05426e-09 -2.4203e-10 2.01694e-09) (-2.48782e-09 -6.51508e-10 1.03315e-09) (-2.54141e-10 -2.87718e-10 1.05414e-11) (-1.37065e-10 -1.98629e-10 -6.61915e-11) (-1.03249e-10 -7.55456e-11 5.18082e-11) (-3.43007e-11 -2.3892e-11 9.33734e-11) (3.81609e-12 -1.50472e-12 1.46273e-12) (1.91601e-10 -1.8112e-11 -2.92603e-10) (8.28688e-10 4.64973e-11 -1.22268e-09) (1.24364e-09 2.31018e-10 -1.11302e-09) (1.06887e-09 2.67543e-10 -3.0578e-10) (9.82824e-10 2.95906e-10 2.82567e-10) (9.18759e-10 3.37491e-10 6.85973e-10) (7.50345e-10 2.82914e-10 6.96819e-10) (6.15178e-10 1.60446e-10 4.19646e-10) (8.74682e-11 -3.28538e-12 -3.52245e-11) (5.14595e-11 -2.33869e-11 -1.19217e-10) (-2.20956e-10 -9.51425e-11 -3.72642e-10) (-1.39011e-09 -3.01919e-10 -8.60897e-10) (-1.9634e-09 -3.43149e-10 -5.25747e-10) (-7.36111e-10 -1.00505e-10 -7.63043e-12) (-4.41961e-11 2.71031e-12 7.12501e-12) (9.89363e-12 9.19367e-12 2.75392e-14) (3.65589e-10 1.14222e-10 1.04558e-10) (2.44146e-09 2.15182e-10 1.50874e-09) (2.376e-09 -2.36372e-10 2.3973e-09) (-9.96013e-11 -1.21972e-10 2.1906e-10) (-3.26411e-09 -6.52499e-10 -6.49034e-10) (-3.35161e-09 -5.62854e-10 -8.26824e-10) (-2.32706e-10 -8.27725e-11 7.01065e-11) (6.36545e-11 -1.32861e-11 1.7787e-10) (3.25153e-10 1.2879e-10 4.02075e-10) (2.27143e-10 2.31374e-10 3.0745e-10) (1.49088e-11 1.54463e-10 1.04534e-10) (-5.2027e-12 6.2544e-11 -6.17781e-12) (2.37553e-10 1.03606e-10 -2.62232e-10) (1.54582e-09 2.62796e-11 -1.3669e-09) (9.92305e-10 -1.9636e-11 -1.01249e-09) (1.51937e-11 7.6275e-12 -4.90557e-11) (-3.2329e-10 2.48755e-11 9.35688e-11) (-8.17705e-10 -1.36002e-10 3.58929e-10) (-2.83583e-10 -2.16981e-10 6.89065e-11) (-2.46422e-10 -2.53468e-10 -1.12348e-10) (-5.01336e-10 -2.05162e-10 -1.15977e-10) (-4.7288e-10 -7.77905e-11 1.69877e-10) (-8.01097e-11 -1.34218e-11 1.23085e-10) (5.5887e-12 -1.77709e-12 7.83375e-14) (2.24733e-10 -2.47065e-11 -2.71158e-10) (6.42737e-10 2.65395e-11 -6.54122e-10) (8.4836e-10 1.36079e-10 -4.15028e-10) (8.07228e-10 1.73196e-10 -3.03698e-12) (5.20719e-10 1.53768e-10 2.45677e-10) (2.38286e-10 1.10117e-10 2.41139e-10) (1.01348e-10 5.54358e-11 1.1656e-10) (6.40065e-11 1.45466e-11 2.30114e-11) (1.44525e-11 -1.48163e-11 -1.12525e-10) (-9.71003e-11 -4.30497e-11 -3.31349e-10) (-4.92638e-10 -9.18481e-11 -4.86234e-10) (-8.35926e-10 -1.38084e-10 -2.88712e-10) (-4.0629e-10 -8.21634e-11 3.80613e-11) (-3.2051e-11 -8.57477e-12 2.37842e-11) (3.75865e-12 1.50878e-12 7.29491e-13) (1.02091e-10 3.81957e-11 -1.32234e-11) (6.55158e-10 1.39196e-10 2.23682e-10) (2.17945e-09 1.02147e-10 1.65589e-09) (5.82551e-10 -1.08294e-10 9.09492e-10) (-3.73847e-10 -1.05889e-10 7.77427e-11) (-2.63891e-09 -3.54644e-10 -7.47954e-10) (-9.46444e-10 -1.78684e-10 -2.01138e-10) (-3.62959e-11 -2.54229e-11 2.44693e-11) (2.58132e-11 -1.36308e-11 7.94495e-11) (1.37509e-10 5.72554e-11 2.60022e-10) (2.11211e-10 1.93927e-10 3.52012e-10) (1.25667e-10 1.65958e-10 1.38644e-10) (1.38615e-10 1.09614e-10 -3.2542e-11) (7.5331e-10 1.58622e-10 -5.31854e-10) (1.30319e-09 2.42051e-11 -1.09588e-09) (4.76151e-10 4.21959e-12 -4.454e-10) (1.29937e-11 3.55426e-12 -1.15456e-11) (-1.29035e-11 5.22801e-13 9.79979e-12) (-6.81255e-11 -3.60097e-11 2.50882e-11) (-1.81378e-10 -1.52975e-10 -3.65307e-11) (-5.2727e-10 -2.56971e-10 -1.60271e-10) (-1.00655e-09 -1.5393e-10 -3.77528e-11) (-6.73197e-10 -2.46216e-11 2.61282e-10) (-4.91274e-11 -5.30089e-12 8.09198e-11) (2.24311e-11 -3.49499e-12 1.82162e-13) (2.51141e-10 -1.41792e-11 -1.47801e-10) (4.91911e-10 1.41676e-11 -2.24985e-10) (5.01403e-10 5.94198e-11 -9.42062e-11) (2.74016e-10 5.86246e-11 2.65038e-11) (6.75635e-11 2.91992e-11 3.8175e-11) (7.29835e-12 1.12718e-11 1.78152e-11) (1.14152e-13 1.86405e-12 1.68125e-12) (2.17423e-12 2.53205e-13 -6.63159e-12) (-7.11331e-11 -2.38136e-11 -2.47262e-10) (-1.95709e-10 -3.18182e-11 -3.38417e-10) (-2.37643e-10 -3.0023e-11 -1.54209e-10) (-1.16923e-10 -2.36467e-11 1.31142e-11) (-1.63e-11 -9.91741e-12 3.05061e-11) (8.22196e-12 -8.93521e-13 7.30432e-12) (5.85341e-11 1.34875e-11 -1.52516e-11) (2.45219e-10 6.25381e-11 -1.27427e-11) (1.01235e-09 1.37511e-10 4.67347e-10) (1.35993e-09 1.15775e-11 1.20118e-09) (2.53553e-11 -2.32907e-11 1.47496e-10) (-6.40521e-10 -7.90095e-11 -1.01917e-10) (-1.16382e-09 -1.1283e-10 -4.20866e-10) (-1.49458e-10 -3.64993e-11 -4.94753e-11) (-1.22122e-12 -3.761e-12 4.03743e-13) (7.28152e-12 -4.41996e-12 1.17127e-11) (6.06745e-11 2.29684e-11 1.26646e-10) (2.22489e-10 1.45528e-10 3.22469e-10) (3.54336e-10 2.01492e-10 1.98211e-10) (6.38366e-10 2.17845e-10 -9.66558e-11) (1.17674e-09 1.61013e-10 -6.26763e-10) (9.1331e-10 8.50434e-12 -6.50281e-10) (2.39043e-10 -3.79104e-12 -1.62686e-10) (9.10777e-12 1.05751e-12 -2.8437e-12) (-2.07338e-12 -4.02148e-13 1.23251e-12) (-4.32156e-11 -2.50413e-11 -4.67667e-12) (-1.95082e-10 -1.19185e-10 -6.14044e-11) (-5.48793e-10 -1.63299e-10 -9.24766e-11) (-1.00791e-09 -5.54158e-11 1.03877e-10) (-4.47655e-10 6.5055e-12 2.31649e-10) (-5.91581e-12 -1.11682e-12 4.36361e-11) (9.15132e-11 -3.00063e-12 1.64049e-11) (3.19217e-10 -6.17199e-12 -4.52495e-11) (3.58764e-10 3.36109e-12 -5.17518e-11) (1.85481e-10 1.64509e-11 -2.21163e-11) (3.38258e-11 9.47912e-12 -2.92168e-12) (4.29616e-13 1.18541e-12 2.92145e-13) (-4.63604e-12 2.39112e-12 6.10476e-13) (-8.49223e-12 1.75892e-12 -5.62059e-12) (-2.24632e-11 -4.75873e-12 -5.95875e-11) (2.31024e-12 -1.07859e-11 -1.86457e-10) (-8.99241e-12 -4.46401e-12 -8.59291e-11) (-2.71975e-13 -3.03501e-13 -8.38211e-13) (1.26336e-11 -4.53481e-12 1.85401e-11) (7.98849e-11 -9.71332e-12 4.91269e-11) (1.50035e-10 4.03566e-12 4.09847e-12) (3.31158e-10 4.38847e-11 -5.99133e-11) (8.23736e-10 1.11653e-10 7.47381e-11) (1.84467e-09 1.21992e-10 7.78922e-10) (1.0705e-09 -9.85665e-12 6.9896e-10) (1.17838e-11 -3.3773e-12 1.45942e-11) (-1.41913e-10 -1.17186e-11 -7.80362e-11) (-1.22955e-10 -1.42881e-11 -9.20895e-11) (-5.04901e-13 -3.99772e-12 -9.96991e-12) (2.92816e-11 -1.24e-11 -1.36121e-11) (4.54669e-11 -8.94092e-12 2.78595e-12) (1.27112e-10 1.6011e-11 8.68455e-11) (4.69104e-10 1.33853e-10 3.18176e-10) (1.00107e-09 2.73125e-10 2.92555e-10) (1.62872e-09 2.99074e-10 -1.47197e-10) (1.85077e-09 1.55066e-10 -5.94184e-10) (1.21117e-09 1.51225e-11 -4.47321e-10) (4.5348e-10 1.0204e-13 -1.16657e-10) (1.04624e-10 6.48488e-12 -5.07326e-12) (1.54981e-11 -4.87667e-13 -3.6025e-13) (2.83918e-12 -5.89732e-12 -4.14302e-12) (-1.37776e-11 -2.30828e-11 -1.38256e-11) (-1.05144e-10 -3.42707e-11 -8.20624e-12) (-2.50077e-10 -4.53504e-12 7.67439e-11) (-5.37672e-11 3.63637e-12 7.53907e-11) (6.71623e-11 9.10652e-13 6.9236e-11) (3.59674e-10 3.34192e-12 7.70972e-11) (5.80024e-10 -4.0124e-12 1.04592e-11) (4.68619e-10 -3.75293e-12 -3.31545e-11) (2.31046e-10 9.52464e-12 -3.66696e-11) (6.69133e-11 9.72899e-12 -1.57439e-11) (7.77279e-12 2.59712e-12 -2.20834e-12) (3.74974e-13 3.84225e-13 -5.07904e-13) (4.50545e-13 5.58436e-13 -8.32636e-12) (4.39074e-12 -5.13265e-12 -8.06601e-11) (9.08477e-11 -5.3768e-12 -1.48054e-10) (9.36048e-11 -1.21702e-12 -5.42971e-11) (2.01154e-10 -4.86738e-12 3.15426e-11) (5.38981e-10 -2.03721e-11 1.72938e-10) (8.99186e-10 -1.76203e-11 1.36248e-10) (1.38138e-09 3.46038e-11 -5.25509e-11) (2.39291e-09 1.37694e-10 -1.14323e-10) (4.58358e-09 2.49486e-10 5.13651e-10) (6.30178e-09 1.70138e-10 1.57164e-09) (3.18605e-09 4.26991e-12 8.32487e-10) (4.05707e-10 -2.45307e-12 -1.13925e-11) (4.25301e-11 1.27545e-12 -5.97865e-11) (6.50052e-11 -4.33948e-12 -7.4762e-11) (2.90467e-10 -2.65737e-11 -1.49733e-10) (5.68976e-10 -6.67819e-11 -2.24893e-10) (6.50434e-10 -4.60578e-11 -1.46864e-10) (9.58409e-10 3.24861e-11 4.42722e-11) (2.11728e-09 2.1994e-10 3.21152e-10) (4.16743e-09 4.81382e-10 2.32445e-10) (6.34136e-09 5.33173e-10 -5.18172e-10) (7.0629e-09 3.05611e-10 -1.08401e-09) (5.70421e-09 9.24543e-11 -8.00511e-10) (3.62622e-09 5.16382e-11 -3.07522e-10) (2.1407e-09 6.81486e-11 -1.05654e-10) (1.30886e-09 -3.46813e-13 -1.2932e-10) (7.16974e-10 -8.70067e-11 -1.48839e-10) (1.75711e-10 -5.18228e-11 -5.28366e-11) (3.54553e-12 -1.8956e-12 -3.42424e-13) (-3.5e-12 4.2762e-13 1.22753e-11) (8.38666e-11 4.75675e-12 9.28574e-11) (6.87114e-10 1.59678e-11 2.97857e-10) (1.63885e-09 3.18521e-11 3.47663e-10) (2.13084e-09 1.04177e-11 2.15362e-10) (1.88064e-09 -1.92491e-12 6.17535e-11) (1.28536e-09 2.38395e-11 -2.74735e-11) (6.8258e-10 3.34726e-11 -2.69539e-11) (2.65987e-10 1.8114e-11 -6.45555e-12) (7.82764e-11 4.96121e-12 -1.04872e-11) (3.69305e-11 4.61778e-13 -3.00451e-11) (5.92065e-11 -4.77854e-12 -1.11672e-10) (3.67523e-11 -8.01047e-13 -3.52347e-11) (1.46757e-10 6.06767e-13 -4.85089e-12) (5.41704e-10 2.33754e-12 1.22149e-10) (1.18884e-09 -1.47663e-12 2.07597e-10) (2.10677e-09 1.43542e-11 6.23587e-11) (3.6803e-09 7.68507e-11 -1.57334e-10) (6.74058e-09 1.73524e-10 2.97412e-11) (1.10393e-08 1.98564e-10 1.18817e-09) (1.03127e-08 4.73443e-11 1.68028e-09) (3.79133e-09 -2.35645e-12 3.40188e-10) (6.45818e-10 2.05088e-11 -1.74342e-10) (2.96219e-10 2.12974e-11 -2.0895e-10) (6.65246e-10 9.36525e-12 -3.47958e-10) (1.4014e-09 -3.87953e-11 -6.23958e-10) (1.63657e-09 -7.96924e-11 -7.4151e-10) (1.46662e-09 -4.81852e-11 -5.32795e-10) (1.83763e-09 2.42487e-11 -2.58914e-10) (3.82729e-09 1.69814e-10 -6.68493e-11) (7.8131e-09 3.79262e-10 -2.79959e-10) (1.21276e-08 4.0441e-10 -1.00301e-09) (1.33223e-08 1.9123e-10 -1.2832e-09) (1.04834e-08 3.08459e-11 -8.49023e-10) (6.73905e-09 2.96031e-11 -5.08398e-10) (4.45149e-09 5.46481e-11 -4.71995e-10) (3.07033e-09 -1.70669e-11 -5.35891e-10) (1.49299e-09 -8.21789e-11 -3.80733e-10) (2.29185e-10 -2.667e-11 -7.29692e-11) (5.10325e-12 -6.82107e-13 4.97954e-13) (1.94244e-11 2.15471e-12 2.86684e-11) (3.76958e-10 1.35164e-11 2.43557e-10) (1.55927e-09 4.3906e-11 6.38441e-10) (3.03099e-09 6.66518e-11 8.40282e-10) (3.58802e-09 2.90544e-11 6.98067e-10) (2.90293e-09 1.3812e-12 3.94961e-10) (1.7255e-09 1.36772e-11 1.63272e-10) (6.98958e-10 1.48706e-11 7.02478e-11) (1.52555e-10 4.41728e-12 2.15729e-11) (1.41095e-11 3.54571e-13 -6.25727e-13) (-6.48834e-12 -4.90594e-13 -1.84844e-11) (1.57004e-12 -1.56353e-12 -4.88106e-11) (4.05079e-13 2.64786e-14 -2.28247e-13) (1.21031e-11 3.60873e-13 1.04796e-12) (6.51958e-11 1.37955e-12 9.0321e-12) (1.8001e-10 2.87141e-12 7.88446e-12) (3.77226e-10 4.09239e-12 -1.99649e-11) (6.68326e-10 6.02958e-12 -4.49112e-11) (1.06482e-09 5.62656e-12 -1.01162e-11) (1.23317e-09 -2.83403e-12 1.03486e-10) (6.67262e-10 -6.07992e-12 8.3896e-11) (1.20846e-10 -1.01375e-13 -6.38672e-13) (2.10954e-11 1.07519e-12 -1.05276e-11) (4.92492e-11 2.5146e-12 -2.60898e-11) (1.91362e-10 3.84557e-12 -7.84227e-11) (3.01168e-10 -2.02972e-12 -1.53302e-10) (2.51708e-10 -5.97656e-12 -1.5819e-10) (1.76457e-10 -4.62216e-12 -1.00393e-10) (1.72924e-10 -2.16868e-12 -4.65505e-11) (3.1456e-10 1.31785e-12 -1.65653e-11) (6.44638e-10 7.14749e-12 -9.37626e-12) (1.0041e-09 5.3099e-12 -3.70997e-11) (1.03724e-09 -1.50507e-12 -5.4503e-11) (7.03953e-10 -3.47408e-12 -5.11173e-11) (3.84145e-10 -1.5705e-12 -5.62481e-11) (2.40844e-10 1.15306e-13 -6.35914e-11) (1.68498e-10 -9.20941e-13 -6.78408e-11) (7.02203e-11 -1.48831e-12 -4.2284e-11) (6.33397e-12 -4.72114e-13 -7.87913e-12) (-1.8262e-13 -1.81653e-14 -3.23327e-13) (2.41517e-12 2.45642e-14 1.67301e-12) (3.98939e-11 7.58189e-13 2.72564e-11) (1.51709e-10 3.57359e-12 9.11505e-11) (2.98785e-10 4.9575e-12 1.48242e-10) (3.42326e-10 1.22109e-12 1.44264e-10) (2.43157e-10 -1.47917e-12 9.47739e-11) (1.10973e-10 -8.66018e-13 4.61902e-11) (2.85587e-11 -1.97109e-13 1.76635e-11) (2.18182e-12 -5.89065e-14 4.82958e-12) (-3.23451e-12 -2.32628e-14 1.95145e-12) (-3.89907e-12 1.00258e-14 -9.86178e-14) (-8.97106e-13 1.41143e-14 -5.71987e-13) (-5.43625e-12 -3.27253e-10 3.45348e-11) (-1.37399e-10 -3.16176e-10 3.87899e-11) (-1.00997e-10 -9.46435e-11 6.36064e-12) (-3.0311e-11 5.01625e-12 -4.97513e-12) (-3.21404e-11 6.71735e-11 -1.13464e-11) (-2.73361e-11 9.84608e-11 2.94992e-12) (-1.50557e-11 2.31827e-11 1.01325e-11) (-2.16977e-11 -1.09597e-11 8.85056e-12) (-9.66873e-11 -1.10627e-10 -9.36621e-12) (-1.82715e-10 -1.78276e-10 -9.55672e-11) (-1.80212e-10 -6.44801e-11 -1.4411e-10) (-1.40331e-10 1.22222e-10 -1.54467e-10) (-9.03675e-11 6.9458e-10 -2.29928e-10) (2.11817e-10 1.70364e-09 -7.93108e-11) (3.71999e-10 1.61279e-09 2.87278e-10) (1.90428e-10 6.08752e-10 3.43991e-10) (6.02199e-11 7.9044e-11 2.29299e-10) (2.754e-11 -1.3864e-10 2.89346e-10) (-4.38038e-11 -3.46039e-10 3.1371e-10) (-1.5814e-10 -3.81902e-10 1.63169e-10) (-2.95036e-10 -3.86682e-10 -4.06044e-11) (-4.21215e-10 -4.10858e-10 -3.14863e-10) (-3.20229e-10 -3.13344e-10 -4.67545e-10) (-9.41073e-11 -1.25129e-10 -2.71404e-10) (-4.33801e-12 -1.15298e-11 -3.77573e-11) (3.98772e-13 1.08004e-12 6.18176e-13) (7.58048e-12 3.52698e-11 4.87127e-11) (1.75808e-11 7.43677e-11 1.24057e-10) (2.22365e-11 4.32062e-11 1.11982e-10) (1.76272e-11 -4.24352e-13 5.17308e-11) (1.07216e-11 -1.16525e-11 1.28658e-11) (9.28069e-12 -1.25801e-11 -3.51938e-12) (1.31722e-11 -1.02072e-11 -2.0187e-11) (2.20723e-11 6.69107e-12 -3.42701e-11) (5.12188e-11 5.10725e-11 -4.93097e-11) (1.23466e-10 1.4372e-10 -7.04596e-11) (1.88053e-10 1.87632e-10 -8.62093e-11) (1.65279e-10 8.91104e-11 -6.70585e-11) (1.03207e-10 -2.049e-11 -2.81597e-11) (8.28901e-11 -1.39866e-10 -1.49313e-12) (-2.66482e-10 -2.97692e-10 1.1263e-10) (-6.26403e-10 -5.89575e-10 3.29218e-10) (-4.1728e-10 -3.76382e-10 2.88718e-10) (-8.15068e-11 -6.17141e-11 8.12216e-11) (-2.52236e-12 2.13143e-12 4.83695e-12) (9.24964e-12 2.01373e-11 -3.77352e-12) (4.78757e-11 4.47565e-11 -3.06801e-11) (7.3533e-11 2.97608e-11 -4.88539e-11) (2.06374e-11 1.98618e-13 -2.91048e-11) (-9.63258e-11 -3.05988e-11 -7.76215e-11) (-1.53728e-09 -2.55162e-10 -4.92197e-10) (-3.56628e-09 -3.84657e-10 -9.00219e-10) (-1.64487e-09 -2.66078e-11 -4.85302e-10) (-5.2214e-11 5.28227e-11 -4.39869e-11) (6.28721e-10 5.83856e-10 -1.38658e-11) (2.94194e-09 2.16588e-09 5.16129e-10) (3.3407e-09 2.31083e-09 1.15674e-09) (1.60094e-09 9.54949e-10 1.04439e-09) (3.37873e-10 9.17622e-11 4.96277e-10) (-2.38797e-11 -1.05163e-10 1.84957e-10) (-2.95058e-10 -3.40319e-10 3.76988e-11) (-8.65813e-10 -8.55423e-10 -5.74373e-10) (-1.11075e-09 -1.07017e-09 -1.23308e-09) (-6.48143e-10 -5.6732e-10 -6.9661e-10) (-1.98128e-10 -1.18711e-10 -6.32977e-11) (-1.43945e-10 -2.81364e-11 1.33684e-10) (-1.79549e-10 6.59857e-11 4.53751e-10) (-8.6123e-11 1.70435e-10 5.42102e-10) (6.92241e-12 1.36335e-10 3.00627e-10) (2.02415e-11 3.63621e-11 6.10344e-11) (8.4352e-12 2.98732e-12 -9.51505e-14) (4.12969e-11 -6.03672e-12 -5.11682e-11) (1.08322e-10 -1.83128e-11 -1.74633e-10) (1.69514e-10 1.04655e-11 -2.37335e-10) (2.31878e-10 7.4273e-11 -2.26233e-10) (3.146e-10 1.57812e-10 -2.01797e-10) (3.46869e-10 1.92042e-10 -1.57512e-10) (2.12078e-10 9.63682e-11 -8.02038e-11) (3.29828e-11 1.52233e-12 -1.23278e-11) (-9.50741e-12 -2.87394e-11 2.91423e-12) (-3.29625e-11 -3.25989e-11 2.33701e-11) (-7.56305e-11 -1.39635e-10 8.18556e-11) (-3.01618e-11 -1.47165e-10 1.09758e-10) (5.64798e-12 -5.6081e-11 7.81165e-11) (1.11648e-13 -3.71308e-12 3.1399e-11) (-3.3462e-12 2.89357e-12 6.64098e-12) (-4.29411e-13 3.47893e-13 -2.67986e-13) (7.30823e-12 2.45233e-12 -1.86409e-11) (2.96394e-11 3.32434e-11 -8.98496e-11) (-8.38115e-11 1.21126e-10 -1.81887e-10) (-1.00256e-09 2.88935e-10 -4.87703e-10) (-3.24522e-09 -1.47614e-10 -8.40327e-10) (-3.31784e-09 -9.03771e-10 -7.15609e-10) (-1.02084e-09 -4.59438e-10 -2.62079e-10) (-1.4845e-11 -1.13917e-11 -8.39881e-12) (3.38896e-10 1.25622e-10 6.29291e-11) (2.80138e-09 1.22855e-09 8.81817e-10) (4.90134e-09 2.37996e-09 2.08717e-09) (3.1676e-09 1.75682e-09 1.81514e-09) (5.78772e-10 3.94077e-10 4.83868e-10) (-1.82896e-12 1.43564e-12 4.24498e-12) (-3.61518e-10 -2.13884e-10 -2.1992e-10) (-1.22858e-09 -8.53415e-10 -9.55251e-10) (-1.27287e-09 -8.36193e-10 -8.08105e-10) (-8.14996e-10 -4.10058e-10 -1.18795e-10) (-7.21721e-10 -2.52284e-10 3.67382e-10) (-6.91958e-10 -1.50633e-10 8.15883e-10) (-3.53616e-10 5.69309e-11 7.66492e-10) (-5.88454e-11 1.71413e-10 3.8476e-10) (3.39157e-11 1.25806e-10 9.96437e-11) (3.60508e-11 5.09438e-11 -1.44857e-11) (7.14403e-11 1.35199e-11 -1.22965e-10) (1.41528e-10 -1.16287e-10 -3.23119e-10) (1.77559e-10 -2.24141e-10 -3.62931e-10) (1.57444e-10 -1.33592e-10 -2.02236e-10) (1.28346e-10 -2.31706e-11 -8.56979e-11) (1.48359e-10 5.30562e-11 -5.59593e-11) (1.31066e-10 9.724e-11 -3.70692e-11) (3.09253e-11 3.63887e-11 -6.34884e-12) (-5.00364e-13 5.57361e-13 6.65748e-13) (2.79147e-11 -1.21809e-11 -4.30727e-12) (6.65439e-11 -5.8837e-11 2.3596e-11) (1.24009e-10 -1.00334e-10 1.09011e-10) (8.65524e-11 -5.55878e-11 1.24956e-10) (2.60867e-13 -1.01704e-11 4.37099e-11) (-5.92586e-11 -1.55557e-11 2.05455e-11) (-2.02711e-10 -7.41663e-11 -6.8696e-11) (-1.78251e-10 -1.02357e-10 -2.19031e-10) (-1.96086e-13 -5.74478e-12 -1.99834e-10) (1.39878e-10 1.43341e-10 -1.52608e-10) (1.53202e-10 2.25691e-10 -1.64066e-11) (7.16024e-12 4.47245e-11 3.39612e-11) (-7.49964e-11 -2.91218e-11 5.90758e-11) (-2.2737e-10 -1.3872e-10 4.44578e-11) (-1.70357e-10 -7.82258e-11 -3.92043e-11) (-2.91951e-11 -5.96712e-13 -1.89067e-11) (1.39816e-11 2.03794e-11 4.45913e-12) (4.00034e-10 2.97118e-10 2.56385e-10) (1.05454e-09 7.67983e-10 7.61416e-10) (6.52176e-10 5.96094e-10 4.87381e-10) (5.65495e-11 8.08799e-11 2.47935e-11) (-3.06281e-11 -1.06739e-11 -7.94147e-11) (-4.11989e-10 -4.06069e-10 -6.7508e-10) (-7.72547e-10 -7.3442e-10 -7.4648e-10) (-6.31067e-10 -4.53509e-10 -9.22954e-11) (-6.33728e-10 -2.77242e-10 4.72649e-10) (-8.31926e-10 -9.09342e-11 1.29634e-09) (-6.41983e-10 2.79687e-10 1.43286e-09) (-2.1292e-10 3.69874e-10 6.06705e-10) (-1.47338e-11 1.40879e-10 5.19783e-11) (2.64274e-11 5.419e-11 -8.63001e-11) (1.41087e-10 -1.06884e-10 -4.73168e-10) (2.6363e-10 -5.30483e-10 -9.07791e-10) (1.79556e-10 -5.19419e-10 -6.77309e-10) (3.17586e-11 -1.28975e-10 -1.53453e-10) (2.85542e-13 -1.16643e-12 -2.12406e-12) (2.40796e-12 1.80645e-11 8.41846e-12) (2.11267e-11 7.07073e-11 2.94768e-11) (3.20275e-11 5.15803e-11 1.12042e-11) (2.20973e-11 1.07541e-11 -3.64142e-12) (5.62023e-11 1.03398e-12 1.33702e-11) (1.56345e-10 -2.9516e-11 1.31368e-10) (2.86111e-10 -5.98509e-11 3.07675e-10) (1.23402e-10 -3.39301e-11 1.46256e-10) (-3.53061e-12 -5.33741e-12 7.35484e-12) (-3.11501e-10 -8.45746e-11 -7.60334e-11) (-1.46973e-09 -4.80347e-10 -6.64417e-10) (-1.8555e-09 -1.01548e-09 -1.21883e-09) (-6.28243e-10 -5.30758e-10 -5.37548e-10) (-3.06108e-12 -5.03981e-12 -4.46208e-12) (3.29722e-10 2.27796e-10 2.55203e-10) (1.3767e-09 7.84195e-10 1.1246e-09) (1.35039e-09 4.7998e-10 9.93408e-10) (5.28015e-10 1.1198e-10 2.34436e-10) (1.05061e-10 3.02441e-11 -3.96962e-11) (3.57628e-11 5.08113e-11 -1.79208e-10) (-4.65291e-11 6.40984e-11 -1.91973e-10) (-3.51874e-11 3.87063e-11 -2.94401e-11) (-3.90926e-11 8.65337e-11 5.66462e-11) (-2.68101e-11 1.6639e-10 1.37782e-10) (-8.36598e-12 5.45635e-11 1.39842e-11) (-5.03169e-11 1.26707e-11 -9.90002e-11) (-4.60674e-10 -2.72273e-10 -6.01542e-10) (-8.26291e-10 -6.13053e-10 -5.17498e-10) (-4.22647e-10 -3.7445e-10 7.02344e-11) (-1.46931e-10 -1.73029e-10 3.86875e-10) (-1.0139e-11 3.35947e-11 8.06322e-10) (1.98983e-11 2.74835e-10 7.07468e-10) (-3.30378e-12 2.19456e-10 2.3162e-10) (1.62773e-12 4.55544e-11 2.7257e-12) (2.18501e-11 -1.87228e-12 -8.65412e-11) (1.28289e-10 -2.70896e-10 -5.08057e-10) (1.29348e-10 -5.30279e-10 -7.60386e-10) (-2.16936e-11 -2.65175e-10 -3.76949e-10) (-3.41452e-11 -3.853e-11 -6.26981e-11) (-6.33407e-12 1.44806e-12 -2.24288e-12) (-1.57112e-12 1.20101e-11 4.78228e-12) (1.54298e-11 3.17834e-11 8.06801e-12) (3.75027e-11 3.67353e-11 -3.87823e-12) (4.54994e-11 1.95581e-11 -9.12018e-12) (9.24354e-11 1.91223e-11 5.86163e-11) (4.03788e-10 5.28974e-11 5.00066e-10) (6.30854e-10 1.20838e-11 7.40041e-10) (2.02633e-10 -3.14624e-11 1.86135e-10) (-1.21422e-12 -1.65089e-12 -7.56669e-13) (-4.38046e-10 -8.01813e-11 -2.55406e-10) (-2.06776e-09 -7.19923e-10 -1.20756e-09) (-3.50045e-09 -2.21109e-09 -1.88112e-09) (-3.05896e-09 -2.19518e-09 -8.23231e-10) (-9.5372e-10 -4.93455e-10 4.20871e-10) (-4.34051e-11 1.57861e-10 1.36963e-09) (1.68632e-09 8.58345e-10 2.96128e-09) (2.05221e-09 6.90592e-10 1.7196e-09) (1.05689e-09 3.41031e-10 2.02904e-10) (7.30774e-10 3.14755e-10 -4.48946e-10) (7.02632e-10 4.28349e-10 -1.12412e-09) (3.61733e-10 3.75055e-10 -1.20056e-09) (-9.10301e-12 2.00839e-10 -5.00166e-10) (-8.77381e-11 1.07017e-10 -8.59447e-11) (-1.65726e-10 1.61508e-10 2.40214e-11) (-2.17259e-10 1.73426e-10 1.17903e-11) (-3.7505e-10 1.12441e-10 -1.5694e-10) (-8.92971e-10 -1.72408e-10 -4.56608e-10) (-9.33296e-10 -5.77683e-10 -2.95055e-10) (-2.55015e-10 -4.00469e-10 8.26868e-11) (1.1581e-10 -2.20174e-10 2.68428e-10) (5.98015e-10 -1.25888e-11 6.47213e-10) (6.62413e-10 3.19843e-10 5.99064e-10) (2.49314e-10 2.20323e-10 1.76762e-10) (3.44866e-11 2.96613e-11 -1.60293e-12) (2.00184e-11 -1.77206e-11 -4.80505e-11) (-1.07126e-11 -1.64201e-10 -2.14685e-10) (-1.58623e-10 -2.4756e-10 -2.76034e-10) (-2.62939e-10 -1.67031e-10 -1.66855e-10) (-1.896e-10 -4.52835e-11 -3.84894e-11) (-3.98434e-11 6.69211e-12 1.47395e-12) (4.93166e-13 6.47725e-12 -1.22056e-12) (4.73929e-11 3.49395e-11 -3.30786e-11) (1.04964e-10 4.44801e-11 -8.17208e-11) (6.77141e-11 1.88892e-11 -2.9148e-11) (2.57057e-10 1.08939e-10 1.9208e-10) (9.10505e-10 1.95169e-10 1.10004e-09) (1.06417e-09 -7.60593e-12 1.22104e-09) (2.25489e-10 -5.7488e-11 2.14727e-10) (-6.71004e-12 -3.01865e-12 -5.75878e-12) (-4.98722e-10 -6.26881e-11 -4.10164e-10) (-1.50944e-09 -6.42819e-10 -1.28475e-09) (-3.08351e-09 -2.13402e-09 -1.83711e-09) (-5.28819e-09 -3.0419e-09 -4.55907e-10) (-4.37035e-09 -1.65321e-09 2.62727e-09) (-1.40347e-09 -3.54828e-11 4.88324e-09) (9.15561e-10 7.75054e-10 4.15143e-09) (6.45095e-10 3.87779e-10 8.17461e-10) (3.07275e-10 1.55584e-10 -6.92939e-11) (5.56546e-10 2.27806e-10 -5.76436e-10) (7.39118e-10 3.13572e-10 -9.13336e-10) (7.2422e-10 3.93087e-10 -9.17621e-10) (4.71939e-10 3.84121e-10 -6.99896e-10) (1.27348e-10 2.64966e-10 -3.39739e-10) (-5.36944e-11 1.8387e-10 -1.32135e-10) (-2.37783e-10 2.22482e-10 -9.53865e-11) (-5.39817e-10 1.82594e-10 -1.15306e-10) (-7.75417e-10 -1.10364e-10 -1.12953e-10) (-6.33614e-10 -4.52367e-10 -8.31684e-12) (-1.68737e-10 -3.95141e-10 8.76887e-11) (1.2491e-10 -2.05328e-10 1.16516e-10) (5.92559e-10 -8.95535e-11 2.53269e-10) (1.09659e-09 2.15519e-10 3.51236e-10) (7.21936e-10 2.4406e-10 1.89719e-10) (1.25973e-10 3.54922e-11 1.83644e-11) (1.71907e-12 -5.12641e-12 -5.38804e-12) (-1.06455e-10 -1.00709e-10 -1.06169e-10) (-3.76745e-10 -2.36818e-10 -2.70071e-10) (-4.16589e-10 -2.04926e-10 -2.12235e-10) (-1.9202e-10 -7.05135e-11 -4.83708e-11) (-2.47877e-11 -3.46876e-12 2.12576e-13) (8.88958e-13 2.09468e-12 -8.44455e-13) (5.80965e-11 4.11421e-11 -4.48169e-11) (1.49027e-10 8.82596e-11 -1.21653e-10) (1.22554e-10 6.69177e-11 -3.65766e-11) (7.2879e-10 2.75369e-10 7.30424e-10) (1.71871e-09 2.12681e-10 2.14339e-09) (1.1937e-09 -1.28657e-10 1.54957e-09) (9.65727e-11 -4.68276e-11 1.32913e-10) (-4.44574e-11 -1.60074e-11 -5.12513e-11) (-5.29287e-10 -1.97739e-10 -7.74877e-10) (-1.1666e-09 -9.15287e-10 -1.57389e-09) (-2.95657e-09 -1.95367e-09 -1.51859e-09) (-6.62469e-09 -2.64235e-09 9.15871e-10) (-6.45942e-09 -1.34787e-09 5.59658e-09) (-2.2947e-09 4.7568e-10 6.23587e-09) (6.12911e-11 4.62222e-10 1.6485e-09) (1.37155e-10 5.3986e-11 2.29258e-11) (6.41732e-10 -3.73664e-11 -5.19278e-10) (6.79506e-10 -9.15094e-11 -6.05597e-10) (2.43086e-10 3.82931e-11 -1.76709e-10) (1.46592e-10 1.37389e-10 -7.99199e-11) (2.73025e-10 4.00992e-10 -1.8958e-10) (3.72851e-10 6.67509e-10 -4.30855e-10) (1.65119e-10 5.79828e-10 -4.3881e-10) (-8.09778e-11 2.80642e-10 -2.01806e-10) (-1.73691e-10 9.43768e-11 -5.69365e-11) (-2.65866e-10 -5.73254e-11 2.25817e-11) (-2.75561e-10 -2.57033e-10 8.75118e-11) (-9.11084e-11 -2.45001e-10 6.66852e-11) (3.94968e-11 -1.02037e-10 1.89561e-11) (1.58542e-10 -5.87541e-11 3.24324e-12) (3.41941e-10 2.941e-12 1.0114e-11) (2.8288e-10 3.67156e-11 4.46046e-11) (6.01748e-11 4.43014e-12 2.3726e-11) (-8.95116e-13 -2.36737e-12 7.3698e-13) (-9.39966e-11 -6.75094e-11 -4.71032e-11) (-2.73081e-10 -1.91241e-10 -1.9234e-10) (-2.0469e-10 -1.53893e-10 -1.56399e-10) (-4.96725e-11 -3.33731e-11 -3.4307e-11) (-2.089e-12 4.22026e-14 -2.44461e-12) (1.01292e-11 1.68024e-11 -1.48878e-11) (7.23449e-11 9.10666e-11 -7.81298e-11) (1.17918e-10 1.29425e-10 -7.6195e-11) (1.82305e-10 1.3519e-10 5.32148e-11) (1.56323e-09 1.41675e-10 1.75694e-09) (1.63314e-09 1.58118e-10 2.73125e-09) (4.10957e-10 5.82529e-11 1.06878e-09) (-3.22321e-12 2.00542e-13 1.23877e-11) (-1.66767e-10 -6.75179e-11 -3.34997e-10) (-6.18896e-10 -6.46182e-10 -1.60424e-09) (-1.79396e-09 -1.51252e-09 -2.08386e-09) (-4.95193e-09 -2.13151e-09 -9.19853e-10) (-7.20743e-09 -1.60184e-09 3.13821e-09) (-4.18634e-09 8.94978e-11 5.98199e-09) (-6.12243e-10 7.04007e-10 2.73104e-09) (9.90185e-11 8.81742e-11 7.05479e-11) (1.22761e-09 -5.33624e-11 -1.14585e-09) (2.58186e-09 -7.17869e-10 -2.67767e-09) (1.11691e-09 -3.43055e-10 -8.82925e-10) (1.17716e-10 -3.62853e-12 -9.23808e-12) (4.03142e-11 7.36917e-11 8.57868e-11) (2.99166e-11 2.66737e-10 1.20445e-10) (1.0751e-10 5.6563e-10 -6.91864e-11) (1.8191e-10 7.57821e-10 -3.72655e-10) (3.97255e-11 3.87672e-10 -2.56871e-10) (-2.46476e-11 4.57413e-11 -2.87588e-11) (-4.368e-11 -1.24188e-11 1.10567e-11) (-1.15465e-10 -1.14156e-10 5.91299e-11) (-7.77659e-11 -1.30595e-10 3.30538e-11) (-1.05848e-11 -6.0261e-11 -9.58757e-12) (1.65693e-11 -3.15726e-11 -2.43776e-11) (2.53899e-11 -1.30003e-11 -1.67633e-11) (1.39533e-11 -1.5348e-12 2.9653e-12) (6.72769e-12 -8.35932e-14 1.8189e-11) (-8.8413e-12 -5.79056e-12 1.3454e-11) (-5.64334e-11 -4.9505e-11 -1.87998e-11) (-1.57804e-10 -1.99597e-10 -1.7212e-10) (-1.11996e-10 -1.57696e-10 -1.57176e-10) (-2.13488e-11 -1.84168e-11 -2.78934e-11) (-1.84472e-12 4.74274e-12 -6.46502e-12) (2.00706e-11 4.67119e-11 -3.59906e-11) (9.18028e-11 1.03475e-10 -7.0037e-11) (1.96758e-10 1.10796e-10 -9.48834e-13) (6.1983e-10 1.33116e-10 3.83538e-10) (2.81909e-10 1.0077e-10 1.08984e-09) (-2.26292e-12 3.3203e-10 1.2901e-09) (-4.44959e-11 1.04758e-10 2.43389e-10) (-7.12677e-12 -2.87745e-12 -3.66653e-11) (-3.69492e-11 -4.04169e-10 -1.16197e-09) (-8.44302e-10 -1.13119e-09 -2.24245e-09) (-4.24028e-09 -1.74792e-09 -1.99872e-09) (-9.60753e-09 -2.03201e-09 1.30145e-09) (-5.93094e-09 -7.11618e-10 4.63475e-09) (-8.63181e-10 3.51406e-10 2.57485e-09) (2.95681e-10 2.63715e-10 3.23472e-10) (1.69347e-09 3.83152e-10 -1.00728e-09) (4.49513e-09 -4.32087e-10 -4.70659e-09) (3.08966e-09 -9.56051e-10 -4.08453e-09) (5.42385e-10 -1.96031e-10 -7.4405e-10) (2.10838e-11 2.28839e-13 -1.3197e-12) (5.91017e-11 6.93502e-11 1.84636e-10) (6.71416e-11 2.46704e-10 3.80493e-10) (3.08352e-11 3.59046e-10 1.95932e-10) (2.56567e-11 4.50155e-10 -2.81451e-11) (1.33001e-11 3.05279e-10 -1.09011e-10) (-6.4803e-12 5.0447e-11 -1.81256e-11) (-5.92172e-12 1.0057e-12 2.8707e-12) (-3.2585e-11 -2.37737e-11 2.14889e-11) (-4.09416e-11 -4.52491e-11 1.34337e-11) (-3.04527e-11 -4.70673e-11 -1.59393e-11) (-2.50123e-11 -4.90868e-11 -4.28791e-11) (-1.01064e-11 -2.11339e-11 -1.9073e-11) (-1.7052e-12 -3.06946e-12 1.72268e-12) (-8.29542e-12 -9.08038e-12 2.62595e-11) (-1.97593e-11 -2.41375e-11 1.71706e-11) (-8.99381e-11 -1.44643e-10 -7.6738e-11) (-2.19439e-10 -3.37059e-10 -3.19003e-10) (-1.09615e-10 -1.08701e-10 -1.28823e-10) (-2.60686e-12 2.58756e-13 -1.29102e-12) (2.14522e-11 2.62453e-11 1.02406e-11) (1.79429e-10 1.07835e-10 1.22379e-11) (4.78902e-10 1.60062e-10 1.9158e-11) (6.39582e-10 8.91486e-11 1.91716e-10) (4.94045e-10 4.37531e-12 5.05151e-10) (-5.08413e-10 1.17129e-10 8.94089e-10) (-1.39108e-10 2.59439e-10 5.19975e-10) (3.70031e-11 4.14766e-11 1.06062e-11) (3.95375e-10 -6.21659e-11 -5.51341e-10) (3.50451e-10 -4.69948e-10 -1.48633e-09) (-1.49351e-09 -6.11815e-10 -1.50136e-09) (-9.86144e-09 -1.37325e-09 -8.85018e-10) (-1.01286e-08 -1.48793e-09 2.98681e-09) (-1.40696e-09 -4.12235e-10 1.5323e-09) (2.06017e-10 2.85623e-11 2.73293e-10) (1.79334e-09 4.20043e-10 -2.20865e-10) (4.53424e-09 4.62099e-10 -2.35158e-09) (4.2026e-09 -4.07322e-10 -3.37086e-09) (1.27476e-09 -4.57917e-10 -1.57576e-09) (7.01184e-11 -7.44471e-11 -2.11275e-10) (-3.86885e-12 -1.1583e-12 -2.85369e-12) (-1.68176e-11 1.46887e-11 2.1499e-11) (-2.46988e-11 9.97499e-11 8.21439e-11) (-1.60182e-11 2.8108e-10 1.16484e-10) (-3.61515e-12 3.89272e-10 6.06809e-11) (1.20199e-11 2.47794e-10 1.01567e-11) (1.09294e-11 6.87016e-11 1.21116e-11) (2.79288e-12 1.04035e-11 9.96111e-12) (-7.1768e-13 -2.97763e-13 6.46161e-12) (-3.38153e-12 -6.1982e-12 3.7072e-12) (-1.34985e-11 -2.86371e-11 -6.82874e-12) (-2.72929e-11 -6.6336e-11 -3.3413e-11) (-1.30456e-11 -5.05221e-11 -1.8439e-11) (1.46834e-13 -2.15026e-11 7.0651e-12) (-3.76468e-13 -2.85941e-11 2.7036e-11) (-3.32337e-11 -5.45088e-11 1.07224e-11) (-3.51359e-10 -2.85398e-10 -2.04074e-10) (-7.30767e-10 -3.83814e-10 -4.78991e-10) (-1.32517e-10 -3.40958e-11 -5.51468e-11) (2.29258e-11 2.29432e-11 2.67875e-11) (5.18098e-10 2.32128e-10 1.89846e-10) (9.37734e-10 2.92919e-10 4.64437e-11) (5.49546e-10 1.05918e-10 -1.71291e-11) (5.14491e-11 -9.02324e-12 3.42092e-11) (-1.38631e-10 -5.63054e-11 2.81009e-10) (-1.93089e-10 9.45598e-11 3.228e-10) (-1.90416e-11 8.1055e-11 1.06943e-10) (1.48811e-10 5.70722e-11 -6.87625e-11) (4.74935e-10 -6.24002e-11 -5.84845e-10) (-1.40209e-10 -1.09475e-10 -5.04097e-10) (-4.18285e-09 -1.6542e-10 -1.15337e-09) (-9.64773e-09 -6.20222e-10 2.08086e-10) (-2.04872e-09 -7.31627e-10 5.58801e-10) (4.64922e-11 -1.34505e-10 7.25624e-11) (8.51941e-10 -8.93957e-11 -1.9917e-12) (2.19375e-09 3.0863e-10 -4.38669e-10) (2.37155e-09 2.23716e-10 -8.15697e-10) (1.0153e-09 -1.16326e-10 -4.82724e-10) (1.37145e-10 -7.27404e-11 -9.61186e-11) (-4.7945e-13 -1.21842e-11 -9.72606e-12) (-5.93267e-11 -1.87746e-11 -1.60349e-11) (-2.93338e-10 9.93993e-12 -5.88591e-11) (-3.96554e-10 1.63052e-10 -8.99162e-11) (-1.92245e-10 2.93932e-10 -5.27426e-11) (5.03377e-12 3.82758e-10 7.3101e-12) (1.51375e-10 3.39419e-10 8.1345e-11) (2.13319e-10 2.26363e-10 1.32065e-10) (1.83536e-10 1.1594e-10 1.20128e-10) (7.63935e-11 2.49493e-11 5.0442e-11) (1.4147e-11 -5.60595e-12 9.92316e-12) (9.07346e-12 -3.72614e-11 3.54724e-12) (2.46115e-11 -1.63355e-10 -1.4357e-11) (4.97949e-11 -2.36436e-10 4.8808e-12) (-7.95553e-12 -1.40126e-10 6.24808e-11) (-2.02686e-10 -1.19963e-10 1.19894e-10) (-9.54549e-10 -1.89513e-10 -1.47209e-11) (-1.69538e-09 -3.14976e-10 -6.53385e-10) (-8.92138e-10 -1.78334e-10 -3.73653e-10) (-3.48364e-11 -4.65989e-12 1.28444e-11) (1.65093e-10 3.97089e-11 1.39724e-10) (9.70008e-10 1.73764e-10 1.16619e-10) (1.78686e-09 2.31717e-10 -4.26923e-10) (1.63192e-09 1.43605e-10 -5.28993e-10) (4.12161e-10 1.82622e-11 -4.90162e-11) (2.44384e-12 3.79091e-12 4.28951e-11) (2.01198e-10 1.25673e-10 1.30872e-10) (1.88782e-10 9.67858e-11 1.16997e-11) (3.38713e-10 6.02965e-11 -1.80424e-10) (5.561e-11 -6.6097e-12 -1.31326e-10) (-9.29079e-10 3.13453e-11 -3.50214e-10) (-5.90326e-09 2.03055e-10 -5.74314e-10) (-2.80493e-09 -5.27199e-10 -1.54167e-10) (-8.61646e-11 -3.46916e-10 -6.03521e-11) (3.86417e-10 -3.93642e-10 -1.31086e-10) (3.94239e-10 -5.36002e-11 -9.97563e-11) (3.47709e-10 1.19611e-10 -3.78685e-11) (1.71632e-10 5.76773e-11 3.03688e-11) (6.33698e-11 -7.73892e-12 5.5485e-11) (2.88587e-11 -2.58925e-11 5.35314e-11) (-1.75412e-12 -7.74518e-12 4.08118e-12) (-1.89606e-10 -5.6414e-11 -1.11804e-10) (-1.44154e-09 -5.61342e-11 -7.53891e-10) (-1.89029e-09 2.83395e-10 -7.70126e-10) (-4.42919e-10 2.9061e-10 -1.4655e-10) (4.5272e-11 2.36451e-10 2.80043e-11) (6.72687e-10 6.01069e-10 2.97638e-10) (1.41887e-09 7.72667e-10 6.17291e-10) (1.30581e-09 5.23589e-10 5.14277e-10) (5.72297e-10 1.54564e-10 2.05814e-10) (1.37441e-10 -2.28344e-11 5.4076e-11) (1.04127e-10 -1.74502e-10 3.36597e-11) (7.40134e-11 -5.71862e-10 2.01957e-11) (-3.86357e-10 -6.16404e-10 1.38696e-10) (-2.74327e-09 -6.86902e-10 8.78571e-10) (-5.5289e-09 -4.37219e-11 1.05191e-09) (-2.58413e-09 -6.7121e-11 -3.01971e-10) (-4.51572e-10 -1.1193e-10 -2.82974e-10) (-1.13193e-11 -1.39857e-11 -7.21838e-12) (4.52108e-11 -2.58865e-11 6.73748e-11) (2.13947e-10 -2.2029e-11 1.17239e-10) (5.42852e-10 1.97165e-11 -9.25411e-11) (1.24193e-09 1.14573e-10 -5.43906e-10) (1.54796e-09 1.44927e-10 -4.77264e-10) (1.23457e-09 1.70293e-10 2.44282e-11) (5.72323e-10 1.7158e-10 2.24021e-10) (1.65179e-09 4.13713e-10 1.14085e-09) (1.04309e-09 2.19428e-10 2.67949e-10) (4.20274e-10 5.34457e-11 -7.39656e-11) (-8.19061e-12 5.41145e-12 -1.21927e-11) (-1.70383e-09 1.95002e-10 -1.47842e-10) (-2.98827e-09 -1.19387e-10 -2.08388e-10) (-4.42046e-10 -4.13014e-10 -1.67324e-10) (4.41791e-11 -6.19152e-10 -2.83879e-10) (-8.09705e-12 -1.59208e-10 -1.21221e-10) (-8.14327e-12 4.10431e-12 -7.2011e-12) (-7.63163e-12 5.97577e-11 3.6119e-11) (4.54843e-11 7.71269e-11 2.14649e-10) (1.55344e-10 -4.30395e-11 4.5785e-10) (8.70758e-11 -8.14054e-11 1.99718e-10) (-8.85105e-12 -1.26564e-11 -4.29354e-12) (-7.37681e-10 -1.12819e-10 -6.50666e-10) (-2.48811e-09 8.97358e-12 -1.6458e-09) (-1.60078e-09 2.45419e-10 -5.9071e-10) (-1.85421e-10 1.31182e-10 3.8558e-11) (1.82887e-10 2.72696e-10 2.44484e-10) (1.65468e-09 9.40406e-10 9.26448e-10) (3.25363e-09 1.33738e-09 1.15746e-09) (2.82233e-09 9.57921e-10 6.18373e-10) (1.204e-09 2.76666e-10 1.71011e-10) (3.01255e-10 -8.34925e-11 3.30869e-11) (1.05026e-10 -3.90536e-10 -5.72191e-12) (-9.21671e-10 -1.12129e-09 8.35016e-11) (-7.79746e-09 -1.83808e-09 1.84133e-09) (-1.53594e-08 1.20344e-10 4.41851e-09) (-5.70061e-09 1.75009e-10 1.14363e-09) (-2.59401e-10 -5.76262e-11 -7.53212e-11) (3.32772e-11 -3.67095e-11 -4.59125e-11) (1.22783e-10 -5.03335e-11 1.96299e-14) (1.14834e-10 -4.40172e-11 2.11958e-11) (9.68474e-11 -3.1661e-11 -6.79285e-11) (3.63894e-10 8.05126e-12 -5.90704e-10) (9.89127e-10 2.01799e-10 -1.23388e-09) (1.38383e-09 2.77656e-10 -6.14699e-10) (1.80982e-09 3.3935e-10 4.49696e-10) (2.19979e-09 4.58122e-10 1.53775e-09) (2.36361e-09 4.95458e-10 2.45901e-09) (1.38193e-09 1.71164e-10 1.04423e-09) (3.73333e-10 3.41484e-11 2.10228e-10) (-1.13063e-11 7.18093e-12 1.36769e-11) (-5.84353e-10 3.60574e-11 5.82098e-11) (-4.83282e-10 -1.88805e-10 -6.90272e-11) (-3.85855e-10 -5.6223e-10 -3.00691e-10) (-1.238e-09 -9.25842e-10 -7.46994e-10) (-2.06344e-09 -3.94987e-10 -6.33486e-10) (-8.69585e-10 1.58344e-10 4.47349e-11) (-1.12374e-10 1.37053e-10 2.40437e-10) (3.48065e-10 8.21252e-11 7.28365e-10) (6.56307e-10 -1.69669e-10 8.51005e-10) (5.15076e-11 -4.84253e-11 7.16616e-11) (-2.51664e-10 -6.25145e-11 -2.0555e-10) (-2.35682e-09 -1.27295e-10 -1.88445e-09) (-2.52206e-09 1.95326e-11 -1.4551e-09) (-4.98227e-10 9.84948e-11 -4.72383e-11) (-1.05684e-11 1.33365e-10 2.16124e-10) (8.12434e-10 5.67255e-10 9.92162e-10) (2.28114e-09 1.04756e-09 1.29467e-09) (3.36152e-09 1.24854e-09 6.61223e-10) (3.06744e-09 9.49727e-10 -1.6462e-10) (1.46244e-09 2.43687e-10 -3.19663e-10) (2.79975e-10 -1.37606e-10 -1.26153e-10) (-3.14093e-10 -4.94578e-10 -8.4608e-11) (-7.85854e-09 -2.43768e-09 1.42335e-09) (-2.40932e-08 -1.10193e-09 7.46803e-09) (-1.35551e-08 5.21494e-10 4.83969e-09) (-9.77977e-10 -5.56255e-11 2.30996e-10) (2.05357e-11 -3.00157e-11 -3.32809e-11) (3.65923e-10 -1.30546e-10 -1.51427e-10) (5.00381e-10 -1.20183e-10 -1.27605e-10) (3.45047e-10 -7.88283e-11 -2.1645e-10) (3.35196e-10 -5.18869e-11 -7.61472e-10) (5.52697e-10 1.11384e-10 -2.15031e-09) (1.14614e-09 3.35657e-10 -2.14672e-09) (1.41983e-09 4.18768e-10 -6.93537e-10) (2.08347e-09 6.28704e-10 7.48607e-10) (2.8303e-09 7.78532e-10 2.59082e-09) (2.76136e-09 6.31242e-10 3.01604e-09) (1.56462e-09 1.23095e-10 1.62716e-09) (4.98236e-10 -8.38465e-12 5.52473e-10) (2.25078e-11 -5.90632e-12 8.71667e-11) (-2.80682e-11 -1.81543e-11 1.89736e-11) (-2.95796e-10 -2.3074e-10 -1.00454e-10) (-3.01253e-09 -1.27829e-09 -1.25865e-09) (-8.50871e-09 -1.71304e-09 -2.79374e-09) (-6.97426e-09 -4.22782e-10 -1.23343e-09) (-1.71687e-09 1.2722e-10 3.28673e-10) (-6.2725e-11 6.59047e-11 4.63106e-10) (1.29718e-09 -4.4008e-11 1.54366e-09) (9.85215e-10 -1.52159e-10 8.81236e-10) (-6.75683e-13 -1.40059e-12 4.12229e-13) (-1.19742e-09 -5.77509e-11 -8.99876e-10) (-3.23746e-09 -1.77949e-10 -2.04542e-09) (-1.4684e-09 -4.2609e-11 -4.48397e-10) (-1.41915e-10 4.2413e-11 9.88281e-11) (1.80849e-10 2.11479e-10 4.80096e-10) (1.01962e-09 5.76503e-10 9.1836e-10) (1.87334e-09 8.12099e-10 5.74669e-10) (2.9007e-09 9.89849e-10 -3.56104e-10) (3.14877e-09 8.47871e-10 -1.29071e-09) (1.51856e-09 1.976e-10 -9.70851e-10) (7.61404e-11 -7.52105e-11 -1.39129e-10) (-2.05853e-09 -7.77589e-10 2.01186e-10) (-1.96701e-08 -2.15868e-09 5.9587e-09) (-2.27176e-08 -9.034e-11 8.60809e-09) (-4.07804e-09 -1.70381e-11 1.49031e-09) (-3.10852e-11 -1.97048e-11 -6.25206e-12) (2.20123e-10 -1.29697e-10 -1.37836e-10) (5.92258e-10 -2.09103e-10 -2.27695e-10) (6.39598e-10 -1.56408e-10 -3.35892e-10) (6.30378e-10 -9.3758e-11 -7.1589e-10) (6.42071e-10 2.82878e-11 -1.57508e-09) (7.60262e-10 2.33121e-10 -2.30087e-09) (7.12052e-10 3.25837e-10 -1.17227e-09) (7.23617e-10 3.76958e-10 -1.30227e-10) (1.97705e-09 9.24729e-10 1.22594e-09) (3.23206e-09 1.1724e-09 3.14699e-09) (2.38742e-09 4.83668e-10 2.04027e-09) (1.43273e-09 9.19551e-12 1.19065e-09) (4.93421e-10 -1.04508e-10 4.80396e-10) (4.20562e-11 -4.34262e-11 7.97247e-11) (-8.81705e-11 -6.54937e-11 -2.46895e-12) (-2.25057e-09 -6.74653e-10 -8.30461e-10) (-8.9922e-09 -1.6251e-09 -3.33136e-09) (-1.05953e-08 -1.22463e-09 -3.29536e-09) (-5.98229e-09 -3.82379e-10 -9.6736e-10) (-1.18723e-09 -5.84506e-11 3.02958e-10) (9.39202e-11 -5.01604e-11 6.6366e-10) (2.07983e-09 -1.06783e-10 2.29214e-09) (6.20486e-10 -1.16346e-11 5.97266e-10) (-4.09173e-11 3.83496e-12 -2.20159e-11) (-1.76066e-09 -3.14512e-11 -1.13711e-09) (-2.42689e-09 -1.5834e-10 -9.85317e-10) (-7.02348e-10 -4.52051e-11 8.92678e-11) (-9.09144e-11 3.26528e-11 2.10168e-10) (1.59991e-10 1.44604e-10 3.0518e-10) (5.98306e-10 3.40255e-10 2.6086e-10) (1.55709e-09 6.1312e-10 -2.05236e-10) (2.95483e-09 8.65053e-10 -1.39588e-09) (2.76857e-09 7.22986e-10 -1.95218e-09) (8.30316e-10 1.74649e-10 -7.67525e-10) (-2.05537e-11 -6.49282e-12 -1.29741e-11) (-4.87868e-09 -5.37814e-10 1.7163e-09) (-1.89669e-08 -8.00157e-10 7.48758e-09) (-9.31005e-09 -2.55765e-10 3.41688e-09) (-4.8726e-10 -1.00485e-10 6.92865e-11) (4.16614e-11 -6.36962e-11 -5.64751e-11) (2.62324e-10 -1.69115e-10 -1.26159e-10) (2.526e-10 -1.37571e-10 -1.45884e-10) (4.32167e-10 -1.55571e-10 -4.91934e-10) (8.16892e-10 -6.86962e-11 -1.29749e-09) (9.76772e-10 1.95668e-10 -1.83381e-09) (6.48538e-10 3.00603e-10 -9.96665e-10) (3.72571e-10 2.29736e-10 -1.0474e-10) (1.03583e-09 5.90961e-10 6.77844e-10) (2.42062e-09 1.16071e-09 2.15942e-09) (2.97759e-09 1.06992e-09 2.65976e-09) (1.11312e-09 1.61139e-10 7.41082e-10) (4.53875e-10 -5.6486e-11 2.94934e-10) (4.91662e-11 -4.22634e-11 4.98852e-11) (-5.84295e-11 -4.69288e-11 -2.29768e-12) (-1.29472e-09 -3.26792e-10 -4.7756e-10) (-5.43649e-09 -8.29897e-10 -2.2414e-09) (-7.53158e-09 -9.32691e-10 -3.06776e-09) (-5.31625e-09 -5.60476e-10 -1.95096e-09) (-2.68015e-09 -2.50501e-10 -6.04937e-10) (-4.54094e-10 -7.37717e-11 1.46218e-10) (2.66558e-10 -1.0505e-10 8.97368e-10) (1.84217e-09 -1.01715e-11 2.37824e-09) (2.20129e-10 3.45292e-11 2.94755e-10) (-1.16975e-10 1.40407e-11 -5.73651e-11) (-1.48169e-09 -1.58209e-11 -7.672e-10) (-1.40215e-09 -8.95285e-11 -2.23544e-10) (-4.08522e-10 -4.52017e-11 2.50822e-10) (-6.08135e-11 1.59153e-11 2.5869e-10) (8.22417e-11 7.05869e-11 1.33837e-10) (3.9808e-10 1.99667e-10 -2.18073e-12) (1.52938e-09 5.04864e-10 -7.38996e-10) (2.31106e-09 6.74483e-10 -1.75348e-09) (1.35169e-09 4.68715e-10 -1.27737e-09) (1.84912e-10 9.39411e-11 -1.69928e-10) (-9.29504e-11 2.72039e-11 7.44617e-11) (-4.05423e-09 6.71745e-11 2.41301e-09) (-7.55258e-09 -2.47307e-10 3.39938e-09) (-1.73382e-09 -2.81946e-10 4.07438e-10) (-3.74584e-11 -6.70498e-11 -3.91994e-11) (8.34511e-11 -1.19125e-10 -7.95795e-11) (1.59863e-11 -5.0865e-11 -2.94599e-11) (2.42997e-11 -7.63312e-11 -1.25012e-10) (3.97806e-10 -1.84448e-10 -8.73814e-10) (1.07686e-09 2.31471e-13 -1.7774e-09) (9.11782e-10 2.70391e-10 -1.0751e-09) (6.3523e-10 2.91112e-10 -1.50749e-10) (1.38208e-09 6.01683e-10 7.71802e-10) (2.42011e-09 9.42768e-10 2.16785e-09) (2.39796e-09 9.65287e-10 2.26026e-09) (1.78453e-09 5.90103e-10 1.43561e-09) (1.21487e-10 1.81848e-11 5.31639e-11) (4.93042e-12 -4.0159e-12 -5.27216e-13) (-7.1808e-11 -4.82844e-11 -4.17509e-11) (-8.12412e-10 -2.24928e-10 -3.76598e-10) (-2.74621e-09 -4.13565e-10 -1.25471e-09) (-4.09944e-09 -4.45329e-10 -1.92164e-09) (-2.87792e-09 -3.31079e-10 -1.49519e-09) (-1.61755e-09 -1.99149e-10 -8.806e-10) (-8.21398e-10 -1.06885e-10 -2.73763e-10) (-1.35265e-10 -3.3711e-11 1.01829e-10) (4.51767e-10 -8.58335e-11 1.203e-09) (1.15875e-09 7.30201e-11 1.71698e-09) (5.38566e-11 2.39637e-11 9.97236e-11) (-1.26533e-10 1.72367e-11 -6.82359e-11) (-9.41642e-10 1.98916e-11 -4.09347e-10) (-8.30808e-10 -4.03529e-11 -6.55782e-12) (-2.52079e-10 -4.50548e-11 2.02102e-10) (-1.73934e-11 -1.82812e-12 1.67532e-10) (9.48041e-11 4.53142e-11 9.49769e-11) (4.18656e-10 1.55335e-10 -6.14518e-11) (1.09553e-09 3.52117e-10 -7.27713e-10) (1.01697e-09 4.0085e-10 -1.09295e-09) (4.15602e-10 2.19091e-10 -4.57867e-10) (6.77227e-11 5.44915e-11 -7.00406e-12) (-6.89737e-11 1.02815e-10 2.68487e-10) (-1.08222e-09 1.44713e-10 1.11802e-09) (-1.07381e-09 -1.24584e-10 5.24825e-10) (-1.48404e-10 -1.11711e-10 -2.59762e-11) (1.52431e-11 -1.3722e-10 -8.90221e-11) (-5.39694e-11 -7.99742e-11 -3.68102e-11) (-2.02536e-10 -9.84546e-11 -8.29644e-11) (-5.7765e-11 -1.22781e-10 -3.34188e-10) (6.1036e-10 -2.0287e-10 -1.31542e-09) (9.75101e-10 6.8401e-11 -1.17335e-09) (7.98642e-10 2.39086e-10 -2.71514e-10) (1.60047e-09 5.11043e-10 5.63616e-10) (2.79831e-09 7.57399e-10 1.93773e-09) (2.28289e-09 6.86417e-10 2.11863e-09) (1.13074e-09 4.30588e-10 1.17416e-09) (4.53389e-10 1.71777e-10 3.63359e-10) (1.52803e-12 1.27928e-12 -6.71258e-12) (-7.21414e-11 -2.83637e-11 -9.85476e-11) (-4.99654e-10 -1.45789e-10 -3.71479e-10) (-1.34311e-09 -2.4269e-10 -7.45919e-10) (-1.95022e-09 -2.0719e-10 -9.96062e-10) (-1.43234e-09 -1.30105e-10 -8.62538e-10) (-6.95779e-10 -1.03029e-10 -5.92082e-10) (-4.09481e-10 -7.09689e-11 -3.63472e-10) (-1.7787e-10 -2.55234e-11 -5.02342e-11) (-3.25346e-11 -1.72207e-11 1.88481e-10) (7.50702e-10 -3.44742e-11 1.54196e-09) (5.5678e-10 7.61038e-11 8.68145e-10) (7.2386e-12 7.8464e-12 1.46731e-11) (-7.91654e-11 1.94444e-11 -6.57021e-11) (-4.23542e-10 3.75827e-11 -2.15289e-10) (-3.74025e-10 -1.71772e-11 -3.97644e-11) (-9.06621e-11 -2.62301e-11 4.53149e-11) (-1.06883e-12 -5.7983e-12 5.3606e-11) (1.02221e-10 3.27505e-11 7.92274e-11) (3.32099e-10 1.12346e-10 -2.79523e-11) (4.93302e-10 1.90578e-10 -3.43623e-10) (3.71285e-10 1.88772e-10 -4.24329e-10) (2.00325e-10 1.05706e-10 -1.29545e-10) (1.95353e-10 1.07963e-10 9.00036e-11) (1.57688e-10 1.39955e-10 3.59151e-10) (-2.61655e-11 3.63018e-11 2.05633e-10) (-1.53082e-11 -1.37703e-11 9.12001e-12) (-5.01519e-12 -1.16555e-10 -7.88355e-11) (-1.67325e-10 -1.83882e-10 -1.03922e-10) (-1.04879e-09 -2.92078e-10 -8.1936e-11) (-5.69685e-10 -1.50738e-10 -2.4071e-10) (2.68129e-11 -1.40704e-10 -5.26446e-10) (6.31578e-10 -1.16715e-10 -9.32296e-10) (6.97741e-10 7.9084e-11 -3.53084e-10) (1.24761e-09 2.75572e-10 2.34374e-10) (2.22342e-09 4.59699e-10 1.20014e-09) (1.71756e-09 3.54824e-10 1.41175e-09) (7.01896e-10 2.37633e-10 8.11014e-10) (1.94749e-10 1.06858e-10 2.45027e-10) (2.89179e-11 2.00963e-11 1.79719e-11) (-2.55487e-11 3.40584e-12 -8.37107e-11) (-1.87199e-10 -4.38311e-11 -2.79299e-10) (-5.31607e-10 -1.09756e-10 -4.57193e-10) (-8.18306e-10 -1.05265e-10 -4.93812e-10) (-6.60295e-10 -4.92438e-11 -4.1871e-10) (-2.99568e-10 -3.80698e-11 -3.17116e-10) (-1.51348e-10 -4.10633e-11 -2.61888e-10) (-8.8671e-11 -1.93832e-11 -1.08359e-10) (-1.13368e-11 -1.32394e-12 7.96274e-12) (2.34534e-10 1.72796e-14 6.17118e-10) (9.65257e-10 2.34073e-11 1.53359e-09) (1.96658e-10 4.51973e-11 2.96313e-10) (2.02966e-12 2.86086e-12 5.89684e-13) (-1.74861e-11 1.57949e-11 -4.79409e-11) (-7.17377e-11 1.98807e-11 -9.15734e-11) (-6.22221e-11 -7.87065e-12 -4.592e-11) (-2.64081e-11 -1.17753e-11 -5.26132e-12) (-3.56635e-12 -1.55678e-12 8.96734e-12) (4.79471e-11 1.96615e-11 4.72092e-11) (1.88973e-10 6.91443e-11 1.85753e-11) (2.79662e-10 1.0484e-10 -1.20918e-10) (2.87841e-10 1.04305e-10 -1.58932e-10) (3.46844e-10 1.03782e-10 -3.78799e-11) (5.4296e-10 1.58762e-10 2.11534e-10) (4.70291e-10 1.39405e-10 3.25686e-10) (1.29823e-10 1.70727e-11 7.19503e-11) (4.29591e-11 -3.12708e-11 -2.51559e-11) (-5.25877e-11 -1.16042e-10 -9.74359e-11) (-1.14444e-09 -3.81509e-10 -1.17038e-10) (-1.98475e-09 -3.26655e-10 -8.73234e-11) (-3.05661e-10 -9.05874e-11 -2.34816e-10) (1.50187e-10 -9.13435e-11 -4.21452e-10) (4.66154e-10 -2.91603e-11 -3.39659e-10) (8.05813e-10 8.31336e-11 7.11922e-12) (1.49212e-09 2.14704e-10 5.95228e-10) (1.18603e-09 1.705e-10 7.76318e-10) (4.1287e-10 8.51105e-11 4.37839e-10) (8.99152e-11 4.70762e-11 1.57198e-10) (1.11023e-11 1.35289e-11 2.01702e-11) (7.75103e-13 3.64108e-12 -3.98153e-12) (4.17076e-11 6.00745e-12 -1.3157e-10) (-1.10895e-11 -1.51443e-11 -1.78286e-10) (-7.02611e-11 -1.9669e-11 -1.38068e-10) (-7.84017e-11 -1.13212e-11 -9.8242e-11) (-3.6975e-11 -5.25224e-12 -8.88079e-11) (1.55776e-12 -1.45953e-11 -1.34049e-10) (1.55592e-11 -1.78372e-11 -1.20904e-10) (3.92653e-12 -1.82393e-12 -1.02182e-11) (9.35898e-11 3.47094e-12 1.02743e-10) (1.12222e-09 2.69085e-11 1.24722e-09) (1.05474e-09 4.98052e-11 1.06938e-09) (2.15029e-10 3.90605e-11 1.50883e-10) (6.71737e-11 2.05443e-11 -1.13679e-11) (9.13502e-11 2.8815e-11 -8.70425e-11) (7.24095e-11 1.83384e-11 -1.06547e-10) (2.21524e-11 -6.66177e-12 -4.72301e-11) (1.79645e-13 -2.6778e-12 -3.33043e-12) (2.92565e-12 -2.5284e-13 4.90068e-12) (1.21359e-10 3.07582e-11 7.4201e-11) (4.20012e-10 1.01488e-10 7.15819e-11) (6.56375e-10 1.39331e-10 -7.20064e-11) (8.68584e-10 1.41205e-10 -1.23188e-10) (1.12336e-09 1.60274e-10 1.60048e-11) (1.36358e-09 2.14125e-10 2.5487e-10) (1.28346e-09 1.96922e-10 2.69936e-10) (8.1515e-10 3.99317e-11 -3.92302e-12) (2.91376e-10 -7.76878e-11 -1.27242e-10) (-1.49933e-11 -4.15111e-11 -3.0021e-11) (-5.87356e-10 -1.81014e-10 1.4514e-11) (-5.47132e-10 -1.14456e-10 -5.95055e-11) (-1.4022e-11 -3.2742e-11 -9.96744e-11) (3.35835e-10 -6.78887e-11 -2.93177e-10) (8.04493e-10 -2.62743e-11 -1.84549e-10) (1.45834e-09 5.65089e-11 2.0292e-10) (1.605e-09 8.25998e-11 5.28894e-10) (8.68324e-10 4.58663e-11 4.31068e-10) (2.97052e-10 2.66338e-11 2.13518e-10) (8.49316e-11 1.90892e-11 7.05495e-11) (2.61486e-11 9.67564e-12 6.24621e-12) (3.19178e-11 1.14103e-11 -3.28926e-11) (1.94348e-10 8.84249e-12 -2.15086e-10) (9.49226e-11 -3.81861e-12 -1.58359e-10) (3.26415e-11 -2.97957e-12 -6.68456e-11) (4.43797e-11 -1.54622e-12 -6.23867e-11) (1.45897e-10 -5.8745e-12 -1.55643e-10) (2.7618e-10 -2.51643e-11 -2.7607e-10) (2.65306e-10 -2.57089e-11 -2.04419e-10) (3.33323e-10 -8.04794e-12 -2.12735e-11) (1.65028e-09 2.92311e-11 7.75689e-10) (4.08884e-09 4.66995e-11 2.33529e-09) (3.04204e-09 9.56811e-11 1.51233e-09) (1.74147e-09 1.27115e-10 4.6006e-10) (1.65882e-09 1.54191e-10 -5.10868e-11) (2.04906e-09 1.66824e-10 -5.17497e-10) (2.01014e-09 9.54838e-11 -7.01773e-10) (1.0056e-09 -3.66841e-11 -4.12571e-10) (2.45814e-10 -2.48216e-11 -7.76675e-11) (2.05239e-10 3.65527e-12 3.12611e-11) (8.03794e-10 8.39643e-11 2.07745e-10) (2.04422e-09 2.25827e-10 2.63156e-10) (3.53652e-09 3.18302e-10 6.86402e-11) (4.98362e-09 3.17876e-10 1.43801e-11) (6.31597e-09 3.85205e-10 2.69531e-10) (7.84195e-09 5.75277e-10 6.08054e-10) (9.03533e-09 6.51759e-10 3.83147e-10) (8.25107e-09 2.64942e-10 -5.62585e-10) (4.0726e-09 -2.31641e-10 -7.3349e-10) (3.25915e-10 -9.22782e-11 -6.19748e-11) (-2.58739e-11 -1.66113e-11 4.51163e-12) (-1.83316e-11 -1.00497e-11 -1.10821e-11) (1.30608e-10 -3.34484e-11 -1.05783e-10) (8.38685e-10 -7.5559e-11 -2.26342e-10) (1.97124e-09 -5.66829e-11 3.05014e-11) (3.03686e-09 -2.0543e-11 5.53289e-10) (2.73578e-09 -2.12899e-11 7.89926e-10) (1.62476e-09 -1.22687e-11 6.51787e-10) (7.38758e-10 5.32049e-12 3.73834e-10) (3.11192e-10 1.64368e-11 1.39929e-10) (1.60375e-10 1.67717e-11 5.00077e-12) (1.82814e-10 1.87621e-11 -1.05313e-10) (2.02599e-11 1.6327e-12 -7.57976e-11) (1.03894e-11 8.9634e-13 -4.18299e-11) (2.46151e-11 9.55371e-13 -2.91997e-11) (1.22688e-10 1.51593e-12 -8.59561e-11) (3.42342e-10 -4.37014e-12 -2.35254e-10) (4.51579e-10 -1.74557e-11 -3.06502e-10) (4.8544e-10 -1.47365e-11 -1.7416e-10) (1.33409e-09 2.33184e-12 2.09466e-10) (4.71239e-09 5.31215e-11 1.85883e-09) (6.84167e-09 4.02093e-11 2.98816e-09) (5.22937e-09 7.79472e-11 1.99741e-09) (4.35032e-09 1.24463e-10 8.71874e-10) (5.40414e-09 1.824e-10 -1.2831e-10) (7.40774e-09 2.00511e-10 -1.46606e-09) (6.98998e-09 7.59491e-11 -2.10808e-09) (2.68949e-09 -6.19347e-11 -1.12109e-09) (3.98943e-10 -1.86976e-11 -1.59792e-10) (2.82148e-10 3.67373e-12 4.10451e-11) (1.42343e-09 7.00925e-11 4.2587e-10) (4.36532e-09 2.14236e-10 8.81038e-10) (8.45687e-09 3.06388e-10 1.00658e-09) (1.22193e-08 2.87378e-10 1.06995e-09) (1.55227e-08 3.57349e-10 1.20582e-09) (1.99016e-08 5.95855e-10 1.11219e-09) (2.46285e-08 7.23321e-10 -1.84718e-10) (2.29879e-08 2.55389e-10 -2.21776e-09) (9.15931e-09 -2.71335e-10 -1.41307e-09) (3.78624e-10 -4.30767e-11 -4.0729e-11) (-6.40608e-11 -8.87963e-12 6.47628e-12) (2.72729e-12 -6.96197e-13 -1.51774e-12) (1.94123e-10 -9.95701e-12 -6.46345e-12) (1.021e-09 -1.97928e-11 1.5657e-10) (2.29941e-09 -2.15557e-11 5.53745e-10) (2.6917e-09 -4.40773e-11 8.31205e-10) (1.82832e-09 -5.32704e-11 7.79302e-10) (7.78014e-10 -3.20535e-11 4.93069e-10) (2.22247e-10 -1.01907e-11 2.03866e-10) (4.65994e-11 -7.77001e-13 3.83743e-11) (1.64482e-11 4.76801e-13 -1.86754e-12) (2.67055e-11 1.94334e-12 -4.78871e-11) (-3.9723e-12 1.58642e-13 -8.29224e-13) (-5.69272e-13 6.71087e-14 -1.89505e-13) (7.02402e-13 7.67526e-14 -2.2328e-13) (1.48932e-11 4.28696e-13 -5.3461e-12) (4.01154e-11 4.76847e-13 -2.08641e-11) (4.96657e-11 -2.02093e-13 -2.91038e-11) (7.36446e-11 -3.31453e-13 -1.92275e-11) (2.47734e-10 1.05561e-12 3.50927e-11) (6.28779e-10 2.82267e-12 2.2036e-10) (7.08266e-10 -2.41261e-12 3.38078e-10) (5.38627e-10 -3.71864e-12 2.5966e-10) (5.09374e-10 -1.55107e-12 1.21425e-10) (6.99464e-10 -2.15253e-13 -5.64254e-11) (9.76086e-10 -1.11388e-12 -3.2721e-10) (7.45737e-10 -5.21097e-12 -4.15315e-10) (1.88644e-10 -5.06461e-12 -1.82487e-10) (1.68923e-11 -9.63772e-13 -1.95238e-11) (1.41149e-11 -4.24503e-13 4.51972e-12) (1.27981e-10 8.46737e-13 7.34662e-11) (4.70009e-10 1.00812e-11 1.91755e-10) (1.00994e-09 1.37789e-11 2.69402e-10) (1.43702e-09 6.09974e-12 2.64023e-10) (1.71373e-09 3.20989e-12 2.08228e-10) (2.14638e-09 8.74246e-12 1.02888e-10) (2.67223e-09 1.2363e-11 -1.62579e-10) (2.12541e-09 -6.32191e-12 -3.79433e-10) (4.40889e-10 -7.25125e-12 -1.17337e-10) (-1.45391e-13 -1.84044e-14 -1.36192e-12) (-5.74324e-12 -3.27428e-14 9.40009e-13) (1.98348e-12 4.83548e-14 1.69061e-12) (4.22332e-11 1.71433e-13 2.54391e-11) (1.45491e-10 -1.05008e-13 7.33025e-11) (2.28786e-10 -2.23221e-12 9.9508e-11) (1.853e-10 -4.4438e-12 9.07311e-11) (8.84409e-11 -4.09661e-12 6.61532e-11) (2.98109e-11 -2.5985e-12 4.42153e-11) (5.66207e-12 -1.49592e-12 2.84555e-11) (-2.26861e-12 -6.2381e-13 1.29655e-11) (-2.78699e-12 -1.41277e-13 2.70982e-12) (-3.70299e-12 2.68984e-14 -2.19038e-15) (-8.54029e-12 -5.80661e-10 9.73365e-11) (-1.85136e-10 -5.98526e-10 1.11251e-10) (-1.55526e-10 -2.04247e-10 4.80498e-11) (-5.43072e-11 -7.96385e-12 1.41053e-11) (-4.0198e-11 4.92188e-11 1.74869e-11) (-1.38931e-11 6.35792e-11 1.99814e-11) (4.10044e-12 1.06833e-11 4.5275e-12) (7.57983e-12 -3.96932e-12 -2.36034e-13) (1.47162e-11 -3.64383e-11 -1.13399e-11) (-3.19459e-11 -7.97935e-11 -3.17332e-11) (-2.48807e-10 -1.57726e-10 -8.91174e-11) (-4.31539e-10 -8.02094e-11 -1.19165e-10) (-1.5289e-10 8.57121e-11 -4.06857e-11) (5.9974e-11 5.07697e-10 1.87586e-11) (9.03097e-10 2.02523e-09 2.84133e-10) (1.05854e-09 2.23479e-09 4.4381e-10) (2.75955e-10 7.38286e-10 2.64144e-10) (-5.56146e-12 4.97425e-11 8.05836e-11) (-1.20924e-10 -1.35577e-10 1.72771e-10) (-3.78208e-10 -5.33812e-10 2.68013e-10) (-4.46565e-10 -6.31186e-10 3.61096e-11) (-3.12561e-10 -4.8572e-10 -2.62176e-10) (-1.41482e-10 -3.58494e-10 -4.51552e-10) (-2.67584e-11 -1.73451e-10 -3.19481e-10) (-1.04083e-11 -2.31005e-11 -5.1219e-11) (-4.01962e-12 9.21409e-13 9.15726e-13) (-2.07379e-11 2.49688e-11 4.16274e-11) (-6.47829e-12 5.74834e-11 9.00602e-11) (2.90917e-11 5.36511e-11 7.87239e-11) (3.91915e-11 2.6804e-11 3.74867e-11) (2.71487e-11 7.38356e-12 5.24213e-12) (2.35763e-11 1.97303e-12 -1.42903e-11) (2.98966e-11 3.72228e-12 -4.43176e-11) (3.2666e-11 1.51482e-11 -5.81602e-11) (3.93858e-11 3.65175e-11 -4.7644e-11) (6.68173e-11 8.24157e-11 -4.24167e-11) (9.46172e-11 1.2249e-10 -4.03178e-11) (6.6277e-11 5.91521e-11 -2.43388e-11) (2.95284e-11 -7.62968e-12 -5.31049e-12) (6.35139e-11 -1.73768e-10 1.95355e-11) (-2.27669e-10 -3.75928e-10 1.24946e-10) (-5.77863e-10 -6.88354e-10 2.79996e-10) (-6.06081e-10 -5.09145e-10 2.71383e-10) (-3.44661e-10 -1.58439e-10 1.48035e-10) (-9.65605e-11 -1.40837e-12 3.58394e-11) (-4.94839e-12 7.05545e-12 -6.87547e-13) (5.07341e-11 3.38917e-11 -3.27485e-11) (2.86944e-10 7.39917e-11 -1.21222e-10) (2.1105e-10 2.89887e-11 -7.21787e-11) (-1.32486e-12 -1.12404e-12 -2.52864e-12) (-9.21386e-10 -2.07221e-10 -1.47167e-10) (-4.44128e-09 -1.09405e-09 -8.52324e-10) (-4.04067e-09 -1.12418e-09 -1.06786e-09) (-5.87808e-10 -1.02552e-10 -2.37662e-10) (9.01584e-11 1.33074e-10 -1.95634e-11) (2.83809e-09 2.4133e-09 5.48266e-10) (6.38277e-09 5.18746e-09 1.99045e-09) (4.07021e-09 3.33864e-09 1.95963e-09) (8.05356e-10 6.05609e-10 7.19592e-10) (1.94828e-11 -2.17402e-11 9.64483e-11) (-1.53202e-10 -2.76262e-10 7.91657e-12) (-6.05057e-10 -1.01658e-09 -5.64383e-10) (-9.18908e-10 -1.38011e-09 -1.17661e-09) (-7.57532e-10 -7.70952e-10 -6.83005e-10) (-4.47039e-10 -2.12107e-10 -7.92807e-11) (-3.85966e-10 -2.90711e-11 2.13918e-10) (-3.34704e-10 9.57973e-11 4.74879e-10) (-1.1826e-10 1.60213e-10 4.36343e-10) (3.61168e-11 1.33698e-10 1.96608e-10) (7.88992e-11 9.53473e-11 4.29788e-11) (1.306e-10 1.02285e-10 -5.86772e-11) (1.9341e-10 1.04571e-10 -1.89912e-10) (1.87081e-10 6.1878e-11 -2.2944e-10) (1.32678e-10 2.0861e-11 -1.501e-10) (9.44471e-11 1.46606e-11 -7.27816e-11) (1.00713e-10 3.37937e-11 -4.52948e-11) (1.25458e-10 6.18378e-11 -3.89573e-11) (8.65231e-11 3.8568e-11 -2.30878e-11) (1.39482e-11 -1.89898e-12 -2.42925e-12) (-1.03205e-11 -5.24571e-11 1.20511e-11) (-1.91486e-11 -3.37011e-11 1.22741e-11) (-1.28791e-10 -1.5609e-10 5.20638e-11) (-3.30411e-10 -2.47954e-10 1.33407e-10) (-4.89936e-10 -2.21748e-10 2.37149e-10) (-3.55559e-10 -1.09342e-10 1.96766e-10) (-6.22196e-11 -2.26996e-11 3.78692e-11) (3.4499e-12 -2.01641e-12 -8.05238e-13) (1.67349e-10 -2.39942e-13 -6.40501e-11) (3.4517e-10 8.97163e-11 -1.39771e-10) (1.0131e-10 8.93709e-11 -7.59628e-11) (-7.75641e-11 3.9475e-11 -6.49431e-11) (-1.18238e-09 -3.00072e-10 -4.12629e-10) (-3.21043e-09 -1.45225e-09 -9.4764e-10) (-2.6854e-09 -1.09336e-09 -8.48587e-10) (-5.71181e-10 -1.03984e-11 -2.48512e-10) (3.05719e-11 2.2373e-10 -4.29708e-11) (1.66515e-09 1.67373e-09 4.91029e-10) (4.74482e-09 3.18726e-09 2.18845e-09) (4.0098e-09 2.12477e-09 2.42912e-09) (1.01333e-09 3.59412e-10 8.001e-10) (2.24483e-11 -2.41333e-11 2.86764e-11) (-2.53817e-10 -3.85913e-10 -1.93296e-10) (-1.17755e-09 -1.2017e-09 -9.17453e-10) (-1.40711e-09 -1.00168e-09 -7.50634e-10) (-7.85774e-10 -2.92979e-10 -7.91872e-11) (-4.23812e-10 3.17483e-12 2.16119e-10) (-2.84576e-10 1.15124e-10 3.8547e-10) (-9.40571e-11 1.27531e-10 3.15215e-10) (3.20849e-11 1.054e-10 1.38898e-10) (1.09687e-10 1.28218e-10 4.30799e-11) (2.06653e-10 1.66004e-10 -7.14516e-11) (2.36674e-10 1.09573e-10 -1.78682e-10) (1.91111e-10 -2.89219e-12 -1.90096e-10) (1.38582e-10 -8.04027e-11 -1.43439e-10) (9.01355e-11 -8.00853e-11 -7.74619e-11) (4.95787e-11 -2.60428e-11 -3.13554e-11) (3.5e-11 8.15705e-12 -1.70756e-11) (3.2306e-11 2.93476e-11 -1.27862e-11) (9.46628e-12 1.22516e-11 -1.9296e-12) (-1.01074e-14 -1.43423e-13 2.23041e-13) (1.99078e-11 -1.99859e-11 -4.72115e-12) (1.33044e-12 -4.106e-11 1.73677e-11) (-8.08004e-11 -1.05997e-10 1.27807e-10) (-3.02868e-10 -1.81429e-10 3.43352e-10) (-4.5494e-10 -1.84498e-10 3.47185e-10) (-3.66383e-10 -1.38705e-10 1.04383e-10) (-2.15647e-10 -1.16717e-10 -8.77182e-11) (-8.0714e-11 -1.09967e-10 -1.74457e-10) (3.51951e-11 -3.5893e-11 -1.01804e-10) (1.22765e-10 4.37382e-11 -5.04514e-11) (2.64093e-10 1.69166e-10 2.52783e-11) (1.21977e-10 7.23405e-11 5.13033e-11) (1.99487e-12 -1.03115e-12 5.1855e-12) (-8.39311e-11 -3.73892e-11 -5.12464e-12) (-4.14203e-10 -3.50335e-11 -1.42853e-10) (-4.17856e-10 1.51594e-10 -2.18925e-10) (-9.07695e-11 2.37901e-10 -8.13631e-11) (3.32822e-10 6.07251e-10 1.37843e-10) (1.25745e-09 1.09623e-09 7.52958e-10) (1.0196e-09 6.01794e-10 6.71349e-10) (1.15311e-10 2.37479e-11 5.93555e-11) (-4.79051e-11 -1.10132e-10 -7.47711e-11) (-1.08944e-09 -1.10105e-09 -7.90964e-10) (-1.89215e-09 -1.49536e-09 -8.24538e-10) (-6.09905e-10 -4.22128e-10 -2.94509e-11) (-4.32239e-11 -1.47469e-11 1.12062e-10) (1.79485e-10 2.40125e-10 5.44437e-10) (3.85396e-10 5.32415e-10 7.44761e-10) (3.10194e-10 4.42146e-10 3.69808e-10) (2.04737e-10 2.41293e-10 3.83008e-11) (1.82216e-10 1.2541e-10 -1.29027e-10) (1.86521e-10 -6.26234e-12 -2.85397e-10) (1.13751e-10 -1.97891e-10 -3.79651e-10) (-2.23037e-11 -2.61832e-10 -2.86622e-10) (-4.88769e-11 -9.96784e-11 -1.00333e-10) (-7.40851e-12 -2.37629e-12 -8.61699e-12) (5.19558e-13 1.39576e-11 -1.51193e-12) (2.52392e-11 4.7399e-11 1.86265e-12) (3.98478e-11 3.18488e-11 -3.83121e-12) (3.15458e-11 6.17116e-13 -8.86249e-12) (3.39948e-11 -5.02387e-11 2.28001e-11) (2.87108e-11 -1.05801e-10 1.19242e-10) (-1.39317e-11 -1.12337e-10 2.37683e-10) (-8.16659e-11 -5.29778e-11 1.97737e-10) (-1.70628e-10 -1.66746e-11 9.31142e-11) (-4.84755e-10 -6.22629e-11 -7.65525e-11) (-1.04757e-09 -4.83006e-10 -5.28264e-10) (-1.51849e-09 -1.36007e-09 -7.97042e-10) (-1.31013e-09 -1.39171e-09 -3.35707e-10) (-2.89135e-10 -2.70755e-10 6.60416e-11) (3.34319e-11 2.71331e-11 8.6953e-11) (1.0284e-09 6.04787e-10 6.43216e-10) (2.37014e-09 1.14768e-09 8.70678e-10) (1.55883e-09 7.4658e-10 2.36539e-10) (3.02467e-10 2.2474e-10 -1.01978e-10) (-2.47482e-11 1.13563e-10 -1.44049e-10) (-2.5243e-10 1.86142e-10 -2.32147e-10) (-2.01355e-10 1.98794e-10 -8.74063e-11) (-4.67929e-11 1.85007e-10 3.59226e-11) (3.60118e-11 1.63626e-10 6.96419e-11) (-5.35608e-13 1.74502e-11 1.81657e-12) (-2.70634e-10 -8.73712e-11 -1.57254e-10) (-2.11042e-09 -1.1072e-09 -1.04319e-09) (-2.09764e-09 -1.50672e-09 -9.4964e-10) (-2.22107e-10 -3.72641e-10 -6.32479e-11) (2.67788e-10 -1.28565e-10 2.39807e-10) (2.03813e-09 4.53969e-10 1.6058e-09) (2.82162e-09 1.48183e-09 2.09987e-09) (1.44981e-09 1.11528e-09 8.87048e-10) (3.79954e-10 3.24055e-10 6.57892e-11) (8.72896e-11 3.80611e-11 -8.03792e-11) (3.14941e-11 -9.38846e-11 -2.36395e-10) (-1.63562e-10 -3.09655e-10 -4.22127e-10) (-3.2719e-10 -2.97643e-10 -3.60751e-10) (-1.59665e-10 -6.72467e-11 -1.28752e-10) (-1.59828e-11 8.50051e-12 -1.50074e-11) (1.04579e-11 2.94578e-11 -3.96484e-12) (5.16341e-11 5.2918e-11 5.10465e-13) (5.21695e-11 2.03527e-11 -4.4744e-12) (3.49298e-11 -1.26021e-11 -2.17108e-12) (-5.22693e-12 -5.47728e-11 2.95036e-11) (-9.74147e-12 -1.15344e-10 2.25398e-10) (4.1993e-11 -6.44025e-11 3.90598e-10) (2.79377e-11 1.75482e-11 1.69549e-10) (-3.30729e-12 6.92319e-12 5.80075e-12) (-6.01199e-11 5.90392e-13 -6.18101e-11) (-4.47281e-10 -3.70825e-10 -4.05957e-10) (-2.2741e-09 -2.1554e-09 -8.63615e-10) (-6.54283e-09 -4.60712e-09 -2.98193e-10) (-6.07995e-09 -2.95108e-09 1.21486e-09) (-1.01327e-09 -2.59628e-10 9.52286e-10) (5.74186e-10 3.90463e-10 1.15449e-09) (3.20394e-09 1.4491e-09 1.86461e-09) (3.72114e-09 1.68117e-09 6.34373e-10) (2.16687e-09 1.17819e-09 -6.09756e-10) (8.50225e-10 7.26361e-10 -9.76415e-10) (5.78515e-11 4.42658e-10 -7.89409e-10) (-3.20953e-10 3.20011e-10 -4.22742e-10) (-5.09749e-10 3.66104e-10 -1.34974e-10) (-6.0277e-10 4.37798e-10 4.00819e-11) (-7.74797e-10 3.65554e-10 -3.28935e-11) (-1.63633e-09 5.15397e-11 -4.45507e-10) (-2.62847e-09 -9.46663e-10 -1.12104e-09) (-1.45658e-09 -1.33581e-09 -9.04167e-10) (-8.40592e-11 -5.14279e-10 -1.69633e-10) (4.08022e-10 -2.54613e-10 1.41565e-10) (2.29716e-09 8.18575e-11 1.22901e-09) (4.51851e-09 1.25233e-09 2.46475e-09) (3.57856e-09 1.49016e-09 1.67823e-09) (1.12499e-09 5.28859e-10 3.10428e-10) (9.34794e-11 3.28684e-11 -2.78743e-11) (-2.26256e-11 -2.8622e-11 -6.38601e-11) (-2.77689e-10 -1.69302e-10 -1.85307e-10) (-3.89189e-10 -1.8252e-10 -1.37833e-10) (-1.17969e-10 -3.8337e-11 -3.2966e-11) (-3.02799e-12 1.93074e-12 -3.36024e-12) (2.82623e-11 2.76602e-11 -2.30947e-11) (8.41146e-11 4.92687e-11 -6.41354e-11) (4.88342e-11 4.42492e-12 -4.95971e-11) (8.98879e-12 -1.80961e-11 -1.24965e-11) (-1.61137e-11 -2.53257e-11 2.64248e-11) (-1.25132e-11 -9.12227e-11 4.07437e-10) (1.61959e-10 -3.26777e-11 7.80408e-10) (1.40474e-10 5.80122e-11 3.35479e-10) (2.0986e-11 1.89055e-11 1.35292e-11) (1.74736e-11 2.41402e-12 -4.98934e-11) (-5.11181e-11 -1.84746e-10 -2.47211e-10) (-1.38082e-09 -1.30952e-09 -6.09507e-10) (-8.99506e-09 -4.58116e-09 -1.19987e-10) (-1.32104e-08 -4.80844e-09 2.62074e-09) (-3.45985e-09 -1.15634e-09 2.44546e-09) (1.72967e-10 5.26909e-11 1.2176e-09) (1.9178e-09 7.54415e-10 1.38498e-09) (2.4198e-09 1.17778e-09 4.85211e-10) (1.62653e-09 1.01547e-09 -3.45519e-10) (9.48358e-10 7.52757e-10 -7.20171e-10) (4.94222e-10 5.41519e-10 -8.26766e-10) (7.16275e-11 3.60787e-10 -6.03767e-10) (-2.63451e-10 3.41644e-10 -3.46993e-10) (-9.88911e-10 6.8071e-10 -2.38534e-10) (-2.0965e-09 9.12466e-10 -1.3481e-10) (-2.36714e-09 2.53071e-10 -2.7865e-10) (-1.73781e-09 -6.98613e-10 -4.65629e-10) (-8.93484e-10 -1.14715e-09 -5.12115e-10) (-1.25296e-10 -6.38437e-10 -2.66762e-10) (1.08098e-10 -1.42498e-10 -4.31014e-11) (5.01963e-10 -3.71216e-11 1.20495e-10) (1.62733e-09 2.83492e-10 7.06815e-10) (2.35105e-09 6.56176e-10 1.16385e-09) (1.48285e-09 5.18942e-10 6.86856e-10) (2.76374e-10 1.0835e-10 9.08595e-11) (3.7361e-12 4.48698e-13 -2.14645e-12) (-2.09986e-11 -2.69299e-11 -2.87372e-11) (-4.66419e-11 -6.13065e-11 -4.59866e-11) (-1.42006e-11 -1.93483e-11 -1.48617e-11) (-3.00703e-13 -7.87194e-14 -2.75356e-12) (1.27093e-11 1.47492e-11 -2.33353e-11) (4.67349e-11 3.79233e-11 -9.80118e-11) (2.81016e-11 7.09451e-12 -1.20439e-10) (-5.68334e-12 -1.40645e-11 -2.80873e-11) (8.09349e-12 -4.37927e-11 2.94331e-10) (2.8983e-10 -1.03556e-10 1.16869e-09) (4.98205e-10 1.10971e-11 1.09046e-09) (1.82915e-10 5.34381e-11 2.18321e-10) (4.1087e-11 1.48639e-11 -1.52645e-11) (8.97104e-11 -4.06329e-11 -1.76601e-10) (-3.05816e-11 -1.97677e-10 -2.47912e-10) (-1.52615e-09 -9.21446e-10 -3.36643e-10) (-1.02573e-08 -3.26953e-09 9.55707e-10) (-1.22746e-08 -3.55334e-09 3.37722e-09) (-2.32801e-09 -9.15975e-10 1.61067e-09) (4.73573e-11 -3.30717e-11 1.75766e-10) (6.79011e-10 1.53428e-10 6.98649e-11) (1.23663e-09 4.70983e-10 -2.04298e-10) (9.38786e-10 5.56347e-10 -1.67835e-10) (5.4761e-10 4.72943e-10 -6.80585e-11) (3.46396e-10 3.91985e-10 -1.09641e-10) (2.18463e-10 3.63597e-10 -2.31797e-10) (-1.16147e-12 3.90806e-10 -3.12129e-10) (-4.90649e-10 5.8507e-10 -3.49659e-10) (-1.40804e-09 7.37158e-10 -2.55374e-10) (-1.57295e-09 1.49548e-10 -8.71553e-11) (-1.06811e-09 -5.28316e-10 -1.06188e-10) (-6.25779e-10 -8.08948e-10 -2.22815e-10) (-1.8267e-10 -4.09502e-10 -1.89592e-10) (-7.00706e-13 -6.10749e-11 -5.32521e-11) (3.72885e-11 -5.34136e-12 -1.53806e-11) (2.19975e-10 3.51782e-11 4.12844e-11) (5.30536e-10 1.15395e-10 2.40933e-10) (5.53861e-10 1.38187e-10 3.26101e-10) (2.18832e-10 3.65629e-11 1.29068e-10) (3.20746e-11 -1.7118e-11 1.06101e-11) (2.19899e-11 -7.81255e-11 -1.9876e-11) (2.32485e-11 -1.09429e-10 -5.11719e-11) (1.61616e-11 -2.8786e-11 -3.18265e-11) (1.54662e-11 7.75281e-12 -3.0336e-11) (2.77073e-11 5.45061e-11 -7.45499e-11) (1.7871e-11 6.58554e-11 -1.01504e-10) (-3.02589e-12 1.53234e-11 -3.30574e-11) (-1.79172e-12 -5.21952e-13 2.87331e-12) (5.75576e-10 -2.46143e-10 1.67014e-09) (9.99199e-10 -1.43558e-10 2.08299e-09) (5.17339e-10 1.22459e-10 7.56386e-10) (1.0243e-10 6.41962e-11 2.97739e-11) (1.19791e-10 4.85776e-11 -1.92888e-10) (8.32484e-11 -9.51351e-11 -4.09824e-10) (-2.91429e-10 -2.22502e-10 -2.8105e-10) (-3.88078e-09 -1.07925e-09 3.51533e-11) (-1.07562e-08 -2.40172e-09 2.2404e-09) (-5.0403e-09 -1.63711e-09 2.0293e-09) (-1.6288e-10 -1.57704e-10 1.75707e-10) (2.19541e-10 -4.83463e-11 -8.72344e-11) (1.02551e-09 9.89672e-11 -9.07846e-10) (8.76828e-10 3.67305e-10 -1.01371e-09) (4.09482e-10 3.74979e-10 -3.24958e-10) (3.09603e-10 3.46995e-10 6.70832e-11) (3.72439e-10 3.98612e-10 3.30388e-10) (2.40422e-10 3.16706e-10 2.13649e-10) (6.07777e-11 2.46505e-10 7.20903e-12) (-1.63661e-10 3.73061e-10 -1.26429e-10) (-5.92978e-10 4.09658e-10 -1.55104e-10) (-7.85067e-10 6.50388e-11 -4.20302e-11) (-7.68783e-10 -3.65461e-10 -2.52899e-11) (-6.06544e-10 -5.34368e-10 -1.39479e-10) (-3.01926e-10 -2.83293e-10 -1.74993e-10) (-7.81271e-11 -6.76882e-11 -9.02345e-11) (-1.28451e-12 -9.42057e-12 -2.25212e-11) (1.99332e-11 -3.68158e-12 -6.18282e-12) (9.5528e-11 3.3523e-12 3.77988e-11) (1.81245e-10 2.67882e-11 1.36992e-10) (1.38945e-10 5.4865e-13 1.27412e-10) (5.52265e-11 -4.80438e-11 4.59656e-11) (2.41277e-11 -1.14313e-10 -2.32756e-12) (-1.27704e-11 -1.07063e-10 -6.05713e-11) (-1.17333e-11 -2.67761e-11 -6.56075e-11) (6.90116e-12 1.94026e-11 -7.2063e-11) (2.79358e-11 4.70791e-11 -7.5722e-11) (1.58684e-11 2.60837e-11 -2.76283e-11) (3.59654e-12 4.42431e-12 5.71206e-12) (8.41925e-11 -3.09562e-11 3.49309e-10) (1.02289e-09 -2.71857e-10 1.75499e-09) (4.83917e-10 1.46814e-11 8.31776e-10) (1.4969e-10 7.98814e-11 9.05547e-11) (2.7442e-10 1.62624e-10 -2.57404e-10) (4.05052e-10 1.40357e-10 -8.91415e-10) (-6.94163e-11 -3.8342e-11 -4.27241e-10) (-1.5456e-09 -2.65583e-10 -2.02044e-10) (-8.13889e-09 -1.29249e-09 1.4853e-09) (-6.43069e-09 -1.71924e-09 1.99332e-09) (-4.6148e-10 -3.83947e-10 2.99074e-10) (2.4494e-10 -1.38733e-10 -4.66337e-11) (1.41514e-09 -1.71719e-10 -9.49114e-10) (1.13475e-09 8.84362e-11 -1.56743e-09) (2.52805e-10 2.7921e-10 -1.04764e-09) (-4.62871e-12 2.29875e-10 -2.96457e-10) (2.83009e-11 1.54533e-10 3.45022e-12) (2.01344e-10 3.11791e-10 2.88222e-10) (3.60726e-10 4.37933e-10 5.00522e-10) (1.73904e-10 3.63221e-10 2.31652e-10) (-2.88622e-11 2.74363e-10 3.3282e-11) (-2.04639e-10 2.12361e-10 -2.2463e-11) (-3.55609e-10 5.20925e-11 -7.58797e-12) (-4.93611e-10 -1.72625e-10 -1.29323e-11) (-4.88549e-10 -2.81753e-10 -8.4775e-11) (-3.36298e-10 -1.86487e-10 -1.21908e-10) (-1.63985e-10 -8.32871e-11 -8.82378e-11) (-4.07415e-11 -3.22176e-11 -3.21245e-11) (8.02542e-13 -8.28588e-12 -2.7571e-12) (5.33955e-11 -1.86123e-11 2.62393e-11) (3.05239e-10 -1.7009e-11 1.93175e-10) (4.23879e-10 -5.18871e-11 2.75134e-10) (1.07389e-10 -8.81992e-11 7.49221e-11) (-1.00912e-10 -1.54552e-10 -1.99386e-11) (-8.118e-10 -3.48208e-10 -2.83905e-10) (-5.70174e-10 -6.55753e-11 -2.56455e-10) (-4.35278e-11 1.94209e-11 -4.47265e-11) (1.81849e-11 1.74399e-11 -1.41756e-11) (7.68071e-11 2.6978e-11 2.08111e-11) (2.94041e-10 4.79227e-12 3.09891e-10) (8.93197e-10 -2.03992e-10 1.31187e-09) (1.73145e-10 -1.13798e-10 4.9099e-10) (3.73221e-11 2.45293e-13 6.16328e-11) (1.96173e-10 9.89463e-11 -1.50679e-10) (8.30159e-10 4.54004e-10 -1.20957e-09) (3.08138e-10 2.77504e-10 -8.47006e-10) (-1.92686e-10 4.89692e-11 -9.62569e-11) (-3.47889e-09 -1.73874e-10 7.99965e-10) (-5.95936e-09 -1.18718e-09 1.69608e-09) (-1.0654e-09 -7.3529e-10 3.41314e-10) (1.54602e-10 -2.7511e-10 -3.03159e-11) (1.10879e-09 -3.73309e-10 -4.8518e-10) (1.19271e-09 -8.11554e-11 -9.41365e-10) (3.92584e-10 6.43853e-11 -7.23077e-10) (-1.5055e-11 6.41953e-11 -2.73014e-10) (-6.19649e-11 3.48995e-11 -4.39228e-11) (-7.65121e-11 4.99709e-11 3.66576e-11) (-5.26457e-11 1.11334e-10 1.13907e-10) (4.83997e-11 2.74261e-10 1.65035e-10) (1.83883e-10 5.38359e-10 1.45185e-10) (1.2005e-10 5.22484e-10 4.57743e-11) (-2.82597e-11 2.0208e-10 1.16218e-11) (-6.24187e-11 3.94323e-11 1.13374e-11) (-1.43507e-10 -2.96444e-11 8.82693e-12) (-2.4517e-10 -1.1173e-10 -2.50718e-11) (-2.74954e-10 -1.27009e-10 -5.18666e-11) (-1.98822e-10 -1.07992e-10 -2.5613e-11) (-5.67019e-11 -7.48819e-11 1.35781e-11) (4.39354e-11 -8.88033e-11 5.10654e-11) (4.03638e-10 -1.62073e-10 1.93685e-10) (9.30328e-10 -1.05155e-10 3.21168e-10) (6.00481e-10 -5.49989e-11 1.34713e-10) (6.84057e-12 -1.70001e-11 -6.94451e-12) (-1.68185e-09 -5.23348e-10 -4.58429e-10) (-6.77124e-09 -1.17149e-09 -9.98932e-10) (-3.11737e-09 -3.30688e-10 -1.60333e-10) (-6.38171e-11 3.14654e-12 7.94406e-12) (1.46497e-10 4.23335e-11 2.27471e-11) (7.34462e-10 1.3021e-10 1.67075e-10) (8.66067e-10 3.49655e-11 4.7296e-10) (5.48988e-10 -1.20718e-10 6.82695e-10) (1.40427e-10 -5.52612e-11 3.22474e-10) (7.94328e-12 -1.63893e-12 1.25262e-11) (7.97169e-11 5.65575e-11 -1.57632e-10) (2.49796e-10 2.62434e-10 -6.0343e-10) (1.03387e-11 1.08469e-10 -1.24136e-10) (-3.80512e-10 1.27254e-10 1.17874e-10) (-2.14824e-09 -8.90993e-11 7.72279e-10) (-1.02958e-09 -5.24992e-10 2.59283e-10) (1.37018e-11 -5.09252e-10 -5.04039e-11) (5.30798e-10 -5.90981e-10 -2.33563e-10) (3.53974e-10 -1.53233e-10 -2.40842e-10) (1.36918e-10 2.41565e-11 -2.23542e-10) (4.22256e-11 6.30013e-11 -2.07234e-10) (-2.85772e-12 2.59953e-11 -5.3085e-11) (-1.72724e-11 7.69115e-12 3.68283e-12) (-2.55597e-10 1.94399e-11 1.549e-10) (-5.7508e-10 6.63092e-11 2.56358e-10) (-2.42843e-10 1.52051e-10 5.31844e-11) (1.55941e-11 3.4437e-10 -3.62399e-11) (4.33042e-10 8.19771e-10 -6.64674e-11) (3.75591e-10 5.61684e-10 4.94056e-11) (6.53483e-11 1.03519e-10 4.13262e-11) (-9.56583e-13 1.44706e-12 2.71473e-12) (-3.53641e-11 -1.68915e-11 2.31179e-12) (-1.28588e-10 -7.03294e-11 3.20882e-12) (-1.19193e-10 -1.34222e-10 5.45263e-11) (3.10489e-11 -3.18505e-10 1.89128e-10) (4.90718e-10 -5.92347e-10 3.94586e-10) (7.37135e-10 -3.64458e-10 3.25232e-10) (5.67328e-10 -2.67605e-11 1.22262e-10) (1.46132e-10 3.83491e-11 -3.51843e-11) (-1.35042e-10 1.4435e-11 -1.46795e-10) (-4.2459e-09 -4.55915e-10 -1.16288e-09) (-8.9032e-09 -1.35246e-09 -3.91501e-10) (-2.69353e-09 -5.6418e-10 3.39063e-10) (-3.79087e-11 -1.7095e-11 4.63309e-12) (1.18017e-10 3.14212e-12 -7.04426e-11) (4.99143e-10 5.80358e-11 -1.7266e-10) (5.07958e-10 3.02422e-11 8.27146e-11) (4.07165e-10 -3.51071e-11 3.90155e-10) (4.66271e-10 -1.70721e-10 7.74416e-10) (9.68959e-11 -5.01641e-11 1.95173e-10) (4.10566e-12 1.47597e-12 1.26049e-13) (6.24738e-12 3.35689e-11 -2.5089e-11) (-5.44384e-11 8.22541e-11 3.25861e-12) (-4.20975e-10 1.65486e-10 1.60839e-10) (-3.95691e-10 -6.78069e-11 1.06615e-10) (-6.26441e-11 -3.20847e-10 -3.5179e-11) (3.1431e-10 -9.28018e-10 -2.39346e-10) (8.8559e-11 -3.32734e-10 -1.42399e-10) (-2.18012e-11 -1.57629e-11 -3.19584e-11) (-3.69984e-11 2.94207e-11 -3.4768e-11) (-2.77143e-12 2.69339e-11 -1.38531e-11) (1.40345e-11 2.0764e-11 2.16888e-12) (1.91654e-13 7.31602e-12 1.09271e-11) (-2.23548e-10 -1.1179e-11 8.03227e-11) (-1.54752e-09 -1.44014e-10 9.9093e-13) (-1.33126e-09 6.91936e-11 -3.06481e-10) (-1.03726e-10 1.47831e-10 -9.9815e-11) (5.39109e-10 6.67899e-10 -6.44645e-11) (1.71152e-09 1.32655e-09 3.21618e-10) (1.23138e-09 7.55318e-10 4.01484e-10) (2.48323e-10 1.20061e-10 1.00023e-10) (2.31465e-12 3.57687e-13 2.40683e-12) (-2.03427e-11 -2.76608e-11 1.76656e-11) (-1.29215e-11 -2.89314e-10 1.91375e-10) (3.09874e-10 -9.86155e-10 6.08808e-10) (1.93609e-10 -6.34803e-10 3.59191e-10) (1.33292e-12 -2.84293e-11 1.76285e-11) (3.11854e-12 1.64893e-11 -1.2845e-11) (1.99394e-11 1.21625e-10 -1.63346e-10) (-2.45504e-10 9.66787e-11 -2.81103e-10) (-2.23106e-09 -1.99266e-10 -2.85689e-10) (-3.52681e-09 -8.05141e-10 6.78436e-10) (-8.20847e-10 -3.40134e-10 1.96412e-10) (-2.52207e-11 -4.79947e-11 -1.14083e-10) (5.57961e-10 -5.17427e-12 -1.17835e-09) (1.17672e-09 1.38128e-10 -1.27598e-09) (7.43273e-10 5.52464e-11 -1.89046e-10) (6.0088e-10 -5.37878e-11 4.23768e-10) (7.63841e-10 -1.96172e-10 9.70823e-10) (2.77216e-10 -2.47323e-10 6.99637e-10) (2.17374e-11 -5.12595e-11 2.52372e-10) (-5.73055e-11 5.40257e-11 1.41405e-10) (-2.44368e-10 1.89514e-10 2.02534e-10) (-2.55472e-10 1.02183e-10 1.00167e-10) (-3.31593e-11 -3.18489e-11 -9.04516e-12) (1.03632e-10 -5.13721e-10 -2.26312e-10) (1.42939e-13 -8.14332e-10 -3.98457e-10) (-4.35407e-10 -3.6561e-10 -2.23871e-10) (-6.80667e-10 -1.82964e-11 -4.73405e-11) (-1.58703e-10 8.71903e-11 6.79405e-11) (5.29492e-11 9.55554e-11 1.1227e-10) (2.33567e-10 1.4012e-10 1.8749e-10) (1.91128e-11 1.53547e-11 2.01871e-11) (-2.79942e-10 -3.14344e-11 -4.66435e-11) (-2.52494e-09 -4.56252e-10 -6.91236e-10) (-1.88939e-09 -2.62423e-10 -6.64462e-10) (-6.96108e-11 3.4255e-11 -4.83614e-11) (4.80447e-10 4.21242e-10 5.6923e-11) (2.96386e-09 1.7961e-09 7.73557e-10) (3.73822e-09 1.89302e-09 1.0292e-09) (1.62131e-09 7.27141e-10 3.8911e-10) (1.92877e-10 6.31617e-11 4.97054e-11) (3.18174e-11 -3.86699e-11 3.6075e-11) (1.05503e-10 -5.6452e-10 3.44319e-10) (-2.37131e-10 -1.12022e-09 5.9267e-10) (-8.32714e-10 -6.34368e-10 3.32282e-10) (-5.46653e-10 -1.33476e-11 5.31711e-13) (-8.02256e-11 1.01457e-10 -1.07141e-10) (5.13151e-11 1.47514e-10 -2.31024e-10) (-3.58595e-11 3.27431e-11 -7.03215e-11) (-4.56926e-10 -6.63001e-11 6.29934e-11) (-9.37732e-10 -3.50088e-10 2.303e-10) (-4.24483e-10 -2.48877e-10 -2.69298e-10) (-5.31556e-11 -3.1656e-10 -1.91645e-09) (1.69385e-09 -1.21854e-10 -3.71381e-09) (2.61119e-09 1.91959e-10 -2.32482e-09) (1.93565e-09 2.73359e-10 -3.87065e-10) (1.22789e-09 8.51506e-11 5.79315e-10) (1.08873e-09 3.06383e-11 1.20416e-09) (3.74969e-10 -2.87271e-10 1.18472e-09) (-2.36509e-10 -2.39422e-10 1.32573e-09) (-6.07863e-10 9.37832e-11 1.32264e-09) (-5.10745e-10 2.33171e-10 6.84074e-10) (-9.94317e-11 3.24397e-11 6.56664e-11) (-8.62614e-12 -4.18537e-11 -3.99752e-11) (1.63473e-11 -5.57711e-10 -5.08218e-10) (-7.07922e-10 -8.99778e-10 -7.47343e-10) (-2.8828e-09 -7.93132e-10 -5.3153e-10) (-2.65056e-09 1.65769e-11 3.74291e-10) (-3.34997e-10 1.42461e-10 3.61995e-10) (2.58196e-10 2.01688e-10 4.4478e-10) (4.23689e-10 2.01948e-10 2.89902e-10) (6.578e-12 8.60312e-12 1.03081e-12) (-6.14288e-10 -7.56243e-11 -2.54363e-10) (-2.83014e-09 -7.15207e-10 -9.01211e-10) (-1.26029e-09 -3.59555e-10 -3.4602e-10) (-6.52096e-12 2.50359e-12 -7.55641e-13) (6.80855e-10 4.60854e-10 2.2595e-10) (3.64369e-09 1.98472e-09 9.8899e-10) (5.26471e-09 2.50301e-09 9.86147e-10) (3.1812e-09 1.34868e-09 2.62629e-10) (7.92952e-10 2.17753e-10 1.43374e-11) (1.19619e-10 -7.59427e-11 4.02296e-11) (-1.47528e-10 -5.539e-10 2.72205e-10) (-2.16256e-09 -1.54069e-09 8.69412e-10) (-3.75852e-09 -8.77053e-10 7.11515e-10) (-1.01947e-09 1.01531e-10 -3.71765e-11) (-3.3964e-11 7.17355e-11 -8.95351e-11) (8.07873e-11 8.24289e-11 -1.30241e-10) (4.48218e-12 6.38286e-12 -8.0004e-12) (-3.1141e-11 -1.20065e-11 7.4242e-12) (-2.40335e-10 -1.51992e-10 -1.29212e-10) (-5.49111e-10 -5.83007e-10 -1.63618e-09) (6.71196e-10 -1.04591e-09 -4.89833e-09) (2.73491e-09 -7.78839e-10 -5.28103e-09) (2.61992e-09 1.20859e-10 -2.29283e-09) (2.05736e-09 5.99194e-10 -2.9029e-10) (1.75243e-09 5.42639e-10 8.1195e-10) (2.07636e-09 3.73377e-10 2.19768e-09) (8.13843e-10 -1.72161e-10 1.98267e-09) (-1.18411e-10 -2.43709e-10 2.16806e-09) (-4.33777e-10 5.65822e-12 1.74606e-09) (-2.1387e-10 8.18463e-11 5.72878e-10) (-1.51779e-11 2.8145e-12 1.44128e-11) (-1.13193e-11 -8.07981e-11 -1.44089e-10) (-2.49912e-10 -6.01382e-10 -8.65861e-10) (-2.51577e-09 -1.1815e-09 -1.36246e-09) (-8.53089e-09 -1.09006e-09 -7.03568e-10) (-4.95028e-09 -9.44442e-12 9.30858e-10) (-3.66455e-10 8.7789e-11 5.39773e-10) (4.06885e-10 1.99882e-10 6.04295e-10) (3.17434e-10 1.61581e-10 1.92323e-10) (-4.18281e-12 8.56988e-12 -6.59723e-12) (-8.37433e-10 -1.31585e-10 -3.31461e-10) (-2.06273e-09 -6.7772e-10 -4.78287e-10) (-5.5583e-10 -2.37448e-10 -3.16696e-11) (1.77951e-12 2.79847e-12 6.67067e-12) (6.94894e-10 4.35511e-10 2.62749e-10) (2.98287e-09 1.59736e-09 5.81248e-10) (4.48572e-09 2.05904e-09 1.93862e-10) (3.199e-09 1.24584e-09 -3.19515e-10) (9.12554e-10 2.02235e-10 -1.70931e-10) (2.90141e-11 -3.35482e-11 4.70523e-12) (-8.38455e-10 -6.28894e-10 3.68812e-10) (-4.73864e-09 -1.53204e-09 1.38403e-09) (-3.71745e-09 -4.24591e-10 6.68738e-10) (-4.13186e-10 5.32014e-11 -4.52651e-11) (3.03306e-12 2.09533e-11 -3.57245e-11) (4.47226e-11 2.09953e-11 -2.96479e-11) (1.23985e-11 2.58411e-12 -6.74858e-13) (-6.1913e-13 -5.77656e-12 -4.9011e-12) (-1.40611e-10 -2.65302e-10 -5.64501e-10) (-6.32411e-11 -1.19401e-09 -3.96573e-09) (1.37622e-09 -1.6312e-09 -6.70539e-09) (1.17456e-09 -5.5751e-10 -3.39717e-09) (2.93774e-10 1.01629e-10 -3.77424e-10) (6.91096e-10 4.58254e-10 2.23374e-10) (2.19381e-09 9.87231e-10 1.61307e-09) (2.56446e-09 6.13286e-10 2.65774e-09) (1.22871e-09 4.51002e-11 2.09329e-09) (4.60226e-10 -1.15789e-10 1.54822e-09) (1.17037e-10 -4.625e-11 7.45142e-10) (-4.78592e-12 2.67519e-12 1.0261e-10) (-2.61482e-12 -1.02608e-12 -5.70314e-12) (-1.10889e-12 -1.35166e-10 -3.93559e-10) (-5.20953e-10 -4.84213e-10 -9.9163e-10) (-5.2402e-09 -1.14862e-09 -1.78476e-09) (-1.38755e-08 -1.08239e-09 -9.7127e-10) (-5.29493e-09 -1.82513e-10 6.21833e-10) (-1.91483e-10 1.10685e-11 3.24756e-10) (4.23694e-10 1.5302e-10 5.78479e-10) (1.94139e-10 1.10582e-10 1.45636e-10) (-1.19078e-11 8.21781e-12 -5.37328e-12) (-6.29648e-10 -1.13411e-10 -1.70473e-10) (-1.03303e-09 -4.0019e-10 -7.73461e-11) (-1.94944e-10 -1.14579e-10 5.73486e-11) (1.21766e-11 3.24541e-12 2.15106e-11) (4.68347e-10 2.64679e-10 1.41554e-10) (1.60229e-09 8.5101e-10 8.60036e-11) (2.23886e-09 1.04629e-09 -2.88482e-10) (1.5216e-09 6.09346e-10 -4.34641e-10) (2.71895e-10 7.55091e-11 -1.07567e-10) (-1.56014e-11 -1.1947e-11 6.52653e-12) (-1.31267e-09 -4.56585e-10 5.59553e-10) (-3.10906e-09 -6.60372e-10 1.08906e-09) (-1.21191e-09 -1.38472e-10 2.15796e-10) (-6.04493e-11 -1.73889e-12 -2.03469e-11) (3.11248e-12 2.63362e-13 -4.1996e-12) (1.54028e-11 -8.33709e-14 2.79252e-12) (1.01463e-11 -1.95393e-12 1.5989e-12) (2.19171e-11 -3.90095e-11 -9.93082e-11) (5.71417e-11 -5.94259e-10 -2.10998e-09) (4.65277e-10 -1.46585e-09 -5.6791e-09) (4.6663e-10 -8.71409e-10 -3.79091e-09) (3.9821e-11 -2.1594e-11 -3.4019e-10) (6.05692e-11 7.72604e-11 7.86639e-11) (1.0747e-09 7.88045e-10 1.36932e-09) (2.76889e-09 1.19352e-09 2.69202e-09) (1.46683e-09 4.70289e-10 1.44996e-09) (7.05545e-10 6.15221e-11 7.63986e-10) (2.28546e-10 -4.70447e-11 3.13717e-10) (1.85636e-11 -1.22782e-11 4.03604e-11) (-7.74218e-13 -4.47155e-13 -1.38314e-12) (9.93964e-12 -1.83105e-11 -1.47885e-10) (6.56434e-11 -1.38247e-10 -5.74613e-10) (-5.64496e-10 -2.39994e-10 -6.86696e-10) (-6.39713e-09 -7.58358e-10 -1.5602e-09) (-1.30843e-08 -1.00824e-09 -1.45153e-09) (-3.72369e-09 -2.95251e-10 7.15551e-12) (-5.22684e-11 -1.75829e-13 9.77237e-11) (3.64691e-10 1.14187e-10 3.87794e-10) (1.62909e-10 8.67254e-11 1.23691e-10) (-5.61914e-12 4.62832e-12 8.21498e-13) (-2.83055e-10 -4.86529e-11 -2.02476e-11) (-3.85223e-10 -1.69132e-10 6.02495e-11) (-7.21624e-11 -5.9907e-11 5.8288e-11) (7.86476e-12 -4.02847e-13 1.60687e-11) (1.31868e-10 7.66717e-11 2.35792e-11) (4.17817e-10 2.52538e-10 -7.11387e-11) (5.46036e-10 3.06834e-10 -2.18714e-10) (3.59796e-10 1.92718e-10 -1.96405e-10) (3.27534e-11 2.31518e-11 -1.90782e-11) (-3.38751e-11 -2.01534e-12 3.0488e-11) (-5.11118e-10 -1.1675e-10 4.18237e-10) (-6.16058e-10 -1.49743e-10 3.67613e-10) (-1.18964e-10 -4.24277e-11 2.10554e-11) (-3.75469e-12 -7.02422e-12 -3.58168e-12) (1.40101e-12 -4.20407e-12 2.2597e-12) (-8.7777e-13 -2.64678e-12 4.53331e-12) (-2.85043e-12 -5.14032e-12 -1.44613e-11) (5.12325e-11 -1.91952e-10 -1.03405e-09) (3.60943e-10 -8.30037e-10 -3.91294e-09) (2.51565e-10 -7.6181e-10 -3.11301e-09) (4.99475e-12 -7.61514e-11 -3.59312e-10) (4.71491e-11 2.95298e-11 7.41602e-11) (1.34446e-09 6.90476e-10 2.2699e-09) (2.74141e-09 1.32808e-09 4.02759e-09) (2.34421e-09 1.07173e-09 2.75971e-09) (3.54076e-10 1.62086e-10 3.01583e-10) (6.27185e-11 1.01898e-11 3.10338e-11) (4.42712e-12 -2.51804e-12 -2.47596e-12) (-3.78885e-12 -9.7391e-12 -3.01067e-11) (4.42014e-12 -1.73259e-11 -1.21991e-10) (1.24542e-10 -4.24818e-11 -3.28405e-10) (5.77301e-11 -5.11306e-11 -3.29239e-10) (-5.10199e-10 -8.22483e-11 -3.7137e-10) (-5.45882e-09 -4.91302e-10 -1.26413e-09) (-8.88225e-09 -8.73786e-10 -1.44604e-09) (-2.02277e-09 -2.32798e-10 -6.96828e-11) (-7.70488e-12 1.41255e-12 3.23047e-11) (2.88187e-10 8.33336e-11 1.87782e-10) (1.63062e-10 7.36922e-11 6.78789e-11) (6.36027e-13 4.03858e-12 1.84443e-12) (-5.52134e-11 -6.85652e-12 1.37559e-11) (-8.88639e-11 -5.28437e-11 5.16172e-11) (-3.71885e-11 -3.69044e-11 4.28837e-11) (-4.45393e-12 -1.6046e-12 5.68457e-12) (9.04451e-13 3.95544e-12 -7.78106e-13) (2.71429e-11 3.31134e-11 -2.90066e-11) (9.88053e-11 7.36869e-11 -9.03694e-11) (9.68807e-11 7.19914e-11 -6.81917e-11) (2.04729e-11 2.21668e-11 3.1488e-12) (1.45686e-11 2.10472e-11 9.67943e-11) (-1.46072e-11 -1.97019e-11 2.56545e-10) (-1.53782e-11 -3.08272e-11 6.88184e-11) (-2.04114e-12 -1.82884e-11 3.17297e-12) (-8.15538e-12 -2.41207e-11 4.39042e-12) (-7.64743e-11 -3.86208e-11 3.37973e-11) (-1.16723e-10 -2.27138e-11 -2.24046e-11) (-1.08037e-10 -8.22168e-11 -5.36578e-10) (3.16045e-10 -4.55825e-10 -2.75045e-09) (3.143e-10 -5.31464e-10 -2.48938e-09) (-2.92506e-12 -9.45522e-11 -3.43441e-10) (1.53224e-11 2.63831e-12 2.81723e-11) (1.21431e-09 3.39874e-10 1.9775e-09) (3.73086e-09 1.0278e-09 5.31559e-09) (3.07648e-09 1.08897e-09 3.94447e-09) (1.22577e-09 5.97491e-10 1.38574e-09) (5.60392e-11 4.0171e-11 1.15536e-11) (2.19414e-11 9.07638e-12 -4.21171e-11) (1.30578e-11 -1.7796e-11 -1.59202e-10) (1.58964e-11 -3.53532e-11 -2.06896e-10) (7.83594e-11 -2.959e-11 -1.98387e-10) (1.2361e-10 -2.09455e-11 -2.08838e-10) (6.46181e-12 -5.15157e-12 -1.02946e-10) (-5.35345e-10 -4.41747e-11 -2.91306e-10) (-4.16398e-09 -3.92535e-10 -1.11418e-09) (-5.06333e-09 -5.71778e-10 -7.76885e-10) (-7.28047e-10 -1.02468e-10 6.76007e-11) (8.95861e-12 2.19588e-12 2.02936e-11) (2.20964e-10 5.73216e-11 6.04791e-11) (1.61808e-10 6.71849e-11 1.04865e-11) (1.53207e-11 1.25648e-11 3.32389e-12) (-5.66715e-13 1.33565e-13 5.01508e-12) (-1.10965e-11 -1.78177e-11 2.86125e-11) (-5.87672e-11 -3.20862e-11 3.43819e-11) (-1.21105e-10 -1.29758e-11 8.80727e-12) (-4.77707e-11 7.71284e-12 -1.37568e-11) (-1.06715e-12 5.24215e-12 -1.21685e-11) (3.89736e-11 2.44142e-11 -3.92869e-11) (6.23808e-11 4.51225e-11 -1.84378e-11) (1.49471e-10 8.33316e-11 9.33345e-11) (4.44644e-10 1.07852e-10 4.76251e-10) (3.72194e-10 -1.64688e-11 4.2568e-10) (7.4476e-11 -4.36309e-11 6.41542e-11) (-4.32485e-12 -2.91254e-11 6.32552e-12) (-2.44097e-10 -1.12288e-10 4.45164e-11) (-6.44022e-10 -1.15241e-10 -1.5121e-11) (-3.13588e-10 -7.60482e-11 -3.69102e-10) (7.39856e-11 -2.94663e-10 -1.87355e-09) (3.63177e-10 -4.12357e-10 -2.24309e-09) (5.70941e-12 -1.0219e-10 -4.1747e-10) (7.8372e-13 -1.20107e-12 4.50986e-12) (5.25798e-10 7.95709e-11 1.03544e-09) (2.47175e-09 3.7906e-10 3.65744e-09) (2.60904e-09 5.25611e-10 3.49566e-09) (1.21972e-09 4.47481e-10 1.57162e-09) (3.35716e-10 2.06795e-10 3.39841e-10) (5.84839e-11 3.71609e-11 -5.10435e-11) (8.85958e-11 2.15203e-11 -2.3293e-10) (8.42273e-11 -2.65296e-11 -3.11158e-10) (7.56821e-11 -2.95736e-11 -1.81734e-10) (8.64848e-11 -1.69331e-11 -1.10584e-10) (6.41676e-11 -2.57685e-12 -8.45175e-11) (-9.20622e-12 -5.89672e-13 -5.54271e-11) (-5.59889e-10 -4.54649e-11 -3.11584e-10) (-2.72817e-09 -2.55771e-10 -7.20699e-10) (-1.93337e-09 -2.28632e-10 -5.40062e-11) (-1.0731e-10 -2.26314e-11 6.6996e-11) (4.3945e-11 4.47458e-12 3.02016e-11) (1.99171e-10 4.67903e-11 -7.40542e-12) (1.87877e-10 6.88865e-11 -3.11472e-11) (8.24955e-11 3.37783e-11 9.40123e-12) (3.82403e-11 2.18906e-12 3.01391e-11) (-3.09509e-12 -9.35793e-12 1.69616e-11) (-1.67571e-10 -4.24899e-11 2.34812e-11) (-3.59335e-10 -2.87667e-11 -2.9257e-11) (-7.39208e-11 -3.03446e-12 -2.20552e-11) (6.36267e-13 3.1024e-13 -4.5107e-12) (2.95911e-11 1.21727e-11 -1.31576e-11) (1.59011e-10 6.65002e-11 3.89919e-11) (7.85004e-10 1.99087e-10 4.4442e-10) (1.2973e-09 1.59744e-10 8.49177e-10) (6.24374e-10 -2.57973e-11 3.78235e-10) (3.77899e-11 -2.47885e-11 2.38881e-11) (-1.33432e-10 -7.08632e-11 2.04547e-11) (-1.03287e-09 -2.09756e-10 1.50996e-11) (-7.41983e-10 -1.15518e-10 -3.43706e-10) (-1.89596e-10 -1.78978e-10 -1.12506e-09) (3.60262e-10 -3.41054e-10 -2.00905e-09) (7.40878e-11 -1.34977e-10 -6.68429e-10) (-7.08026e-13 -1.67839e-12 -2.54771e-12) (1.34243e-10 9.23363e-13 3.81366e-10) (1.18801e-09 9.20749e-11 2.02645e-09) (1.54062e-09 1.35429e-10 2.24452e-09) (8.4161e-10 1.65209e-10 1.22163e-09) (3.0178e-10 1.29838e-10 3.88811e-10) (9.04256e-11 6.00625e-11 4.60104e-11) (3.74034e-10 8.33823e-11 -2.12653e-10) (4.51648e-10 3.29327e-11 -4.06767e-10) (3.73657e-10 -1.99527e-11 -3.18076e-10) (3.03501e-10 -2.40003e-11 -1.72849e-10) (3.05458e-10 -1.4161e-11 -1.33494e-10) (2.36455e-10 1.35005e-12 -1.25916e-10) (4.89656e-11 -2.2418e-12 -7.26044e-11) (-9.7019e-11 -1.45904e-11 -1.10121e-10) (-4.97621e-10 -5.68068e-11 -1.28729e-10) (-1.48663e-10 -2.87287e-11 5.83939e-11) (3.06593e-11 -9.48047e-12 6.14801e-11) (2.4536e-10 1.04046e-11 5.94153e-11) (4.71797e-10 7.14307e-11 -6.18771e-11) (5.35244e-10 1.1416e-10 -6.89443e-11) (4.68445e-10 8.37866e-11 4.41834e-11) (2.32242e-10 2.30029e-12 7.33569e-11) (5.35437e-12 -3.78724e-12 4.78596e-12) (-6.67467e-11 -1.60183e-11 -2.83048e-12) (-1.3903e-10 -1.59127e-11 -2.32844e-11) (-4.25355e-12 -1.91097e-12 -2.77958e-12) (1.99477e-11 -1.64586e-12 -5.84756e-12) (1.66439e-10 2.6303e-11 7.52875e-12) (7.92857e-10 1.44073e-10 2.32303e-10) (1.86087e-09 2.48855e-10 7.20221e-10) (1.9317e-09 1.58251e-10 7.61103e-10) (7.94664e-10 -7.33266e-12 2.56874e-10) (4.5539e-11 -1.60151e-11 1.66543e-11) (-7.14102e-11 -3.13747e-11 1.25749e-11) (-3.36363e-10 -7.23868e-11 -6.95847e-11) (-1.34797e-10 -6.91565e-11 -3.72775e-10) (4.51105e-10 -2.44001e-10 -1.43435e-09) (5.46247e-10 -2.45518e-10 -1.17752e-09) (9.27708e-11 -4.34347e-11 -1.49765e-10) (5.81784e-11 -1.01658e-11 4.71805e-11) (7.0288e-10 -2.33244e-11 9.11631e-10) (1.4048e-09 -2.08523e-11 1.6206e-09) (1.11144e-09 -1.5021e-12 1.18642e-09) (6.37639e-10 5.21631e-11 6.33085e-10) (3.49181e-10 7.37991e-11 2.23165e-10) (2.72313e-10 7.88172e-11 4.66471e-12) (1.73584e-09 1.35886e-10 -5.05358e-10) (1.91343e-09 5.21863e-11 -6.81974e-10) (1.86573e-09 -1.72664e-11 -5.05417e-10) (1.92373e-09 -3.7931e-11 -3.43877e-10) (2.11673e-09 -1.63897e-11 -3.91965e-10) (1.86157e-09 -6.31126e-12 -5.23063e-10) (8.10527e-10 -2.01548e-11 -4.15586e-10) (7.85181e-11 -8.68121e-12 -1.02289e-10) (1.22341e-13 -6.69207e-13 -7.52788e-13) (8.75387e-11 -1.40876e-11 8.84174e-11) (7.8906e-10 -3.31984e-11 3.63817e-10) (1.70649e-09 3.28718e-11 2.13077e-10) (2.74705e-09 1.82308e-10 -7.92938e-11) (3.66467e-09 3.15457e-10 -1.44349e-11) (3.91303e-09 2.58423e-10 2.88606e-10) (2.3125e-09 2.02222e-11 2.42619e-10) (2.64164e-10 -2.35137e-11 1.15866e-11) (-8.40324e-12 -2.49254e-12 -4.05382e-12) (-2.567e-11 -5.59402e-12 -9.74752e-12) (5.27404e-12 -2.54588e-12 -1.92676e-12) (1.78672e-10 -1.11808e-11 2.12141e-12) (9.85912e-10 4.80972e-11 1.40765e-10) (3.00669e-09 2.02692e-10 6.56659e-10) (5.32139e-09 3.39307e-10 1.28069e-09) (5.98942e-09 2.88263e-10 1.33116e-09) (3.88445e-09 5.58891e-11 7.18863e-10) (9.38734e-10 -5.84338e-11 2.05358e-10) (2.65526e-11 -9.32729e-12 1.01081e-11) (4.74031e-12 -1.14847e-11 -3.50451e-11) (4.96104e-10 -1.24537e-10 -8.86882e-10) (1.38012e-09 -3.16572e-10 -1.84497e-09) (7.86525e-10 -1.9881e-10 -9.04878e-10) (2.30811e-10 -4.255e-11 -8.87524e-11) (5.29624e-10 -3.96913e-11 3.14646e-10) (1.49912e-09 -7.69914e-11 1.2318e-09) (1.68288e-09 -9.99628e-11 1.3408e-09) (1.35433e-09 -6.54572e-11 1.03307e-09) (1.07494e-09 1.86453e-13 6.83563e-10) (1.01692e-09 6.66427e-11 3.22399e-10) (1.28289e-09 1.28685e-10 -5.7716e-11) (1.32893e-09 3.54977e-11 -2.71812e-10) (1.64074e-09 9.67704e-12 -3.08772e-10) (2.14363e-09 -1.41818e-11 -2.69128e-10) (2.74845e-09 -3.71784e-11 -3.54459e-10) (3.13067e-09 -3.88075e-11 -6.98201e-10) (2.35405e-09 -4.64229e-11 -9.63484e-10) (7.66647e-10 -2.25345e-11 -5.70648e-10) (7.92869e-11 -7.97538e-13 -7.75286e-11) (7.48897e-11 -3.94229e-13 2.43081e-11) (8.48278e-10 -1.26619e-11 4.61883e-10) (2.20376e-09 -2.17176e-11 7.06471e-10) (4.02268e-09 6.01389e-11 4.76939e-10) (6.96256e-09 2.23748e-10 2.67886e-10) (1.04151e-08 3.77034e-10 5.51096e-10) (1.07447e-08 2.42456e-10 6.95163e-10) (4.21328e-09 -4.64977e-12 1.08907e-10) (9.92778e-11 -4.70263e-12 -2.45655e-11) (-1.71188e-10 -5.1087e-12 -5.61524e-11) (-2.8145e-11 -4.00251e-12 -8.04028e-12) (1.00291e-11 -2.65309e-12 6.0533e-13) (2.8381e-10 -1.25442e-11 5.34325e-11) (1.63877e-09 2.1415e-11 3.26641e-10) (4.60942e-09 8.10259e-11 9.4574e-10) (8.37888e-09 1.92332e-10 1.80934e-09) (1.0174e-08 1.8493e-10 2.20892e-09) (6.54224e-09 2.21112e-11 1.56795e-09) (1.32187e-09 -3.86548e-11 4.35196e-10) (7.15731e-11 -5.43389e-12 7.51707e-12) (1.85135e-10 -2.28383e-11 -2.61909e-10) (8.63165e-10 -1.08041e-10 -1.14879e-09) (6.27867e-10 -1.22559e-10 -8.80594e-10) (1.3466e-10 -3.08153e-11 -1.50999e-10) (9.36331e-11 -7.67436e-12 2.26851e-11) (5.0473e-10 -1.13206e-11 3.66783e-10) (8.0005e-10 -3.26782e-11 5.70657e-10) (6.80318e-10 -4.34913e-11 4.6496e-10) (5.62169e-10 -3.20482e-11 3.74769e-10) (5.46809e-10 -1.62139e-11 2.70618e-10) (6.77432e-10 5.95125e-12 1.24765e-10) (9.86414e-10 3.08007e-11 -7.96837e-11) (2.67225e-11 8.26457e-14 5.2719e-12) (5.85899e-11 2.4389e-13 4.22115e-12) (1.34514e-10 -4.51931e-14 -2.55928e-12) (2.04743e-10 -1.91507e-12 -3.00233e-11) (1.93392e-10 -3.7418e-12 -8.00975e-11) (9.78706e-11 -3.04192e-12 -1.01639e-10) (1.76261e-11 5.51674e-14 -6.13601e-11) (3.53445e-12 3.50761e-13 -7.06431e-12) (3.1762e-11 8.69052e-13 7.07036e-12) (1.71544e-10 6.62098e-13 5.96764e-11) (3.08655e-10 1.42807e-13 6.81988e-11) (5.46232e-10 4.96276e-12 4.7816e-11) (1.00094e-09 1.20589e-11 4.86755e-11) (1.44057e-09 1.5615e-11 9.30413e-11) (1.035e-09 2.29583e-12 3.31318e-11) (1.30806e-10 -5.64709e-13 -1.95343e-11) (-1.64439e-11 -1.04791e-13 -1.27113e-11) (-4.09837e-11 -4.3095e-14 -1.68916e-11) (-3.34511e-12 -3.1903e-13 -7.90727e-13) (2.75232e-13 -1.10691e-13 2.34029e-13) (2.08624e-11 -1.03314e-12 6.16805e-12) (1.31892e-10 -5.829e-13 2.40746e-11) (3.51981e-10 -1.80847e-12 7.52646e-11) (6.31508e-10 1.95575e-12 1.9268e-10) (6.98173e-10 9.1783e-13 2.87275e-10) (3.34396e-10 -9.96311e-13 1.95792e-10) (4.56729e-11 -2.21847e-13 3.85511e-11) (5.26566e-12 5.97163e-14 3.26743e-13) (3.2392e-11 -6.33848e-13 -2.95898e-11) (3.58963e-11 -2.46886e-12 -4.4048e-11) (3.69965e-12 -9.67448e-13 -1.05652e-11) (7.15025e-14 -4.24066e-14 -1.9738e-13) (4.09715e-12 -9.73727e-14 2.16381e-12) (2.7908e-11 -3.83775e-13 8.56574e-12) (4.24679e-11 -1.12172e-12 5.26369e-12) (4.29178e-11 -1.84602e-12 2.51904e-12) (4.48081e-11 -2.00189e-12 7.93785e-12) (4.43664e-11 -2.19491e-12 1.4368e-11) (3.31661e-11 -1.37321e-12 1.2972e-11) (2.2776e-11 -4.48082e-13 7.79113e-12) (1.5917e-11 -5.96909e-10 8.54727e-11) (-2.01015e-11 -8.29033e-10 1.2299e-10) (-6.71209e-11 -3.6639e-10 8.25968e-11) (-2.89571e-11 -3.58669e-11 2.40364e-11) (-1.49298e-11 1.3149e-11 1.30209e-11) (-4.08793e-12 4.0399e-11 8.14861e-12) (1.83658e-11 3.64334e-11 -1.12391e-11) (3.99718e-11 2.66943e-11 -3.59517e-11) (2.0088e-11 1.8925e-12 -2.36156e-11) (-6.02676e-12 -1.40136e-11 -5.92989e-12) (-2.86e-10 -2.49854e-10 2.70133e-11) (-1.09786e-09 -7.14637e-10 1.15611e-10) (-7.77301e-10 -3.4713e-10 6.38873e-11) (-4.32282e-11 1.76329e-11 1.0958e-11) (3.33916e-10 5.55787e-10 1.24362e-10) (1.93855e-09 2.38961e-09 5.19631e-10) (1.9071e-09 2.54629e-09 5.84494e-10) (4.59857e-10 8.68625e-10 2.68353e-10) (-4.07133e-12 6.11684e-11 4.96656e-11) (-5.37463e-11 -3.92525e-11 3.42427e-11) (-1.1882e-10 -2.40918e-10 -2.36915e-11) (-7.82414e-11 -4.97392e-10 -2.7462e-10) (-1.5012e-11 -5.56656e-10 -4.78366e-10) (-7.90399e-11 -2.54434e-10 -2.52608e-10) (-1.0118e-10 -5.55856e-11 -5.14512e-11) (-1.43531e-10 1.20214e-11 2.19554e-11) (-1.14811e-10 6.20299e-11 6.43569e-11) (-2.92062e-11 5.81643e-11 4.6862e-11) (1.68539e-11 4.56957e-11 2.56518e-11) (4.14312e-11 3.71341e-11 6.7225e-12) (3.93951e-11 2.08918e-11 -1.57596e-11) (3.00368e-11 8.27022e-12 -4.06488e-11) (2.49207e-11 -3.33083e-12 -7.33274e-11) (2.12913e-11 -3.60178e-12 -6.20093e-11) (1.94633e-11 1.01336e-11 -2.36011e-11) (4.28492e-11 5.32324e-11 -4.54693e-12) (7.39199e-11 1.48003e-10 3.53728e-11) (3.00279e-11 9.35861e-11 3.1801e-11) (6.29964e-13 1.97276e-12 2.57974e-12) (4.12067e-13 -8.84974e-11 2.1202e-11) (-2.78844e-11 -2.29083e-10 6.27294e-11) (-3.07607e-10 -6.14685e-10 2.32766e-10) (-8.72943e-10 -7.66317e-10 4.37708e-10) (-1.21274e-09 -4.52399e-10 4.33724e-10) (-6.76695e-10 -2.61464e-11 1.21764e-10) (-9.60878e-11 4.85339e-11 -4.07494e-11) (7.99985e-11 1.05956e-10 -1.59343e-10) (5.63051e-10 2.15927e-10 -3.65931e-10) (6.49206e-10 1.10216e-10 -1.35774e-10) (1.37372e-10 -2.24711e-11 4.65349e-11) (-1.33655e-10 -1.64174e-10 1.06682e-10) (-2.30834e-09 -1.49066e-09 1.55045e-10) (-4.57195e-09 -2.38695e-09 -7.58759e-10) (-1.93264e-09 -5.72969e-10 -8.20565e-10) (-1.23443e-10 1.92323e-10 -2.29646e-10) (1.0085e-09 1.44015e-09 -2.47826e-10) (4.27398e-09 3.92685e-09 1.03529e-09) (5.56323e-09 4.32593e-09 2.73858e-09) (2.77486e-09 1.90245e-09 1.93974e-09) (4.39946e-10 1.45802e-10 3.78325e-10) (3.31405e-11 -8.40261e-11 1.25497e-11) (-1.91161e-10 -6.9984e-10 -3.17044e-10) (-1.00213e-09 -1.40388e-09 -8.1016e-10) (-1.62363e-09 -1.18913e-09 -6.00619e-10) (-1.31645e-09 -4.91618e-10 -5.94254e-11) (-6.09041e-10 -5.11028e-11 1.78516e-10) (-1.81839e-10 7.23516e-11 1.62284e-10) (-2.40758e-11 1.10946e-10 1.24482e-10) (7.10336e-11 1.67379e-10 8.33423e-11) (1.48491e-10 2.15268e-10 -1.43795e-11) (1.60745e-10 1.82478e-10 -1.30947e-10) (1.04291e-10 7.52391e-11 -1.60477e-10) (5.10615e-11 -6.00458e-12 -1.05182e-10) (3.12091e-11 -2.41427e-11 -4.49596e-11) (2.69746e-11 -9.6278e-12 -1.37766e-11) (4.56712e-11 1.518e-11 -6.14789e-12) (9.09184e-11 7.64018e-11 -5.23585e-12) (8.21419e-11 8.28755e-11 -4.77735e-12) (2.16635e-11 1.18331e-11 -2.96255e-13) (9.50594e-12 -1.9392e-11 4.55766e-12) (3.47648e-12 -2.62845e-11 9.73404e-12) (-1.89829e-10 -2.40768e-10 1.16154e-10) (-1.18499e-09 -7.15433e-10 5.02915e-10) (-2.09537e-09 -7.82597e-10 7.60744e-10) (-1.04382e-09 -2.93241e-10 2.99668e-10) (-4.8625e-11 -1.65334e-11 9.29879e-13) (8.06837e-11 -3.491e-12 -4.47937e-11) (6.56455e-10 2.17769e-11 -1.85944e-10) (7.30264e-10 4.9278e-11 -9.22589e-11) (1.40309e-10 1.05888e-11 3.15962e-12) (-2.00786e-11 -1.64185e-11 6.03005e-13) (-1.18362e-09 -7.0465e-10 -1.94747e-10) (-3.55279e-09 -1.97288e-09 -1.04346e-09) (-2.53116e-09 -9.90005e-10 -1.268e-09) (-5.03066e-10 1.56865e-10 -5.51246e-10) (1.57758e-10 8.78894e-10 -4.29889e-10) (1.59367e-09 2.65482e-09 9.45317e-11) (3.22584e-09 3.45082e-09 1.75743e-09) (3.18956e-09 2.19473e-09 2.59162e-09) (1.27471e-09 3.82231e-10 1.26255e-09) (1.01087e-10 -9.76469e-11 1.43376e-10) (-2.61912e-10 -4.67653e-10 -5.97755e-11) (-1.72734e-09 -1.61231e-09 -6.6072e-10) (-2.39754e-09 -1.65335e-09 -6.9707e-10) (-1.02144e-09 -5.06648e-10 -1.32974e-10) (-1.19723e-10 -9.86504e-12 3.07238e-11) (-5.68323e-12 5.38958e-11 4.5326e-11) (1.02546e-10 1.9062e-10 9.24186e-11) (2.31461e-10 2.91567e-10 5.8569e-11) (2.76608e-10 2.88516e-10 -2.70317e-11) (1.85489e-10 1.57799e-10 -7.10641e-11) (6.39284e-11 2.44166e-11 -3.88663e-11) (2.7065e-11 -1.92062e-11 -1.73091e-11) (3.37682e-11 -5.56191e-11 -1.47808e-11) (3.04879e-11 -3.67057e-11 -1.26488e-11) (2.3584e-11 -4.33253e-13 -1.28244e-11) (5.64092e-11 5.7165e-11 -3.33472e-11) (9.1221e-11 1.30319e-10 -4.51948e-11) (6.69236e-11 7.31239e-11 -1.98964e-11) (1.82654e-11 3.90182e-12 -4.99479e-13) (3.12178e-11 -8.80102e-11 3.91645e-11) (-9.52293e-11 -2.26245e-10 1.51501e-10) (-4.12992e-10 -3.55537e-10 4.0402e-10) (-6.35507e-10 -2.85239e-10 4.99103e-10) (-4.29425e-10 -1.18079e-10 2.2095e-10) (-1.36919e-10 -3.89681e-11 5.61881e-12) (-4.75276e-11 -4.06443e-11 -4.19577e-11) (-2.15832e-11 -7.64218e-11 -5.26211e-11) (-2.13602e-12 -5.00179e-11 -1.40069e-11) (1.04329e-12 -4.10416e-12 1.26319e-12) (1.38486e-13 1.53694e-13 3.42092e-13) (-9.84359e-13 -9.57444e-14 -7.52658e-13) (-2.04769e-11 -1.1382e-11 -2.15027e-11) (-5.62764e-11 -2.53166e-11 -6.06432e-11) (-6.74111e-11 4.81716e-12 -7.21116e-11) (-5.53307e-11 8.62266e-11 -7.50267e-11) (3.06354e-11 4.07624e-10 -8.14459e-11) (4.93158e-10 1.17368e-09 1.62202e-10) (9.69319e-10 1.37223e-09 6.56132e-10) (5.13414e-10 4.86965e-10 5.01505e-10) (1.45168e-11 -4.91159e-12 5.47107e-11) (-4.85424e-10 -4.80454e-10 -8.67921e-12) (-2.64897e-09 -2.22106e-09 -8.1877e-10) (-2.38097e-09 -2.01013e-09 -1.17954e-09) (-3.10533e-10 -3.58832e-10 -2.34639e-10) (2.12731e-11 -3.13904e-12 1.1555e-11) (6.70532e-10 3.61551e-10 4.99261e-10) (1.48011e-09 1.08551e-09 9.89025e-10) (1.21681e-09 1.01601e-09 5.48458e-10) (5.16846e-10 4.33859e-10 7.94921e-11) (9.13608e-11 5.48477e-11 -1.9463e-11) (7.18571e-12 -1.03062e-11 -1.02508e-11) (-2.47249e-11 -9.30987e-11 -4.85636e-11) (-5.8388e-11 -1.01208e-10 -9.85313e-11) (-4.00358e-11 -1.0396e-11 -1.20481e-10) (-4.65188e-14 8.77979e-11 -1.34439e-10) (6.78321e-11 1.58207e-10 -9.31455e-11) (1.26221e-10 1.42396e-10 -2.65835e-11) (1.22867e-10 5.31474e-11 9.83502e-12) (7.35472e-11 -2.246e-11 1.73259e-11) (5.74005e-11 -3.64834e-10 2.1013e-10) (-5.567e-11 -4.36086e-10 3.51156e-10) (-6.7339e-11 -1.96806e-10 2.67059e-10) (-3.28516e-11 -1.69186e-11 8.66608e-11) (-2.40698e-11 1.22018e-11 1.28706e-11) (-9.03182e-11 6.11294e-12 -3.18551e-11) (-4.93782e-10 -2.63496e-10 -1.61467e-10) (-1.76555e-09 -1.3653e-09 -1.32356e-10) (-2.4487e-09 -1.72416e-09 1.97113e-10) (-9.0465e-10 -4.37286e-10 1.48699e-10) (-1.97078e-11 2.07319e-12 7.60956e-12) (1.62534e-10 1.02042e-10 1.30084e-11) (8.9519e-10 3.50288e-10 9.83584e-12) (8.56261e-10 2.95515e-10 -3.31528e-11) (1.84079e-10 9.52243e-11 -4.44277e-11) (-4.9259e-12 4.16539e-11 -2.96198e-11) (-1.5113e-10 1.81671e-10 -8.44968e-11) (-2.17633e-10 4.13933e-10 -5.93978e-11) (-9.51354e-11 5.32141e-10 6.70188e-11) (-5.00476e-11 2.9616e-10 1.16025e-10) (-1.46484e-10 5.6353e-11 5.52658e-11) (-1.27027e-09 -4.15903e-10 -2.23746e-10) (-3.09629e-09 -1.85926e-09 -1.75135e-09) (-1.89805e-09 -2.01907e-09 -2.17357e-09) (-1.03582e-10 -5.58798e-10 -5.48414e-10) (2.22254e-10 -6.63575e-11 3.35597e-11) (2.02332e-09 5.32914e-10 1.4396e-09) (4.40799e-09 1.96069e-09 3.54198e-09) (3.62098e-09 1.92777e-09 2.56883e-09) (1.17524e-09 6.19625e-10 6.1197e-10) (7.83983e-11 1.90227e-11 1.44583e-11) (-1.83405e-11 -4.30347e-11 -3.59806e-11) (-2.93203e-10 -2.40648e-10 -3.03483e-10) (-4.32487e-10 -1.44597e-10 -5.42568e-10) (-2.15786e-10 1.13221e-10 -4.34415e-10) (-8.58635e-12 2.00733e-10 -2.16715e-10) (1.07871e-10 1.89434e-10 -7.73242e-11) (1.60538e-10 1.06959e-10 5.99444e-12) (1.40511e-10 -7.82362e-12 3.95618e-11) (1.19997e-10 -1.40707e-10 8.15766e-11) (-1.02807e-10 -3.30534e-10 1.28422e-10) (-1.08359e-10 -2.59338e-10 2.00925e-10) (-4.37601e-12 -6.2827e-11 1.13153e-10) (3.34569e-11 1.44307e-11 3.73326e-11) (6.40057e-11 5.98071e-11 -1.8065e-12) (8.10257e-12 1.20295e-11 -1.29609e-11) (-1.94016e-10 -1.24392e-10 -4.38686e-11) (-3.27103e-09 -1.93741e-09 5.81867e-11) (-8.65717e-09 -3.8882e-09 4.98141e-10) (-5.7551e-09 -1.80235e-09 4.88905e-10) (-5.60248e-10 -9.45765e-11 1.70346e-10) (1.3317e-10 6.50793e-11 1.33184e-10) (1.93534e-09 6.01431e-10 6.51222e-10) (3.09285e-09 9.13672e-10 3.51116e-10) (1.71777e-09 6.08243e-10 -2.8225e-10) (3.41147e-10 2.72204e-10 -2.83759e-10) (-1.03087e-10 2.72239e-10 -2.35844e-10) (-7.02201e-10 6.59499e-10 -2.62877e-10) (-1.14448e-09 9.50013e-10 -3.2495e-11) (-1.18914e-09 7.92275e-10 1.26916e-10) (-1.40504e-09 3.69233e-10 -2.65632e-11) (-1.93622e-09 -3.87097e-10 -6.50197e-10) (-1.98234e-09 -1.63213e-09 -1.67381e-09) (-9.20477e-10 -2.01553e-09 -1.79784e-09) (-1.08057e-11 -6.57074e-10 -5.96769e-10) (8.35554e-11 -2.6899e-11 -2.85947e-11) (8.51653e-10 3.07787e-10 4.96078e-10) (2.85387e-09 1.04351e-09 2.3369e-09) (3.45652e-09 1.05105e-09 2.87121e-09) (1.61938e-09 4.40466e-10 1.1951e-09) (1.63012e-10 3.74597e-11 9.52507e-11) (-2.58794e-12 -1.20807e-12 -4.34267e-12) (-1.07837e-10 -2.3645e-11 -1.23527e-10) (-1.04857e-10 3.86044e-12 -1.76957e-10) (-7.27796e-12 4.39421e-11 -1.07365e-10) (7.44301e-11 9.39483e-11 -8.78274e-11) (1.62682e-10 1.19793e-10 -6.5187e-11) (1.24785e-10 3.4134e-11 -2.37105e-11) (4.82149e-11 -3.3297e-11 -3.06766e-12) (9.1853e-12 -1.55838e-10 2.52016e-11) (-2.3925e-10 -2.55131e-10 4.66869e-11) (-1.42923e-10 -1.74582e-10 1.91984e-10) (3.74244e-12 -5.16466e-11 1.85417e-10) (1.08982e-10 3.44436e-11 1.05615e-10) (2.68943e-10 1.2373e-10 1.45717e-11) (1.6711e-10 5.5465e-11 -5.3527e-11) (-9.47612e-12 -1.59667e-11 -7.62781e-12) (-1.78392e-09 -9.09098e-10 7.72778e-11) (-8.53878e-09 -2.91223e-09 6.29323e-10) (-8.06346e-09 -2.02086e-09 7.97465e-10) (-1.43195e-09 -2.48905e-10 4.24413e-10) (2.60982e-11 4.3412e-11 1.54308e-10) (1.08396e-09 4.64539e-10 6.01905e-10) (2.03137e-09 7.9988e-10 3.73148e-10) (1.48865e-09 6.0639e-10 -2.33805e-10) (6.16759e-10 3.5231e-10 -4.03041e-10) (8.89832e-11 2.45459e-10 -2.84107e-10) (-3.03183e-10 4.17313e-10 -2.57149e-10) (-1.32022e-09 9.81407e-10 -1.47936e-10) (-2.45799e-09 1.23618e-09 8.90017e-11) (-2.24126e-09 4.91892e-10 -6.20609e-11) (-1.179e-09 -3.78524e-10 -3.38773e-10) (-7.28854e-10 -1.22718e-09 -7.38326e-10) (-3.70354e-10 -1.64384e-09 -1.08413e-09) (-1.39738e-10 -6.29658e-10 -6.20699e-10) (-6.75122e-12 -2.78879e-11 -9.93252e-11) (5.53856e-11 5.14313e-11 -5.57505e-12) (5.39806e-10 3.06393e-10 3.43668e-10) (1.16796e-09 3.9722e-10 1.02821e-09) (9.59141e-10 2.27149e-10 9.47223e-10) (3.43849e-10 7.92402e-11 3.11738e-10) (6.10011e-11 1.13833e-11 2.96799e-11) (2.66142e-11 -9.97154e-13 -6.51009e-12) (5.72391e-11 -1.70149e-12 -2.58479e-11) (1.16666e-10 2.36925e-11 -4.21642e-11) (1.66063e-10 6.89949e-11 -5.5511e-11) (1.22889e-10 5.71317e-11 -6.02578e-11) (3.14838e-11 2.69811e-12 -4.12559e-11) (-2.0239e-11 -5.00696e-11 -6.27485e-11) (-1.63306e-10 -1.9538e-10 -8.78895e-11) (-1.29256e-10 -1.35786e-10 1.69479e-10) (-8.20175e-11 -1.09614e-10 4.26487e-10) (8.05666e-11 2.50993e-13 3.27315e-10) (1.73947e-10 5.9286e-11 9.89253e-11) (3.51986e-10 1.1194e-10 -7.79817e-11) (2.08642e-10 2.42788e-11 -1.21483e-10) (-6.91027e-12 -2.00467e-11 -1.1217e-11) (-1.26288e-09 -5.66955e-10 2.19359e-10) (-6.13672e-09 -1.77212e-09 1.12028e-09) (-5.61789e-09 -1.40041e-09 8.13866e-10) (-8.36053e-10 -2.03072e-10 1.39632e-10) (3.46777e-12 4.41718e-12 3.50737e-12) (3.49182e-10 2.21111e-10 3.69639e-12) (6.71813e-10 4.42488e-10 -1.18203e-10) (5.35619e-10 3.81943e-10 -1.58324e-10) (2.87422e-10 2.42961e-10 -8.86451e-11) (9.57581e-11 1.48941e-10 -2.85765e-11) (-2.95352e-11 1.63247e-10 -1.02515e-11) (-4.54147e-10 4.49539e-10 1.65102e-11) (-1.37286e-09 6.92948e-10 8.46539e-11) (-1.29687e-09 1.71285e-10 3.3437e-11) (-5.82575e-10 -3.44144e-10 -9.85053e-11) (-3.49479e-10 -8.63505e-10 -3.81256e-10) (-2.47802e-10 -9.01799e-10 -6.59752e-10) (-2.75623e-10 -3.83098e-10 -5.35898e-10) (-1.77068e-10 -4.97021e-11 -2.51594e-10) (-1.82655e-11 1.76328e-11 -3.54477e-11) (3.94799e-11 3.6689e-11 1.15372e-11) (3.27413e-10 1.41998e-10 2.42364e-10) (5.64356e-10 1.52997e-10 5.46165e-10) (4.34004e-10 5.86527e-11 4.47828e-10) (2.28182e-10 -1.77772e-11 1.71525e-10) (1.54677e-10 -4.212e-11 2.92226e-11) (1.80982e-10 -3.94155e-11 -4.75969e-11) (1.85398e-10 1.09896e-11 -8.5063e-11) (1.21569e-10 5.05399e-11 -6.69459e-11) (3.44175e-11 2.88834e-11 -3.55545e-11) (-3.68304e-12 2.67185e-12 -2.44501e-11) (-5.05613e-11 -3.76397e-11 -4.71041e-11) (-9.7541e-11 -9.39821e-11 -4.26891e-13) (-2.56658e-10 -9.84238e-11 7.58266e-10) (8.90062e-12 -2.29292e-11 1.10773e-09) (2.53147e-10 6.78702e-11 4.61318e-10) (3.18945e-10 1.02781e-10 2.26313e-11) (5.61453e-10 1.5428e-10 -3.94878e-10) (2.49421e-10 1.30636e-11 -3.22982e-10) (-2.58655e-11 -2.58353e-11 -2.18504e-11) (-1.44983e-09 -4.73929e-10 4.45114e-10) (-4.68137e-09 -1.23717e-09 1.38014e-09) (-2.44256e-09 -8.54061e-10 3.70049e-10) (-1.43646e-10 -1.00026e-10 -6.36919e-11) (8.05374e-11 1.59403e-11 -1.58917e-10) (3.5047e-10 3.05972e-10 -5.19468e-10) (2.95859e-10 4.49123e-10 -5.31144e-10) (1.15996e-10 2.39565e-10 -1.72207e-10) (7.08964e-11 1.30136e-10 2.56777e-11) (1.33398e-10 2.24161e-10 2.24481e-10) (6.76554e-11 2.81491e-10 3.05386e-10) (-1.32688e-10 2.70382e-10 2.00953e-10) (-4.29451e-10 2.60002e-10 1.37045e-10) (-4.6236e-10 1.3343e-11 4.54727e-11) (-2.7563e-10 -2.23428e-10 -5.82168e-11) (-1.94526e-10 -4.43788e-10 -2.66143e-10) (-2.19195e-10 -3.91495e-10 -4.36268e-10) (-3.52173e-10 -2.12922e-10 -4.35431e-10) (-3.28114e-10 -8.66604e-11 -2.88903e-10) (-6.85413e-11 -1.40513e-11 -6.376e-11) (1.22109e-12 1.29927e-13 -1.42122e-13) (1.07935e-10 1.91169e-11 8.03116e-11) (2.70506e-10 5.18145e-11 3.01817e-10) (1.92602e-10 2.37124e-11 2.66096e-10) (6.36014e-11 -1.07711e-11 6.04634e-11) (5.43392e-11 -2.12868e-11 -1.31984e-11) (1.63734e-10 -3.92119e-11 -1.35702e-10) (2.07846e-10 4.24319e-12 -1.88255e-10) (9.82556e-11 2.95201e-11 -8.13448e-11) (1.23586e-11 7.43931e-12 -1.15563e-11) (-4.50918e-13 -1.16682e-13 -4.227e-13) (-2.36288e-11 -1.40438e-11 1.08128e-11) (-1.34951e-10 -6.75182e-11 1.72056e-10) (-1.95077e-10 -9.01697e-11 1.40323e-09) (3.42163e-10 1.2237e-11 1.0461e-09) (3.77308e-10 1.00869e-10 2.01065e-10) (6.79597e-10 2.52319e-10 -3.63924e-10) (7.60194e-10 2.92027e-10 -9.64134e-10) (8.93124e-11 2.70386e-11 -2.62989e-10) (-1.67479e-10 -4.72536e-11 2.51984e-11) (-2.0957e-09 -5.27827e-10 1.02684e-09) (-2.26466e-09 -8.53188e-10 8.8655e-10) (-3.79292e-10 -3.56353e-10 -3.32342e-11) (2.45746e-11 -1.76593e-10 -2.64363e-10) (1.64373e-10 7.19921e-12 -6.25104e-10) (4.74847e-11 2.67708e-10 -6.84559e-10) (-7.77499e-11 2.17294e-10 -3.09153e-10) (-3.52507e-11 6.51592e-11 -2.89868e-11) (-5.80446e-12 8.1216e-11 6.62547e-11) (1.18036e-10 3.00169e-10 3.56749e-10) (1.92259e-10 5.0121e-10 4.92339e-10) (-2.94049e-12 3.67251e-10 2.53386e-10) (-1.22131e-10 1.46192e-10 7.62822e-11) (-1.15731e-10 5.92215e-12 8.13769e-12) (-9.56462e-11 -8.82096e-11 -4.88137e-11) (-9.41616e-11 -1.6865e-10 -1.4851e-10) (-1.50723e-10 -1.4182e-10 -1.89356e-10) (-3.06606e-10 -1.3115e-10 -2.00363e-10) (-3.68723e-10 -1.49792e-10 -1.57553e-10) (-1.35317e-10 -8.3757e-11 -5.21864e-11) (-2.55333e-12 -7.38204e-12 -1.6476e-12) (3.09849e-11 -1.37225e-12 1.57823e-11) (1.24571e-10 3.42937e-11 1.01443e-10) (1.22234e-10 3.42567e-11 1.38007e-10) (7.03127e-11 -5.78698e-12 6.71301e-11) (6.65618e-11 -2.41458e-11 9.99386e-12) (1.53248e-10 -3.35233e-11 -7.2352e-11) (2.14101e-10 8.53281e-12 -1.71845e-10) (9.20172e-11 3.38374e-11 -1.10422e-10) (-9.62598e-13 8.66752e-12 -2.12158e-11) (-6.90603e-11 1.17588e-12 -1.02389e-11) (-3.30913e-10 -3.95433e-11 1.2754e-10) (-5.13263e-10 -7.85393e-11 6.48792e-10) (-1.50398e-10 -1.52895e-10 1.06684e-09) (7.55955e-11 -3.18232e-11 2.70799e-10) (7.44148e-11 1.52464e-11 -2.19876e-11) (3.3086e-10 1.37925e-10 -4.73935e-10) (1.92674e-10 1.17531e-10 -4.15563e-10) (-1.83289e-12 3.63374e-12 -7.06736e-12) (-2.46334e-10 -3.72408e-11 2.24761e-10) (-5.85638e-10 -2.5347e-10 4.94223e-10) (-1.58342e-10 -2.55305e-10 6.61693e-11) (4.02056e-11 -3.48693e-10 -1.97684e-10) (9.03882e-11 -2.34247e-10 -4.22922e-10) (-1.76321e-11 3.45376e-11 -5.27706e-10) (-1.25273e-10 2.07053e-10 -4.49837e-10) (-9.93834e-11 8.7258e-11 -1.00027e-10) (-1.08325e-10 2.57744e-11 5.24448e-11) (-2.2798e-10 4.29328e-11 3.47841e-10) (-9.30687e-11 1.91842e-10 3.79897e-10) (7.63089e-11 4.46164e-10 2.59081e-10) (1.1413e-10 5.85272e-10 9.67987e-11) (-2.84777e-12 2.22284e-10 -7.28394e-13) (-7.50924e-12 1.21742e-11 -4.50886e-12) (-7.11431e-12 -9.15397e-12 -1.09692e-11) (-2.62298e-11 -3.9968e-11 -3.65411e-11) (-1.17119e-10 -7.06568e-11 -5.89811e-11) (-4.59287e-10 -1.78483e-10 -6.84639e-11) (-6.95096e-10 -3.18472e-10 1.10916e-11) (-2.26126e-10 -1.9326e-10 3.99048e-11) (1.47621e-11 -3.91837e-11 8.67008e-12) (2.24857e-10 -1.94247e-11 1.28259e-11) (4.44003e-10 1.02948e-10 5.51238e-11) (2.48658e-10 8.59317e-11 9.70045e-11) (2.99356e-11 4.96021e-12 4.33125e-11) (-1.4134e-11 -1.03632e-11 2.00411e-11) (-1.39287e-11 -4.40738e-12 -2.75006e-12) (8.67133e-14 2.06333e-11 -6.01163e-11) (4.99979e-11 9.78941e-11 -2.0004e-10) (-1.70698e-11 5.93173e-11 -1.20353e-10) (-9.60438e-11 2.11146e-11 -3.80997e-11) (-3.09036e-10 -1.62562e-11 1.48336e-10) (-4.67027e-10 -1.17186e-10 7.83956e-10) (-1.7932e-10 -1.59401e-10 6.83223e-10) (-9.09685e-11 -1.27561e-10 2.57657e-10) (-1.28847e-11 -2.25158e-11 -1.5125e-12) (-4.24131e-12 -1.1872e-11 -4.95752e-11) (3.43848e-12 5.15315e-12 -1.12296e-11) (2.24995e-12 9.31314e-12 1.64601e-11) (-5.1084e-12 -8.1019e-12 7.27287e-11) (2.13157e-11 -7.40636e-11 3.51402e-11) (1.65506e-10 -3.54154e-10 -8.92396e-11) (1.10623e-10 -3.38993e-10 -2.06738e-10) (-4.59963e-11 -9.46822e-11 -1.82635e-10) (-1.51283e-10 5.60099e-11 -3.22321e-10) (-1.05169e-10 1.46921e-10 -2.9497e-10) (-2.44291e-11 4.21187e-11 -4.31833e-11) (-7.95079e-11 2.39736e-11 7.24133e-11) (-5.7189e-10 2.94663e-11 7.08027e-10) (-5.11139e-10 1.67733e-10 6.33454e-10) (-7.6095e-11 2.34662e-10 1.31775e-10) (1.74633e-10 5.61571e-10 -3.95147e-11) (2.82491e-10 5.09879e-10 -1.09495e-10) (9.70886e-11 1.14824e-10 -2.87496e-11) (7.23388e-12 2.56099e-12 -2.39025e-12) (-3.41071e-12 -4.3082e-12 -1.72491e-12) (-1.37754e-10 -6.34455e-11 -4.01754e-12) (-5.50846e-10 -2.3783e-10 7.90317e-11) (-4.47619e-10 -3.58655e-10 2.05727e-10) (-2.39261e-12 -3.01286e-10 1.77574e-10) (3.9926e-10 -2.89296e-10 1.27145e-10) (7.70957e-10 -5.16136e-11 -4.59409e-11) (7.17956e-10 2.59935e-10 -1.4072e-10) (1.53642e-10 1.43461e-10 -2.0526e-11) (-6.14683e-11 3.80169e-11 3.12164e-11) (-1.20371e-09 -3.41037e-11 2.78632e-10) (-1.62126e-09 -9.29799e-11 3.01944e-11) (-3.63243e-10 6.93238e-11 -2.09391e-10) (-2.82791e-11 1.44394e-10 -3.2062e-10) (3.47063e-11 1.20021e-10 -2.90522e-10) (-1.26147e-11 2.09749e-11 -5.76582e-11) (-9.63609e-12 2.03348e-12 3.86058e-12) (-8.88364e-11 -2.53036e-11 2.329e-10) (-1.19014e-11 -3.16963e-11 3.06776e-10) (-1.46812e-10 -2.55147e-10 4.50357e-10) (-1.41124e-10 -2.83482e-10 2.24567e-10) (-6.81146e-11 -8.6466e-11 5.52642e-11) (-2.46073e-11 -2.87128e-12 2.28189e-11) (-7.19833e-12 6.43059e-12 1.53008e-11) (7.28202e-12 -5.42063e-12 9.19842e-13) (2.06832e-10 -2.24348e-10 -1.08563e-10) (2.43866e-10 -4.19587e-10 -2.02654e-10) (-3.46747e-11 -1.49553e-10 -8.777e-11) (-2.49475e-10 -5.20777e-11 -1.47583e-10) (-2.91175e-10 7.49012e-11 -2.20402e-10) (-5.64663e-11 6.09835e-11 -8.32373e-11) (-1.52577e-12 1.71724e-11 -1.06239e-13) (-4.51768e-11 4.71242e-11 1.24705e-10) (-3.62231e-10 5.32454e-11 4.92323e-10) (-4.36644e-10 6.15196e-11 3.08298e-10) (-8.25693e-11 7.28278e-11 1.19118e-11) (1.13255e-10 2.75685e-10 -8.41751e-11) (6.63562e-10 6.8284e-10 -1.41814e-10) (6.6283e-10 4.77727e-10 4.48831e-12) (1.86215e-10 9.18223e-11 3.22065e-11) (2.07084e-12 2.80659e-13 1.68989e-12) (-6.50424e-11 -3.20001e-11 1.96738e-11) (-2.42521e-10 -1.85745e-10 1.31477e-10) (-8.45797e-11 -4.28464e-10 3.33671e-10) (3.91524e-10 -7.00361e-10 4.70001e-10) (3.99676e-10 -2.99943e-10 8.91113e-11) (2.70481e-10 2.17821e-11 -1.2828e-10) (2.73491e-10 2.90213e-10 -2.5575e-10) (2.99723e-12 2.07111e-10 -7.13621e-11) (-6.35715e-10 2.58889e-10 1.5042e-10) (-3.6078e-09 6.63276e-11 8.3391e-10) (-3.24922e-09 -1.06071e-10 1.78489e-10) (-6.55498e-10 1.00634e-10 -3.81551e-10) (-4.62888e-11 1.7662e-10 -6.32781e-10) (2.26651e-10 8.66697e-11 -6.33439e-10) (2.2663e-10 -3.51229e-12 -2.81598e-10) (1.35045e-10 1.95033e-11 -4.68278e-11) (6.0821e-11 2.5793e-11 6.13891e-11) (1.4943e-10 8.40046e-11 2.77888e-10) (-5.38198e-11 -2.2408e-10 4.81741e-10) (-3.73593e-10 -6.96465e-10 7.87606e-10) (-6.94001e-10 -5.26504e-10 7.77598e-10) (-5.61553e-10 -8.09126e-11 4.30321e-10) (-8.43792e-11 5.48068e-12 2.87431e-11) (1.71597e-11 -3.90006e-11 -6.5299e-11) (2.48511e-10 -3.72275e-10 -3.94805e-10) (1.16939e-11 -2.78925e-10 -1.78547e-10) (-3.62514e-10 -1.86776e-10 -8.75311e-11) (-9.47738e-10 -2.27066e-11 -1.6457e-10) (-3.60209e-10 8.74822e-11 -1.08434e-10) (-7.9059e-12 2.18893e-11 -1.64678e-12) (6.87776e-11 8.02488e-11 8.48488e-11) (5.03562e-11 8.91153e-11 2.10034e-10) (-1.11249e-10 2.54575e-11 1.5943e-10) (-2.73802e-10 -1.37115e-11 4.50218e-11) (-1.1793e-10 1.75212e-11 -5.96859e-11) (2.89436e-11 7.46511e-11 -5.4813e-11) (6.10321e-10 5.12941e-10 -4.66707e-11) (1.32708e-09 8.38451e-10 2.14137e-10) (8.03696e-10 4.11682e-10 2.17132e-10) (9.87206e-11 4.12289e-11 4.34625e-11) (-4.16185e-13 -6.88287e-12 1.17062e-11) (-1.00571e-11 -1.71484e-10 1.52972e-10) (1.97636e-10 -7.10924e-10 5.52664e-10) (1.23992e-10 -5.29188e-10 2.80634e-10) (-7.53773e-12 -4.78499e-11 -1.48607e-11) (-1.46183e-11 4.71763e-11 -1.24647e-10) (1.26173e-11 2.48294e-10 -2.04205e-10) (-7.75234e-11 2.18511e-10 -2.58089e-11) (-8.06754e-10 3.28863e-10 3.22717e-10) (-2.93315e-09 1.67099e-10 8.87593e-10) (-2.13873e-09 3.00369e-11 -1.86591e-11) (-6.0304e-10 1.16982e-10 -6.5298e-10) (1.44741e-10 4.39387e-11 -1.30447e-09) (1.1193e-09 -3.9563e-10 -1.65804e-09) (1.66311e-09 -4.47321e-10 -1.19705e-09) (1.3589e-09 1.14703e-10 -3.76839e-10) (6.88446e-10 3.25239e-10 1.66105e-10) (8.35252e-10 4.93842e-10 7.87494e-10) (1.90122e-10 -1.33532e-10 5.99154e-10) (-4.34396e-10 -6.97148e-10 1.10411e-09) (-1.95846e-09 -8.99466e-10 2.03618e-09) (-1.80666e-09 -1.95153e-10 1.31919e-09) (-2.12453e-10 -1.26136e-11 4.57924e-11) (9.24884e-12 -1.1273e-10 -2.21644e-10) (7.64848e-11 -4.05238e-10 -5.14067e-10) (-3.1625e-10 -3.13723e-10 -1.91476e-10) (-1.82656e-09 -3.76135e-10 -6.33194e-11) (-2.05677e-09 2.2853e-11 -1.06664e-10) (-3.34288e-10 7.8567e-11 -2.0756e-11) (9.89265e-12 3.28728e-11 2.71137e-11) (2.44066e-10 1.75418e-10 2.49014e-10) (1.06098e-10 1.01322e-10 1.85052e-10) (-2.3431e-11 7.09395e-12 2.40058e-11) (-1.35813e-10 -3.0617e-11 -4.35201e-11) (-8.02505e-11 -2.11686e-11 -8.81311e-11) (7.87433e-12 1.45012e-11 -1.89858e-11) (3.39336e-10 2.75397e-10 4.82747e-11) (1.35342e-09 8.59601e-10 4.07389e-10) (1.4565e-09 7.56632e-10 4.41337e-10) (5.33569e-10 1.99682e-10 1.71666e-10) (1.27864e-10 -2.65584e-11 8.21635e-11) (1.25647e-10 -2.60073e-10 2.28714e-10) (-9.97101e-11 -5.35546e-10 3.18567e-10) (-5.08791e-10 -4.44463e-10 7.05229e-11) (-5.1419e-10 -1.25017e-10 -2.06875e-10) (-1.47557e-10 7.60689e-11 -1.54135e-10) (-1.99687e-11 1.0415e-10 -4.81977e-11) (-5.19193e-11 1.31553e-10 4.55815e-11) (-4.59804e-10 2.28101e-10 2.99452e-10) (-1.27205e-09 1.68388e-10 3.60281e-10) (-1.04789e-09 7.45256e-11 -3.40433e-10) (-4.00779e-10 -2.09992e-12 -1.20433e-09) (1.47733e-09 -7.78784e-10 -3.28482e-09) (3.99834e-09 -2.26059e-09 -4.74794e-09) (2.37985e-09 -1.07559e-09 -2.32763e-09) (9.10881e-10 1.78646e-10 -3.71484e-10) (1.24042e-09 8.28376e-10 3.85341e-10) (2.88052e-09 1.17414e-09 2.03572e-09) (1.17816e-09 -4.20415e-11 1.24352e-09) (1.25876e-11 -3.5976e-10 9.72368e-10) (-1.29804e-09 -4.87557e-10 1.90443e-09) (-1.20152e-09 -1.13428e-10 1.1731e-09) (-6.21266e-11 -1.36221e-11 1.83021e-11) (4.29941e-11 -1.5796e-10 -3.07878e-10) (-1.26219e-10 -3.57719e-10 -5.01783e-10) (-1.42198e-09 -5.52012e-10 -3.14038e-10) (-5.00216e-09 -5.32305e-10 5.97792e-11) (-3.39339e-09 5.76648e-11 -9.9589e-11) (-3.63309e-10 7.505e-11 4.40283e-12) (2.02986e-11 4.32225e-11 5.36828e-11) (2.79682e-10 1.81837e-10 2.9129e-10) (1.05006e-10 7.88642e-11 1.27768e-10) (-1.50349e-13 3.44675e-13 3.7956e-13) (-2.09183e-11 -1.8443e-11 -4.76937e-11) (-9.36251e-12 -1.96598e-11 -7.35563e-11) (3.09054e-12 3.34389e-12 -3.35167e-12) (1.30656e-10 1.3059e-10 9.04829e-11) (7.78439e-10 5.42566e-10 4.16356e-10) (1.32134e-09 6.60753e-10 4.63344e-10) (8.62744e-10 2.50377e-10 2.46965e-10) (2.26342e-10 -4.54057e-11 1.08989e-10) (-2.00468e-11 -1.37273e-10 8.70014e-11) (-8.08898e-10 -5.41758e-10 1.49628e-10) (-1.69225e-09 -5.6969e-10 -1.37777e-10) (-6.88044e-10 -9.18403e-11 -1.89219e-10) (-5.24321e-11 1.88703e-11 -2.27375e-11) (-3.83918e-12 2.64671e-11 9.5805e-12) (-2.90553e-11 8.73231e-11 8.26357e-11) (-1.89246e-10 1.29725e-10 1.55665e-10) (-4.6208e-10 1.08565e-10 -1.48906e-12) (-6.08079e-10 2.26378e-11 -6.89482e-10) (4.1455e-10 -5.47129e-10 -2.76198e-09) (4.53459e-09 -2.80855e-09 -7.11059e-09) (2.73299e-09 -2.7749e-09 -5.53588e-09) (-7.5308e-11 -4.05043e-10 -1.05423e-09) (3.82656e-12 3.57184e-11 -1.14377e-11) (1.26805e-09 1.01113e-09 8.72802e-10) (4.27386e-09 1.34998e-09 2.56939e-09) (2.22485e-09 2.59265e-10 1.5434e-09) (3.80469e-10 -9.34876e-11 8.77018e-10) (-2.01811e-10 -1.06666e-10 9.47993e-10) (-1.18394e-10 -2.54757e-11 2.93817e-10) (6.0916e-12 -6.62129e-12 -8.40014e-12) (1.51936e-10 -2.08353e-10 -5.2327e-10) (-3.43023e-10 -2.96775e-10 -5.28869e-10) (-3.49968e-09 -7.0898e-10 -2.88379e-10) (-8.3996e-09 -5.89618e-10 3.13399e-10) (-4.30841e-09 -1.30903e-11 -2.76627e-10) (-3.81925e-10 5.75241e-11 -3.11843e-11) (1.93108e-11 3.65511e-11 4.58044e-11) (2.6803e-10 1.57626e-10 2.73293e-10) (1.1847e-10 6.04531e-11 9.89668e-11) (8.15814e-12 1.26392e-12 -3.65702e-12) (2.31336e-11 -1.56982e-11 -8.30024e-11) (1.53971e-11 -4.92357e-12 -5.63397e-11) (3.85865e-12 4.00186e-12 2.60417e-12) (8.33891e-11 9.0819e-11 1.46466e-10) (3.46363e-10 2.46295e-10 3.30701e-10) (5.92043e-10 2.7553e-10 2.7559e-10) (3.72925e-10 9.17945e-11 1.04065e-10) (1.70211e-11 -7.66405e-12 7.89247e-12) (-2.416e-10 -1.38895e-10 2.09637e-11) (-1.53469e-09 -5.10757e-10 1.36331e-11) (-1.24567e-09 -3.25577e-10 -1.5749e-11) (-2.23503e-10 -4.608e-11 4.88441e-12) (-1.00195e-11 6.45378e-13 7.55506e-12) (-7.11064e-13 1.64662e-11 3.62857e-11) (-1.2448e-11 5.85413e-11 8.32533e-11) (-6.25734e-11 6.57954e-11 3.84582e-11) (-2.50752e-10 9.25672e-11 -1.92662e-10) (-2.69277e-10 -1.42723e-10 -1.54883e-09) (2.39788e-09 -1.87784e-09 -5.72813e-09) (3.15909e-09 -3.16862e-09 -7.28931e-09) (-5.86114e-10 -1.22129e-09 -2.72122e-09) (-7.39247e-10 -1.36563e-10 -3.09965e-10) (-5.7115e-11 1.12504e-10 2.20293e-10) (1.79324e-09 1.022e-09 1.70846e-09) (2.3494e-09 9.19554e-10 1.62587e-09) (1.21567e-09 3.34872e-10 7.97143e-10) (3.21692e-10 3.01437e-11 3.80502e-10) (6.00845e-11 -1.46901e-11 1.50452e-10) (1.88634e-11 -6.86033e-12 5.06812e-12) (2.67936e-10 -9.05523e-11 -3.29387e-10) (2.53231e-10 -2.01284e-10 -8.00218e-10) (-3.907e-10 -1.49567e-10 -3.11643e-10) (-4.44046e-09 -5.55024e-10 2.93021e-10) (-8.49199e-09 -6.31784e-10 4.67935e-10) (-4.06218e-09 -1.74521e-10 -5.69844e-10) (-3.46669e-10 2.8707e-11 -8.78578e-11) (1.6371e-11 2.34306e-11 2.31691e-11) (2.62974e-10 1.31604e-10 1.98538e-10) (1.54155e-10 5.36863e-11 6.39496e-11) (4.89311e-11 5.92729e-12 -2.75876e-11) (4.34573e-11 -3.21154e-13 -8.14548e-11) (1.02811e-11 4.01754e-12 -1.32584e-11) (2.24958e-11 1.86809e-11 3.60125e-11) (9.84286e-11 7.87712e-11 2.37943e-10) (1.37702e-10 8.6488e-11 2.15342e-10) (1.04774e-10 4.61211e-11 6.78247e-11) (2.01709e-11 5.82124e-12 1.17472e-12) (-2.11329e-11 -6.80302e-12 -8.14111e-12) (-6.38385e-10 -1.54684e-10 -1.80173e-11) (-1.11452e-09 -2.73879e-10 1.6164e-10) (-4.02545e-10 -1.29567e-10 1.3827e-10) (-5.2321e-11 -2.87697e-11 4.23534e-11) (-8.9266e-12 -8.57019e-12 2.77613e-11) (-4.52572e-12 5.90849e-12 4.01345e-11) (-1.06194e-11 2.92381e-11 2.91847e-11) (-4.65697e-11 6.50065e-11 -3.34349e-11) (-1.71067e-10 1.19413e-10 -6.1389e-10) (7.25314e-10 -6.44091e-10 -3.14387e-09) (2.35288e-09 -2.43209e-09 -6.32226e-09) (-2.38361e-10 -1.46953e-09 -3.55458e-09) (-1.00661e-09 -3.50183e-10 -6.85089e-10) (-2.9231e-10 -3.25625e-12 3.7746e-10) (8.87079e-10 4.32146e-10 2.39012e-09) (2.45788e-09 1.04431e-09 2.73499e-09) (8.55529e-10 4.66664e-10 6.6497e-10) (3.33945e-10 1.4754e-10 1.13362e-10) (1.07255e-10 1.64512e-11 7.16626e-12) (8.67941e-11 -1.66132e-11 -4.26521e-11) (3.4479e-10 -9.32196e-11 -3.75255e-10) (6.93193e-10 -1.70723e-10 -1.04892e-09) (1.18556e-10 -6.32567e-11 -4.35172e-10) (-3.16674e-10 -5.15376e-11 -4.0319e-11) (-3.66362e-09 -3.85138e-10 7.52121e-10) (-6.43235e-09 -6.43969e-10 1.53451e-10) (-3.21859e-09 -2.68332e-10 -7.35024e-10) (-2.33015e-10 7.47712e-12 -8.65191e-11) (1.63105e-11 1.51665e-11 1.11525e-11) (2.30683e-10 9.60209e-11 1.01646e-10) (1.77189e-10 5.08863e-11 1.3394e-11) (7.98104e-11 1.51682e-11 -4.77751e-11) (3.75206e-11 1.09874e-11 -3.56824e-11) (2.4111e-11 1.28033e-11 4.69232e-12) (9.5488e-11 5.00093e-11 1.42468e-10) (1.10702e-10 5.0288e-11 2.5458e-10) (3.71295e-11 1.19576e-11 7.91402e-11) (1.17101e-12 3.82981e-13 6.19351e-13) (-1.58337e-11 5.56265e-13 -1.54231e-11) (-3.19525e-10 -1.86457e-11 -6.29e-11) (-8.60817e-10 -1.02922e-10 1.60024e-10) (-4.9903e-10 -1.29755e-10 3.04224e-10) (-9.49609e-11 -6.75796e-11 1.34465e-10) (-1.75773e-11 -2.79782e-11 4.37767e-11) (-1.34918e-11 -1.00386e-11 2.04398e-11) (-1.08921e-11 2.97908e-12 7.32245e-12) (-1.69216e-11 2.74066e-11 -1.51175e-11) (-1.86835e-11 1.25613e-10 -2.48639e-10) (3.58842e-10 1.05212e-11 -1.37925e-09) (1.37229e-09 -1.09677e-09 -3.79804e-09) (2.37554e-11 -1.19951e-09 -3.07574e-09) (-8.51664e-10 -4.11543e-10 -9.31306e-10) (-2.73645e-10 -4.41635e-11 1.67814e-10) (6.95456e-10 1.38332e-10 2.95776e-09) (3.11659e-09 7.0185e-10 5.95893e-09) (2.12391e-09 8.6831e-10 2.88628e-09) (3.7304e-10 2.29159e-10 2.06925e-10) (2.24894e-10 9.93022e-11 -5.8114e-11) (2.88314e-10 1.81056e-11 -2.40535e-10) (5.41641e-10 -1.0724e-10 -6.24743e-10) (8.35232e-10 -1.79565e-10 -1.10184e-09) (4.95106e-10 -6.2277e-11 -7.61749e-10) (7.77058e-12 -8.31534e-13 -4.17511e-11) (-3.3725e-10 -2.50691e-11 1.25943e-10) (-2.85673e-09 -3.30427e-10 6.5434e-10) (-4.96665e-09 -5.91256e-10 -3.14674e-10) (-2.13818e-09 -2.47645e-10 -6.39254e-10) (-8.20998e-11 -1.25166e-12 -4.0387e-11) (2.58932e-11 1.32726e-11 4.83566e-12) (1.94298e-10 6.6172e-11 3.11252e-11) (1.59479e-10 4.41668e-11 -1.57426e-11) (7.98254e-11 2.10876e-11 -3.18947e-11) (6.53276e-11 2.15673e-11 -9.38381e-12) (1.3867e-10 5.12404e-11 6.8735e-11) (1.90018e-10 6.45443e-11 2.10184e-10) (7.24158e-11 1.2113e-11 1.20268e-10) (1.53579e-12 -1.00202e-12 3.12203e-12) (-2.80971e-11 -5.55404e-12 -2.33785e-11) (-3.26229e-10 -4.51003e-12 -1.16673e-10) (-8.42404e-10 1.4337e-12 7.15468e-11) (-6.1477e-10 -5.62854e-11 3.89345e-10) (-1.41865e-10 -7.90392e-11 2.8375e-10) (-1.6834e-11 -4.49724e-11 9.10488e-11) (-1.42415e-11 -1.49221e-11 1.66532e-11) (-2.04598e-11 -4.49586e-12 -8.6448e-13) (-2.27208e-11 1.13964e-11 -3.15759e-11) (2.47198e-11 7.85081e-11 -2.08436e-10) (3.56637e-10 1.2696e-10 -7.81554e-10) (8.97111e-10 -2.44914e-10 -1.84225e-09) (1.57839e-10 -5.55366e-10 -1.73433e-09) (-6.3663e-10 -3.59311e-10 -8.38207e-10) (-3.17339e-10 -6.9813e-11 1.42587e-11) (8.09447e-11 6.77895e-12 1.28321e-09) (2.37197e-09 2.11147e-10 5.65409e-09) (2.42802e-09 4.32335e-10 4.50596e-09) (1.02817e-09 4.55197e-10 1.40656e-09) (3.0442e-10 1.37286e-10 5.55153e-11) (4.09338e-10 1.03351e-10 -2.08555e-10) (6.91137e-10 -1.05671e-11 -6.44918e-10) (9.15712e-10 -1.41044e-10 -1.05033e-09) (6.99364e-10 -8.01959e-11 -8.70943e-10) (1.67388e-10 5.32566e-12 -1.99917e-10) (-3.93537e-13 2.46637e-13 5.33018e-13) (-3.09496e-10 -2.20212e-11 1.84135e-10) (-2.18822e-09 -2.73545e-10 2.98031e-10) (-3.37671e-09 -4.12345e-10 -5.1413e-10) (-9.44907e-10 -1.39945e-10 -3.38619e-10) (-9.11976e-12 -1.04566e-12 -8.74504e-12) (4.65459e-11 1.35132e-11 -9.25421e-13) (1.72747e-10 4.76998e-11 6.4712e-12) (1.72138e-10 4.10615e-11 -3.54188e-12) (1.63546e-10 3.34676e-11 3.67963e-12) (2.35497e-10 4.84963e-11 5.14326e-11) (2.66838e-10 6.43332e-11 1.27777e-10) (1.46191e-10 3.3512e-11 1.09936e-10) (1.73363e-11 -7.6532e-13 1.19839e-11) (-6.14637e-12 -4.34931e-12 -8.66306e-12) (-2.19893e-10 -2.54885e-11 -1.20199e-10) (-7.1048e-10 5.84466e-12 -5.19313e-11) (-7.08291e-10 1.67804e-11 3.18685e-10) (-2.09114e-10 -3.90355e-11 3.74055e-10) (-1.18656e-11 -4.92627e-11 1.82157e-10) (-8.46515e-12 -1.60813e-11 2.56969e-11) (-1.33339e-11 -6.19738e-12 -2.63353e-12) (-1.89084e-11 6.55724e-13 -5.23698e-11) (9.66419e-11 4.54688e-11 -3.25981e-10) (5.33919e-10 1.00295e-10 -8.42004e-10) (7.65265e-10 -2.22359e-11 -1.11264e-09) (2.18615e-10 -1.50786e-10 -7.66887e-10) (-2.87858e-10 -1.63817e-10 -4.58275e-10) (-3.68825e-10 -9.02705e-11 -8.73752e-11) (-9.64572e-11 -1.7448e-11 3.10472e-10) (9.45297e-10 7.75332e-11 2.72793e-09) (1.77806e-09 8.96144e-11 3.68058e-09) (1.00286e-09 1.70241e-10 1.71132e-09) (4.554e-10 1.85636e-10 4.74331e-10) (8.46732e-10 1.73304e-10 4.2653e-11) (1.22563e-09 1.30602e-10 -4.10917e-10) (1.64838e-09 -2.24433e-11 -9.61694e-10) (1.66302e-09 -9.86849e-11 -1.14138e-09) (1.05439e-09 -1.5446e-11 -6.45423e-10) (3.73008e-10 2.35824e-11 -1.05352e-10) (8.21991e-11 7.77848e-12 3.97739e-11) (-1.72254e-11 -5.8908e-12 3.39585e-11) (-4.77064e-10 -8.72936e-11 1.56295e-11) (-8.3533e-10 -1.32382e-10 -2.33513e-10) (-9.83912e-11 -2.97635e-11 -6.50684e-11) (1.21608e-11 -1.67967e-12 -7.21485e-12) (1.91063e-10 2.14622e-11 -4.4174e-12) (4.20448e-10 6.19267e-11 2.92922e-11) (6.04803e-10 7.40165e-11 7.63184e-11) (7.9564e-10 8.03109e-11 1.42799e-10) (7.9362e-10 8.82408e-11 1.78433e-10) (6.03655e-10 8.37443e-11 1.50955e-10) (3.55352e-10 3.64584e-11 6.45615e-11) (1.25903e-10 -5.50478e-12 -2.223e-11) (1.24584e-11 -7.50838e-12 -2.90734e-11) (-5.90689e-11 -6.22748e-12 -3.54564e-11) (-1.94922e-10 9.53046e-12 5.3524e-11) (-1.1055e-10 5.61118e-12 2.07619e-10) (4.48138e-11 -2.60995e-11 2.44304e-10) (4.3603e-11 -2.45635e-11 8.67883e-11) (2.62189e-12 -3.13312e-12 2.81405e-12) (7.92448e-12 -3.79685e-12 -1.98816e-11) (2.35426e-10 1.62231e-11 -3.43379e-10) (1.17774e-09 5.98858e-11 -1.18294e-09) (1.58285e-09 -7.65099e-12 -1.33657e-09) (8.2159e-10 -8.4498e-11 -7.72325e-10) (1.03004e-10 -5.7921e-11 -2.43456e-10) (-4.03591e-11 -2.64239e-11 -5.61823e-11) (-1.22225e-11 -6.38431e-12 1.88552e-11) (3.4257e-10 -1.68885e-12 7.46222e-10) (1.47115e-09 4.20631e-11 2.27312e-09) (1.45843e-09 8.9523e-12 1.89945e-09) (9.38893e-10 7.42868e-11 9.35578e-10) (7.3133e-10 1.42357e-10 3.91823e-10) (3.97261e-09 2.76447e-10 1.89435e-10) (5.14249e-09 1.90684e-10 -8.18989e-10) (6.08878e-09 -3.24791e-11 -1.79959e-09) (6.15069e-09 -6.12947e-11 -1.97722e-09) (5.05332e-09 4.37425e-11 -1.1306e-09) (3.74428e-09 1.29558e-10 -1.14368e-10) (2.1397e-09 6.30633e-11 3.49944e-10) (2.96308e-10 -1.5339e-11 7.8844e-11) (-6.72652e-12 -3.83447e-12 -2.96074e-12) (-4.82814e-11 -1.63886e-11 -3.64198e-11) (1.08352e-11 -7.00937e-12 -1.45714e-11) (2.50044e-10 -1.47783e-11 -3.60233e-11) (9.48384e-10 2.73977e-11 2.38557e-11) (2.07621e-09 1.04718e-10 2.30437e-10) (3.56893e-09 1.56267e-10 5.62947e-10) (4.58768e-09 1.91008e-10 8.07328e-10) (4.47801e-09 2.33952e-10 7.41669e-10) (3.84035e-09 2.28393e-10 4.27467e-10) (3.00989e-09 1.14428e-10 -3.54488e-11) (1.68906e-09 -2.07707e-11 -3.87373e-10) (3.54795e-10 -2.34891e-11 -2.02794e-10) (2.15744e-12 -2.86053e-13 -4.94092e-12) (-9.77447e-12 3.3033e-12 2.91066e-11) (1.11261e-10 -1.29975e-12 2.35715e-10) (3.2993e-10 -3.40039e-11 3.3479e-10) (2.43392e-10 -3.65078e-11 1.50655e-10) (1.60956e-10 -2.14505e-11 8.44496e-12) (5.74014e-10 -1.85053e-11 -2.8299e-10) (2.71368e-09 3.11004e-11 -1.61189e-09) (5.42343e-09 -3.34844e-11 -2.93888e-09) (5.2542e-09 -1.72593e-10 -2.69806e-09) (2.59734e-09 -1.84213e-10 -1.50664e-09) (5.23316e-10 -8.09067e-11 -4.21814e-10) (6.3148e-11 -1.46293e-11 -3.15595e-11) (2.81517e-10 -1.55418e-11 1.62525e-10) (1.62554e-09 1.06536e-11 1.20512e-09) (2.73825e-09 2.01678e-12 1.98092e-09) (2.79978e-09 -2.87762e-11 1.77445e-09) (2.67794e-09 4.64056e-11 1.30049e-09) (3.06802e-09 1.88872e-10 8.55618e-10) (5.59049e-09 1.08209e-10 2.32508e-10) (7.03175e-09 7.16727e-11 -8.99001e-10) (8.56835e-09 -3.60029e-11 -1.99326e-09) (9.34854e-09 1.71501e-11 -2.08611e-09) (8.90923e-09 8.04787e-11 -1.08019e-09) (7.61673e-09 1.21958e-10 4.4686e-11) (3.5891e-09 3.74731e-11 2.97145e-10) (2.62365e-10 -5.03192e-12 1.8195e-11) (-2.62367e-11 -2.14728e-12 -6.3136e-12) (-1.93415e-12 -1.56491e-12 -5.64488e-12) (8.15883e-11 -7.62636e-12 -2.03808e-11) (5.42671e-10 -1.17412e-11 -6.76291e-12) (1.85855e-09 1.79172e-11 1.99902e-10) (4.65753e-09 7.3935e-11 7.93824e-10) (8.17198e-09 1.15053e-10 1.60614e-09) (9.9689e-09 1.58518e-10 2.03654e-09) (9.01695e-09 1.80927e-10 1.55816e-09) (7.2474e-09 1.21408e-10 4.43998e-10) (4.71862e-09 1.16902e-11 -7.05498e-10) (1.59365e-09 -3.85957e-11 -7.90208e-10) (9.14743e-11 -4.57565e-12 -1.43411e-10) (-2.56335e-11 1.39972e-12 1.45228e-12) (8.03969e-12 4.94797e-12 6.90113e-11) (2.15022e-10 -3.7765e-12 2.71231e-10) (3.82778e-10 -2.32967e-11 3.30363e-10) (3.37351e-10 -2.31321e-11 1.71042e-10) (5.28093e-10 -1.88409e-11 -2.64222e-11) (2.37738e-09 -7.55769e-12 -9.17886e-10) (6.79043e-09 -8.67134e-12 -3.00622e-09) (9.11031e-09 -1.77895e-10 -4.21454e-09) (6.07815e-09 -2.71096e-10 -3.33718e-09) (1.67161e-09 -1.33763e-10 -1.32289e-09) (2.1591e-10 -2.35234e-11 -2.15368e-10) (1.38879e-10 -3.17684e-12 -1.60564e-11) (9.08634e-10 1.96052e-11 2.49239e-10) (2.57515e-09 5.62979e-11 7.69916e-10) (3.76167e-09 1.6711e-11 1.10175e-09) (4.07748e-09 -2.33559e-11 1.18017e-09) (4.11192e-09 -8.53021e-12 1.109e-09) (4.58884e-09 5.97444e-11 8.8159e-10) (2.91714e-10 -6.79133e-13 4.05751e-11) (3.79489e-10 1.86783e-12 -3.92525e-11) (5.79858e-10 1.6011e-12 -1.39385e-10) (7.46572e-10 4.57126e-12 -1.64274e-10) (7.41951e-10 2.3765e-12 -9.09656e-11) (4.93045e-10 4.34094e-13 -1.76686e-11) (9.59335e-11 2.78815e-13 2.92488e-12) (-8.00045e-13 8.52475e-14 7.25475e-13) (-9.80177e-13 1.08784e-13 4.74304e-13) (4.19989e-12 -9.8843e-15 2.52748e-13) (3.03265e-11 -6.72013e-13 -9.89717e-13) (9.26779e-11 -1.11211e-12 4.24046e-12) (2.70232e-10 3.00218e-13 3.2359e-11) (6.26248e-10 2.53155e-12 1.13045e-10) (9.94829e-10 2.95441e-12 2.30098e-10) (1.05404e-09 2.45615e-12 2.73254e-10) (7.91212e-10 -1.56513e-12 1.52841e-10) (4.40415e-10 -5.67017e-12 -2.64243e-11) (1.66565e-10 -3.73277e-12 -1.03431e-10) (1.5117e-11 -1.46025e-12 -8.24249e-11) (-2.94178e-11 5.03366e-13 -3.24226e-11) (-6.28148e-12 2.41316e-13 -7.24826e-13) (7.16347e-13 1.53465e-13 3.01516e-12) (1.56938e-11 1.66983e-13 2.20988e-11) (3.25806e-11 -5.94651e-13 4.15159e-11) (4.58279e-11 -6.8988e-13 3.34401e-11) (1.28256e-10 -1.27109e-13 9.8638e-12) (4.83699e-10 1.12843e-12 -1.0707e-10) (8.52315e-10 -5.86296e-12 -3.03051e-10) (6.49171e-10 -1.7583e-11 -3.65913e-10) (1.91238e-10 -1.35051e-11 -2.20547e-10) (1.06684e-11 -4.02337e-12 -7.95882e-11) (3.14062e-13 -1.458e-13 -1.33302e-11) (1.65361e-11 5.85206e-13 -7.53048e-12) (1.48653e-10 4.07257e-12 -3.02762e-11) (4.35078e-10 9.19562e-12 -7.37925e-11) (6.83557e-10 4.57127e-12 -7.2448e-11) (6.63681e-10 -2.34827e-12 -2.95713e-12) (4.63619e-10 -6.56174e-12 6.40277e-11) (3.24189e-10 -4.46894e-12 7.94652e-11) (1.45531e-10 -3.7941e-10 -4.58481e-12) (3.52268e-10 -8.05361e-10 1.027e-10) (2.26141e-10 -5.73675e-10 1.95254e-10) (1.857e-11 -1.12962e-10 8.20655e-11) (-1.06573e-11 1.08212e-12 1.16039e-11) (-4.60615e-11 5.41211e-11 -1.14218e-11) (-7.06512e-11 1.1537e-10 -9.43205e-11) (-3.89684e-11 6.63502e-11 -1.03143e-10) (-9.33431e-12 -1.19494e-12 -1.72896e-11) (-6.52203e-11 -1.09666e-10 3.83536e-11) (-5.12147e-10 -7.95633e-10 4.80648e-10) (-9.0914e-10 -1.08233e-09 6.59754e-10) (-3.37247e-10 -2.40428e-10 1.34402e-10) (-1.57922e-11 1.85955e-11 -9.99403e-12) (2.12796e-10 3.9228e-10 -1.61364e-10) (1.07791e-09 1.08998e-09 -2.02466e-10) (2.01083e-09 1.62828e-09 2.22517e-10) (1.87407e-09 1.57831e-09 6.16701e-10) (7.10089e-10 6.92489e-10 3.83345e-10) (5.52677e-11 5.17999e-11 4.12511e-11) (-2.94736e-12 -2.07821e-11 -6.64774e-12) (-1.646e-10 -3.93865e-10 -1.91757e-10) (-5.16185e-10 -7.29004e-10 -3.44712e-10) (-6.07967e-10 -4.24894e-10 -1.8377e-10) (-4.31616e-10 -6.1375e-11 -2.55029e-11) (-2.4073e-10 9.36691e-11 2.77437e-11) (-9.55685e-11 1.14868e-10 2.66033e-11) (-1.24719e-11 8.12926e-11 8.35977e-12) (2.04922e-11 4.93045e-11 -7.71029e-12) (2.5551e-11 2.25379e-11 -1.97074e-11) (1.91769e-11 1.95214e-12 -3.11484e-11) (1.15717e-11 -2.19802e-11 -5.53695e-11) (2.09454e-12 -4.46855e-11 -7.09937e-11) (1.5234e-12 -2.37279e-11 -3.65468e-11) (1.20466e-12 2.64232e-13 -2.79786e-12) (1.20085e-11 4.14076e-11 1.12514e-11) (3.18787e-11 2.07881e-10 9.45891e-11) (7.54968e-12 1.70651e-10 8.87085e-11) (-6.42337e-13 1.06716e-11 7.92147e-12) (7.72279e-12 -2.75684e-11 8.2643e-14) (8.14917e-11 -1.54097e-10 5.24687e-11) (9.85118e-12 -5.33249e-10 3.16869e-10) (-4.5548e-10 -7.09816e-10 6.1321e-10) (-9.3211e-10 -4.20055e-10 5.23189e-10) (-7.50248e-10 2.12423e-12 7.18147e-11) (-3.46215e-10 1.53628e-10 -2.34258e-10) (-8.99985e-11 1.81305e-10 -4.20282e-10) (7.38126e-11 5.94666e-11 -2.16858e-10) (3.92322e-11 -1.49276e-11 -3.88866e-12) (5.5529e-11 -2.59466e-10 2.82616e-10) (-5.92216e-10 -1.19467e-09 1.01377e-09) (-1.96074e-09 -2.0462e-09 8.43597e-10) (-1.5452e-09 -1.03186e-09 -3.05045e-10) (-3.73591e-10 5.71274e-11 -6.15802e-10) (4.37419e-10 1.25263e-09 -1.47327e-09) (1.75398e-09 2.56164e-09 -1.48158e-09) (2.07899e-09 2.24673e-09 -1.5621e-10) (2.14247e-09 1.67275e-09 1.09387e-09) (1.95101e-09 1.05632e-09 1.74495e-09) (7.88351e-10 1.70264e-10 8.94675e-10) (5.53786e-11 -1.00089e-10 1.31797e-10) (-3.51163e-10 -4.95482e-10 3.36726e-11) (-1.64351e-09 -1.24643e-09 -2.00197e-10) (-1.86072e-09 -9.24769e-10 -2.24053e-10) (-7.27813e-10 -1.87624e-10 -6.31003e-11) (-1.171e-10 2.26059e-11 5.55539e-12) (-2.08172e-11 4.39625e-11 1.731e-11) (1.41777e-11 9.90789e-11 3.3295e-11) (5.34867e-11 1.41347e-10 1.29392e-11) (6.11446e-11 1.13171e-10 -3.71854e-11) (3.63176e-11 4.01686e-11 -5.54502e-11) (2.11757e-11 -1.0098e-11 -5.85247e-11) (2.28698e-11 -5.4982e-11 -6.55955e-11) (2.81124e-11 -5.62815e-11 -4.11846e-11) (1.91789e-11 -1.46828e-11 -1.1187e-11) (1.85755e-11 9.37291e-12 -3.67998e-12) (5.01275e-11 8.29485e-11 -4.52885e-12) (6.75092e-11 1.42455e-10 -1.21401e-11) (4.21149e-11 5.38899e-11 -1.25199e-11) (2.55886e-11 -5.78716e-12 -2.73686e-12) (1.24792e-10 -1.36771e-10 1.60137e-10) (-1.11744e-10 -3.88054e-10 4.06153e-10) (-9.20926e-10 -7.01641e-10 6.99611e-10) (-1.4332e-09 -5.75331e-10 4.13685e-10) (-5.69505e-10 -1.32344e-10 -8.40628e-11) (-4.72857e-11 9.98602e-12 -1.07665e-10) (1.32566e-10 4.84889e-11 -1.3093e-10) (3.21211e-10 1.86189e-11 -8.31677e-12) (2.71236e-10 -1.08726e-10 1.79722e-10) (-4.86231e-12 -2.49151e-10 2.56857e-10) (-1.03846e-09 -9.09367e-10 3.95411e-10) (-3.91356e-09 -2.31027e-09 -4.84061e-10) (-3.99163e-09 -2.04842e-09 -2.20301e-09) (-1.13398e-09 -4.17105e-10 -1.77607e-09) (1.40058e-10 3.45799e-10 -8.9739e-10) (1.03364e-09 1.3534e-09 -7.07408e-10) (1.90951e-09 2.74073e-09 4.84282e-11) (1.78438e-09 2.76107e-09 1.12391e-09) (1.13753e-09 1.56192e-09 1.52914e-09) (4.31018e-10 3.83256e-10 1.05663e-09) (-3.23925e-11 -1.20774e-10 4.37862e-10) (-5.3089e-10 -5.83585e-10 3.25776e-10) (-1.47507e-09 -1.41591e-09 -6.79359e-11) (-1.2157e-09 -1.13582e-09 -4.75792e-10) (-2.58168e-10 -2.12357e-10 -2.09558e-10) (-5.80299e-12 7.44293e-12 -1.81937e-11) (5.34905e-11 1.19645e-10 -1.19816e-11) (1.77173e-10 2.97306e-10 2.67613e-11) (2.10256e-10 2.73954e-10 4.20828e-11) (1.29827e-10 1.18974e-10 2.90056e-11) (3.78354e-11 1.30318e-11 1.04191e-11) (1.28287e-11 -1.2978e-11 3.81097e-12) (1.02554e-11 -4.73453e-11 -7.44665e-12) (5.26088e-12 -4.43618e-11 -3.47868e-11) (7.25531e-12 -6.74193e-12 -5.9913e-11) (2.03077e-11 6.34535e-11 -9.42014e-11) (5.60475e-11 1.66309e-10 -1.00902e-10) (1.04669e-10 1.90321e-10 -5.89e-11) (1.21736e-10 9.81666e-11 -5.78118e-12) (1.2727e-10 6.97078e-13 4.48547e-11) (3.09003e-10 -4.09026e-10 5.54615e-10) (-3.67255e-11 -3.97904e-10 5.19017e-10) (-3.12023e-10 -2.47733e-10 3.94123e-10) (-3.34138e-10 -7.08637e-11 1.75582e-10) (-1.30749e-10 1.3204e-11 1.90296e-12) (-1.88388e-11 8.65689e-12 -2.01341e-11) (2.57905e-12 -6.36266e-12 -7.51292e-12) (1.64741e-11 -1.42618e-10 2.06042e-11) (-8.0775e-11 -4.23663e-10 1.41458e-10) (-2.16345e-10 -2.68414e-10 9.81988e-11) (-4.36579e-10 -1.26507e-10 -4.25456e-11) (-8.63651e-10 -1.00729e-10 -4.37132e-10) (-6.73757e-10 -1.79555e-10 -6.79524e-10) (-1.38956e-10 -1.13399e-10 -3.20629e-10) (1.10836e-11 -9.05867e-12 -4.78845e-11) (4.60214e-11 5.1177e-11 -1.69704e-11) (2.40877e-10 5.07024e-10 3.90903e-11) (5.37155e-10 1.43693e-09 2.85633e-10) (4.69891e-10 1.37839e-09 5.69111e-10) (8.56253e-11 4.08494e-10 4.31498e-10) (-1.28895e-10 -4.43365e-11 2.45383e-10) (-7.54029e-10 -7.40966e-10 1.98584e-10) (-1.5431e-09 -1.78048e-09 -7.36265e-10) (-1.01221e-09 -1.48272e-09 -1.42204e-09) (-8.2088e-11 -3.39805e-10 -5.15773e-10) (6.88975e-11 6.84712e-12 -3.41557e-11) (6.17384e-10 3.67973e-10 2.77155e-10) (1.38251e-09 9.6897e-10 8.86575e-10) (1.14629e-09 8.14785e-10 7.66554e-10) (4.39007e-10 2.63753e-10 3.15173e-10) (7.03565e-11 8.98592e-12 6.4358e-11) (6.49764e-12 -1.68118e-11 6.88561e-12) (-8.41911e-12 -3.66355e-11 -3.6879e-11) (-5.31129e-11 -1.21238e-11 -2.93626e-10) (-1.31192e-10 2.41106e-10 -7.29479e-10) (-1.32302e-10 4.28385e-10 -6.59298e-10) (-1.31895e-11 2.78025e-10 -2.27226e-10) (5.53388e-11 1.02697e-10 -1.5341e-11) (1.62657e-10 4.39089e-11 9.35539e-11) (3.75769e-10 -1.51725e-10 3.48642e-10) (3.60659e-10 -7.56725e-10 6.60153e-10) (4.83973e-11 -3.24711e-10 3.2744e-10) (-2.67969e-11 -3.39674e-11 8.87664e-11) (-3.29332e-11 3.09659e-11 3.10906e-11) (-5.38393e-11 7.93093e-11 -1.64684e-12) (-3.93588e-11 2.55765e-11 -1.47932e-11) (-1.42916e-10 -1.16887e-10 5.01702e-12) (-9.8002e-10 -1.21493e-09 2.77271e-10) (-1.83256e-09 -1.7782e-09 3.37888e-10) (-1.16674e-09 -5.47134e-10 -9.82586e-11) (-4.23857e-10 6.85233e-11 -2.14399e-10) (-7.01418e-11 9.40657e-11 -1.27945e-10) (3.41757e-11 1.47211e-11 -3.83936e-11) (1.37279e-10 -3.9012e-11 -1.55117e-11) (9.2574e-11 -3.41218e-11 1.32108e-11) (2.25098e-12 2.21242e-12 6.8652e-13) (-6.39992e-11 1.47617e-10 -1.79337e-11) (-2.29834e-10 6.91554e-10 -3.71357e-11) (-2.10442e-10 9.57935e-10 1.40293e-10) (-1.72717e-10 4.72841e-10 2.38392e-10) (-1.94809e-10 6.03595e-11 1.13077e-10) (-6.76415e-10 -3.72593e-10 -1.76192e-10) (-1.74173e-09 -1.98778e-09 -1.83819e-09) (-1.38278e-09 -2.81656e-09 -2.94679e-09) (-1.76281e-10 -9.06353e-10 -1.11479e-09) (5.12305e-11 -7.89414e-12 -5.04418e-11) (7.41954e-10 4.87484e-10 4.33131e-10) (2.9532e-09 1.81676e-09 2.64616e-09) (3.73068e-09 1.8468e-09 3.64077e-09) (1.78067e-09 5.93816e-10 1.73765e-09) (2.3676e-10 -9.10301e-12 2.0996e-10) (5.3962e-12 -2.28448e-11 -1.34982e-11) (-9.88157e-11 -9.90732e-11 -3.44848e-10) (-2.45985e-10 1.04064e-10 -9.0839e-10) (-2.50323e-10 4.5865e-10 -9.42783e-10) (-1.2356e-10 4.916e-10 -4.98039e-10) (1.22276e-11 2.26596e-10 -9.80874e-11) (6.01314e-11 5.80136e-11 3.0587e-11) (2.61512e-10 -8.30574e-11 2.4061e-10) (5.35124e-10 -5.77666e-10 6.34961e-10) (1.68301e-11 -2.90446e-10 7.23643e-11) (-4.62566e-12 -3.49913e-11 1.8984e-11) (2.0858e-12 1.15942e-11 1.3089e-11) (3.60326e-11 1.5546e-10 4.46612e-11) (4.21668e-11 2.29916e-10 2.51821e-11) (-4.22429e-12 3.02021e-11 8.12219e-12) (-1.26479e-10 -1.22476e-10 7.9908e-11) (-1.46738e-09 -1.57458e-09 5.06621e-10) (-3.73041e-09 -2.61123e-09 1.33464e-10) (-3.67876e-09 -1.09277e-09 -8.29016e-10) (-1.22436e-09 1.41768e-10 -5.60594e-10) (-3.19505e-11 5.21651e-11 -4.36824e-11) (2.12007e-10 3.54744e-11 1.37411e-11) (8.46317e-10 -1.1344e-10 1.519e-10) (5.4676e-10 -8.48797e-11 9.89319e-11) (3.52513e-11 1.81648e-11 6.03977e-12) (-1.62797e-10 2.58074e-10 -1.59168e-11) (-1.0147e-09 1.12501e-09 -4.83171e-11) (-1.18934e-09 1.28769e-09 1.0775e-10) (-6.84683e-10 6.27382e-10 1.69846e-10) (-3.21695e-10 8.23211e-11 1.41455e-11) (-4.94084e-10 -4.08869e-10 -3.31943e-10) (-9.30818e-10 -2.43638e-09 -1.79316e-09) (-6.46726e-10 -3.35907e-09 -2.53455e-09) (-2.14474e-10 -1.00018e-09 -1.06698e-09) (-1.69895e-14 1.00261e-11 -9.47251e-11) (2.56037e-10 4.28673e-10 8.99174e-11) (1.6502e-09 1.59824e-09 1.52585e-09) (2.90305e-09 1.62826e-09 3.25038e-09) (1.75656e-09 4.81378e-10 2.083e-09) (2.70993e-10 -6.51721e-12 2.71842e-10) (7.38875e-12 -8.28688e-12 -1.04736e-11) (-3.09491e-11 -3.52627e-11 -2.03182e-10) (-4.6746e-11 2.69852e-11 -2.54141e-10) (-6.53395e-12 8.68691e-11 -1.26157e-10) (3.62894e-11 1.26472e-10 -5.68724e-11) (6.97623e-11 8.90902e-11 1.2769e-12) (8.64852e-11 3.54857e-12 3.86762e-11) (1.7268e-10 -1.95697e-10 1.16445e-10) (1.49832e-10 -4.6297e-10 1.47003e-10) (-1.11581e-10 -1.76955e-10 -7.22933e-11) (-4.71308e-12 -1.00878e-11 1.1264e-13) (2.16023e-11 1.91008e-11 1.83999e-11) (2.16556e-10 2.60763e-10 9.31111e-11) (3.79988e-10 4.53716e-10 1.11175e-10) (1.72948e-10 1.31128e-10 9.02313e-11) (2.81946e-11 -7.93661e-11 1.13346e-10) (-7.05107e-10 -8.85192e-10 5.0396e-10) (-3.69899e-09 -1.96017e-09 3.61215e-10) (-5.22754e-09 -8.71016e-10 -8.33685e-10) (-2.11265e-09 3.48026e-10 -7.03482e-10) (-1.07818e-10 1.03325e-10 -6.42714e-11) (8.2336e-11 3.08921e-11 2.04691e-12) (4.12721e-10 -4.96945e-11 3.10924e-11) (2.88359e-10 -6.44869e-11 3.15133e-12) (2.34314e-11 6.31552e-12 -9.84474e-13) (-7.71536e-11 1.49488e-10 1.14448e-11) (-7.77486e-10 8.97316e-10 1.29586e-10) (-1.31169e-09 1.22611e-09 2.65815e-10) (-7.7733e-10 5.3134e-10 1.46187e-10) (-1.64887e-10 5.35968e-12 -1.22685e-11) (-1.24468e-10 -4.24398e-10 -2.3144e-10) (2.55637e-11 -2.15408e-09 -1.27607e-09) (-1.83256e-10 -2.41156e-09 -1.80783e-09) (-4.54226e-10 -8.32908e-10 -9.4075e-10) (-1.88592e-10 -1.53226e-11 -2.1234e-10) (-2.10256e-11 1.78052e-10 -3.66553e-11) (4.75329e-10 8.46438e-10 3.1885e-10) (1.33365e-09 1.23529e-09 1.15966e-09) (1.08724e-09 5.87397e-10 1.11286e-09) (2.7231e-10 3.99117e-11 2.83722e-10) (2.41612e-11 -1.75518e-11 1.17384e-11) (1.54666e-11 -2.83747e-11 -1.71556e-11) (2.2994e-11 -1.50562e-11 -1.98353e-11) (5.92379e-11 1.46659e-11 -1.32108e-11) (1.48224e-10 7.71033e-11 1.15477e-11) (1.19247e-10 4.54468e-11 2.60863e-11) (2.30046e-11 -1.19617e-11 4.79576e-12) (-1.79743e-11 -1.1558e-10 -2.67417e-11) (-1.62717e-10 -3.15396e-10 -1.29697e-10) (-2.56413e-11 -7.85026e-11 2.10354e-12) (7.95268e-12 -4.1717e-12 1.38386e-11) (8.13801e-11 6.93053e-11 4.73212e-11) (3.01239e-10 2.99625e-10 3.21607e-11) (4.72388e-10 3.74099e-10 -4.03043e-12) (2.71666e-10 8.87782e-11 7.11769e-11) (6.69483e-11 -1.10131e-10 1.68075e-10) (-6.95643e-10 -7.09549e-10 6.94358e-10) (-2.90995e-09 -1.15789e-09 8.59525e-10) (-2.84941e-09 -2.54368e-10 -5.27004e-11) (-8.48234e-10 2.61744e-10 -2.75504e-10) (-7.17301e-11 1.31764e-10 -1.02641e-10) (3.51911e-11 4.44336e-11 -5.50348e-11) (3.68763e-11 -2.42383e-12 -4.25731e-11) (7.75948e-12 -7.26436e-12 -1.1403e-11) (-2.37748e-13 3.1272e-13 3.45064e-13) (-3.89489e-11 8.12035e-11 5.8609e-11) (-2.37367e-10 4.26572e-10 2.44401e-10) (-4.41386e-10 5.63903e-10 2.90203e-10) (-2.37921e-10 1.76939e-10 9.72386e-11) (-2.27241e-11 -1.39741e-11 -3.33108e-12) (7.64803e-11 -4.43076e-10 -2.51231e-10) (3.21683e-10 -1.30716e-09 -1.06243e-09) (-1.30465e-10 -1.07122e-09 -1.2013e-09) (-5.90255e-10 -5.24567e-10 -7.36877e-10) (-5.04148e-10 -1.43853e-10 -2.81835e-10) (-8.98461e-11 3.0959e-11 -2.82875e-11) (3.59048e-11 1.52491e-10 3.82742e-11) (5.06036e-10 6.32215e-10 3.59604e-10) (7.41211e-10 5.94365e-10 6.11047e-10) (3.8314e-10 1.52113e-10 3.51383e-10) (1.19569e-10 -2.28922e-11 8.77465e-11) (7.105e-11 -4.44858e-11 9.73316e-12) (9.6895e-11 -3.55021e-11 -2.41145e-11) (1.56177e-10 1.08815e-11 -2.83989e-11) (1.586e-10 4.81639e-11 5.11522e-12) (2.98645e-11 7.7186e-12 6.10105e-12) (-6.49919e-12 -1.17077e-11 -3.96478e-12) (-1.6895e-10 -2.11965e-10 -1.0237e-10) (-1.87196e-10 -3.00214e-10 -1.10322e-10) (4.88673e-12 -7.86786e-11 1.55796e-10) (1.24253e-11 3.41734e-11 9.14597e-11) (4.94015e-11 1.08402e-10 2.92585e-11) (2.14965e-10 2.54218e-10 -1.33056e-10) (3.59777e-10 2.15939e-10 -2.42499e-10) (1.33724e-10 8.54754e-13 -3.15357e-11) (1.12843e-11 -1.16488e-10 1.29824e-10) (-7.46562e-10 -6.39e-10 8.77863e-10) (-1.55858e-09 -6.16214e-10 8.46711e-10) (-6.55942e-10 -7.18848e-11 3.82743e-11) (-1.34589e-10 8.74398e-11 -1.38615e-10) (-1.83356e-11 2.06504e-10 -3.0711e-10) (-2.74185e-11 1.28293e-10 -3.14827e-10) (-9.65619e-11 -8.69108e-12 -1.92428e-10) (-6.83495e-11 -3.52555e-11 -4.34094e-11) (-1.69655e-11 -4.25048e-12 1.66589e-11) (-1.15068e-11 9.2475e-11 1.55794e-10) (-2.74374e-11 3.9953e-10 3.79056e-10) (-1.11014e-10 3.84659e-10 2.857e-10) (-4.10993e-11 5.7983e-11 4.40172e-11) (8.32012e-13 -1.06784e-11 -7.02343e-12) (1.73169e-10 -3.13503e-10 -3.22943e-10) (2.39301e-10 -4.82602e-10 -7.45649e-10) (-1.09079e-10 -2.86142e-10 -5.20469e-10) (-4.16369e-10 -2.84399e-10 -3.21221e-10) (-5.096e-10 -3.1157e-10 -1.67224e-10) (-1.39719e-10 -6.71059e-11 -3.56095e-11) (-2.28068e-12 9.03039e-12 1.12467e-12) (1.56787e-10 2.47244e-10 1.17383e-10) (4.88685e-10 4.97694e-10 3.9665e-10) (3.80207e-10 2.37118e-10 3.28708e-10) (1.0864e-10 9.77318e-12 7.03696e-11) (4.03986e-11 -2.01143e-11 -1.01617e-11) (7.50637e-11 -2.8306e-11 -7.89717e-11) (1.03224e-10 9.78795e-12 -9.01901e-11) (5.4927e-11 1.97626e-11 -2.24247e-11) (2.08022e-12 4.93666e-13 2.59869e-13) (-1.28852e-11 -2.1471e-11 5.50994e-12) (-6.35751e-11 -1.59854e-10 4.5806e-11) (-3.21989e-11 -2.20554e-10 1.42986e-10) (-5.99377e-11 -2.04446e-11 2.05495e-10) (-8.04383e-12 1.20484e-10 1.28344e-10) (8.85581e-11 2.07529e-10 1.38868e-11) (2.0462e-10 2.13842e-10 -1.80038e-10) (1.212e-10 3.67427e-11 -1.61172e-10) (-1.06167e-13 -2.44471e-11 -6.55981e-12) (-2.92806e-10 -3.14939e-10 3.35271e-10) (-8.05811e-10 -5.27362e-10 8.89868e-10) (-2.97637e-10 -1.54408e-10 2.34183e-10) (-1.05636e-11 -2.11022e-12 -8.87927e-12) (3.51404e-11 9.26155e-11 -2.02331e-10) (4.39048e-11 2.37768e-10 -4.33735e-10) (-1.05004e-10 9.86223e-11 -3.29048e-10) (-2.00041e-10 -6.48408e-11 -1.71244e-10) (-1.99758e-10 -1.32458e-10 1.71771e-12) (-9.36486e-11 -4.52528e-11 1.03576e-10) (-4.04071e-11 1.09952e-10 1.85957e-10) (-2.31809e-11 4.57495e-10 3.02519e-10) (-5.06298e-11 3.81562e-10 1.57576e-10) (-9.63477e-12 3.88954e-11 2.46372e-12) (1.86529e-11 -1.47107e-11 -5.29883e-11) (1.87123e-10 -1.46725e-10 -3.73687e-10) (1.29018e-10 -9.74675e-11 -3.12525e-10) (-7.67739e-12 -3.76518e-11 -5.00259e-11) (-1.55066e-10 -1.86655e-10 -5.20825e-12) (-5.01447e-10 -5.42487e-10 2.15614e-11) (-3.29762e-10 -2.9311e-10 -3.88078e-11) (-1.18068e-11 -3.83809e-12 -4.79584e-12) (6.21798e-11 9.58411e-11 1.04299e-11) (3.05474e-10 3.90741e-10 1.40698e-10) (1.94638e-10 2.3426e-10 1.35225e-10) (1.9682e-11 1.742e-11 1.1846e-11) (5.18893e-12 -2.64601e-12 -1.06493e-11) (3.62491e-11 -1.32257e-11 -1.08008e-10) (6.97111e-11 1.58972e-11 -1.30563e-10) (2.94767e-11 1.1758e-11 -2.83389e-11) (2.7547e-12 -1.04985e-12 1.7942e-12) (1.43054e-12 -6.48543e-11 6.45548e-11) (-2.64647e-11 -2.88978e-10 2.63033e-10) (-6.98226e-11 -2.62326e-10 3.30025e-10) (-2.24606e-10 2.98658e-11 3.10697e-10) (-1.44449e-10 1.64324e-10 2.84959e-10) (3.67473e-12 7.39385e-11 4.13282e-11) (8.62915e-12 1.97049e-11 -1.76938e-11) (-3.11987e-11 -1.28139e-11 -3.32615e-11) (-3.34054e-10 -1.9832e-10 6.63323e-11) (-5.42259e-10 -4.11629e-10 4.78996e-10) (-1.26093e-10 -2.04367e-10 2.77425e-10) (8.72472e-12 -2.35028e-11 1.27294e-11) (3.55794e-11 -3.0971e-12 -5.35449e-11) (7.87472e-11 1.05533e-10 -2.5784e-10) (2.22049e-11 1.88504e-10 -3.40477e-10) (-5.59945e-11 5.7272e-11 -1.62313e-10) (-9.52668e-11 -3.55892e-11 -4.5559e-11) (-2.62646e-10 -1.64146e-10 9.38557e-11) (-3.01085e-10 -1.11723e-10 2.83292e-10) (-1.45242e-10 1.12116e-10 2.35655e-10) (-4.88955e-11 3.71029e-10 1.61235e-10) (1.7786e-11 3.95649e-10 -1.73609e-12) (4.12209e-11 1.25552e-10 -8.31069e-11) (1.35483e-10 3.57272e-11 -2.09176e-10) (2.73137e-10 -1.92033e-11 -3.12847e-10) (1.21568e-10 -2.15257e-11 -7.75583e-11) (1.2138e-11 -3.05432e-11 1.50366e-11) (-2.8294e-10 -3.68792e-10 1.96675e-10) (-1.31902e-09 -1.04272e-09 2.67767e-10) (-1.04897e-09 -6.71317e-10 2.79406e-11) (-8.87839e-11 -4.07937e-11 -4.96366e-12) (1.50811e-11 2.87624e-11 -2.2349e-12) (2.5713e-10 3.20507e-10 -9.26933e-12) (2.71598e-10 3.27587e-10 6.89577e-12) (6.51339e-11 7.3815e-11 -4.69133e-12) (1.74314e-11 1.27937e-11 -1.90572e-11) (4.69788e-11 2.42857e-11 -1.05328e-10) (7.23781e-11 3.80327e-11 -1.50164e-10) (2.4629e-11 6.44203e-12 -3.03439e-11) (6.79126e-12 -7.89603e-12 5.52863e-12) (1.06227e-11 -9.31965e-11 8.03296e-11) (-2.47504e-11 -1.53718e-10 1.22964e-10) (-8.70578e-11 -9.1581e-11 1.39774e-10) (-2.73318e-10 1.07437e-10 2.95882e-10) (-1.46841e-09 2.43811e-10 1.15041e-09) (-1.17367e-09 5.98317e-11 6.59946e-10) (-5.29683e-10 -2.63298e-11 1.04537e-10) (-3.92014e-10 -9.78195e-11 2.44585e-11) (-2.32184e-10 -1.78223e-10 1.1337e-10) (-2.44872e-11 -2.08021e-10 1.65421e-10) (9.61049e-11 -1.35126e-10 9.31388e-11) (4.17273e-11 -2.2238e-11 -1.21259e-12) (1.56717e-11 1.43185e-11 -4.28319e-11) (-1.3549e-11 1.14775e-10 -2.03738e-10) (-1.88705e-11 1.29809e-10 -2.56836e-10) (-5.82019e-12 1.87705e-11 -1.00581e-10) (-1.71342e-11 -1.67444e-11 -1.69539e-11) (-1.34344e-10 -8.00597e-11 5.62348e-11) (-3.42912e-10 -5.33489e-11 2.80679e-10) (-2.47436e-10 1.52113e-10 2.84927e-10) (-5.0816e-11 3.08938e-10 1.30231e-10) (1.29263e-10 4.1076e-10 -4.16899e-11) (2.70234e-10 2.89072e-10 -1.9356e-10) (4.36442e-10 1.47282e-10 -2.97473e-10) (4.43801e-10 3.8057e-11 -1.90739e-10) (1.62093e-10 -2.11325e-11 1.16066e-11) (-9.80089e-13 -6.05338e-11 6.56068e-11) (-6.24897e-10 -5.1605e-10 2.92844e-10) (-1.42299e-09 -1.07203e-09 2.75263e-10) (-4.26056e-10 -4.92022e-10 8.88515e-11) (-1.46422e-12 -3.58637e-11 6.2853e-12) (1.94894e-11 1.19873e-11 -3.01658e-12) (7.60692e-11 1.73967e-10 -2.68921e-11) (5.96192e-11 2.72812e-10 -2.07282e-11) (1.45542e-11 1.27702e-10 -2.54585e-12) (8.56541e-12 4.55107e-11 -1.78282e-11) (4.64557e-11 7.76212e-11 -1.14637e-10) (1.01531e-10 8.15716e-11 -2.2704e-10) (3.40284e-11 -8.50619e-13 -5.92855e-11) (1.04913e-11 -2.69958e-11 -1.27583e-12) (2.8234e-11 -1.00359e-10 2.04573e-11) (3.86361e-11 -5.72889e-11 2.79997e-12) (2.45272e-12 -8.15836e-13 4.47879e-12) (-1.14251e-10 2.46835e-10 2.34659e-10) (-3.1266e-09 5.80707e-10 1.95958e-09) (-6.97845e-09 -4.76536e-10 3.1132e-09) (-3.87683e-09 -7.26677e-10 1.39714e-09) (-7.68486e-10 -3.16249e-10 2.74641e-10) (-7.7181e-11 -1.50873e-10 5.04208e-11) (3.65476e-11 -1.65808e-10 2.13905e-11) (5.02307e-11 -7.52475e-11 6.84079e-12) (9.86927e-12 -2.15362e-12 -1.19417e-12) (8.76787e-12 2.5976e-11 -2.09047e-11) (4.46618e-12 8.68414e-11 -1.08874e-10) (1.45356e-11 4.96496e-11 -1.41281e-10) (5.18872e-12 -6.75564e-12 -6.23717e-11) (-1.23266e-11 -1.08589e-11 -7.68696e-12) (-1.17954e-10 -2.84328e-11 6.45419e-11) (-2.62343e-10 2.86712e-11 2.2909e-10) (-1.28148e-10 1.12629e-10 1.49298e-10) (1.1608e-11 1.77898e-10 5.0309e-11) (2.54111e-10 3.72142e-10 -4.05821e-11) (5.82351e-10 4.04395e-10 -1.54568e-10) (7.29396e-10 2.44932e-10 -1.68011e-10) (4.91158e-10 7.24163e-11 -3.18692e-11) (9.73114e-11 -1.07885e-11 3.88354e-11) (-3.38155e-11 -5.54516e-11 6.01582e-11) (-4.82725e-10 -4.293e-10 2.46186e-10) (-4.26537e-10 -6.59737e-10 2.99158e-10) (8.71082e-12 -3.6493e-10 1.44786e-10) (4.00183e-11 -5.18286e-11 8.06538e-13) (7.20009e-12 1.70969e-11 -2.17916e-11) (-8.10431e-11 2.09529e-10 -7.46122e-11) (-2.19248e-10 3.64842e-10 1.58312e-11) (-1.71404e-10 2.54188e-10 8.11533e-11) (-4.0055e-11 9.59715e-11 3.29308e-12) (4.51123e-11 1.27124e-10 -1.36825e-10) (2.23652e-10 1.54659e-10 -4.407e-10) (1.07847e-10 -3.11762e-11 -2.01521e-10) (4.22925e-11 -1.27185e-10 -6.13973e-11) (1.36318e-10 -2.99954e-10 -7.17639e-11) (2.97455e-10 -1.82899e-10 -1.13587e-10) (1.86527e-10 6.69109e-11 -9.92003e-12) (1.86126e-10 7.04737e-10 4.32829e-10) (-1.89586e-09 8.51774e-10 1.66961e-09) (-7.70995e-09 -5.91131e-10 4.06157e-09) (-5.61346e-09 -1.48369e-09 2.71538e-09) (-1.11338e-09 -5.73917e-10 4.77338e-10) (-1.52792e-10 -2.24791e-10 -2.50231e-11) (-7.53053e-11 -2.52544e-10 -1.14072e-10) (-3.10366e-11 -8.40911e-11 -3.2666e-11) (-3.39734e-13 -1.72537e-13 -1.60404e-13) (9.40249e-12 3.26594e-11 -1.13518e-11) (3.30543e-11 6.93244e-11 -6.48176e-11) (1.51925e-11 1.92661e-11 -6.38232e-11) (-5.64448e-12 -3.43807e-12 -1.34858e-11) (-2.64652e-11 -4.81951e-12 1.09225e-11) (-9.87429e-11 1.33236e-11 1.12784e-10) (-7.90696e-11 3.92213e-11 1.1586e-10) (-1.18322e-11 2.9044e-11 2.03791e-11) (3.68908e-11 8.35229e-11 -9.74187e-12) (2.68639e-10 2.67769e-10 -4.54128e-11) (6.49662e-10 3.82844e-10 -1.56049e-11) (8.0616e-10 2.9373e-10 5.44412e-11) (4.74693e-10 1.0833e-10 8.86235e-11) (7.44124e-11 5.19778e-13 4.22376e-11) (-1.11721e-11 -3.62968e-11 4.25184e-11) (-1.12157e-10 -2.84768e-10 2.14896e-10) (-1.76047e-12 -5.96727e-10 3.91861e-10) (3.74132e-11 -2.8469e-10 1.07323e-10) (-2.08215e-11 -2.76569e-11 -2.89274e-11) (-2.14889e-10 1.04305e-10 -1.76616e-10) (-4.68598e-10 3.87195e-10 -1.01446e-10) (-5.1469e-10 5.14461e-10 2.11006e-10) (-3.30267e-10 3.89864e-10 2.8086e-10) (-5.6395e-11 1.4443e-10 3.26229e-11) (1.20674e-10 2.10105e-10 -2.31632e-10) (6.08218e-10 2.55568e-10 -9.39905e-10) (3.50688e-10 -1.49812e-10 -5.70777e-10) (2.13521e-10 -4.78148e-10 -3.08402e-10) (4.13453e-10 -8.15848e-10 -3.76558e-10) (4.09254e-10 -2.56029e-10 -2.82191e-10) (4.45055e-10 2.58654e-10 -6.30709e-11) (1.19683e-09 1.70974e-09 1.21271e-09) (-4.92634e-11 8.22041e-10 1.36928e-09) (-2.07274e-09 -1.34141e-10 2.13529e-09) (-2.9239e-09 -1.01861e-09 2.0613e-09) (-9.23459e-10 -5.22444e-10 4.29474e-10) (-2.47747e-10 -2.99393e-10 -1.13285e-10) (-3.43714e-10 -5.1591e-10 -3.87305e-10) (-3.86197e-10 -3.19481e-10 -2.20494e-10) (-1.00516e-10 -1.46538e-11 -2.87501e-11) (-1.05845e-11 3.21284e-11 -1.4253e-11) (9.9813e-12 4.70108e-11 -3.74776e-11) (-5.33294e-12 7.68675e-12 -1.70616e-11) (-1.94166e-11 -1.55207e-12 2.4261e-13) (-4.69594e-11 6.00088e-12 5.82453e-11) (-3.16954e-11 3.3505e-11 1.17389e-10) (4.0623e-13 1.784e-11 2.69053e-11) (9.01988e-12 1.478e-11 -7.70803e-12) (6.34717e-11 6.71031e-11 -5.90196e-11) (1.86196e-10 1.55187e-10 -3.62954e-11) (4.57892e-10 2.7097e-10 1.04792e-10) (7.06966e-10 2.96338e-10 2.58138e-10) (5.24651e-10 1.61951e-10 2.23001e-10) (1.61168e-10 1.82114e-11 1.0027e-10) (6.01622e-11 -5.78256e-11 9.48217e-11) (9.37893e-11 -3.29216e-10 3.05643e-10) (-1.59049e-11 -4.37419e-10 2.59435e-10) (-2.25436e-10 -2.28931e-10 -3.18685e-11) (-8.23157e-10 -9.90696e-11 -4.23883e-10) (-9.75455e-10 2.50124e-10 -3.39259e-10) (-5.84856e-10 3.54943e-10 1.10323e-10) (-4.0976e-10 4.35979e-10 4.20595e-10) (-2.10363e-10 3.6041e-10 3.35237e-10) (-8.16564e-12 1.581e-10 1.3795e-11) (3.7025e-10 3.69637e-10 -5.14721e-10) (1.32642e-09 3.01932e-10 -1.69993e-09) (9.53677e-10 -4.8052e-10 -1.20238e-09) (8.1725e-10 -1.41221e-09 -1.04032e-09) (2.0819e-10 -1.49478e-09 -1.10731e-09) (-8.66943e-11 -1.77648e-10 -3.46445e-10) (1.49149e-10 2.50925e-10 -9.5363e-12) (3.632e-09 2.76167e-09 2.81626e-09) (2.4961e-09 1.6156e-09 2.66819e-09) (1.24491e-10 7.72317e-11 9.4411e-10) (-4.25598e-10 -2.48202e-10 7.08404e-10) (-2.42503e-10 -1.9145e-10 1.8031e-10) (-1.00113e-10 -2.00333e-10 -9.91323e-11) (-4.16277e-10 -6.01708e-10 -5.47211e-10) (-1.26539e-09 -6.73092e-10 -6.07249e-10) (-9.66058e-10 -9.41818e-11 -2.17045e-10) (-1.70051e-10 8.80377e-11 -5.97191e-11) (-3.44374e-11 4.83871e-11 -4.19737e-11) (-3.50476e-11 1.1667e-11 -2.18354e-11) (-4.78633e-11 -7.833e-13 1.27121e-11) (-2.82334e-11 1.29037e-11 7.26221e-11) (2.97843e-11 3.81714e-11 9.58457e-11) (3.88239e-11 2.2453e-11 1.0297e-11) (8.47953e-11 3.96119e-11 -9.04629e-11) (9.65127e-11 6.87853e-11 -1.37397e-10) (8.9304e-11 8.56419e-11 -2.25922e-11) (2.85677e-10 2.09109e-10 1.77253e-10) (6.16383e-10 3.10512e-10 4.7104e-10) (6.47776e-10 2.18562e-10 4.53642e-10) (4.04205e-10 3.72334e-11 2.91016e-10) (2.3971e-10 -1.2206e-10 2.51634e-10) (6.34853e-11 -2.38902e-10 2.11116e-10) (-2.44545e-10 -2.83167e-10 5.40875e-11) (-1.38956e-09 -4.41655e-10 -4.41795e-10) (-2.22826e-09 -9.08821e-11 -7.50415e-10) (-1.05614e-09 1.79968e-10 -5.73073e-11) (-3.4167e-10 2.00074e-10 2.62128e-10) (-1.86381e-10 3.08849e-10 4.28548e-10) (-6.82425e-11 2.63297e-10 2.02265e-10) (4.96931e-11 1.98094e-10 -6.20145e-11) (8.32057e-10 5.403e-10 -1.04964e-09) (2.36093e-09 1.81423e-10 -2.50744e-09) (2.37984e-09 -1.27893e-09 -2.27812e-09) (8.42928e-10 -2.39479e-09 -2.1435e-09) (-2.76332e-09 -2.60439e-09 -2.80291e-09) (-2.27712e-09 -3.87356e-10 -1.0476e-09) (5.93482e-11 2.46884e-10 1.314e-10) (5.7381e-09 2.81659e-09 4.06487e-09) (5.32037e-09 2.24594e-09 3.24601e-09) (1.25164e-09 3.55142e-10 1.03433e-09) (1.13777e-10 -2.15746e-11 2.56911e-10) (1.09503e-11 -3.00386e-11 3.37117e-11) (4.44657e-11 -1.39826e-10 -1.01061e-10) (-3.17986e-10 -5.13226e-10 -5.79308e-10) (-2.842e-09 -9.58631e-10 -9.90286e-10) (-3.95295e-09 -2.27225e-10 -3.89368e-10) (-9.43275e-10 2.01111e-10 -1.52801e-10) (-1.28534e-10 6.7418e-11 -9.18919e-11) (-6.84876e-11 1.18143e-11 -4.8284e-11) (-3.81694e-11 -1.1939e-12 4.92636e-12) (-2.58933e-12 1.07111e-11 5.09343e-11) (9.50613e-11 4.72326e-11 1.0051e-10) (1.18335e-10 3.76582e-11 -5.26782e-12) (1.01343e-10 3.36292e-11 -1.3381e-10) (3.2601e-11 4.77419e-11 -1.22175e-10) (2.45085e-11 5.17747e-11 -1.25601e-11) (2.5513e-10 2.32251e-10 2.40921e-10) (7.82374e-10 3.99928e-10 8.03578e-10) (9.06171e-10 2.62406e-10 8.41957e-10) (6.11069e-10 1.52279e-11 5.38225e-10) (2.05367e-10 -1.18109e-10 2.35645e-10) (-3.65345e-11 -1.11996e-10 5.81228e-11) (-7.89251e-10 -3.74829e-10 -1.34853e-10) (-2.66191e-09 -4.3256e-10 -7.19208e-10) (-2.3599e-09 -4.78804e-11 -4.07037e-10) (-6.16046e-10 6.72565e-11 1.37379e-10) (-1.27812e-10 9.17152e-11 2.27175e-10) (-2.81794e-11 1.81443e-10 2.49122e-10) (1.49662e-12 1.74668e-10 5.71348e-11) (1.52179e-10 2.91068e-10 -2.48722e-10) (1.46436e-09 5.64795e-10 -1.70435e-09) (3.8334e-09 -2.86487e-10 -3.3357e-09) (3.1174e-09 -2.03268e-09 -3.21183e-09) (-1.48112e-09 -2.61343e-09 -3.18931e-09) (-1.25518e-08 -4.11935e-09 -5.41307e-09) (-3.30432e-09 -4.43533e-10 -9.68491e-11) (3.84148e-10 3.46115e-10 7.83789e-10) (4.03887e-09 1.71516e-09 3.03403e-09) (3.51341e-09 1.63995e-09 1.59471e-09) (1.61788e-09 5.89795e-10 6.42192e-10) (5.36747e-10 7.99883e-11 2.37439e-10) (3.87864e-10 -7.5435e-11 8.26912e-12) (5.25315e-10 -3.12013e-10 -4.22644e-10) (-2.52775e-10 -4.02457e-10 -6.17138e-10) (-4.92732e-09 -9.77317e-10 -1.03571e-09) (-7.46558e-09 -1.9777e-10 5.61752e-11) (-1.65654e-09 2.00021e-10 -1.60382e-10) (-1.63352e-10 4.28197e-11 -1.47337e-10) (-6.58414e-11 2.19495e-13 -8.69428e-11) (-2.29619e-11 -2.46094e-12 -4.38459e-12) (2.15982e-12 6.2306e-12 2.7705e-11) (9.52622e-11 3.95424e-11 8.03093e-11) (6.88885e-11 2.32695e-11 -2.36641e-12) (1.49967e-11 1.37514e-11 -4.79825e-11) (-1.92099e-11 3.49572e-11 -6.84462e-11) (1.28469e-11 4.90895e-11 -4.93526e-12) (4.15652e-10 3.14263e-10 3.4649e-10) (1.26197e-09 5.15932e-10 1.21544e-09) (1.2054e-09 2.51133e-10 1.21209e-09) (5.5543e-10 -4.17348e-11 5.64219e-10) (5.94457e-11 -7.03435e-11 9.57029e-11) (-1.73829e-10 -1.35082e-10 1.19583e-11) (-1.69952e-09 -4.08651e-10 -2.8298e-10) (-2.89102e-09 -2.17723e-10 -4.6408e-10) (-1.39563e-09 -8.91562e-12 -6.46378e-11) (-2.08697e-10 9.71491e-12 8.06406e-11) (-2.10949e-11 2.56612e-11 6.77946e-11) (1.65472e-11 8.22127e-11 6.24671e-11) (5.05781e-11 1.62961e-10 -3.37195e-11) (4.07272e-10 3.69811e-10 -5.4078e-10) (2.36931e-09 3.2718e-10 -2.23567e-09) (4.47763e-09 -9.49891e-10 -3.6956e-09) (8.5617e-10 -1.37592e-09 -2.52052e-09) (-7.75309e-09 -3.14377e-09 -5.25451e-09) (-1.28258e-08 -2.87517e-09 -2.40002e-09) (-6.59859e-10 -2.75998e-10 7.48501e-10) (1.9464e-09 3.57409e-10 2.89809e-09) (1.83231e-09 8.84709e-10 1.69617e-09) (1.30711e-09 7.6245e-10 4.58969e-10) (1.22804e-09 4.77143e-10 7.93169e-11) (1.33159e-09 1.52314e-10 -1.07653e-10) (2.02653e-09 -2.54554e-10 -6.9682e-10) (1.21853e-09 -4.85656e-10 -1.08188e-09) (-3.65384e-10 -2.50992e-10 -4.66145e-10) (-5.51193e-09 -5.4599e-10 -1.74507e-10) (-5.74736e-09 6.93904e-12 6.46517e-10) (-8.99648e-10 7.42491e-11 -1.36045e-10) (-1.05681e-10 6.17969e-12 -2.01016e-10) (-5.55913e-11 -1.38788e-11 -1.37955e-10) (-1.93817e-11 -3.33299e-12 -8.8288e-12) (-2.15643e-12 2.93005e-12 1.33989e-11) (2.25393e-11 1.34815e-11 3.03067e-11) (3.7382e-12 3.17263e-12 1.12752e-12) (-7.02029e-12 5.97233e-12 -1.01383e-11) (-1.22063e-11 1.86095e-11 -1.55336e-11) (6.06034e-11 7.6631e-11 2.31596e-11) (9.39704e-10 4.73846e-10 5.97951e-10) (1.84122e-09 5.59338e-10 1.48138e-09) (1.26454e-09 1.51587e-10 1.1695e-09) (3.03066e-10 -7.67944e-11 3.28401e-10) (-1.87958e-11 -4.48402e-11 3.46024e-11) (-8.04945e-10 -2.52281e-10 -1.06241e-11) (-2.49199e-09 -2.67435e-10 -1.84312e-10) (-1.72401e-09 -2.86768e-11 -1.27368e-10) (-3.50996e-10 4.36374e-12 -1.63282e-11) (-1.59392e-11 7.28757e-13 1.46259e-13) (5.11101e-13 2.11263e-12 4.93165e-14) (3.04227e-11 5.13859e-11 -8.6438e-12) (1.74731e-10 1.88742e-10 -1.24769e-10) (9.23075e-10 3.23563e-10 -7.38811e-10) (2.80744e-09 -9.70073e-11 -2.10762e-09) (1.74904e-09 -7.04919e-10 -2.16619e-09) (-1.3974e-09 -8.64197e-10 -2.19296e-09) (-1.03428e-08 -2.09477e-09 -3.7257e-09) (-2.42539e-09 -7.51227e-10 5.88147e-10) (8.65182e-10 -5.15058e-10 2.55533e-09) (3.03583e-09 3.09718e-10 4.20843e-09) (8.32213e-10 4.34861e-10 8.15303e-10) (7.64718e-10 4.08306e-10 1.01163e-10) (1.54074e-09 4.24906e-10 -4.01081e-10) (2.92436e-09 1.12551e-10 -1.1688e-09) (3.03289e-09 -4.17172e-10 -1.77507e-09) (4.04324e-10 -2.25074e-10 -6.34058e-10) (-8.03775e-10 -1.73099e-10 -2.53344e-10) (-4.19516e-09 -1.92429e-10 6.5314e-10) (-2.16907e-09 3.2495e-11 4.04114e-10) (-2.29588e-10 1.02291e-11 -1.15039e-10) (-4.65879e-11 -1.06025e-11 -2.79924e-10) (-3.63708e-11 -1.81201e-11 -1.51075e-10) (-1.72483e-11 -3.18624e-12 -9.64357e-12) (-8.7512e-12 1.47036e-12 1.01104e-11) (-3.77003e-12 4.31157e-12 1.38055e-11) (-4.11346e-12 2.62281e-12 4.03996e-12) (-5.40931e-12 3.73576e-12 1.63775e-12) (9.03981e-12 1.50505e-11 8.43166e-12) (4.32447e-10 2.15848e-10 2.08475e-10) (1.73273e-09 6.01117e-10 9.12714e-10) (1.993e-09 4.50841e-10 1.25987e-09) (8.33559e-10 2.89228e-11 6.41246e-10) (4.60814e-11 -4.01045e-11 8.28172e-11) (-2.77371e-10 -1.13063e-10 6.38821e-11) (-1.83612e-09 -2.51211e-10 4.82097e-11) (-1.77312e-09 -6.67051e-11 -7.1621e-12) (-3.70769e-10 1.11639e-11 -3.2893e-11) (-9.88959e-12 1.6063e-12 -1.21121e-11) (3.29707e-11 5.0306e-12 -5.64096e-11) (7.81398e-11 2.87302e-11 -9.1243e-11) (1.11574e-10 7.4031e-11 -8.12931e-11) (3.54675e-10 1.62511e-10 -1.73715e-10) (1.06336e-09 1.21054e-10 -5.46652e-10) (9.5897e-10 -1.60805e-10 -8.25812e-10) (-1.12685e-10 -2.08643e-10 -7.52834e-10) (-3.51888e-09 -5.69217e-10 -2.04391e-09) (-3.09503e-09 -5.51717e-10 -2.68748e-10) (-2.01773e-11 -2.86339e-10 8.50164e-10) (2.48928e-09 -5.45985e-10 4.01492e-09) (1.94087e-09 2.49652e-10 2.8456e-09) (5.12418e-10 2.11843e-10 3.63763e-10) (8.89571e-10 3.00056e-10 -6.84828e-11) (2.41419e-09 3.67929e-10 -9.8271e-10) (3.61443e-09 -9.30694e-12 -1.91524e-09) (1.55233e-09 -2.34124e-10 -1.16604e-09) (-9.16446e-12 -3.9146e-11 -1.09334e-10) (-1.07531e-09 -1.0205e-10 7.43502e-11) (-1.94488e-09 -5.74743e-11 6.04996e-10) (-4.8412e-10 6.38666e-12 6.97332e-11) (-6.3503e-11 -4.2224e-12 -1.13892e-10) (1.1769e-11 -1.57823e-11 -3.07784e-10) (-1.2413e-11 -1.25645e-11 -1.10662e-10) (-1.22072e-11 -1.98667e-12 -6.08557e-12) (-2.22727e-11 5.01515e-13 1.43628e-11) (-2.47406e-11 3.44137e-12 2.68998e-11) (-1.33662e-11 3.81358e-12 2.19289e-11) (1.08379e-11 9.03024e-12 3.25769e-11) (2.92011e-10 9.01306e-11 1.95549e-10) (1.29359e-09 3.51728e-10 5.8563e-10) (2.0561e-09 5.19695e-10 8.65088e-10) (1.39669e-09 2.31582e-10 6.40279e-10) (2.61282e-10 -1.44081e-11 1.66629e-10) (-2.33723e-11 -1.93092e-11 2.26618e-11) (-8.36303e-10 -1.41815e-10 9.05243e-11) (-1.52032e-09 -9.55221e-11 9.28339e-11) (-4.21087e-10 -1.10656e-12 1.31276e-12) (-4.33813e-12 1.35561e-12 -8.47672e-12) (2.02487e-10 1.45069e-11 -1.92868e-10) (7.14284e-10 4.22899e-11 -5.90529e-10) (5.63185e-10 7.92038e-11 -4.46648e-10) (2.88039e-10 8.163e-11 -1.64932e-10) (2.9986e-10 6.51676e-11 -9.22753e-11) (2.15555e-10 -2.45107e-12 -9.70268e-11) (4.37046e-12 -2.83354e-11 -1.11525e-10) (-8.49851e-10 -1.20449e-10 -6.51729e-10) (-1.82492e-09 -1.42484e-10 -5.3303e-10) (-1.46266e-10 -5.95617e-11 1.61136e-10) (1.00862e-09 -3.37576e-10 1.7091e-09) (1.81454e-09 -2.34537e-10 2.52593e-09) (8.98674e-10 1.40605e-10 1.2406e-09) (9.75518e-10 1.91199e-10 3.5526e-10) (2.0696e-09 3.36971e-10 -2.45355e-10) (4.39864e-09 3.41148e-10 -1.49141e-09) (4.54992e-09 -2.99836e-11 -1.87625e-09) (1.34295e-09 -1.20023e-10 -6.54016e-10) (1.22241e-11 -5.25207e-12 -1.00007e-11) (-1.26331e-10 -1.2683e-11 7.00082e-11) (-1.23142e-10 -5.00936e-12 9.64554e-11) (-1.29005e-12 1.24108e-14 -7.78664e-13) (7.10249e-11 -1.29395e-11 -1.58558e-10) (1.89777e-10 -2.02117e-11 -3.18124e-10) (6.00041e-11 -9.77233e-12 -8.83042e-11) (1.97853e-12 -5.11921e-13 -1.42362e-12) (2.22089e-13 -2.42051e-13 4.20404e-12) (3.34114e-12 2.99635e-13 2.22876e-11) (4.69127e-11 3.60344e-12 7.11886e-11) (3.8716e-10 3.62249e-11 2.68546e-10) (1.43901e-09 1.84262e-10 6.28299e-10) (2.71525e-09 4.4649e-10 8.80768e-10) (2.99252e-09 5.12679e-10 7.88469e-10) (1.81564e-09 1.98587e-10 4.33323e-10) (3.68797e-10 -1.0894e-11 1.03359e-10) (-5.23337e-13 -2.86698e-12 3.71787e-12) (-1.58611e-10 -1.8938e-11 2.9715e-11) (-1.28008e-10 -3.83449e-12 1.95459e-11) (-1.35007e-14 7.57216e-14 -4.3048e-13) (2.82411e-10 1.13603e-11 -1.63539e-10) (1.63483e-09 5.00737e-11 -9.3036e-10) (2.51926e-09 8.85947e-11 -1.38008e-09) (1.62265e-09 1.14013e-10 -7.66615e-10) (8.0746e-10 9.32512e-11 -2.37724e-10) (4.52745e-10 3.61704e-11 -4.70555e-11) (1.17626e-10 -6.09179e-12 -2.85501e-11) (-9.40811e-12 -8.21057e-12 -4.22219e-11) (-2.4067e-10 -1.34407e-11 -1.69956e-10) (-3.66045e-11 -2.34188e-12 3.65686e-12) (3.22374e-10 -6.00483e-11 4.12703e-10) (1.64874e-09 -2.32915e-10 1.58583e-09) (1.50757e-09 -9.68568e-11 1.4576e-09) (9.74247e-10 8.93918e-11 8.31147e-10) (5.03105e-09 3.33885e-10 9.08123e-10) (8.98233e-09 5.59273e-10 -5.46904e-10) (1.40555e-08 4.87148e-10 -2.60672e-09) (1.26286e-08 -1.96431e-11 -2.70618e-09) (5.11784e-09 -1.29829e-10 -9.25528e-10) (8.77785e-10 -3.17053e-11 1.93497e-11) (2.24399e-10 -8.10498e-12 1.21732e-10) (2.25357e-10 -3.18286e-12 9.6513e-11) (4.11926e-10 -3.388e-12 -8.33619e-11) (9.96941e-10 -4.97039e-11 -5.85544e-10) (1.23897e-09 -4.98485e-11 -7.5633e-10) (7.44702e-10 -3.02353e-11 -3.4013e-10) (2.93743e-10 -1.09385e-11 -5.25655e-11) (1.53356e-10 -6.04244e-12 3.24074e-11) (2.69475e-10 -7.95924e-12 1.37065e-10) (9.98935e-10 -5.40129e-12 4.86352e-10) (3.01212e-09 6.13769e-11 1.13463e-09) (6.56208e-09 3.44627e-10 1.88313e-09) (1.05421e-08 8.44001e-10 2.34254e-09) (1.24172e-08 1.06419e-09 2.16139e-09) (9.6324e-09 5.3852e-10 1.38836e-09) (3.91485e-09 4.06248e-11 5.31848e-10) (6.024e-10 -1.5241e-11 1.08998e-10) (5.97788e-11 -3.97859e-13 2.05096e-11) (8.98379e-11 1.75889e-12 1.39381e-11) (7.14892e-10 4.60896e-12 -1.12098e-10) (3.12162e-09 1.77212e-11 -9.6119e-10) (6.95398e-09 4.96432e-11 -2.47433e-09) (8.52012e-09 1.11333e-10 -2.88006e-09) (7.37299e-09 2.15129e-10 -2.04459e-09) (5.58302e-09 2.25323e-10 -9.99654e-10) (3.37592e-09 8.23044e-11 -3.71619e-10) (1.06066e-09 -1.83871e-11 -2.34119e-10) (1.47494e-10 -7.27007e-12 -1.22247e-10) (3.66984e-11 2.37993e-12 -3.30977e-11) (4.26011e-10 1.06602e-11 1.17511e-10) (2.58456e-09 -7.22061e-11 1.1277e-09) (3.90203e-09 -1.8908e-10 1.82367e-09) (3.70195e-09 -7.54987e-11 1.78115e-09) (3.71796e-09 1.18048e-10 1.50776e-09) (1.04212e-08 2.51773e-10 1.23197e-09) (1.70116e-08 3.93464e-10 -7.45178e-10) (2.20976e-08 2.59365e-10 -3.01148e-09) (1.57785e-08 -9.63071e-11 -2.525e-09) (5.5498e-09 -7.1079e-11 -5.71376e-10) (1.53585e-09 -9.60148e-12 1.78325e-10) (9.40958e-10 -1.41919e-12 3.17905e-10) (8.97608e-10 -6.0898e-13 1.63417e-10) (1.10566e-09 -1.17225e-11 -2.41144e-10) (1.6544e-09 -5.47757e-11 -8.45267e-10) (1.65177e-09 -4.95005e-11 -9.16664e-10) (8.91726e-10 -1.93565e-11 -4.06442e-10) (3.29806e-10 -4.42358e-12 -7.0384e-11) (2.56359e-10 -5.0085e-12 4.74508e-11) (7.71861e-10 -1.29954e-11 3.12722e-10) (2.59873e-09 -2.06606e-11 9.70558e-10) (6.54608e-09 1.91921e-11 1.98849e-09) (1.31716e-08 2.61686e-10 3.21572e-09) (2.13805e-08 7.11636e-10 4.28507e-09) (2.57249e-08 8.64682e-10 4.39409e-09) (1.87992e-08 3.29002e-10 2.86753e-09) (6.72437e-09 -1.97476e-12 1.00325e-09) (1.33402e-09 3.03881e-12 2.32675e-10) (5.39288e-10 1.37886e-11 9.28858e-11) (1.10416e-09 1.8315e-11 3.31468e-11) (3.45968e-09 7.83775e-12 -4.73384e-10) (8.49734e-09 -2.13373e-11 -2.06249e-09) (1.4176e-08 -3.75494e-11 -4.00605e-09) (1.63966e-08 1.09219e-12 -4.62594e-09) (1.49311e-08 8.87869e-11 -3.69633e-09) (1.02483e-08 9.55358e-11 -2.09162e-09) (3.88409e-09 -3.58238e-12 -9.12312e-10) (6.57068e-10 -1.70127e-11 -3.42266e-10) (1.73833e-10 1.53777e-13 -1.47846e-10) (4.84797e-10 2.31911e-11 -8.45742e-11) (2.77888e-09 8.32106e-11 3.62543e-10) (5.96153e-09 4.57722e-11 1.17335e-09) (6.85296e-09 -5.08008e-11 1.5688e-09) (6.64007e-09 -2.08546e-11 1.77296e-09) (7.4e-09 9.43776e-11 1.84815e-09) (1.03449e-09 1.57809e-12 1.57811e-10) (1.4132e-09 5.16349e-12 -4.19936e-11) (1.43013e-09 1.20447e-12 -2.47832e-10) (6.9592e-10 -4.03594e-12 -1.60898e-10) (1.75418e-10 -1.13539e-12 -2.27643e-11) (6.63208e-11 -2.24049e-13 1.61677e-11) (7.69583e-11 -3.16039e-13 3.97223e-11) (8.88643e-11 -3.53814e-13 2.76766e-11) (1.01174e-10 -1.34441e-12 -1.53371e-11) (1.19214e-10 -3.30785e-12 -7.26361e-11) (8.69998e-11 -2.09261e-12 -7.80805e-11) (3.49883e-11 -2.31306e-13 -3.32369e-11) (1.47836e-11 9.7011e-14 -7.82356e-12) (2.86732e-11 -9.86605e-14 8.92982e-13) (1.2129e-10 -5.8721e-13 2.87855e-11) (3.57521e-10 -1.4221e-12 9.11835e-11) (7.69873e-10 -1.9017e-12 1.89283e-10) (1.42373e-09 3.52785e-12 3.3802e-10) (2.17823e-09 1.14692e-11 5.18752e-10) (2.21641e-09 1.01005e-12 5.32653e-10) (1.12793e-09 -1.15712e-11 2.80329e-10) (2.67974e-10 -3.77103e-12 7.61985e-11) (6.87734e-11 3.42305e-13 2.25707e-11) (9.42805e-11 2.25613e-12 2.20742e-11) (2.83569e-10 3.92006e-12 2.2179e-11) (6.90973e-10 2.42068e-12 -4.99236e-11) (1.27734e-09 -3.92098e-12 -2.46053e-10) (1.7147e-09 -8.49784e-12 -4.6774e-10) (1.68231e-09 -1.29739e-11 -5.39991e-10) (1.16775e-09 -1.30637e-11 -4.08093e-10) (4.47048e-10 -6.75334e-12 -2.02511e-10) (6.76462e-11 -2.44471e-12 -6.9293e-11) (3.15045e-12 -1.27204e-12 -4.06931e-11) (1.28237e-11 -2.11441e-14 -2.31741e-11) (1.23868e-10 3.82585e-12 -3.68018e-11) (5.73318e-10 1.55112e-11 -3.53875e-11) (1.05635e-09 1.97764e-11 -6.51824e-12) (1.12686e-09 8.91919e-12 4.14577e-11) (9.66125e-10 -4.17821e-13 1.22305e-10) (8.9147e-10 -1.51375e-12 1.89862e-10) (2.87826e-10 -3.75382e-10 -1.1772e-10) (5.83463e-10 -7.91537e-10 8.73804e-11) (6.68232e-10 -9.04233e-10 4.53092e-10) (3.10687e-10 -4.18218e-10 3.89014e-10) (1.55819e-11 -2.81593e-11 5.78935e-11) (-2.95893e-11 1.94965e-11 -1.78481e-12) (-2.43465e-10 1.28139e-10 -1.5443e-10) (-3.71008e-10 7.28226e-11 -2.53973e-10) (-2.4714e-10 -7.34177e-11 -8.64851e-11) (-2.27509e-10 -2.43052e-10 1.24299e-10) (-2.30736e-10 -5.23377e-10 5.11333e-10) (-4.008e-11 -2.44947e-10 3.29627e-10) (1.19657e-11 2.53786e-12 1.50668e-11) (1.64651e-10 2.21678e-10 -1.3727e-10) (4.38983e-10 5.67864e-10 -5.45992e-10) (4.08355e-10 3.57566e-10 -3.92333e-10) (2.9084e-10 1.47925e-10 -7.87686e-11) (3.98253e-10 1.77935e-10 1.57503e-10) (4.56462e-10 2.61715e-10 4.01051e-10) (1.34265e-10 1.0179e-10 2.26672e-10) (-2.30793e-11 -1.06623e-11 4.50757e-11) (-3.26527e-10 -1.97389e-10 3.8479e-11) (-7.39167e-10 -3.64263e-10 -8.89221e-11) (-4.8024e-10 -1.11763e-10 -1.25714e-10) (-1.52181e-10 3.99644e-11 -6.59412e-11) (-4.53513e-11 5.70726e-11 -2.96881e-11) (-1.15428e-11 4.24857e-11 -1.13602e-11) (-3.55141e-13 1.8793e-11 -4.01348e-12) (1.10849e-12 4.54286e-12 -2.92708e-12) (1.13037e-12 -8.47371e-14 -7.49923e-12) (-1.88956e-12 -1.49688e-11 -3.59731e-11) (-1.40526e-11 -3.23326e-11 -7.1465e-11) (-1.91882e-11 -1.78464e-11 -5.5689e-11) (-8.97896e-12 1.94432e-12 -1.34139e-11) (-1.03403e-11 2.02334e-11 3.71097e-12) (-3.28344e-11 1.51862e-10 8.92153e-11) (-3.68654e-11 2.84156e-10 1.74798e-10) (-7.36111e-12 1.16731e-10 5.63137e-11) (2.38609e-12 2.95669e-12 -1.48799e-12) (6.1588e-11 -6.38709e-11 -5.50224e-11) (1.43352e-10 -1.27907e-10 3.52087e-11) (3.34346e-10 -5.71839e-10 4.5124e-10) (1.96261e-10 -9.09544e-10 9.89175e-10) (-1.87604e-10 -4.44153e-10 5.74837e-10) (-2.47076e-10 -7.88067e-11 7.60207e-11) (-6.04149e-10 5.7516e-11 -3.67765e-10) (-9.58891e-10 1.59205e-10 -1.03894e-09) (-5.16603e-10 -1.44766e-11 -5.01753e-10) (-1.59316e-10 -1.10029e-10 2.40945e-11) (-4.19287e-10 -7.69983e-10 8.91463e-10) (-6.53035e-10 -1.40789e-09 1.57983e-09) (-2.55056e-10 -4.38619e-10 3.13381e-10) (-5.7978e-12 -2.30327e-12 -6.81041e-11) (6.568e-10 8.59443e-10 -1.48651e-09) (1.98193e-09 2.23604e-09 -2.80666e-09) (1.45623e-09 1.54983e-09 -1.39131e-09) (3.84319e-10 4.49027e-10 -1.20449e-10) (1.03584e-10 1.65699e-10 1.81809e-10) (5.01796e-11 1.55372e-10 6.86639e-10) (-8.97161e-11 -2.07172e-11 9.64067e-10) (-2.85062e-10 -2.22594e-10 6.39316e-10) (-4.8245e-10 -3.38827e-10 3.04712e-10) (-4.66201e-10 -2.87075e-10 1.46276e-11) (-1.44209e-10 -6.65397e-11 -6.42339e-11) (-1.23597e-11 6.90266e-12 -2.11873e-11) (7.12025e-12 3.37453e-11 -1.42166e-11) (1.53519e-11 5.7364e-11 1.40211e-12) (8.38213e-12 4.39991e-11 7.05212e-12) (3.27503e-12 1.80726e-11 -1.33833e-12) (2.86725e-12 5.91715e-12 -7.84888e-12) (8.35746e-12 -2.61731e-12 -2.92693e-11) (1.75461e-11 -2.2923e-11 -5.98878e-11) (1.87198e-11 -2.72137e-11 -5.74381e-11) (9.48271e-12 -8.76293e-12 -2.56871e-11) (2.47524e-12 2.12802e-12 -5.45953e-12) (3.81027e-12 1.8957e-11 -3.0049e-12) (1.29258e-11 7.30688e-11 1.12167e-12) (2.96712e-11 8.71964e-11 -1.13982e-11) (4.00198e-11 4.10043e-11 -2.65827e-11) (5.65664e-11 -5.99589e-12 -2.48338e-11) (3.73342e-10 -2.79887e-10 4.12296e-10) (4.2915e-10 -7.40208e-10 9.50932e-10) (2.32437e-11 -6.04709e-10 6.80032e-10) (-1.30845e-10 -1.79796e-10 1.03225e-10) (-2.67438e-10 -8.69169e-11 -1.76439e-10) (-5.66684e-10 3.05129e-11 -6.42044e-10) (-2.66628e-10 3.0086e-11 -2.42819e-10) (-3.91715e-11 -3.09004e-11 3.91398e-11) (-1.26949e-10 -6.01066e-10 9.05245e-10) (-6.82625e-10 -1.42538e-09 1.61011e-09) (-1.55305e-09 -1.47709e-09 6.82745e-10) (-2.07304e-09 -1.23567e-09 -9.81264e-10) (-1.44689e-09 -5.53526e-10 -2.72157e-09) (6.42772e-11 3.21356e-10 -2.60402e-09) (8.43419e-10 6.93879e-10 -1.20085e-09) (1.15272e-09 9.70243e-10 -2.83604e-10) (1.04433e-09 1.19986e-09 3.87656e-10) (4.08536e-10 1.01247e-09 7.07327e-10) (-1.28207e-10 7.01923e-10 8.84621e-10) (-4.51603e-10 3.32953e-10 1.04177e-09) (-4.98199e-10 -1.23164e-10 8.27865e-10) (-3.89712e-10 -4.11617e-10 3.8352e-10) (-2.51505e-10 -4.98154e-10 7.18194e-12) (-7.17026e-11 -3.1684e-10 -1.86094e-10) (2.40972e-11 -4.93932e-11 -1.06209e-10) (6.34969e-11 6.40899e-11 -6.90415e-11) (1.67926e-10 2.74369e-10 -6.42554e-11) (2.03994e-10 3.31436e-10 -2.58968e-11) (1.38736e-10 1.55921e-10 2.70548e-12) (7.58047e-11 3.24471e-11 1.30095e-11) (5.32797e-11 -1.26432e-11 1.72718e-11) (3.17184e-11 -2.82519e-11 1.05982e-11) (5.29765e-12 -1.1795e-11 -4.09961e-12) (-1.16541e-11 -3.63317e-12 -3.4762e-11) (-8.69489e-11 6.74709e-11 -1.71692e-10) (-1.3202e-10 1.96821e-10 -2.64618e-10) (-5.51588e-11 2.2427e-10 -1.92116e-10) (3.11191e-11 1.49288e-10 -8.50258e-11) (6.25033e-11 5.87604e-11 -1.45509e-11) (1.28552e-10 -6.70569e-12 5.85399e-11) (9.08269e-10 -5.91869e-10 1.31356e-09) (5.11729e-10 -6.02316e-10 1.08155e-09) (2.42257e-11 -1.72066e-10 2.60357e-10) (-2.45274e-11 -1.25923e-11 2.87754e-12) (-1.34853e-10 2.64343e-11 -1.48994e-10) (-1.38083e-10 3.49289e-11 -1.76199e-10) (-3.58426e-11 -3.02844e-11 2.31609e-12) (-2.38971e-10 -7.01377e-10 5.91779e-10) (-7.80818e-10 -1.69407e-09 1.41346e-09) (-1.15504e-09 -9.7738e-10 5.92882e-10) (-1.94457e-09 -4.42889e-10 -5.57614e-10) (-3.14008e-09 -1.68167e-10 -2.92821e-09) (-1.78256e-09 -1.78388e-10 -3.20449e-09) (-1.18802e-10 -6.19557e-11 -7.67653e-10) (7.61663e-11 1.29995e-11 -4.16372e-11) (3.44809e-10 1.74761e-10 1.48519e-10) (4.81155e-10 5.31525e-10 3.74263e-10) (2.73632e-10 8.28875e-10 4.47162e-10) (-5.42206e-11 7.52908e-10 4.86013e-10) (-2.13205e-10 3.01274e-10 4.31968e-10) (-2.15388e-10 -6.94879e-11 2.856e-10) (-2.7829e-10 -4.24232e-10 9.38208e-11) (-4.47781e-10 -1.00057e-09 -4.79109e-10) (-3.86572e-10 -1.02829e-09 -9.81748e-10) (-4.86194e-11 -2.4886e-10 -4.22583e-10) (3.98039e-11 2.2026e-11 -5.03913e-11) (3.65295e-10 3.19353e-10 8.8609e-11) (1.19284e-09 8.69281e-10 6.06391e-10) (1.57269e-09 8.75461e-10 8.72623e-10) (1.08214e-09 3.97962e-10 6.29873e-10) (4.41364e-10 5.88799e-11 2.63775e-10) (9.41828e-11 -1.06896e-11 3.61121e-11) (1.32112e-11 -2.61165e-12 -1.84391e-11) (-5.83071e-11 3.8501e-11 -2.55688e-10) (-3.95421e-10 2.36726e-10 -8.31893e-10) (-5.6247e-10 4.25434e-10 -9.76073e-10) (-2.52416e-10 3.25119e-10 -4.60681e-10) (-7.95353e-12 8.79964e-11 -5.37424e-11) (6.48893e-11 3.45563e-11 4.85437e-11) (4.75362e-10 -1.17984e-10 5.43736e-10) (7.49025e-10 -5.73054e-10 1.04519e-09) (1.89886e-10 -1.90921e-10 3.56117e-10) (1.12147e-12 -1.56548e-12 1.88756e-11) (-2.4106e-11 3.61351e-11 -1.7444e-11) (-7.08316e-11 1.01201e-10 -1.06457e-10) (-2.99956e-11 6.96728e-12 -2.59944e-11) (-1.8615e-10 -2.76494e-10 1.3436e-10) (-1.21866e-09 -1.99344e-09 1.18728e-09) (-2.16451e-09 -2.23901e-09 1.11487e-09) (-1.91888e-09 -6.55461e-10 -1.03274e-10) (-2.09545e-09 3.63401e-10 -1.26634e-09) (-1.32731e-09 5.01707e-10 -1.64926e-09) (-1.70289e-10 9.21492e-13 -5.0395e-10) (3.66189e-11 -4.36477e-11 -4.592e-11) (1.04906e-10 -5.44015e-11 4.05709e-11) (7.28406e-11 8.54489e-12 6.12963e-11) (2.45058e-11 9.97751e-11 4.67266e-11) (-7.58874e-11 4.87519e-10 8.21554e-11) (-2.24097e-10 7.70887e-10 2.01083e-10) (-2.03074e-10 3.77898e-10 2.3452e-10) (-1.05926e-10 1.81533e-11 7.29187e-11) (-3.12773e-10 -3.50015e-10 -1.09413e-10) (-9.68141e-10 -2.15228e-09 -1.38262e-09) (-8.24009e-10 -2.85722e-09 -2.39806e-09) (-2.10745e-10 -8.08959e-10 -1.12035e-09) (4.22766e-12 4.10209e-11 -1.67949e-10) (1.77179e-10 3.8666e-10 1.03216e-11) (1.06752e-09 1.20758e-09 9.26803e-10) (2.63711e-09 1.56899e-09 2.58814e-09) (2.80587e-09 8.34764e-10 2.63736e-09) (1.22919e-09 1.01095e-10 9.30927e-10) (1.9107e-10 -2.29298e-11 3.96388e-11) (3.76508e-11 -1.6708e-11 -9.8813e-11) (-9.91306e-11 1.07719e-11 -4.14821e-10) (-2.81678e-10 1.28058e-10 -5.93959e-10) (-2.40147e-10 2.1201e-10 -4.16629e-10) (-6.701e-11 1.35905e-10 -1.17751e-10) (1.1242e-11 3.6642e-11 8.99795e-12) (1.98309e-10 8.48987e-12 2.46215e-10) (7.46917e-10 -3.60513e-10 9.56406e-10) (5.96677e-11 -9.19615e-11 5.06664e-11) (8.53108e-13 -7.34387e-13 1.22499e-12) (-4.8766e-12 5.05463e-11 8.19874e-13) (-1.03869e-11 2.12273e-10 -3.16218e-11) (-1.7384e-12 1.38887e-10 -4.16731e-11) (-8.49581e-13 1.10949e-12 -4.95337e-14) (-1.53886e-10 -3.04733e-10 1.97213e-10) (-1.25257e-09 -1.87097e-09 1.06367e-09) (-2.76992e-09 -2.16118e-09 7.19283e-10) (-3.55067e-09 -7.32334e-10 -7.05081e-10) (-2.68256e-09 5.71983e-10 -1.59839e-09) (-5.82745e-10 3.22275e-10 -7.61524e-10) (1.32638e-11 9.59469e-13 -8.31101e-11) (1.11662e-10 -6.09899e-11 -7.2434e-12) (1.6742e-10 -6.27872e-11 8.6945e-11) (6.01564e-11 2.00254e-11 7.70218e-11) (-2.65472e-11 1.28977e-10 7.55963e-11) (-2.90039e-10 5.26909e-10 8.16384e-11) (-4.51764e-10 7.42462e-10 9.18487e-11) (-2.36599e-10 3.26929e-10 9.98549e-11) (-4.50379e-11 5.20815e-12 1.13461e-11) (-1.73767e-10 -5.02415e-10 -2.02103e-10) (-3.2454e-10 -3.10038e-09 -1.74695e-09) (-3.94325e-10 -3.47512e-09 -2.6258e-09) (-3.53757e-10 -8.43856e-10 -1.12449e-09) (-9.70061e-11 6.91917e-11 -2.23296e-10) (4.61514e-11 5.08778e-10 -8.70097e-11) (6.83288e-10 1.38359e-09 4.95811e-10) (1.80226e-09 1.81816e-09 1.72632e-09) (2.15995e-09 1.12622e-09 2.09671e-09) (1.01571e-09 1.81591e-10 8.43995e-10) (1.37194e-10 -3.6179e-11 6.35315e-11) (6.87471e-12 -2.48933e-11 -1.55453e-11) (-2.35094e-11 -3.02401e-11 -4.18382e-11) (-1.25709e-11 -2.04476e-12 -2.08846e-11) (1.28352e-12 8.97438e-12 -6.74238e-12) (2.77489e-11 2.85574e-11 6.06094e-12) (1.01873e-10 2.14508e-11 6.81413e-11) (2.24726e-10 -1.02432e-10 1.87172e-10) (2.20103e-10 -2.30567e-10 1.8737e-10) (-2.44621e-11 -7.65476e-11 -6.64697e-11) (1.65633e-12 3.30057e-12 -5.33754e-12) (7.33949e-11 1.67145e-10 1.57586e-11) (2.06656e-10 4.55191e-10 7.68115e-11) (1.53876e-10 2.58355e-10 5.64346e-11) (4.84357e-11 1.45569e-11 4.23307e-11) (6.31723e-11 -2.95602e-10 3.20537e-10) (-5.42604e-10 -1.1559e-09 9.23032e-10) (-2.43072e-09 -1.43224e-09 6.75781e-10) (-5.22559e-09 -6.04816e-10 -9.71904e-10) (-4.18044e-09 5.42871e-10 -2.10959e-09) (-8.68653e-10 2.0843e-10 -8.30348e-10) (-1.94995e-11 -7.78623e-12 -8.19729e-11) (2.18776e-11 -1.59145e-11 -8.98029e-12) (3.01072e-11 -4.3411e-12 1.50311e-11) (2.89312e-11 4.61117e-11 5.56538e-11) (-4.38356e-11 2.31308e-10 1.59599e-10) (-2.48311e-10 5.04108e-10 2.34617e-10) (-2.845e-10 4.65115e-10 1.68238e-10) (-7.52659e-11 1.03525e-10 4.19816e-11) (-1.21097e-12 -7.74861e-12 -1.88269e-12) (1.61231e-10 -7.90365e-10 -4.02533e-10) (3.50657e-10 -2.77998e-09 -2.00655e-09) (-4.9777e-10 -2.36054e-09 -2.34533e-09) (-7.07581e-10 -6.45183e-10 -9.55683e-10) (-1.80191e-10 1.64939e-11 -1.23177e-10) (-1.49129e-11 1.84576e-10 2.81088e-12) (4.2717e-10 9.78026e-10 2.5305e-10) (1.08723e-09 1.52277e-09 7.47311e-10) (1.05795e-09 9.46731e-10 8.74872e-10) (4.29302e-10 1.62729e-10 4.00989e-10) (6.96883e-11 -4.11518e-11 7.09621e-11) (1.16014e-11 -5.75662e-11 7.90102e-12) (6.41264e-12 -3.34893e-11 -9.30868e-12) (1.6895e-11 -7.06948e-12 -3.68787e-12) (1.0546e-10 1.39393e-11 2.88668e-11) (2.25871e-10 1.8312e-11 1.22468e-10) (1.4302e-10 -5.04144e-11 9.61444e-11) (3.92509e-11 -9.55803e-11 1.57398e-11) (-2.4045e-11 -1.80647e-10 -7.12387e-11) (-7.84166e-11 -1.67377e-10 -6.35865e-11) (8.79969e-12 4.49394e-12 -2.67701e-12) (3.06969e-10 3.50441e-10 1.07234e-11) (6.56028e-10 7.9469e-10 8.14522e-11) (4.74043e-10 4.1781e-10 1.44195e-10) (2.7793e-10 1.43342e-11 2.34876e-10) (2.31566e-10 -4.19565e-10 7.1725e-10) (-4.45165e-10 -7.26282e-10 1.01598e-09) (-1.71137e-09 -5.19414e-10 6.19314e-10) (-3.48802e-09 1.14571e-10 -5.95318e-10) (-2.84956e-09 4.8299e-10 -1.42397e-09) (-8.62168e-10 9.85894e-11 -7.09835e-10) (-1.63407e-10 -4.79571e-11 -1.8914e-10) (-3.71266e-11 -2.69197e-11 -3.51743e-11) (-3.41227e-12 -6.96856e-14 -8.09495e-15) (-4.35452e-12 4.39402e-11 3.53612e-11) (1.83492e-12 2.36398e-10 1.88571e-10) (-4.05025e-11 3.71929e-10 2.93052e-10) (-4.36993e-11 2.12129e-10 1.70863e-10) (1.42831e-12 1.44608e-11 1.64791e-11) (5.78533e-11 -6.32362e-11 -3.14806e-11) (5.02649e-10 -8.67173e-10 -7.97284e-10) (2.28413e-10 -1.62876e-09 -2.16929e-09) (-9.91998e-10 -1.20249e-09 -2.07925e-09) (-1.05548e-09 -5.37702e-10 -8.12088e-10) (-1.92773e-10 -8.9444e-11 -4.20572e-11) (-2.83923e-13 4.60366e-12 9.36511e-12) (1.99927e-10 3.10923e-10 1.56168e-10) (6.69768e-10 1.0729e-09 3.99274e-10) (6.1753e-10 8.67334e-10 4.33271e-10) (2.07907e-10 1.83485e-10 1.9523e-10) (3.15251e-11 -7.99855e-12 3.15596e-11) (1.65929e-11 -2.7968e-11 -4.69265e-12) (4.41371e-11 -3.44539e-11 -4.83805e-11) (1.24824e-10 -3.72419e-12 -6.02548e-11) (2.85438e-10 2.6123e-11 4.00581e-11) (3.07234e-10 -3.57341e-11 1.82142e-10) (7.14953e-11 -1.06787e-10 8.2434e-11) (-1.14689e-10 -3.68136e-10 -2.17756e-11) (-3.51497e-10 -6.61375e-10 -1.99564e-10) (-7.96298e-11 -1.96596e-10 1.08122e-10) (3.58663e-12 1.17712e-11 1.76496e-11) (1.2541e-10 2.97585e-10 9.00463e-12) (2.94656e-10 4.52872e-10 -6.05565e-11) (1.44603e-10 9.18989e-11 2.65756e-11) (1.01365e-10 -8.2637e-11 1.82495e-10) (-3.92032e-11 -4.06964e-10 7.28923e-10) (-2.74249e-10 -2.53324e-10 6.11712e-10) (-1.84759e-10 1.56765e-11 9.4894e-11) (-3.24005e-10 2.01352e-10 -2.00872e-10) (-4.64879e-10 3.47764e-10 -6.14138e-10) (-3.6198e-10 1.08119e-10 -4.99958e-10) (-3.88775e-10 -1.25007e-10 -3.42198e-10) (-4.83529e-10 -2.57657e-10 -2.1829e-10) (-2.02e-10 -8.54204e-11 -2.34996e-11) (-2.91403e-11 1.69926e-11 2.91993e-11) (1.90049e-11 2.23969e-10 2.24374e-10) (9.21879e-11 4.22401e-10 4.14741e-10) (6.4338e-11 1.98735e-10 2.16498e-10) (3.0302e-11 1.23314e-11 1.94417e-11) (1.81886e-10 -9.28817e-11 -1.43112e-10) (4.59395e-10 -4.29888e-10 -1.08148e-09) (-1.79877e-10 -4.52355e-10 -1.66409e-09) (-7.58771e-10 -3.87326e-10 -9.58544e-10) (-4.50435e-10 -4.10709e-10 -1.7531e-10) (-1.07642e-10 -3.51536e-10 6.18608e-11) (1.37752e-11 -5.91074e-11 3.34296e-11) (2.97944e-11 5.03853e-11 3.43667e-11) (1.89882e-10 6.05993e-10 1.86717e-10) (3.10958e-10 8.30813e-10 2.8627e-10) (1.60766e-10 2.83594e-10 1.47845e-10) (2.13124e-11 1.39397e-11 9.80891e-12) (1.83436e-11 -8.18471e-12 -2.81703e-11) (8.64094e-11 -1.44636e-11 -1.92289e-10) (1.82421e-10 2.92129e-11 -1.84723e-10) (2.38721e-10 2.04046e-11 -1.23812e-11) (1.85291e-10 -6.67933e-11 1.15977e-10) (1.58267e-11 -2.32886e-10 1.19304e-10) (-3.63202e-10 -8.79055e-10 1.29481e-10) (-4.37536e-10 -9.72049e-10 1.77183e-10) (-2.06535e-11 -2.39194e-10 2.65935e-10) (-4.5526e-11 1.69333e-11 1.03469e-10) (-5.37922e-11 1.09673e-10 3.97067e-11) (-4.45789e-11 7.66643e-11 2.9977e-12) (-9.62724e-11 -4.25371e-12 4.34262e-11) (-5.22371e-10 -3.20549e-10 4.11405e-10) (-4.30582e-10 -3.63727e-10 5.32367e-10) (-2.2391e-11 -2.03602e-11 7.88192e-11) (5.88735e-11 8.05731e-11 -2.07375e-11) (3.84855e-10 5.92504e-10 -4.73718e-10) (3.18791e-10 5.93991e-10 -6.68718e-10) (1.42096e-11 1.07081e-10 -2.63401e-10) (-1.42807e-10 -1.06367e-10 -1.7431e-10) (-5.52053e-10 -4.9206e-10 -1.96633e-10) (-5.3867e-10 -3.91649e-10 2.02892e-11) (-1.89341e-10 -3.65553e-11 1.11134e-10) (-1.06151e-10 1.65126e-10 2.12027e-10) (-3.45303e-11 3.53267e-10 2.9368e-10) (2.15371e-11 1.42793e-10 8.76946e-11) (2.90401e-11 2.0235e-11 -1.83472e-11) (2.25563e-10 1.07508e-11 -4.34067e-10) (2.27259e-10 6.73782e-11 -1.09905e-09) (-5.82894e-11 2.34958e-11 -5.19193e-10) (-2.07517e-11 -5.3546e-11 -2.82285e-11) (8.8347e-11 -6.9292e-10 2.51447e-10) (2.46425e-10 -1.18212e-09 4.01915e-10) (1.73114e-11 -2.12153e-10 4.66044e-11) (-3.12043e-12 5.19991e-12 -5.24311e-14) (-3.33957e-11 3.407e-10 3.38049e-11) (1.88667e-11 7.26435e-10 1.66635e-10) (4.13888e-11 3.81895e-10 1.19164e-10) (6.25481e-12 4.67338e-11 5.6331e-13) (2.51689e-12 2.10707e-11 -7.11269e-11) (4.74237e-11 4.24192e-11 -3.41711e-10) (1.37671e-10 4.7508e-11 -2.69347e-10) (1.13762e-10 2.26599e-12 -4.06295e-11) (8.14852e-11 -6.24488e-11 4.87797e-11) (2.38652e-11 -3.35106e-10 1.49565e-10) (-5.72232e-11 -9.13223e-10 2.67002e-10) (2.11405e-11 -8.35856e-10 3.53667e-10) (6.53268e-11 -1.0544e-10 2.81749e-10) (-5.45406e-10 1.06642e-10 7.45126e-10) (-1.40688e-09 3.47544e-10 8.1445e-10) (-2.06676e-09 2.12478e-10 5.05909e-10) (-2.90782e-09 -5.48675e-10 4.91269e-10) (-1.74664e-09 -1.03711e-09 5.00791e-10) (-1.55905e-10 -2.83103e-10 1.40886e-10) (5.65787e-11 -5.98612e-12 3.14543e-12) (7.29077e-10 5.19874e-10 -3.49895e-10) (1.70872e-09 1.63578e-09 -1.18357e-09) (1.37321e-09 1.29215e-09 -1.05057e-09) (3.11066e-10 1.92779e-10 -2.86611e-10) (1.52786e-12 -4.20703e-11 -4.4065e-11) (-3.33819e-10 -3.84061e-10 -4.39492e-11) (-9.66096e-10 -5.70126e-10 1.89954e-10) (-9.00448e-10 -1.43112e-10 3.87491e-10) (-4.17675e-10 1.76111e-10 2.92616e-10) (-1.11977e-10 1.82751e-10 1.0153e-10) (-8.35977e-13 8.27716e-11 -1.78286e-11) (9.55859e-11 1.22088e-10 -2.29794e-10) (2.93351e-10 2.4436e-10 -7.62426e-10) (2.41557e-10 1.99051e-10 -5.46421e-10) (1.19349e-10 8.72239e-13 -5.00501e-11) (7.40182e-10 -5.77197e-10 4.59681e-10) (1.37948e-09 -1.99338e-09 1.37161e-09) (1.83367e-10 -1.10871e-09 5.1551e-10) (-1.99903e-10 -2.31478e-10 2.72895e-11) (-1.84903e-10 2.4762e-11 -3.61012e-11) (-1.08456e-10 2.10897e-10 -2.58445e-11) (-1.95846e-11 4.75165e-10 1.91726e-11) (-3.92784e-12 3.82117e-10 2.89758e-11) (-2.5273e-11 1.24475e-10 -2.49912e-11) (-3.14488e-11 7.35201e-11 -1.11588e-10) (1.44706e-12 9.22385e-11 -3.3901e-10) (8.62336e-11 5.53078e-11 -2.76056e-10) (4.9769e-11 -3.79933e-12 -4.26893e-11) (4.06734e-11 -5.70931e-11 1.69341e-11) (1.24831e-10 -4.26809e-10 1.09815e-10) (4.90568e-10 -9.96104e-10 1.36914e-10) (5.2283e-10 -6.15955e-10 2.28919e-10) (2.24903e-10 1.44295e-10 3.77232e-10) (-1.83277e-09 8.02984e-10 2.12012e-09) (-9.12045e-09 8.23535e-10 4.06446e-09) (-1.08348e-08 -6.46642e-10 2.20155e-09) (-4.63063e-09 -1.61315e-09 4.53675e-10) (-6.53735e-10 -9.63237e-10 8.99988e-11) (1.06464e-10 -2.93615e-10 1.58012e-11) (2.56876e-10 2.07738e-11 -6.67152e-11) (9.93317e-10 8.6023e-10 -5.78947e-10) (1.92303e-09 1.96027e-09 -1.32032e-09) (1.73627e-09 1.38864e-09 -1.0064e-09) (4.95285e-10 1.93338e-10 -2.35688e-10) (1.44637e-11 -3.10011e-11 -1.57292e-11) (-3.66263e-10 -3.39175e-10 5.72149e-12) (-1.43784e-09 -5.69722e-10 2.06758e-10) (-1.47386e-09 -1.12685e-10 3.9864e-10) (-5.68103e-10 1.78449e-10 2.44194e-10) (-7.72235e-11 1.0606e-10 3.64513e-11) (2.56796e-11 8.72108e-11 -5.11996e-11) (2.36276e-10 2.09647e-10 -3.46428e-10) (4.8288e-10 2.73242e-10 -5.23699e-10) (6.66974e-10 1.48639e-10 -2.15301e-10) (1.67824e-09 -3.0474e-10 4.86447e-10) (2.50282e-09 -1.51131e-09 1.71209e-09) (5.86674e-10 -1.22927e-09 9.81258e-10) (-4.07243e-10 -5.79259e-10 2.29636e-10) (-8.05716e-10 -3.28364e-10 -4.8485e-11) (-3.71606e-10 3.67364e-12 -6.91622e-11) (-8.42068e-11 9.08215e-11 -1.99662e-11) (-1.55564e-11 2.61011e-10 -9.7779e-12) (1.70776e-11 3.6077e-10 -1.46242e-11) (-2.00454e-11 2.13452e-10 -4.92473e-11) (-2.97128e-11 1.23921e-10 -1.15339e-10) (-1.44921e-12 1.10362e-10 -2.61859e-10) (5.12935e-11 5.58015e-11 -2.34025e-10) (2.23504e-11 -4.97325e-12 -3.97804e-11) (3.43362e-11 -7.64546e-11 1.63529e-13) (3.43305e-10 -7.38581e-10 3.49079e-11) (1.26819e-09 -1.53979e-09 -1.35747e-10) (1.05046e-09 -4.9036e-10 6.14816e-11) (3.73859e-10 6.46029e-10 5.51276e-10) (-2.04549e-09 2.01182e-09 3.08687e-09) (-1.24149e-08 1.55455e-09 5.82315e-09) (-1.28529e-08 -1.69137e-09 2.65778e-09) (-2.88681e-09 -1.86749e-09 1.65682e-10) (-1.86548e-10 -1.16189e-09 -8.32467e-11) (2.20357e-10 -3.72884e-10 -7.33804e-11) (2.59966e-10 6.9813e-11 -1.18874e-10) (9.65417e-10 1.03847e-09 -6.21988e-10) (1.67422e-09 1.79261e-09 -1.03019e-09) (1.25483e-09 9.46252e-10 -5.37632e-10) (2.96683e-10 8.74015e-11 -6.51338e-11) (5.25596e-12 -2.52505e-11 5.07841e-13) (-3.72905e-10 -2.77114e-10 2.02123e-11) (-1.38861e-09 -3.92679e-10 8.33422e-11) (-1.36594e-09 -7.5441e-12 1.91415e-10) (-4.30101e-10 1.40448e-10 1.09389e-10) (-2.76237e-11 5.04467e-11 7.24183e-12) (7.07179e-11 8.06549e-11 -4.61409e-11) (3.97737e-10 1.92644e-10 -2.17253e-10) (8.52839e-10 2.19067e-10 -2.28591e-10) (1.42928e-09 8.13955e-12 1.59732e-10) (1.49953e-09 -4.72864e-10 7.68743e-10) (3.90318e-10 -5.53766e-10 6.33256e-10) (-3.27564e-10 -4.94773e-10 3.67811e-10) (-6.563e-10 -4.3847e-10 1.49873e-10) (-2.32989e-10 -1.28269e-10 -9.86421e-12) (-3.95276e-11 -8.2953e-12 -1.58055e-11) (-4.72821e-11 3.72727e-11 -2.411e-11) (-1.09043e-10 1.97538e-10 -3.29253e-11) (-9.95676e-11 3.61805e-10 -9.29656e-12) (-2.8832e-11 3.06269e-10 -3.22685e-11) (1.01662e-11 1.83996e-10 -1.10856e-10) (3.09073e-11 1.31582e-10 -2.52332e-10) (2.84929e-11 4.62332e-11 -2.39158e-10) (7.98919e-12 -1.19818e-11 -4.72243e-11) (6.43834e-11 -1.60945e-10 -1.23553e-11) (7.50724e-10 -1.34887e-09 -3.51955e-11) (1.18102e-09 -1.64933e-09 -4.65114e-10) (3.72457e-10 -1.19866e-10 -1.07247e-10) (1.88629e-10 1.12803e-09 6.69228e-10) (-9.53779e-10 3.00844e-09 3.89733e-09) (-5.52913e-09 1.51436e-09 4.07762e-09) (-5.29673e-09 -1.12606e-09 1.53384e-09) (-1.27624e-09 -1.57132e-09 4.0031e-11) (-8.25831e-11 -1.60071e-09 -2.16471e-10) (1.2804e-10 -3.80916e-10 -1.30336e-10) (1.65412e-10 8.39142e-11 -1.32073e-10) (9.02575e-10 1.14941e-09 -6.1906e-10) (1.29423e-09 1.51537e-09 -6.43122e-10) (6.93172e-10 5.54586e-10 -1.50329e-10) (9.49892e-11 1.89139e-11 1.43938e-11) (-1.51206e-11 -4.61824e-11 1.60977e-11) (-4.36023e-10 -2.58225e-10 2.22212e-11) (-1.05313e-09 -1.81235e-10 -4.32561e-12) (-7.95358e-10 8.70831e-11 3.83877e-11) (-1.75672e-10 7.90852e-11 2.0612e-11) (-2.13814e-12 1.7937e-11 -3.71517e-13) (8.76657e-11 5.43029e-11 -2.07975e-11) (3.58772e-10 1.17914e-10 -4.96153e-11) (5.89702e-10 9.31942e-11 3.07697e-11) (5.03113e-10 -4.02557e-11 1.89531e-10) (1.59022e-10 -1.22115e-10 2.08182e-10) (-1.058e-10 -1.99816e-10 2.39875e-10) (-3.47995e-10 -3.05302e-10 2.69611e-10) (-1.33373e-10 -1.6311e-10 9.91676e-11) (-1.00647e-11 -3.09522e-11 3.3102e-12) (-2.0849e-11 -9.02604e-12 -2.07882e-11) (-2.59143e-10 7.47283e-11 -1.1554e-10) (-5.324e-10 3.34512e-10 -6.95624e-11) (-2.64906e-10 4.13556e-10 5.43749e-11) (1.66354e-11 3.65591e-10 2.11507e-11) (1.72874e-10 3.20182e-10 -1.53484e-10) (2.05609e-10 2.26638e-10 -4.25457e-10) (5.5223e-11 3.99798e-11 -3.74795e-10) (6.35404e-12 -4.21971e-11 -7.86833e-11) (2.38527e-10 -4.47233e-10 -1.27719e-11) (1.02818e-09 -1.83025e-09 -1.80163e-10) (1.33577e-10 -1.0119e-09 -6.75955e-10) (-5.05263e-11 8.96237e-12 -1.38064e-10) (2.05971e-10 1.44141e-09 9.08163e-10) (1.14154e-09 3.81043e-09 4.81211e-09) (-8.37966e-10 1.00173e-09 2.08743e-09) (-6.44424e-10 -2.72525e-10 4.30492e-10) (-3.50509e-10 -1.12877e-09 2.70998e-11) (-1.46373e-10 -1.79289e-09 -2.65993e-10) (-7.02831e-11 -4.45614e-10 -1.80793e-10) (4.24472e-11 5.70651e-11 -1.16424e-10) (7.23777e-10 1.09002e-09 -5.95662e-10) (1.09972e-09 1.35659e-09 -4.28596e-10) (4.1436e-10 3.56484e-10 3.62128e-12) (2.24939e-11 7.2293e-13 1.91574e-11) (-9.32387e-11 -9.56667e-11 4.24212e-11) (-6.17856e-10 -2.52531e-10 2.27204e-11) (-7.26612e-10 -5.25902e-11 -1.4861e-11) (-2.69804e-10 6.45536e-11 5.53657e-13) (-2.50085e-11 1.98054e-11 -3.10822e-13) (2.31864e-12 5.8594e-12 -1.2663e-12) (2.26387e-11 1.51491e-11 -4.71026e-12) (5.68856e-11 2.82067e-11 2.28215e-12) (7.40675e-11 1.89718e-11 2.99998e-11) (5.19246e-11 -8.81832e-12 6.09253e-11) (8.34102e-12 -4.91647e-11 1.0832e-10) (-4.91456e-11 -1.17361e-10 1.92131e-10) (-2.24517e-11 -1.5561e-10 2.03305e-10) (1.6308e-11 -9.23441e-11 7.62289e-11) (-7.32978e-12 -2.11571e-11 -5.58204e-12) (-2.95002e-10 -3.6059e-11 -1.7568e-10) (-1.42275e-09 1.89776e-10 -3.67907e-10) (-1.32246e-09 4.90055e-10 7.02755e-11) (-2.78041e-10 3.81068e-10 1.77757e-10) (1.69346e-10 4.2692e-10 7.79711e-11) (7.40961e-10 6.65605e-10 -3.49754e-10) (8.4767e-10 4.83947e-10 -9.83051e-10) (2.40691e-10 3.58764e-11 -6.50396e-10) (8.75485e-11 -1.36915e-10 -1.40805e-10) (7.02144e-10 -1.07202e-09 -2.18093e-11) (1.87518e-10 -1.44507e-09 -4.21952e-10) (-2.23891e-09 -1.37433e-09 -1.97848e-09) (-1.33155e-09 3.25387e-10 -8.24754e-10) (1.10325e-09 1.80268e-09 1.58845e-09) (4.33273e-09 4.7752e-09 5.89993e-09) (8.95818e-10 1.15356e-09 1.87054e-09) (4.40728e-11 -5.42283e-11 1.26866e-10) (1.15124e-10 -7.47426e-10 2.43227e-11) (-2.02749e-10 -1.47659e-09 -2.32631e-10) (-5.4966e-10 -6.87714e-10 -2.97905e-10) (-1.42607e-10 4.12059e-11 -1.88152e-10) (3.35207e-10 7.52371e-10 -4.8702e-10) (1.03216e-09 1.19939e-09 -3.81724e-10) (3.83655e-10 3.03511e-10 2.80208e-11) (6.8973e-12 -1.53831e-12 1.30407e-11) (-2.1621e-10 -1.38184e-10 5.74371e-11) (-7.5917e-10 -2.33422e-10 2.26566e-11) (-4.33843e-10 -1.61006e-11 6.6305e-13) (-4.99515e-11 1.70264e-11 1.87635e-12) (-1.15593e-12 2.0345e-12 -2.33901e-13) (-1.66102e-12 2.0172e-12 -1.63528e-12) (-1.62374e-11 1.07137e-11 -8.25617e-12) (-1.23501e-11 1.21243e-11 -4.74442e-13) (3.8397e-13 6.23373e-12 1.06194e-11) (3.15947e-11 -1.39979e-12 7.61904e-11) (1.08872e-10 -5.60872e-11 2.24017e-10) (2.38244e-10 -1.59377e-10 4.02018e-10) (2.33268e-10 -1.90455e-10 3.20868e-10) (2.53866e-11 -5.01414e-11 3.44676e-11) (-1.192e-10 -5.29143e-11 -6.87782e-11) (-1.6526e-09 -5.38994e-11 -6.38501e-10) (-3.41764e-09 3.06943e-10 -4.08246e-10) (-1.6539e-09 4.69197e-10 3.86702e-10) (-1.55749e-10 2.75234e-10 2.23963e-10) (3.91424e-10 4.92472e-10 8.5747e-11) (1.74698e-09 1.09395e-09 -7.62229e-10) (2.05999e-09 8.26237e-10 -1.82741e-09) (7.76524e-10 -1.85959e-12 -9.84982e-10) (6.22624e-10 -4.9687e-10 -2.9197e-10) (5.44782e-10 -1.26525e-09 -1.61329e-10) (-3.00988e-09 -2.43165e-09 -1.74622e-09) (-1.19145e-08 -2.24521e-09 -5.84636e-09) (-1.52131e-09 3.97853e-10 -5.50745e-10) (4.06401e-09 2.77826e-09 3.62513e-09) (7.27923e-09 5.31112e-09 5.9651e-09) (2.70915e-09 1.69484e-09 1.9969e-09) (6.26237e-10 -4.40611e-11 2.74203e-10) (4.2094e-10 -5.58756e-10 9.38054e-12) (-1.36199e-10 -8.84318e-10 -1.59597e-10) (-1.526e-09 -9.80338e-10 -4.38247e-10) (-1.23439e-09 7.81735e-12 -5.77254e-10) (-3.99584e-11 4.25191e-10 -3.72787e-10) (7.96674e-10 8.78847e-10 -3.9367e-10) (4.39257e-10 2.86202e-10 -1.66998e-11) (3.9889e-12 -9.69757e-13 5.3094e-12) (-2.68071e-10 -1.36959e-10 4.61778e-11) (-7.56715e-10 -2.0437e-10 2.71726e-11) (-2.53573e-10 -1.83423e-11 1.79391e-11) (-1.04472e-11 2.50135e-12 3.33017e-12) (-2.34711e-12 7.82789e-13 -7.51423e-14) (-9.92655e-11 1.46571e-11 -3.09656e-11) (-3.80465e-10 8.03118e-11 -1.02506e-10) (-1.59714e-10 5.85235e-11 -9.20753e-12) (2.72002e-12 1.30328e-11 2.61738e-11) (3.34328e-10 1.98124e-11 3.53191e-10) (1.07219e-09 -1.33643e-10 9.86099e-10) (1.22249e-09 -3.18989e-10 1.07839e-09) (4.24798e-10 -1.97842e-10 3.58986e-10) (-1.88104e-13 -1.38762e-11 2.93094e-12) (-6.75102e-10 -8.42873e-11 -3.01586e-10) (-3.78003e-09 7.56519e-11 -1.08162e-09) (-4.40177e-09 3.59639e-10 -2.16971e-10) (-1.19473e-09 2.8939e-10 4.14941e-10) (-3.08653e-11 1.46863e-10 1.43704e-10) (5.86913e-10 4.92357e-10 1.4232e-11) (2.53538e-09 1.26016e-09 -1.15419e-09) (3.18147e-09 9.37219e-10 -2.27591e-09) (2.06133e-09 -1.77188e-10 -1.30275e-09) (1.43132e-09 -9.92157e-10 -4.10488e-10) (-7.26572e-10 -1.23699e-09 -5.56197e-10) (-2.07826e-08 -5.71648e-09 -8.06815e-09) (-1.66461e-08 -2.0641e-09 -6.13374e-09) (-1.10562e-10 5.46296e-11 3.78122e-11) (7.94419e-09 3.38277e-09 6.16114e-09) (7.92183e-09 4.75452e-09 4.87718e-09) (3.94988e-09 1.9783e-09 1.54889e-09) (1.87037e-09 9.76539e-11 2.88264e-10) (9.52314e-10 -5.39629e-10 -6.61517e-11) (-2.5125e-11 -4.2097e-10 -1.10763e-10) (-2.68739e-09 -1.04543e-09 -4.80631e-10) (-4.073e-09 -8.99297e-11 -9.88136e-10) (-4.09301e-10 3.46844e-10 -4.16513e-10) (4.54373e-10 5.18553e-10 -3.68417e-10) (4.77526e-10 2.50559e-10 -1.03774e-10) (5.80453e-12 -5.73936e-13 1.03281e-12) (-2.17212e-10 -1.01333e-10 1.92328e-11) (-6.2992e-10 -1.63368e-10 4.07734e-11) (-1.95759e-10 -2.54436e-11 4.55166e-11) (-2.16746e-11 -5.38022e-13 1.36215e-11) (-5.40057e-11 7.77308e-13 -5.47552e-13) (-4.76354e-10 2.8907e-11 -1.26187e-10) (-6.23903e-10 9.34533e-11 -1.47126e-10) (-5.74029e-11 2.66507e-11 1.14956e-11) (2.2716e-10 7.00951e-11 2.22301e-10) (2.01518e-09 1.09344e-10 1.47622e-09) (3.20486e-09 -2.17134e-10 2.34587e-09) (1.98759e-09 -3.84395e-10 1.45866e-09) (2.54852e-10 -1.11747e-10 1.92253e-10) (-3.85388e-11 -1.55805e-11 -1.28648e-11) (-1.57645e-09 1.88061e-11 -6.00943e-10) (-4.5091e-09 3.04711e-10 -1.17482e-09) (-3.31141e-09 2.85078e-10 -2.41178e-10) (-4.76379e-10 1.04097e-10 1.34734e-10) (2.17141e-11 5.5768e-11 4.27614e-11) (7.33516e-10 4.3307e-10 -6.4013e-11) (2.71819e-09 1.04773e-09 -1.09747e-09) (3.9453e-09 6.79845e-10 -1.96172e-09) (3.42566e-09 -5.37515e-10 -1.24445e-09) (3.72856e-10 -4.99869e-10 -2.76351e-10) (-8.81363e-09 -3.1709e-09 -3.42699e-09) (-3.79975e-08 -6.28223e-09 -1.32973e-08) (-6.54352e-09 -1.14191e-09 -1.96404e-09) (4.85131e-10 1.04627e-10 6.08341e-10) (8.68185e-09 2.96553e-09 6.67696e-09) (6.83042e-09 3.57523e-09 3.6192e-09) (4.54816e-09 1.91291e-09 9.2134e-10) (3.63655e-09 2.81914e-10 -9.99024e-11) (1.99621e-09 -5.99025e-10 -3.99889e-10) (4.45346e-12 -1.84335e-10 -8.47635e-11) (-3.90697e-09 -8.58737e-10 -3.10002e-10) (-6.53991e-09 -3.82493e-11 -7.47592e-10) (-6.95126e-10 2.82651e-10 -4.10016e-10) (2.85092e-10 2.94562e-10 -3.30528e-10) (5.23495e-10 2.02368e-10 -2.09592e-10) (1.85328e-11 -1.89215e-12 -7.02214e-12) (-1.25158e-10 -5.73245e-11 -2.73632e-12) (-4.92654e-10 -1.2247e-10 6.36381e-11) (-2.65042e-10 -4.13197e-11 1.10447e-10) (-1.24547e-10 -1.10623e-11 6.07866e-11) (-2.85506e-10 -7.3415e-12 -1.69506e-11) (-6.52833e-10 1.63885e-11 -1.73735e-10) (-2.00546e-10 2.69607e-11 -2.65469e-11) (2.84554e-11 1.91623e-11 5.26235e-11) (1.53719e-09 2.40092e-10 1.09263e-09) (4.25388e-09 2.03211e-10 2.80958e-09) (4.0071e-09 -2.36268e-10 2.72926e-09) (1.29471e-09 -2.53169e-10 9.36172e-10) (2.02827e-11 -1.65945e-11 2.5177e-11) (-2.37753e-10 -5.27389e-12 -8.30056e-11) (-1.66462e-09 1.81122e-10 -6.51818e-10) (-2.54908e-09 3.20152e-10 -8.53214e-10) (-1.10831e-09 1.21402e-10 -3.05691e-10) (-5.35385e-11 1.3227e-11 -1.15194e-11) (3.79889e-11 2.74625e-11 5.83647e-12) (7.13645e-10 2.9883e-10 -4.68769e-11) (2.42842e-09 6.35716e-10 -5.84822e-10) (3.69649e-09 2.12405e-10 -1.06358e-09) (1.37875e-09 -3.47283e-10 -4.94542e-10) (-7.61439e-10 -4.61364e-10 -5.06195e-10) (-2.39249e-08 -3.9e-09 -7.87037e-09) (-2.33071e-08 -3.7833e-09 -8.29294e-09) (-4.53209e-10 -1.9662e-10 -8.8511e-11) (2.57026e-09 1.76616e-10 2.26598e-09) (6.63446e-09 2.05648e-09 4.89191e-09) (5.36764e-09 2.38583e-09 2.31929e-09) (5.09642e-09 1.64313e-09 2.22784e-10) (5.34401e-09 2.97427e-10 -9.64256e-10) (1.94138e-09 -4.625e-10 -6.52441e-10) (-8.62783e-11 -9.07894e-11 -4.28034e-11) (-4.68145e-09 -4.78254e-10 1.61578e-10) (-4.51907e-09 1.35256e-10 -1.40183e-10) (-2.44934e-10 1.13102e-10 -1.76427e-10) (3.65823e-10 2.1259e-10 -3.57344e-10) (6.12241e-10 1.48364e-10 -3.07543e-10) (4.4691e-11 -4.33681e-12 -2.79901e-11) (-5.39313e-11 -2.457e-11 -6.54027e-12) (-3.76486e-10 -8.47503e-11 8.67248e-11) (-4.53796e-10 -6.48638e-11 2.00471e-10) (-4.33161e-10 -3.64145e-11 1.12736e-10) (-5.89877e-10 -2.47414e-11 -7.08304e-11) (-3.56164e-10 -5.22656e-12 -7.71887e-11) (-4.60413e-12 1.41849e-12 7.42535e-12) (6.70659e-10 9.39783e-11 5.33713e-10) (3.41023e-09 3.65368e-10 2.15834e-09) (4.60771e-09 1.67073e-10 2.84252e-09) (2.35851e-09 -1.49834e-10 1.55332e-09) (2.36629e-10 -5.68399e-11 2.02387e-10) (-9.87695e-12 -2.27073e-12 1.03707e-12) (-3.06323e-10 3.91769e-11 -1.35648e-10) (-6.16607e-10 1.48329e-10 -3.55697e-10) (-4.26983e-10 1.19135e-10 -3.29973e-10) (-8.30667e-11 2.27837e-11 -1.39754e-10) (7.30287e-12 3.67616e-12 -3.44478e-11) (5.72007e-11 2.0428e-11 -1.49616e-11) (4.56711e-10 1.38655e-10 5.26576e-12) (1.33487e-09 2.1515e-10 -6.00524e-11) (9.81101e-10 -1.16145e-11 -1.48582e-10) (-3.39058e-12 -2.52436e-11 -3.91201e-11) (-5.77083e-09 -8.82865e-10 -1.95083e-09) (-2.07303e-08 -2.38564e-09 -6.70289e-09) (-4.71262e-09 -1.11708e-09 -1.87023e-09) (3.90036e-11 -3.7663e-11 3.66867e-11) (3.59388e-09 2.64831e-10 2.79691e-09) (4.2583e-09 1.17087e-09 2.65317e-09) (4.207e-09 1.4526e-09 1.15723e-09) (5.29845e-09 1.19384e-09 -4.16979e-10) (4.56514e-09 1.07686e-10 -1.14869e-09) (5.26062e-10 -1.49917e-10 -2.0567e-10) (-4.37698e-10 -1.2145e-10 1.91492e-11) (-3.87578e-09 -1.49408e-10 4.06325e-10) (-1.39737e-09 9.43472e-11 -3.1425e-11) (-2.39319e-12 3.05449e-11 -5.98005e-11) (6.21707e-10 1.83295e-10 -4.23594e-10) (6.34318e-10 9.32149e-11 -3.14088e-10) (5.59728e-11 -4.09107e-12 -3.50493e-11) (-2.01949e-11 -8.8397e-12 -8.56728e-13) (-2.7312e-10 -5.31176e-11 9.36284e-11) (-5.34577e-10 -6.52775e-11 1.96636e-10) (-6.02998e-10 -5.01241e-11 5.97419e-11) (-4.54228e-10 -2.87611e-11 -6.77764e-11) (-3.82897e-11 -3.47678e-12 3.01281e-12) (1.51927e-10 5.14637e-12 1.487e-10) (1.89906e-09 1.58482e-10 1.23352e-09) (3.76327e-09 2.89603e-10 2.13771e-09) (2.862e-09 7.95431e-11 1.59191e-09) (7.17154e-10 -3.71507e-11 4.45089e-10) (1.24007e-11 -3.54243e-12 1.38377e-11) (-2.37618e-11 1.54188e-12 -9.68471e-12) (-7.4861e-11 2.60109e-11 -7.33031e-11) (-3.08592e-11 4.45892e-11 -1.15851e-10) (7.59401e-11 4.9857e-11 -2.00712e-10) (2.22598e-10 2.01153e-11 -2.96719e-10) (1.49436e-10 4.6632e-12 -1.60984e-10) (5.69083e-11 1.29371e-11 -2.5068e-11) (1.09406e-10 2.97845e-11 2.7013e-11) (1.5299e-10 2.12282e-11 5.44856e-11) (2.8882e-12 -4.07348e-13 5.27588e-13) (-8.08424e-10 -9.03312e-11 -2.51567e-10) (-7.96443e-09 -5.96617e-10 -2.34777e-09) (-6.66905e-09 -8.16477e-10 -2.33596e-09) (-2.1047e-10 -1.1202e-10 -1.16704e-10) (3.50285e-10 -8.01205e-11 1.92654e-10) (2.93632e-09 2.75737e-10 2.05016e-09) (3.78879e-09 7.35555e-10 1.59442e-09) (4.9921e-09 1.1143e-09 6.17487e-10) (6.97445e-09 9.98198e-10 -6.90978e-10) (4.83366e-09 8.58675e-11 -7.70729e-10) (4.86089e-10 -7.71256e-11 -3.66329e-11) (-9.21461e-11 -2.02713e-11 3.69322e-11) (-5.30288e-10 -6.2063e-13 1.12264e-10) (-1.31407e-11 4.51105e-12 -3.50818e-12) (3.25172e-10 7.09457e-11 -1.69912e-10) (1.54909e-09 2.29085e-10 -5.83358e-10) (1.27384e-09 1.12308e-10 -3.86736e-10) (3.12981e-10 -3.34391e-14 -7.59893e-11) (1.21468e-11 -3.30151e-12 1.42431e-12) (-1.10218e-11 -6.02451e-12 1.54975e-11) (-5.57506e-11 -1.24991e-11 3.05612e-11) (-7.79103e-11 -1.2034e-11 -7.22605e-13) (-1.71705e-11 -3.28559e-12 -3.35817e-12) (3.18064e-11 -4.01411e-12 2.35356e-11) (1.02062e-09 5.59304e-12 5.62898e-10) (3.32825e-09 1.58132e-10 1.61059e-09) (4.44092e-09 2.23044e-10 1.90307e-09) (2.99171e-09 7.87236e-11 1.16753e-09) (9.27662e-10 -2.86614e-12 3.28761e-10) (1.17427e-10 -1.86914e-13 2.3546e-11) (2.68466e-11 4.52622e-12 -1.27793e-11) (1.04317e-10 2.91916e-11 -8.37662e-11) (4.88408e-10 9.49029e-11 -3.16728e-10) (1.16557e-09 1.11715e-10 -6.68113e-10) (1.22338e-09 3.50037e-11 -7.02247e-10) (6.03823e-10 1.95884e-11 -3.07321e-10) (2.3751e-10 2.75403e-11 -2.82508e-11) (2.2293e-10 3.19055e-11 8.62045e-11) (1.33098e-10 1.20579e-11 7.38446e-11) (-3.49102e-13 -8.01611e-16 8.68774e-14) (-6.0791e-10 -1.88412e-11 -2.13945e-10) (-2.35577e-09 -1.10104e-10 -8.53091e-10) (-4.73819e-10 -9.77008e-11 -2.5476e-10) (2.18232e-11 -1.66262e-11 -7.49836e-12) (8.31724e-10 -7.33313e-11 3.32636e-10) (2.77795e-09 2.17473e-10 1.48489e-09) (9.14976e-09 8.32455e-10 2.02171e-09) (1.51972e-08 1.59988e-09 8.61336e-10) (2.14702e-08 1.56878e-09 -7.62214e-10) (1.63271e-08 3.2848e-10 -3.46167e-10) (4.49311e-09 -1.23123e-10 4.07646e-10) (3.99757e-10 -1.53261e-11 1.43046e-10) (1.36969e-10 7.07377e-12 4.49148e-11) (1.02506e-09 6.45888e-11 -4.83471e-11) (4.51153e-09 2.7364e-10 -6.80771e-10) (8.04197e-09 5.06463e-10 -1.23721e-09) (7.7226e-09 3.35829e-10 -9.61014e-10) (4.72443e-09 7.8452e-11 -3.37402e-10) (2.03782e-09 -3.21792e-11 7.93976e-11) (6.41497e-10 -3.32148e-11 1.1358e-10) (1.1885e-10 -1.25493e-11 1.47763e-11) (2.98277e-11 -5.06444e-12 -7.273e-12) (1.03463e-10 -1.0305e-11 1.8482e-12) (1.00756e-09 -4.3473e-11 2.93347e-10) (4.33104e-09 -2.20927e-11 1.48898e-09) (9.54997e-09 1.38998e-10 3.17166e-09) (1.29924e-08 2.62192e-10 3.88456e-09) (1.14834e-08 1.68258e-10 3.01653e-09) (6.89505e-09 7.19875e-11 1.47737e-09) (3.63391e-09 6.51981e-11 4.35321e-10) (2.86997e-09 1.11008e-10 -7.19796e-11) (4.06429e-09 2.20699e-10 -5.8162e-10) (6.68026e-09 3.36595e-10 -1.38043e-09) (8.66262e-09 2.86439e-10 -2.14607e-09) (7.88332e-09 1.41452e-10 -2.07942e-09) (5.45969e-09 1.36151e-10 -1.05603e-09) (3.6135e-09 1.60156e-10 -4.59322e-11) (2.47589e-09 1.18337e-10 3.99357e-10) (9.83088e-10 4.17155e-11 1.76086e-10) (5.23866e-11 4.50309e-12 -1.03293e-11) (-8.19403e-11 4.78594e-12 -7.12698e-11) (-9.96691e-11 -3.14196e-12 -9.04762e-11) (2.48619e-11 -8.43199e-12 -2.56905e-11) (5.25816e-10 -6.43065e-11 -2.1063e-11) (2.37685e-09 -7.34177e-11 5.44418e-10) (5.64757e-09 2.26328e-10 1.75208e-09) (1.78506e-08 6.18886e-10 2.94588e-09) (3.05241e-08 1.27887e-09 2.23566e-09) (3.89514e-08 1.13307e-09 1.14948e-09) (2.57041e-08 1.67957e-10 1.53511e-09) (7.2517e-09 -6.43982e-11 1.08213e-09) (1.73571e-09 6.08965e-12 3.83062e-10) (1.98988e-09 4.27125e-11 2.28102e-10) (5.81058e-09 1.18425e-10 -5.28734e-11) (1.28906e-08 2.66065e-10 -9.60179e-10) (1.86317e-08 4.17018e-10 -1.74533e-09) (1.80568e-08 2.7872e-10 -1.52446e-09) (1.20678e-08 6.66698e-11 -5.18821e-10) (5.59113e-09 -3.34542e-11 1.3653e-10) (1.65456e-09 -2.90954e-11 4.47658e-11) (3.43157e-10 -8.65955e-12 -5.5313e-11) (1.73353e-10 -6.32783e-12 -4.63661e-11) (5.21997e-10 -1.66258e-11 1.34098e-11) (2.33623e-09 -4.84107e-11 4.85833e-10) (7.27669e-09 -4.35963e-11 1.98201e-09) (1.53163e-08 1.93117e-12 4.41856e-09) (2.1563e-08 3.53094e-11 6.02379e-09) (2.02499e-08 5.34463e-11 5.2813e-09) (1.43251e-08 6.40999e-11 3.20498e-09) (1.03364e-08 9.09352e-11 1.50166e-09) (1.04146e-08 1.38402e-10 3.49741e-10) (1.41949e-08 2.1682e-10 -9.5833e-10) (1.95706e-08 2.60239e-10 -2.80663e-09) (2.18286e-08 1.68797e-10 -4.36644e-09) (1.84175e-08 6.81467e-11 -3.85986e-09) (1.20629e-08 8.68409e-11 -1.62085e-09) (6.61198e-09 8.50046e-11 8.18443e-11) (2.41501e-09 3.49438e-11 2.76965e-10) (2.65234e-10 6.51371e-12 -4.37146e-12) (-3.00529e-11 3.26508e-12 -3.29556e-11) (-5.06489e-11 5.72185e-12 -4.50833e-11) (3.49504e-11 3.20283e-12 -2.1775e-11) (5.03155e-10 -2.60949e-12 -9.35671e-11) (1.80831e-09 -3.94286e-11 -3.84411e-11) (4.79664e-09 -2.37193e-11 6.61952e-10) (1.00073e-08 1.505e-10 2.08205e-09) (2.15027e-09 8.91446e-12 4.72143e-10) (2.91889e-09 2.68701e-11 4.72744e-10) (2.80658e-09 1.52e-11 3.10935e-10) (1.25234e-09 -3.80783e-12 1.79838e-10) (2.77493e-10 -2.34096e-12 6.71336e-11) (1.37886e-10 -4.75825e-13 3.44743e-11) (3.72124e-10 9.02165e-13 4.76836e-11) (1.01353e-09 1.86824e-12 2.90035e-11) (1.77704e-09 2.50521e-12 -1.05165e-10) (2.09506e-09 4.30724e-12 -2.30081e-10) (1.64318e-09 -1.62095e-12 -1.77503e-10) (8.55778e-10 -4.80582e-12 -4.59318e-11) (2.95159e-10 -2.72238e-12 -5.4377e-12) (6.54586e-11 -4.1032e-13 -1.22142e-11) (1.86638e-11 2.16432e-13 -1.1522e-11) (2.38078e-11 5.29811e-14 -1.13136e-11) (8.25557e-11 -7.60432e-13 -1.17117e-11) (2.64263e-10 -2.48272e-12 1.37131e-11) (6.84461e-10 -3.92053e-12 1.34872e-10) (1.30837e-09 -9.30497e-12 3.94665e-10) (1.72952e-09 -1.25473e-11 6.20086e-10) (1.62834e-09 -6.30075e-12 6.26187e-10) (1.32469e-09 -3.88432e-12 4.78953e-10) (1.21008e-09 -3.49453e-12 3.12842e-10) (1.41746e-09 -4.36679e-12 1.39782e-10) (1.90597e-09 -6.00312e-12 -1.16943e-10) (2.37884e-09 -8.60544e-12 -4.6121e-10) (2.31712e-09 -1.42202e-11 -6.53095e-10) (1.58221e-09 -1.32694e-11 -4.53788e-10) (7.00211e-10 -7.7812e-12 -1.26792e-10) (1.77196e-10 -2.51522e-12 -2.46161e-12) (1.20465e-11 -1.57584e-13 2.78471e-14) (-1.59269e-11 -3.05697e-14 -5.8835e-12) (-2.40648e-11 6.92848e-13 -1.1027e-11) (-1.75091e-13 1.26358e-13 -5.29092e-13) (4.20839e-11 2.9091e-12 -4.8487e-12) (2.59354e-10 7.98041e-12 -2.38466e-11) (6.10966e-10 5.18208e-12 -4.4079e-11) (1.05035e-09 2.43322e-12 3.05524e-11) (1.52327e-09 -4.02815e-12 2.5115e-10) (2.99565e-10 -2.39543e-10 -1.64768e-10) (2.32786e-10 -2.32277e-10 2.27276e-11) (2.49926e-10 -2.97534e-10 2.44197e-10) (2.35879e-10 -2.94563e-10 4.03959e-10) (7.96195e-11 -1.08766e-10 2.19544e-10) (-9.18906e-12 -9.72328e-12 2.56949e-11) (-1.02442e-10 -2.14092e-11 -1.8399e-11) (-4.47924e-10 -1.51965e-10 -1.87679e-10) (-4.93451e-10 -2.49489e-10 -1.5822e-10) (-1.34521e-10 -1.00765e-10 2.7896e-11) (8.67788e-12 -2.16189e-11 7.16726e-11) (2.29802e-10 9.42599e-11 1.69921e-10) (6.32465e-10 4.32593e-10 1.78308e-11) (6.99135e-10 5.99122e-10 -4.08124e-10) (3.11772e-10 2.80291e-10 -4.64574e-10) (3.8045e-11 9.01509e-12 -1.71169e-10) (-7.65862e-12 -2.32137e-11 -1.90168e-11) (-2.60524e-11 -4.65702e-11 4.68182e-11) (-8.15268e-11 -6.82473e-11 2.98229e-10) (-1.59417e-10 -8.85446e-12 5.22549e-10) (-2.11735e-10 1.47124e-11 3.55388e-10) (-1.77179e-10 9.14472e-12 1.05998e-10) (-1.12158e-10 2.16776e-11 -1.82191e-11) (-7.07935e-11 4.964e-11 -8.25089e-11) (-2.96014e-11 5.94696e-11 -1.01073e-10) (-8.15783e-12 2.13593e-11 -4.45122e-11) (-3.08671e-12 1.82662e-13 -6.98892e-12) (-3.00803e-12 -4.23873e-12 -2.32522e-12) (-3.69078e-12 -1.16445e-11 -4.19119e-12) (-2.21428e-12 -2.00396e-11 -1.58229e-11) (-2.60847e-12 -2.27269e-11 -4.41733e-11) (-1.18626e-11 -3.39386e-12 -7.36178e-11) (-2.91989e-11 3.47884e-11 -7.17983e-11) (-5.04731e-11 7.9924e-11 -3.87366e-11) (-8.58041e-11 1.63676e-10 3.86447e-11) (-1.00804e-10 2.74859e-10 1.8451e-10) (-2.48224e-11 2.18187e-10 1.79254e-10) (2.12453e-11 4.46786e-11 2.59902e-11) (5.99739e-11 -1.6708e-12 -3.26042e-11) (2.44105e-10 -1.36067e-10 -1.9468e-10) (8.01471e-11 -4.33722e-11 1.86894e-12) (2.90876e-10 -2.23242e-10 3.01539e-10) (7.15001e-10 -6.5727e-10 1.1544e-09) (5.89076e-10 -6.79064e-10 1.17734e-09) (5.70825e-11 -1.67612e-10 2.14856e-10) (-9.50334e-11 -5.1218e-11 -4.07084e-11) (-1.27331e-09 -2.005e-10 -8.50417e-10) (-2.68428e-09 -4.88407e-10 -1.16592e-09) (-1.79106e-09 -6.4307e-10 1.09747e-10) (-7.59836e-10 -6.29957e-10 9.14165e-10) (-1.4698e-11 -3.04407e-10 7.60502e-10) (1.96264e-10 3.84918e-11 1.31028e-10) (1.08621e-09 6.97189e-10 -5.77619e-10) (2.3454e-09 1.71168e-09 -2.50573e-09) (1.54621e-09 1.03488e-09 -2.23863e-09) (2.71849e-10 1.62574e-10 -5.50647e-10) (-4.01528e-12 1.6651e-12 -7.71562e-12) (-2.20768e-10 -1.7005e-11 1.925e-10) (-9.30101e-10 -8.70644e-11 1.09649e-09) (-1.18909e-09 -1.51643e-10 1.55451e-09) (-6.76884e-10 -1.41986e-10 8.34788e-10) (-1.56086e-10 -5.57552e-11 1.40239e-10) (-4.80936e-12 -3.47051e-12 4.83409e-13) (9.98647e-12 2.36255e-12 -1.20539e-11) (5.58849e-11 3.42968e-11 -3.41371e-11) (5.80565e-11 5.36449e-11 -2.07745e-11) (1.92772e-11 2.75441e-11 -4.72853e-12) (1.30842e-12 5.12507e-12 -1.90574e-12) (-1.1679e-12 1.58722e-12 -4.90956e-12) (-2.7923e-12 -1.78258e-12 -2.42075e-11) (1.2052e-12 -7.90962e-12 -4.98161e-11) (3.81232e-12 -7.63409e-12 -4.50737e-11) (6.05831e-13 -9.75478e-13 -1.97379e-11) (-1.52278e-12 4.10256e-12 -6.83078e-12) (-5.59287e-12 2.06672e-11 -5.77048e-12) (-9.58303e-12 6.44836e-11 -1.47518e-12) (3.50038e-12 8.1042e-11 -6.37572e-12) (2.43205e-11 5.38728e-11 -2.93349e-11) (5.6798e-11 2.90574e-11 -7.04433e-11) (7.43099e-11 -1.10954e-11 -6.71269e-11) (3.33579e-10 -1.86572e-10 3.1242e-10) (9.39206e-10 -6.33468e-10 1.01054e-09) (9.7779e-10 -6.76486e-10 1.00313e-09) (2.08308e-10 -1.79557e-10 1.89291e-10) (-3.49497e-11 -1.60264e-11 -2.29056e-11) (-1.58173e-09 2.91423e-12 -7.70795e-10) (-3.88342e-09 -3.23441e-10 -8.94309e-10) (-2.53636e-09 -1.09785e-09 7.39251e-10) (-1.43954e-09 -2.09483e-09 2.34862e-09) (-6.41809e-10 -1.81104e-09 1.98182e-09) (-1.53514e-10 -2.8614e-10 1.41109e-10) (-1.18653e-10 -5.52502e-11 -4.95494e-10) (1.86941e-10 5.3033e-10 -3.02138e-09) (8.68673e-10 9.37342e-10 -3.20203e-09) (9.15173e-10 7.10099e-10 -1.21716e-09) (7.91918e-10 5.87858e-10 -1.52702e-10) (6.02448e-10 5.93323e-10 4.07052e-10) (9.76258e-11 4.44773e-10 6.46469e-10) (-5.40138e-10 3.3914e-10 9.45888e-10) (-1.19326e-09 7.03398e-11 1.19491e-09) (-9.35223e-10 -2.82261e-10 8.40709e-10) (-3.32637e-10 -3.52604e-10 3.00425e-10) (-5.81797e-11 -2.57502e-10 3.95073e-11) (2.69399e-11 -1.20599e-10 -4.76591e-11) (3.65509e-11 -1.44975e-11 -4.6498e-11) (7.76592e-11 7.51843e-11 -7.62758e-11) (1.5794e-10 2.33161e-10 -1.17515e-10) (2.12531e-10 2.80792e-10 -1.16847e-10) (1.87456e-10 1.68417e-10 -6.55956e-11) (1.2273e-10 5.48788e-11 -1.16172e-11) (7.35246e-11 1.96234e-12 1.56193e-11) (3.08331e-11 -1.19549e-11 1.62378e-11) (1.24191e-12 -2.09494e-12 1.21342e-12) (-1.33936e-11 6.44122e-13 -1.13175e-11) (-1.1339e-10 5.75464e-11 -1.29305e-10) (-1.8129e-10 1.90026e-10 -2.88648e-10) (-1.04059e-10 2.56006e-10 -2.93553e-10) (-1.06925e-12 1.72525e-10 -1.60939e-10) (2.49577e-11 4.13021e-11 -3.0537e-11) (4.55989e-11 -2.04776e-12 1.73117e-11) (7.7352e-10 -3.67852e-10 1.0077e-09) (9.18467e-10 -4.47433e-10 1.0424e-09) (3.62597e-10 -1.58308e-10 3.04467e-10) (8.80778e-12 -1.87532e-12 3.00784e-13) (-1.43487e-10 6.49771e-11 -1.31347e-10) (-8.73866e-10 1.28347e-10 -2.78701e-10) (-1.21495e-09 -4.61044e-10 3.45951e-10) (-1.81359e-09 -2.48594e-09 2.19305e-09) (-1.84429e-09 -3.30939e-09 2.69353e-09) (-1.12472e-09 -9.82926e-10 4.12248e-10) (-1.69926e-09 -2.46158e-10 -1.3046e-09) (-3.38435e-09 2.33444e-10 -5.47239e-09) (-2.17436e-09 6.97443e-11 -4.97191e-09) (-2.19421e-10 7.82295e-11 -1.05342e-09) (1.31081e-10 1.00105e-10 -5.86442e-11) (1.05798e-09 7.00763e-10 5.35749e-10) (1.59614e-09 1.25385e-09 1.28671e-09) (5.99802e-10 8.34858e-10 8.55897e-10) (-7.71456e-11 3.2788e-10 3.88566e-10) (-3.72747e-10 1.05506e-10 3.55153e-10) (-5.03733e-10 -2.18089e-10 3.36076e-10) (-4.63843e-10 -5.78128e-10 1.40625e-10) (-3.93387e-10 -8.85281e-10 -2.48523e-10) (-1.68488e-10 -6.30981e-10 -4.76514e-10) (5.53954e-12 -1.04196e-10 -2.67927e-10) (7.3182e-11 1.08592e-10 -1.64526e-10) (2.28874e-10 3.29318e-10 -1.01746e-10) (4.87348e-10 4.582e-10 9.64285e-11) (8.29509e-10 4.74439e-10 3.71484e-10) (1.02314e-09 3.6242e-10 5.71094e-10) (7.85983e-10 1.80222e-10 4.72181e-10) (2.84223e-10 4.89196e-11 1.56938e-10) (1.98339e-11 4.16239e-12 3.02914e-12) (-1.04e-11 3.89901e-12 -3.4549e-11) (-1.51494e-10 3.05019e-11 -2.86116e-10) (-2.85928e-10 1.20859e-10 -5.56586e-10) (-1.94715e-10 1.73197e-10 -4.22359e-10) (-2.95472e-11 6.38472e-11 -8.20464e-11) (7.228e-12 5.52673e-12 6.44011e-12) (2.19396e-10 -6.58956e-11 2.95287e-10) (5.36954e-10 -2.1139e-10 7.63411e-10) (2.76445e-10 -6.11458e-11 2.61203e-10) (5.90262e-11 1.65527e-11 7.84136e-12) (2.90519e-11 7.1844e-11 -7.28275e-11) (-5.68547e-11 1.00096e-10 -1.12176e-10) (-1.31702e-10 -8.62075e-12 -2.02522e-12) (-9.51113e-10 -9.51909e-10 7.62657e-10) (-2.76022e-09 -3.51718e-09 2.5813e-09) (-3.00578e-09 -2.53428e-09 1.39571e-09) (-2.19397e-09 -4.95605e-10 -5.44142e-10) (-2.74174e-09 5.08192e-10 -2.87034e-09) (-1.94417e-09 2.6454e-10 -3.53991e-09) (-5.62299e-10 -2.05369e-10 -1.259e-09) (-2.57778e-11 -3.09924e-11 -6.86171e-11) (1.64197e-11 7.9556e-12 1.42276e-11) (2.07411e-10 2.02432e-10 2.08168e-10) (2.9224e-10 4.8169e-10 3.0643e-10) (1.05599e-10 5.52098e-10 2.28081e-10) (-1.15628e-10 3.97868e-10 1.63311e-10) (-2.07999e-10 1.53189e-10 1.40422e-10) (-2.46141e-10 -8.36782e-11 1.05832e-10) (-4.27855e-10 -7.00121e-10 -7.56557e-11) (-4.65159e-10 -2.10652e-09 -9.53492e-10) (-2.09548e-10 -1.88795e-09 -1.55099e-09) (-8.91865e-11 -3.78276e-10 -8.2969e-10) (-1.82735e-11 1.97807e-10 -3.77314e-10) (1.22648e-10 6.71937e-10 -2.4049e-10) (4.16285e-10 9.64535e-10 1.62992e-10) (8.52242e-10 9.3581e-10 7.66544e-10) (1.34687e-09 6.7632e-10 1.30812e-09) (1.21198e-09 2.41874e-10 1.05905e-09) (4.55362e-10 -7.96282e-12 3.0411e-10) (5.16084e-11 -2.17609e-11 7.63892e-12) (7.32214e-12 -3.15096e-11 -4.17948e-11) (-2.50457e-11 -5.19376e-11 -1.40615e-10) (-3.12454e-11 -7.34434e-12 -1.42967e-10) (-1.01557e-11 1.87897e-11 -4.44828e-11) (1.36253e-12 6.2396e-12 1.98008e-12) (6.86917e-11 9.78077e-12 1.45468e-10) (3.63176e-10 -1.20748e-10 6.51143e-10) (5.74466e-11 -3.77925e-11 6.28877e-11) (5.4245e-12 2.06496e-12 -1.71389e-12) (2.66443e-11 6.97891e-11 -5.82739e-11) (5.66459e-11 1.8038e-10 -1.27139e-10) (2.0402e-11 7.03654e-11 -3.50405e-11) (-6.98853e-12 -4.82613e-12 1.24072e-11) (-5.33985e-10 -6.4623e-10 6.21258e-10) (-2.57682e-09 -2.40635e-09 1.79519e-09) (-3.73045e-09 -2.02184e-09 7.46374e-10) (-2.91008e-09 -4.70715e-10 -1.11037e-09) (-1.6522e-09 2.27007e-10 -2.03619e-09) (-4.72376e-10 2.99624e-11 -1.22426e-09) (-1.02219e-10 -7.58486e-11 -2.57284e-10) (-1.89356e-11 -1.42208e-11 -1.71046e-11) (-2.11619e-12 2.82256e-12 2.27946e-12) (9.78198e-12 8.714e-11 5.18614e-11) (2.45083e-11 2.93058e-10 1.42683e-10) (-3.54247e-11 4.43618e-10 1.8641e-10) (-1.00141e-10 3.67843e-10 1.74375e-10) (-6.72e-11 9.50896e-11 8.60303e-11) (-2.56695e-11 -3.45172e-11 2.15357e-11) (-3.23616e-11 -9.04299e-10 -2.37467e-10) (5.36642e-11 -2.89422e-09 -1.65885e-09) (-4.11472e-10 -2.14245e-09 -2.13056e-09) (-4.83388e-10 -3.86087e-10 -1.06176e-09) (-1.84853e-10 1.83419e-10 -3.50806e-10) (8.09239e-12 4.61764e-10 -1.43014e-10) (3.25375e-10 9.71328e-10 1.38585e-10) (7.03677e-10 1.23063e-09 6.4842e-10) (8.79213e-10 8.85648e-10 9.61782e-10) (6.74123e-10 2.90678e-10 7.25769e-10) (2.68509e-10 -2.88599e-11 2.54334e-10) (6.48216e-11 -5.66582e-11 3.45463e-11) (3.32679e-11 -5.68238e-11 -2.15792e-11) (4.13639e-11 -4.84195e-11 -4.9503e-11) (4.48267e-11 -1.59365e-11 -2.27487e-11) (7.40433e-11 1.13815e-12 2.95358e-11) (2.04768e-10 -9.88756e-13 2.42695e-10) (3.27192e-10 -9.61249e-11 5.24324e-10) (2.39852e-10 -1.44955e-10 3.73343e-10) (6.20515e-12 -7.44155e-11 -2.54665e-11) (7.40546e-12 8.07036e-13 -4.05022e-11) (5.23096e-11 1.05711e-10 -7.2529e-11) (1.32167e-10 2.15673e-10 -3.82466e-11) (1.08769e-10 1.14894e-10 4.12025e-11) (5.07542e-11 3.01719e-12 1.12925e-10) (-1.52697e-10 -3.14564e-10 5.90021e-10) (-1.26306e-09 -1.0163e-09 1.28434e-09) (-2.60791e-09 -1.02438e-09 5.95069e-10) (-2.70444e-09 -4.48738e-10 -1.04181e-09) (-1.61445e-09 -1.29845e-10 -1.80945e-09) (-6.67185e-10 -1.63723e-10 -1.05811e-09) (-3.93894e-10 -1.53467e-10 -3.49181e-10) (-2.65381e-10 -3.69606e-11 -1.04926e-10) (-9.18684e-11 5.92751e-11 -2.57992e-11) (-2.92998e-11 1.93946e-10 2.14066e-11) (4.82304e-11 4.10127e-10 1.83411e-10) (5.73111e-11 4.36146e-10 3.21217e-10) (2.43311e-11 2.37201e-10 2.41736e-10) (1.49716e-11 2.40651e-11 6.13592e-11) (6.14677e-11 -1.11649e-10 8.37193e-12) (4.47361e-10 -1.40213e-09 -7.01303e-10) (-3.7149e-11 -2.66433e-09 -2.38459e-09) (-1.42432e-09 -1.68391e-09 -2.63944e-09) (-1.06145e-09 -2.36108e-10 -1.15139e-09) (-8.43158e-11 7.10431e-11 -8.70165e-11) (1.15824e-10 2.73578e-10 5.84085e-11) (5.30931e-10 9.22078e-10 3.8056e-10) (6.09925e-10 1.1075e-09 5.67945e-10) (4.37137e-10 6.58471e-10 5.13447e-10) (2.37346e-10 1.71025e-10 2.92838e-10) (1.02452e-10 -1.56647e-11 9.23279e-11) (5.8251e-11 -4.43393e-11 5.47695e-13) (8.76049e-11 -6.56138e-11 -8.32501e-11) (1.23708e-10 -4.36749e-11 -1.1381e-10) (1.5072e-10 -1.38507e-11 -1.35819e-11) (4.20083e-10 -3.83255e-11 3.13569e-10) (7.52324e-10 -2.52669e-10 1.0153e-09) (4.68149e-10 -4.68269e-10 8.23564e-10) (9.27186e-11 -2.76171e-10 1.64182e-10) (-2.43725e-10 -4.82225e-10 -1.01887e-10) (-5.35936e-12 -2.47418e-11 -4.389e-11) (1.36944e-10 1.24543e-10 -8.75507e-11) (4.16358e-10 3.94735e-10 2.54683e-12) (4.06948e-10 2.91487e-10 2.66337e-10) (3.67527e-10 7.17387e-11 6.44031e-10) (1.51373e-10 -1.97517e-10 1.06058e-09) (-3.26434e-10 -2.16015e-10 7.33129e-10) (-7.81743e-10 -1.1093e-10 1.6173e-10) (-1.51362e-09 -5.11052e-11 -8.82729e-10) (-1.52925e-09 -1.74089e-10 -1.84408e-09) (-1.27014e-09 -3.71127e-10 -1.34802e-09) (-1.47726e-09 -4.35643e-10 -6.43174e-10) (-1.22711e-09 -1.58158e-10 -1.67317e-10) (-3.23542e-10 1.10806e-10 -8.4711e-12) (-4.60104e-11 1.95376e-10 4.1728e-11) (1.21509e-10 4.14972e-10 2.15049e-10) (2.14001e-10 4.13891e-10 3.83076e-10) (1.63582e-10 1.74053e-10 2.70046e-10) (1.09132e-10 -8.93433e-12 7.35051e-11) (3.33657e-10 -3.21224e-10 -1.46483e-10) (4.92067e-10 -1.32825e-09 -1.42669e-09) (-1.36086e-09 -1.81526e-09 -3.37193e-09) (-3.81689e-09 -1.23044e-09 -3.71851e-09) (-1.2071e-09 -2.98562e-10 -8.11512e-10) (-1.62297e-13 -1.82887e-12 7.95121e-13) (4.23804e-10 1.52057e-10 3.11896e-10) (9.67762e-10 8.23692e-10 7.5135e-10) (7.24361e-10 1.11401e-09 6.56695e-10) (2.97428e-10 6.15568e-10 3.35565e-10) (7.80109e-11 1.15827e-10 8.52773e-11) (1.46681e-11 2.15362e-12 2.15109e-12) (5.00579e-11 -2.61914e-11 -7.35334e-11) (1.4608e-10 -4.91981e-11 -3.39826e-10) (1.86469e-10 1.99048e-12 -2.84011e-10) (1.8587e-10 1.06702e-11 -1.80332e-11) (6.68424e-10 -1.00627e-10 5.96194e-10) (9.79858e-10 -6.83314e-10 1.6035e-09) (2.59504e-10 -1.09339e-09 1.08105e-09) (-2.92574e-10 -1.05052e-09 2.89845e-10) (-7.80356e-10 -1.00048e-09 2.03948e-10) (-2.20766e-10 -1.15415e-10 5.18618e-11) (-2.52383e-11 2.7479e-11 1.19367e-11) (4.60103e-11 1.05409e-10 5.34224e-11) (2.02987e-10 1.16982e-10 2.3398e-10) (3.43845e-10 -5.41187e-12 5.70339e-10) (2.27286e-10 -2.82996e-11 5.02655e-10) (3.35704e-11 3.13594e-11 7.73578e-11) (-5.78452e-13 7.70283e-11 -6.08936e-11) (-9.30829e-11 3.23551e-10 -8.03735e-10) (-3.22817e-10 1.44541e-10 -1.29552e-09) (-7.52694e-10 -2.2289e-10 -8.17444e-10) (-1.99339e-09 -7.16513e-10 -4.31357e-10) (-2.37409e-09 -7.03668e-10 1.68292e-10) (-7.8862e-10 -2.98733e-11 2.21207e-10) (-9.89842e-11 1.36475e-10 1.19234e-10) (1.12904e-10 3.47191e-10 2.53028e-10) (2.77172e-10 3.58182e-10 3.30606e-10) (2.38428e-10 1.32854e-10 1.78072e-10) (2.22344e-10 -2.28567e-11 -5.58856e-12) (4.25604e-10 -2.81004e-10 -5.58844e-10) (-2.72618e-10 -5.82219e-10 -2.21833e-09) (-3.20241e-09 -5.72427e-10 -3.96557e-09) (-2.5293e-09 -6.76879e-10 -1.66771e-09) (-1.95746e-10 -3.34297e-10 -3.42788e-11) (3.55148e-10 -4.28081e-10 2.60284e-10) (6.87379e-10 -9.05451e-11 4.34627e-10) (6.3754e-10 4.59957e-10 4.92759e-10) (4.7708e-10 8.69303e-10 4.85622e-10) (2.02706e-10 5.96843e-10 2.45986e-10) (4.25302e-11 1.37208e-10 2.8948e-11) (8.33622e-12 1.98065e-11 -2.51459e-11) (1.81173e-11 2.21366e-11 -2.91396e-10) (7.77302e-11 5.22165e-11 -7.84786e-10) (1.77046e-10 7.27887e-11 -4.73682e-10) (1.88377e-10 2.38398e-11 -2.77583e-11) (7.35921e-10 -1.77212e-10 6.89758e-10) (8.03026e-10 -1.00339e-09 1.68497e-09) (-1.60413e-10 -1.77933e-09 1.34625e-09) (-9.73549e-10 -2.08209e-09 6.62291e-10) (-1.15212e-10 -4.66511e-10 1.65937e-10) (-8.421e-10 -2.59906e-10 5.63764e-10) (-1.91497e-09 -9.06497e-12 1.11689e-09) (-1.36564e-09 1.6644e-11 8.77182e-10) (-5.29507e-10 -8.01348e-11 5.20485e-10) (-9.12053e-11 -4.41493e-11 2.30338e-10) (3.71404e-11 2.14151e-11 5.83314e-11) (4.04979e-10 3.46894e-10 -9.03265e-11) (1.66288e-09 1.53455e-09 -1.28686e-09) (2.01205e-09 1.8065e-09 -2.38528e-09) (5.31041e-10 4.87502e-10 -1.11136e-09) (-7.88428e-11 -3.19775e-11 -1.43621e-10) (-8.3813e-10 -5.19024e-10 -1.89558e-11) (-1.6838e-09 -1.02789e-09 3.52525e-10) (-9.93407e-10 -4.26315e-10 3.61449e-10) (-2.55765e-10 2.50791e-11 2.07362e-10) (-5.36701e-11 1.83224e-10 2.20947e-10) (9.09058e-11 2.40944e-10 1.94249e-10) (1.19908e-10 1.11935e-10 2.72192e-11) (1.88896e-10 7.08078e-11 -2.11423e-10) (7.76508e-11 1.28958e-10 -1.27836e-09) (-1.29526e-09 3.8986e-10 -2.71409e-09) (-1.22346e-09 -1.11934e-11 -1.18994e-09) (-8.66533e-11 -2.46955e-10 -1.00742e-12) (1.07334e-09 -1.80752e-09 8.20242e-10) (1.5179e-09 -1.55138e-09 8.03544e-10) (2.84805e-10 -1.14543e-10 1.44358e-10) (7.75778e-11 1.46198e-10 9.23238e-11) (5.32963e-11 5.91763e-10 2.53264e-10) (3.52316e-11 6.01742e-10 2.1562e-10) (1.03404e-11 2.27056e-10 1.85123e-11) (-1.65741e-11 9.66047e-11 -9.87411e-11) (-1.15818e-10 1.4827e-10 -5.70523e-10) (-1.3252e-10 1.77426e-10 -1.08797e-09) (9.2683e-11 1.05761e-10 -5.35411e-10) (1.35959e-10 1.77013e-11 -3.4363e-11) (5.12662e-10 -1.86664e-10 4.85033e-10) (6.05762e-10 -1.02558e-09 1.20526e-09) (3.9555e-10 -1.95348e-09 9.06333e-10) (2.74686e-10 -1.66318e-09 2.77758e-10) (3.50025e-11 -4.00636e-11 1.40084e-11) (-1.43171e-09 1.73913e-10 1.23399e-09) (-9.04018e-09 -3.22408e-10 5.51676e-09) (-1.01837e-08 -1.86737e-09 4.60335e-09) (-2.84269e-09 -1.09872e-09 1.05853e-09) (-5.1792e-11 -6.47434e-11 3.57955e-11) (1.93339e-10 6.04699e-11 -2.41053e-11) (1.57293e-09 1.19054e-09 -6.39407e-10) (3.73243e-09 3.46839e-09 -2.39349e-09) (3.49954e-09 3.24815e-09 -2.75592e-09) (7.2722e-10 6.58743e-10 -6.85022e-10) (-1.26224e-12 -2.51254e-12 -3.31993e-12) (-3.74922e-10 -4.32021e-10 1.71309e-10) (-9.85756e-10 -9.95258e-10 4.31106e-10) (-8.20591e-10 -5.35559e-10 2.81037e-10) (-3.79283e-10 -5.16463e-11 1.5418e-10) (-1.4591e-10 9.69648e-11 1.10067e-10) (-2.54334e-11 1.11835e-10 4.13055e-11) (3.05811e-11 1.30096e-10 -7.19401e-11) (1.84039e-11 3.22956e-10 -5.86834e-10) (-4.68373e-10 6.6117e-10 -1.54697e-09) (-4.18e-10 2.94215e-10 -7.91187e-10) (2.33648e-11 -3.89185e-11 -3.64978e-12) (2.50992e-09 -2.40904e-09 1.42535e-09) (4.86161e-09 -4.48208e-09 2.47307e-09) (9.18712e-10 -9.65768e-10 4.57824e-10) (-1.01313e-12 -1.15785e-12 2.05629e-12) (-1.3408e-10 1.8459e-10 3.562e-11) (-1.79518e-10 4.85431e-10 1.44612e-10) (-6.96652e-11 5.01073e-10 1.57544e-10) (-2.3208e-11 2.87571e-10 1.57012e-11) (-5.1794e-11 1.88505e-10 -1.40996e-10) (-1.93474e-10 2.47271e-10 -6.00154e-10) (-2.44935e-10 2.15848e-10 -9.95319e-10) (4.15012e-12 9.25251e-11 -4.64224e-10) (4.95245e-11 7.75947e-12 -2.7801e-11) (2.18335e-10 -1.38047e-10 2.05381e-10) (6.68222e-10 -1.25592e-09 7.4906e-10) (1.68996e-09 -3.31282e-09 3.25871e-10) (1.37532e-09 -1.82109e-09 -3.25805e-10) (1.21175e-11 5.39691e-11 9.07064e-12) (-1.88768e-09 1.36884e-09 2.14885e-09) (-1.10038e-08 -3.00779e-11 7.40052e-09) (-1.10964e-08 -3.88255e-09 3.97692e-09) (-1.84153e-09 -1.69689e-09 8.49757e-11) (7.97221e-11 -1.58829e-10 -7.74147e-11) (9.01483e-10 3.20429e-10 -2.9067e-10) (2.58061e-09 2.24868e-09 -1.06473e-09) (3.53948e-09 3.91375e-09 -2.08049e-09) (2.2463e-09 2.5538e-09 -1.42948e-09) (3.74123e-10 3.81581e-10 -1.64209e-10) (4.01835e-12 -9.28113e-12 1.61813e-11) (-2.66205e-10 -4.88399e-10 3.48868e-10) (-8.4289e-10 -9.63196e-10 4.60366e-10) (-8.58855e-10 -5.5605e-10 1.30596e-10) (-4.47072e-10 -7.95026e-11 -1.13471e-12) (-1.449e-10 6.81512e-11 1.8474e-12) (-5.01713e-11 1.10746e-10 -1.81539e-11) (-3.78558e-11 2.23044e-10 -1.54081e-10) (-1.4896e-10 4.40043e-10 -5.10785e-10) (-1.17467e-10 3.30166e-10 -4.36893e-10) (7.86298e-11 5.18253e-12 -2.43009e-11) (3.44159e-09 -1.78849e-09 1.36709e-09) (9.59917e-09 -6.32043e-09 4.4614e-09) (3.1164e-09 -2.66131e-09 1.60652e-09) (-1.52611e-12 -6.76669e-11 2.39751e-11) (-5.17398e-10 1.28267e-10 -7.14334e-11) (-6.44391e-10 4.10249e-10 -1.74168e-11) (-1.78275e-10 3.13608e-10 7.52891e-11) (3.47613e-12 2.96864e-10 7.9391e-11) (3.27306e-11 2.65482e-10 1.40206e-12) (-1.64624e-11 2.20852e-10 -1.27008e-10) (-1.13845e-10 2.42218e-10 -4.00002e-10) (-1.7041e-10 1.88762e-10 -6.3545e-10) (-4.18042e-11 7.71988e-11 -3.31899e-10) (8.59639e-12 3.5504e-12 -1.60962e-11) (9.79605e-11 -1.26844e-10 8.28912e-11) (8.62538e-10 -2.05361e-09 4.60862e-10) (1.63883e-09 -4.47869e-09 -6.03226e-10) (5.38275e-10 -9.88807e-10 -5.87246e-10) (-2.28936e-10 4.90024e-10 -5.72513e-12) (-1.30135e-09 2.32268e-09 2.58946e-09) (-4.51372e-09 2.02392e-10 4.20792e-09) (-4.5959e-09 -3.03132e-09 1.48098e-09) (-1.09194e-09 -2.25011e-09 -4.23275e-10) (2.3085e-10 -3.65688e-10 -2.62448e-10) (1.44658e-09 6.11166e-10 -5.97934e-10) (4.02432e-09 3.5373e-09 -1.57979e-09) (3.87485e-09 4.28045e-09 -1.77763e-09) (1.68939e-09 1.96374e-09 -6.62918e-10) (2.9086e-10 2.51765e-10 3.20818e-11) (6.15569e-11 -5.13618e-11 1.50671e-10) (-1.72324e-10 -4.90286e-10 5.05407e-10) (-6.76147e-10 -7.22659e-10 4.20914e-10) (-8.7444e-10 -4.78744e-10 2.14817e-11) (-5.37179e-10 -1.06877e-10 -1.46338e-10) (-1.60935e-10 5.23563e-11 -7.97914e-11) (-5.96086e-11 1.10674e-10 -6.20018e-11) (-4.27285e-11 2.20517e-10 -1.14052e-10) (-5.71109e-12 2.36499e-10 -1.27858e-10) (1.23589e-10 7.78363e-11 -2.14665e-11) (2.31463e-09 -6.14878e-10 7.6431e-10) (7.53403e-09 -4.12175e-09 3.47868e-09) (3.17831e-09 -2.88334e-09 1.93105e-09) (1.58575e-11 -2.40381e-10 9.74869e-11) (-3.34362e-10 -1.91667e-11 -6.10079e-11) (-5.99583e-10 2.08616e-10 -1.0981e-10) (-2.41494e-10 1.73157e-10 1.19395e-11) (-3.87877e-11 1.10402e-10 3.89714e-11) (3.82004e-11 1.73659e-10 4.25059e-11) (7.54658e-11 2.61805e-10 -1.04539e-11) (3.09505e-11 2.53423e-10 -1.12094e-10) (-3.67269e-11 2.03406e-10 -2.37225e-10) (-8.89129e-11 1.44039e-10 -3.42204e-10) (-5.76659e-11 6.94946e-11 -2.11828e-10) (-1.10718e-12 2.05164e-12 -1.16174e-11) (1.00213e-10 -1.9217e-10 5.6552e-11) (8.93823e-10 -2.63837e-09 1.52973e-10) (3.01419e-11 -4.03066e-09 -1.35435e-09) (-6.28261e-10 -7.50275e-10 -1.0088e-09) (-1.31333e-09 1.23048e-09 -1.52638e-10) (-4.72434e-10 2.6226e-09 2.55427e-09) (-8.86204e-10 2.12847e-10 1.85432e-09) (-1.23936e-09 -1.73595e-09 6.13054e-10) (-8.38298e-10 -2.65298e-09 -5.30311e-10) (9.56598e-11 -4.39607e-10 -3.18529e-10) (1.09289e-09 5.00751e-10 -6.09699e-10) (4.94243e-09 4.01623e-09 -1.79225e-09) (5.5714e-09 5.12733e-09 -1.70255e-09) (2.67279e-09 2.31377e-09 -3.90606e-10) (7.27532e-10 3.75907e-10 2.30838e-10) (2.65126e-10 -1.14122e-10 4.09754e-10) (-8.80375e-11 -4.59947e-10 5.96359e-10) (-6.10298e-10 -5.60047e-10 3.95922e-10) (-1.02547e-09 -4.18811e-10 -7.91473e-12) (-7.20534e-10 -1.0501e-10 -2.40242e-10) (-1.87e-10 4.40556e-11 -1.32228e-10) (-3.20869e-11 6.87735e-11 -5.82488e-11) (2.07402e-11 1.15327e-10 -3.90839e-11) (1.30592e-10 1.30688e-10 1.16558e-11) (8.50201e-10 1.39716e-11 3.39666e-10) (2.33359e-09 -1.08837e-09 1.29308e-09) (8.60067e-10 -1.16186e-09 8.21368e-10) (-1.47659e-10 -3.70078e-10 1.34494e-10) (-2.78206e-10 -1.33227e-10 -2.69134e-11) (-9.69908e-11 7.5234e-12 -2.69223e-11) (-1.73161e-11 1.90501e-11 -1.53151e-12) (-1.08605e-11 2.62344e-11 1.07603e-11) (-1.79531e-11 4.21306e-11 2.07813e-11) (-1.62461e-11 9.31651e-11 2.03598e-11) (3.0783e-11 2.22831e-10 -1.13967e-11) (8.38968e-11 2.97661e-10 -1.04265e-10) (3.94141e-11 1.97867e-10 -1.80282e-10) (-3.6717e-11 1.09867e-10 -2.16669e-10) (-6.5947e-11 5.5936e-11 -1.49025e-10) (-3.04071e-12 -4.88188e-13 -8.88479e-12) (2.37059e-10 -3.52754e-10 7.37753e-11) (8.81979e-10 -2.51863e-09 -6.14974e-11) (-2.15761e-09 -3.92357e-09 -2.40841e-09) (-6.63001e-09 -1.65027e-09 -4.47928e-09) (-2.46433e-09 1.45873e-09 -2.20899e-10) (2.58617e-10 2.31913e-09 2.36437e-09) (2.02177e-10 2.43712e-10 1.37481e-09) (-1.98193e-10 -9.52007e-10 3.82601e-10) (-8.63969e-10 -2.36135e-09 -5.0779e-10) (-2.39306e-10 -5.97946e-10 -4.88154e-10) (4.1403e-10 2.21696e-10 -4.37471e-10) (4.22475e-09 3.23319e-09 -1.56642e-09) (7.27032e-09 5.45967e-09 -1.4299e-09) (5.06891e-09 3.12926e-09 -8.26408e-11) (2.17063e-09 7.22789e-10 6.62575e-10) (6.76144e-10 -1.57887e-10 6.98664e-10) (-3.10971e-11 -3.90955e-10 5.58624e-10) (-7.05426e-10 -5.01386e-10 3.78785e-10) (-1.37476e-09 -3.99064e-10 -3.05254e-12) (-8.40018e-10 -7.13774e-11 -2.1417e-10) (-1.38819e-10 2.84919e-11 -8.42582e-11) (-1.87648e-12 2.24624e-11 -2.00254e-11) (5.81955e-11 5.90605e-11 -4.28702e-12) (2.28167e-10 8.36165e-11 9.78482e-11) (3.35243e-10 -6.84677e-11 2.60363e-10) (6.03725e-11 -2.01049e-10 1.87248e-10) (-2.92044e-10 -3.3586e-10 1.15573e-10) (-4.05621e-10 -2.81095e-10 1.0088e-11) (-4.89816e-11 -3.46921e-11 1.8746e-12) (2.56094e-12 5.42744e-13 1.19517e-12) (2.97195e-11 1.92557e-11 7.76921e-12) (2.14679e-12 1.14134e-11 3.74282e-12) (-7.02594e-11 4.51513e-11 1.59823e-11) (-1.6561e-10 1.26188e-10 2.81408e-11) (-2.82622e-11 1.66719e-10 2.24792e-12) (1.91005e-10 3.31546e-10 -9.53167e-11) (2.5767e-10 2.88133e-10 -2.43438e-10) (4.93239e-11 1.06774e-10 -2.11393e-10) (-4.16799e-11 3.11905e-11 -1.17215e-10) (4.51036e-12 -7.74232e-12 -7.50654e-12) (7.28762e-10 -7.1227e-10 1.79931e-10) (4.50533e-10 -1.65274e-09 -1.82208e-10) (-7.96005e-09 -4.90725e-09 -5.42053e-09) (-2.07426e-08 -2.39507e-09 -1.06297e-08) (-1.58239e-09 7.8425e-10 1.4388e-10) (1.07382e-09 2.14136e-09 2.70991e-09) (1.11949e-09 4.52081e-10 1.80023e-09) (8.06657e-11 -4.60708e-10 2.29996e-10) (-9.42135e-10 -1.78344e-09 -5.07944e-10) (-1.01593e-09 -1.00857e-09 -9.40027e-10) (3.72177e-11 6.58756e-11 -3.74002e-10) (2.34906e-09 1.84307e-09 -1.15767e-09) (6.80503e-09 4.45705e-09 -1.04164e-09) (7.19245e-09 3.48358e-09 3.40524e-10) (4.32554e-09 1.0871e-09 1.21374e-09) (1.22986e-09 -1.52876e-10 9.21464e-10) (7.5673e-12 -2.58229e-10 3.85602e-10) (-8.20867e-10 -4.43005e-10 3.21062e-10) (-1.71613e-09 -3.80645e-10 2.21444e-11) (-7.93107e-10 -4.67994e-11 -1.01733e-10) (-6.55816e-11 1.26368e-11 -2.00229e-11) (1.39949e-12 4.25627e-12 -1.72527e-12) (2.2029e-11 1.6185e-11 5.98556e-12) (1.6943e-11 7.65935e-12 1.78895e-11) (-9.33025e-12 -1.03416e-11 1.86405e-11) (-1.73847e-10 -1.2283e-10 3.80772e-11) (-2.58105e-10 -2.07737e-10 2.08968e-11) (-3.95672e-11 -7.54302e-11 3.48855e-11) (3.68049e-11 -3.06274e-11 4.86424e-11) (7.96793e-11 4.31688e-12 4.23088e-11) (2.68067e-11 1.50753e-11 3.17615e-12) (-1.34964e-11 1.40532e-11 -4.0511e-12) (-4.31766e-10 1.23234e-10 -6.66567e-12) (-6.13166e-10 2.26761e-10 5.6853e-11) (-4.81607e-11 1.12759e-10 1.46236e-11) (3.79397e-10 3.52527e-10 -8.99788e-11) (9.36561e-10 5.04551e-10 -4.42974e-10) (3.24967e-10 1.63489e-10 -3.43022e-10) (3.16257e-11 7.72483e-12 -8.57172e-11) (1.76938e-10 -1.04199e-10 -8.76067e-12) (1.20933e-09 -9.62151e-10 3.27974e-10) (-5.14543e-10 -9.5439e-10 -4.15759e-10) (-2.4371e-08 -6.4664e-09 -1.31726e-08) (-2.73618e-08 -2.47904e-09 -1.22094e-08) (-3.49722e-10 3.07539e-10 4.41047e-10) (2.50787e-09 2.39503e-09 4.04313e-09) (1.89553e-09 6.87663e-10 2.01349e-09) (1.10254e-10 -1.81168e-10 1.0415e-10) (-7.89014e-10 -1.13546e-09 -4.20842e-10) (-1.99168e-09 -1.30982e-09 -1.33021e-09) (-4.59399e-10 -2.11179e-11 -7.57263e-10) (7.05939e-10 7.53686e-10 -7.54895e-10) (4.31568e-09 2.67268e-09 -7.66501e-10) (7.11359e-09 2.90451e-09 5.52992e-10) (5.54748e-09 1.14742e-09 1.47876e-09) (1.56885e-09 -1.01288e-10 9.17566e-10) (2.10149e-11 -1.30173e-10 1.96505e-10) (-8.09677e-10 -3.45656e-10 2.17587e-10) (-1.74979e-09 -3.39315e-10 4.5691e-11) (-6.56962e-10 -4.57018e-11 1.3925e-12) (-4.84326e-11 6.96426e-12 5.54472e-12) (-1.83685e-12 1.99678e-12 1.10138e-12) (-2.39974e-12 2.02828e-12 1.05111e-12) (-1.98176e-11 1.06485e-12 1.09871e-12) (-7.11145e-11 -2.37451e-11 -6.05876e-12) (-5.41272e-11 -5.24068e-11 1.48588e-12) (1.58955e-11 -7.09484e-11 5.1542e-11) (2.55818e-10 -1.50595e-10 2.84815e-10) (3.21782e-10 -6.52352e-11 2.84201e-10) (7.12402e-11 8.72674e-12 4.327e-11) (-9.71355e-13 4.86046e-12 -2.34355e-12) (-2.4987e-10 8.44478e-11 -8.3989e-11) (-1.31957e-09 2.61363e-10 -1.52495e-10) (-1.01863e-09 2.56965e-10 2.66018e-11) (-2.8807e-11 5.1271e-11 9.64606e-12) (5.84306e-10 3.17209e-10 -8.12207e-11) (1.92043e-09 6.27865e-10 -5.66645e-10) (1.08734e-09 2.43067e-10 -5.12226e-10) (4.47502e-10 -3.68116e-11 -1.51778e-10) (1.06987e-09 -4.3844e-10 1.72236e-10) (2.18513e-10 -3.17236e-10 7.28693e-11) (-7.05924e-09 -2.26321e-09 -3.46474e-09) (-4.28915e-08 -6.73229e-09 -2.21344e-08) (-1.63791e-08 -1.80939e-09 -6.41579e-09) (1.7583e-10 4.51886e-10 1.35129e-09) (4.38932e-09 2.76007e-09 5.80155e-09) (2.25375e-09 8.02289e-10 1.85785e-09) (1.22232e-10 -7.7311e-11 4.99576e-11) (-3.96035e-10 -5.38876e-10 -2.2533e-10) (-2.17174e-09 -1.1261e-09 -1.14682e-09) (-1.50742e-09 -1.43823e-10 -1.37307e-09) (2.34481e-11 3.71189e-10 -6.57446e-10) (1.75999e-09 1.15353e-09 -5.86614e-10) (4.80718e-09 1.74784e-09 3.38488e-10) (4.69518e-09 8.48758e-10 1.17654e-09) (1.34314e-09 -4.08606e-11 6.43296e-10) (1.29634e-11 -4.8303e-11 7.05163e-11) (-6.29939e-10 -2.23674e-10 1.11517e-10) (-1.32251e-09 -2.50673e-10 7.4031e-11) (-4.75211e-10 -4.25532e-11 7.20373e-11) (-7.97938e-11 7.15941e-12 3.00454e-11) (-4.22423e-11 7.72124e-12 9.32e-12) (-8.79802e-11 3.71092e-12 -1.4071e-11) (-1.03795e-10 -1.43229e-11 -3.85579e-11) (-1.99322e-11 -1.46984e-11 -6.47995e-12) (3.49281e-11 -4.27103e-11 4.25301e-11) (5.37225e-10 -2.08441e-10 5.1003e-10) (9.99008e-10 -1.90786e-10 8.53468e-10) (4.68094e-10 -1.9036e-11 3.44026e-10) (2.11497e-11 8.08068e-12 1.11829e-11) (-6.69991e-11 3.45026e-11 -3.6795e-11) (-8.94085e-10 2.12404e-10 -3.12749e-10) (-1.88693e-09 3.31084e-10 -4.06913e-10) (-7.86592e-10 1.61805e-10 -1.0098e-10) (-2.21775e-12 1.03568e-11 -1.11078e-12) (7.20695e-10 2.23749e-10 -5.85653e-11) (2.41809e-09 4.94616e-10 -3.55619e-10) (2.1936e-09 1.95945e-10 -3.31059e-10) (1.64059e-09 -2.17129e-10 5.11029e-11) (5.23263e-10 -2.62016e-10 1.43191e-10) (-7.69268e-10 -3.30786e-10 -2.88583e-10) (-2.38377e-08 -3.13751e-09 -1.24513e-08) (-3.40719e-08 -5.04368e-09 -1.95981e-08) (-4.89578e-09 -7.4563e-10 -1.50699e-09) (9.78278e-10 7.13651e-10 2.80572e-09) (5.5667e-09 2.73555e-09 6.61975e-09) (2.52552e-09 8.27889e-10 1.68353e-09) (2.39772e-10 -5.67223e-11 4.63739e-11) (-1.04241e-10 -1.94225e-10 -7.33472e-11) (-1.68577e-09 -7.05435e-10 -6.47165e-10) (-2.28431e-09 -1.65889e-10 -1.48403e-09) (-3.61695e-10 3.02777e-10 -8.642e-10) (5.98912e-10 4.52498e-10 -4.65307e-10) (2.30024e-09 7.69833e-10 -1.95352e-11) (2.61756e-09 4.33209e-10 5.65081e-10) (7.55038e-10 -1.90542e-12 2.98949e-10) (3.79938e-12 -1.25854e-11 1.71295e-11) (-3.44439e-10 -1.10298e-10 4.93242e-11) (-6.75625e-10 -1.34406e-10 1.0283e-10) (-3.03761e-10 -2.81327e-11 1.08937e-10) (-1.2805e-10 7.85913e-12 5.33593e-11) (-1.34867e-10 5.37827e-12 -9.09879e-13) (-1.86956e-10 -1.85865e-11 -7.75406e-11) (-7.11183e-11 -2.33988e-11 -4.34343e-11) (2.12874e-12 -8.39793e-12 6.2976e-12) (3.55404e-10 -1.17859e-10 3.8382e-10) (1.34886e-09 -2.04857e-10 1.20964e-09) (1.27941e-09 -7.4173e-11 9.45495e-10) (3.2895e-10 2.83615e-11 1.80005e-10) (3.55132e-12 5.50554e-12 -1.32253e-12) (-1.83594e-10 7.79062e-11 -1.10416e-10) (-9.70378e-10 2.34202e-10 -4.22747e-10) (-1.09478e-09 2.04573e-10 -4.51953e-10) (-2.0811e-10 4.29867e-11 -1.22354e-10) (1.52964e-11 6.92461e-12 -1.10421e-11) (6.35533e-10 1.07803e-10 -1.41408e-11) (1.80288e-09 2.08165e-10 8.59878e-11) (1.84667e-09 1.91363e-12 2.40848e-10) (6.23091e-10 -1.31067e-10 1.7892e-10) (-3.88034e-11 -2.78619e-11 -4.28348e-12) (-6.45953e-09 -6.92082e-10 -3.0123e-09) (-2.41313e-08 -2.64741e-09 -1.57935e-08) (-1.34494e-08 -2.53068e-09 -9.70793e-09) (-9.68611e-10 -1.57559e-10 -1.17451e-10) (1.61916e-09 7.9637e-10 3.49417e-09) (5.30404e-09 2.14101e-09 5.6768e-09) (2.63405e-09 7.18527e-10 1.42889e-09) (4.92226e-10 -6.03677e-11 7.0018e-11) (-1.09991e-11 -6.49016e-11 -9.58239e-12) (-1.03081e-09 -3.37143e-10 -2.11373e-10) (-1.9554e-09 -5.7543e-11 -9.57446e-10) (-4.53265e-10 2.15549e-10 -8.18986e-10) (3.1911e-10 2.35704e-10 -4.61609e-10) (1.02373e-09 2.99005e-10 -2.02046e-10) (1.09058e-09 1.70085e-10 1.31563e-10) (2.95883e-10 8.30127e-12 8.82175e-11) (1.09689e-12 -2.51455e-12 3.40199e-12) (-1.14568e-10 -3.66053e-11 2.6464e-11) (-2.52081e-10 -4.98136e-11 9.01115e-11) (-1.83217e-10 -1.14053e-11 9.98421e-11) (-1.12848e-10 3.51768e-12 3.69799e-11) (-1.13648e-10 -7.66335e-12 -3.23007e-11) (-1.2204e-10 -2.9034e-11 -9.52477e-11) (-1.49837e-11 -9.29163e-12 -9.73943e-12) (5.59847e-11 -2.98393e-11 8.73141e-11) (8.63893e-10 -1.26273e-10 9.11067e-10) (1.60993e-09 -9.48074e-11 1.31718e-09) (9.17808e-10 2.39127e-11 5.54679e-10) (1.58795e-10 3.48487e-11 4.38849e-11) (5.85716e-12 1.35857e-11 -1.22971e-11) (-8.26886e-11 5.80048e-11 -8.93106e-11) (-2.5919e-10 1.00259e-10 -2.16477e-10) (-1.64265e-10 5.21378e-11 -2.1216e-10) (-2.9556e-12 8.70226e-12 -1.07674e-10) (6.55541e-11 4.65031e-12 -4.76177e-11) (1.89964e-10 1.95457e-11 2.98696e-11) (3.83781e-10 2.30232e-11 2.14432e-10) (2.44403e-10 -2.31747e-11 2.05164e-10) (-6.24876e-12 -7.67718e-12 1.526e-11) (-1.40086e-09 -1.23617e-10 -4.55495e-10) (-9.138e-09 -6.52142e-10 -5.71238e-09) (-1.10801e-08 -1.66759e-09 -1.01623e-08) (-3.65106e-09 -8.38754e-10 -3.31513e-09) (-1.79729e-10 -1.26529e-11 7.48683e-11) (1.92127e-09 6.55355e-10 3.26849e-09) (4.01412e-09 1.26974e-09 3.74693e-09) (2.33697e-09 4.5199e-10 1.06706e-09) (5.44047e-10 -7.16482e-11 1.13226e-10) (-8.9968e-12 -3.07064e-11 8.95889e-12) (-6.2665e-10 -1.33531e-10 -3.61779e-11) (-6.93625e-10 2.24915e-11 -3.38727e-10) (-7.24715e-11 8.61133e-11 -3.64981e-10) (3.78182e-10 1.44438e-10 -4.3521e-10) (6.98455e-10 1.45717e-10 -2.4303e-10) (5.30293e-10 7.18691e-11 -1.5605e-11) (1.32815e-10 6.70199e-12 2.0323e-11) (1.59843e-12 -8.59973e-13 1.69108e-12) (-2.84731e-11 -9.26421e-12 1.67594e-11) (-8.5223e-11 -1.37369e-11 5.76569e-11) (-7.04431e-11 -2.72878e-12 4.70026e-11) (-3.34443e-11 -1.709e-12 3.42883e-12) (-4.65971e-11 -1.09237e-11 -4.16757e-11) (-4.01677e-11 -1.61786e-11 -5.38597e-11) (-3.35537e-14 -1.30286e-12 9.23555e-13) (2.42057e-10 -4.68279e-11 3.07246e-10) (1.17972e-09 -8.0092e-11 1.0996e-09) (1.31978e-09 -6.99437e-12 9.1242e-10) (5.84175e-10 4.7182e-11 2.50066e-10) (1.39162e-10 3.59088e-11 3.23317e-13) (3.66544e-11 2.66811e-11 -3.38338e-11) (1.40944e-11 3.25613e-11 -6.0075e-11) (2.09588e-11 3.525e-11 -1.11472e-10) (8.29452e-11 2.14471e-11 -2.07723e-10) (9.50574e-11 -2.32191e-12 -1.705e-10) (9.09042e-12 -1.46013e-13 -9.56428e-12) (4.47775e-12 1.91518e-12 3.26752e-11) (8.25859e-12 -1.62056e-12 1.988e-10) (-4.13856e-11 -1.21122e-11 1.10272e-10) (-3.40524e-10 -2.58149e-11 -2.84975e-12) (-2.63363e-09 -1.08339e-10 -1.34305e-09) (-5.34264e-09 -4.88075e-10 -4.87172e-09) (-3.16329e-09 -6.91192e-10 -4.30365e-09) (-8.27706e-10 -1.76601e-10 -8.11623e-10) (-4.27176e-11 1.19984e-11 1.32218e-10) (2.32411e-09 4.47939e-10 2.70865e-09) (3.60088e-09 7.38864e-10 2.50997e-09) (2.78114e-09 3.23041e-10 9.77742e-10) (9.17083e-10 -7.58199e-11 2.18821e-10) (2.29136e-11 -1.80557e-11 1.569e-11) (-3.45366e-11 -7.6074e-12 -2.6469e-12) (-1.16021e-11 6.46986e-12 -3.69035e-11) (2.63331e-10 6.37844e-11 -2.7391e-10) (1.06135e-09 1.54392e-10 -5.24689e-10) (1.40335e-09 1.59702e-10 -3.33531e-10) (1.11119e-09 9.76115e-11 -7.7792e-11) (5.4258e-10 2.75361e-11 2.08506e-11) (1.48592e-10 -1.12814e-12 2.77803e-11) (3.40879e-11 -3.6523e-12 2.21086e-11) (1.61322e-11 -1.61954e-12 2.17934e-11) (9.91001e-12 -4.06576e-13 8.92871e-12) (9.56597e-12 -1.60719e-12 -3.16883e-12) (2.56415e-11 -8.86987e-12 -3.82061e-11) (2.08027e-11 -6.71443e-12 -1.92496e-11) (1.1044e-10 -1.68592e-11 5.86633e-11) (9.26836e-10 -6.8271e-11 6.96479e-10) (2.08932e-09 -6.35594e-11 1.30812e-09) (2.08765e-09 2.04454e-11 9.27962e-10) (1.33061e-09 8.07266e-11 3.06437e-10) (7.72154e-10 9.78625e-11 -1.0965e-11) (5.43137e-10 1.02487e-10 -1.29107e-10) (5.20656e-10 1.02206e-10 -2.10012e-10) (6.43593e-10 8.26651e-11 -3.42213e-10) (6.50294e-10 2.95776e-11 -4.04511e-10) (2.80732e-10 3.3555e-14 -1.55474e-10) (4.75677e-11 1.22298e-12 8.3022e-12) (6.26455e-11 3.33423e-12 1.36838e-10) (6.00876e-11 -4.12155e-12 2.16298e-10) (-5.53105e-12 -2.36538e-12 3.15919e-11) (-1.25008e-10 -1.57596e-12 -5.38847e-11) (-8.84805e-10 -4.02154e-11 -9.09718e-10) (-1.09911e-09 -1.83144e-10 -2.1046e-09) (-4.81988e-10 -1.97138e-10 -1.41093e-09) (-5.45675e-11 -1.49069e-11 -9.21692e-11) (1.29985e-10 2.90979e-11 2.8174e-10) (4.72666e-09 3.45503e-10 3.05797e-09) (7.98512e-09 7.09005e-10 3.34005e-09) (9.2063e-09 4.72527e-10 2.32251e-09) (5.67842e-09 -1.11345e-10 1.22068e-09) (1.66396e-09 -1.16576e-10 4.05907e-10) (6.26778e-10 -1.02508e-11 6.17392e-11) (1.37938e-09 6.99797e-11 -2.07824e-10) (4.00294e-09 2.2164e-10 -7.53964e-10) (6.9269e-09 3.64368e-10 -9.60023e-10) (8.4839e-09 4.161e-10 -6.19387e-10) (8.44578e-09 3.52054e-10 -1.44095e-10) (6.91309e-09 2.06191e-10 2.13161e-10) (4.82577e-09 8.49924e-11 4.39034e-10) (3.28172e-09 2.89706e-11 5.3106e-10) (2.44468e-09 2.44768e-11 4.50517e-10) (1.98654e-09 -2.7472e-12 1.92574e-10) (1.66882e-09 -5.02952e-11 -1.71434e-10) (1.25908e-09 -6.04317e-11 -3.42315e-10) (9.61275e-10 -4.76063e-11 -1.06063e-10) (1.67392e-09 -7.19472e-11 4.66115e-10) (4.17395e-09 -1.40472e-10 1.76722e-09) (7.20417e-09 -1.24707e-10 2.76283e-09) (8.65472e-09 2.29689e-11 2.48756e-09) (8.44788e-09 2.05453e-10 1.51814e-09) (7.80235e-09 3.49193e-10 6.03579e-10) (7.66112e-09 4.47807e-10 -5.40271e-11) (8.12839e-09 4.68207e-10 -6.44666e-10) (8.37683e-09 3.53348e-10 -1.21428e-09) (6.75533e-09 1.58977e-10 -1.15405e-09) (3.70164e-09 4.46079e-11 -2.67165e-10) (1.81092e-09 2.33108e-11 4.27062e-10) (1.20377e-09 1.08211e-11 7.23202e-10) (6.22817e-10 3.40794e-13 4.35982e-10) (8.18098e-11 1.33403e-12 3.03546e-11) (-2.21399e-12 1.86575e-12 -4.62244e-11) (-7.90214e-11 -2.24451e-11 -5.66784e-10) (1.1651e-10 -8.11612e-11 -1.16305e-09) (1.65925e-10 -6.77655e-11 -7.17957e-10) (6.87472e-11 -3.40092e-12 -4.41105e-11) (1.07268e-09 5.69513e-11 7.34586e-10) (8.19841e-09 4.97727e-11 3.91301e-09) (1.3932e-08 2.8843e-10 5.35675e-09) (1.57558e-08 1.69474e-10 4.87537e-09) (9.79096e-09 -1.35023e-10 2.86369e-09) (4.26875e-09 -8.22472e-11 1.09417e-09) (3.5684e-09 2.40291e-11 3.79365e-10) (6.74135e-09 1.2611e-10 -7.18404e-11) (1.22895e-08 2.22347e-10 -4.55329e-10) (1.73512e-08 3.07952e-10 -4.77923e-10) (2.0625e-08 3.55074e-10 -1.41e-10) (2.12389e-08 3.13633e-10 4.97789e-10) (1.87203e-08 2.10582e-10 1.27452e-09) (1.47099e-08 1.30007e-10 1.79627e-09) (1.12136e-08 8.7272e-11 1.74175e-09) (8.69985e-09 3.92205e-11 1.13302e-09) (6.59115e-09 -5.02351e-11 1.49308e-10) (4.50609e-09 -8.06678e-11 -7.15301e-10) (2.68838e-09 -4.06279e-11 -7.10145e-10) (1.97092e-09 -2.24887e-11 -1.36811e-10) (3.27874e-09 -3.98049e-11 7.49751e-10) (6.9859e-09 -9.92492e-11 2.32623e-09) (1.18824e-08 -1.0838e-10 3.7815e-09) (1.58439e-08 -5.8197e-12 4.14311e-09) (1.81133e-08 1.60275e-10 3.45365e-09) (1.96274e-08 3.30462e-10 2.23739e-09) (2.17702e-08 4.6595e-10 8.3076e-10) (2.39388e-08 4.82495e-10 -7.76151e-10) (2.25377e-08 3.14335e-10 -1.91655e-09) (1.48119e-08 7.71464e-11 -1.21101e-09) (6.43426e-09 -2.11382e-11 3.52808e-10) (2.52668e-09 -2.10954e-11 9.25819e-10) (1.01958e-09 -1.41427e-11 6.84082e-10) (2.01345e-10 -2.16804e-12 1.33455e-10) (2.47862e-12 3.07341e-13 -4.22213e-12) (-4.64738e-11 1.52172e-12 -1.14152e-10) (2.71039e-11 -1.08175e-11 -4.14236e-10) (2.42043e-10 -2.83439e-11 -7.29954e-10) (2.74934e-10 -1.63305e-11 -4.44105e-10) (4.81772e-10 3.32208e-12 -5.80402e-11) (2.9512e-09 3.09112e-11 1.28373e-09) (9.04934e-10 -2.40854e-11 4.81776e-10) (1.03784e-09 -1.25136e-11 6.97459e-10) (8.56907e-10 -8.17917e-12 5.66667e-10) (4.60824e-10 -7.36126e-12 2.74977e-10) (2.80598e-10 -3.64027e-12 1.14522e-10) (4.56879e-10 -8.06808e-13 7.77314e-11) (1.02573e-09 1.14808e-12 6.75159e-11) (1.68158e-09 1.43893e-12 5.53007e-11) (2.10676e-09 1.21129e-12 4.95013e-11) (2.2748e-09 5.81603e-13 8.99469e-11) (2.13774e-09 -1.07033e-12 2.0309e-10) (1.78227e-09 -4.14906e-13 3.21654e-10) (1.43809e-09 1.28545e-12 3.55513e-10) (1.18259e-09 2.58986e-13 2.78833e-10) (9.10558e-10 -5.54545e-12 1.14787e-10) (5.65547e-10 -8.67935e-12 -5.54289e-11) (3.02464e-10 -3.05726e-12 -1.29166e-10) (1.59581e-10 7.8197e-13 -9.1949e-11) (1.42128e-10 9.29174e-13 -3.37628e-11) (3.07873e-10 9.68181e-13 3.54214e-11) (6.85019e-10 -2.0992e-12 1.80732e-10) (1.18807e-09 -4.56295e-12 3.69328e-10) (1.64201e-09 -3.76114e-12 4.81645e-10) (1.95681e-09 -7.70834e-13 4.53242e-10) (2.21183e-09 4.76408e-12 3.00146e-10) (2.48691e-09 7.16386e-12 6.8046e-11) (2.55157e-09 2.95738e-12 -1.75222e-10) (1.918e-09 -4.48672e-12 -2.42523e-10) (8.06448e-10 -8.56091e-12 -7.32699e-11) (1.86704e-10 -4.37794e-12 3.27027e-11) (4.22098e-11 -1.97096e-12 4.36973e-11) (4.0097e-12 -8.35667e-13 2.84872e-11) (-8.20684e-12 -1.83697e-13 8.60513e-12) (-9.79156e-12 3.75843e-14 1.83941e-12) (-2.04158e-12 5.16414e-14 -8.95857e-13) (2.1852e-12 7.0502e-14 -6.26935e-12) (2.42908e-11 1.85571e-13 -4.14401e-11) (7.05106e-11 2.9947e-13 -7.0302e-11) (2.27602e-10 1.62804e-12 -5.28732e-11) (5.84524e-10 -4.53239e-12 1.3046e-10) (3.07798e-10 -1.60275e-10 -1.24542e-10) (2.31361e-10 -4.30195e-11 6.76804e-11) (2.99878e-10 1.37674e-11 3.27245e-10) (2.40114e-10 3.19687e-11 4.83908e-10) (6.84018e-11 -2.87912e-12 3.00711e-10) (-1.77834e-11 -2.71143e-11 8.92481e-11) (-7.2782e-11 -8.06687e-11 2.41592e-11) (-2.62103e-10 -3.12295e-10 -1.09999e-10) (-3.15156e-10 -3.75114e-10 -2.19258e-10) (-6.97164e-11 -7.75178e-11 -6.00429e-11) (2.16541e-12 3.38081e-12 -2.02614e-12) (1.31995e-10 1.76833e-10 -2.07915e-11) (2.67733e-10 3.88938e-10 -1.13966e-10) (1.11046e-10 1.93412e-10 -1.32864e-10) (2.91275e-12 1.67538e-11 -5.10252e-11) (-2.99458e-11 -4.33596e-11 -4.17815e-11) (-1.0018e-10 -1.4821e-10 -3.624e-12) (-2.09124e-10 -2.28222e-10 1.66129e-10) (-3.38085e-10 -2.12345e-10 4.95369e-10) (-3.41522e-10 -3.45642e-11 7.07714e-10) (-1.76639e-10 1.20397e-10 4.41595e-10) (-3.8936e-11 1.0072e-10 1.00677e-10) (4.63457e-13 8.05067e-11 -1.06148e-11) (1.58692e-11 9.746e-11 -9.11621e-11) (-1.35076e-12 4.86133e-11 -1.0397e-10) (-2.28664e-11 -1.52704e-12 -5.90262e-11) (-3.63642e-11 -2.92514e-11 -3.52449e-11) (-3.64227e-11 -4.79562e-11 -2.1992e-11) (-1.8591e-11 -4.66576e-11 -2.07056e-11) (-4.58087e-12 -3.83201e-11 -3.3962e-11) (-9.26977e-13 -2.27312e-11 -5.37784e-11) (-8.39048e-12 8.47416e-12 -6.04039e-11) (-2.54586e-11 5.83705e-11 -5.84156e-11) (-5.93844e-11 1.45854e-10 -3.33452e-11) (-9.88468e-11 2.28569e-10 4.56765e-11) (-8.28532e-11 1.9471e-10 1.09106e-10) (-1.04695e-11 4.98793e-11 4.50338e-11) (7.17138e-12 -1.15688e-12 7.4345e-13) (1.44932e-10 -1.12032e-10 -1.02395e-10) (3.62357e-10 -2.81173e-10 -2.82207e-10) (1.19142e-11 -1.33348e-11 -3.61336e-12) (3.15205e-10 -7.32828e-11 2.43252e-10) (1.68238e-09 -1.33171e-10 1.4095e-09) (2.58206e-09 -1.81841e-10 2.09252e-09) (1.2256e-09 -1.9858e-10 9.33353e-10) (6.19366e-11 -5.00932e-11 4.5337e-11) (-2.66862e-10 -1.87031e-10 -1.19775e-10) (-1.92724e-09 -7.77548e-10 -5.50458e-10) (-1.84964e-09 -6.76322e-10 1.12205e-11) (-3.04805e-10 -1.18238e-10 2.42532e-10) (1.31549e-10 7.08604e-11 2.21596e-10) (9.99572e-10 5.61027e-10 1.63178e-10) (1.62972e-09 9.00021e-10 -6.62658e-10) (9.57692e-10 3.75066e-10 -1.05808e-09) (2.09049e-10 -7.75954e-11 -7.26965e-10) (-1.08814e-10 -1.38165e-10 -3.52508e-10) (-2.1363e-10 -6.49515e-11 -9.22405e-11) (-5.85921e-10 -3.43653e-11 1.97694e-10) (-1.29013e-09 -6.18603e-11 9.72738e-10) (-1.324e-09 -1.34343e-10 1.35315e-09) (-5.563e-10 -7.25591e-11 7.05787e-10) (-6.0262e-11 -8.003e-12 1.15109e-10) (4.80846e-12 1.80575e-12 5.97302e-12) (4.97423e-11 1.98625e-11 -3.7458e-12) (8.95442e-11 4.79286e-11 -2.09849e-11) (4.93009e-11 3.40305e-11 -1.90441e-11) (1.0641e-11 8.3415e-12 -1.1085e-11) (2.56822e-12 5.8389e-13 -2.08349e-11) (-4.37858e-12 -9.14852e-12 -7.43911e-11) (-1.70848e-11 -1.56014e-11 -1.38817e-10) (-3.05291e-11 -1.33463e-11 -1.1236e-10) (-2.36805e-11 -7.41827e-12 -3.79297e-11) (-7.99915e-12 -6.45383e-13 -4.3974e-12) (-3.94816e-12 4.41443e-12 1.22367e-12) (-6.47194e-12 3.87145e-11 9.14134e-12) (-3.78922e-12 9.23403e-11 5.41837e-12) (1.18417e-12 7.20379e-11 -2.40022e-11) (2.39454e-12 3.61351e-11 -6.63486e-11) (-5.84435e-12 -5.8951e-12 -1.4553e-10) (-5.02469e-12 -3.42132e-11 -9.11234e-11) (1.69093e-10 -1.79276e-10 1.69461e-10) (9.83809e-10 -4.73456e-10 7.59005e-10) (1.81942e-09 -3.56753e-10 1.16427e-09) (1.08017e-09 2.22995e-11 6.04172e-10) (3.30061e-11 2.071e-11 2.31652e-11) (-7.88294e-10 9.83381e-11 -1.46491e-10) (-5.62825e-09 -6.76674e-10 -4.84557e-10) (-5.81765e-09 -2.36702e-09 1.17677e-09) (-1.9313e-09 -2.23568e-09 2.08484e-09) (-1.84943e-11 -8.78656e-10 1.01463e-09) (8.80778e-11 -4.66435e-11 3.21445e-11) (3.84577e-10 1.60514e-10 -5.85855e-10) (6.59874e-10 5.10418e-10 -2.20276e-09) (4.42406e-10 4.28391e-10 -2.40288e-09) (3.34416e-10 3.4556e-10 -1.28469e-09) (2.8319e-10 3.1839e-10 -3.1272e-10) (3.25368e-10 4.54683e-10 1.6151e-10) (1.85615e-10 5.39537e-10 7.83259e-10) (-3.48821e-10 2.68832e-10 1.20055e-09) (-9.74193e-10 -2.10618e-10 1.31352e-09) (-1.04258e-09 -6.24554e-10 9.78121e-10) (-4.72869e-10 -5.83431e-10 4.43828e-10) (-5.26393e-11 -2.51981e-10 9.85771e-11) (2.93965e-11 -4.34156e-11 -3.41438e-12) (9.19695e-11 2.42832e-11 -5.57783e-11) (2.56086e-10 2.3225e-10 -2.17333e-10) (3.39779e-10 3.98316e-10 -3.50134e-10) (2.50619e-10 3.02313e-10 -2.87464e-10) (9.80389e-11 1.11713e-10 -1.15406e-10) (1.70958e-11 1.54008e-11 -1.5159e-11) (1.65451e-12 1.05145e-13 5.45294e-13) (2.96559e-12 -4.84058e-12 8.01129e-12) (5.38086e-13 -6.24508e-12 8.13844e-12) (-2.38857e-13 -2.58241e-13 6.87586e-14) (-6.14668e-12 1.05824e-11 -1.79221e-11) (-3.15135e-11 1.03589e-10 -1.28831e-10) (-7.81058e-11 2.23045e-10 -2.45506e-10) (-9.51468e-11 1.60075e-10 -1.85943e-10) (-3.1008e-11 1.88885e-11 -3.72278e-11) (-3.16571e-13 -8.87244e-12 2.26946e-12) (6.18993e-10 -4.637e-10 6.52096e-10) (7.98735e-10 -3.1111e-10 6.3905e-10) (3.08817e-10 1.69893e-11 1.95317e-10) (1.40011e-11 6.86036e-11 1.55536e-11) (-5.87258e-10 4.60144e-10 -8.2084e-11) (-2.71337e-09 5.8248e-10 -7.89006e-12) (-3.3117e-09 -1.07328e-09 1.05695e-09) (-2.55357e-09 -3.60414e-09 2.75204e-09) (-1.0305e-09 -3.05709e-09 1.99355e-09) (-2.23871e-10 -4.09224e-10 4.2464e-11) (-5.97633e-10 -1.27669e-10 -1.02905e-09) (-1.92227e-09 -5.33118e-11 -3.92431e-09) (-2.17732e-09 -2.70792e-10 -4.16587e-09) (-8.20938e-10 5.17694e-11 -1.80709e-09) (2.85839e-11 1.78715e-10 -2.80358e-10) (7.37745e-10 7.65051e-10 1.03435e-10) (2.558e-09 2.31082e-09 1.58506e-09) (2.31693e-09 2.27777e-09 2.36939e-09) (4.31666e-10 6.72244e-10 1.14995e-09) (-2.18753e-10 -1.13948e-11 4.77412e-10) (-7.24033e-10 -5.57048e-10 5.02612e-10) (-8.12509e-10 -1.05366e-09 2.40977e-10) (-3.41195e-10 -7.99433e-10 -1.59069e-10) (-1.3932e-11 -2.49916e-10 -2.33038e-10) (9.42705e-11 3.34877e-11 -2.73348e-10) (2.52963e-10 4.10779e-10 -4.49622e-10) (2.82404e-10 5.2735e-10 -3.3288e-10) (1.68991e-10 2.53757e-10 -8.18516e-11) (1.18354e-10 1.00921e-10 2.79058e-11) (2.03187e-10 8.46327e-11 1.34584e-10) (3.66675e-10 9.10016e-11 2.8897e-10) (3.72375e-10 6.56726e-11 2.84223e-10) (1.73957e-10 1.59131e-11 9.85966e-11) (4.00341e-11 -1.10256e-12 -2.91317e-12) (2.50159e-11 2.34225e-12 -5.51575e-11) (-7.46889e-12 4.69059e-11 -1.82645e-10) (-7.87702e-11 1.03169e-10 -2.1299e-10) (-5.11908e-11 3.97269e-11 -5.94599e-11) (-1.97235e-12 -1.97812e-12 2.29863e-12) (1.0835e-10 -1.47869e-10 1.81414e-10) (4.62883e-10 -1.93009e-10 5.38561e-10) (2.24266e-10 5.17667e-12 1.37079e-10) (6.32363e-11 7.14557e-11 -9.45454e-12) (-7.26395e-11 2.48656e-10 -9.5406e-11) (-5.34894e-10 4.12464e-10 -7.53077e-11) (-9.45606e-10 -2.5284e-11 3.03053e-10) (-1.75479e-09 -1.77057e-09 1.52778e-09) (-2.2058e-09 -3.67757e-09 2.3565e-09) (-1.23246e-09 -1.4631e-09 4.91359e-10) (-7.08918e-10 -3.00527e-10 -5.34274e-10) (-1.30058e-09 -2.13034e-10 -2.30345e-09) (-1.89484e-09 -6.70121e-10 -3.08387e-09) (-1.7704e-09 -6.01475e-10 -1.90106e-09) (-5.75524e-10 -3.97712e-11 -4.44426e-10) (-2.32735e-11 4.99229e-11 -1.55994e-11) (2.77751e-10 4.77953e-10 1.73776e-10) (1.01856e-09 1.49402e-09 6.86259e-10) (9.31192e-10 1.71226e-09 8.50924e-10) (1.77591e-10 7.0083e-10 5.07885e-10) (-9.30795e-11 7.24112e-11 1.75498e-10) (-2.74361e-10 -2.33158e-10 1.46457e-10) (-4.80129e-10 -1.08382e-09 -1.33716e-10) (-3.58217e-10 -1.89152e-09 -9.26385e-10) (-2.09006e-10 -1.10923e-09 -1.16878e-09) (-1.15133e-10 -1.25178e-10 -7.35456e-10) (1.1209e-11 3.14614e-10 -5.09686e-10) (2.15063e-10 6.5799e-10 -3.45317e-10) (3.50099e-10 7.70358e-10 -4.52164e-11) (3.14686e-10 5.78837e-10 2.33431e-10) (3.1787e-10 3.90306e-10 4.28683e-10) (4.23378e-10 2.47593e-10 5.7109e-10) (4.2609e-10 8.19388e-11 4.31529e-10) (2.50878e-10 -2.25993e-11 1.2945e-10) (1.48084e-10 -4.97623e-11 -2.3828e-11) (1.31362e-10 -5.64262e-11 -1.12792e-10) (6.65967e-11 -1.54163e-11 -9.06619e-11) (8.84307e-12 2.90848e-12 -1.23377e-11) (2.49502e-12 2.786e-13 4.59151e-12) (6.6547e-11 -5.42985e-11 1.66112e-10) (3.36218e-10 -2.4178e-10 5.82662e-10) (2.87803e-10 -1.21667e-10 3.66608e-10) (4.49515e-11 4.72688e-12 1.34858e-11) (4.03924e-11 6.79471e-11 -5.46059e-11) (7.95979e-12 1.61764e-10 -9.92945e-11) (-2.46561e-11 5.37862e-11 -6.80255e-12) (-1.06773e-10 -5.14816e-11 1.11354e-10) (-9.05214e-10 -1.02396e-09 9.26031e-10) (-2.12811e-09 -2.04051e-09 1.25299e-09) (-1.58702e-09 -1.1085e-09 1.72462e-11) (-8.44805e-10 -4.81787e-10 -8.67901e-10) (-7.48715e-10 -4.72899e-10 -1.53832e-09) (-1.00195e-09 -4.6471e-10 -1.11563e-09) (-1.31448e-09 -3.20848e-10 -6.19201e-10) (-7.89194e-10 1.61117e-11 -2.49347e-10) (-1.49893e-10 1.26281e-10 -5.6977e-11) (4.40983e-11 3.72629e-10 1.703e-11) (4.29145e-10 1.12953e-09 2.80705e-10) (5.0614e-10 1.34441e-09 5.21846e-10) (1.72182e-10 6.33976e-10 4.05119e-10) (3.52825e-12 6.16953e-11 1.30415e-10) (-3.9461e-12 -1.39228e-10 7.01333e-11) (8.13285e-11 -1.33732e-09 -2.62384e-10) (-1.52191e-10 -2.53271e-09 -1.43769e-09) (-8.94994e-10 -1.48932e-09 -1.97656e-09) (-9.94784e-10 -1.75379e-10 -1.66617e-09) (-3.08398e-10 3.11899e-10 -6.89042e-10) (4.39759e-11 3.12341e-10 -1.68049e-10) (2.7184e-10 5.88786e-10 7.7083e-11) (4.35922e-10 8.85145e-10 4.36271e-10) (3.88662e-10 7.46818e-10 6.28859e-10) (2.93967e-10 3.57523e-10 4.95578e-10) (2.01172e-10 8.3136e-11 2.24714e-10) (1.24109e-10 -9.2482e-12 4.09747e-11) (1.37291e-10 -4.32465e-11 -5.98748e-11) (1.48076e-10 -5.60707e-11 -1.36002e-10) (7.10188e-11 -1.9279e-11 -4.86797e-11) (5.27937e-11 -6.41184e-12 2.72748e-11) (2.44888e-10 -5.31315e-11 3.90685e-10) (6.21831e-10 -2.65397e-10 1.18866e-09) (6.85889e-10 -3.66731e-10 1.21865e-09) (2.19801e-10 -2.24602e-10 2.30809e-10) (2.47859e-11 -1.98448e-11 -2.43616e-12) (1.6512e-11 8.34375e-12 -1.73525e-11) (2.56365e-11 3.34197e-11 -1.2002e-11) (1.65056e-11 2.02716e-11 1.81888e-11) (-1.72486e-11 -2.46023e-11 1.35712e-10) (-3.96231e-10 -3.4118e-10 6.04571e-10) (-9.707e-10 -6.45499e-10 6.53899e-10) (-7.03829e-10 -4.41731e-10 -8.38259e-11) (-5.77357e-10 -4.9605e-10 -8.83012e-10) (-7.01665e-10 -6.01064e-10 -1.28448e-09) (-1.31299e-09 -5.14429e-10 -7.43123e-10) (-2.55925e-09 -3.81378e-10 -4.10747e-10) (-1.90941e-09 8.23961e-11 -4.49541e-10) (-5.19493e-10 2.78154e-10 -3.1998e-10) (-4.92721e-11 3.84748e-10 -1.25516e-10) (2.96271e-10 9.0302e-10 1.94026e-10) (5.80067e-10 1.18127e-09 6.86414e-10) (3.5295e-10 5.17994e-10 5.41155e-10) (1.32771e-10 2.78401e-12 1.8291e-10) (2.75748e-10 -4.70728e-10 8.25515e-11) (3.93637e-10 -1.83522e-09 -6.74698e-10) (-9.63335e-10 -2.1715e-09 -2.06121e-09) (-3.05269e-09 -1.29604e-09 -3.54664e-09) (-1.56905e-09 7.48653e-11 -1.99001e-09) (-4.00999e-11 1.40696e-10 -2.11219e-10) (2.70566e-10 3.68776e-10 5.29278e-11) (6.85815e-10 1.019e-09 5.44709e-10) (6.19562e-10 1.19342e-09 7.71555e-10) (4.01576e-10 7.91355e-10 5.93812e-10) (2.50764e-10 3.006e-10 2.95534e-10) (1.52482e-10 5.77186e-11 8.12524e-11) (1.35249e-10 -1.08077e-11 -2.59312e-11) (1.61813e-10 -4.68045e-11 -1.60338e-10) (9.4339e-11 -3.23808e-11 -1.78789e-10) (1.44619e-11 -2.21153e-12 -2.00032e-11) (5.83909e-11 -6.4548e-12 8.19981e-11) (5.98075e-10 -1.91526e-10 1.14145e-09) (1.2956e-09 -6.90116e-10 2.36768e-09) (9.04884e-10 -7.06081e-10 1.44511e-09) (2.81887e-10 -6.11353e-10 2.20191e-10) (5.27871e-11 -1.37186e-10 -3.91811e-11) (1.20275e-11 -5.38514e-12 -1.49734e-11) (2.0598e-11 2.30986e-11 6.10725e-12) (6.57101e-11 9.18352e-11 1.55377e-10) (7.06943e-11 9.68291e-11 5.70996e-10) (-6.28313e-11 -1.33782e-11 7.34577e-10) (-9.42618e-11 -4.00354e-11 1.87408e-10) (-8.27714e-11 -5.45402e-11 -7.94736e-11) (-4.5309e-10 -4.8183e-10 -1.30412e-09) (-1.21385e-09 -8.2801e-10 -1.78788e-09) (-2.63633e-09 -7.44234e-10 -8.94853e-10) (-4.0001e-09 -3.64973e-10 -7.70191e-11) (-1.84646e-09 8.56249e-11 -2.02882e-10) (-2.62501e-10 1.22929e-10 -1.38253e-10) (-9.14058e-12 1.49608e-10 -3.1716e-11) (1.8232e-10 4.90288e-10 1.99531e-10) (4.13377e-10 6.65855e-10 5.78993e-10) (3.84278e-10 2.57806e-10 4.70338e-10) (3.37226e-10 -1.12714e-10 1.85878e-10) (4.67637e-10 -6.11242e-10 -1.98799e-10) (-3.71898e-10 -1.21405e-09 -1.43479e-09) (-5.52382e-09 -1.91829e-09 -5.63421e-09) (-6.50128e-09 -1.08785e-09 -5.79696e-09) (-5.85149e-10 -1.70003e-10 -7.81739e-10) (1.1113e-10 1.71684e-11 9.23423e-12) (1.4268e-09 6.96238e-10 9.22232e-10) (1.83488e-09 1.67213e-09 1.70145e-09) (9.10046e-10 1.54197e-09 1.17436e-09) (2.84518e-10 7.88243e-10 4.72342e-10) (9.44596e-11 2.04629e-10 9.34438e-11) (4.57117e-11 3.06502e-11 -1.247e-11) (1.16638e-10 -5.11676e-12 -1.64373e-10) (1.76489e-10 -5.00809e-11 -5.20906e-10) (7.04724e-11 -2.03689e-12 -4.38413e-10) (7.02563e-12 6.72227e-12 -3.07353e-11) (8.23989e-11 -4.74486e-12 1.5165e-10) (9.32667e-10 -4.44497e-10 1.88703e-09) (1.72337e-09 -1.42377e-09 3.16575e-09) (1.03785e-09 -1.39554e-09 1.56343e-09) (-1.29535e-10 -8.93425e-10 3.36901e-10) (-2.14826e-10 -2.99584e-10 2.85898e-11) (-5.58584e-11 -2.85436e-11 9.69503e-12) (-5.75454e-12 1.76058e-11 4.13024e-11) (1.29626e-10 1.25827e-10 3.60187e-10) (3.46619e-10 1.71674e-10 6.91062e-10) (2.6559e-10 1.18299e-10 3.21208e-10) (1.27421e-10 6.74776e-11 -2.66691e-11) (3.43608e-10 1.21568e-10 -8.87271e-10) (-8.40819e-11 -2.50634e-10 -2.43027e-09) (-1.6038e-09 -6.01383e-10 -1.80206e-09) (-4.1129e-09 -7.17753e-10 -6.02758e-10) (-3.39901e-09 -2.55682e-10 3.95765e-10) (-6.21288e-10 2.49646e-11 1.11028e-10) (-1.98349e-11 1.56517e-11 1.15444e-11) (2.3923e-11 6.47224e-11 5.43881e-11) (1.16312e-10 2.15985e-10 2.12802e-10) (2.04555e-10 2.31592e-10 2.8653e-10) (2.30167e-10 5.61179e-11 1.44048e-10) (2.51653e-10 -9.66727e-11 -6.05849e-11) (2.38417e-11 -2.70983e-10 -7.13461e-10) (-3.95316e-09 -4.26999e-10 -4.85307e-09) (-9.17327e-09 -7.07391e-10 -7.61523e-09) (-2.30043e-09 -9.83694e-10 -1.91964e-09) (3.31588e-11 -2.19464e-10 -3.8684e-11) (8.70891e-10 -2.23521e-10 4.35058e-10) (2.11724e-09 6.38059e-10 1.24441e-09) (2.07164e-09 1.66665e-09 1.51265e-09) (9.67305e-10 1.53923e-09 1.0087e-09) (2.24827e-10 7.27438e-10 3.64026e-10) (2.59644e-11 1.49752e-10 3.28991e-11) (5.53194e-12 2.63672e-11 -3.84461e-11) (8.86125e-12 7.15278e-13 -4.29119e-10) (-8.8458e-12 -2.56688e-11 -1.20922e-09) (4.84218e-12 8.75393e-11 -9.21442e-10) (2.34318e-11 3.18976e-11 -7.52133e-11) (1.72239e-10 1.33758e-12 2.17045e-10) (1.32741e-09 -7.07513e-10 2.30864e-09) (1.87508e-09 -2.06224e-09 3.47682e-09) (6.68054e-10 -1.84593e-09 1.61155e-09) (-1.22441e-10 -5.77615e-10 1.54842e-10) (-1.11526e-09 -6.47344e-10 4.24057e-10) (-2.80384e-09 -7.04502e-10 1.5939e-09) (-1.76551e-09 -2.70071e-10 1.69259e-09) (-2.33539e-10 5.20968e-12 6.29898e-10) (1.19271e-10 6.27917e-11 1.48038e-10) (6.90459e-10 3.51303e-10 -1.45048e-10) (2.42209e-09 1.34148e-09 -1.98005e-09) (2.835e-09 1.5724e-09 -4.31159e-09) (1.37558e-10 3.49192e-10 -2.39132e-09) (-1.73405e-09 -2.03671e-10 -9.46488e-10) (-3.8451e-09 -6.47242e-10 2.03953e-10) (-1.38618e-09 -2.75865e-10 4.23798e-10) (-5.69943e-11 -1.88349e-11 6.92486e-11) (4.23199e-11 8.13995e-12 8.83566e-11) (8.75951e-11 5.81061e-11 1.865e-10) (7.19727e-11 9.19368e-11 1.88894e-10) (5.5886e-11 4.82576e-11 6.73677e-11) (3.78529e-11 8.88099e-12 -1.40635e-11) (-1.40588e-11 3.01369e-11 -3.87724e-10) (-2.31098e-09 6.69309e-10 -3.40103e-09) (-6.36799e-09 9.44642e-10 -6.05798e-09) (-2.0253e-09 -5.34451e-10 -1.64687e-09) (6.82591e-12 -4.86374e-10 9.27181e-13) (1.15651e-09 -1.16282e-09 7.41903e-10) (1.35671e-09 -4.21928e-10 7.23253e-10) (9.03664e-10 3.28194e-10 4.06525e-10) (7.99293e-10 9.23477e-10 3.99549e-10) (5.19473e-10 1.05598e-09 3.83153e-10) (1.63055e-10 5.56282e-10 1.8895e-10) (1.04874e-11 1.24226e-10 9.86333e-12) (-2.17788e-11 3.78124e-11 -6.12292e-11) (-1.63654e-10 1.90165e-11 -5.41259e-10) (-3.13491e-10 1.56112e-11 -1.45811e-09) (-1.00516e-10 1.63185e-10 -1.17607e-09) (5.91775e-11 7.20031e-11 -1.4514e-10) (2.49994e-10 2.07093e-11 2.01543e-10) (1.35852e-09 -7.08167e-10 1.96118e-09) (1.66508e-09 -1.97044e-09 2.56726e-09) (6.17985e-10 -1.49122e-09 8.9468e-10) (6.72847e-11 -1.93071e-10 -4.55878e-11) (-1.95807e-09 -2.26284e-10 9.10237e-10) (-1.19714e-08 -1.29226e-09 7.32231e-09) (-7.94778e-09 -1.76054e-09 5.4472e-09) (-3.60196e-10 -1.53227e-10 3.11758e-10) (2.28925e-10 7.44989e-11 -1.08062e-10) (2.41843e-09 1.31388e-09 -1.73237e-09) (3.94284e-09 2.83485e-09 -3.87434e-09) (1.66649e-09 1.83941e-09 -2.87828e-09) (-2.81634e-10 3.00192e-10 -5.89667e-10) (-2.10845e-09 -9.25251e-11 -8.69497e-11) (-2.77119e-09 -5.81659e-10 6.79989e-10) (-4.22205e-10 -1.93503e-10 2.30304e-10) (3.0153e-11 -3.51638e-11 5.35002e-11) (2.38309e-10 -3.06415e-11 1.65634e-10) (1.78824e-10 2.5424e-11 1.8198e-10) (3.80729e-11 2.92871e-11 7.48719e-11) (-8.37238e-13 5.78778e-12 2.38529e-12) (-1.12394e-10 6.895e-11 -1.43296e-10) (-1.56888e-09 7.6353e-10 -1.77418e-09) (-3.71902e-09 1.45098e-09 -3.84301e-09) (-1.03247e-09 3.75367e-11 -1.06967e-09) (1.26727e-10 -3.41461e-10 3.21269e-11) (3.02656e-09 -2.68502e-09 1.90261e-09) (3.63365e-09 -2.04126e-09 2.1003e-09) (8.34728e-10 -1.48107e-10 3.78685e-10) (9.27775e-11 1.20997e-10 1.4171e-11) (2.18938e-11 4.88263e-10 -1.00747e-11) (3.72288e-12 6.9866e-10 8.67287e-11) (2.32861e-11 4.34655e-10 9.76702e-11) (-1.00204e-12 1.19666e-10 5.20999e-12) (-2.57405e-11 3.69752e-11 -4.86461e-11) (-1.78943e-10 2.04865e-11 -3.71346e-10) (-3.71763e-10 1.73515e-11 -1.03757e-09) (-1.75426e-10 1.68641e-10 -1.01723e-09) (5.78626e-11 1.07323e-10 -2.02301e-10) (1.63156e-10 3.2997e-11 9.60571e-11) (1.02291e-09 -6.05673e-10 1.19916e-09) (2.12623e-09 -2.35827e-09 1.57914e-09) (1.77988e-09 -2.12889e-09 9.78249e-11) (-1.16627e-10 -4.91295e-11 -1.03221e-10) (-3.09107e-09 1.05289e-09 1.5111e-09) (-9.54413e-09 1.33484e-10 6.94798e-09) (-3.54789e-09 -1.59159e-09 2.50753e-09) (-3.61952e-11 -1.28443e-10 -6.02425e-12) (7.63227e-10 2.1751e-10 -7.42336e-10) (2.93328e-09 2.17708e-09 -2.80351e-09) (2.49641e-09 2.68839e-09 -2.76404e-09) (4.04693e-10 1.01188e-09 -8.53088e-10) (-2.05391e-10 1.70287e-10 -6.8099e-11) (-1.31979e-09 -5.5613e-11 3.80975e-10) (-1.25817e-09 -3.96979e-10 5.59037e-10) (-1.20375e-10 -1.31256e-10 1.01464e-10) (8.90591e-11 -6.90613e-11 2.87361e-11) (3.8918e-10 -6.64585e-11 6.23432e-11) (2.76101e-10 2.45961e-11 9.33693e-11) (2.86069e-11 2.2015e-11 2.84269e-11) (-6.35796e-11 4.7774e-11 9.88619e-14) (-1.03778e-09 4.66513e-10 -4.66162e-10) (-2.66222e-09 1.17351e-09 -1.82847e-09) (-8.67569e-10 3.07699e-10 -8.70355e-10) (9.71249e-11 -1.12595e-10 -9.16557e-12) (4.67261e-09 -3.20282e-09 2.28566e-09) (9.72453e-09 -5.27394e-09 4.78231e-09) (3.53661e-09 -1.30588e-09 1.61173e-09) (1.23709e-10 3.92056e-11 5.06106e-11) (-1.57808e-10 3.20619e-10 -8.0256e-11) (-5.23411e-10 7.9744e-10 -1.8897e-10) (-2.63288e-10 6.07395e-10 -5.54129e-12) (-3.64969e-11 3.00714e-10 5.76169e-11) (3.41724e-12 9.01345e-11 1.09127e-11) (-6.84053e-12 1.67128e-11 -1.48458e-11) (-7.77243e-11 3.55724e-12 -1.43504e-10) (-2.47264e-10 2.05423e-13 -5.4759e-10) (-2.08003e-10 1.56592e-10 -7.41048e-10) (2.65601e-12 1.40009e-10 -2.21757e-10) (5.94014e-11 2.0325e-11 2.76124e-11) (9.08702e-10 -7.37285e-10 7.53377e-10) (2.35737e-09 -3.51627e-09 7.55513e-10) (7.79149e-10 -2.06611e-09 -6.62659e-10) (-2.81966e-09 1.89143e-10 -7.46154e-10) (-2.96586e-09 1.86187e-09 1.89896e-09) (-1.89122e-09 1.67261e-10 2.61628e-09) (-3.48682e-10 -7.69465e-10 5.51436e-10) (6.72433e-11 -3.60885e-10 -1.55436e-10) (4.77771e-10 1.39021e-10 -6.44563e-10) (2.06537e-09 1.92303e-09 -1.99127e-09) (2.31237e-09 2.62817e-09 -1.90099e-09) (6.54957e-10 9.6278e-10 -4.56062e-10) (6.67929e-12 6.85739e-11 1.41338e-11) (-1.19262e-10 -8.9964e-12 1.38475e-10) (-1.65183e-10 -1.33838e-10 2.21226e-10) (-2.06973e-12 -9.79652e-11 7.87198e-11) (9.49109e-11 -7.88972e-11 6.74058e-12) (2.56109e-10 -5.97604e-11 -5.85891e-11) (2.11473e-10 2.4204e-11 -3.10392e-11) (2.05686e-11 2.80287e-11 8.38987e-12) (-2.14047e-10 1.74115e-10 3.67932e-11) (-1.476e-09 7.49575e-10 -2.12837e-10) (-1.0305e-09 4.66506e-10 -4.08891e-10) (3.34674e-12 -2.95264e-12 -3.1481e-12) (3.11407e-09 -1.72647e-09 1.16438e-09) (1.18734e-08 -6.36662e-09 4.66129e-09) (6.66021e-09 -3.36071e-09 2.38348e-09) (5.34016e-10 -1.59964e-10 1.48884e-10) (-1.63521e-11 7.39715e-11 -9.6894e-12) (-4.87823e-10 6.81759e-10 -1.25178e-10) (-6.0445e-10 8.42114e-10 -8.98862e-11) (-1.79878e-10 4.2552e-10 2.9838e-11) (8.86473e-12 1.75744e-10 4.41668e-11) (2.50888e-11 6.01288e-11 1.4398e-11) (1.66102e-12 5.40933e-12 -2.45308e-12) (-2.01286e-11 -1.37789e-12 -3.78819e-11) (-1.39545e-10 2.071e-12 -2.52032e-10) (-2.07478e-10 1.49054e-10 -4.87644e-10) (-3.96833e-11 1.53454e-10 -1.99171e-10) (4.4144e-11 1.01166e-11 1.2108e-11) (8.12294e-10 -8.69196e-10 4.46626e-10) (4.6895e-10 -2.99664e-09 -1.7821e-10) (-2.31923e-09 -2.81382e-09 -1.80407e-09) (-1.08456e-08 4.8808e-10 -1.52842e-09) (-2.26641e-09 1.64432e-09 1.85598e-09) (-1.08162e-10 1.26978e-11 1.09295e-09) (1.15011e-11 -5.78999e-10 2.03773e-10) (-7.86934e-11 -3.896e-10 -2.62922e-10) (1.05624e-10 8.14521e-11 -3.99866e-10) (1.27797e-09 1.27133e-09 -1.12325e-09) (2.54827e-09 2.13182e-09 -1.10217e-09) (1.69582e-09 1.18575e-09 -2.40834e-10) (7.24693e-10 3.18273e-10 1.91209e-10) (5.06078e-10 1.89917e-11 3.60007e-10) (5.19548e-10 -1.71764e-10 5.04616e-10) (3.82819e-10 -2.18217e-10 3.70067e-10) (1.09263e-10 -7.82843e-11 5.22046e-11) (4.53183e-11 -2.24808e-11 -3.85268e-11) (4.34871e-11 1.64715e-11 -8.84339e-11) (-1.13645e-11 5.31555e-11 -3.30347e-11) (-3.06386e-10 3.02165e-10 4.05029e-11) (-7.52122e-10 5.33479e-10 1.38351e-10) (-7.03962e-11 5.56959e-11 3.50058e-11) (7.01733e-10 -3.08465e-10 3.58634e-10) (6.33592e-09 -3.41049e-09 2.41154e-09) (5.19192e-09 -3.3291e-09 1.61962e-09) (5.91316e-10 -5.22105e-10 5.46405e-11) (-1.03472e-12 -3.27525e-12 -8.86886e-12) (-1.04047e-10 1.35784e-10 -4.92588e-11) (-2.54375e-10 5.02035e-10 2.88365e-12) (-1.84816e-10 5.47864e-10 1.06597e-10) (-1.77256e-11 2.91961e-10 1.00562e-10) (5.83949e-11 1.33661e-10 5.81829e-11) (5.61533e-11 5.58206e-11 2.0345e-11) (9.75876e-12 6.66096e-12 -1.35679e-12) (-3.67776e-12 -5.11092e-13 -1.02522e-11) (-8.4858e-11 8.81191e-12 -1.18579e-10) (-1.68738e-10 1.25929e-10 -2.79221e-10) (-2.26433e-11 1.11181e-10 -1.14518e-10) (8.65164e-11 6.77633e-12 1.27395e-11) (4.92993e-10 -6.45474e-10 1.59607e-10) (-1.32419e-09 -3.08355e-09 -9.68833e-10) (-1.37449e-08 -6.7317e-09 -6.03092e-09) (-2.14339e-08 -9.31624e-11 -2.18959e-09) (-2.23385e-09 1.18461e-09 1.81628e-09) (1.84515e-11 -2.68315e-11 6.52243e-10) (-1.10447e-10 -3.39543e-10 3.71944e-11) (-4.02138e-10 -4.38457e-10 -4.1927e-10) (6.79035e-13 2.32125e-11 -2.8732e-10) (8.15853e-10 6.63516e-10 -6.11138e-10) (2.12409e-09 1.44221e-09 -5.69372e-10) (2.48366e-09 1.22839e-09 9.73379e-12) (2.92765e-09 6.81729e-10 7.15322e-10) (4.38678e-09 9.84442e-11 1.78471e-09) (4.53791e-09 -4.40753e-10 2.34882e-09) (1.82037e-09 -3.70038e-10 1.2092e-09) (1.35149e-10 -5.96991e-11 1.08622e-10) (-3.70448e-12 -3.85709e-12 -1.1221e-11) (-8.19582e-11 3.65502e-11 -1.93789e-10) (-1.29993e-10 1.42581e-10 -1.83678e-10) (-2.12253e-10 2.59548e-10 -2.04417e-11) (-1.66098e-10 2.32769e-10 1.50383e-10) (9.44568e-11 3.25313e-11 2.04549e-10) (1.63465e-09 -8.12895e-10 1.07093e-09) (2.29531e-09 -1.69117e-09 9.69294e-10) (5.00958e-10 -6.38551e-10 2.08139e-11) (5.69461e-12 -1.29686e-10 -8.30961e-11) (-5.85606e-11 -1.28136e-11 -5.37377e-11) (-8.88934e-11 8.83415e-11 -2.18119e-11) (-8.68765e-11 3.11448e-10 6.58914e-11) (-1.41672e-12 4.11162e-10 1.72154e-10) (4.79411e-11 2.38939e-10 1.41035e-10) (5.28381e-11 9.2565e-11 6.19822e-11) (5.25906e-11 3.87778e-11 2.01757e-11) (3.53939e-11 1.17306e-11 -1.58865e-12) (5.10861e-12 3.61049e-13 -6.62962e-12) (-2.53097e-11 7.17565e-12 -4.51502e-11) (-8.81513e-11 7.22165e-11 -1.24826e-10) (3.39636e-12 5.11914e-11 -4.08146e-11) (2.01864e-10 1.27082e-12 2.96904e-11) (3.24203e-10 -3.96936e-10 2.4865e-11) (-2.96925e-09 -3.34208e-09 -1.98338e-09) (-2.95741e-08 -1.01861e-08 -1.16733e-08) (-3.06676e-08 -1.16764e-09 -3.40831e-09) (-3.04031e-09 8.48074e-10 1.99638e-09) (-1.48178e-10 -1.95343e-11 4.99065e-10) (-2.85721e-10 -2.84358e-10 -8.43064e-12) (-6.60722e-10 -5.11e-10 -5.15442e-10) (-4.18304e-11 -3.8505e-11 -2.67392e-10) (4.19465e-10 3.16685e-10 -3.93144e-10) (1.37478e-09 9.28953e-10 -3.8961e-10) (2.25537e-09 9.78923e-10 9.08508e-11) (4.19554e-09 7.08003e-10 1.11023e-09) (7.96685e-09 1.48602e-11 3.18136e-09) (8.72317e-09 -5.71667e-10 4.18135e-09) (3.21837e-09 -3.1202e-10 1.9036e-09) (1.76362e-10 -2.48671e-11 1.44827e-10) (-1.21251e-11 1.40731e-12 -8.86217e-12) (-1.76691e-10 6.07472e-11 -2.11177e-10) (-1.71463e-10 1.45254e-10 -2.12447e-10) (-6.9959e-11 1.31597e-10 -2.49346e-11) (1.2109e-11 1.05168e-10 1.13331e-10) (3.22459e-10 -2.7544e-11 4.70622e-10) (6.52633e-10 -4.85531e-10 6.08509e-10) (2.76786e-10 -4.17115e-10 1.10477e-10) (7.58504e-11 -2.44176e-10 -1.00802e-10) (-1.52288e-11 -8.92272e-11 -8.37993e-11) (-3.4921e-11 -5.26694e-12 -2.08291e-11) (-5.94205e-11 5.56618e-11 6.75334e-12) (-3.72213e-11 1.84672e-10 6.50559e-11) (3.37572e-11 2.60687e-10 1.32406e-10) (2.4703e-11 1.52591e-10 1.04672e-10) (7.11442e-12 4.42653e-11 3.52937e-11) (1.51275e-11 1.22775e-11 8.35288e-12) (7.76108e-11 9.92485e-12 -2.25317e-12) (9.5966e-11 -6.01131e-13 -2.67588e-11) (1.68216e-11 3.9756e-12 -2.2191e-11) (-2.96383e-12 1.87689e-11 -2.98624e-11) (2.71919e-11 2.27923e-11 -1.09172e-11) (4.47382e-10 -1.24184e-11 9.6062e-11) (2.00853e-10 -1.98706e-10 -1.77095e-11) (-4.49943e-09 -3.13362e-09 -3.16399e-09) (-4.24112e-08 -1.12456e-08 -1.78313e-08) (-3.42409e-08 -1.55469e-09 -4.28426e-09) (-3.64984e-09 5.41515e-10 2.19858e-09) (-2.9331e-10 -5.15879e-12 5.73153e-10) (-2.73519e-10 -2.12656e-10 1.26807e-11) (-5.79645e-10 -4.75968e-10 -4.23439e-10) (-2.23123e-10 -1.31201e-10 -4.27569e-10) (5.41135e-11 1.40509e-10 -3.28583e-10) (5.24301e-10 4.58355e-10 -3.20259e-10) (1.62169e-09 6.85966e-10 -3.46961e-13) (4.261e-09 5.85358e-10 1.11697e-09) (8.42596e-09 -7.84842e-11 3.39172e-09) (8.90261e-09 -4.38207e-10 4.26298e-09) (3.2095e-09 -1.04616e-10 1.82173e-09) (1.98072e-10 1.43427e-11 1.43707e-10) (-5.60084e-12 3.67727e-12 -3.31575e-12) (-9.72941e-11 4.54611e-11 -9.93538e-11) (-7.06437e-11 7.21613e-11 -8.69437e-11) (-8.21691e-12 5.09156e-11 -2.17126e-12) (4.99366e-11 6.29096e-11 1.05296e-10) (1.46321e-10 -4.59734e-11 2.70801e-10) (9.91537e-11 -1.70471e-10 1.40983e-10) (8.14803e-11 -2.13511e-10 -2.20151e-11) (7.93687e-11 -1.69023e-10 -1.04022e-10) (1.1005e-11 -2.48433e-11 -2.28128e-11) (-1.10579e-12 6.21547e-13 1.12584e-13) (-2.02396e-11 3.35087e-11 1.76482e-11) (-1.87267e-11 9.33526e-11 4.03889e-11) (-5.06921e-12 1.18877e-10 5.28986e-11) (-2.02731e-11 7.68266e-11 4.00076e-11) (-1.34978e-11 2.21176e-11 1.24257e-11) (2.73245e-12 1.61541e-12 8.04053e-13) (1.55397e-10 -1.00553e-11 -9.43667e-12) (4.03338e-10 -3.42731e-11 -4.1999e-11) (2.00911e-10 7.24628e-13 -3.97254e-11) (6.93811e-11 1.75808e-11 -1.48435e-11) (2.12133e-10 4.1918e-11 3.8576e-11) (5.33412e-10 -3.33849e-12 1.60925e-10) (1.61921e-11 -4.3519e-11 -3.20091e-11) (-7.7652e-09 -3.13789e-09 -5.82163e-09) (-5.00343e-08 -9.88901e-09 -2.37102e-08) (-2.90266e-08 -1.11755e-09 -2.85256e-09) (-2.96177e-09 2.56014e-10 2.1521e-09) (-2.16368e-10 5.27146e-12 6.5524e-10) (-6.51213e-11 -8.36901e-11 3.93342e-11) (-2.59241e-10 -2.83256e-10 -2.01592e-10) (-5.38526e-10 -2.24403e-10 -6.33562e-10) (-3.48238e-10 1.25423e-10 -6.28355e-10) (5.60769e-11 1.89483e-10 -2.4588e-10) (6.88702e-10 3.15525e-10 -8.66776e-11) (3.0351e-09 3.67719e-10 7.01887e-10) (6.1314e-09 -6.79072e-11 2.33886e-09) (5.86855e-09 -1.81617e-10 2.74613e-09) (2.02881e-09 4.55234e-11 1.11128e-09) (1.63147e-10 3.32319e-11 9.79317e-11) (7.86441e-15 2.89255e-12 -9.73707e-13) (-1.46168e-11 1.64743e-11 -2.07446e-11) (-8.66824e-12 2.13166e-11 -1.32989e-11) (2.37387e-12 2.5425e-11 9.06776e-12) (1.69537e-11 2.40112e-11 5.64461e-11) (1.73022e-11 -2.62702e-11 6.39815e-11) (3.29447e-11 -1.03389e-10 2.60654e-11) (9.53029e-11 -1.82683e-10 -5.87195e-11) (7.87566e-11 -8.47027e-11 -5.31504e-11) (2.21225e-11 -5.82212e-12 -3.3471e-12) (1.30441e-11 1.01515e-11 9.7088e-12) (7.44155e-12 3.05245e-11 2.17863e-11) (-4.22706e-12 4.6313e-11 2.12214e-11) (-1.94032e-11 5.33728e-11 1.38152e-11) (-3.08237e-11 4.1674e-11 3.07662e-12) (-6.72592e-12 7.49249e-12 -2.6258e-12) (1.43412e-11 -1.31479e-12 -5.94992e-12) (2.22699e-10 -4.57263e-11 -2.08105e-11) (3.54492e-10 -6.01899e-11 1.99449e-11) (2.39185e-10 -1.51274e-11 5.08814e-11) (2.45755e-10 2.08431e-11 9.03461e-11) (3.61692e-10 5.21988e-11 1.56897e-10) (8.80707e-11 1.32141e-11 2.30482e-11) (-1.71047e-10 -7.48561e-11 -2.89354e-10) (-1.04035e-08 -2.75215e-09 -9.42092e-09) (-4.53328e-08 -6.36175e-09 -2.34591e-08) (-1.79637e-08 -5.77122e-10 -2.80834e-10) (-1.46519e-09 5.24964e-11 1.77902e-09) (5.43508e-11 -4.95116e-12 8.38769e-10) (1.63314e-11 -5.85673e-11 6.96471e-11) (-7.07356e-11 -1.15828e-10 -5.86103e-11) (-4.3534e-10 -1.58497e-10 -4.93116e-10) (-5.74597e-10 9.30602e-11 -7.74439e-10) (-8.46568e-11 1.17503e-10 -2.49861e-10) (1.60319e-10 8.57239e-11 -5.60649e-11) (1.25397e-09 1.44153e-10 2.43557e-10) (2.68708e-09 -4.70758e-12 9.30627e-10) (2.26891e-09 -1.26253e-11 1.01568e-09) (7.72351e-10 6.58325e-11 3.93452e-10) (1.05656e-10 2.86805e-11 4.24376e-11) (1.1551e-11 8.26264e-12 -1.98817e-12) (6.27765e-12 8.40842e-12 -4.23416e-12) (5.12813e-12 1.15751e-11 1.10981e-12) (3.01545e-12 1.67376e-11 1.34513e-11) (-5.66996e-13 4.38465e-12 1.69656e-11) (3.07866e-12 -1.81587e-11 1.29176e-11) (3.71785e-11 -9.96004e-11 -9.83446e-12) (5.05035e-11 -8.97022e-11 -3.62038e-11) (3.43272e-11 -2.07139e-11 -9.02717e-12) (6.75627e-11 8.77259e-12 1.63499e-11) (1.07594e-10 4.90616e-11 4.67289e-11) (5.68228e-11 4.72934e-11 3.1361e-11) (7.85849e-12 2.38529e-11 8.20852e-12) (-7.84124e-12 2.02798e-11 -1.54435e-12) (-9.21073e-12 1.4826e-11 -1.17005e-11) (6.16408e-12 3.66708e-12 -1.82762e-11) (4.03509e-11 -1.32407e-11 -2.7311e-11) (3.2866e-11 -1.7618e-11 2.91471e-12) (3.08949e-11 -1.90709e-11 4.40815e-11) (6.93858e-11 -1.42005e-11 1.18062e-10) (1.3205e-10 1.42442e-11 1.40899e-10) (6.97988e-11 2.53841e-11 4.11516e-11) (6.50393e-12 8.86269e-12 -2.18829e-11) (-4.34774e-10 -1.18985e-10 -1.14918e-09) (-9.10892e-09 -1.75305e-09 -1.02204e-08) (-3.32822e-08 -2.82651e-09 -1.64152e-08) (-7.24637e-09 -2.71102e-10 1.05955e-09) (-4.20162e-10 -5.8704e-11 1.605e-09) (4.65245e-10 -3.66471e-11 1.18737e-09) (1.10676e-10 -8.65956e-11 1.59232e-10) (-2.03908e-11 -4.08439e-11 -1.38115e-11) (-2.82443e-10 -7.81963e-11 -3.20881e-10) (-3.30687e-10 5.54756e-11 -5.63956e-10) (-4.45826e-11 5.82735e-11 -1.87906e-10) (4.08723e-11 2.21266e-11 -2.48685e-11) (3.08403e-10 3.77935e-11 5.04284e-11) (5.93774e-10 1.25834e-11 1.95801e-10) (4.44075e-10 1.55822e-11 1.91141e-10) (1.82747e-10 2.92266e-11 7.55375e-11) (7.41867e-11 1.95424e-11 1.00389e-11) (6.40787e-11 2.07585e-11 -6.94898e-12) (6.8728e-11 2.80468e-11 2.07544e-13) (4.14586e-11 2.64605e-11 1.59169e-11) (1.02157e-11 1.16385e-11 1.32082e-11) (1.23074e-12 -5.97705e-13 3.50153e-12) (5.25893e-12 -2.23819e-11 1.87492e-12) (4.16146e-12 -5.358e-11 -1.41351e-11) (4.77364e-12 -1.78766e-11 -6.15182e-12) (2.65122e-11 -4.84193e-12 5.36845e-12) (1.73634e-10 3.47529e-11 6.2226e-11) (2.59075e-10 8.48248e-11 8.64732e-11) (1.37609e-10 6.38687e-11 3.75286e-11) (2.87163e-11 2.31992e-11 2.64958e-12) (6.12555e-12 9.61192e-12 -6.8588e-12) (1.33025e-11 8.82627e-12 -3.02533e-11) (2.06538e-11 -5.24516e-12 -4.7944e-11) (-2.13884e-12 -4.70224e-12 -5.74308e-12) (-5.56906e-11 -2.3487e-11 4.37605e-11) (-1.17881e-10 -4.36953e-11 2.18226e-10) (-1.92473e-11 -1.61566e-11 1.87657e-10) (1.571e-11 7.17908e-12 4.15273e-11) (6.63613e-12 6.76556e-12 -4.40798e-12) (3.57307e-11 2.85216e-11 -2.45879e-10) (-3.71661e-10 -1.45925e-10 -2.05769e-09) (-7.18632e-09 -7.23995e-10 -8.14576e-09) (-2.08772e-08 -7.90918e-10 -8.2153e-09) (-1.74894e-09 -1.39682e-10 9.39866e-10) (2.23137e-10 -1.13988e-10 1.84457e-09) (7.39008e-10 -6.5771e-11 1.28231e-09) (1.25818e-10 -6.25924e-11 1.55658e-10) (-6.74993e-12 -1.08872e-11 -5.0311e-12) (-1.09513e-10 -1.89173e-11 -1.63408e-10) (-7.32465e-11 2.6613e-11 -2.78945e-10) (1.98214e-11 2.34206e-11 -1.20731e-10) (3.19325e-11 1.00322e-11 -2.25517e-11) (6.49392e-11 8.90043e-12 4.45184e-12) (9.34433e-11 6.41312e-12 2.75507e-11) (8.47551e-11 7.76906e-12 3.00246e-11) (7.55728e-11 1.31145e-11 1.80961e-11) (9.7061e-11 1.68998e-11 9.29818e-13) (1.59587e-10 3.00116e-11 -8.16406e-12) (2.02677e-10 4.85917e-11 1.20289e-11) (1.47966e-10 4.4895e-11 3.19576e-11) (5.33481e-11 1.32485e-11 1.73212e-11) (9.7651e-12 -4.3045e-12 2.85879e-12) (-9.02926e-14 -1.609e-11 -2.17878e-12) (-8.7685e-12 -2.05786e-11 -5.87024e-12) (1.47655e-12 -2.76764e-12 2.68622e-13) (8.18863e-11 1.90744e-12 3.28533e-11) (3.45948e-10 5.78467e-11 1.3202e-10) (4.03998e-10 9.17129e-11 1.21409e-10) (2.28014e-10 6.35007e-11 3.92207e-11) (9.01391e-11 2.94783e-11 -7.68539e-12) (5.05078e-11 1.42429e-11 -3.11429e-11) (3.31504e-11 1.88633e-12 -5.07401e-11) (-6.57667e-12 -5.38252e-12 -2.1751e-11) (-1.15854e-10 -2.43249e-11 1.5641e-11) (-3.76667e-10 -6.43578e-11 2.70909e-10) (-2.43073e-10 -5.19341e-11 3.42638e-10) (-2.77871e-11 -6.46213e-12 8.79599e-11) (7.73566e-13 7.13833e-13 5.90286e-13) (3.91559e-11 2.0814e-11 -8.26977e-11) (1.99396e-10 1.37976e-11 -6.78362e-10) (-4.31621e-10 -9.05473e-11 -2.29647e-09) (-5.36229e-09 -9.34291e-11 -4.93775e-09) (-9.75436e-09 -1.36138e-10 -2.50547e-09) (-2.18297e-10 -7.39672e-11 5.71996e-10) (7.32544e-10 -1.11701e-10 1.76566e-09) (8.09411e-10 -5.40911e-11 9.88455e-10) (1.77741e-10 -3.81747e-11 1.21209e-10) (1.07248e-11 -5.56922e-12 -5.79282e-12) (2.2717e-11 -1.36428e-12 -6.80461e-11) (1.04648e-10 1.49271e-11 -1.52639e-10) (1.79982e-10 1.79259e-11 -1.23864e-10) (2.00987e-10 1.66354e-11 -5.06922e-11) (2.29584e-10 1.63572e-11 7.30872e-13) (2.66338e-10 1.53178e-11 3.46515e-11) (3.06968e-10 1.82087e-11 5.17543e-11) (3.88199e-10 2.95822e-11 4.89552e-11) (5.55303e-10 4.19678e-11 2.25113e-11) (8.16163e-10 7.56272e-11 1.15912e-11) (1.02022e-09 1.1988e-10 4.90494e-11) (9.53939e-10 1.16024e-10 8.18935e-11) (6.16028e-10 3.51196e-11 6.01158e-11) (2.33396e-10 -3.33754e-11 1.86009e-11) (5.33445e-11 -2.83917e-11 -1.94233e-13) (3.18413e-11 -1.82551e-11 2.47569e-14) (1.46974e-10 -1.96894e-11 3.0377e-11) (6.2869e-10 1.51465e-11 1.84665e-10) (1.18131e-09 9.38917e-11 3.4765e-10) (1.21743e-09 1.27036e-10 2.7501e-10) (9.28027e-10 1.04242e-10 1.07327e-10) (6.75188e-10 6.89063e-11 -2.36457e-11) (4.85772e-10 3.12871e-11 -1.03691e-10) (1.97444e-10 -1.35183e-12 -7.3888e-11) (7.43507e-12 -1.84591e-12 -2.41352e-12) (-2.36512e-11 -9.07099e-12 3.24545e-11) (-7.46142e-11 -2.83991e-11 1.85675e-10) (6.24706e-12 -1.716e-11 1.43125e-10) (3.90571e-11 -1.4427e-12 3.22271e-11) (1.23802e-10 1.30129e-11 -3.7704e-11) (4.31009e-10 3.89795e-11 -3.43975e-10) (6.84525e-10 -7.0836e-12 -9.52675e-10) (3.21144e-11 6.92926e-12 -1.3367e-09) (-1.6787e-09 8.98604e-11 -1.58225e-09) (-1.83527e-09 -6.48202e-12 -2.19681e-10) (3.46786e-10 -9.01367e-11 7.84971e-10) (1.65155e-09 -1.37978e-10 1.99662e-09) (1.98711e-09 -7.50599e-11 1.41203e-09) (1.27571e-09 -7.4504e-11 4.41246e-10) (7.75934e-10 -3.46664e-11 9.37966e-12) (9.65827e-10 1.10853e-11 -1.87761e-10) (1.61467e-09 4.28891e-11 -3.01833e-10) (2.20975e-09 4.96837e-11 -2.11175e-10) (2.60447e-09 6.30619e-11 -1.45427e-11) (2.98177e-09 7.74559e-11 1.7139e-10) (3.39186e-09 7.78448e-11 3.39301e-10) (3.88872e-09 8.18745e-11 4.71161e-10) (4.67169e-09 1.15985e-10 5.18585e-10) (5.91944e-09 1.67134e-10 4.56546e-10) (7.65727e-09 2.89565e-10 4.26911e-10) (9.30443e-09 4.41365e-10 4.95851e-10) (9.72705e-09 4.43107e-10 5.43963e-10) (7.92288e-09 1.51648e-10 4.64438e-10) (4.4532e-09 -1.69403e-10 2.41655e-10) (1.97772e-09 -1.99133e-10 7.4617e-11) (1.46046e-09 -1.36809e-10 9.11405e-11) (2.38527e-09 -7.56775e-11 3.58328e-10) (4.41844e-09 2.89636e-11 9.49302e-10) (6.46281e-09 1.64706e-10 1.46881e-09) (7.40271e-09 2.51205e-10 1.40583e-09) (7.45162e-09 2.67867e-10 9.61837e-10) (7.07879e-09 2.26783e-10 4.2851e-10) (5.76441e-09 1.20661e-10 4.34535e-11) (3.11773e-09 3.65546e-12 5.71598e-11) (9.70745e-10 -3.17894e-11 2.11114e-10) (3.84098e-10 -3.31693e-11 2.99339e-10) (4.32443e-10 -4.03523e-11 4.42017e-10) (6.55885e-10 -3.1594e-11 3.77204e-10) (1.00008e-09 -5.99076e-12 1.36607e-10) (1.63341e-09 2.97057e-11 -2.84636e-10) (2.46091e-09 3.797e-11 -9.94281e-10) (2.1738e-09 -2.03981e-11 -1.59526e-09) (6.07825e-10 5.21625e-11 -1.10271e-09) (-1.4919e-10 4.10175e-11 -3.38785e-10) (-2.66866e-11 -6.58861e-13 1.04509e-11) (8.44117e-10 -8.97465e-11 9.66088e-10) (1.7503e-09 -1.27445e-10 1.76093e-09) (2.03747e-09 -7.02396e-11 1.3624e-09) (1.73832e-09 -3.56745e-11 5.85644e-10) (1.85125e-09 1.36099e-12 1.67981e-10) (2.88869e-09 4.23903e-11 -2.54974e-12) (4.42898e-09 4.61262e-11 3.91377e-11) (5.67724e-09 2.97176e-11 2.32516e-10) (6.67892e-09 3.9189e-11 4.55303e-10) (7.81166e-09 5.50388e-11 7.28286e-10) (9.06127e-09 4.56312e-11 1.11414e-09) (1.04622e-08 3.31516e-11 1.52203e-09) (1.24711e-08 6.79554e-11 1.75462e-09) (1.56324e-08 1.44226e-10 1.66879e-09) (2.02148e-08 2.98539e-10 1.39836e-09) (2.49746e-08 4.66351e-10 1.10507e-09) (2.61925e-08 4.03643e-10 9.69083e-10) (1.9736e-08 2.41178e-11 8.31938e-10) (9.27247e-09 -2.1377e-10 3.65314e-10) (3.69805e-09 -1.5195e-10 9.20803e-11) (3.03976e-09 -8.3323e-11 1.88415e-10) (5.16732e-09 -1.15662e-11 7.70788e-10) (9.15434e-09 7.42682e-11 1.92157e-09) (1.33489e-08 1.47445e-10 3.0106e-09) (1.60037e-08 1.73997e-10 3.14841e-09) (1.69688e-08 1.81949e-10 2.50656e-09) (1.58368e-08 1.32358e-10 1.60895e-09) (1.10974e-08 3.30336e-11 9.83433e-10) (4.67805e-09 -3.37769e-11 7.59381e-10) (1.34781e-09 -3.34717e-11 5.77685e-10) (6.6387e-10 -2.68057e-11 5.31834e-10) (7.39068e-10 -2.51535e-11 4.81668e-10) (1.06791e-09 -2.44539e-11 3.04222e-10) (1.55647e-09 -1.88429e-11 -6.77422e-13) (2.23754e-09 -2.15202e-11 -4.90304e-10) (2.4427e-09 -3.08304e-11 -1.10978e-09) (1.39173e-09 -2.33637e-11 -1.27825e-09) (2.3304e-10 3.54325e-11 -7.04199e-10) (-1.12993e-11 1.39088e-11 -1.03051e-10) (6.83593e-11 -1.03064e-12 4.78718e-11) (7.7997e-11 -4.24734e-12 4.93177e-11) (6.08989e-11 -5.5562e-12 9.93445e-11) (5.54267e-11 -2.13672e-12 8.08156e-11) (6.65414e-11 -2.87338e-13 4.0778e-11) (1.43415e-10 9.84499e-13 3.10646e-11) (3.19459e-10 1.50293e-12 4.08855e-11) (5.12832e-10 -4.72578e-13 6.25032e-11) (6.17448e-10 -3.41588e-12 7.29854e-11) (6.85097e-10 -4.20767e-12 7.9897e-11) (7.92532e-10 -4.8928e-12 1.10489e-10) (9.28788e-10 -7.58065e-12 1.76781e-10) (1.08583e-09 -1.01609e-11 2.51114e-10) (1.33422e-09 -8.5194e-12 2.85259e-10) (1.75982e-09 -4.14946e-12 2.32214e-10) (2.38974e-09 3.51877e-12 1.09522e-10) (2.91472e-09 8.14092e-12 6.75637e-12) (2.60408e-09 -3.59331e-12 9.51682e-12) (1.36104e-09 -1.21913e-11 2.04378e-11) (4.16691e-10 -5.89935e-12 -4.89541e-12) (1.83658e-10 -1.89542e-12 -9.71161e-12) (2.91219e-10 2.73479e-13 6.18996e-12) (6.68049e-10 5.09727e-12 8.62661e-11) (1.163e-09 7.39547e-12 2.35007e-10) (1.53837e-09 4.19535e-12 3.68038e-10) (1.63346e-09 -1.64603e-12 3.63823e-10) (1.48636e-09 -3.3559e-12 2.73543e-10) (1.07992e-09 -4.55564e-12 1.75288e-10) (4.92007e-10 -3.72534e-12 1.02478e-10) (1.18186e-10 -1.82177e-12 5.07389e-11) (2.63516e-11 -9.94603e-13 3.21243e-11) (2.14648e-11 -4.6658e-13 2.92669e-11) (4.21226e-11 -8.98213e-13 2.73304e-11) (7.48331e-11 -1.57357e-12 2.08906e-11) (1.03497e-10 -1.97729e-12 5.88204e-12) (1.2173e-10 -2.28022e-12 -1.96133e-11) (8.38825e-11 -1.88198e-12 -4.70057e-11) (2.63888e-11 -1.26401e-12 -7.05507e-11) (-9.37272e-12 1.49991e-12 -8.62188e-11) (1.2222e-11 1.24832e-12 -2.78912e-11) (6.54215e-11 2.8485e-13 -4.9375e-12) (3.51502e-11 -2.63857e-11 -6.6696e-11) (9.33104e-11 3.65948e-11 3.30214e-11) (7.03719e-10 3.59533e-10 6.78527e-10) (1.32453e-09 6.84673e-10 1.62599e-09) (8.3863e-10 4.2608e-10 1.26229e-09) (1.81722e-10 4.43211e-11 3.71337e-10) (1.23008e-11 -4.63641e-11 4.95326e-11) (-2.73427e-11 -2.35892e-10 -3.5699e-11) (-9.73473e-11 -4.96127e-10 -2.6334e-10) (-1.09256e-10 -2.84332e-10 -2.68758e-10) (-6.28305e-11 -2.68408e-11 -1.13231e-10) (-6.71544e-11 7.70646e-11 -8.33609e-11) (-7.24111e-11 1.43017e-10 -6.97279e-11) (-2.16633e-11 4.34628e-11 -2.42496e-11) (-1.39347e-12 -1.6709e-12 -5.00663e-12) (2.80368e-13 -4.01959e-11 -1.91107e-11) (-8.99525e-12 -4.31164e-11 -5.34436e-12) (-4.0889e-11 -3.47398e-11 4.07615e-11) (-2.0862e-10 -3.8653e-11 3.18504e-10) (-3.18972e-10 4.91801e-11 6.81836e-10) (-1.35391e-10 1.64576e-10 5.17866e-10) (2.00454e-11 1.63615e-10 1.78016e-10) (6.07589e-11 1.38111e-10 2.14073e-11) (4.60185e-11 9.34964e-11 -5.33233e-11) (4.39101e-12 3.30184e-11 -6.26476e-11) (-2.5772e-11 -2.97817e-12 -5.82254e-11) (-4.38602e-11 -3.22324e-11 -5.06837e-11) (-4.08207e-11 -5.29778e-11 -4.16033e-11) (-3.41276e-11 -6.61696e-11 -5.01527e-11) (-4.03167e-11 -6.27191e-11 -7.55754e-11) (-5.53377e-11 -2.67712e-11 -9.01169e-11) (-5.76031e-11 2.84015e-11 -7.7051e-11) (-4.78333e-11 8.77124e-11 -5.01669e-11) (-3.41077e-11 1.45087e-10 -5.53896e-12) (-2.4451e-11 1.36544e-10 4.41692e-11) (-1.24147e-11 4.6042e-11 3.63183e-11) (-5.74403e-13 -7.98825e-13 3.10082e-12) (1.37406e-11 -7.22717e-11 -2.76194e-11) (6.87506e-11 -3.02424e-10 -2.49847e-10) (6.86874e-11 -2.38717e-10 -3.14001e-10) (-1.31639e-10 -8.87677e-11 -8.14506e-11) (6.04052e-11 -1.30989e-11 3.23736e-11) (1.74968e-09 2.93981e-10 1.01011e-09) (5.38817e-09 1.21081e-09 3.2135e-09) (5.66817e-09 1.02807e-09 3.31834e-09) (2.16895e-09 3.35908e-11 1.17744e-09) (1.97987e-10 -1.27731e-10 8.74483e-11) (-6.16437e-11 -1.83463e-10 -2.97946e-11) (-2.13711e-10 -2.07307e-10 -4.12846e-11) (-2.36458e-11 -1.10159e-11 6.61607e-12) (5.10201e-11 5.99236e-11 3.58745e-11) (3.66368e-10 3.15701e-10 7.07881e-11) (1.96803e-10 1.35327e-10 -2.78017e-11) (1.01228e-11 -1.73301e-11 -4.82369e-11) (-3.12889e-10 -4.38959e-10 -5.51265e-10) (-7.69146e-10 -6.51329e-10 -1.01422e-09) (-5.27627e-10 -1.04586e-10 -4.66043e-10) (-3.65416e-10 1.31334e-10 -2.82222e-11) (-6.54658e-10 2.69782e-10 4.75405e-10) (-9.11079e-10 1.32485e-10 1.10646e-09) (-5.6952e-10 -8.7965e-11 9.01494e-10) (-1.05812e-10 -5.46288e-11 2.99112e-10) (1.73936e-11 -1.03229e-12 5.08503e-11) (5.66035e-11 2.1027e-11 1.67959e-11) (9.4082e-11 4.30713e-11 -1.91918e-11) (8.05488e-11 2.98456e-11 -5.10995e-11) (6.44165e-11 5.35468e-12 -8.38598e-11) (4.65291e-11 -1.62301e-11 -1.40832e-10) (-1.92642e-11 -2.66646e-11 -1.95904e-10) (-1.62981e-10 -3.69489e-11 -2.36899e-10) (-3.17865e-10 -6.46671e-11 -2.0967e-10) (-2.11967e-10 -5.82774e-11 -7.68195e-11) (-2.44442e-11 -8.42011e-12 -1.70268e-12) (1.93563e-12 2.63978e-12 3.3437e-12) (4.65187e-11 5.51335e-11 2.86752e-11) (5.45088e-11 9.0413e-11 1.31208e-11) (4.07452e-12 4.57612e-11 -2.7585e-11) (-1.32455e-10 4.03773e-11 -1.82164e-10) (-7.05561e-10 -1.13107e-10 -6.09026e-10) (-8.44471e-10 -2.86519e-10 -5.6827e-10) (-1.62122e-11 -1.07033e-10 3.18724e-11) (1.2811e-10 -6.83336e-11 1.21767e-10) (5.91143e-10 1.3016e-10 4.28488e-10) (1.12036e-09 5.43023e-10 7.09188e-10) (6.53837e-10 4.18036e-10 4.2959e-10) (1.52098e-11 3.05651e-11 4.50856e-11) (-4.59612e-10 -1.54447e-10 1.39999e-10) (-1.71538e-09 -1.03294e-09 6.16476e-10) (-7.3586e-10 -9.3667e-10 7.79208e-10) (1.55935e-10 -2.91306e-10 3.60919e-10) (5.58828e-10 -2.2808e-11 1.16862e-10) (7.15234e-10 1.75949e-10 -3.0442e-10) (3.27562e-10 1.08359e-10 -7.00153e-10) (-3.03429e-10 -1.36268e-10 -1.7923e-09) (-1.09044e-09 -3.02776e-10 -2.65983e-09) (-6.00288e-10 1.20761e-10 -1.21086e-09) (-6.79406e-11 1.86707e-10 -1.01514e-10) (6.18826e-11 4.92451e-10 3.71551e-10) (9.93854e-11 4.97367e-10 1.17869e-09) (-1.92336e-10 -1.25238e-10 1.37456e-09) (-4.85329e-10 -7.38467e-10 1.22632e-09) (-2.68597e-10 -6.29982e-10 6.08857e-10) (1.77242e-11 -1.275e-10 9.24008e-11) (9.69267e-11 -1.62791e-12 -6.3294e-12) (5.02512e-10 2.59395e-10 -2.52573e-10) (7.72583e-10 5.59073e-10 -6.47624e-10) (4.08516e-10 3.79895e-10 -5.74998e-10) (2.74938e-11 9.97812e-11 -2.02906e-10) (-6.29598e-11 1.95242e-11 -6.55097e-11) (-9.74612e-11 -8.92849e-12 -2.37113e-11) (-3.27272e-11 -1.62161e-11 1.54687e-12) (2.93548e-12 -9.56477e-12 3.25459e-12) (7.1802e-11 -2.76175e-11 1.06555e-11) (1.7476e-10 -1.82544e-12 -1.94559e-12) (1.47424e-10 6.41332e-11 -3.26584e-11) (5.108e-11 1.1763e-10 -6.1137e-11) (-1.22227e-10 2.24958e-10 -1.38229e-10) (-5.16991e-10 2.52323e-10 -2.49529e-10) (-6.43078e-10 -2.62063e-11 -2.06298e-10) (-2.65247e-10 -1.82724e-10 -4.63697e-11) (3.28264e-11 -9.85182e-11 1.02164e-10) (7.29029e-11 -2.75457e-11 1.26966e-10) (5.88505e-11 7.58013e-11 1.27186e-10) (-2.85165e-11 2.15516e-10 1.4109e-10) (-3.6573e-10 3.65235e-10 1.92183e-10) (-1.24014e-09 2.03386e-10 4.19378e-10) (-2.04644e-09 -9.2119e-10 1.02327e-09) (-1.36714e-09 -2.22921e-09 1.54996e-09) (-6.76529e-11 -1.57409e-09 8.03302e-10) (9.8737e-11 -2.88495e-10 -1.00812e-11) (4.00135e-11 -1.05354e-10 -3.065e-10) (-3.56042e-10 -9.49948e-11 -1.2096e-09) (-1.55435e-09 -1.4839e-10 -2.59879e-09) (-2.42191e-09 -1.96218e-10 -3.20181e-09) (-1.0506e-09 -8.45442e-12 -1.42236e-09) (-2.08972e-11 5.9783e-11 -8.37631e-11) (4.86989e-10 6.43939e-10 2.34295e-10) (1.86973e-09 2.24207e-09 1.56008e-09) (1.45684e-09 1.73089e-09 1.94067e-09) (2.18035e-10 2.26627e-10 8.85452e-10) (-1.43476e-10 -2.53811e-10 3.97537e-10) (-2.20787e-10 -4.91583e-10 1.33261e-10) (-3.06458e-11 -2.54679e-10 -7.83509e-11) (7.29566e-11 -4.35615e-11 -1.29117e-10) (2.47944e-10 2.00001e-10 -3.42234e-10) (2.81488e-10 4.15905e-10 -4.16166e-10) (9.03651e-11 2.22653e-10 -1.91211e-10) (-3.79647e-12 4.00467e-11 -3.37065e-11) (-6.46313e-12 3.82534e-12 -3.36758e-12) (-5.52271e-13 -7.86843e-14 3.14777e-13) (1.61102e-11 -1.56962e-12 1.05999e-11) (2.06905e-10 -1.2461e-13 7.47029e-11) (5.99458e-10 1.28854e-11 1.2217e-10) (8.17611e-10 4.59713e-11 4.24875e-11) (5.79017e-10 1.09322e-10 -6.38905e-11) (1.67679e-10 1.15364e-10 -6.37916e-11) (-9.11942e-12 9.28399e-11 -4.13091e-11) (-1.21211e-10 7.84418e-11 -3.25372e-11) (-1.05893e-10 -1.54726e-11 5.7101e-12) (-3.95726e-11 -7.36688e-11 4.2839e-11) (1.38714e-10 -8.29191e-11 1.79435e-10) (3.86007e-11 3.80712e-12 7.26387e-11) (-3.93682e-11 7.39225e-11 5.95913e-11) (-4.05257e-10 3.41413e-10 1.68921e-10) (-9.36132e-10 3.7101e-10 3.76764e-10) (-1.01079e-09 -2.30891e-10 6.32256e-10) (-9.20963e-10 -1.43947e-09 1.10828e-09) (-4.2585e-10 -2.11912e-09 9.37135e-10) (-1.04837e-10 -9.05897e-10 2.12347e-11) (-1.28781e-10 -4.42381e-10 -4.1045e-10) (-6.09683e-10 -5.13006e-10 -1.09249e-09) (-2.0247e-09 -5.14477e-10 -1.92053e-09) (-3.71613e-09 -2.27949e-10 -2.58468e-09) (-2.46829e-09 -6.39436e-11 -1.77322e-09) (-2.93467e-10 -3.6208e-11 -3.09012e-10) (1.09174e-11 8.03525e-12 -6.15909e-12) (3.90923e-10 4.74409e-10 1.9076e-10) (9.99489e-10 2.02183e-09 8.18791e-10) (5.9773e-10 1.96425e-09 9.36405e-10) (2.83937e-11 3.20623e-10 2.92453e-10) (-2.29682e-11 -5.60749e-11 5.46955e-11) (-3.23643e-11 -6.73292e-10 -2.04798e-11) (-1.01821e-12 -8.21854e-10 -3.3988e-10) (-6.41898e-11 -2.56572e-10 -4.08208e-10) (-9.81883e-11 8.34288e-11 -5.50062e-10) (1.32532e-11 2.82932e-10 -5.08078e-10) (1.35084e-10 2.46911e-10 -2.37872e-10) (1.49188e-10 1.93443e-10 -5.34238e-11) (8.87416e-11 1.50019e-10 4.20396e-11) (3.33906e-11 1.15979e-10 8.00533e-11) (2.21056e-11 7.90216e-11 8.58236e-11) (4.42273e-11 4.35887e-11 5.97845e-11) (9.34439e-11 2.58682e-11 2.96492e-11) (2.05597e-10 1.61542e-11 -2.62991e-11) (2.94088e-10 2.67094e-11 -8.08113e-11) (2.26684e-10 6.53822e-11 -3.68615e-11) (9.95531e-11 6.61003e-11 2.22856e-11) (3.12503e-11 2.93559e-11 3.90195e-11) (3.03441e-11 -8.1247e-12 6.72715e-11) (1.00915e-10 -8.30896e-11 1.59422e-10) (6.14983e-10 -2.52903e-10 6.39639e-10) (1.10836e-10 -1.09575e-11 1.25192e-10) (-4.97971e-12 2.48317e-11 2.11199e-11) (-9.31085e-11 8.3687e-11 5.5873e-11) (-1.46709e-10 2.6616e-11 1.31402e-10) (-2.10311e-10 -2.37787e-10 3.30487e-10) (-3.68966e-10 -8.72842e-10 5.68491e-10) (-5.14635e-10 -1.05833e-09 2.40708e-10) (-5.9683e-10 -8.9267e-10 -3.30223e-10) (-1.13791e-09 -9.75071e-10 -1.05114e-09) (-2.77073e-09 -1.01121e-09 -1.68955e-09) (-4.76323e-09 -6.92002e-10 -1.81699e-09) (-3.63717e-09 -2.86459e-10 -1.42825e-09) (-1.05679e-09 -1.66365e-10 -7.64266e-10) (-8.52597e-11 -5.60109e-11 -2.26704e-10) (2.77625e-11 1.35629e-11 -3.61841e-11) (2.24214e-10 3.53885e-10 9.72466e-11) (8.84148e-10 1.95867e-09 9.59727e-10) (1.09972e-09 2.36308e-09 1.49289e-09) (4.74231e-10 5.44419e-10 6.50677e-10) (2.19693e-10 -1.84451e-10 2.08763e-10) (2.49975e-10 -1.10135e-09 1.07935e-11) (-3.68454e-10 -1.23848e-09 -6.83687e-10) (-1.36162e-09 -7.10914e-10 -1.89693e-09) (-1.45198e-09 1.91159e-10 -2.59049e-09) (-3.34413e-10 3.52271e-10 -1.28895e-09) (7.98051e-11 1.88376e-10 -2.77197e-10) (1.7336e-10 2.2899e-10 -2.81582e-11) (3.17703e-10 4.49756e-10 2.01471e-10) (3.38295e-10 5.41281e-10 3.88097e-10) (2.67916e-10 3.86434e-10 3.53682e-10) (1.96324e-10 1.76558e-10 1.89286e-10) (1.20446e-10 5.10949e-11 4.23374e-11) (6.51903e-11 1.0299e-11 -2.15498e-11) (2.13904e-11 3.63058e-12 -3.31668e-11) (-9.2455e-13 4.70665e-12 -7.16465e-12) (-4.32104e-12 1.75105e-11 1.70625e-11) (5.35471e-11 5.8265e-11 2.33757e-10) (3.80175e-10 -6.51546e-11 7.30303e-10) (8.07126e-10 -3.36909e-10 1.02713e-09) (9.32026e-10 -6.56673e-10 1.04904e-09) (2.36475e-10 -1.04575e-10 1.87525e-10) (4.39509e-11 6.26454e-12 2.36642e-11) (1.84246e-11 1.0527e-11 1.87307e-11) (1.24911e-11 -9.33276e-12 6.17302e-11) (-5.2512e-11 -1.31067e-10 2.08446e-10) (-2.75371e-10 -3.48088e-10 2.88142e-10) (-5.04509e-10 -4.62501e-10 5.82658e-11) (-9.87413e-10 -6.76949e-10 -5.06277e-10) (-2.77694e-09 -1.11013e-09 -1.51861e-09) (-6.67258e-09 -1.40016e-09 -2.08541e-09) (-7.79575e-09 -1.15583e-09 -1.68213e-09) (-3.17585e-09 -5.87242e-10 -1.16804e-09) (-4.9931e-10 -2.34077e-10 -6.32212e-10) (2.24918e-11 -7.47557e-11 -3.26614e-10) (4.62436e-11 2.81742e-11 -5.4224e-11) (1.50985e-10 3.29663e-10 1.43962e-10) (7.50193e-10 1.6314e-09 1.36164e-09) (1.61002e-09 1.95511e-09 2.40696e-09) (1.30428e-09 3.58189e-10 1.33472e-09) (6.38186e-10 -4.98214e-10 3.61506e-10) (-2.85232e-11 -8.27908e-10 -2.57477e-10) (-2.36296e-09 -1.57197e-09 -2.4289e-09) (-4.40405e-09 -8.0034e-10 -5.4988e-09) (-1.25891e-09 1.30291e-10 -3.21952e-09) (9.17425e-11 1.87848e-10 -6.05228e-10) (1.79808e-10 2.21852e-10 -4.6767e-11) (3.52541e-10 6.34003e-10 2.75859e-10) (4.40366e-10 9.9268e-10 5.21389e-10) (5.19876e-10 9.0288e-10 4.95725e-10) (6.03253e-10 6.10611e-10 3.63417e-10) (6.09027e-10 3.06814e-10 1.9876e-10) (4.80322e-10 1.0104e-10 1.85739e-11) (2.09194e-10 2.13379e-11 -8.34549e-11) (2.192e-11 1.67106e-11 -6.48056e-11) (-6.17867e-11 4.13939e-11 -4.90513e-11) (-1.00663e-10 6.0171e-11 6.00964e-11) (-1.3403e-11 2.96891e-11 5.72029e-10) (7.77674e-10 -4.833e-10 1.93777e-09) (1.48835e-09 -1.08084e-09 2.24114e-09) (1.10789e-09 -1.41029e-09 1.20154e-09) (3.57434e-10 -3.03618e-10 1.81577e-10) (1.24206e-10 -1.33416e-11 1.95327e-11) (9.99956e-11 4.67236e-11 4.02655e-11) (7.22286e-11 5.43909e-11 1.20046e-10) (4.54324e-12 1.69414e-11 2.2991e-10) (-6.81768e-11 -3.22863e-11 1.61885e-10) (-9.05269e-11 -4.90337e-11 8.91248e-12) (-7.47284e-10 -3.34539e-10 -5.18985e-10) (-4.47383e-09 -1.30365e-09 -2.23663e-09) (-1.22432e-08 -2.30058e-09 -3.27639e-09) (-1.09257e-08 -1.62361e-09 -2.53037e-09) (-2.48907e-09 -5.48039e-10 -1.30696e-09) (-1.60254e-10 -1.7585e-10 -5.09039e-10) (7.84812e-11 -4.17282e-11 -1.58115e-10) (2.91191e-11 2.40858e-11 7.61991e-12) (1.45778e-10 5.09611e-10 5.26125e-10) (5.59209e-10 1.39073e-09 1.69016e-09) (9.87818e-10 8.57894e-10 1.46093e-09) (6.49417e-10 2.1943e-12 4.55439e-10) (6.51585e-11 -1.20579e-10 -4.41174e-11) (-1.94601e-09 -9.8005e-10 -2.01503e-09) (-8.06782e-09 -2.00072e-09 -8.25179e-09) (-3.43779e-09 -1.41032e-09 -6.18933e-09) (1.45674e-11 -1.97829e-10 -1.26028e-09) (2.43475e-10 1.27886e-10 -7.70629e-11) (1.05926e-09 9.62226e-10 8.03952e-10) (1.5846e-09 1.87702e-09 2.00651e-09) (9.8167e-10 1.55125e-09 1.48215e-09) (4.17362e-10 8.3654e-10 5.45768e-10) (2.20625e-10 3.56016e-10 1.20769e-10) (1.73402e-10 1.37221e-10 -2.65171e-11) (2.18788e-10 6.73787e-11 -1.54168e-10) (2.10948e-10 5.64491e-11 -3.44906e-10) (1.50229e-11 1.16606e-10 -3.75001e-10) (-1.44746e-10 1.39431e-10 -1.62882e-10) (-1.18169e-10 7.9102e-11 8.58338e-11) (2.1148e-11 -1.18837e-10 1.00923e-09) (1.09518e-09 -1.38839e-09 3.0204e-09) (1.76243e-09 -2.35702e-09 2.97847e-09) (7.06105e-10 -1.41554e-09 1.13856e-09) (6.24103e-11 -2.03719e-10 1.34073e-10) (-2.20791e-13 -7.60363e-12 1.31182e-11) (1.06311e-11 2.0064e-11 5.90629e-11) (1.03026e-10 9.36886e-11 2.59287e-10) (1.88872e-10 1.11524e-10 2.9022e-10) (1.00054e-10 5.3382e-11 4.17301e-11) (5.92153e-11 4.83916e-11 -1.61676e-10) (-7.08126e-10 -7.36568e-11 -1.24693e-09) (-7.09799e-09 -1.35409e-09 -3.72756e-09) (-1.63975e-08 -2.96001e-09 -4.14117e-09) (-7.67825e-09 -1.4386e-09 -2.19898e-09) (-6.81207e-10 -2.21938e-10 -5.87653e-10) (2.89146e-11 -3.0145e-11 -1.35464e-10) (3.84613e-11 5.27202e-12 -4.95256e-12) (9.96244e-11 9.91294e-11 2.21163e-10) (2.2186e-10 3.83257e-10 9.39684e-10) (3.59657e-10 3.56247e-10 9.77729e-10) (2.6931e-10 1.17798e-10 3.21394e-10) (1.20095e-11 6.21139e-12 -4.91031e-12) (-1.14511e-09 1.07823e-10 -1.30523e-09) (-7.62016e-09 -5.28431e-10 -7.48589e-09) (-4.97224e-09 -2.47225e-09 -6.95402e-09) (-5.9408e-10 -1.26379e-09 -2.16769e-09) (7.67146e-11 -7.36194e-11 -1.7617e-10) (3.08239e-10 2.03311e-10 6.1314e-11) (1.57334e-09 1.35347e-09 1.04292e-09) (2.62475e-09 2.48485e-09 2.41562e-09) (1.70345e-09 2.14566e-09 2.21213e-09) (4.31872e-10 9.8717e-10 8.89319e-10) (3.9382e-11 2.15176e-10 1.14376e-10) (5.40973e-12 2.83516e-11 -2.25286e-11) (2.72241e-11 2.09146e-11 -3.12207e-10) (2.42603e-11 9.00395e-11 -1.05407e-09) (-1.21318e-10 3.97908e-10 -1.22744e-09) (-1.49766e-10 3.1297e-10 -3.74517e-10) (-2.20482e-11 4.50001e-11 3.79651e-11) (2.4068e-10 -2.77899e-10 1.04744e-09) (1.42415e-09 -2.08705e-09 3.36083e-09) (1.79078e-09 -3.0029e-09 3.2601e-09) (2.64351e-10 -1.09485e-09 7.73632e-10) (-4.02109e-10 -3.86786e-10 3.98784e-10) (-1.40387e-09 -2.99136e-10 9.70082e-10) (-7.95539e-10 -4.47021e-11 8.71281e-10) (-1.48691e-12 3.85806e-11 1.78165e-10) (3.40339e-10 1.67565e-10 -1.01245e-11) (1.49905e-09 8.42809e-10 -1.11845e-09) (1.18902e-09 1.06597e-09 -2.24711e-09) (-7.8559e-10 3.07033e-10 -1.50382e-09) (-7.87685e-09 -1.2836e-09 -2.3854e-09) (-1.21606e-08 -3.1612e-09 -1.97148e-09) (-2.61452e-09 -9.3266e-10 -9.90109e-10) (-4.07025e-11 -4.94308e-11 -1.70968e-10) (1.14539e-10 2.68356e-11 -5.53117e-11) (2.61131e-10 1.04028e-10 1.58544e-10) (5.12724e-10 1.89495e-10 8.21521e-10) (3.94774e-10 8.49502e-11 1.07626e-09) (5.85597e-11 1.8434e-11 3.45852e-10) (-2.87302e-11 2.46133e-11 7.52643e-12) (-1.41442e-09 6.80449e-10 -1.1779e-09) (-5.35383e-09 1.03251e-09 -5.41105e-09) (-2.86408e-09 -1.0926e-09 -4.00161e-09) (-2.77284e-10 -1.34997e-09 -1.33979e-09) (1.31899e-10 -3.61675e-10 -2.1732e-10) (3.30795e-11 2.05367e-12 -5.53688e-12) (1.7901e-10 2.51679e-10 6.74722e-11) (5.76083e-10 8.75058e-10 3.59957e-10) (1.15902e-09 1.56775e-09 9.42912e-10) (1.27701e-09 1.72224e-09 1.35199e-09) (5.6697e-10 8.99108e-10 7.80923e-10) (6.39673e-11 1.51873e-10 1.09609e-10) (-2.41377e-12 6.63634e-12 -1.09523e-11) (-1.14114e-10 -4.84828e-11 -4.65594e-10) (-3.72955e-10 -1.10552e-11 -1.66886e-09) (-4.11079e-10 5.08006e-10 -1.89692e-09) (-1.06646e-10 4.52943e-10 -6.09492e-10) (1.52533e-11 4.5007e-11 1.03632e-11) (3.3969e-10 -2.0812e-10 7.21232e-10) (1.3197e-09 -1.80242e-09 2.61006e-09) (1.40492e-09 -2.54208e-09 2.37204e-09) (1.27109e-10 -8.23051e-10 3.7997e-10) (-1.6773e-09 -3.29417e-10 9.08372e-10) (-6.17922e-09 -3.12675e-12 3.30284e-09) (-2.15517e-09 -9.34429e-11 1.32238e-09) (-3.98481e-12 4.31558e-12 -3.73011e-12) (7.89471e-10 5.75902e-10 -1.12333e-09) (1.66974e-09 1.54297e-09 -2.55947e-09) (2.62313e-10 6.43464e-10 -9.38906e-10) (-8.1412e-10 9.50147e-11 -2.66496e-10) (-6.3887e-09 -1.42681e-09 3.19778e-11) (-4.74398e-09 -1.79503e-09 -4.31796e-10) (-3.4841e-10 -2.5383e-10 -2.8335e-10) (1.07187e-10 1.32513e-12 -1.34404e-10) (4.32666e-10 1.59687e-10 -5.09387e-11) (6.86553e-10 2.3054e-10 3.01816e-10) (5.94445e-10 8.30921e-11 6.23509e-10) (8.53374e-11 -2.7746e-11 4.21376e-10) (-2.37574e-10 2.74211e-11 1.53576e-10) (-1.6488e-09 5.79434e-10 -5.24789e-10) (-3.44604e-09 1.23266e-09 -2.87207e-09) (-1.32592e-09 -1.61605e-10 -2.06725e-09) (1.32179e-10 -8.8052e-10 -6.47623e-10) (7.52036e-10 -1.11304e-09 -9.90278e-11) (4.04671e-10 -2.12416e-10 1.06265e-10) (1.69421e-10 1.21568e-10 6.94188e-11) (9.33273e-11 4.22199e-10 6.05008e-11) (-2.3905e-11 6.44834e-10 7.81492e-11) (4.82209e-11 7.9645e-10 2.22796e-10) (2.93391e-10 8.96051e-10 4.16756e-10) (3.30895e-10 5.78713e-10 3.6499e-10) (9.57242e-11 1.15957e-10 8.33185e-11) (2.47847e-12 7.68399e-13 -2.34958e-12) (-4.65381e-11 -5.57789e-11 -2.20539e-10) (-3.8226e-10 -5.90994e-11 -1.22897e-09) (-6.52647e-10 4.36527e-10 -1.9563e-09) (-2.57103e-10 5.26405e-10 -8.75765e-10) (1.07739e-11 6.19597e-11 -1.91735e-11) (2.55301e-10 -1.00288e-10 3.73041e-10) (1.56423e-09 -1.72275e-09 1.80432e-09) (2.11608e-09 -3.06484e-09 1.62359e-09) (-6.14691e-10 -6.39239e-10 1.35016e-10) (-4.40251e-09 5.12919e-10 1.15308e-09) (-4.64662e-09 7.66227e-10 2.12723e-09) (-5.19419e-10 -4.87727e-11 2.71167e-10) (9.65994e-12 2.07964e-13 -7.02262e-11) (4.27562e-10 3.94519e-10 -1.08559e-09) (3.4933e-10 6.60019e-10 -1.06133e-09) (-7.67896e-11 1.93043e-10 -1.54186e-10) (-6.6801e-10 7.4215e-11 1.22287e-10) (-1.33906e-09 -4.23342e-10 3.79084e-10) (-2.67114e-10 -2.63987e-10 1.58294e-11) (2.61166e-11 -6.03403e-11 -5.83198e-11) (2.00668e-10 1.7042e-11 -1.24078e-10) (4.50387e-10 1.40084e-10 -8.68783e-11) (5.21273e-10 1.38347e-10 5.9643e-11) (2.18625e-10 4.65084e-11 1.41789e-10) (-2.78607e-11 3.16064e-11 1.18645e-10) (-7.97376e-10 2.46997e-10 1.18695e-10) (-2.57376e-09 7.46217e-10 -1.03665e-09) (-1.33727e-09 1.20706e-10 -1.37419e-09) (4.47436e-11 -4.83632e-10 -4.64405e-10) (1.48927e-09 -1.97565e-09 -2.3467e-11) (2.36529e-09 -1.69028e-09 8.18463e-10) (1.43997e-09 -1.34728e-10 7.07685e-10) (5.77474e-10 4.92079e-10 3.47004e-10) (4.36457e-11 6.70376e-10 8.64757e-11) (-5.40913e-10 9.0463e-10 -1.27957e-10) (-7.93596e-10 9.17449e-10 -9.88443e-11) (-2.60959e-10 5.52029e-10 1.02714e-10) (4.87075e-11 2.87212e-10 1.43254e-10) (8.82154e-11 8.1389e-11 7.04632e-11) (2.49687e-11 -2.4781e-12 2.32684e-12) (1.50795e-11 -3.13288e-11 -6.25292e-11) (-1.30672e-10 -2.87033e-11 -5.34058e-10) (-6.06208e-10 3.74484e-10 -1.41471e-09) (-5.14895e-10 5.78043e-10 -9.85992e-10) (-2.13341e-11 7.537e-11 -4.69699e-11) (2.13004e-10 -1.10369e-10 2.03653e-10) (2.1516e-09 -2.52646e-09 1.50937e-09) (1.263e-09 -3.14476e-09 8.31527e-10) (-6.06263e-09 -1.54177e-09 -4.74769e-10) (-8.39431e-09 1.52415e-09 1.0526e-09) (-1.89218e-09 5.07962e-10 1.03297e-09) (-8.65343e-11 -3.11646e-11 6.72009e-11) (-2.54349e-11 -1.05208e-11 -8.10964e-11) (-3.50642e-11 2.107e-10 -5.41217e-10) (-3.37428e-11 2.62713e-10 -3.21001e-10) (-3.22894e-11 5.57299e-11 -1.50822e-11) (-2.28503e-11 -2.62154e-12 3.07626e-11) (3.5612e-11 -7.51144e-11 6.24755e-11) (2.73804e-10 -1.55043e-10 5.2769e-11) (4.81372e-10 -6.10603e-11 1.49875e-11) (4.20576e-10 5.27672e-11 9.60294e-12) (2.20267e-10 4.05955e-11 -1.48309e-11) (5.09977e-11 1.11246e-11 -1.24931e-11) (9.45528e-13 5.78184e-12 5.11029e-13) (-1.1969e-10 1.1114e-10 3.90942e-11) (-7.25712e-10 3.98964e-10 -4.62169e-11) (-8.63751e-10 2.38312e-10 -4.50652e-10) (-1.37237e-10 -1.66778e-10 -2.85409e-10) (7.97e-10 -1.29057e-09 -2.43652e-10) (3.57793e-09 -3.23366e-09 8.67294e-10) (4.19033e-09 -1.93876e-09 1.62865e-09) (2.411e-09 -2.62151e-11 1.14311e-09) (6.96866e-10 5.37373e-10 4.73184e-10) (1.57744e-11 6.388e-10 1.76096e-10) (-6.00212e-10 9.14404e-10 -5.52099e-11) (-1.10186e-09 9.48745e-10 -1.85832e-10) (-5.36363e-10 4.83757e-10 5.43536e-12) (-3.95944e-11 1.15421e-10 5.79757e-11) (4.94571e-11 3.20192e-11 5.29735e-11) (5.66428e-11 -1.54117e-11 2.23142e-11) (2.06773e-11 -1.99963e-11 -2.08622e-11) (-3.88147e-11 3.72342e-12 -2.30168e-10) (-3.8719e-10 3.28585e-10 -8.75084e-10) (-4.50118e-10 4.85627e-10 -7.48972e-10) (-1.72127e-11 4.30327e-11 -3.78564e-11) (3.5908e-10 -2.54715e-10 1.99087e-10) (1.8076e-09 -2.69449e-09 9.88013e-10) (-4.72224e-10 -2.28001e-09 1.26406e-10) (-2.01725e-08 -2.24722e-09 -3.00362e-09) (-1.53524e-08 2.1902e-09 1.12031e-09) (-2.13781e-09 4.50154e-10 1.08457e-09) (-2.65842e-10 -4.5142e-11 6.68804e-11) (-3.01946e-10 6.47572e-12 -2.99172e-10) (-1.89394e-10 1.6704e-10 -4.4613e-10) (-1.17966e-11 6.36904e-11 -8.31821e-11) (2.94034e-12 3.1657e-12 -7.98701e-13) (4.06701e-11 -1.53355e-11 8.903e-12) (2.73938e-10 -1.02868e-10 3.59905e-11) (9.40916e-10 -1.24547e-10 2.54004e-10) (2.15213e-09 1.10867e-10 9.31948e-10) (2.08968e-09 2.29602e-10 1.01482e-09) (6.06408e-10 4.14067e-11 2.1632e-10) (1.63083e-11 3.45246e-12 -4.65746e-12) (-7.31527e-11 5.60968e-11 -4.32837e-11) (-4.39563e-10 3.27674e-10 -7.01715e-11) (-5.31992e-10 3.53315e-10 -8.9843e-11) (-1.12914e-10 1.50581e-11 -7.88639e-11) (1.63785e-10 -3.31864e-10 -1.30405e-10) (2.42305e-09 -2.35808e-09 2.17892e-10) (4.60798e-09 -3.11948e-09 1.14699e-09) (3.36075e-09 -1.19226e-09 9.06424e-10) (1.40556e-09 4.53502e-11 4.54941e-10) (2.09803e-10 2.00268e-10 1.65664e-10) (-1.56885e-10 3.60096e-10 1.62997e-10) (-6.75929e-10 7.29178e-10 1.56705e-10) (-6.60961e-10 6.3496e-10 7.71197e-11) (-2.09771e-10 2.40335e-10 6.2935e-11) (-3.94513e-12 4.46974e-11 3.94372e-11) (5.49833e-11 8.23261e-12 5.70611e-11) (5.49276e-11 -2.49797e-11 3.20613e-11) (6.85651e-12 -8.947e-12 -5.17618e-12) (-2.85421e-11 1.07211e-11 -1.05057e-10) (-1.75998e-10 2.02918e-10 -4.3543e-10) (-1.21329e-10 2.28157e-10 -3.22029e-10) (2.00439e-11 1.35817e-11 -1.52259e-11) (7.79282e-10 -4.70848e-10 2.48701e-10) (1.16249e-09 -1.91843e-09 3.84616e-10) (-2.02731e-09 -2.30943e-09 -5.38372e-10) (-4.20833e-08 -1.51478e-09 -7.24521e-09) (-2.98501e-08 2.98501e-09 1.64679e-09) (-4.60632e-09 4.75242e-10 1.54264e-09) (-6.60606e-10 -8.35859e-11 -1.38813e-11) (-1.90491e-10 -1.88531e-11 -2.82965e-10) (1.95808e-11 5.61017e-11 -2.50559e-10) (4.62606e-11 4.471e-11 -9.23424e-11) (2.41437e-11 1.18544e-11 -2.68949e-11) (2.66251e-11 -3.22689e-12 -1.83899e-11) (7.87586e-11 -1.52139e-11 -3.0239e-12) (6.79781e-10 -2.31372e-12 3.36553e-10) (3.5351e-09 2.73268e-10 2.38215e-09) (4.90552e-09 4.29981e-10 3.3539e-09) (1.44018e-09 1.19733e-10 8.08298e-10) (2.65892e-11 1.33231e-11 -1.9867e-12) (-1.55038e-10 1.17481e-10 -1.04136e-10) (-5.58766e-10 3.65897e-10 -1.35009e-10) (-2.33645e-10 1.42111e-10 -3.6113e-11) (3.15664e-12 -7.84531e-12 -2.00277e-12) (9.99971e-10 -9.04403e-10 9.46121e-11) (3.40516e-09 -2.43979e-09 5.08313e-10) (3.03729e-09 -1.59772e-09 3.34857e-10) (1.43933e-09 -3.56322e-10 4.25136e-11) (5.09983e-10 5.51387e-11 4.13769e-11) (2.92717e-11 4.71161e-11 3.40885e-11) (-3.44935e-10 2.5148e-10 1.86488e-10) (-1.04979e-09 6.29618e-10 3.72385e-10) (-5.41679e-10 4.4653e-10 2.55307e-10) (-5.9715e-11 1.25797e-10 1.0039e-10) (4.03466e-11 3.59909e-11 6.67192e-11) (1.01774e-10 -9.31508e-12 7.8343e-11) (6.61731e-11 -3.28256e-11 3.42063e-11) (5.77179e-12 -6.62827e-12 -1.26765e-12) (-8.38023e-12 3.15626e-12 -2.35215e-11) (-3.70296e-11 6.3034e-11 -1.01972e-10) (1.29922e-11 6.17503e-11 -6.32264e-11) (1.857e-10 1.69092e-11 -5.30934e-12) (1.40743e-09 -6.41735e-10 2.41434e-10) (8.86755e-10 -1.27048e-09 -8.59805e-11) (-3.96748e-09 -2.28725e-09 -1.73892e-09) (-7.45084e-08 8.85363e-10 -1.1797e-08) (-4.79946e-08 3.12486e-09 2.53808e-09) (-6.39415e-09 3.80026e-11 1.38967e-09) (-3.54433e-10 -1.17253e-10 -8.49377e-11) (2.61146e-11 -4.35279e-11 -1.93243e-10) (1.81764e-10 5.16469e-11 -3.07989e-10) (1.1656e-10 8.20311e-11 -2.05756e-10) (4.19644e-11 3.86597e-11 -1.0189e-10) (1.78356e-11 1.05765e-11 -4.27379e-11) (2.52655e-11 5.21221e-12 -7.41123e-12) (5.46939e-10 6.88818e-11 2.99457e-10) (3.91207e-09 3.69281e-10 2.75416e-09) (6.06474e-09 5.75628e-10 4.34657e-09) (2.04519e-09 3.09615e-10 1.27101e-09) (8.73371e-11 5.59286e-11 1.86266e-11) (-6.77467e-11 8.44834e-11 -5.4598e-11) (-2.28225e-10 1.46868e-10 -6.28595e-11) (-1.90288e-11 8.80994e-12 1.85829e-12) (1.63576e-10 -1.16198e-10 6.64191e-11) (1.78314e-09 -1.16418e-09 4.33201e-10) (2.49651e-09 -1.48473e-09 2.70073e-10) (1.49514e-09 -6.27402e-10 -1.29402e-10) (7.66281e-10 -9.74844e-11 -1.8218e-10) (2.68996e-10 4.63982e-11 -4.272e-11) (4.83996e-12 1.42295e-11 8.99127e-12) (-3.64342e-10 1.5953e-10 1.83002e-10) (-1.02994e-09 4.21449e-10 4.63015e-10) (-4.39746e-10 2.83995e-10 3.23713e-10) (-2.69073e-11 8.17962e-11 1.22892e-10) (5.64459e-11 2.09727e-11 7.70761e-11) (9.6204e-11 -2.33752e-11 5.98489e-11) (8.65402e-11 -4.67958e-11 2.88951e-11) (2.9252e-11 -1.83783e-11 2.24089e-12) (1.53214e-12 -8.63525e-16 -9.85421e-13) (2.09498e-12 8.51905e-12 -4.31905e-12) (3.77571e-11 2.87975e-11 -2.65942e-12) (5.47243e-10 -5.54148e-13 7.08265e-11) (2.0122e-09 -7.17659e-10 4.78984e-11) (5.71829e-10 -7.49961e-10 -4.71151e-10) (-8.99903e-09 -2.18561e-09 -4.45411e-09) (-1.02821e-07 3.21083e-09 -1.24733e-08) (-5.11255e-08 1.42561e-09 3.05715e-09) (-4.25079e-09 -5.09267e-10 6.44846e-10) (-8.73095e-11 -9.85127e-11 -6.50178e-11) (8.73336e-11 -6.91135e-11 -2.08292e-10) (1.5815e-10 4.41203e-11 -3.2468e-10) (1.18515e-10 1.08098e-10 -3.08418e-10) (5.62583e-11 7.54169e-11 -1.99988e-10) (3.31993e-11 3.56369e-11 -8.52272e-11) (6.49657e-11 2.76726e-11 -2.15785e-11) (7.59648e-10 1.39001e-10 2.97472e-10) (3.85133e-09 4.24008e-10 2.25149e-09) (5.5453e-09 6.58713e-10 3.59779e-09) (2.3236e-09 5.06802e-10 1.38857e-09) (2.57331e-10 1.52131e-10 9.18175e-11) (6.75606e-14 3.32836e-11 -8.67902e-12) (-1.14461e-11 1.12568e-11 -1.74852e-12) (1.13851e-11 -6.39474e-12 1.32747e-11) (5.64381e-10 -3.13442e-10 2.82599e-10) (1.5752e-09 -8.9674e-10 4.59493e-10) (1.34347e-09 -6.83765e-10 -2.45114e-12) (8.43527e-10 -2.51525e-10 -2.63241e-10) (5.66518e-10 -1.26238e-11 -2.37209e-10) (2.22835e-10 4.96415e-11 -5.65638e-11) (6.83922e-12 9.9734e-12 6.02441e-12) (-1.75864e-10 7.39109e-11 1.16012e-10) (-5.61064e-10 1.9536e-10 3.4664e-10) (-2.56536e-10 1.37521e-10 2.67724e-10) (-1.26871e-11 4.36457e-11 1.06534e-10) (3.98722e-11 5.02625e-12 4.90991e-11) (7.14787e-11 -2.81418e-11 2.94618e-11) (6.89511e-11 -4.86786e-11 1.14841e-11) (2.05429e-11 -1.81025e-11 2.76126e-12) (3.35218e-12 -5.9827e-13 1.19493e-12) (1.99947e-11 1.18875e-11 9.47126e-12) (1.97539e-10 5.62737e-11 6.50845e-11) (1.06414e-09 -2.05229e-11 1.6003e-10) (1.62686e-09 -4.6639e-10 -2.96217e-10) (4.27645e-11 -4.45458e-10 -8.63129e-10) (-2.09623e-08 -1.39181e-09 -9.21511e-09) (-1.02375e-07 3.26586e-09 -7.19726e-09) (-3.35963e-08 -7.20196e-10 2.45775e-09) (-1.38677e-09 -4.65131e-10 2.04962e-10) (-2.6773e-11 -8.91568e-11 -4.58459e-11) (1.97236e-12 -7.23579e-11 -1.8228e-10) (-5.09135e-13 2.49174e-11 -3.36961e-10) (1.81463e-11 1.0155e-10 -3.71789e-10) (3.21603e-11 8.89385e-11 -2.57898e-10) (5.39106e-11 5.54041e-11 -1.17812e-10) (1.62398e-10 6.54267e-11 -5.19675e-11) (1.00659e-09 2.00208e-10 2.22881e-10) (3.29024e-09 4.48585e-10 1.42311e-09) (4.33503e-09 6.69663e-10 2.35751e-09) (2.28748e-09 6.08638e-10 1.22845e-09) (5.16201e-10 2.43431e-10 2.06412e-10) (5.54486e-11 4.03627e-11 1.57141e-11) (2.09149e-11 2.82739e-12 1.38185e-11) (1.9723e-10 -7.85904e-11 1.39456e-10) (7.73452e-10 -3.88159e-10 4.20567e-10) (9.7433e-10 -5.09166e-10 2.50898e-10) (7.07365e-10 -3.11891e-10 -1.42918e-10) (5.36649e-10 -1.08111e-10 -2.89436e-10) (4.12911e-10 2.19483e-11 -2.014e-10) (1.98781e-10 4.96229e-11 -3.45493e-11) (2.18988e-11 1.61468e-11 1.49111e-11) (-3.94722e-11 3.15895e-11 6.33848e-11) (-1.49834e-10 6.5822e-11 1.73065e-10) (-7.50205e-11 4.37902e-11 1.46252e-10) (6.03168e-12 1.17681e-11 6.04109e-11) (2.85379e-11 -5.68659e-12 2.48746e-11) (2.6856e-11 -2.02005e-11 9.3001e-12) (1.71081e-12 -1.58462e-11 3.05952e-12) (-9.21108e-12 -1.01304e-11 3.91268e-12) (-6.08428e-13 -2.39068e-13 1.53214e-12) (5.24458e-11 1.7068e-11 2.6995e-11) (5.12535e-10 7.84264e-11 1.35334e-10) (1.1836e-09 -1.17019e-12 1.72949e-11) (8.2373e-10 -1.92401e-10 -5.5639e-10) (-9.73804e-10 -3.73184e-10 -1.96998e-09) (-3.54865e-08 2.00512e-10 -1.19152e-08) (-7.37015e-08 1.52798e-09 -1.42907e-09) (-1.30066e-08 -1.14217e-09 1.32769e-09) (-2.36576e-10 -1.98273e-10 9.08085e-11) (-1.18363e-11 -5.59432e-11 -2.20767e-11) (-8.96872e-11 -7.328e-11 -2.02611e-10) (-2.32762e-10 6.79025e-12 -4.78507e-10) (-1.44725e-10 7.81349e-11 -4.27338e-10) (-2.2831e-11 7.07309e-11 -2.50336e-10) (5.0899e-11 5.20516e-11 -1.21069e-10) (2.08013e-10 7.73717e-11 -8.50764e-11) (9.0821e-10 1.89085e-10 6.02489e-11) (2.27904e-09 3.73136e-10 6.58699e-10) (2.84449e-09 5.31615e-10 1.22203e-09) (1.85227e-09 5.3773e-10 8.3888e-10) (8.02388e-10 2.77946e-10 3.08216e-10) (3.49106e-10 8.34984e-11 1.36764e-10) (3.3094e-10 -2.18255e-11 1.80545e-10) (5.69667e-10 -1.82928e-10 3.62691e-10) (7.13203e-10 -3.35891e-10 3.68759e-10) (4.70089e-10 -2.47857e-10 4.95549e-11) (2.85506e-10 -1.2711e-10 -1.62596e-10) (2.37751e-10 -3.4116e-11 -2.05757e-10) (2.10818e-10 2.2356e-11 -9.98643e-11) (1.47234e-10 3.7312e-11 6.99079e-12) (5.06191e-11 2.54485e-11 4.49288e-11) (4.44485e-12 2.46623e-11 7.0441e-11) (-1.79903e-11 2.32272e-11 9.83469e-11) (-9.54217e-13 8.36058e-12 6.93218e-11) (1.08823e-11 -2.32649e-12 2.47671e-11) (4.38547e-12 -4.7046e-12 4.84653e-12) (-9.31125e-12 -1.15909e-11 3.17888e-12) (-1.12632e-10 -4.86785e-11 1.857e-11) (-9.61499e-11 -2.67829e-11 2.52616e-11) (-1.03838e-12 -8.16082e-14 3.33818e-12) (1.33459e-10 2.51794e-11 4.17908e-11) (6.85398e-10 8.19473e-11 4.89637e-11) (9.73098e-10 2.40818e-11 -2.87923e-10) (4.51085e-10 -8.54383e-11 -8.46325e-10) (-3.04236e-09 -1.55739e-10 -3.06706e-09) (-4.41766e-08 1.41922e-09 -9.52561e-09) (-3.63398e-08 -3.43469e-11 8.23363e-10) (-2.72537e-09 -5.38441e-10 5.60822e-10) (-3.79192e-11 -9.31233e-11 6.68116e-11) (-7.3936e-12 -2.2192e-11 -8.23973e-12) (-1.17247e-10 -4.64553e-11 -1.93763e-10) (-3.03796e-10 -1.4112e-12 -4.84831e-10) (-2.22426e-10 4.31271e-11 -3.983e-10) (-5.17885e-11 3.93447e-11 -1.89588e-10) (3.50932e-11 3.29405e-11 -9.18737e-11) (1.76205e-10 5.92624e-11 -9.00525e-11) (6.20475e-10 1.3077e-10 -4.44102e-11) (1.26384e-09 2.3252e-10 1.9335e-10) (1.49789e-09 3.13773e-10 4.48364e-10) (1.32873e-09 3.65172e-10 4.5581e-10) (1.10411e-09 2.5974e-10 3.72693e-10) (1.00755e-09 1.0656e-10 3.94038e-10) (9.79913e-10 -7.06063e-11 4.91229e-10) (7.90276e-10 -2.09162e-10 4.5224e-10) (3.82746e-10 -1.84453e-10 1.66035e-10) (1.01955e-10 -7.31342e-11 -2.51777e-11) (6.81345e-11 -4.43683e-11 -1.12475e-10) (8.00323e-11 -9.20236e-12 -1.05101e-10) (1.05677e-10 1.17039e-11 -2.90193e-11) (1.3666e-10 2.91818e-11 5.2081e-11) (9.71233e-11 3.24784e-11 1.10051e-10) (4.55836e-11 2.35746e-11 1.14991e-10) (2.07661e-11 7.98846e-12 8.06244e-11) (1.00977e-11 -2.44545e-12 3.10722e-11) (8.38908e-13 -2.52736e-12 4.45663e-12) (-1.49843e-11 -8.82081e-12 3.18643e-12) (-1.84006e-10 -5.0831e-11 1.70867e-11) (-3.1157e-10 -6.52579e-11 4.82174e-11) (-5.5007e-11 -1.17566e-11 1.85843e-11) (9.01704e-12 8.3864e-13 4.19414e-12) (2.88706e-10 3.7296e-11 8.30382e-12) (7.2678e-10 7.22667e-11 -1.44624e-10) (6.92855e-10 3.04768e-11 -5.0455e-10) (1.11472e-11 -7.91957e-12 -8.81339e-10) (-5.73799e-09 1.60672e-10 -3.07083e-09) (-4.01519e-08 1.61347e-09 -4.38891e-09) (-1.08894e-08 -3.92626e-10 7.49938e-10) (-3.69212e-10 -1.66765e-10 2.07231e-10) (-8.27171e-12 -4.95547e-11 5.46057e-11) (-4.78034e-12 -6.61374e-12 -4.41507e-12) (-8.12677e-11 -1.68906e-11 -1.51419e-10) (-1.54693e-10 2.58979e-13 -3.08939e-10) (-9.80752e-11 1.13734e-11 -2.23946e-10) (-1.66326e-11 1.41689e-11 -9.84234e-11) (2.90868e-11 1.6399e-11 -5.56505e-11) (1.42714e-10 3.79956e-11 -7.09529e-11) (4.18707e-10 7.80469e-11 -5.76844e-11) (7.08029e-10 1.22541e-10 4.36925e-11) (8.75639e-10 1.67569e-10 1.69412e-10) (1.06964e-09 2.19818e-10 2.65997e-10) (1.32424e-09 1.98527e-10 3.7622e-10) (1.44457e-09 8.30116e-11 5.16611e-10) (1.10922e-09 -7.06502e-11 5.00099e-10) (4.91911e-10 -1.17813e-10 2.44919e-10) (1.02805e-10 -5.65544e-11 2.82743e-11) (2.18259e-11 -2.41612e-11 -2.75942e-11) (2.76431e-11 -2.25491e-11 -9.30287e-11) (4.711e-11 -3.90448e-12 -5.08378e-11) (1.00892e-10 7.24222e-12 8.99557e-12) (1.87895e-10 2.79452e-11 1.31446e-10) (1.62491e-10 3.15325e-11 2.03738e-10) (8.46739e-11 1.38105e-11 1.44136e-10) (2.84332e-11 -1.1539e-12 5.24422e-11) (2.9923e-12 -2.57173e-12 7.62234e-12) (-6.25414e-12 -3.68458e-12 2.22509e-12) (-1.0824e-10 -2.58509e-11 7.35869e-12) (-3.01382e-10 -5.12772e-11 3.22812e-11) (-1.4217e-10 -2.49774e-11 2.72743e-11) (-4.68242e-13 -3.00537e-13 5.03039e-13) (9.75606e-11 6.72504e-12 -7.21511e-12) (4.73933e-10 4.32275e-11 -9.76617e-11) (6.31722e-10 5.19192e-11 -2.90301e-10) (3.12283e-10 2.48719e-11 -4.42548e-10) (-3.24313e-10 2.69456e-11 -6.32857e-10) (-6.3843e-09 3.21563e-10 -1.77126e-09) (-2.44137e-08 1.00191e-09 -8.00591e-10) (-1.65044e-09 -1.53775e-10 2.85596e-10) (-5.84972e-11 -6.09349e-11 1.01708e-10) (1.38914e-12 -2.02823e-11 3.28416e-11) (4.98419e-14 -1.29795e-12 -2.00865e-12) (-5.0812e-12 -4.19526e-12 -7.386e-11) (-1.33706e-12 -2.01692e-12 -1.23768e-10) (1.39139e-11 -2.17996e-12 -8.44473e-11) (2.95574e-11 2.08963e-12 -5.29083e-11) (8.13077e-11 1.07684e-11 -5.49284e-11) (2.44308e-10 3.12013e-11 -7.1561e-11) (5.32152e-10 6.01508e-11 -5.00516e-11) (8.52991e-10 9.48188e-11 4.48376e-11) (1.18869e-09 1.3844e-10 1.69455e-10) (1.64543e-09 1.95648e-10 2.75393e-10) (2.19915e-09 1.99587e-10 4.32933e-10) (2.37725e-09 9.75708e-11 5.90411e-10) (1.83103e-09 -5.05363e-11 5.3077e-10) (9.64321e-10 -1.17742e-10 2.54235e-10) (3.9476e-10 -9.09388e-11 2.10868e-11) (2.1679e-10 -5.36896e-11 -8.95987e-11) (2.55212e-10 -3.52204e-11 -1.52437e-10) (3.83815e-10 -1.6009e-11 -7.28499e-11) (6.67143e-10 5.39416e-12 1.65614e-10) (8.35579e-10 3.64454e-11 4.53886e-10) (6.74961e-10 3.08973e-11 4.71006e-10) (4.18771e-10 3.20161e-12 2.78043e-10) (2.1734e-10 -1.38782e-11 1.08761e-10) (7.77265e-11 -1.31843e-11 2.81222e-11) (7.40441e-12 -3.66816e-12 3.82877e-12) (-3.49936e-12 -2.62126e-12 2.77047e-12) (-7.51701e-12 -3.61852e-12 5.3464e-12) (2.44074e-12 -1.22452e-12 2.14357e-12) (1.65922e-10 -3.98582e-12 2.48689e-12) (7.70949e-10 1.99474e-11 -7.52928e-11) (1.27718e-09 4.74521e-11 -2.35595e-10) (1.08922e-09 4.13846e-11 -4.07101e-10) (3.60708e-10 2.21856e-11 -3.40546e-10) (-8.08053e-11 1.91125e-11 -1.60664e-10) (-2.78266e-09 2.39154e-10 -4.00411e-10) (-8.31925e-09 4.0305e-10 1.70263e-10) (-8.81374e-11 -1.88559e-11 5.70137e-11) (3.8957e-12 -2.72209e-11 7.46077e-11) (2.244e-11 -1.09581e-11 3.37253e-11) (2.75644e-11 -2.33618e-12 -3.85133e-12) (7.87096e-11 -9.49013e-13 -5.60903e-11) (1.33809e-10 -3.12472e-12 -9.0114e-11) (1.99672e-10 -7.87924e-12 -9.14949e-11) (3.35723e-10 -5.28405e-12 -8.78124e-11) (6.60188e-10 1.28859e-11 -7.70925e-11) (1.32201e-09 4.58898e-11 -2.66133e-11) (2.3333e-09 8.61829e-11 1.31286e-10) (3.63001e-09 1.47776e-10 4.38113e-10) (5.28036e-09 2.29162e-10 7.94753e-10) (7.55113e-09 3.66317e-10 1.10466e-09) (1.02709e-08 4.28793e-10 1.54829e-09) (1.2002e-08 2.8981e-10 1.99888e-09) (1.12905e-08 -2.87453e-11 1.95653e-09) (8.47058e-09 -3.10859e-10 1.22097e-09) (5.49155e-09 -3.51256e-10 2.53229e-10) (3.85336e-09 -2.28615e-10 -4.08356e-10) (3.55417e-09 -1.39575e-10 -5.29726e-10) (3.97943e-09 -8.14562e-11 1.51297e-11) (4.76884e-09 -3.60125e-11 9.7981e-10) (5.06391e-09 2.51608e-11 1.72765e-09) (4.51624e-09 1.68197e-11 1.72358e-09) (3.65456e-09 -3.89692e-11 1.23009e-09) (2.69415e-09 -8.44197e-11 7.21456e-10) (1.6348e-09 -8.6038e-11 3.91932e-10) (7.28847e-10 -5.59482e-11 2.07896e-10) (3.19138e-10 -3.09395e-11 1.19941e-10) (3.472e-10 -2.61546e-11 1.1137e-10) (9.71022e-10 -3.06351e-11 1.40645e-10) (2.53491e-09 -1.70389e-11 8.03228e-11) (4.26039e-09 1.60884e-11 -1.24832e-10) (4.7698e-09 3.8274e-11 -4.52838e-10) (3.48496e-09 3.35525e-11 -7.49208e-10) (1.1536e-09 4.56028e-11 -4.74552e-10) (9.32285e-12 7.34254e-12 -2.68565e-11) (-9.0541e-10 1.17846e-10 -6.40325e-12) (-1.44502e-09 8.89793e-11 1.36545e-10) (3.65261e-12 -2.32935e-12 1.85706e-11) (1.81345e-11 -9.48399e-12 5.60108e-11) (3.00168e-11 -3.14321e-12 3.44829e-11) (7.29468e-11 1.86216e-12 1.063e-11) (1.9158e-10 5.36292e-12 -1.94397e-11) (3.33148e-10 1.75246e-12 -3.4474e-11) (4.90707e-10 -5.99851e-12 -3.19159e-11) (7.66179e-10 -5.88989e-12 -9.81175e-12) (1.39361e-09 7.84085e-12 6.78395e-11) (2.67555e-09 2.93223e-11 2.72641e-10) (4.77637e-09 4.60307e-11 7.1131e-10) (7.74395e-09 7.33788e-11 1.43979e-09) (1.18171e-08 1.49916e-10 2.30664e-09) (1.75079e-08 2.92981e-10 3.13067e-09) (2.42161e-08 3.68193e-10 4.08551e-09) (2.83948e-08 2.1524e-10 4.7494e-09) (2.60553e-08 -1.32901e-10 4.18616e-09) (1.80854e-08 -3.49119e-10 2.22503e-09) (1.06565e-08 -3.05714e-10 2.14737e-10) (7.2533e-09 -1.49572e-10 -8.5849e-10) (6.37598e-09 -9.07674e-11 -8.50829e-10) (6.75534e-09 -4.28006e-11 1.49243e-10) (7.99453e-09 -2.35762e-11 1.67296e-09) (8.81671e-09 -1.41157e-12 2.85117e-09) (8.03079e-09 -3.31949e-11 2.82753e-09) (6.11823e-09 -8.10352e-11 1.98621e-09) (3.86104e-09 -9.30838e-11 1.16203e-09) (1.9519e-09 -6.73512e-11 6.4299e-10) (8.76496e-10 -3.60519e-11 3.4746e-10) (6.09945e-10 -2.03328e-11 2.24735e-10) (1.08043e-09 -1.70429e-11 2.14625e-10) (2.69597e-09 -1.51985e-11 1.72277e-10) (4.96348e-09 -1.3878e-11 -1.77192e-11) (6.11994e-09 -1.5388e-11 -3.38416e-10) (5.04646e-09 -1.30838e-11 -6.87431e-10) (2.29533e-09 -6.00228e-13 -6.06738e-10) (2.2492e-10 1.0769e-11 -9.63446e-11) (-1.68134e-10 1.79991e-11 -7.64194e-12) (-6.29127e-10 6.86322e-11 6.85729e-11) (-5.74277e-11 6.43802e-12 1.80871e-11) (3.38014e-12 1.41854e-13 1.49522e-12) (1.63938e-13 -2.13134e-13 4.11611e-12) (3.04379e-13 -1.7089e-13 7.65708e-12) (5.70498e-12 8.70649e-14 7.18496e-12) (2.08639e-11 3.51172e-13 1.12453e-11) (4.1927e-11 2.10207e-13 1.41393e-11) (5.97723e-11 -3.91907e-13 1.18911e-11) (8.39506e-11 -4.94123e-13 9.87828e-12) (1.45075e-10 1.56173e-13 1.61897e-11) (2.87354e-10 9.62193e-13 4.05134e-11) (5.38677e-10 7.50307e-13 1.00774e-10) (9.07486e-10 -1.17375e-12 2.14719e-10) (1.41165e-09 1.16078e-12 3.59211e-10) (2.09502e-09 6.6071e-12 4.87268e-10) (2.81614e-09 7.47845e-12 6.03101e-10) (2.96416e-09 -4.78096e-12 6.18532e-10) (2.17289e-09 -1.70456e-11 4.17506e-10) (1.13441e-09 -1.22091e-11 1.18979e-10) (6.20052e-10 -7.96166e-12 -6.84553e-11) (5.15393e-10 -1.22614e-12 -1.73487e-10) (5.07048e-10 -2.52817e-12 -1.54675e-10) (5.866e-10 7.87344e-13 -2.1912e-11) (7.792e-10 1.68847e-12 1.73749e-10) (8.38524e-10 9.29253e-13 3.10228e-10) (6.09122e-10 -2.66914e-12 2.66728e-10) (3.21216e-10 -3.85185e-12 1.50616e-10) (1.33388e-10 -2.73669e-12 7.31507e-11) (4.96332e-11 -1.54492e-12 3.65912e-11) (2.40152e-11 -7.7729e-13 1.91988e-11) (3.30289e-11 -4.50414e-13 1.36686e-11) (1.12626e-10 -2.53038e-13 1.15311e-11) (2.94502e-10 -2.81059e-13 -4.9344e-12) (4.4514e-10 -8.59672e-13 -3.41779e-11) (4.17362e-10 -1.15764e-12 -5.9126e-11) (2.20781e-10 -1.41777e-12 -5.2555e-11) (3.40935e-11 -4.91817e-13 -1.36548e-11) (-1.16795e-11 -1.20137e-13 -1.04472e-12) (-9.24296e-11 9.15621e-13 8.12375e-12) (-1.78525e-11 1.02927e-12 1.8805e-12) (1.1007e-12 2.16256e-13 1.21743e-13) (-3.12001e-10 -2.44601e-11 -2.81639e-10) (-1.27496e-11 7.81112e-12 -1.01396e-11) (2.14005e-10 1.33219e-10 1.50373e-10) (2.07018e-09 8.7887e-10 1.49024e-09) (4.24296e-09 1.45188e-09 3.18767e-09) (3.33972e-09 7.31698e-10 2.57299e-09) (1.24615e-09 -1.04767e-10 8.59909e-10) (3.31564e-10 -2.62178e-10 1.19239e-10) (7.70078e-11 -2.89124e-10 -9.62187e-11) (-1.40374e-10 -2.41474e-10 -2.41379e-10) (-4.55017e-10 -7.41263e-11 -3.89184e-10) (-7.45475e-10 1.70888e-10 -4.65098e-10) (-4.73592e-10 1.10771e-10 -2.65398e-10) (-8.64413e-11 -3.48281e-11 -5.90269e-11) (3.0294e-12 -1.29276e-10 -4.12549e-11) (7.60413e-11 -1.76314e-10 -4.826e-11) (2.4611e-11 -2.86398e-11 -1.07027e-11) (2.46078e-12 3.46109e-12 6.048e-12) (-2.41009e-11 9.02393e-11 2.01505e-10) (-1.1345e-10 2.22364e-10 7.26392e-10) (-7.59028e-11 2.48758e-10 7.9827e-10) (3.53628e-11 1.93248e-10 3.49394e-10) (5.23291e-11 1.18418e-10 7.44579e-11) (3.06229e-11 7.08774e-11 -1.42249e-11) (4.13998e-12 3.796e-11 -4.68713e-11) (-2.39426e-11 1.18276e-11 -7.59622e-11) (-5.20936e-11 -2.57481e-11 -9.77268e-11) (-7.63394e-11 -6.88584e-11 -1.05445e-10) (-1.17631e-10 -1.04909e-10 -1.12746e-10) (-1.70912e-10 -1.00031e-10 -1.17352e-10) (-1.76268e-10 -3.68328e-11 -1.03675e-10) (-1.06079e-10 2.70177e-11 -6.24254e-11) (-3.5495e-11 4.49167e-11 -2.11888e-11) (-2.79585e-12 4.90277e-11 5.0133e-12) (1.37225e-11 3.80319e-11 2.5691e-11) (9.9847e-12 4.81378e-12 1.70164e-11) (7.28595e-12 -1.74456e-11 4.08506e-12) (-4.12796e-12 -1.15659e-10 -6.95048e-11) (-1.49382e-10 -2.32922e-10 -3.18455e-10) (-4.2226e-10 -1.82054e-10 -5.20023e-10) (-8.24709e-10 -4.09646e-10 -5.77436e-10) (-2.20233e-11 -1.78205e-11 -3.56597e-11) (1.16861e-10 7.60501e-11 3.96469e-11) (1.52155e-09 9.15305e-10 8.87153e-10) (4.2169e-09 1.91103e-09 2.61947e-09) (4.72195e-09 1.25799e-09 2.85407e-09) (2.15748e-09 -1.25009e-11 1.25138e-09) (3.46183e-10 -2.05391e-10 1.96349e-10) (1.44641e-11 -9.08967e-11 9.47726e-12) (-8.71789e-12 -2.13163e-11 -6.0898e-12) (1.71752e-13 3.34932e-13 -2.26281e-13) (1.77837e-11 1.80695e-11 7.12593e-12) (1.7592e-11 3.64571e-12 1.42651e-11) (-1.52164e-13 -6.65019e-11 6.46162e-12) (-2.94587e-10 -6.34392e-10 -3.35362e-10) (-1.02913e-09 -9.97634e-10 -1.27102e-09) (-9.9597e-10 -1.63797e-10 -1.06181e-09) (-4.8328e-10 2.68332e-10 -2.45197e-10) (-3.25457e-10 3.60287e-10 2.37959e-10) (-3.47964e-10 4.2111e-10 9.56375e-10) (-2.29458e-10 1.44639e-10 1.15205e-09) (-1.63639e-11 -1.068e-11 5.29854e-10) (5.16982e-11 4.9417e-12 1.04044e-10) (9.18216e-11 2.64946e-11 1.37906e-11) (2.04272e-10 5.88805e-11 -8.3051e-11) (2.54031e-10 4.39335e-11 -1.90127e-10) (1.54541e-10 -3.96021e-12 -1.82622e-10) (1.57278e-11 -1.75088e-11 -9.11429e-11) (-1.26455e-10 -3.7124e-11 -1.12386e-10) (-6.21377e-10 -1.16307e-10 -2.44811e-10) (-7.87561e-10 -1.93094e-10 -2.79574e-10) (-2.31708e-10 -1.05488e-10 -1.16014e-10) (-8.87949e-13 -8.99479e-12 -7.72949e-12) (7.77066e-11 5.43796e-12 6.52709e-12) (2.38423e-10 9.4741e-11 5.52745e-11) (1.14754e-10 9.1232e-11 1.89316e-11) (-1.64991e-11 3.3119e-11 -1.95433e-11) (-8.10757e-10 9.38495e-11 -3.84437e-10) (-3.16699e-09 -3.26358e-10 -1.32861e-09) (-2.98311e-09 -8.25912e-10 -1.44628e-09) (-1.23566e-10 -1.42097e-10 -8.06646e-11) (-1.83907e-11 -1.04969e-12 4.83944e-12) (-5.7506e-11 1.11192e-10 7.84434e-11) (2.99167e-12 3.14641e-10 2.08755e-10) (2.32055e-10 3.80615e-10 3.43168e-10) (4.42223e-10 2.32398e-10 4.82465e-10) (3.82288e-10 -6.58394e-11 4.92037e-10) (2.66352e-10 -2.96224e-10 4.67326e-10) (3.02563e-10 -3.36174e-10 3.80784e-10) (5.46891e-10 -2.03758e-10 2.77927e-10) (9.78284e-10 2.7833e-11 1.88568e-10) (7.46995e-10 1.59149e-10 3.02637e-11) (6.48271e-11 1.10621e-11 -3.66798e-11) (-6.25042e-10 -3.95574e-10 -7.74417e-10) (-6.4513e-09 -3.3617e-09 -5.54627e-09) (-8.73127e-09 -3.41713e-09 -6.51121e-09) (-2.74023e-09 -2.2714e-10 -1.60465e-09) (-2.47996e-10 1.91918e-10 5.74106e-12) (5.7096e-11 3.47389e-10 5.1729e-10) (4.74875e-10 2.2738e-10 1.39735e-09) (5.07419e-10 -1.96594e-10 1.23681e-09) (3.33642e-10 -1.92378e-10 4.84174e-10) (2.87386e-10 -3.50189e-11 9.58143e-11) (6.44205e-10 1.75386e-10 -1.66838e-10) (9.22218e-10 4.52002e-10 -5.64357e-10) (3.77347e-10 2.7026e-10 -4.25361e-10) (-1.47014e-11 4.52216e-11 -9.88521e-11) (-3.19652e-10 1.68137e-11 -1.00353e-10) (-8.66078e-10 -6.59891e-11 -1.15768e-10) (-5.47877e-10 -1.26315e-10 -1.61045e-10) (-8.53754e-11 -9.4229e-11 -1.20226e-10) (1.26205e-10 -1.32692e-10 -1.60184e-10) (5.13916e-10 -1.65805e-10 -1.74485e-10) (8.23281e-10 -8.6306e-12 -2.78278e-11) (6.29401e-10 2.26225e-10 1.12356e-10) (1.45041e-10 2.42591e-10 8.0679e-11) (-2.12879e-10 3.09194e-10 2.50043e-11) (-1.09524e-09 3.53633e-10 -1.97182e-10) (-1.35849e-09 -1.97042e-10 -4.93505e-10) (-6.23539e-10 -4.32845e-10 -3.80822e-10) (-9.91154e-11 -2.86724e-11 2.72554e-11) (-2.06616e-10 5.10764e-11 1.35157e-10) (-4.07149e-10 2.4572e-10 3.05163e-10) (-4.25073e-10 3.3884e-10 3.93547e-10) (-3.28465e-10 2.36671e-10 4.50688e-10) (-2.79352e-10 1.16492e-11 5.40493e-10) (-2.15296e-10 -3.41629e-10 6.82012e-10) (9.35728e-11 -6.60534e-10 6.67807e-10) (5.20825e-10 -6.02733e-10 3.90325e-10) (7.27788e-10 -2.94022e-10 6.04479e-11) (5.30142e-10 -4.61733e-12 -1.51337e-10) (1.27274e-10 6.13033e-11 -1.86611e-10) (-4.86302e-10 3.01069e-11 -8.46867e-10) (-4.7354e-09 -1.31753e-09 -4.21237e-09) (-8.32426e-09 -3.68936e-09 -5.56852e-09) (-3.33021e-09 -1.73126e-09 -1.46801e-09) (-1.53308e-10 -2.61491e-11 1.50993e-11) (1.17349e-10 3.75162e-10 2.55586e-10) (8.17537e-10 1.27427e-09 8.59434e-10) (8.26908e-10 8.05009e-10 8.51992e-10) (3.61674e-10 1.01762e-10 3.63886e-10) (1.39922e-10 -5.26159e-11 7.64273e-11) (1.02216e-10 -3.31843e-11 -2.271e-11) (1.36052e-10 3.6646e-11 -1.18211e-10) (1.0956e-10 1.15515e-10 -1.76394e-10) (1.57339e-11 6.08275e-11 -8.44976e-11) (-1.22093e-11 1.15148e-11 -2.0096e-11) (-2.63889e-11 -2.4602e-13 -1.52768e-11) (-3.6333e-11 -1.00757e-11 -2.88727e-11) (-2.32477e-11 -1.72947e-11 -5.19642e-11) (9.82471e-12 -1.90676e-11 -6.36522e-11) (5.36854e-11 -2.19555e-11 -5.89656e-11) (1.38752e-10 -3.06507e-11 -5.31638e-11) (3.14128e-10 -1.90902e-11 -2.25793e-11) (5.24591e-10 9.08186e-11 6.92472e-11) (4.69259e-10 2.68645e-10 1.66228e-10) (1.18525e-10 2.29032e-10 1.14659e-10) (-4.45747e-11 7.63386e-11 2.44685e-11) (-1.04395e-10 3.51983e-12 -1.50089e-11) (-1.20968e-10 -5.3113e-11 -2.0216e-11) (-6.23686e-11 -1.73453e-11 2.53967e-10) (-2.30192e-10 1.07003e-11 3.19521e-10) (-4.84018e-10 7.0575e-11 3.56845e-10) (-6.30592e-10 8.86717e-11 4.12172e-10) (-5.08536e-10 -3.8087e-11 4.78642e-10) (-2.83661e-10 -2.98226e-10 5.25075e-10) (2.16381e-11 -7.19801e-10 5.73817e-10) (4.4282e-10 -1.01897e-09 3.81914e-10) (4.73115e-10 -6.99208e-10 -4.97577e-12) (1.41743e-10 -2.22483e-10 -1.27254e-10) (-5.13375e-11 -4.67504e-11 -1.27271e-10) (-8.77386e-10 1.52026e-10 -6.57733e-10) (-3.24535e-09 5.19069e-10 -2.06914e-09) (-3.81393e-09 -4.04369e-10 -2.81766e-09) (-1.80351e-09 -1.32222e-09 -1.57132e-09) (-4.01425e-10 -9.60537e-10 -2.51279e-10) (2.48749e-11 -1.87665e-10 1.0973e-10) (2.21762e-10 2.22725e-10 3.59111e-10) (7.68469e-10 1.60744e-09 1.04295e-09) (5.1758e-10 1.20341e-09 7.24682e-10) (6.81021e-11 8.82528e-11 9.98372e-11) (7.51178e-12 -1.70532e-11 6.46193e-12) (-5.94316e-12 -3.32278e-11 -2.9321e-11) (-6.17277e-11 8.74795e-12 -1.95578e-10) (-1.19747e-10 1.4327e-10 -5.13058e-10) (-6.17185e-12 1.03561e-10 -4.4284e-10) (8.1752e-11 2.65806e-11 -1.94613e-10) (8.30853e-11 1.46103e-11 -6.04705e-11) (5.67059e-11 2.07495e-11 -5.95884e-12) (3.08758e-11 2.21413e-11 1.21661e-11) (1.14134e-11 1.41757e-11 9.10358e-12) (2.61175e-12 4.46843e-12 8.56106e-13) (1.37097e-12 1.83142e-12 -3.68619e-12) (2.79258e-12 1.78622e-12 -2.04684e-11) (4.90791e-12 7.41877e-12 -1.72097e-11) (2.18377e-11 4.2817e-11 1.22493e-12) (8.95125e-11 2.07936e-10 1.14564e-10) (6.8831e-11 2.18517e-10 1.83008e-10) (1.27462e-11 6.83406e-11 1.15246e-10) (-4.20154e-12 7.05846e-12 1.40239e-10) (6.90834e-10 -3.18975e-10 1.6447e-09) (1.38991e-10 -1.70773e-10 6.00506e-10) (-5.31882e-11 -4.29015e-11 1.49337e-10) (-9.75081e-11 -3.21788e-11 1.05688e-10) (-7.19119e-11 -7.86906e-11 1.30649e-10) (1.22065e-11 -2.5941e-10 2.26423e-10) (1.35603e-10 -5.49553e-10 2.39959e-10) (5.41077e-11 -5.58336e-10 3.08571e-11) (-2.30144e-10 -4.83272e-10 -1.88411e-10) (-1.382e-09 -6.48354e-10 -6.57612e-10) (-4.51213e-09 -4.74465e-10 -1.46995e-09) (-6.03226e-09 1.74134e-10 -1.98936e-09) (-2.99578e-09 1.05681e-10 -1.747e-09) (-6.26633e-10 -2.49133e-10 -1.18536e-09) (8.13484e-11 -7.56277e-10 -1.07057e-09) (2.8296e-10 -1.09403e-09 -5.41486e-10) (1.19891e-10 -3.80867e-10 3.44458e-11) (1.09995e-10 2.8968e-11 2.14516e-10) (8.02882e-10 1.14366e-09 1.41797e-09) (1.2687e-09 1.54051e-09 1.95898e-09) (4.73033e-10 2.74938e-10 7.34786e-10) (2.0041e-11 -2.32773e-11 4.75863e-11) (-7.6734e-11 -3.51519e-11 -9.25959e-11) (-6.35758e-10 1.08114e-10 -1.31133e-09) (-7.02664e-10 2.24267e-10 -2.70232e-09) (-4.97226e-11 -1.51047e-11 -2.00584e-09) (2.07355e-10 -2.6633e-12 -7.01527e-10) (1.47847e-10 7.04114e-11 -1.52389e-10) (1.84698e-10 1.59619e-10 -2.61365e-11) (3.29055e-10 2.98679e-10 8.32841e-11) (5.09373e-10 3.65367e-10 2.04862e-10) (5.90655e-10 3.1373e-10 2.45442e-10) (4.08908e-10 1.67516e-10 1.3147e-10) (7.14508e-11 3.35185e-11 7.85964e-12) (-1.24651e-11 1.13638e-11 -9.11062e-12) (-3.14991e-10 1.39864e-10 -5.68779e-11) (-5.25929e-10 3.47314e-10 9.04642e-11) (-2.47329e-10 3.303e-10 3.27487e-10) (9.57763e-11 2.56752e-10 7.9973e-10) (6.87537e-10 -3.38358e-11 1.75023e-09) (2.42553e-09 -1.58195e-09 3.32475e-09) (9.10136e-10 -6.26316e-10 9.03606e-10) (1.79471e-10 -1.03135e-10 1.1938e-10) (4.19037e-11 -1.72326e-11 2.62854e-11) (2.71503e-11 -2.37324e-11 3.73892e-11) (6.7023e-12 -8.55766e-11 8.04492e-11) (-1.16633e-10 -2.12742e-10 8.65783e-11) (-6.66539e-10 -4.84918e-10 -8.11068e-11) (-2.85131e-09 -9.5245e-10 -7.62176e-10) (-7.38208e-09 -1.2217e-09 -1.68796e-09) (-9.32428e-09 -1.0304e-09 -2.07345e-09) (-4.95668e-09 -5.92702e-10 -1.98205e-09) (-1.29922e-09 -2.87776e-10 -1.60797e-09) (-9.43328e-11 -3.70255e-10 -1.83191e-09) (4.67981e-10 -8.02658e-10 -1.40627e-09) (3.27859e-10 -8.22675e-10 -4.49485e-10) (2.19081e-11 -1.77209e-10 4.21733e-11) (-3.57332e-11 7.61326e-11 2.55395e-10) (1.66489e-10 9.39115e-10 1.37091e-09) (6.67889e-10 9.27892e-10 1.84818e-09) (2.05475e-10 5.2144e-11 5.48779e-10) (-2.13772e-11 -1.76048e-11 -1.84921e-13) (-5.7246e-10 -7.79497e-11 -1.00191e-09) (-5.30955e-10 1.07324e-10 -3.67607e-09) (5.505e-10 6.91477e-11 -4.11888e-09) (4.83973e-10 6.97899e-11 -1.58995e-09) (5.92815e-11 6.50609e-11 -1.32189e-10) (7.4849e-12 9.96506e-11 1.96587e-11) (2.16338e-11 2.56725e-10 1.1903e-10) (1.43574e-10 3.02686e-10 1.19903e-10) (4.88414e-10 3.90225e-10 1.18227e-10) (1.17914e-09 4.88425e-10 1.35549e-10) (1.56614e-09 5.09903e-10 8.76284e-11) (9.00466e-10 3.73995e-10 -3.10551e-11) (9.64864e-11 1.32839e-10 -4.26501e-11) (-2.32864e-10 2.39886e-10 -6.96137e-11) (-8.70136e-10 5.28676e-10 1.35883e-10) (-5.12513e-10 3.73665e-10 6.87774e-10) (3.6034e-10 4.5861e-11 2.3902e-09) (2.36489e-09 -1.2105e-09 4.75061e-09) (2.61886e-09 -2.64887e-09 2.39065e-09) (8.26192e-10 -7.46365e-10 3.73305e-10) (1.73483e-10 -6.90594e-11 2.79525e-11) (8.1777e-11 2.68079e-11 3.94181e-11) (5.54121e-11 5.15938e-11 1.10796e-10) (-2.66062e-11 1.09017e-11 1.22314e-10) (-1.79405e-10 -5.78689e-11 8.16274e-11) (-9.913e-10 -3.08951e-10 -1.72835e-10) (-3.33234e-09 -7.68307e-10 -8.21637e-10) (-6.39351e-09 -1.18193e-09 -1.08147e-09) (-5.8643e-09 -1.0466e-09 -1.47391e-09) (-2.41876e-09 -5.43964e-10 -1.99059e-09) (-7.04984e-10 -4.07446e-10 -2.83589e-09) (3.06275e-10 -5.61035e-10 -2.51722e-09) (3.02421e-10 -6.03638e-10 -8.40379e-10) (2.72196e-11 -3.34893e-10 -1.3205e-11) (-1.89595e-10 -1.99477e-10 4.24875e-10) (-5.17782e-10 3.93919e-10 1.39802e-09) (-2.47223e-10 8.76935e-10 1.6403e-09) (-6.49112e-11 2.46198e-10 4.964e-10) (-1.28355e-10 4.20199e-12 1.65773e-12) (-1.07123e-09 -2.40326e-10 -1.25588e-09) (-7.77767e-10 -8.45458e-10 -4.3123e-09) (8.96779e-10 -8.90674e-10 -5.54769e-09) (9.61158e-10 8.15606e-11 -2.84265e-09) (2.65646e-10 3.52756e-10 -4.83905e-10) (1.42654e-10 4.91597e-10 1.22176e-10) (3.15699e-10 9.19927e-10 9.28173e-10) (5.56614e-10 7.69422e-10 1.18189e-09) (4.89849e-10 3.8624e-10 6.07507e-10) (3.21868e-10 1.98661e-10 1.68014e-10) (3.49933e-10 1.94967e-10 -2.30655e-11) (5.50552e-10 3.16748e-10 -2.47341e-10) (5.16617e-10 4.45013e-10 -4.58707e-10) (9.04879e-11 4.51809e-10 -4.2279e-10) (-4.45143e-10 5.67417e-10 -3.18994e-10) (-7.98423e-10 5.65382e-10 1.78797e-10) (-4.10941e-10 2.31908e-10 1.05263e-09) (1.02775e-09 -9.58104e-10 3.71264e-09) (3.36259e-09 -3.21943e-09 5.11519e-09) (9.40122e-10 -1.34669e-09 1.15128e-09) (1.01472e-10 -1.75614e-10 1.6567e-10) (5.91121e-12 -1.21888e-11 4.79609e-11) (1.50919e-11 2.60559e-11 1.33973e-10) (4.88738e-11 6.09816e-11 2.11663e-10) (1.34343e-11 2.13549e-11 4.45858e-11) (-2.01324e-11 1.17141e-11 -2.47345e-11) (-7.09212e-10 2.09361e-11 -5.99645e-10) (-3.27129e-09 -4.49246e-10 -1.1873e-09) (-5.84582e-09 -1.43744e-09 -8.93067e-10) (-3.10552e-09 -1.12027e-09 -1.16887e-09) (-6.68681e-10 -5.15481e-10 -1.67159e-09) (4.9718e-10 -3.53812e-10 -2.82358e-09) (6.34267e-10 -2.75498e-10 -1.58835e-09) (6.35211e-11 -1.08091e-10 -1.23984e-10) (-1.30647e-10 -1.69612e-10 2.49021e-10) (-1.03282e-09 -1.57171e-10 2.19855e-09) (-9.71215e-10 4.1062e-10 2.77076e-09) (-3.53433e-10 3.02197e-10 8.54497e-10) (-3.53331e-10 1.28774e-10 2.86697e-11) (-1.25606e-09 -4.22435e-11 -1.0662e-09) (-7.6552e-10 -9.8486e-10 -2.74982e-09) (4.98599e-10 -1.96605e-09 -4.513e-09) (5.54151e-10 -6.96887e-10 -3.36889e-09) (1.69425e-10 3.86833e-10 -1.35956e-09) (1.01313e-10 6.93123e-10 -4.20155e-10) (2.56423e-10 9.67082e-10 1.62382e-10) (7.33546e-10 1.19518e-09 9.82491e-10) (1.31441e-09 1.13721e-09 1.72492e-09) (1.04573e-09 6.83263e-10 1.34342e-09) (2.82399e-10 1.99888e-10 3.78388e-10) (1.41382e-11 1.85369e-11 1.1901e-11) (1.13035e-11 5.27306e-11 -8.78459e-11) (6.02269e-11 4.40649e-10 -7.6053e-10) (-1.10947e-10 1.12706e-09 -1.46226e-09) (-4.70915e-10 9.80714e-10 -7.87662e-10) (-2.33021e-10 2.70357e-10 5.03621e-11) (-4.58919e-12 -6.08077e-11 7.31688e-10) (1.40602e-09 -1.83751e-09 3.08744e-09) (2.3618e-09 -3.12023e-09 3.30095e-09) (5.42916e-10 -8.45357e-10 1.15494e-09) (-1.5331e-10 -1.99907e-10 4.02305e-10) (-7.36174e-10 -1.45808e-10 5.98863e-10) (-5.07011e-10 -1.09779e-11 4.0965e-10) (-3.04246e-11 1.92514e-11 2.02715e-11) (-1.57274e-12 1.32532e-10 -1.74847e-10) (-2.17625e-10 4.47636e-10 -9.17928e-10) (-8.37589e-10 2.02195e-10 -6.9924e-10) (-2.558e-09 -5.81915e-10 -1.61271e-10) (-3.24556e-09 -1.59961e-09 -1.0859e-10) (-7.93887e-10 -8.96125e-10 -8.9062e-10) (6.27687e-10 -7.11868e-10 -2.28811e-09) (1.57853e-09 -1.33344e-10 -2.47514e-09) (5.42231e-10 7.55896e-11 -5.93272e-10) (3.60835e-12 1.60824e-12 5.37695e-12) (-4.3547e-10 -2.63736e-11 1.03334e-09) (-1.18892e-09 -7.66236e-11 2.90593e-09) (-7.66133e-10 1.26515e-11 1.56927e-09) (-5.76915e-10 1.22855e-10 2.25066e-10) (-1.0424e-09 5.67977e-11 -5.15409e-10) (-3.32676e-10 -4.88296e-10 -7.64921e-10) (5.32577e-10 -1.39209e-09 -1.55295e-09) (6.89521e-10 -9.14821e-10 -1.57139e-09) (3.08897e-10 -4.52979e-12 -8.60433e-10) (1.76345e-10 4.17248e-10 -4.79337e-10) (1.49843e-10 8.46854e-10 -2.87189e-10) (9.01521e-11 9.08494e-10 -7.29242e-12) (9.38235e-11 6.01615e-10 1.9835e-10) (2.43869e-10 4.67697e-10 3.98387e-10) (5.82574e-10 5.23835e-10 7.39552e-10) (5.13222e-10 3.1707e-10 5.87801e-10) (5.98112e-11 3.00303e-11 5.78378e-11) (-2.44991e-11 3.20246e-12 -4.329e-11) (-5.64539e-10 2.07079e-10 -9.3161e-10) (-7.40925e-10 8.98104e-10 -1.73475e-09) (-2.09505e-10 7.85491e-10 -7.99497e-10) (4.32513e-12 9.50412e-11 -9.85867e-12) (1.32561e-10 -9.61565e-11 3.38539e-10) (9.37894e-10 -1.37855e-09 1.89171e-09) (1.52581e-09 -2.06225e-09 2.50246e-09) (2.4143e-10 -2.8843e-10 5.07281e-10) (-1.03835e-09 5.85302e-11 5.90137e-10) (-4.40016e-09 3.17148e-10 1.4205e-09) (-2.01451e-09 1.20798e-10 3.52266e-10) (-4.35961e-10 1.12121e-10 -2.82974e-10) (-5.17752e-10 3.23959e-10 -8.76633e-10) (-5.32845e-10 2.31643e-10 -4.98688e-10) (-6.93261e-10 -1.37239e-11 3.9864e-12) (-1.4272e-09 -6.01057e-10 3.23532e-10) (-7.46849e-10 -8.0136e-10 -2.38784e-10) (2.63013e-10 -1.00705e-09 -1.28546e-09) (1.77288e-09 -8.57012e-10 -2.54909e-09) (1.35556e-09 1.2862e-10 -1.28772e-09) (3.60988e-10 2.3646e-10 -1.2548e-10) (7.95906e-11 1.89979e-10 2.52666e-10) (-2.45898e-10 1.89649e-10 1.17276e-09) (-5.39326e-10 -6.26537e-11 1.08167e-09) (-6.50717e-10 -5.71674e-11 3.80727e-10) (-8.04872e-10 -7.16378e-11 -1.02587e-10) (-2.02462e-10 -2.62141e-10 -1.52196e-10) (4.81383e-10 -1.15652e-09 -3.34928e-10) (1.03658e-09 -1.2623e-09 -6.13721e-10) (6.24883e-10 -2.72463e-10 -3.40122e-10) (6.1825e-10 1.77729e-10 -1.17915e-10) (9.00882e-10 7.29068e-10 1.07737e-10) (6.00888e-10 1.01673e-09 1.73936e-10) (3.35959e-11 7.32503e-10 6.96732e-11) (-1.85493e-10 4.59904e-10 3.86439e-11) (-6.24201e-11 2.15551e-10 7.08276e-11) (1.27248e-10 2.06081e-10 1.64931e-10) (4.38089e-10 2.53228e-10 3.23611e-10) (2.32055e-10 7.65459e-11 1.13662e-10) (4.55343e-12 1.57499e-12 -1.06427e-11) (-4.18566e-10 2.22373e-11 -5.9146e-10) (-1.39016e-09 3.44988e-10 -1.71314e-09) (-6.15302e-10 4.09171e-10 -8.30438e-10) (-1.81593e-11 3.78243e-11 -2.43983e-11) (1.40723e-10 -9.44924e-11 1.99213e-10) (1.93806e-09 -1.74244e-09 2.00395e-09) (2.77427e-09 -2.31568e-09 2.52398e-09) (-2.01995e-10 3.8897e-11 1.01377e-10) (-3.01139e-09 1.16955e-09 2.24605e-10) (-3.55864e-09 8.05507e-10 4.27106e-10) (-9.76106e-10 3.79295e-11 6.39037e-12) (-4.97811e-10 5.13475e-12 -3.194e-10) (-9.62721e-10 1.16933e-10 -6.99612e-10) (-1.02286e-09 1.25651e-10 -2.91897e-10) (-6.47738e-10 -4.99362e-11 8.66829e-11) (-2.16778e-10 -1.7536e-10 2.49053e-11) (6.12385e-11 -4.42061e-10 -2.96894e-10) (9.72925e-10 -1.01732e-09 -1.42619e-09) (9.67602e-10 -3.53113e-10 -1.09579e-09) (3.98536e-10 1.58867e-10 -2.18389e-10) (3.4579e-10 3.72228e-10 1.71526e-10) (2.67327e-10 3.93114e-10 5.75888e-10) (-1.40284e-11 8.14803e-11 3.43028e-10) (-1.94774e-10 -2.30736e-11 1.20093e-10) (-6.1591e-10 -1.12501e-10 2.45845e-11) (-2.52045e-10 -2.59261e-10 6.29902e-12) (3.18486e-10 -1.25752e-09 1.44031e-10) (1.13457e-09 -2.04084e-09 -7.08933e-11) (8.24456e-10 -8.43143e-10 -2.96195e-10) (8.22499e-10 -1.00816e-10 -3.39898e-11) (2.37656e-09 6.74825e-10 9.57495e-10) (4.02037e-09 1.87276e-09 2.63918e-09) (1.88588e-09 1.46789e-09 1.57959e-09) (6.23533e-11 3.97659e-10 2.47191e-10) (-3.0293e-10 2.98303e-10 7.85193e-11) (-2.06182e-10 1.94516e-10 4.15134e-11) (2.4668e-11 9.92375e-11 4.74058e-11) (3.82994e-10 2.02255e-10 1.84819e-10) (4.56912e-10 1.0628e-10 1.44328e-10) (5.03149e-11 6.66665e-12 -1.27589e-11) (-1.3882e-10 1.33488e-11 -2.35643e-10) (-1.12795e-09 1.10054e-10 -1.16515e-09) (-7.53005e-10 1.05278e-10 -7.28017e-10) (-7.98098e-12 -2.72932e-12 -9.90193e-12) (5.90387e-10 -5.03323e-10 4.55833e-10) (2.23889e-09 -2.27334e-09 2.02414e-09) (5.15622e-10 -8.05187e-10 7.90641e-10) (-4.97662e-09 1.24276e-09 -2.55722e-10) (-4.86956e-09 2.1789e-09 -4.36911e-10) (-1.23538e-09 4.28484e-10 1.05801e-10) (-2.07822e-10 1.02433e-11 -4.18965e-12) (-4.2523e-10 1.8805e-11 -3.0323e-10) (-1.08505e-09 9.3953e-11 -7.33915e-10) (-5.96099e-10 -4.71953e-12 -2.26131e-10) (-5.36501e-11 -2.84218e-11 -7.42976e-12) (3.21748e-11 -8.06376e-11 -4.3042e-11) (3.70433e-10 -4.01758e-10 -4.67737e-10) (4.04376e-10 -3.66954e-10 -6.32759e-10) (8.72843e-11 -1.05276e-11 -9.99842e-11) (1.5876e-10 1.45041e-10 8.31636e-11) (5.83986e-10 5.45817e-10 6.69087e-10) (2.54641e-10 2.29729e-10 3.7606e-10) (-9.51891e-12 5.76031e-12 9.03052e-12) (-2.81487e-10 -4.09735e-11 -5.6011e-11) (-1.78241e-10 -1.27826e-10 2.0554e-11) (1.68806e-10 -7.99928e-10 3.45283e-10) (9.71404e-10 -2.43027e-09 5.92504e-10) (5.13112e-10 -1.56874e-09 -2.39472e-10) (2.74631e-10 -3.5441e-10 -2.96209e-10) (5.89545e-10 7.08916e-11 -7.77562e-11) (3.13436e-09 1.13695e-09 1.53898e-09) (7.05445e-09 2.64093e-09 5.93343e-09) (4.01765e-09 1.7152e-09 4.53962e-09) (2.5755e-10 3.14268e-10 7.15864e-10) (-1.82264e-10 1.00219e-10 1.26313e-10) (-2.22267e-10 9.7439e-11 6.29647e-11) (-1.12414e-11 3.80008e-11 2.95196e-11) (1.69639e-10 9.10477e-11 1.06937e-10) (3.44451e-10 8.25142e-11 1.11182e-10) (1.03697e-10 2.29699e-11 -1.25656e-11) (5.54454e-12 1.26563e-11 -6.64678e-11) (-9.09402e-11 -1.18834e-12 -2.22631e-10) (-3.22185e-11 -3.42415e-11 -1.10921e-10) (4.04315e-11 -6.90866e-11 -9.82675e-12) (3.20313e-10 -5.77182e-10 3.27047e-10) (-3.36918e-11 -9.98619e-10 6.68342e-10) (-1.29996e-09 -5.38455e-10 4.1716e-10) (-1.71674e-08 3.47023e-09 -1.77919e-09) (-5.97099e-09 2.25742e-09 -4.9239e-10) (-7.05813e-10 2.72777e-10 7.88184e-11) (-9.83517e-11 2.06483e-11 -3.17543e-11) (-1.6731e-10 2.54222e-11 -3.07814e-10) (-1.29884e-10 -6.84312e-12 -3.69811e-10) (-1.71745e-11 -2.38991e-11 -9.68306e-11) (1.58486e-11 -2.66222e-11 -4.47203e-11) (6.38077e-11 -8.32539e-11 -1.39685e-10) (2.29822e-11 -1.58388e-10 -3.31532e-10) (-1.02666e-10 -6.46586e-11 -2.28009e-10) (-1.59996e-11 1.44651e-11 -1.94886e-12) (2.90272e-10 3.53823e-10 5.21581e-10) (1.03183e-09 6.49159e-10 1.25183e-09) (1.04853e-10 8.18573e-11 1.27286e-10) (-4.91541e-11 4.05512e-12 -2.42527e-11) (-9.39348e-11 -4.93179e-11 -3.29701e-11) (8.15437e-11 -2.88656e-10 1.65435e-10) (8.23766e-10 -1.51639e-09 8.74418e-10) (4.8966e-10 -1.79041e-09 3.30272e-10) (-5.80807e-11 -9.82154e-10 -4.32013e-10) (1.74836e-11 -2.31849e-10 -5.09211e-10) (3.54729e-10 1.6511e-10 -2.82378e-10) (2.38366e-09 1.13958e-09 7.78529e-10) (7.22499e-09 2.47024e-09 5.94249e-09) (5.1086e-09 1.23606e-09 6.3728e-09) (5.36498e-10 1.55686e-10 1.5112e-09) (-1.09345e-10 1.48035e-11 2.09933e-10) (-9.92408e-11 1.90475e-11 7.50414e-11) (-1.06097e-11 1.69222e-11 3.89992e-11) (5.74811e-11 2.91197e-11 7.50932e-11) (9.74906e-11 2.25575e-11 5.8278e-11) (4.45409e-11 8.38851e-12 -2.34513e-14) (3.32266e-11 1.9585e-12 -3.13315e-11) (5.74014e-11 -2.28451e-11 -7.28796e-11) (9.4749e-11 -7.12001e-11 -7.35052e-11) (1.08503e-10 -1.37246e-10 -1.42534e-11) (1.79155e-12 -2.95335e-10 9.83155e-11) (-1.46947e-09 -9.54872e-10 3.88058e-10) (-1.13658e-08 -8.01308e-10 -2.28636e-11) (-3.07648e-08 4.55411e-09 -2.38153e-09) (-6.94244e-09 1.86966e-09 -2.1094e-10) (-4.64608e-10 1.69886e-10 8.29245e-12) (9.29426e-13 9.44281e-12 -3.98746e-11) (3.28456e-10 -6.32611e-12 -5.06988e-10) (4.01301e-10 -4.12047e-11 -5.79234e-10) (1.45114e-10 -3.00331e-11 -2.35135e-10) (4.0772e-11 -2.61615e-11 -1.1818e-10) (-3.17067e-11 -5.11459e-11 -1.99101e-10) (-4.27109e-10 -8.78029e-11 -5.34202e-10) (-1.04145e-09 8.48402e-11 -5.67368e-10) (-2.6081e-10 1.5217e-10 6.19634e-11) (4.46893e-10 4.90831e-10 8.80692e-10) (1.13518e-09 5.50337e-10 1.20911e-09) (4.719e-11 3.00172e-11 4.25664e-11) (-4.63762e-12 -3.20533e-12 -4.45997e-12) (3.63716e-11 -8.34338e-11 3.6242e-11) (5.57436e-10 -7.21742e-10 6.06903e-10) (6.38277e-10 -1.17607e-09 6.69277e-10) (1.0618e-10 -8.90635e-10 4.52969e-11) (-3.27494e-10 -6.78891e-10 -5.48471e-10) (-3.69795e-10 -1.89607e-10 -1.03528e-09) (1.78635e-10 2.52931e-10 -5.58462e-10) (1.56353e-09 8.78108e-10 1.70664e-10) (6.10172e-09 1.88357e-09 4.28513e-09) (4.78992e-09 6.3049e-10 5.62409e-09) (6.1744e-10 -6.48258e-11 1.69296e-09) (-6.95861e-11 -4.96889e-11 3.02629e-10) (-3.39125e-11 -9.7144e-12 7.72268e-11) (1.12214e-11 2.70527e-12 5.58483e-11) (5.9626e-11 7.4842e-12 8.86774e-11) (5.18882e-11 2.53019e-12 5.67168e-11) (1.99487e-11 -9.1013e-13 1.13889e-11) (2.69518e-11 -6.51269e-12 -4.39013e-12) (9.38337e-11 -4.10044e-11 -4.09243e-11) (1.36374e-10 -8.91626e-11 -6.41326e-11) (5.36396e-11 -8.12331e-11 -2.44553e-11) (-1.38765e-10 -1.56569e-10 1.95351e-12) (-5.38954e-09 -1.07847e-09 -5.69835e-11) (-3.07774e-08 3.96788e-10 -1.83776e-09) (-3.81767e-08 3.59115e-09 -1.62736e-09) (-6.66039e-09 1.09489e-09 -2.2054e-10) (-1.10256e-10 3.86849e-11 -4.33373e-11) (3.47054e-10 1.36045e-11 -2.80702e-10) (1.36285e-09 -8.43922e-12 -9.82052e-10) (8.26212e-10 1.91585e-11 -7.21065e-10) (2.14558e-10 -1.14205e-12 -2.78456e-10) (2.55714e-11 -1.53584e-11 -1.38535e-10) (-1.41643e-10 -2.51761e-11 -2.49346e-10) (-1.00816e-09 5.28507e-11 -7.21664e-10) (-1.79982e-09 3.57432e-10 -6.31808e-10) (-2.89964e-10 1.9997e-10 1.11307e-10) (5.4755e-10 4.45171e-10 8.06381e-10) (1.04038e-09 4.09915e-10 8.61781e-10) (1.59496e-10 2.93835e-11 8.65039e-11) (1.10018e-10 -5.78814e-11 5.58663e-11) (4.80597e-10 -4.00482e-10 4.0395e-10) (6.59456e-10 -7.42803e-10 6.70408e-10) (3.02842e-10 -6.43903e-10 3.07197e-10) (-6.46222e-12 -3.54295e-10 -3.83782e-11) (-4.20331e-10 -3.94451e-10 -5.41605e-10) (-8.98773e-10 -3.28329e-11 -1.50368e-09) (-4.08148e-11 2.84325e-10 -6.84625e-10) (9.81471e-10 5.45372e-10 2.45584e-12) (4.79727e-09 1.19713e-09 2.85763e-09) (3.68904e-09 2.51547e-10 3.76667e-09) (5.31911e-10 -1.22702e-10 1.24037e-09) (-2.36278e-11 -7.29928e-11 2.96962e-10) (-7.26228e-12 -2.32807e-11 8.88748e-11) (3.21128e-11 -9.99742e-12 6.28291e-11) (6.3954e-11 -1.03269e-11 7.05141e-11) (4.28944e-11 -1.03003e-11 4.30153e-11) (1.85016e-11 -6.41727e-12 1.37088e-11) (1.86201e-11 -7.70151e-12 1.4281e-12) (3.99485e-11 -2.19852e-11 -1.4218e-11) (3.92907e-11 -3.45046e-11 -2.15184e-11) (2.43195e-12 -2.32195e-11 -9.80613e-12) (-4.59503e-10 -1.40711e-10 -7.53598e-11) (-1.18814e-08 -4.06161e-10 -1.03443e-09) (-4.89355e-08 1.99452e-09 -3.01276e-09) (-3.51016e-08 1.46964e-09 -1.18207e-09) (-4.06537e-09 2.64526e-10 -5.46793e-10) (-1.20946e-12 2.34972e-12 -6.37046e-11) (7.87242e-10 -1.54441e-11 -4.86693e-10) (1.20583e-09 5.73145e-11 -7.01086e-10) (6.45623e-10 8.29776e-11 -4.843e-10) (1.85664e-10 1.96731e-11 -2.49598e-10) (2.7681e-12 -6.23159e-12 -1.5866e-10) (-2.43829e-10 4.82379e-12 -2.87404e-10) (-1.09001e-09 1.6324e-10 -5.91441e-10) (-1.15665e-09 3.30664e-10 -2.84915e-10) (-8.20847e-11 1.05606e-10 7.90398e-11) (6.30977e-10 3.48557e-10 6.12354e-10) (1.29555e-09 3.45103e-10 7.95261e-10) (1.00778e-09 3.19797e-12 4.97729e-10) (9.86888e-10 -3.30709e-10 6.01734e-10) (9.04394e-10 -5.8e-10 7.18003e-10) (4.76295e-10 -5.35106e-10 4.61907e-10) (1.16984e-10 -2.89603e-10 1.211e-10) (-2.73435e-11 -1.09991e-10 -3.71711e-11) (-4.1202e-10 -1.57899e-10 -4.86865e-10) (-1.05017e-09 1.31199e-10 -1.46875e-09) (-8.36079e-11 1.94984e-10 -4.82416e-10) (7.28938e-10 3.00598e-10 3.37594e-11) (3.40862e-09 5.90937e-10 1.88512e-09) (2.18705e-09 5.61304e-11 2.06613e-09) (3.21529e-10 -9.17779e-11 7.26968e-10) (-3.75672e-12 -6.37353e-11 2.47827e-10) (7.32442e-12 -2.90485e-11 1.01059e-10) (4.03712e-11 -1.67055e-11 6.20211e-11) (4.42068e-11 -1.42121e-11 3.94526e-11) (1.15487e-11 -6.43356e-12 9.58911e-12) (1.03775e-12 -1.18933e-12 1.90481e-13) (2.78206e-12 -2.34323e-12 -3.10433e-12) (1.00171e-11 -7.57356e-12 -8.43706e-12) (7.41621e-12 -9.27792e-12 -4.0419e-12) (-8.7036e-12 -7.69039e-12 -3.21462e-12) (-1.26429e-09 -3.43951e-11 -2.10817e-10) (-1.93468e-08 8.099e-10 -1.88728e-09) (-5.66072e-08 2.28796e-09 -2.5191e-09) (-2.31229e-08 -2.73319e-10 -1.4961e-09) (-1.49398e-09 -9.75391e-11 -5.81662e-10) (7.07156e-11 -2.66584e-11 -1.60176e-10) (5.07981e-10 -2.29925e-11 -3.18279e-10) (5.72255e-10 6.34639e-11 -3.25397e-10) (3.47404e-10 6.7075e-11 -2.85134e-10) (1.15972e-10 2.11585e-11 -2.09951e-10) (-2.72288e-11 1.80653e-12 -1.71535e-10) (-2.70401e-10 2.93455e-11 -2.58892e-10) (-6.84183e-10 1.51678e-10 -3.06636e-10) (-3.40296e-10 1.42684e-10 -4.75542e-11) (1.44744e-11 5.47774e-11 5.48841e-11) (8.83464e-10 2.95028e-10 5.82888e-10) (2.32468e-09 3.28921e-10 1.1888e-09) (2.64432e-09 -1.13084e-10 1.34157e-09) (1.74648e-09 -4.65459e-10 1.06159e-09) (8.4176e-10 -4.87346e-10 6.25753e-10) (2.84416e-10 -3.11998e-10 2.65678e-10) (3.42443e-11 -1.03355e-10 4.09605e-11) (-2.99983e-11 -3.53852e-11 -3.21921e-11) (-3.73171e-10 -1.0258e-11 -4.45219e-10) (-6.73765e-10 1.60014e-10 -9.75483e-10) (1.02109e-11 7.21677e-11 -1.87315e-10) (7.96362e-10 1.65587e-10 1.2917e-10) (2.31315e-09 2.08082e-10 1.30074e-09) (1.02767e-09 -1.93732e-11 1.03612e-09) (1.45215e-10 -5.91216e-11 4.1681e-10) (-1.88201e-12 -5.04565e-11 2.05372e-10) (1.1617e-11 -2.90889e-11 1.00351e-10) (2.33316e-11 -1.48433e-11 4.4906e-11) (7.11191e-12 -5.15301e-12 9.81387e-12) (-1.15091e-13 -4.71088e-13 2.45722e-14) (-2.57766e-12 -1.8709e-12 -6.92127e-12) (2.25915e-12 -3.49585e-12 -1.88563e-11) (6.51866e-12 -4.86028e-12 -8.99378e-12) (1.02845e-12 -1.94627e-12 -4.71131e-13) (-5.34912e-11 -3.64159e-12 -7.24525e-12) (-2.94111e-09 2.58372e-10 -4.28703e-10) (-2.50382e-08 1.65403e-09 -1.80258e-09) (-5.08899e-08 1.15756e-09 -1.14556e-09) (-1.08108e-08 -8.04251e-10 -1.65169e-09) (-4.84328e-10 -1.35673e-10 -4.25271e-10) (6.44763e-11 -3.774e-11 -1.50136e-10) (1.89198e-10 -1.50594e-11 -1.41245e-10) (2.10998e-10 2.98779e-11 -1.5725e-10) (1.49024e-10 3.3129e-11 -1.77539e-10) (4.84365e-11 1.29467e-11 -1.64676e-10) (-4.60202e-11 5.71082e-12 -1.42838e-10) (-1.67767e-10 2.93374e-11 -1.42554e-10) (-1.95057e-10 6.46255e-11 -7.50402e-11) (-2.23599e-11 2.24386e-11 4.01794e-12) (1.51881e-10 7.20064e-11 1.1373e-10) (1.55455e-09 2.65202e-10 8.13223e-10) (3.47584e-09 2.28301e-10 1.69474e-09) (2.84339e-09 -1.56907e-10 1.49979e-09) (1.41192e-09 -3.41356e-10 8.29597e-10) (5.57417e-10 -3.01307e-10 3.86156e-10) (1.48013e-10 -1.53699e-10 1.35407e-10) (4.04102e-12 -2.6349e-11 8.71485e-12) (-4.72231e-11 -1.44034e-11 -4.71922e-11) (-2.88074e-10 5.69102e-11 -3.73467e-10) (-2.19277e-10 8.56855e-11 -4.38856e-10) (7.04616e-11 2.28589e-11 -6.81587e-11) (1.01702e-09 5.66413e-11 2.78123e-10) (1.40826e-09 1.9404e-11 9.06153e-10) (4.39393e-10 -3.89519e-11 5.87551e-10) (5.58959e-11 -4.3846e-11 2.88411e-10) (-5.14246e-12 -3.73529e-11 1.52265e-10) (1.78063e-12 -1.88402e-11 5.8973e-11) (8.35905e-13 -4.99601e-12 1.18062e-11) (-7.28444e-13 -6.32062e-13 3.53285e-13) (-5.54418e-12 -1.57e-12 -8.06077e-12) (-2.74644e-12 -1.79471e-12 -3.825e-11) (1.3557e-11 -3.49164e-12 -3.6588e-11) (5.60342e-12 -2.6686e-12 -5.33827e-12) (-1.04439e-12 -4.75397e-13 3.11956e-15) (-3.08686e-10 3.24396e-11 -3.68492e-11) (-5.482e-09 6.31376e-10 -5.65628e-10) (-2.60235e-08 1.56829e-09 -6.69993e-10) (-3.58274e-08 -1.34054e-10 -4.27037e-10) (-3.84805e-09 -5.97915e-10 -1.19781e-09) (-2.02005e-10 -1.12124e-10 -3.02146e-10) (2.30733e-11 -2.38204e-11 -8.77408e-11) (5.30788e-11 -7.79033e-12 -6.34477e-11) (6.57818e-11 8.28555e-12 -8.87969e-11) (5.29917e-11 1.34306e-11 -1.1737e-10) (9.4522e-12 5.46801e-12 -1.15667e-10) (-3.2099e-11 4.32368e-12 -7.9506e-11) (-3.8918e-11 1.07452e-11 -3.43373e-11) (-6.73936e-12 6.13e-12 -2.00816e-12) (3.1369e-11 1.76323e-11 2.06727e-11) (6.31237e-10 9.6596e-11 3.21658e-10) (2.22668e-09 1.7322e-10 1.08296e-09) (2.95965e-09 8.34083e-11 1.45132e-09) (1.67892e-09 -8.23273e-11 8.82775e-10) (8.00799e-10 -1.81874e-10 4.37553e-10) (3.0521e-10 -1.52522e-10 1.97917e-10) (5.21494e-11 -5.55231e-11 5.0419e-11) (-2.80713e-12 -5.47876e-12 -6.93122e-14) (-7.73522e-11 1.65868e-12 -7.69507e-11) (-1.66107e-10 5.93011e-11 -2.6058e-10) (-1.61431e-11 2.55632e-11 -1.46388e-10) (1.93558e-10 3.6444e-12 -3.39e-11) (9.96336e-10 -3.60071e-11 3.97137e-10) (7.19774e-10 -4.3709e-11 6.36132e-10) (1.8874e-10 -3.8688e-11 4.07957e-10) (9.55929e-12 -3.29708e-11 2.01668e-10) (-1.32095e-11 -2.06863e-11 7.49133e-11) (-6.20328e-12 -6.68037e-12 1.57561e-11) (-2.57889e-12 -1.31746e-12 1.19334e-12) (-4.71254e-12 -1.05207e-12 -4.79337e-12) (-3.54026e-12 -6.73627e-13 -3.35868e-11) (2.25129e-11 7.04324e-14 -6.83566e-11) (2.37439e-11 -2.2231e-12 -3.07827e-11) (1.14527e-12 -5.05937e-13 -8.70914e-13) (-2.93574e-11 6.35572e-13 4.75733e-14) (-9.90742e-10 1.26263e-10 -8.02293e-11) (-7.39455e-09 7.79189e-10 -2.51966e-10) (-2.08545e-08 9.11604e-10 4.8733e-10) (-1.92259e-08 -6.60118e-10 -5.90465e-10) (-1.1948e-09 -3.09702e-10 -6.38505e-10) (-1.03597e-10 -7.55697e-11 -1.95013e-10) (5.72534e-12 -1.35507e-11 -5.28598e-11) (1.84953e-11 -5.37667e-12 -4.01515e-11) (2.42221e-11 -1.01343e-12 -6.46122e-11) (1.85161e-11 1.69481e-12 -8.92434e-11) (3.60524e-12 8.43847e-13 -7.44143e-11) (-5.26667e-12 1.20982e-12 -2.84309e-11) (-2.47783e-13 8.45054e-13 -1.86214e-12) (1.53387e-11 5.60058e-12 5.52465e-12) (2.79129e-10 3.2987e-11 1.20258e-10) (1.16274e-09 5.3526e-11 5.31595e-10) (2.04013e-09 5.49173e-11 9.76001e-10) (1.64755e-09 1.0244e-11 8.25957e-10) (8.82275e-10 -3.76835e-11 4.43151e-10) (4.36395e-10 -8.77376e-11 2.15798e-10) (1.38894e-10 -6.2199e-11 8.39032e-11) (1.06868e-11 -1.26755e-11 1.10467e-11) (-5.76125e-12 -2.38382e-12 -3.52539e-12) (-6.43975e-11 1.19862e-11 -8.02814e-11) (-5.13271e-11 3.48216e-11 -1.39676e-10) (3.3509e-11 6.19146e-12 -5.66691e-11) (3.44322e-10 -2.44573e-11 3.76215e-11) (7.45858e-10 -6.28593e-11 4.29613e-10) (3.92778e-10 -5.01351e-11 5.00249e-10) (8.36227e-11 -3.11137e-11 2.95656e-10) (-6.99716e-12 -1.85384e-11 1.03356e-10) (-9.39488e-12 -7.24683e-12 2.05259e-11) (-3.68111e-12 -1.83127e-12 1.86924e-12) (-2.55902e-12 -7.63093e-13 -1.99984e-12) (-1.24306e-12 -5.06883e-13 -1.6464e-11) (2.41764e-11 1.28673e-12 -6.11693e-11) (5.33228e-11 1.38116e-12 -6.67893e-11) (1.84499e-11 -9.46667e-13 -1.30719e-11) (-3.87864e-13 -8.32292e-14 4.24131e-14) (-1.25304e-10 8.44882e-12 3.98696e-12) (-1.4576e-09 1.64747e-10 -1.24105e-11) (-6.07764e-09 5.3636e-10 2.87233e-10) (-1.17014e-08 3.42135e-10 6.78546e-10) (-7.47903e-09 -4.91152e-10 -6.62956e-10) (-4.16718e-10 -1.44531e-10 -3.16609e-10) (-7.25542e-11 -4.48462e-11 -1.2325e-10) (-3.5601e-12 -8.27376e-12 -3.46622e-11) (5.5223e-12 -3.94182e-12 -2.72759e-11) (8.08303e-12 -4.42626e-12 -4.6641e-11) (5.51589e-12 -4.72768e-12 -6.43448e-11) (4.22765e-12 -2.36003e-12 -4.75967e-11) (5.03542e-12 -2.7151e-13 -1.27831e-11) (1.38093e-11 1.05109e-12 -2.28209e-12) (1.39029e-10 7.46352e-12 3.51908e-11) (6.20566e-10 6.0134e-12 2.09347e-10) (1.44844e-09 -1.43109e-11 5.59957e-10) (1.90024e-09 -1.08904e-11 7.90063e-10) (1.41721e-09 -2.21105e-11 6.11564e-10) (1.01202e-09 -4.2026e-11 3.84885e-10) (6.5261e-10 -8.638e-11 2.18849e-10) (3.11123e-10 -7.12094e-11 1.05635e-10) (8.94382e-11 -2.50465e-11 2.4106e-11) (1.58904e-11 -2.56609e-12 -5.69724e-12) (2.04667e-11 5.59034e-12 -3.62565e-11) (6.58244e-11 1.8709e-11 -7.8842e-11) (2.68759e-10 -4.293e-12 -7.23276e-11) (9.03535e-10 -7.74625e-11 2.03754e-10) (1.07511e-09 -1.00983e-10 6.07645e-10) (6.28035e-10 -7.55816e-11 6.00587e-10) (2.4115e-10 -4.16705e-11 3.05528e-10) (7.27521e-11 -1.92748e-11 8.47324e-11) (2.62685e-11 -7.80311e-12 1.6841e-11) (1.96086e-11 -4.16158e-12 1.7408e-12) (3.86795e-11 -3.47529e-12 -1.26088e-11) (1.18328e-10 -2.24537e-12 -6.04133e-11) (2.61331e-10 8.00008e-14 -1.22902e-10) (2.90107e-10 -2.67329e-12 -8.49547e-11) (1.31933e-10 -5.25491e-12 -5.05724e-12) (8.01804e-12 -6.09364e-13 3.39654e-12) (-3.0167e-11 3.95121e-12 8.21e-12) (-6.13164e-10 8.14495e-11 7.80082e-11) (-2.53219e-09 2.33547e-10 3.80724e-10) (-4.28506e-09 1.16083e-10 3.33249e-10) (-2.157e-09 -2.02117e-10 -4.0353e-10) (-1.61845e-10 -5.49173e-11 -1.36102e-10) (-5.61002e-11 -1.99958e-11 -6.59293e-11) (-7.64224e-12 -3.54963e-12 -1.6709e-11) (-6.7751e-13 -1.51583e-12 -1.15297e-11) (2.63771e-13 -2.88164e-12 -2.35168e-11) (8.76273e-13 -3.81298e-12 -3.67505e-11) (5.68323e-12 -2.42048e-12 -2.86772e-11) (1.27644e-11 -9.6729e-13 -1.24189e-11) (6.58025e-11 -1.20635e-12 -3.67529e-12) (3.29184e-10 -5.27963e-12 5.86401e-11) (9.88718e-10 -2.87206e-11 2.59117e-10) (2.00752e-09 -7.25117e-11 6.33659e-10) (2.80966e-09 -6.94143e-11 9.42252e-10) (2.75115e-09 -6.51164e-11 8.87205e-10) (2.75218e-09 -9.61132e-11 7.30672e-10) (2.44467e-09 -1.65971e-10 5.56633e-10) (1.82399e-09 -1.65831e-10 3.89996e-10) (1.1724e-09 -9.17778e-11 1.79454e-10) (7.48328e-10 -1.28848e-11 -2.25036e-11) (7.00811e-10 3.35577e-11 -1.61754e-10) (1.00721e-09 5.98569e-11 -2.3069e-10) (1.92358e-09 -4.55694e-11 -4.80536e-11) (3.1397e-09 -1.85439e-10 6.77341e-10) (3.12032e-09 -2.207e-10 1.29846e-09) (2.27179e-09 -1.7112e-10 1.28148e-09) (1.35608e-09 -1.11467e-10 7.6526e-10) (8.16439e-10 -7.3077e-11 3.39797e-10) (6.38258e-10 -5.19037e-11 1.5332e-10) (6.79179e-10 -3.84094e-11 6.4428e-11) (9.27061e-10 -2.7185e-11 -2.87887e-11) (1.40153e-09 -1.70311e-11 -1.54384e-10) (1.82013e-09 -1.21037e-11 -1.85516e-10) (1.66824e-09 -1.69718e-11 -2.47884e-11) (9.00345e-10 -1.52378e-11 9.99974e-11) (1.68745e-10 -3.06784e-13 4.88828e-11) (-1.14552e-12 1.7929e-12 7.08096e-12) (-2.00218e-10 3.14458e-11 8.90398e-11) (-8.9024e-10 9.23102e-11 2.92083e-10) (-1.18134e-09 4.75435e-11 1.27776e-10) (-4.54919e-10 -5.21682e-11 -1.38462e-10) (-2.93186e-11 -7.82244e-12 -2.15176e-11) (-2.18946e-11 -3.95672e-12 -1.55676e-11) (-3.04069e-12 -5.9263e-13 -2.36383e-12) (-2.49183e-13 -1.5366e-13 -8.21205e-13) (4.03327e-14 -6.01886e-13 -4.20948e-12) (1.10084e-12 -1.22382e-12 -1.20746e-11) (5.40631e-12 -1.07659e-12 -1.44054e-11) (1.65798e-11 -9.38046e-13 -1.18804e-11) (7.60278e-11 -2.34142e-12 -8.9748e-12) (2.9375e-10 -8.68808e-12 2.56884e-11) (7.66858e-10 -2.73536e-11 1.42917e-10) (1.45068e-09 -5.73737e-11 3.74805e-10) (2.10766e-09 -6.23936e-11 6.07559e-10) (2.44382e-09 -4.91135e-11 6.77193e-10) (2.68004e-09 -7.259e-11 6.29338e-10) (2.40905e-09 -9.78167e-11 5.12716e-10) (1.69325e-09 -7.72378e-11 3.3637e-10) (1.00867e-09 -2.2283e-11 1.13972e-10) (7.13471e-10 2.4819e-11 -6.52316e-11) (9.19808e-10 6.09682e-11 -2.1251e-10) (1.77101e-09 9.17264e-11 -2.81435e-10) (3.16925e-09 -1.82593e-11 4.51515e-11) (4.04712e-09 -1.47279e-10 8.62405e-10) (3.42466e-09 -1.8409e-10 1.34948e-09) (2.17074e-09 -1.25438e-10 1.13975e-09) (1.07618e-09 -6.46666e-11 5.5526e-10) (5.75765e-10 -3.21176e-11 2.11596e-10) (5.0537e-10 -2.06379e-11 1.0139e-10) (6.99784e-10 -1.56196e-11 4.72839e-11) (1.13694e-09 -1.00628e-11 -3.43927e-11) (1.64852e-09 -5.02448e-12 -1.15442e-10) (1.74639e-09 -5.02535e-12 -7.43962e-11) (1.14154e-09 -4.8997e-12 3.58235e-11) (3.26522e-10 3.57034e-14 4.93149e-11) (1.6757e-11 1.15459e-12 1.45009e-11) (-1.13845e-10 1.05359e-11 7.39604e-11) (-4.32503e-10 3.62508e-11 2.6009e-10) (-5.21434e-10 4.99893e-11 2.71503e-10) (-1.56423e-10 1.33798e-11 4.97861e-11) (-2.13948e-11 -2.53776e-12 -6.08182e-12) (-1.65393e-13 -6.76151e-14 4.84694e-13) (-1.92975e-12 -1.59185e-13 3.67249e-13) (-1.04798e-12 -1.1557e-13 8.16013e-13) (-2.42497e-13 -9.29807e-14 7.2658e-13) (-6.31159e-15 -2.52772e-14 9.13849e-14) (2.28008e-14 -2.12434e-14 -7.11916e-14) (4.49973e-13 -1.01304e-13 -8.4182e-13) (2.22719e-12 -1.57921e-13 -1.89506e-12) (8.67012e-12 -2.33688e-13 -3.17544e-12) (2.8699e-11 -3.94156e-13 -4.87799e-12) (6.67395e-11 -9.3282e-13 -4.82744e-12) (1.04224e-10 -1.90624e-12 3.23221e-12) (1.17785e-10 -1.6174e-12 1.56535e-11) (1.24551e-10 -3.28094e-13 2.59307e-11) (1.14224e-10 -1.35125e-12 2.50428e-11) (7.38899e-11 -1.5353e-12 1.67296e-11) (2.85756e-11 -6.49577e-13 6.19406e-12) (8.62518e-12 7.67755e-14 1.13279e-14) (9.14641e-12 7.58356e-13 -5.05228e-12) (4.52452e-11 2.91176e-12 -2.26958e-11) (2.03257e-10 9.51839e-12 -4.93152e-11) (4.22862e-10 5.20466e-12 -2.4089e-11) (4.34396e-10 -4.34582e-12 6.14524e-11) (2.56391e-10 -7.66437e-12 8.86536e-11) (9.71659e-11 -3.85356e-12 5.64064e-11) (2.5056e-11 -1.2229e-12 1.79383e-11) (9.40609e-12 -4.1358e-13 4.94049e-12) (1.19719e-11 -3.41868e-13 2.70452e-12) (2.69421e-11 -4.45243e-13 5.39842e-13) (5.06814e-11 -5.20507e-13 -5.29415e-12) (6.34117e-11 -4.88718e-13 -1.07655e-11) (4.64865e-11 -3.71902e-13 -8.94536e-12) (1.51829e-11 -1.39682e-13 -2.86722e-12) (5.24876e-13 -2.66677e-14 -1.71861e-15) (-9.36992e-12 -2.51349e-13 4.62367e-12) (-5.84335e-11 -3.47249e-13 3.93961e-11) (-1.12103e-10 1.11173e-12 8.68491e-11) (-5.53326e-11 3.06044e-12 6.1301e-11) (-1.73683e-12 1.36519e-12 1.93616e-11) (3.21298e-12 1.48801e-13 6.55168e-12) (-2.56487e-09 -3.47639e-10 -1.05135e-09) (-8.66545e-10 -1.69622e-10 -4.30815e-10) (-1.43936e-11 -3.66455e-12 -1.46898e-11) (2.73445e-10 7.43223e-11 9.49347e-11) (2.5646e-09 6.54356e-10 1.24196e-09) (5.98164e-09 1.22484e-09 3.11523e-09) (6.46289e-09 8.01272e-10 3.358e-09) (3.31437e-09 -7.49372e-12 1.63375e-09) (5.90974e-10 -1.08962e-10 2.54545e-10) (2.51616e-12 -2.59819e-12 -5.0019e-13) (-2.1455e-10 2.6731e-11 -1.32219e-10) (-9.30942e-10 1.27083e-10 -5.37534e-10) (-9.59911e-10 -8.49032e-11 -5.89258e-10) (-3.88388e-10 -2.91239e-10 -2.96941e-10) (-5.90137e-11 -3.09147e-10 -1.36906e-10) (5.28148e-11 -1.70023e-10 -6.63937e-11) (8.63381e-12 -1.3124e-11 -1.06368e-11) (-3.86966e-12 3.9873e-12 1.68316e-12) (-7.08201e-11 7.61762e-11 1.29206e-10) (-7.76032e-11 2.20573e-10 6.43956e-10) (1.42639e-10 3.30957e-10 1.07665e-09) (2.51246e-10 3.07749e-10 7.08978e-10) (1.47615e-10 1.80958e-10 1.95911e-10) (5.28273e-11 7.91729e-11 4.88416e-12) (1.65215e-11 4.1493e-11 -4.71301e-11) (-1.56863e-11 1.74218e-11 -9.67647e-11) (-6.13909e-11 -2.31609e-11 -1.23215e-10) (-1.07012e-10 -6.34709e-11 -1.13221e-10) (-1.54739e-10 -9.07446e-11 -9.9825e-11) (-1.88541e-10 -8.72551e-11 -9.9011e-11) (-1.75033e-10 -4.95995e-11 -9.45377e-11) (-1.03622e-10 -8.36857e-12 -5.66607e-11) (-2.23859e-11 5.30141e-12 -1.12281e-11) (4.13959e-14 2.08065e-12 2.87843e-13) (2.23794e-11 9.7973e-12 1.15981e-11) (6.95143e-11 -4.43713e-13 2.45105e-11) (5.35995e-11 -2.30497e-11 1.96318e-12) (6.21236e-13 -2.31069e-11 -2.13548e-11) (-3.61482e-10 -1.11929e-10 -2.43438e-10) (-1.98775e-09 -2.54389e-10 -8.7647e-10) (-1.28284e-09 -8.52343e-10 -1.18184e-09) (-3.03642e-10 -2.02609e-10 -3.39583e-10) (-4.08416e-11 7.46575e-12 -2.78719e-11) (-6.5326e-12 6.08522e-11 2.95219e-11) (2.26325e-10 2.91724e-10 3.41997e-10) (1.02153e-09 5.12116e-10 1.07568e-09) (1.52079e-09 3.02221e-10 1.35122e-09) (8.0914e-10 -2.86379e-11 6.42094e-10) (1.35662e-10 -5.02378e-11 8.87249e-11) (5.69588e-12 -7.62619e-12 1.67517e-13) (-1.33714e-13 -1.62419e-12 -1.91177e-12) (3.20565e-13 -4.24138e-13 -1.33155e-13) (1.40721e-11 -1.80595e-11 1.09695e-11) (6.24153e-11 -1.39517e-10 4.66434e-11) (4.81009e-11 -2.54652e-10 -2.63274e-11) (-4.6186e-11 -1.92498e-10 -1.98162e-10) (-2.31932e-10 -6.85153e-12 -3.84734e-10) (-4.67881e-10 2.27557e-10 -2.88144e-10) (-4.99707e-10 2.62824e-10 1.25854e-10) (-3.81688e-10 2.54413e-10 6.47956e-10) (-4.95858e-12 2.423e-10 1.01523e-09) (2.70122e-10 1.71536e-10 6.38688e-10) (2.83504e-10 1.17516e-10 2.00178e-10) (3.5355e-10 1.24632e-10 -1.20127e-11) (4.12153e-10 1.19696e-10 -1.78251e-10) (2.42477e-10 4.98068e-11 -1.64697e-10) (3.59702e-11 2.43572e-12 -4.02668e-11) (-9.04215e-12 -2.19808e-12 -8.8803e-12) (-1.80986e-10 -1.89372e-11 -5.21807e-11) (-5.29015e-10 -7.25701e-11 -1.97122e-10) (-5.15515e-10 -1.62312e-10 -3.18155e-10) (-1.58988e-10 -1.55315e-10 -2.03474e-10) (3.61298e-11 -7.65517e-11 -6.97601e-11) (2.43207e-10 -5.94283e-11 -1.71873e-11) (5.01199e-10 6.3069e-11 1.02377e-10) (1.71801e-10 9.50184e-11 6.84442e-11) (-6.25194e-11 5.89226e-11 1.04533e-11) (-1.76833e-09 2.50103e-10 -3.00561e-10) (-4.5475e-09 -3.57883e-10 -1.45475e-09) (-3.43872e-09 -1.1515e-09 -1.91398e-09) (-3.62573e-10 -4.12591e-10 -3.10747e-10) (-1.85251e-10 -5.24107e-11 1.9393e-11) (-3.88803e-10 1.4578e-10 1.92861e-10) (-4.49715e-10 3.02531e-10 2.37844e-10) (-1.45141e-10 1.50182e-10 1.29591e-10) (2.88036e-11 5.12246e-11 1.15508e-10) (4.56195e-10 -7.07546e-13 4.50138e-10) (1.37002e-09 -1.77057e-10 8.93453e-10) (1.80196e-09 -2.30994e-10 7.95701e-10) (1.53533e-09 -4.77248e-11 3.81127e-10) (1.05384e-09 1.59051e-10 1.38036e-10) (5.26121e-10 1.87582e-10 9.49801e-11) (6.2734e-11 2.61081e-11 3.07143e-11) (-1.15463e-10 -1.14045e-10 -1.73252e-11) (-3.61605e-09 -2.9536e-09 -1.75264e-09) (-9.07245e-09 -5.92277e-09 -5.5688e-09) (-5.31462e-09 -1.84808e-09 -3.51438e-09) (-1.11899e-09 1.55895e-10 -6.11593e-10) (-8.49383e-11 9.03645e-11 3.0127e-11) (1.28178e-10 1.2208e-10 3.26436e-10) (7.71023e-10 1.12256e-10 8.91106e-10) (1.18301e-09 1.21203e-10 7.29887e-10) (1.12657e-09 2.4624e-10 2.14287e-10) (7.37604e-10 2.98442e-10 -1.12149e-10) (1.84217e-10 1.40116e-10 -9.30023e-11) (-6.77388e-12 2.34635e-11 -1.3362e-11) (-1.89935e-10 4.76435e-11 -4.45279e-12) (-5.37852e-10 5.15258e-11 -2.61295e-11) (-4.76284e-10 -8.60576e-12 -1.69129e-10) (-2.55585e-10 -1.22118e-10 -3.50127e-10) (-4.21839e-11 -3.71731e-10 -6.60065e-10) (2.17636e-10 -5.24188e-10 -6.64643e-10) (2.38736e-10 -2.82624e-10 -2.26253e-10) (2.10174e-10 -7.19256e-11 9.67604e-12) (3.80422e-10 1.43634e-10 2.37746e-10) (2.96306e-10 5.05968e-10 4.54711e-10) (-1.39168e-10 4.66511e-10 2.53735e-10) (-4.09189e-10 2.02421e-10 -5.84867e-11) (-7.14842e-10 -2.46393e-10 -5.65715e-10) (-7.30567e-10 -8.1633e-10 -9.3158e-10) (-2.77419e-10 -8.52573e-11 5.81261e-11) (-8.41816e-10 -8.8383e-11 6.16269e-10) (-1.73396e-09 9.96828e-11 1.29049e-09) (-1.66585e-09 3.17816e-10 1.15551e-09) (-6.86762e-10 2.57977e-10 7.03469e-10) (-9.27453e-11 9.43027e-11 4.67653e-10) (2.75525e-10 -3.27947e-11 5.4284e-10) (9.534e-10 -2.06373e-10 6.78589e-10) (1.94966e-09 -2.4734e-10 5.3895e-10) (2.73677e-09 9.63051e-11 1.42448e-10) (2.51701e-09 6.16252e-10 -1.56338e-10) (1.10551e-09 5.75079e-10 -1.79402e-10) (3.75625e-11 6.26133e-11 -6.79461e-11) (-1.68328e-09 -8.5334e-10 -1.27285e-09) (-1.40984e-08 -9.13308e-09 -7.94763e-09) (-1.88178e-08 -1.06342e-08 -7.64018e-09) (-5.56787e-09 -2.00537e-09 -1.04782e-09) (-2.17295e-10 4.71697e-11 4.45537e-11) (1.54203e-10 2.21461e-10 1.12238e-10) (7.69916e-10 4.99909e-10 3.08627e-10) (8.89097e-10 3.5888e-10 3.44538e-10) (5.86664e-10 1.66367e-10 1.794e-10) (2.55693e-10 8.73258e-11 1.71712e-11) (6.46653e-11 4.35874e-11 -2.745e-11) (1.64383e-12 1.21066e-11 -1.41696e-11) (-1.28938e-11 1.77712e-12 -8.9818e-12) (-1.65068e-11 -6.43378e-12 -7.50325e-12) (-5.54149e-12 -6.99473e-12 -1.01664e-11) (1.07003e-11 -1.39634e-11 -4.78331e-11) (5.95803e-11 -2.98425e-11 -1.69381e-10) (6.24065e-11 -5.7877e-11 -2.39842e-10) (1.3078e-12 -8.82462e-11 -1.77525e-10) (-3.07918e-11 -1.16771e-10 -1.14819e-10) (-4.12453e-12 -5.55729e-11 -3.03788e-11) (1.44635e-11 -3.27587e-12 5.3078e-12) (2.4517e-10 1.85701e-10 1.84623e-10) (4.30742e-10 5.32162e-10 3.78338e-10) (8.36926e-11 1.72218e-10 6.62752e-11) (-1.02225e-11 8.4632e-12 -1.50135e-11) (-1.22795e-10 -4.40209e-11 -7.28379e-11) (7.42034e-12 -1.36531e-10 6.42775e-10) (-3.12335e-10 -4.16441e-10 1.53224e-09) (-1.21799e-09 -5.1229e-10 1.60282e-09) (-1.62543e-09 -4.27668e-10 1.2089e-09) (-7.31945e-10 -2.2617e-10 6.39089e-10) (-7.43786e-11 -1.31421e-10 2.97316e-10) (2.6592e-10 -2.28367e-10 3.15545e-10) (8.64087e-10 -4.27087e-10 3.24703e-10) (1.10051e-09 -3.34691e-10 1.43638e-10) (7.12618e-10 1.32792e-11 1.77472e-11) (4.37861e-10 3.19814e-10 -2.27243e-11) (2.92315e-10 6.80511e-10 -1.52857e-10) (-7.87236e-11 5.51633e-10 -4.98397e-10) (-1.78135e-09 -9.94558e-11 -2.55403e-09) (-9.62746e-09 -4.53711e-09 -7.25936e-09) (-1.15248e-08 -6.46999e-09 -3.31451e-09) (-3.20518e-09 -2.36571e-09 7.14925e-10) (-9.81636e-11 -2.05199e-10 4.05084e-10) (4.95765e-10 2.6494e-10 6.03408e-10) (9.07743e-10 6.86367e-10 7.0632e-10) (4.06901e-10 3.10823e-10 2.93847e-10) (5.33332e-11 4.23524e-11 2.98515e-11) (5.21955e-12 1.71777e-11 -1.63004e-11) (-2.39747e-11 8.83761e-11 -1.96014e-10) (-3.7516e-11 8.48181e-11 -4.34008e-10) (4.57438e-11 -3.05059e-11 -4.10881e-10) (1.36704e-10 -8.20562e-11 -2.84599e-10) (1.57047e-10 -4.30349e-11 -1.53459e-10) (1.31016e-10 3.51426e-12 -7.15954e-11) (1.20708e-10 1.90584e-11 -3.61991e-11) (1.23096e-10 6.21985e-12 -2.01397e-11) (9.09234e-11 -2.05196e-11 -1.73499e-11) (2.65163e-11 -2.79393e-11 -2.41936e-11) (-3.69962e-11 -4.72253e-11 -6.21624e-11) (-1.85061e-10 -2.00916e-11 -1.10509e-10) (-2.16348e-10 1.3605e-10 -3.76761e-11) (-1.70896e-10 4.077e-10 9.49136e-11) (-6.65991e-11 4.63951e-10 1.45037e-10) (-2.7637e-11 1.37337e-10 5.92768e-11) (-1.08317e-11 1.82144e-11 7.58977e-11) (2.26475e-09 -7.41117e-10 4.37384e-09) (1.38598e-09 -1.15264e-09 3.55288e-09) (6.11619e-11 -5.5757e-10 1.08039e-09) (-1.15353e-10 -1.94567e-10 2.20061e-10) (-3.93549e-11 -8.63785e-11 5.33309e-11) (3.34812e-11 -1.02485e-10 4.61827e-11) (1.6606e-10 -2.23674e-10 8.37015e-11) (1.15149e-10 -2.00912e-10 5.26834e-11) (-1.28848e-11 -6.70683e-11 3.12147e-12) (-1.09396e-10 -2.96436e-11 -2.40728e-11) (-1.88091e-10 9.90755e-11 -7.49498e-11) (-1.51353e-10 4.55333e-10 -2.90111e-10) (-9.60598e-11 1.29355e-09 -1.37954e-09) (-1.13658e-09 1.21385e-09 -3.16607e-09) (-3.18439e-09 -8.72688e-10 -3.40288e-09) (-3.94038e-09 -4.09893e-09 -1.77615e-09) (-1.75958e-09 -4.30637e-09 2.48889e-10) (6.21998e-12 -1.03233e-09 5.61059e-10) (4.67118e-10 5.52348e-11 7.79754e-10) (1.61224e-09 1.29262e-09 2.15096e-09) (1.50427e-09 1.30888e-09 1.85648e-09) (3.73373e-10 4.02333e-10 3.59301e-10) (3.12227e-11 1.22373e-10 -7.72719e-11) (-1.74071e-10 2.72626e-10 -1.04576e-09) (-3.03888e-10 -1.57367e-10 -2.66368e-09) (2.13742e-10 -7.74193e-10 -2.72444e-09) (5.10473e-10 -5.59857e-10 -1.45325e-09) (2.95314e-10 -9.05805e-11 -4.13776e-10) (1.46556e-10 5.14175e-11 -1.03718e-10) (1.52774e-10 9.8837e-11 -3.78717e-11) (2.44518e-10 1.26956e-10 -1.29229e-12) (4.15725e-10 1.46653e-10 2.78451e-11) (4.43261e-10 1.42035e-10 4.37323e-11) (1.10278e-10 5.55908e-11 1.55013e-11) (-1.91648e-11 2.2649e-11 3.42625e-12) (-6.37945e-10 2.89831e-10 1.67158e-11) (-1.45364e-09 8.83077e-10 6.48515e-11) (-8.46608e-10 8.63954e-10 2.13882e-10) (-1.11301e-10 3.5623e-10 3.45475e-10) (6.22874e-10 1.77418e-10 1.52498e-09) (5.49248e-09 -2.24708e-09 7.72956e-09) (3.06564e-09 -2.07756e-09 3.49328e-09) (7.77847e-10 -7.10476e-10 5.77669e-10) (1.4357e-10 -1.43056e-10 3.24575e-11) (2.5022e-11 -2.78002e-11 2.54982e-12) (-2.2201e-13 -1.92739e-11 1.1979e-11) (-1.25634e-10 -9.2997e-11 6.80775e-11) (-1.1228e-09 -3.81945e-10 1.26678e-10) (-3.77292e-09 -8.58207e-10 -2.09166e-10) (-4.76683e-09 -8.50803e-10 -8.35932e-10) (-2.38993e-09 -1.05131e-10 -1.07539e-09) (-9.32993e-10 6.24487e-10 -1.41669e-09) (-4.05056e-10 1.8415e-09 -2.93187e-09) (-1.57741e-10 1.22525e-09 -2.68232e-09) (-2.62232e-10 -3.68748e-10 -1.12907e-09) (-5.15842e-10 -2.89551e-09 -9.36052e-10) (-7.1395e-10 -4.66393e-09 3.21655e-10) (-6.21018e-10 -1.47837e-09 8.79181e-10) (-4.70936e-10 2.90621e-11 1.09675e-09) (-1.31009e-10 1.05468e-09 2.00857e-09) (4.20016e-10 9.7784e-10 1.36925e-09) (2.33245e-10 3.29964e-10 1.43946e-10) (4.03622e-10 4.04855e-10 -6.52802e-10) (1.28205e-09 4.084e-10 -3.65282e-09) (1.75172e-09 -7.89381e-10 -5.5318e-09) (8.78896e-10 -1.12579e-09 -3.31548e-09) (1.03585e-11 -2.26039e-10 -5.95781e-10) (-5.51051e-11 1.05733e-11 -3.2256e-11) (-9.4922e-11 6.88639e-11 3.36109e-11) (-7.93132e-12 3.10638e-11 2.14257e-11) (9.443e-11 4.6704e-11 1.90097e-11) (5.677e-10 1.69207e-10 -2.99044e-11) (1.06073e-09 4.17552e-10 -1.17456e-10) (9.11897e-10 5.70686e-10 -7.10221e-11) (2.18724e-10 3.527e-10 1.46368e-11) (-2.16518e-10 3.64981e-10 4.86705e-11) (-1.20357e-09 8.70185e-10 2.12499e-10) (-9.56499e-10 7.81114e-10 5.67488e-10) (9.21598e-13 5.0976e-10 1.40356e-09) (2.90555e-09 -2.02306e-10 5.62719e-09) (4.48348e-09 -2.95883e-09 4.20503e-09) (1.5504e-09 -1.54687e-09 8.60238e-10) (1.84994e-10 -2.83716e-10 3.1388e-11) (3.50967e-12 -8.01431e-12 4.69638e-12) (-1.33129e-11 1.78274e-11 5.13367e-11) (-1.12668e-10 5.2317e-11 1.43357e-10) (-5.63163e-10 -2.0909e-12 1.65523e-10) (-2.50249e-09 -4.17437e-10 -9.36429e-11) (-4.744e-09 -1.15791e-09 -5.79872e-10) (-3.27981e-09 -1.00293e-09 -8.14483e-10) (-8.99623e-10 -2.47372e-10 -9.24058e-10) (-1.20271e-10 3.83915e-10 -2.16874e-09) (6.60881e-10 1.37188e-09 -3.74602e-09) (5.06099e-10 7.66967e-10 -2.35957e-09) (1.53178e-10 -2.7481e-10 -6.61034e-10) (4.2002e-11 -1.72796e-09 -3.09132e-10) (-8.93001e-10 -3.10803e-09 9.80837e-10) (-2.40159e-09 -1.94186e-09 2.46702e-09) (-3.4735e-09 9.50426e-11 3.62458e-09) (-1.67486e-09 8.51675e-10 1.90528e-09) (-1.26192e-10 1.65454e-10 1.05953e-10) (1.505e-10 1.27132e-10 -3.94797e-10) (1.7897e-09 6.77201e-12 -3.62821e-09) (2.90655e-09 -6.07858e-10 -5.82521e-09) (1.59232e-09 -6.26157e-10 -3.7181e-09) (1.62611e-10 -3.08732e-11 -8.34549e-10) (-9.03184e-11 9.57578e-11 -6.11978e-11) (-3.33026e-10 3.24109e-10 2.54678e-10) (-9.38298e-11 1.78528e-10 3.90892e-10) (2.63705e-10 3.51653e-11 3.85462e-10) (8.00708e-10 1.90737e-11 3.79749e-10) (1.16995e-09 2.293e-10 1.20467e-10) (1.23476e-09 5.95332e-10 -2.54703e-10) (7.49046e-10 7.69532e-10 -4.29894e-10) (6.91349e-11 5.91158e-10 -2.74082e-10) (-5.84941e-10 7.46061e-10 -1.68294e-10) (-1.42689e-09 1.02335e-09 2.58388e-10) (-7.87644e-10 6.50592e-10 9.23117e-10) (5.80053e-10 2.79881e-10 2.74527e-09) (4.13057e-09 -1.53127e-09 6.05232e-09) (1.03979e-09 -9.51823e-10 8.48265e-10) (9.1064e-11 -2.11322e-10 1.08439e-10) (-2.69989e-11 -6.29499e-11 6.5328e-11) (-5.25142e-11 -2.27298e-11 1.65448e-10) (-3.16655e-11 4.91988e-11 1.921e-10) (-3.82119e-11 5.01225e-11 4.91307e-11) (-3.74576e-10 1.16639e-10 -1.03557e-10) (-2.33575e-09 -1.16281e-10 -7.00537e-10) (-3.87308e-09 -1.0576e-09 -8.05973e-10) (-1.58798e-09 -8.30497e-10 -6.612e-10) (-9.92923e-11 -3.20856e-10 -9.36468e-10) (1.46207e-09 1.45083e-10 -3.1806e-09) (2.33307e-09 9.89915e-10 -3.95566e-09) (1.04323e-09 3.94194e-10 -1.79458e-09) (2.01039e-10 -1.83294e-10 -3.30763e-10) (-8.22467e-11 -6.96479e-10 7.40806e-11) (-1.6841e-09 -1.90636e-09 1.73899e-09) (-4.98333e-09 -1.4572e-09 4.84795e-09) (-4.68907e-09 1.89768e-10 4.05681e-09) (-1.01029e-09 1.78305e-10 5.38117e-10) (-2.30911e-11 -1.20398e-11 -1.09742e-10) (1.17722e-09 -6.29904e-10 -2.63461e-09) (2.53511e-09 -1.15044e-09 -5.30922e-09) (1.37469e-09 -8.03492e-10 -3.61639e-09) (2.35995e-10 -1.49882e-10 -1.12613e-09) (-2.519e-11 7.22347e-11 -1.38355e-10) (-1.16947e-10 2.58882e-10 4.2661e-11) (-1.31436e-10 4.02456e-10 3.65886e-10) (9.46384e-11 2.13957e-10 5.49204e-10) (3.91396e-10 4.55157e-11 6.80774e-10) (4.46865e-10 1.9861e-11 4.97866e-10) (2.79856e-10 7.58897e-11 1.70735e-10) (3.43424e-10 2.21966e-10 -2.77421e-11) (6.37475e-10 7.06097e-10 -4.34061e-10) (2.85596e-10 9.24909e-10 -6.60484e-10) (-3.06509e-10 7.05745e-10 -3.6574e-10) (-4.21565e-10 4.05401e-10 8.65852e-11) (-1.2891e-10 1.64478e-10 5.47589e-10) (9.87774e-10 -3.72548e-10 2.09952e-09) (2.32088e-09 -1.43837e-09 2.60033e-09) (1.74818e-10 -1.75313e-10 3.46826e-10) (-4.31774e-11 -1.11486e-10 1.92755e-10) (-3.28967e-10 -1.71284e-10 3.3596e-10) (-3.36565e-10 -4.85617e-11 2.3289e-10) (-1.14473e-10 6.18073e-11 1.28869e-11) (-2.21909e-10 2.49638e-10 -1.98158e-10) (-6.02666e-10 2.74826e-10 -4.17719e-10) (-1.1441e-09 -1.57619e-10 -3.12221e-10) (-9.2221e-10 -5.80277e-10 -1.91646e-10) (-1.25918e-10 -4.72691e-10 -4.37319e-10) (1.20956e-09 -7.95093e-10 -2.09705e-09) (3.25898e-09 -2.41142e-10 -3.82681e-09) (2.87708e-09 6.29711e-10 -2.8608e-09) (1.20059e-09 3.46112e-10 -1.07005e-09) (8.61712e-11 -1.72473e-11 -6.25775e-11) (-2.10858e-10 -2.18146e-10 2.50728e-10) (-3.12175e-09 -1.23755e-09 3.26875e-09) (-6.11283e-09 -9.38029e-10 5.54417e-09) (-2.93096e-09 -3.40819e-10 1.89989e-09) (-1.69024e-10 -9.27533e-11 9.98344e-12) (3.35334e-10 -3.89174e-10 -6.96466e-10) (2.23205e-09 -1.07885e-09 -3.5627e-09) (1.94752e-09 -9.17559e-10 -3.35628e-09) (5.63082e-10 -4.15671e-10 -1.12788e-09) (6.00303e-11 -3.93416e-11 -8.93506e-11) (1.48775e-11 2.13177e-11 1.69319e-11) (2.43765e-11 2.91718e-10 2.93992e-10) (-8.18989e-11 3.59736e-10 4.16839e-10) (-1.1858e-10 1.48074e-10 2.41266e-10) (-7.26149e-11 4.95425e-11 1.29258e-10) (-3.1069e-11 3.0509e-11 8.62457e-11) (-1.85217e-11 1.64689e-11 3.58177e-11) (-1.07653e-11 7.4763e-12 1.83799e-13) (-1.08212e-12 4.3309e-11 -4.87433e-11) (1.52218e-10 2.48847e-10 -2.13314e-10) (2.5752e-10 3.59864e-10 -1.60805e-10) (1.18068e-10 1.54242e-10 5.38927e-11) (1.76729e-10 6.53739e-11 3.46591e-10) (4.48101e-10 -1.98016e-10 8.99732e-10) (4.92545e-10 -3.29519e-10 8.1032e-10) (6.31028e-11 3.81808e-12 1.13461e-10) (-3.54533e-10 1.13905e-11 1.76588e-10) (-2.22417e-09 -5.39196e-11 4.86037e-10) (-1.72521e-09 2.06872e-11 5.86475e-11) (-5.03242e-10 1.22984e-10 -2.21135e-10) (-2.20922e-10 1.39278e-10 -2.33905e-10) (-1.44329e-10 4.47242e-11 -9.80773e-11) (-1.20354e-10 -4.66647e-11 -3.34409e-11) (-3.64406e-11 -1.54447e-10 -1.03859e-10) (6.80428e-10 -8.50608e-10 -1.09068e-09) (2.49037e-09 -1.66676e-09 -3.09679e-09) (2.32152e-09 -7.42522e-10 -2.64712e-09) (1.34619e-09 1.70122e-10 -1.35251e-09) (5.25891e-10 2.89757e-10 -3.85837e-10) (3.65581e-11 5.44108e-11 1.95589e-11) (-3.4434e-10 7.73627e-11 7.73921e-10) (-2.45295e-09 -3.86231e-10 3.23333e-09) (-3.59584e-09 -9.92314e-10 2.92785e-09) (-1.15912e-09 -6.50026e-10 5.48586e-10) (-2.50361e-11 -2.24223e-10 -8.14799e-11) (7.22943e-10 -5.14995e-10 -9.21678e-10) (1.71343e-09 -4.59427e-10 -2.07799e-09) (9.54955e-10 -3.20215e-10 -1.14678e-09) (2.15022e-10 -1.32457e-10 -1.60852e-10) (1.34619e-10 -4.98044e-11 1.12514e-10) (6.22595e-10 1.79147e-10 1.3259e-09) (7.37507e-10 6.84088e-10 2.35177e-09) (1.71129e-11 3.38909e-10 7.88223e-10) (-1.33269e-10 9.27059e-11 9.42088e-11) (-1.76968e-10 8.14636e-11 4.11397e-12) (-7.44087e-11 4.92729e-11 2.05588e-11) (-3.70056e-11 2.2763e-11 2.89842e-11) (-6.89928e-11 -7.50319e-12 1.28426e-11) (-2.06123e-10 -7.80475e-11 -6.86493e-11) (-1.15237e-10 -3.60335e-11 -8.64469e-11) (-5.4672e-12 8.54946e-12 -1.10177e-11) (3.1508e-11 5.34216e-11 2.79037e-11) (2.05916e-10 1.18145e-10 2.69424e-10) (5.98339e-10 2.17553e-11 6.73401e-10) (6.34272e-10 -4.51315e-11 5.93639e-10) (-1.29489e-11 1.39388e-10 -2.77949e-12) (-8.1282e-10 4.21236e-10 -1.44559e-10) (-2.15296e-09 2.25328e-10 -7.54255e-11) (-1.25711e-09 -9.44493e-11 -1.08989e-10) (-3.58814e-10 -1.84614e-11 -1.67662e-10) (-1.24223e-10 4.3068e-11 -1.32256e-10) (-3.23671e-11 2.57235e-11 -5.57607e-11) (6.62117e-12 -7.23082e-12 -3.09853e-11) (3.04028e-10 -2.8067e-10 -3.44076e-10) (1.42443e-09 -1.32952e-09 -1.62305e-09) (1.38856e-09 -1.59571e-09 -2.24386e-09) (3.29936e-10 -5.62051e-10 -1.30873e-09) (-9.19156e-12 5.04361e-11 -3.79876e-10) (-1.52394e-12 1.66745e-10 -4.70769e-11) (6.52768e-11 3.89344e-10 3.73734e-10) (-7.17973e-11 3.19661e-10 1.29129e-09) (-1.05258e-09 -2.54068e-10 1.64045e-09) (-1.43843e-09 -8.91971e-10 9.69608e-10) (-2.70502e-10 -4.88969e-10 6.11214e-11) (1.9148e-10 -2.94824e-10 -2.19953e-10) (9.85953e-10 -2.69659e-10 -9.06887e-10) (1.07552e-09 -1.90768e-11 -1.07529e-09) (3.66767e-10 -4.16363e-11 -3.89065e-10) (3.34631e-11 -1.37999e-11 -8.47098e-12) (2.147e-10 2.53222e-12 6.18879e-10) (1.62388e-09 5.06685e-10 5.96605e-09) (1.85132e-09 6.91047e-10 8.18369e-09) (5.48818e-11 1.68516e-10 1.68315e-09) (-5.42925e-11 2.57006e-11 5.25116e-11) (-2.66684e-11 2.70642e-11 -1.04554e-11) (3.45781e-12 2.28521e-11 2.26328e-12) (1.92457e-11 1.86652e-11 2.13561e-11) (9.89537e-13 -2.69417e-12 4.30294e-12) (-5.932e-11 -9.01081e-11 -2.52237e-11) (-2.04068e-10 -2.45563e-10 -1.39297e-10) (-9.53489e-11 -7.77545e-11 -4.97914e-11) (-9.25013e-12 -2.40531e-13 8.43121e-12) (4.79387e-11 3.06963e-11 1.78113e-10) (2.99499e-10 6.98018e-11 4.719e-10) (2.11823e-10 1.34614e-10 2.00969e-10) (-2.66952e-10 6.79711e-10 -3.18031e-10) (-5.0653e-10 5.21623e-10 -3.24508e-10) (-4.05875e-10 9.58485e-11 -5.84291e-11) (-1.48125e-10 -2.84179e-11 -3.31215e-11) (-3.50986e-11 -1.44923e-11 -7.10238e-11) (2.64265e-11 1.84155e-11 -1.3397e-10) (9.40165e-11 3.18133e-11 -1.3642e-10) (2.03632e-10 -2.45798e-11 -1.73309e-10) (6.11182e-10 -3.43426e-10 -4.949e-10) (7.98023e-10 -9.11353e-10 -1.0643e-09) (-5.32425e-11 -9.67085e-10 -1.33109e-09) (-1.57267e-09 -6.67236e-10 -1.59727e-09) (-1.89187e-09 2.53262e-10 -7.61829e-10) (-3.74811e-10 3.84963e-10 1.80084e-10) (2.36981e-10 5.87176e-10 9.63921e-10) (7.69172e-11 1.85446e-10 1.02203e-09) (-3.92947e-10 -2.26117e-10 5.16501e-10) (-3.63901e-10 -5.18926e-10 1.50817e-10) (5.21191e-11 -3.58628e-10 -1.1759e-10) (6.14539e-10 -2.83991e-10 -4.92055e-10) (1.42216e-09 1.35819e-11 -1.11513e-09) (1.24022e-09 2.38414e-10 -1.16118e-09) (3.7545e-10 9.18576e-11 -4.84173e-10) (1.06226e-11 1.11513e-11 -1.5624e-11) (1.00766e-10 2.51002e-10 7.83607e-10) (2.0508e-09 1.14546e-09 9.42291e-09) (2.78791e-09 -1.44828e-10 1.32453e-08) (2.07682e-10 -3.64766e-10 2.92715e-09) (-4.05295e-11 -1.9587e-11 1.28287e-10) (1.11261e-12 5.37052e-12 4.51914e-12) (8.85686e-11 5.78137e-11 4.49356e-11) (2.11228e-10 6.44275e-11 1.07397e-10) (1.03043e-10 -2.16366e-11 4.03295e-11) (5.19172e-11 -1.09595e-10 -1.59342e-11) (-3.30392e-11 -2.9194e-10 -1.16376e-10) (-1.78867e-10 -2.13319e-10 -8.78722e-11) (-2.71009e-10 -8.30771e-11 5.71017e-11) (-3.35755e-10 4.00958e-12 2.90392e-10) (-2.02564e-10 9.61362e-11 2.63431e-10) (-1.017e-10 2.07385e-10 3.96707e-11) (-4.95777e-10 8.99332e-10 -6.30093e-10) (-1.60763e-10 3.48533e-10 -2.12295e-10) (-1.32782e-11 1.66805e-11 -8.07338e-12) (2.0574e-11 -1.07186e-11 -3.12213e-11) (4.15944e-10 -1.11464e-10 -4.08522e-10) (7.356e-10 -1.37719e-11 -5.84919e-10) (5.00784e-10 8.91059e-11 -3.41098e-10) (2.96421e-10 9.71487e-12 -2.00372e-10) (3.00064e-10 -1.70382e-10 -2.74747e-10) (1.2711e-10 -4.29646e-10 -5.03228e-10) (-1.42229e-09 -8.97513e-10 -1.35975e-09) (-8.80172e-09 -1.04525e-09 -3.18793e-09) (-7.54423e-09 6.47025e-10 -5.58507e-10) (-7.23495e-10 4.34633e-10 6.78021e-10) (2.61936e-10 3.93898e-10 1.15932e-09) (8.14993e-12 1.01836e-11 4.17117e-10) (-9.93383e-11 -1.43088e-10 9.92834e-11) (-5.86991e-11 -3.22492e-10 -3.8207e-11) (1.7802e-10 -2.90303e-10 -2.19122e-10) (8.7588e-10 -1.80322e-10 -7.33841e-10) (2.03789e-09 2.70781e-10 -1.61031e-09) (2.01969e-09 4.84174e-10 -1.90595e-09) (7.06566e-10 2.98142e-10 -1.04253e-09) (3.50685e-11 1.20754e-10 -1.24216e-10) (1.50167e-10 5.07107e-10 7.04464e-10) (3.00943e-09 1.64389e-09 8.97708e-09) (4.05822e-09 -8.12767e-10 1.24921e-08) (6.92626e-10 -8.3391e-10 3.16803e-09) (2.19857e-11 -9.99563e-11 2.92164e-10) (3.36961e-11 8.1108e-12 8.02266e-11) (1.80049e-10 6.51008e-11 1.99254e-10) (3.17863e-10 3.98396e-11 2.52669e-10) (2.87511e-10 -8.26576e-11 1.27652e-10) (2.17688e-10 -2.17671e-10 -8.21034e-12) (1.01976e-11 -2.51365e-10 -1.02839e-10) (-4.63633e-10 -2.98239e-10 -1.50273e-10) (-1.69911e-09 -2.50463e-10 9.8598e-11) (-2.40474e-09 3.32594e-11 6.03128e-10) (-1.8204e-09 3.75718e-10 3.47672e-10) (-9.43173e-10 6.60275e-10 -2.62442e-10) (-4.60282e-10 6.66444e-10 -5.88705e-10) (-6.61626e-12 2.23983e-10 -1.51591e-10) (9.62972e-11 5.16134e-11 -6.93795e-11) (9.76941e-10 -1.16828e-10 -6.32119e-10) (2.38537e-09 -3.83529e-10 -1.67665e-09) (1.50505e-09 -2.42105e-11 -1.07078e-09) (4.84612e-10 9.42094e-11 -2.93868e-10) (2.10706e-10 1.0447e-11 -9.78215e-11) (1.29451e-10 -8.04903e-11 -9.23691e-11) (-1.08819e-10 -1.91359e-10 -1.99797e-10) (-4.46184e-09 -9.84151e-10 -1.7236e-09) (-1.92671e-08 -8.36803e-10 -3.31994e-09) (-1.12862e-08 4.76184e-10 1.0053e-09) (-9.40786e-10 2.72822e-10 1.20277e-09) (1.06455e-10 1.15365e-10 8.19623e-10) (1.18981e-11 -3.43952e-11 1.17445e-10) (-1.42851e-11 -1.00342e-10 1.8652e-11) (8.08327e-12 -2.04599e-10 -5.65033e-11) (1.26419e-10 -1.75708e-10 -2.0948e-10) (6.64995e-10 -9.24238e-11 -7.93962e-10) (2.14088e-09 3.58568e-10 -1.98625e-09) (2.33207e-09 5.30392e-10 -2.45647e-09) (7.37647e-10 4.07628e-10 -1.32446e-09) (4.21525e-11 2.29089e-10 -1.85254e-10) (4.69964e-10 7.61468e-10 8.33973e-10) (4.54471e-09 1.65774e-09 7.50757e-09) (4.6418e-09 -8.55863e-10 8.34393e-09) (9.85523e-10 -7.59742e-10 2.09506e-09) (1.49493e-10 -1.31038e-10 3.03878e-10) (1.50897e-10 -7.49556e-12 2.07999e-10) (3.32535e-10 4.26338e-11 4.13885e-10) (3.82838e-10 -2.19737e-11 4.15331e-10) (2.42481e-10 -1.14668e-10 1.66506e-10) (6.36902e-11 -1.1635e-10 -1.57576e-14) (-1.9608e-10 -2.13966e-10 -1.10044e-10) (-1.91503e-09 -4.90044e-10 -3.05372e-10) (-4.66089e-09 -3.41765e-10 1.01672e-10) (-5.46216e-09 1.03133e-10 5.01164e-10) (-4.2433e-09 6.23042e-10 -8.28695e-11) (-1.9032e-09 8.58442e-10 -7.29834e-10) (-2.58812e-10 3.67729e-10 -4.19251e-10) (1.24821e-10 2.07692e-10 -2.24342e-10) (8.52699e-10 1.49672e-10 -5.11695e-10) (3.05612e-09 -2.85036e-10 -1.75419e-09) (3.34621e-09 -3.94051e-10 -2.23987e-09) (1.48407e-09 3.31161e-11 -1.03033e-09) (5.06968e-10 9.77181e-11 -2.50813e-10) (1.90005e-10 8.48019e-12 -4.67403e-11) (1.85572e-11 -1.86512e-11 -1.0819e-11) (-5.16394e-10 -2.01013e-10 -1.75006e-10) (-9.49959e-09 -8.80982e-10 -1.75285e-09) (-2.44174e-08 -6.45548e-10 -1.52297e-09) (-1.05983e-08 -1.44613e-10 2.33286e-09) (-9.74648e-10 6.49341e-13 1.34958e-09) (2.94646e-11 -2.47181e-11 4.6876e-10) (2.3999e-11 -3.76656e-11 5.85489e-11) (1.03002e-11 -6.94839e-11 1.16799e-11) (-2.8869e-12 -1.02236e-10 -3.1875e-11) (2.93184e-11 -1.03088e-10 -1.67795e-10) (3.26449e-10 -5.74359e-11 -7.31199e-10) (1.41196e-09 2.84862e-10 -1.85921e-09) (1.55629e-09 4.15495e-10 -2.18432e-09) (3.18541e-10 3.27199e-10 -9.39485e-10) (2.67594e-11 1.73361e-10 -7.26238e-11) (1.17371e-09 9.54013e-10 1.32464e-09) (5.82522e-09 1.29034e-09 6.46758e-09) (3.99445e-09 -6.10945e-10 4.88115e-09) (7.91204e-10 -4.47534e-10 1.04687e-09) (1.8048e-10 -9.54991e-11 1.84605e-10) (2.28068e-10 -2.03366e-11 1.80986e-10) (3.93017e-10 7.62135e-13 3.39844e-10) (3.02424e-10 -4.80592e-11 2.7473e-10) (5.6707e-11 -4.56848e-11 4.8885e-11) (-5.22892e-11 -6.24702e-11 -1.23006e-11) (-1.28026e-09 -3.80175e-10 -2.27876e-10) (-4.70943e-09 -5.73565e-10 -2.40018e-10) (-6.9578e-09 -3.01337e-10 2.17879e-10) (-6.79311e-09 1.38598e-10 2.39687e-10) (-4.88082e-09 5.41321e-10 -4.16123e-10) (-1.77665e-09 5.91957e-10 -7.3192e-10) (-1.01636e-10 2.07713e-10 -3.51989e-10) (4.07161e-10 2.33642e-10 -4.78309e-10) (1.83247e-09 1.06636e-10 -1.00958e-09) (3.27623e-09 -2.92561e-10 -1.59372e-09) (2.38542e-09 -1.42055e-10 -1.34268e-09) (1.14366e-09 1.02653e-10 -6.71221e-10) (4.83708e-10 1.01637e-10 -2.06287e-10) (1.05634e-10 8.01047e-12 -2.60655e-11) (-9.17075e-12 -7.53949e-12 -4.05008e-12) (-1.89061e-09 -2.89308e-10 -2.77842e-10) (-1.37056e-08 -6.71568e-10 -1.34804e-09) (-2.09523e-08 -7.76494e-10 3.14775e-10) (-7.12664e-09 -5.99571e-10 2.29467e-09) (-7.99513e-10 -1.79451e-10 1.0895e-09) (-9.53429e-12 -6.22248e-11 3.22723e-10) (2.93593e-11 -3.8448e-11 6.15913e-11) (7.30267e-12 -4.12246e-11 1.51816e-11) (-1.40653e-11 -4.63331e-11 -1.60835e-11) (-3.2644e-11 -6.80939e-11 -1.48529e-10) (7.1539e-11 -3.50039e-11 -6.44876e-10) (5.73284e-10 1.68665e-10 -1.42188e-09) (6.26516e-10 2.71412e-10 -1.45664e-09) (5.60252e-11 1.80872e-10 -4.36878e-10) (5.93838e-11 1.04173e-10 2.24039e-11) (2.49126e-09 9.77375e-10 2.25368e-09) (6.10868e-09 7.69097e-10 5.66219e-09) (2.63815e-09 -3.79707e-10 2.7756e-09) (4.22585e-10 -2.05471e-10 4.7231e-10) (1.16007e-10 -5.13214e-11 8.63394e-11) (1.66748e-10 -2.07842e-11 8.93002e-11) (2.20362e-10 -1.2256e-11 1.26428e-10) (7.24039e-11 -1.50518e-11 4.40292e-11) (-2.79545e-12 -4.66847e-12 -5.23759e-14) (-5.2646e-10 -1.32749e-10 -1.02725e-10) (-3.25111e-09 -4.19029e-10 -2.26221e-10) (-6.19167e-09 -4.4407e-10 1.08324e-10) (-6.64201e-09 -1.70513e-10 3.44136e-10) (-5.85704e-09 1.35517e-10 1.87424e-10) (-3.82916e-09 3.18637e-10 -3.06168e-10) (-1.13712e-09 2.97035e-10 -4.98746e-10) (3.21962e-11 1.47504e-10 -4.38352e-10) (8.11542e-10 1.92852e-10 -8.06319e-10) (1.7944e-09 -1.10716e-11 -9.04576e-10) (1.86325e-09 -1.38394e-10 -7.15555e-10) (1.14236e-09 2.79285e-12 -4.65523e-10) (6.29373e-10 1.0231e-10 -2.6529e-10) (2.76177e-10 7.05335e-11 -1.068e-10) (1.77242e-11 2.89585e-12 -1.2109e-11) (-1.85626e-10 -3.51138e-11 -5.33344e-11) (-3.98254e-09 -3.2877e-10 -5.06922e-10) (-1.34172e-08 -5.5547e-10 -7.93132e-10) (-1.26334e-08 -8.32636e-10 9.04578e-10) (-3.69219e-09 -6.09547e-10 1.49734e-09) (-5.73579e-10 -2.10741e-10 7.80393e-10) (-2.82277e-11 -6.0778e-11 2.67965e-10) (1.80605e-11 -3.15366e-11 6.75731e-11) (-1.77915e-12 -2.12789e-11 1.395e-11) (-2.05125e-11 -2.53334e-11 -1.06107e-11) (-7.47333e-11 -4.66804e-11 -1.405e-10) (-8.69622e-11 -1.52877e-11 -5.56534e-10) (1.03988e-10 9.35099e-11 -9.98615e-10) (1.63819e-10 1.50895e-10 -8.13184e-10) (1.99593e-11 6.14628e-11 -1.24231e-10) (3.13353e-10 1.42444e-10 2.0702e-10) (4.30541e-09 7.52951e-10 3.5244e-09) (5.32329e-09 3.56412e-10 4.85949e-09) (1.3812e-09 -1.97923e-10 1.5335e-09) (1.59842e-10 -7.47022e-11 1.95626e-10) (4.41278e-11 -1.89856e-11 3.0115e-11) (6.24734e-11 -9.04729e-12 2.32851e-11) (4.99167e-11 -3.11378e-12 1.44384e-11) (1.43859e-12 -4.31213e-13 -3.7638e-13) (-9.20776e-11 -1.42426e-11 -3.68916e-11) (-1.38201e-09 -1.29019e-10 -1.85759e-10) (-4.16558e-09 -3.04655e-10 1.19364e-11) (-5.41837e-09 -2.59888e-10 3.3843e-10) (-5.03013e-09 -5.29065e-11 3.91462e-10) (-4.28515e-09 1.00526e-10 2.8897e-10) (-2.55551e-09 1.44423e-10 -1.17617e-10) (-6.04074e-10 1.27085e-10 -3.38423e-10) (2.31929e-10 1.10801e-10 -6.58633e-10) (9.13065e-10 8.72237e-11 -8.36693e-10) (1.05375e-09 -4.52453e-11 -4.87558e-10) (7.20124e-10 -3.03668e-11 -2.20348e-10) (4.03615e-10 2.21945e-11 -1.1497e-10) (2.19257e-10 4.78993e-11 -7.30664e-11) (6.41496e-11 2.25247e-11 -3.669e-11) (-9.94147e-12 1.21117e-12 -1.67296e-11) (-8.13452e-10 -7.65919e-11 -2.23899e-10) (-5.06912e-09 -3.10864e-10 -6.41413e-10) (-9.00307e-09 -4.54685e-10 -3.03282e-10) (-5.67884e-09 -5.99996e-10 7.002e-10) (-1.64016e-09 -4.02079e-10 8.40986e-10) (-3.64432e-10 -1.63606e-10 5.49771e-10) (-2.49322e-11 -4.57149e-11 2.24239e-10) (3.0577e-12 -2.04226e-11 5.8908e-11) (-6.73663e-12 -1.12904e-11 1.08812e-11) (-2.6367e-11 -1.65798e-11 -9.40898e-12) (-9.81354e-11 -2.84001e-11 -1.28942e-10) (-1.55728e-10 -5.74929e-13 -4.45368e-10) (-6.28484e-11 4.8991e-11 -6.44167e-10) (4.08773e-11 6.43858e-11 -3.82853e-10) (3.25041e-11 1.65875e-11 -2.49664e-11) (1.1759e-09 1.39426e-10 7.78234e-10) (5.55381e-09 3.53573e-10 4.5102e-09) (3.51972e-09 9.58664e-11 3.54332e-09) (5.59287e-10 -7.29158e-11 7.62355e-10) (3.99439e-11 -1.92888e-11 6.28624e-11) (8.68166e-12 -3.60922e-12 4.22512e-12) (1.29143e-11 -1.53948e-12 -3.91107e-13) (5.52197e-12 6.6499e-14 -2.87783e-12) (-7.46864e-12 4.22697e-13 -1.00546e-11) (-3.22858e-10 -5.38819e-12 -9.37034e-11) (-1.83655e-09 -7.60175e-11 -7.24657e-11) (-3.55791e-09 -1.76903e-10 2.43174e-10) (-3.86579e-09 -1.24961e-10 3.87114e-10) (-3.56693e-09 -6.16106e-12 4.23887e-10) (-2.96105e-09 3.84019e-11 3.57837e-10) (-1.48765e-09 3.89636e-11 -6.5308e-11) (-2.57625e-10 4.60164e-11 -2.64859e-10) (4.28308e-10 5.5283e-11 -8.24093e-10) (6.76787e-10 1.7084e-11 -6.07051e-10) (4.67e-10 -2.55699e-11 -2.1127e-10) (2.43026e-10 -3.27326e-12 -6.46389e-11) (1.10708e-10 8.79658e-12 -2.98712e-11) (3.98966e-11 1.09367e-11 -2.0785e-11) (2.48686e-12 4.56926e-12 -1.42708e-11) (-1.35206e-10 -1.27601e-12 -8.48923e-11) (-1.44184e-09 -9.68203e-11 -3.65517e-10) (-4.13747e-09 -2.26751e-10 -4.75028e-10) (-4.46019e-09 -2.82138e-10 -1.7377e-11) (-2.12328e-09 -3.09861e-10 4.13847e-10) (-6.88405e-10 -2.14587e-10 4.71867e-10) (-2.05254e-10 -1.01217e-10 3.80191e-10) (-2.4225e-11 -3.05768e-11 1.73486e-10) (-7.81857e-12 -1.13067e-11 4.43464e-11) (-9.69198e-12 -6.6117e-12 8.74052e-12) (-2.99056e-11 -1.02197e-11 -9.59312e-12) (-9.6931e-11 -1.30234e-11 -1.09685e-10) (-1.43455e-10 6.05779e-12 -3.18519e-10) (-6.32718e-11 1.77328e-11 -3.67567e-10) (3.42273e-11 1.77549e-11 -1.55568e-10) (1.23341e-10 8.79516e-12 7.30041e-12) (2.18245e-09 -4.51208e-12 1.49733e-09) (4.76113e-09 3.04051e-11 4.17055e-09) (1.72645e-09 4.614e-12 2.09898e-09) (1.66928e-10 -1.71971e-11 3.13492e-10) (4.81912e-12 -2.54787e-12 1.03196e-11) (1.30702e-12 -4.36858e-13 -5.636e-13) (4.34765e-12 -1.7558e-13 -4.61049e-12) (4.20736e-13 7.43754e-13 -7.02029e-12) (-4.65064e-11 4.68642e-12 -2.96298e-11) (-5.03836e-10 1.07613e-11 -6.39645e-11) (-1.63786e-09 -3.30526e-11 1.00363e-10) (-2.44545e-09 -8.66419e-11 3.09108e-10) (-2.60463e-09 -5.36582e-11 3.72663e-10) (-2.45925e-09 -1.00213e-11 4.32174e-10) (-1.84479e-09 -1.41267e-11 3.00826e-10) (-6.73828e-10 -4.64652e-12 -9.12933e-11) (-8.63244e-11 1.38776e-11 -2.79673e-10) (4.91552e-10 6.16399e-12 -7.96722e-10) (4.45384e-10 -3.35449e-12 -3.88258e-10) (2.10121e-10 -8.2149e-12 -9.66882e-11) (1.06533e-10 -8.27166e-13 -2.87827e-11) (4.28456e-11 1.84358e-12 -1.6596e-11) (1.08564e-11 2.5218e-12 -1.3087e-11) (-1.06916e-11 2.5198e-12 -2.41101e-11) (-2.18512e-10 -7.9316e-12 -1.19888e-10) (-1.12861e-09 -6.55439e-11 -2.79489e-10) (-2.10663e-09 -1.07335e-10 -2.09053e-10) (-1.6379e-09 -1.22501e-10 6.07635e-11) (-6.82777e-10 -1.27117e-10 2.08376e-10) (-2.75406e-10 -1.05412e-10 2.6315e-10) (-9.62708e-11 -5.60414e-11 2.50576e-10) (-1.92383e-11 -2.00837e-11 1.213e-10) (-8.25005e-12 -6.59458e-12 3.06232e-11) (-7.29079e-12 -3.60558e-12 5.60939e-12) (-1.96943e-11 -5.1102e-12 -7.61027e-12) (-5.91981e-11 -5.98733e-12 -7.5711e-11) (-7.56158e-11 1.5895e-12 -1.97832e-10) (-1.00308e-11 -1.79205e-12 -1.96536e-10) (4.79467e-11 9.71175e-13 -7.55248e-11) (3.16811e-10 -1.38512e-11 8.6412e-11) (2.3992e-09 -1.40597e-10 1.77469e-09) (2.86788e-09 -7.00238e-11 2.88655e-09) (7.24948e-10 -2.53224e-12 1.08835e-09) (4.78713e-11 -1.58073e-12 1.10931e-10) (7.62345e-13 -1.78729e-13 7.39888e-13) (3.1393e-12 -4.1501e-13 -3.62893e-12) (5.39847e-12 2.84611e-14 -8.02224e-12) (-8.98129e-13 7.1963e-13 -5.65543e-12) (-4.72471e-11 4.82931e-12 -1.4773e-11) (-3.68336e-10 1.12113e-11 1.62854e-11) (-9.37577e-10 -1.28827e-11 1.58494e-10) (-1.34463e-09 -3.7744e-11 2.61865e-10) (-1.52721e-09 -2.83335e-11 3.20911e-10) (-1.41272e-09 -2.50085e-11 3.49957e-10) (-8.75387e-10 -2.78083e-11 1.54716e-10) (-2.06277e-10 -1.05762e-11 -8.61245e-11) (3.67862e-11 -6.2474e-12 -3.72453e-10) (4.30841e-10 -2.21833e-11 -6.61435e-10) (3.1597e-10 -9.92361e-12 -2.6644e-10) (1.67721e-10 -4.22259e-12 -7.39469e-11) (1.17388e-10 -3.97268e-12 -3.57002e-11) (6.58742e-11 -2.08956e-12 -3.21753e-11) (2.44727e-11 1.0451e-13 -2.92995e-11) (-4.48939e-12 -1.17491e-13 -3.09795e-11) (-1.03951e-10 -6.33295e-12 -7.77772e-11) (-4.3503e-10 -2.4496e-11 -1.30826e-10) (-6.45647e-10 -3.27717e-11 -6.78236e-11) (-4.08021e-10 -3.81792e-11 3.2435e-11) (-1.78533e-10 -4.35045e-11 8.35851e-11) (-1.04908e-10 -5.04644e-11 1.44466e-10) (-4.00633e-11 -3.12133e-11 1.64578e-10) (-1.18998e-11 -1.23321e-11 8.08386e-11) (-5.00258e-12 -3.86265e-12 2.0261e-11) (-3.08901e-12 -1.53793e-12 2.81323e-12) (-6.71814e-12 -1.72445e-12 -3.90138e-12) (-2.15379e-11 -2.6406e-12 -4.44104e-11) (-1.651e-11 -1.8917e-12 -1.21836e-10) (4.16136e-11 -1.08535e-11 -1.35077e-10) (1.09409e-10 -1.01761e-11 -7.46335e-11) (5.81963e-10 -5.2832e-11 1.78607e-10) (2.30382e-09 -2.11155e-10 1.65187e-09) (2.05619e-09 -1.22535e-10 2.02491e-09) (5.90373e-10 -2.16901e-11 7.30585e-10) (8.871e-11 -2.64656e-12 8.5471e-11) (3.23233e-11 -1.72689e-12 2.6136e-12) (4.986e-11 -2.63618e-12 -1.39518e-11) (4.00414e-11 -9.04967e-13 -1.25219e-11) (4.7905e-12 4.01781e-13 -1.82302e-12) (-3.07956e-12 6.37046e-13 6.81488e-13) (-8.59991e-11 4.18819e-12 3.05157e-11) (-2.83661e-10 -1.3111e-12 1.04142e-10) (-5.13233e-10 -9.40849e-12 1.71799e-10) (-6.68039e-10 -1.37012e-11 2.29714e-10) (-5.92322e-10 -2.12008e-11 2.14986e-10) (-2.72189e-10 -1.61637e-11 4.74434e-11) (-4.79798e-11 -7.80381e-12 -6.14294e-11) (1.39487e-10 -2.64091e-11 -4.5122e-10) (2.3028e-10 -2.84912e-11 -4.42622e-10) (1.54142e-10 -9.97333e-12 -1.63017e-10) (1.02174e-10 -3.3482e-12 -5.8059e-11) (8.96882e-11 -6.18653e-12 -4.35163e-11) (5.98586e-11 -5.26979e-12 -4.84478e-11) (2.49621e-11 -3.0392e-12 -5.03811e-11) (-1.14028e-11 -2.16422e-12 -5.33366e-11) (-8.30791e-11 -3.72968e-12 -7.48771e-11) (-1.84885e-10 -4.95516e-12 -7.65896e-11) (-1.70122e-10 -4.48676e-12 -3.327e-11) (-7.95873e-11 -7.07368e-12 3.42405e-12) (-4.54043e-11 -1.15463e-11 2.68062e-11) (-5.15154e-11 -2.14745e-11 8.02875e-11) (-3.58038e-11 -1.62181e-11 1.12616e-10) (-1.99717e-11 -5.69613e-12 5.94631e-11) (-9.09608e-12 -1.78259e-12 1.77486e-11) (-4.72191e-12 -7.56076e-13 3.03664e-12) (-5.7752e-12 -3.75212e-13 -3.32269e-12) (-1.16894e-11 -4.73491e-14 -3.38646e-11) (7.08491e-12 -1.19799e-12 -1.00341e-10) (8.79206e-11 -1.3624e-11 -1.46891e-10) (2.22523e-10 -2.05276e-11 -1.07464e-10) (7.68139e-10 -7.30924e-11 1.91975e-10) (1.97197e-09 -1.89689e-10 1.28521e-09) (1.63892e-09 -1.31863e-10 1.46882e-09) (5.58789e-10 -3.13376e-11 5.38067e-10) (1.49876e-10 -5.45501e-12 8.04928e-11) (1.09177e-10 -4.22162e-12 4.69863e-12) (1.23287e-10 -4.80356e-12 -9.5616e-12) (7.77765e-11 -1.66069e-12 1.26028e-13) (1.6622e-11 6.51205e-13 4.62743e-12) (-6.71409e-14 9.77065e-13 5.56354e-12) (-2.56008e-11 3.29995e-12 2.92984e-11) (-9.62908e-11 4.33348e-12 7.56657e-11) (-2.11546e-10 2.21981e-12 1.3456e-10) (-2.88493e-10 -5.51111e-12 1.79793e-10) (-2.18888e-10 -1.055e-11 1.31702e-10) (-5.65525e-11 -4.83723e-12 1.28791e-11) (-9.13085e-12 -6.23021e-12 -5.04559e-11) (1.23287e-10 -3.23225e-11 -3.88779e-10) (3.61483e-11 -1.26029e-11 -1.59945e-10) (1.05783e-11 -2.92939e-12 -4.09237e-11) (4.04438e-12 -5.04995e-13 -8.87477e-12) (1.85618e-12 -8.71648e-13 -7.0137e-12) (-5.60297e-12 -1.80534e-12 -1.99194e-11) (-3.69357e-11 -2.39447e-12 -5.28186e-11) (-1.03493e-10 -1.17616e-12 -9.05695e-11) (-1.6815e-10 1.26428e-12 -1.0085e-10) (-1.47685e-10 2.85717e-12 -6.97777e-11) (-6.53915e-11 1.78397e-12 -2.91349e-11) (-1.64822e-11 -1.69493e-13 -5.75598e-12) (-7.47576e-12 -1.12365e-12 2.67552e-12) (-1.91814e-11 -4.23082e-12 2.55034e-11) (-3.00422e-11 -5.27529e-12 5.74813e-11) (-2.55046e-11 -1.38971e-12 4.0611e-11) (-1.67119e-11 -2.36629e-13 1.88282e-11) (-1.15403e-11 5.49865e-14 6.58165e-12) (-7.41813e-12 4.62426e-13 -1.2916e-12) (-5.98642e-12 7.96927e-13 -1.28921e-11) (8.76857e-12 6.86124e-13 -5.22788e-11) (7.67312e-11 -5.42367e-12 -1.15613e-10) (2.11551e-10 -1.22313e-11 -1.19593e-10) (4.569e-10 -3.44258e-11 3.50108e-11) (6.78096e-10 -5.98612e-11 3.79747e-10) (3.50839e-10 -3.44968e-11 3.59733e-10) (4.76737e-11 -3.71088e-12 7.13423e-11) (2.97114e-12 -7.56335e-14 1.81395e-12) (1.92956e-12 -2.44659e-14 -8.46637e-13) (1.60076e-12 -4.79632e-14 -2.24129e-13) (-1.48283e-12 1.29355e-13 8.35902e-13) (-1.26788e-11 1.22434e-12 7.91517e-12) (-3.55039e-11 3.93088e-12 2.75693e-11) (-6.03035e-11 6.92912e-12 5.55051e-11) (-9.29806e-11 7.29422e-12 9.06548e-11) (-1.29905e-10 4.25819e-12 1.30575e-10) (-1.35957e-10 -1.44116e-12 1.47321e-10) (-7.52563e-11 -3.37058e-12 8.90176e-11) (-5.86973e-12 -7.3759e-13 7.09626e-12) (3.6046e-12 -1.69012e-12 -1.18043e-11) (3.9517e-11 -1.36338e-11 -1.43993e-10) (-5.88399e-14 -4.24527e-13 -5.65316e-12) (-2.12483e-12 -1.36182e-13 -2.10918e-12) (-2.11616e-12 -1.80658e-14 -3.04331e-13) (-3.38782e-12 -7.42771e-14 -5.92376e-14) (-1.06271e-11 -2.67796e-13 -2.26367e-12) (-2.82127e-11 -4.08367e-13 -9.52856e-12) (-4.67216e-11 -2.98864e-13 -1.85523e-11) (-4.78886e-11 -5.76448e-14 -2.20639e-11) (-3.10252e-11 1.52795e-13 -1.91803e-11) (-1.38507e-11 3.40017e-13 -1.46121e-11) (-4.77323e-12 3.06129e-13 -1.07547e-11) (-1.13792e-12 -1.72127e-14 -4.29904e-12) (-2.27628e-13 -4.01645e-14 -1.58788e-13) (-1.6965e-12 -2.62191e-13 1.65436e-12) (-3.71953e-12 -2.85936e-13 3.62963e-12) (-4.66179e-12 -2.6168e-13 4.39894e-12) (-5.73051e-12 -2.08206e-13 5.52759e-12) (-4.57929e-12 -1.64158e-14 4.2236e-12) (-8.35105e-13 8.63575e-15 6.81168e-13) (1.28528e-14 3.69695e-15 -8.66445e-14) (4.35705e-12 -4.76127e-14 -6.21305e-12) (3.39632e-11 -1.51453e-13 -3.11666e-11) (6.76006e-11 -1.54988e-12 -3.53449e-11) (3.86911e-11 -1.5672e-12 -6.33983e-12) (4.07703e-12 -3.47669e-13 1.638e-12) (-8.98717e-13 -4.76621e-14 5.42131e-13) (-4.32798e-12 -6.38465e-14 -7.42769e-13) (-5.3804e-12 -1.08218e-13 -1.71269e-12) (-7.48562e-12 -1.60159e-13 -1.18198e-12) (-1.48585e-11 -1.80541e-13 2.50026e-13) (-2.20589e-11 -6.58554e-15 2.62626e-12) (-1.82114e-11 2.99355e-13 4.68762e-12) (-1.06109e-11 5.2763e-13 6.04294e-12) (-7.69468e-12 3.62059e-13 9.01124e-12) (-8.44957e-12 1.48689e-13 1.62629e-11) (-1.03812e-11 -2.01296e-13 2.68983e-11) (-6.44301e-12 -4.58838e-13 3.24462e-11) (4.40394e-12 -2.6943e-13 2.36374e-11) (6.3214e-12 -2.86235e-13 5.67844e-12) (2.87936e-12 -3.21401e-13 -1.86897e-12) (-4.11194e-09 -6.16503e-10 -1.20777e-09) (-1.70248e-09 -4.30968e-10 -1.00483e-09) (-2.81045e-10 -1.17738e-10 -3.24186e-10) (8.65554e-13 -5.39298e-12 -1.45038e-11) (1.26421e-10 7.07861e-12 6.24537e-11) (9.86847e-10 1.2285e-10 6.92296e-10) (2.59592e-09 3.72002e-10 1.78382e-09) (3.55386e-09 5.63962e-10 2.18376e-09) (2.57975e-09 5.03529e-10 1.38564e-09) (8.64973e-10 2.68535e-10 3.80397e-10) (1.02844e-10 7.49494e-11 1.5552e-11) (-2.8618e-12 2.85769e-11 -2.91278e-11) (-7.74088e-11 1.02784e-11 -1.29274e-10) (-1.20569e-10 -1.13221e-10 -2.21357e-10) (-4.97383e-11 -2.31518e-10 -2.07782e-10) (1.36354e-11 -1.83219e-10 -1.13567e-10) (-1.02364e-11 -4.11892e-11 -2.17702e-11) (-9.42694e-11 -1.04168e-11 1.09813e-11) (-5.07209e-10 9.70249e-11 2.42409e-10) (-6.14128e-10 2.4481e-10 6.41513e-10) (-2.12364e-10 3.14502e-10 7.98494e-10) (1.57877e-10 3.23206e-10 6.4248e-10) (2.32796e-10 2.27297e-10 2.68596e-10) (1.25418e-10 9.97953e-11 2.35343e-11) (5.65348e-11 3.75437e-11 -5.10661e-11) (2.5909e-11 9.53074e-12 -9.74304e-11) (-5.38909e-12 -1.41107e-11 -1.11876e-10) (-2.57567e-11 -2.41543e-11 -8.88465e-11) (-4.52476e-11 -2.98366e-11 -6.90218e-11) (-9.93781e-11 -4.85694e-11 -6.77369e-11) (-2.03603e-10 -8.2005e-11 -6.15187e-11) (-1.94455e-10 -7.7588e-11 -2.62648e-11) (-3.59671e-11 -2.10424e-11 -3.06337e-12) (3.73663e-12 -2.27664e-12 -5.03296e-13) (1.25126e-10 -3.07698e-12 -5.08434e-12) (2.49359e-10 1.67872e-12 -7.04039e-12) (6.34973e-11 -5.27924e-12 -2.12498e-12) (-1.91696e-11 -4.9155e-12 -1.11903e-12) (-1.17675e-09 -9.39857e-11 -6.48982e-11) (-4.10839e-09 -3.54673e-10 -5.47554e-10) (-1.86953e-09 -1.19873e-09 -1.78018e-09) (-5.87935e-10 -4.13452e-10 -7.36212e-10) (-9.26893e-11 -2.50907e-11 -1.17595e-10) (-1.0604e-11 1.05231e-11 -3.34546e-12) (-5.74735e-12 4.316e-11 5.39879e-11) (7.77661e-11 9.22689e-11 3.24118e-10) (3.33968e-10 5.44677e-11 7.3373e-10) (4.74501e-10 -8.91386e-12 7.11365e-10) (2.53745e-10 3.1101e-12 2.68531e-10) (4.01603e-11 8.14016e-12 2.48297e-11) (1.50826e-12 1.96395e-12 -1.33424e-12) (-1.55517e-12 1.56538e-12 -5.36109e-12) (7.44477e-13 -2.95929e-12 -3.31133e-12) (5.18001e-11 -5.72555e-11 1.12633e-12) (2.91003e-10 -2.20997e-10 3.34249e-11) (3.13562e-10 -1.59413e-10 -2.16509e-11) (4.19385e-11 -4.34358e-12 -2.67833e-11) (-4.81867e-11 3.22461e-11 -2.30325e-11) (-5.13391e-10 1.52753e-10 9.70601e-11) (-7.38192e-10 1.46408e-10 4.63402e-10) (-2.90908e-10 1.07311e-10 4.84557e-10) (4.75394e-11 1.09817e-10 2.79313e-10) (2.40661e-10 1.5646e-10 1.48225e-10) (3.8561e-10 1.99474e-10 -8.01787e-12) (2.9551e-10 1.31321e-10 -9.81096e-11) (1.09058e-10 3.86131e-11 -5.67287e-11) (1.79347e-11 5.44638e-12 -1.23277e-11) (5.90537e-13 1.01828e-12 -1.76902e-12) (-9.60021e-12 4.00091e-12 -7.30394e-12) (-8.96364e-11 -3.68482e-12 -5.03435e-11) (-2.73383e-10 -1.24256e-10 -1.74126e-10) (-2.98237e-10 -3.44011e-10 -2.99749e-10) (-2.93079e-11 -3.21899e-10 -2.28016e-10) (1.95858e-10 -1.83535e-10 -8.41878e-11) (4.36294e-10 -5.41138e-11 7.01074e-11) (2.42902e-10 1.03005e-10 1.5231e-10) (-7.35762e-11 1.22622e-10 1.02413e-10) (-1.31973e-09 3.30973e-10 5.66893e-11) (-3.35255e-09 -2.19967e-10 -9.06339e-10) (-3.32012e-09 -1.21617e-09 -1.96607e-09) (-1.72065e-09 -1.13082e-09 -9.95201e-10) (-5.79901e-10 -2.94776e-10 -2.24844e-11) (-1.73114e-10 -2.78623e-11 1.17642e-10) (-5.76255e-11 3.11903e-11 7.12893e-11) (-8.8617e-12 2.42932e-11 1.98759e-11) (1.09701e-11 1.33614e-11 1.20021e-11) (1.06044e-10 5.75672e-12 7.27578e-11) (4.0376e-10 -5.16222e-11 2.63685e-10) (5.71245e-10 -4.48613e-11 3.2638e-10) (3.55301e-10 4.57097e-11 1.39783e-10) (1.44984e-10 8.16136e-11 2.47411e-11) (6.36906e-11 7.48482e-11 1.19278e-11) (2.82922e-11 2.25705e-11 2.77216e-11) (4.30499e-11 -7.13061e-11 7.72803e-11) (4.1105e-11 -5.23568e-10 7.01766e-11) (-1.44851e-10 -7.91799e-10 -3.49508e-10) (-3.38692e-10 -3.31506e-10 -6.44531e-10) (-3.64669e-10 1.40743e-10 -5.07809e-10) (-1.54775e-10 1.77337e-10 -1.15822e-10) (-1.48572e-11 5.81985e-11 2.6897e-11) (7.34807e-11 5.76656e-11 1.19705e-10) (2.47816e-10 8.36555e-11 2.13987e-10) (2.59535e-10 1.08975e-10 1.46825e-10) (9.30308e-11 6.47034e-11 4.63495e-11) (5.74179e-12 1.77613e-11 1.19254e-11) (-1.92965e-11 1.71913e-11 1.71928e-11) (-4.32406e-11 2.66456e-11 2.13492e-11) (-2.75634e-11 2.4244e-11 -1.95862e-12) (-2.44513e-11 2.33347e-11 -5.13908e-11) (-7.07541e-11 -5.66984e-11 -3.2917e-10) (-2.68286e-10 -5.45176e-10 -1.00869e-09) (-4.59476e-10 -1.04788e-09 -1.17195e-09) (-2.29065e-10 -6.52004e-10 -4.06186e-10) (5.35426e-12 -9.69653e-11 1.78917e-12) (1.58748e-10 3.82752e-11 1.84672e-10) (5.73123e-10 6.82122e-10 7.96081e-10) (2.20868e-10 6.60354e-10 4.73997e-10) (-4.21087e-11 7.32848e-11 -9.77531e-12) (-6.11213e-10 -2.29753e-10 -6.20578e-10) (-1.9951e-09 -1.34509e-09 -1.82782e-09) (-1.2797e-09 -5.02907e-10 9.07995e-11) (-1.11828e-09 -6.68232e-10 1.12901e-09) (-1.09647e-09 -6.12221e-10 1.99299e-09) (-7.83836e-10 -1.44017e-10 1.24729e-09) (-2.75063e-10 1.08523e-10 4.3283e-10) (1.35115e-11 1.22962e-10 1.83146e-10) (4.07323e-10 2.155e-10 2.81855e-10) (1.46843e-09 2.91918e-10 4.29872e-10) (2.5948e-09 2.93733e-10 2.60072e-10) (2.75984e-09 4.52672e-10 -1.24834e-10) (1.90326e-09 6.31154e-10 -2.9501e-10) (7.63941e-10 4.44183e-10 -1.37544e-10) (5.70785e-11 3.56873e-11 -7.00336e-12) (-1.56624e-10 -2.81142e-10 -6.80853e-11) (-4.09704e-09 -4.96426e-09 -1.78134e-09) (-1.04957e-08 -8.41969e-09 -4.55041e-09) (-6.06696e-09 -2.61502e-09 -2.75354e-09) (-6.06117e-10 2.40206e-11 -4.21508e-10) (5.82889e-11 8.32354e-11 -5.25055e-11) (5.69609e-10 2.64422e-10 5.07197e-11) (8.36252e-10 2.90183e-10 2.70762e-10) (5.64877e-10 2.31389e-10 2.47259e-10) (1.89073e-10 1.32458e-10 8.64629e-11) (1.90798e-11 4.08336e-11 1.2371e-11) (-8.66967e-12 1.2565e-11 2.92989e-12) (-1.31918e-11 4.18377e-12 2.87397e-12) (-9.19134e-13 1.95638e-13 7.38264e-14) (6.65652e-12 2.77658e-12 -7.07227e-12) (7.01746e-11 2.09009e-11 -9.73891e-11) (1.09874e-10 8.43579e-13 -2.8327e-10) (-6.20072e-13 -1.24847e-10 -3.759e-10) (-2.46389e-10 -4.30232e-10 -4.42575e-10) (-4.96719e-10 -9.12835e-10 -4.63189e-10) (-2.74593e-10 -6.08477e-10 -2.07655e-10) (-1.07172e-11 -3.48133e-11 -4.15234e-12) (8.49477e-11 1.07031e-10 8.33977e-11) (5.28833e-10 8.58954e-10 4.46744e-10) (1.72535e-10 5.6167e-10 1.35271e-10) (-1.4404e-10 1.32013e-10 -9.19641e-11) (-9.8266e-10 -1.17009e-10 -3.98979e-10) (-2.28576e-10 -3.74288e-10 6.88761e-10) (8.50874e-11 -1.80056e-09 3.50782e-09) (-1.99951e-10 -1.93574e-09 3.96086e-09) (-6.66139e-10 -7.9939e-10 1.68079e-09) (-3.41976e-10 -1.53356e-10 4.68255e-10) (-2.27038e-11 7.58194e-12 1.15907e-10) (2.14975e-10 6.17701e-11 1.82556e-10) (1.03352e-09 1.6579e-10 3.68001e-10) (1.97063e-09 3.92819e-10 3.89805e-10) (2.48092e-09 9.90589e-10 2.60443e-10) (2.62729e-09 1.92205e-09 3.14507e-11) (1.85886e-09 1.96356e-09 -3.3349e-10) (3.70268e-10 4.45295e-10 -4.02854e-10) (-7.29706e-10 -6.9123e-10 -1.30653e-09) (-1.34339e-08 -8.94681e-09 -7.06001e-09) (-3.37739e-08 -1.38293e-08 -6.90729e-09) (-1.63532e-08 -3.95418e-09 -2.33274e-10) (-7.73403e-10 -7.86104e-11 2.57701e-10) (2.06167e-10 9.42197e-11 1.73001e-10) (1.17398e-09 4.30751e-10 5.07697e-10) (9.17766e-10 3.69061e-10 3.64746e-10) (3.23559e-10 1.5816e-10 7.3724e-11) (1.29009e-10 9.07254e-11 -5.53484e-11) (8.52261e-11 8.72464e-11 -1.56142e-10) (4.09641e-11 3.44621e-11 -1.92813e-10) (3.4385e-11 -3.07465e-11 -1.6418e-10) (7.66634e-11 -5.03982e-11 -1.38684e-10) (1.40976e-10 -1.47036e-11 -1.26645e-10) (2.11131e-10 4.61004e-11 -1.34672e-10) (2.40978e-10 5.48616e-11 -1.34045e-10) (2.20475e-10 -2.67822e-11 -1.11453e-10) (2.05809e-10 -1.68355e-10 -1.20261e-10) (8.33439e-11 -3.10461e-10 -1.68148e-10) (-2.16609e-10 -3.76764e-10 -2.44254e-10) (-5.99146e-10 -2.10785e-10 -2.54225e-10) (-6.91085e-10 2.43802e-10 -1.2e-10) (-5.88431e-10 8.53373e-10 3.01232e-11) (-3.87338e-10 1.1317e-09 5.93112e-11) (-2.81821e-10 4.89899e-10 -1.35739e-11) (-1.53053e-10 4.01955e-11 4.83411e-11) (1.52171e-09 -9.92342e-10 3.53799e-09) (3.72327e-09 -3.00963e-09 7.17429e-09) (1.99562e-09 -2.12378e-09 3.88764e-09) (2.85042e-10 -4.94853e-10 6.22365e-10) (1.20121e-11 -4.7978e-11 2.92714e-11) (3.15938e-12 -7.3663e-12 1.55732e-12) (1.65324e-11 -1.43161e-11 1.03596e-11) (4.24059e-11 -2.73539e-11 3.87973e-11) (3.195e-11 -4.85213e-12 3.58754e-11) (6.51561e-11 7.3798e-11 4.41939e-11) (4.82176e-10 7.66505e-10 1.87358e-11) (1.41423e-09 2.17064e-09 -5.87861e-10) (9.34798e-10 1.52423e-09 -1.29338e-09) (-7.41819e-10 1.72476e-10 -1.6135e-09) (-1.27023e-08 -3.71126e-09 -5.66241e-09) (-2.91865e-08 -1.04221e-08 -4.84311e-09) (-1.15879e-08 -6.77668e-09 -6.36804e-11) (-7.12063e-10 -1.19051e-09 4.59048e-10) (4.09182e-10 -1.80661e-10 4.67197e-10) (1.99854e-09 7.36446e-10 1.44119e-09) (2.6526e-09 1.70668e-09 1.70734e-09) (1.19837e-09 1.11358e-09 5.50037e-10) (1.7032e-10 3.37091e-10 -1.12791e-10) (-7.17112e-11 2.07982e-10 -5.56328e-10) (-1.93793e-10 -2.11578e-10 -1.36982e-09) (2.4599e-10 -8.82848e-10 -1.82142e-09) (7.47822e-10 -8.67098e-10 -1.41463e-09) (5.61872e-10 -2.65575e-10 -5.81578e-10) (2.59072e-10 9.10554e-12 -1.6175e-10) (1.27836e-10 3.86991e-11 -4.2697e-11) (6.44904e-11 1.23928e-11 -1.50476e-11) (2.86938e-11 -2.79643e-12 -1.36598e-11) (8.09767e-12 -1.90183e-12 -1.30214e-11) (-5.20769e-12 3.10319e-12 -1.15598e-11) (-8.94603e-11 4.11328e-11 -1.53136e-11) (-5.97974e-10 3.07483e-10 5.62268e-11) (-1.31709e-09 9.80829e-10 1.40652e-10) (-1.14878e-09 1.31257e-09 1.06748e-10) (-3.37271e-10 5.49222e-10 1.6613e-10) (3.44692e-11 9.47848e-11 4.20292e-10) (4.89177e-09 -1.84585e-09 7.58583e-09) (5.49596e-09 -3.56535e-09 6.65434e-09) (2.11167e-09 -1.99266e-09 1.8665e-09) (2.92388e-10 -3.88425e-10 1.27579e-10) (5.55527e-12 -1.66594e-11 -2.14084e-12) (-1.0327e-11 2.32848e-13 3.23756e-12) (-1.63546e-10 1.80725e-11 7.62116e-11) (-7.13723e-10 -1.39467e-11 2.24324e-10) (-1.13095e-09 -1.22624e-10 9.91391e-11) (-4.16587e-10 -2.60374e-11 -1.32122e-10) (2.03758e-11 1.34878e-10 -2.28768e-10) (1.33071e-09 1.46524e-09 -1.39477e-09) (1.76179e-09 2.29901e-09 -2.14516e-09) (-4.04173e-10 7.53032e-10 -1.21722e-09) (-6.49687e-09 -1.1882e-09 -3.01826e-09) (-1.31456e-08 -7.91327e-09 -3.33474e-09) (-6.30376e-09 -7.5503e-09 -2.96475e-10) (-1.61477e-09 -2.78035e-09 1.05621e-09) (-2.84251e-10 -3.19137e-10 7.21936e-10) (2.28627e-10 4.87865e-10 9.24032e-10) (1.50242e-09 1.87403e-09 1.45337e-09) (2.26276e-09 2.43553e-09 6.44709e-10) (1.42748e-09 1.38955e-09 -6.5033e-10) (8.15533e-10 3.05894e-10 -1.45289e-09) (9.91904e-10 -1.53344e-09 -3.29146e-09) (1.02077e-09 -3.26408e-09 -3.97367e-09) (1.39062e-10 -1.29369e-09 -1.45048e-09) (-1.00059e-10 -8.17929e-11 -1.44185e-10) (-1.50133e-10 4.86474e-11 -2.33261e-11) (-6.00568e-11 3.86844e-11 1.92175e-12) (1.56236e-12 2.75759e-12 -1.75677e-12) (9.51277e-11 1.26187e-11 -4.37856e-11) (2.32499e-10 5.51171e-11 -9.9254e-11) (1.6587e-10 1.15783e-10 -5.09009e-11) (4.21851e-11 1.67499e-10 2.13459e-11) (-2.36331e-10 4.1071e-10 1.61536e-10) (-1.05966e-09 9.13245e-10 4.05083e-10) (-1.18706e-09 9.80514e-10 5.4533e-10) (-3.2885e-10 5.07023e-10 6.92061e-10) (9.38506e-10 2.24064e-10 2.6672e-09) (4.00797e-09 -1.9842e-09 4.16512e-09) (1.87474e-09 -1.74015e-09 1.36649e-09) (1.71271e-10 -4.77909e-10 1.2149e-10) (-4.68884e-11 -6.91191e-11 2.09096e-11) (-9.99784e-11 1.65424e-11 5.94077e-11) (-2.40943e-10 1.41743e-10 1.51417e-10) (-5.13639e-10 1.82892e-10 1.68088e-10) (-9.80497e-10 1.10908e-11 4.43271e-11) (-8.84332e-10 -2.59214e-10 -2.29785e-10) (-2.41942e-10 -2.12575e-10 -4.05978e-10) (3.45697e-10 -5.93758e-11 -1.09474e-09) (1.26663e-09 8.13981e-10 -2.06624e-09) (8.97774e-10 1.52064e-09 -1.73139e-09) (-2.57259e-10 8.17117e-10 -8.80836e-10) (-1.15141e-09 -1.47711e-10 -7.8167e-10) (-2.12995e-09 -2.46654e-09 -7.3201e-10) (-2.25948e-09 -4.03372e-09 7.26024e-10) (-2.672e-09 -2.55603e-09 2.1914e-09) (-2.31019e-09 -4.51267e-10 2.12649e-09) (-6.36674e-10 4.06109e-10 7.73902e-10) (8.4564e-11 3.68419e-10 1.17289e-10) (9.35977e-10 8.08323e-10 -4.32503e-10) (1.96046e-09 6.9907e-10 -1.55255e-09) (2.07958e-09 -5.88625e-10 -2.49e-09) (1.46248e-09 -2.06215e-09 -2.97985e-09) (6.73761e-11 -1.4478e-09 -1.64665e-09) (-3.95144e-10 -2.28636e-10 -3.26991e-10) (-9.07661e-10 1.84954e-10 2.35528e-11) (-5.30664e-10 1.96101e-10 1.79833e-10) (-2.93473e-12 4.87389e-12 1.5925e-11) (3.78302e-10 -3.28298e-11 5.91702e-11) (1.49466e-09 1.78421e-11 -1.95897e-11) (1.72612e-09 3.34148e-10 -1.45983e-10) (8.29638e-10 4.73806e-10 -8.74284e-11) (1.25915e-10 3.73458e-10 1.14102e-11) (-4.07975e-10 6.70195e-10 1.54835e-10) (-1.49991e-09 1.17004e-09 5.40841e-10) (-1.31177e-09 8.98614e-10 9.19796e-10) (-1.90654e-10 4.1534e-10 1.34227e-09) (1.94063e-09 -2.80999e-10 3.56874e-09) (7.40914e-10 -4.28497e-10 4.61088e-10) (5.19211e-11 -1.41737e-10 5.83516e-11) (-1.10194e-10 -1.37671e-10 8.86551e-11) (-1.63897e-10 -7.29002e-11 1.73325e-10) (-8.82082e-11 4.74262e-11 1.32486e-10) (-9.38816e-11 1.28006e-10 7.15804e-11) (-2.52344e-10 1.6738e-10 -1.66371e-11) (-4.69364e-10 2.23256e-11 -1.47501e-10) (-2.69439e-10 -1.79916e-10 -2.76432e-10) (2.62251e-10 -3.93443e-10 -8.90367e-10) (2.0434e-09 -3.63017e-10 -2.79778e-09) (2.19983e-09 4.97122e-10 -2.89096e-09) (4.6814e-10 7.05838e-10 -1.15576e-09) (-2.02043e-10 3.52423e-10 -4.11439e-10) (-2.47005e-10 -8.85312e-11 -1.57881e-10) (-5.44732e-10 -1.05688e-09 3.35076e-11) (-1.5017e-09 -1.89331e-09 1.18295e-09) (-3.31043e-09 -1.20608e-09 2.70695e-09) (-2.36405e-09 1.96892e-10 1.8074e-09) (-1.8845e-10 1.33589e-10 1.24192e-10) (1.7291e-10 1.22394e-10 -1.91944e-10) (1.49638e-09 1.32085e-10 -1.54699e-09) (1.65858e-09 -4.02921e-10 -2.03345e-09) (6.86294e-10 -8.34736e-10 -1.4806e-09) (-1.13141e-10 -1.05277e-09 -1.06726e-09) (-5.31437e-10 -5.72666e-10 -4.43218e-10) (-6.83529e-10 -4.89339e-11 7.9624e-12) (-8.04419e-10 2.85377e-10 3.68358e-10) (-1.92807e-10 1.01277e-10 2.30013e-10) (4.61658e-11 -2.72135e-12 1.0574e-10) (4.31803e-10 -3.71894e-11 2.2281e-10) (1.34651e-09 8.41598e-11 3.3947e-10) (2.46852e-09 5.15788e-10 3.10212e-10) (2.32611e-09 9.74894e-10 1.15364e-10) (6.8402e-10 7.31756e-10 2.09911e-11) (-1.27322e-10 5.12112e-10 6.67957e-11) (-6.66994e-10 5.84559e-10 3.29462e-10) (-3.40611e-10 2.37803e-10 5.2215e-10) (2.76334e-10 -1.11152e-11 8.81428e-10) (1.2669e-09 -4.15348e-10 1.27047e-09) (1.06144e-11 -8.82478e-12 2.72655e-11) (-2.45945e-11 -4.63429e-11 6.60792e-11) (-1.38846e-10 -1.22603e-10 1.79334e-10) (-9.19869e-11 -2.29732e-11 8.02528e-11) (-3.47468e-11 4.68428e-11 1.5459e-12) (-5.35089e-11 2.0309e-10 -8.88686e-11) (-4.27165e-11 1.03249e-10 -8.54215e-11) (-8.45271e-12 -3.90627e-12 -5.48467e-11) (2.17166e-10 -1.97315e-10 -3.58467e-10) (1.58785e-09 -6.50754e-10 -1.59019e-09) (2.528e-09 -4.38813e-10 -2.33456e-09) (1.06251e-09 1.71671e-10 -1.19088e-09) (1.12904e-10 2.22551e-10 -3.40383e-10) (-4.51973e-11 7.19317e-11 -9.83459e-11) (-7.10719e-11 -6.74344e-11 -3.6261e-11) (-6.81417e-10 -6.96197e-10 2.64127e-10) (-2.98879e-09 -1.21529e-09 2.11241e-09) (-3.39623e-09 -2.04982e-10 2.72034e-09) (-5.27603e-10 1.21759e-10 4.56402e-10) (6.89263e-11 2.74723e-11 -6.10357e-11) (2.32074e-09 3.02677e-11 -2.27181e-09) (3.12976e-09 -4.9775e-10 -3.47416e-09) (1.00894e-09 -6.57807e-10 -1.64718e-09) (-2.16938e-11 -6.70427e-10 -6.88619e-10) (-5.36231e-10 -8.8436e-10 -4.75754e-10) (-6.26175e-10 -4.3437e-10 -2.36835e-11) (-8.08629e-10 -6.18345e-12 5.41578e-10) (-9.76016e-10 2.91927e-10 1.15783e-09) (-6.01303e-10 9.09946e-11 6.35945e-10) (-3.37591e-10 -3.00072e-11 1.87768e-10) (-9.31608e-11 -1.52263e-11 4.50761e-11) (6.41194e-12 -1.09913e-12 2.10966e-11) (2.92184e-10 4.16521e-11 1.62661e-10) (1.06932e-09 3.52371e-10 3.46987e-10) (1.50507e-09 9.1878e-10 3.65165e-10) (8.63973e-10 8.66578e-10 2.73457e-10) (1.64777e-10 2.74016e-10 1.73048e-10) (2.59466e-11 6.34311e-11 1.53749e-10) (3.75046e-11 5.05085e-12 1.69547e-10) (3.95432e-11 -5.71854e-12 8.21381e-11) (-5.71786e-12 2.19151e-12 6.17854e-12) (-1.64771e-10 -2.74492e-11 6.68689e-11) (-6.04645e-10 -9.50765e-11 1.43449e-10) (-3.07733e-10 5.09504e-12 -1.84512e-11) (-2.82163e-11 5.79365e-11 -7.11821e-11) (1.5796e-10 2.09999e-10 -2.13853e-10) (2.64793e-10 1.83407e-10 -2.08213e-10) (3.45073e-10 4.78854e-11 -2.42169e-10) (8.58149e-10 -1.7716e-10 -6.43738e-10) (1.26105e-09 -3.9383e-10 -1.03363e-09) (5.3958e-10 -1.88637e-10 -5.52663e-10) (4.66128e-11 -1.92073e-11 -1.06805e-10) (-5.58867e-12 3.69926e-12 -3.47643e-11) (-3.17828e-11 -1.37359e-12 -4.1596e-11) (-3.51129e-10 -1.04989e-10 -3.79851e-11) (-2.31579e-09 -4.75686e-10 9.82497e-10) (-3.42209e-09 -2.95325e-10 2.85189e-09) (-9.04609e-10 1.7319e-11 1.07987e-09) (6.77717e-12 -4.82065e-13 4.03655e-12) (1.74407e-09 -6.46879e-11 -1.30981e-09) (5.77112e-09 -2.51204e-10 -4.9037e-09) (3.65016e-09 -4.82183e-10 -3.44354e-09) (6.62094e-10 -4.2995e-10 -9.01701e-10) (-4.11829e-11 -4.53263e-10 -3.32347e-10) (-3.78113e-10 -5.73952e-10 -2.14935e-10) (-3.9402e-10 -2.02027e-10 1.56624e-10) (-8.39339e-10 1.57148e-10 1.59502e-09) (-1.19253e-09 3.99777e-10 3.17345e-09) (-1.49325e-09 3.85771e-11 1.47779e-09) (-2.56186e-09 -1.67362e-10 4.41374e-10) (-1.77495e-09 -1.93544e-10 6.83873e-11) (-2.87694e-10 -1.02977e-10 1.12829e-10) (-3.26477e-11 -8.13928e-11 1.07935e-10) (1.33953e-11 -3.65203e-11 7.15249e-11) (2.84725e-11 3.42537e-11 4.76866e-11) (1.44094e-10 3.3447e-10 1.40122e-10) (1.90721e-10 5.28902e-10 2.14843e-10) (8.05337e-11 2.75804e-10 1.69947e-10) (2.25231e-11 8.43396e-11 7.58777e-11) (4.20355e-12 1.60609e-11 1.65237e-11) (-5.80307e-11 9.07999e-11 -6.75908e-11) (-6.79195e-10 9.4989e-11 -1.57853e-10) (-1.17942e-09 -7.47833e-11 -9.7405e-11) (-3.0486e-10 -3.21622e-11 -9.06007e-11) (7.45931e-12 3.20597e-11 -8.7644e-11) (4.53747e-10 3.10729e-10 -4.12574e-10) (1.01983e-09 5.09713e-10 -6.11028e-10) (1.12673e-09 2.60331e-10 -6.00484e-10) (1.05106e-09 -7.58899e-11 -6.11676e-10) (5.73534e-10 -1.88526e-10 -4.04426e-10) (8.81748e-11 -9.10275e-11 -1.05878e-10) (-3.30526e-11 -7.58046e-11 -4.60165e-11) (-3.95285e-10 -1.761e-10 -1.35555e-10) (-1.93337e-09 -1.397e-10 -3.10459e-10) (-4.01358e-09 1.12556e-10 5.49378e-10) (-3.15768e-09 4.69369e-11 2.05187e-09) (-7.466e-10 -7.74177e-11 1.2902e-09) (2.82738e-11 -2.85759e-11 9.80566e-11) (7.93575e-10 -1.25258e-10 -3.78662e-10) (4.59318e-09 -2.06819e-10 -3.33657e-09) (5.61696e-09 9.11043e-12 -4.38523e-09) (2.48594e-09 -9.75275e-11 -1.96808e-09) (4.00093e-10 -1.97249e-10 -3.90762e-10) (-8.09274e-12 -2.63893e-10 -1.7804e-10) (-3.38477e-10 -2.93163e-10 -1.43345e-10) (-6.29071e-10 1.0662e-11 3.61843e-10) (-1.12144e-09 8.21771e-10 3.70137e-09) (-8.43612e-10 5.72815e-10 5.91657e-09) (-9.76747e-10 -6.84926e-11 1.54418e-09) (-1.20897e-09 -1.51654e-10 2.33774e-10) (-6.30762e-10 -1.59957e-10 3.84463e-11) (-1.10943e-10 -1.22977e-10 9.32759e-11) (-5.48473e-11 -2.38377e-10 1.76488e-10) (-1.30159e-10 -2.21062e-10 1.20887e-10) (-1.85135e-10 -6.15944e-11 5.19362e-11) (-1.55558e-10 1.0976e-10 5.94139e-11) (-2.57672e-11 3.42251e-10 1.63901e-10) (2.88065e-10 5.7047e-10 3.24915e-10) (4.26129e-10 5.139e-10 2.29081e-10) (1.46929e-10 2.25163e-10 -1.25103e-11) (1.1388e-10 3.24284e-10 -2.38145e-10) (-1.52989e-10 6.26607e-11 -1.1337e-10) (-2.10047e-10 -4.38816e-11 -7.89183e-11) (-2.08574e-11 -2.10212e-11 -5.33503e-11) (1.73251e-10 4.86619e-11 -2.41704e-10) (7.5119e-10 3.92001e-10 -6.12805e-10) (1.16208e-09 5.74706e-10 -6.96377e-10) (1.09557e-09 3.15324e-10 -5.56853e-10) (7.69923e-10 -2.0433e-12 -4.03219e-10) (3.31675e-10 -1.1622e-10 -2.02227e-10) (4.26281e-11 -8.65029e-11 -4.27608e-11) (-4.07164e-10 -3.32739e-10 -2.93094e-11) (-6.09919e-09 -1.33555e-09 -1.91169e-10) (-1.46725e-08 -4.59031e-10 3.09069e-10) (-7.20478e-09 3.05214e-10 2.01549e-09) (-8.80871e-10 -1.34718e-11 1.13701e-09) (8.03476e-11 -6.03499e-11 3.20156e-10) (4.44548e-10 -1.0681e-10 -1.16648e-11) (2.52368e-09 -2.76728e-10 -1.38531e-09) (4.5118e-09 -2.51919e-11 -3.24617e-09) (3.67064e-09 3.27436e-10 -2.67559e-09) (1.45034e-09 7.91529e-11 -9.73826e-10) (2.78185e-10 -1.16394e-10 -2.07848e-10) (-4.45172e-11 -1.67449e-10 -1.42044e-10) (-8.31094e-10 -1.54794e-10 -2.21518e-10) (-1.54217e-09 6.2483e-10 9.37648e-10) (-8.80403e-10 1.71384e-09 5.59505e-09) (3.00429e-10 5.00571e-10 6.56062e-09) (-1.85609e-10 -1.35039e-10 1.11949e-09) (-7.68387e-11 -4.41787e-11 7.16456e-11) (-9.7541e-12 -3.98378e-11 3.37273e-11) (9.64299e-11 -1.83026e-10 1.77368e-10) (9.84849e-11 -2.94355e-10 2.19611e-10) (-1.06672e-10 -2.17096e-10 8.09581e-11) (-6.71996e-10 -2.12028e-10 1.40926e-11) (-1.18321e-09 1.54267e-10 7.40278e-11) (-4.52835e-10 3.27367e-10 1.96419e-10) (4.93372e-11 4.08752e-10 2.5422e-10) (6.89223e-10 8.63996e-10 2.64403e-10) (8.21217e-10 9.3844e-10 -1.9107e-10) (3.13918e-10 3.89921e-10 -2.4159e-10) (1.21774e-11 2.01575e-11 -3.12939e-11) (2.71732e-11 -2.57981e-11 -5.93891e-11) (3.18491e-10 -1.09544e-10 -4.10748e-10) (6.44724e-10 8.69058e-11 -7.26966e-10) (6.28652e-10 3.7348e-10 -5.74417e-10) (6.30564e-10 4.21767e-10 -3.67582e-10) (6.7782e-10 2.50827e-10 -2.85015e-10) (5.95042e-10 2.03784e-11 -2.56249e-10) (2.89423e-10 -9.94973e-11 -1.22359e-10) (1.60031e-11 -6.96453e-11 -8.54576e-13) (-1.77065e-09 -7.65182e-10 2.61331e-10) (-2.04782e-08 -2.81187e-09 9.28684e-10) (-2.79576e-08 -1.39201e-09 2.25543e-09) (-5.17673e-09 -2.1454e-10 1.9908e-09) (-1.21984e-10 -6.88645e-11 4.35141e-10) (2.61017e-10 -8.18593e-11 1.57145e-10) (1.18574e-09 -2.23363e-10 -2.58842e-10) (2.70358e-09 -2.31343e-10 -1.39004e-09) (2.92422e-09 2.01586e-10 -1.98073e-09) (2.05946e-09 3.48355e-10 -1.40238e-09) (8.58026e-10 4.90951e-11 -5.15787e-10) (1.55355e-10 -9.94233e-11 -1.43711e-10) (-3.35403e-10 -2.12242e-10 -2.61913e-10) (-3.00899e-09 2.07991e-10 -3.30307e-10) (-2.20025e-09 1.36645e-09 1.73592e-09) (5.39173e-10 1.88435e-09 5.63696e-09) (1.46471e-09 3.30749e-10 4.59744e-09) (2.34291e-10 -1.17637e-10 7.38125e-10) (7.40084e-11 -6.65748e-11 1.34342e-10) (2.93469e-10 -2.04441e-10 3.11766e-10) (5.935e-10 -4.51796e-10 6.09784e-10) (2.44577e-10 -3.37414e-10 3.1608e-10) (-8.02616e-11 -1.28139e-10 5.15861e-11) (-1.2068e-09 -2.08456e-10 -4.90791e-11) (-2.84898e-09 2.22495e-10 -2.54422e-11) (-1.39683e-09 4.44343e-10 2.1588e-10) (-1.51262e-10 2.58848e-10 1.19973e-10) (2.88005e-10 5.37447e-10 5.22802e-11) (8.30455e-10 9.42345e-10 -2.82825e-10) (3.48919e-10 2.93197e-10 -1.62254e-10) (1.77371e-10 4.00296e-11 -9.30306e-11) (5.24356e-10 -1.47189e-10 -3.98341e-10) (1.14047e-09 -2.95346e-10 -1.19763e-09) (8.14502e-10 7.75868e-11 -1.01195e-09) (4.3385e-10 2.96104e-10 -4.149e-10) (4.50049e-10 3.33463e-10 -2.01982e-10) (5.73689e-10 2.25714e-10 -1.68591e-10) (5.44864e-10 3.38853e-11 -1.58347e-10) (2.40818e-10 -7.04391e-11 -3.31796e-11) (-4.19748e-12 -5.40573e-11 3.53371e-11) (-3.56829e-09 -9.09008e-10 7.68668e-10) (-3.02056e-08 -3.05623e-09 1.81864e-09) (-2.8767e-08 -2.41707e-09 2.59753e-09) (-3.40348e-09 -5.82412e-10 1.33632e-09) (-1.70699e-11 -8.12779e-11 1.86551e-10) (3.36046e-10 -1.24302e-10 9.56837e-11) (1.15133e-09 -2.25585e-10 -2.44238e-10) (1.65096e-09 -1.01142e-10 -7.74256e-10) (1.73785e-09 2.08287e-10 -1.09203e-09) (1.2445e-09 2.20089e-10 -8.21064e-10) (4.5919e-10 -2.184e-11 -3.16428e-10) (-1.20706e-11 -7.79887e-11 -1.10927e-10) (-2.80177e-09 -4.61862e-10 -7.98524e-10) (-8.22733e-09 1.00768e-09 5.21863e-10) (-2.03866e-09 1.49337e-09 2.64716e-09) (1.75873e-09 1.41022e-09 4.85549e-09) (1.6098e-09 1.97624e-10 2.3581e-09) (4.26605e-10 -7.3641e-11 4.2617e-10) (4.03218e-10 -1.39352e-10 3.06378e-10) (8.18416e-10 -3.64959e-10 7.14325e-10) (7.23278e-10 -4.56995e-10 7.77066e-10) (9.42833e-11 -1.82884e-10 2.16329e-10) (-2.35024e-10 -1.20508e-10 6.13007e-11) (-2.09857e-09 -1.5463e-10 -1.03921e-10) (-3.21912e-09 1.79886e-10 -1.83216e-10) (-1.2755e-09 2.68962e-10 -3.94533e-12) (-1.27156e-10 1.3058e-10 1.09589e-11) (1.0564e-10 2.55934e-10 -3.43536e-11) (4.89354e-10 5.47582e-10 -1.97931e-10) (3.90421e-10 2.25003e-10 -1.48251e-10) (4.65179e-10 4.02723e-11 -1.85306e-10) (1.0679e-09 -2.49879e-10 -6.77085e-10) (1.45695e-09 -4.21694e-10 -1.4429e-09) (8.97125e-10 -1.4523e-11 -1.09192e-09) (4.74011e-10 2.3706e-10 -4.71753e-10) (4.55291e-10 3.12952e-10 -2.12482e-10) (5.28049e-10 2.38151e-10 -1.08104e-10) (4.37269e-10 6.63328e-11 -2.77993e-11) (1.84186e-10 -3.42818e-11 6.06847e-11) (-4.35722e-11 -5.90696e-11 1.10066e-10) (-4.92565e-09 -6.95894e-10 1.05901e-09) (-2.87819e-08 -2.28455e-09 1.22963e-09) (-2.09066e-08 -2.6315e-09 1.3366e-09) (-2.32881e-09 -7.58784e-10 7.18114e-10) (-2.76694e-11 -9.64599e-11 1.08957e-10) (1.67964e-10 -9.67643e-11 5.48987e-11) (4.9098e-10 -1.22274e-10 -8.44262e-11) (7.97927e-10 -2.98877e-11 -3.71441e-10) (1.09846e-09 1.36079e-10 -7.08388e-10) (8.1003e-10 1.0799e-10 -6.14747e-10) (1.26821e-10 -2.94835e-11 -1.79524e-10) (-7.27655e-10 -2.01246e-10 -3.65448e-10) (-1.22383e-08 -4.87955e-10 -1.09238e-09) (-1.32789e-08 1.39446e-09 3.08532e-09) (-1.26407e-09 1.05283e-09 3.40368e-09) (2.01706e-09 7.2031e-10 3.70989e-09) (1.12242e-09 1.01569e-10 1.0612e-09) (4.47745e-10 -5.11338e-11 2.36814e-10) (5.38868e-10 -1.43211e-10 2.9415e-10) (6.54521e-10 -2.50161e-10 5.22785e-10) (2.55712e-10 -1.73714e-10 3.34812e-10) (-3.49008e-11 -5.3712e-11 7.42332e-11) (-7.12189e-10 -1.29879e-10 6.90432e-11) (-2.16378e-09 -1.04831e-10 -1.48953e-10) (-1.49822e-09 2.40404e-11 -2.27966e-10) (-2.83758e-10 5.2908e-11 -8.31168e-11) (-1.31544e-11 3.43222e-11 -2.07656e-11) (1.07801e-10 1.54335e-10 -7.08736e-11) (3.65967e-10 3.28879e-10 -1.6556e-10) (4.65305e-10 1.87901e-10 -1.91302e-10) (6.56858e-10 1.30933e-11 -2.701e-10) (1.22761e-09 -2.86068e-10 -7.70198e-10) (1.37989e-09 -4.11324e-10 -1.31579e-09) (7.95489e-10 -7.63917e-11 -9.6356e-10) (4.09341e-10 1.67586e-10 -4.29696e-10) (3.75887e-10 2.48788e-10 -1.71657e-10) (4.34703e-10 2.22439e-10 -8.89165e-12) (3.96823e-10 9.64794e-11 1.27474e-10) (2.00187e-10 -1.39112e-11 2.0369e-10) (-1.49058e-10 -5.39566e-11 2.29673e-10) (-5.70866e-09 -3.60479e-10 8.88568e-10) (-2.07865e-08 -1.48997e-09 1.77859e-11) (-1.109e-08 -2.08403e-09 2.00378e-10) (-1.30478e-09 -6.52983e-10 2.89591e-10) (-6.09875e-11 -1.13002e-10 7.912e-11) (2.44803e-11 -3.95433e-11 2.27611e-11) (8.70199e-11 -3.70866e-11 -1.42197e-11) (2.89836e-10 -1.52788e-11 -1.64434e-10) (5.80101e-10 5.66846e-11 -4.55036e-10) (3.57345e-10 3.88493e-11 -4.02343e-10) (-5.0909e-11 -1.50475e-11 -1.34855e-10) (-4.69077e-09 -2.86703e-10 -9.64338e-10) (-2.48859e-08 -1.22746e-10 3.16091e-10) (-1.16046e-08 5.90834e-10 4.86561e-09) (-2.6884e-10 4.42074e-10 3.72531e-09) (1.64999e-09 2.89697e-10 2.60442e-09) (6.09878e-10 4.57201e-11 4.91365e-10) (2.54524e-10 -2.95771e-11 1.06978e-10) (2.44982e-10 -6.94153e-11 1.2583e-10) (1.62466e-10 -7.15913e-11 1.46816e-10) (1.0242e-11 -2.56516e-11 5.34916e-11) (-1.46485e-10 -3.71893e-11 5.35533e-11) (-8.7985e-10 -9.1919e-11 3.58401e-12) (-8.96046e-10 -8.24687e-11 -1.41798e-10) (-1.82615e-10 -1.95088e-11 -9.34331e-11) (-3.60482e-12 3.92713e-12 -2.98502e-11) (6.29295e-11 4.17182e-11 -6.12047e-11) (2.50923e-10 1.69748e-10 -1.46564e-10) (4.40241e-10 2.79159e-10 -2.16891e-10) (6.55669e-10 1.8022e-10 -3.07166e-10) (8.6904e-10 -1.26312e-11 -4.24344e-10) (1.26277e-09 -2.81852e-10 -8.26773e-10) (1.06115e-09 -2.83318e-10 -9.16741e-10) (4.39673e-10 -3.37369e-11 -4.58256e-10) (1.83442e-10 8.30544e-11 -1.53099e-10) (2.09519e-10 1.48763e-10 -3.9175e-11) (3.64654e-10 1.93631e-10 1.13373e-10) (4.46224e-10 1.19918e-10 3.21138e-10) (1.47299e-10 1.12243e-12 2.82028e-10) (-3.46702e-10 -2.79545e-11 2.49996e-10) (-5.79997e-09 -1.15486e-10 2.57474e-10) (-1.19771e-08 -1.0237e-09 -6.93168e-10) (-4.88245e-09 -1.36343e-09 -1.55425e-10) (-7.7245e-10 -4.88894e-10 1.19321e-10) (-1.0061e-10 -1.15616e-10 6.30649e-11) (-6.21746e-12 -2.28287e-11 1.33987e-11) (7.64434e-12 -8.12558e-12 -2.36423e-12) (7.72416e-11 -9.98563e-12 -6.73634e-11) (2.00646e-10 1.41553e-11 -2.39642e-10) (5.65659e-11 1.61657e-11 -2.00185e-10) (-6.0233e-10 1.67784e-11 -3.34082e-10) (-1.16167e-08 5.90528e-11 -1.23653e-09) (-2.60856e-08 -2.30572e-10 2.09991e-09) (-5.67955e-09 -2.69746e-10 4.07779e-09) (5.97667e-10 -2.11051e-11 3.84587e-09) (1.13357e-09 1.34632e-10 1.84675e-09) (2.36361e-10 2.33804e-11 2.14684e-10) (5.97905e-11 -7.10864e-12 2.52726e-11) (3.35679e-11 -1.29048e-11 1.92908e-11) (6.99137e-12 -7.63e-12 1.48986e-11) (-2.27295e-11 -7.33867e-12 1.68844e-11) (-2.42504e-10 -2.61504e-11 2.64433e-11) (-4.10375e-10 -5.44231e-11 -3.90095e-11) (-1.13191e-10 -3.31497e-11 -5.4824e-11) (7.48808e-13 -1.08092e-11 -3.17058e-11) (5.60577e-11 -4.57597e-13 -5.42289e-11) (1.60143e-10 4.84953e-11 -9.04131e-11) (3.73743e-10 1.69949e-10 -1.83828e-10) (5.927e-10 2.76042e-10 -2.9404e-10) (9.22656e-10 1.76496e-10 -4.74117e-10) (1.06052e-09 -2.27989e-11 -6.10728e-10) (1.13844e-09 -1.97381e-10 -7.77735e-10) (6.60468e-10 -1.38048e-10 -5.03715e-10) (1.83333e-10 2.01532e-12 -1.2849e-10) (7.5525e-11 3.926e-11 -1.32845e-11) (1.6872e-10 1.11375e-10 7.18509e-11) (3.76985e-10 1.7079e-10 2.7146e-10) (3.21133e-10 7.9323e-11 3.47014e-10) (3.23219e-12 1.53916e-12 1.07418e-10) (-7.39212e-10 -4.06861e-12 1.32174e-10) (-4.8023e-09 -5.24723e-11 -3.65622e-10) (-5.57691e-09 -6.96076e-10 -6.49706e-10) (-2.09058e-09 -7.87737e-10 -1.45385e-10) (-5.5205e-10 -3.5016e-10 5.83514e-11) (-1.50208e-10 -1.09255e-10 5.44126e-11) (-2.81505e-11 -2.59832e-11 1.4446e-11) (-9.6269e-13 -3.77301e-12 -1.13097e-12) (1.17116e-11 -5.41376e-12 -2.66294e-11) (2.93693e-11 3.09408e-12 -1.08531e-10) (-8.48059e-11 2.05275e-11 -1.57714e-10) (-2.13258e-09 1.67996e-10 -6.10519e-10) (-1.46323e-08 3.90416e-10 -9.8624e-10) (-1.50616e-08 -5.83287e-10 2.21548e-09) (-1.8386e-09 -4.67889e-10 2.69658e-09) (1.08618e-09 -2.33772e-10 3.73168e-09) (6.23326e-10 7.56754e-11 1.20897e-09) (5.86177e-11 1.29676e-11 7.3566e-11) (3.86238e-12 -2.23294e-13 1.68611e-12) (4.00584e-13 -5.198e-13 5.21116e-13) (-3.91694e-12 -1.57322e-12 3.02757e-12) (-5.40918e-11 -4.85983e-12 1.19873e-11) (-1.38981e-10 -1.49369e-11 3.56083e-13) (-6.18983e-11 -1.91884e-11 -1.92795e-11) (-2.18717e-12 -1.11893e-11 -1.63958e-11) (2.78092e-11 -1.42734e-11 -3.01908e-11) (5.03872e-11 -2.67121e-12 -2.9655e-11) (1.17671e-10 2.95318e-11 -4.79509e-11) (3.68527e-10 1.37304e-10 -1.60223e-10) (7.43639e-10 2.654e-10 -3.66514e-10) (1.11236e-09 1.60849e-10 -6.05717e-10) (1.07187e-09 -3.7848e-13 -6.66486e-10) (8.13656e-10 -8.47848e-11 -5.43528e-10) (3.54843e-10 -3.97586e-11 -2.15134e-10) (1.00856e-10 1.10333e-11 -2.75222e-11) (8.78772e-11 3.91211e-11 3.6287e-11) (2.06998e-10 1.0099e-10 1.73579e-10) (2.7022e-10 9.62897e-11 2.75386e-10) (6.25847e-11 1.72614e-11 1.08603e-10) (-5.54254e-11 -1.78457e-13 2.61859e-11) (-1.11262e-09 7.82084e-12 -1.02058e-10) (-2.89944e-09 -6.54633e-11 -4.63963e-10) (-2.26753e-09 -3.98357e-10 -3.52818e-10) (-1.03322e-09 -4.36428e-10 -8.73374e-11) (-4.51611e-10 -2.41543e-10 3.5134e-11) (-1.76195e-10 -9.12057e-11 4.45822e-11) (-4.69238e-11 -2.73582e-11 1.35202e-11) (-7.28419e-12 -6.07705e-12 -2.36221e-12) (-4.89367e-12 -3.99103e-12 -1.77573e-11) (-2.93334e-11 2.95752e-12 -7.51267e-11) (-3.47555e-10 5.18303e-11 -2.324e-10) (-3.49441e-09 3.30865e-10 -7.20212e-10) (-1.05656e-08 2.83723e-10 -6.03952e-10) (-5.12092e-09 -4.89858e-10 1.33285e-09) (-4.60638e-10 -4.44733e-10 2.12685e-09) (9.43095e-10 -2.33736e-10 3.02716e-09) (2.47102e-10 4.94663e-11 6.68814e-10) (8.91124e-12 6.43865e-12 2.0392e-11) (3.50822e-15 1.17507e-14 2.08759e-15) (-7.69191e-13 -1.88959e-13 5.61111e-14) (-1.19048e-11 -1.12328e-12 2.61769e-12) (-3.80205e-11 -2.48222e-12 4.36883e-12) (-2.50536e-11 -5.54034e-12 -2.46838e-12) (-2.14726e-12 -4.09435e-12 -3.75333e-12) (1.03119e-11 -9.8825e-12 -1.12048e-11) (1.76738e-11 -8.27178e-12 -1.13738e-11) (1.88261e-11 -1.44411e-12 -7.03093e-12) (7.48856e-11 1.66699e-11 -2.38626e-11) (3.69902e-10 1.1056e-10 -1.59147e-10) (8.93899e-10 2.4023e-10 -4.47876e-10) (1.09362e-09 1.29321e-10 -6.13007e-10) (8.35493e-10 3.24135e-11 -5.13901e-10) (4.8309e-10 -1.68155e-11 -2.74115e-10) (2.12984e-10 -4.23217e-12 -8.14451e-11) (9.96413e-11 1.33137e-11 7.78706e-13) (1.08912e-10 3.26487e-11 5.74822e-11) (1.51319e-10 4.86533e-11 1.30801e-10) (7.96817e-11 2.11717e-11 8.84295e-11) (-4.37267e-13 5.71683e-13 6.25674e-12) (-1.4989e-10 -3.51056e-12 -1.76786e-11) (-8.76927e-10 2.41418e-12 -1.81751e-10) (-1.2807e-09 -4.77438e-11 -2.56588e-10) (-9.11554e-10 -1.87388e-10 -1.55928e-10) (-5.71517e-10 -2.2901e-10 -4.64834e-11) (-3.28373e-10 -1.46535e-10 2.42337e-11) (-1.34372e-10 -5.95336e-11 2.94241e-11) (-3.62551e-11 -1.93269e-11 7.48616e-12) (-8.3496e-12 -5.77305e-12 -3.34896e-12) (-1.0206e-11 -4.09546e-12 -1.81118e-11) (-5.65422e-11 3.9253e-12 -7.37125e-11) (-5.07179e-10 7.09969e-11 -2.53822e-10) (-2.89656e-09 2.88696e-10 -6.13084e-10) (-4.50987e-09 6.82442e-11 -2.79311e-10) (-1.16978e-09 -2.25169e-10 6.16874e-10) (3.7777e-11 -3.78058e-10 1.88476e-09) (5.61057e-10 -1.56091e-10 2.04312e-09) (9.05417e-11 3.15012e-11 3.48516e-10) (2.20221e-12 3.4796e-12 7.77487e-12) (-2.34244e-14 4.43078e-14 -1.3487e-14) (-7.03496e-13 -4.18306e-14 5.6666e-14) (-4.72142e-12 -3.33634e-13 1.20613e-12) (-4.73666e-12 -7.4008e-13 8.25041e-13) (-3.2338e-13 -4.94843e-13 -1.4469e-13) (3.69504e-12 -3.51129e-12 -2.11998e-12) (1.12227e-11 -6.98347e-12 -4.76994e-12) (7.66923e-12 -3.63748e-12 -2.3434e-12) (9.74426e-12 -8.60916e-13 -1.61107e-12) (7.07656e-11 1.19843e-11 -2.16206e-11) (4.20342e-10 9.25755e-11 -1.9117e-10) (9.87586e-10 1.98368e-10 -5.06223e-10) (1.13969e-09 1.11667e-10 -5.40986e-10) (8.41004e-10 5.09539e-11 -3.8309e-10) (5.96937e-10 7.14378e-12 -1.99875e-10) (4.41629e-10 6.80729e-12 -8.23815e-11) (3.60803e-10 2.4011e-11 -3.20689e-12) (3.58689e-10 3.94633e-11 6.67207e-11) (3.3566e-10 3.55331e-11 1.02189e-10) (1.62921e-10 1.00548e-11 4.50917e-11) (1.37893e-11 -1.89516e-13 -3.90099e-13) (-7.98245e-12 -3.36148e-13 -7.49018e-12) (-8.51726e-11 2.7769e-12 -4.09601e-11) (-1.24453e-10 -5.78785e-12 -4.80369e-11) (-1.05927e-10 -3.4019e-11 -3.39631e-11) (-9.57263e-11 -5.51698e-11 -1.53814e-11) (-5.62238e-11 -3.87228e-11 4.33533e-12) (-1.4312e-11 -1.40978e-11 4.60406e-12) (-1.27874e-12 -4.19842e-12 2.09867e-13) (1.75983e-12 -4.07133e-12 -3.94292e-12) (6.28823e-12 -5.561e-12 -2.28626e-11) (-9.57318e-12 7.95547e-13 -5.71582e-11) (-1.67195e-10 3.21685e-11 -1.44246e-10) (-8.53183e-10 1.02118e-10 -3.08776e-10) (-8.06361e-10 -4.09195e-12 -7.90508e-11) (-1.69726e-10 -7.81784e-11 2.47117e-10) (2.36725e-10 -2.70284e-10 1.48626e-09) (3.57758e-10 -9.67889e-11 1.29556e-09) (6.8073e-11 1.88045e-11 2.12884e-10) (7.00846e-12 3.51336e-12 8.60517e-12) (1.54287e-12 3.95766e-13 3.98159e-13) (5.07495e-13 -1.97572e-14 3.00403e-13) (3.75637e-13 -1.06122e-13 4.70775e-13) (1.50113e-12 -4.79706e-13 7.6888e-13) (9.77275e-12 -3.15906e-12 1.06187e-12) (2.34061e-11 -8.11909e-12 -1.5729e-13) (2.01228e-11 -7.55603e-12 -3.82104e-13) (1.06858e-11 -3.58803e-12 6.16317e-13) (1.82978e-11 -1.56241e-12 -2.93623e-13) (1.21375e-10 1.02116e-11 -3.34721e-11) (5.79217e-10 7.68726e-11 -2.41173e-10) (1.14701e-09 1.57969e-10 -5.21564e-10) (2.10054e-09 1.35137e-10 -6.57297e-10) (2.1825e-09 9.38065e-11 -5.47649e-10) (2.27738e-09 4.34647e-11 -3.83968e-10) (2.36776e-09 3.39274e-11 -2.75473e-10) (2.43275e-09 5.86092e-11 -1.68031e-10) (2.49695e-09 7.56334e-11 -4.16368e-11) (2.28566e-09 5.23357e-11 5.31866e-12) (1.55366e-09 6.40741e-12 -8.21563e-11) (6.96096e-10 -8.05631e-12 -1.34032e-10) (2.20459e-10 1.27398e-12 -8.7638e-11) (7.61708e-11 5.15978e-12 -4.48876e-11) (4.2022e-11 3.51271e-13 -2.91049e-11) (2.10798e-11 -7.63313e-12 -1.67116e-11) (5.74131e-12 -8.88369e-12 -5.96229e-12) (1.96891e-12 -6.507e-12 -8.77426e-13) (3.6497e-12 -5.18828e-12 -5.75978e-14) (8.02688e-12 -6.21253e-12 -2.87455e-12) (1.93312e-11 -9.90118e-12 -1.72545e-11) (3.56131e-11 -1.02912e-11 -5.85442e-11) (2.72756e-11 -7.45293e-14 -1.12894e-10) (-3.44776e-11 1.90894e-11 -1.39667e-10) (-1.04504e-10 2.48401e-11 -1.3086e-10) (-2.30006e-11 -2.99812e-13 -1.20534e-11) (1.16157e-11 -2.8789e-11 1.14336e-10) (2.30765e-10 -1.38215e-10 9.13622e-10) (1.8604e-10 -4.5417e-11 7.07394e-10) (4.74669e-11 1.1847e-11 1.23771e-10) (1.5925e-11 4.14774e-12 1.19779e-11) (1.50601e-11 1.71441e-12 4.31672e-12) (1.76977e-11 2.50009e-13 5.92965e-12) (2.63091e-11 -7.9721e-13 9.48116e-12) (4.81581e-11 -3.25222e-12 1.39829e-11) (7.20274e-11 -8.17775e-12 1.68986e-11) (6.31081e-11 -1.05226e-11 1.51264e-11) (3.05977e-11 -6.81908e-12 1.00921e-11) (1.567e-11 -3.40194e-12 6.65766e-12) (3.35713e-11 -2.33214e-12 4.78272e-12) (2.02574e-10 5.15892e-12 -3.78384e-11) (8.35788e-10 5.22546e-11 -2.6618e-10) (1.70358e-09 1.3084e-10 -5.72294e-10) (2.63253e-09 6.93766e-11 -6.8894e-10) (3.20456e-09 6.26901e-11 -6.10513e-10) (3.509e-09 3.02612e-11 -4.40759e-10) (3.60189e-09 1.30799e-11 -3.82021e-10) (3.54561e-09 8.52798e-12 -3.80851e-10) (3.28767e-09 -6.41075e-12 -3.76042e-10) (2.52043e-09 -2.52628e-11 -3.68581e-10) (1.37831e-09 -2.82142e-11 -3.10429e-10) (5.26543e-10 -1.12419e-11 -1.8061e-10) (1.98422e-10 2.12683e-12 -8.70568e-11) (1.35144e-10 7.24739e-12 -6.10746e-11) (1.29468e-10 4.17707e-12 -6.03123e-11) (6.77139e-11 -4.84562e-12 -3.51843e-11) (1.21667e-11 -4.57155e-12 -8.05173e-12) (-2.87095e-12 -2.81057e-12 -6.47694e-13) (-6.77103e-12 -2.47444e-12 8.01551e-13) (-7.65578e-12 -2.26271e-12 -9.20189e-13) (-1.19367e-11 -3.24603e-12 -9.47722e-12) (-3.01621e-11 -4.05172e-12 -4.95649e-11) (-6.90857e-11 1.60453e-12 -1.49852e-10) (-9.02737e-11 1.78972e-11 -2.19401e-10) (-3.30285e-11 1.72381e-11 -1.44725e-10) (1.28635e-11 2.00946e-12 -2.32479e-11) (4.12374e-11 -6.19798e-12 3.22203e-11) (9.10857e-11 -2.75002e-11 2.53524e-10) (2.65989e-11 -7.7962e-12 2.09509e-10) (5.45794e-12 4.56994e-12 3.88211e-11) (4.433e-12 1.36388e-12 4.13666e-12) (8.84993e-12 1.12707e-12 3.06264e-12) (1.74119e-11 9.00207e-13 6.06629e-12) (3.38768e-11 7.8392e-13 1.23854e-11) (5.9013e-11 1.29904e-13 2.20189e-11) (6.84723e-11 -1.71879e-12 2.94123e-11) (4.54561e-11 -2.85313e-12 2.63757e-11) (2.02736e-11 -2.19716e-12 1.69077e-11) (1.44178e-11 -1.55973e-12 1.15375e-11) (4.02403e-11 -1.90776e-12 1.13058e-11) (2.10188e-10 -1.73393e-12 -1.73658e-11) (7.86364e-10 1.06276e-11 -1.94189e-10) (1.75271e-09 4.7356e-11 -5.06989e-10) (2.40685e-10 2.50931e-12 -6.56796e-11) (2.64243e-10 2.3897e-12 -4.60909e-11) (2.51834e-10 -1.74858e-13 -1.6846e-11) (2.16907e-10 -2.08018e-12 -1.34227e-11) (1.64544e-10 -3.14731e-12 -2.34912e-11) (1.07213e-10 -3.34936e-12 -2.81832e-11) (4.93559e-11 -2.03683e-12 -2.10178e-11) (1.19906e-11 -7.31124e-13 -9.24386e-12) (-3.16901e-13 -2.14781e-13 -3.48285e-12) (-2.3087e-12 1.0705e-14 -2.03524e-12) (-2.52441e-13 1.20089e-13 -1.55799e-12) (2.34518e-12 2.38148e-13 -3.30292e-12) (2.59547e-12 6.34084e-14 -3.78886e-12) (-1.76498e-13 -1.40402e-13 -1.46753e-12) (-1.79007e-12 -2.32413e-13 -2.5945e-13) (-4.07046e-12 -4.4765e-13 9.7321e-13) (-9.75711e-12 -9.57956e-13 3.01364e-12) (-2.14891e-11 -1.79222e-12 2.60956e-12) (-4.38474e-11 -2.49813e-12 -7.83499e-12) (-6.89163e-11 -2.65411e-12 -3.63784e-11) (-6.03993e-11 -2.31647e-13 -6.05642e-11) (-1.81127e-11 2.24746e-12 -6.3443e-11) (3.05551e-11 3.18073e-12 -7.54198e-11) (5.09089e-11 4.22842e-13 -3.98238e-11) (1.40148e-11 -7.49813e-13 3.13409e-13) (1.24821e-12 -3.34422e-13 4.7689e-12) (-7.67007e-13 8.17835e-14 2.82451e-12) (-3.4924e-14 2.21434e-14 1.92389e-13) (5.03201e-14 9.66434e-15 3.61994e-14) (2.89996e-13 2.51304e-14 1.28957e-13) (1.1582e-12 7.71458e-14 5.71518e-13) (3.89077e-12 2.10625e-13 2.09178e-12) (8.26247e-12 3.09834e-13 4.94645e-12) (1.02456e-11 1.68884e-13 7.05578e-12) (8.80739e-12 -6.85736e-14 6.53164e-12) (9.18563e-12 -2.33752e-13 5.95148e-12) (1.80545e-11 -4.40268e-13 7.52213e-12) (4.71216e-11 -5.92376e-13 7.19844e-12) (1.09158e-10 -6.5387e-14 -8.60449e-12) (1.83593e-10 1.74924e-12 -4.32487e-11) (-2.46716e-09 -1.65845e-11 -8.81628e-10) (-1.04474e-09 -8.29844e-11 -9.90181e-10) (-2.71862e-10 -9.89549e-11 -5.76508e-10) (-2.1529e-11 -4.76918e-11 -1.298e-10) (3.66531e-12 -8.49862e-12 -2.67874e-12) (4.29593e-11 -2.6164e-11 6.3251e-11) (2.53065e-10 -2.52409e-11 3.46528e-10) (7.20254e-10 9.99181e-11 7.43952e-10) (1.22468e-09 3.50346e-10 9.25679e-10) (1.27923e-09 5.30442e-10 6.85334e-10) (7.95792e-10 4.34759e-10 2.45493e-10) (2.71759e-10 1.73596e-10 -7.51725e-12) (5.14254e-11 2.05875e-11 -4.10741e-11) (2.14516e-11 -5.0727e-11 -8.24072e-11) (6.15987e-12 -2.37889e-10 -1.8679e-10) (-6.58218e-12 -2.76756e-10 -1.53688e-10) (-2.70874e-11 -8.94304e-11 -3.18381e-11) (-7.51606e-11 -1.93885e-11 2.04427e-11) (-4.52261e-10 1.27642e-10 2.42116e-10) (-8.38697e-10 4.49105e-10 6.26267e-10) (-5.14087e-10 4.88429e-10 6.51197e-10) (-5.96116e-11 2.79936e-10 3.68269e-10) (9.38416e-11 1.19721e-10 1.35494e-10) (9.56232e-11 4.23893e-11 1.48752e-11) (8.20918e-11 7.08258e-12 -5.2038e-11) (6.64266e-11 -1.87342e-11 -1.1481e-10) (2.87274e-11 -2.69422e-11 -1.26015e-10) (-7.45154e-12 -1.6835e-11 -7.4047e-11) (-3.43265e-11 -1.30887e-11 -3.61579e-11) (-1.32789e-10 -3.59196e-11 -2.59106e-11) (-2.87992e-10 -8.45556e-11 -1.43272e-13) (-1.78615e-10 -7.40709e-11 -5.24095e-12) (-1.22256e-11 -1.75898e-11 -9.85049e-12) (6.39088e-11 -3.16005e-11 -3.79633e-11) (3.02829e-10 -5.80123e-11 -7.90385e-11) (2.46698e-10 -4.24565e-11 -7.47619e-12) (1.7071e-11 -9.85174e-12 1.47462e-11) (-2.10322e-10 -3.97699e-11 1.19995e-10) (-1.86762e-09 -7.09143e-11 4.00866e-10) (-3.39717e-09 1.94912e-12 -6.92136e-11) (-2.70004e-09 -1.03143e-09 -2.36686e-09) (-8.2204e-10 -5.28154e-10 -1.2128e-09) (-8.37947e-11 -9.97564e-11 -2.65466e-10) (2.70208e-12 1.61349e-13 -1.26192e-11) (1.00384e-11 1.41558e-11 1.03935e-11) (4.7512e-11 6.74546e-11 1.35657e-10) (1.28599e-10 8.58882e-11 4.12584e-10) (2.41368e-10 4.74089e-11 6.05138e-10) (2.52549e-10 4.29127e-11 4.48031e-10) (1.38366e-10 5.09942e-11 1.60785e-10) (4.27668e-11 3.07747e-11 2.30452e-11) (8.18682e-12 8.73957e-12 -4.53621e-12) (1.83615e-12 -2.64953e-12 -1.11688e-11) (1.01255e-11 -5.46948e-11 -3.28645e-11) (8.03644e-11 -1.67129e-10 -3.05614e-11) (1.28855e-10 -1.31027e-10 -3.28766e-12) (3.15637e-11 -8.45031e-12 2.02732e-12) (-3.4734e-12 1.38331e-11 7.16564e-12) (-1.52669e-10 1.03281e-10 1.02533e-10) (-3.82039e-10 1.4342e-10 2.76507e-10) (-2.42049e-10 1.03943e-10 2.31082e-10) (-3.70546e-11 6.56914e-11 8.16863e-11) (2.75641e-11 6.1645e-11 2.84452e-11) (6.6719e-11 6.38982e-11 -4.56208e-12) (6.97573e-11 3.4019e-11 -2.59604e-11) (7.2397e-11 9.61307e-12 -3.47405e-11) (8.69777e-11 2.52219e-12 -3.85363e-11) (6.25674e-11 9.39127e-12 -2.32568e-11) (5.96762e-12 3.2444e-12 -2.76444e-12) (-1.47232e-11 -6.05809e-13 -3.73577e-12) (-2.20352e-10 -9.87732e-11 -7.56396e-11) (-4.16789e-10 -3.78158e-10 -3.02946e-10) (-1.57973e-10 -4.20149e-10 -3.55828e-10) (1.3795e-10 -2.18465e-10 -1.60421e-10) (3.77158e-10 -9.60613e-11 1.64211e-11) (4.02474e-10 7.71188e-11 2.56421e-10) (2.65785e-11 1.14165e-10 2.26183e-10) (-5.76222e-10 1.53921e-10 2.34637e-10) (-2.62458e-09 -7.54175e-11 -3.9698e-10) (-4.05184e-09 -8.17542e-10 -2.00893e-09) (-3.12025e-09 -1.78368e-09 -1.68953e-09) (-1.30013e-09 -9.76021e-10 -2.28712e-10) (-2.29703e-10 -2.42301e-10 1.30253e-10) (-2.04028e-12 -1.95342e-11 4.02754e-11) (3.59064e-11 1.98376e-11 1.24731e-11) (1.7035e-10 1.15637e-10 -2.22688e-11) (2.96861e-10 1.527e-10 -2.30579e-12) (3.56387e-10 1.00339e-10 1.10397e-10) (3.08046e-10 4.45753e-11 1.8711e-10) (1.19791e-10 3.49425e-11 1.00106e-10) (1.22486e-11 2.06505e-11 1.33629e-11) (-7.21436e-12 1.95804e-11 -2.37057e-12) (-2.61266e-12 1.30973e-12 2.93975e-13) (1.9669e-11 -7.04907e-11 5.52952e-11) (2.74126e-10 -4.86651e-10 3.08871e-10) (2.34353e-10 -3.3429e-10 1.12731e-10) (3.00268e-11 -1.71212e-11 -2.52004e-11) (9.87602e-12 1.15501e-10 -1.17709e-10) (-4.42055e-11 3.23499e-10 -1.19866e-10) (-6.40259e-11 2.85661e-10 2.31619e-11) (-5.04505e-11 1.41976e-10 8.13866e-11) (-2.49299e-11 4.07934e-11 5.56131e-11) (-8.6395e-12 5.4694e-12 2.48028e-11) (-2.58693e-12 -2.34217e-12 1.25868e-11) (1.1804e-12 -2.99858e-12 8.98984e-12) (7.80724e-12 5.56455e-13 8.17797e-12) (3.93339e-11 2.126e-11 8.23033e-12) (9.29312e-11 7.19774e-11 -2.64528e-11) (5.7396e-11 6.13768e-11 -8.04827e-11) (-6.27954e-11 -1.10426e-11 -1.98891e-10) (-8.66359e-10 -5.83794e-10 -8.88875e-10) (-2.10856e-09 -1.82024e-09 -1.51586e-09) (-1.31689e-09 -1.63275e-09 -8.10858e-10) (-1.01416e-10 -3.56732e-10 -6.13226e-11) (1.39386e-10 -2.47962e-11 9.40786e-11) (9.50407e-10 6.35872e-10 7.35891e-10) (7.82701e-10 9.98387e-10 7.19671e-10) (-2.0218e-12 1.85613e-10 3.58316e-11) (-6.49628e-10 2.17401e-11 -4.46353e-10) (-2.90792e-09 -1.09132e-09 -2.03833e-09) (-2.51858e-09 -1.40199e-09 -2.03489e-10) (-2.17736e-09 -2.03759e-09 1.47129e-09) (-9.30551e-10 -1.74991e-09 2.75574e-09) (-9.9534e-11 -5.75547e-10 1.74338e-09) (3.25322e-11 3.50627e-11 3.08237e-10) (8.985e-11 1.33302e-10 6.19921e-11) (4.59943e-10 3.93827e-10 -2.34361e-11) (1.18815e-09 5.85472e-10 -1.35966e-10) (1.72605e-09 5.42048e-10 -2.30112e-10) (1.46174e-09 4.12346e-10 -3.06344e-10) (7.1663e-10 2.7029e-10 -2.4182e-10) (1.97669e-10 9.99571e-11 -6.68326e-11) (3.28101e-11 -3.40448e-12 1.44547e-11) (2.99678e-11 -3.68003e-10 2.33052e-10) (-7.36205e-10 -2.03388e-09 4.8003e-10) (-2.16694e-09 -2.64499e-09 -5.45743e-10) (-1.71236e-09 -9.72612e-10 -1.33633e-09) (-4.30399e-10 1.00828e-10 -8.62695e-10) (1.28616e-10 2.74433e-10 -3.69616e-10) (4.44134e-10 3.47022e-10 -1.07774e-10) (5.9925e-10 3.36782e-10 1.80596e-10) (3.46744e-10 2.00827e-10 2.5261e-10) (5.55734e-11 7.03696e-11 1.07818e-10) (-2.8694e-11 2.95662e-11 4.37483e-11) (-7.77383e-11 2.47687e-11 3.36873e-11) (-3.22406e-11 1.13543e-11 8.79097e-12) (7.50455e-13 5.1353e-12 -8.30786e-13) (6.77951e-11 5.43321e-11 -4.00643e-11) (1.43484e-10 9.62037e-11 -1.47614e-10) (3.38628e-11 1.49045e-11 -1.76609e-10) (-2.33847e-10 -2.39293e-10 -3.6653e-10) (-1.08986e-09 -1.38865e-09 -8.25725e-10) (-1.44771e-09 -2.56917e-09 -9.84574e-10) (-7.89041e-10 -1.54235e-09 -5.30328e-10) (-1.08325e-10 -1.28921e-10 -4.11276e-11) (-6.2284e-12 1.07971e-10 5.1569e-11) (3.09941e-10 1.31535e-09 5.06613e-10) (1.99271e-10 1.29235e-09 2.42796e-10) (-1.60477e-10 2.77948e-10 -1.20584e-10) (-1.03287e-09 -1.64972e-10 -5.13704e-10) (-4.61219e-10 -5.18726e-10 4.47923e-10) (-1.56595e-10 -2.57337e-09 3.1966e-09) (1.17375e-09 -3.54913e-09 6.08483e-09) (6.24703e-10 -1.33042e-09 3.14021e-09) (3.78575e-11 -6.80841e-11 5.9565e-10) (1.22084e-11 1.0349e-10 1.43673e-10) (1.70761e-10 2.91501e-10 1.58136e-10) (7.55217e-10 6.29215e-10 2.54417e-10) (1.77622e-09 1.02179e-09 2.40503e-10) (2.55044e-09 1.40847e-09 -4.49086e-11) (2.42835e-09 1.51773e-09 -4.3982e-10) (1.36451e-09 8.17903e-10 -4.77966e-10) (2.50905e-10 6.97893e-12 -1.56112e-10) (-2.8004e-10 -8.22965e-10 -3.24101e-10) (-7.30736e-09 -6.56213e-09 -2.03286e-09) (-1.91487e-08 -9.46353e-09 -4.67142e-09) (-1.03014e-08 -2.777e-09 -2.95963e-09) (-7.81996e-10 7.42069e-13 -2.77325e-10) (3.70671e-11 5.07449e-11 1.42163e-11) (6.38317e-10 3.57197e-10 2.486e-10) (8.86872e-10 4.16124e-10 2.61266e-10) (5.37423e-10 2.4958e-10 3.13964e-11) (1.72799e-10 1.0081e-10 -6.86222e-11) (2.28829e-11 2.70992e-11 -5.44937e-11) (-1.3055e-11 -1.05768e-13 -4.27693e-11) (-7.21416e-12 -1.19318e-11 -2.60107e-11) (1.99852e-11 -8.64826e-12 -2.28995e-11) (1.58437e-10 2.81374e-11 -7.58287e-11) (3.55387e-10 1.20271e-10 -1.51195e-10) (3.06585e-10 6.47158e-11 -1.47248e-10) (1.77176e-10 -8.09619e-11 -1.10222e-10) (1.35689e-10 -4.16136e-10 -2.06641e-10) (-2.90128e-10 -1.02848e-09 -4.98503e-10) (-1.2254e-09 -1.23126e-09 -8.33439e-10) (-1.70375e-09 -5.15182e-10 -7.13429e-10) (-1.3311e-09 3.54498e-10 -3.01154e-10) (-8.6286e-10 1.00524e-09 -4.46592e-11) (-4.61488e-10 1.29065e-09 2.74579e-11) (-2.66481e-10 5.79034e-10 -3.61314e-11) (-2.07133e-10 4.67991e-11 5.44209e-12) (4.12769e-10 -7.75842e-10 1.4171e-09) (2.5341e-09 -2.94702e-09 5.25908e-09) (3.14461e-09 -2.83669e-09 5.21883e-09) (1.09003e-09 -8.3313e-10 1.55028e-09) (9.27693e-11 -5.05865e-11 1.18069e-10) (1.64636e-12 1.4913e-12 2.57137e-12) (1.38342e-12 4.68865e-12 4.10328e-12) (2.19545e-11 1.94649e-11 3.23645e-11) (1.55555e-10 1.31266e-10 1.44987e-10) (6.48376e-10 6.71323e-10 3.0834e-10) (1.71276e-09 1.86001e-09 1.3309e-10) (2.06221e-09 1.94505e-09 -5.34335e-10) (5.33706e-10 3.3186e-10 -4.80412e-10) (-7.71025e-10 -5.39098e-10 -8.11233e-10) (-1.65883e-08 -6.68492e-09 -4.78689e-09) (-3.52045e-08 -1.02466e-08 -6.01714e-09) (-1.35592e-08 -3.6106e-09 -1.66449e-09) (-6.44685e-10 -2.49811e-10 4.47452e-11) (9.23937e-11 -8.27231e-12 1.04318e-10) (9.48509e-10 2.73175e-10 5.88386e-10) (1.2577e-09 6.0949e-10 5.79812e-10) (5.93916e-10 4.32366e-10 9.74014e-11) (1.26118e-10 1.67777e-10 -1.23618e-10) (-1.40844e-11 7.24436e-11 -2.78927e-10) (-5.93744e-11 -1.15918e-10 -4.61837e-10) (1.40635e-10 -3.73025e-10 -5.86516e-10) (5.16897e-10 -4.38407e-10 -6.03748e-10) (6.13267e-10 -1.74175e-10 -3.93584e-10) (4.22868e-10 1.73839e-11 -1.64599e-10) (1.80306e-10 1.1438e-11 -4.12118e-11) (3.2177e-11 -1.95712e-11 -1.15242e-11) (-2.45697e-11 -7.76637e-11 -4.87462e-11) (-2.77432e-10 -2.36714e-10 -2.58608e-10) (-5.23356e-10 -1.92646e-10 -3.97008e-10) (-5.43442e-10 2.93587e-11 -2.25694e-10) (-8.21305e-10 3.49143e-10 -1.05323e-11) (-1.30901e-09 9.50843e-10 2.41376e-10) (-1.08224e-09 1.14784e-09 2.39176e-10) (-3.43867e-10 4.2711e-10 1.29887e-10) (-3.66601e-11 1.25301e-11 1.13448e-10) (1.69816e-09 -1.03168e-09 3.61259e-09) (3.31549e-09 -2.25899e-09 4.74534e-09) (1.62792e-09 -1.40967e-09 1.90248e-09) (1.58304e-10 -2.07148e-10 1.71734e-10) (-1.28271e-12 -1.03092e-12 4.9007e-13) (-4.39573e-11 3.13126e-11 1.24293e-12) (-1.19275e-10 8.70527e-11 4.62307e-11) (-1.46714e-10 7.22794e-11 8.5693e-11) (-4.33919e-11 1.95821e-11 2.08818e-11) (2.11986e-11 3.05011e-11 -1.72655e-11) (8.72039e-10 6.39415e-10 -4.36493e-10) (2.45774e-09 1.77831e-09 -1.17165e-09) (8.98926e-10 8.43821e-10 -7.43124e-10) (-5.38313e-10 1.02616e-10 -4.31618e-10) (-1.08377e-08 -2.37502e-09 -2.57926e-09) (-1.81141e-08 -6.71689e-09 -3.86889e-09) (-5.97462e-09 -3.94784e-09 -1.71574e-09) (-4.46761e-10 -7.65479e-10 -1.03193e-10) (2.77441e-11 -7.84464e-11 6.75165e-11) (1.70146e-10 1.284e-10 2.76703e-10) (6.73707e-10 9.84775e-10 7.20366e-10) (9.61967e-10 1.54467e-09 5.13365e-10) (3.59665e-10 5.96606e-10 -7.75907e-11) (7.73231e-11 3.95797e-11 -1.93546e-10) (2.76387e-10 -7.76525e-10 -9.88242e-10) (8.98184e-10 -2.37711e-09 -1.9785e-09) (6.0291e-10 -1.3601e-09 -1.09271e-09) (4.50248e-11 -1.01058e-10 -1.23607e-10) (-1.09228e-11 1.00564e-11 -1.03711e-11) (-5.10486e-11 4.31538e-11 -1.51827e-11) (-3.73683e-11 1.30221e-11 -2.84468e-11) (-3.02958e-11 -2.73035e-11 -7.68468e-11) (-5.69811e-12 -6.37239e-11 -1.22413e-10) (4.5212e-12 -1.09501e-11 -3.71836e-11) (-4.47656e-12 1.75003e-11 -9.48429e-13) (-1.87144e-10 3.0946e-10 1.54233e-10) (-7.68906e-10 8.03651e-10 5.49259e-10) (-9.47383e-10 7.07367e-10 6.86186e-10) (-4.42107e-10 2.7366e-10 5.94208e-10) (4.37791e-11 -3.2801e-11 1.1173e-09) (1.40279e-09 -8.17881e-10 1.88738e-09) (7.09166e-10 -6.28982e-10 7.03545e-10) (2.29945e-11 -1.33222e-10 7.00496e-11) (-7.56602e-11 -3.3299e-11 1.34123e-11) (-1.62342e-10 5.26847e-11 2.39431e-11) (-1.74209e-10 1.48846e-10 5.34206e-11) (-1.09061e-10 1.10283e-10 4.53966e-11) (-1.95264e-11 1.17356e-11 1.0131e-12) (7.87046e-12 -1.49525e-11 -4.69383e-11) (3.45022e-10 -9.52173e-11 -5.46754e-10) (1.06893e-09 2.21949e-10 -1.18679e-09) (1.24246e-09 8.8508e-10 -1.04654e-09) (3.85008e-10 7.94705e-10 -4.047e-10) (-4.7879e-10 4.17037e-10 -1.99106e-10) (-4.15595e-09 -4.84577e-10 -9.62669e-10) (-5.73519e-09 -3.44287e-09 -1.90515e-09) (-1.61933e-09 -2.44012e-09 -7.91604e-10) (-6.38305e-11 -4.59813e-10 1.67687e-11) (-5.34809e-14 -1.9748e-11 4.50678e-11) (-2.70406e-11 9.02693e-11 9.84302e-11) (2.29096e-11 3.30417e-10 1.36607e-10) (2.87624e-10 6.13213e-10 9.35705e-11) (3.52315e-10 3.67091e-10 -6.15769e-11) (2.33766e-10 -4.16481e-11 -1.88599e-10) (5.02498e-10 -1.28166e-09 -1.04949e-09) (1.59004e-11 -2.49814e-09 -1.60128e-09) (-4.68945e-10 -8.61106e-10 -5.56182e-10) (-4.68312e-10 -4.87836e-11 -1.00842e-10) (-4.47849e-10 1.70849e-10 -5.2416e-12) (-4.41608e-11 2.57396e-11 -9.80242e-12) (3.06537e-11 -1.01413e-11 -2.21758e-11) (4.32836e-10 -1.50134e-10 -1.51931e-10) (8.42723e-10 -1.57642e-10 -1.81469e-10) (6.86338e-10 8.9799e-11 -2.16478e-11) (3.06507e-10 2.69171e-10 1.29816e-10) (-1.61334e-11 5.04068e-10 3.26099e-10) (-7.05715e-10 8.27829e-10 7.13625e-10) (-1.23588e-09 6.79221e-10 1.11563e-09) (-5.75833e-10 1.76299e-10 1.20157e-09) (3.72554e-10 -2.52777e-10 1.64453e-09) (1.3863e-10 -9.10482e-11 1.11175e-10) (-1.83308e-12 -1.69786e-11 1.07239e-11) (-7.0666e-11 -3.08287e-11 2.49082e-11) (-7.34601e-11 9.31807e-13 2.9847e-11) (-3.63129e-11 4.01144e-11 2.00926e-11) (-2.74663e-11 9.63361e-11 1.54646e-11) (-7.11843e-12 5.43345e-11 -7.4873e-12) (2.71918e-11 1.30317e-11 -5.28985e-11) (6.16891e-10 -1.84082e-10 -8.31271e-10) (2.43574e-09 -5.57801e-10 -3.03199e-09) (2.33331e-09 1.53559e-11 -2.92435e-09) (4.74777e-10 4.00383e-10 -6.92575e-10) (-1.83151e-10 4.99841e-10 -8.92123e-11) (-1.65488e-09 8.83794e-10 1.04633e-10) (-3.15211e-09 -5.01964e-10 -2.07078e-10) (-2.00411e-09 -2.27667e-09 -4.23011e-10) (-2.2926e-10 -1.40573e-09 -2.79602e-11) (2.90993e-11 -9.41004e-11 5.43277e-11) (1.09036e-11 3.89687e-11 3.01699e-11) (2.53361e-11 1.60253e-10 -2.8567e-11) (8.66927e-11 2.28622e-10 -1.65347e-10) (1.02683e-10 1.59603e-10 -1.33747e-10) (5.25481e-11 3.64845e-11 -4.50961e-11) (3.7391e-11 -7.96677e-11 -6.70282e-11) (-2.35468e-10 -1.13436e-09 -4.86004e-10) (-1.35795e-09 -2.22105e-09 -8.08769e-10) (-1.70876e-09 -9.64581e-10 -2.68299e-10) (-1.36669e-09 5.19868e-11 2.01475e-10) (-3.65355e-10 1.34452e-10 1.69456e-10) (6.20146e-12 4.94638e-12 1.52409e-11) (4.2162e-10 -7.21051e-11 5.03091e-11) (1.75473e-09 -2.81067e-10 3.10202e-11) (3.38078e-09 -1.30728e-10 1.7136e-10) (3.72075e-09 6.29801e-10 5.5824e-10) (1.53895e-09 9.41255e-10 6.03685e-10) (1.65002e-13 6.8719e-10 4.38319e-10) (-9.57899e-10 7.85254e-10 7.47983e-10) (-6.89049e-10 2.12024e-10 7.01386e-10) (-3.57621e-11 -9.36486e-11 4.3778e-10) (2.78076e-10 -1.86527e-10 3.78099e-10) (-1.52968e-11 -2.83366e-13 5.9503e-12) (-1.54959e-11 -2.74218e-12 1.40295e-11) (-4.32564e-12 -1.5413e-12 8.81162e-12) (2.94367e-12 5.49707e-12 -2.11522e-13) (6.60914e-11 1.26535e-10 -7.08006e-11) (1.55908e-10 2.68117e-10 -1.84497e-10) (2.04375e-10 1.73577e-10 -2.10157e-10) (5.58517e-10 3.23631e-11 -5.58808e-10) (1.86362e-09 -4.07088e-10 -2.04356e-09) (2.79641e-09 -6.04268e-10 -3.37021e-09) (1.26564e-09 3.14542e-11 -1.65156e-09) (5.09193e-11 1.38102e-10 -1.24501e-10) (-7.86239e-10 7.53543e-10 2.28506e-10) (-3.10524e-09 9.61489e-10 7.81583e-10) (-2.37973e-09 -9.19266e-10 3.64519e-10) (-1.01957e-09 -2.12241e-09 2.1365e-10) (-1.27038e-10 -6.81585e-10 1.85009e-10) (-2.31162e-12 5.73546e-12 3.23925e-11) (8.88226e-11 2.27502e-10 2.10846e-12) (4.8743e-10 4.62518e-10 -4.64841e-10) (8.04428e-10 3.39091e-10 -9.83184e-10) (3.2488e-10 5.07564e-11 -4.36504e-10) (2.217e-11 -1.23811e-11 -4.57232e-11) (-6.87822e-11 -1.35238e-10 -2.90164e-11) (-8.56443e-10 -1.27123e-09 -1.25858e-10) (-2.36252e-09 -2.16063e-09 -2.35279e-10) (-3.36979e-09 -1.00305e-09 4.64612e-10) (-3.00354e-09 1.43175e-10 1.51725e-09) (-9.20011e-10 9.0392e-11 9.12331e-10) (-3.89752e-11 -1.86677e-11 8.4967e-11) (4.55382e-11 -2.54134e-11 6.58555e-12) (5.9936e-10 -1.2731e-10 4.77173e-11) (2.41454e-09 -4.69697e-11 6.67786e-10) (4.40779e-09 8.73763e-10 1.70635e-09) (3.4692e-09 1.76784e-09 1.59102e-09) (8.92947e-10 1.01227e-09 6.34144e-10) (-3.48833e-12 1.71979e-10 1.39048e-10) (-8.162e-11 6.07875e-12 7.02014e-11) (-7.4401e-11 -3.38878e-11 4.28358e-11) (-2.64085e-11 -8.78469e-12 9.54862e-12) (-1.78732e-10 1.01121e-11 -4.30545e-12) (-6.21907e-11 6.81798e-12 1.49391e-11) (-4.55341e-12 3.81024e-12 -9.34497e-13) (6.89976e-11 8.26828e-11 -1.05429e-10) (5.69031e-10 4.54763e-10 -6.18096e-10) (9.81354e-10 6.36368e-10 -8.36963e-10) (9.81358e-10 3.99851e-10 -7.0239e-10) (1.10484e-09 8.88442e-11 -8.82551e-10) (1.32759e-09 -2.53263e-10 -1.4497e-09) (8.58119e-10 -2.85594e-10 -1.2741e-09) (1.14748e-10 -1.00845e-11 -2.32549e-10) (-5.38779e-11 8.58973e-11 7.58526e-12) (-1.23378e-09 9.48748e-10 6.42663e-10) (-2.03585e-09 4.3206e-10 9.01392e-10) (-1.19823e-09 -1.0395e-09 4.86715e-10) (-1.05026e-09 -2.05462e-09 4.00072e-10) (-4.50691e-10 -4.07909e-10 2.23227e-10) (-5.02776e-11 6.49578e-11 5.28745e-11) (3.37028e-10 4.17905e-10 -1.59844e-10) (2.15347e-09 8.13419e-10 -1.61302e-09) (2.68306e-09 1.60199e-10 -2.26235e-09) (9.72491e-10 -1.49146e-10 -8.33188e-10) (5.37286e-11 -3.71033e-11 -4.67032e-11) (-6.37766e-11 -1.56884e-10 2.78412e-11) (-6.43632e-10 -1.09952e-09 1.17645e-10) (-1.89784e-09 -1.47336e-09 1.06949e-10) (-3.85134e-09 -4.68572e-10 1.2534e-09) (-4.87668e-09 4.73902e-10 3.75528e-09) (-3.36871e-09 -8.37975e-11 2.78244e-09) (-1.36981e-09 -3.04694e-10 4.19865e-10) (-1.95395e-10 -1.07212e-10 -4.44874e-11) (3.75525e-11 -3.80167e-11 1.56887e-11) (7.85062e-10 -1.4447e-10 5.81265e-10) (1.66573e-09 2.61343e-10 1.46149e-09) (1.61952e-09 1.03931e-09 1.41756e-09) (9.34278e-10 1.21012e-09 7.34515e-10) (1.62547e-10 4.7553e-10 1.33403e-10) (-4.03623e-11 7.402e-11 -5.82797e-12) (-1.82428e-10 3.50773e-11 -5.26795e-11) (-2.8745e-10 1.26396e-11 -6.55674e-11) (-6.52911e-10 1.00312e-10 -1.83945e-10) (-5.65008e-10 8.39771e-11 -8.16251e-11) (-7.55032e-11 3.98124e-11 -4.2433e-11) (1.53133e-10 1.588e-10 -2.43465e-10) (1.30174e-09 7.17156e-10 -1.17759e-09) (2.1584e-09 9.72363e-10 -1.58539e-09) (1.73159e-09 5.44178e-10 -1.11841e-09) (1.05e-09 9.16918e-11 -7.72768e-10) (5.47334e-10 -1.40864e-10 -6.19713e-10) (1.26538e-10 -1.20447e-10 -2.88208e-10) (-8.94772e-12 -6.32829e-12 -1.79128e-11) (-2.15522e-10 1.65518e-10 1.30262e-10) (-1.03437e-09 7.95745e-10 8.49173e-10) (-7.05133e-10 5.70612e-11 5.65914e-10) (-7.30374e-10 -9.62301e-10 3.84948e-10) (-1.66737e-09 -1.70589e-09 3.49302e-10) (-9.61628e-10 -3.33185e-10 2.41362e-10) (-1.93318e-11 3.65509e-11 2.86685e-12) (9.6899e-10 5.12654e-10 -5.9337e-10) (4.1177e-09 7.32619e-10 -2.73603e-09) (3.94076e-09 -1.10131e-10 -2.71955e-09) (1.26349e-09 -1.97466e-10 -8.00765e-10) (1.03978e-10 -5.4493e-11 -2.46062e-11) (3.53285e-11 -2.58161e-10 1.10985e-10) (-3.65387e-10 -1.02685e-09 2.41089e-10) (-2.32216e-09 -1.11304e-09 3.35234e-10) (-6.01599e-09 5.66925e-10 2.44408e-09) (-6.14825e-09 1.39663e-09 5.43077e-09) (-3.87224e-09 2.05345e-11 3.07769e-09) (-1.86628e-09 -5.17504e-10 4.12601e-10) (-3.03553e-10 -2.42503e-10 -3.22794e-11) (2.88674e-11 -1.0149e-10 4.70895e-11) (2.04662e-10 -1.47005e-10 2.72538e-10) (1.52041e-10 6.4773e-12 3.18786e-10) (8.96056e-11 2.29326e-10 2.87795e-10) (1.72802e-10 6.15688e-10 2.96356e-10) (3.01882e-10 7.19936e-10 1.62594e-10) (1.79405e-10 3.58953e-10 5.21825e-12) (5.09964e-12 8.93974e-11 -3.86067e-11) (-1.76152e-10 8.20107e-11 -1.10409e-10) (-6.62648e-11 4.13775e-11 -3.76186e-11) (-1.61287e-10 2.99299e-11 -3.1223e-11) (-1.19578e-11 1.4257e-11 -1.72175e-11) (3.37853e-10 2.19287e-10 -3.19702e-10) (1.79866e-09 8.94763e-10 -1.34939e-09) (2.47668e-09 1.04608e-09 -1.68309e-09) (1.68585e-09 4.94294e-10 -1.05595e-09) (7.47544e-10 4.35099e-11 -5.2304e-10) (2.15788e-10 -9.72986e-11 -2.54726e-10) (1.47817e-12 -7.1061e-11 -9.36417e-11) (-5.4486e-11 -1.42409e-11 -4.53741e-12) (-3.28856e-10 1.98048e-10 2.86581e-10) (-5.20241e-10 4.8701e-10 7.8249e-10) (-1.94604e-10 -2.14565e-11 3.1521e-10) (-5.764e-10 -6.41837e-10 2.35599e-10) (-1.87959e-09 -1.24493e-09 2.03499e-10) (-6.95365e-10 -2.2026e-10 3.99266e-11) (1.55222e-11 1.73562e-11 -3.67287e-11) (1.72138e-09 4.10923e-10 -1.22024e-09) (4.25966e-09 4.10368e-10 -2.80505e-09) (3.13174e-09 -5.78997e-11 -2.04491e-09) (8.17789e-10 -9.39097e-11 -4.33473e-10) (1.45613e-10 -8.04452e-11 2.55341e-11) (1.77426e-10 -5.15956e-10 2.93329e-10) (-8.02369e-10 -1.15343e-09 3.75303e-10) (-7.59618e-09 -1.10197e-09 1.2072e-09) (-1.12148e-08 2.47399e-09 4.95692e-09) (-4.66184e-09 1.65932e-09 5.06508e-09) (-1.18188e-09 -1.4173e-11 1.3745e-09) (-2.73961e-10 -2.18495e-10 1.53702e-10) (-1.52759e-11 -2.03957e-10 6.27034e-11) (1.3802e-10 -2.42241e-10 1.73146e-10) (8.8715e-11 -1.11753e-10 1.64993e-10) (-8.30807e-12 1.54428e-13 4.86621e-11) (-7.46312e-11 9.46017e-11 5.49566e-11) (-6.93379e-11 2.95947e-10 6.37827e-11) (1.8657e-10 5.04248e-10 8.98031e-11) (6.73258e-10 7.34941e-10 9.48458e-11) (6.51474e-10 5.77464e-10 -4.66917e-11) (9.29628e-11 1.42226e-10 -6.45936e-11) (2.79049e-11 2.50706e-11 -7.7094e-12) (4.62566e-12 3.13242e-12 -3.39616e-12) (7.01782e-11 3.31803e-11 -4.05303e-11) (5.05959e-10 2.82086e-10 -2.86738e-10) (1.25946e-09 7.56712e-10 -7.43701e-10) (1.60363e-09 7.84944e-10 -9.53077e-10) (1.21668e-09 3.60988e-10 -7.31227e-10) (5.58196e-10 -4.94753e-12 -3.99714e-10) (1.34292e-10 -9.79729e-11 -1.81046e-10) (-2.24549e-11 -6.23793e-11 -6.04434e-11) (-8.73374e-11 -1.78331e-11 1.92548e-11) (-2.53887e-10 1.73722e-10 3.63031e-10) (-1.52339e-10 3.21956e-10 6.86957e-10) (-4.11847e-11 -7.63004e-12 1.89696e-10) (-3.31087e-10 -3.01055e-10 9.3142e-11) (-1.18891e-09 -7.04742e-10 -1.3019e-11) (-3.46712e-10 -1.71852e-10 -7.92725e-11) (5.6811e-11 -1.49938e-11 -1.22677e-10) (1.33148e-09 1.17363e-10 -1.0769e-09) (2.53292e-09 2.09871e-10 -1.80777e-09) (1.51598e-09 6.76536e-11 -1.03953e-09) (3.01953e-10 -2.13354e-11 -1.33309e-10) (1.46053e-10 -1.12331e-10 8.60758e-11) (4.11384e-11 -6.16244e-10 3.64491e-10) (-4.09703e-09 -2.00762e-09 7.73127e-10) (-2.3225e-08 -7.82397e-11 3.75849e-09) (-1.35504e-08 3.42285e-09 6.8831e-09) (-1.77959e-09 9.72295e-10 2.94882e-09) (-8.05505e-11 -3.15064e-11 4.14366e-10) (4.00425e-11 -1.47494e-10 1.16589e-10) (2.38923e-10 -3.59546e-10 2.39201e-10) (3.34752e-10 -3.30188e-10 3.55643e-10) (1.04865e-10 -8.05693e-11 1.68085e-10) (-8.8727e-12 7.83544e-12 2.95964e-11) (-1.10302e-10 1.03596e-10 3.40269e-11) (-1.31897e-10 2.24653e-10 2.28694e-11) (3.27648e-11 2.68526e-10 3.60902e-11) (4.0311e-10 4.92997e-10 7.54927e-11) (7.33856e-10 5.97349e-10 3.8648e-11) (3.26576e-10 2.51567e-10 -2.14904e-11) (1.51674e-10 5.24875e-11 -3.65625e-11) (2.31336e-10 2.95932e-11 -1.08121e-10) (3.42675e-10 8.10594e-11 -1.74158e-10) (3.78832e-10 2.0041e-10 -1.61054e-10) (5.13662e-10 3.75681e-10 -1.96117e-10) (7.85645e-10 4.59848e-10 -3.57782e-10) (8.42442e-10 2.56918e-10 -4.5237e-10) (5.08997e-10 -2.25847e-11 -3.55845e-10) (1.30297e-10 -9.35188e-11 -1.65358e-10) (-1.12229e-11 -3.53109e-11 -3.03106e-11) (-5.14668e-11 -5.2379e-12 3.2543e-11) (-1.23658e-10 1.65381e-10 4.04317e-10) (7.00617e-11 2.65578e-10 6.46896e-10) (2.50366e-11 5.94492e-12 1.17765e-10) (-8.06593e-11 -9.09234e-11 9.69149e-12) (-4.7584e-10 -3.36927e-10 -1.075e-10) (-2.14972e-10 -1.68673e-10 -1.21674e-10) (2.6967e-11 -5.47836e-11 -1.26428e-10) (4.5345e-10 -1.83619e-11 -4.93437e-10) (8.37997e-10 1.09232e-10 -7.52884e-10) (4.2865e-10 7.66028e-11 -3.65335e-10) (6.23194e-11 -3.0193e-12 -2.24087e-11) (9.88398e-11 -1.26413e-10 1.03493e-10) (-4.96018e-10 -6.82661e-10 3.80325e-10) (-1.95252e-08 -3.55807e-09 1.92494e-09) (-4.55134e-08 1.67715e-09 8.08359e-09) (-1.01739e-08 2.24129e-09 6.31124e-09) (-3.80398e-10 3.31489e-10 1.35537e-09) (7.43618e-11 -4.2098e-11 1.99431e-10) (1.42403e-10 -1.7141e-10 1.4429e-10) (2.87114e-10 -3.08095e-10 2.67936e-10) (2.70147e-10 -2.02482e-10 2.82667e-10) (8.58788e-11 -3.14935e-11 1.17063e-10) (2.71584e-12 1.16795e-11 2.25236e-11) (-2.59135e-11 4.90733e-11 1.6162e-11) (-3.62761e-11 9.80691e-11 8.30526e-12) (9.18925e-12 1.24185e-10 1.34508e-11) (1.13341e-10 1.99843e-10 3.59866e-11) (2.41898e-10 2.52589e-10 4.40797e-11) (2.09942e-10 1.50759e-10 5.16921e-12) (2.69861e-10 4.66783e-11 -1.10695e-10) (6.26641e-10 1.52238e-11 -3.71162e-10) (6.8995e-10 7.65386e-11 -4.88638e-10) (3.81851e-10 1.69219e-10 -2.6079e-10) (2.55822e-10 1.99233e-10 -1.08632e-10) (3.3157e-10 2.28946e-10 -9.61488e-11) (4.22787e-10 1.40724e-10 -1.62849e-10) (3.23676e-10 -9.18492e-12 -1.88424e-10) (8.89512e-11 -4.80607e-11 -8.60181e-11) (7.89129e-14 -6.05523e-12 -3.54563e-12) (-2.28214e-11 8.64653e-12 5.26182e-11) (5.10338e-12 1.86504e-10 4.88873e-10) (2.25775e-10 2.19075e-10 5.967e-10) (9.34494e-11 9.74063e-12 1.02244e-10) (7.3542e-13 -1.82136e-11 -4.68882e-12) (-1.21049e-10 -1.41621e-10 -9.10065e-11) (-1.32872e-10 -1.57356e-10 -1.32534e-10) (-8.76731e-12 -7.55601e-11 -1.2665e-10) (1.09056e-10 -2.7233e-11 -2.25537e-10) (1.95166e-10 5.27954e-11 -2.98198e-10) (8.30383e-11 4.04789e-11 -1.29934e-10) (1.00041e-11 -1.84866e-12 -4.05314e-12) (1.43778e-11 -9.97521e-11 8.1489e-11) (-3.76819e-09 -1.36969e-09 9.39367e-10) (-5.80763e-08 -3.67875e-09 4.47679e-09) (-5.52308e-08 1.59628e-09 1.11726e-08) (-5.01707e-09 6.8819e-10 4.10306e-09) (-3.85994e-11 6.28393e-11 6.42793e-10) (5.23916e-11 -3.47402e-11 9.44245e-11) (6.95157e-11 -8.91989e-11 6.90686e-11) (1.05279e-10 -1.19069e-10 1.03241e-10) (8.70012e-11 -5.78744e-11 9.01328e-11) (3.70719e-11 -4.57005e-12 3.9852e-11) (1.38774e-11 9.79582e-12 1.16357e-11) (1.78188e-11 2.42326e-11 3.29646e-12) (3.0393e-11 4.81012e-11 -2.30004e-12) (2.8899e-11 6.21761e-11 5.09025e-12) (2.8855e-11 7.79853e-11 1.91929e-11) (4.93135e-11 8.17072e-11 1.88238e-11) (9.65465e-11 6.50169e-11 -9.04584e-12) (4.28659e-10 3.10318e-11 -2.48672e-10) (1.06438e-09 -2.58156e-11 -7.37311e-10) (1.04173e-09 4.66786e-11 -8.05142e-10) (4.86411e-10 1.51375e-10 -4.20369e-10) (1.68561e-10 1.20247e-10 -1.30141e-10) (1.09395e-10 8.76801e-11 -4.33064e-11) (1.16752e-10 4.91338e-11 -3.30336e-11) (8.4369e-11 4.31253e-12 -3.30414e-11) (1.7516e-11 -5.69133e-12 -7.55431e-12) (1.29878e-12 -6.30581e-13 4.18459e-12) (1.38894e-11 4.40488e-11 1.61039e-10) (1.94323e-10 2.13146e-10 6.20912e-10) (3.9159e-10 1.63639e-10 5.34541e-10) (2.14306e-10 4.40867e-12 9.61156e-11) (4.52504e-11 -2.70478e-11 -2.17561e-11) (-1.09184e-11 -6.58662e-11 -6.31073e-11) (-5.34285e-11 -1.05703e-10 -1.03717e-10) (-2.34269e-11 -7.24768e-11 -1.17007e-10) (1.43504e-11 -2.29279e-11 -1.43646e-10) (3.2212e-11 2.61006e-11 -1.60489e-10) (1.27234e-11 1.95831e-11 -7.12715e-11) (1.19158e-12 -1.0582e-12 -6.05026e-13) (-1.73168e-10 -1.19957e-10 1.45558e-10) (-1.80244e-08 -1.89317e-09 2.58776e-09) (-1.00943e-07 -1.94015e-09 6.82691e-09) (-4.19189e-08 -5.39379e-10 9.76938e-09) (-2.05632e-09 -5.02269e-11 2.31743e-09) (-1.01792e-11 -1.08525e-11 3.23218e-10) (9.81148e-12 -1.25196e-11 2.4262e-11) (1.37569e-11 -2.42598e-11 1.12387e-11) (2.25621e-11 -2.69921e-11 1.52068e-11) (2.25349e-11 -1.08476e-11 1.38373e-11) (2.57193e-11 -1.57025e-13 8.71534e-12) (5.99126e-11 1.17847e-11 -1.92479e-12) (1.43377e-10 4.05405e-11 -2.91026e-11) (1.40969e-10 6.24408e-11 -2.49452e-11) (4.90489e-11 4.67577e-11 6.8305e-12) (1.58995e-11 4.28441e-11 2.07191e-11) (1.85117e-11 3.53114e-11 1.38394e-11) (7.45009e-11 3.59808e-11 -1.89961e-11) (7.36885e-10 4.24183e-12 -5.39398e-10) (1.60345e-09 -8.15294e-11 -1.27984e-09) (1.45635e-09 2.7824e-11 -1.16661e-09) (5.97503e-10 1.19686e-10 -5.02345e-10) (1.0742e-10 6.38658e-11 -9.61098e-11) (1.53947e-11 2.25759e-11 -1.00555e-11) (4.78451e-12 7.51534e-12 8.92554e-13) (2.48436e-12 2.06466e-12 2.31806e-12) (4.15867e-12 2.00201e-12 1.13358e-11) (2.49787e-11 1.80584e-11 8.95368e-11) (1.59731e-10 1.08789e-10 3.89108e-10) (4.76707e-10 2.05493e-10 7.04634e-10) (6.08184e-10 1.04774e-10 4.48523e-10) (4.18089e-10 -1.05683e-11 5.39038e-11) (1.56825e-10 -4.51179e-11 -7.20005e-11) (2.7019e-11 -4.70247e-11 -6.22312e-11) (-1.60377e-11 -6.22396e-11 -7.29307e-11) (-3.01521e-11 -5.34673e-11 -9.35741e-11) (-2.86203e-11 -1.94157e-11 -1.1446e-10) (-2.6369e-11 1.27862e-11 -1.2037e-10) (-1.13288e-11 7.21567e-12 -4.67998e-11) (-4.38285e-12 -2.19121e-12 1.53452e-12) (-1.65893e-09 -1.93275e-10 6.23989e-10) (-4.39208e-08 -4.05884e-10 4.13373e-09) (-1.04982e-07 -1.31623e-09 5.7359e-09) (-2.16833e-08 -1.85888e-09 6.01734e-09) (-9.27058e-10 -2.53029e-10 1.35685e-09) (-2.44841e-11 -1.63204e-11 1.42264e-10) (4.22878e-13 -1.80834e-12 1.79847e-12) (5.3375e-12 -7.35373e-12 -2.0644e-12) (1.2535e-11 -8.77615e-12 -1.98238e-12) (2.4308e-11 -4.96384e-12 -1.64041e-12) (6.34895e-11 -3.99573e-13 -1.12185e-11) (1.57132e-10 5.00146e-12 -4.87122e-11) (1.99495e-10 1.8055e-11 -7.11122e-11) (9.36422e-11 2.6488e-11 -2.22375e-11) (2.6763e-11 2.23094e-11 1.04608e-11) (1.95441e-11 3.19143e-11 3.02416e-11) (2.935e-11 2.61071e-11 1.68103e-11) (1.36193e-10 3.50163e-11 -5.20309e-11) (9.97671e-10 -3.58433e-11 -8.49806e-10) (1.74572e-09 -8.79404e-11 -1.55096e-09) (1.43966e-09 3.29205e-11 -1.21824e-09) (5.51162e-10 1.00008e-10 -4.40626e-10) (6.46527e-11 3.9872e-11 -4.75542e-11) (-6.01632e-13 1.15204e-11 2.54937e-12) (-1.76576e-11 2.16109e-11 2.98394e-11) (-1.68677e-11 2.30776e-11 7.10982e-11) (2.03991e-11 3.02359e-11 1.48475e-10) (1.38533e-10 6.75664e-11 3.19603e-10) (3.91519e-10 1.35976e-10 5.54336e-10) (6.68599e-10 1.36649e-10 5.74101e-10) (7.07672e-10 4.17263e-11 2.46717e-10) (5.26821e-10 -2.40242e-11 -6.0786e-11) (2.15395e-10 -4.15379e-11 -1.19553e-10) (3.71443e-11 -3.09877e-11 -5.65724e-11) (-4.99953e-12 -3.18855e-11 -4.40275e-11) (-3.09435e-11 -3.38798e-11 -6.46848e-11) (-5.62014e-11 -1.7374e-11 -9.6302e-11) (-6.57414e-11 3.89043e-12 -1.03949e-10) (-3.70668e-11 1.91541e-12 -3.54525e-11) (-1.7291e-10 -7.33996e-12 5.29273e-11) (-6.53643e-09 1.66118e-10 1.53688e-09) (-5.93478e-08 1.69635e-09 2.98754e-09) (-6.83335e-08 -2.1037e-09 2.70347e-09) (-8.6793e-09 -1.6419e-09 3.08389e-09) (-4.94441e-10 -2.35289e-10 8.04169e-10) (-1.76977e-11 -7.89476e-12 4.77443e-11) (5.33033e-13 -5.9997e-13 -4.9361e-13) (1.77032e-11 -8.8294e-12 -1.31398e-11) (3.58519e-11 -9.35919e-12 -1.62255e-11) (6.10407e-11 -4.52612e-12 -1.98608e-11) (1.23848e-10 -2.20724e-12 -4.28494e-11) (1.718e-10 -6.0579e-12 -7.19209e-11) (9.85226e-11 -1.16545e-12 -4.29411e-11) (2.26974e-11 4.23467e-12 -2.84081e-12) (1.61413e-11 1.04745e-11 1.42484e-11) (3.39624e-11 2.47567e-11 3.7328e-11) (6.69441e-11 2.59535e-11 1.55742e-11) (2.68919e-10 3.20504e-11 -1.38043e-10) (9.82309e-10 -5.03127e-11 -9.32247e-10) (1.27804e-09 -5.45542e-11 -1.25195e-09) (8.94513e-10 3.78798e-11 -8.01872e-10) (3.34688e-10 7.51272e-11 -2.41966e-10) (5.28806e-11 3.45299e-11 -1.5839e-11) (8.03255e-12 2.4639e-11 2.32458e-11) (-4.21312e-12 4.81178e-11 1.16061e-10) (3.24763e-11 6.04212e-11 2.64106e-10) (1.48496e-10 7.01538e-11 4.02027e-10) (2.9067e-10 8.27661e-11 4.50942e-10) (4.15089e-10 8.1231e-11 3.87794e-10) (4.95459e-10 4.8784e-11 2.21832e-10) (5.04824e-10 4.54886e-12 5.96542e-12) (3.8598e-10 -1.85883e-11 -1.40881e-10) (1.48136e-10 -2.18729e-11 -1.04287e-10) (2.33187e-11 -1.51571e-11 -3.46038e-11) (-3.02989e-12 -1.59812e-11 -2.41825e-11) (-2.67411e-11 -2.1521e-11 -4.29326e-11) (-5.91207e-11 -1.36557e-11 -6.95019e-11) (-7.57915e-11 1.06232e-13 -6.76581e-11) (-9.77112e-11 3.06454e-12 -2.12888e-11) (-9.57922e-10 4.65156e-11 2.70099e-10) (-1.23247e-08 8.99447e-10 1.84158e-09) (-4.87867e-08 1.95214e-09 1.96177e-10) (-2.9708e-08 -1.96238e-09 9.94239e-10) (-3.15163e-09 -9.74593e-10 1.50545e-09) (-2.74577e-10 -1.4684e-10 4.36067e-10) (-5.31303e-12 -2.33215e-12 1.13132e-11) (6.83528e-12 -1.65121e-12 -4.99694e-12) (3.96646e-11 -8.92461e-12 -2.55648e-11) (5.55867e-11 -6.29653e-12 -2.56456e-11) (8.42369e-11 -1.96325e-12 -3.05675e-11) (1.262e-10 -3.67027e-12 -4.74078e-11) (1.09595e-10 -9.15945e-12 -4.66058e-11) (4.15209e-11 -4.61524e-12 -1.4454e-11) (1.30918e-11 3.10787e-13 3.02613e-12) (2.40365e-11 7.18733e-12 2.25782e-11) (5.40772e-11 1.84328e-11 3.6074e-11) (1.26657e-10 2.48549e-11 -3.20663e-12) (4.08041e-10 1.66556e-11 -2.58229e-10) (7.225e-10 -2.87151e-11 -7.15395e-10) (7.23827e-10 -1.54991e-11 -7.18323e-10) (4.81759e-10 3.52512e-11 -3.83022e-10) (2.44461e-10 5.72833e-11 -1.05536e-10) (1.22281e-10 5.34221e-11 1.55953e-11) (1.02683e-10 6.21954e-11 1.0091e-10) (1.45688e-10 8.04911e-11 2.59982e-10) (2.28213e-10 8.00513e-11 4.2158e-10) (2.76243e-10 6.1777e-11 4.07171e-10) (2.57192e-10 4.00074e-11 2.48054e-10) (2.50663e-10 2.5613e-11 1.16522e-10) (2.9154e-10 1.30553e-11 1.91422e-11) (3.17783e-10 -2.92014e-12 -8.28209e-11) (2.4106e-10 -1.03962e-11 -1.24688e-10) (9.37971e-11 -1.09344e-11 -6.71001e-11) (1.76468e-11 -8.62251e-12 -2.15115e-11) (-7.18146e-13 -9.43029e-12 -1.55259e-11) (-1.75864e-11 -1.31378e-11 -2.70265e-11) (-3.80475e-11 -7.89802e-12 -3.58591e-11) (-5.32625e-11 3.92108e-13 -2.51306e-11) (-1.88595e-10 1.13906e-11 2.08141e-11) (-1.88009e-09 1.53655e-10 4.63081e-10) (-1.24591e-08 1.10262e-09 9.48293e-10) (-2.57192e-08 9.79101e-10 -1.11232e-09) (-9.25898e-09 -1.03883e-09 4.63225e-10) (-1.15129e-09 -4.75117e-10 7.23008e-10) (-1.3622e-10 -7.3248e-11 2.12648e-10) (-3.25864e-13 -5.52938e-13 2.45809e-12) (1.55775e-11 -1.70825e-12 -8.44507e-12) (4.68114e-11 -5.18736e-12 -2.42048e-11) (6.12135e-11 -2.44283e-12 -2.38132e-11) (8.40095e-11 -5.33109e-13 -2.73549e-11) (9.77531e-11 -4.45675e-12 -3.2763e-11) (6.77507e-11 -8.24227e-12 -2.24079e-11) (2.83899e-11 -4.78587e-12 -3.15703e-12) (1.96837e-11 -1.25423e-12 9.15402e-12) (3.68179e-11 4.87508e-12 2.75781e-11) (7.89907e-11 1.44456e-11 2.80355e-11) (1.94796e-10 2.31112e-11 -3.8563e-11) (4.49866e-10 5.49511e-12 -3.17087e-10) (7.76564e-10 -2.19316e-11 -5.65289e-10) (8.1877e-10 -6.17662e-12 -5.40264e-10) (7.86887e-10 4.16252e-11 -3.38237e-10) (7.69987e-10 9.82213e-11 -1.1733e-10) (7.59996e-10 1.41933e-10 9.27569e-11) (7.54437e-10 1.54294e-10 2.87278e-10) (7.81561e-10 1.37792e-10 4.49502e-10) (7.82024e-10 1.01707e-10 4.87035e-10) (7.1561e-10 6.55601e-11 3.57905e-10) (6.80448e-10 4.41921e-11 1.86452e-10) (7.64285e-10 3.6415e-11 4.96035e-11) (8.9597e-10 2.55088e-11 -8.13323e-11) (9.4714e-10 6.26684e-12 -2.07131e-10) (8.30715e-10 -5.93468e-12 -2.46172e-10) (5.6763e-10 -1.71654e-11 -1.73247e-10) (3.19603e-10 -3.11599e-11 -1.0253e-10) (1.64543e-10 -3.32449e-11 -6.97872e-11) (8.31434e-11 -2.16572e-11 -4.95528e-11) (4.32223e-11 -7.46075e-12 -2.82963e-11) (1.4645e-11 -2.72996e-13 -6.00192e-12) (-1.74274e-12 7.11181e-13 1.6958e-12) (-4.36213e-10 7.69354e-11 1.10571e-10) (-4.30038e-09 5.57446e-10 -4.5295e-11) (-6.64917e-09 2.95886e-10 -7.03163e-10) (-1.83086e-09 -3.13196e-10 1.84775e-10) (-3.85539e-10 -1.89225e-10 3.19569e-10) (-5.17572e-11 -3.16569e-11 9.65667e-11) (1.30686e-12 -4.1169e-13 1.52307e-12) (3.18524e-11 -1.91212e-12 -1.05204e-11) (7.77718e-11 -4.25569e-12 -2.63441e-11) (1.10511e-10 -2.31877e-12 -2.9407e-11) (1.4609e-10 -2.86471e-12 -3.36705e-11) (1.58066e-10 -9.72763e-12 -3.46839e-11) (1.24727e-10 -1.48652e-11 -2.02098e-11) (8.62446e-11 -1.23718e-11 3.18725e-12) (8.25178e-11 -7.01042e-12 2.65538e-11) (1.177e-10 1.96586e-12 4.59672e-11) (2.13205e-10 1.3426e-11 3.115e-11) (3.87638e-10 1.95505e-11 -8.22856e-11) (6.02065e-10 -3.87729e-12 -3.37618e-10) (1.94925e-09 -3.31707e-11 -7.30422e-10) (2.53813e-09 -8.55925e-12 -8.13662e-10) (3.4294e-09 7.62023e-11 -6.67679e-10) (4.55144e-09 2.26067e-10 -3.12849e-10) (5.45244e-09 3.77171e-10 2.00626e-10) (5.96607e-09 4.42294e-10 7.11681e-10) (6.20298e-09 4.02647e-10 1.03828e-09) (6.26581e-09 3.119e-10 1.00804e-09) (6.30538e-09 2.24548e-10 6.39657e-10) (6.58569e-09 1.71597e-10 1.56108e-10) (7.19805e-09 1.57255e-10 -2.52465e-10) (7.93683e-09 1.38645e-10 -6.25015e-10) (8.57762e-09 8.96073e-11 -1.04403e-09) (8.92128e-09 4.1867e-11 -1.32669e-09) (8.55305e-09 -2.8623e-11 -1.30706e-09) (7.37718e-09 -1.67205e-10 -1.19088e-09) (5.74885e-09 -2.67948e-10 -1.06269e-09) (4.20729e-09 -2.25332e-10 -8.52395e-10) (3.07133e-09 -1.10758e-10 -5.61734e-10) (1.91461e-09 -1.08394e-11 -2.1141e-10) (5.20561e-10 3.25836e-11 1.96864e-12) (4.04708e-13 6.29402e-12 4.43726e-13) (-5.11116e-10 1.25288e-10 -1.23909e-10) (-6.3851e-10 5.34709e-11 -1.77178e-10) (-1.63987e-10 -4.28039e-11 3.38462e-11) (-9.94914e-11 -5.62914e-11 1.16604e-10) (-1.4582e-11 -1.19715e-11 4.29664e-11) (5.82566e-12 -5.72614e-13 2.87424e-12) (5.88816e-11 -1.11391e-12 -9.48994e-12) (1.42151e-10 -1.94596e-12 -2.62634e-11) (2.30716e-10 -5.91026e-13 -3.35566e-11) (3.19745e-10 -4.05092e-12 -3.83242e-11) (3.58677e-10 -1.56549e-11 -3.31807e-11) (3.28955e-10 -2.54881e-11 -7.72763e-12) (2.91857e-10 -2.56481e-11 3.37814e-11) (3.1253e-10 -1.80345e-11 8.0178e-11) (4.38194e-10 -4.60525e-12 1.13941e-10) (7.27248e-10 8.6686e-12 7.66884e-11) (1.12724e-09 1.2901e-11 -1.22158e-10) (1.51197e-09 -1.43486e-11 -4.54291e-10) (3.04698e-09 -2.74042e-12 -5.56361e-10) (4.1871e-09 1.32478e-11 -5.99552e-10) (6.16638e-09 6.64998e-11 -4.44473e-10) (8.77418e-09 1.67996e-10 -1.20128e-10) (1.12717e-08 3.06626e-10 3.0339e-10) (1.32404e-08 3.90389e-10 6.63344e-10) (1.45614e-08 3.66548e-10 7.47081e-10) (1.51673e-08 2.67633e-10 3.88425e-10) (1.52029e-08 1.58297e-10 -2.35737e-10) (1.52605e-08 9.66423e-11 -7.45672e-10) (1.60238e-08 9.69716e-11 -1.03088e-09) (1.77235e-08 9.50778e-11 -1.46638e-09) (2.01736e-08 3.65636e-11 -2.38284e-09) (2.27227e-08 -4.94594e-11 -3.43088e-09) (2.33695e-08 -1.47954e-10 -3.95472e-09) (2.05061e-08 -3.09863e-10 -3.78888e-09) (1.49752e-08 -3.98027e-10 -2.99289e-09) (9.38992e-09 -3.13777e-10 -1.90641e-09) (4.98273e-09 -1.44307e-10 -8.98096e-10) (1.61043e-09 -1.80509e-11 -2.20169e-10) (1.23095e-10 9.94732e-12 -1.92643e-11) (-1.23507e-10 2.80412e-11 -2.82217e-11) (-2.07647e-10 5.15836e-11 -1.09022e-10) (-2.31049e-11 7.86926e-12 -3.05296e-11) (-7.34167e-13 -5.52464e-13 4.94382e-13) (-1.09485e-11 -8.15599e-12 2.62097e-11) (-5.77249e-12 -4.04145e-12 2.44637e-11) (3.85751e-12 -2.51066e-14 3.76162e-12) (2.95691e-11 8.81332e-13 1.84901e-12) (8.96311e-11 2.33363e-12 -2.28256e-12) (1.77207e-10 4.20171e-12 -3.63195e-12) (2.69587e-10 2.7132e-12 -1.21051e-12) (3.17544e-10 -3.69537e-12 9.02384e-12) (3.12594e-10 -9.75524e-12 2.96022e-11) (3.06828e-10 -1.0883e-11 6.03474e-11) (3.72003e-10 -6.73347e-12 1.00507e-10) (6.04522e-10 1.93648e-12 1.41455e-10) (1.10484e-09 1.09592e-11 1.1857e-10) (1.76315e-09 1.5617e-11 -6.46609e-11) (2.36822e-09 3.03806e-12 -3.55614e-10) (4.0554e-10 1.35872e-12 -7.46749e-12) (4.96929e-10 1.89887e-13 -2.05001e-12) (6.45398e-10 -8.74119e-13 1.07708e-11) (8.18541e-10 -6.74442e-13 1.70663e-11) (9.94439e-10 4.02408e-12 1.29508e-11) (1.16301e-09 6.40593e-12 -4.96928e-12) (1.29625e-09 3.96106e-12 -3.76402e-11) (1.32527e-09 -1.80063e-12 -7.84402e-11) (1.24661e-09 -6.54615e-12 -9.99378e-11) (1.1845e-09 -7.66773e-12 -9.19619e-11) (1.27169e-09 -6.31954e-12 -8.35186e-11) (1.541e-09 -7.13092e-12 -1.43741e-10) (1.9355e-09 -1.27053e-11 -3.29026e-10) (2.30856e-09 -1.8772e-11 -5.59875e-10) (2.32893e-09 -1.85003e-11 -6.46285e-10) (1.86294e-09 -2.0032e-11 -5.43487e-10) (1.12935e-09 -2.02292e-11 -3.39221e-10) (4.66267e-10 -1.4062e-11 -1.45981e-10) (9.36069e-11 -4.06917e-12 -3.42117e-11) (-1.14611e-11 -6.78125e-13 -4.47354e-12) (-1.18217e-10 9.723e-13 -1.53505e-11) (-1.61149e-10 4.9577e-12 -3.15728e-11) (-2.40539e-11 3.17147e-12 -2.04438e-11) (1.61174e-11 3.36901e-12 -2.61983e-11) (3.19675e-11 1.05655e-12 -1.98455e-11) (2.79365e-12 -2.40469e-13 4.16057e-13) (-7.55689e-13 -3.76818e-13 4.26854e-12) (-3.4443e-13 -1.69437e-14 2.087e-12) (5.17095e-13 3.49318e-14 6.48965e-13) (2.45805e-12 1.11507e-13 8.90921e-13) (7.41438e-12 2.87805e-13 1.60285e-12) (1.63072e-11 4.75518e-13 2.90884e-12) (2.8404e-11 5.038e-13 4.6905e-12) (3.98227e-11 3.00374e-13 6.36148e-12) (4.916e-11 7.03674e-14 8.73377e-12) (6.59967e-11 2.37424e-13 1.38361e-11) (1.06974e-10 9.61639e-13 2.22087e-11) (1.81753e-10 1.94236e-12 2.58905e-11) (2.7253e-10 2.73747e-12 1.50302e-11) (3.46702e-10 2.15255e-12 -5.00989e-12) (-7.14684e-10 3.45403e-10 -4.30191e-10) (-3.25413e-10 1.78339e-10 -6.3964e-10) (-9.2416e-11 -1.76799e-11 -4.84886e-10) (-2.05011e-11 -7.88703e-11 -1.91722e-10) (-7.20464e-12 -4.36078e-11 -3.40542e-11) (-2.99163e-12 -1.74538e-11 4.25545e-12) (2.18006e-12 -1.26643e-11 2.99258e-11) (3.804e-11 6.81666e-12 1.01146e-10) (1.56473e-10 7.6344e-11 2.11757e-10) (3.28954e-10 1.81119e-10 2.74718e-10) (3.79704e-10 2.17306e-10 1.97612e-10) (2.27882e-10 1.18705e-10 5.58596e-11) (6.78186e-11 1.33146e-11 -6.92915e-12) (3.50441e-11 -3.45271e-11 -2.48225e-11) (4.47452e-11 -1.6953e-10 -7.98869e-11) (2.79799e-11 -2.28912e-10 -9.38739e-11) (-3.42607e-12 -7.87923e-11 -2.54599e-11) (-1.11919e-11 -5.9062e-12 5.14038e-12) (-1.34283e-10 7.33218e-11 1.1835e-10) (-4.28578e-10 3.64511e-10 4.32748e-10) (-4.40696e-10 4.90811e-10 5.14383e-10) (-1.36413e-10 2.54062e-10 2.51328e-10) (7.14288e-12 5.64886e-11 5.12477e-11) (1.92222e-11 9.34312e-12 2.79537e-12) (3.84566e-11 -3.2894e-12 -2.723e-11) (4.52839e-11 -1.57142e-11 -7.88544e-11) (1.77445e-11 -1.05991e-11 -9.53761e-11) (-1.54953e-11 -1.65093e-12 -5.6126e-11) (-4.4761e-11 -3.30519e-12 -2.54916e-11) (-1.36636e-10 -2.54228e-11 3.73582e-12) (-2.08113e-10 -6.79969e-11 3.348e-11) (-1.03933e-10 -6.52044e-11 -1.03043e-12) (-1.11117e-11 -4.37771e-11 -2.89244e-11) (8.6064e-11 -8.76735e-11 -9.74054e-11) (1.85604e-10 -9.83095e-11 -1.00749e-10) (7.51059e-11 -4.26611e-11 1.25372e-12) (-5.90157e-12 -3.11997e-11 6.0199e-11) (-3.79381e-10 -6.04504e-11 3.71655e-10) (-1.13752e-09 1.30148e-10 5.45748e-10) (-1.17848e-09 3.66318e-10 6.90532e-11) (-1.32801e-09 -2.37102e-10 -1.57993e-09) (-4.36592e-10 -3.17923e-10 -1.0103e-09) (-4.9465e-11 -1.59468e-10 -3.16659e-10) (1.11305e-11 -2.24893e-11 -3.77234e-11) (6.69969e-12 2.45999e-12 -1.93602e-13) (3.23549e-11 4.51654e-11 4.56907e-11) (6.69331e-11 1.26392e-10 1.99974e-10) (1.02353e-10 1.50195e-10 3.56928e-10) (1.32189e-10 1.15084e-10 3.34114e-10) (1.23738e-10 7.54908e-11 1.7858e-10) (8.00804e-11 4.09309e-11 5.62051e-11) (2.51463e-11 6.38294e-12 5.51987e-12) (6.53948e-12 -9.46361e-12 -2.98942e-12) (5.10818e-12 -1.18585e-10 -2.27292e-11) (3.19547e-11 -2.65599e-10 -3.01359e-11) (5.56131e-11 -1.32934e-10 -1.75827e-11) (1.29254e-11 -6.41609e-12 -4.48505e-12) (3.35829e-12 2.14472e-11 3.94247e-13) (-4.53664e-11 1.2773e-10 5.27422e-11) (-1.3577e-10 2.1491e-10 1.6577e-10) (-1.64229e-10 1.88531e-10 1.94392e-10) (-1.01914e-10 1.0253e-10 1.04712e-10) (-2.43208e-11 2.85364e-11 2.1464e-11) (-2.3006e-13 1.71124e-12 9.73502e-14) (1.47792e-11 2.30494e-13 -1.15893e-11) (1.05499e-10 -9.57855e-12 -7.62929e-11) (1.72718e-10 3.04229e-12 -1.14819e-10) (5.95524e-11 1.40843e-11 -3.37944e-11) (-3.28093e-13 1.09775e-12 5.68401e-13) (-9.32512e-11 -7.92732e-12 4.11598e-11) (-3.11581e-10 -1.2561e-10 3.91763e-11) (-3.11346e-10 -2.78815e-10 -1.37954e-10) (-1.154e-10 -3.64388e-10 -3.12719e-10) (1.46394e-10 -2.74333e-10 -2.5756e-10) (2.56882e-10 -1.05166e-10 -5.96569e-11) (2.38714e-10 1.85728e-11 1.29712e-10) (3.94529e-11 8.71278e-11 2.55962e-10) (-4.66324e-10 1.56297e-10 3.78955e-10) (-1.60829e-09 1.88166e-10 2.77405e-11) (-2.09693e-09 2.79392e-11 -1.07505e-09) (-1.62507e-09 -1.0182e-09 -8.90782e-10) (-1.2135e-09 -1.02184e-09 -1.60725e-10) (-3.56231e-10 -4.6395e-10 1.53098e-10) (7.65417e-12 -6.67796e-11 4.28087e-11) (1.2185e-10 1.20151e-11 -4.44927e-12) (5.04487e-10 2.89517e-10 -1.68921e-10) (6.43777e-10 5.33958e-10 -1.8825e-10) (4.20954e-10 3.96548e-10 3.24761e-11) (2.20604e-10 2.06417e-10 1.54902e-10) (9.13354e-11 9.25985e-11 1.36646e-10) (9.70725e-12 2.3908e-11 3.88484e-11) (-4.41955e-12 1.49551e-12 3.9993e-12) (-2.74737e-11 -2.81572e-11 1.12845e-11) (-4.35884e-11 -2.27663e-10 1.19574e-10) (1.42336e-10 -4.51868e-10 3.09829e-10) (2.25355e-10 -1.91634e-10 1.4007e-10) (1.34402e-10 1.87542e-11 -2.91282e-11) (1.41718e-10 2.09784e-10 -1.63279e-10) (3.56744e-11 3.49503e-10 -1.44668e-10) (-7.90739e-11 3.32121e-10 8.82844e-12) (-1.72331e-10 2.54447e-10 1.34998e-10) (-2.15517e-10 1.22552e-10 1.70509e-10) (-1.40654e-10 -1.39724e-13 9.90587e-11) (-3.08468e-11 -2.38318e-11 2.22187e-11) (5.83658e-12 -1.23269e-11 1.2716e-12) (9.2209e-11 -1.35849e-11 -1.85266e-11) (2.96109e-10 7.28893e-11 -6.50581e-11) (2.59379e-10 1.39917e-10 -6.04963e-11) (2.10091e-11 2.85211e-11 -1.10379e-11) (-1.14405e-10 -1.64618e-11 -3.27791e-11) (-1.49175e-09 -7.33524e-10 -4.2416e-10) (-2.90456e-09 -2.15357e-09 -1.1804e-09) (-1.65591e-09 -2.00101e-09 -1.0389e-09) (-1.99833e-10 -6.0893e-10 -2.39929e-10) (4.36947e-11 -3.78022e-11 1.10049e-11) (3.85076e-10 2.48558e-10 2.63016e-10) (5.77965e-10 7.99571e-10 4.89304e-10) (6.5962e-11 3.5255e-10 7.44877e-11) (-1.75458e-10 1.05643e-10 -1.56836e-10) (-1.00028e-09 -3.06011e-10 -8.35572e-10) (-1.48993e-09 -9.39749e-10 -2.41764e-11) (-2.43074e-09 -2.09433e-09 1.15004e-09) (-1.07468e-09 -1.85944e-09 1.97305e-09) (1.38472e-10 -8.03329e-10 1.48181e-09) (3.06553e-10 -1.01306e-11 4.57089e-10) (4.53955e-10 3.11059e-10 8.65542e-11) (1.11332e-09 8.57196e-10 -3.69892e-10) (1.59105e-09 1.0099e-09 -7.49852e-10) (1.15427e-09 6.01882e-10 -5.72788e-10) (3.73843e-10 1.95286e-10 -2.19879e-10) (3.06294e-11 2.488e-11 -3.18606e-11) (-7.07285e-13 3.81587e-14 2.34184e-13) (-3.4745e-11 -6.34577e-11 1.06709e-10) (-5.18883e-11 -5.39235e-10 7.78193e-10) (-3.0845e-11 -7.62391e-10 8.03894e-10) (-3.67775e-11 -1.67197e-10 3.82925e-11) (-6.02735e-11 -3.61828e-11 -3.01758e-10) (-5.19757e-11 3.28393e-10 -9.32474e-10) (2.41675e-11 4.44136e-10 -5.10726e-10) (4.52079e-11 2.84186e-10 -6.22852e-11) (6.4152e-11 2.24499e-10 1.28566e-10) (5.3245e-11 1.30133e-10 2.10943e-10) (2.96083e-12 2.28588e-11 1.26436e-10) (-1.71788e-11 -8.17014e-12 3.81878e-11) (-9.44377e-12 -5.23528e-12 5.06577e-12) (2.41356e-14 -2.55442e-14 -4.0419e-13) (4.52905e-11 2.36295e-11 -2.19388e-11) (2.02386e-10 1.22373e-10 -7.14035e-11) (1.1516e-10 9.04166e-11 -5.84061e-11) (-5.60449e-12 4.17372e-12 -2.09012e-11) (-3.83358e-10 -2.89634e-10 -2.54293e-10) (-1.52712e-09 -1.83558e-09 -9.6623e-10) (-1.92628e-09 -3.19987e-09 -1.37374e-09) (-1.29994e-09 -1.99251e-09 -8.41128e-10) (-4.37296e-10 -3.00465e-10 -1.52339e-10) (-1.42569e-10 1.20158e-10 2.73903e-11) (-5.1112e-11 8.98291e-10 2.48445e-10) (2.16985e-10 1.073e-09 1.45119e-10) (2.16329e-11 1.84706e-10 -5.16835e-11) (-1.48356e-10 -4.08843e-11 -8.72835e-11) (-2.43247e-10 -2.92892e-10 1.96156e-10) (-9.63743e-11 -1.37273e-09 1.18669e-09) (9.64686e-10 -2.38589e-09 3.06913e-09) (1.20482e-09 -1.27042e-09 3.07281e-09) (4.52459e-10 3.21615e-11 1.27105e-09) (1.62294e-10 4.20301e-10 5.21304e-10) (2.70578e-10 8.3513e-10 4.0494e-10) (7.15829e-10 1.18063e-09 3.06856e-10) (1.34349e-09 1.19809e-09 2.0102e-11) (1.75299e-09 9.52348e-10 -4.38949e-10) (1.47469e-09 4.93837e-10 -6.7574e-10) (6.68538e-10 2.73908e-11 -3.63813e-10) (1.20291e-10 -1.18883e-10 -3.21529e-11) (-2.68508e-10 -6.45352e-10 2.03088e-10) (-2.87497e-09 -2.33859e-09 3.27242e-10) (-5.38641e-09 -2.62018e-09 -1.66629e-09) (-3.06374e-09 -1.02914e-09 -2.65134e-09) (-3.90877e-10 -3.44302e-11 -8.49414e-10) (5.57295e-11 5.92225e-11 -5.95505e-11) (4.21157e-10 3.29221e-10 1.72642e-10) (6.42476e-10 5.32088e-10 3.92492e-10) (3.28421e-10 3.16275e-10 1.89168e-10) (4.23762e-11 6.49018e-11 1.91987e-11) (-5.32724e-12 5.17603e-12 -2.72595e-12) (-4.35812e-11 -9.74172e-12 -2.17167e-11) (-2.04432e-11 -1.6254e-11 -2.15991e-11) (1.75719e-11 -4.42825e-12 -2.1077e-11) (2.08251e-10 6.03548e-11 -8.54469e-11) (4.04406e-10 1.58059e-10 -1.17499e-10) (2.3329e-10 4.41137e-11 -7.02486e-11) (9.92472e-11 -9.44612e-11 -5.37327e-11) (-7.86504e-12 -6.79501e-10 -2.21394e-10) (-9.12736e-10 -1.81375e-09 -7.63922e-10) (-2.35267e-09 -2.00417e-09 -1.38532e-09) (-2.82351e-09 -8.0217e-10 -1.22395e-09) (-2.25773e-09 3.78998e-10 -5.79923e-10) (-1.3072e-09 8.50455e-10 -1.31865e-10) (-4.92414e-10 6.40106e-10 3.60386e-12) (-1.44821e-10 2.03847e-10 9.44622e-12) (-9.19405e-11 9.85421e-12 1.87334e-11) (1.8667e-10 -5.20555e-10 5.36368e-10) (9.76429e-10 -1.38413e-09 1.73903e-09) (1.35311e-09 -1.22372e-09 2.24294e-09) (6.84318e-10 -3.26618e-10 1.08847e-09) (1.19056e-10 2.11311e-11 2.08399e-10) (1.16548e-11 4.90202e-11 5.14674e-11) (3.24406e-12 8.74811e-11 6.39075e-11) (7.20569e-11 1.72812e-10 1.46408e-10) (4.04022e-10 4.80555e-10 3.37338e-10) (1.18217e-09 1.08362e-09 3.66019e-10) (1.95725e-09 1.39061e-09 -1.03781e-10) (1.45052e-09 6.58551e-10 -4.53441e-10) (1.43553e-10 -1.53359e-11 -1.12954e-10) (-8.70473e-10 -5.94906e-10 -2.33166e-10) (-1.0188e-08 -4.19115e-09 -1.68599e-09) (-1.54196e-08 -5.59426e-09 -5.01412e-09) (-6.25883e-09 -2.27856e-09 -3.58895e-09) (-5.73523e-10 -1.3103e-10 -3.84938e-10) (2.41779e-12 2.43569e-11 2.00427e-11) (3.35883e-10 2.96721e-10 3.30031e-10) (6.66951e-10 4.08317e-10 3.29325e-10) (4.76842e-10 2.65661e-10 3.9651e-11) (1.46292e-10 9.22247e-11 -7.7871e-11) (1.67222e-11 1.53433e-11 -7.82904e-11) (-2.63018e-11 -4.75144e-11 -1.32657e-10) (2.09911e-11 -1.30135e-10 -1.77043e-10) (2.03811e-10 -1.48471e-10 -2.07853e-10) (4.52922e-10 -4.73839e-11 -2.09067e-10) (4.99868e-10 6.53728e-11 -1.20066e-10) (2.29018e-10 2.71997e-12 -2.13756e-11) (3.35794e-11 -4.82146e-11 -6.58924e-12) (-1.89244e-10 -3.3938e-10 -1.34466e-10) (-1.26248e-09 -1.07971e-09 -8.38206e-10) (-2.18345e-09 -1.12401e-09 -1.37812e-09) (-1.89049e-09 -3.2374e-10 -7.91592e-10) (-1.56609e-09 3.10676e-10 -1.24344e-10) (-1.5038e-09 7.31273e-10 3.0199e-10) (-9.4375e-10 6.00142e-10 3.46746e-10) (-2.37605e-10 1.24454e-10 1.42636e-10) (-3.41166e-11 -4.16424e-11 8.57188e-11) (2.64784e-10 -4.76152e-10 1.24355e-09) (5.7725e-10 -4.89139e-10 1.35878e-09) (3.44487e-10 -1.9749e-10 6.32276e-10) (3.64935e-11 -8.21353e-12 6.62236e-11) (-2.08074e-12 6.39777e-12 1.18476e-12) (-3.0044e-11 4.95858e-11 -7.65589e-12) (-3.79931e-11 7.24837e-11 1.366e-11) (-1.09064e-11 6.98398e-11 3.86391e-11) (5.98451e-11 9.78381e-11 4.18291e-11) (4.76438e-10 3.5109e-10 -1.41554e-11) (1.56331e-09 9.22848e-10 -3.4405e-10) (1.56476e-09 8.5402e-10 -5.03171e-10) (1.53677e-10 1.07806e-10 -1.01638e-10) (-4.85617e-10 -7.2517e-11 -1.42478e-10) (-5.8633e-09 -1.71091e-09 -1.51226e-09) (-9.20287e-09 -3.47252e-09 -4.02028e-09) (-4.8505e-09 -2.14105e-09 -2.68204e-09) (-7.773e-10 -3.68273e-10 -2.45875e-10) (-2.38635e-11 -1.48377e-11 4.15238e-11) (1.0927e-10 6.40704e-11 1.70352e-10) (3.45227e-10 3.10335e-10 2.34589e-10) (3.71129e-10 4.24652e-10 6.97605e-11) (1.47856e-10 1.9752e-10 -8.88013e-11) (3.85949e-11 2.29451e-11 -1.48886e-10) (7.57079e-11 -3.11011e-10 -4.33413e-10) (4.34928e-10 -1.0471e-09 -7.37701e-10) (6.34719e-10 -8.25182e-10 -4.70863e-10) (2.63782e-10 -1.20554e-10 -1.07551e-10) (6.05584e-11 3.14684e-11 -1.33819e-11) (1.89536e-12 2.71724e-11 -4.23077e-12) (-4.93332e-11 1.02278e-11 -3.09344e-11) (-3.41469e-10 -1.84431e-10 -2.87548e-10) (-7.02129e-10 -6.1615e-10 -7.2137e-10) (-5.51625e-10 -4.74921e-10 -5.34136e-10) (-1.8542e-10 -6.73525e-11 -7.9548e-11) (-1.5389e-10 7.13607e-11 8.18901e-11) (-3.36359e-10 3.15172e-10 4.42495e-10) (-3.54529e-10 2.61436e-10 6.27483e-10) (-2.31694e-10 1.57268e-12 6.22168e-10) (-6.25874e-11 -2.52812e-10 8.07152e-10) (1.18235e-10 -1.5884e-10 4.9329e-10) (6.21875e-11 -4.97958e-11 1.49874e-10) (2.70962e-13 -7.67147e-13 8.98342e-12) (-1.18285e-11 1.06918e-11 -1.35308e-12) (-3.70105e-11 5.56693e-11 -1.9237e-11) (-2.14833e-11 7.44866e-11 -1.5107e-11) (8.10567e-12 5.04591e-11 -4.13823e-12) (4.41164e-11 3.97356e-11 -1.74929e-11) (2.20281e-10 8.02176e-11 -1.50535e-10) (6.40548e-10 2.33695e-10 -5.09776e-10) (9.62007e-10 5.02058e-10 -6.52557e-10) (6.88287e-10 5.13528e-10 -3.04435e-10) (8.94577e-11 1.50672e-10 -1.63873e-11) (-1.76357e-10 5.43649e-11 -1.28791e-12) (-2.27083e-09 -4.94281e-10 -5.58663e-10) (-4.61642e-09 -1.99804e-09 -2.09969e-09) (-2.47068e-09 -1.6753e-09 -1.49172e-09) (-2.30231e-10 -3.33552e-10 -1.51266e-10) (1.74738e-11 -2.95483e-11 1.55421e-11) (5.92805e-11 2.1012e-11 5.42764e-11) (7.45423e-11 1.58696e-10 8.95169e-11) (6.32983e-11 3.37553e-10 6.08074e-11) (2.99632e-11 1.97952e-10 -4.59817e-11) (1.7074e-11 9.37107e-12 -7.58746e-11) (1.0747e-10 -4.76092e-10 -3.59572e-10) (1.45319e-10 -1.42601e-09 -5.46355e-10) (-4.99093e-11 -6.10499e-10 -2.10516e-10) (-2.72794e-11 -1.73683e-11 -2.10616e-11) (-6.18248e-11 6.43058e-11 -2.83605e-11) (-3.96894e-11 4.74075e-11 -3.0683e-11) (-9.89091e-12 -6.90546e-12 -3.0141e-11) (1.89614e-11 -1.35562e-10 -1.34048e-10) (1.05024e-10 -2.55722e-10 -2.14741e-10) (1.15996e-10 -1.09342e-10 -7.80874e-11) (1.18082e-10 -2.84098e-12 5.38312e-11) (2.30789e-10 1.9334e-10 4.81521e-10) (-7.92991e-12 4.07505e-10 1.03214e-09) (-4.00042e-10 2.84525e-10 1.16251e-09) (-4.19785e-10 -1.40107e-11 1.03494e-09) (-9.63927e-11 -1.78331e-10 7.84813e-10) (-5.01832e-13 -1.6242e-12 3.29413e-12) (-6.81572e-13 8.90354e-13 1.63301e-13) (-3.03192e-12 7.37656e-12 -2.53224e-12) (1.57543e-12 2.94938e-11 -1.29776e-11) (2.70365e-11 8.68646e-11 -3.29852e-11) (7.42497e-11 1.42586e-10 -4.8194e-11) (1.53907e-10 1.5856e-10 -9.81324e-11) (4.17369e-10 1.85001e-10 -3.8271e-10) (1.01327e-09 1.77454e-10 -1.25128e-09) (1.19733e-09 1.80977e-10 -1.68943e-09) (5.81897e-10 2.00731e-10 -6.97161e-10) (1.17682e-10 1.09807e-10 -4.5625e-11) (-1.67569e-11 1.31806e-10 9.93925e-11) (-4.77168e-10 1.98432e-10 2.47935e-10) (-1.61342e-09 -1.91147e-10 -5.92106e-11) (-2.03076e-09 -1.0979e-09 -9.01904e-10) (-6.73002e-10 -9.49434e-10 -7.51269e-10) (6.07607e-11 -2.8551e-10 -1.80439e-10) (1.76002e-10 -8.30005e-11 -4.03358e-11) (1.55631e-10 2.66802e-11 -3.43467e-12) (4.89394e-11 7.46342e-11 6.80401e-12) (-3.38155e-11 1.7974e-10 1.33675e-11) (-7.1717e-11 1.39933e-10 -8.44903e-12) (-1.59852e-11 -6.37709e-13 -1.02569e-11) (-2.16622e-10 -4.81202e-10 -1.18488e-10) (-1.16377e-09 -1.97182e-09 -2.90542e-10) (-1.50038e-09 -1.29933e-09 -2.40302e-10) (-7.41472e-10 -9.40067e-11 -8.25155e-11) (-2.05648e-10 1.10237e-10 -2.06614e-11) (-4.06729e-12 1.13885e-11 -4.47959e-12) (6.37943e-11 -1.84175e-11 -3.17841e-11) (4.50906e-10 -2.30075e-10 -1.88318e-10) (1.0683e-09 -4.30556e-10 -2.5463e-10) (1.88726e-09 -3.02837e-10 2.31865e-10) (2.51636e-09 2.97777e-10 1.5213e-09) (1.20491e-09 7.94383e-10 2.19841e-09) (-4.67891e-10 6.13529e-10 1.7955e-09) (-1.06022e-09 1.30875e-10 1.24847e-09) (-3.91759e-10 -1.32667e-10 4.17251e-10) (-3.32828e-11 -4.14169e-11 6.25476e-11) (-7.09391e-11 2.28149e-11 -3.2121e-11) (2.00076e-12 1.42638e-11 -1.04696e-11) (1.08782e-10 7.27268e-11 -6.06484e-11) (4.00907e-10 2.4644e-10 -2.32625e-10) (5.80633e-10 4.43239e-10 -3.97463e-10) (5.08017e-10 4.4673e-10 -3.83342e-10) (4.60639e-10 3.39267e-10 -4.07182e-10) (6.06766e-10 2.31766e-10 -7.37991e-10) (7.40265e-10 2.86192e-11 -1.24263e-09) (4.04366e-10 -1.08268e-10 -8.20461e-10) (5.65056e-11 -1.77303e-11 -8.40139e-11) (3.98563e-12 1.76536e-11 2.41113e-11) (-2.1047e-10 2.91938e-10 3.99664e-10) (-7.86887e-10 3.90841e-10 5.07742e-10) (-9.15433e-10 -8.82746e-11 2.53697e-11) (-6.45886e-10 -5.87989e-10 -3.7717e-10) (-8.94138e-11 -5.06513e-10 -3.18788e-10) (1.35733e-10 -1.74415e-10 -1.28187e-10) (2.56945e-10 -4.634e-11 -1.38769e-10) (2.86828e-10 4.81321e-11 -1.70948e-10) (1.15134e-10 6.54991e-11 -6.88529e-11) (1.45903e-11 4.8844e-11 -4.33216e-12) (-3.17192e-11 5.29077e-11 1.73292e-11) (-1.32507e-10 -1.2827e-11 3.17923e-11) (-1.11478e-09 -9.33768e-10 1.11544e-10) (-3.84535e-09 -3.44914e-09 1.79385e-10) (-5.8527e-09 -2.7772e-09 3.73483e-10) (-4.17563e-09 -1.63937e-10 6.91434e-10) (-7.54501e-10 2.61112e-10 2.79277e-10) (4.21343e-12 8.97915e-12 5.15863e-12) (3.50364e-10 -4.90063e-11 -1.05451e-10) (1.21825e-09 -3.42241e-10 -3.56535e-10) (2.58623e-09 -5.63209e-10 4.42603e-12) (4.90368e-09 -2.37992e-10 1.65949e-09) (4.39705e-09 7.43898e-10 2.96375e-09) (1.14205e-09 7.1652e-10 1.72823e-09) (-1.75949e-10 2.02209e-10 5.69672e-10) (-6.21694e-10 -4.82857e-11 2.8572e-10) (-7.77936e-10 -1.7924e-10 8.25224e-12) (-3.90635e-10 -3.80427e-11 -8.82913e-11) (-2.24215e-10 6.95689e-11 -1.31508e-10) (3.97937e-11 7.62468e-11 -9.67225e-11) (6.31893e-10 3.38441e-10 -5.24639e-10) (1.53181e-09 7.13932e-10 -1.21635e-09) (1.55784e-09 8.18564e-10 -1.25001e-09) (9.90038e-10 5.88598e-10 -7.55223e-10) (5.69526e-10 3.08899e-10 -4.56582e-10) (3.53869e-10 9.43029e-11 -3.82936e-10) (1.67618e-10 -6.14497e-11 -2.7166e-10) (1.52102e-11 -7.47351e-11 -6.88039e-11) (-3.63013e-11 -4.69711e-11 2.02708e-11) (-1.50145e-10 2.31726e-11 1.9115e-10) (-3.42586e-10 3.29662e-10 4.21351e-10) (-3.30472e-10 2.75357e-10 2.10324e-10) (-1.08058e-10 -7.97554e-12 -4.32869e-12) (-6.95896e-11 -1.87105e-10 -6.49522e-11) (3.79743e-11 -1.99657e-10 -5.08217e-11) (9.52291e-11 -6.3005e-11 -4.78965e-11) (3.25825e-10 2.10187e-12 -2.72441e-10) (4.97814e-10 6.15079e-11 -6.0335e-10) (2.59258e-10 5.97214e-11 -3.51484e-10) (3.49173e-11 2.88747e-11 -2.99292e-11) (-7.54051e-12 2.46728e-11 1.77391e-11) (-1.69944e-10 -2.1662e-11 1.24877e-10) (-1.01693e-09 -9.85736e-10 4.65321e-10) (-3.91898e-09 -3.50125e-09 9.09969e-10) (-1.05907e-08 -3.39346e-09 2.0304e-09) (-1.07598e-08 8.68752e-11 3.50591e-09) (-2.15782e-09 3.68177e-10 1.22132e-09) (-1.01998e-11 2.38933e-12 7.26817e-12) (1.86039e-10 -5.22521e-11 -1.28413e-10) (8.75051e-10 -2.28699e-10 -2.27777e-10) (2.43232e-09 -3.82871e-10 5.40452e-10) (4.51863e-09 -3.73093e-12 2.34486e-09) (4.11545e-09 8.92597e-10 2.90383e-09) (1.40478e-09 8.11585e-10 1.29201e-09) (3.35703e-11 1.24343e-10 1.11455e-10) (-3.10368e-10 4.47922e-11 -4.87525e-11) (-1.52887e-09 -1.08151e-10 -4.76587e-10) (-1.31296e-09 -9.6037e-12 -4.50167e-10) (-7.41277e-10 1.65936e-10 -2.72001e-10) (-3.25479e-11 1.53416e-10 -2.06814e-10) (9.34197e-10 6.24035e-10 -1.09282e-09) (2.91228e-09 1.19674e-09 -2.72357e-09) (2.96429e-09 1.06116e-09 -2.62203e-09) (1.55236e-09 5.70239e-10 -1.16209e-09) (6.12489e-10 1.88046e-10 -3.36956e-10) (1.89304e-10 2.53027e-12 -7.75022e-11) (2.41373e-11 -2.99555e-11 -7.38694e-12) (-8.65274e-11 -1.26936e-10 4.39768e-11) (-5.20091e-10 -2.70537e-10 2.74271e-10) (-5.44018e-10 -1.40106e-11 3.58569e-10) (-2.07806e-10 1.83207e-10 1.88635e-10) (-2.75036e-11 1.04317e-10 4.57439e-11) (8.0766e-13 1.23973e-14 2.44524e-13) (2.70493e-11 -8.64912e-11 2.74377e-12) (3.71546e-11 -9.77456e-11 -2.60797e-12) (7.63569e-11 -3.00537e-11 -5.36125e-11) (4.2027e-10 5.73759e-11 -5.01852e-10) (6.23116e-10 1.07665e-10 -1.07028e-09) (2.8684e-10 4.74191e-11 -6.0965e-10) (2.66207e-11 1.86679e-11 -4.66635e-11) (-5.39045e-12 1.41643e-11 1.6536e-11) (-7.73476e-11 -5.42527e-11 1.73896e-10) (-3.77186e-10 -9.85289e-10 6.63176e-10) (-3.3551e-09 -2.92744e-09 1.35505e-09) (-1.6208e-08 -2.67502e-09 3.94476e-09) (-1.67073e-08 1.42009e-09 6.13235e-09) (-3.47243e-09 4.51446e-10 1.72291e-09) (-9.98173e-11 -1.51751e-11 5.63721e-12) (4.13831e-11 -5.05147e-11 -5.85955e-11) (4.66889e-10 -2.05147e-10 4.86439e-12) (1.77687e-09 -3.78199e-10 6.93228e-10) (2.85485e-09 2.05336e-11 1.44514e-09) (2.53648e-09 7.33067e-10 1.36102e-09) (1.36165e-09 8.85097e-10 7.15123e-10) (2.54683e-10 3.30464e-10 1.12237e-10) (-3.86518e-11 5.30419e-11 -1.86858e-11) (-7.46202e-10 6.01548e-11 -2.24048e-10) (-1.69664e-09 6.10064e-11 -4.02715e-10) (-3.71842e-10 9.86865e-11 -3.97842e-11) (-3.13509e-11 9.77022e-11 -9.61294e-11) (9.41404e-10 6.88903e-10 -1.05678e-09) (3.79566e-09 1.5502e-09 -3.47117e-09) (4.24494e-09 1.2164e-09 -3.6716e-09) (2.15111e-09 4.65746e-10 -1.47922e-09) (6.86296e-10 6.79807e-11 -2.31384e-10) (1.48908e-10 -3.46048e-11 1.88285e-11) (2.47302e-12 -5.13456e-11 4.14006e-11) (-3.41628e-10 -2.40385e-10 1.83587e-10) (-9.63292e-10 -3.41676e-10 3.33552e-10) (-5.29426e-10 -3.22213e-11 2.19215e-10) (-5.7289e-11 6.49973e-11 5.93019e-11) (6.42035e-11 8.8329e-11 4.53999e-11) (1.05051e-10 7.16222e-12 3.42561e-11) (7.94997e-11 -7.92167e-11 2.81614e-11) (4.50428e-11 -6.81706e-11 -7.76091e-12) (1.06193e-10 -3.62675e-11 -1.1335e-10) (3.81236e-10 8.24826e-11 -6.39586e-10) (4.45905e-10 1.55244e-10 -1.10259e-09) (1.35375e-10 5.60741e-11 -5.61354e-10) (-2.8774e-12 1.1436e-11 -3.86943e-11) (-1.20885e-11 7.32792e-12 1.78683e-11) (3.28127e-12 -1.37873e-10 2.7255e-10) (-2.00441e-10 -1.18262e-09 9.44659e-10) (-6.20343e-09 -3.0827e-09 2.23052e-09) (-2.93578e-08 -8.04146e-10 6.45147e-09) (-1.88398e-08 2.59007e-09 6.42282e-09) (-2.45281e-09 2.62268e-10 1.06442e-09) (-8.52915e-11 -4.09018e-11 5.03006e-12) (2.05769e-11 -6.5864e-11 -6.81842e-12) (2.85255e-10 -2.2461e-10 1.30045e-10) (7.7561e-10 -2.83551e-10 4.05094e-10) (1.04173e-09 -2.18469e-11 4.24901e-10) (1.26267e-09 4.11514e-10 3.36916e-10) (1.33875e-09 8.26566e-10 2.49208e-10) (7.79309e-10 6.75211e-10 1.18142e-10) (1.21359e-10 1.81755e-10 1.77135e-11) (-3.80478e-11 3.80038e-11 1.20526e-12) (-3.75088e-10 7.19687e-11 9.50776e-13) (-7.08669e-12 1.29381e-11 6.32659e-12) (5.2757e-11 8.34065e-11 -3.4885e-11) (9.15503e-10 6.60244e-10 -6.34667e-10) (3.10114e-09 1.42805e-09 -2.29522e-09) (3.8213e-09 1.07977e-09 -2.85287e-09) (2.10438e-09 2.93361e-10 -1.24369e-09) (6.23981e-10 -3.37908e-11 -1.49155e-10) (1.03057e-10 -4.93687e-11 3.96893e-11) (-2.71043e-11 -5.89402e-11 5.71846e-11) (-3.902e-10 -1.95934e-10 1.35862e-10) (-6.70443e-10 -2.04451e-10 1.22258e-10) (-2.12348e-10 -1.37783e-11 6.48575e-11) (-2.70261e-12 2.60052e-11 2.50235e-11) (1.95517e-10 1.11138e-10 9.63265e-11) (3.29766e-10 1.33106e-11 1.15016e-10) (1.74636e-10 -9.83126e-11 5.18492e-11) (7.80879e-11 -8.18914e-11 -1.95498e-11) (8.80365e-11 -4.55316e-11 -1.30994e-10) (1.94284e-10 6.52359e-11 -5.25822e-10) (1.77967e-10 1.68953e-10 -8.08557e-10) (-1.03794e-11 7.5502e-11 -4.08479e-10) (-5.10703e-11 1.77681e-11 -5.53736e-11) (-3.70518e-11 6.74471e-13 2.90136e-11) (4.34872e-11 -2.49772e-10 4.15565e-10) (-6.66218e-10 -1.22024e-09 1.22321e-09) (-1.7012e-08 -3.5676e-09 4.37207e-09) (-4.47993e-08 2.06653e-09 8.29517e-09) (-1.42776e-08 2.0951e-09 4.48309e-09) (-9.06621e-10 3.58621e-11 4.12836e-10) (-3.13545e-11 -4.03148e-11 1.40322e-11) (2.54618e-11 -9.89212e-11 2.98304e-11) (1.60823e-10 -1.87057e-10 1.35914e-10) (3.17114e-10 -1.63393e-10 2.22369e-10) (4.31124e-10 -2.61156e-11 2.1102e-10) (6.42339e-10 2.08069e-10 1.93005e-10) (8.72219e-10 5.51057e-10 1.83949e-10) (7.03697e-10 6.25828e-10 1.62328e-10) (2.56329e-10 3.08071e-10 1.05813e-10) (2.59102e-11 6.8067e-11 4.15649e-11) (-1.15177e-11 1.85049e-11 1.9485e-11) (3.00847e-11 2.53069e-11 7.42944e-12) (1.67297e-10 1.33685e-10 -1.60622e-11) (6.89776e-10 5.02528e-10 -2.11763e-10) (1.72734e-09 9.23674e-10 -8.31786e-10) (2.28389e-09 7.30042e-10 -1.29373e-09) (1.36466e-09 1.40107e-10 -6.5117e-10) (3.992e-10 -6.2791e-11 -8.99866e-11) (4.90084e-11 -3.44878e-11 1.24949e-11) (-1.2306e-11 -2.42674e-11 1.10921e-11) (-1.24417e-10 -6.68018e-11 8.43648e-12) (-1.71752e-10 -5.6236e-11 6.17506e-12) (-3.97204e-11 6.23863e-13 1.61203e-11) (1.69011e-11 2.66411e-11 2.98089e-11) (2.94971e-10 1.0643e-10 1.35939e-10) (5.30077e-10 -1.08926e-12 1.66002e-10) (3.21811e-10 -1.3287e-10 6.46982e-11) (1.06525e-10 -9.20172e-11 -2.73835e-11) (3.99015e-11 -3.82641e-11 -9.43649e-11) (3.30982e-11 3.96728e-11 -3.19017e-10) (-3.67229e-12 1.44045e-10 -4.93309e-10) (-1.0563e-10 9.5902e-11 -2.96366e-10) (-1.76789e-10 4.22989e-11 -9.08044e-11) (-9.23739e-11 -1.2733e-11 5.61167e-11) (-1.37365e-11 -3.43469e-10 5.9498e-10) (-2.50777e-09 -1.49245e-09 2.06325e-09) (-4.00953e-08 -2.8444e-09 7.53523e-09) (-5.16024e-08 3.81982e-09 8.11292e-09) (-7.78984e-09 9.61039e-10 2.32259e-09) (-2.36893e-10 -2.62681e-11 1.21703e-10) (-1.03811e-11 -3.28677e-11 7.2907e-12) (2.26754e-11 -7.26782e-11 1.25303e-11) (9.26096e-11 -1.0237e-10 5.39114e-11) (1.88312e-10 -9.19597e-11 1.28088e-10) (2.71495e-10 -2.51903e-11 1.92436e-10) (3.35343e-10 9.85191e-11 2.24589e-10) (3.67311e-10 2.71425e-10 2.31537e-10) (2.84706e-10 3.61457e-10 2.01613e-10) (1.26298e-10 2.41309e-10 1.32521e-10) (3.62614e-11 8.51709e-11 5.81271e-11) (1.46867e-11 2.22815e-11 1.6727e-11) (7.55675e-11 3.60657e-11 -7.39501e-12) (1.51679e-10 1.0355e-10 -1.83412e-12) (3.47238e-10 2.79095e-10 -1.653e-11) (7.31591e-10 4.60339e-10 -1.74739e-10) (9.62726e-10 3.6748e-10 -3.70213e-10) (6.13425e-10 6.7206e-11 -2.44033e-10) (2.02455e-10 -4.03179e-11 -6.8133e-11) (3.66222e-11 -2.59847e-11 -1.41546e-11) (2.30675e-12 -1.21125e-11 -7.43096e-12) (-8.95356e-12 -1.07654e-11 -8.15691e-12) (-1.27327e-11 -4.47411e-12 -1.81659e-13) (-6.60795e-12 4.86845e-12 1.09391e-11) (4.49274e-11 4.24732e-11 5.52894e-11) (3.38186e-10 9.02784e-11 1.46466e-10) (6.32302e-10 -3.73152e-11 1.56697e-10) (4.42652e-10 -1.61646e-10 5.04293e-11) (1.16363e-10 -8.61076e-11 -3.36706e-11) (1.38048e-11 -2.67048e-11 -6.32464e-11) (-3.25628e-11 2.64197e-11 -1.85614e-10) (-8.07249e-11 1.10185e-10 -2.74818e-10) (-1.68536e-10 1.0936e-10 -2.0843e-10) (-2.83719e-10 6.17244e-11 -8.22287e-11) (-1.03002e-10 -3.06737e-11 8.75347e-11) (-1.82004e-10 -4.18332e-10 8.72677e-10) (-8.9674e-09 -1.94413e-09 4.30875e-09) (-7.11749e-08 -4.50838e-10 1.01205e-08) (-4.50459e-08 2.96895e-09 6.08138e-09) (-3.31559e-09 1.98476e-10 9.29317e-10) (-4.69227e-11 -1.68235e-11 1.77212e-11) (5.0445e-12 -2.39304e-11 -1.08928e-11) (6.12148e-11 -6.6976e-11 -3.23477e-11) (1.07103e-10 -6.91525e-11 -1.84678e-12) (1.11104e-10 -4.39907e-11 5.44887e-11) (1.02437e-10 -1.63734e-11 1.13731e-10) (8.04025e-11 2.95398e-11 1.58849e-10) (5.19999e-11 1.02005e-10 1.70052e-10) (2.58495e-11 1.72631e-10 1.50642e-10) (1.37576e-11 1.46556e-10 8.58659e-11) (2.11321e-11 6.07533e-11 2.40637e-11) (3.52435e-11 2.87145e-11 1.59161e-12) (1.90836e-10 6.28874e-11 -8.57995e-11) (1.64071e-10 8.65093e-11 -5.07809e-11) (1.51021e-10 1.1955e-10 -1.03466e-11) (2.05526e-10 1.58857e-10 -3.65262e-12) (2.45742e-10 1.20826e-10 -3.96338e-11) (1.91358e-10 3.13725e-11 -5.82686e-11) (9.90967e-11 -1.80031e-11 -4.95833e-11) (3.83281e-11 -2.32015e-11 -3.6709e-11) (8.58131e-12 -1.25541e-11 -2.09358e-11) (-7.01715e-13 -1.86689e-12 -3.22679e-12) (-1.04225e-12 5.41777e-13 1.29133e-12) (6.97654e-12 1.81229e-11 3.10345e-11) (1.22762e-10 7.30389e-11 1.03888e-10) (4.64016e-10 8.36007e-11 1.61366e-10) (7.18254e-10 -7.1382e-11 1.16655e-10) (4.45885e-10 -1.54276e-10 9.51368e-12) (8.52309e-11 -6.03347e-11 -3.58463e-11) (-2.30766e-12 -1.68641e-11 -4.87548e-11) (-5.70801e-11 2.25368e-11 -1.23462e-10) (-9.36476e-11 7.90921e-11 -1.47046e-10) (-1.51887e-10 8.80323e-11 -1.12997e-10) (-1.48208e-10 2.90979e-11 -2.01407e-11) (-5.02024e-11 -4.63588e-11 1.30374e-10) (-6.84116e-10 -4.41814e-10 1.37998e-09) (-2.47411e-08 -1.49935e-09 7.9476e-09) (-9.18602e-08 1.57485e-09 9.84728e-09) (-2.93953e-08 8.43953e-10 3.30205e-09) (-1.08408e-09 -5.30253e-11 2.42855e-10) (-8.03648e-13 -4.47143e-12 -3.20023e-12) (1.303e-10 -7.11587e-11 -1.09644e-10) (3.04003e-10 -1.20141e-10 -1.75713e-10) (2.07897e-10 -6.33834e-11 -6.34888e-11) (6.8325e-11 -1.50716e-11 1.17287e-11) (1.86131e-11 -3.50627e-12 3.52713e-11) (-2.90683e-11 1.06035e-11 1.14997e-10) (-1.42038e-10 6.99742e-11 2.11712e-10) (-1.45726e-10 1.18438e-10 1.52624e-10) (-3.62839e-11 6.99247e-11 3.9123e-11) (1.19916e-11 2.86207e-11 -1.16854e-12) (9.54462e-11 4.56069e-11 -4.45072e-11) (3.6989e-10 8.41069e-11 -2.43071e-10) (3.01566e-10 1.087e-10 -1.923e-10) (1.47902e-10 8.31988e-11 -6.14132e-11) (8.91401e-11 6.06274e-11 -4.35874e-12) (6.314e-11 3.39055e-11 5.83972e-12) (2.70869e-11 6.95753e-12 -1.94351e-12) (4.37919e-12 -1.14227e-12 -3.90412e-12) (-2.16875e-12 -3.45037e-12 -7.60006e-12) (-6.69626e-12 -2.67637e-12 -7.0506e-12) (-1.36172e-12 1.9666e-13 -1.75321e-13) (2.72039e-12 6.10801e-12 9.74554e-12) (7.59978e-11 5.1367e-11 7.833e-11) (3.39084e-10 1.22434e-10 1.65965e-10) (7.07155e-10 8.18596e-11 1.58563e-10) (7.65241e-10 -8.02997e-11 6.03578e-11) (3.59747e-10 -1.10927e-10 -2.09738e-11) (4.59354e-11 -2.99582e-11 -2.70606e-11) (-1.01924e-11 -8.08165e-12 -3.54459e-11) (-6.0224e-11 1.85795e-11 -8.09339e-11) (-7.44748e-11 4.88813e-11 -7.8574e-11) (-6.74318e-11 3.87025e-11 -4.41761e-11) (-1.56965e-11 1.92175e-12 3.05614e-12) (-2.49261e-11 -7.50162e-11 2.92682e-10) (-2.49935e-09 -3.5166e-10 2.53993e-09) (-4.60341e-08 4.76899e-10 1.03061e-08) (-8.31661e-08 1.29581e-09 5.95325e-09) (-1.42749e-08 -4.86735e-10 1.10552e-09) (-1.61473e-10 -4.86762e-11 1.06116e-11) (9.35215e-11 -3.87452e-11 -6.75299e-11) (5.77825e-10 -1.4093e-10 -3.49241e-10) (6.24628e-10 -1.21566e-10 -3.31574e-10) (2.8124e-10 -3.1335e-11 -1.07114e-10) (6.7585e-11 -3.8772e-13 -2.95413e-12) (7.29788e-12 1.30791e-12 1.16418e-11) (-4.49737e-11 8.74088e-12 7.9034e-11) (-2.75817e-10 4.97149e-11 2.405e-10) (-3.39301e-10 8.96869e-11 2.00903e-10) (-6.76914e-11 3.68769e-11 2.83787e-11) (5.15497e-12 7.80296e-12 -4.51112e-12) (1.59805e-10 3.84227e-11 -1.00799e-10) (5.40651e-10 5.70687e-11 -4.09322e-10) (4.86708e-10 8.63892e-11 -3.82113e-10) (2.27385e-10 6.85134e-11 -1.52504e-10) (6.09156e-11 3.13489e-11 -1.9267e-11) (7.52743e-12 8.51716e-12 4.2732e-12) (-5.5704e-12 4.85286e-12 7.20681e-12) (-4.69094e-11 4.88885e-12 1.52521e-11) (-8.1385e-11 -5.16842e-13 9.34049e-12) (-3.14616e-11 8.79321e-13 4.4687e-12) (-9.91036e-13 1.61372e-12 2.91234e-12) (4.37953e-11 2.45109e-11 3.71545e-11) (2.82879e-10 1.08272e-10 1.3585e-10) (6.95713e-10 1.75415e-10 1.81161e-10) (9.61639e-10 8.34663e-11 1.05278e-10) (7.63966e-10 -6.40592e-11 1.00628e-11) (2.90853e-10 -6.79697e-11 -2.43063e-11) (3.03346e-11 -1.31274e-11 -1.42452e-11) (-4.31282e-12 -1.79213e-12 -1.261e-11) (-4.00211e-11 1.07907e-11 -4.19424e-11) (-5.52995e-11 2.67183e-11 -5.14292e-11) (-2.55955e-11 1.15147e-11 -1.87512e-11) (-5.84029e-12 -2.00267e-12 1.075e-11) (-2.31555e-10 -8.29219e-11 6.24426e-10) (-7.33644e-09 1.32324e-10 4.28173e-09) (-5.39065e-08 2.24641e-09 7.91085e-09) (-4.95137e-08 -1.47997e-10 1.47162e-09) (-4.22364e-09 -6.19951e-10 6.97017e-11) (-1.28225e-12 -1.83486e-11 -1.04586e-11) (3.9597e-10 -9.80714e-11 -2.22303e-10) (7.82901e-10 -1.25621e-10 -4.40816e-10) (5.51652e-10 -5.81517e-11 -2.78137e-10) (2.32763e-10 6.09557e-13 -7.77352e-11) (6.86415e-11 7.93191e-12 -1.27896e-12) (9.68312e-12 3.01532e-12 9.11608e-12) (-1.66636e-11 5.81743e-12 3.37249e-11) (-1.40579e-10 2.23109e-11 1.14872e-10) (-1.80285e-10 3.14904e-11 1.01098e-10) (-2.26063e-11 7.30959e-12 9.70518e-12) (9.88958e-12 2.87912e-12 -7.34345e-12) (2.3459e-10 1.38923e-11 -1.62758e-10) (5.33288e-10 2.26203e-12 -4.65156e-10) (3.89683e-10 2.71485e-11 -3.85937e-10) (1.27906e-10 3.02618e-11 -1.30165e-10) (1.1447e-11 1.00238e-11 -8.02554e-12) (-4.06815e-12 1.14896e-11 1.05261e-11) (-5.87248e-11 3.32491e-11 7.01233e-11) (-1.16784e-10 2.87178e-11 1.02907e-10) (-6.65073e-11 9.38192e-12 5.77172e-11) (-5.80089e-12 3.03985e-12 1.51784e-11) (2.54241e-11 1.06482e-11 2.34129e-11) (1.87011e-10 6.05344e-11 7.49823e-11) (5.39787e-10 1.52045e-10 1.2189e-10) (9.30978e-10 1.84952e-10 9.0937e-11) (1.01174e-09 7.3583e-11 1.20788e-11) (6.63389e-10 -3.85772e-11 -1.98681e-11) (2.37401e-10 -3.77241e-11 -1.20919e-11) (3.09806e-11 -6.95156e-12 -5.70427e-12) (1.39966e-13 -1.39876e-13 -2.26751e-12) (-1.76017e-11 5.18998e-12 -1.89844e-11) (-4.09027e-11 1.38761e-11 -3.65619e-11) (-1.85642e-11 3.19386e-12 -7.4569e-12) (-5.55238e-11 -1.20902e-11 7.80416e-11) (-1.17251e-09 -3.43491e-11 1.264e-09) (-1.25562e-08 8.79528e-10 4.64147e-09) (-3.94697e-08 2.06486e-09 2.98852e-09) (-1.76064e-08 -7.25521e-10 -5.20716e-10) (-5.55493e-10 -2.34369e-10 -9.72529e-11) (6.28267e-11 -5.25958e-11 -5.72419e-11) (4.12506e-10 -8.48648e-11 -2.60197e-10) (5.05414e-10 -5.77674e-11 -2.9321e-10) (2.93505e-10 -1.432e-11 -1.28468e-10) (1.28726e-10 7.8224e-12 -2.29615e-11) (5.07662e-11 8.2524e-12 8.87374e-12) (1.01466e-11 3.4538e-12 9.89052e-12) (-6.10646e-12 3.29742e-12 1.43988e-11) (-4.99227e-11 8.33974e-12 3.66963e-11) (-4.49137e-11 5.84767e-12 2.27145e-11) (-4.20628e-13 7.21429e-14 1.47962e-13) (4.12737e-11 -3.29122e-12 -2.79226e-11) (3.10352e-10 -1.6953e-11 -2.33236e-10) (3.28178e-10 -2.44652e-11 -3.60986e-10) (1.712e-10 1.03668e-12 -2.30888e-10) (3.26962e-11 1.00121e-11 -4.86564e-11) (1.9773e-12 3.62217e-12 -1.75287e-13) (-6.11645e-13 2.25584e-11 3.77142e-11) (-8.45306e-12 4.58834e-11 1.3452e-10) (5.93624e-12 3.47484e-11 1.56433e-10) (4.16363e-11 1.73247e-11 1.08514e-10) (9.34141e-11 1.83457e-11 8.09756e-11) (1.93739e-10 3.93992e-11 7.10263e-11) (3.69576e-10 8.49235e-11 5.7069e-11) (6.43372e-10 1.39036e-10 2.43203e-11) (8.88466e-10 1.36842e-10 -3.19649e-11) (8.12634e-10 4.79412e-11 -5.74663e-11) (4.65492e-10 -1.75798e-11 -2.96511e-11) (1.70354e-10 -1.86453e-11 -6.12485e-12) (3.31915e-11 -4.22352e-12 -3.50474e-12) (1.83495e-12 5.74776e-14 -2.08969e-12) (-5.02274e-12 2.21356e-12 -8.13382e-12) (-1.38965e-11 4.00013e-12 -1.09532e-11) (-1.64675e-11 1.07378e-13 5.3221e-12) (-2.33147e-10 -2.28742e-11 2.64725e-10) (-2.50014e-09 8.97377e-11 1.70344e-09) (-1.22698e-08 1.05374e-09 2.87747e-09) (-1.74452e-08 8.57078e-10 -1.14054e-10) (-3.03839e-09 -3.7381e-10 -5.15368e-10) (-4.14484e-11 -6.80985e-11 -5.91053e-11) (7.55968e-11 -4.83149e-11 -8.22254e-11) (2.0969e-10 -3.60177e-11 -1.56452e-10) (2.30844e-10 -1.82474e-11 -1.27174e-10) (1.47921e-10 -1.37705e-12 -4.35025e-11) (8.41263e-11 7.48034e-12 1.44151e-12) (4.02801e-11 7.03298e-12 1.36786e-11) (7.50178e-12 2.64495e-12 7.27382e-12) (-2.05078e-12 1.36437e-12 4.19177e-12) (-1.17856e-11 2.13876e-12 6.63804e-12) (-3.17829e-12 2.22417e-13 1.23285e-12) (1.96472e-12 -6.32003e-13 -1.3481e-12) (8.30132e-11 -1.60193e-11 -6.0124e-11) (2.74381e-10 -3.59227e-11 -2.42946e-10) (5.26313e-10 -5.23265e-11 -4.25109e-10) (3.40004e-10 -1.23772e-11 -2.65138e-10) (1.51236e-10 1.38564e-11 -6.94771e-11) (1.14579e-10 2.98368e-11 2.29e-11) (2.37303e-10 7.53344e-11 1.76753e-10) (4.47683e-10 1.13497e-10 3.94258e-10) (6.39967e-10 1.04553e-10 4.68202e-10) (7.85476e-10 8.37589e-11 3.77969e-10) (9.0668e-10 8.89757e-11 2.27469e-10) (1.0635e-09 1.24005e-10 9.46363e-11) (1.34504e-09 1.78006e-10 -6.22311e-12) (1.77915e-09 2.26891e-10 -1.00698e-10) (2.09244e-09 2.06792e-10 -1.78134e-10) (1.89963e-09 9.91548e-11 -1.64666e-10) (1.35194e-09 7.88626e-12 -8.38495e-11) (8.592e-10 -1.95757e-11 -3.68217e-11) (5.02374e-10 -8.7833e-12 -4.03142e-11) (2.5668e-10 6.20306e-12 -4.8664e-11) (1.22057e-10 1.09074e-11 -3.543e-11) (6.19474e-11 6.2201e-12 -9.08363e-12) (3.81184e-11 -6.7941e-13 2.53124e-11) (-1.63775e-11 -5.13801e-12 1.64062e-10) (-8.23285e-10 9.2384e-11 6.39656e-10) (-4.01621e-09 5.04749e-10 6.15934e-10) (-2.97416e-09 1.72356e-10 -4.47164e-10) (-1.68385e-10 -6.16881e-11 -1.21902e-10) (1.4925e-11 -3.77516e-11 -4.72379e-11) (8.31727e-11 -3.3144e-11 -7.2565e-11) (2.43351e-10 -2.9763e-11 -1.34717e-10) (3.56397e-10 -2.34179e-11 -1.2632e-10) (3.35221e-10 -7.37247e-12 -5.28663e-11) (2.6869e-10 7.53376e-12 4.29701e-12) (1.67386e-10 1.02763e-11 2.08061e-11) (6.02258e-11 5.22146e-12 9.9661e-12) (1.07109e-11 1.32447e-12 1.80423e-12) (2.71183e-12 2.47413e-13 2.3029e-13) (1.08424e-11 -1.00392e-12 -1.46226e-12) (7.82763e-11 -1.23376e-11 -2.67308e-11) (2.68668e-10 -4.54069e-11 -1.40751e-10) (4.91568e-10 -6.76834e-11 -3.41194e-10) (1.94346e-09 -1.42529e-10 -9.95084e-10) (1.84082e-09 -6.51796e-11 -7.69065e-10) (1.79708e-09 3.70549e-11 -3.36035e-10) (2.36154e-09 1.68649e-10 1.9687e-10) (3.82401e-09 3.29091e-10 9.63293e-10) (5.71449e-09 4.34086e-10 1.64788e-09) (7.33825e-09 4.43339e-10 1.74088e-09) (8.56215e-09 4.35987e-10 1.29736e-09) (9.594e-09 4.73938e-10 6.81982e-10) (1.07377e-08 5.82472e-10 1.77366e-10) (1.24081e-08 7.17263e-10 -1.90229e-10) (1.46617e-08 8.33403e-10 -5.32983e-10) (1.64837e-08 8.05068e-10 -8.07452e-10) (1.65551e-08 5.58719e-10 -8.02063e-10) (1.51205e-08 2.57067e-10 -6.01015e-10) (1.32372e-08 7.63503e-11 -5.42375e-10) (1.10876e-08 5.72547e-11 -6.74072e-10) (8.65562e-09 1.2092e-10 -7.23829e-10) (6.42772e-09 1.54416e-10 -4.693e-10) (4.62878e-09 1.00854e-10 4.31938e-11) (2.69582e-09 1.46812e-11 5.61834e-10) (7.41221e-10 2.11175e-11 4.93218e-10) (-1.41289e-11 3.23489e-11 1.30109e-10) (-2.20043e-10 6.40386e-11 1.94825e-11) (-3.37837e-11 8.32573e-12 -4.79415e-11) (6.3981e-11 -2.46175e-11 -7.59174e-11) (1.40284e-10 -4.7766e-11 -8.78748e-11) (3.18723e-10 -4.8286e-11 -1.46738e-10) (7.0057e-10 -4.90718e-11 -2.45613e-10) (9.6689e-10 -4.37607e-11 -2.25025e-10) (1.00569e-09 -2.0208e-11 -1.08256e-10) (9.33061e-10 5.98497e-12 -1.57786e-11) (7.33137e-10 1.67936e-11 7.23519e-12) (4.66219e-10 1.41536e-11 -1.10112e-11) (2.91946e-10 7.72659e-12 -2.27258e-11) (2.69151e-10 -8.68479e-15 -2.85874e-11) (4.02272e-10 -1.88773e-11 -5.74055e-11) (7.31705e-10 -5.98892e-11 -1.74552e-10) (1.22878e-09 -1.22898e-10 -4.45423e-10) (1.72098e-09 -1.60229e-10 -8.18149e-10) (1.89107e-09 -1.04128e-10 -9.47139e-10) (2.07021e-09 -5.51701e-11 -7.18964e-10) (3.06784e-09 2.57562e-11 -2.52347e-10) (5.89282e-09 1.71448e-10 7.06283e-10) (1.06273e-08 3.47986e-10 2.11088e-09) (1.5967e-08 4.73467e-10 3.06258e-09) (2.06618e-08 5.1876e-10 2.93696e-09) (2.44559e-08 5.46151e-10 2.05773e-09) (2.74299e-08 5.87585e-10 1.06264e-09) (3.03415e-08 6.79758e-10 3.47863e-10) (3.45041e-08 8.06395e-10 -1.96982e-10) (4.04126e-08 9.49795e-10 -8.57532e-10) (4.60912e-08 9.69118e-10 -1.57892e-09) (4.82781e-08 7.20807e-10 -2.00244e-09) (4.63788e-08 3.38067e-10 -2.2295e-09) (4.18836e-08 5.78937e-11 -2.62389e-09) (3.53821e-08 1.40277e-12 -2.84433e-09) (2.72545e-08 7.47085e-11 -2.19898e-09) (1.88849e-08 1.03075e-10 -6.93339e-10) (1.06774e-08 3.50322e-11 8.03762e-10) (3.43439e-09 -2.22431e-12 1.09483e-09) (3.51794e-10 2.06205e-11 4.37593e-10) (-7.82163e-11 2.86895e-11 1.20291e-10) (7.67628e-12 5.40432e-12 -2.91559e-12) (3.36485e-10 2.27819e-11 -1.70433e-10) (5.64496e-10 -3.32665e-11 -2.16162e-10) (3.42299e-10 -3.8685e-11 -1.18965e-10) (3.32887e-10 -2.45858e-11 -1.09852e-10) (4.46611e-10 -1.67046e-11 -1.14285e-10) (4.97294e-10 -9.04058e-12 -6.32175e-11) (4.8742e-10 1.70163e-12 1.19583e-12) (4.63834e-10 1.1333e-11 2.70723e-11) (4.18948e-10 1.47917e-11 7.94289e-12) (3.87512e-10 1.40746e-11 -2.65075e-11) (4.29829e-10 1.17182e-11 -5.22661e-11) (5.96992e-10 3.99397e-12 -7.50659e-11) (8.83026e-10 -1.70621e-11 -1.32177e-10) (1.25027e-09 -5.32367e-11 -2.84899e-10) (1.58915e-09 -9.58344e-11 -5.53309e-10) (1.80471e-09 -1.16893e-10 -8.52765e-10) (1.03224e-10 -4.26994e-12 -6.58574e-11) (1.35112e-10 -2.92584e-12 -5.37658e-11) (2.80652e-10 -5.53039e-13 -1.93357e-11) (6.40467e-10 3.78882e-12 8.45927e-11) (1.17899e-09 9.03734e-12 2.39583e-10) (1.76896e-09 1.27716e-11 3.37611e-10) (2.30801e-09 1.18066e-11 3.15998e-10) (2.72357e-09 9.59626e-12 2.23713e-10) (2.99089e-09 5.93099e-12 1.37598e-10) (3.25223e-09 5.33953e-12 8.99771e-11) (3.75728e-09 8.97612e-12 4.18079e-11) (4.62282e-09 1.7046e-11 -6.77896e-11) (5.5633e-09 1.94379e-11 -2.50666e-10) (5.98537e-09 4.07486e-12 -4.31322e-10) (5.73091e-09 -1.73956e-11 -5.67474e-10) (5.01517e-09 -2.94642e-11 -6.28258e-10) (3.92047e-09 -2.54048e-11 -5.29346e-10) (2.54243e-09 -1.6332e-11 -2.57279e-10) (1.24451e-09 -9.31015e-12 1.30074e-11) (3.49671e-10 -4.52629e-12 9.95961e-11) (1.87482e-11 -2.00887e-12 8.34674e-11) (-1.26326e-10 -1.81676e-12 1.53892e-10) (-4.93188e-11 1.33652e-12 5.57901e-11) (9.73663e-12 9.21252e-13 2.39402e-12) (2.07171e-10 7.39672e-12 -4.62326e-11) (1.97856e-10 6.40406e-13 -4.08883e-11) (5.11858e-11 -1.61515e-12 -8.20241e-12) (1.25218e-11 -4.3908e-13 -1.11521e-12) (7.74637e-12 -1.04585e-13 2.0443e-13) (7.40777e-12 1.84059e-14 1.68664e-12) (7.83071e-12 1.31699e-13 3.13544e-12) (9.54725e-12 2.89787e-13 3.41063e-12) (1.40114e-11 4.3906e-13 2.0942e-12) (2.61979e-11 7.08793e-13 -1.09356e-12) (5.36492e-11 1.23667e-12 -6.0462e-12) (9.76757e-11 1.36331e-12 -1.10763e-11) (1.39383e-10 4.80991e-13 -1.75108e-11) (1.56143e-10 -1.68976e-12 -2.89114e-11) (1.37897e-10 -3.85348e-12 -4.51024e-11) (1.11034e-10 -4.60652e-12 -6.05394e-11) (2.98099e-11 3.22439e-10 -2.02513e-10) (4.50376e-11 2.10924e-10 -2.79348e-10) (-1.74724e-12 2.50421e-11 -1.59294e-10) (-2.69527e-11 -5.92903e-11 -1.14562e-10) (-3.56742e-11 -1.04011e-10 -9.56508e-11) (-1.84482e-11 -5.605e-11 -4.15524e-11) (-2.15188e-12 -4.43554e-12 -3.20534e-12) (-2.98302e-13 1.61181e-12 1.1939e-12) (4.62914e-12 3.05099e-11 2.39178e-11) (2.47963e-11 6.81953e-11 5.64822e-11) (4.28624e-11 6.57497e-11 6.12528e-11) (3.86776e-11 2.99843e-11 3.94118e-11) (2.5231e-11 -7.26024e-13 1.95945e-11) (3.17093e-11 -3.28217e-11 1.45797e-11) (5.64328e-11 -1.11028e-10 -1.45712e-12) (5.87448e-11 -1.6117e-10 -3.58017e-11) (2.22977e-11 -8.71206e-11 -2.63933e-11) (-8.86226e-13 -9.82119e-12 1.61773e-13) (-1.74066e-11 6.94272e-12 2.31965e-11) (-1.20651e-10 1.30349e-10 1.7169e-10) (-2.02978e-10 2.93868e-10 3.08227e-10) (-1.09983e-10 2.31883e-10 2.15492e-10) (-8.24969e-12 7.63154e-11 6.21974e-11) (8.87968e-12 1.24644e-11 4.44081e-12) (1.81726e-11 6.0993e-12 -1.61256e-11) (2.13965e-11 2.42265e-12 -6.941e-11) (-2.76024e-11 -4.56495e-12 -1.08665e-10) (-1.2507e-10 -2.24863e-11 -9.6627e-11) (-2.97083e-10 -7.16751e-11 -1.90277e-11) (-4.2585e-10 -1.47129e-10 1.24417e-10) (-2.86172e-10 -1.6418e-10 1.2243e-10) (-7.65784e-11 -1.03815e-10 9.02658e-12) (9.35318e-12 -1.1977e-10 -7.86036e-11) (1.11134e-10 -1.76901e-10 -2.00892e-10) (7.29118e-11 -8.41687e-11 -9.25083e-11) (3.43283e-12 -6.55565e-12 8.1267e-13) (-3.09989e-11 -3.5628e-12 8.10968e-11) (-1.31376e-10 6.75843e-11 2.56162e-10) (-1.02474e-10 1.42656e-10 1.58929e-10) (-3.84542e-11 1.98341e-10 3.71053e-12) (-1.88106e-10 7.79773e-11 -5.83857e-10) (-7.64655e-11 -5.4749e-11 -4.32838e-10) (-1.62003e-11 -7.97321e-11 -1.808e-10) (6.69026e-12 -3.74496e-11 -5.56054e-11) (5.67667e-12 -3.3506e-12 -8.29185e-12) (9.63047e-12 9.68926e-12 1.92554e-12) (4.84998e-11 8.59825e-11 5.89492e-11) (1.17055e-10 2.10786e-10 1.88846e-10) (1.60491e-10 2.45275e-10 2.40727e-10) (1.38852e-10 1.69904e-10 1.72538e-10) (7.90293e-11 6.79059e-11 8.34381e-11) (2.61126e-11 4.38067e-12 2.73914e-11) (1.4331e-11 -2.86967e-11 1.7086e-11) (2.11431e-11 -1.63729e-10 9.35972e-12) (4.62896e-11 -3.07206e-10 -5.57677e-11) (6.06857e-11 -1.92915e-10 -8.13166e-11) (1.77002e-11 -3.07302e-11 -2.74604e-11) (-2.85021e-13 9.93869e-13 -7.31567e-13) (-3.67916e-11 5.93879e-11 3.3531e-11) (-1.57933e-10 2.32955e-10 1.95989e-10) (-2.3327e-10 2.98466e-10 2.86562e-10) (-1.69825e-10 1.70401e-10 1.72641e-10) (-4.08958e-11 3.26345e-11 3.05786e-11) (-5.90336e-14 2.71579e-13 -2.81938e-13) (4.11223e-11 -5.47298e-12 -3.88352e-11) (1.36126e-10 -4.50112e-12 -1.18306e-10) (5.42721e-11 1.16595e-11 -5.22574e-11) (-1.92454e-12 2.47632e-12 -3.93495e-13) (-1.43453e-10 1.73592e-11 7.84763e-11) (-3.72012e-10 -5.08763e-11 1.96103e-10) (-2.17094e-10 -1.14517e-10 4.86165e-11) (-1.00027e-10 -1.93818e-10 -1.16678e-10) (-1.57564e-12 -4.65384e-10 -4.24981e-10) (9.79535e-11 -4.05174e-10 -3.36781e-10) (3.6395e-11 -7.44036e-11 -2.72812e-11) (6.76849e-12 -1.93963e-12 4.57883e-11) (-1.23252e-10 1.34937e-10 3.50273e-10) (-3.75588e-10 2.64341e-10 3.99431e-10) (-3.31343e-10 1.96543e-10 3.36293e-11) (-2.66227e-10 1.57856e-10 -2.93146e-10) (-4.66744e-10 -2.78297e-10 -1.79623e-10) (-3.30074e-10 -2.70796e-10 -9.15454e-12) (-6.41577e-11 -1.11868e-10 2.89479e-11) (2.76654e-11 -3.20943e-11 -7.63505e-14) (2.62541e-10 1.9104e-11 -1.04794e-10) (6.59007e-10 3.55636e-10 -3.38072e-10) (6.4322e-10 6.88594e-10 -2.62494e-10) (3.87538e-10 6.91174e-10 5.21195e-11) (2.15034e-10 4.9811e-10 2.75315e-10) (1.14652e-10 2.36824e-10 2.68292e-10) (3.10673e-11 4.73282e-11 9.65134e-11) (-8.70843e-14 -1.0434e-12 8.92075e-12) (-1.09818e-11 -2.51035e-11 2.60329e-12) (-1.19321e-11 -1.13269e-10 2.57556e-12) (9.23192e-11 -1.84134e-10 2.7941e-11) (2.58273e-10 -1.50602e-10 2.25976e-11) (2.14749e-10 -1.81734e-11 -2.75652e-11) (3.73237e-11 2.56915e-11 -1.77555e-11) (-3.46322e-11 6.96038e-11 -1.81712e-12) (-3.29338e-10 2.97762e-10 1.27413e-10) (-5.88583e-10 3.87908e-10 3.2638e-10) (-3.52667e-10 1.31642e-10 2.25389e-10) (-6.92496e-11 -1.55053e-11 4.35688e-11) (-2.09401e-12 -2.44169e-11 -9.30146e-13) (5.13507e-11 -4.26826e-11 -3.46813e-11) (1.40304e-10 8.56765e-12 -7.18756e-11) (1.74921e-10 1.26926e-10 -5.69778e-11) (7.33768e-11 1.45359e-10 5.96013e-12) (-2.36358e-11 5.39704e-11 2.58298e-11) (-1.72102e-10 -2.00271e-11 3.65387e-11) (-6.93657e-10 -4.47473e-10 -1.22254e-10) (-1.16114e-09 -1.2301e-09 -6.45002e-10) (-9.1293e-10 -1.48387e-09 -8.4726e-10) (-2.91642e-10 -7.28017e-10 -3.38359e-10) (-9.059e-12 -6.20446e-11 -1.00898e-11) (1.7648e-11 1.93841e-11 2.64534e-11) (8.38377e-11 2.21749e-10 1.34796e-10) (1.12565e-11 1.57856e-10 3.89976e-11) (-4.17033e-11 3.42548e-11 -3.24063e-11) (-2.49072e-10 -7.53235e-11 -1.72423e-10) (-3.61342e-10 -2.93889e-10 1.01957e-10) (-5.60662e-10 -5.01461e-10 4.24437e-10) (-2.63081e-10 -4.13863e-10 5.86598e-10) (1.22291e-10 -1.61569e-10 3.71908e-10) (4.8269e-10 3.17254e-11 1.94141e-10) (1.52025e-09 5.54475e-10 -2.46448e-10) (2.53339e-09 1.31154e-09 -1.01887e-09) (1.78986e-09 1.17762e-09 -8.60166e-10) (4.10836e-10 4.21075e-10 -2.09888e-10) (-5.81922e-12 7.49683e-11 -1.08304e-11) (-1.78605e-10 7.62283e-11 1.79362e-11) (-3.83368e-10 1.11304e-11 6.70644e-11) (-1.90687e-10 -8.10802e-11 1.24383e-10) (2.65359e-11 -1.79282e-10 2.86544e-10) (4.03801e-10 -2.43004e-10 4.29353e-10) (4.4359e-10 -7.26308e-11 9.06384e-11) (2.56509e-10 4.21537e-11 -1.77213e-10) (3.80432e-11 9.38391e-11 -2.33392e-10) (-1.27416e-10 1.42986e-10 -1.51729e-10) (-2.10982e-10 2.03996e-10 -2.53037e-11) (-1.18073e-10 1.33061e-10 6.34811e-11) (-1.66177e-11 2.91384e-11 4.17946e-11) (6.9862e-12 -2.67523e-12 1.96033e-11) (1.53951e-11 -1.65675e-11 1.00862e-11) (1.85091e-11 -1.77081e-11 -3.7168e-12) (2.82018e-11 -3.76752e-12 -1.54568e-11) (8.56961e-11 5.26608e-11 -3.67752e-11) (1.53661e-10 1.70734e-10 -3.38265e-11) (6.61341e-11 1.17301e-10 -3.11698e-12) (-2.01569e-12 5.30889e-12 -1.37591e-12) (-1.3209e-10 -1.14911e-10 -7.47381e-11) (-8.03018e-10 -1.12504e-09 -5.47611e-10) (-1.49456e-09 -2.4847e-09 -9.99338e-10) (-1.44529e-09 -1.98379e-09 -7.59671e-10) (-8.01127e-10 -5.13314e-10 -2.56312e-10) (-3.58405e-10 8.60665e-11 -3.34248e-11) (-2.26964e-10 3.37347e-10 4.67484e-11) (-6.33649e-11 2.36139e-10 3.6181e-11) (-9.8072e-12 1.6064e-11 5.22093e-13) (-6.3092e-11 -4.02439e-11 -5.77867e-13) (-9.1875e-11 -1.0464e-10 9.66171e-11) (-9.13231e-11 -1.89713e-10 3.08819e-10) (7.41496e-11 -2.76125e-10 8.18227e-10) (4.45564e-10 -1.29374e-10 1.30054e-09) (6.02076e-10 2.93313e-10 1.13559e-09) (6.43857e-10 6.93611e-10 7.80561e-10) (8.49866e-10 1.04985e-09 4.95215e-10) (1.18918e-09 1.17287e-09 1.45127e-10) (1.40583e-09 9.25071e-10 -2.93904e-10) (1.14161e-09 4.38574e-10 -5.92768e-10) (4.58652e-10 4.85863e-11 -4.16414e-10) (3.42817e-11 -3.1989e-11 -6.17559e-11) (-6.28895e-11 -8.49945e-11 4.85841e-11) (-5.05137e-10 -3.82288e-10 5.44298e-10) (-5.27155e-10 -2.7226e-10 3.385e-10) (-3.16857e-10 -1.09705e-10 -1.6159e-10) (-5.56187e-10 -1.79351e-10 -9.97913e-10) (-3.81394e-10 -1.36534e-10 -7.585e-10) (-3.03924e-11 -2.16239e-12 -4.74594e-11) (2.299e-11 3.51982e-11 2.44078e-11) (2.79101e-10 2.91702e-10 2.14008e-10) (3.48745e-10 3.42647e-10 1.94865e-10) (1.11811e-10 1.03378e-10 3.6549e-11) (5.25194e-12 3.11579e-12 -2.00376e-12) (-1.14992e-13 -8.65767e-12 -1.348e-11) (5.38165e-12 -1.86101e-11 -3.28825e-11) (3.56233e-11 2.96714e-12 -3.97124e-11) (1.46311e-10 9.20651e-11 -6.62543e-11) (2.15842e-10 1.71883e-10 -4.25669e-11) (7.93287e-11 4.64755e-11 -3.10615e-12) (1.39843e-11 -2.16741e-11 3.30533e-13) (-8.38793e-11 -4.76385e-10 -5.3926e-11) (-8.63755e-10 -1.63393e-09 -4.79723e-10) (-2.33949e-09 -2.1308e-09 -1.18191e-09) (-3.27133e-09 -1.11102e-09 -1.2291e-09) (-3.04392e-09 1.63473e-10 -6.57042e-10) (-1.87613e-09 5.70301e-10 -1.44216e-10) (-6.59062e-10 2.35764e-10 2.32526e-11) (-1.54528e-10 9.12665e-12 2.58939e-11) (-7.77328e-11 -4.62008e-11 3.43285e-11) (-1.04317e-11 -1.12463e-10 1.46989e-10) (4.16373e-11 -9.01593e-11 2.1011e-10) (1.40111e-10 -2.12394e-11 3.3992e-10) (2.12509e-10 1.05821e-10 3.90958e-10) (1.90302e-10 2.18166e-10 3.19437e-10) (1.53734e-10 2.85547e-10 2.79031e-10) (1.75093e-10 3.26171e-10 2.97622e-10) (3.19303e-10 3.79474e-10 3.37009e-10) (6.40893e-10 4.87847e-10 2.90347e-10) (1.07454e-09 5.66245e-10 7.10596e-12) (1.06628e-09 3.80747e-10 -3.2898e-10) (2.79188e-10 4.86309e-11 -1.57986e-10) (-1.21096e-11 -8.22108e-12 -1.96967e-12) (-1.05825e-09 -3.33959e-10 1.68562e-10) (-3.13803e-09 -9.74143e-10 -3.55e-10) (-3.45536e-09 -1.429e-09 -2.17085e-09) (-2.36598e-09 -1.33324e-09 -2.53982e-09) (-7.23819e-10 -4.09153e-10 -6.42777e-10) (-3.3283e-11 -7.35855e-12 2.21044e-12) (5.93294e-11 7.7466e-11 1.04418e-10) (4.89889e-10 3.82362e-10 2.71213e-10) (7.22675e-10 4.87926e-10 1.21312e-10) (3.5904e-10 2.28496e-10 -4.95183e-11) (5.59268e-11 2.56951e-11 -4.14091e-11) (1.215e-11 -1.85626e-11 -4.07742e-11) (3.20683e-11 -6.90134e-11 -7.70459e-11) (1.09039e-10 -5.63626e-11 -9.39879e-11) (2.56986e-10 4.91629e-11 -1.15095e-10) (3.59397e-10 1.85698e-10 -8.14973e-11) (1.85389e-10 8.70053e-11 4.87029e-13) (1.79427e-11 -9.86524e-12 4.43347e-12) (-1.18505e-10 -2.51758e-10 -6.01679e-11) (-1.42566e-09 -1.40226e-09 -8.15341e-10) (-3.89968e-09 -2.2039e-09 -1.89994e-09) (-4.96961e-09 -1.26027e-09 -1.42051e-09) (-3.98613e-09 -2.32649e-11 -2.14186e-10) (-2.06541e-09 3.18357e-10 3.24085e-10) (-5.96187e-10 8.81138e-11 2.34029e-10) (-1.19156e-10 -3.31818e-11 1.06018e-10) (-4.35247e-11 -8.27427e-11 1.03737e-10) (8.62907e-14 -6.49359e-11 2.47211e-10) (1.43632e-11 1.3903e-11 1.43669e-10) (3.19375e-11 6.95956e-11 9.5375e-11) (4.11049e-11 1.20813e-10 4.78698e-11) (3.94172e-11 1.63456e-10 1.72414e-12) (2.99003e-11 1.51527e-10 -8.5245e-12) (3.12342e-11 1.10784e-10 2.04803e-11) (7.15946e-11 1.15113e-10 5.49217e-11) (2.09218e-10 1.73822e-10 6.96011e-11) (5.03266e-10 2.76477e-10 -1.40398e-11) (6.58782e-10 2.78528e-10 -1.56749e-10) (2.477e-10 9.581e-11 -7.85828e-11) (7.95414e-13 1.00711e-12 -2.96038e-13) (-1.84524e-10 -3.68287e-11 1.66775e-12) (-9.38219e-10 -3.5625e-10 -4.0323e-10) (-2.04859e-09 -1.1261e-09 -1.89673e-09) (-2.66886e-09 -1.44676e-09 -2.47032e-09) (-1.54401e-09 -5.92792e-10 -7.4627e-10) (-2.95371e-10 -5.35046e-11 6.52311e-11) (-8.56098e-12 3.6208e-11 1.10988e-10) (2.11552e-10 1.72274e-10 1.78722e-10) (3.84965e-10 2.85521e-10 7.07099e-11) (2.13225e-10 1.53976e-10 -6.02648e-11) (5.45779e-11 7.37308e-12 -6.29258e-11) (6.77419e-11 -1.56285e-10 -1.5738e-10) (2.08161e-10 -4.68214e-10 -2.91184e-10) (3.32344e-10 -2.94591e-10 -2.07638e-10) (4.0748e-10 6.90689e-12 -1.15312e-10) (4.91628e-10 2.77224e-10 -3.0179e-11) (2.06396e-10 1.98433e-10 2.48523e-11) (1.05854e-12 6.00276e-12 -1.25147e-12) (-2.56065e-10 -1.42001e-10 -1.74402e-10) (-1.77919e-09 -1.14853e-09 -1.18074e-09) (-3.4398e-09 -1.86683e-09 -1.81369e-09) (-3.10406e-09 -1.18284e-09 -8.58761e-10) (-1.40492e-09 -3.11627e-10 1.49785e-10) (-4.39882e-10 -4.07597e-11 4.011e-10) (-1.38086e-10 -4.20406e-11 5.55541e-10) (9.40997e-13 -1.26819e-10 5.84438e-10) (9.52832e-12 -1.45179e-10 4.21459e-10) (-1.09116e-11 1.90287e-11 5.11845e-11) (3.48525e-12 2.26853e-11 1.20023e-11) (2.45156e-11 7.23147e-11 -6.6339e-12) (7.13038e-11 1.88099e-10 -7.0896e-11) (1.13576e-10 2.71656e-10 -1.30025e-10) (1.21486e-10 2.29164e-10 -1.06296e-10) (1.22724e-10 1.56621e-10 -6.1579e-11) (1.46355e-10 1.25828e-10 -5.7588e-11) (1.98271e-10 1.25083e-10 -1.08747e-10) (2.45212e-10 1.136e-10 -1.69689e-10) (2.04864e-10 6.50196e-11 -1.16376e-10) (9.42658e-11 2.35061e-11 -8.45742e-12) (2.49663e-11 7.48149e-12 2.57958e-11) (-8.00412e-12 -2.41868e-12 1.46733e-11) (-1.67118e-10 -7.72279e-11 -7.05714e-11) (-1.13131e-09 -5.4054e-10 -1.03325e-09) (-2.0337e-09 -7.94537e-10 -1.85393e-09) (-1.07207e-09 -3.26288e-10 -6.89071e-10) (-1.10766e-10 -3.6701e-11 -4.44435e-12) (3.11679e-12 -1.24104e-12 6.05251e-11) (8.50831e-11 6.31078e-11 1.50936e-10) (8.21399e-11 9.94324e-11 8.11573e-11) (2.79296e-11 3.42849e-11 -3.57242e-12) (2.30986e-11 -1.23942e-11 -4.59026e-11) (5.37466e-11 -2.42636e-10 -1.89813e-10) (5.41127e-11 -4.32912e-10 -1.70251e-10) (3.68516e-11 -1.4442e-10 -4.55483e-11) (1.34412e-11 1.00974e-12 -9.40989e-12) (5.19184e-11 1.00893e-10 -3.3503e-11) (2.43318e-11 9.43366e-11 -2.90064e-11) (-5.69736e-12 5.81838e-12 -1.47699e-11) (-1.2377e-10 -1.33035e-10 -1.59894e-10) (-5.88951e-10 -6.49681e-10 -6.31708e-10) (-9.14484e-10 -8.99669e-10 -7.51556e-10) (-3.72036e-10 -4.03176e-10 -1.07406e-10) (-6.47051e-11 -1.76331e-10 2.75047e-10) (1.79099e-10 -2.04715e-10 1.60554e-09) (1.23946e-10 -6.14484e-11 2.2079e-09) (-9.71307e-11 3.65984e-13 1.10667e-09) (-6.48083e-11 2.04304e-11 2.89657e-10) (-2.19207e-11 3.3595e-11 -3.0602e-11) (1.64372e-11 7.14937e-11 -6.37007e-11) (1.16594e-10 1.66489e-10 -1.22883e-10) (3.19394e-10 3.75453e-10 -2.17121e-10) (5.23946e-10 5.9693e-10 -2.98224e-10) (5.91525e-10 6.23722e-10 -3.13706e-10) (5.24009e-10 4.68368e-10 -3.08845e-10) (4.00056e-10 2.7384e-10 -3.36346e-10) (2.35519e-10 8.73749e-11 -3.25529e-10) (8.31917e-11 -3.39643e-11 -1.86847e-10) (1.7062e-11 -3.20671e-11 -2.85752e-11) (1.87456e-11 -2.07134e-11 3.05832e-11) (5.84868e-11 1.26567e-11 2.15591e-10) (-5.96445e-12 4.1661e-11 1.47731e-10) (-4.66094e-11 7.24958e-12 -2.29987e-12) (-5.22698e-10 -9.75824e-11 -5.14642e-10) (-9.68734e-10 -3.07712e-10 -1.18865e-09) (-4.12821e-10 -2.18131e-10 -5.68567e-10) (-1.94573e-11 -5.27584e-11 -6.28943e-11) (2.90769e-11 -1.99647e-11 6.00974e-12) (9.48232e-11 7.71211e-12 8.74745e-11) (7.24435e-11 6.97143e-11 1.20812e-10) (7.40552e-12 2.59005e-11 2.24516e-11) (-1.65197e-12 -6.91565e-13 -7.72248e-13) (-1.04669e-10 -1.44796e-10 -1.16705e-11) (-5.31015e-10 -6.95294e-10 6.81503e-11) (-5.98424e-10 -6.12357e-10 -1.23309e-11) (-1.81615e-10 -7.30393e-11 -7.36772e-11) (-4.54258e-11 4.58083e-11 -5.64689e-11) (2.66044e-12 5.44854e-11 -5.0082e-11) (1.32948e-11 1.07886e-11 -4.21152e-11) (-1.06376e-12 -6.5849e-11 -1.30981e-10) (-1.11303e-10 -3.18296e-10 -3.33046e-10) (-7.12661e-11 -3.87533e-10 -1.50728e-10) (2.1028e-10 -3.97944e-10 3.17828e-10) (1.31227e-09 -6.01572e-10 2.67528e-09) (8.53105e-10 -4.40712e-11 4.26132e-09) (-4.29886e-10 1.04598e-10 2.08299e-09) (-3.36859e-10 4.06432e-11 3.94178e-10) (-7.52752e-11 2.4651e-11 1.13157e-11) (-3.62407e-11 1.33135e-10 -4.0698e-10) (2.85223e-10 1.99376e-10 -4.94234e-10) (6.8225e-10 3.58285e-10 -5.69364e-10) (1.01523e-09 6.62573e-10 -5.70335e-10) (1.09905e-09 9.45437e-10 -4.78216e-10) (9.27472e-10 9.34783e-10 -3.58573e-10) (6.06167e-10 5.79264e-10 -2.92116e-10) (2.63391e-10 1.80297e-10 -2.20444e-10) (5.20613e-11 -1.70941e-11 -1.11331e-10) (-4.50374e-11 -1.51151e-10 -8.6978e-11) (-1.55806e-10 -2.92355e-10 4.83126e-11) (-8.54806e-11 -1.50477e-10 2.18634e-10) (2.65178e-11 5.2616e-11 3.74985e-10) (4.76135e-11 1.59182e-10 2.19539e-10) (-5.59586e-12 3.10178e-11 -1.66185e-12) (-1.005e-10 6.1798e-12 -2.05728e-10) (-2.33187e-10 -1.79353e-10 -5.52022e-10) (-1.1046e-10 -2.51998e-10 -4.60716e-10) (2.9238e-11 -1.93821e-10 -2.87e-10) (7.25955e-11 -6.97216e-11 -1.20105e-10) (4.56139e-11 8.93403e-12 -1.22675e-11) (7.91078e-11 9.37296e-11 7.08219e-11) (2.70289e-11 1.22872e-10 1.41022e-10) (-9.12376e-11 2.04819e-11 1.37288e-10) (-7.95476e-10 -5.20438e-10 4.95333e-10) (-2.3051e-09 -2.22403e-09 8.83839e-10) (-2.84875e-09 -2.21625e-09 4.2206e-10) (-1.84353e-09 -4.93635e-10 -7.1274e-11) (-4.35395e-10 1.57641e-10 -1.18315e-10) (-1.45704e-11 1.16801e-10 -1.01345e-10) (9.12732e-11 6.05503e-11 -1.68948e-10) (7.21642e-11 -8.44258e-11 -1.95586e-10) (6.36935e-11 -2.92125e-10 -1.391e-10) (4.43527e-10 -7.11809e-10 2.93335e-10) (2.31309e-09 -1.30554e-09 2.47154e-09) (2.43719e-09 -4.71219e-10 3.99773e-09) (1.99147e-10 1.14749e-10 1.90675e-09) (-4.93982e-10 6.3827e-11 5.04235e-10) (-6.45773e-10 4.95437e-11 -2.89863e-11) (-3.59996e-10 9.26084e-11 -3.21145e-10) (1.82719e-10 1.34498e-10 -1.00063e-09) (1.34495e-09 3.30592e-10 -1.9221e-09) (1.97232e-09 5.75205e-10 -1.95825e-09) (1.55506e-09 7.75352e-10 -1.16197e-09) (1.09518e-09 8.91196e-10 -4.99904e-10) (8.3737e-10 8.57218e-10 -1.54343e-10) (4.75809e-10 4.60048e-10 -3.30106e-11) (1.00739e-10 5.85413e-11 -1.40968e-11) (3.26448e-12 -1.64697e-11 -3.75596e-12) (-1.75096e-10 -3.15712e-10 1.73196e-11) (-4.34281e-10 -5.67595e-10 1.95635e-10) (-1.87117e-10 -2.01768e-10 2.66915e-10) (9.44265e-12 5.47122e-11 2.72657e-10) (1.23003e-10 2.2123e-10 2.05658e-10) (5.20922e-11 9.05335e-11 -1.94416e-12) (1.39897e-11 1.29701e-11 -7.14252e-11) (6.33165e-12 -8.71576e-11 -2.1227e-10) (4.34529e-11 -2.06349e-10 -3.4846e-10) (8.79342e-11 -2.63924e-10 -5.09631e-10) (6.44499e-11 -1.4558e-10 -4.6046e-10) (2.43854e-11 2.19186e-11 -1.18786e-10) (3.03205e-11 8.89248e-11 6.177e-12) (3.64037e-11 2.46965e-10 2.58075e-10) (-1.89674e-10 8.21125e-11 5.78161e-10) (-8.04737e-10 -8.99812e-10 1.21393e-09) (-2.0031e-09 -2.92779e-09 1.67766e-09) (-5.57563e-09 -3.09835e-09 1.22995e-09) (-9.87085e-09 -5.81568e-10 3.67798e-10) (-3.12287e-09 8.05254e-10 -2.3154e-10) (-9.96198e-11 1.39007e-10 -1.29299e-10) (1.16303e-10 2.66771e-11 -2.0471e-10) (1.24755e-10 -1.36675e-10 -1.34538e-10) (3.20024e-10 -4.9823e-10 1.06463e-10) (1.69686e-09 -1.37218e-09 1.41163e-09) (3.15333e-09 -1.25018e-09 2.93524e-09) (1.63712e-09 -1.25567e-10 1.9675e-09) (6.59544e-11 8.1621e-11 3.58704e-10) (-3.43437e-10 6.62789e-11 7.40146e-11) (-1.05096e-09 5.27214e-11 -3.71483e-10) (-4.92494e-10 5.50504e-11 -6.17643e-10) (1.01536e-10 7.8881e-11 -7.71161e-10) (2.07533e-09 3.57888e-10 -3.01058e-09) (3.96085e-09 6.49276e-10 -4.49218e-09) (2.7198e-09 8.25497e-10 -2.59249e-09) (1.24081e-09 7.75946e-10 -7.12686e-10) (7.2963e-10 6.49342e-10 -4.29313e-11) (4.25304e-10 3.68693e-10 1.58667e-10) (1.04551e-10 4.86169e-11 8.28879e-11) (-6.29865e-13 -3.51551e-11 3.25902e-11) (-2.04585e-10 -2.90795e-10 6.14582e-11) (-3.69053e-10 -3.98861e-10 5.63252e-11) (-9.66634e-11 -9.00547e-11 7.68685e-11) (1.93874e-11 3.79911e-11 1.53166e-10) (1.81411e-10 2.18508e-10 2.4384e-10) (1.20638e-10 1.15518e-10 4.57222e-11) (3.52007e-11 1.01747e-11 -2.11032e-11) (4.93602e-11 -3.96224e-11 -7.93183e-11) (1.02525e-10 -1.39368e-10 -2.67549e-10) (1.13305e-10 -2.41033e-10 -6.85648e-10) (-6.13612e-11 -1.767e-10 -8.93053e-10) (-9.51573e-11 4.11763e-11 -3.48675e-10) (-1.83614e-11 7.89148e-11 -1.93543e-11) (-1.41549e-11 2.50384e-10 2.66546e-10) (-7.95963e-11 1.96685e-11 8.05938e-10) (-8.93285e-11 -1.44486e-09 1.84248e-09) (-1.38372e-09 -2.65832e-09 2.05638e-09) (-9.66636e-09 -2.45963e-09 1.98125e-09) (-2.00851e-08 1.16644e-09 3.72466e-10) (-4.90068e-09 1.05125e-09 -4.34674e-10) (-9.2267e-11 6.33779e-11 -9.50846e-11) (4.52056e-11 -1.72262e-11 -6.6368e-11) (1.0754e-10 -1.42303e-10 -5.64317e-12) (5.89658e-10 -6.95086e-10 4.22881e-10) (1.81355e-09 -1.29083e-09 1.33417e-09) (2.27619e-09 -8.2048e-10 1.5407e-09) (1.1654e-09 7.99385e-13 8.39795e-10) (1.09516e-10 8.41294e-11 1.42327e-10) (-1.24986e-10 5.31377e-11 2.4369e-11) (-8.03302e-10 4.32839e-11 -1.80272e-10) (-4.84716e-10 1.22466e-11 -3.68895e-10) (1.85517e-11 3.80873e-11 -2.27001e-10) (1.55963e-09 3.04135e-10 -2.0767e-09) (4.73424e-09 5.88473e-10 -5.10978e-09) (4.07347e-09 7.01304e-10 -3.93924e-09) (1.57718e-09 6.19812e-10 -1.00966e-09) (6.22785e-10 4.11761e-10 -6.81528e-12) (3.79079e-10 2.75108e-10 2.63597e-10) (1.25e-10 5.77255e-11 1.91683e-10) (-9.51535e-12 -2.64427e-11 4.73389e-11) (-1.68964e-10 -1.57703e-10 3.53002e-12) (-2.721e-10 -2.22899e-10 -7.69907e-11) (-3.31691e-11 -2.81395e-11 2.54912e-12) (3.3702e-11 2.3593e-11 7.4689e-11) (2.68905e-10 1.98507e-10 3.01339e-10) (2.28715e-10 1.28198e-10 1.44029e-10) (8.28806e-11 8.33873e-12 5.89061e-12) (7.37851e-11 -3.52447e-11 -4.5592e-11) (1.23562e-10 -9.6552e-11 -2.07063e-10) (1.10323e-10 -1.52431e-10 -6.35949e-10) (-1.80788e-10 -1.18104e-10 -9.75912e-10) (-3.07011e-10 4.35159e-11 -5.1173e-10) (-1.18388e-10 9.71454e-11 -4.05858e-11) (-1.00067e-10 1.70415e-10 2.17057e-10) (3.70451e-11 -1.53057e-10 8.37756e-10) (2.63222e-10 -2.04426e-09 2.52367e-09) (-2.65413e-09 -2.32666e-09 2.60821e-09) (-1.83944e-08 -6.20578e-10 2.62586e-09) (-2.17225e-08 2.82277e-09 -7.5373e-10) (-3.12947e-09 5.59117e-10 -4.79712e-10) (-3.04007e-11 3.63801e-12 -2.52999e-11) (1.41752e-11 -1.71831e-11 -7.03407e-12) (1.29615e-10 -1.71839e-10 6.21684e-11) (6.35173e-10 -6.67456e-10 3.71375e-10) (1.35198e-09 -9.94542e-10 6.62835e-10) (1.45159e-09 -5.96373e-10 6.68558e-10) (8.94252e-10 -1.53424e-11 4.62605e-10) (2.32057e-10 1.31587e-10 1.80117e-10) (-1.72539e-11 4.84143e-11 3.92459e-11) (-2.10872e-10 5.19531e-11 2.36615e-11) (-1.91053e-10 1.98942e-11 -6.31773e-11) (4.2227e-11 3.35927e-11 -6.57055e-11) (9.40074e-10 2.74249e-10 -9.04577e-10) (3.17934e-09 5.51088e-10 -2.79596e-09) (3.25175e-09 4.81789e-10 -2.60031e-09) (1.32093e-09 3.4316e-10 -6.99069e-10) (4.21542e-10 1.96404e-10 1.97671e-11) (2.11647e-10 1.33343e-10 1.72797e-10) (5.05671e-11 3.49563e-11 9.43815e-11) (-4.26664e-12 -2.23939e-12 5.3418e-12) (-9.15649e-11 -5.75055e-11 -4.97791e-11) (-1.44005e-10 -1.02177e-10 -1.17832e-10) (-1.06526e-11 -9.83364e-12 -7.56507e-12) (3.48125e-11 1.51141e-11 4.11169e-11) (3.29197e-10 1.58803e-10 2.89431e-10) (3.9813e-10 1.26236e-10 2.36718e-10) (2.23937e-10 -5.16495e-12 5.04092e-11) (1.5236e-10 -5.99209e-11 -3.90308e-11) (1.45616e-10 -8.06228e-11 -1.44583e-10) (9.66427e-11 -6.5372e-11 -3.53375e-10) (-1.58768e-10 -2.30997e-11 -6.15479e-10) (-5.02663e-10 6.16525e-11 -5.09835e-10) (-5.06055e-10 1.6214e-10 -8.32389e-11) (-2.63346e-10 1.04363e-10 2.19132e-10) (-2.31447e-11 -3.47481e-10 8.7523e-10) (-5.24518e-10 -2.02789e-09 2.8732e-09) (-8.2586e-09 -2.32909e-09 4.44012e-09) (-2.96939e-08 2.07345e-09 2.24359e-09) (-1.52825e-08 2.40444e-09 -1.44571e-09) (-1.02694e-09 1.29883e-10 -2.21102e-10) (-3.31366e-12 -2.13899e-12 -2.82291e-12) (1.91546e-11 -2.1583e-11 -5.47042e-13) (1.72422e-10 -1.75139e-10 2.95738e-11) (6.03629e-10 -5.32578e-10 1.31953e-10) (9.48911e-10 -7.10934e-10 3.13419e-10) (8.18142e-10 -4.36013e-10 4.53238e-10) (4.74144e-10 -6.30278e-11 4.08181e-10) (1.8059e-10 1.02892e-10 2.4754e-10) (1.39331e-11 7.76439e-11 9.80769e-11) (-2.45554e-11 2.85771e-11 2.72376e-11) (-7.67855e-12 6.88041e-12 -6.23978e-13) (5.53159e-11 5.23448e-11 -5.00743e-11) (4.75267e-10 2.15681e-10 -3.1904e-10) (1.39277e-09 3.46925e-10 -8.61101e-10) (1.38962e-09 2.32867e-10 -7.50815e-10) (5.45219e-10 1.11887e-10 -1.72117e-10) (1.44252e-10 5.39467e-11 1.81576e-11) (5.00482e-11 3.20525e-11 3.19873e-11) (1.04124e-11 8.97936e-12 6.00983e-12) (1.08397e-12 9.83859e-13 -4.25199e-12) (-1.14522e-11 -1.35107e-11 -5.46821e-11) (-2.55034e-11 -2.76448e-11 -6.84542e-11) (-1.68592e-12 -2.05093e-12 -3.55572e-12) (2.32856e-11 1.01001e-11 2.3227e-11) (2.65276e-10 9.64854e-11 1.92346e-10) (4.87255e-10 8.61324e-11 2.19663e-10) (4.35855e-10 -4.0608e-11 7.42151e-11) (3.21035e-10 -1.14939e-10 -4.42033e-11) (1.89349e-10 -8.73527e-11 -1.11585e-10) (7.03921e-11 -2.2084e-11 -1.51234e-10) (-9.3307e-11 2.81243e-11 -2.61657e-10) (-6.31936e-10 1.10494e-10 -3.82385e-10) (-1.30154e-09 2.09765e-10 -8.02027e-11) (-6.48848e-10 5.06117e-12 3.19329e-10) (-2.9593e-10 -5.71008e-10 1.08837e-09) (-2.6183e-09 -2.08401e-09 3.93849e-09) (-2.24391e-08 -1.65772e-09 7.61109e-09) (-3.59054e-08 3.65164e-09 7.18938e-10) (-7.5792e-09 1.16776e-09 -1.25549e-09) (-1.56594e-10 1.11997e-11 -6.83592e-11) (8.27257e-12 -5.31552e-12 -7.41807e-12) (1.09608e-10 -5.04733e-11 -4.25634e-11) (4.25581e-10 -2.35499e-10 -1.10178e-10) (7.43845e-10 -4.53628e-10 -5.30996e-11) (6.14695e-10 -4.2909e-10 1.8529e-10) (3.65111e-10 -2.7891e-10 4.03022e-10) (1.81209e-10 -1.01764e-10 5.3037e-10) (2.97589e-11 6.61024e-11 4.1971e-10) (-2.82344e-11 8.51871e-11 1.7362e-10) (-1.34963e-11 3.02093e-11 2.6873e-11) (9.47222e-14 1.15853e-11 -2.12312e-12) (9.87824e-12 5.12904e-11 -4.06902e-11) (1.25172e-10 1.1453e-10 -1.04132e-10) (3.29091e-10 1.39348e-10 -1.58931e-10) (2.98642e-10 6.83793e-11 -8.7181e-11) (1.04862e-10 1.83572e-11 -8.15094e-12) (2.41821e-11 6.44296e-12 3.09981e-12) (1.35953e-11 6.09993e-12 -1.5866e-12) (3.32777e-11 1.36216e-11 -2.13573e-11) (6.32669e-11 1.70948e-11 -6.8735e-11) (3.99751e-11 3.87937e-12 -7.89393e-11) (1.03155e-12 -1.35337e-12 -2.78825e-11) (-6.31212e-13 2.17381e-13 -5.74699e-13) (8.88414e-12 7.56458e-12 1.43092e-11) (1.5539e-10 4.57153e-11 1.01854e-10) (4.29199e-10 2.92353e-11 1.35839e-10) (5.15911e-10 -8.41511e-11 3.82964e-11) (3.795e-10 -1.45387e-10 -7.11618e-11) (1.82084e-10 -7.99569e-11 -1.07759e-10) (4.92882e-11 -3.16941e-12 -8.63614e-11) (-4.84842e-11 3.78708e-11 -9.42838e-11) (-6.0188e-10 1.5001e-10 -1.73841e-10) (-1.64673e-09 1.4817e-10 7.86095e-11) (-8.29466e-10 -1.76522e-10 4.19764e-10) (-8.5791e-10 -8.81678e-10 1.709e-09) (-8.51244e-09 -2.3224e-09 6.99687e-09) (-4.45043e-08 2.13857e-10 1.02119e-08) (-3.20614e-08 2.9728e-09 -9.89422e-10) (-2.44267e-09 2.91496e-10 -7.38764e-10) (4.05911e-12 -2.29211e-12 -3.68187e-11) (2.66999e-10 -4.21732e-11 -1.52703e-10) (7.43087e-10 -1.54351e-10 -3.62765e-10) (1.05687e-09 -3.15784e-10 -4.22785e-10) (7.72039e-10 -3.11782e-10 -1.62607e-10) (3.14762e-10 -1.79815e-10 7.74657e-11) (1.38475e-10 -1.33729e-10 2.57012e-10) (1.44687e-12 -1.16594e-10 6.51914e-10) (-1.73815e-10 2.24262e-11 7.58005e-10) (-1.43586e-10 8.58965e-11 3.36202e-10) (-3.78608e-11 3.59306e-11 4.129e-11) (-1.14433e-11 2.24075e-11 -7.47099e-12) (-3.62281e-11 6.35679e-11 -5.64768e-11) (-1.25248e-12 6.45744e-11 -5.24945e-11) (2.4514e-11 3.26038e-11 -1.76882e-11) (2.76896e-11 1.04282e-11 7.56073e-13) (1.89177e-11 1.56289e-13 4.81452e-12) (8.7348e-12 -1.44922e-12 3.82787e-15) (1.0544e-11 4.26804e-14 -8.24116e-12) (2.64362e-11 8.34607e-12 -3.54788e-11) (3.43863e-11 1.94082e-11 -5.98622e-11) (1.0124e-11 1.44894e-11 -3.72527e-11) (-3.859e-12 5.43961e-12 -7.66964e-12) (-3.53857e-12 3.7181e-12 1.70339e-12) (7.42382e-12 9.02428e-12 1.60436e-11) (1.09891e-10 2.14509e-11 5.83492e-11) (3.21479e-10 -9.64829e-12 5.50972e-11) (3.81511e-10 -9.17981e-11 -3.16358e-11) (2.50105e-10 -1.14612e-10 -1.04909e-10) (1.03335e-10 -5.17721e-11 -1.03788e-10) (2.14536e-11 6.48899e-12 -5.57581e-11) (-2.80776e-11 3.3669e-11 -3.21634e-11) (-3.29764e-10 1.16163e-10 -4.13436e-12) (-7.86439e-10 1.40627e-11 1.81002e-10) (-6.18574e-10 -2.98234e-10 5.40108e-10) (-2.38477e-09 -1.21745e-09 3.19154e-09) (-2.135e-08 -1.76138e-09 1.15903e-08) (-5.85714e-08 1.71398e-09 8.8808e-09) (-1.92772e-08 9.75347e-10 -1.82705e-09) (-3.88265e-10 -4.03147e-12 -3.02774e-10) (3.03663e-10 -3.36314e-11 -2.54645e-10) (1.24023e-09 -1.03341e-10 -6.17333e-10) (1.72075e-09 -2.27984e-10 -8.05171e-10) (1.40118e-09 -2.6156e-10 -5.7694e-10) (6.62572e-10 -1.60721e-10 -1.88504e-10) (1.90256e-10 -6.23314e-11 1.09052e-11) (7.3491e-11 -3.79195e-11 9.19137e-11) (3.55971e-11 -4.84448e-11 3.71752e-10) (-1.15125e-10 5.12111e-13 7.39168e-10) (-1.8898e-10 7.06265e-11 5.36745e-10) (-7.60294e-11 4.4721e-11 1.03226e-10) (-3.15249e-11 2.88126e-11 -4.73749e-12) (-4.63365e-11 4.8495e-11 -4.00073e-11) (-2.86332e-11 4.53999e-11 -3.63221e-11) (1.4594e-15 9.1982e-12 -3.50162e-12) (6.41305e-12 1.69729e-12 2.37668e-12) (1.25385e-11 -3.92458e-12 5.10364e-12) (9.1403e-13 -1.28113e-12 1.10115e-13) (-8.98013e-12 -1.53494e-12 -5.82406e-12) (-4.5484e-11 9.45776e-12 -3.20778e-11) (-3.90804e-11 2.13917e-11 -3.71329e-11) (-1.68331e-11 1.739e-11 -1.73883e-11) (-5.87195e-12 9.08098e-12 -1.49272e-12) (-6.80733e-14 7.52918e-12 6.19225e-12) (2.74882e-11 1.41323e-11 2.4209e-11) (1.36875e-10 1.37644e-11 3.89966e-11) (2.61159e-10 -2.20637e-11 -6.05211e-12) (2.37829e-10 -6.95317e-11 -7.63129e-11) (1.21391e-10 -6.90496e-11 -9.88757e-11) (3.38199e-11 -2.49443e-11 -6.75456e-11) (1.93845e-12 6.72957e-12 -2.46802e-11) (-1.48441e-11 2.375e-11 -7.99939e-12) (-8.62212e-11 4.31608e-11 2.92129e-11) (-2.30956e-10 -3.92613e-11 1.63172e-10) (-8.50946e-10 -4.67606e-10 1.09218e-09) (-6.01781e-09 -1.22004e-09 5.63834e-09) (-3.33798e-08 2.3764e-11 1.27556e-08) (-4.59382e-08 1.17352e-09 3.42245e-09) (-6.30345e-09 -2.46344e-10 -1.54308e-09) (2.62332e-11 -6.10163e-11 -2.58062e-10) (1.05961e-09 -9.76834e-11 -6.88088e-10) (2.03323e-09 -1.24054e-10 -9.94097e-10) (2.03086e-09 -1.83427e-10 -8.92102e-10) (1.21613e-09 -1.42223e-10 -4.70252e-10) (4.30938e-10 -6.1182e-11 -1.34316e-10) (9.92828e-11 -1.54916e-11 -8.3841e-12) (3.41045e-11 -6.48911e-12 2.56589e-11) (4.65415e-11 -7.12047e-12 1.44471e-10) (3.92087e-11 1.4522e-11 4.09371e-10) (-1.29339e-11 4.80318e-11 4.13252e-10) (-2.77281e-11 3.2652e-11 1.06231e-10) (-1.86385e-11 1.78137e-11 3.29266e-12) (-4.72828e-12 1.65394e-11 -1.50915e-11) (-3.74526e-12 1.49028e-11 -1.56383e-11) (9.95258e-13 1.95855e-12 -1.78646e-12) (6.50759e-13 -2.23531e-13 1.68859e-13) (-2.42988e-12 -2.02805e-12 1.6736e-12) (-8.72643e-11 -1.17812e-11 1.35079e-11) (-3.30594e-10 4.87922e-12 3.79467e-12) (-3.35547e-10 3.80486e-11 -3.70683e-11) (-1.17662e-10 3.38604e-11 -2.85967e-11) (-1.50178e-11 1.32823e-11 -4.44497e-12) (1.2299e-12 8.08528e-12 2.68992e-12) (2.82362e-11 1.99066e-11 1.97006e-11) (1.16013e-10 2.98282e-11 4.2492e-11) (2.31959e-10 1.57773e-11 1.74986e-11) (2.63773e-10 -2.08646e-11 -4.89584e-11) (1.75702e-10 -4.91161e-11 -8.072e-11) (6.38418e-11 -3.71531e-11 -5.84814e-11) (8.66645e-12 -8.83395e-12 -2.42135e-11) (-1.88097e-12 3.65179e-12 -7.84614e-12) (-7.74704e-12 1.31583e-11 -3.50643e-13) (-3.03125e-11 1.45199e-11 2.90625e-11) (-2.66647e-10 -9.16328e-11 3.26166e-10) (-2.05926e-09 -6.42984e-10 2.28011e-09) (-1.03879e-08 -5.84478e-10 7.01915e-09) (-3.12118e-08 1.20411e-09 8.11109e-09) (-1.89616e-08 -6.12309e-11 -7.16817e-10) (-8.43546e-10 -2.6981e-10 -7.59826e-10) (4.95132e-10 -1.887e-10 -7.14469e-10) (1.49001e-09 -1.19628e-10 -1.02377e-09) (1.87474e-09 -9.00931e-11 -9.67212e-10) (1.34339e-09 -9.18691e-11 -5.84204e-10) (5.41233e-10 -4.50727e-11 -1.98592e-10) (1.58574e-10 -8.55632e-12 -4.24512e-11) (6.02473e-11 9.61457e-13 -2.2129e-12) (5.12569e-11 2.66006e-12 2.23132e-11) (8.33676e-11 7.11109e-12 9.49285e-11) (1.17695e-10 2.19647e-11 2.29286e-10) (8.64829e-11 3.49985e-11 2.22411e-10) (2.11461e-11 1.95898e-11 5.36973e-11) (8.82881e-13 5.22203e-12 7.04694e-13) (3.27483e-11 1.83598e-11 -3.24689e-11) (1.34261e-11 8.598e-12 -2.10657e-11) (1.8736e-13 3.30691e-13 -2.91796e-12) (-1.51338e-11 -3.05723e-12 -9.04347e-13) (-1.52651e-10 -1.28143e-11 3.04444e-11) (-3.77441e-10 2.34049e-12 9.3638e-11) (-4.04792e-10 2.677e-11 8.71071e-11) (-1.97547e-10 2.66529e-11 2.8406e-11) (-2.99862e-11 1.12553e-11 3.53594e-12) (4.97254e-13 4.24536e-12 1.77112e-12) (3.92988e-11 2.35972e-11 1.83843e-11) (1.66457e-10 5.27082e-11 5.67743e-11) (3.19686e-10 5.51043e-11 5.41596e-11) (3.85035e-10 2.36195e-11 -1.66075e-11) (3.20448e-10 -1.88521e-11 -7.57415e-11) (1.72743e-10 -3.90579e-11 -6.51971e-11) (4.37789e-11 -1.89736e-11 -2.65344e-11) (2.18703e-12 -1.75895e-12 -5.749e-12) (-2.92509e-12 2.6891e-12 -3.18992e-12) (-9.84855e-12 8.84695e-12 3.34339e-12) (-6.82954e-11 6.57071e-12 7.24308e-11) (-7.58032e-10 -1.95444e-10 7.90421e-10) (-4.01895e-09 -6.25622e-10 3.33917e-09) (-1.20218e-08 1.60095e-10 5.80279e-09) (-1.68525e-08 8.94138e-10 2.40404e-09) (-3.14929e-09 -2.85104e-10 -1.04587e-09) (1.04106e-10 -2.92414e-10 -8.83117e-10) (9.77877e-10 -2.52214e-10 -1.25397e-09) (1.09002e-09 -7.51096e-11 -9.03847e-10) (7.8953e-10 -3.06651e-11 -4.76482e-10) (3.49439e-10 -2.09597e-11 -1.62069e-10) (1.21894e-10 -4.62382e-12 -3.48227e-11) (7.5016e-11 3.22723e-12 -3.38478e-12) (1.01455e-10 9.9376e-12 1.74858e-11) (1.6057e-10 1.65386e-11 6.39134e-11) (2.1523e-10 2.34445e-11 1.459e-10) (2.23895e-10 3.17723e-11 2.04479e-10) (1.5969e-10 3.18006e-11 1.40065e-10) (7.65137e-11 2.07431e-11 3.19698e-11) (4.31314e-11 1.68341e-11 -1.23874e-11) (6.89679e-11 1.49928e-11 -6.09235e-11) (1.30018e-11 3.623e-12 -2.42272e-11) (-7.45903e-12 -4.8645e-13 -7.25806e-12) (-9.38863e-11 -6.78803e-12 2.02092e-12) (-2.4916e-10 -4.09622e-12 7.76454e-11) (-2.1423e-10 1.32178e-11 1.24621e-10) (-6.78347e-11 1.27062e-11 6.96674e-11) (-3.63149e-12 5.31848e-12 1.9431e-11) (1.57689e-11 7.17247e-12 1.51568e-11) (7.68256e-11 2.33196e-11 3.23525e-11) (2.08704e-10 5.10165e-11 6.35886e-11) (3.84087e-10 7.03951e-11 7.80905e-11) (5.01046e-10 5.88827e-11 2.46201e-11) (4.8024e-10 2.04068e-11 -6.23077e-11) (3.25081e-10 -1.80238e-11 -8.84702e-11) (1.33055e-10 -2.3908e-11 -4.94725e-11) (2.26491e-11 -6.55962e-12 -1.41913e-11) (5.50945e-13 -1.55744e-14 -2.2037e-12) (-2.06084e-12 1.5353e-12 -5.26563e-13) (-1.57281e-11 6.25191e-12 1.26708e-11) (-1.96001e-10 -1.681e-11 1.98293e-10) (-1.52156e-09 -2.71337e-10 1.30926e-09) (-5.05914e-09 -3.69612e-10 3.24056e-09) (-8.57723e-09 4.2032e-10 2.91113e-09) (-4.08242e-09 2.07317e-10 -1.6788e-10) (-2.0553e-10 -1.39301e-10 -5.80758e-10) (6.75685e-10 -3.67924e-10 -1.47382e-09) (6.73704e-10 -1.50073e-10 -1.03054e-09) (3.97548e-10 -1.95761e-11 -4.15064e-10) (2.27276e-10 -4.40814e-12 -1.48486e-10) (1.17865e-10 -3.022e-12 -4.11069e-11) (8.64035e-11 1.59974e-12 -3.01876e-12) (1.30889e-10 9.95344e-12 2.48797e-11) (2.39592e-10 2.39575e-11 7.40607e-11) (3.46831e-10 3.41021e-11 1.45654e-10) (3.77193e-10 3.59975e-11 2.02267e-10) (3.24392e-10 3.35454e-11 1.80764e-10) (2.32639e-10 2.73495e-11 8.40087e-11) (1.62932e-10 2.17367e-11 -5.23858e-12) (1.23317e-10 2.08513e-11 -5.72162e-11) (4.3342e-10 2.15142e-11 -1.98842e-10) (1.59678e-10 5.43887e-12 -8.85007e-11) (1.53415e-11 -3.67291e-13 -1.09026e-11) (-9.45728e-13 -3.49894e-14 4.91213e-13) (-7.09005e-12 1.5116e-12 2.1191e-11) (2.64539e-11 9.53552e-12 7.93264e-11) (1.7688e-10 2.25333e-11 1.61899e-10) (4.33774e-10 3.72609e-11 2.02552e-10) (6.64678e-10 5.74463e-11 1.81342e-10) (8.40645e-10 8.58693e-11 1.59692e-10) (1.04621e-09 1.13295e-10 1.48866e-10) (1.28494e-09 1.24463e-10 9.42518e-11) (1.43105e-09 1.02213e-10 -4.46042e-11) (1.3452e-09 4.54295e-11 -1.87659e-10) (1.01329e-09 -1.24502e-11 -2.11786e-10) (5.89053e-10 -2.68144e-11 -1.39656e-10) (2.75903e-10 -8.49498e-12 -7.04893e-11) (1.18467e-10 6.34602e-12 -2.25045e-11) (5.91116e-11 9.16816e-12 6.58842e-12) (3.0851e-11 4.18826e-12 3.13637e-11) (-2.06879e-11 -1.71923e-11 1.45171e-10) (-5.04637e-10 -1.07519e-10 6.85622e-10) (-1.8365e-09 -4.71365e-11 1.29663e-09) (-1.86436e-09 1.81598e-10 5.14413e-10) (-1.61335e-10 1.21951e-11 -1.29301e-10) (3.89063e-10 -1.57176e-10 -8.38984e-10) (8.03836e-10 -2.47985e-10 -1.28805e-09) (5.48578e-10 -8.05006e-11 -6.77992e-10) (4.58239e-10 -1.61973e-11 -3.2792e-10) (4.42019e-10 -1.00794e-11 -1.69096e-10) (4.17976e-10 -6.86039e-12 -6.3129e-11) (4.93088e-10 6.89818e-12 1.69465e-11) (7.23736e-10 3.0432e-11 1.04329e-10) (1.01233e-09 5.49633e-11 2.02838e-10) (1.16974e-09 6.20196e-11 2.80944e-10) (1.14054e-09 5.42485e-11 2.86942e-10) (1.02852e-09 4.61245e-11 1.88783e-10) (9.2847e-10 4.05476e-11 2.03286e-11) (8.41372e-10 3.574e-11 -1.52204e-10) (6.90674e-10 3.22913e-11 -2.39507e-10) (4.96328e-09 4.36136e-11 -1.31928e-09) (2.88316e-09 1.78763e-11 -8.14486e-10) (1.24571e-09 5.02756e-12 -2.84105e-10) (6.00245e-10 7.9353e-12 1.08021e-11) (8.44924e-10 2.69429e-11 2.73388e-10) (2.08003e-09 7.29159e-11 7.71013e-10) (4.0747e-09 1.13288e-10 1.16422e-09) (5.92123e-09 1.59283e-10 1.20048e-09) (7.1834e-09 2.33211e-10 1.08194e-09) (8.21315e-09 3.19317e-10 1.01974e-09) (9.42477e-09 4.0055e-10 9.44597e-10) (1.08175e-08 4.44701e-10 6.61321e-10) (1.18597e-08 4.02785e-10 9.49193e-11) (1.18194e-08 2.52161e-10 -4.85178e-10) (1.04661e-08 7.88386e-11 -7.36377e-10) (8.3339e-09 7.6756e-12 -6.68551e-10) (6.24596e-09 4.30797e-11 -4.51279e-10) (4.62165e-09 1.07065e-10 -8.32196e-11) (3.32626e-09 9.45341e-11 3.333e-10) (1.94113e-09 1.03441e-11 6.13032e-10) (7.08736e-10 -4.94398e-11 6.01342e-10) (7.83546e-11 -4.14429e-11 5.24199e-10) (-1.93238e-10 1.42162e-11 3.65142e-10) (-9.56613e-12 6.10201e-12 9.85998e-12) (3.13925e-10 8.70881e-12 -2.34494e-10) (1.49673e-09 -1.64957e-10 -1.20422e-09) (1.56062e-09 -2.00937e-10 -1.33021e-09) (1.49873e-09 -1.01288e-10 -9.80718e-10) (1.83529e-09 -5.41522e-11 -7.66438e-10) (2.18747e-09 -4.81696e-11 -5.49289e-10) (2.51767e-09 -3.28572e-11 -2.91275e-10) (3.19988e-09 9.33897e-12 -2.85044e-11) (4.32869e-09 6.75407e-11 2.31316e-10) (5.54255e-09 1.1849e-10 4.56735e-10) (6.42078e-09 1.33393e-10 5.80882e-10) (6.9408e-09 1.21592e-10 4.87372e-10) (7.37581e-09 1.06012e-10 8.14615e-11) (7.71752e-09 8.97264e-11 -5.76738e-10) (7.60403e-09 7.02109e-11 -1.22581e-09) (6.68347e-09 5.97312e-11 -1.50419e-09) (8.88501e-09 -4.2011e-11 -2.9377e-09) (4.55389e-09 -1.17241e-11 -1.60529e-09) (2.15188e-09 6.81818e-12 -4.81266e-10) (1.86605e-09 1.92852e-11 1.54533e-10) (3.63901e-09 4.20872e-11 1.00905e-09) (7.29529e-09 6.11211e-11 2.02647e-09) (1.15874e-08 7.56048e-11 2.57137e-09) (1.52663e-08 1.07616e-10 2.70113e-09) (1.81812e-08 1.71637e-10 2.7687e-09) (2.10714e-08 2.5524e-10 2.9316e-09) (2.45868e-08 3.46817e-10 2.97372e-09) (2.85475e-08 4.08637e-10 2.54629e-09) (3.14868e-08 3.79101e-10 1.47891e-09) (3.1445e-08 2.40944e-10 1.51373e-10) (2.80635e-08 9.53133e-11 -8.24838e-10) (2.30645e-08 5.86997e-11 -1.13132e-09) (1.80669e-08 7.95529e-11 -6.79913e-10) (1.31191e-08 7.07484e-11 4.39439e-10) (7.7845e-09 -2.19169e-11 1.4475e-09) (3.02504e-09 -6.71481e-11 1.52457e-09) (5.55014e-10 -5.07228e-11 1.05251e-09) (-2.40919e-10 -1.76781e-11 8.67811e-10) (-6.50499e-11 1.61911e-11 2.38174e-10) (2.34307e-10 2.54023e-11 4.25535e-11) (1.9546e-09 3.32112e-11 -4.78107e-10) (2.66796e-09 -1.0308e-10 -1.10677e-09) (1.98697e-09 -1.19473e-10 -1.05007e-09) (1.74784e-09 -7.21478e-11 -8.36655e-10) (2.04121e-09 -4.81562e-11 -6.9949e-10) (2.53451e-09 -3.74689e-11 -4.95563e-10) (3.37921e-09 -1.60336e-11 -1.91449e-10) (5.00342e-09 2.7417e-11 1.99014e-10) (7.45101e-09 8.41509e-11 6.10276e-10) (1.02626e-08 1.33796e-10 8.97874e-10) (1.29156e-08 1.42554e-10 8.81916e-10) (1.5302e-08 1.20289e-10 3.62196e-10) (1.74623e-08 7.6576e-11 -7.54137e-10) (1.85561e-08 2.09835e-11 -2.21977e-09) (1.73736e-08 -3.72551e-11 -3.4054e-09) (1.37552e-08 -6.27108e-11 -3.67151e-09) (5.0301e-10 -4.99611e-12 -3.45525e-10) (2.11923e-10 -1.05977e-12 -1.48315e-10) (1.17654e-10 -1.03282e-13 -3.52756e-11) (1.95569e-10 -6.2204e-14 3.2182e-11) (4.60369e-10 -1.46493e-12 1.46216e-10) (8.23622e-10 -4.3592e-12 2.47503e-10) (1.18217e-09 -6.23851e-12 2.97116e-10) (1.48744e-09 -8.44778e-12 3.25078e-10) (1.75723e-09 -9.41443e-12 3.6167e-10) (2.0743e-09 -9.18864e-12 4.20799e-10) (2.49656e-09 -7.71649e-12 4.70359e-10) (2.96872e-09 -6.0893e-12 4.46594e-10) (3.27681e-09 -5.24171e-12 2.92682e-10) (3.22216e-09 -4.22443e-12 5.42736e-11) (2.88449e-09 -2.12309e-12 -1.38878e-10) (2.45375e-09 6.96126e-13 -1.87054e-10) (1.8697e-09 -2.64704e-12 -6.42801e-11) (1.03761e-09 -1.06353e-11 1.2648e-10) (3.33063e-10 -1.04886e-11 1.80975e-10) (2.8669e-11 -7.2996e-12 2.01005e-10) (-1.92164e-10 -7.14324e-12 3.29657e-10) (-1.92654e-10 -3.33127e-12 2.55906e-10) (-8.75506e-12 3.00291e-13 6.12009e-11) (1.21607e-10 4.99214e-12 5.86049e-11) (5.00363e-10 1.07181e-11 4.11061e-11) (4.71498e-10 -1.01983e-12 -3.64019e-11) (2.06448e-10 -4.31794e-12 -4.88332e-11) (1.03093e-10 -2.71143e-12 -3.42317e-11) (9.95179e-11 -1.76235e-12 -2.70612e-11) (1.41363e-10 -1.05373e-12 -1.44825e-11) (2.40881e-10 1.8953e-13 1.59952e-11) (4.3937e-10 2.72756e-12 6.99552e-11) (7.48536e-10 5.82944e-12 1.29953e-10) (1.13372e-09 8.5285e-12 1.6137e-10) (1.53987e-09 7.41355e-12 1.31371e-10) (1.91397e-09 4.10965e-12 1.47019e-11) (2.1719e-09 -9.46314e-13 -1.8955e-10) (2.11876e-09 -6.23257e-12 -4.14809e-10) (1.66458e-09 -1.08011e-11 -5.49936e-10) (1.02446e-09 -1.08402e-11 -5.1325e-10) (2.68252e-10 4.87292e-10 -1.0811e-10) (5.6041e-11 1.69422e-10 -8.85256e-11) (-2.62678e-12 1.46728e-11 -3.48798e-11) (-1.47371e-11 -4.40573e-11 -6.84952e-11) (-2.40693e-11 -1.63949e-10 -1.68097e-10) (-3.08775e-11 -1.6567e-10 -1.82106e-10) (-2.58971e-11 -4.77942e-11 -7.1023e-11) (-1.21982e-11 3.44517e-12 -9.98566e-12) (-3.7386e-11 5.36926e-11 7.40505e-12) (-6.33049e-11 1.34152e-10 5.06328e-11) (-3.36054e-11 9.74371e-11 5.66949e-11) (-1.12887e-12 2.0653e-11 2.50378e-11) (9.30066e-12 -3.97842e-12 1.46783e-11) (3.89108e-11 -4.005e-11 2.20487e-11) (7.48437e-11 -8.18889e-11 1.15167e-11) (7.64909e-11 -7.9306e-11 -5.16407e-12) (4.54035e-11 -4.6229e-11 -2.62909e-12) (1.66481e-11 -1.86849e-11 8.60215e-12) (6.22249e-12 -8.81356e-12 2.45956e-11) (-7.395e-12 1.35044e-11 7.48792e-11) (-2.88217e-11 7.8911e-11 1.32137e-10) (-2.46261e-11 1.27512e-10 1.24066e-10) (2.24182e-12 9.58406e-11 5.61979e-11) (1.18718e-11 4.61203e-11 4.57033e-12) (5.84777e-12 2.81942e-11 -2.0695e-11) (-2.67235e-11 2.4911e-11 -5.67833e-11) (-1.70954e-10 -1.03355e-11 -1.17392e-10) (-4.9672e-10 -1.80642e-10 -1.10412e-10) (-6.91894e-10 -4.0911e-10 5.49049e-11) (-4.47093e-10 -3.72291e-10 1.43532e-10) (-1.0646e-10 -1.42348e-10 4.48456e-11) (-2.36314e-12 -4.00848e-11 -1.34985e-11) (4.15566e-11 -6.78034e-11 -9.04917e-11) (5.65359e-11 -9.17514e-11 -1.40134e-10) (1.04208e-11 -4.41907e-11 -4.57788e-11) (-1.40169e-12 -4.48932e-12 4.42878e-13) (-3.23191e-12 4.78632e-12 2.70801e-11) (3.41044e-11 7.60515e-11 1.05674e-10) (1.75992e-10 2.5772e-10 1.41346e-10) (3.5127e-10 5.09051e-10 3.36543e-11) (3.69557e-11 9.60509e-11 -1.69165e-10) (2.26926e-11 3.692e-11 -1.23209e-10) (5.07407e-12 -1.27915e-12 -7.47642e-11) (-1.32934e-12 -2.29625e-11 -7.30633e-11) (-1.24059e-12 -3.01621e-11 -6.758e-11) (2.71477e-12 -1.06598e-11 -2.61995e-11) (3.62637e-12 1.68956e-12 -2.88007e-12) (4.34582e-11 5.02495e-11 2.04705e-11) (1.53394e-10 2.30047e-10 1.38839e-10) (1.78695e-10 3.33053e-10 2.29093e-10) (1.00304e-10 1.98278e-10 1.62862e-10) (3.68265e-11 4.34325e-11 6.09971e-11) (1.84428e-11 -6.60507e-12 2.02026e-11) (3.93969e-11 -5.73126e-11 1.30949e-11) (7.34789e-11 -1.45203e-10 -2.65253e-11) (6.25342e-11 -1.51757e-10 -6.79437e-11) (1.36076e-11 -6.60625e-11 -3.8495e-11) (-5.85547e-12 -1.07093e-11 -2.94187e-12) (-3.81515e-11 -1.26959e-13 2.32659e-11) (-1.64004e-10 7.45786e-11 1.43418e-10) (-2.58323e-10 1.96656e-10 2.6137e-10) (-1.73816e-10 1.80414e-10 1.90964e-10) (-3.69272e-11 6.17681e-11 4.57379e-11) (2.3444e-12 1.04092e-11 -2.00303e-13) (2.85714e-11 1.67108e-11 -2.66334e-11) (4.73739e-11 1.8507e-11 -5.68415e-11) (1.02675e-11 5.89845e-12 -2.23173e-11) (-2.90352e-12 3.03891e-13 -1.80542e-12) (-3.34842e-11 -4.52955e-12 1.0198e-11) (-4.17589e-11 -1.24511e-11 1.55119e-11) (-1.31598e-11 -1.46893e-11 -4.13547e-12) (-9.24855e-12 -9.93584e-11 -7.64458e-11) (-3.38143e-11 -3.80293e-10 -2.49999e-10) (-1.23666e-10 -5.28798e-10 -2.16682e-10) (-1.22474e-10 -2.49425e-10 -2.73152e-12) (-1.11821e-10 -5.52482e-11 1.13689e-10) (-2.35348e-10 1.25294e-10 3.4985e-10) (-2.04196e-10 2.50699e-10 2.94566e-10) (-4.90323e-11 1.27105e-10 3.12595e-11) (3.68751e-12 1.01093e-10 -7.88694e-11) (-1.06152e-10 -5.4293e-11 -1.32688e-11) (-2.38068e-11 -1.10742e-11 -3.42694e-12) (6.03444e-13 -3.08376e-13 -1.16952e-12) (7.25252e-11 1.03186e-11 -5.09336e-11) (2.91006e-10 7.55999e-11 -2.16242e-10) (3.55207e-10 1.67651e-10 -2.79607e-10) (2.14729e-10 2.14149e-10 -1.22726e-10) (1.55246e-10 3.17628e-10 4.3985e-11) (1.86676e-10 5.12956e-10 2.85128e-10) (2.15786e-10 4.64046e-10 3.87052e-10) (1.46139e-10 2.00952e-10 2.17389e-10) (4.19131e-11 3.17582e-11 4.57708e-11) (4.4022e-12 -1.6231e-12 1.67567e-12) (1.08512e-11 -2.61012e-11 -1.12091e-11) (4.87831e-11 -8.77144e-11 -4.77366e-11) (1.17329e-10 -1.16493e-10 -6.88914e-11) (1.04254e-10 -7.36197e-11 -3.41413e-11) (1.25678e-11 -1.03467e-11 2.68941e-12) (-2.74544e-11 3.54445e-12 2.89119e-11) (-3.87175e-10 1.32921e-10 2.26213e-10) (-7.56452e-10 2.73246e-10 3.62362e-10) (-3.87826e-10 1.06825e-10 1.70724e-10) (-3.70772e-11 -2.55553e-12 1.33664e-11) (1.75961e-12 -5.76318e-12 -2.95612e-12) (3.21242e-11 -1.1012e-11 -2.27596e-11) (6.91209e-11 2.72141e-11 -3.68297e-11) (1.00958e-10 1.16031e-10 -3.16415e-11) (7.40575e-11 1.64399e-10 4.6561e-12) (1.03918e-11 7.61333e-11 1.92745e-11) (-4.23207e-12 4.23523e-12 2.84059e-12) (-4.78752e-11 -5.10064e-11 -1.64281e-11) (-3.37314e-10 -5.30037e-10 -2.34356e-10) (-8.2697e-10 -1.3802e-09 -5.93832e-10) (-8.33526e-10 -1.27845e-09 -4.53845e-10) (-3.23088e-10 -3.55457e-10 -8.10705e-11) (-6.07411e-11 -1.0442e-11 1.60611e-11) (-5.77934e-11 5.41402e-11 5.49054e-11) (-5.21874e-11 4.37585e-11 4.85106e-11) (-5.02338e-11 -2.25552e-12 1.54793e-11) (-1.08645e-10 -5.15739e-11 -5.87119e-12) (-7.50562e-11 -7.58951e-11 2.65525e-11) (-3.99475e-11 -2.58982e-11 3.41069e-11) (-3.02669e-12 -2.54654e-12 2.39279e-11) (5.66119e-11 1.27769e-11 2.46691e-11) (4.74076e-10 1.22101e-10 -7.01057e-11) (1.21048e-09 3.97813e-10 -3.97741e-10) (1.15984e-09 5.43615e-10 -3.7617e-10) (4.46166e-10 3.59108e-10 -4.35447e-11) (8.07408e-11 1.90906e-10 9.06556e-11) (-5.53882e-11 1.73303e-10 1.49577e-10) (-1.25744e-10 1.40984e-10 1.17257e-10) (-8.92413e-11 6.46592e-11 3.3111e-11) (-1.62079e-11 5.88133e-12 1.68368e-12) (3.56638e-12 -3.94348e-12 1.26528e-12) (1.833e-10 -8.03739e-11 2.8862e-11) (4.67625e-10 -1.33782e-10 1.81074e-11) (1.77016e-10 -4.71604e-11 -1.26768e-11) (1.12974e-13 -1.39991e-13 -1.86575e-14) (-1.0161e-10 3.51187e-11 1.7534e-11) (-2.34125e-10 1.21331e-10 3.3906e-11) (-8.38023e-11 6.12415e-11 3.19058e-12) (-1.68829e-12 2.67482e-12 -1.51585e-12) (9.92179e-12 -4.36326e-12 -6.11413e-12) (2.8324e-11 -1.95846e-11 -1.17707e-11) (1.26299e-11 -9.46763e-12 -4.08209e-12) (1.65032e-12 2.49236e-13 1.54535e-14) (1.07322e-11 2.58372e-11 6.69676e-12) (5.32079e-11 1.4512e-10 3.34501e-11) (7.72509e-11 1.84131e-10 3.13208e-11) (2.05429e-11 3.95774e-11 -3.72298e-12) (-3.5725e-12 -1.28657e-11 -1.87893e-11) (-2.64407e-10 -5.34541e-10 -2.87523e-10) (-1.24955e-09 -2.11784e-09 -6.98406e-10) (-2.0253e-09 -2.54164e-09 -6.89651e-10) (-1.58115e-09 -1.03345e-09 -3.71829e-10) (-8.56158e-10 -3.51488e-11 -1.12567e-10) (-4.30522e-10 1.75718e-10 2.24933e-11) (-1.3731e-10 5.04952e-11 4.10684e-11) (-5.73301e-11 -2.60192e-11 2.24123e-11) (-7.78239e-11 -8.94544e-11 2.12185e-11) (-5.042e-14 -1.78921e-12 1.46662e-12) (3.90012e-12 1.41634e-11 2.16194e-11) (4.15997e-11 1.09978e-10 1.39166e-10) (1.86926e-10 2.42345e-10 3.1268e-10) (5.26779e-10 3.81566e-10 4.61529e-10) (1.06826e-09 5.54175e-10 5.33203e-10) (1.34961e-09 6.10447e-10 4.51521e-10) (8.51426e-10 4.0009e-10 2.05612e-10) (1.77635e-10 1.10571e-10 2.04903e-11) (-6.19677e-13 7.17617e-12 -3.14139e-12) (-1.20698e-10 1.10095e-11 -2.41828e-11) (-3.10961e-10 -1.78281e-11 1.4532e-11) (-1.64542e-10 -2.30258e-11 8.62185e-11) (-1.54871e-11 -7.40849e-12 7.72747e-11) (5.37125e-11 7.56551e-12 4.27622e-11) (8.39427e-11 1.62979e-11 -3.80526e-11) (1.95379e-11 -6.34714e-12 -1.48808e-10) (-2.10203e-10 -9.26906e-11 -2.53484e-10) (-3.44499e-10 -1.35139e-10 -1.37871e-10) (-7.84955e-11 -2.94148e-11 1.94323e-13) (1.2425e-12 3.50836e-13 2.16481e-12) (8.4e-11 2.32459e-11 1.24506e-11) (2.05364e-10 4.02264e-11 -1.99534e-11) (1.78225e-10 2.02912e-11 -4.80022e-11) (8.33146e-11 5.18445e-12 -3.4292e-11) (2.85475e-11 6.34389e-12 -1.45384e-11) (1.90012e-11 1.88903e-11 -8.51151e-12) (4.19788e-11 8.07892e-11 -1.03523e-11) (7.64551e-11 1.53589e-10 -1.1114e-11) (4.95184e-11 7.1952e-11 -8.8501e-12) (4.35382e-12 -1.55015e-12 -1.74357e-12) (-3.91383e-11 -2.37161e-10 -3.22017e-11) (-6.82213e-10 -1.33571e-09 -2.59553e-10) (-2.4466e-09 -2.34253e-09 -8.07303e-10) (-4.03082e-09 -1.6881e-09 -1.01869e-09) (-3.60779e-09 -3.25339e-10 -5.6151e-10) (-1.78928e-09 9.86877e-11 -1.1991e-10) (-4.69796e-10 -3.50089e-11 -6.47644e-12) (-8.38532e-11 -5.77141e-11 -9.72978e-13) (-1.23919e-11 -2.89956e-11 7.8353e-13) (2.29166e-12 1.27691e-11 1.97395e-11) (5.66973e-11 1.2567e-10 6.576e-11) (2.60358e-10 3.93602e-10 1.28924e-10) (5.46112e-10 6.43482e-10 2.12351e-10) (7.53569e-10 7.50854e-10 3.63749e-10) (7.90072e-10 6.45834e-10 5.15899e-10) (6.58207e-10 4.00876e-10 5.24241e-10) (4.15095e-10 1.59863e-10 3.26685e-10) (1.7108e-10 3.49569e-11 9.52247e-11) (3.14604e-11 9.60305e-13 2.52796e-12) (-2.05367e-13 -7.99748e-13 -1.56916e-12) (-5.945e-11 -1.08249e-11 2.10549e-12) (-2.77147e-10 -2.54248e-11 1.03753e-10) (-2.38464e-10 -1.78583e-11 1.0278e-10) (-4.51479e-11 -1.15499e-11 -1.79251e-11) (-7.31969e-11 -1.04283e-10 -3.43015e-10) (-2.58834e-10 -3.18554e-10 -8.63858e-10) (-4.45623e-10 -3.11358e-10 -5.9486e-10) (-2.37448e-10 -1.22152e-10 -1.35944e-10) (-1.17348e-11 -5.42207e-12 -3.6617e-13) (2.23267e-11 1.03021e-11 1.04565e-11) (2.24583e-10 1.03434e-10 4.05821e-11) (3.74049e-10 1.52412e-10 2.33731e-11) (2.98611e-10 7.20858e-11 -4.95213e-12) (1.89669e-10 -4.16578e-12 -1.94733e-11) (1.32328e-10 -2.41948e-11 -3.23467e-11) (9.44038e-11 3.70891e-12 -3.95421e-11) (9.23892e-11 6.77928e-11 -5.19596e-11) (1.14725e-10 1.71391e-10 -5.64294e-11) (8.43932e-11 1.27567e-10 -1.18384e-11) (1.07554e-11 5.74255e-12 2.40884e-12) (-2.84462e-11 -9.15774e-11 -1.01781e-11) (-1.03932e-09 -1.14179e-09 -4.09672e-10) (-4.84381e-09 -2.78268e-09 -1.39649e-09) (-8.48014e-09 -2.45931e-09 -1.13261e-09) (-7.13426e-09 -9.52446e-10 5.98696e-11) (-3.02864e-09 -3.12829e-10 3.13651e-10) (-6.46262e-10 -1.64833e-10 1.21331e-10) (-8.49824e-11 -5.81386e-11 3.92437e-11) (-8.46672e-12 -9.04041e-12 1.57564e-11) (-6.43931e-11 1.84377e-10 1.65338e-10) (-5.9002e-11 4.13133e-10 1.93759e-10) (1.16599e-10 6.85253e-10 1.32276e-10) (4.73405e-10 9.26931e-10 -3.39178e-11) (7.65756e-10 9.3173e-10 -1.63915e-10) (6.52099e-10 5.58025e-10 -5.30791e-11) (3.58878e-10 1.99063e-10 5.44062e-11) (1.47817e-10 3.47824e-11 5.25387e-11) (4.52655e-11 -5.14804e-12 1.84244e-11) (7.03149e-12 -4.28799e-12 2.4792e-12) (-6.34347e-13 -1.8801e-12 1.22048e-12) (-1.76006e-11 -6.72743e-12 1.50702e-11) (-4.39785e-11 -1.00532e-11 4.02561e-11) (-1.41822e-11 -7.1422e-12 7.05386e-12) (-1.8959e-11 -5.14384e-11 -8.33611e-11) (-2.02145e-10 -3.57813e-10 -8.7703e-10) (-9.37942e-10 -5.4681e-10 -1.64645e-09) (-1.2562e-09 -2.77691e-10 -1.05657e-09) (-4.5637e-10 -3.63994e-11 -1.67325e-10) (-1.30992e-11 1.56047e-12 8.23621e-12) (9.30227e-11 2.5638e-11 8.16057e-11) (4.17388e-10 9.38081e-11 1.82171e-10) (4.5626e-10 7.36623e-11 9.41237e-11) (2.08993e-10 -6.43518e-12 -1.86162e-11) (5.46636e-11 -3.0099e-11 -4.84536e-11) (7.34549e-12 -3.27789e-11 -6.78905e-11) (4.14704e-12 -6.48345e-13 -4.88086e-11) (6.33934e-11 6.31226e-11 -4.79784e-11) (3.45477e-10 2.86197e-10 2.24745e-12) (4.8819e-10 3.03899e-10 1.46517e-10) (1.2712e-10 3.03564e-11 5.84687e-11) (-2.18752e-11 -4.46764e-11 -1.03883e-11) (-1.38241e-09 -9.00771e-10 -5.50195e-10) (-5.70623e-09 -2.45995e-09 -1.35791e-09) (-8.22643e-09 -2.86087e-09 -5.71908e-10) (-5.29459e-09 -1.83545e-09 4.64632e-10) (-1.45242e-09 -6.32875e-10 5.03555e-10) (-2.04782e-10 -1.34959e-10 2.46398e-10) (-3.08008e-11 -1.49128e-11 1.54323e-10) (-2.51317e-11 5.58557e-11 1.34689e-10) (2.11217e-11 4.00289e-10 5.1171e-11) (1.90813e-11 6.69877e-10 2.19952e-11) (1.04915e-10 8.69822e-10 -3.43147e-11) (3.39912e-10 9.78242e-10 -2.00906e-10) (6.4721e-10 8.9222e-10 -3.79079e-10) (7.14195e-10 5.57351e-10 -3.58686e-10) (4.36351e-10 1.74893e-10 -1.76464e-10) (1.32608e-10 2.3713e-12 -4.81511e-11) (1.68711e-11 -1.68696e-11 -8.13815e-12) (-9.01667e-12 -3.51602e-11 3.74334e-12) (-4.18187e-11 -7.25385e-11 4.48483e-11) (-3.36546e-11 -7.00692e-11 9.01303e-11) (4.1649e-12 -3.55235e-11 7.41267e-11) (8.76796e-12 -7.39122e-12 9.43403e-12) (1.0288e-11 -1.99813e-11 -6.27145e-11) (-3.08888e-10 -1.17512e-10 -8.75286e-10) (-1.59801e-09 -1.24009e-10 -2.04832e-09) (-1.7597e-09 -5.54737e-13 -1.33322e-09) (-3.24339e-10 8.51786e-12 -1.23693e-10) (4.19485e-12 1.12916e-12 2.06806e-11) (3.2787e-10 2.40135e-11 3.02976e-10) (5.67427e-10 5.0488e-11 3.46632e-10) (2.12918e-10 1.40956e-11 4.26498e-11) (1.04499e-11 -3.93295e-12 -2.98097e-11) (-2.04022e-10 -6.89054e-11 -2.10803e-10) (-2.99634e-10 -1.33973e-10 -1.72324e-10) (-6.9592e-12 -1.37256e-11 -5.22444e-12) (2.04281e-10 2.54899e-11 3.61522e-11) (9.10948e-10 3.66583e-10 1.99739e-10) (6.29345e-10 3.33527e-10 1.78602e-10) (3.62204e-11 2.13749e-11 9.05848e-12) (-7.57684e-11 -4.51328e-11 -4.47538e-11) (-1.1597e-09 -7.05575e-10 -4.37171e-10) (-3.5106e-09 -2.14295e-09 -6.84573e-10) (-4.8166e-09 -3.13779e-09 -1.21274e-10) (-2.36629e-09 -2.00143e-09 7.70872e-10) (-4.23611e-10 -6.87382e-10 9.27654e-10) (1.08014e-10 -1.40755e-10 9.31356e-10) (1.30803e-10 1.57903e-10 4.42223e-10) (5.56951e-11 2.27877e-10 1.38265e-10) (1.66531e-10 7.03644e-10 -2.33368e-10) (3.37649e-10 9.51894e-10 -2.91769e-10) (5.36969e-10 1.09799e-09 -2.89692e-10) (8.27169e-10 1.24364e-09 -4.01818e-10) (1.0793e-09 1.11201e-09 -5.7525e-10) (1.07066e-09 6.88755e-10 -6.03725e-10) (6.41915e-10 1.98752e-10 -3.88705e-10) (1.53341e-10 -3.23781e-11 -1.17893e-10) (-2.61096e-12 -7.79878e-11 -2.73515e-11) (-2.42219e-10 -3.65747e-10 7.15905e-11) (-4.72218e-10 -5.8224e-10 3.06152e-10) (-1.98581e-10 -2.83574e-10 2.67506e-10) (4.29875e-12 -3.70182e-11 8.67622e-11) (3.5009e-11 1.22203e-11 1.58357e-11) (6.68894e-11 6.11985e-11 -9.70655e-11) (-9.4565e-11 1.7786e-10 -6.06339e-10) (-7.71472e-10 1.94045e-10 -1.0936e-09) (-8.30906e-10 -4.55971e-12 -6.51414e-10) (-1.33566e-10 -4.65849e-11 -7.81179e-11) (1.02882e-11 -9.5632e-12 2.18503e-12) (2.26761e-10 -3.10284e-12 7.83921e-11) (2.83625e-10 7.39268e-11 9.60558e-11) (2.87333e-11 2.63714e-11 3.68207e-12) (-6.28269e-11 2.54825e-11 -2.37515e-11) (-3.10926e-10 -5.07722e-11 1.16078e-11) (-2.22665e-10 -2.30084e-10 2.11345e-10) (-9.94026e-12 -2.66903e-10 2.49647e-10) (1.63366e-11 -2.52662e-11 1.77907e-11) (1.95078e-11 1.80049e-11 -2.02321e-11) (4.69312e-11 7.70807e-11 -8.54838e-11) (2.09334e-11 2.74301e-11 -6.18073e-11) (-1.32085e-11 -2.05151e-11 -3.36914e-11) (-4.05675e-10 -3.75134e-10 -9.38391e-11) (-2.74658e-09 -2.10608e-09 -6.55361e-11) (-3.8248e-09 -3.50721e-09 7.9124e-10) (-1.18721e-09 -2.14773e-09 1.88516e-09) (2.12492e-10 -9.87783e-10 2.81461e-09) (2.6526e-10 1.26523e-10 1.70256e-09) (3.26609e-11 2.69794e-10 3.01241e-10) (3.95468e-11 3.90047e-10 -2.09071e-11) (3.49868e-10 7.76828e-10 -6.47916e-10) (6.55013e-10 9.77734e-10 -4.88866e-10) (1.00729e-09 1.35674e-09 -3.65952e-10) (1.26748e-09 1.47801e-09 -4.16774e-10) (1.35473e-09 1.22e-09 -5.5231e-10) (1.12562e-09 6.72246e-10 -5.45845e-10) (5.12111e-10 1.40276e-10 -2.8714e-10) (5.88978e-11 -3.39773e-11 -4.6629e-11) (-9.57967e-11 -2.0687e-10 6.91017e-12) (-7.75076e-10 -9.2874e-10 2.69821e-10) (-9.71256e-10 -1.09004e-09 4.23707e-10) (-2.59188e-10 -3.37794e-10 1.91892e-10) (5.43004e-12 -1.03586e-11 2.50084e-11) (1.36888e-10 9.35553e-11 2.16477e-11) (2.97569e-10 3.00012e-10 -1.59956e-10) (1.16878e-10 2.73836e-10 -3.06295e-10) (-9.1014e-11 1.07531e-10 -2.26548e-10) (-1.52972e-10 -4.97421e-11 -1.59823e-10) (-1.04609e-10 -1.91016e-10 -1.649e-10) (1.26232e-11 -1.386e-10 -1.40713e-10) (3.32129e-11 8.3941e-13 -5.22119e-11) (3.94071e-11 1.0534e-10 -3.19815e-11) (-3.06586e-11 2.0177e-10 2.72178e-11) (-1.32798e-10 1.27987e-10 1.38423e-10) (-3.57279e-10 -1.75795e-10 6.76272e-10) (-8.01978e-10 -1.35067e-09 1.75553e-09) (-7.12529e-10 -1.18737e-09 7.93565e-10) (-1.75257e-10 -1.89565e-10 -6.66129e-11) (-2.33959e-11 3.11595e-11 -3.08867e-10) (2.49228e-10 2.4202e-10 -5.03554e-10) (2.23189e-10 1.27208e-10 -1.87336e-10) (2.93411e-12 -2.21367e-13 -9.84115e-13) (-5.58045e-10 -3.68427e-10 8.93368e-11) (-3.5651e-09 -2.60009e-09 4.17957e-10) (-2.53316e-09 -3.46852e-09 1.60361e-09) (-2.12554e-10 -2.48148e-09 3.08557e-09) (3.42089e-10 -7.35371e-10 2.7085e-09) (-4.06181e-11 1.21306e-10 5.47548e-10) (-4.71293e-11 1.36808e-10 -2.29606e-12) (2.36523e-11 4.64747e-10 -3.85774e-10) (8.37646e-10 7.58611e-10 -1.60152e-09) (8.81756e-10 9.06265e-10 -9.8505e-10) (8.36799e-10 1.07252e-09 -4.73119e-10) (1.02064e-09 1.22853e-09 -3.50319e-10) (1.16129e-09 1.07149e-09 -3.57568e-10) (8.66524e-10 5.66175e-10 -2.57851e-10) (2.61199e-10 1.01323e-10 -6.22033e-11) (7.80395e-12 -6.89e-12 2.40429e-12) (-1.46696e-10 -2.26652e-10 9.38091e-11) (-6.24309e-10 -8.02064e-10 2.24474e-10) (-5.04128e-10 -7.23247e-10 7.75686e-11) (-8.23423e-11 -1.60579e-10 5.32599e-12) (3.59898e-12 -9.12109e-13 2.87972e-12) (1.50578e-10 1.34055e-10 4.38257e-11) (3.51002e-10 3.93001e-10 -8.79839e-12) (1.82822e-10 2.61933e-10 -8.38357e-11) (1.36962e-11 3.10425e-11 -3.36442e-11) (-2.60229e-11 -7.01207e-11 -9.51333e-11) (-1.62481e-10 -5.4677e-10 -5.29353e-10) (-2.34496e-10 -4.68191e-10 -7.19844e-10) (-1.48833e-10 3.80178e-11 -3.38886e-10) (-1.42171e-10 3.41104e-10 -1.48956e-10) (-1.3515e-10 5.0582e-10 1.58067e-10) (-1.07023e-10 3.09445e-10 6.88575e-10) (-2.71807e-10 -5.98064e-10 2.25525e-09) (-8.65749e-10 -2.27787e-09 2.96532e-09) (-1.1483e-09 -1.50705e-09 9.15811e-10) (-7.98641e-10 -4.05066e-10 -2.36426e-10) (-2.27988e-10 6.08116e-11 -4.9714e-10) (2.8208e-10 3.17626e-10 -5.67503e-10) (2.47144e-10 1.86018e-10 -1.56685e-10) (-2.76463e-12 1.56314e-12 1.35601e-12) (-9.44239e-10 -4.46641e-10 1.06272e-10) (-2.33662e-09 -2.2331e-09 5.36863e-10) (-9.81007e-10 -3.05994e-09 1.80717e-09) (3.34681e-10 -2.20813e-09 2.70378e-09) (1.41888e-10 -4.03489e-10 1.25029e-09) (-3.31952e-11 2.4482e-11 8.71769e-11) (-3.84908e-11 7.74592e-11 -1.01878e-10) (2.14284e-10 3.85386e-10 -9.78492e-10) (1.69797e-09 5.16535e-10 -2.94824e-09) (1.9592e-09 9.93534e-10 -2.79164e-09) (1.05703e-09 9.90749e-10 -1.16054e-09) (7.12832e-10 8.7706e-10 -4.01076e-10) (6.71896e-10 7.18474e-10 -1.12887e-10) (5.08012e-10 4.32787e-10 3.50396e-11) (1.80552e-10 1.23679e-10 7.72194e-11) (1.72194e-11 -1.8242e-12 4.61586e-11) (-7.41207e-11 -1.29835e-10 1.05644e-10) (-2.65296e-10 -4.39421e-10 5.92694e-11) (-2.38748e-10 -4.48943e-10 -1.36198e-10) (-4.32929e-11 -9.94536e-11 -7.0993e-11) (2.54102e-12 1.52068e-12 -8.43287e-13) (1.4284e-10 1.53665e-10 7.69794e-11) (3.74171e-10 4.01162e-10 1.92164e-10) (2.51599e-10 2.46176e-10 8.65424e-11) (4.60014e-11 1.99171e-11 -6.54697e-12) (2.86829e-11 -1.00803e-10 -1.23438e-10) (-2.69081e-10 -7.12433e-10 -8.98052e-10) (-8.79711e-10 -7.16451e-10 -1.41878e-09) (-6.84538e-10 6.47327e-11 -7.01296e-10) (-3.14982e-10 3.91069e-10 -1.32814e-10) (-1.29689e-10 5.42245e-10 3.08676e-10) (6.56621e-11 3.91387e-10 1.29717e-09) (3.52426e-10 -9.68034e-10 3.18776e-09) (-2.75473e-13 -2.08088e-09 2.80304e-09) (-9.84835e-10 -9.16199e-10 6.44599e-10) (-2.69326e-09 -4.22279e-10 -5.73624e-10) (-1.23244e-09 2.17424e-10 -8.81266e-10) (-2.33455e-11 1.84777e-10 -2.61703e-10) (6.37328e-11 1.05061e-10 -5.67377e-11) (-1.40671e-11 6.38738e-12 -6.28339e-13) (-4.01195e-10 -2.68139e-10 1.0358e-11) (-6.05674e-10 -1.42685e-09 2.90834e-10) (1.00124e-10 -2.40464e-09 1.19754e-09) (4.9817e-10 -1.60647e-09 1.64466e-09) (1.34309e-10 -3.17239e-10 7.53581e-10) (-1.1874e-11 8.4281e-14 5.61628e-11) (-4.93632e-12 1.20209e-11 -3.89793e-11) (3.47079e-10 1.29563e-10 -9.71533e-10) (1.57014e-09 1.92629e-10 -2.50285e-09) (2.61238e-09 6.7042e-10 -3.78948e-09) (1.531e-09 8.97724e-10 -2.0429e-09) (6.10508e-10 5.97346e-10 -5.40424e-10) (3.43778e-10 3.87161e-10 -3.17062e-11) (3.05285e-10 3.34841e-10 1.86922e-10) (2.09916e-10 2.14873e-10 2.75743e-10) (5.29916e-11 3.55006e-11 1.69519e-10) (-1.88822e-11 -4.50884e-11 5.64281e-11) (-1.19289e-10 -2.08704e-10 -4.45376e-11) (-2.26206e-10 -3.60308e-10 -3.21421e-10) (-7.8215e-11 -1.02041e-10 -1.88321e-10) (4.27065e-12 6.65373e-12 -8.16522e-12) (1.74809e-10 1.76108e-10 1.03945e-10) (5.70902e-10 4.49141e-10 4.10292e-10) (5.2174e-10 2.93073e-10 3.17644e-10) (1.91432e-10 2.11978e-11 4.0301e-11) (9.5648e-11 -1.00327e-10 -1.13817e-10) (-1.71198e-10 -5.09084e-10 -7.68077e-10) (-1.16924e-09 -6.82923e-10 -1.50432e-09) (-1.39613e-09 -2.07689e-11 -9.13367e-10) (-6.21354e-10 3.65117e-10 -7.79571e-11) (-2.34893e-10 4.65512e-10 4.09845e-10) (1.49411e-10 2.94366e-10 1.51898e-09) (1.09311e-09 -1.25128e-09 3.54144e-09) (3.39933e-10 -1.42261e-09 2.24174e-09) (-1.0357e-09 -3.63924e-10 3.99863e-10) (-5.19813e-09 1.31368e-10 -1.26413e-09) (-2.84658e-09 4.01705e-10 -1.40177e-09) (-1.94417e-10 1.38797e-10 -1.91837e-10) (1.04115e-12 4.6542e-11 -1.94639e-11) (-1.21553e-12 1.40244e-12 -1.42279e-12) (-1.41748e-11 -1.11783e-10 -2.9704e-11) (2.35125e-10 -1.0414e-09 -1.53838e-11) (6.6233e-10 -1.80835e-09 5.74529e-10) (5.25323e-10 -1.25947e-09 1.17399e-09) (1.78663e-10 -3.93045e-10 8.73198e-10) (7.96671e-12 -2.58369e-11 1.645e-10) (8.18813e-13 1.74521e-13 -1.56374e-12) (2.27836e-10 2.02023e-11 -4.59353e-10) (8.11529e-10 1.14304e-10 -1.3206e-09) (1.39353e-09 3.52761e-10 -2.20469e-09) (9.1629e-10 4.39328e-10 -1.31863e-09) (3.49431e-10 2.77257e-10 -3.16909e-10) (1.6478e-10 1.78369e-10 1.96939e-11) (1.87162e-10 2.60504e-10 2.49169e-10) (1.74479e-10 2.61979e-10 4.03222e-10) (5.56421e-11 7.14517e-11 1.87734e-10) (-8.71901e-13 -4.0588e-12 6.95621e-12) (-6.0762e-11 -1.07296e-10 -1.06071e-10) (-2.16458e-10 -2.8952e-10 -4.94153e-10) (-1.13966e-10 -8.69865e-11 -2.80243e-10) (9.42359e-13 9.21172e-12 -1.27083e-11) (1.6246e-10 1.46792e-10 9.96759e-11) (7.53154e-10 4.07099e-10 5.11407e-10) (9.69928e-10 2.82978e-10 5.47446e-10) (5.73407e-10 -6.49509e-13 1.63569e-10) (2.22169e-10 -1.0613e-10 -8.95742e-11) (1.09283e-11 -2.30778e-10 -3.85972e-10) (-8.20106e-10 -3.84568e-10 -9.80522e-10) (-2.07625e-09 -5.90044e-11 -9.35692e-10) (-1.74588e-09 4.57836e-10 1.04955e-11) (-6.5963e-10 4.17427e-10 6.15318e-10) (7.39862e-11 2.61008e-11 1.56607e-09) (1.13156e-09 -1.37747e-09 3.59547e-09) (-2.07907e-10 -6.77861e-10 1.57425e-09) (-2.02067e-09 5.86761e-11 2.70677e-10) (-5.79906e-09 7.51091e-10 -1.97091e-09) (-2.69335e-09 3.48618e-10 -1.42435e-09) (-2.05197e-10 8.78957e-11 -1.5769e-10) (5.56662e-12 2.1792e-11 -1.59497e-11) (6.98702e-11 -3.59713e-12 -4.81991e-11) (4.80155e-10 -3.72589e-10 -2.85911e-10) (1.01174e-09 -1.17143e-09 -3.28193e-10) (7.55022e-10 -1.23276e-09 3.04352e-10) (4.05021e-10 -9.76924e-10 1.04089e-09) (1.67071e-10 -5.35478e-10 1.2333e-09) (4.74784e-11 -9.78028e-11 3.81709e-10) (7.09756e-12 -2.40804e-12 5.42098e-12) (1.39861e-10 7.28409e-12 -2.01462e-10) (2.75737e-10 9.42356e-11 -5.77408e-10) (3.33491e-10 1.77793e-10 -7.68034e-10) (1.76602e-10 1.34487e-10 -3.16634e-10) (6.07734e-11 6.17769e-11 -3.46136e-11) (4.99727e-11 7.91843e-11 6.18509e-11) (6.40528e-11 1.78631e-10 2.43768e-10) (6.63134e-11 1.75113e-10 2.67551e-10) (3.30271e-11 4.5085e-11 6.82936e-11) (3.71852e-12 -2.32657e-13 -2.59649e-12) (2.04871e-12 -6.53598e-11 -1.63856e-10) (-1.04909e-10 -1.59583e-10 -4.39074e-10) (-1.04759e-10 -4.70237e-11 -2.29209e-10) (-5.67526e-12 7.56622e-12 -1.19685e-11) (8.18017e-11 6.91614e-11 5.12985e-11) (6.55135e-10 2.33229e-10 3.87741e-10) (1.20265e-09 1.47328e-10 5.65091e-10) (1.00727e-09 -6.13262e-11 2.61548e-10) (4.55271e-10 -1.15619e-10 -7.15026e-11) (7.85952e-11 -7.89539e-11 -1.74176e-10) (-4.69762e-10 -1.13322e-10 -4.84871e-10) (-2.67698e-09 4.5651e-11 -7.28075e-10) (-3.62291e-09 4.64517e-10 3.43601e-10) (-1.38077e-09 2.33474e-10 1.01604e-09) (-1.07311e-10 -3.54962e-10 1.89307e-09) (1.46073e-10 -1.21653e-09 3.5059e-09) (-1.45524e-09 -2.96851e-10 1.66525e-09) (-3.88014e-09 6.79524e-10 -1.94465e-10) (-3.87332e-09 7.87993e-10 -2.08036e-09) (-1.07235e-09 1.74569e-10 -9.56276e-10) (-3.87805e-11 3.1014e-11 -1.19951e-10) (1.575e-10 3.2266e-11 -1.28971e-10) (9.36422e-10 -1.45487e-10 -4.93651e-10) (1.78251e-09 -7.80132e-10 -8.57849e-10) (1.27678e-09 -9.39145e-10 -4.25541e-10) (4.49977e-10 -5.63176e-10 1.66178e-10) (2.39531e-10 -5.85432e-10 7.77062e-10) (1.48858e-10 -5.55173e-10 1.31205e-09) (9.51973e-11 -1.9314e-10 5.66096e-10) (2.39899e-11 -1.44255e-11 2.60398e-11) (7.1567e-11 3.21052e-12 -8.98184e-11) (4.4724e-11 4.88276e-11 -1.7972e-10) (2.39305e-11 7.19771e-11 -1.81762e-10) (8.37545e-12 2.75153e-11 -3.17266e-11) (3.11256e-12 1.64004e-11 1.02757e-11) (-1.04227e-11 6.66197e-11 1.22037e-10) (-2.34827e-11 1.09505e-10 2.07745e-10) (1.28019e-11 6.45138e-11 9.33475e-11) (2.28705e-11 1.79645e-11 7.84977e-12) (5.76727e-11 7.51344e-12 -5.45876e-11) (6.75069e-11 -3.13274e-11 -1.99887e-10) (-3.43909e-11 -5.02418e-11 -2.35441e-10) (-8.91212e-11 -1.29607e-11 -1.24778e-10) (-1.958e-11 8.13765e-12 -1.29121e-11) (1.56121e-11 1.48827e-11 1.25001e-11) (3.47841e-10 6.97604e-11 1.80726e-10) (9.09336e-10 2.75142e-12 3.39463e-10) (9.31374e-10 -1.02079e-10 1.53533e-10) (4.539e-10 -7.58805e-11 -9.168e-11) (4.8932e-11 -1.2714e-11 -9.29722e-11) (-3.56854e-10 2.41964e-11 -2.35512e-10) (-2.61397e-09 1.93791e-10 -2.1995e-10) (-3.81563e-09 1.97228e-10 8.53759e-10) (-1.4757e-09 -1.66786e-10 1.32885e-09) (-4.80707e-10 -8.09134e-10 2.67504e-09) (-1.82216e-09 -1.01033e-09 4.10955e-09) (-5.3329e-09 1.88654e-10 2.50467e-09) (-4.7505e-09 9.87338e-10 -1.02575e-09) (-1.40023e-09 4.24438e-10 -1.52049e-09) (-7.158e-11 7.39354e-11 -6.52746e-10) (3.15198e-10 1.61243e-11 -4.26687e-10) (1.03912e-09 -7.65121e-11 -6.32994e-10) (1.78921e-09 -3.90112e-10 -8.54866e-10) (1.54735e-09 -6.0407e-10 -6.89043e-10) (6.80898e-10 -3.91918e-10 -2.14987e-10) (2.20892e-10 -1.78222e-10 6.08939e-11) (1.81904e-10 -2.12651e-10 3.36171e-10) (2.10772e-10 -3.11739e-10 7.50723e-10) (1.5711e-10 -1.95667e-10 4.79014e-10) (4.1074e-11 -2.8756e-11 4.79348e-11) (1.957e-11 8.40396e-15 -2.21315e-11) (6.553e-12 1.45723e-11 -2.8183e-11) (1.38882e-12 1.94634e-11 -2.30838e-11) (-1.18283e-12 7.80917e-12 6.75779e-13) (-1.84096e-11 2.66666e-11 5.35063e-11) (-6.79321e-11 5.48129e-11 1.87496e-10) (-5.04349e-11 4.52863e-11 1.41351e-10) (-3.48221e-12 1.12767e-11 1.79785e-11) (4.55715e-12 4.37665e-12 -4.15778e-12) (3.15033e-11 9.95291e-12 -6.14407e-11) (1.87309e-11 2.74503e-13 -1.00506e-10) (-2.81064e-11 -3.26839e-12 -7.1324e-11) (-6.07052e-11 4.08122e-12 -4.30442e-11) (-2.18416e-11 6.57344e-12 -6.12384e-12) (2.40178e-12 1.97207e-12 2.0827e-12) (1.4033e-10 3.42608e-12 5.00704e-11) (4.22978e-10 -5.00201e-11 8.23177e-11) (3.90378e-10 -7.15793e-11 -1.89382e-11) (1.28458e-10 -1.76976e-11 -7.22128e-11) (-3.79626e-12 1.08897e-11 -4.7051e-11) (-2.75946e-10 7.76956e-11 -8.37092e-11) (-1.31295e-09 1.5644e-10 2.08195e-10) (-1.69278e-09 -7.65877e-11 8.86135e-10) (-1.01697e-09 -4.7563e-10 1.55935e-09) (-1.60957e-09 -1.06416e-09 3.75315e-09) (-6.34939e-09 -6.50436e-10 5.79505e-09) (-9.82241e-09 7.96695e-10 2.09711e-09) (-2.96805e-09 5.64522e-10 -1.39313e-09) (-1.00593e-10 1.68121e-10 -1.19499e-09) (9.8525e-10 5.83251e-11 -1.35886e-09) (1.79636e-09 -8.82231e-11 -1.29671e-09) (1.97743e-09 -2.6653e-10 -1.00933e-09) (1.50054e-09 -3.68969e-10 -6.68261e-10) (7.68893e-10 -2.80106e-10 -3.39027e-10) (2.74301e-10 -1.24099e-10 -9.25062e-11) (9.90134e-11 -5.10584e-11 1.59099e-11) (1.01386e-10 -6.4407e-11 1.11712e-10) (1.43311e-10 -1.07852e-10 2.52698e-10) (1.16903e-10 -8.89429e-11 1.90367e-10) (3.46313e-11 -1.88623e-11 3.08276e-11) (5.55495e-12 3.20379e-13 -3.21647e-12) (4.94971e-12 6.07945e-12 -4.80627e-12) (2.71416e-12 6.9725e-12 -9.09127e-13) (-1.14775e-12 1.18535e-11 1.45927e-11) (-2.95046e-11 2.64307e-11 9.52623e-11) (-7.98972e-11 2.25274e-11 1.65847e-10) (-8.72387e-11 1.18942e-11 9.86554e-11) (-5.48556e-11 8.18256e-12 1.78673e-11) (-2.89547e-11 7.30002e-12 -1.4957e-11) (-1.59979e-11 7.26804e-12 -3.22824e-11) (-9.6147e-12 4.37503e-12 -2.73703e-11) (-1.22544e-11 2.49084e-12 -1.28289e-11) (-1.48774e-11 3.10453e-12 -5.37505e-12) (-1.95436e-12 9.16289e-13 -3.59147e-13) (4.79321e-12 5.03538e-13 3.41597e-13) (7.58049e-11 -1.01385e-11 2.00938e-12) (1.31149e-10 -3.32723e-11 -1.33311e-11) (6.23335e-11 -2.19928e-11 -3.14932e-11) (8.23367e-12 -1.26447e-12 -2.857e-11) (-2.44184e-11 1.69652e-11 -3.06324e-11) (-1.03266e-10 4.45873e-11 6.2136e-12) (-3.26058e-10 3.74649e-11 2.30749e-10) (-6.29503e-10 -1.95339e-10 8.56405e-10) (-1.30947e-09 -7.30304e-10 2.35454e-09) (-4.3149e-09 -8.96873e-10 5.06657e-09) (-1.02987e-08 1.85746e-10 5.46508e-09) (-6.76213e-09 5.64852e-10 6.10188e-11) (-6.72381e-10 9.19703e-11 -1.07645e-09) (1.16558e-09 4.48142e-11 -2.05788e-09) (3.00057e-09 1.10334e-12 -2.48503e-09) (3.10847e-09 -1.6208e-10 -1.74057e-09) (2.05654e-09 -2.81927e-10 -9.06937e-10) (9.87391e-10 -2.36896e-10 -3.97735e-10) (3.61555e-10 -1.18519e-10 -1.54765e-10) (1.09315e-10 -3.87099e-11 -4.38075e-11) (3.50336e-11 -1.22398e-11 -1.37771e-12) (2.89681e-11 -1.32295e-11 2.03676e-11) (4.15169e-11 -2.45628e-11 5.28601e-11) (3.68657e-11 -2.24924e-11 4.75371e-11) (1.35127e-11 -4.79312e-12 1.05521e-11) (3.87045e-12 1.01394e-12 -6.61768e-13) (9.4752e-12 6.99563e-12 -1.00855e-12) (1.01885e-11 9.65261e-12 6.1041e-12) (7.80074e-12 1.3452e-11 3.07341e-11) (-2.10708e-11 1.29339e-11 8.27449e-11) (-1.09099e-10 4.29069e-12 1.2171e-10) (-2.687e-10 1.48509e-12 1.12264e-10) (-3.30799e-10 1.08705e-11 2.64301e-11) (-1.60157e-10 1.29552e-11 -3.2297e-11) (-3.07264e-11 5.15607e-12 -1.85289e-11) (-3.4776e-12 1.22285e-12 -3.6803e-12) (-5.90593e-13 2.81485e-13 -3.10867e-13) (-5.26346e-14 6.739e-14 8.80406e-15) (1.83072e-12 3.81698e-13 -1.20004e-13) (2.75529e-11 -9.45632e-13 -3.55281e-12) (6.58551e-11 -1.20668e-11 -1.05143e-11) (4.32788e-11 -1.64799e-11 -1.41242e-11) (7.70558e-12 -7.66343e-12 -1.37247e-11) (-9.87991e-12 -3.10733e-13 -2.39548e-11) (-1.92275e-11 1.00359e-11 -1.29301e-11) (-2.68153e-11 1.38042e-11 2.41628e-11) (-1.64133e-10 -2.12563e-11 3.62432e-10) (-7.86297e-10 -3.54729e-10 1.50186e-09) (-2.70672e-09 -7.28534e-10 3.31628e-09) (-6.17828e-09 -2.64344e-10 4.58407e-09) (-6.35609e-09 4.15212e-10 1.94617e-09) (-1.08022e-09 5.37162e-11 -5.87655e-10) (6.66795e-10 -1.23968e-10 -1.99791e-09) (3.09984e-09 -1.30844e-10 -3.45659e-09) (3.54281e-09 -2.74752e-11 -2.5589e-09) (2.50735e-09 -1.27321e-10 -1.30414e-09) (1.10509e-09 -1.68082e-10 -4.81037e-10) (2.87521e-10 -8.32774e-11 -1.33112e-10) (5.69397e-11 -2.32308e-11 -3.77288e-11) (1.65638e-11 -5.23909e-12 -1.28379e-11) (9.89306e-12 -1.6431e-12 -3.03852e-12) (1.26377e-11 -2.97627e-12 4.07205e-12) (1.86424e-11 -6.56717e-12 1.44606e-11) (1.60273e-11 -5.27993e-12 1.4358e-11) (7.85096e-12 -3.63128e-13 4.25568e-12) (6.19893e-12 2.46762e-12 -1.81576e-13) (2.64911e-11 1.06615e-11 3.31578e-12) (2.32347e-11 1.09235e-11 1.4793e-11) (9.21141e-12 7.74628e-12 2.906e-11) (-3.14e-11 4.59798e-12 5.36719e-11) (-2.09018e-10 -9.24271e-13 1.05485e-10) (-4.95603e-10 -1.93283e-12 1.07038e-10) (-4.17464e-10 5.62612e-12 3.79875e-11) (-1.12332e-10 4.43588e-12 2.33516e-13) (-5.41743e-12 5.79946e-13 -1.69864e-13) (8.82459e-14 4.83434e-14 1.35332e-13) (3.47516e-12 3.70676e-13 2.33471e-12) (1.51012e-11 1.06146e-12 5.45152e-12) (5.05311e-11 1.87516e-12 5.40407e-12) (1.02294e-10 -3.58735e-12 -7.41467e-13) (9.77899e-11 -1.60945e-11 -6.39473e-12) (3.0158e-11 -1.23496e-11 -1.00123e-11) (1.36592e-13 -5.60921e-12 -1.29904e-11) (-2.40564e-11 -4.73191e-13 -2.90632e-11) (-1.399e-11 3.70265e-12 -2.06443e-12) (-4.70624e-11 6.10632e-12 1.00949e-10) (-3.59404e-10 -1.02809e-10 8.5844e-10) (-1.61135e-09 -4.1463e-10 2.20187e-09) (-3.7246e-09 -4.33097e-10 3.07111e-09) (-4.04501e-09 8.7211e-11 1.9739e-09) (-8.91091e-10 7.63761e-11 -7.50533e-11) (3.54736e-10 -9.2777e-11 -1.25372e-09) (3.40804e-09 -4.78744e-10 -4.54827e-09) (3.30683e-09 -1.82346e-10 -3.38292e-09) (1.73991e-09 -4.3324e-12 -1.32603e-09) (5.99153e-10 -3.91382e-11 -3.72799e-10) (9.53207e-11 -2.64422e-11 -6.97024e-11) (7.22013e-12 -7.51318e-12 -1.36346e-11) (1.90005e-12 -2.28855e-12 -6.38821e-12) (6.67193e-12 -3.99092e-13 -4.70951e-12) (2.49455e-11 3.37139e-13 -7.36533e-13) (4.37767e-11 -2.61026e-12 1.33431e-11) (4.29905e-11 -4.89891e-12 2.22351e-11) (3.02184e-11 -1.86577e-12 1.60007e-11) (2.11093e-11 2.32307e-12 5.95206e-12) (2.21661e-11 6.44954e-12 8.78811e-13) (5.06609e-11 1.09291e-11 9.20106e-12) (2.63354e-11 6.80929e-12 1.58056e-11) (2.11059e-12 2.49087e-12 1.45029e-11) (-4.96756e-11 1.76434e-12 3.71028e-11) (-2.6335e-10 -2.57198e-12 8.07249e-11) (-3.56049e-10 -1.88453e-12 8.73659e-11) (-1.33777e-10 7.57812e-13 4.82209e-11) (-8.79527e-12 1.3462e-13 1.04048e-11) (7.41591e-12 -2.56561e-13 1.05768e-11) (4.27758e-11 -8.40032e-13 2.8284e-11) (8.70712e-11 4.43895e-14 4.15331e-11) (1.37948e-10 2.65791e-12 4.06894e-11) (1.94346e-10 2.33519e-12 2.47271e-11) (1.97094e-10 -8.63046e-12 2.4603e-12) (9.82091e-11 -1.63651e-11 -1.23593e-11) (1.29443e-11 -6.72062e-12 -1.15079e-11) (-1.1691e-11 -6.16299e-12 -2.5096e-11) (-3.13992e-11 -1.2906e-12 -2.10929e-11) (-2.59952e-11 -7.04686e-14 1.83425e-11) (-1.48505e-10 -2.52909e-11 3.52206e-10) (-7.29128e-10 -1.61219e-10 1.28842e-09) (-2.08483e-09 -3.01088e-10 2.03573e-09) (-2.69605e-09 -1.39095e-10 1.5512e-09) (-8.17129e-10 4.16534e-11 1.47333e-10) (7.67998e-11 1.76969e-12 -3.76768e-10) (3.12748e-09 -3.79549e-10 -4.08806e-09) (3.68974e-09 -4.98212e-10 -4.47236e-09) (1.35564e-09 -7.17398e-11 -1.54171e-09) (3.17326e-10 4.52845e-12 -3.05342e-10) (4.76266e-11 -4.78306e-12 -4.57223e-11) (2.6721e-12 -2.96347e-12 -7.47112e-12) (-3.51252e-13 -1.81918e-12 -3.59945e-12) (2.11834e-12 -5.98433e-13 -1.94081e-12) (2.95428e-11 1.21469e-12 -1.71163e-13) (1.01578e-10 4.7106e-12 2.39131e-11) (1.35314e-10 4.65116e-13 4.99629e-11) (1.13092e-10 -1.85396e-12 4.77791e-11) (8.27132e-11 1.86672e-12 2.90389e-11) (6.6185e-11 6.71141e-12 1.22425e-11) (6.0735e-11 1.03899e-11 4.90295e-12) (4.58527e-10 2.52724e-11 2.10463e-11) (2.78523e-10 1.53949e-11 4.33851e-11) (7.18778e-11 4.09895e-12 2.57002e-11) (1.697e-12 2.25744e-13 3.69092e-12) (-1.05832e-11 -4.19377e-14 8.49426e-12) (-9.14503e-12 1.99631e-13 1.47408e-11) (1.37873e-11 5.85048e-13 2.90234e-11) (1.26284e-10 -6.85897e-13 8.34291e-11) (3.15248e-10 -4.8667e-12 1.31727e-10) (4.56824e-10 -6.67003e-12 1.49008e-10) (5.61503e-10 -2.31727e-12 1.40646e-10) (6.76439e-10 4.67575e-12 1.02215e-10) (7.61024e-10 1.33838e-12 3.67511e-11) (6.73062e-10 -2.05607e-11 -2.91159e-11) (3.81186e-10 -3.30061e-11 -6.446e-11) (1.1883e-10 -1.83481e-11 -5.52193e-11) (2.32073e-11 -5.14595e-12 -2.5206e-11) (2.45807e-12 -5.76315e-13 -9.74413e-13) (1.9755e-11 -6.79279e-12 5.53041e-11) (2.36676e-11 -4.6216e-11 4.32193e-10) (-2.56995e-10 -9.52122e-11 8.207e-10) (-6.63092e-10 -8.71105e-11 7.71407e-10) (-3.69103e-10 -8.96419e-12 2.05127e-10) (2.78755e-12 2.72155e-12 -2.73322e-11) (1.78359e-09 -7.09423e-11 -1.83876e-09) (4.503e-09 -4.24342e-10 -4.49647e-09) (2.69958e-09 -3.03485e-10 -2.71123e-09) (9.61039e-10 -4.05639e-11 -8.10168e-10) (3.62433e-10 -1.36935e-12 -2.05648e-10) (1.4414e-10 -9.84794e-12 -6.08765e-11) (6.40665e-11 -1.00804e-11 -2.5463e-11) (7.10008e-11 -8.0675e-12 -1.85801e-11) (1.93977e-10 -2.61569e-12 -1.00069e-11) (4.85249e-10 1.46559e-11 4.17964e-11) (7.60456e-10 2.27198e-11 1.1881e-10) (8.09706e-10 1.01119e-11 1.44292e-10) (7.25057e-10 3.72696e-12 1.13907e-10) (6.45297e-10 1.10089e-11 6.32312e-11) (5.96644e-10 2.19399e-11 1.76498e-11) (5.49262e-10 2.75222e-11 7.74165e-13) (4.80846e-09 5.65579e-11 -1.43165e-10) (3.22538e-09 4.34124e-11 -1.6023e-11) (1.4749e-09 2.17538e-11 3.10681e-11) (4.57103e-10 5.61165e-12 3.19676e-11) (2.18282e-10 3.64672e-13 5.4597e-11) (4.12526e-10 1.31094e-12 1.71885e-10) (1.10703e-09 2.33849e-12 4.16713e-10) (2.05961e-09 -1.3541e-11 6.08572e-10) (2.83846e-09 -2.96763e-11 6.92342e-10) (3.44748e-09 -3.37237e-11 7.30486e-10) (4.1141e-09 -2.01476e-11 7.16537e-10) (4.89269e-09 -5.72104e-14 6.03101e-10) (5.41738e-09 -1.28928e-11 3.75085e-10) (5.01582e-09 -7.47416e-11 8.0519e-11) (3.53899e-09 -1.09198e-10 -1.74771e-10) (1.86557e-09 -7.45568e-11 -2.37523e-10) (8.84703e-10 -3.24177e-11 -1.02641e-10) (5.66939e-10 -3.33043e-11 1.13616e-10) (6.31697e-10 -6.32177e-11 5.0096e-10) (5.15232e-10 -9.51739e-11 9.24192e-10) (9.09753e-11 -7.28928e-11 8.05511e-10) (-5.97742e-11 -2.18194e-11 2.95863e-10) (9.96708e-12 -3.46696e-13 8.01846e-12) (1.0166e-09 -3.65106e-12 -5.11911e-10) (5.38485e-09 -2.07906e-10 -3.28673e-09) (6.95086e-09 -4.64128e-10 -4.68049e-09) (4.76039e-09 -3.41987e-10 -3.05269e-09) (3.07523e-09 -1.16836e-10 -1.52088e-09) (2.24929e-09 -5.45961e-11 -7.8782e-10) (1.67203e-09 -6.63966e-11 -4.69005e-10) (1.41965e-09 -6.9306e-11 -3.24854e-10) (1.77307e-09 -5.20975e-11 -2.50045e-10) (2.90433e-09 -1.01645e-11 -1.4571e-10) (4.54613e-09 4.71418e-11 3.09321e-11) (5.91562e-09 6.53501e-11 1.71068e-10) (6.56485e-09 3.6821e-11 1.81656e-10) (6.74578e-09 2.0168e-11 8.20128e-11) (6.72478e-09 3.69936e-11 -7.65597e-11) (6.46375e-09 6.02898e-11 -2.18249e-10) (5.85285e-09 6.15743e-11 -2.45733e-10) (8.22491e-09 -2.18211e-12 -7.68424e-10) (4.2756e-09 8.48413e-12 -4.18649e-10) (1.59467e-09 5.69576e-12 -1.14719e-10) (6.36864e-10 1.05839e-12 3.72796e-11) (6.57634e-10 -2.67913e-12 1.91049e-10) (1.44929e-09 -2.09623e-12 5.17222e-10) (2.82326e-09 -8.66255e-12 8.53874e-10) (4.17335e-09 -3.11005e-11 1.03298e-09) (5.30061e-09 -5.10253e-11 1.15955e-09) (6.49564e-09 -6.10092e-11 1.30568e-09) (8.06392e-09 -5.75381e-11 1.42658e-09) (9.76195e-09 -4.98978e-11 1.39777e-09) (1.0452e-08 -7.11582e-11 1.06694e-09) (8.81878e-09 -1.09591e-10 4.32075e-10) (5.43761e-09 -9.08927e-11 -1.13267e-10) (2.53906e-09 -4.53698e-11 -1.69474e-10) (1.10229e-09 -2.96253e-11 6.06704e-11) (6.29882e-10 -4.63124e-11 3.36672e-10) (4.25992e-10 -7.93616e-11 7.93813e-10) (9.3786e-12 -9.0946e-11 1.1607e-09) (-2.52712e-10 -4.28686e-11 8.0069e-10) (-1.38857e-11 -2.82694e-12 1.21392e-10) (2.58371e-10 2.00763e-12 1.40863e-13) (2.89631e-09 -1.68286e-11 -8.80853e-10) (6.94789e-09 -1.88065e-10 -2.86292e-09) (7.1246e-09 -3.37306e-10 -3.62505e-09) (4.80223e-09 -2.73146e-10 -2.6758e-09) (3.21118e-09 -1.43119e-10 -1.66819e-09) (2.39419e-09 -8.7615e-11 -1.07552e-09) (1.96926e-09 -7.24462e-11 -7.29433e-10) (2.13198e-09 -6.20176e-11 -5.22016e-10) (3.36462e-09 -4.3191e-11 -3.70863e-10) (6.05705e-09 -3.20041e-13 -1.75091e-10) (9.79178e-09 5.62671e-11 1.73028e-11) (1.33858e-08 7.75062e-11 7.17953e-11) (1.58809e-08 5.17674e-11 -3.53276e-11) (1.70785e-08 2.68637e-11 -2.63362e-10) (1.69163e-08 2.3391e-11 -5.71282e-10) (1.52098e-08 1.33221e-11 -8.4906e-10) (1.21314e-08 -8.3755e-12 -9.39886e-10) (4.70881e-10 -3.67254e-12 -1.29362e-10) (1.67495e-10 -1.22374e-12 -5.31699e-11) (4.87137e-11 -4.96516e-13 -1.03247e-11) (2.72343e-11 -3.33986e-13 3.28805e-12) (5.09682e-11 -4.79901e-13 1.90799e-11) (1.21825e-10 -3.751e-13 4.23088e-11) (2.18662e-10 -4.90418e-13 5.76056e-11) (3.09179e-10 -1.58513e-12 6.42945e-11) (3.95234e-10 -2.58812e-12 7.67948e-11) (5.0245e-10 -3.61401e-12 1.0192e-10) (6.40446e-10 -4.47275e-12 1.33764e-10) (7.54881e-10 -5.23413e-12 1.47878e-10) (7.22771e-10 -5.41282e-12 1.09684e-10) (5.06525e-10 -4.06005e-12 3.27084e-11) (2.60451e-10 -1.54118e-12 -1.32049e-11) (1.09215e-10 -7.84937e-13 -9.69627e-12) (3.94971e-11 -1.15683e-12 6.36639e-12) (1.25041e-11 -2.21266e-12 2.50217e-11) (-3.69057e-11 -6.93526e-12 1.08619e-10) (-1.41296e-10 -9.13493e-12 2.14022e-10) (-8.99702e-11 -2.73238e-12 1.2765e-10) (-4.72829e-13 -4.92017e-15 1.86413e-11) (7.13019e-11 1.02757e-12 2.22258e-11) (4.35129e-10 3.26555e-12 1.3341e-11) (8.28028e-10 -3.66079e-12 -9.85912e-11) (6.37333e-10 -1.23586e-11 -2.03888e-10) (2.71084e-10 -1.22055e-11 -1.67133e-10) (1.17827e-10 -7.2866e-12 -1.10613e-10) (7.46672e-11 -4.37973e-12 -7.40829e-11) (7.34401e-11 -2.89623e-12 -5.00164e-11) (1.22617e-10 -2.29968e-12 -3.68702e-11) (2.90016e-10 -1.42222e-12 -2.19503e-11) (6.40715e-10 1.35169e-12 2.13384e-12) (1.14874e-09 5.28856e-12 1.9017e-11) (1.68263e-09 6.83607e-12 1.55419e-11) (2.0671e-09 4.40521e-12 -6.95545e-12) (2.18836e-09 9.21388e-13 -4.83029e-11) (1.99956e-09 -2.17026e-12 -1.11724e-10) (1.53574e-09 -5.8957e-12 -1.71925e-10) (9.6217e-10 -6.71023e-12 -1.83472e-10) (5.51315e-11 3.44532e-10 3.90923e-11) (-2.25885e-11 7.39971e-11 -1.91286e-11) (-1.54967e-11 -4.42152e-13 -4.70353e-11) (2.58435e-11 -1.35808e-10 -2.31296e-10) (8.63753e-11 -3.22347e-10 -3.92584e-10) (-2.93151e-11 -2.83792e-10 -2.59452e-10) (-1.32392e-10 -1.64686e-10 -1.08611e-10) (-1.12078e-10 -3.62043e-11 -2.16868e-11) (-7.13907e-11 4.62877e-11 9.06844e-12) (-6.21062e-11 1.68982e-10 3.84512e-11) (-1.08914e-11 1.75892e-10 4.30046e-11) (1.01677e-11 4.49785e-11 1.45624e-11) (4.26017e-12 7.99773e-13 2.13435e-12) (1.42021e-11 -1.66055e-11 3.40519e-12) (2.1893e-11 -3.30256e-11 1.76631e-12) (1.58494e-11 -1.74242e-11 4.93462e-13) (1.19785e-11 -4.79963e-12 3.28798e-12) (2.51591e-11 -1.24533e-13 2.00414e-11) (6.01753e-11 4.26021e-12 8.19516e-11) (7.57567e-11 1.22093e-11 1.48786e-10) (4.46825e-11 3.08358e-11 1.29322e-10) (1.42095e-11 4.10033e-11 6.44401e-11) (2.13156e-12 3.92895e-11 1.98051e-11) (-5.39188e-12 4.36169e-11 -6.70474e-12) (-2.65192e-11 5.61157e-11 -3.84012e-11) (-7.20704e-11 5.5132e-11 -6.64966e-11) (-1.14581e-10 2.07803e-11 -6.03779e-11) (-1.26067e-10 -3.56175e-11 -2.93023e-11) (-1.10291e-10 -9.43712e-11 -9.92272e-13) (-5.96173e-11 -1.08657e-10 3.35637e-12) (-1.2326e-11 -6.86143e-11 -1.33355e-11) (2.85997e-12 -4.96159e-11 -3.12333e-11) (-5.24298e-12 -6.06659e-11 -4.51488e-11) (-3.80286e-11 -9.36607e-11 -3.80705e-11) (-5.99001e-11 -9.58505e-11 -3.79247e-12) (-1.93446e-11 -2.33369e-11 1.30961e-11) (3.57805e-12 7.12014e-12 1.44683e-11) (1.24562e-10 1.62243e-10 9.1223e-11) (3.82414e-10 5.32503e-10 1.75074e-10) (3.23893e-10 6.43158e-10 1.46536e-10) (2.24267e-10 3.0619e-10 -1.19805e-10) (1.7775e-10 2.33805e-10 -1.48634e-10) (8.2116e-11 9.76616e-11 -1.31001e-10) (2.34643e-11 1.4062e-12 -1.48042e-10) (-6.30772e-11 -1.55206e-10 -2.73386e-10) (-2.43027e-10 -4.5229e-10 -3.94317e-10) (-2.20865e-10 -3.91873e-10 -2.21183e-10) (-2.87275e-11 -4.80046e-11 -1.55463e-11) (2.28564e-12 1.21551e-11 1.16794e-11) (7.02165e-11 2.42556e-10 1.57728e-10) (1.20351e-10 3.72429e-10 2.15219e-10) (8.71966e-11 1.58226e-10 9.06544e-11) (4.89551e-11 2.26274e-11 1.81392e-11) (6.70973e-11 -2.21825e-11 4.6598e-13) (8.01729e-11 -6.28093e-11 -1.76187e-11) (3.18603e-11 -4.36829e-11 -1.52039e-11) (7.65468e-13 -9.60127e-12 -1.63243e-12) (-5.12517e-12 -3.36247e-12 5.04873e-12) (-2.15286e-11 3.69481e-12 3.7255e-11) (-4.48765e-11 3.1073e-11 9.31105e-11) (-6.93992e-11 6.81119e-11 1.24779e-10) (-7.41001e-11 8.38511e-11 1.01664e-10) (-4.15049e-11 5.81515e-11 4.20699e-11) (-9.92981e-12 2.37651e-11 3.38467e-12) (5.26755e-13 1.35668e-11 -9.64589e-12) (1.10792e-11 1.35598e-11 -2.94715e-11) (2.35561e-11 5.26373e-12 -4.45347e-11) (2.75993e-11 -6.8807e-12 -3.81352e-11) (2.36277e-11 -1.32468e-11 -2.39543e-11) (1.65172e-11 -1.39616e-11 -1.54011e-11) (7.03308e-12 -1.45083e-11 -1.17695e-11) (-1.12621e-11 -3.90627e-11 -1.50177e-11) (-1.52283e-10 -2.24901e-10 -1.10964e-11) (-5.89065e-10 -6.82069e-10 8.2269e-11) (-8.67858e-10 -7.74082e-10 2.29908e-10) (-6.30778e-10 -3.18521e-10 3.04017e-10) (-3.1365e-10 1.84802e-11 2.80487e-10) (-1.00459e-10 1.39387e-10 1.89649e-10) (2.37916e-11 1.62611e-10 7.81287e-11) (1.30979e-10 2.35604e-10 -1.66673e-11) (-2.61567e-11 1.05263e-11 8.65599e-12) (-1.10423e-11 4.88165e-11 -9.22909e-12) (6.75051e-11 1.69351e-10 -9.05153e-11) (2.54051e-10 2.40933e-10 -2.80162e-10) (3.26753e-10 8.56637e-11 -4.1706e-10) (2.39498e-10 -1.31682e-10 -3.87413e-10) (8.30187e-11 -1.25337e-10 -1.47485e-10) (4.16901e-12 -6.51716e-12 -6.26975e-13) (1.43394e-11 5.86431e-11 9.53267e-11) (6.69965e-11 3.9002e-10 4.10231e-10) (1.16871e-10 4.7068e-10 3.84338e-10) (7.61492e-11 1.99629e-10 1.16991e-10) (1.93157e-11 2.69738e-11 3.54948e-12) (9.6572e-12 -2.79763e-13 -1.1734e-11) (2.19629e-11 -2.6992e-11 -4.62303e-11) (3.22298e-11 -4.98066e-11 -5.65194e-11) (3.19868e-11 -4.49908e-11 -2.09682e-11) (2.88852e-11 -3.805e-11 1.92788e-11) (1.49291e-11 -2.68487e-11 7.55397e-11) (-5.40766e-11 2.37287e-11 1.59495e-10) (-1.81108e-10 1.17406e-10 2.02453e-10) (-1.68183e-10 1.09971e-10 1.02005e-10) (-4.28754e-11 2.42869e-11 9.94432e-12) (-2.24298e-12 4.0868e-13 -1.77816e-12) (3.14212e-12 -2.60949e-12 -7.7917e-12) (2.00416e-11 -1.66353e-12 -2.11177e-11) (5.43156e-11 1.7694e-11 -3.60549e-11) (1.02293e-10 5.72532e-11 -4.05259e-11) (1.16818e-10 7.62144e-11 -2.13981e-11) (6.10376e-11 3.77232e-11 -1.30373e-12) (2.93492e-12 4.56687e-13 4.93822e-13) (-4.27005e-11 -6.45052e-11 2.89628e-12) (-5.8929e-10 -7.44989e-10 -3.4584e-11) (-1.4413e-09 -1.67217e-09 -1.93877e-10) (-1.39467e-09 -1.20726e-09 -2.13606e-10) (-8.19797e-10 -3.38185e-10 -4.0367e-11) (-4.88609e-10 -2.33324e-11 1.0483e-10) (-3.01099e-10 6.49909e-12 1.6757e-10) (-1.60674e-10 -2.6345e-11 1.22363e-10) (-7.26936e-11 -1.39414e-11 4.68624e-11) (-1.01145e-11 1.24994e-12 7.31856e-13) (-4.27029e-11 4.68654e-11 4.75285e-12) (-3.60837e-11 1.13558e-10 -4.89865e-12) (4.6435e-11 1.34611e-10 -5.61564e-11) (2.27285e-10 1.37733e-10 -1.90622e-10) (3.54582e-10 2.91915e-11 -2.56011e-10) (1.81778e-10 -3.35852e-11 -6.92805e-11) (5.29754e-11 -8.28225e-12 3.61772e-11) (4.13525e-11 5.25387e-11 2.13419e-10) (-4.42349e-12 2.00167e-10 3.91682e-10) (-1.60481e-11 2.46172e-10 2.78645e-10) (-9.83025e-12 1.53353e-10 8.49272e-11) (-4.26149e-12 4.58484e-11 2.67809e-12) (9.78769e-13 4.16378e-12 -5.28304e-12) (1.91995e-11 -1.58824e-11 -2.42839e-11) (9.31526e-11 -1.03101e-10 -6.59078e-11) (1.08983e-10 -1.50154e-10 -3.59014e-11) (2.72139e-11 -5.46707e-11 1.54303e-11) (-3.30445e-12 -1.31591e-12 1.78144e-11) (-3.19516e-11 5.97935e-11 4.71841e-11) (-3.68517e-11 1.17326e-10 3.25289e-11) (-5.06775e-12 6.08305e-11 -1.59241e-12) (3.90056e-12 1.10362e-11 -5.3163e-12) (1.53077e-12 1.46296e-13 -1.93096e-12) (-1.55516e-13 -2.11574e-12 -1.27323e-12) (-3.28777e-12 -4.37115e-12 -1.19308e-12) (-7.33532e-13 -5.80643e-13 -2.86666e-13) (3.69306e-12 3.00432e-12 -1.08491e-12) (8.08237e-11 5.38749e-11 -1.05671e-11) (1.82045e-10 1.01265e-10 -2.11426e-11) (6.30701e-11 1.62455e-11 -1.11331e-11) (-7.18357e-12 -5.38877e-11 -9.94679e-12) (-6.40949e-10 -1.01929e-09 -7.14786e-11) (-2.24219e-09 -2.55536e-09 -2.84404e-10) (-2.605e-09 -1.85901e-09 -4.85479e-10) (-1.64314e-09 -4.79579e-10 -3.12259e-10) (-6.72062e-10 -1.26633e-11 -5.44881e-11) (-1.55509e-10 -1.24221e-11 2.16585e-11) (-2.93311e-11 -2.13676e-11 1.07231e-11) (-9.65139e-12 -1.11267e-11 2.16605e-12) (1.15845e-10 7.36515e-11 -7.9241e-11) (1.08283e-10 2.43382e-10 -3.81462e-11) (5.05529e-11 4.12139e-10 3.2967e-11) (2.87724e-11 2.97909e-10 4.11095e-11) (5.48631e-11 9.5607e-11 1.35676e-11) (1.26585e-10 3.26029e-11 3.82331e-11) (2.97159e-10 -3.04708e-11 2.18527e-10) (2.84503e-10 -3.79425e-11 5.26984e-10) (-2.32905e-11 5.26989e-11 5.84699e-10) (-3.18898e-10 1.36177e-10 4.20725e-10) (-3.68619e-10 1.56819e-10 1.66339e-10) (-1.39094e-10 7.60145e-11 9.28727e-12) (-4.62603e-12 8.78134e-12 -2.22743e-12) (5.42528e-11 1.39693e-11 -2.78189e-12) (3.55295e-10 1.668e-11 -1.83716e-11) (3.89453e-10 -1.5333e-11 -6.63123e-11) (4.97995e-11 -1.52887e-11 -2.34741e-11) (-3.10451e-11 -1.94088e-11 -8.36682e-12) (-2.90593e-10 -8.86354e-11 1.6102e-11) (-1.96631e-10 -4.63703e-11 1.97294e-11) (-4.45213e-12 -3.87387e-13 -1.06292e-12) (5.28167e-11 2.22492e-11 -3.15911e-11) (2.69847e-10 1.07354e-10 -1.26446e-10) (2.56491e-10 9.74905e-11 -1.06104e-10) (7.73982e-11 2.23714e-11 -2.64368e-11) (7.18548e-12 -2.16641e-13 -1.45737e-12) (6.28861e-13 -5.20272e-13 -1.83685e-14) (1.27243e-12 2.4304e-14 -4.01559e-13) (2.14467e-11 1.08196e-11 -6.68942e-12) (7.2297e-11 3.683e-11 -1.34125e-11) (3.66355e-11 6.17812e-12 9.74583e-13) (-2.95368e-12 -5.16856e-11 1.28042e-11) (-5.85581e-10 -8.2411e-10 3.49442e-11) (-3.0868e-09 -2.47957e-09 -3.98741e-10) (-5.76893e-09 -2.655e-09 -9.98472e-10) (-4.62899e-09 -1.18461e-09 -6.9277e-10) (-1.55319e-09 -3.33269e-10 -2.08449e-10) (-1.79119e-10 -9.75193e-11 -6.3532e-11) (6.42249e-12 -4.73625e-11 -4.88703e-11) (8.43829e-11 -2.33893e-11 -8.64675e-11) (5.46535e-10 3.08465e-10 -2.87011e-10) (1.03777e-09 9.76643e-10 -3.56497e-10) (1.07522e-09 1.42218e-09 -2.33652e-10) (6.26075e-10 1.08064e-09 -3.91301e-11) (2.67662e-10 4.38514e-10 7.10599e-11) (1.69744e-10 1.39491e-10 1.38243e-10) (2.49574e-10 5.07352e-11 4.14359e-10) (1.84762e-10 -3.55501e-11 8.14717e-10) (-1.55995e-10 -8.02846e-11 7.60546e-10) (-4.56418e-10 -7.32471e-11 4.89545e-10) (-6.32224e-10 -2.92673e-11 2.57426e-10) (-3.81632e-10 2.30763e-11 7.41083e-11) (-3.46419e-11 1.09798e-11 8.51636e-12) (2.26341e-11 8.19168e-12 1.2738e-12) (3.29624e-10 8.96134e-12 -7.15531e-11) (4.95956e-10 -1.06639e-10 -2.45861e-10) (1.79887e-10 -1.74663e-10 -2.31061e-10) (-7.55479e-11 -1.97719e-10 -1.98156e-10) (-3.0718e-10 -1.93113e-10 -2.13119e-10) (-2.25075e-10 -2.71328e-11 -1.26616e-10) (-3.90056e-11 4.56528e-11 -4.61155e-11) (7.50939e-11 1.3144e-10 -5.89448e-11) (3.27389e-10 2.31576e-10 -6.85202e-11) (4.24796e-10 1.41278e-10 -3.08662e-11) (2.93321e-10 -2.24587e-13 -6.52195e-13) (1.30334e-10 -4.67983e-11 2.24698e-12) (2.92538e-11 -1.91157e-11 -3.62438e-12) (3.15966e-12 -2.78664e-13 -2.71857e-12) (8.92203e-12 1.42863e-11 -7.33236e-12) (3.83355e-11 4.27627e-11 4.40841e-12) (4.58927e-11 1.68734e-11 3.21849e-11) (1.57126e-12 -4.66855e-11 3.30115e-11) (-7.6819e-10 -7.66369e-10 -1.95008e-11) (-5.99801e-09 -3.08242e-09 -8.11792e-10) (-1.23341e-08 -3.92057e-09 -8.09863e-10) (-9.30183e-09 -2.42882e-09 2.75075e-10) (-2.95841e-09 -1.05468e-09 1.33024e-10) (-3.87408e-10 -2.96147e-10 -9.5128e-11) (2.1563e-12 -7.37601e-11 -8.05457e-11) (1.58949e-10 -9.63109e-14 -1.48688e-10) (2.72468e-10 3.83904e-10 -1.13679e-10) (8.11836e-10 1.04901e-09 -3.18608e-10) (1.40323e-09 1.60199e-09 -5.7897e-10) (1.39094e-09 1.40832e-09 -6.07204e-10) (7.54461e-10 6.4879e-10 -2.46153e-10) (2.64065e-10 1.57634e-10 3.31561e-11) (1.32275e-10 3.74332e-11 1.64085e-10) (3.28012e-11 -2.91323e-11 3.88104e-10) (-2.57827e-10 -1.27155e-10 5.63869e-10) (-6.47787e-10 -1.89174e-10 5.72171e-10) (-7.2178e-10 -1.31594e-10 3.78364e-10) (-2.94701e-10 -2.87329e-11 1.32311e-10) (-1.12942e-11 -8.74445e-13 9.31883e-12) (3.67432e-11 -7.25644e-12 -5.31323e-12) (2.68845e-10 -9.61694e-11 -1.70027e-10) (2.37754e-10 -2.30456e-10 -4.69209e-10) (-1.97304e-10 -3.05734e-10 -7.87948e-10) (-8.16248e-10 -2.20742e-10 -1.0613e-09) (-5.96762e-10 3.24381e-11 -6.62538e-10) (-6.85726e-11 6.21227e-11 -1.33526e-10) (5.40092e-11 5.63446e-11 -2.38774e-11) (3.45287e-10 1.46955e-10 6.50986e-11) (6.13952e-10 1.21964e-10 1.88446e-10) (3.797e-10 -8.44825e-12 1.38017e-10) (4.00838e-11 -2.18591e-11 2.01001e-11) (-1.73629e-11 -1.43843e-11 -3.72166e-12) (-1.01119e-10 -7.35365e-12 -5.755e-11) (-4.26795e-11 3.81209e-11 -6.34291e-11) (4.68527e-11 7.14804e-11 -3.38585e-11) (2.91022e-10 1.40987e-10 8.84545e-11) (3.69927e-10 5.26921e-12 2.47447e-10) (3.03887e-11 -9.44107e-11 7.9482e-11) (-1.05537e-09 -7.25362e-10 -1.37458e-11) (-6.87865e-09 -2.52934e-09 -3.46033e-10) (-1.05861e-08 -3.34905e-09 6.91876e-10) (-6.96078e-09 -2.64551e-09 1.26223e-09) (-2.34606e-09 -1.19771e-09 5.24435e-10) (-3.17246e-10 -2.11919e-10 5.34506e-11) (-2.57126e-12 -1.65171e-12 -7.24617e-13) (3.2287e-11 4.53984e-11 -1.87643e-11) (2.12968e-10 7.9466e-10 -1.19003e-10) (3.85631e-10 1.04864e-09 -2.77467e-10) (7.26246e-10 1.15582e-09 -5.46543e-10) (1.0656e-09 1.00903e-09 -7.5803e-10) (9.26761e-10 5.33454e-10 -5.52903e-10) (3.85645e-10 1.14864e-10 -1.18654e-10) (7.30553e-11 -1.59949e-12 3.08736e-11) (-1.17142e-11 -4.77152e-11 1.21037e-10) (-3.60577e-10 -2.32556e-10 4.28457e-10) (-8.54962e-10 -4.03289e-10 6.32979e-10) (-6.74616e-10 -2.69819e-10 4.36462e-10) (-1.50517e-10 -5.82961e-11 1.22359e-10) (5.61665e-14 -2.15318e-12 5.92769e-12) (4.79258e-11 -4.66281e-12 -1.89943e-11) (1.21629e-10 -2.92909e-11 -2.14987e-10) (-1.6383e-10 -1.10832e-10 -8.3076e-10) (-1.37855e-09 -2.38443e-10 -1.90755e-09) (-1.6733e-09 -1.91874e-10 -1.64726e-09) (-3.51885e-10 -2.05532e-11 -3.61525e-10) (6.72848e-12 5.76065e-12 -8.01081e-12) (3.58075e-10 1.26736e-10 8.35523e-11) (8.76863e-10 2.6783e-10 2.86337e-10) (4.00172e-10 1.09561e-10 1.61386e-10) (4.93151e-13 1.20578e-12 4.68994e-12) (-4.92593e-10 -7.30165e-11 -2.72493e-11) (-1.11436e-09 -2.36572e-10 -2.14797e-10) (-1.34979e-10 -4.58237e-11 -6.8487e-11) (8.86095e-11 1.7356e-11 -2.17434e-11) (1.15283e-09 3.24649e-10 1.6868e-10) (1.82398e-09 4.25346e-10 6.56534e-10) (6.50172e-10 3.91219e-11 3.7319e-10) (-6.84784e-12 -2.30299e-11 1.92442e-11) (-1.15856e-09 -5.12352e-10 -5.65827e-11) (-4.31266e-09 -1.83591e-09 7.28896e-11) (-5.96263e-09 -3.03433e-09 9.25987e-10) (-4.4846e-09 -2.66962e-09 1.2988e-09) (-1.32381e-09 -8.95745e-10 7.32621e-10) (-8.4197e-11 -4.60336e-11 1.48437e-10) (2.66375e-11 7.62025e-11 5.64177e-11) (1.20743e-10 3.79579e-10 9.45351e-12) (6.05731e-10 1.69519e-09 -5.41176e-10) (4.44614e-10 1.26032e-09 -5.28474e-10) (4.93193e-10 8.24987e-10 -4.80489e-10) (7.05232e-10 5.53472e-10 -5.61371e-10) (7.97401e-10 2.60522e-10 -5.11915e-10) (4.34338e-10 1.25588e-11 -1.85268e-10) (6.47563e-11 -3.03194e-11 2.27314e-12) (-4.19863e-11 -9.10591e-11 7.60703e-11) (-5.79754e-10 -4.38088e-10 4.08874e-10) (-1.11358e-09 -6.63156e-10 6.24558e-10) (-6.43082e-10 -3.43275e-10 3.62295e-10) (-7.92794e-11 -3.59023e-11 5.99722e-11) (2.28398e-12 1.71891e-12 8.21811e-13) (8.36208e-11 4.98849e-11 -5.78859e-11) (1.04943e-10 1.08775e-10 -2.83609e-10) (-2.6503e-10 1.13415e-10 -7.54967e-10) (-1.12947e-09 -8.89938e-11 -1.21015e-09) (-9.30794e-10 -3.03656e-10 -6.83366e-10) (-1.15371e-10 -1.0554e-10 -8.80264e-11) (2.03897e-11 -1.15192e-11 -2.82112e-12) (2.35239e-10 7.07962e-11 2.36505e-11) (2.7304e-10 1.96965e-10 3.74232e-11) (1.34138e-11 8.11994e-11 1.09195e-11) (-3.73651e-10 1.29399e-10 1.95862e-11) (-1.20356e-09 -8.47758e-11 1.49272e-10) (-3.25572e-10 -2.14323e-10 2.16709e-10) (2.85346e-10 -2.30106e-10 3.28118e-10) (1.7139e-09 -1.02589e-10 5.8955e-10) (2.20173e-09 3.95735e-10 2.4879e-10) (9.16451e-10 2.85045e-10 -6.01689e-11) (4.16635e-11 1.99572e-11 -3.30248e-11) (-1.54504e-10 -4.39439e-11 -9.02396e-11) (-1.07179e-09 -4.74916e-10 -8.37073e-11) (-2.7965e-09 -1.56837e-09 5.73558e-10) (-5.16806e-09 -3.2055e-09 1.57912e-09) (-3.94505e-09 -2.8982e-09 1.90407e-09) (-7.39828e-10 -7.9989e-10 1.14618e-09) (1.10832e-10 6.36002e-11 5.23575e-10) (4.33844e-10 6.6215e-10 3.15816e-10) (7.2779e-10 1.5454e-09 -1.61566e-10) (1.36946e-09 2.68762e-09 -9.36245e-10) (8.72636e-10 1.68594e-09 -7.71478e-10) (5.54566e-10 7.41996e-10 -5.09298e-10) (5.58057e-10 3.00347e-10 -4.26838e-10) (6.34072e-10 5.06775e-11 -3.59567e-10) (3.71392e-10 -8.45054e-11 -1.32289e-10) (5.15645e-11 -5.94389e-11 3.82927e-12) (-1.20271e-10 -1.76076e-10 9.13977e-11) (-8.0105e-10 -5.90471e-10 3.35231e-10) (-9.83309e-10 -6.5301e-10 3.08035e-10) (-3.1038e-10 -2.0633e-10 7.38405e-11) (-8.2542e-12 -3.8199e-12 1.29702e-12) (1.91108e-11 2.45202e-11 -6.77449e-12) (1.33002e-10 1.60686e-10 -7.59069e-11) (9.68455e-11 1.98839e-10 -1.76638e-10) (-6.45867e-11 9.97221e-11 -2.02445e-10) (-1.8271e-10 -5.60359e-11 -1.79562e-10) (-1.53956e-10 -2.51764e-10 -1.08945e-10) (-1.33979e-11 -3.12195e-10 -6.92771e-11) (2.31598e-11 -6.63007e-11 -4.19404e-11) (7.54081e-12 3.04714e-11 -4.24866e-11) (-7.22199e-11 2.86692e-10 -1.06981e-10) (-3.44422e-10 4.90162e-10 -7.00049e-12) (-6.27269e-10 3.53404e-10 3.07363e-10) (-5.27526e-10 -1.00909e-10 8.97804e-10) (1.85236e-10 -8.37593e-10 1.78139e-09) (6.92232e-10 -6.98034e-10 9.69371e-10) (3.94798e-10 -1.26866e-10 1.4443e-11) (6.07589e-10 1.30907e-10 -5.07637e-10) (5.38237e-10 3.12171e-10 -8.28522e-10) (8.81947e-11 1.10217e-10 -3.5327e-10) (-1.96705e-11 -3.56177e-12 -2.09108e-11) (-3.78281e-10 -2.04284e-10 2.0236e-10) (-2.95811e-09 -1.57835e-09 1.28107e-09) (-6.56429e-09 -3.92353e-09 1.9958e-09) (-3.63944e-09 -3.04942e-09 2.13593e-09) (-5.24537e-10 -8.12184e-10 1.45814e-09) (1.85753e-10 1.58208e-10 6.5262e-10) (6.04228e-10 9.93701e-10 3.05684e-10) (1.33124e-09 2.51277e-09 -4.38957e-10) (1.72758e-09 3.05773e-09 -9.86859e-10) (1.21838e-09 2.1476e-09 -8.46272e-10) (6.75539e-10 8.26425e-10 -5.64512e-10) (5.19695e-10 2.01003e-10 -3.75018e-10) (4.96603e-10 -6.27768e-11 -2.38345e-10) (2.3298e-10 -1.17729e-10 -4.78383e-11) (1.98629e-11 -6.63805e-11 2.13216e-11) (-1.92831e-10 -2.09002e-10 1.12817e-10) (-6.30421e-10 -4.95883e-10 1.71501e-10) (-4.49414e-10 -4.28364e-10 -5.01098e-12) (-7.99088e-11 -1.07348e-10 -5.58475e-11) (3.28095e-13 5.72234e-13 -1.27181e-11) (3.61426e-11 8.44199e-11 -2.40483e-11) (1.05783e-10 2.70046e-10 -1.65966e-11) (6.87557e-11 2.12037e-10 -2.49765e-11) (3.25691e-12 2.24411e-11 -6.91169e-12) (-1.89069e-12 -1.85237e-11 -1.75639e-12) (3.77723e-12 -3.79972e-10 -4.09542e-11) (-3.69265e-11 -6.108e-10 -2.55498e-10) (-1.2516e-10 -2.11246e-10 -3.17202e-10) (-2.26598e-10 1.37716e-10 -3.09928e-10) (-4.6822e-10 5.80068e-10 -2.28983e-10) (-5.96941e-10 6.85147e-10 1.86734e-10) (-4.76285e-10 3.70774e-10 7.87883e-10) (-9.53579e-11 -3.32472e-10 2.2476e-09) (4.63403e-10 -1.12089e-09 2.42771e-09) (1.23284e-10 -3.52307e-10 3.00267e-10) (4.94675e-11 -1.01468e-10 -1.9752e-10) (3.54203e-10 1.01041e-10 -1.42569e-09) (6.58311e-10 4.07787e-10 -1.42719e-09) (2.97152e-10 1.81376e-10 -2.85836e-10) (3.52575e-11 1.89789e-11 3.13596e-11) (-2.76148e-10 -1.0123e-10 3.907e-10) (-3.19981e-09 -1.31552e-09 1.10737e-09) (-6.03047e-09 -3.34076e-09 1.1302e-09) (-2.72683e-09 -2.47292e-09 1.53866e-09) (-4.35536e-10 -7.6495e-10 1.1921e-09) (6.50616e-11 3.3788e-11 3.41657e-10) (2.97218e-10 4.5963e-10 7.31871e-11) (1.17939e-09 1.94237e-09 -5.16058e-10) (1.28485e-09 2.15992e-09 -9.68437e-10) (1.21657e-09 2.03417e-09 -8.68094e-10) (7.21068e-10 8.20681e-10 -5.43025e-10) (4.41837e-10 1.34349e-10 -2.95152e-10) (3.02865e-10 -8.57315e-11 -1.20757e-10) (1.09915e-10 -9.27351e-11 8.65507e-12) (5.17091e-13 -6.89536e-11 5.18106e-11) (-1.41473e-10 -1.47569e-10 1.19798e-10) (-2.61836e-10 -2.59209e-10 6.05265e-11) (-1.91229e-10 -2.78765e-10 -1.23741e-10) (-6.92272e-11 -1.46243e-10 -2.12491e-10) (-1.27576e-12 1.75709e-11 -1.10375e-10) (3.49711e-11 1.61687e-10 -5.65859e-11) (1.13013e-10 4.29636e-10 6.83521e-11) (1.25455e-10 3.22572e-10 1.40649e-10) (6.58804e-11 5.62306e-11 7.47083e-11) (5.95742e-11 -6.38399e-11 4.60139e-11) (5.32832e-11 -4.18972e-10 -8.25709e-11) (-3.5818e-10 -9.37602e-10 -7.17006e-10) (-8.36942e-10 -5.65065e-10 -1.0326e-09) (-5.99713e-10 1.39817e-10 -4.78214e-10) (-4.19757e-10 4.28122e-10 -6.2035e-11) (-3.43811e-10 4.85637e-10 3.52978e-10) (-2.11618e-10 3.11614e-10 1.12445e-09) (2.82326e-10 -3.28334e-10 2.48538e-09) (4.15809e-10 -6.67944e-10 1.6876e-09) (1.29461e-11 -1.15924e-10 8.26433e-11) (-9.22036e-11 -1.29091e-10 -3.72541e-10) (5.38106e-11 1.42869e-12 -1.67326e-09) (5.52782e-10 2.91169e-10 -1.2065e-09) (3.68869e-10 2.20952e-10 -1.52021e-10) (1.00159e-10 1.17953e-10 1.69679e-10) (-4.0669e-10 2.58343e-11 4.13801e-10) (-2.65274e-09 -7.47887e-10 4.16752e-10) (-3.42821e-09 -1.95873e-09 8.04553e-11) (-1.28813e-09 -1.5217e-09 6.53542e-10) (-2.47589e-10 -7.37493e-10 8.79628e-10) (3.45912e-11 -7.2384e-11 2.94392e-10) (6.87356e-11 8.32379e-11 1.76859e-11) (5.63655e-10 8.52883e-10 -4.04476e-10) (5.37274e-10 1.00583e-09 -7.43768e-10) (7.49236e-10 1.23128e-09 -7.85621e-10) (5.66324e-10 5.43358e-10 -4.39456e-10) (3.14144e-10 6.29637e-11 -1.68041e-10) (1.68504e-10 -7.13075e-11 -2.87062e-11) (6.99589e-11 -7.8415e-11 5.14341e-11) (2.13116e-12 -6.91188e-11 1.06943e-10) (-5.64065e-11 -6.38776e-11 9.496e-11) (-6.91026e-11 -7.77815e-11 3.03109e-12) (-1.34766e-10 -2.17304e-10 -2.48998e-10) (-1.31064e-10 -2.20756e-10 -5.83663e-10) (-3.11568e-11 4.15497e-11 -2.97179e-10) (2.14275e-11 1.8489e-10 -7.58079e-11) (1.40388e-10 5.08181e-10 1.60066e-10) (2.98014e-10 5.07002e-10 4.2668e-10) (3.36914e-10 1.46116e-10 3.85762e-10) (2.33018e-10 -1.23194e-10 1.54061e-10) (1.24108e-10 -3.56913e-10 -1.01876e-10) (-3.16236e-10 -9.14785e-10 -8.20825e-10) (-1.12948e-09 -7.3318e-10 -1.22516e-09) (-1.09653e-09 5.41885e-11 -5.8322e-10) (-6.37478e-10 3.70384e-10 3.6604e-11) (-3.8848e-10 4.11231e-10 5.14337e-10) (-1.31333e-10 2.79791e-10 1.3595e-09) (5.38697e-10 -1.90174e-10 2.29872e-09) (5.75471e-10 -3.3029e-10 1.21943e-09) (1.03443e-11 -1.99334e-11 1.72514e-11) (-2.15691e-10 -9.19859e-11 -4.30646e-10) (-3.46612e-10 -6.50068e-11 -1.27921e-09) (7.95219e-11 1.12823e-10 -5.18318e-10) (9.89676e-11 1.1729e-10 -3.11138e-11) (1.82817e-11 1.49039e-10 1.39913e-10) (-2.56033e-10 7.77324e-11 1.46012e-10) (-1.01286e-09 -2.80618e-10 -1.24038e-10) (-1.0385e-09 -8.39602e-10 -3.15569e-10) (-3.79193e-10 -7.69909e-10 1.75244e-10) (-9.20713e-11 -6.48649e-10 7.18451e-10) (3.41131e-11 -1.98114e-10 4.78187e-10) (1.31022e-11 8.26171e-12 1.91745e-11) (1.35748e-10 2.32618e-10 -1.68308e-10) (8.01828e-11 3.54491e-10 -3.62394e-10) (2.5168e-10 4.9181e-10 -4.7852e-10) (3.06193e-10 2.06629e-10 -2.49408e-10) (2.28195e-10 -4.33396e-12 -6.68647e-11) (1.53522e-10 -8.35393e-11 4.0238e-11) (7.84122e-11 -8.36199e-11 1.26065e-10) (8.1044e-12 -3.97033e-11 1.52788e-10) (-1.51997e-11 -7.81461e-12 3.99539e-11) (-1.78523e-11 -1.56085e-11 -2.06721e-11) (-1.14712e-10 -1.99081e-10 -5.01316e-10) (-1.35018e-10 -2.45021e-10 -9.22399e-10) (-4.66274e-11 3.18267e-11 -3.279e-10) (-2.81983e-14 1.25422e-10 -3.98039e-11) (1.23605e-10 4.51619e-10 2.26354e-10) (4.48903e-10 5.73532e-10 6.58575e-10) (6.84603e-10 1.99186e-10 6.98431e-10) (5.41086e-10 -1.88209e-10 2.83741e-10) (3.10616e-10 -3.86237e-10 -1.03953e-10) (-3.29585e-11 -6.3605e-10 -5.54873e-10) (-8.80437e-10 -5.33079e-10 -8.78321e-10) (-1.71315e-09 7.29997e-11 -6.33055e-10) (-1.43013e-09 5.03684e-10 1.67864e-10) (-8.49974e-10 4.57116e-10 8.7062e-10) (-2.36913e-10 1.87053e-10 1.69032e-09) (8.38301e-10 -2.2077e-10 2.44131e-09) (7.47001e-10 -1.39095e-10 1.031e-09) (8.80735e-12 6.27938e-13 1.40304e-12) (-2.76959e-10 -1.05433e-11 -5.50338e-10) (-6.35109e-10 -8.36259e-11 -1.16152e-09) (-1.27293e-10 4.15884e-11 -2.69782e-10) (-3.49318e-12 4.68772e-11 -4.24087e-12) (-1.44004e-11 9.77815e-11 5.39383e-11) (-4.51593e-11 2.41391e-11 7.80737e-13) (-2.06598e-10 -1.05223e-10 -1.7513e-10) (-2.0478e-10 -3.43871e-10 -2.58908e-10) (-4.97203e-11 -3.21907e-10 3.28217e-11) (2.57805e-11 -4.3464e-10 4.95658e-10) (4.76503e-11 -2.47435e-10 5.75647e-10) (9.43086e-12 -9.15524e-12 5.46891e-11) (7.80262e-12 3.4212e-11 -2.85114e-11) (-1.47909e-11 8.95455e-11 -1.02871e-10) (6.64561e-11 1.23856e-10 -1.55656e-10) (1.5361e-10 4.38584e-11 -8.49674e-11) (2.04444e-10 -4.5336e-11 9.84645e-12) (1.51121e-10 -9.17679e-11 1.2063e-10) (4.58643e-11 -5.58145e-11 1.76432e-10) (-1.48855e-11 4.11173e-12 1.15039e-10) (-4.67478e-12 4.75607e-12 6.28641e-12) (-1.06858e-11 1.57766e-12 -7.08923e-11) (-1.56446e-11 -1.24187e-10 -6.01011e-10) (-2.87606e-11 -1.67229e-10 -7.29875e-10) (-2.69564e-11 8.90143e-12 -1.738e-10) (-1.01504e-11 5.77186e-11 -6.14397e-12) (6.51e-11 2.8153e-10 1.99907e-10) (4.1137e-10 4.01298e-10 5.76524e-10) (8.39189e-10 1.32436e-10 6.86131e-10) (9.4606e-10 -2.764e-10 3.34371e-10) (5.8166e-10 -4.45671e-10 -1.24864e-10) (-9.87747e-13 -3.25039e-10 -2.92321e-10) (-1.21206e-09 -3.43284e-10 -6.76011e-10) (-3.03457e-09 2.53314e-10 -4.93985e-10) (-2.1444e-09 5.80155e-10 4.84233e-10) (-9.26737e-10 3.36054e-10 1.08829e-09) (-4.54682e-11 -2.61926e-11 1.9875e-09) (1.10646e-09 -3.06066e-10 2.68347e-09) (5.33806e-10 3.2636e-11 7.09678e-10) (2.39285e-11 2.97669e-11 -2.60881e-11) (-2.10301e-10 9.70204e-11 -7.66733e-10) (-5.27302e-10 -6.49686e-11 -1.07293e-09) (-2.02914e-10 8.18872e-12 -2.45437e-10) (-2.88168e-11 2.73933e-11 -6.13898e-12) (-9.36755e-12 2.67392e-11 4.86346e-12) (-4.9743e-12 5.40976e-12 -1.82496e-11) (-1.1075e-11 -7.73995e-11 -1.94189e-10) (1.53652e-11 -1.61899e-10 -1.86898e-10) (2.14341e-11 -9.84458e-11 -3.94106e-13) (5.90145e-11 -1.92791e-10 2.35313e-10) (6.68517e-11 -1.83984e-10 3.79793e-10) (6.48812e-12 -2.50461e-11 7.12251e-11) (-1.73145e-12 3.12738e-12 -2.10409e-12) (5.08633e-12 1.07707e-11 -1.42118e-11) (4.25355e-11 2.25974e-11 -3.22333e-11) (1.15435e-10 -2.12984e-12 -9.83924e-12) (1.33141e-10 -4.82846e-11 7.00528e-11) (5.04006e-11 -5.70798e-11 1.55489e-10) (-5.42555e-11 -1.76812e-11 1.96894e-10) (-4.85376e-11 2.43926e-11 7.27873e-11) (-4.92304e-12 1.04364e-11 -3.0112e-12) (2.76985e-11 2.39106e-11 -1.16612e-10) (1.13711e-10 -4.74615e-11 -3.74145e-10) (6.13675e-11 -6.94837e-11 -2.95456e-10) (-6.13219e-12 6.51225e-13 -4.86403e-11) (-1.11094e-11 2.25592e-11 2.06138e-12) (1.31632e-11 1.05249e-10 9.43052e-11) (2.28502e-10 1.49918e-10 2.77303e-10) (6.92689e-10 -1.11477e-12 4.01594e-10) (8.61253e-10 -2.78873e-10 1.75263e-10) (2.17356e-10 -1.90802e-10 -8.2045e-11) (-2.64994e-10 -1.65879e-10 -2.04861e-10) (-2.57827e-09 -1.59008e-10 -5.73838e-10) (-2.89294e-09 2.81041e-10 8.73376e-11) (-1.03404e-09 2.47614e-10 5.36565e-10) (-2.90262e-10 8.38989e-11 8.90856e-10) (4.18787e-10 -1.95178e-10 2.27779e-09) (7.5192e-10 -1.51312e-10 2.38328e-09) (1.21625e-10 9.73362e-11 2.89205e-10) (5.49526e-11 1.21159e-10 -1.42824e-10) (1.01426e-10 1.9889e-10 -1.11328e-09) (-8.2833e-11 -4.03159e-11 -9.35194e-10) (-9.92833e-11 -1.86127e-11 -1.8829e-10) (-3.44253e-11 7.96973e-12 -1.54116e-11) (-5.76866e-12 4.40292e-12 -5.51066e-12) (1.53188e-11 -4.14399e-12 -7.07711e-11) (1.01996e-10 -7.4823e-11 -2.5944e-10) (8.9246e-11 -7.96829e-11 -1.47633e-10) (2.62689e-11 -2.90357e-11 -4.07384e-12) (3.63339e-11 -6.16729e-11 8.15485e-11) (2.73454e-11 -7.68643e-11 1.33873e-10) (2.81992e-12 -1.72016e-11 2.95107e-11) (-3.4445e-15 3.33094e-14 -3.75795e-14) (1.52868e-11 3.03031e-12 -8.09204e-12) (5.75422e-11 4.70095e-12 -7.67748e-12) (8.21677e-11 -1.35322e-11 3.07841e-11) (3.42511e-11 -2.78282e-11 9.13996e-11) (-1.12732e-10 -3.99915e-11 2.68117e-10) (-2.77221e-10 8.61427e-12 3.23797e-10) (-9.40517e-11 3.07398e-11 6.98856e-11) (-2.1327e-12 7.76196e-12 -5.22836e-12) (6.44755e-11 2.13338e-11 -9.14677e-11) (1.49602e-10 -1.5263e-11 -1.7016e-10) (6.26196e-11 -1.77337e-11 -7.64631e-11) (1.65226e-12 4.48379e-13 -4.00833e-12) (-3.30306e-12 6.88784e-12 3.42779e-12) (3.07976e-12 2.31016e-11 2.73236e-11) (6.97806e-11 2.00147e-11 6.61851e-11) (1.99609e-10 -4.28599e-11 8.26822e-11) (8.15297e-11 -5.62264e-11 2.55005e-12) (-5.31518e-11 -4.48756e-11 -4.19609e-11) (-1.22719e-09 -1.32651e-10 -3.05571e-10) (-2.12823e-09 -3.15706e-11 -2.82679e-11) (-7.72427e-10 3.19751e-11 3.36639e-10) (-1.53991e-10 2.55653e-11 4.39218e-10) (2.04244e-10 -1.44566e-11 1.10736e-09) (4.4296e-10 -7.70261e-11 2.13323e-09) (7.78125e-12 1.24382e-10 1.38031e-09) (-1.10004e-11 6.90825e-11 6.25186e-11) (2.22503e-10 2.62009e-10 -4.76007e-10) (9.73874e-10 2.92639e-10 -1.83134e-09) (5.23984e-10 -3.5376e-11 -1.10426e-09) (1.76324e-11 -2.79971e-11 -1.63297e-10) (-2.24154e-11 -6.22733e-12 -2.53545e-11) (-1.25054e-11 -3.78499e-12 -2.55955e-11) (3.2045e-11 -1.92292e-11 -1.22918e-10) (1.41416e-10 -4.92908e-11 -2.41967e-10) (1.04619e-10 -3.20201e-11 -1.04827e-10) (2.77817e-11 -1.05167e-11 -2.96837e-12) (2.03141e-11 -1.82988e-11 2.63872e-11) (1.38327e-11 -2.88105e-11 3.56154e-11) (4.13114e-12 -9.89712e-12 7.31529e-12) (1.84146e-12 -8.65811e-13 -7.39115e-13) (1.00489e-11 -4.77621e-13 -4.15287e-12) (2.32985e-11 -1.19862e-12 5.46976e-12) (1.78083e-11 -7.21036e-12 4.08309e-11) (-1.05206e-10 -2.56045e-11 2.2085e-10) (-5.92772e-10 -2.90413e-11 5.83559e-10) (-6.47861e-10 2.08418e-11 4.49818e-10) (-1.34287e-10 2.28356e-11 5.74174e-11) (-2.74946e-13 3.09148e-12 -4.00254e-12) (7.99191e-11 1.2675e-11 -6.27858e-11) (1.46836e-10 -3.87264e-12 -7.33889e-11) (5.80429e-11 -4.63065e-12 -1.42626e-11) (6.5204e-12 1.04379e-12 2.29882e-12) (1.45441e-12 3.04873e-12 4.71272e-12) (1.81725e-12 2.49123e-12 4.42986e-12) (3.31837e-12 -7.08101e-13 2.52559e-12) (1.00589e-12 -3.58175e-12 4.31023e-13) (-4.32209e-11 -2.44124e-11 -1.35906e-11) (-5.53309e-10 -8.11506e-11 -1.26469e-10) (-1.29198e-09 -7.53495e-11 -7.18722e-11) (-7.31239e-10 -7.94248e-11 2.79047e-10) (-1.7444e-10 -8.0206e-11 4.88755e-10) (2.00166e-10 -6.59943e-11 9.39107e-10) (3.36212e-10 2.27031e-11 1.29521e-09) (-6.55221e-12 1.49151e-10 1.3038e-09) (-1.56695e-10 1.84138e-10 4.69365e-10) (1.44984e-11 6.35272e-11 -2.81095e-11) (1.14474e-09 4.50064e-10 -1.42297e-09) (2.93615e-09 3.44563e-10 -2.98913e-09) (1.58674e-09 -2.66395e-11 -1.49924e-09) (1.82902e-10 -3.97783e-11 -2.24704e-10) (3.83694e-13 -1.04386e-11 -2.68808e-11) (-4.82308e-12 -1.24983e-11 -3.77027e-11) (3.62981e-11 -2.50023e-11 -1.19603e-10) (1.07386e-10 -2.51887e-11 -1.72667e-10) (7.02405e-11 -6.47794e-12 -6.34359e-11) (1.88197e-11 -2.12203e-12 -1.70282e-12) (1.12977e-11 -6.93498e-12 9.92039e-12) (7.44089e-12 -1.276e-11 9.64743e-12) (2.82554e-12 -6.49582e-12 8.01834e-13) (2.70044e-12 -2.1149e-12 -2.29501e-12) (1.80036e-13 -7.86326e-14 -1.08504e-13) (1.74996e-12 -6.49189e-13 6.81669e-12) (-5.53816e-11 -7.64905e-12 1.12355e-10) (-5.53471e-10 -2.29532e-11 5.20184e-10) (-1.24506e-09 -2.13558e-11 8.13153e-10) (-8.26013e-10 8.11557e-12 3.85898e-10) (-9.71418e-11 8.25194e-12 1.77457e-11) (4.08528e-12 2.27099e-12 -7.14353e-12) (1.13808e-10 9.43168e-12 -5.03569e-11) (1.44163e-10 -3.19648e-13 -1.96907e-11) (5.5731e-11 -2.59167e-12 1.19013e-11) (1.08184e-11 3.62376e-13 8.26552e-12) (1.305e-12 5.70442e-13 1.88662e-12) (8.3261e-15 1.1782e-14 4.06927e-14) (-1.42634e-12 -1.00123e-12 -1.54785e-13) (-3.72347e-11 -1.59041e-11 -3.4587e-12) (-2.79491e-10 -5.60333e-11 -3.40076e-11) (-7.85112e-10 -7.42014e-11 -6.6623e-11) (-7.28411e-10 -8.18445e-11 1.38035e-10) (-3.011e-10 -1.19205e-10 4.00513e-10) (2.32071e-11 -1.92032e-10 9.01369e-10) (2.29984e-10 -8.30779e-11 1.13767e-09) (7.12182e-11 9.89609e-11 9.05892e-10) (-7.57766e-11 1.71348e-10 4.96335e-10) (4.41804e-12 6.05004e-11 3.57145e-11) (6.43153e-10 2.80313e-10 -5.86299e-10) (3.94309e-09 5.70093e-10 -3.38036e-09) (5.01454e-09 2.94158e-10 -3.63417e-09) (2.32427e-09 6.99208e-12 -1.43944e-09) (3.87813e-10 -4.2529e-11 -2.39249e-10) (2.55964e-11 -1.46264e-11 -2.91151e-11) (3.78742e-12 -1.3991e-11 -3.29241e-11) (1.13002e-11 -1.82397e-11 -9.45438e-11) (3.11162e-11 -4.20758e-12 -1.12855e-10) (1.98147e-11 3.53498e-12 -3.13207e-11) (4.97528e-12 2.0984e-13 -4.71291e-13) (4.01826e-12 -3.35292e-12 4.56988e-12) (5.99928e-13 -6.75097e-12 3.62178e-12) (-1.79895e-12 -4.58281e-12 -5.96727e-13) (-7.80555e-13 -1.33199e-12 -1.58482e-12) (-3.54672e-13 -1.5641e-13 4.86098e-13) (-1.774e-11 -1.63845e-12 3.04106e-11) (-2.75599e-10 -1.01593e-11 2.58566e-10) (-1.09871e-09 -2.00541e-11 7.16825e-10) (-1.44545e-09 -2.25432e-11 7.29245e-10) (-5.67742e-10 -5.88994e-12 1.92512e-10) (-2.01599e-11 5.67807e-13 -1.99538e-12) (2.27187e-11 2.1521e-12 -1.47979e-11) (1.29889e-10 6.36021e-12 -2.20722e-11) (1.07197e-10 -6.54775e-13 1.41858e-11) (3.66561e-11 -2.68375e-12 1.65652e-11) (6.3308e-12 -6.6527e-13 4.67148e-12) (3.43068e-13 -1.75601e-14 2.91178e-13) (-6.7395e-14 -5.05698e-14 1.16086e-14) (-6.82738e-12 -3.03013e-12 5.91377e-13) (-9.13534e-11 -2.36834e-11 -5.555e-13) (-4.41472e-10 -5.69582e-11 -3.1809e-11) (-6.98086e-10 -6.51555e-11 1.43388e-11) (-3.97668e-10 -8.55617e-11 2.15492e-10) (-1.76081e-10 -1.7487e-10 5.69524e-10) (2.77531e-11 -2.15392e-10 1.01569e-09) (3.48408e-11 -2.94034e-11 8.04065e-10) (-6.33876e-12 8.60385e-11 3.58139e-10) (3.12164e-11 6.05003e-11 6.03617e-11) (6.00327e-10 2.37857e-10 -2.9583e-10) (4.22917e-09 5.88233e-10 -2.98915e-09) (6.7517e-09 4.31124e-10 -4.76749e-09) (4.44734e-09 1.68752e-10 -2.72044e-09) (1.43513e-09 2.10447e-11 -7.10026e-10) (1.64147e-10 -1.6333e-11 -7.74699e-11) (1.24481e-12 -5.18828e-12 -9.19032e-12) (-3.8349e-11 -1.67718e-11 -5.46832e-11) (-5.15377e-11 -8.79658e-12 -1.1823e-10) (-1.97966e-12 6.58188e-12 -7.06771e-11) (8.46966e-12 3.42932e-12 -9.26289e-12) (6.97692e-12 3.07555e-13 3.16605e-12) (2.72552e-12 -3.58171e-12 6.40039e-12) (-3.49099e-12 -5.79336e-12 3.37464e-12) (-7.6209e-12 -5.65195e-12 -1.01883e-12) (-2.51627e-12 -1.297e-12 -1.10195e-12) (-2.81896e-12 -5.58517e-13 4.40472e-12) (-6.39748e-11 -2.49503e-12 6.54188e-11) (-4.79245e-10 -1.00155e-11 3.3175e-10) (-1.15806e-09 -1.68887e-11 6.46144e-10) (-9.51136e-10 -1.52854e-11 4.32842e-10) (-1.6727e-10 -4.23992e-12 4.84474e-11) (1.17926e-14 -1.53848e-14 -2.05174e-13) (5.48265e-11 1.99747e-12 -9.55898e-12) (1.19676e-10 4.26333e-12 1.0554e-11) (8.29955e-11 -1.42983e-12 2.61605e-11) (2.90391e-11 -3.11302e-12 1.4637e-11) (6.78181e-12 -1.09314e-12 3.80961e-12) (1.3704e-12 -2.56446e-13 7.22614e-13) (1.84816e-14 -1.51578e-13 1.81465e-13) (-8.21506e-12 -2.97482e-12 1.43493e-12) (-1.23572e-10 -2.007e-11 -7.07155e-12) (-4.32542e-10 -4.09745e-11 -3.18174e-11) (-4.0415e-10 -4.95422e-11 6.19373e-11) (-1.91454e-10 -7.70968e-11 2.19424e-10) (-9.7508e-11 -1.75153e-10 6.12704e-10) (-2.92042e-11 -1.33953e-10 7.41263e-10) (-1.36174e-12 6.39136e-12 3.19975e-10) (3.4009e-11 2.84484e-11 4.64143e-11) (5.68934e-10 1.78623e-10 -1.81121e-10) (4.16927e-09 5.72791e-10 -2.31732e-09) (7.71575e-09 4.48e-10 -5.06198e-09) (5.38267e-09 1.62048e-10 -3.66503e-09) (1.78575e-09 7.98602e-11 -1.04519e-09) (2.55507e-10 1.33037e-11 -1.01682e-10) (2.86981e-12 -4.9047e-13 -1.49138e-12) (-2.72872e-11 -7.33093e-12 -1.64512e-11) (-9.17811e-11 -1.51944e-11 -8.75362e-11) (-3.58592e-11 -8.13866e-13 -8.01935e-11) (7.04624e-12 3.4768e-12 -1.75091e-11) (2.15974e-11 4.25755e-12 2.34816e-12) (2.64974e-11 -1.59087e-13 2.1338e-11) (4.10915e-12 -4.03992e-12 9.77741e-12) (-2.8219e-12 -3.54389e-12 2.3484e-12) (-3.80351e-12 -2.6781e-12 -1.60752e-13) (-7.47095e-13 -4.46614e-13 1.38994e-13) (3.62986e-11 -2.48938e-12 1.67276e-11) (4.91963e-12 -1.42734e-12 2.40856e-11) (-7.0654e-11 -3.45973e-12 1.02081e-10) (-2.26279e-10 -4.57479e-12 2.04909e-10) (-1.02707e-10 -2.15024e-12 8.30597e-11) (-1.31584e-13 -1.36474e-13 1.21154e-12) (6.53935e-11 -8.66259e-13 -3.67597e-13) (2.62628e-10 4.92359e-12 1.26691e-11) (3.49086e-10 5.69901e-12 5.25259e-11) (2.72421e-10 -4.78321e-12 6.08822e-11) (1.70818e-10 -1.00549e-11 3.87545e-11) (1.14522e-10 -7.24458e-12 2.02543e-11) (8.48629e-11 -5.47227e-12 1.24363e-11) (4.05187e-11 -4.97697e-12 6.32565e-12) (2.07715e-12 -9.79089e-13 2.61217e-13) (-1.00179e-11 -2.62711e-12 -2.20199e-12) (-6.88364e-11 -9.69296e-12 -2.93554e-12) (-4.98142e-11 -1.5175e-11 3.17856e-11) (-2.323e-11 -5.9959e-11 1.8499e-10) (6.78228e-11 -1.34749e-10 5.10733e-10) (1.08143e-10 -7.19098e-11 4.30049e-10) (1.06422e-10 6.97738e-12 1.25524e-10) (5.32833e-10 8.99526e-11 -3.90172e-11) (3.47094e-09 3.80089e-10 -1.31112e-09) (8.07837e-09 4.68679e-10 -3.96402e-09) (7.95537e-09 1.70918e-10 -4.43363e-09) (4.00413e-09 8.35185e-11 -2.08338e-09) (1.3503e-09 7.3815e-11 -4.2021e-10) (3.56877e-10 2.17241e-11 -1.41545e-11) (5.01967e-11 -7.82658e-13 -1.16112e-13) (6.68374e-12 -2.24125e-12 -8.88493e-12) (1.6512e-11 -4.10014e-12 -4.18343e-11) (7.2097e-11 2.86457e-12 -6.04873e-11) (2.2546e-10 1.9862e-11 -2.95381e-11) (3.98912e-10 2.79843e-11 7.62494e-11) (3.15211e-10 2.41628e-12 9.88896e-11) (1.24873e-10 -1.36444e-11 3.36034e-11) (4.6993e-11 -1.09429e-11 3.06754e-12) (4.07e-11 -8.48237e-12 -2.4988e-12) (5.25651e-11 -5.69076e-12 3.91717e-12) (1.14686e-09 -2.259e-11 7.34453e-11) (3.42406e-10 -6.45905e-12 9.66552e-11) (5.37932e-11 -1.03922e-12 6.73592e-11) (5.96728e-12 -2.33987e-13 6.68026e-11) (2.49418e-11 -2.19551e-13 3.33835e-11) (1.89101e-10 -2.88317e-12 4.36753e-11) (6.86499e-10 -1.05425e-12 6.99123e-11) (1.23083e-09 1.19489e-11 1.39443e-10) (1.45519e-09 6.85858e-12 2.11016e-10) (1.3605e-09 -1.60375e-11 2.11857e-10) (1.20224e-09 -3.22773e-11 1.70809e-10) (1.12036e-09 -3.20461e-11 1.4474e-10) (1.00313e-09 -3.10711e-11 1.31658e-10) (6.34894e-10 -2.84044e-11 8.27625e-11) (1.60804e-10 -1.20892e-11 1.57111e-11) (5.02587e-12 -8.53987e-13 1.10434e-13) (-1.82545e-12 -8.57397e-13 1.33242e-12) (1.78032e-12 -1.01267e-11 3.41994e-11) (7.84072e-11 -6.23758e-11 2.52657e-10) (2.09016e-10 -1.03195e-10 4.91027e-10) (3.12005e-10 -5.58486e-11 3.75263e-10) (7.50119e-10 5.04782e-12 1.88694e-10) (3.50309e-09 1.52151e-10 -5.53579e-10) (1.02591e-08 3.16469e-10 -3.04038e-09) (1.60523e-08 2.30493e-10 -5.78474e-09) (1.55025e-08 -1.65982e-11 -5.85991e-09) (1.12036e-08 7.02815e-11 -3.39755e-09) (7.10987e-09 1.62686e-10 -1.14696e-09) (4.15493e-09 8.90556e-11 -2.8688e-10) (2.18003e-09 -7.57722e-13 -2.78328e-10) (1.40272e-09 -3.06841e-11 -4.25996e-10) (1.56899e-09 -1.69641e-11 -5.59743e-10) (2.47426e-09 4.06334e-11 -5.20154e-10) (3.87588e-09 1.18299e-10 -1.63292e-10) (4.72411e-09 1.25628e-10 2.42413e-10) (4.20708e-09 3.13109e-11 2.50435e-10) (3.10243e-09 -6.50825e-11 2.37635e-11) (2.39479e-09 -9.88778e-11 -1.2054e-10) (2.14356e-09 -8.61244e-11 -1.29547e-10) (1.88001e-09 -5.19033e-11 -3.79067e-11) (1.06099e-09 -1.55935e-11 -7.85698e-11) (1.21853e-10 -6.10487e-13 2.0028e-11) (-1.03996e-12 1.86996e-12 4.66951e-11) (1.03855e-11 2.25691e-12 5.76702e-11) (1.01369e-10 2.11218e-12 6.06501e-11) (4.37353e-10 1.61334e-12 9.94932e-11) (9.99056e-10 7.58257e-12 1.4442e-10) (1.48201e-09 1.36837e-11 1.92895e-10) (1.64249e-09 6.32369e-12 2.1533e-10) (1.5277e-09 -1.09549e-11 1.98424e-10) (1.37379e-09 -2.23566e-11 1.89467e-10) (1.22904e-09 -2.54967e-11 2.03564e-10) (8.88099e-10 -2.20186e-11 1.76464e-10) (3.24477e-10 -9.21396e-12 6.97481e-11) (2.65413e-11 -5.06178e-13 5.42767e-12) (-1.28689e-11 1.96782e-13 -1.25877e-13) (-1.12823e-11 -7.71649e-13 4.5371e-12) (2.43404e-13 -4.70367e-12 2.85597e-11) (3.06294e-11 -1.94876e-11 1.23218e-10) (8.5504e-11 -2.46162e-11 1.70847e-10) (2.58799e-10 -1.5963e-11 1.3998e-10) (1.56976e-09 9.65052e-12 -3.04731e-11) (6.44452e-09 8.35394e-11 -1.27892e-09) (1.49793e-08 6.87745e-11 -4.03618e-09) (2.21446e-08 -9.38569e-11 -7.05619e-09) (2.3275e-08 -3.00164e-10 -7.93864e-09) (1.8594e-08 -1.95494e-10 -5.58197e-09) (1.2273e-08 -1.84194e-11 -2.84233e-09) (7.17793e-09 -6.4246e-12 -1.6125e-09) (4.22115e-09 -3.67183e-11 -1.33528e-09) (3.3467e-09 -4.05076e-11 -1.30064e-09) (4.0908e-09 -1.45716e-11 -1.22724e-09) (6.42255e-09 4.35428e-11 -8.94504e-10) (9.6296e-09 1.09671e-10 -2.24167e-10) (1.14904e-08 1.01666e-10 2.57227e-10) (1.06514e-08 5.66677e-12 9.34112e-11) (8.42892e-09 -9.12917e-11 -3.27216e-10) (6.48506e-09 -1.29505e-10 -5.48751e-10) (4.96725e-09 -1.07027e-10 -5.22927e-10) (3.12494e-09 -5.82973e-11 -3.32775e-10) (1.69354e-11 -4.28635e-13 -1.47315e-11) (-2.26454e-12 3.36079e-14 -4.17565e-13) (-2.63531e-12 1.47334e-13 2.26132e-12) (1.11251e-12 1.11832e-13 3.26125e-12) (1.24525e-11 2.42777e-13 6.58279e-12) (3.68134e-11 3.45297e-13 8.29156e-12) (6.55625e-11 5.70591e-13 6.31983e-12) (8.60347e-11 6.87887e-13 2.82647e-12) (8.66381e-11 6.41504e-13 1.42327e-12) (7.16424e-11 1.48399e-13 2.96273e-12) (5.4243e-11 -3.44651e-13 6.89437e-12) (3.55975e-11 -5.04606e-13 9.5617e-12) (1.36984e-11 -2.40615e-13 6.16975e-12) (9.65324e-13 6.42655e-15 1.12681e-12) (-2.43653e-12 1.62393e-13 1.95386e-13) (-2.59778e-12 1.7331e-13 -4.68898e-13) (-2.26713e-13 1.13777e-14 -9.67599e-14) (1.00554e-13 -1.2551e-15 2.13854e-14) (8.39071e-13 -9.64007e-14 8.5594e-13) (4.96786e-12 -4.21665e-13 3.64048e-12) (4.03848e-11 -9.7752e-13 9.23995e-12) (2.39972e-10 1.44597e-13 -9.18581e-13) (8.01176e-10 3.36305e-12 -8.72616e-11) (1.69763e-09 -6.73647e-14 -3.23556e-10) (2.37694e-09 -1.64976e-11 -7.07936e-10) (2.22541e-09 -3.54639e-11 -9.48976e-10) (1.37816e-09 -2.9213e-11 -7.1427e-10) (6.56027e-10 -1.29704e-11 -3.90586e-10) (3.24573e-10 -6.04176e-12 -2.36704e-10) (2.19897e-10 -3.94822e-12 -1.84523e-10) (2.33674e-10 -2.63713e-12 -1.54592e-10) (3.74272e-10 -1.64328e-12 -1.29794e-10) (6.94734e-10 1.10539e-13 -8.42412e-11) (1.09775e-09 2.6508e-12 -8.09721e-12) (1.29971e-09 1.79876e-12 2.69764e-11) (1.16528e-09 -2.22382e-12 -2.27154e-11) (8.7692e-10 -5.7618e-12 -9.28522e-11) (6.05735e-10 -7.91451e-12 -1.24603e-10) (3.57155e-10 -6.14029e-12 -1.12117e-10) (1.34259e-10 -2.62487e-12 -6.46575e-11) (-8.02663e-11 1.68106e-10 1.66275e-11) (-4.2457e-11 2.66241e-11 -8.02463e-11) (9.03285e-11 -1.16235e-10 -5.2279e-10) (4.23775e-10 -3.30934e-10 -8.73064e-10) (1.57926e-10 -2.39594e-10 -3.00419e-10) (-1.26509e-10 -2.57778e-10 -3.74736e-11) (-1.07628e-09 -8.61338e-10 2.02541e-10) (-1.43784e-09 -7.73321e-10 2.24411e-10) (-4.54685e-10 -9.05142e-11 4.22343e-11) (-5.19984e-11 5.24375e-11 2.47794e-12) (3.29843e-11 1.41682e-10 4.21061e-13) (1.2795e-10 1.56359e-10 4.39108e-12) (1.18227e-10 6.49693e-11 8.41786e-12) (4.97768e-11 7.29882e-12 4.91458e-12) (7.10889e-12 -8.19484e-13 4.60068e-13) (1.26397e-13 1.74203e-13 -8.5092e-14) (-8.4602e-13 7.02525e-12 -5.33956e-13) (3.04943e-12 3.03547e-11 7.7283e-12) (2.50625e-11 5.54869e-11 4.6777e-11) (7.08256e-11 6.69504e-11 1.37622e-10) (9.28704e-11 4.84608e-11 1.95543e-10) (4.67336e-11 2.32678e-11 1.05146e-10) (5.86453e-12 7.16461e-12 1.34128e-11) (-8.38075e-13 4.15285e-12 -1.77623e-12) (-1.43015e-11 1.94925e-11 -2.80839e-11) (-2.64765e-11 2.51231e-11 -4.95526e-11) (-1.07946e-11 7.66812e-12 -2.29847e-11) (3.00726e-14 -8.3173e-13 -2.4498e-12) (7.38498e-12 -1.01721e-11 -8.84293e-13) (2.23993e-11 -3.23162e-11 -1.14604e-12) (1.31836e-11 -3.36906e-11 -1.16417e-11) (-1.5247e-11 -3.89698e-11 -2.54541e-11) (-1.1205e-10 -9.68619e-11 -4.21383e-11) (-2.5173e-10 -2.03806e-10 5.4363e-12) (-1.96513e-10 -1.97359e-10 7.24309e-11) (-3.21151e-11 -4.43286e-11 3.7953e-11) (1.00791e-11 1.07903e-11 2.00147e-11) (1.38441e-10 2.46667e-10 1.10353e-10) (2.07475e-10 6.45036e-10 2.27074e-10) (-2.78285e-12 5.39982e-10 1.84999e-10) (7.89031e-10 1.17214e-09 -1.79328e-10) (5.27285e-10 7.33653e-10 -3.74304e-10) (3.21407e-10 2.9804e-10 -4.37544e-10) (1.76643e-10 -2.57931e-13 -3.9295e-10) (-5.71958e-12 -2.25986e-10 -2.93367e-10) (-5.44351e-10 -9.77183e-10 -4.2138e-10) (-1.70185e-09 -2.2717e-09 -4.71781e-10) (-1.55581e-09 -1.68929e-09 -1.65768e-10) (-4.47277e-10 -2.7156e-10 6.67626e-11) (-1.06667e-10 6.11419e-11 7.07131e-11) (-4.70385e-11 2.30173e-10 9.81565e-11) (4.84161e-11 1.94877e-10 3.19448e-11) (1.01108e-10 9.18162e-11 -1.49774e-11) (1.47239e-10 2.8762e-11 -3.004e-11) (1.02901e-10 -8.63697e-12 -1.23435e-11) (1.71375e-11 -2.8181e-12 3.00524e-12) (-1.86424e-13 2.08429e-12 5.1243e-12) (-1.74665e-11 2.66036e-11 3.48672e-11) (-2.03165e-11 6.39939e-11 7.59214e-11) (6.52578e-12 7.4289e-11 1.00094e-10) (1.74935e-11 5.45362e-11 9.15776e-11) (1.24479e-12 2.65167e-11 5.36447e-11) (-8.7793e-12 1.06767e-11 2.02038e-11) (-6.06237e-12 4.1272e-12 3.29217e-12) (-1.58642e-12 1.91593e-12 -2.13527e-12) (1.00261e-11 4.77881e-12 -2.00498e-11) (8.35309e-11 2.94152e-12 -8.02153e-11) (1.92773e-10 -2.08929e-11 -1.35315e-10) (1.75038e-10 -4.36286e-11 -1.1454e-10) (5.2229e-11 -3.01351e-11 -4.84741e-11) (-3.10193e-12 -1.4943e-11 -1.34963e-11) (-7.65016e-11 -5.70493e-11 -1.95049e-12) (-3.23609e-10 -2.36856e-10 1.17881e-10) (-6.44715e-10 -5.58534e-10 3.43002e-10) (-7.91791e-10 -6.85778e-10 4.08141e-10) (-6.06058e-10 -3.92851e-10 3.00155e-10) (-2.46375e-10 -5.40443e-11 1.74021e-10) (-5.19387e-11 8.13493e-11 1.13158e-10) (1.37695e-10 3.70713e-10 1.68701e-10) (6.15591e-10 9.81639e-10 9.43059e-11) (1.19621e-11 5.59918e-10 1.10528e-10) (5.897e-10 1.38199e-09 -2.29558e-10) (1.09192e-09 1.54832e-09 -8.02233e-10) (8.01301e-10 6.26399e-10 -8.77827e-10) (3.75682e-10 -1.47166e-10 -7.60187e-10) (3.62637e-11 -1.04586e-09 -1.01188e-09) (-6.37048e-10 -2.15421e-09 -9.71637e-10) (-8.79583e-10 -1.67428e-09 -1.10472e-10) (-4.51189e-10 -4.31906e-10 3.22665e-10) (-2.50561e-10 8.82924e-11 3.85044e-10) (-1.5474e-10 4.02355e-10 3.55379e-10) (-2.11282e-11 3.21053e-10 1.05944e-10) (2.81135e-11 1.12466e-10 -2.20568e-11) (3.55668e-11 3.41672e-11 -4.75812e-11) (2.94391e-11 2.53082e-12 -4.46306e-11) (6.99444e-12 -3.61472e-12 -1.05255e-11) (8.22917e-13 -1.4839e-12 1.16976e-12) (7.8037e-12 -1.07867e-11 4.60185e-11) (3.47407e-11 -2.42773e-12 1.5821e-10) (5.14572e-11 4.86814e-11 1.85728e-10) (3.50647e-11 7.60505e-11 1.02375e-10) (1.53731e-11 5.22699e-11 2.55627e-11) (5.909e-12 1.78259e-11 -1.92735e-12) (3.01262e-12 2.63076e-12 -4.35643e-12) (5.23335e-12 -3.60255e-12 -7.40746e-12) (1.06504e-11 -1.06822e-11 -1.18237e-11) (1.54319e-11 -9.85549e-12 -1.37023e-11) (2.00787e-11 -3.44792e-12 -1.4783e-11) (2.43208e-11 3.73839e-12 -1.35678e-11) (1.92645e-11 5.82452e-12 -5.31236e-12) (6.10495e-12 1.05137e-12 2.47322e-12) (-2.55905e-13 -1.13782e-11 1.76105e-11) (-7.61015e-11 -1.38933e-10 9.36579e-11) (-3.61736e-10 -4.96058e-10 1.35585e-10) (-7.576e-10 -7.12954e-10 9.50787e-12) (-1.03325e-09 -5.32384e-10 -5.62712e-11) (-1.07677e-09 -2.24907e-10 9.72429e-11) (-8.63631e-10 -9.19633e-12 3.03468e-10) (-5.09856e-10 1.24699e-10 3.2965e-10) (-2.11342e-10 2.36183e-10 2.07914e-10) (-2.43412e-10 3.92778e-10 6.09794e-11) (-2.34678e-10 9.46825e-10 1.3818e-11) (2.39288e-10 1.16039e-09 -2.49752e-10) (6.49291e-10 7.72306e-10 -5.66483e-10) (5.55129e-10 6.06262e-11 -6.48009e-10) (2.80007e-10 -5.75172e-10 -6.45027e-10) (-1.5324e-10 -1.23099e-09 -4.25388e-10) (-4.14763e-10 -1.11275e-09 1.97671e-10) (-2.58827e-10 -4.20502e-10 4.81939e-10) (-1.25638e-10 4.77961e-11 4.75652e-10) (-1.02721e-10 4.17466e-10 4.63314e-10) (-1.138e-10 5.46883e-10 2.67852e-10) (-7.09958e-11 2.67367e-10 3.51638e-11) (-1.54554e-11 4.69301e-11 -2.45273e-11) (2.97546e-12 -1.34691e-12 -3.439e-11) (3.56658e-11 -6.0684e-11 -6.49732e-11) (8.10921e-11 -1.5006e-10 -3.77602e-11) (8.67418e-11 -1.70313e-10 5.17114e-11) (4.08564e-11 -6.32364e-11 8.14123e-11) (1.80103e-11 1.88977e-11 5.90284e-11) (3.1405e-11 1.02759e-10 4.68306e-11) (7.23525e-11 1.66147e-10 -1.3464e-11) (1.02558e-10 1.35388e-10 -6.70923e-11) (6.76439e-11 5.00616e-11 -4.75866e-11) (1.22155e-11 3.05284e-12 -7.33294e-12) (2.23756e-13 -9.8084e-13 3.19549e-14) (-3.4921e-12 -6.04635e-12 1.83114e-12) (-1.27455e-12 -3.86536e-12 4.33475e-13) (4.63192e-12 -2.3401e-12 -8.05256e-13) (4.98675e-11 5.05748e-13 3.89901e-13) (8.70578e-11 1.1895e-12 2.49391e-11) (3.93599e-11 -2.7796e-11 4.08756e-11) (-5.82596e-11 -1.90929e-10 9.61823e-11) (-6.45175e-10 -8.19291e-10 9.21373e-11) (-1.52984e-09 -1.19572e-09 -2.55615e-10) (-1.55564e-09 -6.86103e-10 -4.06753e-10) (-7.6774e-10 -1.51094e-10 -1.58099e-10) (-2.02923e-10 -7.65311e-12 -4.67626e-12) (-5.85929e-11 1.38223e-11 1.28335e-11) (-8.57871e-11 7.43206e-11 2.49684e-11) (1.66144e-10 4.50014e-10 -1.25293e-10) (2.44185e-10 1.18133e-09 -6.50755e-12) (2.90612e-10 1.36043e-09 7.14583e-11) (2.16441e-10 5.84003e-10 -4.33467e-11) (3.42316e-11 3.75125e-11 -2.83223e-11) (-4.20228e-12 -6.99268e-11 -1.88007e-11) (-1.7751e-10 -6.49045e-10 1.85907e-10) (-2.99244e-10 -1.04123e-09 8.35196e-10) (-1.93581e-10 -5.38814e-10 1.02671e-09) (-1.01727e-10 2.44537e-11 5.40253e-10) (-6.54141e-11 1.83873e-10 1.78352e-10) (-5.46664e-11 2.37359e-10 3.09539e-11) (-1.58132e-11 1.44902e-10 -2.59609e-11) (1.45407e-11 3.1947e-11 -1.63574e-11) (5.80293e-11 -1.60696e-12 -2.24936e-11) (1.59468e-10 -8.09267e-11 -2.37375e-11) (1.07467e-10 -1.17607e-10 2.78504e-11) (-9.75911e-12 -9.25633e-11 6.10992e-11) (-1.51557e-10 -9.50212e-11 8.63077e-11) (-1.43852e-10 -2.01399e-11 7.20943e-12) (-3.4325e-11 3.27133e-11 -5.26676e-11) (1.34947e-10 2.10232e-10 -2.60773e-10) (5.02188e-10 4.15533e-10 -4.03766e-10) (4.95395e-10 2.94227e-10 -1.85056e-10) (2.18319e-10 8.22908e-11 -6.16815e-13) (5.48686e-11 -2.04779e-12 2.09293e-11) (1.5166e-11 -1.76334e-11 8.12709e-12) (1.16036e-11 -3.03369e-11 -7.09959e-12) (2.1234e-11 -3.02401e-11 -2.39239e-11) (2.95395e-11 -1.15467e-11 -1.23028e-11) (4.17496e-11 -5.45008e-12 2.35442e-11) (3.2256e-11 -5.14033e-11 1.27414e-10) (-2.41214e-10 -3.28779e-10 2.93223e-10) (-1.83665e-09 -1.34553e-09 2.23617e-10) (-4.91282e-09 -2.39612e-09 -7.63272e-10) (-4.56018e-09 -1.60137e-09 -1.17314e-09) (-1.31847e-09 -4.28626e-10 -5.09432e-10) (-9.7021e-11 -5.7107e-11 -1.15532e-10) (2.87017e-11 -3.43124e-12 -8.22879e-11) (9.31947e-11 9.56259e-11 -1.1701e-10) (7.59861e-10 6.91344e-10 -4.40485e-10) (1.16768e-09 1.58945e-09 -1.40945e-10) (1.17413e-09 2.13729e-09 2.98085e-10) (4.72411e-10 1.13296e-09 2.81847e-10) (3.11808e-11 1.15152e-10 5.33435e-11) (-1.22411e-11 -2.64684e-11 3.31042e-11) (-1.03419e-10 -4.26464e-10 3.65312e-10) (-1.60366e-10 -7.3092e-10 1.02854e-09) (-2.53305e-10 -3.57687e-10 1.22354e-09) (-3.21986e-10 4.92049e-11 7.10077e-10) (-2.09038e-10 1.30953e-10 1.87713e-10) (-6.62984e-11 7.74988e-11 1.46103e-12) (6.7544e-12 3.42935e-11 -2.27474e-11) (1.26301e-10 2.8426e-11 -5.31137e-11) (4.31238e-10 -7.78588e-11 -8.63385e-11) (4.24004e-10 -2.27705e-10 -5.78621e-11) (8.11218e-11 -1.50284e-10 -1.61655e-11) (-9.95301e-11 -1.05687e-10 -2.7956e-11) (-4.86541e-10 -5.38696e-11 -2.02551e-10) (-5.61579e-10 2.29198e-10 -5.3172e-10) (-1.30642e-10 3.99322e-10 -6.27182e-10) (2.99904e-10 3.87338e-10 -4.34984e-10) (6.33416e-10 3.40735e-10 -1.54492e-10) (8.31174e-10 2.24621e-10 1.66775e-10) (6.17788e-10 2.08508e-11 2.94547e-10) (1.90553e-10 -6.6138e-11 1.26391e-10) (1.11152e-11 -2.49667e-11 4.23805e-12) (-3.30056e-11 -4.31894e-11 -6.3689e-11) (-7.20573e-11 -3.09424e-11 -1.59489e-10) (-4.99536e-12 1.98796e-12 -2.29729e-11) (2.18118e-11 4.5212e-12 3.28725e-11) (7.98758e-11 -8.16752e-11 3.43458e-10) (-3.51129e-10 -4.33548e-10 4.95057e-10) (-3.92526e-09 -2.18012e-09 5.38289e-10) (-1.14823e-08 -4.3736e-09 -6.51899e-10) (-8.53781e-09 -3.07362e-09 -1.12776e-09) (-1.72337e-09 -9.10212e-10 -6.57487e-10) (-9.69245e-11 -2.10667e-10 -3.55183e-10) (2.60886e-10 -6.85011e-11 -5.32654e-10) (5.26697e-10 2.16178e-10 -5.84502e-10) (8.97682e-10 7.73416e-10 -5.1685e-10) (1.229e-09 1.28716e-09 -1.97281e-10) (1.32289e-09 1.5995e-09 1.69461e-10) (7.03915e-10 9.78616e-10 2.65292e-10) (1.05094e-10 1.49155e-10 9.53502e-11) (4.86984e-12 -1.85374e-11 5.12731e-11) (-5.56821e-11 -2.4356e-10 3.15983e-10) (-1.85219e-10 -3.64993e-10 7.83254e-10) (-3.76978e-10 -1.17284e-10 9.56584e-10) (-5.21009e-10 1.11194e-10 6.71911e-10) (-3.62398e-10 1.27565e-10 2.14056e-10) (-7.08952e-11 3.80481e-11 2.48686e-12) (4.68299e-12 4.94321e-12 -1.05611e-11) (1.32088e-10 -2.68614e-11 -7.23624e-11) (2.32757e-10 -1.3196e-10 -1.35562e-10) (7.13754e-11 -1.4819e-10 -1.63713e-10) (-1.71782e-10 -1.71187e-10 -3.89173e-10) (-5.77706e-10 -4.67094e-11 -9.17868e-10) (-4.82751e-10 1.99791e-10 -9.29792e-10) (-9.63156e-11 1.67824e-10 -3.60291e-10) (2.95512e-11 5.47493e-11 -5.14645e-11) (1.25689e-10 5.39501e-11 2.67209e-11) (4.05244e-10 6.0225e-11 2.26358e-10) (4.83186e-10 2.07922e-11 3.83512e-10) (1.59382e-10 -2.49714e-12 1.89621e-10) (1.09643e-12 -2.24438e-13 5.72269e-12) (-4.91836e-11 4.86297e-12 -6.44534e-11) (-1.97281e-10 3.19853e-11 -4.30784e-10) (-8.69457e-11 2.18707e-11 -2.75814e-10) (2.29942e-12 1.60682e-13 -1.37557e-12) (1.72043e-10 -5.23633e-11 2.77901e-10) (1.21967e-10 -2.48574e-10 6.51115e-10) (-9.10315e-10 -6.05022e-10 6.75332e-10) (-7.10562e-09 -2.3389e-09 8.39416e-10) (-1.14883e-08 -3.6371e-09 2.87258e-10) (-5.27086e-09 -2.51138e-09 -2.24605e-10) (-1.02759e-09 -9.2321e-10 -4.47892e-10) (-8.47498e-11 -2.7738e-10 -4.3414e-10) (2.48765e-10 -9.36655e-12 -5.97123e-10) (6.00972e-10 3.59354e-10 -6.86168e-10) (1.04753e-09 9.01498e-10 -7.28866e-10) (1.01144e-09 9.11441e-10 -2.9582e-10) (7.57412e-10 7.1768e-10 -5.51158e-12) (3.57778e-10 3.35965e-10 7.0114e-11) (6.83299e-11 4.53349e-11 3.54971e-11) (1.3871e-11 -1.57647e-11 3.93704e-11) (-3.81228e-11 -1.20492e-10 2.29624e-10) (-2.44633e-10 -1.77737e-10 6.09711e-10) (-5.70476e-10 -4.92543e-11 8.36042e-10) (-7.14959e-10 7.96855e-11 6.25029e-10) (-3.92545e-10 8.02387e-11 1.81543e-10) (-5.60989e-11 1.9493e-11 -3.87469e-12) (3.52276e-12 3.53622e-12 -2.40527e-11) (7.1901e-11 -2.49405e-11 -1.24946e-10) (6.65305e-11 -9.09552e-11 -2.73799e-10) (-1.43168e-10 -1.73322e-10 -5.83157e-10) (-5.26728e-10 -1.82391e-10 -9.87368e-10) (-4.87263e-10 -4.36619e-11 -7.40556e-10) (-1.32206e-10 1.67733e-11 -1.72157e-10) (-5.46113e-12 1.81647e-12 -4.42995e-12) (1.23349e-12 -5.951e-13 3.32478e-12) (1.8566e-11 -6.70184e-12 3.2343e-11) (2.93998e-11 5.5446e-12 5.99979e-11) (1.31344e-11 2.73255e-11 4.62721e-11) (-1.11605e-12 1.7982e-11 5.5555e-12) (-7.8518e-13 2.05138e-11 -3.21213e-11) (4.10462e-11 3.33178e-11 -1.78914e-10) (9.58708e-11 2.4593e-11 -2.00909e-10) (6.78022e-11 2.62091e-12 -3.60368e-11) (1.86682e-10 -3.37356e-11 1.30805e-10) (3.15663e-10 -1.24993e-10 5.20038e-10) (-7.02322e-11 -9.72953e-11 3.79161e-10) (-1.46893e-09 -2.79841e-10 6.0497e-10) (-4.84737e-09 -1.16883e-09 8.04101e-10) (-4.34788e-09 -2.00432e-09 6.51009e-10) (-2.1711e-09 -1.58431e-09 2.64663e-10) (-7.10185e-10 -5.98816e-10 -9.78131e-11) (-9.80156e-11 -8.38273e-11 -1.48828e-10) (1.23463e-10 9.4015e-11 -3.98587e-10) (6.78649e-10 5.6372e-10 -8.50395e-10) (1.00829e-09 1.01052e-09 -1.04956e-09) (6.71673e-10 5.86974e-10 -4.39915e-10) (3.55132e-10 2.30725e-10 -9.63079e-11) (1.60144e-10 5.60127e-11 1.00448e-12) (6.37503e-11 -5.89316e-12 2.24235e-11) (3.4245e-11 -3.60138e-11 5.86262e-11) (-3.75776e-11 -9.32494e-11 2.12912e-10) (-3.34635e-10 -1.28214e-10 5.23322e-10) (-7.84052e-10 -8.74009e-11 7.26545e-10) (-7.88258e-10 3.84489e-12 4.66586e-10) (-3.08088e-10 4.61289e-11 7.74036e-11) (-4.94927e-11 2.57247e-11 -3.15372e-11) (8.56279e-12 3.59393e-11 -1.21995e-10) (7.60429e-11 3.19222e-11 -2.95027e-10) (5.25149e-12 -5.90246e-12 -3.70284e-10) (-1.95064e-10 -4.45125e-11 -3.99784e-10) (-3.7811e-10 -8.19605e-11 -3.31477e-10) (-2.31817e-10 -7.97329e-11 -1.01495e-10) (-4.83537e-11 -3.853e-11 -1.96111e-12) (-6.5439e-12 -1.69606e-11 4.20776e-12) (-3.19091e-12 -6.55342e-12 1.06214e-12) (-1.35094e-11 -2.51796e-12 6.65287e-13) (-5.76942e-11 1.69908e-11 3.49005e-12) (-6.47169e-11 3.49566e-11 -4.49777e-12) (-9.32827e-12 1.07306e-11 -7.19923e-12) (2.90098e-11 9.1882e-12 -1.26378e-11) (4.26609e-10 7.48196e-11 -2.85606e-11) (1.15759e-09 2.50308e-10 5.89212e-11) (1.15223e-09 2.30225e-10 2.10532e-10) (4.26506e-10 3.98055e-11 1.96215e-10) (1.37309e-11 -4.83541e-12 5.58359e-11) (-3.63026e-10 -4.38599e-11 1.65618e-10) (-1.51628e-09 -3.55618e-10 3.69999e-10) (-1.70469e-09 -8.78542e-10 5.31341e-10) (-1.51807e-09 -1.10867e-09 6.2115e-10) (-1.31082e-09 -8.48475e-10 5.01316e-10) (-4.40321e-10 -2.05794e-10 1.61556e-10) (-6.08833e-12 3.1391e-12 -1.28202e-13) (1.74083e-10 2.39721e-10 -2.20452e-10) (8.29867e-10 8.94907e-10 -1.00565e-09) (1.08192e-09 1.09576e-09 -1.23672e-09) (5.63055e-10 4.12056e-10 -5.96769e-10) (2.2017e-10 6.0522e-11 -1.39773e-10) (1.22014e-10 -2.53995e-11 -1.75758e-11) (1.00843e-10 -5.94982e-11 3.9621e-11) (5.22651e-11 -6.9494e-11 9.94767e-11) (-6.75286e-11 -8.77232e-11 2.17052e-10) (-4.3606e-10 -1.34311e-10 4.52261e-10) (-7.92462e-10 -1.58008e-10 4.78937e-10) (-5.05101e-10 -6.37027e-11 1.62767e-10) (-1.26411e-10 1.41558e-11 -2.19548e-11) (-3.84298e-11 4.83604e-11 -9.43203e-11) (3.89683e-11 1.17749e-10 -2.57214e-10) (7.80294e-11 1.26797e-10 -2.94844e-10) (-3.50911e-12 5.30775e-11 -1.43679e-10) (-6.27121e-11 3.81688e-12 -6.01605e-11) (-1.24403e-10 -7.2225e-11 -2.90874e-11) (-8.7557e-11 -1.81041e-10 6.2708e-12) (5.60171e-12 -1.89333e-10 -2.14504e-12) (9.07317e-12 -6.19767e-11 -2.39869e-11) (-2.28004e-11 -1.29227e-11 -3.07339e-11) (-1.62681e-10 2.51317e-11 -5.7867e-11) (-3.77279e-10 1.01062e-10 1.80943e-11) (-3.11803e-10 1.08847e-10 1.22814e-10) (-6.29143e-11 4.6963e-11 1.23162e-10) (2.56727e-10 7.63346e-11 3.42598e-10) (1.53038e-09 2.91239e-10 6.59559e-10) (2.77738e-09 6.49816e-10 1.72846e-10) (1.95684e-09 5.1104e-10 -4.25549e-10) (2.77792e-10 7.86565e-11 -1.83133e-10) (-3.87395e-11 -2.92019e-12 -3.03416e-11) (-5.48146e-10 -1.49222e-10 5.75912e-11) (-9.89297e-10 -5.10889e-10 4.73763e-10) (-1.24113e-09 -8.17449e-10 8.05598e-10) (-1.62641e-09 -8.44731e-10 7.15996e-10) (-1.28444e-09 -5.19888e-10 4.60683e-10) (-2.51615e-10 -6.60495e-11 2.07482e-10) (3.20956e-11 7.21689e-11 7.98672e-11) (4.92773e-10 6.05194e-10 -8.74154e-11) (1.15178e-09 1.33312e-09 -9.47276e-10) (1.14463e-09 1.16254e-09 -1.00484e-09) (6.20963e-10 3.59874e-10 -7.13048e-10) (2.60927e-10 -2.27099e-11 -2.5086e-10) (1.40439e-10 -9.81731e-11 -4.76971e-11) (9.60879e-11 -1.08928e-10 5.57847e-11) (2.39551e-11 -9.58182e-11 1.42402e-10) (-1.42218e-10 -1.02929e-10 2.65233e-10) (-4.54581e-10 -1.6275e-10 3.42209e-10) (-4.81485e-10 -1.94111e-10 1.57945e-10) (-1.8096e-10 -8.1993e-11 -2.84806e-11) (-5.33155e-11 -1.71918e-12 -7.62412e-11) (-1.86257e-11 9.23034e-11 -1.90146e-10) (4.75393e-11 2.09665e-10 -2.66481e-10) (5.19085e-11 1.76721e-10 -1.57135e-10) (9.80459e-13 4.51618e-11 -2.74975e-11) (-3.47649e-12 -5.59961e-13 -2.95883e-13) (-3.03111e-11 -1.27812e-10 1.02638e-11) (2.17596e-11 -5.30914e-10 -3.76888e-11) (4.75958e-11 -4.24338e-10 -1.34015e-10) (-1.52721e-11 -8.1776e-11 -8.87838e-11) (-7.52558e-11 1.10049e-11 -7.868e-11) (-2.18439e-10 7.75271e-11 -3.18826e-11) (-3.81007e-10 1.03091e-10 1.96165e-10) (-4.19766e-10 7.35112e-11 5.72287e-10) (-1.44746e-10 3.86764e-11 8.38506e-10) (2.86934e-10 8.37555e-11 6.90677e-10) (6.2974e-10 1.68147e-10 2.6129e-10) (1.43975e-09 4.93039e-10 -4.34959e-10) (1.70494e-09 7.29732e-10 -1.28264e-09) (4.67759e-10 2.77271e-10 -7.38102e-10) (-1.79725e-11 3.00886e-12 -8.41618e-11) (-8.43104e-11 -6.95634e-11 3.27467e-11) (-3.48529e-10 -3.33935e-10 3.83472e-10) (-9.60785e-10 -5.05292e-10 5.58424e-10) (-1.99311e-09 -5.70858e-10 3.20995e-10) (-1.52438e-09 -3.36956e-10 2.54031e-10) (-3.07684e-10 -2.72606e-11 2.71027e-10) (5.6359e-11 1.52497e-10 2.68271e-10) (5.65593e-10 6.95903e-10 2.10669e-10) (1.2121e-09 1.42306e-09 -4.60453e-10) (9.1913e-10 9.42937e-10 -5.69379e-10) (6.24856e-10 3.14139e-10 -6.13782e-10) (3.18391e-10 -8.55572e-11 -3.12453e-10) (1.39576e-10 -1.55986e-10 -5.76978e-11) (5.42268e-11 -1.48622e-10 8.20515e-11) (-4.47496e-11 -1.40343e-10 2.15494e-10) (-2.14559e-10 -1.27815e-10 2.83871e-10) (-3.30762e-10 -1.61167e-10 1.70569e-10) (-2.6763e-10 -1.95635e-10 -3.72626e-11) (-1.4675e-10 -1.55748e-10 -1.99098e-10) (-5.30588e-11 -2.2817e-11 -2.72515e-10) (2.97788e-12 1.42211e-10 -2.69215e-10) (4.32525e-11 2.70181e-10 -1.9431e-10) (4.54774e-11 2.25213e-10 -5.63745e-11) (1.69536e-11 6.02676e-11 1.14545e-11) (6.18945e-12 -4.36705e-12 9.05514e-12) (5.75804e-11 -2.30496e-10 3.60706e-11) (4.4648e-11 -7.24482e-10 -1.03887e-10) (-1.55584e-10 -5.80077e-10 -2.6058e-10) (-2.38096e-10 -1.63094e-10 -2.25943e-10) (-2.45828e-10 4.87767e-11 -1.4109e-10) (-1.54019e-10 8.5018e-11 1.7956e-11) (-1.7066e-10 1.01887e-10 2.74326e-10) (-2.1956e-10 8.7552e-11 8.5799e-10) (-4.31272e-11 4.31325e-11 1.05497e-09) (1.52803e-10 3.33966e-11 4.46406e-10) (1.43128e-10 3.25167e-11 2.54681e-11) (5.75181e-10 2.14522e-10 -4.91562e-10) (1.03167e-09 5.55919e-10 -1.26664e-09) (5.38898e-10 3.19802e-10 -7.01457e-10) (5.82883e-11 1.03044e-11 -4.69122e-11) (9.16877e-12 -3.06481e-11 3.90073e-11) (-1.97344e-10 -1.46986e-10 2.37425e-10) (-1.21836e-09 -2.66167e-10 2.34571e-10) (-2.50771e-09 -2.73764e-10 -2.85964e-10) (-1.33984e-09 -1.22778e-10 -3.96899e-11) (-2.65524e-10 -8.93202e-13 2.34995e-10) (2.09314e-11 1.38944e-10 4.24207e-10) (3.44761e-10 4.54392e-10 3.66985e-10) (7.75037e-10 9.52847e-10 -1.95779e-11) (4.9563e-10 4.85473e-10 -2.12592e-10) (4.75208e-10 1.89476e-10 -3.61298e-10) (2.81984e-10 -1.01588e-10 -2.07481e-10) (1.14939e-10 -1.75737e-10 -1.58551e-11) (1.70473e-11 -2.13079e-10 1.33969e-10) (-9.68266e-11 -1.73827e-10 2.33676e-10) (-1.63068e-10 -1.02785e-10 1.71439e-10) (-1.41745e-10 -9.09368e-11 2.79495e-11) (-1.51246e-10 -1.91418e-10 -1.71214e-10) (-1.06392e-10 -2.93432e-10 -5.73682e-10) (-7.76437e-12 -5.3753e-11 -5.95936e-10) (1.5743e-11 1.60869e-10 -2.963e-10) (3.0606e-11 2.59491e-10 -1.03208e-10) (5.86639e-11 2.7549e-10 4.46632e-11) (6.94235e-11 1.19934e-10 9.41038e-11) (8.136e-11 -1.66716e-11 8.43269e-11) (1.75814e-10 -2.71568e-10 1.04062e-10) (1.33375e-10 -6.43629e-10 -4.04393e-11) (-1.89872e-10 -5.84741e-10 -2.57798e-10) (-6.0196e-10 -2.85289e-10 -4.52955e-10) (-6.32041e-10 8.95937e-11 -3.53271e-10) (-1.93081e-10 1.06155e-10 -1.86734e-12) (-1.22809e-10 1.15798e-10 2.7368e-10) (-1.39191e-10 1.31056e-10 9.72926e-10) (2.59808e-11 8.63828e-11 1.06794e-09) (1.31298e-10 3.6096e-11 3.12475e-10) (6.30919e-11 1.27004e-11 -9.73528e-12) (2.36512e-10 8.11224e-11 -4.15775e-10) (4.09746e-10 2.14685e-10 -7.97947e-10) (3.1755e-10 1.29785e-10 -3.30219e-10) (1.14389e-10 1.45893e-11 -5.40824e-12) (1.96141e-11 -8.09438e-12 6.01681e-11) (-2.15896e-10 -2.1272e-11 1.30252e-10) (-1.41088e-09 -4.41548e-11 -1.44761e-10) (-2.11819e-09 -6.52211e-11 -7.39544e-10) (-7.54541e-10 -7.79035e-12 -1.68492e-10) (-1.53863e-10 2.23637e-11 1.50198e-10) (-2.61199e-11 1.28496e-10 5.2679e-10) (1.6131e-10 2.62779e-10 4.05826e-10) (3.07121e-10 4.05396e-10 1.16466e-10) (1.83297e-10 1.49481e-10 -4.25477e-11) (2.83445e-10 5.75359e-11 -1.38749e-10) (2.35164e-10 -1.10116e-10 -8.12025e-11) (1.44284e-10 -2.2838e-10 4.48314e-11) (2.94967e-11 -2.51833e-10 1.59373e-10) (-6.05034e-11 -1.2722e-10 1.41401e-10) (-6.81359e-11 -3.75037e-11 5.07816e-11) (-6.22073e-11 -3.39859e-11 -2.74818e-11) (-1.36041e-10 -2.07482e-10 -4.15762e-10) (-6.8346e-11 -4.09454e-10 -1.22183e-09) (6.04584e-11 -8.8085e-11 -9.11408e-10) (4.61117e-11 9.90472e-11 -1.90532e-10) (4.82201e-11 1.71806e-10 5.33423e-12) (9.64291e-11 3.12822e-10 2.09644e-10) (1.48202e-10 1.97101e-10 2.89209e-10) (2.25279e-10 -2.70183e-11 2.65857e-10) (3.72427e-10 -3.58511e-10 2.47969e-10) (2.28914e-10 -6.05029e-10 2.99672e-11) (-2.91428e-10 -5.18935e-10 -2.49926e-10) (-1.51675e-09 -3.97062e-10 -8.62312e-10) (-1.22544e-09 1.4548e-10 -6.3557e-10) (-1.52138e-10 9.26019e-11 -2.38245e-11) (-4.05401e-11 1.09491e-10 2.10701e-10) (-1.77085e-11 2.1006e-10 1.06104e-09) (1.89081e-10 1.62014e-10 1.19203e-09) (2.11486e-10 6.259e-11 2.86138e-10) (9.85727e-11 2.21721e-11 -4.77428e-11) (1.51481e-10 3.20211e-11 -4.76066e-10) (1.15766e-10 3.1372e-11 -4.94332e-10) (5.63292e-11 1.21107e-11 -7.40173e-11) (2.01028e-11 5.19736e-12 1.25933e-11) (-1.47122e-11 1.39342e-11 5.19201e-11) (-2.28302e-10 4.45138e-11 3.94238e-11) (-9.7005e-10 6.82377e-11 -3.86954e-10) (-1.104e-09 1.50982e-11 -7.19853e-10) (-2.77723e-10 3.01365e-11 -1.31967e-10) (-7.00465e-11 3.54555e-11 8.68768e-11) (-4.85391e-11 1.23918e-10 5.12074e-10) (5.89575e-11 1.64599e-10 4.02579e-10) (9.21272e-11 1.33411e-10 9.6975e-11) (7.68229e-11 3.44375e-11 1.67472e-12) (2.18735e-10 -1.24736e-11 -3.83334e-11) (3.1851e-10 -1.74533e-10 1.61315e-12) (2.76841e-10 -3.28208e-10 1.22908e-10) (8.20823e-11 -2.2654e-10 1.45215e-10) (-2.61341e-11 -5.37568e-11 6.08811e-11) (-4.72294e-11 -5.01037e-12 1.40933e-11) (-7.24672e-11 -7.49766e-12 -6.29197e-11) (-1.28087e-10 -1.56197e-10 -5.50642e-10) (8.51552e-12 -3.9952e-10 -1.39808e-09) (1.43025e-10 -1.26492e-10 -8.66969e-10) (5.11601e-11 4.1232e-11 -8.9457e-11) (6.2151e-11 1.32474e-10 7.59853e-11) (1.35267e-10 3.45942e-10 4.48947e-10) (2.39609e-10 2.28513e-10 5.73656e-10) (4.27077e-10 -8.46494e-11 5.17779e-10) (4.87994e-10 -4.13373e-10 3.41856e-10) (1.36135e-11 -3.20876e-10 1.46717e-11) (-1.67978e-09 -7.53869e-10 -5.80075e-10) (-5.20546e-09 -5.27508e-10 -1.73303e-09) (-1.98176e-09 1.06008e-10 -5.97201e-10) (-6.44213e-11 3.69203e-11 1.80486e-11) (1.17525e-10 1.53796e-10 3.58079e-10) (5.54911e-10 3.58555e-10 1.32218e-09) (8.39965e-10 3.12487e-10 1.30693e-09) (5.51604e-10 1.68212e-10 2.91809e-10) (3.04099e-10 8.94969e-11 -2.14469e-10) (2.07838e-10 1.94583e-11 -7.25039e-10) (2.11849e-11 -4.67181e-11 -4.28563e-10) (-2.52063e-12 -5.05025e-12 -1.71488e-11) (-1.01101e-11 1.6791e-12 1.35056e-11) (-7.13447e-11 2.86082e-11 4.82787e-11) (-1.95084e-10 6.38107e-11 -4.26444e-11) (-4.79583e-10 8.17772e-11 -4.05458e-10) (-3.97132e-10 4.32908e-11 -4.75375e-10) (-6.37333e-11 2.54953e-11 -5.86121e-11) (-2.73231e-11 3.71079e-11 5.44151e-11) (-4.96745e-11 1.13032e-10 3.72518e-10) (1.04762e-12 9.3047e-11 2.96811e-10) (3.07084e-11 4.15273e-11 6.10468e-11) (7.34916e-11 4.78345e-12 1.0384e-11) (2.9219e-10 -7.06904e-11 1.19976e-11) (5.29175e-10 -2.88943e-10 9.66432e-11) (4.26906e-10 -3.87522e-10 2.04009e-10) (7.2722e-11 -1.51397e-10 1.26119e-10) (-4.13981e-11 -2.18181e-11 4.90175e-11) (-1.03834e-10 2.25071e-11 1.66954e-11) (-7.21439e-11 1.43939e-11 -5.62267e-11) (-4.9389e-11 -7.30454e-11 -3.36245e-10) (1.08789e-10 -2.66021e-10 -9.32256e-10) (1.58431e-10 -1.05682e-10 -5.65542e-10) (2.82903e-11 1.34058e-11 -3.31854e-11) (4.70396e-11 8.69359e-11 1.01797e-10) (1.50248e-10 2.47822e-10 5.40245e-10) (3.18495e-10 1.14683e-10 7.01494e-10) (3.77882e-10 -1.47825e-10 5.09409e-10) (5.81783e-11 -1.38073e-10 1.12021e-10) (-7.64503e-10 -3.64215e-10 -9.25883e-11) (-7.24183e-09 -9.96486e-10 -1.60651e-09) (-8.08588e-09 -6.55644e-10 -1.70111e-09) (-1.07001e-09 -1.03845e-10 -7.45256e-11) (2.21073e-11 1.03969e-11 7.12233e-11) (8.47088e-10 2.9955e-10 8.59708e-10) (1.66896e-09 6.37121e-10 1.67221e-09) (1.6485e-09 6.15819e-10 1.30699e-09) (1.00937e-09 4.06297e-10 1.78651e-10) (7.28759e-10 2.69739e-10 -5.99783e-10) (4.55865e-10 3.04127e-11 -1.12669e-09) (4.32578e-11 -1.0121e-10 -4.73908e-10) (-2.99102e-11 -2.30512e-11 -2.99238e-11) (-1.16461e-10 -9.7211e-12 3.68586e-11) (-1.93977e-10 3.8801e-11 2.64924e-11) (-1.98012e-10 6.90966e-11 -1.15807e-10) (-2.1689e-10 7.45036e-11 -3.54986e-10) (-9.1526e-11 4.48111e-11 -2.55949e-10) (-6.4082e-12 1.35054e-11 -1.73032e-11) (-7.84093e-12 3.3396e-11 4.11715e-11) (-2.92874e-11 7.22975e-11 1.90033e-10) (-9.69105e-12 3.47611e-11 1.23642e-10) (1.35074e-11 9.58053e-12 2.47798e-11) (1.03862e-10 -1.46547e-11 6.87474e-12) (3.60141e-10 -1.18437e-10 4.63e-11) (5.64226e-10 -3.21869e-10 1.76737e-10) (2.71505e-10 -2.82801e-10 2.30755e-10) (-3.31026e-11 -9.45716e-11 1.4182e-10) (-2.16445e-10 -4.59361e-12 1.35571e-10) (-1.69326e-10 5.32244e-11 2.84687e-11) (-2.28346e-11 1.27428e-11 -2.1631e-11) (2.9247e-11 -1.90168e-11 -1.46212e-10) (1.46502e-10 -1.09066e-10 -4.27263e-10) (9.45295e-11 -4.47592e-11 -2.05744e-10) (1.03697e-11 2.07116e-12 -3.49017e-12) (4.62455e-11 3.98184e-11 1.09149e-10) (1.13747e-10 7.83228e-11 4.04536e-10) (1.01081e-10 -1.04662e-11 4.04311e-10) (-1.74396e-11 -5.22669e-11 1.43744e-10) (-4.10634e-10 -1.30588e-10 6.8423e-11) (-4.26063e-09 -4.76695e-10 -6.2349e-10) (-9.44389e-09 -8.35262e-10 -1.66766e-09) (-4.00185e-09 -7.07304e-10 -3.79771e-10) (-1.1282e-10 -8.95719e-11 9.34583e-11) (6.48609e-10 -5.60272e-11 6.36072e-10) (2.42925e-09 5.04284e-10 1.72165e-09) (2.84575e-09 1.0193e-09 1.81667e-09) (2.07363e-09 9.62359e-10 9.2011e-10) (1.57518e-09 7.68325e-10 -1.82254e-10) (1.69185e-09 5.96746e-10 -1.38876e-09) (1.16891e-09 5.23885e-11 -1.72988e-09) (2.15226e-10 -1.44376e-10 -5.57104e-10) (-3.2085e-11 -3.52845e-11 -3.98712e-11) (-2.2809e-10 -3.62613e-11 1.62608e-11) (-3.41896e-10 2.57188e-11 -3.81622e-11) (-2.1136e-10 5.82814e-11 -1.8082e-10) (-9.11241e-11 6.17723e-11 -2.91579e-10) (7.87606e-13 3.71544e-11 -1.3488e-10) (2.95635e-12 9.24178e-12 -5.1741e-12) (-9.92137e-13 2.63466e-11 3.3006e-11) (-1.20521e-11 2.99601e-11 6.88683e-11) (-6.45144e-13 5.95467e-12 2.17977e-11) (1.03009e-11 4.76947e-13 5.41759e-12) (8.64755e-11 -2.19074e-11 -7.31095e-12) (2.14051e-10 -9.55667e-11 4.90252e-11) (2.04142e-10 -1.91154e-10 1.80848e-10) (-7.06468e-11 -2.00357e-10 2.97308e-10) (-7.02438e-10 -1.69843e-10 5.0843e-10) (-7.2759e-10 4.54724e-11 2.35545e-10) (-1.11397e-10 4.2317e-11 -9.81151e-12) (8.01444e-12 1.48035e-11 -3.25201e-11) (1.22852e-10 2.29877e-12 -1.55855e-10) (1.49076e-10 -3.51539e-11 -1.71593e-10) (5.04128e-11 -1.4668e-11 -3.08934e-11) (2.23303e-11 -2.83146e-12 1.83867e-11) (2.36906e-11 5.59067e-12 1.25497e-10) (-3.879e-11 4.31071e-12 2.27082e-10) (-1.43029e-10 -1.94126e-11 1.99975e-10) (-4.51941e-10 -6.02726e-11 1.592e-10) (-1.8958e-09 -1.45106e-10 -6.76781e-11) (-5.0945e-09 -3.00668e-10 -7.91912e-10) (-4.8243e-09 -6.53511e-10 -6.74842e-10) (-8.03775e-10 -3.58138e-10 1.03781e-10) (9.01772e-11 -1.81668e-10 2.89458e-10) (1.34957e-09 -1.43218e-10 1.33793e-09) (2.74759e-09 5.80752e-10 2.06969e-09) (2.96856e-09 1.19579e-09 1.62526e-09) (2.68208e-09 1.32187e-09 4.8347e-10) (3.24655e-09 1.39347e-09 -1.02254e-09) (4.04524e-09 1.03518e-09 -2.82317e-09) (2.77199e-09 7.59103e-11 -2.53332e-09) (6.34036e-10 -1.82883e-10 -6.93812e-10) (2.20963e-12 -2.55166e-11 -3.0895e-11) (-1.3614e-10 -3.30832e-11 -8.915e-12) (-2.90709e-10 -5.64012e-12 -7.75182e-11) (-1.959e-10 3.39567e-11 -2.08803e-10) (-6.36832e-11 5.4349e-11 -2.70817e-10) (8.61207e-12 3.42558e-11 -9.31866e-11) (2.45595e-12 8.07738e-12 -1.23367e-12) (-1.98095e-12 1.94264e-11 2.76536e-11) (-4.10768e-12 9.56614e-12 2.27784e-11) (5.06975e-13 1.84851e-13 1.12276e-12) (1.40212e-11 -2.73848e-12 -2.76267e-12) (1.79714e-11 -8.65422e-12 -5.03695e-12) (3.6563e-11 -4.16597e-11 4.06951e-11) (-1.07255e-10 -1.74366e-10 2.92763e-10) (-1.37647e-09 -4.19122e-10 1.00995e-09) (-2.39543e-09 -1.82659e-10 8.41348e-10) (-7.33518e-10 5.69208e-11 3.14246e-11) (-2.19148e-11 2.06218e-11 -3.85675e-11) (1.38011e-10 5.00935e-11 -1.36644e-10) (2.63495e-10 2.54143e-11 -1.52016e-10) (1.42159e-10 -1.50334e-11 -3.58696e-11) (4.88849e-11 -1.48939e-11 2.16016e-11) (9.91596e-12 -1.2174e-11 5.60322e-11) (-7.03573e-11 -1.09921e-11 1.35844e-10) (-2.56496e-10 -1.08673e-11 2.14238e-10) (-5.38702e-10 -2.85263e-11 2.19626e-10) (-1.01265e-09 -5.66721e-11 1.14348e-10) (-1.97967e-09 -7.802e-11 -1.83565e-10) (-2.77265e-09 -1.91259e-10 -5.0118e-10) (-1.33823e-09 -3.3034e-10 -1.57339e-10) (-1.19943e-10 -1.47644e-10 9.41049e-11) (2.65636e-10 -2.40326e-10 4.81423e-10) (1.20399e-09 -8.72605e-11 1.31036e-09) (2.06996e-09 5.18346e-10 1.63839e-09) (2.64056e-09 1.09159e-09 1.15391e-09) (3.84819e-09 1.61348e-09 -4.05825e-11) (6.20364e-09 1.96574e-09 -2.33911e-09) (7.1341e-09 1.27401e-09 -4.16411e-09) (4.34234e-09 1.0014e-10 -2.8555e-09) (1.01867e-09 -1.69862e-10 -6.79259e-10) (2.49196e-11 -2.06403e-11 -2.32561e-11) (-4.76572e-11 -1.67193e-11 -5.58337e-12) (-2.11345e-10 -1.47006e-11 -8.31436e-11) (-2.43651e-10 2.96942e-11 -2.78543e-10) (-1.14524e-10 6.64943e-11 -3.26189e-10) (-7.45393e-12 3.17555e-11 -7.27227e-11) (3.05098e-13 6.59636e-12 1.83351e-12) (-2.43733e-12 1.54155e-11 3.10677e-11) (-1.40251e-12 2.85003e-12 9.63485e-12) (1.0771e-13 -6.61706e-14 -1.22902e-13) (6.75168e-12 -2.75572e-12 -8.10531e-12) (6.36733e-13 -1.86741e-12 3.87884e-13) (-5.66724e-11 -6.27111e-11 1.14228e-10) (-1.19279e-09 -3.78829e-10 9.22591e-10) (-3.81654e-09 -5.22933e-10 1.49186e-09) (-2.57892e-09 -1.13303e-10 3.08709e-10) (-2.73853e-10 2.46857e-11 -1.19538e-10) (4.99861e-11 3.45695e-11 -1.11797e-10) (3.10909e-10 7.62586e-11 -1.65745e-10) (3.00731e-10 2.94935e-11 -2.85129e-11) (1.41094e-10 -1.41854e-11 5.8112e-11) (2.59484e-11 -1.83435e-11 6.11436e-11) (-5.27009e-11 -2.06595e-11 8.91259e-11) (-2.51457e-10 -2.31887e-11 1.63901e-10) (-5.15119e-10 -2.26195e-11 2.05145e-10) (-6.8746e-10 -3.14455e-11 1.5981e-10) (-8.62671e-10 -3.30139e-11 2.42625e-11) (-1.14214e-09 -3.53716e-11 -1.98895e-10) (-9.46731e-10 -1.02288e-10 -2.6625e-10) (-2.07897e-10 -9.89822e-11 -3.42227e-11) (1.66877e-12 -7.43514e-11 6.18796e-11) (2.89099e-10 -1.61215e-10 4.03855e-10) (8.76344e-10 -6.61731e-12 8.60856e-10) (1.62792e-09 4.065e-10 1.00073e-09) (2.88946e-09 9.70967e-10 6.28723e-10) (5.49165e-09 1.6972e-09 -7.58526e-10) (8.11632e-09 1.91984e-09 -3.12996e-09) (7.36052e-09 1.05657e-09 -3.83072e-09) (3.35366e-09 1.0739e-10 -1.86609e-09) (4.81188e-10 -6.78654e-11 -2.54903e-10) (6.29026e-13 -3.66322e-12 -1.54844e-12) (-1.17995e-10 -2.39264e-11 -1.06252e-11) (-3.21146e-10 -9.11888e-12 -1.65707e-10) (-2.83071e-10 4.38439e-11 -3.73995e-10) (-7.76734e-11 5.64525e-11 -2.4389e-10) (1.11682e-13 1.16279e-11 -1.64199e-11) (3.67714e-12 9.7814e-12 1.35664e-11) (2.71683e-12 1.20592e-11 3.91774e-11) (-5.18186e-13 7.46931e-13 2.8831e-12) (-6.62879e-13 -2.06325e-13 -2.76753e-12) (6.3399e-13 -1.68032e-12 -9.55444e-12) (-5.86971e-12 -6.74906e-12 1.05152e-11) (-4.05486e-10 -1.36237e-10 3.64459e-10) (-2.61794e-09 -4.36576e-10 1.26229e-09) (-3.82541e-09 -3.32137e-10 7.9553e-10) (-1.1545e-09 -4.45141e-11 -1.63282e-10) (-4.43032e-11 1.03181e-11 -1.01828e-10) (1.47584e-10 4.10739e-11 -1.27357e-10) (3.35262e-10 6.21448e-11 -4.06387e-11) (2.96376e-10 2.11198e-11 1.01954e-10) (9.32274e-11 -1.52008e-11 1.06669e-10) (-1.10377e-11 -1.66443e-11 6.38317e-11) (-1.16705e-10 -2.25446e-11 8.53142e-11) (-3.08153e-10 -2.23972e-11 1.21611e-10) (-4.12756e-10 -1.79896e-11 1.23829e-10) (-4.00615e-10 -1.58158e-11 6.71815e-11) (-4.12714e-10 -1.0108e-11 -3.68771e-11) (-4.0476e-10 -1.49247e-11 -1.51511e-10) (-1.72523e-10 -3.37779e-11 -1.06786e-10) (-8.9189e-12 -1.44663e-11 -6.71059e-12) (3.84733e-11 -4.22446e-11 4.19933e-11) (2.65028e-10 -7.61374e-11 2.48377e-10) (7.49363e-10 3.66835e-11 4.7457e-10) (1.72343e-09 3.42822e-10 5.11183e-10) (3.65124e-09 8.79596e-10 3.16954e-11) (5.98479e-09 1.36198e-09 -1.29566e-09) (6.61955e-09 1.25618e-09 -2.55322e-09) (4.22136e-09 5.65938e-10 -1.99091e-09) (1.10036e-09 4.42627e-11 -4.86075e-10) (3.80359e-11 -7.74349e-12 -8.40425e-12) (-2.83704e-11 -9.68928e-12 8.15866e-12) (-2.22304e-10 -2.41269e-11 -4.0037e-11) (-3.03822e-10 7.51932e-13 -2.39688e-10) (-1.47931e-10 3.31685e-11 -2.85395e-10) (-6.32937e-12 1.90275e-11 -6.37089e-11) (4.13292e-12 4.17291e-12 1.61256e-12) (2.38541e-11 1.62249e-11 5.20622e-11) (1.00394e-11 7.52311e-12 3.16945e-11) (6.34997e-14 1.17878e-13 1.16071e-13) (-2.3852e-13 3.25497e-13 -7.54111e-12) (4.75692e-13 -6.87875e-13 -3.35073e-12) (3.37496e-11 -1.3855e-11 3.73403e-11) (-1.32847e-10 -5.90807e-11 1.96531e-10) (-1.07114e-09 -1.6137e-10 4.89567e-10) (-1.01922e-09 -8.54498e-11 6.70021e-11) (-9.10245e-11 -6.9721e-12 -7.40639e-11) (8.06641e-11 8.95351e-12 -9.73327e-11) (4.26645e-10 5.60643e-11 -1.05608e-10) (7.34962e-10 7.80821e-11 9.22459e-11) (5.86364e-10 2.17158e-11 2.42476e-10) (1.92824e-10 -1.83209e-11 1.43932e-10) (1.53502e-11 -8.43585e-12 3.24722e-11) (-1.21031e-11 -4.54622e-12 1.64451e-11) (-4.28277e-11 -4.89674e-12 2.6898e-11) (-5.11571e-11 -3.74413e-12 2.55088e-11) (-4.04666e-11 -2.18457e-12 6.9823e-12) (-4.19091e-11 -1.20872e-12 -1.82775e-11) (-3.31702e-11 -3.94269e-12 -4.66901e-11) (6.58591e-13 -7.87461e-12 -3.06813e-11) (2.5996e-11 -1.47743e-11 -9.0814e-12) (1.32146e-10 -4.55907e-11 5.02373e-11) (4.52861e-10 -5.59283e-11 2.1223e-10) (1.22563e-09 4.80897e-11 3.73358e-10) (2.78627e-09 3.32107e-10 2.88783e-10) (4.95732e-09 7.54036e-10 -3.2805e-10) (6.44147e-09 1.0069e-09 -1.29976e-09) (5.93982e-09 8.39876e-10 -1.68869e-09) (3.42815e-09 3.72411e-10 -8.76835e-10) (1.05728e-09 4.68281e-11 -7.08103e-11) (1.49681e-10 -8.29433e-12 4.80868e-11) (3.71541e-12 -1.56015e-12 3.60998e-12) (-4.39955e-12 -1.27566e-12 -9.95016e-12) (5.86421e-12 4.66637e-12 -1.14475e-10) (7.52604e-11 1.99252e-11 -1.35051e-10) (1.18409e-10 2.53797e-11 -3.80502e-11) (2.28323e-10 4.05469e-11 8.14675e-11) (2.69467e-10 4.23828e-11 1.54911e-10) (1.51674e-10 2.21785e-11 5.43559e-11) (9.42419e-11 1.1381e-11 -1.62623e-11) (1.11258e-10 7.89183e-12 -4.85191e-11) (9.52293e-11 -3.69693e-12 -1.11132e-11) (1.14563e-09 -7.04559e-11 3.29702e-10) (3.77653e-11 -2.1981e-11 1.01807e-10) (-3.2365e-10 -3.96837e-11 1.22067e-10) (-1.42234e-10 -1.29181e-11 -3.76678e-11) (2.89085e-11 -3.06863e-12 -5.27689e-11) (4.95786e-10 1.66392e-11 -1.71838e-10) (1.4313e-09 8.5188e-11 -3.87815e-11) (2.14493e-09 1.10127e-10 3.68466e-10) (1.79915e-09 3.33402e-11 5.47209e-10) (8.03154e-10 -2.62179e-11 3.1384e-10) (1.64392e-10 -1.54606e-11 8.47295e-11) (1.65662e-11 -3.18774e-12 1.80785e-11) (2.20733e-12 -1.25602e-12 1.13865e-11) (9.72407e-13 -5.45728e-13 5.8565e-12) (4.92433e-13 -4.31809e-14 1.37187e-13) (4.57024e-12 -1.98311e-13 -9.11601e-12) (4.65474e-11 -3.96192e-12 -6.02338e-11) (1.48317e-10 -1.59587e-11 -9.60218e-11) (2.80398e-10 -4.06492e-11 -5.55275e-11) (5.89525e-10 -6.88386e-11 4.40056e-11) (1.45683e-09 -6.84261e-11 1.92415e-10) (3.48757e-09 5.22063e-11 2.40385e-10) (7.09108e-09 3.63204e-10 -1.47902e-10) (1.16962e-08 8.35877e-10 -1.19767e-09) (1.57035e-08 1.22405e-09 -2.57239e-09) (1.67329e-08 1.23085e-09 -2.89926e-09) (1.33232e-08 7.71634e-10 -1.3965e-09) (7.84915e-09 2.56723e-10 1.56925e-10) (3.61439e-09 3.09499e-11 3.73569e-10) (1.55466e-09 -8.69542e-12 -2.72955e-11) (1.12932e-09 4.00731e-12 -3.88737e-10) (1.49938e-09 4.29881e-11 -7.29393e-10) (2.08183e-09 1.04908e-10 -6.38142e-10) (2.84014e-09 1.69013e-10 -1.0991e-10) (3.64612e-09 2.0604e-10 4.89676e-10) (3.8659e-09 2.13048e-10 5.74797e-10) (3.62355e-09 1.98541e-10 1.26297e-10) (3.64738e-09 1.74738e-10 -3.46904e-10) (3.78716e-09 1.25491e-10 -4.23228e-10) (3.07261e-09 5.29089e-12 3.92059e-11) (6.57635e-10 -2.98533e-11 2.29551e-10) (-3.52722e-10 -1.50378e-11 1.5336e-10) (-8.07169e-10 -8.93378e-12 1.85371e-11) (-4.70841e-11 -1.0905e-12 -2.85535e-11) (5.80935e-11 -1.11765e-12 -3.03328e-11) (5.18768e-10 8.30971e-12 -2.8998e-11) (1.42924e-09 3.75907e-11 2.013e-10) (1.95681e-09 4.42699e-11 5.49969e-10) (1.28993e-09 4.78125e-12 5.00404e-10) (3.27161e-10 -8.92945e-12 1.70876e-10) (2.52836e-11 -2.22629e-12 2.94598e-11) (-1.09213e-11 -4.15715e-13 1.81714e-11) (-8.63918e-12 8.71827e-14 1.50434e-11) (4.99634e-13 1.7533e-13 4.06805e-12) (3.75905e-12 1.82343e-13 -3.08558e-13) (3.69296e-11 1.17591e-12 -2.79677e-11) (1.68562e-10 -2.48009e-13 -1.126e-10) (3.74379e-10 -5.40085e-12 -1.75071e-10) (6.22461e-10 -1.79811e-11 -1.64524e-10) (1.18507e-09 -2.81094e-11 -1.39283e-10) (2.61007e-09 -1.62182e-11 -1.67185e-10) (5.69495e-09 6.72586e-11 -4.24055e-10) (1.12658e-08 2.64871e-10 -1.28946e-09) (1.95677e-08 5.69337e-10 -3.11789e-09) (2.88854e-08 9.20896e-10 -5.43037e-09) (3.33965e-08 9.80871e-10 -5.77233e-09) (2.79588e-08 6.24186e-10 -3.00147e-09) (1.67039e-08 2.04368e-10 -4.75042e-10) (7.84267e-09 2.78481e-11 -2.56272e-10) (3.97932e-09 -1.05198e-12 -8.00788e-10) (3.26677e-09 1.14685e-11 -1.30513e-09) (3.79499e-09 4.44424e-11 -1.43289e-09) (5.12792e-09 9.57883e-11 -9.30452e-10) (7.46725e-09 1.55041e-10 5.26853e-11) (9.93057e-09 1.8659e-10 9.69014e-10) (1.13262e-08 2.29627e-10 9.32518e-10) (1.19813e-08 2.58059e-10 5.13485e-11) (1.25562e-08 2.35423e-10 -7.70932e-10) (1.14396e-08 1.0991e-10 -6.14205e-10) (6.1328e-09 -4.76546e-11 2.82704e-10) (-2.2967e-11 -1.04101e-13 9.1215e-12) (-1.42407e-10 2.40105e-12 2.34301e-11) (-2.98007e-11 5.37606e-13 9.91982e-13) (1.14504e-13 3.74153e-15 -3.64979e-14) (8.0597e-12 -1.01425e-13 -5.34119e-13) (3.51932e-11 -1.74042e-14 2.53904e-12) (7.41647e-11 4.88786e-13 1.74453e-11) (8.05031e-11 9.18321e-13 3.53493e-11) (3.12053e-11 2.0307e-13 2.26812e-11) (1.52355e-12 -3.68541e-14 5.64379e-12) (-5.87588e-12 -2.60577e-14 4.55773e-12) (-7.21876e-12 1.71742e-13 5.40919e-12) (-3.04043e-12 7.50112e-14 4.17913e-12) (-2.08519e-13 5.33776e-14 1.90265e-12) (7.40881e-13 3.94518e-14 6.00172e-13) (4.50993e-12 1.51578e-13 -7.27375e-13) (1.92667e-11 5.68879e-13 -8.00083e-12) (5.03114e-11 1.42311e-12 -2.31638e-11) (1.00436e-10 1.81198e-12 -3.93917e-11) (1.92472e-10 1.38666e-12 -5.42179e-11) (3.74318e-10 1.11615e-12 -7.0104e-11) (7.1897e-10 2.60244e-12 -1.01615e-10) (1.33814e-09 8.16679e-12 -2.06398e-10) (2.35901e-09 1.13597e-11 -4.79501e-10) (3.50607e-09 2.41135e-11 -8.88752e-10) (3.68484e-09 1.87173e-11 -9.66415e-10) (2.42324e-09 4.00278e-12 -5.30455e-10) (1.02481e-09 -3.00697e-12 -1.845e-10) (3.76391e-10 -2.84425e-12 -1.09678e-10) (2.19573e-10 -2.34971e-12 -1.30298e-10) (2.34992e-10 -1.81527e-12 -1.64984e-10) (3.29819e-10 -8.34073e-13 -1.54798e-10) (5.51715e-10 5.20996e-13 -9.45884e-11) (9.29394e-10 1.82589e-12 3.32388e-11) (1.28748e-09 1.62911e-12 1.61758e-10) (1.45934e-09 5.29831e-12 1.51623e-10) (1.50662e-09 6.07919e-12 1.60143e-11) (1.42433e-09 2.51375e-12 -1.07517e-10) (9.07009e-10 -4.08477e-12 -7.7989e-11) (1.73078e-10 -2.10403e-12 4.30392e-12) (-1.02448e-11 3.54548e-11 -5.77236e-11) (1.68377e-10 -4.30394e-11 -8.14487e-10) (7.97427e-10 -7.10166e-11 -1.94319e-09) (6.0229e-10 3.45601e-11 -9.51728e-10) (3.65291e-11 -1.79827e-11 -2.51385e-11) (-3.18578e-10 -5.03551e-10 3.85342e-10) (-3.20496e-09 -3.14903e-09 1.87279e-09) (-5.42475e-09 -4.2542e-09 1.32173e-09) (-3.00602e-09 -1.6579e-09 -5.84397e-11) (-6.02214e-10 -6.84646e-11 -1.81466e-10) (-5.93139e-11 1.00527e-10 -7.78115e-11) (9.51319e-11 1.75858e-10 -6.75608e-11) (2.18306e-10 1.69868e-10 -8.09212e-12) (1.5486e-10 8.1407e-11 4.05037e-11) (3.54533e-11 2.22191e-11 2.34976e-11) (1.16603e-12 9.76227e-12 7.74301e-12) (-1.13652e-11 3.09686e-11 1.00754e-11) (-2.00162e-11 9.92095e-11 2.27528e-11) (-5.76154e-13 1.81044e-10 6.1897e-11) (3.43695e-11 1.74723e-10 1.14518e-10) (5.91777e-11 9.59863e-11 1.29037e-10) (5.44565e-11 2.33105e-11 8.55845e-11) (2.44454e-11 -3.61407e-12 2.26779e-11) (6.29735e-12 -3.10167e-12 -7.77124e-13) (6.78047e-12 -4.98208e-12 -1.61036e-11) (1.15771e-11 -8.6569e-12 -4.74434e-11) (2.44204e-11 -1.58559e-11 -5.75096e-11) (4.17286e-11 -2.56811e-11 -4.16893e-11) (5.00499e-11 -3.0842e-11 -1.66777e-11) (1.95037e-11 -1.58552e-11 2.19862e-12) (-5.20803e-12 -6.75367e-12 4.56684e-12) (-2.142e-10 -6.74476e-11 4.83799e-11) (-7.98056e-10 -2.905e-10 1.41657e-10) (-7.30982e-10 -4.31664e-10 1.72575e-10) (-1.66724e-10 -1.93639e-10 8.85643e-11) (7.39902e-12 -1.77222e-11 2.02147e-11) (1.23793e-10 8.24039e-11 6.72294e-11) (3.74945e-10 5.36382e-10 2.03392e-10) (2.36762e-10 6.95977e-10 2.36896e-10) (-2.52878e-13 2.35818e-10 4.84636e-11) (8.81848e-10 1.23806e-09 -5.89805e-10) (9.30957e-10 7.4716e-10 -1.26575e-09) (1.14979e-09 2.63982e-10 -1.84682e-09) (7.4264e-10 -3.2289e-11 -9.44584e-10) (1.20148e-10 -6.18035e-11 -7.83404e-11) (-6.96078e-11 -2.60063e-10 8.72101e-11) (-1.72205e-09 -2.11022e-09 5.53662e-10) (-5.22298e-09 -4.65987e-09 6.07936e-10) (-5.15897e-09 -3.24159e-09 3.99795e-10) (-2.01816e-09 -5.37104e-10 1.74454e-10) (-3.52679e-10 1.29397e-10 -1.49192e-11) (-1.9431e-11 1.59318e-10 -7.40736e-11) (1.85379e-10 2.14304e-10 -1.39797e-10) (2.47666e-10 1.25142e-10 -7.25405e-11) (9.28111e-11 2.84574e-11 1.61018e-11) (1.43993e-11 1.05749e-11 3.44803e-11) (-3.36361e-11 4.00184e-11 1.00306e-10) (-7.49562e-11 1.05545e-10 1.6029e-10) (-2.72586e-11 1.36946e-10 1.41924e-10) (4.18791e-11 1.24034e-10 1.10279e-10) (7.18487e-11 8.0639e-11 8.54876e-11) (4.71095e-11 2.87098e-11 5.23767e-11) (1.31052e-11 3.35713e-12 1.71562e-11) (1.1641e-12 -1.48253e-13 9.21437e-13) (3.61315e-12 -3.14046e-13 -4.9134e-12) (3.60183e-11 2.64357e-12 -5.54141e-11) (1.00536e-10 1.0194e-11 -1.29073e-10) (9.42331e-11 6.04984e-12 -1.03443e-10) (2.02127e-11 -1.88211e-12 -2.38976e-11) (-2.9289e-12 -2.04766e-12 -2.16543e-12) (-1.03379e-10 -3.67938e-11 6.12597e-12) (-3.50374e-10 -1.63108e-10 6.91601e-11) (-4.07406e-10 -3.36439e-10 1.70035e-10) (-2.89369e-10 -4.43352e-10 2.45755e-10) (-1.92643e-10 -3.89713e-10 2.47069e-10) (-1.35352e-10 -1.8098e-10 1.68721e-10) (-6.71604e-11 -1.52594e-11 9.60102e-11) (-1.14629e-11 1.21923e-10 1.14025e-10) (2.80428e-10 7.06899e-10 2.05178e-10) (8.16929e-10 1.45389e-09 -3.73561e-11) (7.85488e-10 1.67498e-09 -2.56679e-10) (2.17529e-09 2.32273e-09 -1.42728e-09) (2.70893e-09 1.64919e-09 -2.18467e-09) (1.76995e-09 4.87265e-10 -1.49764e-09) (4.83671e-10 -8.02954e-11 -4.54161e-10) (1.75606e-12 -2.62146e-10 -1.53279e-10) (-1.29595e-09 -1.87818e-09 -2.51907e-10) (-4.66152e-09 -4.76435e-09 3.18031e-10) (-4.86717e-09 -3.70601e-09 1.20991e-09) (-1.9804e-09 -7.62173e-10 8.3909e-10) (-4.11375e-10 1.13986e-10 1.90923e-10) (-6.58125e-11 1.46894e-10 -1.7754e-11) (6.56692e-11 1.88197e-10 -1.43576e-10) (1.74218e-10 1.4392e-10 -1.90632e-10) (9.4651e-11 4.23257e-11 -6.81055e-11) (5.57346e-12 2.83831e-12 2.32221e-13) (-1.5162e-11 1.01822e-11 5.23462e-11) (-9.18452e-11 5.46661e-11 3.22424e-10) (-3.5905e-11 1.2109e-10 5.17157e-10) (9.56758e-11 1.3339e-10 3.36917e-10) (1.3002e-10 1.01702e-10 1.14652e-10) (1.30963e-10 8.14806e-11 6.89897e-12) (9.82883e-11 5.19831e-11 -3.96785e-11) (3.66835e-11 1.6381e-11 -3.01093e-11) (5.11578e-12 1.40673e-12 -1.00547e-11) (-3.42898e-13 -1.13066e-12 -4.33532e-12) (-7.08225e-13 -2.44737e-12 -3.75594e-12) (1.15001e-12 -4.83237e-12 -4.76853e-12) (5.49805e-12 -9.09688e-12 -6.56298e-12) (7.67894e-12 -9.2922e-12 -4.15643e-12) (5.86228e-12 -6.34881e-12 1.62606e-12) (8.41569e-12 -1.54842e-11 1.93566e-11) (6.47802e-13 -6.92724e-11 8.64454e-11) (-6.85496e-11 -1.85357e-10 1.57042e-10) (-2.22644e-10 -2.86598e-10 1.38622e-10) (-5.09677e-10 -3.17039e-10 9.63647e-11) (-9.61382e-10 -1.96369e-10 1.7344e-10) (-1.19257e-09 1.58087e-10 3.9546e-10) (-7.3854e-10 5.15219e-10 4.2125e-10) (-1.2339e-10 7.88173e-10 2.19184e-10) (-1.55087e-10 1.2299e-09 -8.26318e-13) (9.14472e-10 1.81049e-09 -5.26844e-10) (2.36521e-09 1.95446e-09 -1.34016e-09) (2.18919e-09 9.09623e-10 -1.31871e-09) (6.96931e-10 -2.61791e-11 -5.15723e-10) (3.81161e-11 -3.29926e-10 -1.88921e-10) (-1.19388e-09 -2.00513e-09 -2.1999e-10) (-3.40588e-09 -3.87277e-09 4.18826e-10) (-2.59781e-09 -2.21932e-09 9.90765e-10) (-8.43785e-10 -3.09436e-10 6.86202e-10) (-3.23685e-10 2.54206e-10 4.3735e-10) (-1.64721e-10 4.00974e-10 2.06174e-10) (-5.30535e-11 2.12947e-10 -2.00996e-11) (-5.37351e-12 7.31573e-11 -7.72469e-11) (1.21232e-11 1.35078e-11 -6.6343e-11) (9.09532e-12 -5.18317e-12 -1.56796e-11) (1.25479e-11 -1.03298e-11 7.03861e-12) (6.70554e-11 -4.22467e-11 1.0646e-10) (1.30993e-10 -3.82436e-11 2.30516e-10) (1.07011e-10 1.29306e-11 1.45878e-10) (6.02106e-11 3.0995e-11 2.79343e-11) (8.00392e-11 5.79008e-11 -3.88106e-11) (1.07042e-10 8.6422e-11 -1.11997e-10) (6.00244e-11 5.53406e-11 -7.34394e-11) (1.08059e-11 1.13445e-11 -9.9259e-12) (9.42385e-13 4.45853e-13 4.11888e-13) (2.9101e-12 -2.73825e-12 2.63448e-12) (1.48369e-11 -1.65207e-11 1.51206e-12) (4.26916e-11 -4.00632e-11 -1.31753e-11) (4.78603e-11 -3.53647e-11 -1.46712e-11) (2.04166e-11 -1.26134e-11 6.22686e-12) (9.45725e-12 -2.48528e-11 6.25074e-11) (-9.86716e-11 -1.53161e-10 2.82767e-10) (-3.27307e-10 -3.95771e-10 3.6395e-10) (-5.00869e-10 -4.832e-10 1.11261e-10) (-6.18785e-10 -3.69906e-10 -1.55665e-10) (-6.42583e-10 -1.30787e-10 -1.98841e-10) (-6.53584e-10 1.03706e-10 -6.07504e-11) (-7.59548e-10 4.11713e-10 1.16732e-10) (-6.72785e-10 8.38696e-10 1.909e-10) (6.96962e-11 7.15622e-10 -1.2575e-10) (6.71212e-10 1.34563e-09 -1.58022e-10) (1.41312e-09 1.50278e-09 -2.67973e-10) (1.06965e-09 7.00321e-10 -2.26815e-10) (1.53282e-10 2.70366e-11 -3.74574e-11) (-3.94481e-11 -1.31114e-10 4.33724e-12) (-8.77046e-10 -1.20963e-09 2.4439e-10) (-1.37957e-09 -1.85294e-09 6.59694e-10) (-5.60006e-10 -8.97436e-10 6.18241e-10) (-8.65371e-11 -1.29854e-10 3.1096e-10) (-4.46804e-11 1.38918e-10 2.42226e-10) (-1.41329e-10 4.21841e-10 2.25126e-10) (-1.54641e-10 3.37362e-10 5.26694e-11) (-3.0834e-11 5.95453e-11 -1.95573e-11) (4.4403e-12 -2.33867e-12 -8.77691e-12) (8.61977e-11 -9.0113e-11 -1.2815e-11) (1.88419e-10 -2.31851e-10 9.03046e-11) (8.14007e-11 -1.58288e-10 1.24312e-10) (-6.23116e-12 -1.68325e-11 1.7158e-11) (-2.85455e-11 1.45314e-11 -2.79592e-11) (-6.44201e-11 1.80976e-10 -3.34728e-10) (9.23643e-11 3.08359e-10 -5.76177e-10) (1.84684e-10 1.96919e-10 -3.27618e-10) (1.55107e-10 8.09069e-11 -7.51823e-11) (2.01212e-10 4.53061e-11 4.30256e-11) (2.94734e-10 3.5685e-12 1.4845e-10) (2.42719e-10 -4.53326e-11 1.14265e-10) (9.95659e-11 -4.55822e-11 1.13946e-11) (3.0572e-11 -3.40761e-11 -2.64586e-11) (2.51394e-12 -2.1396e-11 -2.09872e-11) (-2.15012e-12 -6.29389e-12 2.65592e-12) (-1.94342e-11 -5.65286e-11 1.68058e-10) (-1.43543e-10 -2.61949e-10 6.51184e-10) (-5.21421e-10 -5.25393e-10 6.4335e-10) (-1.25396e-09 -7.84101e-10 1.7368e-10) (-1.96288e-09 -7.59238e-10 -6.14225e-10) (-1.43694e-09 -2.67413e-10 -8.62507e-10) (-5.90269e-10 5.64067e-11 -5.131e-10) (-2.19856e-10 1.58754e-10 -2.42798e-10) (-1.07532e-10 2.98054e-10 -1.49394e-10) (1.24442e-10 4.22157e-10 -2.54722e-10) (4.15354e-10 8.18949e-10 -3.61218e-11) (8.19841e-10 1.11596e-09 2.48103e-10) (5.57319e-10 5.90422e-10 2.67746e-10) (6.21455e-11 4.38679e-11 6.62507e-11) (-3.7944e-11 -8.04365e-11 6.36872e-11) (-2.81072e-10 -5.45407e-10 2.24643e-10) (-2.13557e-10 -6.62788e-10 3.61691e-10) (-6.29857e-13 -3.13783e-10 3.8938e-10) (5.079e-11 -1.52728e-11 3.28032e-10) (1.05141e-11 1.38589e-10 1.92432e-10) (-3.06586e-11 1.59653e-10 6.59594e-11) (-1.88558e-11 5.86281e-11 1.01525e-12) (-1.09574e-13 5.28233e-13 -3.06957e-13) (9.47317e-12 -2.11875e-11 2.07389e-12) (1.12927e-11 -6.32764e-11 1.8479e-11) (-2.16593e-11 -2.96082e-11 8.34798e-12) (-1.243e-10 2.4731e-12 -6.05153e-11) (-3.91729e-10 1.94265e-10 -5.74765e-10) (-3.11766e-10 3.97633e-10 -1.3842e-09) (3.29173e-11 2.44039e-10 -1.03904e-09) (9.90238e-11 5.99901e-11 -2.18571e-10) (1.27951e-10 3.56771e-11 -6.45752e-12) (4.73304e-10 1.04353e-10 2.25227e-10) (8.57349e-10 1.55822e-10 5.00877e-10) (6.95209e-10 9.17455e-11 3.71321e-10) (1.87091e-10 9.87281e-12 5.0113e-11) (1.2496e-11 -7.34254e-12 -2.52904e-11) (-1.08285e-10 -7.52607e-11 -1.94521e-10) (-2.2114e-10 -1.29155e-10 -1.70415e-10) (-9.63566e-11 -7.10031e-11 4.23166e-11) (-9.99568e-11 -1.75829e-10 5.51372e-10) (-2.30123e-10 -4.08223e-10 1.20284e-09) (-9.77845e-10 -7.13732e-10 9.10731e-10) (-2.99609e-09 -1.41554e-09 2.18936e-10) (-3.00218e-09 -1.15677e-09 -8.48277e-10) (-8.44837e-10 -2.66209e-10 -7.31393e-10) (-1.35866e-10 3.72503e-11 -6.09462e-10) (4.04347e-11 2.14125e-10 -7.27195e-10) (6.12843e-11 3.15896e-10 -5.21764e-10) (1.36959e-10 3.9328e-10 -2.37706e-10) (2.31777e-10 4.16405e-10 6.3256e-12) (4.44972e-10 5.71332e-10 2.94905e-10) (3.83882e-10 4.19011e-10 3.98113e-10) (8.08622e-11 6.55564e-11 1.4459e-10) (-3.77786e-12 -2.96445e-11 3.9567e-11) (-4.57476e-11 -1.61015e-10 7.64668e-11) (-2.86546e-11 -2.18457e-10 1.86317e-10) (2.07661e-11 -1.35469e-10 4.07369e-10) (1.69791e-11 6.94281e-11 4.41298e-10) (-2.07201e-11 1.18289e-10 1.53857e-10) (-2.09945e-11 5.14459e-11 1.16616e-11) (-9.60157e-12 6.81325e-12 -6.43589e-12) (-1.34519e-11 -1.55689e-11 -8.61865e-12) (-4.20004e-11 -7.59818e-11 -2.51755e-11) (-9.26193e-11 -9.06384e-11 -1.07221e-10) (-2.63088e-10 -1.45746e-11 -5.26811e-10) (-4.53064e-10 3.1876e-10 -1.40818e-09) (-3.45056e-10 3.58264e-10 -1.25316e-09) (-9.43898e-11 6.03057e-11 -2.40106e-10) (-5.64151e-12 -2.18404e-12 1.94307e-12) (-8.27118e-12 -3.91468e-11 1.27183e-10) (8.32468e-11 -1.9601e-11 2.473e-10) (2.79057e-10 1.02772e-10 2.61268e-10) (5.98569e-10 2.89555e-10 1.84954e-10) (6.34382e-10 3.09477e-10 -7.80066e-11) (2.98088e-10 1.37499e-10 -2.58853e-10) (1.63195e-11 -1.36979e-11 -3.36737e-10) (-2.80507e-10 -2.22329e-10 -3.63996e-10) (-3.69963e-10 -3.33832e-10 -2.29443e-11) (-3.00496e-10 -3.58478e-10 5.11034e-10) (-2.69666e-10 -3.38214e-10 1.22241e-09) (-6.71812e-10 -2.77104e-10 1.01923e-09) (-2.5865e-09 -7.45559e-10 7.58671e-10) (-4.57154e-09 -1.76163e-09 -2.50341e-10) (-1.93165e-09 -1.2949e-09 -7.51545e-10) (-1.86581e-10 -3.40853e-10 -4.88696e-10) (2.19713e-10 1.45039e-11 -6.7447e-10) (3.88745e-10 4.24711e-10 -9.33586e-10) (2.21373e-10 5.18088e-10 -6.43661e-10) (4.80503e-10 6.04256e-10 -3.40425e-10) (2.56486e-10 3.18478e-10 6.08389e-11) (2.19231e-10 2.70077e-10 2.92045e-10) (1.12891e-10 1.59762e-10 3.19881e-10) (2.33613e-12 1.71262e-11 1.00831e-10) (-1.61802e-11 -2.02844e-11 2.50432e-11) (-2.78641e-11 -6.19472e-11 4.22107e-11) (-2.52676e-11 -1.03346e-10 2.00991e-10) (-5.43677e-11 -3.35803e-11 5.87183e-10) (-1.29009e-10 1.40664e-10 5.0648e-10) (-9.63238e-11 1.0797e-10 1.14197e-10) (-4.87394e-11 3.65173e-11 -1.39943e-11) (-4.14992e-11 -9.18001e-12 -5.62805e-11) (-5.58439e-11 -1.11082e-10 -1.47336e-10) (-9.35467e-11 -2.27338e-10 -3.64073e-10) (-2.37294e-10 -1.65869e-10 -8.59688e-10) (-4.72391e-10 1.86676e-10 -1.35551e-09) (-3.89669e-10 3.03325e-10 -7.88615e-10) (-1.17382e-10 6.18626e-11 -7.65438e-11) (-1.81379e-10 -4.71021e-11 1.24426e-10) (-5.84452e-10 -5.2282e-10 6.07096e-10) (-4.2386e-10 -6.43295e-10 4.69935e-10) (-6.31115e-12 -8.38086e-11 4.83582e-11) (1.82337e-10 7.45885e-11 -2.30521e-14) (1.44839e-09 1.04459e-09 -2.19242e-10) (2.23444e-09 1.60222e-09 -6.5774e-10) (1.09276e-09 6.52885e-10 -6.48133e-10) (1.26646e-10 7.99585e-12 -2.12878e-10) (-8.46235e-11 -1.60058e-10 -8.68147e-11) (-3.99762e-10 -4.84361e-10 2.04169e-10) (-5.49895e-10 -4.4035e-10 7.53419e-10) (-7.23794e-10 -8.82246e-11 1.0088e-09) (-1.47814e-09 8.70127e-11 9.53022e-10) (-2.36539e-09 -4.46507e-10 5.53082e-10) (-1.67917e-09 -1.25994e-09 -1.02918e-11) (-6.31684e-10 -1.25878e-09 -3.7777e-10) (-5.22989e-11 -5.25821e-10 -4.85254e-10) (2.36901e-10 -2.47576e-11 -7.41339e-10) (7.28477e-10 6.81263e-10 -1.34177e-09) (8.28758e-10 9.75594e-10 -1.1062e-09) (6.50038e-10 7.17861e-10 -4.45848e-10) (2.07575e-10 2.27502e-10 2.7641e-11) (6.62043e-11 8.58107e-11 1.34982e-10) (-6.82719e-12 2.06886e-11 1.58056e-10) (-3.59365e-11 -2.22286e-11 8.12157e-11) (-3.22146e-11 -3.65079e-11 4.0719e-11) (-2.80081e-11 -4.74351e-11 7.34226e-11) (-6.18369e-11 -5.38712e-11 3.30389e-10) (-1.9882e-10 6.95961e-11 6.65286e-10) (-2.51761e-10 1.66585e-10 4.04008e-10) (-1.13185e-10 8.32484e-11 4.32514e-11) (-4.44442e-11 2.37489e-11 -5.86781e-11) (-1.49731e-11 -6.05155e-11 -2.3611e-10) (-2.30729e-12 -2.20207e-10 -4.91176e-10) (-1.8166e-10 -1.91611e-10 -6.62362e-10) (-4.70996e-10 3.78905e-11 -7.684e-10) (-3.93598e-10 1.87297e-10 -4.09365e-10) (-9.513e-11 6.61806e-11 -2.5435e-11) (-3.90901e-11 1.03746e-11 5.6855e-11) (-5.94206e-11 -9.56498e-11 1.44595e-10) (-1.08349e-10 -3.59004e-10 1.45518e-10) (-1.81177e-10 -5.42061e-10 3.83972e-11) (-9.90376e-11 -2.01732e-10 -1.39625e-11) (6.51844e-13 -1.57431e-12 -2.9263e-12) (3.08387e-10 2.265e-10 -1.26356e-10) (1.45713e-09 1.02759e-09 -4.04417e-10) (1.40195e-09 8.89618e-10 -3.49454e-10) (2.94696e-10 1.46516e-10 -8.66177e-11) (-5.45366e-13 -1.23404e-12 1.35104e-13) (-2.56813e-10 -1.12628e-10 1.10827e-10) (-9.31556e-10 -1.53097e-10 5.0143e-10) (-1.26608e-09 1.14325e-11 7.6941e-10) (-9.45094e-10 -9.35149e-11 5.95059e-10) (-4.46404e-10 -3.66058e-10 2.99965e-10) (-2.58121e-10 -6.96393e-10 1.36218e-10) (-1.37942e-10 -6.04543e-10 -8.51647e-11) (-4.41636e-11 -1.99189e-10 -1.72547e-10) (7.99728e-11 7.68977e-12 -4.11036e-10) (5.92427e-10 5.81857e-10 -1.17763e-09) (1.02611e-09 1.13517e-09 -1.29636e-09) (3.61884e-10 3.49324e-10 -3.39119e-10) (6.75692e-11 6.64789e-11 -1.18761e-11) (6.05128e-12 8.50901e-12 2.52258e-11) (-2.52465e-11 -1.82148e-11 6.69254e-11) (-4.87717e-11 -4.61019e-11 7.2084e-11) (-3.86596e-11 -4.35512e-11 7.25874e-11) (-4.13406e-11 -3.85276e-11 1.71344e-10) (-1.00455e-10 1.32666e-12 4.34057e-10) (-1.78947e-10 8.36615e-11 4.59685e-10) (-1.08205e-10 7.5461e-11 1.32057e-10) (-2.35514e-11 2.37098e-11 -1.05179e-11) (6.46548e-12 1.63021e-11 -1.54647e-10) (8.97837e-11 -7.69786e-11 -4.54567e-10) (-3.66816e-11 -8.89428e-11 -4.40171e-10) (-2.87793e-10 6.45896e-12 -3.30819e-10) (-4.45267e-10 1.08857e-10 -1.67794e-10) (-1.77871e-10 6.56856e-11 3.39386e-11) (-2.28463e-11 1.04704e-11 6.462e-11) (3.74738e-11 -3.5441e-11 6.72111e-11) (9.83172e-11 -1.68802e-10 6.77503e-12) (2.72617e-11 -4.73783e-10 -1.71469e-10) (-3.85481e-10 -5.91602e-10 -1.93087e-10) (-6.65144e-10 -4.02122e-10 6.05636e-11) (-2.89026e-10 -6.33746e-11 1.7561e-10) (4.41994e-13 5.83471e-11 9.14631e-11) (6.16258e-10 5.078e-10 1.72046e-10) (2.42636e-09 1.47371e-09 -1.69329e-10) (2.16111e-09 1.17141e-09 -5.48703e-10) (2.69638e-10 1.78453e-10 -1.86537e-10) (-8.71346e-11 1.22098e-11 -3.99592e-11) (-1.01706e-09 -1.03426e-10 1.60288e-10) (-1.30621e-09 -3.09573e-10 6.68454e-10) (-6.06472e-10 -4.29098e-10 6.58681e-10) (-1.71106e-10 -4.1466e-10 3.37342e-10) (-5.13111e-11 -2.69938e-10 4.48082e-11) (-2.91699e-11 -1.22738e-10 -4.71658e-11) (-6.52936e-12 -1.68981e-11 -2.47413e-11) (2.18098e-11 3.03146e-11 -6.92586e-11) (2.6346e-10 2.93783e-10 -4.42096e-10) (5.7886e-10 5.76743e-10 -7.8323e-10) (1.98954e-10 1.12012e-10 -1.85915e-10) (2.94126e-11 6.75746e-12 -1.83177e-11) (8.37702e-13 -3.80336e-12 3.26087e-12) (-2.73324e-11 -3.78192e-11 3.97315e-11) (-6.48622e-11 -5.99813e-11 8.54016e-11) (-6.97292e-11 -4.47036e-11 1.52721e-10) (-8.24867e-11 -2.15566e-11 3.08942e-10) (-8.22205e-11 6.64261e-12 3.54854e-10) (-3.38067e-11 2.00941e-11 1.30954e-10) (-1.78216e-12 6.2779e-12 3.95653e-12) (1.32651e-11 2.98804e-11 -5.74531e-11) (8.33395e-11 5.0735e-11 -3.21996e-10) (3.97632e-11 1.16832e-11 -4.14599e-10) (-1.02269e-10 2.05995e-11 -2.09579e-10) (-2.11451e-10 4.43353e-11 -6.09292e-11) (-1.84128e-10 2.96865e-11 7.20554e-11) (-3.88305e-11 -1.61813e-11 9.3503e-11) (7.77238e-11 -7.80195e-11 1.06518e-10) (2.28892e-10 -1.84366e-10 1.69696e-11) (1.77943e-10 -2.70027e-10 -2.15435e-10) (-2.07793e-10 -3.74151e-10 -4.32528e-10) (-8.83941e-10 -5.0209e-10 -3.96369e-10) (-6.78394e-10 -3.07551e-10 1.14226e-10) (-2.54005e-10 -1.10222e-10 3.97936e-10) (3.06644e-11 1.2013e-10 7.04779e-10) (5.93517e-10 5.27799e-10 7.75454e-10) (1.7704e-09 1.24831e-09 3.05462e-10) (2.64719e-09 1.72743e-09 -1.02244e-09) (9.96293e-10 8.31809e-10 -1.15834e-09) (-8.09427e-11 1.0152e-10 -2.85094e-10) (-3.77738e-10 -9.69101e-11 -2.63549e-11) (-5.26908e-10 -4.26649e-10 4.0664e-10) (-2.75926e-10 -5.43984e-10 5.64484e-10) (-1.17915e-10 -2.559e-10 1.70015e-10) (-7.27404e-11 -8.91382e-11 -3.43555e-11) (-5.06691e-11 -3.45412e-11 -7.64452e-11) (-7.30966e-12 3.62971e-12 -9.21857e-12) (3.0961e-12 2.56586e-11 -7.01786e-13) (8.60112e-11 1.25891e-10 -4.80532e-11) (2.61294e-10 2.25258e-10 -2.2977e-10) (1.50831e-10 2.49954e-11 -6.39034e-11) (6.33743e-11 -2.71742e-11 -3.04806e-11) (6.19926e-12 -2.87138e-11 4.37925e-13) (-4.4484e-11 -6.14245e-11 3.97669e-11) (-1.33115e-10 -7.54537e-11 1.47009e-10) (-1.80913e-10 -4.73527e-11 3.03164e-10) (-1.37163e-10 -2.77835e-11 3.29757e-10) (-3.507e-11 -2.08127e-11 1.25054e-10) (1.25013e-12 -1.2872e-12 3.62658e-12) (2.88256e-11 1.31611e-11 -3.52573e-11) (1.27828e-10 1.10252e-10 -2.7816e-10) (1.09883e-10 1.60303e-10 -4.6558e-10) (-2.53618e-11 8.45444e-11 -2.66222e-10) (-5.17342e-11 2.42055e-11 -4.44788e-11) (-5.14452e-11 5.17322e-12 2.41412e-11) (-3.06955e-11 -3.14954e-11 8.04531e-11) (4.14581e-11 -1.21076e-10 1.20584e-10) (9.68652e-11 -1.79686e-10 5.55821e-11) (2.69065e-11 -1.00343e-10 -5.17257e-11) (-1.60939e-10 -1.30074e-10 -2.7582e-10) (-7.33353e-10 -2.27485e-10 -6.25632e-10) (-6.96103e-10 -2.55275e-10 -3.10427e-10) (-1.73433e-10 -1.07208e-10 5.26244e-11) (-3.16484e-11 -7.90013e-11 3.20568e-10) (1.90275e-10 7.28291e-11 8.23574e-10) (5.1128e-10 3.76295e-10 7.40955e-10) (1.11689e-09 8.68712e-10 3.12617e-10) (1.89514e-09 1.60281e-09 -6.85735e-10) (1.08425e-09 1.166e-09 -1.11165e-09) (5.20605e-11 1.33769e-10 -2.35786e-10) (-3.09196e-11 -3.90424e-11 -1.63058e-12) (-1.78721e-10 -4.6772e-10 3.05174e-10) (-3.0551e-10 -5.3819e-10 3.98008e-10) (-3.47662e-10 -2.24333e-10 4.53315e-11) (-3.4623e-10 -7.2763e-11 -2.73398e-10) (-1.35346e-10 3.77971e-11 -2.71284e-10) (-1.25668e-11 2.78647e-11 -2.14412e-11) (-1.66212e-12 6.68084e-11 4.43126e-11) (5.45873e-11 1.03684e-10 6.55829e-11) (1.26056e-10 8.74698e-11 -6.36797e-12) (1.48556e-10 -9.11052e-12 5.69741e-12) (1.1272e-10 -6.66238e-11 -2.07871e-11) (1.58118e-11 -5.02664e-11 2.38454e-12) (-6.19559e-11 -7.50301e-11 6.10027e-11) (-2.5667e-10 -1.12576e-10 2.7348e-10) (-3.20142e-10 -8.4289e-11 3.91151e-10) (-1.43002e-10 -5.30779e-11 1.7107e-10) (-1.25862e-11 -1.50979e-11 6.10257e-12) (1.82023e-11 -2.46011e-11 -7.01998e-11) (1.70297e-10 6.27731e-11 -4.50241e-10) (2.72203e-10 3.12852e-10 -7.70791e-10) (1.29692e-10 2.64885e-10 -4.53435e-10) (9.93106e-12 4.82091e-11 -5.27641e-11) (-2.63968e-13 2.4273e-12 5.03513e-12) (4.85801e-12 -2.44828e-11 9.7546e-11) (2.86561e-11 -1.08262e-10 1.70009e-10) (1.49454e-11 -1.6949e-10 1.15128e-10) (-6.03052e-11 -1.46822e-10 1.08835e-11) (-2.82099e-10 -1.52841e-10 -1.62436e-10) (-7.39151e-10 -1.23464e-10 -5.80873e-10) (-7.09553e-10 -1.28254e-10 -5.87938e-10) (-2.4351e-10 -9.16131e-11 -1.40455e-10) (-3.08493e-11 -2.19258e-11 2.37997e-11) (2.59425e-11 -9.32181e-12 2.71528e-10) (1.89289e-10 1.04503e-10 5.7785e-10) (2.88879e-10 2.10302e-10 3.45402e-10) (6.00289e-10 4.84105e-10 7.76653e-11) (1.17848e-09 1.09048e-09 -4.17898e-10) (8.59248e-10 8.92541e-10 -5.31261e-10) (1.25767e-10 8.96202e-11 -7.55165e-11) (2.41199e-11 -5.73347e-11 2.3991e-11) (-1.05399e-10 -4.04898e-10 2.3345e-10) (-5.63147e-10 -4.44792e-10 2.12111e-10) (-1.10014e-09 -2.75246e-10 -2.57804e-10) (-8.11379e-10 6.49546e-12 -8.01961e-10) (-1.41819e-10 1.30946e-10 -4.39073e-10) (3.89568e-12 5.48388e-11 -2.65711e-11) (1.24178e-11 1.20334e-10 1.10639e-10) (6.25152e-11 1.45051e-10 2.0307e-10) (1.07286e-10 5.81903e-11 7.86002e-11) (1.55534e-10 -3.13142e-11 5.105e-11) (1.35019e-10 -8.42325e-11 8.11262e-12) (2.65267e-11 -5.83233e-11 1.60303e-11) (-5.23171e-11 -8.3898e-11 8.3544e-11) (-2.40049e-10 -1.33391e-10 2.71515e-10) (-3.05325e-10 -1.02988e-10 2.57741e-10) (-1.6146e-10 -5.9103e-11 4.03176e-11) (-1.15671e-10 -7.80569e-11 -1.45584e-10) (-6.4182e-11 -1.21964e-10 -8.28702e-10) (2.42609e-10 1.68574e-10 -1.47664e-09) (3.57045e-10 3.99505e-10 -9.77398e-10) (1.75047e-10 1.85609e-10 -1.94572e-10) (8.70346e-11 4.89577e-11 3.51497e-11) (1.82719e-10 -5.22891e-12 2.92384e-10) (1.9278e-10 -1.29414e-10 5.46366e-10) (6.27992e-11 -1.93235e-10 4.03592e-10) (-6.76567e-11 -1.84794e-10 1.74535e-10) (-3.45948e-10 -2.35329e-10 1.12675e-11) (-1.39425e-09 -3.23737e-10 -5.79034e-10) (-1.83809e-09 -2.04555e-10 -1.18471e-09) (-7.74995e-10 -1.4512e-10 -5.91994e-10) (-8.73974e-11 -3.65404e-11 -4.29748e-11) (-2.58105e-12 -4.38231e-12 2.81794e-11) (1.00302e-10 5.84883e-11 2.71223e-10) (1.99691e-10 1.49014e-10 3.36777e-10) (2.00086e-10 1.52028e-10 1.16535e-10) (3.58796e-10 2.95587e-10 -8.22454e-11) (6.44002e-10 6.04477e-10 -3.19882e-10) (5.52646e-10 4.80356e-10 -1.95471e-10) (1.90205e-10 5.91094e-11 1.44582e-11) (7.71783e-11 -9.91622e-11 8.70575e-11) (-1.41857e-10 -2.57611e-10 1.61206e-10) (-9.20111e-10 -3.66805e-10 2.47945e-11) (-1.73871e-09 -2.28228e-10 -8.08827e-10) (-9.26901e-10 6.81052e-11 -1.20655e-09) (-5.96619e-11 1.42343e-10 -3.93346e-10) (3.13434e-11 7.6241e-11 -8.61493e-12) (5.93354e-11 1.77382e-10 1.96583e-10) (8.22227e-11 1.65431e-10 3.06178e-10) (1.12644e-10 4.27425e-11 1.39018e-10) (1.46177e-10 -4.3414e-11 6.02178e-11) (1.38381e-10 -9.00123e-11 2.81127e-11) (4.6056e-11 -7.12363e-11 3.4204e-11) (-1.60466e-11 -7.71305e-11 8.48935e-11) (-1.31132e-10 -9.57767e-11 1.7847e-10) (-2.5681e-10 -7.63856e-11 1.48032e-10) (-3.05901e-10 -7.42652e-11 -3.90755e-11) (-3.89889e-10 -1.60177e-10 -5.19578e-10) (-2.4964e-10 -2.20632e-10 -1.73532e-09) (2.88668e-10 1.17346e-10 -2.15516e-09) (3.82309e-10 2.84072e-10 -8.75781e-10) (1.93536e-10 1.17484e-10 -6.51023e-11) (3.22005e-10 8.60358e-11 3.15283e-10) (4.82307e-10 -5.85055e-11 1.118e-09) (2.15783e-10 -2.26137e-10 1.32287e-09) (-9.47255e-11 -2.3481e-10 7.00824e-10) (-3.14275e-10 -1.9589e-10 2.43315e-10) (-1.42882e-09 -3.17806e-10 -1.42246e-10) (-3.36619e-09 -2.8173e-10 -1.2681e-09) (-2.48155e-09 -2.59417e-10 -1.32059e-09) (-6.54056e-10 -1.94573e-10 -3.64859e-10) (-3.29053e-11 -2.41579e-11 -7.61846e-14) (4.12055e-11 2.55443e-12 8.47737e-11) (3.37373e-10 1.70566e-10 3.80541e-10) (4.90844e-10 3.04717e-10 3.32252e-10) (4.00572e-10 2.57295e-10 1.61526e-11) (3.93134e-10 2.84512e-10 -2.51677e-10) (3.77745e-10 3.18842e-10 -3.14928e-10) (2.75402e-10 1.77572e-10 -8.25159e-11) (1.70557e-10 1.23469e-11 6.78726e-11) (5.5404e-11 -9.38471e-11 1.24029e-10) (-1.91003e-10 -1.60755e-10 1.16068e-10) (-1.08082e-09 -2.3288e-10 -2.09369e-10) (-1.7337e-09 -1.0543e-10 -1.25221e-09) (-7.18549e-10 1.13303e-10 -1.26208e-09) (1.46695e-12 9.59594e-11 -2.23919e-10) (5.7094e-11 8.24834e-11 3.23748e-11) (1.24381e-10 2.12468e-10 3.05265e-10) (1.12857e-10 1.47213e-10 3.0791e-10) (1.05944e-10 2.32996e-11 1.30004e-10) (1.21651e-10 -4.2221e-11 3.1178e-11) (1.17216e-10 -7.76687e-11 2.30498e-11) (5.57571e-11 -7.08283e-11 4.57562e-11) (6.10847e-12 -7.32194e-11 1.00389e-10) (-9.81023e-11 -7.01214e-11 1.66827e-10) (-3.2648e-10 -5.67471e-11 1.61064e-10) (-5.96028e-10 -8.24523e-11 -8.83178e-11) (-7.05134e-10 -2.01982e-10 -7.95968e-10) (-3.66653e-10 -2.76029e-10 -2.20241e-09) (4.02598e-10 3.12861e-11 -2.29669e-09) (3.60571e-10 1.57574e-10 -6.26205e-10) (1.27532e-10 5.78645e-11 2.09711e-11) (2.7387e-10 7.09649e-11 6.71585e-10) (1.95348e-10 -1.02879e-10 1.90111e-09) (-1.09077e-10 -2.31734e-10 1.69148e-09) (-2.50632e-10 -1.46517e-10 5.98205e-10) (-5.68035e-10 -9.70203e-11 1.72507e-10) (-2.40322e-09 -8.42686e-11 -4.14032e-10) (-3.82861e-09 -1.19425e-10 -1.26902e-09) (-2.34559e-09 -3.34867e-10 -9.64222e-10) (-5.98469e-10 -2.40994e-10 -2.13545e-10) (-1.50594e-11 -2.84484e-11 1.67043e-11) (2.84521e-10 7.8031e-12 2.88664e-10) (1.20086e-09 4.404e-10 8.02508e-10) (1.40891e-09 7.03048e-10 4.75328e-10) (9.92733e-10 5.34142e-10 -1.70346e-10) (6.53078e-10 3.71687e-10 -5.45318e-10) (3.52452e-10 2.05967e-10 -4.05698e-10) (1.44828e-10 5.0499e-11 -6.16864e-11) (9.11119e-11 -1.52354e-11 5.76904e-11) (1.90736e-12 -6.65135e-11 1.08316e-10) (-2.47132e-10 -1.06289e-10 7.46567e-11) (-1.03612e-09 -1.02865e-10 -4.07763e-10) (-1.3545e-09 3.32178e-11 -1.33047e-09) (-4.11766e-10 1.2117e-10 -9.02627e-10) (1.50273e-11 3.66073e-11 -6.44442e-11) (8.47356e-11 7.90898e-11 9.13428e-11) (1.56836e-10 1.77419e-10 3.42381e-10) (1.11102e-10 9.67971e-11 2.14384e-10) (8.50381e-11 7.72288e-12 6.87907e-11) (7.11694e-11 -2.62304e-11 -5.28413e-12) (5.5838e-11 -4.36658e-11 8.09568e-12) (3.56854e-11 -6.21112e-11 6.05012e-11) (-5.87178e-12 -9.50854e-11 1.89557e-10) (-1.4281e-10 -6.2866e-11 2.52687e-10) (-3.91434e-10 -1.00057e-11 1.92562e-10) (-6.06108e-10 -1.39705e-11 -1.01374e-10) (-6.4248e-10 -1.20339e-10 -7.84428e-10) (-3.08415e-10 -2.35401e-10 -1.97685e-09) (2.48634e-10 -3.52445e-11 -1.46215e-09) (1.08787e-10 3.62038e-11 -1.5994e-10) (5.08176e-11 2.68832e-11 8.61066e-11) (5.44338e-11 1.42202e-11 1.07302e-09) (-1.68924e-10 -1.72094e-10 1.86344e-09) (-3.05778e-10 -1.56306e-10 1.02933e-09) (-3.28269e-10 -4.50773e-11 2.86144e-10) (-8.97075e-10 3.63086e-11 3.45936e-11) (-2.332e-09 1.43874e-10 -4.5771e-10) (-2.75159e-09 -4.33169e-11 -8.13606e-10) (-1.51683e-09 -3.02294e-10 -5.73326e-10) (-2.6267e-10 -1.70286e-10 -8.49256e-11) (3.85629e-11 -6.4676e-11 6.28029e-11) (1.02809e-09 -1.9118e-11 7.991e-10) (2.84587e-09 7.67988e-10 1.49848e-09) (3.15661e-09 1.28537e-09 6.65667e-10) (2.20537e-09 9.90709e-10 -5.07107e-10) (1.29231e-09 5.24367e-10 -9.9325e-10) (5.59993e-10 1.58026e-10 -6.05186e-10) (1.46232e-10 7.33339e-12 -8.35662e-11) (3.73771e-11 -1.67992e-11 2.6731e-11) (-3.03028e-11 -4.13974e-11 6.96691e-11) (-2.82036e-10 -6.77631e-11 2.75959e-11) (-8.87145e-10 -1.07145e-11 -4.9097e-10) (-9.57548e-10 1.27746e-10 -1.11832e-09) (-1.97131e-10 8.40277e-11 -4.82656e-10) (7.12922e-12 7.78819e-12 -8.88888e-12) (7.564e-11 4.88367e-11 1.18298e-10) (9.76991e-11 9.23084e-11 2.40117e-10) (5.42818e-11 3.79906e-11 8.42146e-11) (4.34671e-11 1.54712e-12 1.34232e-11) (1.42999e-11 -8.42305e-12 -1.10323e-11) (9.95309e-12 -2.1954e-11 1.10747e-11) (-6.86678e-12 -1.18241e-10 1.91372e-10) (-1.58313e-10 -1.59145e-10 4.44461e-10) (-3.34373e-10 -4.29369e-11 3.31264e-10) (-3.84043e-10 4.33691e-11 8.06377e-11) (-3.13079e-10 3.88666e-11 -1.73844e-10) (-2.69551e-10 -2.53373e-11 -6.39682e-10) (-8.21493e-11 -1.07865e-10 -9.89656e-10) (2.90937e-11 -2.06996e-11 -2.97141e-10) (1.25607e-12 4.91736e-13 1.37345e-13) (1.01347e-11 8.0054e-12 2.95604e-10) (-1.30766e-10 -8.30318e-11 1.06762e-09) (-3.95517e-10 -1.44707e-10 9.82713e-10) (-4.79277e-10 -6.66062e-11 4.45702e-10) (-5.58634e-10 2.26985e-11 1.37661e-10) (-8.68029e-10 1.1944e-10 -6.91395e-11) (-1.23685e-09 1.36294e-10 -2.70079e-10) (-1.1115e-09 -3.25967e-11 -3.8642e-10) (-4.808e-10 -1.56877e-10 -2.64196e-10) (-3.68657e-11 -6.829e-11 -2.88838e-11) (1.47022e-10 -1.06633e-10 1.2847e-10) (1.32634e-09 -2.38544e-11 1.04833e-09) (3.35063e-09 8.05236e-10 1.77781e-09) (4.53406e-09 1.57172e-09 8.01359e-10) (4.14661e-09 1.44433e-09 -8.66889e-10) (2.69255e-09 7.1245e-10 -1.53103e-09) (1.11911e-09 1.3129e-10 -8.57574e-10) (2.32726e-10 -2.09247e-11 -1.26843e-10) (1.57386e-11 -1.14445e-11 9.22034e-12) (-4.27914e-11 -2.78665e-11 4.02393e-11) (-2.99544e-10 -4.08674e-11 -2.23136e-11) (-7.97236e-10 4.88679e-11 -5.53332e-10) (-7.10102e-10 1.58801e-10 -9.29406e-10) (-1.03565e-10 4.31026e-11 -2.57993e-10) (4.49252e-13 4.07817e-13 -2.51444e-13) (1.78526e-11 1.55288e-11 8.3087e-11) (1.26077e-11 3.34499e-11 1.11153e-10) (6.0604e-12 7.63812e-12 1.12491e-11) (9.30515e-12 1.00137e-12 -5.45073e-12) (-1.67394e-13 -3.35332e-12 -2.16204e-12) (-2.60848e-11 -7.55461e-11 1.05081e-10) (-2.80001e-10 -2.67054e-10 6.30607e-10) (-6.68156e-10 -1.83701e-10 6.76162e-10) (-5.71137e-10 1.32633e-11 1.79195e-10) (-2.41734e-10 5.88988e-11 -1.00397e-10) (-1.10853e-10 5.24405e-11 -2.70786e-10) (-4.12594e-11 9.16947e-13 -4.13593e-10) (-1.84942e-11 -2.76427e-11 -1.73613e-10) (-1.13234e-12 -1.28066e-12 -1.83533e-12) (-1.02667e-11 -7.87799e-12 8.30646e-11) (-8.34227e-11 -3.65444e-11 4.54866e-10) (-3.31758e-10 -8.11389e-11 6.0826e-10) (-6.10671e-10 -8.19275e-11 4.66064e-10) (-6.34185e-10 -1.92886e-11 2.06612e-10) (-4.51501e-10 4.5441e-11 2.40271e-11) (-3.54827e-10 7.55812e-11 -5.53918e-11) (-3.17784e-10 5.42236e-11 -1.12811e-10) (-2.10328e-10 -1.4127e-11 -1.58148e-10) (-6.08611e-11 -5.90929e-11 -1.31617e-10) (2.45912e-11 -4.75052e-11 -3.47164e-11) (1.60686e-10 -7.56616e-11 9.71129e-11) (8.94144e-10 1.65133e-11 7.38164e-10) (2.45258e-09 5.96185e-10 1.3358e-09) (4.19707e-09 1.30819e-09 6.61715e-10) (4.83419e-09 1.37931e-09 -8.71458e-10) (3.45003e-09 6.7769e-10 -1.50198e-09) (1.34128e-09 8.05383e-11 -7.35475e-10) (1.96338e-10 -3.06953e-11 -7.40496e-11) (3.0045e-12 -7.6803e-12 7.04539e-12) (-8.89415e-11 -2.9018e-11 3.42241e-11) (-3.99299e-10 -1.46008e-11 -1.2586e-10) (-7.1662e-10 9.79517e-11 -7.13881e-10) (-4.07883e-10 1.19557e-10 -7.19471e-10) (-5.27591e-11 1.02752e-11 -1.09385e-10) (-5.52958e-12 -4.93372e-13 4.72832e-12) (-3.86807e-11 9.06332e-12 1.02541e-10) (-2.12641e-11 1.81322e-11 5.29033e-11) (-9.38114e-13 2.40186e-12 -3.55678e-13) (6.6088e-13 1.92701e-12 -1.59698e-11) (-1.18022e-11 -1.79376e-11 1.86535e-11) (-2.59391e-10 -2.22017e-10 4.90894e-10) (-9.59611e-10 -3.17256e-10 9.67951e-10) (-1.10476e-09 -1.02068e-10 4.12512e-10) (-4.37364e-10 4.01427e-11 -1.20485e-10) (-1.11928e-10 6.19341e-11 -2.58973e-10) (6.91228e-12 4.64213e-11 -2.89918e-10) (-2.3429e-13 8.41711e-13 -7.51905e-11) (-1.52961e-12 -1.36588e-12 -2.24578e-13) (-1.94256e-11 -1.72206e-11 6.38051e-11) (-6.34423e-11 -3.43051e-11 2.37553e-10) (-2.09847e-10 -3.97267e-11 3.19945e-10) (-5.0667e-10 -5.36445e-11 3.19964e-10) (-6.56592e-10 -4.34385e-11 1.95038e-10) (-3.78005e-10 1.80306e-12 4.31291e-11) (-1.24404e-10 2.15234e-11 -1.17622e-11) (-4.58404e-11 2.01392e-11 -2.36668e-11) (-2.19673e-11 1.22468e-11 -4.1794e-11) (1.32942e-11 -9.17764e-12 -1.26157e-10) (1.06544e-10 -6.29222e-11 -2.16973e-10) (9.42309e-11 -5.16986e-11 -7.17741e-11) (9.06187e-11 -2.79612e-11 3.52984e-11) (4.13415e-10 3.25238e-11 3.18959e-10) (1.43938e-09 3.71792e-10 7.04326e-10) (2.88315e-09 8.42922e-10 3.99384e-10) (3.5023e-09 8.92524e-10 -5.01322e-10) (2.34879e-09 3.8669e-10 -7.4837e-10) (6.77651e-10 1.13138e-11 -2.1534e-10) (4.22385e-11 -1.45019e-11 5.63179e-12) (-2.12319e-11 -1.55176e-11 2.40973e-11) (-1.98065e-10 -2.77214e-11 3.80445e-12) (-4.62728e-10 2.04329e-11 -3.29475e-10) (-4.6138e-10 9.66488e-11 -7.5888e-10) (-1.57135e-10 4.63523e-11 -3.5239e-10) (-2.78694e-11 -2.40473e-13 -1.56863e-11) (-7.58602e-11 -5.57154e-12 7.32572e-11) (-9.67037e-11 1.19519e-11 1.38885e-10) (-1.85302e-11 1.08718e-11 1.73698e-11) (-4.65679e-12 5.67328e-12 -8.57007e-12) (-2.91179e-12 -2.12435e-13 -1.0139e-11) (-8.78402e-11 -7.46929e-11 1.56587e-10) (-6.6908e-10 -2.6909e-10 7.53411e-10) (-1.22104e-09 -1.96777e-10 6.17034e-10) (-7.13781e-10 -2.30082e-11 -6.01344e-11) (-1.86355e-10 3.19317e-11 -2.7416e-10) (9.9843e-12 4.88993e-11 -3.18828e-10) (1.81822e-11 1.45483e-11 -7.72985e-11) (-3.51761e-14 -1.77686e-14 8.73562e-14) (-1.11209e-11 -1.51672e-11 6.62276e-11) (-3.41918e-11 -3.76548e-11 1.80431e-10) (-9.55226e-11 -2.80514e-11 1.73277e-10) (-2.52068e-10 -2.27741e-11 1.58936e-10) (-4.40759e-10 -2.45348e-11 1.11343e-10) (-2.91887e-10 -1.1694e-11 2.34038e-11) (-5.6786e-11 2.81562e-12 -7.75707e-12) (-3.31879e-12 3.13626e-12 -6.02063e-12) (1.54618e-11 1.19701e-11 -2.94564e-11) (1.0109e-10 1.71305e-11 -1.25171e-10) (2.71568e-10 -1.98169e-11 -3.06247e-10) (2.6738e-10 -5.36058e-11 -2.70896e-10) (9.39176e-11 -2.4059e-11 -6.35084e-11) (5.33622e-11 -6.51632e-12 7.03283e-12) (2.13867e-10 2.87116e-11 1.05827e-10) (7.89236e-10 2.02957e-10 2.75349e-10) (1.65013e-09 4.50078e-10 1.94155e-10) (1.91222e-09 4.32326e-10 -1.09171e-10) (1.05144e-09 1.32758e-10 -9.50028e-11) (2.01486e-10 -1.23266e-11 3.29465e-11) (6.03961e-12 -1.24644e-11 2.82695e-11) (-7.02178e-11 -1.98746e-11 3.38274e-11) (-2.15962e-10 -1.11339e-11 -8.92883e-11) (-3.24196e-10 3.29217e-11 -4.65707e-10) (-1.71739e-10 4.73283e-11 -4.65806e-10) (-4.05425e-11 7.74986e-12 -6.31776e-11) (-4.94254e-11 -2.74839e-12 2.4665e-11) (-1.39392e-10 -7.23389e-12 1.64795e-10) (-6.66264e-11 8.95836e-12 8.48254e-11) (-4.52549e-12 3.25638e-12 1.18199e-12) (-1.5763e-12 2.78055e-12 -7.66697e-12) (-5.93183e-13 -6.95312e-13 8.9207e-14) (4.02605e-12 -5.88297e-11 1.65488e-10) (-2.06596e-10 -9.2414e-11 2.95929e-10) (-2.35848e-10 -3.31516e-11 6.94815e-11) (-7.76969e-11 -2.18067e-12 -9.49189e-11) (6.24287e-11 1.53448e-11 -2.92969e-10) (1.29495e-10 2.57235e-11 -1.83227e-10) (4.43962e-11 7.96693e-12 -1.22184e-11) (5.07695e-11 -5.8678e-13 5.5285e-11) (7.91468e-11 -2.62079e-11 1.64799e-10) (3.32137e-11 -2.3725e-11 1.22085e-10) (-1.31295e-11 -7.12819e-12 4.27141e-11) (-4.72124e-11 -3.65517e-12 2.50245e-11) (-4.79e-11 -2.58187e-12 6.07683e-12) (-3.45701e-12 -2.13756e-13 -1.15886e-12) (7.32531e-12 1.11962e-12 -6.12051e-12) (1.01241e-10 1.51449e-11 -5.33893e-11) (3.00198e-10 3.74967e-11 -1.54508e-10) (5.11963e-10 2.04649e-11 -2.89185e-10) (5.43312e-10 -1.56659e-11 -3.43888e-10) (3.72703e-10 -2.5849e-11 -2.24094e-10) (2.10642e-10 -1.25883e-11 -8.11375e-11) (2.08153e-10 -2.13044e-13 -7.10426e-12) (4.56945e-10 4.41257e-11 7.60127e-11) (1.11395e-09 1.90221e-10 1.84383e-10) (1.99704e-09 3.79494e-10 1.81102e-10) (2.23725e-09 3.45371e-10 1.37096e-10) (1.4092e-09 1.05018e-10 2.18614e-10) (4.93403e-10 -2.29001e-11 2.12058e-10) (8.16407e-11 -1.86671e-11 7.47112e-11) (1.17143e-12 -6.54254e-13 7.45124e-13) (2.84395e-12 1.74971e-12 -6.54834e-11) (7.15603e-11 2.27097e-11 -3.01024e-10) (8.00642e-11 1.73148e-11 -1.56564e-10) (7.10711e-12 1.20984e-12 -2.78056e-12) (3.3808e-12 -6.65525e-13 3.63217e-11) (3.90124e-12 -7.26416e-13 8.15005e-11) (1.06521e-11 3.59686e-12 1.91004e-11) (2.45346e-11 7.1935e-12 -3.57812e-12) (5.34549e-11 4.90352e-12 -1.57674e-11) (3.77279e-11 -1.08769e-11 2.13162e-11) (2.86828e-10 -7.76893e-11 3.45568e-10) (-1.05282e-11 -2.25365e-11 9.28257e-11) (-9.20702e-12 -1.88053e-12 -5.75185e-12) (6.76986e-11 -7.45977e-12 -2.22931e-10) (2.96126e-10 1.57648e-12 -3.82688e-10) (2.42242e-10 1.85867e-11 -1.24756e-10) (2.42521e-10 1.53538e-11 5.66691e-11) (3.9908e-10 -7.393e-12 2.94287e-10) (3.60256e-10 -4.22834e-11 3.42546e-10) (1.20748e-10 -2.191e-11 1.41361e-10) (1.02395e-11 -2.85286e-12 2.19328e-11) (5.10457e-14 -1.51133e-13 1.42831e-12) (3.05905e-12 -1.44019e-13 -1.41519e-13) (8.36715e-11 -3.6577e-13 -1.75024e-11) (4.19647e-10 1.01751e-11 -9.52299e-11) (1.00888e-09 3.9963e-11 -2.53549e-10) (1.61973e-09 6.79069e-11 -4.54052e-10) (1.95706e-09 2.67157e-11 -6.27696e-10) (2.00553e-09 3.09706e-12 -6.9378e-10) (1.79148e-09 -1.06318e-11 -5.63503e-10) (1.60913e-09 -4.90217e-12 -3.56252e-10) (1.82528e-09 2.50001e-11 -1.83955e-10) (2.78162e-09 1.26293e-10 -4.64903e-11) (4.76879e-09 3.79147e-10 4.41222e-11) (7.3085e-09 6.73232e-10 9.65737e-11) (8.57819e-09 6.58479e-10 4.24599e-10) (7.11179e-09 2.80018e-10 9.64684e-10) (4.27528e-09 -8.74671e-12 9.84285e-10) (2.05654e-09 -4.39977e-11 4.09708e-10) (1.17153e-09 -4.04555e-12 -1.17103e-10) (1.33892e-09 3.97458e-11 -6.24246e-10) (1.65905e-09 6.67095e-11 -8.71342e-10) (1.29522e-09 5.31353e-11 -3.87666e-10) (7.67526e-10 2.52189e-11 6.40272e-11) (6.05645e-10 5.33966e-12 2.64854e-10) (6.46311e-10 4.8602e-12 2.86607e-10) (8.67908e-10 3.64968e-11 1.61208e-10) (1.28072e-09 6.64158e-11 2.03202e-12) (1.43284e-09 1.26936e-11 7.43717e-11) (9.54235e-10 -8.07832e-11 3.52936e-10) (-1.42801e-11 -2.51604e-11 2.31553e-10) (-1.1759e-10 -7.0164e-12 2.47844e-11) (-5.87313e-11 -2.44821e-12 -1.13185e-10) (3.72476e-11 -1.01214e-11 -2.98548e-10) (5.12975e-11 -2.62881e-12 -1.16116e-10) (2.76251e-11 1.12648e-12 -3.65642e-12) (1.32178e-10 1.67626e-12 1.21731e-10) (2.52404e-10 -1.28029e-11 3.19091e-10) (1.19817e-10 -1.85623e-11 2.06147e-10) (6.75425e-12 -5.20399e-12 4.91771e-11) (-5.68446e-12 -3.94963e-13 6.16419e-12) (2.38852e-12 4.65913e-14 4.1757e-13) (5.83389e-11 6.64913e-13 -7.04457e-12) (3.62422e-10 2.32177e-12 -4.79532e-11) (1.01186e-09 9.53759e-12 -1.54969e-10) (1.85788e-09 1.97886e-11 -3.46133e-10) (2.51513e-09 3.17534e-11 -5.71521e-10) (2.85924e-09 8.69809e-12 -7.81815e-10) (3.04943e-09 7.76043e-12 -9.15203e-10) (3.05464e-09 1.01793e-11 -8.60509e-10) (3.16763e-09 1.9713e-11 -7.07052e-10) (3.89066e-09 4.5301e-11 -5.66245e-10) (5.86768e-09 1.35206e-10 -4.72148e-10) (9.7315e-09 3.51521e-10 -4.02138e-10) (1.47305e-08 5.90839e-10 -9.92583e-11) (1.72355e-08 5.52622e-10 8.97009e-10) (1.40063e-08 1.93948e-10 1.80818e-09) (8.0329e-09 -2.62063e-11 1.3339e-09) (3.98055e-09 -2.45625e-11 1.96094e-10) (2.79131e-09 1.21648e-11 -6.32912e-10) (2.88171e-09 4.34277e-11 -1.22548e-09) (2.63813e-09 4.05585e-11 -1.01774e-09) (1.89144e-09 2.88745e-11 -2.99708e-10) (1.53985e-09 1.74389e-11 2.16257e-10) (1.68037e-09 -2.15046e-12 5.3342e-10) (2.0762e-09 -9.13098e-12 5.91843e-10) (2.65694e-09 9.68093e-12 4.60139e-10) (3.01142e-09 8.43501e-12 3.87023e-10) (2.21879e-09 -4.50841e-11 5.58896e-10) (6.97874e-10 -5.78544e-11 5.08661e-10) (-4.25639e-11 5.02613e-13 4.48306e-11) (-1.11694e-11 4.17599e-14 2.53853e-12) (-2.93662e-12 -1.55773e-13 -6.05549e-12) (-3.67551e-12 -7.05404e-13 -1.69005e-11) (-2.81553e-12 -2.73041e-13 -7.04771e-12) (-9.98999e-14 1.72899e-15 1.92116e-14) (2.22621e-12 4.55093e-14 7.09602e-12) (5.32037e-12 -2.1e-13 2.10509e-11) (-1.45597e-12 -5.36899e-13 1.45492e-11) (-3.99822e-12 -2.60251e-13 5.12877e-12) (-8.54783e-13 -2.18103e-14 6.60013e-13) (5.06438e-13 1.19967e-14 2.16165e-13) (1.4427e-11 1.49837e-13 1.79778e-12) (5.92069e-11 2.7452e-13 4.77932e-12) (1.20016e-10 1.96227e-13 2.74606e-12) (1.66824e-10 -1.61304e-13 -9.90359e-12) (1.78483e-10 1.49486e-13 -2.92338e-11) (1.85799e-10 -1.27191e-13 -5.21058e-11) (2.15967e-10 5.58729e-13 -7.99024e-11) (2.54649e-10 1.23271e-12 -9.80084e-11) (3.16545e-10 1.48618e-12 -1.0561e-10) (4.38927e-10 1.44503e-12 -1.05383e-10) (6.8241e-10 3.42271e-12 -9.82247e-11) (1.11471e-09 1.04981e-11 -7.80491e-11) (1.60988e-09 1.79536e-11 -1.02725e-11) (1.66121e-09 1.37102e-11 1.27046e-10) (1.05845e-09 2.9864e-13 1.74943e-10) (4.31502e-10 -2.9301e-12 7.35909e-11) (1.69024e-10 -1.34869e-12 -1.14963e-11) (1.33691e-10 -6.34769e-13 -6.60621e-11) (1.44927e-10 -2.65564e-13 -1.05833e-10) (1.26912e-10 -4.42293e-13 -7.75606e-11) (1.13964e-10 -7.09653e-14 -2.72683e-11) (1.62721e-10 1.72876e-13 2.07878e-11) (2.41426e-10 -1.66729e-12 7.50784e-11) (2.79863e-10 -4.03587e-12 9.78263e-11) (2.58878e-10 -4.19086e-12 8.68529e-11) (1.77097e-10 -3.36722e-12 6.75103e-11) (6.33909e-11 -1.89244e-12 5.08613e-11) (-4.37882e-12 -7.28894e-13 5.12485e-11) (-9.42362e-12 8.50531e-11 -4.08811e-10) (1.76179e-10 1.99757e-10 -1.58568e-09) (4.02172e-10 4.55673e-10 -1.68183e-09) (1.95269e-10 2.6255e-10 -4.61074e-10) (1.02402e-11 6.45657e-12 4.16644e-12) (-2.93996e-11 -4.65337e-10 6.07633e-10) (-9.79019e-10 -3.33893e-09 2.40411e-09) (-2.90052e-09 -5.60025e-09 2.06095e-09) (-3.12973e-09 -3.48902e-09 8.49215e-11) (-1.32629e-09 -6.56094e-10 -5.75038e-10) (-3.07268e-10 1.5902e-10 -4.24071e-10) (3.28637e-11 3.48496e-10 -3.21021e-10) (1.15159e-10 2.11542e-10 -6.90867e-11) (4.41947e-11 6.12757e-11 4.09529e-11) (-1.57328e-12 2.01367e-11 7.11799e-11) (-4.23704e-11 7.18215e-12 7.02417e-11) (-4.16233e-11 1.43705e-11 3.73766e-11) (-1.87406e-11 2.89653e-11 2.29916e-11) (8.75825e-12 7.7224e-11 4.7373e-11) (6.3958e-11 1.42734e-10 1.04731e-10) (8.63934e-11 1.16355e-10 1.1685e-10) (6.00071e-11 4.25868e-11 6.34787e-11) (2.40344e-11 6.88005e-12 1.37145e-11) (7.1775e-12 1.47548e-12 -2.63203e-12) (6.79288e-12 4.84905e-12 -2.47536e-11) (-2.95031e-12 4.15094e-12 -7.95666e-11) (-1.9224e-11 -2.72554e-11 -1.0791e-10) (-2.8111e-11 -6.51341e-11 -7.64672e-11) (-3.67764e-11 -7.10652e-11 -1.79395e-11) (-8.68329e-11 -8.25295e-11 5.17181e-11) (-2.74035e-10 -1.12079e-10 1.95216e-10) (-4.74323e-10 -1.40886e-10 2.51939e-10) (-3.37981e-10 -1.53226e-10 1.07037e-10) (-6.84317e-11 -7.68032e-11 1.09634e-11) (1.50976e-11 -2.30961e-11 2.78359e-12) (1.77953e-10 9.89259e-12 4.11844e-11) (5.26457e-10 2.86621e-10 1.857e-10) (5.57914e-10 5.99302e-10 2.91994e-10) (1.81902e-10 3.83765e-10 1.32655e-10) (6.31734e-12 7.85057e-11 -2.81591e-11) (4.7423e-10 4.90775e-10 -9.32471e-10) (7.69843e-10 2.39667e-10 -2.05529e-09) (8.67643e-10 1.88018e-10 -1.93493e-09) (5.74877e-10 2.13291e-10 -6.93708e-10) (2.79776e-10 6.75633e-11 -3.26436e-11) (2.2787e-10 -1.31599e-10 2.33856e-10) (-1.66557e-10 -1.02684e-09 7.62074e-10) (-3.21826e-09 -4.00735e-09 1.56341e-09) (-7.78883e-09 -5.7913e-09 1.1493e-09) (-5.10908e-09 -2.30866e-09 -1.99812e-10) (-8.67124e-10 -3.64779e-11 -3.98068e-10) (-1.33076e-11 2.89644e-10 -3.95375e-10) (4.93849e-10 5.63721e-10 -5.06413e-10) (4.53492e-10 3.01407e-10 -1.21275e-10) (1.5998e-10 5.01361e-11 7.90396e-11) (4.1167e-11 -1.71953e-11 1.46356e-10) (-6.51281e-11 -2.44071e-11 1.97175e-10) (-1.2082e-10 2.42751e-11 1.67981e-10) (-8.21764e-11 5.88532e-11 1.08792e-10) (-2.50016e-11 5.34838e-11 6.97607e-11) (8.82763e-12 4.04386e-11 5.47894e-11) (2.67952e-11 3.13186e-11 4.21703e-11) (2.94932e-11 2.74968e-11 2.01339e-11) (2.89282e-11 3.486e-11 -4.25798e-12) (3.24161e-11 6.01951e-11 -4.70996e-11) (1.67381e-11 6.49101e-11 -9.76039e-11) (-1.12608e-11 1.90829e-11 -8.30572e-11) (-2.47803e-11 -1.73206e-11 -3.71122e-11) (-6.13916e-11 -6.01423e-11 -6.52672e-12) (-1.6297e-10 -1.49136e-10 5.84191e-11) (-2.74738e-10 -2.26252e-10 9.33038e-11) (-3.02968e-10 -2.56021e-10 5.04782e-11) (-2.11516e-10 -2.33084e-10 2.56082e-11) (-7.54612e-11 -1.54367e-10 5.17951e-11) (-9.26541e-13 -9.05945e-11 8.8338e-11) (3.581e-11 -2.89921e-11 1.379e-10) (6.58692e-11 8.94103e-11 1.97209e-10) (1.44112e-10 3.48745e-10 2.40959e-10) (2.97168e-10 6.80399e-10 1.04555e-10) (3.71384e-10 6.76198e-10 -2.76689e-10) (7.64886e-10 9.3611e-10 -8.82868e-10) (1.66729e-09 8.09568e-10 -2.05261e-09) (1.96605e-09 4.37087e-10 -2.3046e-09) (1.37712e-09 2.48016e-10 -1.253e-09) (4.92692e-10 6.18818e-11 -2.29462e-10) (4.47902e-11 -2.923e-11 1.98595e-11) (-4.31119e-10 -5.9567e-10 3.46903e-10) (-4.09148e-09 -3.35521e-09 1.29721e-09) (-7.80241e-09 -4.74722e-09 1.2412e-09) (-4.85902e-09 -1.9445e-09 2.33039e-10) (-9.42815e-10 -9.53766e-11 -1.90848e-10) (-6.19061e-11 9.56934e-11 -1.68393e-10) (2.98224e-10 2.70604e-10 -4.13335e-10) (6.24861e-10 2.82119e-10 -3.79439e-10) (3.91075e-10 1.09856e-10 -5.9248e-11) (9.00248e-11 1.81058e-11 6.23111e-11) (-2.1781e-11 1.00566e-11 1.7617e-10) (-2.31808e-10 4.18393e-11 4.32968e-10) (-2.15823e-10 9.13284e-11 4.22833e-10) (-3.12069e-11 8.32556e-11 1.95722e-10) (3.93774e-11 6.21052e-11 6.4982e-11) (6.49181e-11 6.65026e-11 1.28132e-11) (6.15772e-11 7.25082e-11 -1.74037e-11) (3.2695e-11 6.31542e-11 -2.12683e-11) (8.9576e-12 4.16298e-11 -1.38658e-11) (-1.53864e-13 1.37553e-11 -6.13939e-12) (-3.38164e-13 3.14626e-13 -1.11212e-12) (-1.86013e-12 -1.52175e-11 -4.53618e-12) (-6.64478e-12 -1.02944e-10 -5.07051e-12) (-2.01724e-11 -1.8626e-10 1.34592e-11) (-4.7758e-11 -1.5711e-10 3.49276e-11) (-8.77348e-11 -1.26564e-10 6.31717e-11) (-1.32484e-10 -1.57004e-10 1.19415e-10) (-1.14339e-10 -1.98053e-10 1.52935e-10) (-5.76787e-11 -1.52386e-10 1.17496e-10) (-3.33259e-11 -4.16694e-11 6.14128e-11) (-8.26656e-11 4.25399e-11 9.55664e-11) (-2.59456e-10 3.40712e-10 2.33001e-10) (-2.15362e-10 6.55922e-10 1.69753e-10) (1.25736e-10 7.55959e-10 -1.5377e-10) (4.09531e-10 7.64464e-10 -4.75839e-10) (1.40971e-09 8.68211e-10 -1.27529e-09) (2.1269e-09 7.07938e-10 -1.6601e-09) (1.57972e-09 4.11043e-10 -9.32426e-10) (5.03502e-10 8.67682e-11 -1.32178e-10) (3.96646e-11 -2.71505e-11 2.68501e-11) (-2.94092e-10 -4.09478e-10 2.11489e-10) (-2.42202e-09 -1.81561e-09 4.57318e-10) (-4.8346e-09 -2.22148e-09 3.7726e-10) (-3.5465e-09 -7.49399e-10 3.94283e-10) (-9.85881e-10 8.42489e-11 1.82155e-10) (-7.15767e-11 5.55277e-11 2.98943e-12) (2.12738e-11 3.77158e-11 -3.23704e-11) (1.15807e-10 4.83469e-11 -9.28632e-11) (9.95474e-11 2.00673e-11 -4.92402e-11) (2.65271e-11 3.87239e-12 2.91055e-12) (1.58582e-11 2.53008e-12 3.92209e-11) (2.53506e-11 3.84052e-12 1.64624e-10) (6.9666e-11 1.12759e-11 2.40686e-10) (9.18393e-11 1.8895e-11 1.34624e-10) (5.97716e-11 1.79741e-11 2.32707e-11) (4.54741e-11 2.6065e-11 -2.1503e-11) (3.29297e-11 4.71454e-11 -4.61833e-11) (1.56015e-11 6.23888e-11 -3.67217e-11) (1.2012e-11 5.78511e-11 -1.30687e-11) (1.80647e-11 3.21999e-11 -1.34809e-13) (2.49035e-11 8.25351e-12 -3.45707e-13) (4.81097e-11 -2.52147e-11 -7.41505e-12) (5.79704e-11 -1.04169e-10 -1.08121e-11) (-6.43125e-12 -1.89161e-10 3.02146e-11) (-1.8546e-10 -2.90214e-10 1.74082e-10) (-4.56319e-10 -3.78571e-10 4.35653e-10) (-4.54281e-10 -4.01171e-10 4.958e-10) (-2.93844e-10 -3.71401e-10 2.82332e-10) (-2.14133e-10 -2.59201e-10 5.65102e-11) (-2.11623e-10 -1.10155e-10 -4.60988e-11) (-2.65077e-10 5.16617e-11 -4.75401e-11) (-3.84509e-10 3.29168e-10 3.42838e-11) (-3.74388e-10 6.61089e-10 9.81909e-11) (-8.74431e-11 7.18627e-10 -7.53114e-11) (2.67237e-10 3.33913e-10 -2.13193e-10) (8.37147e-10 4.87369e-10 -3.64344e-10) (1.1277e-09 4.47771e-10 -2.9932e-10) (7.20942e-10 2.2026e-10 -2.19464e-11) (1.97668e-10 3.14608e-11 8.76125e-11) (1.21431e-11 -2.43979e-11 6.30731e-11) (-1.3528e-10 -1.05133e-10 9.14849e-11) (-4.67392e-10 -2.07039e-10 7.01145e-11) (-5.6874e-10 -1.50987e-10 9.50192e-11) (-3.6289e-10 -3.69798e-11 1.91603e-10) (-1.75195e-10 3.37923e-11 1.98253e-10) (-5.07424e-11 3.89683e-11 8.18884e-11) (-4.52638e-12 6.68126e-12 4.59791e-12) (1.51348e-13 2.53864e-13 -1.63981e-12) (8.51691e-12 -6.76876e-12 -9.51711e-12) (3.83046e-11 -2.28608e-11 -1.95336e-12) (1.18297e-10 -4.90143e-11 5.82881e-11) (1.65119e-10 -4.06458e-11 1.20864e-10) (7.3078e-11 1.14184e-12 3.71173e-11) (2.71576e-11 1.47723e-11 -2.29285e-11) (2.54333e-11 6.0459e-11 -2.09459e-10) (-3.57629e-11 7.13859e-11 -3.68164e-10) (-2.82453e-11 4.31124e-11 -2.04751e-10) (1.08298e-11 2.32269e-11 -4.5222e-11) (6.41838e-11 4.53959e-11 -1.37418e-11) (2.52538e-10 1.177e-10 3.39735e-11) (3.81668e-10 1.07515e-10 5.83248e-11) (2.35495e-10 3.30766e-12 1.95843e-11) (5.7125e-11 -3.96939e-11 4.42074e-12) (-9.3087e-12 -8.6126e-11 2.73043e-11) (-1.70226e-10 -2.4155e-10 1.83436e-10) (-3.69461e-10 -4.02104e-10 5.29221e-10) (-4.07163e-10 -5.19507e-10 8.10272e-10) (-4.30423e-10 -4.92258e-10 6.19957e-10) (-6.13646e-10 -3.47555e-10 1.86345e-10) (-1.40056e-09 -1.95386e-10 -3.96502e-10) (-2.33105e-09 3.45649e-10 -1.24143e-09) (-1.80847e-09 7.14272e-10 -1.1662e-09) (-6.11525e-10 4.96509e-10 -4.85248e-10) (-4.59067e-11 2.5915e-10 -1.68793e-10) (-5.96388e-11 1.49375e-10 -1.43285e-10) (2.01138e-11 7.17653e-11 -3.74212e-12) (9.15103e-11 7.69946e-11 8.40641e-11) (1.61129e-10 5.51088e-11 2.21746e-10) (1.01161e-10 8.37317e-12 2.15315e-10) (1.36785e-11 -3.27788e-12 6.67314e-11) (-1.19866e-12 1.3342e-13 4.03877e-12) (-6.20595e-13 4.33481e-13 7.1407e-13) (1.67706e-12 1.95776e-12 1.52968e-11) (2.41838e-11 8.69741e-13 1.10619e-10) (1.6147e-11 1.79817e-12 1.50268e-10) (-1.83577e-11 3.09379e-13 8.44316e-11) (-3.09188e-11 -9.43694e-12 3.97661e-11) (-3.16861e-11 -1.8039e-11 2.57073e-11) (-1.43942e-11 -1.03006e-11 1.18145e-11) (-6.97194e-13 -2.24198e-13 5.02528e-13) (3.88884e-12 8.31662e-12 -1.15556e-11) (7.3053e-11 9.13398e-11 -2.18582e-10) (1.66491e-10 1.64596e-10 -7.81594e-10) (-6.73047e-12 -7.24816e-12 -9.46983e-10) (-1.55917e-10 -1.45058e-10 -4.91164e-10) (-6.70271e-11 -6.88409e-11 -9.8065e-11) (-1.68591e-13 -1.40706e-12 -1.71924e-12) (7.96775e-11 4.14531e-11 4.69444e-12) (5.37108e-10 3.05122e-10 6.13994e-11) (1.00078e-09 5.36946e-10 1.376e-10) (7.7805e-10 3.63552e-10 9.96159e-11) (1.85156e-10 4.92057e-11 1.65473e-11) (5.75734e-12 -1.69474e-11 2.15454e-12) (-1.65876e-10 -2.78413e-10 6.08358e-11) (-5.8648e-10 -7.26527e-10 3.54347e-10) (-7.69096e-10 -8.31374e-10 8.5186e-10) (-8.02918e-10 -6.73345e-10 1.22806e-09) (-8.10208e-10 -4.24639e-10 9.03316e-10) (-5.76602e-10 -1.68485e-10 2.10691e-10) (-3.31158e-10 -2.37229e-12 -1.65101e-10) (-3.69182e-10 1.88221e-10 -7.33757e-10) (-4.52713e-10 3.76582e-10 -1.51284e-09) (-4.62288e-10 3.47145e-10 -1.35748e-09) (-2.75069e-10 2.6822e-10 -6.27773e-10) (-2.34815e-11 1.84844e-10 -2.41197e-10) (2.54278e-11 3.61297e-11 3.45041e-12) (1.15245e-10 2.00056e-11 2.31994e-10) (1.65252e-10 -8.76998e-11 6.13427e-10) (5.8709e-11 -5.7382e-11 3.89631e-10) (8.02336e-13 4.19578e-12 6.14862e-11) (-8.61628e-13 6.72167e-12 5.77572e-12) (5.55299e-12 1.22835e-11 1.08424e-11) (5.80227e-11 2.601e-11 8.94894e-11) (1.35584e-10 1.59615e-11 2.40201e-10) (5.34598e-11 -4.15961e-12 1.60502e-10) (-1.8971e-11 -1.60195e-11 6.35589e-11) (-8.80879e-11 -5.55537e-11 6.79302e-11) (-1.16714e-10 -7.89447e-11 4.92462e-11) (-4.63212e-11 -2.09616e-11 -9.22006e-12) (-7.45627e-11 4.33444e-11 -1.76917e-10) (-2.16416e-10 4.12638e-10 -1.19903e-09) (-4.34328e-10 5.66747e-10 -2.16661e-09) (-4.26587e-10 8.30802e-11 -1.1589e-09) (-1.49248e-10 -7.21796e-11 -1.03384e-10) (-1.57943e-10 -1.54414e-10 2.33986e-10) (-3.03832e-11 -1.63522e-10 6.99797e-10) (2.18722e-10 4.30903e-11 3.9423e-10) (5.34713e-10 2.43151e-10 7.9753e-11) (1.35193e-09 6.95994e-10 -4.64374e-10) (1.56313e-09 8.69453e-10 -7.66839e-10) (6.87286e-10 3.75153e-10 -3.52202e-10) (4.22953e-11 3.46588e-12 -2.28793e-11) (-8.9148e-11 -2.0825e-10 2.88455e-11) (-9.50134e-10 -1.28911e-09 4.20358e-10) (-1.66697e-09 -1.47327e-09 9.52789e-10) (-1.75016e-09 -7.02911e-10 1.29541e-09) (-1.85926e-09 -2.12338e-10 1.37135e-09) (-1.35307e-09 -2.47868e-10 6.83402e-10) (-3.00883e-10 -1.72815e-10 3.15602e-11) (8.59314e-12 -4.03332e-11 -7.04128e-11) (2.70109e-10 1.23087e-10 -4.9163e-10) (2.5876e-10 4.96069e-10 -1.11703e-09) (-1.88543e-10 5.77328e-10 -1.33021e-09) (-2.75043e-10 4.42365e-10 -9.31058e-10) (1.42888e-10 2.55262e-10 -2.69589e-10) (1.94215e-10 9.6908e-11 5.53726e-11) (4.29552e-10 -8.60638e-12 5.75897e-10) (3.02277e-10 -2.06749e-10 9.85917e-10) (-2.02479e-11 -1.26633e-10 5.1828e-10) (-5.68393e-11 -1.23275e-11 9.32224e-11) (-1.83599e-11 5.55144e-12 1.2505e-11) (6.04251e-13 7.73278e-12 1.7239e-11) (8.1248e-11 3.41013e-11 1.70263e-10) (1.26896e-10 4.66451e-11 2.97863e-10) (1.4577e-11 1.23063e-11 1.04341e-10) (-1.64004e-11 -1.08951e-11 1.6786e-11) (-6.07961e-11 -7.65511e-11 -1.26932e-11) (-8.73346e-11 -1.38439e-10 -1.20502e-10) (-1.8954e-10 -7.31747e-11 -4.80514e-10) (-7.55025e-10 4.54242e-10 -1.71924e-09) (-1.44564e-09 9.95882e-10 -2.54613e-09) (-9.23326e-10 4.11051e-10 -1.12017e-09) (-1.57688e-10 -9.09919e-12 -4.77587e-11) (-1.20917e-10 -1.86614e-10 2.77688e-10) (9.43563e-12 -5.51295e-10 8.37701e-10) (1.77922e-10 -3.10822e-10 4.88187e-10) (2.01317e-10 3.73674e-12 1.51557e-10) (7.28283e-10 4.76996e-10 4.94021e-11) (1.81049e-09 1.41726e-09 -4.9411e-10) (1.89849e-09 1.39365e-09 -9.12042e-10) (6.92118e-10 3.4907e-10 -4.26065e-10) (4.02619e-11 -4.46637e-11 -4.5766e-11) (-4.81118e-10 -7.07992e-10 -2.22599e-11) (-2.8369e-09 -1.82115e-09 3.35914e-10) (-4.37339e-09 -9.96017e-10 1.04485e-09) (-3.45341e-09 6.15681e-11 1.56652e-09) (-1.61996e-09 -1.10833e-10 1.08583e-09) (-3.80539e-10 -4.0556e-10 3.07567e-10) (7.51533e-11 -6.30512e-10 -8.67161e-12) (3.69332e-10 -3.97439e-10 -2.62866e-10) (4.29623e-10 9.62222e-11 -4.54167e-10) (4.82291e-10 7.8223e-10 -1.01882e-09) (1.84732e-10 1.08817e-09 -1.4902e-09) (5.72171e-11 7.39005e-10 -1.11938e-09) (1.46256e-10 1.27892e-10 -8.09435e-11) (2.21254e-10 4.01168e-11 1.1743e-10) (3.11148e-10 -6.52361e-11 4.87548e-10) (1.1104e-10 -1.34986e-10 5.59717e-10) (-4.78814e-11 -6.72049e-11 2.27341e-10) (-3.92212e-11 -1.33078e-11 4.30712e-11) (-1.32334e-11 -2.37226e-13 1.31155e-11) (5.77939e-14 1.16391e-11 6.17539e-11) (4.95904e-11 7.13075e-11 2.83309e-10) (2.75289e-11 8.6081e-11 2.45132e-10) (-2.19835e-12 8.36569e-12 1.9103e-11) (-5.3496e-12 -1.59104e-11 -1.72439e-11) (-6.86424e-11 -2.33349e-10 -2.94328e-10) (-3.60147e-10 -3.40076e-10 -7.79036e-10) (-1.03896e-09 8.99801e-11 -1.48514e-09) (-1.52585e-09 7.94132e-10 -1.80408e-09) (-8.10216e-10 5.18312e-10 -7.50221e-10) (-8.0138e-11 3.56247e-11 -1.82545e-11) (4.19212e-12 -4.74232e-11 1.10066e-10) (2.46214e-10 -3.49823e-10 4.50545e-10) (2.88593e-10 -4.23191e-10 2.95922e-10) (6.37633e-11 -1.4117e-10 2.99709e-11) (3.96324e-12 -4.14692e-12 -3.89502e-12) (9.04497e-11 1.01588e-10 -3.05229e-11) (7.40229e-10 7.28317e-10 -5.88376e-11) (1.28217e-09 9.71225e-10 -1.01904e-10) (5.13597e-10 2.46782e-10 -8.70902e-11) (1.16644e-12 -1.21264e-11 -1.17036e-11) (-1.24276e-09 -5.72533e-10 -2.15248e-10) (-5.54159e-09 -1.12128e-09 -2.50144e-10) (-5.33805e-09 -4.18016e-10 6.06648e-10) (-1.92728e-09 -2.61393e-10 9.31715e-10) (-3.97849e-10 -4.34999e-10 6.51579e-10) (1.47244e-10 -7.66297e-10 4.03381e-10) (5.85959e-10 -9.55711e-10 -9.69241e-11) (5.54938e-10 -4.13191e-10 -4.17956e-10) (3.04919e-10 1.00205e-10 -3.82289e-10) (2.44998e-10 6.23277e-10 -6.19717e-10) (1.75476e-10 9.78605e-10 -8.46721e-10) (1.7167e-10 5.35396e-10 -4.88119e-10) (4.49727e-11 2.14151e-11 1.23313e-11) (7.03431e-11 -1.87356e-11 1.07821e-10) (5.16536e-11 -8.5069e-11 2.64656e-10) (-1.7069e-11 -8.20409e-11 2.03235e-10) (-2.61859e-11 -2.6748e-11 4.98557e-11) (-1.41219e-11 -5.45529e-12 1.0056e-11) (-1.11701e-11 3.1705e-12 1.97725e-11) (-9.83012e-12 4.90766e-11 1.54314e-10) (8.8525e-12 1.31382e-10 3.14078e-10) (8.45595e-12 6.28163e-11 9.34101e-11) (4.87717e-12 3.66383e-12 -5.73089e-12) (5.88712e-11 -6.91664e-11 -2.53599e-10) (-1.53369e-10 -2.35194e-10 -6.78089e-10) (-1.12144e-09 -1.94922e-10 -1.07897e-09) (-2.22757e-09 2.39705e-10 -1.17277e-09) (-1.0813e-09 3.34583e-10 -4.034e-10) (-7.86575e-11 4.95977e-11 5.80245e-12) (3.67188e-11 -1.85485e-12 7.89147e-11) (3.61146e-10 -2.12519e-10 3.23232e-10) (5.10956e-10 -4.79554e-10 2.48469e-10) (1.17948e-10 -3.11446e-10 6.97273e-12) (-1.65236e-10 -1.92812e-10 -8.41922e-11) (-3.77069e-10 -7.09375e-11 -1.35993e-10) (-5.58344e-11 3.83975e-11 -2.43286e-11) (1.91228e-10 2.11256e-10 7.94034e-12) (1.30808e-09 7.75821e-10 1.409e-10) (1.1097e-09 5.52619e-10 5.22931e-11) (4.60469e-11 3.74188e-11 -2.00629e-11) (-4.97712e-10 3.06333e-11 -1.7551e-10) (-2.83172e-09 -9.38078e-11 -3.46861e-10) (-2.38642e-09 -4.15455e-10 3.81359e-10) (-8.70817e-10 -6.48598e-10 8.03017e-10) (-1.17588e-10 -9.1856e-10 8.92438e-10) (2.27999e-10 -6.52661e-10 2.37987e-10) (3.84624e-10 -4.18227e-10 -3.23812e-10) (4.91507e-10 -1.05876e-10 -6.46057e-10) (1.95159e-10 1.51784e-10 -2.77358e-10) (7.07884e-11 2.31567e-10 -1.38727e-10) (6.07042e-11 2.46e-10 -1.16026e-10) (6.55401e-11 1.10391e-10 -4.70691e-11) (1.40278e-11 -7.27124e-12 1.85617e-11) (1.73895e-11 -4.61378e-11 8.71836e-11) (-8.35898e-12 -6.61309e-11 1.30029e-10) (-2.51149e-11 -3.7882e-11 6.47314e-11) (-2.29482e-11 -1.57924e-11 2.07146e-11) (-1.99277e-11 -4.77757e-12 1.79323e-11) (-2.16001e-11 1.544e-11 7.16222e-11) (1.00102e-11 8.89511e-11 2.26873e-10) (5.22008e-11 1.16215e-10 1.75933e-10) (3.94357e-11 4.77517e-11 7.64533e-12) (1.42922e-10 6.47468e-11 -2.17751e-10) (1.80949e-10 -3.48881e-12 -7.07899e-10) (-2.50453e-10 -5.46741e-11 -6.23776e-10) (-1.24942e-09 -4.80495e-11 -5.3634e-10) (-1.78487e-09 1.85625e-11 -4.76002e-11) (-4.38937e-10 9.69445e-12 1.72995e-10) (1.28074e-11 -1.43501e-11 1.17751e-10) (4.08527e-10 -1.37339e-10 2.90284e-10) (6.95248e-10 -3.35919e-10 1.24911e-10) (2.50999e-10 -2.63501e-10 -1.30933e-10) (-1.81089e-10 -2.4809e-10 -2.60753e-10) (-1.34548e-09 -4.03949e-10 -6.0956e-10) (-1.38071e-09 -1.13159e-10 -2.67714e-10) (-1.98152e-10 5.07702e-11 7.23524e-11) (1.45043e-10 1.82826e-10 2.60458e-10) (1.24182e-09 7.29178e-10 6.06985e-10) (1.7127e-09 9.42158e-10 4.96836e-11) (5.54228e-10 4.55138e-10 -3.69617e-10) (-1.01935e-10 1.6892e-10 -2.84855e-10) (-4.75174e-10 4.37257e-12 -1.88104e-10) (-4.44411e-10 -3.33701e-10 1.61118e-10) (-3.30151e-10 -1.10458e-09 8.61553e-10) (-1.19748e-10 -1.14822e-09 8.66996e-10) (-2.6928e-11 -2.2238e-10 2.10208e-11) (6.88389e-11 -9.63921e-11 -5.22308e-10) (3.06228e-10 2.30641e-10 -1.01042e-09) (1.11829e-10 1.82814e-10 -1.94048e-10) (2.65587e-11 9.83309e-11 3.23854e-12) (1.33248e-11 4.47646e-11 1.42831e-11) (8.80734e-12 6.85006e-12 5.35374e-12) (1.58221e-11 -2.98402e-11 2.43606e-11) (1.47529e-11 -4.71188e-11 3.92577e-11) (2.4487e-12 -4.19367e-11 4.27973e-11) (-1.23478e-11 -2.88314e-11 3.60363e-11) (-3.28303e-11 -2.29661e-11 4.86171e-11) (-5.45547e-11 -7.73647e-12 9.74892e-11) (-3.41265e-11 2.82142e-11 1.62367e-10) (3.14745e-11 6.18119e-11 1.35118e-10) (7.18173e-11 7.48459e-11 3.05096e-11) (2.13761e-10 1.86446e-10 -2.04443e-10) (4.4411e-10 3.4478e-10 -9.24239e-10) (1.60689e-10 2.07701e-10 -9.37074e-10) (-1.74915e-10 2.78734e-11 -2.60027e-10) (-6.01986e-10 -7.62388e-11 1.08902e-11) (-6.76391e-10 -2.21746e-10 3.77217e-10) (-1.36151e-10 -1.74986e-10 3.17375e-10) (1.488e-10 -1.48628e-10 2.49756e-10) (2.64295e-10 -1.18966e-10 1.10615e-10) (9.36674e-11 -5.06327e-11 -4.67223e-11) (-8.39139e-11 -8.5179e-11 -2.33355e-10) (-1.13098e-09 -3.30027e-10 -8.89903e-10) (-2.41258e-09 -5.16315e-10 -1.12411e-09) (-1.49059e-09 -2.19176e-10 -4.00962e-10) (-1.65415e-10 1.51089e-11 4.34013e-11) (1.4988e-10 1.68176e-10 2.76528e-10) (1.24795e-09 8.51579e-10 8.24954e-10) (1.68921e-09 1.25165e-09 2.41813e-10) (9.45868e-10 9.43844e-10 -4.85812e-10) (1.37039e-10 2.61336e-10 -3.16428e-10) (-3.47421e-12 -8.2894e-12 -1.64518e-11) (-3.42184e-12 -4.93307e-10 2.21518e-10) (-1.35712e-10 -1.64107e-09 1.12058e-09) (-5.67047e-10 -1.04996e-09 6.66031e-10) (-3.87746e-10 -2.23541e-10 -1.67325e-10) (-3.65325e-10 1.90135e-10 -1.51788e-09) (2.01308e-10 5.65756e-10 -1.48158e-09) (8.77048e-11 1.6623e-10 -1.1464e-10) (3.29684e-11 8.85066e-11 7.18749e-11) (1.45058e-11 3.14185e-11 6.84507e-11) (9.23453e-12 -5.9806e-12 2.04004e-11) (2.14155e-11 -3.8905e-11 2.01684e-11) (1.65721e-11 -4.16126e-11 1.43514e-11) (4.00528e-12 -2.85697e-11 2.30462e-11) (-2.59605e-11 -3.55292e-11 8.05351e-11) (-1.29731e-10 -4.33056e-11 2.38139e-10) (-1.68829e-10 -2.26232e-11 2.85663e-10) (-3.81526e-11 3.1269e-12 8.98407e-11) (5.01912e-12 5.87383e-12 1.49705e-12) (1.61791e-10 1.52975e-10 -2.03084e-10) (5.56295e-10 6.07907e-10 -1.10174e-09) (5.5825e-10 7.21328e-10 -1.52448e-09) (9.25329e-11 2.20692e-10 -5.05579e-10) (-1.19036e-11 2.66083e-12 -8.7147e-12) (-1.20127e-10 -1.0047e-10 1.55728e-10) (-1.29636e-10 -3.91604e-10 5.42359e-10) (5.53577e-11 -4.34073e-10 5.37867e-10) (6.40466e-11 -1.8229e-10 2.07696e-10) (3.10787e-12 -1.17819e-11 8.55751e-12) (-1.70585e-11 -1.29302e-13 -3.52806e-11) (-2.9977e-10 5.38561e-12 -4.17709e-10) (-1.31672e-09 -1.8925e-10 -1.10748e-09) (-2.35956e-09 -4.94637e-10 -1.25276e-09) (-1.62089e-09 -3.13216e-10 -5.13332e-10) (-3.20809e-10 1.5758e-12 3.74544e-12) (6.17015e-12 7.17146e-11 6.89235e-11) (7.35711e-10 7.0982e-10 4.24378e-10) (1.85821e-09 1.64329e-09 3.35254e-10) (1.53724e-09 1.36704e-09 -2.282e-10) (5.16797e-10 2.96574e-10 -1.56092e-10) (2.23217e-10 -1.23722e-10 3.85244e-11) (3.84471e-10 -1.03117e-09 6.03819e-10) (-3.69412e-10 -1.57297e-09 1.02655e-09) (-1.34454e-09 -1.02591e-09 3.65909e-10) (-1.58067e-09 -2.95392e-10 -9.96853e-10) (-9.02819e-10 5.89306e-10 -2.81551e-09) (1.46831e-10 6.37029e-10 -1.41328e-09) (6.9125e-11 1.12352e-10 -3.04208e-11) (7.98513e-11 1.18305e-10 2.09129e-10) (4.63404e-11 3.66079e-11 1.89175e-10) (2.11639e-11 -1.95937e-11 4.8456e-11) (2.83849e-11 -3.21791e-11 1.89088e-11) (2.00989e-11 -3.17648e-11 1.1894e-11) (6.1241e-12 -2.3543e-11 3.02707e-11) (-4.63633e-11 -3.92767e-11 1.47538e-10) (-2.08474e-10 -5.99201e-11 3.37188e-10) (-2.18021e-10 -5.36748e-11 2.23192e-10) (-3.92018e-11 -9.02101e-12 9.83132e-12) (-3.11167e-12 2.08895e-11 -1.05273e-10) (2.73899e-10 3.46712e-10 -9.45116e-10) (6.63366e-10 8.45276e-10 -1.82911e-09) (4.67529e-10 6.23013e-10 -1.10921e-09) (8.01602e-11 9.0239e-11 -1.06347e-10) (2.62919e-11 -7.46567e-12 4.21444e-11) (1.82293e-10 -3.18799e-10 5.79095e-10) (2.60189e-10 -7.79001e-10 1.13845e-09) (-8.73902e-11 -5.78636e-10 7.85837e-10) (-3.13491e-10 -2.30643e-10 2.75197e-10) (-3.67166e-10 -6.18129e-11 -2.21636e-11) (-3.93373e-10 4.28453e-11 -3.30552e-10) (-4.66969e-10 7.52985e-11 -6.82131e-10) (-6.76878e-10 -6.85965e-11 -7.65673e-10) (-8.08274e-10 -2.29899e-10 -5.22707e-10) (-5.28631e-10 -1.53019e-10 -1.51546e-10) (-1.44889e-10 5.63173e-12 1.64516e-11) (-1.54015e-11 5.81113e-11 3.42308e-11) (2.70502e-10 4.18371e-10 1.00448e-10) (1.3134e-09 1.30271e-09 7.42791e-11) (1.90045e-09 1.33758e-09 3.83346e-12) (1.36424e-09 3.41118e-10 1.72462e-10) (1.06285e-09 -4.78707e-10 5.22625e-10) (5.35332e-10 -1.14534e-09 8.97277e-10) (-6.14849e-10 -1.09195e-09 6.74347e-10) (-2.32053e-09 -1.01523e-09 -1.78263e-10) (-2.88536e-09 -1.90517e-10 -2.46765e-09) (-1.16573e-09 8.58248e-10 -3.76435e-09) (6.73323e-11 4.73908e-10 -9.44586e-10) (4.34146e-11 6.59731e-11 3.30416e-11) (1.48537e-10 1.37941e-10 4.87609e-10) (1.09016e-10 4.33072e-11 3.67888e-10) (4.29897e-11 -2.00588e-11 7.88904e-11) (5.0938e-11 -2.66605e-11 2.06791e-11) (2.72285e-11 -2.45339e-11 1.1892e-11) (9.41772e-13 -1.8102e-11 2.95941e-11) (-9.59403e-11 -4.05801e-11 1.64141e-10) (-3.05331e-10 -7.07169e-11 3.15708e-10) (-2.70611e-10 -7.09313e-11 1.47559e-10) (-7.51476e-11 -2.70646e-11 -3.24691e-11) (2.75239e-12 6.51835e-12 -4.0981e-10) (4.43648e-10 3.56475e-10 -1.6494e-09) (6.75626e-10 7.29371e-10 -1.89622e-09) (3.42182e-10 3.82458e-10 -6.03223e-10) (1.01348e-10 5.61365e-11 -2.22685e-12) (3.05243e-10 -7.94473e-11 4.18167e-10) (4.74594e-10 -6.09121e-10 1.42766e-09) (-2.50898e-10 -8.52872e-10 1.71578e-09) (-1.29985e-09 -6.41893e-10 1.21807e-09) (-2.13304e-09 -3.43386e-10 3.47446e-10) (-1.91255e-09 -3.60799e-11 -6.49715e-10) (-9.50881e-10 7.6932e-11 -9.72259e-10) (-3.15223e-10 2.006e-11 -6.7972e-10) (-1.08765e-10 -5.01957e-11 -2.5419e-10) (-6.70862e-11 -5.44488e-11 -6.37194e-11) (-3.66326e-11 -2.22862e-11 -1.05356e-13) (-9.65767e-12 6.10051e-12 1.33606e-11) (2.31854e-11 7.1894e-11 3.86411e-11) (2.26554e-10 3.1521e-10 2.07351e-11) (8.28808e-10 7.48801e-10 -7.80581e-11) (1.55999e-09 8.15125e-10 3.91597e-11) (1.79922e-09 1.87415e-10 4.76905e-10) (1.40951e-09 -5.8296e-10 8.98143e-10) (2.95446e-10 -6.97383e-10 6.88102e-10) (-6.89882e-10 -6.22087e-10 3.27798e-10) (-3.08105e-09 -8.23041e-10 -9.49467e-10) (-3.78974e-09 3.32448e-11 -4.04733e-09) (-1.17347e-09 8.98666e-10 -3.94493e-09) (3.79882e-11 2.3544e-10 -4.10575e-10) (7.03353e-11 6.62821e-11 1.48231e-10) (2.50402e-10 1.08099e-10 9.21051e-10) (1.87277e-10 3.99051e-11 5.46281e-10) (7.8857e-11 -9.93597e-12 1.02846e-10) (4.27372e-11 -1.54993e-11 4.14638e-12) (3.37993e-12 -6.38378e-12 2.5403e-12) (-4.77683e-11 -2.20688e-11 5.37577e-11) (-3.00625e-10 -5.14382e-11 2.87175e-10) (-4.95648e-10 -8.46033e-11 3.66176e-10) (-3.42164e-10 -9.07832e-11 9.76885e-11) (-1.26254e-10 -6.17972e-11 -1.25313e-10) (1.09878e-10 -4.6176e-11 -9.2074e-10) (8.72362e-10 3.29253e-10 -2.27566e-09) (7.64412e-10 5.36796e-10 -1.58461e-09) (2.28983e-10 1.78397e-10 -2.33674e-10) (1.42582e-10 4.47996e-11 1.12703e-10) (3.09959e-10 -1.50043e-10 1.05265e-09) (-3.56305e-10 -5.97075e-10 2.25951e-09) (-1.7856e-09 -7.18837e-10 2.30959e-09) (-2.7257e-09 -4.49556e-10 1.15843e-09) (-2.72217e-09 -1.51165e-10 -1.92315e-10) (-1.62284e-09 -8.98352e-12 -9.01385e-10) (-4.77784e-10 -4.06671e-12 -7.40512e-10) (-3.79909e-11 -2.54818e-11 -3.72601e-10) (8.4507e-12 -3.17937e-11 -1.05814e-10) (-6.23973e-12 -1.54319e-11 -1.07088e-11) (-6.57871e-12 -8.06357e-12 1.0527e-11) (2.06228e-11 1.74844e-11 5.31272e-11) (1.85539e-10 1.4291e-10 1.09875e-10) (4.92288e-10 3.47009e-10 1.61899e-11) (8.73252e-10 4.93787e-10 -1.33018e-10) (1.24213e-09 4.01497e-10 -2.87585e-11) (1.35928e-09 2.01099e-11 3.52563e-10) (8.03553e-10 -3.28999e-10 5.68641e-10) (3.64712e-11 -2.49126e-10 2.8929e-10) (-7.12592e-10 -3.26637e-10 9.10778e-11) (-3.50491e-09 -4.45053e-10 -1.6805e-09) (-4.48762e-09 3.24296e-10 -5.00141e-09) (-1.04475e-09 6.12141e-10 -2.72802e-09) (2.02165e-11 4.37182e-11 -5.58065e-11) (2.30557e-10 4.53933e-11 4.65674e-10) (4.15356e-10 2.74275e-11 1.16617e-09) (2.22639e-10 2.47696e-11 4.70352e-10) (8.69293e-11 -1.78458e-12 6.56853e-11) (-1.8525e-13 -9.56249e-13 -1.06369e-12) (-4.60536e-11 -1.48711e-11 2.10362e-11) (-2.47741e-10 -4.52556e-11 2.37154e-10) (-3.52535e-10 -5.20616e-11 4.36034e-10) (-2.95909e-10 -4.83763e-11 2.68854e-10) (-1.99347e-10 -4.8632e-11 1.35215e-11) (-1.97503e-10 -9.39053e-11 -3.42958e-10) (1.39644e-10 -1.19594e-10 -1.59444e-09) (8.52275e-10 1.8154e-10 -2.23463e-09) (5.48553e-10 2.47159e-10 -8.1644e-10) (1.17763e-10 6.37819e-11 -1.2475e-11) (1.34714e-10 6.12944e-11 4.59105e-10) (-3.35499e-10 -1.27834e-10 1.93745e-09) (-1.66604e-09 -4.60849e-10 2.71643e-09) (-2.37663e-09 -4.21144e-10 1.68546e-09) (-2.00306e-09 -1.64427e-10 3.75576e-10) (-1.13692e-09 -1.00534e-11 -2.52492e-10) (-3.45581e-10 9.30611e-12 -2.94534e-10) (-3.49788e-11 -1.13507e-12 -2.56107e-10) (9.50051e-11 -1.67993e-11 -2.70845e-10) (4.83428e-11 -2.95749e-11 -1.20867e-10) (-1.18408e-12 -8.28797e-12 -6.39707e-12) (-4.5552e-12 -1.06884e-11 2.5487e-11) (9.07418e-11 2.60107e-11 1.55937e-10) (4.89117e-10 1.96827e-10 2.66225e-10) (9.29976e-10 3.68654e-10 5.45014e-11) (1.10329e-09 3.5995e-10 -2.03521e-10) (9.73884e-10 1.74996e-10 -1.37523e-10) (6.20255e-10 -2.97455e-11 1.00461e-10) (2.12377e-10 -1.03379e-10 1.86055e-10) (-4.08331e-11 -7.21024e-11 1.04957e-10) (-6.68086e-10 -1.19386e-10 -5.81289e-11) (-3.25978e-09 4.4802e-11 -1.9772e-09) (-3.78209e-09 4.67866e-10 -4.09523e-09) (-5.095e-10 1.97821e-10 -1.07823e-09) (1.95203e-11 3.64302e-12 6.91733e-12) (4.09927e-10 -5.09808e-11 7.23623e-10) (3.30745e-10 -2.30482e-11 7.82886e-10) (7.52554e-11 1.09641e-11 1.27811e-10) (8.65212e-12 5.63268e-13 1.33694e-12) (-7.79762e-11 -9.45523e-12 5.60542e-12) (-2.24476e-10 -5.59251e-11 1.92934e-10) (-2.50855e-10 -9.14239e-11 4.81893e-10) (-1.4934e-10 -4.09968e-11 3.66486e-10) (-7.94412e-11 -2.54589e-12 7.26071e-11) (-9.52756e-11 -6.94579e-12 -5.77908e-11) (-1.56786e-10 -7.14982e-11 -5.99726e-10) (1.49536e-10 -1.21778e-10 -1.34754e-09) (3.21958e-10 2.20801e-11 -8.47526e-10) (9.4722e-11 3.99107e-11 -9.07076e-11) (4.70727e-11 4.10289e-11 9.0671e-11) (-8.95674e-11 9.01818e-11 9.37494e-10) (-8.78222e-10 -7.6743e-11 1.95523e-09) (-1.63054e-09 -2.40585e-10 1.59465e-09) (-1.56252e-09 -1.65443e-10 5.7563e-10) (-8.3382e-10 -3.16479e-11 -1.27425e-11) (-1.88398e-10 8.53933e-12 -8.14899e-11) (-1.13353e-11 5.80623e-12 -5.57154e-11) (1.14663e-10 1.09084e-11 -1.86687e-10) (2.8701e-10 3.3046e-12 -3.31341e-10) (1.25011e-10 -2.08809e-11 -1.61428e-10) (2.18982e-12 -4.42018e-12 -5.4177e-12) (-2.83288e-12 -7.93943e-12 1.96578e-11) (7.72563e-11 1.00625e-11 1.27917e-10) (4.9692e-10 1.37857e-10 2.42031e-10) (1.04057e-09 2.84124e-10 4.23242e-11) (1.06053e-09 2.23808e-10 -2.10678e-10) (6.06629e-10 5.34746e-11 -1.1799e-10) (2.03774e-10 -2.82333e-11 4.24511e-11) (4.48161e-11 -3.91177e-11 8.73833e-11) (-5.39227e-11 -2.45148e-11 5.61808e-11) (-5.32338e-10 2.53762e-11 -1.6625e-10) (-2.15159e-09 3.47813e-10 -1.71299e-09) (-1.72594e-09 2.9066e-10 -2.03885e-09) (-8.06144e-11 7.42444e-12 -1.89618e-10) (4.69729e-11 -2.04068e-11 4.91385e-11) (1.27667e-10 -7.22012e-11 3.66561e-10) (2.94531e-13 -5.89236e-12 1.26612e-10) (-3.27481e-12 1.75791e-12 2.4156e-12) (-1.72373e-11 2.94184e-12 -1.05112e-11) (-1.81051e-10 -3.95957e-11 1.16555e-10) (-2.4441e-10 -1.307e-10 4.51288e-10) (-1.65715e-10 -9.77321e-11 4.79103e-10) (-6.67953e-11 -1.38148e-12 1.10544e-10) (-2.56287e-11 8.83986e-12 -7.90308e-12) (-5.77511e-11 1.79244e-11 -2.06929e-10) (1.41485e-11 -4.62766e-11 -5.72834e-10) (5.7979e-11 -6.54291e-11 -4.19804e-10) (1.19983e-11 -3.637e-12 -5.67515e-11) (1.19381e-12 3.0299e-12 4.79089e-12) (-1.1687e-11 5.96622e-11 2.88251e-10) (-2.46477e-10 7.3527e-11 9.44293e-10) (-7.06034e-10 -2.13207e-11 9.98859e-10) (-9.30849e-10 -7.45908e-11 4.84396e-10) (-6.24773e-10 -4.26528e-11 4.10836e-11) (-1.2756e-10 -1.7161e-12 -3.99618e-11) (-1.41894e-12 2.22108e-12 -1.23711e-11) (8.5297e-11 1.47483e-11 -7.52792e-11) (3.9828e-10 3.81207e-11 -2.85259e-10) (6.00901e-10 3.43575e-11 -4.19668e-10) (2.54184e-10 -4.54516e-12 -1.97004e-10) (1.17191e-11 -3.90613e-12 -1.19974e-11) (-4.43891e-13 -1.11492e-12 1.61412e-12) (1.51113e-11 1.06435e-12 2.55724e-11) (2.15574e-10 5.49803e-11 9.21467e-11) (6.2676e-10 1.44996e-10 3.73307e-11) (6.35337e-10 9.27216e-11 -6.13131e-11) (2.81912e-10 -4.40965e-12 8.93221e-12) (8.10407e-11 -2.91236e-11 6.80013e-11) (-9.48725e-13 -2.88404e-11 8.61759e-11) (-5.05764e-11 -2.50079e-12 1.8939e-11) (-3.39273e-10 1.00971e-10 -2.68454e-10) (-7.01253e-10 2.88948e-10 -1.00404e-09) (-2.33196e-10 5.47133e-11 -4.91099e-10) (-3.57192e-12 -7.47768e-12 -1.20596e-11) (-1.98758e-11 -3.10159e-11 4.55985e-11) (-1.37179e-10 -4.06626e-11 1.32928e-10) (-1.41182e-10 5.14079e-12 4.59821e-11) (-1.0629e-10 1.96281e-11 -2.02622e-11) (-1.16751e-10 6.3271e-12 -1.07308e-11) (-1.88406e-10 -8.64146e-11 2.62599e-10) (-1.99092e-10 -1.29783e-10 4.36201e-10) (-9.90528e-11 -2.64896e-11 1.55111e-10) (-1.45948e-11 5.01191e-12 2.17726e-14) (-1.0663e-11 3.28469e-11 -1.10878e-10) (5.49037e-11 2.53879e-11 -3.21518e-10) (2.75408e-11 -2.20336e-11 -1.92174e-10) (-1.00821e-11 -1.2458e-11 -2.90404e-11) (-8.75086e-12 -2.04539e-12 2.85488e-12) (-2.67694e-11 1.09352e-11 8.46182e-11) (-6.72095e-11 5.32297e-11 3.78331e-10) (-2.08483e-10 4.62414e-11 4.8559e-10) (-3.25195e-10 8.98723e-12 2.56701e-10) (-2.59059e-10 -1.12839e-11 2.76964e-11) (-5.33427e-11 -4.40435e-12 -2.86058e-11) (6.62203e-12 9.6789e-13 -1.64636e-11) (1.12974e-10 1.47422e-11 -6.05973e-11) (3.75261e-10 4.17127e-11 -1.68336e-10) (7.10845e-10 5.44791e-11 -3.42338e-10) (7.07386e-10 3.63941e-11 -3.51001e-10) (2.494e-10 5.0913e-12 -1.4345e-10) (1.82397e-11 -1.35039e-12 -1.45265e-11) (1.84583e-15 -1.86656e-14 -2.78807e-14) (1.0026e-12 3.80362e-13 1.23512e-12) (6.39191e-11 1.94501e-11 2.27574e-11) (2.69636e-10 5.73987e-11 4.45448e-11) (2.95338e-10 2.05577e-11 5.76614e-11) (1.39504e-10 -2.47072e-11 8.7586e-11) (3.57686e-11 -3.63956e-11 1.09527e-10) (-2.21909e-11 -1.32331e-11 4.70358e-11) (-3.79905e-11 9.0049e-12 -1.91265e-11) (-1.37883e-10 1.24413e-10 -3.68013e-10) (-5.45953e-11 1.30135e-10 -4.78929e-10) (-5.63279e-12 -2.55919e-12 -6.29637e-11) (-3.69497e-11 -2.2352e-11 7.66476e-12) (-3.93641e-10 -1.01445e-10 1.56951e-10) (-6.33274e-10 -5.38122e-11 1.57751e-10) (-3.79534e-10 1.92117e-11 7.48734e-12) (-1.94438e-10 2.12268e-11 -1.73568e-11) (-1.35404e-10 -1.04181e-11 4.95548e-11) (-1.39057e-10 -7.94221e-11 2.39919e-10) (-1.06592e-10 -4.65202e-11 1.53727e-10) (-1.5318e-11 -2.62143e-14 4.6528e-12) (-7.5226e-13 1.81897e-11 -6.2005e-11) (9.37676e-11 5.0071e-11 -2.59432e-10) (6.44387e-11 8.44295e-12 -1.46174e-10) (-1.08004e-12 -3.17666e-12 -1.03555e-11) (-2.35534e-11 -9.582e-12 6.2295e-12) (-4.50392e-11 -8.03227e-12 5.18616e-11) (-4.47287e-11 1.03521e-11 1.49248e-10) (-5.77363e-11 2.87489e-11 2.13989e-10) (-7.36596e-11 1.82364e-11 1.0686e-10) (-3.68904e-11 3.53145e-12 8.93243e-12) (-4.93855e-12 -4.5418e-13 -1.36662e-11) (6.20184e-11 -6.33757e-13 -6.7623e-11) (2.44045e-10 1.46186e-11 -1.17632e-10) (4.05567e-10 3.51006e-11 -1.32597e-10) (5.32405e-10 4.17013e-11 -1.79686e-10) (5.72041e-10 2.63964e-11 -2.21586e-10) (3.63006e-10 1.03566e-11 -1.61129e-10) (1.01846e-10 2.87477e-12 -5.49733e-11) (7.02318e-12 2.56118e-13 -6.32432e-12) (3.59708e-14 8.52039e-14 -3.06001e-13) (1.37968e-12 6.65661e-13 1.79731e-13) (5.11129e-11 1.45137e-11 1.47996e-11) (1.79565e-10 2.8448e-11 6.47929e-11) (1.95551e-10 -5.19782e-12 1.1789e-10) (8.74995e-11 -3.34388e-11 1.29178e-10) (-3.13688e-13 -2.29405e-11 7.3949e-11) (-7.19689e-12 -1.21685e-12 3.04185e-12) (-2.30661e-11 2.37964e-11 -9.18209e-11) (6.1422e-11 1.07639e-10 -4.03178e-10) (6.33845e-11 3.90588e-11 -1.67894e-10) (-2.31306e-12 -1.28542e-12 -1.25553e-12) (-2.79605e-10 -6.79565e-11 9.52409e-11) (-9.60011e-10 -1.28869e-10 2.33698e-10) (-8.17257e-10 -3.95098e-11 9.84052e-11) (-3.41847e-10 1.22032e-11 8.98621e-13) (-1.25612e-10 3.25085e-12 1.99646e-11) (-9.6412e-11 -2.49851e-11 9.01762e-11) (-2.44757e-12 -2.69144e-11 7.74131e-11) (8.05832e-13 -3.22491e-12 8.37719e-12) (1.66371e-11 2.96916e-12 -1.70786e-11) (2.06231e-10 4.15132e-11 -2.14849e-10) (2.94305e-10 3.80942e-11 -2.39779e-10) (8.81756e-11 1.87425e-12 -4.73384e-11) (2.10919e-12 -1.03801e-12 7.21527e-13) (-4.72165e-12 -5.76039e-12 1.57773e-11) (-1.05108e-12 -6.12755e-12 5.40694e-11) (2.02325e-11 4.45541e-12 9.35355e-11) (1.5095e-11 9.74664e-12 5.89663e-11) (3.20169e-12 2.25567e-12 5.42984e-12) (2.26398e-11 2.77827e-12 -1.25726e-11) (2.45241e-10 2.36621e-12 -1.35628e-10) (6.1603e-10 1.20693e-11 -2.31091e-10) (7.7838e-10 3.76088e-11 -1.85866e-10) (7.99054e-10 4.53485e-11 -1.50196e-10) (7.96598e-10 3.84136e-11 -1.66245e-10) (7.27768e-10 1.69298e-11 -1.78476e-10) (5.17511e-10 1.00849e-11 -1.33013e-10) (2.4895e-10 7.23748e-12 -6.24769e-11) (8.42571e-11 4.20211e-12 -2.07965e-11) (4.4365e-11 4.50915e-12 -8.35184e-12) (9.53137e-11 1.28322e-11 1.32211e-12) (3.02174e-10 4.1525e-11 5.81798e-11) (5.37728e-10 4.09478e-11 1.80097e-10) (4.95693e-10 -1.87986e-11 2.54971e-10) (2.33213e-10 -4.1619e-11 1.8286e-10) (5.42534e-11 -1.2667e-11 4.14879e-11) (3.15244e-11 1.74581e-12 -1.44812e-11) (2.39102e-10 5.57051e-11 -2.57806e-10) (5.31258e-10 1.10251e-10 -4.38365e-10) (2.46626e-10 3.09352e-11 -9.58324e-11) (7.61379e-12 -1.85788e-12 5.44363e-12) (-7.82597e-11 -2.0557e-11 4.91787e-11) (-2.40985e-10 -3.19051e-11 6.92645e-11) (-1.35238e-10 -8.19909e-12 1.94182e-11) (-2.55544e-11 3.90228e-13 4.0924e-12) (-4.3334e-12 -1.16216e-12 7.11445e-12) (-2.13133e-12 -1.54911e-11 5.07059e-11) (7.65124e-11 -2.09432e-11 6.02026e-11) (1.2436e-10 -8.76029e-12 -2.68401e-12) (5.66946e-10 2.20174e-11 -2.46904e-10) (1.18584e-09 6.49923e-11 -5.27676e-10) (9.60237e-10 3.82005e-11 -3.02405e-10) (2.91918e-10 -4.56746e-13 -2.26902e-11) (4.03979e-11 -4.74582e-12 2.20442e-11) (2.64187e-11 -8.87923e-12 4.69922e-11) (6.65028e-11 -8.69729e-12 9.30551e-11) (1.21671e-10 2.56869e-12 1.12464e-10) (1.56302e-10 1.22527e-11 7.51668e-11) (3.03125e-10 1.90947e-11 6.42708e-12) (9.10301e-10 1.93241e-11 -1.85152e-10) (1.94426e-09 1.65252e-11 -4.22879e-10) (2.74671e-09 4.82382e-11 -4.36285e-10) (3.10766e-09 8.87561e-11 -3.34505e-10) (3.27507e-09 8.92814e-11 -3.20064e-10) (3.32116e-09 7.85637e-11 -3.81135e-10) (3.15611e-09 3.47743e-11 -4.16103e-10) (2.66436e-09 2.82005e-11 -3.46601e-10) (1.91233e-09 2.9445e-11 -2.34896e-10) (1.31538e-09 3.2116e-11 -1.56771e-10) (1.19102e-09 4.58716e-11 -1.11271e-10) (1.678e-09 8.47486e-11 -1.20943e-11) (2.71663e-09 1.50541e-10 2.68227e-10) (3.4991e-09 1.08048e-10 6.59363e-10) (3.12634e-09 -3.94492e-11 8.23835e-10) (2.05029e-09 -9.52685e-11 5.77257e-10) (1.39276e-09 -4.00923e-11 1.55344e-10) (1.70716e-09 5.15018e-11 -3.26871e-10) (3.02137e-09 1.91746e-10 -9.92624e-10) (3.6974e-09 2.4534e-10 -9.00769e-10) (2.16413e-09 1.00268e-10 -8.80021e-11) (4.52491e-10 -6.82575e-12 1.0888e-10) (2.4728e-11 -4.65421e-12 2.09743e-11) (-6.68528e-13 -1.37605e-12 4.8498e-12) (1.45585e-12 -5.54616e-13 2.01656e-12) (1.14317e-11 -1.2061e-12 7.96578e-12) (4.77961e-11 -8.32505e-12 4.18026e-11) (8.14055e-11 -2.42221e-11 8.75479e-11) (5.72941e-11 -5.48746e-12 6.20644e-12) (3.54668e-10 -1.67449e-12 -1.28106e-10) (1.04696e-09 1.73326e-11 -4.56534e-10) (1.12534e-09 1.81883e-11 -4.24228e-10) (4.17674e-10 7.03238e-12 -1.04711e-10) (4.03919e-11 1.71641e-13 5.64864e-12) (3.92353e-12 -8.36869e-13 1.95348e-11) (1.23457e-11 -3.41707e-12 3.40425e-11) (4.1178e-11 -3.25675e-12 3.94077e-11) (1.08104e-10 1.71329e-14 4.41512e-11) (3.37719e-10 8.35252e-12 2.97111e-11) (1.02878e-09 1.84969e-11 -8.1721e-11) (2.33385e-09 1.9786e-11 -2.97154e-10) (3.83752e-09 2.91394e-11 -4.17059e-10) (4.96516e-09 5.88272e-11 -3.67508e-10) (5.48349e-09 7.37743e-11 -3.34407e-10) (5.5519e-09 5.09868e-11 -4.52221e-10) (5.18042e-09 3.09611e-11 -5.93082e-10) (4.4616e-09 -2.85288e-12 -6.31026e-10) (3.5035e-09 -4.1625e-12 -5.44744e-10) (2.57013e-09 7.65718e-12 -4.30622e-10) (2.12833e-09 2.25498e-11 -3.45485e-10) (2.47868e-09 4.62198e-11 -2.52724e-10) (3.90934e-09 9.08433e-11 2.89672e-11) (6.16419e-09 1.4975e-10 6.57609e-10) (7.30037e-09 7.09034e-11 1.32138e-09) (5.80507e-09 -6.13648e-11 1.33038e-09) (3.52975e-09 -7.86698e-11 6.80211e-10) (2.67449e-09 -2.0219e-11 1.85365e-11) (3.5431e-09 6.11506e-11 -6.62118e-10) (5.27865e-09 1.44026e-10 -1.20373e-09) (5.02114e-09 1.43771e-10 -7.05224e-10) (2.25653e-09 5.16985e-11 4.96685e-11) (3.87901e-10 -4.50016e-13 9.59449e-11) (3.52971e-11 -1.96476e-12 2.61526e-11) (1.42593e-13 -1.90825e-12 1.58992e-11) (3.35481e-12 -1.95836e-12 1.51253e-11) (1.27305e-11 -2.65456e-12 2.10947e-11) (2.26536e-11 -4.98887e-12 3.13581e-11) (2.75921e-11 -5.81618e-12 2.50326e-11) (1.48502e-11 -2.09214e-13 -1.8006e-12) (5.86459e-11 -2.46244e-13 -1.70612e-11) (7.53793e-11 -6.49604e-13 -3.04632e-11) (2.89217e-11 -4.89685e-13 -1.64233e-11) (1.42551e-12 4.21511e-14 -1.43907e-12) (-6.53005e-13 3.16819e-14 1.73002e-13) (-3.01368e-13 2.73944e-14 6.92589e-13) (5.40495e-13 -4.46317e-14 5.70884e-13) (3.20346e-12 -1.3701e-13 6.92868e-13) (1.43944e-11 -1.09413e-13 7.2686e-13) (5.41854e-11 4.84587e-13 5.06162e-13) (1.48047e-10 1.28862e-12 -1.83141e-12) (2.89405e-10 2.62999e-12 -4.24812e-12) (4.29406e-10 3.62362e-12 9.75082e-13) (5.02644e-10 3.50477e-12 6.95914e-12) (4.80747e-10 1.35975e-12 -5.05801e-12) (4.11994e-10 -9.76245e-13 -3.39065e-11) (3.26608e-10 -1.66215e-12 -5.38122e-11) (2.51472e-10 -2.0445e-12 -6.02617e-11) (1.90511e-10 -1.31906e-12 -5.6006e-11) (1.53461e-10 -2.51997e-13 -4.93092e-11) (1.62726e-10 6.78304e-13 -4.31102e-11) (2.42667e-10 1.81992e-12 -3.04548e-11) (4.28437e-10 3.48465e-12 1.46955e-11) (6.75567e-10 6.40611e-12 1.07689e-10) (7.06683e-10 4.31142e-13 1.85193e-10) (4.41242e-10 -3.54475e-12 1.4363e-10) (2.0365e-10 -2.64837e-12 5.35959e-11) (1.39669e-10 -9.99268e-13 1.16481e-12) (1.89464e-10 2.46561e-13 -4.45786e-11) (2.52172e-10 1.37784e-12 -7.94262e-11) (1.81351e-10 1.89646e-12 -4.39378e-11) (6.21656e-11 1.04893e-12 -7.44426e-13) (1.36267e-11 1.60604e-13 5.14122e-12) (3.39733e-12 -1.07197e-14 3.74146e-12) (2.92819e-13 -1.79288e-13 3.13235e-12) (-1.55962e-12 -2.55469e-13 3.24854e-12) (-1.60628e-12 -1.85223e-13 2.38822e-12) (-1.63869e-13 -5.58049e-14 8.24464e-13) (1.08968e-12 -5.15625e-14 4.64314e-13) (-2.91645e-12 8.42451e-11 -4.15058e-10) (6.81304e-11 1.75784e-10 -1.2464e-09) (1.16262e-10 3.20951e-10 -1.33804e-09) (1.64585e-11 2.19108e-10 -4.752e-10) (-5.7743e-12 1.49035e-11 -1.06871e-11) (-4.53267e-11 -1.00893e-10 1.78651e-10) (-2.58352e-10 -1.62475e-09 1.45416e-09) (-8.1337e-10 -3.98016e-09 2.16614e-09) (-1.00888e-09 -2.7846e-09 6.1384e-10) (-3.76006e-10 -5.60151e-10 -2.99272e-10) (-1.65786e-10 7.55645e-11 -5.88406e-10) (-3.98993e-11 5.4526e-10 -7.13439e-10) (4.7924e-12 3.15923e-10 -1.58214e-10) (-6.26502e-12 7.54907e-11 5.12199e-11) (-5.89168e-11 2.69364e-11 2.50711e-10) (-1.61878e-10 -3.91898e-11 3.62468e-10) (-1.55164e-10 -3.69635e-12 2.0737e-10) (-6.97769e-11 3.92199e-11 7.91911e-11) (-1.56045e-11 5.65094e-11 5.37955e-11) (2.54911e-11 6.42124e-11 6.66744e-11) (4.31797e-11 4.22197e-11 5.96742e-11) (2.45054e-11 1.51134e-11 2.14495e-11) (8.15846e-12 5.88816e-12 -4.74384e-13) (1.13152e-11 1.54248e-11 -2.4956e-11) (1.28458e-11 2.92693e-11 -9.20476e-11) (-1.33484e-12 -2.76525e-13 -1.25117e-10) (-2.95835e-11 -5.62496e-11 -1.03994e-10) (-9.92708e-11 -1.32605e-10 -7.54183e-11) (-2.58128e-10 -2.18403e-10 1.11863e-11) (-4.67953e-10 -2.3029e-10 1.92984e-10) (-4.88596e-10 -1.23854e-10 3.08918e-10) (-2.33414e-10 -2.4847e-11 1.79833e-10) (-2.29177e-11 -5.59721e-13 2.33944e-11) (7.1279e-12 8.65875e-13 2.09605e-12) (1.75639e-10 2.29124e-11 9.9735e-12) (5.60271e-10 1.22401e-10 8.9303e-11) (7.0808e-10 2.67697e-10 2.1709e-10) (3.98291e-10 2.64064e-10 1.88895e-10) (7.65991e-11 1.00726e-10 3.66644e-11) (6.26012e-12 3.57527e-11 -3.52908e-11) (3.55348e-10 1.76535e-10 -8.78137e-10) (5.30352e-10 2.88035e-10 -1.76564e-09) (4.98192e-10 5.42697e-10 -1.65114e-09) (2.60889e-10 4.03504e-10 -5.96424e-10) (6.8894e-11 7.46668e-11 -2.2635e-11) (9.44604e-11 -5.75819e-11 1.77109e-10) (-1.95454e-11 -1.09097e-09 1.13561e-09) (-1.57535e-09 -3.32841e-09 2.10025e-09) (-3.17897e-09 -3.63672e-09 1.0544e-09) (-1.89906e-09 -1.3352e-09 -5.35804e-10) (-5.76269e-10 -3.67685e-11 -8.70884e-10) (-5.1603e-13 6.70569e-10 -1.21178e-09) (3.76135e-10 9.10129e-10 -8.10136e-10) (2.39073e-10 3.77412e-10 -1.0189e-10) (1.02562e-10 7.13838e-11 1.1075e-10) (9.32944e-11 -9.77335e-11 4.01999e-10) (-6.21668e-11 -2.54305e-10 5.96793e-10) (-1.94469e-10 -1.20173e-10 3.82282e-10) (-1.98431e-10 2.85788e-11 1.84812e-10) (-1.36959e-10 8.63136e-11 8.67627e-11) (-3.9917e-11 5.90513e-11 3.06118e-11) (4.12364e-12 3.79437e-11 1.08327e-11) (4.18768e-11 5.89588e-11 1.98128e-13) (8.34281e-11 8.37947e-11 -2.81952e-11) (6.56038e-11 5.44892e-11 -5.20722e-11) (1.77984e-11 5.57321e-12 -4.59414e-11) (-3.5254e-11 -4.44138e-11 -7.15582e-11) (-2.64285e-10 -2.01023e-10 -1.13246e-10) (-6.62956e-10 -3.93136e-10 1.19559e-11) (-8.17735e-10 -4.32399e-10 2.32815e-10) (-5.91711e-10 -3.31956e-10 2.47953e-10) (-2.75314e-10 -2.01917e-10 1.12928e-10) (-7.53533e-11 -9.54417e-11 3.11549e-11) (-1.36491e-12 -3.39036e-11 1.59241e-11) (4.62331e-11 -2.03519e-11 4.67728e-11) (2.07973e-10 6.00818e-11 1.86785e-10) (3.98941e-10 2.87726e-10 3.37158e-10) (4.14948e-10 4.39758e-10 2.52386e-10) (2.80845e-10 3.2973e-10 5.80783e-13) (2.21937e-10 2.02936e-10 -2.4319e-10) (4.93272e-10 4.02176e-10 -9.5883e-10) (8.67974e-10 3.69481e-10 -1.88845e-09) (9.40156e-10 3.76945e-10 -1.83725e-09) (5.42842e-10 2.44184e-10 -7.42386e-10) (1.25714e-10 3.83691e-11 -5.31902e-11) (4.68194e-11 -4.46606e-11 9.32576e-11) (-2.59119e-10 -5.87169e-10 6.68599e-10) (-1.68729e-09 -1.76204e-09 1.14266e-09) (-3.45063e-09 -2.24388e-09 3.41722e-10) (-3.19891e-09 -1.23224e-09 -8.95975e-10) (-1.20167e-09 -1.30355e-10 -9.92634e-10) (-1.09744e-10 1.99372e-10 -6.73161e-10) (4.88411e-10 4.19509e-10 -6.85798e-10) (9.1295e-10 4.8927e-10 -4.42025e-10) (7.11879e-10 2.68473e-10 8.7856e-13) (3.28279e-10 6.74705e-11 2.44205e-10) (7.70176e-11 -1.33789e-11 5.06793e-10) (-3.66536e-10 -1.97745e-11 8.66424e-10) (-6.79052e-10 8.69699e-11 7.58556e-10) (-3.6943e-10 1.16248e-10 2.77906e-10) (-4.93118e-11 4.00862e-11 3.07225e-11) (6.80514e-12 1.95474e-11 -5.53167e-13) (7.82544e-11 6.64814e-11 -1.97439e-11) (1.62887e-10 1.20483e-10 -3.65802e-11) (1.40507e-10 1.07253e-10 -3.27407e-11) (4.35577e-11 3.63336e-11 -1.77245e-11) (4.02009e-13 1.19308e-12 -3.15038e-12) (-4.99197e-11 -3.27374e-11 -1.80275e-11) (-3.49095e-10 -2.75328e-10 -1.52248e-11) (-7.34623e-10 -6.60415e-10 1.187e-10) (-7.36752e-10 -7.69747e-10 2.87692e-10) (-4.37084e-10 -5.80324e-10 3.0532e-10) (-1.78101e-10 -3.43813e-10 2.16376e-10) (-3.94338e-11 -1.59728e-10 1.2044e-10) (5.06691e-12 -4.10328e-11 5.68347e-11) (1.29349e-11 1.25117e-11 5.32559e-11) (2.99244e-11 1.55102e-10 1.45307e-10) (6.01519e-11 4.22486e-10 2.11203e-10) (1.19137e-10 4.81364e-10 4.27244e-11) (2.12919e-10 3.98437e-10 -2.6287e-10) (2.96511e-10 2.43371e-10 -3.58975e-10) (7.7195e-10 3.57024e-10 -1.05061e-09) (9.24301e-10 3.81459e-10 -1.1076e-09) (5.81964e-10 2.29113e-10 -4.17362e-10) (2.5225e-10 6.53304e-11 1.90416e-12) (1.3256e-10 -2.60903e-11 1.36521e-10) (-1.98779e-11 -1.16582e-10 1.60004e-10) (-6.79426e-10 -3.98853e-10 1.61872e-10) (-3.319e-09 -8.78381e-10 -3.16988e-10) (-3.97978e-09 -6.4245e-10 -7.60648e-10) (-1.07176e-09 -1.80891e-10 -3.56853e-10) (-2.33896e-11 -1.24273e-11 -5.16734e-11) (1.86451e-10 2.2727e-11 -1.20798e-10) (6.62869e-10 1.8959e-10 -1.79717e-10) (7.58586e-10 3.06802e-10 -1.8038e-11) (4.16818e-10 2.24097e-10 1.49438e-10) (1.20533e-10 9.96095e-11 1.80191e-10) (-8.76515e-12 3.92819e-11 1.93253e-10) (-5.66853e-11 -5.19971e-12 1.69589e-10) (-2.51745e-11 -1.92237e-11 7.9592e-11) (-1.11303e-12 -7.6764e-12 1.96032e-11) (6.9532e-13 -1.80698e-13 1.85274e-12) (1.7458e-12 4.48245e-12 7.51246e-14) (1.64141e-11 4.69112e-11 -9.28453e-12) (7.14171e-11 1.39264e-10 -3.22052e-11) (1.35865e-10 1.86422e-10 -5.51781e-11) (1.01264e-10 1.00095e-10 -5.09531e-11) (1.63432e-11 6.6924e-12 -1.49076e-11) (-8.7e-12 -2.70419e-11 -8.50529e-12) (-1.83678e-10 -3.13568e-10 6.48871e-11) (-5.23292e-10 -9.02715e-10 4.45686e-10) (-6.43678e-10 -1.21254e-09 8.5464e-10) (-5.61163e-10 -9.55752e-10 8.07082e-10) (-3.73161e-10 -4.70039e-10 3.78741e-10) (-1.91746e-10 -1.22618e-10 5.8361e-11) (-1.89249e-10 9.85613e-12 -4.40795e-11) (-3.00922e-10 1.80531e-10 -9.32457e-11) (-2.69261e-10 3.07725e-10 -2.24369e-11) (-9.07836e-11 2.59807e-10 1.49359e-11) (5.03121e-11 1.75601e-10 -5.33915e-11) (4.56727e-11 7.36096e-11 -1.47262e-10) (1.63835e-10 6.53064e-11 -1.45842e-10) (1.68619e-10 3.26079e-11 -2.9712e-11) (1.44904e-10 6.09279e-12 8.62546e-11) (1.09615e-10 -1.28273e-11 1.83326e-10) (1.27814e-11 -2.73135e-12 8.79434e-11) (-2.91224e-11 1.04848e-11 9.86222e-12) (-3.30776e-10 1.09359e-10 -1.12923e-10) (-5.6626e-10 1.33856e-10 -1.63473e-10) (-2.0128e-10 9.23217e-12 2.02765e-11) (-3.9119e-11 -2.88582e-11 7.70241e-11) (2.40553e-11 -5.25125e-11 1.21216e-10) (3.4463e-11 -2.91009e-11 4.76419e-11) (2.03547e-11 -7.066e-12 1.21175e-12) (5.42693e-11 5.06991e-12 -3.30816e-11) (1.2598e-10 4.4198e-11 -6.86167e-11) (1.73671e-10 7.20016e-11 -3.26343e-11) (1.89237e-10 6.51949e-11 3.53427e-11) (1.27306e-10 2.42692e-11 4.59069e-11) (2.44814e-11 -3.21612e-12 7.51573e-12) (-3.19297e-13 -5.01608e-12 -2.24113e-12) (-2.34272e-11 -2.47547e-11 -2.82741e-11) (-1.74086e-11 -1.34421e-11 -4.93696e-11) (2.2807e-11 2.51939e-11 -6.48437e-11) (1.58907e-10 1.66346e-10 -1.12078e-10) (3.66213e-10 3.7061e-10 -9.13489e-11) (3.41891e-10 3.1367e-10 -2.68046e-11) (1.07938e-10 7.41398e-11 -1.58615e-13) (9.4817e-12 -4.35758e-12 4.07582e-12) (5.15753e-12 -1.49082e-10 8.28997e-11) (-8.40336e-11 -7.02153e-10 4.80117e-10) (-4.48421e-10 -1.26855e-09 1.1266e-09) (-9.89817e-10 -1.26053e-09 1.45457e-09) (-9.53121e-10 -6.43924e-10 8.60482e-10) (-5.22718e-10 -1.27584e-10 1.30783e-10) (-6.16826e-10 1.21706e-10 -2.99647e-10) (-1.1332e-09 5.57804e-10 -1.00323e-09) (-1.13464e-09 6.71833e-10 -1.04285e-09) (-5.40519e-10 3.69899e-10 -5.05707e-10) (-1.0397e-10 1.30971e-10 -1.94742e-10) (-1.08329e-10 1.97639e-10 -2.78892e-10) (-3.28369e-12 3.82015e-11 -1.58954e-11) (9.96167e-13 1.96072e-11 8.38205e-11) (-6.13501e-11 -7.09356e-11 4.82425e-10) (-8.42463e-11 -6.67255e-11 3.74105e-10) (-1.74437e-11 1.38586e-11 3.89519e-11) (-2.79938e-11 6.89614e-11 -1.68209e-11) (-4.90942e-11 1.148e-10 -4.40352e-11) (-7.19197e-12 2.46225e-11 9.76096e-12) (4.54641e-11 -3.16846e-12 1.43914e-10) (2.27447e-10 -1.96239e-10 5.06645e-10) (2.07151e-10 -3.24876e-10 5.30437e-10) (2.92151e-11 -1.70255e-10 2.38539e-10) (-1.78475e-11 -2.33629e-11 3.9161e-11) (-7.47646e-12 5.62655e-12 -2.17756e-12) (4.3996e-12 8.50707e-11 -9.69924e-11) (1.64304e-10 2.41088e-10 -3.84535e-10) (2.61666e-10 1.90897e-10 -4.91977e-10) (8.64165e-11 -8.03294e-12 -2.60812e-10) (-5.64986e-11 -1.48689e-10 -1.80701e-10) (-2.4956e-10 -4.06895e-10 -2.37295e-10) (-1.4411e-10 -2.77281e-10 -1.78914e-10) (1.83452e-11 -2.8607e-11 -7.53634e-11) (2.62392e-10 1.79424e-10 -1.73445e-10) (8.51946e-10 7.99814e-10 -1.83321e-10) (9.73364e-10 1.02351e-09 4.25809e-11) (4.95901e-10 5.30872e-10 1.36654e-10) (1.11929e-10 7.67907e-11 7.84426e-11) (6.18267e-11 -9.0987e-11 1.30396e-10) (-3.35589e-14 -8.20151e-10 5.97805e-10) (-6.644e-10 -1.77721e-09 1.18235e-09) (-1.62783e-09 -1.61104e-09 1.3499e-09) (-1.67431e-09 -7.47488e-10 1.05496e-09) (-6.09262e-10 -1.10498e-10 3.44874e-10) (-3.73277e-11 7.08398e-12 2.26457e-12) (-3.9716e-12 5.44383e-11 -1.44433e-10) (-7.357e-12 1.58355e-10 -6.51101e-10) (-1.71396e-10 1.54234e-10 -8.6477e-10) (-3.09547e-10 1.98689e-10 -7.94776e-10) (-2.93748e-10 2.77164e-10 -6.29349e-10) (3.71333e-10 6.63613e-10 -9.65178e-10) (4.68507e-10 3.66432e-10 -8.81817e-11) (5.88806e-10 2.13255e-10 6.10218e-10) (3.62902e-10 -1.51773e-10 1.2819e-09) (-9.23391e-11 -2.20253e-10 7.84874e-10) (-9.53813e-11 -7.1843e-12 1.34187e-10) (-5.56643e-11 5.84949e-11 2.16418e-11) (-1.93506e-11 8.45407e-11 3.22194e-11) (5.10311e-11 7.40181e-11 1.37785e-10) (1.89176e-10 -4.96574e-11 3.78194e-10) (2.42938e-10 -2.87028e-10 4.92973e-10) (1.36362e-10 -3.62615e-10 3.82394e-10) (7.3208e-12 -1.65522e-10 1.62975e-10) (-1.1706e-11 -9.96399e-12 1.56035e-11) (-5.44819e-11 5.0672e-11 -4.29761e-11) (-3.19367e-10 4.17417e-10 -6.54568e-10) (-6.58686e-10 5.77783e-10 -1.70784e-09) (-7.98831e-10 3.90009e-11 -1.61329e-09) (-5.84351e-10 -3.29076e-10 -6.94054e-10) (-2.03297e-10 -2.35957e-10 -7.89126e-11) (-1.86482e-11 -1.09815e-10 6.46042e-11) (7.5916e-11 -5.12578e-11 7.39385e-11) (2.2725e-10 2.66831e-11 5.16305e-12) (7.03934e-10 3.60217e-10 -3.06889e-10) (1.13441e-09 9.51827e-10 -6.56119e-10) (8.47805e-10 9.63981e-10 -3.77205e-10) (2.73695e-10 3.1e-10 2.18012e-11) (8.55135e-11 -8.46528e-12 1.31804e-10) (-4.02764e-12 -6.64131e-10 7.03123e-10) (-1.07487e-09 -1.79675e-09 1.26154e-09) (-3.04484e-09 -1.80059e-09 1.07381e-09) (-3.81319e-09 -7.35147e-10 8.0124e-10) (-1.64089e-09 -9.48117e-11 5.10302e-10) (-9.03332e-11 -2.85116e-11 6.71093e-11) (7.0366e-11 -2.36291e-11 -4.37061e-12) (4.60405e-10 4.16415e-11 -2.59135e-10) (3.10308e-10 1.77759e-10 -5.31565e-10) (-1.16139e-10 2.3647e-10 -8.73353e-10) (-5.16874e-10 4.2489e-10 -1.58434e-09) (-1.90488e-10 7.13229e-10 -1.7906e-09) (7.4408e-10 5.17586e-10 -7.19745e-10) (2.39121e-09 8.19382e-10 3.75693e-10) (3.31843e-09 7.2559e-10 2.29518e-09) (1.56436e-09 4.24548e-11 2.23577e-09) (1.73799e-10 -1.21669e-10 8.09919e-10) (-4.12691e-11 -1.07014e-11 1.30262e-10) (-2.31447e-11 2.25792e-11 3.33246e-11) (-1.81527e-12 5.00386e-11 7.13521e-11) (6.18899e-11 4.26046e-11 2.16151e-10) (1.11826e-10 -8.40264e-11 3.07859e-10) (9.40021e-11 -2.15743e-10 2.37816e-10) (6.14893e-11 -2.60103e-10 1.19655e-10) (1.66488e-11 -1.03682e-10 5.41529e-12) (-1.06423e-11 -5.13045e-12 -3.61143e-11) (-3.63937e-10 3.44915e-10 -6.26451e-10) (-1.79514e-09 1.18717e-09 -2.24434e-09) (-2.92329e-09 7.4713e-10 -2.76219e-09) (-1.85306e-09 -3.00643e-10 -1.28414e-09) (-2.9531e-10 -2.87623e-10 -1.17328e-10) (1.04506e-10 -2.28744e-10 1.39374e-10) (5.99782e-10 -2.60785e-10 5.21686e-10) (5.42804e-10 9.82754e-12 3.78118e-10) (2.78759e-10 1.26734e-10 4.71913e-11) (3.58237e-10 3.17129e-10 -2.19096e-10) (5.12025e-10 5.56479e-10 -4.77804e-10) (3.87974e-10 3.78422e-10 -2.34935e-10) (1.21811e-10 5.15248e-11 2.62769e-11) (4.49895e-11 -1.51817e-10 2.17529e-10) (-8.24006e-10 -8.2781e-10 7.02211e-10) (-4.09893e-09 -1.23763e-09 6.15102e-10) (-5.87335e-09 -3.16535e-10 4.81397e-11) (-2.33584e-09 -1.10417e-10 4.30511e-10) (-3.43683e-10 -2.61158e-10 3.43855e-10) (1.81637e-10 -4.8636e-10 2.56919e-10) (8.13538e-10 -5.47654e-10 -1.42268e-11) (1.03818e-09 3.45212e-11 -3.06747e-10) (5.3759e-10 4.91999e-10 -4.68542e-10) (-1.89474e-10 7.6404e-10 -1.09477e-09) (-1.19274e-09 1.09252e-09 -2.71758e-09) (-2.90305e-10 7.87195e-10 -2.12023e-09) (9.90434e-10 1.33909e-10 -1.87928e-10) (3.18201e-09 4.33715e-10 1.16922e-09) (3.35479e-09 5.50828e-10 2.59845e-09) (1.0897e-09 1.67941e-10 1.56496e-09) (4.80397e-11 -3.01498e-12 3.4529e-10) (-2.82982e-11 -4.48257e-13 5.38267e-11) (-7.05895e-12 6.57043e-12 1.7292e-11) (2.06008e-11 2.33996e-11 6.71191e-11) (9.00113e-11 1.94679e-11 2.00409e-10) (8.30421e-11 -4.25622e-11 1.61585e-10) (3.86732e-11 -7.31754e-11 3.7786e-11) (7.72648e-12 -1.47177e-10 -6.25977e-11) (-1.55198e-10 -1.8436e-10 -2.69568e-10) (-6.42727e-10 4.07144e-11 -7.31418e-10) (-1.26637e-09 6.83396e-10 -1.33749e-09) (-1.18172e-09 7.4783e-10 -1.16934e-09) (-4.43465e-10 8.87497e-11 -3.37734e-10) (-6.94986e-11 -1.26341e-10 -2.49025e-11) (2.50424e-10 -6.12279e-10 1.94726e-10) (8.91815e-10 -7.46723e-10 5.10044e-10) (1.04439e-09 -2.04109e-10 5.29898e-10) (6.75919e-10 2.16261e-10 3.1322e-10) (2.47553e-10 2.70091e-10 7.76274e-11) (1.00472e-10 2.50137e-10 -3.79589e-11) (8.82176e-11 1.90136e-10 -7.14284e-11) (5.47348e-11 4.53307e-11 -1.88895e-11) (5.50528e-12 -9.6524e-12 8.01819e-12) (-3.95511e-10 -2.77183e-10 1.51743e-10) (-3.5854e-09 -7.86313e-10 -3.31157e-11) (-6.17925e-09 -2.68846e-10 -9.46849e-10) (-2.6116e-09 -1.80691e-10 -7.96296e-11) (-5.57232e-10 -3.53203e-10 4.36901e-10) (-3.88428e-11 -7.23381e-10 6.21454e-10) (3.45692e-10 -6.92e-10 8.14144e-11) (6.46536e-10 -4.36907e-10 -5.37784e-10) (6.32043e-10 2.37329e-10 -6.17739e-10) (3.39659e-10 8.00187e-10 -4.11879e-10) (-1.5552e-10 9.00572e-10 -4.72436e-10) (-2.57585e-10 4.92072e-10 -6.3778e-10) (1.31425e-10 1.32422e-10 -4.02902e-10) (1.14117e-09 -2.08181e-11 2.18272e-10) (1.7161e-09 5.77181e-11 8.73801e-10) (8.88949e-10 1.29019e-10 8.50195e-10) (1.11348e-10 3.78862e-11 3.28105e-10) (-4.56626e-11 -4.96842e-12 1.12319e-10) (-3.43042e-11 -7.95426e-12 3.89749e-11) (-1.93112e-12 2.35947e-13 2.04556e-11) (4.94674e-11 2.09403e-11 8.86886e-11) (1.1814e-10 3.74935e-11 1.49972e-10) (6.86753e-11 1.48219e-12 3.66042e-11) (4.96305e-11 -2.77635e-11 -5.13358e-11) (-8.25999e-11 -1.14876e-10 -3.38573e-10) (-1.27379e-09 -2.14227e-10 -1.00409e-09) (-3.34898e-09 -6.38277e-11 -1.37125e-09) (-1.90514e-09 1.12453e-10 -5.95214e-10) (-1.60768e-10 4.58762e-12 -2.96944e-11) (2.03719e-11 -4.04274e-11 3.57254e-11) (4.96761e-10 -4.78669e-10 3.48004e-10) (1.00986e-09 -7.4682e-10 3.82147e-10) (8.61933e-10 -3.76166e-10 1.52549e-10) (5.18335e-10 -1.71641e-12 6.72222e-11) (3.68128e-10 1.88378e-10 6.02865e-11) (2.61052e-10 2.71354e-10 3.2383e-11) (1.15284e-10 1.84576e-10 -4.41208e-14) (2.18286e-11 4.58114e-11 -3.63126e-13) (-9.49693e-13 1.0207e-12 9.11285e-13) (-1.88076e-10 -4.12985e-11 1.51654e-11) (-2.18459e-09 -1.75935e-10 -3.41483e-10) (-5.05291e-09 6.40549e-11 -1.54114e-09) (-2.65215e-09 -4.08536e-12 -7.64921e-10) (-4.59679e-10 -2.02447e-10 1.67965e-10) (-2.04017e-10 -8.27307e-10 9.5762e-10) (1.27712e-10 -9.10459e-10 7.09126e-10) (1.166e-10 -2.68919e-10 -1.52185e-10) (3.20331e-10 -1.19646e-10 -1.81247e-09) (2.02295e-10 6.71579e-10 -1.63094e-09) (1.17623e-10 7.62555e-10 -3.48193e-10) (1.02364e-10 5.86642e-10 2.62e-11) (8.44055e-11 1.4292e-10 -3.83798e-12) (2.86184e-10 4.77471e-11 -2.2658e-11) (9.11796e-10 -6.70139e-11 3.05188e-10) (4.46341e-10 -1.47737e-11 2.36111e-10) (6.28664e-11 5.16649e-12 1.09908e-10) (-3.80341e-11 -6.33607e-12 9.83541e-11) (-8.50655e-11 -3.11459e-11 1.01764e-10) (-3.79862e-11 -2.60781e-11 6.79055e-11) (8.12342e-12 -4.947e-12 7.09273e-11) (7.45176e-11 3.69284e-11 1.22938e-10) (1.12315e-10 5.80625e-11 6.70936e-11) (1.51268e-10 5.59381e-11 -8.02024e-11) (2.113e-10 7.02995e-11 -5.31878e-10) (-2.50992e-10 4.38713e-11 -7.82723e-10) (-1.49057e-09 -5.14013e-11 -7.28707e-10) (-2.5159e-09 -3.62317e-10 -2.33421e-11) (-8.47035e-10 -3.03738e-10 3.16416e-10) (-2.03122e-11 -1.3627e-10 1.8062e-10) (4.22487e-10 -2.81512e-10 3.38608e-10) (8.56868e-10 -4.4313e-10 2.39158e-10) (6.65525e-10 -3.44853e-10 -1.06969e-10) (2.73727e-10 -1.07223e-10 -1.78369e-10) (7.24926e-11 1.74146e-11 -7.04905e-11) (4.26183e-11 6.08585e-11 -2.75713e-11) (3.94012e-11 9.0417e-11 -6.18937e-12) (5.80553e-12 6.36088e-11 1.07453e-11) (-2.15978e-11 3.73764e-11 2.54018e-11) (-6.7174e-11 3.45198e-11 3.58545e-11) (-3.68235e-10 9.21677e-11 -5.59145e-11) (-1.643e-09 2.62263e-10 -7.6541e-10) (-1.57874e-09 7.50919e-11 -8.86541e-10) (-2.11812e-10 -9.38807e-11 -5.11807e-11) (-1.03866e-11 -5.38551e-10 4.6815e-10) (2.52761e-10 -1.67406e-09 1.70761e-09) (-3.57914e-12 -6.12016e-10 4.88318e-10) (-5.47361e-11 -5.16525e-11 -2.49579e-10) (-5.30641e-10 7.79565e-10 -4.00893e-09) (-4.88408e-10 1.04584e-09 -2.67828e-09) (-2.14324e-11 4.0434e-10 -1.88313e-10) (2.11263e-10 4.76314e-10 2.37986e-10) (4.75906e-10 2.99007e-10 3.293e-10) (7.86126e-10 5.9514e-11 3.01135e-10) (6.16555e-10 -4.97807e-11 1.5458e-10) (1.15083e-10 -8.868e-12 3.30927e-11) (1.87866e-12 -1.50281e-12 8.27966e-12) (-2.96624e-11 -1.86165e-11 4.46832e-11) (-5.1283e-11 -6.18882e-11 1.08169e-10) (-1.62232e-11 -6.68455e-11 1.58003e-10) (3.30455e-11 -9.31912e-12 1.67407e-10) (6.24378e-11 4.90152e-11 9.32063e-11) (1.01397e-10 9.17866e-11 -2.49721e-11) (3.19964e-10 2.979e-10 -5.73506e-10) (2.12959e-10 4.16408e-10 -1.36925e-09) (-2.81165e-10 1.6359e-10 -7.09793e-10) (-4.57193e-10 -4.46568e-11 -1.02239e-10) (-5.72634e-10 -3.35312e-10 3.63563e-10) (-1.97602e-10 -5.11718e-10 6.30332e-10) (2.48868e-10 -4.79759e-10 6.21037e-10) (4.39409e-10 -3.08347e-10 3.75913e-10) (2.5603e-10 -1.20012e-10 3.50917e-11) (1.09278e-10 -4.79538e-11 -1.34279e-10) (1.3445e-11 -3.9199e-12 -3.12043e-10) (-4.61489e-11 4.62914e-11 -1.90875e-10) (-2.21927e-11 4.13415e-11 -4.33812e-11) (-1.91858e-11 4.06983e-11 -8.53029e-12) (-5.7253e-11 7.00991e-11 1.28454e-11) (-1.74022e-10 1.32758e-10 5.32234e-11) (-2.72844e-10 1.86341e-10 2.48484e-11) (-3.95642e-10 2.31733e-10 -1.66229e-10) (-3.43899e-10 1.03784e-10 -2.96852e-10) (-2.60776e-11 -3.02369e-11 -4.50122e-11) (2.23704e-10 -3.71865e-10 1.788e-10) (8.95036e-10 -1.59579e-09 1.45306e-09) (1.54677e-10 -1.63381e-09 1.72176e-09) (-2.56061e-10 -2.97897e-10 2.48023e-10) (-5.06548e-10 2.18843e-10 -8.85692e-10) (-1.40052e-09 2.08506e-09 -6.41354e-09) (-9.95303e-10 1.17895e-09 -3.08289e-09) (-7.6553e-11 1.49353e-10 -5.72584e-11) (1.68111e-10 2.70744e-10 3.57432e-10) (7.423e-10 2.5734e-10 6.60119e-10) (9.77021e-10 2.27249e-11 4.38204e-10) (5.02713e-10 -5.63279e-11 1.04638e-11) (1.1848e-10 -1.85313e-11 -1.88653e-11) (5.01962e-12 -2.67466e-12 1.44532e-12) (-7.22149e-12 -2.13156e-11 4.27432e-11) (-5.375e-11 -9.40456e-11 2.4699e-10) (-5.91864e-11 -8.25694e-11 3.51623e-10) (-1.41754e-12 7.76052e-12 1.25124e-10) (1.79035e-11 2.75695e-11 2.64283e-12) (1.76226e-10 2.56466e-10 -3.40681e-10) (3.56946e-10 6.50464e-10 -1.39416e-09) (6.18703e-11 4.86401e-10 -1.28657e-09) (-6.43592e-11 5.53149e-11 -1.81508e-10) (-3.07315e-11 -2.7077e-11 2.97682e-11) (-2.17957e-11 -4.46395e-10 5.9396e-10) (2.9243e-10 -9.4347e-10 1.20804e-09) (3.52875e-10 -6.99609e-10 9.20837e-10) (9.61002e-11 -1.58738e-10 2.17694e-10) (1.09154e-12 -1.40808e-12 -1.84539e-13) (-2.86618e-11 3.00211e-11 -1.6829e-10) (-1.64497e-10 1.00928e-10 -4.91681e-10) (-1.60013e-10 6.83819e-11 -2.6281e-10) (-8.33977e-11 3.38842e-11 -5.3703e-11) (-1.069e-10 5.0263e-11 -1.21302e-11) (-2.17903e-10 1.23906e-10 3.58527e-14) (-3.81535e-10 2.8756e-10 -2.48595e-11) (-3.88364e-10 3.72324e-10 -1.13036e-10) (-1.24079e-10 1.45435e-10 -1.06932e-10) (9.86266e-12 -2.47536e-12 -1.1145e-11) (6.24679e-10 -4.38323e-10 1.93063e-10) (1.97273e-09 -1.6256e-09 1.33418e-09) (1.05289e-09 -1.6537e-09 1.69596e-09) (-3.96012e-10 -9.55551e-10 1.01302e-09) (-7.27359e-10 -2.50709e-10 6.17973e-11) (-1.21153e-09 7.72306e-10 -2.21479e-09) (-1.44697e-09 3.16177e-09 -7.81986e-09) (-1.01115e-09 1.12527e-09 -2.53081e-09) (-1.2361e-10 8.6562e-11 1.57505e-11) (7.20068e-11 1.33838e-10 5.0213e-10) (5.93476e-10 9.21394e-11 6.37187e-10) (7.90356e-10 -2.37236e-11 2.87956e-10) (4.2221e-10 -7.30819e-11 -5.92195e-11) (1.46619e-10 -3.53114e-11 -3.69357e-11) (1.66456e-11 -6.24334e-12 9.56032e-12) (-5.94823e-12 -2.05383e-11 1.33502e-10) (-1.04201e-10 -5.16068e-11 4.25464e-10) (-8.37517e-11 -2.29186e-11 2.65664e-10) (-2.16286e-12 2.5539e-12 7.67818e-12) (4.49759e-11 6.78765e-11 -1.16709e-10) (2.85927e-10 4.24561e-10 -9.79903e-10) (2.87592e-10 6.16517e-10 -1.50266e-09) (6.09401e-11 2.42921e-10 -5.72883e-10) (2.92007e-12 3.27222e-12 -6.82191e-12) (1.07094e-10 -1.25332e-10 2.29896e-10) (5.63749e-10 -8.45705e-10 1.34612e-09) (5.0013e-10 -1.17157e-09 1.74126e-09) (-1.20852e-10 -5.47571e-10 8.16182e-10) (-2.22946e-10 -1.11437e-10 1.40484e-10) (-2.10424e-10 1.267e-11 -1.08501e-10) (-2.23379e-10 1.37344e-10 -4.5612e-10) (-1.24694e-10 1.57645e-10 -4.58572e-10) (-5.46537e-11 4.92144e-11 -1.19447e-10) (-4.60364e-11 1.48392e-11 -1.78384e-11) (-1.5943e-10 4.21914e-11 -1.95301e-13) (-3.41648e-10 1.38029e-10 -1.24831e-11) (-3.41041e-10 2.61445e-10 -6.29445e-11) (-8.64873e-11 1.58375e-10 -5.35979e-11) (4.47837e-11 3.09459e-11 -1.06333e-11) (8.69497e-10 -2.21639e-10 2.07037e-10) (2.79029e-09 -1.29324e-09 1.21306e-09) (2.15425e-09 -1.49202e-09 1.54587e-09) (2.37287e-10 -7.5767e-10 8.35187e-10) (-8.79875e-10 -6.49251e-10 5.57938e-10) (-1.63652e-09 -2.88771e-10 -5.30643e-10) (-1.7171e-09 1.33633e-09 -4.36795e-09) (-7.64846e-10 3.49641e-09 -7.79343e-09) (-5.22461e-10 7.23637e-10 -1.20589e-09) (-1.96904e-10 6.47389e-11 1.62788e-10) (-2.82699e-11 1.60188e-11 7.87876e-10) (3.67306e-10 -3.44876e-13 4.93207e-10) (5.12979e-10 -4.14195e-11 1.4231e-10) (2.77215e-10 -5.81602e-11 -2.99571e-11) (7.08707e-11 -1.96311e-11 1.99059e-12) (7.98157e-12 -3.36529e-12 3.28954e-11) (-7.11292e-11 3.90405e-12 2.25492e-10) (-1.35014e-10 -1.7841e-12 3.02071e-10) (-2.08704e-11 -1.68431e-12 4.99358e-11) (1.28922e-11 4.19335e-12 -1.45133e-11) (3.03895e-10 1.42226e-10 -5.54375e-10) (5.25564e-10 4.35066e-10 -1.46044e-09) (2.2751e-10 4.02222e-10 -1.10322e-09) (4.01205e-11 8.50107e-11 -1.7369e-10) (2.97637e-11 -2.65773e-12 2.0979e-11) (4.79248e-10 -3.47627e-10 8.26788e-10) (6.65594e-10 -9.93636e-10 2.10646e-09) (-3.20488e-10 -8.41469e-10 1.73742e-09) (-1.14393e-09 -4.43402e-10 8.23818e-10) (-1.33905e-09 -1.55884e-10 -8.00182e-11) (-8.2377e-10 3.30611e-11 -6.92896e-10) (-2.85109e-10 1.28693e-10 -7.68781e-10) (-1.79832e-11 1.00236e-10 -3.39957e-10) (1.18187e-12 2.10023e-11 -4.04774e-11) (-5.71456e-12 4.87257e-12 -1.2832e-12) (-6.85637e-11 3.12431e-11 1.39141e-11) (-1.4363e-10 6.97384e-11 2.09364e-11) (-4.50729e-11 5.33907e-11 6.88137e-12) (4.09816e-11 3.61733e-11 1.01949e-11) (7.25452e-10 1.83443e-11 1.65202e-10) (2.2251e-09 -4.47333e-10 7.08606e-10) (2.18585e-09 -8.28775e-10 1.02601e-09) (6.5983e-10 -5.16716e-10 6.18774e-10) (-1.17856e-10 -2.67662e-10 3.08641e-10) (-1.46738e-09 -5.38529e-10 1.93856e-10) (-3.27733e-09 -2.99914e-10 -2.12217e-09) (-2.51483e-09 1.88934e-09 -7.75612e-09) (-1.15865e-10 2.85863e-09 -6.17066e-09) (-7.64372e-11 2.23868e-10 -2.11962e-10) (-2.03319e-10 2.13307e-11 5.0718e-10) (-1.56914e-11 -1.02565e-10 1.12989e-09) (2.52164e-10 -2.76869e-11 3.95463e-10) (3.21089e-10 -3.94409e-11 8.53253e-11) (1.02917e-10 -2.3223e-11 4.048e-12) (3.0896e-12 -2.94404e-12 6.61649e-12) (-9.01962e-11 2.45136e-12 1.16208e-10) (-2.86917e-10 2.45584e-11 3.10603e-10) (-1.29353e-10 2.73461e-12 1.37476e-10) (2.23531e-13 -1.42663e-13 -1.36925e-13) (2.77397e-10 1.28438e-11 -2.99445e-10) (1.05607e-09 2.17751e-10 -1.42713e-09) (7.38873e-10 3.81324e-10 -1.55464e-09) (1.42386e-10 2.12163e-10 -5.75996e-10) (1.36563e-11 1.53236e-11 -2.12295e-11) (1.30234e-10 -4.06846e-11 2.00088e-10) (4.83866e-10 -4.82263e-10 1.6554e-09) (-3.26085e-10 -7.06431e-10 2.49297e-09) (-1.66641e-09 -5.16175e-10 1.79094e-09) (-2.24222e-09 -2.95717e-10 4.70361e-10) (-1.38895e-09 -1.66721e-10 -5.93732e-10) (-5.38252e-10 -9.76393e-11 -9.71896e-10) (-8.00627e-11 1.26128e-11 -9.33181e-10) (3.82026e-11 7.60447e-11 -3.91616e-10) (9.01974e-12 2.77101e-11 -4.71818e-11) (-2.14851e-12 7.83678e-12 5.83114e-13) (-1.92439e-11 2.2508e-11 2.38232e-11) (-1.41744e-11 2.11441e-11 3.66472e-11) (3.75221e-11 2.50331e-11 4.98697e-11) (3.97835e-10 4.61118e-11 1.58776e-10) (1.20201e-09 -4.27631e-11 3.26534e-10) (1.29402e-09 -2.21395e-10 4.19132e-10) (5.76048e-10 -2.33954e-10 3.28827e-10) (7.88774e-11 -1.17396e-10 1.66373e-10) (-1.95916e-10 -1.12956e-10 1.45572e-10) (-1.99997e-09 -3.29146e-10 -3.11009e-10) (-5.88131e-09 -2.82936e-11 -4.98294e-09) (-3.75165e-09 1.96042e-09 -9.82622e-09) (-6.20397e-12 1.3844e-09 -2.94726e-09) (1.69351e-11 4.23907e-11 1.38384e-11) (5.26924e-11 -7.21334e-11 1.04434e-09) (1.93854e-10 -1.32227e-10 1.11774e-09) (2.23457e-10 -2.6464e-11 3.00857e-10) (2.15556e-10 -2.4032e-11 5.90315e-11) (-8.64825e-13 -9.86622e-13 1.41441e-12) (-1.48208e-10 -1.00413e-11 9.60851e-11) (-4.96329e-10 2.29272e-11 3.73186e-10) (-3.48903e-10 2.49268e-11 2.97357e-10) (-2.87013e-11 -1.11429e-12 2.04158e-11) (4.01705e-11 -1.01478e-11 -6.67552e-11) (7.5294e-10 -1.83942e-11 -1.03186e-09) (1.32953e-09 1.78737e-10 -1.97364e-09) (6.08498e-10 2.49184e-10 -1.11812e-09) (1.05935e-10 7.51929e-11 -1.77001e-10) (3.20599e-11 7.30697e-12 2.35985e-11) (1.95314e-10 -9.67889e-11 8.39771e-10) (-3.3708e-10 -3.44322e-10 2.59437e-09) (-1.67974e-09 -3.17654e-10 2.57969e-09) (-2.11807e-09 -1.88944e-10 1.05074e-09) (-1.23358e-09 -1.34621e-10 -1.64641e-10) (-3.88834e-10 -1.27732e-10 -5.28062e-10) (9.28318e-12 -1.52323e-10 -9.69409e-10) (1.95246e-10 -3.52661e-11 -1.11125e-09) (7.35563e-11 8.38632e-11 -5.09682e-10) (4.31582e-12 3.20303e-11 -5.4166e-11) (-1.10237e-12 1.00286e-11 4.3121e-12) (-1.12551e-12 2.87302e-11 6.09323e-11) (4.77026e-11 3.17923e-11 1.38436e-10) (2.16693e-10 2.6948e-11 1.91118e-10) (5.11256e-10 1.76393e-11 1.87519e-10) (5.98884e-10 -2.14379e-11 1.34981e-10) (3.18492e-10 -6.43567e-11 1.1014e-10) (9.341e-11 -6.18109e-11 9.60522e-11) (-5.39082e-12 -4.05356e-11 7.80469e-11) (-1.73402e-10 -2.74523e-11 5.99849e-11) (-2.15611e-09 4.25835e-11 -8.33362e-10) (-7.41271e-09 5.29331e-10 -6.91394e-09) (-3.35516e-09 1.17146e-09 -7.16058e-09) (1.00431e-10 2.92858e-10 -6.581e-10) (2.20559e-10 4.68042e-11 2.1822e-10) (5.11872e-10 -1.47384e-10 1.25366e-09) (3.10975e-10 -8.20999e-11 7.34017e-10) (1.22696e-10 -7.49237e-12 1.33169e-10) (3.04194e-11 -3.13008e-12 1.02972e-11) (-2.37883e-10 -1.36572e-11 7.81406e-11) (-5.51628e-10 -1.84264e-11 3.52229e-10) (-4.05004e-10 1.20217e-11 3.95883e-10) (-7.32135e-11 8.39018e-12 8.90738e-11) (4.46612e-13 7.09195e-14 -2.6415e-12) (1.95169e-10 -2.27581e-11 -3.99792e-10) (8.54266e-10 -5.46807e-11 -1.48143e-09) (9.13199e-10 4.14146e-11 -1.41707e-09) (3.49615e-10 8.19789e-11 -4.289e-10) (5.67085e-11 1.98032e-11 -9.22541e-12) (7.46263e-11 2.60251e-11 2.85143e-10) (-2.44774e-10 -4.69146e-12 1.73646e-09) (-1.2297e-09 -5.64521e-11 2.55609e-09) (-1.5068e-09 -3.60246e-11 1.29109e-09) (-7.93669e-10 -3.56206e-11 9.62051e-11) (-1.91711e-10 -4.80326e-11 -2.06539e-10) (1.05429e-10 -1.14831e-10 -5.38013e-10) (4.87668e-10 -1.4297e-10 -1.00166e-09) (4.09935e-10 -9.00285e-12 -9.58681e-10) (1.10373e-10 7.01362e-11 -4.04451e-10) (6.53591e-12 1.84204e-11 -2.98002e-11) (2.23045e-12 9.60362e-12 1.01566e-11) (1.76627e-11 2.78073e-11 9.13668e-11) (6.51436e-11 2.48817e-11 1.33795e-10) (1.23568e-10 1.46752e-11 9.54508e-11) (1.80247e-10 1.35782e-11 5.29358e-11) (1.57315e-10 -4.54148e-12 3.71386e-11) (7.30783e-11 -2.71007e-11 5.0536e-11) (2.53519e-11 -4.36385e-11 8.4913e-11) (-1.76022e-11 -1.9561e-11 5.90161e-11) (-1.02459e-10 1.95254e-11 1.55894e-12) (-1.6386e-09 3.72402e-10 -1.04818e-09) (-4.68342e-09 6.77531e-10 -4.78028e-09) (-1.10703e-09 2.49204e-10 -2.40016e-09) (8.78111e-11 2.01919e-11 -7.61754e-11) (5.79719e-10 -4.87392e-11 4.83132e-10) (5.60257e-10 -1.35323e-10 8.60997e-10) (8.00694e-11 -1.90888e-11 2.05373e-10) (-1.86403e-12 1.02267e-12 6.1883e-12) (-3.08174e-11 9.71276e-13 3.21997e-12) (-4.61527e-10 -2.50016e-11 2.20991e-10) (-3.75146e-10 -2.6458e-11 3.51187e-10) (-9.18403e-11 4.70636e-12 1.3504e-10) (-4.38493e-13 6.65332e-13 6.25369e-13) (6.04028e-11 1.3496e-11 -1.29312e-10) (4.04473e-10 -2.07898e-11 -7.40797e-10) (6.20521e-10 -7.39023e-11 -9.32139e-10) (3.55889e-10 -1.44554e-11 -4.00942e-10) (7.11947e-11 1.29354e-11 -3.43125e-11) (2.5865e-11 1.90939e-11 6.02133e-11) (-9.48953e-11 7.79881e-11 7.19221e-10) (-6.00019e-10 9.1212e-11 1.68769e-09) (-8.22956e-10 5.33443e-11 1.16338e-09) (-3.70842e-10 1.49163e-11 1.70618e-10) (-6.01278e-11 -5.80299e-12 -6.72703e-11) (1.64462e-10 -5.90456e-11 -3.97351e-10) (6.51209e-10 -1.32719e-10 -8.08268e-10) (6.30381e-10 -7.46338e-11 -7.71478e-10) (3.31884e-10 1.98481e-11 -5.14807e-10) (1.02873e-10 3.65302e-11 -1.80209e-10) (1.39936e-11 8.38037e-12 -8.69524e-12) (1.19233e-11 8.24173e-12 1.86392e-11) (1.59377e-11 1.17412e-11 5.14832e-11) (1.35679e-11 1.01545e-11 2.90105e-11) (1.53127e-11 6.45487e-12 1.00735e-11) (3.40431e-11 7.72267e-12 9.25496e-12) (4.93735e-11 -3.64697e-12 2.64327e-11) (4.55587e-11 -3.31473e-11 7.80518e-11) (8.77552e-12 -4.74676e-11 1.1475e-10) (-9.2851e-12 -3.12268e-12 2.12484e-11) (-5.78353e-11 4.473e-11 -4.17728e-11) (-6.73787e-10 3.94902e-10 -7.87814e-10) (-1.04057e-09 2.94604e-10 -1.44843e-09) (-4.22305e-11 -1.64923e-11 -2.63609e-10) (1.60631e-10 -4.23679e-11 2.70141e-11) (3.69773e-10 -1.13449e-10 3.85139e-10) (1.97932e-11 -3.64359e-11 1.73385e-10) (-7.63091e-11 3.89641e-12 4.02776e-11) (-1.85477e-10 2.64061e-11 -4.58021e-12) (-3.01768e-10 1.22428e-11 3.09057e-11) (-2.41588e-10 -2.0289e-11 1.78797e-10) (-7.66539e-11 -7.72794e-12 9.73264e-11) (-7.06115e-13 5.97686e-13 1.49631e-12) (3.35967e-11 1.4962e-11 -5.30923e-11) (2.32949e-10 3.10207e-11 -3.59096e-10) (3.56541e-10 -2.34941e-11 -4.60398e-10) (2.17161e-10 -3.73065e-11 -2.05185e-10) (5.09026e-11 -4.0239e-12 -2.62971e-11) (6.37599e-12 3.30605e-12 8.25171e-12) (-3.04358e-11 3.91354e-11 1.94888e-10) (-2.24443e-10 9.2935e-11 7.72608e-10) (-3.4515e-10 7.97003e-11 8.08665e-10) (-1.27684e-10 2.32039e-11 1.53625e-10) (-2.63063e-12 1.25401e-12 -9.33622e-12) (2.83128e-10 -2.13225e-11 -4.01551e-10) (9.05863e-10 -8.75617e-11 -8.75505e-10) (6.73215e-10 -6.27672e-11 -5.95224e-10) (2.78434e-10 -1.05005e-11 -2.88068e-10) (1.23175e-10 1.43802e-11 -1.55587e-10) (5.09453e-11 1.16328e-11 -5.07797e-11) (1.42629e-11 3.65371e-12 -3.78816e-14) (8.61933e-12 2.84904e-12 1.27604e-11) (1.91939e-12 2.41928e-12 9.4432e-12) (3.97124e-13 2.54689e-12 1.95685e-12) (3.13511e-12 3.66095e-12 6.12766e-13) (2.58781e-11 7.46228e-12 8.92284e-12) (6.56485e-11 -9.5351e-12 6.11751e-11) (5.71617e-11 -4.77272e-11 1.4356e-10) (9.27476e-13 -2.61907e-11 7.56981e-11) (-6.33175e-13 5.26705e-13 9.90753e-14) (-1.71709e-11 9.55012e-11 -1.36512e-10) (-5.14917e-11 2.39118e-10 -4.27743e-10) (1.26815e-11 3.67592e-11 -1.61852e-10) (5.25779e-11 -2.88982e-11 -1.25767e-11) (8.56128e-11 -6.78635e-11 9.45314e-11) (-4.20644e-11 -4.19788e-11 1.1333e-10) (-2.96733e-10 -1.91561e-11 1.07804e-10) (-4.81665e-10 3.91895e-11 -6.24975e-12) (-3.9604e-10 4.34373e-11 -1.782e-11) (-3.12069e-10 7.04394e-12 8.08721e-11) (-2.63548e-11 -3.22629e-12 2.82543e-11) (2.72171e-15 -1.31736e-14 2.60072e-13) (2.85971e-11 7.36243e-12 -3.19803e-11) (1.59331e-10 3.36399e-11 -1.96646e-10) (2.21279e-10 1.64886e-11 -2.35792e-10) (1.36064e-10 -1.24364e-11 -9.37449e-11) (4.46634e-11 -9.08902e-12 -1.20058e-11) (5.20355e-12 -2.95711e-13 2.99719e-12) (-5.80085e-12 7.60951e-12 3.63011e-11) (-6.88565e-11 4.17032e-11 2.39215e-10) (-1.04416e-10 5.62958e-11 4.02797e-10) (-2.5345e-11 2.03926e-11 1.24859e-10) (6.43234e-12 1.71806e-12 -1.86212e-12) (3.74308e-10 3.81949e-12 -3.35716e-10) (1.04145e-09 -3.35058e-11 -8.68158e-10) (6.9801e-10 -2.95386e-11 -5.25562e-10) (2.04241e-10 -7.96377e-12 -1.49353e-10) (6.44829e-11 5.69298e-13 -5.7828e-11) (4.1586e-11 4.80177e-12 -4.2819e-11) (2.48074e-11 2.97899e-12 -1.65374e-11) (7.57392e-12 8.00345e-13 9.58519e-13) (1.47362e-12 3.43855e-13 2.45658e-12) (-2.22734e-13 3.18778e-13 4.04088e-13) (-2.99715e-13 1.79336e-12 -3.64914e-13) (7.67882e-12 5.61916e-12 4.37322e-13) (8.04048e-11 1.19236e-11 4.00915e-11) (1.37404e-10 -2.0186e-11 1.52257e-10) (5.44276e-11 -3.58401e-11 1.40468e-10) (8.51058e-13 -3.41841e-12 1.03332e-11) (5.85087e-12 1.0354e-11 -2.52864e-11) (1.24985e-10 1.47701e-10 -2.95977e-10) (2.03104e-10 1.36387e-10 -2.55433e-10) (1.1541e-10 -8.97276e-13 -2.40078e-11) (6.78011e-11 -4.95939e-11 6.49576e-11) (-4.40895e-11 -4.74324e-11 9.83755e-11) (-3.69532e-10 -5.35335e-11 1.46185e-10) (-7.55729e-10 -9.59081e-12 3.47247e-11) (-5.97726e-10 4.04792e-11 -5.10891e-11) (-2.73179e-10 2.61921e-11 7.84466e-12) (-1.06377e-10 2.05221e-12 4.74071e-11) (1.73674e-11 -5.00854e-13 2.49797e-12) (1.01346e-10 2.85606e-12 -3.64713e-11) (2.58098e-10 2.10663e-11 -1.50315e-10) (3.37537e-10 2.9932e-11 -1.9741e-10) (3.032e-10 7.58651e-12 -1.11815e-10) (2.37985e-10 -1.49406e-11 -1.86131e-11) (1.3665e-10 -1.3113e-11 2.05669e-11) (4.65608e-11 5.09967e-13 2.48258e-11) (2.52912e-11 9.3991e-12 5.23479e-11) (3.7217e-11 2.56901e-11 1.45895e-10) (6.63017e-11 2.29442e-11 1.34053e-10) (1.14043e-10 1.32335e-11 3.79178e-11) (5.37418e-10 1.52905e-11 -1.87077e-10) (1.28929e-09 -1.11332e-12 -6.83143e-10) (1.21333e-09 -6.84434e-12 -6.18733e-10) (6.20331e-10 -9.83144e-16 -2.38064e-10) (2.81256e-10 3.67001e-13 -7.96425e-11) (1.84889e-10 1.07945e-12 -6.27124e-11) (1.78612e-10 5.82766e-12 -6.93378e-11) (1.53868e-10 2.76194e-12 -3.73705e-11) (9.23495e-11 7.9221e-13 2.07619e-12) (3.71462e-11 1.19838e-12 5.1479e-12) (1.45921e-11 2.94686e-12 -1.14325e-12) (3.05024e-11 1.1543e-11 -4.50459e-12) (1.66831e-10 3.2114e-11 2.31364e-11) (4.58855e-10 2.94077e-11 1.91433e-10) (4.37427e-10 -2.3103e-11 3.04234e-10) (1.63578e-10 -2.35364e-11 1.2518e-10) (5.70716e-11 -1.66317e-12 -1.52378e-12) (2.51785e-10 5.71738e-11 -1.97908e-10) (7.21495e-10 2.09225e-10 -4.89223e-10) (8.76488e-10 1.58708e-10 -2.12849e-10) (6.38228e-10 -2.19887e-11 1.60763e-10) (1.84919e-10 -6.29711e-11 1.69252e-10) (-7.63699e-12 -1.83398e-11 4.77911e-11) (-9.24476e-11 -1.46404e-11 2.91209e-11) (-1.63868e-10 -2.02344e-12 -8.49371e-12) (-7.58799e-11 7.77053e-12 -9.63031e-12) (-7.9249e-12 1.94642e-12 1.81959e-12) (5.89837e-13 1.77571e-13 1.73069e-12) (6.28293e-10 -7.97401e-13 -8.92406e-11) (1.08122e-09 8.8247e-12 -2.79018e-10) (1.32439e-09 3.79117e-11 -3.91243e-10) (1.34075e-09 3.90051e-11 -3.01561e-10) (1.33945e-09 6.98768e-12 -9.51243e-11) (1.20092e-09 -2.96969e-11 8.72696e-11) (8.1329e-10 -2.29278e-11 1.31808e-10) (4.49365e-10 8.04999e-12 1.3295e-10) (3.38592e-10 2.78871e-11 1.79514e-10) (4.64852e-10 4.33587e-11 2.66104e-10) (8.44917e-10 4.53762e-11 2.54177e-10) (1.74815e-09 3.49092e-11 -2.22278e-11) (3.15003e-09 1.47326e-11 -6.5758e-10) (3.95821e-09 1.16197e-11 -1.05285e-09) (3.60381e-09 2.82764e-11 -7.52069e-10) (2.75403e-09 2.95916e-11 -3.03499e-10) (2.03732e-09 1.36092e-11 -1.4512e-10) (1.65942e-09 3.1842e-12 -1.97734e-10) (1.49991e-09 1.07797e-11 -2.30074e-10) (1.28125e-09 -2.15535e-12 -1.39603e-10) (9.56888e-10 -1.78627e-12 -3.49693e-11) (6.42896e-10 9.47833e-12 -3.41086e-11) (5.37093e-10 3.31983e-11 -6.57092e-11) (8.79922e-10 8.50892e-11 -5.33792e-11) (1.96809e-09 1.21428e-10 1.99925e-10) (3.09143e-09 9.2427e-11 7.76487e-10) (2.84037e-09 -1.31933e-11 9.10936e-10) (1.89287e-09 -3.2663e-11 3.9789e-10) (1.76958e-09 2.98567e-11 -1.65124e-10) (3.03644e-09 2.19354e-10 -8.70411e-10) (4.97159e-09 4.62424e-10 -1.03527e-09) (6.03199e-09 3.79879e-10 1.05954e-10) (4.67246e-09 -1.98535e-11 1.12305e-09) (1.77086e-09 -1.36412e-10 7.21115e-10) (2.52964e-10 -3.44184e-11 1.38854e-10) (8.6256e-12 -1.89883e-12 5.40894e-12) (4.16523e-13 -1.60904e-14 4.44736e-14) (2.88422e-12 3.94857e-13 2.45348e-13) (4.87099e-11 3.83251e-12 5.41458e-12) (2.43699e-10 3.92118e-12 7.89016e-13) (1.66728e-09 1.77208e-12 -3.84102e-10) (2.01706e-09 1.56374e-12 -4.93921e-10) (1.89059e-09 1.82149e-11 -3.91667e-10) (1.6816e-09 1.55116e-11 -1.60725e-10) (1.5232e-09 1.7352e-12 8.05126e-11) (1.13775e-09 -9.28864e-12 1.75398e-10) (6.96894e-10 -1.09938e-12 1.32035e-10) (5.19457e-10 1.47838e-11 1.13572e-10) (7.00287e-10 3.18745e-11 1.59563e-10) (1.39245e-09 4.6703e-11 2.19913e-10) (2.69079e-09 3.62712e-11 9.02085e-11) (4.31316e-09 2.69128e-12 -3.8862e-10) (5.58047e-09 -1.53611e-11 -9.08573e-10) (5.96001e-09 1.15399e-12 -8.7886e-10) (5.50212e-09 2.32134e-11 -3.35863e-10) (4.4107e-09 2.07398e-11 7.5559e-11) (3.06096e-09 1.50737e-12 3.39194e-11) (2.09116e-09 -9.11913e-12 -1.63619e-10) (1.62476e-09 -3.56882e-13 -2.50404e-10) (1.30599e-09 -5.69645e-12 -2.24987e-10) (9.85085e-10 -1.08494e-12 -1.78614e-10) (7.92674e-10 9.67328e-12 -1.81455e-10) (1.05513e-09 3.30772e-11 -2.04193e-10) (2.38187e-09 8.87618e-11 -7.46577e-11) (5.04943e-09 9.93815e-11 7.06054e-10) (7.14445e-09 7.1245e-11 1.81036e-09) (6.20573e-09 -7.78949e-12 1.68797e-09) (4.22664e-09 -1.00615e-11 5.72369e-10) (4.03679e-09 4.77186e-11 -3.9418e-10) (6.16186e-09 1.8445e-10 -1.14248e-09) (9.46504e-09 3.29086e-10 -6.70278e-10) (1.1351e-08 2.54146e-10 1.34539e-09) (7.95529e-09 -4.83276e-11 2.2691e-09) (2.53911e-09 -9.94346e-11 1.04753e-09) (3.02413e-10 -1.81003e-11 1.65145e-10) (1.09809e-11 -1.76019e-12 1.26692e-11) (-2.34378e-13 -5.47203e-14 1.34125e-12) (2.11642e-11 8.61867e-13 -1.33012e-13) (2.25981e-10 6.70386e-12 -3.40793e-11) (8.69957e-10 7.46904e-12 -1.71789e-10) (2.282e-10 3.59165e-13 -5.31389e-11) (2.00435e-10 -9.83092e-13 -4.15837e-11) (1.29039e-10 -6.93726e-13 -1.72219e-11) (8.27868e-11 -1.37259e-13 1.94586e-12) (6.14425e-11 9.24729e-14 1.22307e-11) (4.16846e-11 1.85645e-13 1.04861e-11) (3.20409e-11 2.70044e-13 3.92275e-12) (4.63901e-11 8.35263e-13 -8.60967e-13) (1.09275e-10 1.99491e-12 -6.13565e-12) (2.45334e-10 2.98172e-12 -1.21195e-11) (4.02475e-10 1.59768e-12 -2.47174e-11) (4.96621e-10 -6.52415e-13 -4.59999e-11) (5.20395e-10 -9.82673e-13 -4.88476e-11) (5.05806e-10 8.49732e-14 -6.30574e-12) (4.41454e-10 2.61596e-13 5.29004e-11) (2.91716e-10 -7.15814e-13 5.97719e-11) (1.35993e-10 -1.14947e-12 1.94837e-11) (6.61093e-11 -9.06281e-13 -6.70568e-12) (5.56402e-11 -1.00276e-13 -1.98416e-11) (5.60979e-11 -2.75194e-13 -2.84135e-11) (5.49347e-11 -2.44091e-13 -3.13079e-11) (6.38805e-11 -3.35501e-13 -3.52528e-11) (1.192e-10 2.34111e-13 -3.86357e-11) (3.0761e-10 3.04617e-12 -4.45051e-12) (6.56467e-10 1.74917e-12 1.56764e-10) (8.72399e-10 3.16334e-12 3.35836e-10) (6.34024e-10 -1.76623e-13 2.54805e-10) (3.29851e-10 -1.46918e-12 6.79833e-11) (2.64572e-10 -1.7632e-12 -2.94974e-11) (3.94164e-10 -7.81856e-13 -8.32234e-11) (6.11452e-10 2.43181e-12 -1.93239e-11) (7.83818e-10 3.57248e-12 1.86132e-10) (5.69712e-10 -2.61115e-12 2.66756e-10) (1.82958e-10 -3.12202e-12 1.24327e-10) (2.6034e-11 -6.58071e-13 2.83103e-11) (1.32781e-12 -2.83475e-13 4.94759e-12) (2.49339e-13 -5.56055e-14 5.17516e-13) (2.70045e-12 -6.94531e-15 -3.203e-13) (3.95227e-11 4.6561e-13 -1.10538e-11) (1.45474e-10 6.18507e-13 -3.75499e-11) (1.23079e-10 -4.33182e-11 -4.81049e-10) (3.14407e-10 4.79221e-12 -1.36577e-09) (2.88116e-10 1.68343e-10 -1.47915e-09) (1.03998e-11 1.43373e-10 -5.57998e-10) (-4.74063e-11 2.57395e-11 -3.84549e-11) (-2.216e-10 -5.95674e-11 1.84387e-10) (-6.49759e-10 -8.16724e-10 1.08773e-09) (-5.71754e-10 -1.87598e-09 1.41763e-09) (-1.41484e-10 -1.19088e-09 3.26928e-10) (-2.25379e-11 -2.177e-10 -1.6375e-10) (-1.29525e-10 1.50808e-10 -5.64843e-10) (-4.8772e-10 8.67593e-10 -9.34052e-10) (-4.95388e-10 7.57759e-10 -3.83533e-10) (-1.77081e-10 1.97515e-10 5.52057e-11) (-1.16203e-10 2.75486e-11 2.66666e-10) (-1.43573e-10 -1.32298e-10 6.29068e-10) (-1.4212e-10 -8.41165e-11 5.01394e-10) (-8.3764e-11 4.06019e-11 1.91418e-10) (-4.1037e-11 8.19687e-11 8.11505e-11) (-1.16008e-11 7.07695e-11 3.87414e-11) (2.19632e-12 2.18703e-11 7.94918e-12) (3.0636e-12 3.06637e-12 -1.82979e-12) (2.46491e-11 -4.19959e-12 -3.07354e-11) (1.08956e-10 -5.66731e-11 -1.40833e-10) (2.09073e-10 -1.59391e-10 -2.4957e-10) (1.71604e-10 -1.91103e-10 -1.93622e-10) (4.22067e-11 -1.06415e-10 -5.77468e-11) (-2.46946e-11 -5.56216e-11 1.10241e-12) (-1.69661e-10 -8.48704e-11 7.71137e-11) (-4.14983e-10 -4.95184e-11 2.3112e-10) (-4.33215e-10 7.25484e-11 2.9205e-10) (-2.19185e-10 1.28204e-10 1.87223e-10) (-4.20509e-11 8.49473e-11 6.39656e-11) (2.33662e-11 5.77579e-11 2.3638e-11) (1.09108e-10 7.34107e-11 2.74211e-11) (2.50314e-10 8.02079e-11 6.52227e-11) (3.02254e-10 5.71816e-11 1.09049e-10) (1.73316e-10 2.31357e-11 7.54315e-11) (3.8515e-11 1.79253e-12 6.39171e-12) (2.88411e-11 -7.04011e-12 -4.68661e-11) (5.44152e-10 2.36643e-10 -1.15382e-09) (6.04726e-10 5.15784e-10 -2.13608e-09) (2.53556e-10 5.18954e-10 -1.55445e-09) (3.37847e-12 1.871e-10 -3.26016e-10) (-5.50528e-12 1.20945e-11 2.37006e-12) (-4.98939e-11 -8.15711e-11 3.04957e-10) (-1.85509e-10 -9.92476e-10 1.38967e-09) (-4.32022e-10 -1.98989e-09 1.53606e-09) (-4.08145e-10 -1.16564e-09 2.71725e-10) (-2.3115e-10 -2.95916e-10 -3.14834e-10) (-3.21727e-10 2.28258e-10 -1.03884e-09) (-3.57027e-10 1.15823e-09 -1.54021e-09) (-2.27842e-10 1.27425e-09 -9.18895e-10) (-5.74794e-11 5.18251e-10 -1.59761e-10) (6.85622e-13 7.15603e-11 4.45559e-11) (4.94932e-12 -4.96306e-11 2.835e-10) (-1.10664e-10 -4.1601e-10 8.57719e-10) (-2.96875e-10 -3.98667e-10 8.09706e-10) (-2.13936e-10 -5.20971e-11 2.9242e-10) (-8.4748e-11 6.08595e-11 6.36048e-11) (-1.75332e-11 6.34252e-11 3.56996e-12) (3.06744e-11 4.4302e-11 -1.69967e-11) (1.51296e-10 3.14509e-11 -5.66348e-11) (3.83947e-10 -4.5082e-11 -1.28412e-10) (4.38532e-10 -1.23218e-10 -1.63104e-10) (1.68547e-10 -8.76602e-11 -9.20351e-11) (-3.64183e-12 -3.28091e-11 -2.11224e-11) (-3.84021e-10 -1.89985e-10 -5.51368e-12) (-1.82467e-09 -5.93073e-10 3.11522e-10) (-2.36934e-09 -6.3936e-10 6.51842e-10) (-1.16012e-09 -2.47524e-10 4.02794e-10) (-2.22482e-10 -2.65397e-11 8.77922e-11) (-8.73006e-12 1.00557e-12 5.48619e-12) (5.89309e-12 2.11351e-12 4.48485e-12) (8.98208e-11 1.52509e-11 5.06181e-11) (2.97108e-10 5.68606e-11 1.79016e-10) (4.67322e-10 1.25443e-10 2.69142e-10) (4.12378e-10 1.39304e-10 1.62758e-10) (2.61024e-10 8.90389e-11 -1.83852e-11) (3.00439e-10 9.40563e-11 -2.84908e-10) (4.60124e-10 3.7192e-10 -1.00774e-09) (7.47547e-10 4.33626e-10 -1.9647e-09) (5.24668e-10 2.26586e-10 -1.45132e-09) (1.18578e-10 2.99013e-11 -2.93343e-10) (3.06224e-12 -1.62468e-12 1.46548e-14) (5.42858e-12 -9.99495e-11 1.9856e-10) (-1.53863e-10 -4.7994e-10 6.68437e-10) (-5.76049e-10 -7.58977e-10 5.54748e-10) (-1.18236e-09 -8.08061e-10 -5.44659e-11) (-1.40091e-09 -5.01372e-10 -8.89954e-10) (-6.1586e-10 7.7674e-12 -1.09329e-09) (1.06991e-10 3.16738e-10 -9.10153e-10) (6.68374e-10 6.26295e-10 -7.74029e-10) (9.44067e-10 7.88908e-10 -4.33642e-10) (6.64897e-10 5.30291e-10 -3.07342e-11) (2.75559e-10 1.83528e-10 1.694e-10) (1.15163e-10 3.59008e-11 4.10868e-10) (-2.1395e-10 -1.47788e-10 1.01722e-09) (-6.74441e-10 -2.20101e-10 1.13838e-09) (-4.7956e-10 -8.08886e-11 4.43935e-10) (-6.78039e-11 -6.28005e-12 3.08044e-11) (1.15708e-12 -5.82953e-14 -1.74256e-12) (9.48333e-11 6.45963e-12 -4.18085e-11) (3.03107e-10 4.74079e-11 -8.55261e-11) (3.84408e-10 1.09609e-10 -9.22997e-11) (2.26677e-10 1.07306e-10 -6.47043e-11) (2.42112e-11 2.56538e-11 -1.38009e-11) (-4.58153e-11 1.10241e-12 -2.00803e-12) (-1.05426e-09 -3.58306e-10 1.31802e-10) (-3.76456e-09 -1.60179e-09 6.12801e-10) (-4.47871e-09 -1.86586e-09 8.45073e-10) (-1.87134e-09 -7.51726e-10 4.93332e-10) (-2.18308e-10 -1.27973e-10 1.35683e-10) (1.30482e-11 -2.84066e-11 5.2277e-11) (1.17294e-10 -1.55078e-11 1.06355e-10) (1.74853e-10 4.5325e-11 1.48337e-10) (1.56123e-10 1.16969e-10 1.59997e-10) (1.2384e-10 1.60235e-10 1.18702e-10) (1.02727e-10 1.4953e-10 1.00854e-11) (1.74472e-10 2.03231e-10 -2.09146e-10) (1.4955e-10 2.0414e-10 -4.32307e-10) (4.48055e-10 3.13541e-10 -9.43097e-10) (3.70695e-10 1.64684e-10 -6.01264e-10) (8.92843e-11 1.57364e-11 -7.19476e-11) (2.73057e-11 -8.59775e-12 2.55716e-11) (9.84952e-12 -5.61219e-11 1.63137e-10) (-1.73165e-10 -1.02322e-10 2.09592e-10) (-1.082e-09 -2.7426e-10 1.25966e-10) (-2.53416e-09 -6.47716e-10 -6.66819e-10) (-1.36368e-09 -6.94176e-10 -9.95271e-10) (-8.15737e-11 -3.30908e-10 -5.32327e-10) (3.99158e-10 -1.37538e-10 -3.9216e-10) (9.71022e-10 1.83708e-10 -3.4925e-10) (1.46758e-09 7.23623e-10 -1.48815e-10) (1.596e-09 1.13131e-09 1.96123e-10) (1.20417e-09 1.03974e-09 5.14887e-10) (5.01666e-10 5.35354e-10 5.6012e-10) (5.35021e-11 1.95483e-10 4.52945e-10) (-2.01184e-10 3.33883e-11 4.27119e-10) (-3.53051e-10 -1.01349e-10 3.53113e-10) (-2.61171e-10 -1.46748e-10 1.82352e-10) (-8.17047e-11 -7.75988e-11 4.82664e-11) (-4.03192e-12 -1.02597e-11 1.21957e-12) (1.31597e-11 8.73757e-13 -1.08928e-11) (1.68941e-10 9.41276e-11 -1.13689e-10) (4.41243e-10 3.06508e-10 -2.52668e-10) (3.80434e-10 2.93511e-10 -1.92145e-10) (5.50041e-11 5.52476e-11 -3.10456e-11) (-2.95609e-11 -1.88496e-12 2.10857e-12) (-9.08653e-10 -2.96152e-10 2.10176e-10) (-2.45105e-09 -1.11221e-09 8.80386e-10) (-2.00709e-09 -1.52522e-09 1.29672e-09) (-7.12813e-10 -1.09809e-09 9.2947e-10) (-1.14984e-10 -3.70106e-10 2.88447e-10) (-7.83918e-12 -2.36005e-11 1.38842e-11) (-6.30599e-12 4.20791e-12 -3.82817e-12) (-5.83197e-11 6.1782e-11 -2.34708e-11) (-1.07043e-10 1.10117e-10 -1.13831e-11) (-5.98894e-11 7.88665e-11 -1.38018e-11) (-7.38915e-12 6.98648e-11 -6.73214e-11) (-5.58046e-11 1.56873e-10 -5.86229e-10) (1.14765e-10 5.15635e-11 -2.87869e-10) (4.8244e-11 1.01937e-12 -1.28764e-11) (3.64581e-11 -3.46846e-11 1.43315e-10) (-1.71837e-10 -1.14433e-10 4.94677e-10) (-4.82678e-10 -2.96894e-11 3.66608e-10) (-1.13513e-09 1.69176e-10 6.80268e-12) (-1.70484e-09 1.69743e-10 -5.87039e-10) (-7.20896e-10 -1.6478e-10 -4.3415e-10) (-3.96481e-11 -1.13541e-10 -6.3783e-11) (1.63844e-10 -1.56367e-10 6.20653e-11) (5.59916e-10 -1.49837e-10 3.31723e-10) (6.79395e-10 2.91282e-11 3.63611e-10) (4.53107e-10 1.26997e-10 1.10968e-10) (2.7839e-10 1.51016e-10 -4.30294e-11) (1.93272e-10 1.85225e-10 -7.54846e-11) (1.2107e-10 1.79521e-10 -1.26232e-11) (6.05096e-11 1.29434e-10 6.62229e-11) (1.75315e-11 4.97074e-11 9.93026e-11) (-1.9496e-12 -2.5436e-11 9.19379e-11) (-5.94027e-12 -7.48126e-11 4.41946e-11) (5.48284e-12 -8.81088e-11 -3.50556e-11) (5.99517e-11 -7.97565e-11 -2.06481e-10) (1.92983e-10 8.1859e-11 -4.65462e-10) (2.86832e-10 3.16649e-10 -4.65081e-10) (2.58246e-10 3.50949e-10 -2.16909e-10) (1.23692e-10 1.90518e-10 -1.88371e-11) (1.18506e-11 4.41267e-11 2.6012e-11) (-5.00036e-11 2.96832e-12 7.7277e-11) (-2.66206e-10 -2.34284e-10 3.72411e-10) (-4.74517e-10 -1.02317e-09 1.06364e-09) (-4.93977e-10 -1.66514e-09 1.53902e-09) (-4.72509e-10 -9.97797e-10 8.8841e-10) (-2.56188e-10 -2.31578e-10 1.77686e-10) (-9.48605e-11 -1.73452e-11 -2.18051e-11) (-1.01609e-10 5.58563e-11 -1.25743e-10) (-1.35664e-10 1.60754e-10 -2.17479e-10) (-2.11627e-10 2.5712e-10 -2.44812e-10) (-3.08439e-10 3.11431e-10 -3.3813e-10) (-2.71688e-10 2.62887e-10 -5.16132e-10) (1.7742e-10 3.59739e-10 -9.93297e-10) (4.15134e-10 2.74304e-10 -3.93985e-10) (4.41723e-10 2.87384e-10 1.29131e-10) (2.26529e-10 2.6162e-10 6.6908e-10) (-3.78888e-10 1.01532e-10 8.58698e-10) (-1.21527e-09 5.71927e-11 5.93312e-10) (-2.10528e-09 1.33126e-10 1.17266e-11) (-1.32734e-09 -4.81489e-11 -2.53609e-10) (-1.48291e-10 -9.61434e-11 -2.44157e-11) (1.1067e-10 -2.08595e-10 1.30821e-10) (1.0607e-09 -6.41014e-10 9.97244e-10) (1.76703e-09 -5.42138e-10 1.77383e-09) (8.9873e-10 -1.02658e-10 1.01275e-09) (8.89627e-11 2.66431e-11 9.79974e-11) (2.12666e-12 3.35826e-11 -2.69632e-11) (-4.38445e-11 1.74189e-10 -2.74602e-10) (-3.23383e-11 1.57987e-10 -2.40131e-10) (-4.00104e-12 2.47405e-11 -3.26229e-11) (-1.54567e-12 -1.79558e-12 -1.98551e-12) (-2.98115e-11 -7.19643e-11 -3.78199e-11) (-5.23816e-11 -2.11544e-10 -2.02274e-10) (5.22257e-11 -1.6649e-10 -3.96661e-10) (2.78449e-10 6.56194e-11 -5.7437e-10) (6.22253e-10 4.67785e-10 -6.45723e-10) (7.92627e-10 7.38085e-10 -3.72318e-10) (5.03203e-10 5.50403e-10 6.62759e-12) (1.4535e-10 2.05263e-10 1.47961e-10) (2.05196e-11 3.85087e-11 2.68591e-10) (-6.3113e-11 -4.07395e-10 8.85777e-10) (-1.64904e-10 -1.63619e-09 1.89873e-09) (-4.77473e-10 -1.71877e-09 1.48122e-09) (-6.23279e-10 -6.18942e-10 4.44562e-10) (-5.754e-10 -1.39151e-10 9.33684e-11) (-1.78219e-10 -2.34861e-12 -1.52815e-11) (-4.58061e-12 -1.11034e-12 -1.13171e-11) (3.56073e-11 -5.19885e-12 -7.48472e-11) (4.56976e-11 2.96035e-11 -1.92099e-10) (-4.50656e-11 1.81702e-10 -4.14194e-10) (-2.32281e-10 4.52804e-10 -8.38641e-10) (-1.94042e-10 5.11417e-10 -1.16629e-09) (7.21499e-10 6.07807e-10 -2.029e-09) (1.41922e-09 5.88009e-10 -5.17307e-10) (4.13521e-09 1.75074e-09 1.64528e-09) (4.39646e-09 2.14003e-09 4.02063e-09) (9.21721e-10 6.60845e-10 2.03036e-09) (-2.38295e-10 9.09405e-11 4.44485e-10) (-7.8366e-10 -2.90318e-13 1.99402e-10) (-6.71398e-10 -1.58357e-10 8.79014e-11) (-1.83499e-10 -2.36189e-10 1.55826e-10) (1.89756e-10 -6.12629e-10 5.69048e-10) (8.92626e-10 -9.09693e-10 1.13928e-09) (1.00344e-09 -4.47996e-10 1.00145e-09) (4.92455e-10 6.98287e-11 4.43056e-10) (9.57482e-11 1.41275e-10 7.36212e-11) (-5.49521e-11 1.69704e-10 -8.70156e-11) (-4.74005e-10 2.23568e-10 -5.46592e-10) (-1.29387e-09 -6.84059e-11 -1.15727e-09) (-1.77067e-09 -4.5805e-10 -1.1909e-09) (-1.02031e-09 -4.34031e-10 -6.2841e-10) (-1.30926e-10 -1.32697e-10 -1.39924e-10) (4.10574e-11 -4.75801e-11 -4.85014e-11) (2.56066e-10 -3.88384e-11 -9.40463e-11) (6.08514e-10 1.09576e-10 -1.82671e-10) (9.5021e-10 4.6776e-10 -2.69846e-10) (9.88406e-10 7.90502e-10 -2.19836e-10) (5.61483e-10 5.67328e-10 4.29481e-11) (2.08112e-10 1.61934e-10 2.26572e-10) (1.80435e-10 -2.40618e-10 8.82505e-10) (-2.15222e-10 -1.24774e-09 1.92912e-09) (-9.13683e-10 -9.77335e-10 9.7185e-10) (-1.74156e-09 -4.75671e-10 3.22464e-11) (-1.93528e-09 -1.35621e-10 -3.73217e-10) (-3.91298e-10 -1.22648e-10 4.62487e-12) (3.60677e-11 -1.40216e-10 7.24527e-11) (5.42598e-10 -3.13998e-10 9.25621e-11) (5.25947e-10 -6.76838e-11 -1.30973e-10) (1.61984e-10 1.22134e-10 -2.81123e-10) (-1.67102e-10 5.51446e-10 -1.15955e-09) (-4.78766e-10 1.18303e-09 -2.99048e-09) (2.26168e-11 1.15435e-09 -3.74299e-09) (1.39668e-09 1.50972e-10 -1.17009e-09) (4.45242e-09 6.44939e-10 5.24524e-10) (1.05752e-08 2.91286e-09 5.51802e-09) (1.0533e-08 4.42016e-09 7.88292e-09) (3.74666e-09 2.13687e-09 3.66017e-09) (2.98636e-10 3.00965e-10 5.04542e-10) (-2.79982e-11 1.28506e-11 4.76312e-11) (-1.26456e-10 -7.86328e-11 1.15774e-10) (-2.04995e-10 -4.13689e-10 4.12566e-10) (-7.6422e-11 -8.64168e-10 7.0178e-10) (1.09447e-10 -7.68313e-10 4.64352e-10) (1.08266e-10 -2.00173e-10 1.00665e-10) (6.17735e-11 1.18169e-11 7.88805e-12) (1.35337e-10 2.61458e-10 -8.21719e-11) (-1.38152e-10 5.57271e-10 -3.91891e-10) (-1.62034e-09 7.29334e-10 -1.26142e-09) (-5.49011e-09 -1.26269e-10 -2.54878e-09) (-4.7161e-09 -1.48094e-09 -1.70775e-09) (-7.17416e-10 -7.42171e-10 -2.87447e-10) (4.90179e-11 -1.49814e-10 -9.04286e-12) (2.37298e-10 -3.05682e-11 2.96724e-11) (4.12351e-10 1.31558e-10 -1.54617e-12) (3.63288e-10 1.8522e-10 -9.85729e-11) (2.5833e-10 1.46875e-10 -1.15063e-10) (2.34173e-10 1.03463e-10 -2.23374e-11) (3.99116e-10 5.11791e-11 2.20538e-10) (6.04171e-10 -1.88607e-10 9.42356e-10) (8.035e-11 -3.51289e-10 1.17338e-09) (-5.32181e-10 -1.17416e-10 4.09342e-10) (-2.06312e-09 1.43464e-10 -4.59896e-10) (-2.18744e-09 4.37165e-11 -9.44101e-10) (-5.22308e-10 -2.68937e-10 1.34005e-11) (-1.36257e-10 -7.5438e-10 5.26887e-10) (3.40225e-10 -8.12235e-10 3.66606e-10) (3.5357e-10 -2.1545e-10 -8.06145e-11) (3.04606e-10 1.65399e-10 -2.57124e-10) (-2.50343e-11 5.89526e-10 -5.48561e-10) (-1.01008e-09 1.14332e-09 -1.66782e-09) (-1.23876e-09 1.03306e-09 -3.00816e-09) (1.81209e-10 4.08974e-10 -2.4763e-09) (3.12285e-09 1.82289e-11 -6.26481e-10) (6.33978e-09 8.50696e-10 2.28622e-09) (1.0176e-08 2.8254e-09 7.40802e-09) (8.47068e-09 3.6825e-09 7.61945e-09) (3.29387e-09 1.94968e-09 2.96306e-09) (5.6575e-10 4.05781e-10 4.22628e-10) (3.26293e-11 2.41506e-11 3.34118e-11) (-9.91191e-12 -2.8046e-11 6.00577e-11) (-1.2216e-10 -2.85308e-10 2.99967e-10) (-2.40745e-10 -6.04828e-10 3.21322e-10) (-2.82511e-10 -5.39327e-10 -7.48529e-12) (-2.72006e-10 -2.2647e-10 -2.1893e-10) (-2.35841e-10 7.20708e-11 -2.78673e-10) (-1.71917e-10 3.93725e-10 -3.30601e-10) (-8.10064e-11 4.56059e-10 -2.41221e-10) (-7.79376e-11 1.18438e-10 -7.78974e-11) (-1.09524e-10 -7.14544e-11 -4.7768e-11) (-2.95075e-10 -7.96443e-10 -1.26506e-10) (-2.5657e-10 -8.85869e-10 -1.07241e-10) (-4.97891e-11 -8.58939e-11 -1.42661e-11) (-4.71252e-12 2.34342e-11 -3.51999e-12) (7.66566e-11 2.65767e-10 -3.49563e-11) (1.72446e-10 2.74214e-10 -5.62961e-11) (1.80508e-10 9.37147e-11 -4.45181e-12) (4.03467e-10 -7.46943e-11 1.91596e-10) (6.89094e-10 -4.60513e-10 8.35025e-10) (1.05835e-10 -3.84055e-10 8.1872e-10) (-3.51798e-10 -6.60464e-11 2.57112e-10) (-1.19955e-09 2.61197e-10 -4.0946e-10) (-1.25426e-09 3.30901e-10 -1.08306e-09) (-1.8516e-10 -5.53871e-11 -1.02428e-10) (-1.59915e-10 -4.92105e-10 4.3684e-10) (-1.05733e-10 -9.45317e-10 6.87587e-10) (-8.71543e-11 -3.52852e-10 -1.32799e-10) (-3.78003e-10 -1.00192e-10 -1.06309e-09) (-5.53203e-10 7.4004e-10 -1.07708e-09) (-7.68501e-10 1.25582e-09 -7.01441e-10) (-6.06768e-10 6.96582e-10 -6.32436e-10) (-1.2165e-11 1.4889e-10 -7.55e-10) (1.20167e-09 -8.18889e-11 -1.2839e-09) (3.62545e-09 3.08796e-10 2.49489e-10) (6.08522e-09 1.18678e-09 3.20634e-09) (6.81013e-09 2.14397e-09 6.44836e-09) (3.42409e-09 1.78041e-09 4.38053e-09) (7.21e-10 6.28402e-10 9.70306e-10) (9.99659e-11 1.11996e-10 8.37812e-11) (2.08027e-11 1.45235e-11 1.18603e-11) (1.49533e-11 -9.41684e-12 2.7683e-11) (1.43515e-12 -7.03114e-11 6.12653e-11) (-7.53516e-11 -1.59897e-10 -1.19079e-11) (-4.74535e-10 -3.88824e-10 -4.19448e-10) (-1.06639e-09 -3.3102e-10 -8.61114e-10) (-8.03961e-10 -5.82747e-11 -4.82851e-10) (-1.72671e-10 1.53616e-11 -7.42887e-11) (-1.26806e-12 1.30788e-12 -3.4807e-13) (3.83044e-11 -4.90868e-12 1.35292e-11) (1.84407e-10 -1.20755e-10 4.38434e-11) (1.33262e-10 -1.85678e-10 -1.86327e-11) (-1.90634e-11 -6.23947e-11 -4.12291e-11) (-2.14892e-10 3.19673e-11 -1.10315e-10) (-3.42277e-10 3.11825e-10 -1.49563e-10) (-8.0667e-11 3.40177e-10 -6.3075e-11) (1.35207e-10 1.92823e-10 2.6333e-11) (4.81925e-10 5.29096e-11 2.21774e-10) (6.56857e-10 -3.49597e-10 5.94612e-10) (1.63675e-11 -3.22627e-10 4.39211e-10) (-7.2879e-10 -2.25741e-10 2.54077e-10) (-1.83881e-09 1.16056e-10 -5.32952e-10) (-1.07749e-09 3.10964e-10 -1.04183e-09) (-5.0418e-11 1.22945e-11 -1.50213e-10) (6.69113e-11 -1.18774e-10 1.21058e-10) (2.31573e-10 -8.23196e-10 1.23251e-09) (-5.03173e-11 -2.72611e-10 2.33386e-10) (-7.47603e-10 -2.69738e-10 -1.03219e-09) (-4.33788e-09 1.93921e-10 -5.72017e-09) (-2.82883e-09 1.07719e-09 -2.54653e-09) (-7.38984e-10 8.4182e-10 -3.17773e-10) (-6.20536e-11 2.42218e-10 -6.39141e-11) (2.12575e-10 7.5409e-11 -1.7137e-10) (1.59824e-09 1.32804e-11 -5.57237e-10) (4.24077e-09 5.80666e-10 1.05109e-09) (4.42375e-09 1.00986e-09 2.81709e-09) (2.59522e-09 1.10342e-09 3.17775e-09) (5.96923e-10 6.04105e-10 1.44965e-09) (3.27197e-11 1.60052e-10 2.87161e-10) (5.55785e-12 2.29295e-11 3.16661e-11) (2.01326e-11 5.82879e-12 1.77208e-11) (5.38342e-11 -9.17543e-12 3.05108e-11) (2.60293e-11 -1.65755e-11 -3.80755e-12) (-2.07359e-11 -7.53615e-11 -1.70577e-10) (-4.49236e-10 -2.05577e-10 -7.875e-10) (-6.24204e-10 -1.45441e-10 -5.99225e-10) (-2.69081e-10 -7.25081e-11 -9.64047e-11) (-8.11266e-11 -4.21408e-11 2.4006e-11) (-7.44436e-12 -3.06465e-11 3.86896e-11) (9.02899e-11 -6.79808e-11 8.62178e-11) (2.14799e-10 -1.1548e-10 6.33356e-11) (7.51262e-11 -4.94605e-11 -4.16991e-11) (-8.40606e-11 1.56333e-11 -1.77617e-10) (-1.03081e-09 4.64151e-10 -7.75511e-10) (-1.25296e-09 7.71174e-10 -7.19381e-10) (-1.55531e-10 2.061e-10 -9.14201e-11) (6.13173e-11 4.17897e-11 4.05282e-11) (3.61864e-10 -7.97985e-11 3.6253e-10) (5.53306e-11 -1.2545e-10 2.93539e-10) (-4.91982e-10 -1.03314e-10 1.77395e-10) (-1.99019e-09 -2.30114e-11 -4.51771e-10) (-8.99979e-10 -2.71331e-11 -6.62238e-10) (1.77719e-11 -4.05665e-11 -1.17385e-10) (3.76109e-10 -1.80149e-10 5.72171e-11) (7.91669e-10 -5.68613e-10 9.37926e-10) (3.40448e-10 -5.42091e-10 1.24812e-09) (-1.93859e-11 -9.58481e-12 3.65951e-11) (-1.34448e-09 4.83082e-10 -2.20074e-09) (-7.3198e-09 7.05056e-10 -9.68631e-09) (-5.9026e-09 4.91405e-10 -4.26799e-09) (-8.74995e-10 4.3912e-10 -1.12914e-10) (3.53226e-11 1.78563e-10 8.13547e-11) (7.29724e-10 2.36254e-10 7.31274e-11) (2.59523e-09 2.65528e-10 1.0071e-10) (5.41015e-09 9.38718e-10 1.83942e-09) (3.03664e-09 7.76151e-10 2.06274e-09) (7.33597e-10 3.86072e-10 1.15078e-09) (3.70589e-11 1.33606e-10 3.80689e-10) (-1.26058e-11 2.40683e-11 8.6694e-11) (1.14054e-11 1.03539e-12 2.68881e-11) (6.0102e-11 -2.19552e-12 3.92633e-11) (7.00477e-11 3.30878e-12 7.17361e-12) (4.50905e-11 8.72938e-12 -8.24903e-11) (-1.44065e-10 1.16984e-11 -6.42607e-10) (-6.53527e-10 -5.07626e-11 -1.05061e-09) (-4.19755e-10 -8.45725e-11 -3.46332e-10) (-8.78526e-11 -5.62013e-11 3.12502e-12) (-1.58392e-11 -9.15962e-11 9.67147e-11) (1.40571e-10 -1.89914e-10 2.75364e-10) (3.51142e-10 -2.23933e-10 3.62064e-10) (1.97855e-10 -8.04452e-11 9.78621e-11) (1.5048e-11 3.27154e-12 -3.03077e-11) (-5.08994e-10 3.376e-10 -7.25046e-10) (-2.63548e-09 1.31324e-09 -2.0994e-09) (-2.40007e-09 9.7585e-10 -1.45509e-09) (-3.29234e-10 9.77538e-11 -1.49574e-10) (-4.86653e-12 -3.82771e-12 1.63841e-11) (-2.48354e-11 -2.63064e-11 1.32801e-10) (-3.42719e-10 1.07886e-11 1.64839e-10) (-1.11691e-09 3.13644e-11 -9.32995e-11) (-2.81902e-10 -9.89607e-11 -1.35244e-10) (9.55155e-11 -1.45892e-10 -6.94371e-11) (7.81514e-10 -4.15583e-10 -5.67157e-12) (1.03573e-09 -4.26913e-10 4.10754e-10) (7.28487e-10 -4.33726e-10 9.5579e-10) (1.40594e-10 -1.96308e-10 7.81586e-10) (-2.39459e-11 3.6996e-11 1.26261e-11) (-1.10648e-09 1.46783e-09 -3.08088e-09) (-6.86398e-09 1.69625e-09 -1.11142e-08) (-9.52093e-09 -9.09931e-11 -6.11701e-09) (-2.33238e-09 2.18686e-10 -3.76992e-11) (2.55439e-11 1.23046e-10 1.8348e-10) (1.78148e-09 4.8418e-10 6.70803e-10) (4.83872e-09 7.74215e-10 1.08266e-09) (5.55462e-09 9.50124e-10 1.83213e-09) (2.1406e-09 4.57064e-10 1.33504e-09) (2.61748e-10 1.03402e-10 4.03678e-10) (-4.92909e-12 1.66528e-11 9.11004e-11) (-3.60842e-12 -6.61552e-13 2.30111e-11) (1.37487e-11 -2.86669e-12 1.63744e-11) (4.53022e-11 3.53957e-12 1.16088e-11) (5.49511e-11 2.09043e-11 -3.72482e-11) (2.70394e-11 7.05172e-11 -2.72568e-10) (-3.0671e-10 1.08511e-10 -7.83552e-10) (-5.52622e-10 1.38567e-11 -6.63045e-10) (-1.98118e-10 -6.08335e-11 -1.04915e-10) (-3.41454e-11 -7.63597e-11 5.18716e-11) (1.54668e-10 -2.82525e-10 3.58494e-10) (5.62522e-10 -4.7052e-10 7.84091e-10) (5.43546e-10 -2.92965e-10 6.35173e-10) (1.09835e-10 -1.59059e-11 8.58772e-11) (-3.45786e-13 5.18562e-11 -5.44762e-11) (-7.87937e-10 7.57634e-10 -1.09237e-09) (-3.04232e-09 1.63941e-09 -2.60982e-09) (-2.72453e-09 7.59489e-10 -1.71205e-09) (-7.03221e-10 -1.89308e-11 -2.53513e-10) (-2.24113e-10 -5.40096e-11 6.51958e-11) (-4.72551e-10 1.24614e-12 1.86464e-10) (-6.72897e-10 3.71308e-11 9.65293e-11) (-5.94174e-11 -3.75821e-11 6.67197e-12) (1.75302e-10 -2.19992e-10 2.33448e-11) (4.36806e-10 -3.26121e-10 -1.24719e-11) (3.57722e-10 -1.63266e-10 6.9945e-12) (5.63859e-10 -2.14959e-10 3.19669e-10) (5.86926e-10 -3.96332e-10 9.59115e-10) (8.00207e-11 -1.3904e-10 5.33896e-10) (-9.35118e-12 7.31781e-11 -3.01904e-11) (-2.52794e-10 2.40846e-09 -4.22863e-09) (-4.31014e-09 2.5933e-09 -9.75294e-09) (-8.7174e-09 -3.86476e-11 -4.90002e-09) (-4.01013e-09 -2.44432e-10 4.04077e-10) (-8.81636e-11 5.48869e-11 2.69679e-10) (1.5729e-09 4.16992e-10 7.44864e-10) (5.33286e-09 9.94189e-10 1.34113e-09) (4.0593e-09 6.9248e-10 1.08964e-09) (1.40803e-09 1.83681e-10 6.76903e-10) (1.4117e-10 1.63278e-11 1.66143e-10) (-4.23557e-12 8.63364e-13 4.44219e-11) (-4.84357e-12 6.07823e-13 1.82696e-11) (5.25682e-12 1.1582e-12 4.54498e-12) (4.71936e-11 1.04339e-11 -1.85551e-11) (1.12958e-10 4.30747e-11 -1.58797e-10) (1.24536e-11 8.64444e-11 -3.81897e-10) (-3.10725e-10 1.11976e-10 -5.38673e-10) (-3.72809e-10 2.32413e-11 -2.94308e-10) (-6.51676e-11 -3.74837e-11 -4.333e-12) (4.96381e-11 -1.81919e-10 1.89728e-10) (5.5403e-10 -5.78095e-10 8.54721e-10) (7.06122e-10 -5.6274e-10 1.08023e-09) (2.07314e-10 -1.42369e-10 3.97992e-10) (4.76035e-12 4.46713e-12 9.2051e-12) (-3.85382e-11 1.83506e-10 -1.57648e-10) (-5.43962e-10 9.19232e-10 -1.03447e-09) (-1.5881e-09 1.18499e-09 -1.65557e-09) (-1.62626e-09 3.81728e-10 -1.06528e-09) (-9.25961e-10 -1.07734e-10 -2.80556e-10) (-8.08202e-10 -1.25723e-10 6.41456e-11) (-7.24357e-10 -4.70786e-11 1.76592e-10) (-7.82032e-11 -5.46338e-11 6.39233e-11) (1.84261e-10 -2.392e-10 1.33211e-10) (2.20109e-10 -1.96837e-10 3.94509e-11) (1.8742e-11 -1.62897e-11 -1.73904e-11) (3.05445e-11 -6.59258e-12 -5.71495e-12) (4.33538e-10 -1.57287e-10 3.34666e-10) (5.10925e-10 -4.67148e-10 9.6628e-10) (4.24444e-12 -1.02033e-10 1.93674e-10) (1.43208e-11 1.80239e-10 -3.02269e-10) (7.99248e-10 3.3393e-09 -6.32296e-09) (-1.88799e-09 2.46967e-09 -6.34951e-09) (-3.89902e-09 7.58218e-11 -1.45761e-09) (-3.08512e-09 -5.55944e-10 1.15686e-09) (-2.00568e-10 -2.46066e-11 4.48518e-10) (8.38776e-10 2.4085e-10 4.69208e-10) (3.80963e-09 8.35178e-10 8.42656e-10) (2.51289e-09 3.44918e-10 4.96796e-10) (9.86445e-10 3.9074e-11 3.74292e-10) (1.11025e-10 1.29545e-12 1.32828e-10) (-1.03549e-11 9.49167e-12 7.41154e-11) (-7.44816e-12 9.37844e-12 2.85025e-11) (1.15506e-11 4.48489e-12 2.49128e-13) (1.61209e-10 2.25517e-11 -1.20463e-10) (2.19843e-10 5.33635e-11 -3.5606e-10) (-3.81431e-11 9.4249e-11 -3.94172e-10) (-3.54351e-10 1.23999e-10 -3.84618e-10) (-1.80578e-10 5.16605e-12 -8.65118e-11) (-8.22582e-12 -4.36875e-11 3.47449e-11) (3.60023e-10 -4.34367e-10 5.69874e-10) (6.97225e-10 -6.6053e-10 1.20995e-09) (1.86705e-10 -2.74162e-10 7.0088e-10) (-2.55614e-11 -1.86045e-11 8.14282e-11) (-1.90417e-11 1.79786e-11 -1.68378e-11) (-3.94842e-11 2.83052e-10 -3.36211e-10) (-1.20034e-10 7.36608e-10 -7.53976e-10) (-4.33761e-10 6.09924e-10 -6.90535e-10) (-6.26978e-10 1.88108e-10 -4.42512e-10) (-8.2587e-10 -9.00983e-11 -2.23931e-10) (-8.76043e-10 -1.73051e-10 4.89241e-11) (-2.28701e-10 -1.21372e-10 1.39582e-10) (8.46219e-11 -2.30186e-10 2.04832e-10) (1.3978e-10 -1.94876e-10 1.10139e-10) (-7.0803e-14 -3.56459e-12 -2.35013e-12) (-1.27967e-11 1.26247e-11 -2.47257e-11) (2.66402e-11 4.12257e-12 4.49826e-12) (4.43543e-10 -1.77294e-10 3.98152e-10) (1.76088e-10 -3.43245e-10 5.19671e-10) (-5.79952e-11 -6.70131e-11 9.54236e-12) (-7.4562e-11 4.58842e-10 -1.90489e-09) (1.35039e-09 3.71884e-09 -8.29521e-09) (-5.7109e-10 1.4531e-09 -2.7149e-09) (-8.03952e-10 2.90586e-12 9.92101e-11) (-1.46808e-09 -5.65528e-10 1.52599e-09) (-1.82475e-10 -7.88556e-11 5.62902e-10) (3.76904e-10 1.40649e-10 2.49155e-10) (2.05851e-09 5.20321e-10 3.79545e-10) (1.35677e-09 1.40414e-10 2.54957e-10) (4.58967e-10 6.21431e-12 2.35962e-10) (3.398e-11 1.13943e-11 1.2844e-10) (-4.47018e-11 3.16465e-11 1.13684e-10) (-9.25491e-13 9.72839e-12 1.40795e-11) (9.51825e-11 2.11485e-11 -4.31845e-11) (4.59145e-10 4.29806e-11 -3.98427e-10) (2.42607e-10 7.10148e-11 -4.82633e-10) (-1.05218e-10 1.03652e-10 -3.41629e-10) (-2.0652e-10 7.12566e-11 -1.75786e-10) (-9.09166e-12 -3.86564e-12 -2.57758e-14) (1.58895e-10 -1.9183e-10 2.37584e-10) (5.68687e-10 -5.8075e-10 1.02226e-09) (1.50722e-10 -3.46597e-10 9.89959e-10) (-1.42256e-10 -6.53103e-11 3.11794e-10) (-6.59657e-11 -5.96301e-13 2.77577e-12) (-4.26715e-11 4.32138e-11 -1.72126e-10) (1.09368e-10 2.88555e-10 -5.40989e-10) (1.26464e-10 5.66501e-10 -5.82714e-10) (-8.73497e-11 3.56877e-10 -3.16622e-10) (-2.46839e-10 1.08966e-10 -1.72471e-10) (-5.85507e-10 -6.48561e-11 -1.1812e-10) (-4.08502e-10 -1.71746e-10 7.85883e-11) (-4.21919e-11 -1.92925e-10 1.83861e-10) (5.8823e-11 -2.26493e-10 1.92673e-10) (-1.83277e-11 -2.15591e-11 8.07811e-12) (-1.04694e-10 3.8087e-11 -5.53821e-11) (-6.21756e-12 2.21964e-11 -1.29453e-11) (1.39192e-10 1.08853e-11 6.48507e-11) (3.18689e-10 -1.57938e-10 3.20108e-10) (-4.03404e-11 -1.50075e-10 1.32535e-10) (-5.97786e-10 -2.75899e-10 -4.48406e-10) (-7.91662e-10 5.85319e-10 -4.96244e-09) (7.21415e-10 2.78708e-09 -7.09173e-09) (-5.28055e-13 4.49157e-10 -5.36151e-10) (-1.00114e-10 -3.98309e-11 3.96025e-10) (-3.91086e-10 -5.13072e-10 1.62274e-09) (-5.91315e-11 -7.69192e-11 4.5678e-10) (1.43862e-10 7.1569e-11 1.05497e-10) (9.59087e-10 2.52336e-10 1.45867e-10) (2.30425e-10 2.96982e-11 9.60721e-11) (3.06709e-11 7.59982e-12 9.68375e-11) (-9.35695e-11 3.32123e-11 1.81169e-10) (-5.4325e-11 3.1446e-11 7.80713e-11) (1.11222e-11 6.9565e-12 -1.6601e-12) (4.16703e-10 4.98913e-11 -2.8952e-10) (7.39557e-10 7.69813e-11 -7.50417e-10) (1.94903e-10 9.10697e-11 -4.73249e-10) (-5.04886e-11 6.54821e-11 -1.84334e-10) (-6.68924e-12 3.66628e-12 -9.07553e-12) (5.68491e-11 -4.55253e-11 6.6982e-11) (3.69635e-10 -3.59992e-10 6.92002e-10) (8.48747e-11 -3.54496e-10 1.12634e-09) (-2.81753e-10 -8.93763e-11 6.81984e-10) (-1.38067e-10 8.3268e-13 7.39761e-11) (-5.01535e-11 -1.38948e-12 -1.05308e-10) (1.30957e-10 4.18788e-11 -6.31652e-10) (3.42416e-10 3.0348e-10 -8.12191e-10) (1.93415e-10 4.40262e-10 -4.61749e-10) (-2.31673e-11 2.09359e-10 -1.49568e-10) (-1.35639e-10 5.81186e-11 -5.91702e-11) (-3.00524e-10 -6.35216e-11 -2.74818e-13) (-1.22393e-10 -1.42938e-10 1.00617e-10) (-2.87483e-11 -2.11763e-10 2.01813e-10) (-1.01687e-10 -8.26901e-11 6.8769e-11) (-3.94978e-10 2.76005e-11 -7.19437e-11) (-1.38571e-10 8.26316e-11 -7.03224e-11) (2.8255e-11 2.10842e-11 4.98481e-12) (3.67032e-10 -2.12525e-11 1.94591e-10) (1.5367e-10 -8.80369e-11 1.65328e-10) (-1.67933e-10 -1.04295e-10 1.18204e-11) (-2.29254e-09 -5.23569e-10 -1.92728e-09) (-2.02406e-09 3.66559e-10 -6.43492e-09) (3.1109e-10 1.20895e-09 -3.50175e-09) (2.58999e-10 1.5634e-10 -2.33093e-11) (9.97483e-10 -2.18026e-10 1.58066e-09) (4.71965e-10 -4.2895e-10 1.53067e-09) (3.03853e-11 -1.45331e-11 2.24965e-10) (4.03161e-11 3.21019e-11 2.92258e-11) (2.44879e-10 7.95627e-11 4.1388e-11) (-3.29875e-12 6.67234e-12 2.24592e-11) (-9.85083e-11 2.00616e-11 1.4421e-10) (-1.26955e-10 3.57709e-11 1.54395e-10) (-3.25839e-12 5.53948e-12 7.72307e-12) (1.32077e-10 2.78744e-11 -9.04416e-11) (8.10502e-10 7.42534e-11 -7.16372e-10) (7.45515e-10 1.01083e-10 -8.67161e-10) (1.76032e-10 7.72361e-11 -3.51763e-10) (1.70766e-11 1.46057e-11 -4.08777e-11) (2.61465e-11 -5.11969e-12 1.69945e-11) (1.79383e-10 -1.3263e-10 3.82076e-10) (-1.0737e-12 -2.71633e-10 1.06032e-09) (-3.77564e-10 -1.20621e-10 1.03388e-09) (-1.82307e-10 1.15371e-11 2.13544e-10) (-1.1593e-11 2.38489e-12 -1.78555e-11) (1.46242e-10 -2.50881e-11 -5.3554e-10) (4.12272e-10 2.41655e-11 -1.10094e-09) (2.61391e-10 2.37927e-10 -7.2101e-10) (7.57275e-11 2.58365e-10 -2.6797e-10) (-2.28407e-11 9.63517e-11 -5.18139e-11) (-5.29123e-11 1.70239e-11 5.75698e-13) (-7.95528e-11 -5.00644e-11 4.77383e-11) (-6.43285e-11 -1.47644e-10 1.33091e-10) (-1.80735e-10 -1.39423e-10 1.34874e-10) (-7.14374e-10 -3.63179e-11 -3.55216e-12) (-7.36041e-10 1.77089e-10 -2.1671e-10) (-1.03599e-11 1.65126e-11 -8.93931e-12) (2.66343e-10 2.23885e-11 8.79391e-11) (5.62839e-10 -7.34485e-11 2.86828e-10) (3.43889e-11 -1.82907e-11 3.9818e-11) (-4.6974e-10 -7.35391e-11 -1.42658e-10) (-3.41761e-09 -4.08342e-10 -2.75328e-09) (-1.56695e-09 -1.50985e-11 -3.88742e-09) (4.66894e-10 2.16415e-10 -8.40914e-10) (1.8572e-09 1.46714e-10 6.01785e-10) (2.91333e-09 -4.89877e-10 2.65382e-09) (7.05521e-10 -2.32553e-10 1.05778e-09) (2.40715e-11 1.46083e-11 6.61918e-11) (6.22745e-12 1.65754e-11 4.19595e-12) (7.27888e-12 1.00688e-11 3.78664e-12) (-2.75727e-11 1.2041e-11 4.103e-11) (-8.26539e-11 1.80877e-11 1.09393e-10) (-1.60388e-11 8.59814e-12 2.60404e-11) (1.93222e-11 7.03512e-12 -1.10907e-11) (4.0507e-10 4.5247e-11 -3.51805e-10) (8.44563e-10 6.85832e-11 -8.29096e-10) (5.51657e-10 7.95953e-11 -6.08031e-10) (1.58596e-10 3.8494e-11 -1.5608e-10) (4.13318e-11 5.13801e-12 2.64585e-12) (8.7151e-11 -2.2595e-11 1.74498e-10) (-1.95015e-11 -1.17886e-10 7.45739e-10) (-3.56597e-10 -1.25644e-10 1.10509e-09) (-2.18727e-10 -3.96341e-12 4.10845e-10) (-1.14253e-12 8.20785e-13 8.98829e-13) (1.7757e-10 5.78092e-12 -3.03392e-10) (4.78443e-10 -4.3844e-11 -9.71671e-10) (1.77277e-10 2.85553e-11 -7.22367e-10) (1.06053e-11 1.16235e-10 -3.2133e-10) (-2.39105e-12 1.085e-10 -1.0428e-10) (-4.16138e-12 2.89485e-11 -7.39715e-12) (-4.27751e-12 5.14115e-13 8.59176e-12) (-2.4443e-11 -5.41638e-11 6.94064e-11) (-1.56859e-10 -1.22837e-10 1.24175e-10) (-7.79864e-10 -1.19767e-10 1.02683e-10) (-1.54626e-09 1.72727e-10 -2.54728e-10) (-2.76235e-10 9.70696e-11 -1.04982e-10) (4.25261e-11 1.00333e-11 6.2408e-12) (6.9384e-10 -6.31971e-11 2.53622e-10) (4.27645e-10 -5.21539e-11 1.99318e-10) (1.03454e-12 2.71631e-13 1.0319e-12) (-5.358e-10 4.0797e-11 -2.49322e-10) (-1.61359e-09 -1.3729e-10 -1.2612e-09) (-1.50758e-10 -1.21712e-10 -7.15381e-10) (7.4232e-10 -3.23264e-11 -2.15106e-10) (2.78624e-09 -1.79193e-10 1.21291e-09) (1.65529e-09 -3.32666e-10 1.52037e-09) (1.02565e-10 -2.99138e-11 2.27587e-10) (-7.46612e-12 1.0032e-11 8.00246e-12) (-8.07287e-12 1.85e-11 -3.10776e-12) (-2.82956e-12 7.0041e-12 3.01005e-12) (-7.52721e-12 8.03923e-12 2.35565e-11) (-3.38274e-12 4.02906e-12 1.39116e-11) (5.39986e-12 1.97404e-12 -1.01291e-12) (1.4022e-10 1.58495e-11 -1.11443e-10) (4.30641e-10 2.5479e-11 -4.0141e-10) (4.97195e-10 3.61202e-11 -4.72735e-10) (3.02003e-10 4.07506e-11 -2.31424e-10) (1.07614e-10 1.83247e-11 -1.99269e-11) (7.49224e-11 7.45841e-12 7.96277e-11) (3.56204e-11 -1.71279e-11 3.73101e-10) (-1.77415e-10 -5.51817e-11 7.61675e-10) (-1.78396e-10 -2.2437e-11 4.88392e-10) (-1.1627e-12 1.46277e-12 1.83847e-11) (1.50686e-10 1.18675e-11 -1.30439e-10) (5.51584e-10 -5.8403e-12 -7.02496e-10) (1.80634e-10 -1.49519e-11 -4.89099e-10) (-3.43314e-11 1.69405e-11 -1.99021e-10) (-3.4242e-11 4.22564e-11 -9.35772e-11) (2.04112e-12 3.22594e-11 -2.64771e-11) (7.93661e-12 1.02254e-11 2.08048e-12) (8.3349e-12 -4.02552e-12 2.07392e-11) (-4.14304e-11 -4.18133e-11 5.74849e-11) (-5.0031e-10 -1.19251e-10 1.17298e-10) (-1.52389e-09 2.11459e-11 -7.48633e-11) (-9.41719e-10 1.77923e-10 -2.31553e-10) (-4.45632e-12 4.41701e-12 -2.93393e-12) (3.87414e-10 -2.76496e-11 1.15849e-10) (7.2024e-10 -1.00812e-10 2.80496e-10) (1.34632e-10 -3.39252e-12 4.57415e-11) (-2.566e-12 6.64526e-12 -6.08924e-12) (-1.9776e-10 5.63974e-11 -1.29151e-10) (-1.15518e-10 -2.15731e-11 -1.01009e-10) (6.47462e-11 -5.51386e-11 -5.76049e-11) (7.96647e-10 -1.61194e-10 9.77855e-11) (1.02762e-09 -1.78639e-10 5.92573e-10) (1.53937e-10 -6.29499e-11 2.54892e-10) (-2.01291e-11 8.0736e-13 2.53534e-11) (-3.34339e-11 2.06928e-11 -3.68746e-12) (-7.24845e-12 1.33207e-11 -3.16434e-12) (-1.34927e-12 5.79341e-12 4.54149e-12) (1.52584e-11 5.83997e-12 8.83677e-12) (2.56432e-11 3.84218e-12 -4.45337e-13) (7.35211e-11 4.03228e-12 -3.97798e-11) (1.47257e-10 3.23355e-12 -1.2536e-10) (2.03621e-10 5.61442e-12 -1.90525e-10) (2.21824e-10 1.6911e-11 -1.57989e-10) (1.70618e-10 2.2174e-11 -4.37942e-11) (1.20962e-10 1.87019e-11 5.19959e-11) (8.7532e-11 1.27622e-11 1.71362e-10) (3.06726e-12 4.66071e-13 3.52598e-10) (-5.09642e-11 -7.51448e-12 3.34906e-10) (1.00308e-11 -1.207e-12 5.4941e-11) (9.4213e-11 1.16724e-12 -3.30462e-11) (4.31849e-10 2.5274e-12 -3.82039e-10) (2.11157e-10 -4.67535e-12 -3.27825e-10) (-3.77051e-12 -1.48901e-12 -8.57816e-11) (-2.7588e-11 4.83734e-12 -3.71166e-11) (-5.54202e-12 8.59474e-12 -1.59882e-11) (1.15776e-11 1.17293e-11 -8.08426e-12) (2.49793e-11 9.35424e-12 6.43568e-12) (4.77262e-12 -2.98922e-12 1.15177e-11) (-9.27501e-11 -3.02818e-11 4.24678e-11) (-8.15168e-10 -5.29472e-11 4.58484e-11) (-1.27524e-09 1.08741e-10 -1.5811e-10) (-1.50063e-10 4.07382e-11 -4.05262e-11) (6.80618e-11 1.50388e-12 2.13554e-11) (6.33967e-10 -8.94042e-11 2.53223e-10) (3.03155e-10 -4.21182e-11 1.22357e-10) (2.18069e-11 4.03114e-12 -2.57363e-12) (-3.43475e-12 1.79741e-11 -2.59901e-11) (-1.19678e-11 9.79212e-12 -1.48747e-11) (1.80979e-12 -2.22133e-12 2.20385e-13) (1.56174e-10 -8.37682e-11 2.47405e-11) (3.73148e-10 -1.13837e-10 1.24094e-10) (1.6212e-10 -5.12919e-11 1.48415e-10) (-6.8552e-12 -9.5904e-12 3.78455e-11) (-4.659e-11 4.42477e-12 7.65004e-12) (-2.34333e-11 1.37953e-11 -8.71896e-12) (3.03235e-13 5.3739e-12 -9.96156e-13) (8.92297e-12 7.37771e-12 5.43706e-12) (3.19275e-10 2.83479e-11 1.01495e-11) (2.99995e-10 6.73959e-12 -3.32988e-11) (2.4176e-10 -2.35739e-12 -7.11903e-11) (2.30748e-10 -3.05437e-12 -1.05531e-10) (3.10441e-10 4.74662e-12 -1.35939e-10) (4.52593e-10 2.35505e-11 -1.00415e-10) (5.41376e-10 4.45506e-11 4.14348e-11) (4.71678e-10 4.13935e-11 2.02584e-10) (2.86291e-10 2.5102e-11 2.69386e-10) (1.63602e-10 1.18072e-11 2.53203e-10) (1.37014e-10 1.75569e-12 1.4706e-10) (2.56807e-10 -4.96447e-12 3.85882e-11) (6.17238e-10 -1.05855e-11 -1.97843e-10) (5.7161e-10 -4.73886e-12 -3.25385e-10) (1.55594e-10 -1.06243e-12 -1.19733e-10) (1.3968e-11 -3.11931e-13 -1.42115e-11) (5.99892e-12 7.59879e-13 -5.03318e-12) (4.52066e-11 1.03201e-11 -1.84449e-11) (1.69066e-10 3.48315e-11 -2.43617e-11) (2.02824e-10 2.49358e-11 1.86222e-11) (4.4416e-11 -3.14135e-12 1.93038e-11) (-9.69451e-12 -2.70068e-12 5.94843e-12) (-2.49985e-10 9.27952e-12 8.15241e-13) (-2.13744e-10 3.80908e-11 -3.57978e-11) (1.63264e-12 1.17898e-12 4.38321e-13) (4.51842e-10 -2.98273e-11 1.49536e-10) (6.57181e-10 -7.97718e-11 2.397e-10) (2.58521e-10 -1.71087e-11 5.05776e-11) (9.79253e-11 1.62012e-11 -3.37865e-11) (6.4501e-11 2.90931e-11 -4.38198e-11) (4.98817e-11 1.19837e-11 -2.3683e-12) (1.73579e-10 -3.29192e-11 5.90892e-11) (4.40928e-10 -1.33896e-10 1.09061e-10) (5.00709e-10 -1.15829e-10 1.61624e-10) (1.90674e-10 -4.43985e-11 1.22356e-10) (1.00375e-11 -4.90366e-12 1.4878e-11) (-2.44393e-14 2.27826e-14 -1.46484e-14) (8.01029e-12 4.86633e-12 -3.51774e-12) (9.37917e-11 2.79149e-11 -1.83718e-12) (2.43513e-10 4.23753e-11 2.10459e-11) (2.46983e-09 6.56918e-11 -1.67425e-11) (1.98237e-09 -3.77671e-12 -1.13557e-10) (1.44589e-09 -2.34605e-11 -1.86597e-10) (1.3426e-09 -1.97279e-11 -2.51534e-10) (1.75855e-09 6.69764e-12 -2.67264e-10) (2.52741e-09 5.70759e-11 -7.79104e-11) (3.14097e-09 1.19189e-10 3.62143e-10) (2.91658e-09 1.22298e-10 7.48359e-10) (2.22786e-09 9.585e-11 8.30836e-10) (1.89655e-09 6.21534e-11 7.17521e-10) (2.20776e-09 2.06332e-11 4.71199e-10) (2.94902e-09 -2.53664e-11 6.38787e-12) (3.13092e-09 -3.40007e-11 -4.7736e-10) (2.14828e-09 -8.1352e-12 -4.65527e-10) (1.00176e-09 -2.40762e-14 -1.63885e-10) (5.19216e-10 -3.83018e-12 -2.17238e-11) (5.4439e-10 3.70231e-12 -1.42036e-11) (9.45673e-10 4.42429e-11 -6.54777e-11) (1.48698e-09 9.93898e-11 -6.17147e-11) (1.44714e-09 7.55568e-11 4.82486e-11) (5.65157e-10 7.01883e-12 6.49557e-11) (2.57554e-11 1.23972e-12 5.13044e-12) (-4.2973e-12 1.86095e-12 -3.75373e-13) (2.89147e-12 1.95207e-12 -1.20186e-13) (4.52219e-10 1.88475e-11 1.0065e-10) (1.63288e-09 -7.69401e-11 4.4363e-10) (1.82142e-09 -1.10762e-10 4.59834e-10) (1.37331e-09 -2.65875e-11 1.36231e-10) (1.17625e-09 6.96881e-11 -1.05324e-10) (1.22253e-09 1.29174e-10 -7.1286e-11) (1.53681e-09 8.10756e-11 2.41603e-10) (2.09669e-09 -1.19459e-10 5.34607e-10) (2.46829e-09 -3.00559e-10 5.47817e-10) (2.20257e-09 -2.42419e-10 5.96801e-10) (1.11779e-09 -1.15363e-10 4.23624e-10) (3.36058e-10 -3.28153e-11 1.16323e-10) (2.17487e-10 -1.26843e-12 1.78834e-11) (5.51888e-10 4.12574e-11 -3.09456e-12) (1.39259e-09 1.08697e-10 3.16867e-11) (2.25926e-09 1.25824e-10 5.54266e-11) (4.82155e-09 2.14275e-11 -2.61129e-10) (3.26937e-09 -4.36347e-11 -2.92093e-10) (2.0284e-09 -4.88526e-11 -2.79093e-10) (1.771e-09 -3.26122e-11 -2.55573e-10) (2.40276e-09 -4.78591e-12 -1.54902e-10) (3.79921e-09 4.18097e-11 1.98526e-10) (5.06493e-09 1.05862e-10 7.64118e-10) (5.24041e-09 1.32683e-10 1.14639e-09) (5.10727e-09 1.33984e-10 1.18473e-09) (5.63198e-09 1.02301e-10 9.69116e-10) (6.49156e-09 2.22478e-11 4.3899e-10) (6.20797e-09 -5.72319e-11 -2.58088e-10) (4.32819e-09 -5.18287e-11 -5.28174e-10) (2.31587e-09 -1.48808e-11 -2.47841e-10) (1.22088e-09 -7.27122e-12 4.5104e-11) (8.40738e-10 -1.26369e-11 1.32581e-10) (8.09509e-10 -1.00881e-11 7.16792e-11) (1.10833e-09 1.31962e-11 -5.61756e-11) (1.46684e-09 3.83476e-11 -1.50206e-10) (1.11424e-09 3.09852e-11 -9.04257e-11) (2.6655e-10 9.17774e-12 -1.26194e-11) (1.55977e-11 2.80857e-12 -9.86777e-13) (1.59519e-11 4.48873e-12 1.12804e-12) (3.88115e-10 2.94844e-11 7.72688e-11) (2.02465e-09 1.22797e-11 5.09977e-10) (3.27031e-09 -1.10389e-10 9.78741e-10) (2.80939e-09 -1.2156e-10 8.20895e-10) (1.8739e-09 -4.20666e-11 3.26144e-10) (1.567e-09 3.39556e-11 8.90614e-11) (1.98698e-09 8.60983e-11 2.38785e-10) (3.05394e-09 6.40689e-11 7.68842e-10) (3.9788e-09 -9.09462e-11 1.12637e-09) (3.97587e-09 -2.31425e-10 1.01349e-09) (2.9542e-09 -1.74578e-10 8.87522e-10) (1.34916e-09 -7.85032e-11 4.99028e-10) (4.87951e-10 -2.51523e-11 1.3594e-10) (4.76434e-10 -3.73747e-12 2.39608e-11) (1.27783e-09 3.54108e-11 -3.65657e-11) (3.10392e-09 9.31582e-11 -9.07715e-11) (4.85483e-09 9.95196e-11 -1.71553e-10) (4.68557e-10 -1.8499e-12 -6.79989e-11) (2.53447e-10 -4.16223e-12 -4.25496e-11) (1.16596e-10 -3.01087e-12 -2.19556e-11) (8.59129e-11 -1.67676e-12 -1.14969e-11) (1.34293e-10 -5.59717e-13 -2.38931e-13) (2.6704e-10 1.40684e-12 2.9345e-11) (4.11142e-10 5.10988e-12 7.26027e-11) (4.94806e-10 7.34881e-12 9.82712e-11) (6.03087e-10 8.72853e-12 9.68761e-11) (7.62771e-10 6.77354e-12 6.55065e-11) (7.72867e-10 -2.62908e-13 2.85682e-12) (5.12244e-10 -4.94483e-12 -4.20561e-11) (2.37811e-10 -2.53789e-12 -2.81167e-11) (1.08212e-10 -8.04031e-13 5.20735e-12) (6.78452e-11 -1.05865e-12 2.65435e-11) (4.1083e-11 -1.39792e-12 2.32693e-11) (2.02612e-11 -9.18156e-13 4.94509e-12) (2.4223e-11 -5.01626e-13 -7.81884e-12) (3.59521e-11 -1.3813e-13 -2.10149e-11) (2.06709e-11 3.93525e-13 -1.26466e-11) (1.95053e-12 1.32494e-13 -1.6146e-12) (3.14275e-14 5.67748e-14 -1.7288e-13) (8.38565e-12 6.57763e-13 7.58924e-13) (1.42255e-10 3.23884e-12 2.97547e-11) (4.10147e-10 2.25994e-12 1.25679e-10) (4.51163e-10 -8.28801e-12 1.9242e-10) (2.41573e-10 -8.67875e-12 1.27602e-10) (7.0462e-11 -3.25882e-12 3.57791e-11) (2.70271e-11 -5.59553e-13 9.15886e-12) (4.9831e-11 8.21064e-13 1.75113e-11) (1.71865e-10 3.54572e-12 7.56292e-11) (3.49334e-10 2.29827e-12 1.41454e-10) (4.04323e-10 -7.24497e-12 1.2339e-10) (3.15071e-10 -6.54714e-12 1.01022e-10) (1.59703e-10 -4.13468e-12 6.14427e-11) (6.50374e-11 -2.38336e-12 1.82449e-11) (5.51718e-11 -1.47668e-12 7.10071e-13) (1.28485e-10 -3.43007e-13 -1.51612e-11) (3.23797e-10 2.19863e-12 -4.21791e-11) (5.21629e-10 3.23366e-12 -6.88729e-11) (4.86729e-10 -1.43593e-10 -8.00714e-10) (7.03038e-10 -1.27645e-10 -1.61413e-09) (3.7115e-10 -4.92844e-11 -1.31011e-09) (-1.81308e-11 -1.10593e-11 -3.80803e-10) (-9.63463e-11 -1.37727e-11 -4.31038e-11) (-3.83308e-10 -1.26653e-10 1.96831e-10) (-6.08196e-10 -4.8754e-10 6.7399e-10) (-3.28984e-10 -6.66415e-10 6.27268e-10) (-5.9585e-11 -2.50042e-10 1.21473e-10) (-2.10572e-11 -1.07396e-11 -2.23151e-11) (-3.00228e-10 3.15184e-10 -3.88288e-10) (-8.52818e-10 1.11552e-09 -9.41609e-10) (-8.36246e-10 1.02108e-09 -6.67047e-10) (-3.89613e-10 3.60759e-10 -8.37689e-11) (-1.88873e-10 9.16806e-11 1.57054e-10) (-2.07619e-10 -1.43554e-11 5.41712e-10) (-1.52832e-10 -6.18006e-11 7.583e-10) (-7.7203e-11 3.57757e-11 4.4019e-10) (-2.69081e-11 7.21812e-11 1.33478e-10) (-1.33931e-12 4.49504e-11 2.51026e-11) (9.1379e-12 1.34635e-11 -3.19228e-12) (6.0807e-11 -1.07404e-11 -4.11738e-11) (3.18966e-10 -2.14018e-10 -2.20367e-10) (7.15467e-10 -6.60727e-10 -5.11503e-10) (7.69276e-10 -8.47532e-10 -6.04584e-10) (3.96343e-10 -4.98043e-10 -3.3169e-10) (7.2576e-11 -1.27492e-10 -4.69182e-11) (-9.01683e-12 -3.48489e-11 2.27837e-11) (-1.76817e-10 -6.21761e-11 1.94213e-10) (-5.59926e-10 1.95144e-11 4.73953e-10) (-6.86184e-10 2.30331e-10 4.96684e-10) (-4.59046e-10 3.51174e-10 3.02263e-10) (-1.91207e-10 2.94288e-10 1.20472e-10) (-3.18472e-11 1.60905e-10 3.417e-11) (2.92166e-11 7.05422e-11 1.41336e-11) (8.09923e-11 4.44541e-11 2.75734e-11) (1.57176e-10 1.65049e-11 6.55509e-11) (1.69625e-10 -2.28778e-11 6.72053e-11) (1.27703e-10 -4.05297e-11 2.81027e-12) (1.94803e-10 -7.45081e-11 -1.57373e-10) (6.57951e-10 1.11236e-10 -1.5054e-09) (3.13097e-10 1.09005e-10 -1.64421e-09) (-6.35269e-11 3.73429e-11 -7.07793e-10) (-7.21741e-11 2.08007e-12 -9.11929e-11) (-5.82483e-11 -1.06494e-11 3.00687e-11) (-1.0882e-10 -1.067e-10 3.12074e-10) (-5.34987e-12 -4.02438e-10 7.727e-10) (1.09434e-10 -5.07651e-10 5.99175e-10) (2.33559e-11 -1.28491e-10 5.43774e-11) (-2.31052e-11 -6.0266e-12 -8.37678e-11) (-3.32287e-10 4.2076e-10 -7.21711e-10) (-7.24219e-10 1.10484e-09 -1.15478e-09) (-5.78132e-10 1.03824e-09 -8.00867e-10) (-2.05643e-10 4.93143e-10 -2.75312e-10) (-3.15219e-11 9.90164e-11 -9.70514e-12) (-1.6797e-11 1.88613e-11 8.15708e-11) (-9.74919e-11 -1.72784e-10 6.14217e-10) (-2.58591e-10 -4.77839e-10 1.14216e-09) (-2.12653e-10 -3.09198e-10 6.73492e-10) (-3.11682e-11 -5.64863e-11 1.04689e-10) (1.2002e-11 -1.12483e-11 2.51837e-12) (2.17073e-10 -9.18696e-11 -8.60183e-11) (7.56538e-10 -2.61014e-10 -3.33476e-10) (1.02675e-09 -2.56494e-10 -4.99528e-10) (6.9901e-10 -7.68387e-11 -4.00314e-10) (2.15155e-10 5.51523e-12 -1.43165e-10) (3.6349e-12 -1.95877e-13 -3.0203e-12) (-1.46994e-10 -4.94489e-11 7.13232e-11) (-1.64347e-09 -4.80902e-10 7.1404e-10) (-3.48754e-09 -8.76219e-10 1.28165e-09) (-2.36488e-09 -3.80123e-10 7.36082e-10) (-5.46548e-10 5.64088e-11 1.4812e-10) (-5.43543e-11 7.233e-11 2.18724e-11) (3.0854e-11 1.05241e-10 2.67546e-11) (1.19716e-10 1.1875e-10 6.33459e-11) (2.14958e-10 8.48365e-11 1.16371e-10) (2.94394e-10 2.81957e-11 1.39953e-10) (2.94975e-10 -8.82349e-12 6.58147e-11) (2.99276e-10 -9.35276e-12 -9.23294e-11) (4.96524e-10 2.72097e-11 -5.62105e-10) (5.86329e-10 2.56149e-10 -1.24024e-09) (4.56917e-10 3.27657e-11 -1.5218e-09) (8.2061e-11 -1.43396e-10 -7.14347e-10) (-3.21817e-11 -7.66184e-11 -1.05452e-10) (-4.37014e-11 -5.46316e-11 2.70031e-11) (-1.31448e-10 -1.44441e-10 2.79295e-10) (-2.32315e-10 -2.37719e-10 5.13231e-10) (-2.67844e-10 -2.03767e-10 2.66609e-10) (-1.94978e-10 -1.0044e-10 -3.08008e-11) (-1.62795e-10 -3.42099e-11 -3.3962e-10) (5.92815e-11 1.42148e-10 -7.71835e-10) (3.58618e-10 3.13221e-10 -7.67746e-10) (4.41601e-10 3.63098e-10 -4.51456e-10) (4.13373e-10 3.92453e-10 -2.11369e-10) (3.13089e-10 3.74913e-10 -5.3595e-11) (1.49754e-10 2.32397e-10 6.51414e-11) (4.88028e-11 1.08742e-10 1.65445e-10) (-2.31209e-11 -2.27334e-11 4.66107e-10) (-1.13029e-10 -3.1339e-10 7.42068e-10) (-9.05892e-11 -3.73791e-10 4.56234e-10) (-2.05964e-11 -1.67101e-10 9.40753e-11) (3.60112e-12 -3.52179e-11 -4.71921e-12) (1.19656e-11 -6.21814e-12 -2.21739e-11) (5.48814e-11 3.3459e-11 -7.56234e-11) (1.41557e-10 1.1136e-10 -1.40528e-10) (1.74538e-10 1.36375e-10 -1.19858e-10) (6.78576e-11 6.04449e-11 -2.20898e-11) (-1.62772e-12 6.42199e-12 8.10255e-12) (-3.03077e-10 -8.86068e-11 1.93558e-10) (-2.13395e-09 -9.8511e-10 7.92811e-10) (-4.36273e-09 -2.04559e-09 1.00476e-09) (-3.25471e-09 -1.19292e-09 5.68295e-10) (-7.70546e-10 -1.33293e-10 1.90982e-10) (-3.10145e-11 1.83815e-11 3.82443e-11) (8.153e-11 6.85197e-11 9.1627e-11) (2.58741e-10 1.3038e-10 1.92341e-10) (2.64125e-10 1.19513e-10 1.94833e-10) (1.67729e-10 8.60193e-11 9.6687e-11) (1.27857e-10 7.67046e-11 -1.73963e-11) (2.99306e-10 1.74852e-10 -3.50033e-10) (1.44123e-10 2.02044e-10 -5.08365e-10) (2.15793e-10 6.92871e-11 -7.7032e-10) (8.40875e-11 -6.76557e-11 -3.64589e-10) (-1.13229e-11 -3.05529e-11 -2.25465e-11) (-2.02113e-10 -1.30732e-10 1.6209e-10) (-9.93434e-10 -3.21756e-10 7.81917e-10) (-1.69699e-09 -3.3481e-10 7.94815e-10) (-1.19571e-09 -3.22113e-10 3.20406e-12) (-3.85367e-10 -3.8344e-10 -4.955e-10) (3.39483e-10 -7.19059e-10 -1.19635e-09) (1.16468e-09 -6.04733e-10 -1.34072e-09) (1.20378e-09 -7.41583e-11 -7.25612e-10) (9.89598e-10 3.05172e-10 -2.29965e-10) (8.84346e-10 5.95869e-10 9.91958e-11) (8.57623e-10 8.83339e-10 4.14699e-10) (7.65349e-10 9.91125e-10 6.57718e-10) (4.29376e-10 6.41697e-10 6.10626e-10) (9.80202e-11 2.31107e-10 4.07146e-10) (-8.55115e-11 3.07745e-11 3.0225e-10) (-2.99726e-10 -9.76029e-11 3.30702e-10) (-4.35837e-10 -1.82258e-10 2.66249e-10) (-2.21197e-10 -1.18442e-10 7.2478e-11) (-2.20636e-11 -2.34558e-11 -1.31767e-11) (4.77435e-11 -9.9435e-12 -9.73402e-11) (3.19542e-10 9.76151e-11 -3.58716e-10) (4.67389e-10 2.10551e-10 -3.63683e-10) (2.34183e-10 1.19995e-10 -9.47786e-11) (2.28016e-11 1.30571e-11 1.0204e-11) (-6.60206e-11 -1.6931e-11 8.58698e-11) (-1.07453e-09 -2.78143e-10 6.13884e-10) (-3.34592e-09 -8.61051e-10 1.47335e-09) (-3.27196e-09 -1.1611e-09 1.55572e-09) (-1.07641e-09 -6.53579e-10 7.08637e-10) (-1.00261e-10 -1.40738e-10 1.25914e-10) (3.47588e-12 -7.56118e-12 5.10757e-12) (8.70086e-12 3.67225e-12 -3.12798e-12) (1.20413e-11 2.23545e-11 -1.0489e-11) (4.83535e-12 4.15922e-11 -1.27968e-11) (4.63219e-12 6.94052e-11 -3.20998e-11) (3.88833e-11 1.39779e-10 -1.49495e-10) (1.02409e-10 9.18681e-11 -7.88783e-10) (3.27736e-10 -4.52834e-11 -5.94964e-10) (1.5575e-10 -2.36235e-11 -8.78258e-11) (1.32993e-11 -4.94913e-12 7.45978e-11) (-7.77766e-10 -3.25126e-11 9.29752e-10) (-3.47179e-09 -1.43876e-10 1.67872e-09) (-4.20025e-09 -4.76929e-10 2.43643e-10) (-1.82885e-09 -8.7144e-10 -9.36322e-10) (-2.83319e-10 -1.07349e-09 -1.11326e-09) (5.00102e-10 -8.01169e-10 -6.85409e-10) (6.18434e-10 -2.67839e-10 -1.13682e-10) (9.04182e-10 8.19249e-11 3.05428e-10) (1.16205e-09 4.44551e-10 7.34535e-10) (7.60592e-10 4.23643e-10 6.11877e-10) (2.46877e-10 2.13051e-10 2.32028e-10) (6.81638e-11 1.38166e-10 8.08798e-11) (4.37855e-11 2.07025e-10 7.52219e-11) (2.94703e-11 2.87644e-10 1.25799e-10) (-5.87567e-12 1.64756e-10 1.3669e-10) (-8.9856e-12 1.78074e-11 5.84807e-11) (1.04325e-13 -1.89985e-11 9.86087e-12) (2.79102e-11 -1.12613e-10 -9.47832e-11) (1.13487e-10 -2.18463e-10 -6.0311e-10) (1.87766e-10 -1.81888e-11 -1.04083e-09) (1.64389e-10 2.01989e-10 -6.33656e-10) (6.28636e-11 1.32674e-10 -1.13256e-10) (3.71859e-12 5.7284e-11 2.91091e-11) (-1.32042e-10 5.81748e-11 2.63317e-10) (-6.46953e-10 -1.80226e-10 9.19514e-10) (-1.0708e-09 -7.91731e-10 1.56537e-09) (-7.8819e-10 -1.17669e-09 1.46638e-09) (-3.72559e-10 -8.38666e-10 7.69589e-10) (-1.77138e-10 -2.93559e-10 2.05659e-10) (-6.23815e-11 -4.93659e-11 1.61182e-11) (-1.40267e-11 -1.75724e-13 -1.19475e-11) (-1.71137e-12 4.67606e-11 -6.62902e-11) (3.15669e-11 2.04343e-10 -1.92537e-10) (7.60184e-12 3.419e-10 -2.96146e-10) (-6.2925e-11 3.51932e-10 -4.1721e-10) (-7.26492e-11 2.6116e-10 -6.11687e-10) (3.90989e-10 -2.29663e-10 -1.60281e-09) (8.75283e-10 -1.48905e-10 -9.92582e-10) (1.38734e-09 3.97341e-10 -1.2213e-10) (1.4393e-09 1.20033e-09 1.09311e-09) (-1.94516e-10 9.58972e-10 1.46347e-09) (-2.86958e-09 4.61269e-10 1.76112e-09) (-5.1713e-09 -1.05325e-09 6.29777e-10) (-2.78936e-09 -1.76495e-09 -6.56667e-10) (-4.60314e-10 -1.05144e-09 -4.18312e-10) (1.97676e-10 -4.07854e-10 2.48962e-12) (9.27661e-10 -3.12536e-10 5.74997e-10) (2.0557e-09 1.37967e-10 1.56926e-09) (1.62776e-09 3.83598e-10 1.27408e-09) (3.56448e-10 1.04977e-10 2.48639e-10) (2.99045e-12 1.71888e-12 7.77119e-13) (-3.18244e-11 9.96639e-12 -1.79852e-11) (-9.04048e-11 5.53566e-11 -1.51097e-11) (-5.53946e-11 8.35234e-11 1.5223e-11) (-4.75449e-12 4.45412e-11 4.64711e-12) (6.55766e-12 1.38204e-11 -2.00799e-11) (1.5528e-11 -9.86915e-12 -2.7419e-10) (-4.36457e-11 -7.98084e-11 -1.00811e-09) (3.2035e-12 8.19284e-12 -1.30695e-09) (1.46933e-10 1.25358e-10 -6.84344e-10) (1.28347e-10 9.83525e-11 -1.26095e-10) (1.26531e-10 9.30905e-11 7.00169e-11) (1.70848e-10 9.8879e-11 4.57825e-10) (9.35215e-11 -1.92855e-10 1.33278e-09) (-1.06536e-10 -9.82772e-10 2.25328e-09) (-3.42439e-10 -1.23462e-09 1.68128e-09) (-4.66164e-10 -6.02066e-10 5.08844e-10) (-6.03186e-10 -2.4385e-10 8.69569e-11) (-5.449e-10 -1.04948e-10 -7.21695e-12) (-8.87658e-11 -4.63782e-11 5.53515e-14) (9.5869e-12 -1.45374e-11 -8.84135e-12) (1.51403e-10 3.62098e-11 -1.2519e-10) (3.52836e-10 4.35755e-10 -4.83299e-10) (2.27044e-10 8.74316e-10 -8.6446e-10) (-2.79882e-11 6.87195e-10 -1.04255e-09) (-9.56271e-12 2.06439e-10 -1.28969e-09) (-7.4922e-10 -7.70806e-10 -2.28678e-09) (1.30904e-10 -1.98028e-10 -3.44111e-10) (2.03988e-09 4.52713e-10 6.37234e-10) (9.23958e-09 5.1677e-09 5.62944e-09) (6.51852e-09 5.73905e-09 5.88928e-09) (3.50014e-10 1.0058e-09 1.35489e-09) (-5.11151e-10 -1.23069e-10 3.26024e-10) (-1.46223e-09 -1.38629e-09 1.85398e-10) (-1.0002e-09 -1.93992e-09 2.2624e-10) (9.00334e-12 -1.07655e-09 4.63099e-10) (6.81991e-10 -4.95723e-10 7.08426e-10) (1.68325e-09 1.81482e-10 1.11413e-09) (1.87923e-09 8.98633e-10 8.89551e-10) (7.16157e-10 5.49849e-10 1.95346e-10) (1.54826e-11 3.45466e-11 -1.45454e-11) (-4.54586e-10 -4.9455e-11 -2.08807e-10) (-2.79432e-09 -3.32419e-10 -7.70601e-10) (-3.11465e-09 -2.40681e-11 -8.35767e-10) (-1.165e-09 1.46623e-10 -5.70636e-10) (-2.66969e-10 5.84388e-11 -3.85308e-10) (-1.54151e-11 -1.3354e-11 -3.66853e-10) (1.57608e-10 -4.55106e-11 -3.42609e-10) (2.88621e-10 -1.8141e-11 -2.38706e-10) (3.32573e-10 2.67614e-11 -7.32526e-11) (3.80664e-10 4.81345e-11 1.31863e-10) (6.55373e-10 4.37651e-11 6.38802e-10) (1.11208e-09 -6.73286e-11 1.73324e-09) (8.46803e-10 -2.67718e-10 2.04102e-09) (-1.34603e-11 -1.95846e-10 7.51524e-10) (-4.98227e-10 -1.23961e-10 1.26484e-10) (-2.22385e-09 -2.70392e-10 -5.38293e-10) (-1.71089e-09 -4.95313e-10 -2.49602e-10) (-3.60312e-10 -4.30895e-10 1.67209e-10) (8.702e-11 -3.46537e-10 1.37408e-10) (2.33071e-10 -1.24204e-10 -4.86249e-11) (5.02644e-10 2.18921e-10 -3.74616e-10) (9.21765e-10 1.11267e-09 -1.09332e-09) (9.78896e-10 1.56751e-09 -1.8157e-09) (2.85294e-10 8.6292e-10 -1.94599e-09) (-6.28074e-10 -1.74007e-11 -2.53698e-09) (1.6347e-10 -9.76636e-10 -1.80415e-09) (5.09844e-10 -3.8955e-10 -1.31146e-10) (3.62453e-09 2.085e-10 2.53306e-09) (1.17943e-08 5.81475e-09 9.67596e-09) (1.26961e-08 1.03708e-08 9.97613e-09) (3.71282e-09 4.10777e-09 3.46239e-09) (8.20478e-11 1.46691e-10 3.00535e-10) (-3.10669e-10 -4.90593e-10 3.14591e-10) (-8.34512e-10 -1.98455e-09 7.33366e-10) (-3.86205e-10 -1.77917e-09 6.78375e-10) (7.22441e-11 -3.7045e-10 1.73508e-10) (1.78833e-10 1.70372e-11 3.76875e-11) (7.79522e-10 6.01026e-10 -3.11041e-11) (4.76751e-10 6.87445e-10 -1.3484e-10) (-3.43935e-10 3.52386e-10 -1.69326e-10) (-7.25547e-09 5.48046e-10 -1.26422e-09) (-1.50758e-08 -1.69857e-09 -2.48981e-09) (-5.13287e-09 -1.62815e-09 -1.44758e-09) (-3.52354e-10 -2.48582e-10 -3.34449e-10) (5.18156e-11 -2.45503e-11 -1.67735e-10) (2.15505e-10 4.80781e-11 -2.49917e-10) (2.88659e-10 7.73158e-11 -2.37164e-10) (2.12739e-10 4.4586e-11 -1.11915e-10) (8.93347e-11 -3.17801e-12 4.48377e-12) (1.77646e-10 -9.96856e-11 2.5265e-10) (8.42213e-10 -5.34065e-10 1.81956e-09) (1.76584e-09 -5.95101e-10 3.43589e-09) (7.21325e-10 2.28424e-11 1.44846e-09) (-1.30278e-11 3.11373e-11 2.97026e-11) (-6.81534e-10 1.47338e-10 -4.61463e-10) (-1.30505e-09 -3.23955e-10 -5.55204e-10) (-8.69446e-10 -8.04983e-10 2.68258e-10) (-4.15817e-10 -9.30932e-10 5.28074e-10) (-7.29856e-11 -2.21755e-10 -5.78447e-12) (-4.60626e-11 -6.24883e-12 -2.18726e-10) (-2.36059e-11 4.65842e-10 -5.71913e-10) (8.68524e-11 1.06715e-09 -8.27046e-10) (1.43553e-11 1.05084e-09 -1.16548e-09) (-2.31237e-10 5.65524e-10 -1.93194e-09) (-3.59542e-10 -4.43333e-10 -2.89835e-09) (1.19825e-09 -6.31774e-10 -1.30564e-09) (8.8939e-10 -2.00267e-10 1.06162e-10) (4.09964e-09 7.04922e-10 3.64631e-09) (1.08773e-08 5.03801e-09 1.0862e-08) (1.11754e-08 8.45376e-09 9.87105e-09) (4.85895e-09 4.64336e-09 3.7461e-09) (6.38222e-10 5.10928e-10 5.97203e-10) (9.64156e-12 -1.65828e-10 1.96541e-10) (-5.7633e-10 -1.39512e-09 5.93244e-10) (-1.00916e-09 -1.70985e-09 2.45295e-10) (-3.82766e-10 -4.28468e-10 -2.10803e-10) (-8.36903e-11 7.40162e-11 -2.14223e-10) (-3.68188e-11 6.33876e-10 -3.41139e-10) (-2.14008e-10 8.79918e-10 -1.01166e-10) (-5.1525e-10 4.71222e-10 8.95682e-11) (-8.75376e-10 -9.40154e-11 1.27178e-10) (-1.14293e-09 -1.10535e-09 1.08934e-11) (-1.30408e-09 -1.57041e-09 -4.11968e-10) (-1.01469e-09 -5.58833e-10 -6.49838e-10) (-4.48306e-10 6.10832e-11 -5.45771e-10) (-2.77876e-11 1.44193e-10 -3.26576e-10) (1.5974e-10 1.28057e-10 -2.1524e-10) (2.13319e-10 8.99376e-11 -8.85858e-11) (1.79296e-10 3.05384e-11 6.23395e-11) (4.098e-10 -1.10221e-10 5.73383e-10) (9.63273e-10 -5.39801e-10 1.815e-09) (7.44431e-10 -3.09129e-10 1.27619e-09) (7.11536e-11 1.83441e-11 8.03433e-11) (-1.31521e-11 5.44802e-11 -8.55647e-11) (-1.74846e-10 3.88993e-12 -2.35782e-10) (-2.04167e-10 -1.83177e-10 2.82839e-11) (-3.87395e-10 -6.8855e-10 5.866e-10) (-4.3277e-10 -4.94486e-10 1.77872e-10) (-1.68824e-09 -6.01903e-10 -1.17663e-09) (-3.26077e-09 2.00075e-11 -2.71815e-09) (-1.80758e-09 7.93459e-10 -1.10306e-09) (-7.90901e-10 8.61892e-10 -4.9431e-10) (-1.74028e-10 5.36637e-10 -7.10737e-10) (5.61111e-10 2.37362e-10 -2.03612e-09) (1.51014e-09 -5.90703e-10 -3.01879e-09) (1.78145e-09 -7.86131e-11 -7.47231e-10) (1.79199e-09 3.10472e-10 5.91784e-10) (4.85604e-09 1.5945e-09 4.474e-09) (8.44861e-09 3.57575e-09 8.96394e-09) (6.61646e-09 4.09836e-09 6.58407e-09) (2.76363e-09 2.3229e-09 2.34644e-09) (5.73425e-10 4.53724e-10 4.98271e-10) (2.49796e-11 -2.9705e-11 8.61074e-11) (-2.52917e-10 -4.21922e-10 1.28306e-10) (-9.83841e-10 -1.00871e-09 -3.78877e-10) (-1.31409e-09 -6.15875e-10 -1.24909e-09) (-7.724e-10 2.82537e-10 -1.0544e-09) (-2.08383e-10 3.87068e-10 -2.73669e-10) (-1.97982e-11 1.33927e-10 3.2242e-11) (4.85747e-11 2.69273e-11 1.13189e-10) (2.06538e-10 -1.70371e-10 2.57036e-10) (2.47793e-11 -1.9646e-10 9.65704e-11) (-8.69344e-10 -3.80041e-10 -1.97214e-10) (-5.05889e-09 -2.22411e-10 -1.99507e-09) (-4.03914e-09 3.2163e-10 -2.27735e-09) (-5.31198e-10 1.23983e-10 -5.12059e-10) (7.97413e-12 2.02678e-11 -2.44104e-11) (1.35142e-10 6.44393e-11 5.62518e-11) (4.15198e-10 6.07344e-11 3.68504e-10) (5.72271e-10 -1.21863e-10 6.36194e-10) (2.18338e-10 -1.22923e-10 2.8969e-10) (4.78335e-12 -3.4182e-12 5.01951e-12) (-2.38613e-12 2.2602e-11 -6.64646e-11) (-8.87951e-12 3.0894e-11 -1.62153e-10) (5.80045e-12 -1.18244e-11 -7.36513e-12) (1.99125e-10 -2.67412e-10 3.37151e-10) (1.87421e-10 -3.24403e-10 5.60828e-10) (-1.14848e-10 -5.28076e-11 -2.23361e-11) (-4.31869e-09 -5.75932e-10 -3.65877e-09) (-1.01603e-08 -1.33576e-09 -6.98281e-09) (-6.22254e-09 1.12806e-10 -2.14324e-09) (-1.34855e-09 5.32924e-10 -2.82454e-10) (-5.27432e-11 1.66077e-10 -2.21647e-10) (8.68658e-10 1.5347e-10 -1.28574e-09) (2.23879e-09 -1.80359e-10 -2.06267e-09) (3.48023e-09 5.86517e-10 -4.52851e-11) (4.53768e-09 1.46419e-09 2.24948e-09) (5.9168e-09 2.38322e-09 5.70759e-09) (4.40003e-09 2.196e-09 6.09623e-09) (1.84595e-09 1.44432e-09 3.28382e-09) (7.42937e-10 7.40911e-10 1.1488e-09) (2.98448e-10 2.10896e-10 3.12478e-10) (4.58188e-11 -7.64043e-12 3.78359e-11) (-1.88402e-11 -9.22299e-11 -3.55428e-11) (-6.66196e-10 -5.86737e-10 -8.49764e-10) (-2.16752e-09 -4.44168e-10 -2.64752e-09) (-1.66948e-09 4.64904e-10 -1.86693e-09) (-2.09014e-10 1.87904e-10 -1.68088e-10) (1.40203e-11 1.68594e-11 3.68088e-11) (3.13002e-10 -1.05209e-10 3.95488e-10) (4.3344e-10 -2.28028e-10 4.63262e-10) (2.25151e-11 -3.32694e-11 4.78937e-11) (-6.31823e-10 4.35259e-11 -1.53625e-10) (-6.1036e-09 7.03257e-10 -2.36791e-09) (-6.56124e-09 1.27407e-10 -3.15501e-09) (-1.076e-09 -2.36162e-10 -6.43937e-10) (-4.13035e-12 -7.39466e-12 -2.54126e-12) (8.85653e-11 7.04388e-12 9.37689e-11) (1.73718e-10 5.55348e-11 2.36134e-10) (2.726e-11 1.10217e-11 1.03222e-10) (-2.09679e-11 -5.34331e-12 1.64028e-11) (-4.91396e-11 -1.35909e-11 -2.54199e-11) (-2.73153e-11 -1.07594e-11 -8.97785e-11) (4.99879e-11 -1.69606e-11 -7.15808e-11) (5.14688e-10 -1.51127e-10 1.13222e-10) (2.04188e-09 -4.96648e-10 1.50768e-09) (1.04587e-09 -2.00937e-11 1.11903e-09) (-1.04676e-11 2.99419e-11 -1.59893e-11) (-3.06004e-09 1.16067e-10 -3.76654e-09) (-1.33181e-08 -2.89655e-09 -1.02195e-08) (-1.63222e-08 -2.15035e-09 -5.28044e-09) (-4.48225e-09 2.74582e-10 -6.23276e-10) (-4.98928e-11 4.48877e-11 -6.3231e-11) (8.95223e-10 1.32607e-10 -6.10927e-10) (2.90993e-09 2.05259e-10 -1.11794e-09) (6.31965e-09 1.74898e-09 1.06752e-09) (9.28394e-09 3.12407e-09 5.2085e-09) (7.03669e-09 2.76077e-09 6.82784e-09) (1.91846e-09 1.17031e-09 3.50717e-09) (2.94834e-10 4.01948e-10 1.18487e-09) (1.68612e-10 1.78274e-10 4.09219e-10) (1.93885e-10 8.02873e-11 1.73469e-10) (7.55987e-11 -4.24543e-12 1.99632e-11) (-6.22007e-12 -4.40719e-11 -6.74147e-11) (-1.01909e-09 -3.1057e-10 -1.3194e-09) (-4.09491e-09 1.85388e-10 -3.98574e-09) (-3.11094e-09 5.96978e-10 -2.22478e-09) (-2.42096e-10 4.20041e-11 -6.33672e-11) (6.09732e-11 -5.15712e-11 1.40407e-10) (8.33071e-10 -3.34783e-10 8.2551e-10) (8.71579e-10 -2.0627e-10 7.11623e-10) (5.61543e-11 1.56382e-11 5.587e-11) (-5.65549e-10 3.08685e-10 -1.89585e-10) (-5.48481e-09 1.26112e-09 -2.31815e-09) (-5.18645e-09 -3.15579e-10 -2.41883e-09) (-9.26427e-10 -5.85956e-10 -4.60112e-10) (-8.07221e-11 -1.26141e-10 -1.72546e-12) (-3.06543e-11 -7.92563e-12 2.40249e-11) (-1.0669e-10 3.59043e-11 6.62577e-11) (-1.6764e-10 7.21074e-12 9.1441e-11) (-1.67218e-10 -6.85207e-11 5.48368e-11) (-1.19214e-10 -6.92076e-11 -5.46678e-11) (-5.57002e-11 -3.05353e-11 -2.1356e-10) (1.47332e-10 -1.63254e-11 -1.67233e-10) (1.41174e-09 -2.42829e-10 4.15764e-10) (4.69116e-09 -4.36388e-10 3.59341e-09) (3.05693e-09 7.23768e-10 2.91484e-09) (2.88854e-10 3.87688e-10 3.87218e-11) (-9.87221e-10 4.98631e-10 -2.63597e-09) (-1.20105e-08 -2.9085e-09 -1.0553e-08) (-2.74577e-08 -5.01197e-09 -8.45272e-09) (-9.83563e-09 -1.07547e-09 -1.34007e-09) (-1.05042e-10 -3.24355e-12 -7.83356e-11) (9.32735e-10 1.60709e-10 -4.79019e-10) (3.6893e-09 7.43816e-10 -7.12738e-10) (8.24679e-09 2.61404e-09 1.71012e-09) (1.25919e-08 3.79703e-09 6.93456e-09) (6.72108e-09 2.23665e-09 6.35129e-09) (8.18308e-10 4.77912e-10 1.75468e-09) (-5.35548e-12 7.4568e-11 2.80635e-10) (1.20468e-11 2.07618e-11 4.71788e-11) (5.7741e-11 1.98832e-11 3.128e-11) (2.38463e-11 1.57086e-12 7.70822e-13) (-5.39598e-11 -1.6318e-11 -7.82116e-11) (-1.76397e-09 4.50261e-11 -1.57904e-09) (-4.66273e-09 6.34351e-10 -3.59079e-09) (-1.75768e-09 1.25277e-10 -1.02387e-09) (-3.58588e-11 -3.88151e-11 1.49151e-11) (4.70009e-10 -3.81387e-10 5.62634e-10) (1.45339e-09 -5.08892e-10 1.29534e-09) (9.32764e-10 -1.37239e-11 7.64671e-10) (7.28172e-11 1.07003e-10 7.27405e-11) (-6.875e-10 6.44583e-10 -3.01707e-10) (-3.5872e-09 1.13177e-09 -1.71897e-09) (-2.30104e-09 -4.66758e-10 -1.13496e-09) (-6.33555e-10 -6.82102e-10 -2.74665e-10) (-2.98396e-10 -2.51119e-10 -1.62298e-11) (-5.66402e-10 -2.57769e-11 6.54719e-11) (-7.48616e-10 4.49887e-11 1.95444e-10) (-5.4227e-10 -1.32885e-10 2.6065e-10) (-5.05504e-10 -2.22884e-10 9.13661e-11) (-5.80169e-10 -1.23987e-10 -4.03842e-10) (-2.49644e-10 7.64175e-11 -9.7343e-10) (3.21366e-10 7.89747e-12 -4.00458e-10) (1.58097e-09 -2.65431e-10 6.43693e-10) (5.70091e-09 -4.53128e-10 5.5222e-09) (4.7423e-09 1.38089e-09 4.73864e-09) (1.25593e-09 1.0834e-09 2.39391e-10) (4.14927e-11 6.50301e-10 -2.0876e-09) (-9.10585e-09 -1.94787e-09 -8.14816e-09) (-2.70035e-08 -5.84201e-09 -6.45619e-09) (-8.84958e-09 -2.28241e-09 -4.58627e-10) (-8.27914e-11 -4.81511e-11 -5.80266e-11) (8.3434e-10 1.93941e-10 -4.8473e-10) (3.75843e-09 1.16801e-09 -7.22862e-10) (9.56071e-09 2.87697e-09 2.10669e-09) (1.24117e-08 3.19059e-09 6.59287e-09) (4.56097e-09 1.29264e-09 4.23122e-09) (2.66548e-10 1.39435e-10 6.67301e-10) (-2.52867e-11 9.96889e-12 4.55033e-11) (-1.12762e-12 7.32215e-13 4.41894e-13) (4.60911e-12 2.3212e-12 -1.54946e-12) (-2.85604e-13 1.94212e-12 -3.77573e-12) (-4.35272e-10 7.03112e-11 -2.90026e-10) (-3.29538e-09 5.53978e-10 -2.11842e-09) (-3.05227e-09 3.8154e-10 -2.03364e-09) (-1.80702e-10 -7.47281e-11 -1.16249e-10) (2.38093e-10 -3.34935e-10 2.14343e-10) (1.24484e-09 -8.23906e-10 1.151e-09) (1.239e-09 -3.51619e-10 1.18095e-09) (4.85048e-10 1.36612e-10 4.5523e-10) (5.09465e-11 2.47897e-10 5.4407e-11) (-6.33401e-10 8.7014e-10 -4.00652e-10) (-1.48456e-09 6.28052e-10 -9.1644e-10) (-6.96195e-10 -3.34346e-10 -4.45693e-10) (-4.14823e-10 -6.17088e-10 -1.80981e-10) (-5.36821e-10 -3.05808e-10 -2.05871e-11) (-1.16965e-09 -5.36815e-11 1.52486e-10) (-1.24985e-09 -1.13062e-10 4.34598e-10) (-1.30824e-09 -4.04543e-10 4.86893e-10) (-1.78553e-09 -4.0063e-10 -2.13065e-10) (-1.56861e-09 1.30754e-11 -1.46301e-09) (7.12517e-12 1.47715e-10 -1.37363e-09) (6.1893e-10 4.58764e-11 -4.63207e-10) (1.64596e-09 -1.15444e-10 8.21059e-10) (4.79703e-09 -1.97799e-10 4.9553e-09) (4.03678e-09 1.08113e-09 3.42284e-09) (1.77741e-09 1.17164e-09 -1.25964e-10) (2.36067e-10 6.60352e-10 -2.02471e-09) (-7.69533e-09 -1.17624e-09 -5.2072e-09) (-1.73393e-08 -4.6082e-09 -1.53823e-09) (-3.49365e-09 -1.74593e-09 7.01796e-10) (-8.26905e-12 -2.43109e-11 -2.4876e-12) (7.1701e-10 2.3216e-10 -3.57755e-10) (3.77089e-09 1.38808e-09 -5.92719e-10) (9.62939e-09 2.48442e-09 2.42647e-09) (9.77268e-09 2.10081e-09 5.01696e-09) (2.6005e-09 6.0631e-10 2.21783e-09) (8.94752e-11 4.74219e-11 2.0749e-10) (-1.12929e-11 2.9113e-12 3.9558e-12) (-1.50819e-11 2.55611e-12 -1.86301e-11) (-1.48433e-11 8.45012e-12 -3.4766e-11) (-1.81018e-10 6.51877e-11 -1.27405e-10) (-1.79825e-09 4.42325e-10 -8.54319e-10) (-3.44906e-09 6.35102e-10 -1.81693e-09) (-5.78228e-10 -4.43063e-11 -4.05021e-10) (1.21223e-10 -1.92137e-10 2.4943e-11) (1.24004e-09 -1.01976e-09 8.65382e-10) (1.07565e-09 -6.79054e-10 1.11842e-09) (3.57838e-10 -7.04868e-11 4.87572e-10) (8.01297e-11 9.60226e-11 1.01514e-10) (-3.10983e-12 3.56684e-10 -4.7526e-11) (-3.42106e-10 7.63344e-10 -4.22365e-10) (-3.08073e-10 2.08031e-10 -3.29079e-10) (-1.46874e-10 -1.74533e-10 -1.43109e-10) (-3.3622e-10 -4.72273e-10 -8.03489e-11) (-9.0215e-10 -3.48658e-10 4.77078e-11) (-1.63356e-09 -1.47985e-10 3.50214e-10) (-1.92776e-09 -3.31496e-10 6.99044e-10) (-2.9738e-09 -6.24239e-10 3.75171e-10) (-3.82679e-09 -3.26844e-10 -1.41344e-09) (-1.13704e-09 7.4594e-11 -1.7128e-09) (2.54289e-10 7.78722e-11 -7.94965e-10) (5.94864e-10 9.02306e-11 -1.43515e-10) (2.1739e-09 1.04974e-10 1.29324e-09) (4.33349e-09 -2.45768e-13 3.3429e-09) (3.19717e-09 5.53706e-10 1.02622e-09) (2.24016e-09 1.00554e-09 -1.34357e-09) (-2.83652e-10 5.5546e-10 -2.05086e-09) (-7.46906e-09 -7.94778e-10 -2.70783e-09) (-6.67228e-09 -2.70523e-09 1.28517e-09) (-6.7018e-10 -9.47078e-10 8.24064e-10) (2.27005e-11 -2.39537e-11 2.07323e-11) (5.71636e-10 2.51621e-10 -1.82294e-10) (3.63031e-09 1.34427e-09 -2.1915e-10) (7.26289e-09 1.43234e-09 1.90704e-09) (5.61785e-09 9.22486e-10 2.80159e-09) (1.21903e-09 2.54104e-10 1.03027e-09) (3.98886e-11 3.20427e-11 7.81982e-11) (-3.97331e-12 4.13489e-12 -3.73078e-12) (-4.32256e-11 1.78504e-11 -1.0882e-10) (-1.99804e-10 5.8763e-11 -2.76063e-10) (-1.01655e-09 2.84968e-10 -5.96057e-10) (-2.53431e-09 6.33464e-10 -1.06605e-09) (-1.01677e-09 1.26385e-10 -5.10276e-10) (2.42703e-11 -5.12592e-11 -1.56804e-11) (1.30057e-09 -9.42177e-10 5.3754e-10) (1.36518e-09 -9.92618e-10 1.11422e-09) (2.58616e-10 -2.14644e-10 4.89894e-10) (2.56043e-12 8.57176e-12 6.54482e-11) (-8.31467e-12 5.6783e-11 -4.39993e-12) (-2.8246e-11 3.8223e-10 -2.15059e-10) (-7.89182e-11 5.24002e-10 -4.01306e-10) (-3.30179e-11 6.24569e-11 -1.1628e-10) (-6.44771e-11 -9.91999e-11 -4.34818e-11) (-5.9525e-10 -4.69246e-10 5.07056e-11) (-1.60224e-09 -4.71348e-10 3.03446e-10) (-1.99048e-09 -2.87298e-10 6.11748e-10) (-2.78346e-09 -4.26049e-10 6.96147e-10) (-5.06836e-09 -5.21132e-10 -6.09785e-10) (-3.36875e-09 -9.54738e-11 -2.23769e-09) (-2.35168e-10 -2.56123e-12 -8.69808e-10) (1.1127e-10 3.2777e-11 -1.28405e-10) (5.96171e-10 1.43293e-10 2.19036e-10) (2.63534e-09 2.03804e-10 1.72431e-09) (3.27148e-09 -4.32716e-11 1.42713e-09) (3.10905e-09 2.48478e-10 -7.19196e-10) (2.3857e-09 8.17028e-10 -3.14284e-09) (-1.16652e-09 5.32173e-10 -2.24111e-09) (-4.2798e-09 -5.85796e-10 -4.93571e-10) (-1.01379e-09 -1.303e-09 1.38768e-09) (3.24602e-10 -8.48295e-10 1.11008e-09) (7.1411e-11 -1.16982e-11 5.53919e-11) (4.46099e-10 2.45086e-10 -9.37912e-11) (2.95805e-09 9.87285e-10 2.30851e-12) (4.13441e-09 6.64869e-10 1.22073e-09) (2.11493e-09 3.13225e-10 1.25592e-09) (3.39112e-10 1.05986e-10 3.94339e-10) (1.38202e-11 1.91484e-11 2.30989e-11) (8.1358e-12 1.94566e-11 -3.45662e-11) (-2.77096e-11 6.45155e-11 -3.24216e-10) (-4.37262e-10 1.52681e-10 -6.48161e-10) (-1.42122e-09 3.90706e-10 -8.53489e-10) (-1.06728e-09 2.56957e-10 -4.4044e-10) (-6.78337e-12 -4.71418e-12 -6.1314e-12) (9.10984e-10 -5.54735e-10 2.86442e-10) (1.84237e-09 -1.16629e-09 1.09725e-09) (4.18704e-10 -3.79933e-10 6.1122e-10) (-1.56084e-11 -2.24127e-11 1.03686e-10) (-1.9923e-11 1.20821e-11 -1.23357e-14) (-5.0065e-11 1.0958e-10 -1.40923e-10) (-2.78524e-11 3.72302e-10 -4.43635e-10) (-4.31971e-13 3.38127e-10 -3.56201e-10) (-9.79981e-12 2.00965e-11 -3.42151e-11) (-1.59693e-10 -1.1073e-10 2.91609e-11) (-1.2917e-09 -6.32365e-10 3.83135e-10) (-2.12649e-09 -6.04772e-10 6.52451e-10) (-2.29817e-09 -3.61281e-10 7.00055e-10) (-3.97756e-09 -3.27367e-10 1.89035e-10) (-5.0881e-09 -2.24556e-10 -1.86427e-09) (-9.97156e-10 -9.27239e-11 -1.36071e-09) (-4.3116e-13 -3.86795e-12 -1.75701e-10) (7.95437e-11 3.0522e-11 3.47453e-11) (1.02677e-09 2.35233e-10 8.35977e-10) (1.63461e-09 9.37825e-11 1.11994e-09) (9.7793e-10 -8.1537e-11 3.55834e-11) (2.16493e-09 -2.31202e-13 -2.13464e-09) (1.31374e-09 5.94882e-10 -4.04039e-09) (-1.10497e-09 3.0777e-10 -1.38726e-09) (-3.72853e-10 -2.15787e-10 2.12829e-10) (1.20995e-09 -1.71982e-09 2.53581e-09) (9.61707e-10 -6.77667e-10 1.30502e-09) (1.09727e-10 2.93281e-11 6.86852e-11) (4.6001e-10 2.53308e-10 -4.85709e-11) (2.36344e-09 6.51982e-10 1.36021e-10) (1.82282e-09 2.7007e-10 7.00871e-10) (6.49024e-10 1.1271e-10 5.36129e-10) (8.94693e-11 4.43498e-11 1.36006e-10) (1.47279e-11 1.32019e-11 1.11867e-12) (9.55266e-11 6.37346e-11 -1.70694e-10) (5.08144e-11 1.2982e-10 -5.75199e-10) (-3.99888e-10 1.85551e-10 -7.01352e-10) (-6.4434e-10 1.83792e-10 -4.28978e-10) (-3.98082e-11 6.95645e-12 -1.55741e-11) (2.85885e-10 -1.46081e-10 1.28235e-10) (1.48108e-09 -8.24965e-10 8.91643e-10) (5.82047e-10 -4.81275e-10 7.18269e-10) (9.38677e-12 -6.75659e-11 1.74826e-10) (-9.48847e-12 1.47533e-12 6.37351e-12) (-2.93879e-11 2.5643e-11 -6.57285e-11) (-7.85663e-11 1.32432e-10 -3.74294e-10) (-9.8403e-11 2.71036e-10 -4.93142e-10) (-5.33831e-11 1.68182e-10 -1.91438e-10) (-2.77268e-11 1.16608e-11 -3.62641e-12) (-4.64338e-10 -1.86127e-10 2.1609e-10) (-1.69691e-09 -7.01795e-10 6.90387e-10) (-2.2236e-09 -6.12618e-10 7.6542e-10) (-2.84812e-09 -3.01982e-10 5.11212e-10) (-4.57261e-09 -1.08196e-10 -7.4894e-10) (-2.29151e-09 -9.48225e-11 -1.70423e-09) (-1.64184e-10 -7.33633e-11 -5.27879e-10) (2.54966e-12 3.55917e-13 -1.84039e-12) (3.79159e-10 1.0317e-10 4.16304e-10) (1.01776e-09 1.96203e-10 1.00496e-09) (2.70835e-10 1.85139e-11 1.9606e-10) (8.42819e-11 -3.85503e-11 -1.44941e-10) (8.00693e-10 -1.77858e-10 -2.69098e-09) (2.51845e-10 2.818e-10 -3.03044e-09) (-7.2643e-11 1.85149e-11 -1.45962e-10) (7.29141e-10 -5.44639e-10 9.49851e-10) (3.20363e-09 -1.97355e-09 3.66439e-09) (6.42539e-10 -2.38059e-10 7.71287e-10) (1.3063e-10 6.85288e-11 5.75775e-11) (5.79642e-10 2.67076e-10 -9.28258e-12) (1.77414e-09 4.0671e-10 2.25432e-10) (1.06097e-09 1.43084e-10 4.94174e-10) (3.2013e-10 5.72317e-11 2.76325e-10) (5.17926e-11 1.96097e-11 4.28005e-11) (5.5572e-11 2.41794e-11 -3.17301e-11) (2.04835e-10 9.4071e-11 -3.23839e-10) (1.04175e-10 1.34116e-10 -5.34699e-10) (-1.08761e-10 8.68544e-11 -3.00564e-10) (-3.32128e-11 1.22746e-11 -2.89678e-11) (2.85523e-11 -1.29447e-11 2.62947e-11) (5.22849e-10 -2.73864e-10 4.58386e-10) (4.23641e-10 -3.4122e-10 6.05198e-10) (4.34011e-11 -1.13093e-10 2.45372e-10) (-5.52709e-12 -5.6617e-12 1.8116e-11) (-2.04462e-12 2.45068e-12 -9.15107e-12) (-3.13484e-11 2.92705e-11 -1.59894e-10) (-1.52691e-10 8.35003e-11 -3.3503e-10) (-1.85902e-10 1.4254e-10 -2.76487e-10) (-7.94967e-11 7.79263e-11 -6.50066e-11) (-8.3437e-11 1.44906e-11 2.97526e-11) (-5.72825e-10 -2.02954e-10 3.22151e-10) (-1.56611e-09 -5.89697e-10 6.86818e-10) (-2.37081e-09 -5.01686e-10 6.51531e-10) (-3.34757e-09 -1.47112e-10 2.26056e-11) (-2.88366e-09 -1.53365e-11 -1.21063e-09) (-4.18805e-10 -8.00637e-11 -7.90153e-10) (-1.35742e-11 -2.08727e-11 -9.37291e-11) (4.86219e-11 4.43964e-12 5.30804e-11) (7.92931e-10 1.15978e-10 8.07461e-10) (4.49721e-10 9.1739e-11 4.82017e-10) (1.01021e-12 1.10581e-12 3.48488e-12) (-1.63068e-10 -7.46425e-11 -3.64113e-10) (-5.53551e-11 -2.66611e-10 -2.30889e-09) (1.94099e-10 4.82099e-11 -1.38362e-09) (2.06287e-10 -2.75085e-11 -3.42213e-12) (2.95701e-09 -1.10456e-09 2.40899e-09) (1.88246e-09 -9.92466e-10 2.22177e-09) (1.73306e-10 -2.81395e-11 2.39027e-10) (1.24213e-10 7.51027e-11 3.1318e-11) (6.45542e-10 2.34328e-10 2.42875e-11) (1.3689e-09 2.59215e-10 2.69334e-10) (8.63264e-10 9.94138e-11 3.75134e-10) (2.72463e-10 3.61422e-11 1.52885e-10) (6.60565e-11 1.26878e-11 9.25869e-12) (8.57104e-11 2.40306e-11 -7.37494e-11) (1.52185e-10 6.77205e-11 -2.6843e-10) (7.21128e-11 6.92495e-11 -2.48708e-10) (1.80375e-12 1.33381e-11 -3.71643e-11) (3.19756e-12 -3.91456e-15 3.20589e-12) (1.21718e-10 -5.05704e-11 1.70743e-10) (2.15873e-10 -1.4689e-10 3.88382e-10) (6.99091e-11 -1.04196e-10 2.476e-10) (1.14573e-12 -1.95575e-11 4.12794e-11) (8.01063e-14 -1.59071e-13 -3.60473e-13) (-3.65274e-12 4.66426e-12 -4.83282e-11) (-8.43469e-11 1.73667e-11 -1.41251e-10) (-2.41169e-10 4.73381e-11 -1.95148e-10) (-1.91514e-10 7.27682e-11 -1.15157e-10) (-6.56487e-11 3.76531e-11 -1.40435e-11) (-8.04088e-11 4.4277e-12 4.30491e-11) (-4.47564e-10 -1.55054e-10 2.68526e-10) (-1.43429e-09 -4.19677e-10 5.55611e-10) (-2.54822e-09 -3.32497e-10 3.69512e-10) (-2.66507e-09 -2.56959e-11 -4.89485e-10) (-7.97383e-10 -2.71201e-11 -7.51533e-10) (-7.19065e-11 -5.10715e-11 -3.06575e-10) (9.61883e-14 -1.47906e-12 -2.2216e-12) (2.4404e-10 -7.3048e-13 2.43732e-10) (6.97433e-10 5.81722e-11 6.3209e-10) (9.62524e-11 3.40853e-11 1.33923e-10) (-2.2163e-11 4.67912e-12 -2.54636e-13) (-2.87662e-10 -8.3499e-11 -3.85573e-10) (-1.10882e-10 -2.20388e-10 -1.33113e-09) (3.37664e-10 -1.85273e-11 -5.79934e-10) (1.08731e-09 -1.38893e-10 2.36788e-10) (2.19222e-09 -7.35048e-10 1.82875e-09) (4.7293e-10 -2.84478e-10 7.35237e-10) (3.40832e-11 4.01415e-12 4.9231e-11) (1.30598e-10 6.53124e-11 1.29023e-11) (7.13566e-10 1.87239e-10 5.60819e-11) (1.25491e-09 1.84599e-10 2.97277e-10) (8.50821e-10 7.25615e-11 2.72821e-10) (2.78124e-10 2.09529e-11 8.00787e-11) (6.14419e-11 5.70041e-12 -9.70897e-12) (4.80082e-11 1.15626e-11 -6.01637e-11) (6.10386e-11 3.01867e-11 -1.29332e-10) (2.93566e-11 1.99764e-11 -6.04755e-11) (6.69233e-12 2.30399e-12 -8.37665e-13) (5.34292e-11 -4.49555e-12 6.8801e-11) (1.4019e-10 -4.48801e-11 2.43963e-10) (1.00873e-10 -6.17864e-11 2.20662e-10) (2.37408e-11 -2.55567e-11 6.10786e-11) (1.8821e-12 -1.9703e-12 1.19884e-12) (1.96025e-12 -1.46772e-12 -1.22992e-11) (-2.67238e-11 2.26702e-12 -5.06978e-11) (-1.48994e-10 8.39091e-12 -9.29724e-11) (-2.23196e-10 2.006e-11 -8.22085e-11) (-9.23076e-11 2.47318e-11 -2.85998e-11) (-1.69294e-11 9.04316e-12 7.75695e-13) (-2.6777e-11 -8.66843e-13 2.3004e-11) (-2.53927e-10 -8.17074e-11 1.65597e-10) (-1.08302e-09 -2.27375e-10 3.42835e-10) (-1.81414e-09 -1.50528e-10 2.51539e-11) (-9.90924e-10 -5.85956e-12 -4.56346e-10) (-1.21979e-10 -2.61697e-11 -3.26701e-10) (-1.48102e-11 -1.77138e-11 -7.43261e-11) (6.90727e-12 -3.02518e-12 5.40905e-12) (4.26785e-10 -1.98208e-11 3.37758e-10) (3.2256e-10 2.10946e-11 2.80062e-10) (1.19097e-11 1.08285e-11 2.86931e-11) (-2.75758e-11 5.11584e-12 -5.234e-12) (-1.16404e-10 -4.4293e-11 -1.98196e-10) (6.39332e-11 -1.17957e-10 -6.26088e-10) (3.87139e-10 -2.98846e-11 -3.17596e-10) (1.0246e-09 -1.32145e-10 2.97853e-10) (8.3683e-10 -2.81862e-10 7.78945e-10) (1.03352e-10 -6.50816e-11 2.00383e-10) (1.4656e-11 3.92149e-12 1.22912e-11) (1.77627e-10 5.86679e-11 5.94305e-12) (8.13808e-10 1.46608e-10 8.21522e-11) (1.2592e-09 1.39207e-10 2.82237e-10) (1.55871e-09 6.21767e-11 3.41969e-10) (6.65164e-10 1.43649e-11 1.06093e-10) (2.33518e-10 4.06315e-12 -2.43183e-11) (1.56883e-10 1.28855e-11 -8.18958e-11) (1.68262e-10 2.74922e-11 -1.05921e-10) (1.57355e-10 2.55926e-11 -4.14078e-11) (2.25695e-10 1.50446e-11 6.79027e-11) (3.96633e-10 -7.87382e-12 2.68031e-10) (4.36359e-10 -4.13709e-11 3.48342e-10) (2.89546e-10 -4.66167e-11 2.0006e-10) (1.60086e-10 -3.02572e-11 5.3881e-11) (1.08862e-10 -1.77686e-11 -1.33699e-11) (5.08583e-11 -5.66955e-12 -2.96074e-11) (2.86958e-12 -1.74621e-13 -9.14925e-12) (-1.11611e-11 2.55633e-13 -7.18852e-12) (-1.25192e-11 9.84591e-13 -4.24584e-12) (-4.09658e-13 5.18787e-13 -3.30241e-13) (2.77572e-12 1.73874e-12 1.21608e-12) (3.04398e-12 -3.20785e-13 1.03825e-11) (-6.71622e-11 -2.34876e-11 6.91145e-11) (-5.34442e-10 -8.07028e-11 1.49065e-10) (-7.62906e-10 -4.93961e-11 -1.043e-10) (-1.81022e-10 -1.14307e-11 -2.08452e-10) (-1.49522e-11 -1.85879e-11 -1.4161e-10) (2.41437e-13 -4.78282e-12 -1.31142e-11) (6.26617e-11 -1.36218e-11 3.62633e-11) (4.33522e-10 -3.52324e-11 2.71166e-10) (2.07158e-10 6.16985e-12 1.46403e-10) (1.58193e-11 6.54174e-12 1.5686e-11) (-2.6442e-13 2.49901e-13 -5.6733e-13) (9.27377e-12 -1.96602e-11 -9.21899e-11) (2.33665e-10 -7.74232e-11 -4.00833e-10) (5.92763e-10 -4.20878e-11 -2.5579e-10) (1.0373e-09 -1.17989e-10 2.77965e-10) (6.20356e-10 -1.59531e-10 4.54292e-10) (1.36463e-10 -3.92409e-11 1.20964e-10) (1.2472e-10 6.72255e-12 2.90688e-11) (6.19607e-10 8.01217e-11 3.54844e-11) (1.64316e-09 1.4523e-10 1.90918e-10) (2.16133e-09 1.2665e-10 4.02768e-10) (5.64509e-09 6.08011e-11 7.89695e-10) (3.54504e-09 3.07744e-12 3.00663e-10) (2.07825e-09 -3.49599e-12 -9.58467e-11) (1.6026e-09 3.55472e-11 -2.9305e-10) (1.64808e-09 7.71618e-11 -2.87182e-10) (1.96451e-09 9.13282e-11 -1.87988e-12) (2.5713e-09 5.28194e-11 5.37104e-10) (3.16961e-09 -2.2477e-12 1.03787e-09) (3.20188e-09 -6.16047e-11 1.05358e-09) (2.77178e-09 -1.00431e-10 6.51976e-10) (2.21771e-09 -1.11528e-10 2.15366e-10) (1.51641e-09 -8.04765e-11 -4.11762e-11) (6.87259e-10 -2.6441e-11 -7.31317e-11) (1.57796e-10 -2.34271e-12 -1.90543e-11) (2.18469e-11 -6.14842e-13 -1.9153e-13) (1.14757e-11 -4.80306e-13 1.53737e-12) (3.58765e-11 1.97219e-12 5.28726e-12) (7.51653e-11 6.59799e-12 2.12047e-11) (2.98675e-11 2.72039e-13 3.07036e-11) (-5.05677e-11 -8.00243e-12 5.98166e-11) (-3.69617e-10 -2.276e-11 8.44242e-11) (-2.43889e-10 -1.31159e-11 -7.2129e-11) (-3.07744e-11 -7.1313e-12 -8.25647e-11) (-7.05294e-13 -7.57617e-12 -5.26879e-11) (4.4974e-12 -2.26908e-12 -4.08097e-12) (1.53366e-10 -2.40786e-11 6.39046e-11) (4.1026e-10 -4.01687e-11 2.17068e-10) (2.70894e-10 -3.62404e-12 1.54415e-10) (1.03945e-10 1.10339e-11 4.68551e-11) (4.99852e-11 2.72204e-12 -4.59055e-12) (1.6774e-10 -2.38954e-11 -1.29171e-10) (6.50899e-10 -8.01177e-11 -4.4215e-10) (1.37718e-09 -6.67781e-11 -2.88501e-10) (1.90345e-09 -1.38861e-10 3.76576e-10) (1.22453e-09 -1.63343e-10 5.0953e-10) (6.35091e-10 -6.87132e-11 2.12887e-10) (9.88744e-10 -1.96126e-12 1.0549e-10) (2.66178e-09 1.01637e-10 1.91859e-10) (5.18483e-09 1.63676e-10 5.71213e-10) (6.55864e-09 1.29367e-10 9.20227e-10) (8.29117e-09 -9.79648e-12 5.62988e-10) (5.30391e-09 -4.06951e-11 2.65484e-11) (2.98698e-09 -2.9569e-11 -3.30742e-10) (2.12076e-09 4.18505e-12 -4.16104e-10) (2.2788e-09 3.2273e-11 -2.80398e-10) (3.18112e-09 4.68127e-11 1.92131e-10) (4.6249e-09 2.43398e-11 1.01037e-09) (5.87421e-09 -7.99076e-12 1.6269e-09) (6.13384e-09 -3.92248e-11 1.50325e-09) (5.35609e-09 -7.36759e-11 8.48937e-10) (3.57583e-09 -8.94754e-11 2.28422e-10) (1.49121e-09 -4.9026e-11 -2.61369e-11) (3.26703e-10 -7.81127e-12 -2.20294e-11) (4.40612e-11 -2.8768e-13 1.9568e-12) (8.42541e-12 -5.65158e-13 5.38083e-12) (3.57986e-12 -9.36791e-13 6.04171e-12) (3.71961e-12 -1.65199e-13 3.42408e-12) (1.22404e-12 6.16056e-13 4.94399e-12) (-3.24645e-11 2.70122e-12 3.70872e-11) (-2.12495e-10 5.51857e-12 1.31167e-10) (-2.01527e-10 2.32477e-12 6.52848e-11) (-2.3983e-11 -8.58201e-13 -3.24925e-12) (-2.00965e-12 -7.83088e-13 -6.86024e-12) (1.52683e-12 -7.8035e-13 -6.20889e-12) (1.91108e-11 -2.67044e-12 -2.73302e-12) (1.36398e-10 -1.61231e-11 4.62193e-11) (1.62956e-10 -1.92633e-11 1.00192e-10) (8.34138e-11 -4.61441e-12 7.11197e-11) (4.30999e-11 2.88413e-12 2.56687e-11) (5.92025e-11 3.00538e-12 -3.23181e-12) (2.32863e-10 -8.01316e-12 -1.20131e-10) (7.34614e-10 -3.42987e-11 -3.61911e-10) (1.53773e-09 -2.81084e-11 -2.69991e-10) (1.92734e-09 -5.57225e-11 2.08255e-10) (1.23021e-09 -6.44736e-11 2.77746e-10) (8.15998e-10 -2.79088e-11 1.13023e-10) (1.39877e-09 9.2502e-12 3.8994e-11) (3.49852e-09 7.50378e-11 1.25276e-10) (6.82851e-09 1.13346e-10 4.68355e-10) (9.18001e-09 6.16303e-11 7.67393e-10) (7.36843e-10 -2.00291e-12 -3.08195e-11) (3.97061e-10 -3.46698e-12 -4.84377e-11) (1.6499e-10 -2.70846e-12 -4.71673e-11) (9.17673e-11 -1.83172e-12 -3.74902e-11) (1.03729e-10 -9.96797e-13 -2.43357e-11) (1.88939e-10 -1.77431e-13 1.20598e-11) (3.48049e-10 -7.29466e-14 9.42692e-11) (4.90869e-10 1.60113e-13 1.61598e-10) (5.19351e-10 -1.45359e-13 1.44225e-10) (4.05068e-10 -2.09356e-12 7.00729e-11) (1.82253e-10 -2.80006e-12 1.13309e-11) (3.28547e-11 -9.50497e-13 -2.32621e-12) (1.7912e-12 -8.88845e-14 -3.85959e-13) (-7.51331e-13 -4.77674e-14 5.39817e-13) (-2.83714e-12 -3.26788e-13 3.72786e-12) (-8.55452e-12 -7.27688e-13 4.983e-12) (-1.91872e-11 -5.87279e-13 3.03437e-12) (-2.85477e-11 4.0574e-13 4.83357e-12) (-3.81713e-11 1.38874e-12 1.80849e-11) (-3.46241e-11 1.48151e-12 2.82886e-11) (-1.19591e-11 5.14812e-13 1.5642e-11) (-1.30833e-12 5.58871e-14 4.50235e-12) (1.73462e-13 -1.47081e-14 8.38461e-13) (1.06463e-12 1.0301e-16 4.32295e-13) (1.11292e-11 -2.12005e-13 8.95844e-13) (1.81677e-11 -9.25239e-13 3.49348e-12) (3.85035e-12 -5.4551e-13 3.14585e-12) (-1.24659e-12 -3.10573e-13 3.60476e-12) (-2.32311e-12 4.36417e-14 3.16389e-12) (1.54347e-13 5.23624e-14 4.24255e-13) (8.49859e-12 2.21438e-13 -2.43796e-12) (6.97252e-11 -2.78887e-13 -3.7191e-11) (2.0869e-10 2.38098e-12 -7.11011e-11) (3.04672e-10 3.02468e-12 -2.98928e-11) (2.07357e-10 -5.93325e-13 1.33093e-12) (1.17043e-10 -7.52901e-13 -3.42354e-12) (1.34945e-10 7.01148e-13 -1.40669e-11) (2.85765e-10 4.33763e-12 -2.45741e-11) (5.84668e-10 7.55985e-12 -2.60928e-11) (8.38293e-10 4.29705e-12 -2.02563e-11) (4.68552e-10 -2.41023e-10 -6.12118e-10) (4.14035e-10 -2.6711e-10 -8.92822e-10) (1.41957e-10 -1.44039e-10 -5.94089e-10) (-2.68582e-11 -3.98682e-11 -1.62128e-10) (-7.9578e-11 -3.06342e-11 -2.68449e-11) (-3.04631e-10 -1.3728e-10 1.09943e-10) (-5.38718e-10 -3.15195e-10 3.41915e-10) (-4.29742e-10 -2.4768e-10 3.14769e-10) (-1.63256e-10 -2.48773e-11 8.92973e-11) (-8.62845e-11 7.71196e-11 -1.64494e-11) (-1.16069e-10 3.26752e-10 -2.42165e-10) (-1.02079e-10 4.74854e-10 -4.99015e-10) (-1.4235e-10 3.03105e-10 -3.41768e-10) (-2.0372e-10 1.66775e-10 -8.85871e-11) (-4.25838e-10 1.85197e-10 1.7678e-10) (-6.7137e-10 1.73152e-10 7.11565e-10) (-5.37454e-10 8.41982e-11 1.02482e-09) (-2.10403e-10 4.94849e-11 7.04286e-10) (-2.78642e-11 3.01853e-11 2.30735e-10) (9.43816e-12 3.77703e-13 2.97489e-11) (4.29526e-11 -3.38515e-11 2.99295e-12) (2.91269e-10 -3.02145e-10 -1.16216e-10) (7.20066e-10 -7.60633e-10 -4.51879e-10) (8.68585e-10 -7.97583e-10 -7.63027e-10) (5.98802e-10 -4.18179e-10 -7.00734e-10) (2.15257e-10 -1.24692e-10 -3.01409e-10) (1.8743e-11 -2.04898e-11 -2.17857e-11) (-1.08328e-11 -3.62565e-11 4.83338e-11) (-2.13909e-10 -1.55019e-10 4.804e-10) (-6.16999e-10 -9.6996e-11 9.30526e-10) (-7.6474e-10 2.01502e-10 7.77671e-10) (-5.68265e-10 4.13966e-10 3.69282e-10) (-2.76005e-10 4.02373e-10 7.07926e-11) (-5.71684e-11 2.55228e-10 -4.86155e-11) (4.49873e-11 1.19071e-10 -5.01706e-11) (9.51374e-11 5.48806e-11 -1.93265e-11) (1.66828e-10 1.6208e-11 3.02589e-11) (2.25959e-10 -3.28649e-11 6.76497e-11) (2.30682e-10 -7.21181e-11 7.81597e-12) (3.05984e-10 -1.30828e-10 -1.77147e-10) (3.75841e-10 -3.70102e-10 -1.1537e-09) (9.15959e-12 -2.84292e-10 -9.11552e-10) (-1.26838e-10 -1.18022e-10 -3.22777e-10) (-8.87417e-11 -4.88658e-11 -4.58296e-11) (-1.03456e-10 -6.65775e-11 5.28163e-11) (-1.27378e-10 -1.24204e-10 2.03493e-10) (-6.66192e-11 -1.22428e-10 2.83697e-10) (5.48136e-12 -2.83224e-11 1.29682e-10) (4.4501e-12 9.94732e-12 9.03431e-12) (-1.1541e-11 1.1664e-10 -7.03942e-11) (-1.33918e-10 3.58163e-10 -3.38274e-10) (-1.86294e-10 3.62644e-10 -4.29978e-10) (-1.07603e-10 2.37514e-10 -2.9767e-10) (-5.26185e-11 1.64144e-10 -1.46064e-10) (-4.21476e-11 1.12676e-10 -3.09217e-11) (-6.15795e-11 7.90421e-11 6.54037e-11) (-1.86595e-10 1.81573e-11 4.05351e-10) (-3.42434e-10 -3.2901e-10 1.05895e-09) (-2.15269e-10 -5.89998e-10 1.02335e-09) (2.87271e-11 -4.17633e-10 3.75048e-10) (1.68986e-10 -2.90443e-10 3.26894e-11) (4.08505e-10 -3.16186e-10 -2.48776e-10) (5.70124e-10 -1.6727e-10 -5.66745e-10) (4.63608e-10 8.08559e-11 -6.77278e-10) (2.43273e-10 1.51104e-10 -4.97935e-10) (6.93144e-11 4.73643e-11 -1.50492e-10) (1.85343e-12 -5.08016e-13 -1.27909e-12) (-4.97971e-11 -7.69082e-11 1.45202e-10) (-7.15466e-10 -4.76798e-10 1.01077e-09) (-1.94228e-09 -7.32712e-10 1.66219e-09) (-1.91502e-09 -2.72551e-10 1.0233e-09) (-8.06839e-10 1.95835e-10 2.51077e-10) (-2.27662e-10 3.01936e-10 2.99023e-11) (9.74936e-13 3.6941e-10 -2.58534e-12) (1.46424e-10 2.88403e-10 2.40052e-11) (1.96141e-10 1.42128e-10 5.70165e-11) (2.35451e-10 3.43359e-11 6.45007e-11) (2.88596e-10 -5.12953e-11 5.6384e-12) (3.89423e-10 -1.35597e-10 -1.94797e-10) (5.21044e-10 -2.65771e-10 -6.83186e-10) (4.49625e-10 -1.86002e-10 -1.08282e-09) (1.49414e-10 -3.59775e-10 -9.5507e-10) (-8.85226e-11 -3.1258e-10 -4.35543e-10) (-1.91378e-10 -2.16109e-10 -9.79447e-11) (-4.36684e-10 -2.69923e-10 1.76139e-10) (-7.37612e-10 -3.06464e-10 6.36378e-10) (-4.86178e-10 -1.43969e-10 5.98184e-10) (-5.0111e-11 2.13103e-12 8.81821e-11) (2.03869e-11 2.95e-11 -1.67498e-11) (3.19469e-10 3.26455e-10 -4.24556e-10) (4.88744e-10 4.55221e-10 -7.28656e-10) (2.7847e-10 1.85438e-10 -4.2485e-10) (1.2651e-10 2.77563e-11 -1.52439e-10) (7.95794e-11 1.05497e-11 -5.41555e-11) (7.20505e-11 4.10749e-11 -1.9641e-11) (6.7541e-11 1.02952e-10 1.93095e-11) (2.73638e-11 1.41676e-10 1.00325e-10) (-2.33271e-11 8.51312e-11 2.0367e-10) (-3.07406e-11 -5.91523e-11 2.55705e-10) (1.2502e-11 -1.89076e-10 1.7698e-10) (4.08468e-11 -1.91822e-10 3.48631e-11) (1.90495e-11 -8.90232e-11 -4.23296e-11) (-3.1408e-12 -2.12437e-11 -5.81292e-11) (-1.39796e-11 2.21437e-11 -9.38746e-11) (5.50252e-12 5.01412e-11 -1.05751e-10) (2.90945e-11 3.11683e-11 -5.38105e-11) (1.31157e-11 5.20018e-12 -1.91191e-12) (4.68203e-12 -9.41654e-12 5.44388e-11) (-2.4444e-10 -1.79325e-10 4.55806e-10) (-1.17585e-09 -6.76543e-10 1.04402e-09) (-2.01537e-09 -9.66215e-10 9.42265e-10) (-1.56709e-09 -5.00783e-10 3.71939e-10) (-5.4317e-10 7.99006e-12 1.03924e-10) (-1.15188e-10 1.20035e-10 7.03337e-11) (2.44903e-11 2.18375e-10 1.34723e-10) (1.69739e-10 2.28128e-10 1.86331e-10) (2.17177e-10 1.24393e-10 1.3929e-10) (1.9893e-10 4.66194e-11 3.55478e-11) (2.64601e-10 2.16132e-11 -1.26094e-10) (4.62559e-10 -2.05879e-11 -5.86202e-10) (1.50446e-10 2.79544e-12 -4.24978e-10) (1.24977e-10 -2.23657e-10 -5.98775e-10) (-4.03614e-11 -2.44003e-10 -3.22158e-10) (-2.33579e-10 -1.79959e-10 -3.02458e-11) (-1.40805e-09 -4.06462e-10 6.71913e-10) (-2.69834e-09 -4.70644e-10 1.52137e-09) (-1.16879e-09 -2.45004e-10 5.04894e-10) (-3.76875e-11 -3.71887e-11 -2.96369e-11) (4.99757e-10 -1.85729e-10 -6.29094e-10) (1.86283e-09 -1.54066e-10 -1.64177e-09) (1.90772e-09 8.01131e-11 -1.37481e-09) (1.03218e-09 1.06982e-10 -5.76228e-10) (3.49627e-10 5.75573e-11 -1.025e-10) (1.11123e-10 4.94561e-11 3.89185e-11) (1.27365e-10 1.57409e-10 2.15188e-10) (2.13943e-10 4.08479e-10 5.41751e-10) (2.20684e-10 4.64729e-10 5.89584e-10) (7.65069e-11 2.09443e-10 3.28021e-10) (-2.00467e-11 2.09328e-11 1.1335e-10) (-8.14162e-11 -4.27519e-11 7.78683e-11) (-1.39093e-10 -7.16585e-11 4.54804e-11) (-7.55971e-11 -2.50043e-11 -8.37771e-12) (-2.01685e-11 2.06617e-13 -3.10278e-11) (2.5569e-11 1.45708e-11 -1.26641e-10) (1.42864e-10 1.54743e-11 -2.6198e-10) (1.42206e-10 -2.24263e-12 -1.66077e-10) (2.08413e-11 -3.87165e-12 -7.43423e-12) (-1.52716e-11 -2.53878e-11 8.07241e-11) (-4.67256e-10 -2.30782e-10 7.22731e-10) (-1.55548e-09 -5.39582e-10 1.52467e-09) (-2.07265e-09 -4.64714e-10 1.41398e-09) (-1.32204e-09 -1.32635e-10 6.83583e-10) (-3.61212e-10 9.6483e-12 1.762e-10) (-2.06569e-11 4.61188e-12 1.52853e-11) (1.27815e-12 5.75829e-13 3.49261e-13) (1.46399e-11 4.31376e-12 -7.64763e-12) (2.36876e-11 1.61091e-11 -2.37556e-11) (3.43776e-11 4.7448e-11 -4.70954e-11) (6.30665e-11 9.88575e-11 -1.01995e-10) (1.08657e-10 1.11538e-10 -2.21137e-10) (6.29567e-11 -6.78651e-11 -4.05873e-10) (1.89945e-10 -3.33433e-10 -4.80063e-10) (8.40582e-11 -1.48522e-10 -9.59903e-11) (-3.25522e-11 -1.73353e-11 5.98936e-11) (-1.3897e-09 1.47703e-10 1.13606e-09) (-3.63846e-09 -5.28782e-11 1.52258e-09) (-1.83263e-09 -5.91942e-10 -1.36778e-10) (-3.15746e-10 -8.43759e-10 -1.03192e-09) (1.17391e-09 -1.25755e-09 -2.20856e-09) (1.82016e-09 -5.33595e-10 -1.56983e-09) (1.26112e-09 1.2015e-10 -4.08144e-10) (8.63391e-10 3.37255e-10 2.11486e-10) (7.65052e-10 4.24244e-10 7.89461e-10) (5.93508e-10 3.35696e-10 1.29123e-09) (2.21171e-10 1.4894e-10 1.0294e-09) (9.08815e-12 1.1385e-10 4.37773e-10) (-1.42669e-11 1.60392e-10 1.88107e-10) (1.90888e-12 2.63298e-10 1.29833e-10) (5.75554e-12 1.97762e-10 7.51271e-11) (3.84429e-13 3.37032e-11 1.36963e-11) (3.07912e-13 1.72361e-13 -2.10627e-12) (1.65373e-11 -4.96883e-11 -1.48115e-10) (8.32408e-11 -2.15864e-10 -7.12278e-10) (1.4089e-10 -2.97089e-10 -1.07123e-09) (6.29268e-11 -1.03918e-10 -4.81302e-10) (-1.96265e-12 2.69431e-12 -1.37473e-11) (-9.31336e-11 5.85379e-11 1.34029e-10) (-6.91147e-10 6.01684e-11 1.05288e-09) (-1.37873e-09 -4.61091e-10 2.01706e-09) (-1.12513e-09 -8.26798e-10 1.8115e-09) (-4.24313e-10 -5.11709e-10 8.97028e-10) (-7.05555e-11 -1.16498e-10 2.29645e-10) (-2.15955e-12 -2.64339e-12 2.00108e-11) (2.87623e-12 4.89444e-12 -1.23721e-13) (3.13651e-11 4.21584e-11 -4.49695e-11) (7.38589e-11 1.29631e-10 -2.15794e-10) (2.42199e-11 2.24385e-10 -4.24427e-10) (-7.22231e-11 2.80657e-10 -4.80345e-10) (-7.08375e-11 2.5393e-10 -3.87942e-10) (-9.87185e-12 1.27051e-10 -3.19573e-10) (-1.14103e-10 -7.55327e-10 -1.03436e-09) (7.66271e-11 -1.09475e-09 -9.55767e-10) (8.40384e-11 -1.40244e-10 -5.8588e-11) (2.23563e-10 2.16217e-10 3.28312e-10) (-5.13123e-11 1.10474e-09 1.3144e-09) (-8.70779e-10 4.38858e-10 7.688e-10) (-1.09854e-09 -4.67179e-10 -3.22377e-11) (-7.55021e-10 -1.17392e-09 -8.97274e-10) (7.7625e-11 -6.43781e-10 -7.15875e-10) (2.86812e-10 -7.61777e-11 -1.2893e-10) (1.24758e-09 3.42531e-10 5.19038e-10) (2.82623e-09 9.9385e-10 2.20344e-09) (2.07965e-09 5.17412e-10 2.03981e-09) (3.94903e-10 -2.23009e-11 5.50124e-10) (-4.13633e-11 -5.21908e-11 9.67731e-11) (-4.55262e-10 -1.09141e-10 1.85022e-10) (-6.59249e-10 6.08703e-11 2.50932e-10) (-2.26805e-10 1.64561e-10 1.19465e-10) (-1.22964e-11 1.3413e-10 1.28265e-11) (7.73841e-11 1.62254e-10 -1.10616e-10) (1.45996e-10 1.85929e-10 -4.77909e-10) (1.37038e-10 1.02676e-10 -1.27915e-09) (6.0488e-11 -9.71118e-11 -1.62262e-09) (-3.13298e-11 -1.09068e-10 -7.22688e-10) (-1.03045e-11 -7.88374e-12 -2.59122e-11) (-1.82441e-11 -8.57911e-12 1.16759e-10) (3.79367e-11 -1.01589e-10 9.80695e-10) (1.78677e-10 -4.24963e-10 1.80782e-09) (1.15347e-10 -7.17151e-10 1.79039e-09) (-1.39627e-10 -5.31424e-10 9.43654e-10) (-2.22305e-10 -1.7179e-10 2.44203e-10) (-2.12511e-10 -2.63912e-11 4.63481e-11) (-5.67926e-11 1.28359e-11 -4.45777e-12) (1.53505e-11 1.24891e-11 -1.32271e-11) (6.0641e-10 2.39052e-10 -3.18554e-10) (1.6401e-09 9.46143e-10 -1.05448e-09) (9.86906e-10 1.09989e-09 -1.09207e-09) (6.2639e-11 5.55715e-10 -6.30543e-10) (-1.90052e-10 2.16732e-10 -4.65344e-10) (-1.89203e-10 -9.38956e-11 -5.4126e-10) (-6.03026e-09 -4.48367e-09 -4.8806e-09) (-3.36741e-09 -3.77094e-09 -2.80635e-09) (-8.58473e-11 -3.34857e-10 2.49769e-11) (1.35229e-09 4.94941e-10 1.6317e-09) (4.75931e-09 3.92396e-09 4.511e-09) (1.94788e-09 2.02226e-09 1.70799e-09) (1.88496e-11 1.50247e-11 2.44647e-11) (-1.24223e-10 -2.57233e-10 -5.23728e-11) (-8.55693e-11 -3.83595e-10 -1.86536e-11) (1.34907e-10 -1.69112e-10 1.12711e-10) (8.21979e-10 -3.84093e-11 4.98633e-10) (1.65181e-09 4.06376e-10 7.31061e-10) (1.09295e-09 4.22824e-10 3.70854e-10) (8.41992e-11 5.31907e-11 5.21453e-11) (-3.04104e-10 -8.03033e-12 1.25788e-10) (-3.78797e-09 -3.87303e-10 8.28277e-10) (-5.83295e-09 -3.95419e-10 8.09453e-10) (-2.32332e-09 2.76556e-11 -4.36314e-11) (-3.53532e-10 7.65919e-11 -1.98922e-10) (-4.18553e-11 9.19145e-11 -3.09947e-10) (2.35265e-10 1.67221e-10 -7.1263e-10) (4.92995e-10 1.39965e-10 -8.85869e-10) (3.3865e-10 1.13971e-11 -4.37144e-10) (8.33422e-11 -2.94331e-11 -4.35593e-11) (8.34206e-11 -8.31696e-11 1.03023e-10) (2.65339e-10 -3.13876e-10 7.17654e-10) (6.53724e-10 -4.31519e-10 1.73749e-09) (8.65658e-10 -2.42461e-10 2.16409e-09) (2.24016e-10 -3.59459e-11 8.83148e-10) (-9.46845e-11 -1.06626e-11 8.75341e-11) (-8.82311e-10 -1.59349e-10 -1.25607e-10) (-1.14972e-09 -3.60756e-10 -1.98479e-10) (-1.52626e-10 -1.08274e-10 -7.78413e-12) (5.32508e-11 -2.19434e-11 -1.85953e-11) (1.32697e-09 3.18916e-10 -6.01369e-10) (4.66117e-09 2.47968e-09 -2.3876e-09) (5.20443e-09 4.0439e-09 -2.96619e-09) (1.19462e-09 1.56632e-09 -1.14491e-09) (-2.07485e-10 1.75927e-10 -3.54562e-10) (-2.41502e-09 -9.56681e-10 -1.78599e-09) (-8.31803e-09 -7.16909e-09 -7.57247e-09) (-3.41511e-09 -5.30346e-09 -2.83634e-09) (-5.77945e-11 -9.09092e-10 3.65019e-10) (2.3745e-09 4.32395e-11 3.9419e-09) (8.08061e-09 4.561e-09 8.73008e-09) (6.57284e-09 4.78295e-09 4.5387e-09) (1.2584e-09 8.35959e-10 6.20386e-10) (2.30451e-11 -2.02786e-11 2.81407e-11) (-1.13359e-10 -3.38318e-10 1.71813e-10) (-5.1509e-11 -2.6179e-10 1.5565e-10) (2.86287e-11 -1.55057e-11 8.95308e-12) (2.36463e-10 1.53994e-10 -1.08335e-10) (1.80815e-10 3.27676e-10 -1.285e-10) (-2.29256e-10 2.77515e-10 8.89438e-11) (-3.80728e-09 4.41917e-10 1.43224e-09) (-9.31995e-09 -1.35811e-09 2.26754e-09) (-4.89856e-09 -1.80685e-09 1.28489e-10) (-7.83277e-10 -6.08666e-10 -4.31582e-10) (-4.67998e-11 -1.87451e-10 -3.45846e-10) (1.72463e-10 -5.26451e-11 -4.28459e-10) (5.31749e-10 1.35458e-10 -6.56353e-10) (1.15043e-09 4.31998e-10 -8.88198e-10) (1.41889e-09 4.89659e-10 -7.33477e-10) (7.26635e-10 1.40395e-10 -1.78693e-10) (1.47689e-10 -2.44143e-11 6.57081e-11) (5.99314e-11 -1.13175e-10 4.08999e-10) (3.36801e-11 -1.83951e-10 1.61402e-09) (3.15686e-10 3.81881e-11 1.97423e-09) (1.17147e-10 6.11072e-11 4.93469e-10) (-2.58993e-11 -8.21419e-12 1.19737e-11) (-7.64428e-10 -3.27286e-10 -1.28477e-10) (-1.28128e-09 -6.1866e-10 6.31141e-12) (-3.3915e-10 -2.14209e-10 4.43493e-11) (-1.37377e-11 -2.24454e-11 -2.54707e-11) (1.2519e-10 3.70705e-11 -2.42009e-10) (9.17731e-10 7.54532e-10 -8.49439e-10) (2.27146e-09 2.60839e-09 -1.49994e-09) (9.98607e-10 2.02821e-09 -1.11736e-09) (-4.78042e-10 4.9361e-10 -8.70118e-10) (-4.44078e-09 -1.5933e-09 -4.13827e-09) (-2.45253e-09 -5.24333e-09 -4.34099e-09) (-1.2779e-09 -3.48808e-09 -1.52335e-09) (-6.33808e-11 -4.33926e-10 2.73922e-10) (2.1939e-09 1.05604e-10 5.12308e-09) (1.03192e-08 3.89989e-09 1.47287e-08) (1.01276e-08 5.66736e-09 9.67488e-09) (3.03493e-09 1.99718e-09 2.07895e-09) (1.29517e-10 4.97207e-11 1.22951e-10) (-8.0533e-11 -1.27105e-10 6.74652e-11) (-2.98938e-10 -2.81796e-10 -5.9242e-11) (-3.75343e-10 -6.6273e-11 -4.77184e-10) (-6.29799e-10 5.94053e-10 -1.12007e-09) (-6.20211e-10 7.69416e-10 -4.37029e-10) (-6.03581e-10 4.39824e-10 3.41063e-10) (-8.60865e-10 -4.33284e-11 9.4526e-10) (-8.59329e-10 -6.77158e-10 6.93212e-10) (-8.71598e-10 -9.27019e-10 1.58153e-11) (-9.47922e-10 -8.30401e-10 -6.57113e-10) (-5.78383e-10 -4.95042e-10 -8.48238e-10) (-5.93838e-11 -2.07837e-10 -4.85972e-10) (2.16906e-10 -6.11577e-11 -3.34201e-10) (8.95935e-10 1.66143e-10 -5.91462e-10) (1.99521e-09 5.67658e-10 -8.6656e-10) (2.03348e-09 6.30478e-10 -4.62125e-10) (1.02804e-09 4.07175e-10 1.47002e-10) (4.61151e-10 2.91877e-10 4.6293e-10) (3.06172e-10 2.66373e-10 7.73175e-10) (1.88747e-10 1.16684e-10 4.88541e-10) (1.39277e-11 -1.89779e-13 4.67165e-11) (-1.10204e-10 -6.43456e-11 2.41545e-12) (-8.96538e-10 -4.24795e-10 1.70753e-11) (-8.03385e-10 -4.27114e-10 1.76237e-10) (-2.81878e-10 -1.79565e-10 3.74469e-12) (-4.41503e-10 -2.55851e-10 -3.09728e-10) (-9.19381e-10 -2.69722e-10 -6.33251e-10) (-5.35296e-10 2.62887e-10 -3.27821e-10) (-1.21277e-10 1.21547e-09 -5.24077e-10) (5.49435e-10 2.01307e-09 -1.42282e-09) (1.01677e-10 6.25705e-10 -1.70817e-09) (-1.06693e-09 -1.47812e-09 -3.16349e-09) (-1.23828e-11 -2.88292e-09 -1.9351e-09) (-2.52221e-10 -1.07626e-09 -2.79388e-10) (-5.62006e-11 -1.35066e-10 4.1097e-10) (2.09761e-09 3.47335e-10 5.87219e-09) (9.16331e-09 1.43949e-09 1.42625e-08) (9.09875e-09 2.93136e-09 9.78081e-09) (3.59388e-09 1.78359e-09 2.86504e-09) (3.49264e-10 2.01532e-10 2.81841e-10) (-1.06978e-11 -6.09996e-12 -5.41544e-13) (-7.25307e-10 -2.48929e-10 -6.03937e-10) (-2.69402e-09 2.71663e-12 -3.061e-09) (-2.69873e-09 8.88565e-10 -2.79054e-09) (-6.17751e-10 3.74815e-10 -2.38086e-10) (-1.12174e-10 1.07227e-10 2.59713e-10) (3.81076e-11 -5.11206e-11 6.06898e-10) (-3.08729e-11 -1.18451e-10 2.17514e-10) (-3.6414e-10 -2.25596e-10 -3.30063e-11) (-1.98294e-09 -8.08781e-10 -1.07818e-09) (-1.88948e-09 -1.16015e-09 -1.56455e-09) (-3.94216e-10 -6.47842e-10 -6.07891e-10) (3.05212e-11 -9.76519e-11 -8.28285e-11) (1.32904e-10 2.56836e-11 -3.12818e-11) (5.98132e-10 3.43063e-10 -2.72643e-11) (1.08091e-09 6.99957e-10 1.1151e-10) (1.19861e-09 8.24276e-10 4.16198e-10) (1.08885e-09 6.7029e-10 5.92467e-10) (7.31144e-10 3.29137e-10 3.29199e-10) (1.99123e-10 5.44296e-11 1.40851e-11) (4.44479e-13 -7.24275e-12 -2.69196e-11) (-2.98341e-10 -1.41887e-10 -1.57953e-10) (-3.5404e-10 -2.25763e-10 3.03256e-11) (-7.68411e-11 -1.18377e-10 8.59452e-11) (-3.78129e-11 -5.92482e-11 -1.60585e-11) (-9.52182e-10 -5.78529e-10 -7.18101e-10) (-4.79774e-09 -1.46906e-09 -1.81702e-09) (-5.63628e-09 2.1718e-10 -9.68509e-10) (-1.50427e-09 1.06756e-09 -5.41269e-10) (1.85972e-11 1.03469e-09 -1.04455e-09) (5.70827e-10 3.7574e-10 -1.74355e-09) (4.35096e-10 -1.20911e-09 -2.09473e-09) (3.1341e-10 -1.16954e-09 -6.93738e-10) (-1.77075e-11 -1.7479e-10 1.10743e-10) (2.58959e-10 1.95964e-10 2.31319e-09) (3.03071e-09 6.34054e-10 8.05649e-09) (5.03952e-09 7.03487e-11 8.60083e-09) (3.39945e-09 5.60867e-10 4.44822e-09) (1.68412e-09 6.40383e-10 1.65128e-09) (3.73605e-10 1.75161e-10 2.61815e-10) (1.32627e-12 2.98262e-12 -9.7007e-12) (-1.02498e-09 3.07971e-11 -1.35702e-09) (-6.38911e-09 8.04858e-10 -5.93604e-09) (-7.09004e-09 1.14436e-09 -3.77478e-09) (-1.58077e-09 2.66272e-10 4.04518e-11) (-7.42789e-11 1.89523e-11 2.51279e-10) (2.38164e-10 -1.71631e-11 3.33651e-10) (9.05075e-11 -7.56521e-12 8.54425e-11) (-2.6278e-11 -6.53133e-12 -5.54034e-12) (-1.03598e-09 -3.43211e-10 -5.03778e-10) (-1.82285e-09 -1.42705e-09 -1.23932e-09) (-8.18491e-10 -1.49857e-09 -9.25115e-10) (-7.66119e-11 -2.85317e-10 -1.70102e-10) (2.178e-12 1.18493e-12 8.99938e-13) (1.4603e-10 2.057e-10 1.49227e-10) (4.96932e-10 5.78909e-10 5.25077e-10) (7.36307e-10 6.95183e-10 7.52885e-10) (6.18009e-10 4.77835e-10 4.85233e-10) (3.29078e-10 2.15752e-10 4.65306e-11) (1.68578e-10 1.37738e-10 -2.38026e-10) (-6.52363e-11 7.06193e-11 -5.74392e-10) (-9.71857e-11 -7.30109e-11 -1.7768e-10) (2.68662e-11 -1.01116e-10 5.61917e-11) (2.46596e-10 -1.57629e-10 2.58775e-10) (2.64404e-11 -2.31774e-11 -4.31633e-12) (-5.68248e-10 -5.06871e-10 -6.24481e-10) (-6.42212e-09 -2.37254e-09 -2.28936e-09) (-1.28286e-08 -9.00373e-10 -1.8774e-09) (-4.47499e-09 1.18172e-09 -1.12763e-09) (-3.20748e-10 5.2673e-10 -7.67415e-10) (5.27331e-10 1.21432e-10 -1.29304e-09) (8.7486e-10 -9.90926e-10 -1.60714e-09) (1.16519e-10 -2.1602e-10 -1.26713e-10) (1.59629e-10 -5.61236e-11 7.63795e-10) (2.75067e-09 1.10487e-09 7.98225e-09) (4.73393e-09 5.97235e-10 1.03971e-08) (1.60118e-09 -1.74135e-10 3.73992e-09) (3.89959e-10 -9.30479e-12 9.13271e-10) (2.46547e-10 6.96165e-11 3.2975e-10) (8.8833e-11 3.94031e-11 5.69882e-11) (-1.68625e-11 3.19746e-11 -6.68422e-11) (-2.02403e-09 6.51009e-10 -2.30277e-09) (-8.70351e-09 1.78083e-09 -5.88351e-09) (-6.69721e-09 5.16326e-10 -1.73179e-09) (-9.62361e-10 -1.23827e-10 3.28032e-10) (3.91292e-11 -4.8142e-11 1.73238e-10) (4.16181e-10 1.64124e-11 2.56064e-10) (2.63086e-10 8.93021e-11 1.26484e-10) (-1.46197e-12 9.39997e-12 3.5866e-12) (-3.39966e-10 -9.01809e-11 -1.23684e-10) (-1.17644e-09 -1.29282e-09 -8.10582e-10) (-1.36113e-09 -2.32e-09 -1.42605e-09) (-6.40159e-10 -6.92983e-10 -6.29445e-10) (-5.31843e-11 -6.65031e-13 -2.78653e-11) (-1.36265e-11 7.30291e-11 7.25604e-11) (4.4559e-11 2.54215e-10 4.19936e-10) (3.41566e-11 2.53317e-10 4.93383e-10) (-1.44114e-12 1.11115e-10 1.19455e-10) (8.30175e-12 1.41044e-10 -9.67525e-11) (1.589e-10 5.16048e-10 -1.11685e-09) (3.08021e-10 1.67937e-10 -1.19468e-09) (1.81514e-10 -1.00613e-10 -1.65647e-10) (5.74135e-10 -2.87707e-10 3.98336e-10) (1.02886e-09 -8.14698e-11 9.53966e-10) (2.01879e-10 -5.51676e-12 6.21555e-11) (-1.70297e-10 -3.10054e-10 -2.97373e-10) (-7.08487e-09 -3.08295e-09 -2.25256e-09) (-1.80072e-08 -2.69153e-09 -2.76559e-09) (-5.08367e-09 3.69343e-10 -1.54313e-09) (-2.03374e-10 2.27274e-10 -6.51946e-10) (7.07165e-10 7.39267e-11 -1.30653e-09) (8.59357e-10 -5.36832e-10 -1.2429e-09) (5.46232e-11 -1.51747e-11 -1.01268e-12) (1.42884e-09 3.25578e-10 2.8321e-09) (9.10672e-09 1.52515e-09 1.49368e-08) (5.88788e-09 3.38533e-10 1.03312e-08) (2.81176e-10 -7.62776e-11 1.54134e-09) (-9.94213e-11 -2.10798e-11 1.75832e-10) (-3.28785e-11 3.1394e-12 2.75287e-11) (-2.72687e-11 1.51103e-11 -5.503e-12) (-4.82601e-10 2.50531e-10 -4.56259e-10) (-2.97368e-09 1.23778e-09 -2.64699e-09) (-4.13452e-09 9.97851e-10 -2.23434e-09) (-1.23544e-09 -7.19845e-11 -4.71677e-12) (-8.60539e-11 -1.37207e-10 2.03515e-10) (2.62717e-10 -1.2015e-10 2.68939e-10) (5.69292e-10 6.92037e-11 3.05978e-10) (3.24826e-10 1.83956e-10 1.81394e-10) (1.09463e-11 4.45821e-11 2.21565e-11) (-6.66659e-11 -2.36532e-11 -2.03693e-11) (-7.14225e-10 -1.00191e-09 -5.08767e-10) (-2.1363e-09 -2.38556e-09 -1.57916e-09) (-2.05665e-09 -9.31081e-10 -1.26092e-09) (-4.78339e-10 4.12791e-11 -1.88358e-10) (-9.29698e-11 6.50961e-11 7.10969e-11) (-1.59681e-10 1.38119e-10 3.94295e-10) (-3.13895e-10 1.30566e-10 4.54076e-10) (-2.41479e-10 1.03429e-10 3.52841e-11) (-1.53842e-10 2.49839e-10 -6.04963e-10) (9.28728e-10 4.26655e-10 -2.40165e-09) (1.68511e-09 7.70318e-11 -2.06195e-09) (7.91583e-10 -8.03146e-11 -3.56976e-10) (5.69996e-10 3.3517e-11 4.5482e-10) (9.57025e-10 4.03645e-10 1.55097e-09) (3.26575e-10 6.80178e-11 3.02456e-10) (-1.2431e-10 -2.3595e-10 -9.85423e-11) (-1.0957e-08 -4.62431e-09 -2.34657e-09) (-2.20218e-08 -4.86036e-09 -3.42515e-09) (-3.16379e-09 -4.2375e-10 -1.38262e-09) (8.59501e-11 6.86953e-11 -6.81708e-10) (1.21209e-09 1.62737e-10 -1.57531e-09) (7.9039e-10 -1.0825e-10 -9.12794e-10) (4.4398e-10 9.96019e-11 2.00806e-10) (6.22187e-09 7.77345e-10 6.89822e-09) (1.73238e-08 8.32396e-10 1.93456e-08) (5.37675e-09 1.74867e-10 7.79358e-09) (-4.36527e-11 -1.54453e-11 6.09014e-10) (-6.20369e-10 -3.49869e-11 1.59979e-10) (-1.27336e-09 5.86631e-11 -6.61699e-11) (-1.86889e-09 3.75328e-10 -5.33938e-10) (-2.92768e-09 9.86459e-10 -1.71559e-09) (-2.69714e-09 1.04774e-09 -1.92026e-09) (-5.90801e-10 1.215e-10 -2.59974e-10) (-1.93501e-11 -5.60643e-11 5.62324e-11) (3.11136e-10 -2.94173e-10 3.49146e-10) (6.10618e-10 -1.46845e-10 3.95094e-10) (6.5545e-10 1.67481e-10 3.65022e-10) (3.44998e-10 2.77082e-10 2.21577e-10) (2.95133e-11 7.52413e-11 3.63226e-11) (-1.72607e-11 -1.17249e-11 -4.79511e-12) (-7.95714e-10 -8.90415e-10 -3.93808e-10) (-3.52237e-09 -2.28479e-09 -1.64453e-09) (-3.34855e-09 -8.10613e-10 -1.4416e-09) (-6.61457e-10 7.02789e-11 -1.6505e-10) (-1.12507e-10 5.31375e-11 1.0263e-10) (-2.82625e-10 9.10278e-11 4.62235e-10) (-7.51704e-10 1.05397e-10 4.57587e-10) (-6.00604e-10 7.4244e-11 -2.17653e-10) (6.82453e-11 -4.75678e-11 -1.3952e-09) (2.12036e-09 -1.84324e-10 -3.4132e-09) (2.87027e-09 1.17434e-10 -2.7324e-09) (1.34204e-09 3.49881e-10 -5.48505e-10) (7.30373e-10 5.82258e-10 6.55249e-10) (9.01405e-10 1.12117e-09 2.33103e-09) (3.22645e-10 8.8786e-11 6.28553e-10) (-5.69928e-10 -5.52335e-10 1.59684e-11) (-2.15782e-08 -7.8625e-09 -2.571e-09) (-2.31072e-08 -6.53504e-09 -3.44751e-09) (-1.49493e-09 -6.03977e-10 -9.69022e-10) (3.46502e-10 1.55415e-11 -7.79798e-10) (1.42506e-09 3.40651e-10 -1.48239e-09) (7.51936e-10 1.66934e-10 -5.80327e-10) (2.59549e-09 4.71271e-10 1.26403e-09) (1.61558e-08 6.3696e-10 1.25323e-08) (2.1888e-08 1.10635e-10 1.89905e-08) (3.81304e-09 1.42362e-10 4.52694e-09) (-7.92293e-11 8.15784e-12 1.67334e-10) (-2.05648e-09 -8.09978e-13 -5.88766e-11) (-6.70603e-09 4.14513e-10 -8.84254e-10) (-8.98133e-09 1.37637e-09 -2.1088e-09) (-5.87058e-09 1.41543e-09 -2.49702e-09) (-1.05824e-09 3.12716e-10 -6.82087e-10) (5.27025e-13 -3.62764e-12 -8.39983e-13) (4.25976e-10 -3.28317e-10 2.75312e-10) (7.29178e-10 -4.07999e-10 4.75138e-10) (4.87484e-10 -5.099e-11 3.08297e-10) (3.96397e-10 1.94421e-10 2.32069e-10) (2.54774e-10 2.8436e-10 1.44838e-10) (2.97334e-11 7.75734e-11 2.30439e-11) (-4.44063e-11 -1.63035e-11 -6.99262e-12) (-1.69652e-09 -9.7834e-10 -4.2833e-10) (-5.10013e-09 -2.02508e-09 -1.53107e-09) (-2.7619e-09 -5.12589e-10 -8.55694e-10) (-3.04312e-10 2.13416e-11 -9.2827e-12) (-1.19365e-10 4.13482e-11 1.57308e-10) (-5.4004e-10 1.04258e-10 5.11494e-10) (-1.19259e-09 1.00006e-10 1.88164e-10) (-4.42187e-10 -1.30604e-10 -6.3079e-10) (7.41148e-10 -8.17403e-10 -2.61729e-09) (1.67775e-09 -5.54626e-10 -2.71397e-09) (1.55487e-09 2.1138e-10 -1.53183e-09) (1.56176e-09 9.12355e-10 -3.92977e-10) (2.27794e-09 2.11783e-09 1.5001e-09) (2.32135e-09 2.05062e-09 3.1491e-09) (4.81328e-10 1.87342e-11 7.53355e-10) (-2.70166e-09 -1.63356e-09 2.13586e-10) (-3.79943e-08 -1.20107e-08 -2.48381e-09) (-1.77163e-08 -6.26979e-09 -2.46428e-09) (-5.25722e-10 -4.17951e-10 -5.27612e-10) (4.00553e-10 5.33831e-11 -6.42773e-10) (1.16046e-09 4.49827e-10 -1.01146e-09) (9.19305e-10 3.38746e-10 -3.26118e-10) (7.87383e-09 7.0359e-10 3.54495e-09) (2.5344e-08 -1.72164e-10 1.59868e-08) (1.84959e-08 -6.77032e-11 1.38087e-08) (2.05422e-09 1.86142e-10 2.04253e-09) (-8.54401e-11 2.27474e-11 3.86345e-11) (-4.21692e-09 2.12907e-10 -6.3128e-10) (-1.48963e-08 9.96865e-10 -2.17999e-09) (-1.53684e-08 1.7244e-09 -2.96228e-09) (-4.11303e-09 5.99908e-10 -1.46691e-09) (-4.66268e-11 -3.36468e-12 -5.40627e-11) (3.08502e-10 -1.81569e-10 6.0196e-11) (8.83176e-10 -5.10962e-10 4.27641e-10) (4.35666e-10 -2.21369e-10 3.14105e-10) (1.17722e-10 9.03454e-12 1.07696e-10) (9.01711e-11 1.0138e-10 6.24651e-11) (8.27271e-11 1.72246e-10 2.70295e-11) (-7.70698e-12 5.9705e-11 -2.14409e-12) (-3.22443e-10 -1.87735e-11 -3.61995e-11) (-3.07234e-09 -9.69394e-10 -4.23225e-10) (-4.39532e-09 -1.35587e-09 -8.42769e-10) (-1.20283e-09 -2.75619e-10 -2.04847e-10) (-1.25305e-10 -3.47036e-12 4.50792e-11) (-2.22004e-10 5.11772e-11 2.30304e-10) (-9.47557e-10 1.67897e-10 4.19107e-10) (-7.05667e-10 -1.36087e-11 -2.34749e-10) (1.14922e-10 -6.87811e-10 -1.60023e-09) (7.20097e-10 -1.09842e-09 -2.47451e-09) (2.46848e-10 -2.02912e-10 -9.19793e-10) (2.36752e-10 1.59927e-10 -2.90565e-10) (1.7441e-09 1.35498e-09 4.04828e-12) (6.48791e-09 4.25296e-09 2.53373e-09) (6.6955e-09 2.88591e-09 3.61219e-09) (5.59254e-10 -7.73121e-11 4.33384e-10) (-8.82965e-09 -3.42008e-09 4.4936e-11) (-4.51591e-08 -1.34473e-08 -1.93487e-09) (-8.26972e-09 -4.01941e-09 -1.16274e-09) (-1.13526e-10 -1.84002e-10 -2.2093e-10) (3.03666e-10 1.06057e-10 -3.97137e-10) (9.15813e-10 4.46644e-10 -5.80606e-10) (1.67173e-09 5.21423e-10 -5.64452e-11) (1.43813e-08 3.26838e-10 5.96711e-09) (2.4617e-08 -6.90265e-10 1.39943e-08) (1.05896e-08 4.63208e-11 7.45403e-09) (7.95356e-10 1.62048e-10 6.98016e-10) (-1.2308e-10 5.0188e-11 -1.1009e-11) (-5.28202e-09 5.00322e-10 -1.09118e-09) (-1.70218e-08 1.09916e-09 -2.3672e-09) (-1.13344e-08 6.60876e-10 -1.71436e-09) (-9.75503e-10 -4.01985e-11 -3.09597e-10) (3.40373e-11 -3.84862e-11 -1.48614e-11) (5.65686e-10 -3.17036e-10 1.39646e-10) (4.89592e-10 -2.95856e-10 2.73912e-10) (8.3694e-11 -5.28393e-11 1.01932e-10) (2.20155e-12 7.25538e-12 1.70108e-11) (-5.72366e-12 4.25295e-11 7.06943e-12) (-2.24418e-11 1.02325e-10 -1.72823e-11) (-1.1389e-10 1.04359e-10 -3.00974e-11) (-9.03684e-10 3.61742e-11 -6.53961e-11) (-2.87251e-09 -6.3046e-10 -1.7071e-10) (-2.0455e-09 -6.68726e-10 -1.47038e-10) (-4.47992e-10 -1.49446e-10 2.33254e-11) (-1.65539e-10 -1.03733e-11 8.7429e-11) (-4.78061e-10 9.73031e-11 2.58766e-10) (-8.02964e-10 1.29149e-10 5.53119e-11) (-1.00802e-10 -1.54791e-10 -4.52717e-10) (6.94906e-10 -1.30319e-09 -2.42211e-09) (-1.07681e-10 -5.92045e-10 -1.21268e-09) (-1.30767e-10 -1.42876e-11 -1.83527e-10) (5.05526e-11 8.81747e-11 -2.66271e-12) (3.06122e-09 1.87708e-09 6.94587e-10) (1.16731e-08 5.25986e-09 2.73498e-09) (9.2587e-09 2.45999e-09 1.97828e-09) (3.91543e-11 -1.48829e-11 9.00438e-12) (-2.01423e-08 -5.12513e-09 -1.39469e-09) (-2.93276e-08 -9.8537e-09 -1.13949e-09) (-2.19127e-09 -1.68881e-09 -3.48077e-10) (-7.73388e-12 -5.19717e-11 -7.40003e-11) (2.21275e-10 1.21653e-10 -2.17016e-10) (9.57122e-10 4.20214e-10 -3.16704e-10) (3.49456e-09 6.58849e-10 4.54836e-10) (1.66008e-08 -1.87348e-10 6.54485e-09) (1.65699e-08 -5.55914e-10 8.99772e-09) (4.67543e-09 1.23064e-10 3.23407e-09) (2.49823e-10 9.07489e-11 1.88323e-10) (-1.45402e-10 7.55878e-11 -4.83817e-11) (-4.1116e-09 5.32958e-10 -8.65339e-10) (-1.06211e-08 5.0855e-10 -1.10331e-09) (-4.55259e-09 -1.69316e-10 -3.93302e-10) (-1.64447e-10 -7.7919e-11 -3.4507e-11) (8.16637e-11 -8.76173e-11 4.82144e-12) (2.86509e-10 -1.90417e-10 1.06664e-10) (1.05516e-10 -8.41283e-11 9.4351e-11) (-1.36953e-12 -6.1539e-12 2.0258e-11) (-2.77674e-11 1.40501e-11 1.06346e-11) (-7.8517e-11 6.31484e-11 -1.36678e-11) (-1.5082e-10 1.27555e-10 -5.09212e-11) (-3.58027e-10 1.69798e-10 -6.05725e-11) (-9.95319e-10 7.28756e-11 -1.35689e-11) (-1.38559e-09 -2.8248e-10 6.73129e-11) (-7.69003e-10 -2.98742e-10 7.37962e-11) (-3.36086e-10 -1.10401e-10 7.09731e-11) (-3.44634e-10 3.23969e-12 1.18329e-10) (-6.08059e-10 1.25516e-10 1.20045e-10) (-1.20894e-10 3.78576e-12 -1.00087e-10) (6.81413e-10 -6.63244e-10 -1.3477e-09) (1.95327e-10 -8.81859e-10 -1.52186e-09) (-6.7859e-10 -2.82807e-10 -6.18584e-10) (-2.69427e-10 4.50392e-11 1.13866e-13) (2.42061e-10 2.30044e-10 2.8941e-10) (4.69896e-09 1.98591e-09 1.61716e-09) (1.1089e-08 3.75684e-09 1.18021e-09) (4.54644e-09 1.08367e-09 -4.537e-10) (-4.92245e-10 -6.56439e-11 -2.99709e-10) (-2.24189e-08 -4.72743e-09 -2.62744e-09) (-9.14384e-09 -4.31855e-09 -2.94917e-10) (-3.90963e-10 -5.1807e-10 -7.53831e-11) (5.12233e-12 -7.67607e-12 -2.18515e-11) (2.06946e-10 1.18044e-10 -1.23206e-10) (1.34747e-09 4.07809e-10 -1.33535e-10) (6.08522e-09 5.7045e-10 1.21337e-09) (1.33608e-08 -3.20912e-10 5.10744e-09) (9.21269e-09 -2.61944e-10 4.85561e-09) (1.93452e-09 1.0214e-10 1.2907e-09) (6.33783e-11 3.71477e-11 4.12768e-11) (-1.51047e-10 7.93029e-11 -5.25647e-11) (-2.30751e-09 3.33441e-10 -3.54972e-10) (-4.36338e-09 4.62448e-11 -1.38323e-10) (-1.40015e-09 -2.45794e-10 2.37543e-11) (-5.14014e-11 -5.94946e-11 4.87439e-12) (4.34994e-11 -6.31636e-11 1.79529e-11) (6.2871e-11 -5.87934e-11 4.2601e-11) (4.85875e-12 -1.37002e-11 1.94447e-11) (-2.34558e-11 -4.09717e-13 1.31397e-11) (-1.2077e-10 3.38436e-11 1.6292e-12) (-2.38105e-10 9.27054e-11 -4.41129e-11) (-3.1889e-10 1.42065e-10 -7.12078e-11) (-4.19524e-10 1.47537e-10 -3.88653e-11) (-5.38479e-10 4.52203e-11 4.94089e-11) (-5.24463e-10 -1.19764e-10 1.10994e-10) (-4.35206e-10 -1.62507e-10 8.92096e-11) (-3.99966e-10 -8.24829e-11 6.44955e-11) (-4.50505e-10 3.22535e-11 5.53474e-11) (-1.78439e-10 3.65095e-11 -4.78807e-11) (2.38256e-10 -1.12981e-10 -3.9664e-10) (7.57349e-10 -7.54866e-10 -1.32668e-09) (-4.45731e-10 -4.49444e-10 -7.89211e-10) (-1.44582e-09 -1.46261e-10 -3.56846e-10) (-2.42083e-10 7.86205e-11 2.13484e-10) (8.07344e-10 3.73054e-10 9.62539e-10) (3.27693e-09 1.07302e-09 1.15294e-09) (4.59176e-09 1.43546e-09 -2.99984e-10) (9.22184e-10 3.79203e-10 -6.8498e-10) (-2.53641e-09 -1.03945e-11 -1.35582e-09) (-9.97878e-09 -2.41908e-09 -1.36584e-09) (-1.59333e-09 -1.26284e-09 -1.18901e-12) (-7.01721e-11 -1.40393e-10 -2.03065e-11) (5.3551e-12 1.04665e-12 -9.27315e-12) (2.57568e-10 1.11559e-10 -7.47099e-11) (1.95563e-09 3.55857e-10 5.69399e-11) (7.37449e-09 2.95465e-10 1.66684e-09) (8.99835e-09 -2.45912e-10 3.40932e-09) (4.67661e-09 -1.01229e-10 2.41972e-09) (7.07284e-10 5.33753e-11 4.7194e-10) (7.42814e-12 1.04475e-11 7.08155e-12) (-1.67305e-10 7.11245e-11 -3.34069e-11) (-1.20598e-09 1.60036e-10 -5.30047e-11) (-1.54874e-09 -6.78786e-11 1.21553e-10) (-4.15418e-10 -1.41588e-10 7.13031e-11) (-2.45956e-11 -4.36089e-11 1.44859e-11) (1.03158e-11 -2.71411e-11 1.25063e-11) (5.31728e-12 -1.20883e-11 1.06327e-11) (-7.42745e-12 -3.90825e-12 7.08259e-12) (-8.07606e-11 6.0535e-12 1.14929e-11) (-2.54667e-10 4.82776e-11 -1.62336e-11) (-3.48309e-10 8.65025e-11 -5.41205e-11) (-3.06657e-10 9.65145e-11 -4.58536e-11) (-2.4883e-10 7.47652e-11 4.15331e-12) (-2.29026e-10 1.65459e-11 5.89519e-11) (-2.70562e-10 -6.01196e-11 8.41249e-11) (-3.45869e-10 -9.38173e-11 5.12366e-11) (-3.65557e-10 -3.93974e-11 1.92788e-12) (-1.83421e-10 1.80999e-11 -4.29581e-11) (3.48798e-11 -5.13486e-12 -9.73224e-11) (8.49665e-10 -3.43542e-10 -8.01036e-10) (9.77811e-11 -3.29656e-10 -5.58768e-10) (-1.23302e-09 -3.48208e-10 -6.75273e-10) (-1.51048e-09 -7.39859e-12 6.29012e-11) (-7.35456e-11 7.82932e-11 3.92762e-10) (8.18628e-10 2.32904e-10 8.88829e-10) (9.67543e-10 2.98639e-10 2.81673e-10) (1.0067e-09 3.95158e-10 -3.78655e-10) (6.7966e-11 2.09592e-10 -5.12761e-10) (-2.22198e-09 5.12111e-11 -1.12321e-09) (-1.81961e-09 -6.54238e-10 -2.50093e-10) (-2.62547e-10 -3.46875e-10 6.928e-12) (-2.0719e-11 -3.8155e-11 -9.87416e-12) (5.82246e-12 2.88224e-12 -6.87494e-12) (3.26064e-10 9.26511e-11 -4.30617e-11) (2.28181e-09 2.34784e-10 2.11074e-10) (6.65962e-09 7.90632e-11 1.61468e-09) (5.45879e-09 -1.4024e-10 2.09991e-09) (2.2325e-09 -3.62852e-11 1.17055e-09) (2.19705e-10 2.10597e-11 1.62963e-10) (-1.41738e-12 4.33503e-12 2.49843e-12) (-1.32511e-10 4.59933e-11 -4.30549e-12) (-5.06773e-10 5.77733e-11 4.95425e-11) (-4.57546e-10 -5.09314e-11 1.0823e-10) (-1.11248e-10 -6.03854e-11 4.5726e-11) (-9.64486e-12 -2.29118e-11 1.18818e-11) (1.76931e-12 -9.81403e-12 5.82937e-12) (-4.85204e-13 -2.96579e-12 2.9293e-12) (-1.32366e-11 -1.99184e-12 4.94261e-12) (-1.03275e-10 8.82837e-12 5.08325e-12) (-2.31933e-10 3.34774e-11 -1.6953e-11) (-2.15509e-10 4.03317e-11 -2.62338e-11) (-1.2224e-10 3.32409e-11 -6.27047e-12) (-7.29419e-11 2.23373e-11 1.55608e-11) (-7.51148e-11 5.70177e-12 3.33444e-11) (-1.29236e-10 -2.29905e-11 3.67803e-11) (-2.00269e-10 -3.77283e-11 -1.12151e-12) (-1.32561e-10 -9.68577e-12 -4.47044e-11) (-1.59603e-12 -8.16529e-14 -5.07762e-11) (4.8962e-10 -9.52431e-11 -3.99999e-10) (4.3037e-10 -2.11824e-10 -4.15243e-10) (-1.42937e-10 -1.52034e-10 -2.69969e-10) (-1.61338e-09 -2.21307e-10 -4.49502e-10) (-6.89601e-10 1.50592e-11 2.25344e-10) (1.24371e-10 4.91454e-11 4.57126e-10) (4.33776e-10 7.83613e-11 4.19321e-10) (2.35635e-10 7.39135e-11 3.68438e-11) (2.0613e-10 1.24768e-10 -2.04263e-10) (-1.14864e-10 1.55865e-10 -4.04189e-10) (-5.64858e-10 2.23622e-11 -3.28e-10) (-1.72317e-10 -1.09331e-10 -2.749e-11) (-6.33486e-11 -1.04092e-10 -5.20017e-12) (-1.01858e-11 -1.34076e-11 -7.37284e-12) (9.87728e-12 3.1582e-12 -7.7384e-12) (3.83082e-10 6.28907e-11 -2.28902e-11) (2.1551e-09 1.19005e-10 2.74781e-10) (4.98673e-09 -5.18099e-12 1.29446e-09) (4.5292e-09 -1.30659e-10 1.58925e-09) (2.04057e-09 -4.57151e-11 8.98476e-10) (3.37453e-10 1.4965e-11 1.70796e-10) (1.55517e-11 7.04351e-12 8.00244e-12) (-3.74711e-12 4.39102e-12 2.65483e-12) (-3.06863e-11 6.62132e-12 1.81532e-11) (-2.67501e-11 -9.09828e-12 2.55913e-11) (-4.05871e-12 -1.37582e-11 1.43872e-11) (7.51021e-12 -1.27176e-11 9.07844e-12) (1.21453e-11 -9.33765e-12 7.19727e-12) (4.29785e-12 -2.82567e-12 3.59593e-12) (-8.37135e-13 -2.93206e-13 1.12747e-12) (-2.1129e-11 2.28056e-12 2.99487e-12) (-5.22275e-11 7.78641e-12 -1.17094e-12) (-3.41315e-11 6.53589e-12 -3.02939e-13) (-1.15937e-11 4.26482e-12 3.2203e-12) (-6.4015e-12 3.77765e-12 6.23698e-12) (-9.44569e-12 1.79183e-12 8.97095e-12) (-2.27332e-11 -3.40627e-12 5.86382e-12) (-3.02367e-11 -6.03372e-12 -1.07098e-11) (-2.05637e-12 -2.91958e-12 -2.98293e-11) (2.53866e-10 -2.82327e-11 -2.15997e-10) (6.57514e-10 -1.26571e-10 -3.70218e-10) (2.01273e-10 -1.07087e-10 -2.03836e-10) (-1.72362e-10 -9.28343e-11 -1.93199e-10) (-1.07582e-09 -9.8375e-11 -1.83656e-10) (-1.80256e-10 6.87192e-13 1.53129e-10) (1.85232e-10 1.13758e-11 3.49581e-10) (2.01742e-10 2.04836e-11 1.71434e-10) (8.42116e-11 2.39861e-11 -1.13371e-12) (6.92102e-11 5.67768e-11 -1.22194e-10) (-4.47193e-11 7.57691e-11 -1.97095e-10) (-3.55534e-11 4.4426e-12 -4.38652e-11) (-1.0702e-11 -1.55703e-11 -5.25413e-12) (-1.92105e-11 -3.05885e-11 -7.36672e-12) (-4.10614e-12 -5.5524e-12 -6.20972e-12) (2.38543e-11 2.29453e-12 -1.35875e-11) (4.81002e-10 3.00211e-11 -2.08287e-11) (2.16527e-09 3.12376e-11 2.81864e-10) (4.38264e-09 -6.43724e-11 1.08916e-09) (4.85233e-09 -1.41598e-10 1.33716e-09) (2.91782e-09 -7.03852e-11 9.12947e-10) (9.31363e-10 1.0188e-11 2.73735e-10) (2.07851e-10 2.36107e-11 4.84515e-11) (4.64903e-11 1.21939e-11 1.9653e-11) (2.41769e-11 4.30347e-12 2.39156e-11) (2.94285e-11 -7.34747e-12 3.35567e-11) (3.99651e-11 -1.82669e-11 3.05387e-11) (5.26493e-11 -2.02791e-11 2.45625e-11) (4.97427e-11 -1.42425e-11 2.01887e-11) (1.94271e-11 -4.53146e-12 1.11979e-11) (9.56539e-13 -2.08701e-13 2.33578e-12) (-5.67121e-12 9.54314e-13 1.87312e-12) (-1.00121e-11 1.53791e-12 1.98357e-12) (-5.69834e-12 7.75941e-13 3.31553e-12) (-3.39949e-12 1.27161e-12 5.92816e-12) (-2.70049e-12 2.21513e-12 7.83061e-12) (-3.3597e-12 1.08497e-12 4.27711e-12) (-2.26026e-12 -1.72757e-13 -1.15086e-13) (2.09169e-12 -1.43099e-12 -8.92164e-12) (1.79313e-10 -1.67997e-11 -1.47692e-10) (9.40342e-10 -8.47307e-11 -4.647e-10) (9.19395e-10 -1.49578e-10 -4.45907e-10) (1.62102e-10 -7.80343e-11 -1.99231e-10) (-2.45236e-10 -6.54125e-11 -2.19085e-10) (-5.80866e-10 -2.74892e-11 -6.07427e-11) (-3.61947e-11 -2.65073e-12 7.9806e-11) (9.15623e-11 -3.84127e-12 1.62029e-10) (5.94325e-11 4.64218e-12 5.19838e-11) (2.62669e-11 6.89656e-12 -6.28176e-12) (3.45113e-11 2.67287e-11 -7.34281e-11) (1.74106e-11 3.25828e-11 -8.78606e-11) (7.16268e-12 3.2005e-12 -1.66028e-11) (2.49474e-13 -2.65773e-12 -2.53938e-12) (-8.43761e-12 -8.90513e-12 -7.26506e-12) (-3.92189e-12 -3.93007e-12 -1.08536e-11) (3.55929e-11 3.35157e-13 -2.57169e-11) (4.87819e-10 4.86381e-12 -5.47226e-11) (2.05615e-09 -1.6328e-11 1.68954e-10) (4.28528e-09 -8.78538e-11 8.41693e-10) (2.02485e-09 -5.67984e-11 3.88572e-10) (9.73152e-10 -2.8775e-11 2.37415e-10) (1.74143e-10 -6.87489e-13 4.2526e-11) (1.98597e-11 1.94835e-12 5.1859e-12) (8.12352e-12 2.76672e-12 7.65533e-12) (1.86822e-11 2.52898e-12 2.31067e-11) (2.8443e-11 -2.6564e-12 3.20562e-11) (2.18084e-11 -5.42211e-12 1.9385e-11) (1.32077e-11 -3.58856e-12 9.68627e-12) (4.20948e-12 -1.44358e-12 5.06334e-12) (-5.66166e-12 -3.44038e-13 4.20643e-12) (-2.6391e-11 1.57101e-12 5.71964e-12) (-3.34673e-11 2.73034e-12 4.43659e-12) (-2.54556e-11 9.04559e-13 9.39129e-12) (-3.56321e-11 -8.21201e-13 2.40573e-11) (-5.44374e-11 7.44212e-13 3.45059e-11) (-5.10476e-11 4.25519e-12 2.26973e-11) (-2.03625e-11 2.06007e-12 4.62001e-12) (-5.82659e-13 5.48179e-15 -7.10252e-13) (4.52577e-11 -3.40664e-12 -3.55597e-11) (4.51959e-10 -3.15544e-11 -2.39608e-10) (9.09289e-10 -7.89391e-11 -4.28027e-10) (4.11617e-10 -6.99013e-11 -2.86251e-10) (-1.94688e-11 -2.74561e-11 -1.32951e-10) (-4.70214e-10 -2.66744e-11 -2.72066e-10) (-1.38167e-10 -2.67591e-12 -2.21412e-11) (-1.31506e-12 -1.45886e-12 1.35045e-11) (8.38585e-12 -2.56411e-12 3.26147e-11) (2.97006e-12 3.80682e-13 8.64868e-12) (6.58542e-13 2.91576e-13 -4.25507e-13) (7.57154e-12 6.33898e-12 -2.22333e-11) (2.53565e-11 1.34631e-11 -4.36962e-11) (2.95558e-11 6.48161e-12 -2.4e-11) (5.22631e-12 -6.57586e-13 -4.39221e-12) (-1.7625e-12 -1.40548e-12 -3.97698e-12) (-3.02963e-12 -1.72734e-12 -1.30217e-11) (2.24433e-11 -2.86169e-14 -2.75834e-11) (2.32389e-10 -1.67413e-13 -7.06261e-11) (9.50615e-10 -1.21212e-11 -4.3664e-11) (1.89226e-09 -3.82894e-11 1.79829e-10) (1.10742e-10 -7.19851e-13 -1.41962e-11) (1.97376e-11 -4.93092e-13 -2.06175e-12) (-9.02965e-13 -7.24518e-14 -3.51119e-13) (-8.94886e-12 -4.3961e-14 -1.57407e-12) (-4.02904e-12 3.05379e-13 6.46795e-13) (-4.34022e-13 1.39039e-13 1.23632e-12) (6.32362e-13 9.23361e-14 2.72136e-12) (2.4564e-13 -7.61597e-14 1.52738e-12) (-2.76738e-13 -6.79372e-14 6.23186e-13) (-1.37363e-12 -9.16892e-14 7.35307e-13) (-5.05276e-12 -1.13089e-13 1.15539e-12) (-7.14387e-12 -1.02008e-14 6.3287e-13) (-3.52193e-12 -3.00726e-14 7.13251e-13) (-3.17815e-12 -1.67593e-13 2.26763e-12) (-1.22043e-11 -7.34061e-13 8.5737e-12) (-3.59786e-11 -1.13339e-12 1.53922e-11) (-3.87134e-11 2.14431e-13 1.09232e-11) (-8.89228e-12 3.26518e-13 2.62479e-12) (1.46906e-14 4.7798e-15 5.68947e-15) (1.41397e-11 6.5845e-15 -4.17759e-12) (5.88783e-11 -1.7845e-12 -2.20646e-11) (4.68757e-11 -2.88102e-12 -2.53956e-11) (3.41552e-12 -1.39223e-12 -1.14714e-11) (-4.62409e-11 -3.30177e-12 -3.48233e-11) (-6.39938e-11 -2.33092e-12 -3.91943e-11) (-3.19739e-12 -4.89792e-13 -5.35036e-12) (1.00214e-13 -7.52283e-14 -2.55668e-13) (-3.07767e-13 -1.1042e-13 3.52336e-13) (-2.71434e-12 -2.7934e-13 3.15398e-12) (-2.99492e-12 -2.32753e-13 2.37583e-12) (-1.04935e-12 7.52617e-14 -4.1869e-14) (4.33439e-13 3.06221e-13 -1.23973e-12) (1.2391e-11 1.88909e-12 -5.34762e-12) (1.95942e-11 1.31127e-12 -3.53056e-12) (4.511e-12 8.09551e-14 -8.11613e-13) (4.92248e-13 -4.7069e-14 -7.32623e-13) (1.5048e-12 6.0197e-15 -3.26568e-12) (1.47356e-11 2.37014e-13 -1.15321e-11) (7.20674e-11 6.27639e-13 -2.90708e-11) (1.44697e-10 2.49638e-13 -3.42406e-11) ) ; boundaryField { bottomWall { type calculated; value uniform (0 0 0); } topWall { type calculated; value uniform (0 0 0); } sides1_half0 { type cyclic; } sides1_half1 { type cyclic; } sides2_half0 { type cyclic; } sides2_half1 { type cyclic; } inout1_half0 { type cyclic; } inout1_half1 { type cyclic; } inout2_half0 { type cyclic; } inout2_half1 { type cyclic; } } // ************************************************************************* //
[ "kakkapriyesh199417@gmail.com" ]
kakkapriyesh199417@gmail.com
ac8d56cedfdd3b4fefd63670d60992e18458a599
2f557f60fc609c03fbb42badf2c4f41ef2e60227
/CondFormats/EcalObjects/src/EcalTPGWeightIdMap.cc
3f4ffabbd8c3fe6b5e54b6dfadca205ddd0d82cb
[ "Apache-2.0" ]
permissive
CMS-TMTT/cmssw
91d70fc40a7110832a2ceb2dc08c15b5a299bd3b
80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7
refs/heads/TMTT_1060
2020-03-24T07:49:39.440996
2020-03-04T17:21:36
2020-03-04T17:21:36
142,576,342
3
5
Apache-2.0
2019-12-05T21:16:34
2018-07-27T12:48:13
C++
UTF-8
C++
false
false
274
cc
#include "CondFormats/EcalObjects/interface/EcalTPGWeightIdMap.h" EcalTPGWeightIdMap::EcalTPGWeightIdMap() { } EcalTPGWeightIdMap::~EcalTPGWeightIdMap() { } void EcalTPGWeightIdMap::setValue(const uint32_t & id, const EcalTPGWeights & value) { map_[id] = value ; }
[ "giulio.eulisse@gmail.com" ]
giulio.eulisse@gmail.com
a439f0569c161bcc60582b41985d8e44540f35a6
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/squid/hunk_3484.cpp
e955aa6193aed037df7228a31280ed8210d6c36b
[]
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
378
cpp
i ? (1 << (i - 1)) + 1 : 1, 1 << i, IOStats.Gopher.read_hist[i], - percent(IOStats.Gopher.read_hist[i], IOStats.Gopher.reads)); + Math::intPercent(IOStats.Gopher.read_hist[i], IOStats.Gopher.reads)); } storeAppendPrintf(sentry, "\n");
[ "993273596@qq.com" ]
993273596@qq.com
0dcf920ad3e650a23f110b5db08e82f733f9516f
d5fdeaa6900f7bfc3aa7d3048fb803bb43b400a5
/GCLDProject2/.svn/pristine/39/390acdc86d4e01c75116ec4204a2e67cef90d5ae.svn-base
a7deb3eef78e4a6a4bdc32a57d394a33a827520f
[]
no_license
liu-jack/cxx_sth
52e1f0b190fe23fb16890cadd9efa15de59e70d0
986a0782d88405af83ae68ef124ff8cf19ada765
refs/heads/master
2020-05-07T13:53:03.555884
2017-11-17T02:26:55
2017-11-17T02:26:55
null
0
0
null
null
null
null
GB18030
C++
false
false
15,857
#include <sstream> #include <algorithm> #include <boost/bind.hpp> #include <boost/function.hpp> #include <boost/smart_ptr.hpp> #include <boost/dynamic_bitset.hpp> #include <boost/typeof/typeof.hpp> #include "PlayerData.h" #include "Logger.h" #include "OS.h" #include "def/MmoAssert.h" #include "utility/Utility.h" #include "utility/STLUtility.h" #include "utility/MsgTool.h" #include "memory_buffer/NetPack.h" #include "memory_buffer/MultiValueArray.h" #include "data/DbProxyDataMgr.h" #include "Enum.pb.h" #include "Login.pb.h" #include "InterServer.pb.h" #include "Item.pb.h" #include "Social.pb.h" #include "Quest.pb.h" #include "data/FriendInfo.h" PlayerData::PlayerData(uint64 playerId) { Init( playerId ) ; SetIsLoadedDatabaseTable( false ) ; m_loadCount = 0; m_unloadCount = 0; } PlayerData::~PlayerData() { time_t curTimeMS =sOS.TimeMS() ; SaveDirtyPart(curTimeMS); } void PlayerData::InitDirtySaver() { save_dirty_function[DIRTY_PLAYER_VALUE] = &PlayerData::save_player_value; save_dirty_function[DIRTY_CHARACTER] = &PlayerData::save_mode_character; save_dirty_function[DIRTY_BATTLE_ARRAY] = &PlayerData::save_battle_array; save_dirty_function[DIRTY_ITEM] = &PlayerData::save_mode_item; save_dirty_function[DIRTY_FUBEN_INFO] = &PlayerData::save_fuben_record; save_dirty_function[DIRTY_MARKET_INFO] = &PlayerData::save_market_record; save_dirty_function[DIRTY_ALTAR_INFO] = &PlayerData::save_altar_record; save_dirty_function[DIRTY_BAO_QI_INFO] = &PlayerData::save_bao_qi_record; save_dirty_function[DIRTY_DUNGEON_INFO] = &PlayerData::save_dungeon_record; save_dirty_function[DIRTY_MAP_LOGIC] = &PlayerData::save_map_logic_record; save_dirty_function[DIRTY_QUEST_COUNTER] = &PlayerData::save_mod_quest_counter; save_dirty_function[DIRTY_QUEST_LOG] = &PlayerData::save_mod_quest_log; save_dirty_function[DIRTY_QUEST_COMPLETE] = &PlayerData::save_quest_complete; //save_dirty_function[DIRTY_SELL_RANDOM_PROGRAM] = &PlayerData::save_mod_sell_random_program; //save_dirty_function[DIRTY_SELL_PROGRAM_INFO] = &PlayerData::save_mod_sell_program_info; //save_dirty_function[DIRTY_SELL_RECORD] = &PlayerData::save_mod_sell_record; //save_dirty_function[DIRTY_LOOT_RECORD] = &PlayerData::save_mod_loot_record; //save_dirty_function[DIRTY_LOTTERY_RECORD] = &PlayerData::save_mod_lottery_record; save_dirty_function[DIRTY_PLAYER_STRING] = &PlayerData::save_mod_player_string; save_dirty_function[DIRTY_PLAYER_BUILDING] = &PlayerData::save_mod_player_building; save_dirty_function[DIRTY_PLAYER_MODULE] = &PlayerData::save_mod_player_module; save_dirty_function[DIRTY_TECHNOLOGY] = &PlayerData::save_technology_record; save_dirty_function[DIRTY_CRUSADE] = &PlayerData::save_mod_crusade; save_dirty_function[DIRTY_MAIL] = &PlayerData::save_mod_mail; save_dirty_function[DIRTY_SMITHY] = &PlayerData::save_smithy; save_dirty_function[DIRTY_DAILYQUEST] = &PlayerData::save_dailyquest; save_dirty_function[DIRTY_GROW_UP_QUEST] = &PlayerData::save_growupquest; save_dirty_function[DIRTY_GROW_UP_QUEST_GROUP] = &PlayerData::save_growupquestgroup; save_dirty_function[DIRTY_SIGN_UP] = &PlayerData::save_signup; save_dirty_function[DIRTY_PASS_STAGE_REWARD] = &PlayerData::save_pass_stage_reward; save_dirty_function[DIRTY_ACTIVITY_STAR_BOX] = &PlayerData::save_activity_star_box; save_dirty_function[DIRTY_PALACE_ACHIEVEMENT] = &PlayerData::save_palace_achievement; save_dirty_function[DIRTY_ZHENG_WU] = &PlayerData::save_zheng_wu; save_dirty_function[DIRTY_GENERAL_REWARD] = &PlayerData::save_general_reward; save_dirty_function[DIRTY_WORLD_FIGHT_ACHIEVEMENT] = &PlayerData::save_world_fight_achievement; save_dirty_function[DIRTY_SEIGE_FORCE] =&PlayerData::save_seige_force; save_dirty_function[DIRTY_CONTINUE_CITY] =&PlayerData::save_continue_occupy_city; save_dirty_function[DIRTY_CONGRATULATE] =&PlayerData::save_congratulate; save_dirty_function[DIRTY_CONGRATULATE_BEEN_CON] =&PlayerData::save_congratulate_been_con; save_dirty_function[DIRTY_WANNA_BE_STRONGER] =&PlayerData::save_wanna_be_stronger; } void PlayerData::Init( uint64 playerId ) { SetIsLoadedDatabaseTable( false ); SetPlayerId( playerId ) ; SetIsReconnectInit( false ) ; SetIsOffline( false ) ; SetLastSaveTime( 0 ); InitDirtySaver(); } bool PlayerData::ReadPlayerAllInitInfo( const uint64 &guid ) { // 已经读取过数据库信息了,不再读取 -- Add by caibingjie 2015-6-3 if( GetIsLoadedDatabaseTable() ) { return true ; } SetIsLoadedDatabaseTable( true ) ; return true ; } void PlayerData::SetAllDirty( void ) { m_dirtyBit.set(); } void PlayerData::SaveDirtyPart(time_t cur_time) { for (size_t i = 0; i < m_dirtyBit.size(); ++i) { if (m_dirtyBit[i]) { (this->*save_dirty_function[i])(); } } SetIsReconnectInit( false ) ; m_dirtyBit.reset(); SetLastSaveTime( cur_time ); } void PlayerData::ReadAllPlayerdata( const pb::PlayerAllData &data ) { m_PlayerTable->LoadFrom( data.full_value() ) ; } void PlayerData::WriteOtherInfo( pb::OtherInfo &info ) { if( m_PlayerTable ) { info.set_channel_id( m_PlayerTable->channelId ) ; info.set_platform_id( m_PlayerTable->platformId ) ; } else { ASSERT( false ) ; return ; } } void PlayerData::WriteFriendInfo(pb::Friend_list_Record& info) { /*if( m_PlayerTable ) { info.set_friend_name(m_PlayerTable->name); info.set_friend_guid(m_PlayerTable->playerId); info.set_head_icon(GetLearderCardProId()); info.set_vip_level(m_PlayerTable->vipLv); info.set_level(m_PlayerTable->level); info.set_power(m_PlayerTable->combatMax); info.set_guild_name(m_PlayerTable->guildName); info.set_is_send_ap(false); info.set_is_receive_ap(false); info.set_is_online(!m_isOffline); info.set_last_onlin_time(m_PlayerTable->lastLogin); info.set_request_time(time(NULL)); }*/ } void PlayerData::WriteAllPlayerData( pb::PlayerAllData *pAllData ) { //pb::PlayerAllData *pAllData =retInfo.mutable_player_data() ; m_PlayerTable->SaveTo( *pAllData->mutable_full_value() ); WriteOtherInfo( *pAllData->mutable_other_info() ) ; //WritePlayerStageLevelInfo(*pAllData->mutable_stage_info()); WritePlayerFuBenInfo(*pAllData->mutable_fuben_info()); WritePlayerMarketInfo(*pAllData->mutable_market_info()); WritePlayerAltarInfo(*pAllData->mutable_altar_info()); WritePlayerBaoQiInfo(*pAllData->mutable_bao_qi_info()); WritePlayerMapLogic(*pAllData->mutable_world_map_logic()); WritePlayerDungeonInfo(*pAllData->mutable_dungeon_info()); WritePlayerBagInfo( *pAllData->mutable_bag_info()); WriteCharacterStorage( *pAllData->mutable_character_info()); WriteQuestCounter( *pAllData->mutable_behavior_count()); WriteQuestList( *pAllData->mutable_quest_log()); GetPlayerMailUpdate( *pAllData->mutable_mails()); //WriteSellData( *pAllData->mutable_sell_data()); //WriteLootData( *pAllData->mutable_loot_data()); //WriteLotteryData( *pAllData->mutable_lottery_data()); WritePlayerString( *pAllData->mutable_string_data()); WritePlayerTechnologyInfo( *pAllData->mutable_technology_info()); WritePlayerZhengWu(*pAllData->mutable_gov_affairs_info()); WritePlayerGeneralReward(*pAllData->mutable_hero_reward()); WritePlayerWannaBeStronger(*pAllData->mutable_wanna_be_info()); WritePlayerDailyQuestInfo(*pAllData->mutable_dailyquest_info()); WritePlayerGrowUpQuestInfo(*pAllData->mutable_growupquest_info()); WritePlayerGrowUpQuestGroupInfo(*pAllData->mutable_growupquestgroup_info()); WritePlayerSignUp(*pAllData->mutable_sign_up_info()); WritePlayerPassStageReward(*pAllData->mutable_pass_stage_reward_info()); WritePlayerActivityStarBox(*pAllData->mutable_activity_star_box_info()); WritePlayerPalaceAchievement(*pAllData->mutable_achievement_info()); WritePlayerWorldFightAchievement(*pAllData->mutable_world_fight_achieve_info()); WritePlayerContinueOccupyCity(*pAllData->mutable_continue_info()); WritePlayerCongratulate(*pAllData->mutable_congratulate_info()); WritePlayerCongratulateBeenCon(*pAllData->mutable_con_been_congratulated()); WritePlayerSeigeForce(*pAllData->mutable_seige_force_info()); WriteSmithyInfo(*pAllData->mutable_smithy_info()); #ifdef _DEBUG const pb::PlayerAllData& all_data = *pAllData; NLOG( "---------------------------------------------------"); NLOG( "Player Data size : %d", all_data.ByteSize()); const pb::GS2C_Bag& bag = all_data.bag_info(); NLOG( "Item count : %d", bag.items_size()); NLOG( "Item sum size : %d", bag.ByteSize()); const pb::GS2C_CharacterStorage& character = all_data.character_info(); NLOG( "Character count : %d", character.characters_size()); NLOG( "Character sum size: %d", character.ByteSize()); /* const pb::GS2C_AllStageInfo& stageInfo = all_data.stage_info(); NLOG( "Stage level count : %d", stageInfo.stage_level_infos_size()); NLOG( "Stage sum size : %d", stageInfo.ByteSize());*/ /* const pb::GS2C_AllSellData& sellData = all_data.sell_data(); NLOG( "Sell record count : %d", sellData.sell_records_size()); NLOG( "Sell Data size : %d", sellData.ByteSize());*/ const pb::GxDB_BehaviorList& behavior = all_data.behavior_count(); NLOG( "Behavior count : %d", behavior.behavior_list_size()); NLOG( "Behavior size : %d", behavior.ByteSize()); NLOG( "---------------------------------------------------"); #endif } void PlayerData::UpdatePlayerValue( const pb::ObjectValueUpdate& playerValueUp ) { if ( m_PlayerTable) { bool needSyncSave = m_PlayerTable->LoadUpdateFrom( playerValueUp); if (needSyncSave) { m_PlayerTable.SaveMod(); } else { SetIsDirty( DIRTY_PLAYER_VALUE); } } } bool PlayerData::save_player_value() { m_PlayerTable.SaveMod(); return true; } std::string PlayerData::GetPlayerName() { if ( m_PlayerTable) { return m_PlayerTable->name; } return ""; } //void PlayerData::WriteGuildMemberInfo( pb::GxDB_GMember_Info &info ) //{ // // info.set_player_name(m_pPlayerTable->name); // info.set_playerid(m_pPlayerTable->playerId); // info.set_guild_id(m_pPlayerTable->guildId); // info.set_guild_name(m_pPlayerTable->guildName); // info.set_level(m_pPlayerTable->level); // info.set_power(m_pPlayerTable->combatMax); // info.set_guild_name(m_pPlayerTable->guildName); // info.set_is_send_ap(false); // info.set_is_receive_ap(true); // info.set_isonline(!m_isOffline); // info.set_lastactivetime(m_pPlayerTable->lastLogin); // //TODO //} bool PlayerData::HasLearder() { if( m_BattleArrayTable) return true; else return false; } uint32 PlayerData::GetLearderCardProId() { if( m_BattleArrayTable) { uint32 charId = m_BattleArrayTable->char_id[0]; CharacterTable * charTable = m_CharacterTable.GetElement(charId); if (charTable) { return charTable->char_proto_id; } } return 11;//默认头像 } void PlayerData::WritePlayerInfo( pb::MsgPlayerBaseData &info, int dataFlag /*=0*/ ) { WritePlayerBaseInfo( *info.mutable_info(), dataFlag ) ; WritePlayerTeamInfo( *info.mutable_team_info(), dataFlag ); } void PlayerData::WritePlayerBaseInfo(pb::MsgPlayerBaseInfo &info, int dataFlag /*=0*/ ) { if ( m_PlayerTable) { switch( dataFlag ) { case pb::PALYER_BASE_DATA_ALL: { info.set_playerid( m_PlayerTable->playerId); info.set_player_name(m_PlayerTable->name); info.set_guild_id(m_PlayerTable->guildId); info.set_guild_name(m_PlayerTable->guildName); info.set_level(m_PlayerTable->level); info.set_vip_level(m_PlayerTable->vipLv); info.set_isonline(!m_isOffline); info.set_last_login(m_PlayerTable->lastLogin); //info.set_power(m_PlayerTable->combatMax); info.set_card_proid(GetLearderCardProId()); } break ; case pb::PLAYER_BASE_DATA_JUST_PVP_BASE_INFO: { info.set_playerid( m_PlayerTable->playerId); info.set_player_name(m_PlayerTable->name); info.set_level(m_PlayerTable->level); info.set_vip_level(m_PlayerTable->vipLv); //info.set_power(m_PlayerTable->combatMax); info.set_card_proid(GetLearderCardProId()); } break ; default: ELOG( "PlayerData::WritePlayerBaseInfo() unknow data flag %d", dataFlag ) ; } } } void PlayerData::WritePlayerTeamInfo(pb::MsgPlayerTeamInfo &info, int dataFlag /*=0*/ ) { pb::GS2C_CharacterStorage* pCharactInfo = info.mutable_character_info(); _WriteBattleArray(*pCharactInfo); std::set<uint32> charIds, itemIds; GetBattleArray( charIds); for ( std::set<uint32>::const_iterator it = charIds.begin(); it != charIds.end(); ++it) { CharacterTable* character = m_CharacterTable.GetElement(*it); if( character == NULL ) { continue ; } pb::GS2C_CharacterCreate* charMsg =pCharactInfo->mutable_characters()->Add() ; character->SaveTo( *charMsg, dataFlag ) ; if ( charMsg) { switch( dataFlag ) { case pb::PALYER_BASE_DATA_ALL: { CharacterJueXingTable* charTraing = m_CharacterJueXingTable.GetElement(*it); if ( charTraing) { charTraing->SaveTo( *charMsg ); } else { emptyCharaJuXing.SaveTo( *charMsg ); } } break ; } } } switch( dataFlag ) { case pb::PALYER_BASE_DATA_ALL: { GetEquip( charIds, itemIds); pb::GS2C_Bag* pBagInfo = info.mutable_bag_info(); for ( std::set<uint32>::const_iterator it = itemIds.begin(); it != itemIds.end(); ++it) { _WritePlayerBagInfo(*pBagInfo, m_ItemBaseTable.GetElement(*it)); } } break ; case pb::PLAYER_BASE_DATA_JUST_PVP_BASE_INFO: { } break ; default: ELOG( "PlayerData::WritePlayerTeamInfo() unknow data flag %d", dataFlag ) ; } } time_t PlayerData::GetLastLoginTime() { if ( m_PlayerTable) { return m_PlayerTable->lastLogin; } return 0; } void PlayerData::UpdatePlayerString( const pb::GS2C_PlayerString& msg ) { PlayerStringTable * cell = m_PlayerStringTable.GetElement( msg.str_type()); if ( cell) { SetIsDirty( DIRTY_PLAYER_STRING); cell->LoadFrom(msg); m_PlayerStringTable.SetModifiedID( msg.str_type()); } else { PlayerStringTable aCell; aCell.player_id = GetPlayerId(); aCell.LoadFrom(msg); m_PlayerStringTable.AddAndAddToCache( &aCell); } } string PlayerData::GetPlayerString(uint32 strType) { PlayerStringTable * cell = m_PlayerStringTable.GetElement( strType); if ( cell && (cell->str_type == strType)) { return cell->str; } return ""; } bool PlayerData::save_mod_player_string() { m_PlayerStringTable.SaveMod(); return true; } void PlayerData::WritePlayerString( pb::GS2C_PlayerStringGroup& playerstring ) { for ( BOOST_AUTO( it , m_PlayerStringTable.Begin()); it != m_PlayerStringTable.End(); ++it ) { MsgTool::SaveToRepeatField( it->second, playerstring.mutable_player_strings()); } } void PlayerData::ChangeNameImm( const std::string& name ) { m_PlayerTable->name = name; m_PlayerTable.SaveMod(); } uint64 PlayerData::GetPlayerAccountId() { if ( m_PlayerTable) { return m_PlayerTable->accountId; } return 0; } bool PlayerData::IsLockType(uint32 type) { if ( m_PlayerTable) { return m_PlayerTable->lockReason == type; } return false; } bool PlayerData::IsLocked() { if ( m_PlayerTable) { return m_PlayerTable->lockReason == (uint32)pb::ACCOUNT_LOCK_TYPE_LOCKED; } return false; } void PlayerData::SetNameAndHeadId( const std::string& name,const uint32 head_id ) { m_PlayerTable->name = name; m_PlayerTable->cardHeadIconId = head_id; m_PlayerTable.SaveMod(); }
[ "zhoulunhao@hotmail.com" ]
zhoulunhao@hotmail.com
6863a3f79264200f065fcec89662a0590204a671
179e89f7ad6b4aea33e17e10471d8a4015a9c592
/unittests/testAdjointCamera.cpp
6f94c021282ea4c79c047ff266bb4227cea6250f
[]
no_license
xeTaiz/DiffDVR
6179f3c8a4849f72ebe179abac5ad95b66c5dd5a
3db2c17d7c28b432c78d547f7555c7b5aacf1ff5
refs/heads/master
2023-06-18T07:55:27.051067
2021-07-19T09:44:48
2021-07-19T09:44:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,282
cpp
#include <catch.hpp> #include <Eigen/Core> #include <random> #include "check_adjoint.h" #include "test_utils.h" #include "renderer_blending.cuh" static void testAdjointCamera() { typedef empty TmpStorage_t; typedef VectorXr Vector_t; static int numSteps = 10; static const real3 boxMin = make_real3(-0.2f, -0.3f, -0.4f); static const real3 voxelSize = make_real3(0.1f, 0.05f, 0.07f); auto forward = [](const Vector_t& x, TmpStorage_t* tmp) -> Vector_t { const real3 rayStart = fromEigen3(x.segment(0, 3)); const real3 rayDir = fromEigen3(x.segment(3, 3)); const real_t stepsize = x[6]; Vector_t result = Vector_t::Zero(numSteps * 3); for (int i=0; i<numSteps; ++i) { real_t tcurrent = i * stepsize; real3 worldPos = rayStart + tcurrent * rayDir; real3 volumePos = (worldPos - boxMin) / voxelSize; result.segment(3 * i, 3) = toEigen(volumePos); } return result; }; auto adjoint = [](const Vector_t& x, const Vector_t& e, const Vector_t& g, Vector_t& z, const TmpStorage_t& tmp) { const real3 rayStart = fromEigen3(x.segment(0, 3)); const real3 rayDir = fromEigen3(x.segment(3, 3)); const real_t stepsize = x[6]; real3 adj_rayStart = make_real3(0); real3 adj_rayDir = make_real3(0); real_t adj_stepSize = 0; for (int i=numSteps-1; i>=0; --i) { //run part of the forward code again real_t tcurrent = i * stepsize; real3 worldPos = rayStart + tcurrent * rayDir; real3 volumePos = (worldPos - boxMin) / voxelSize; real3 adj_volumePos = fromEigen3(g.segment(3 * i, 3)); //adjoint stepping real3 adj_worldPos = adj_volumePos / voxelSize; adj_rayStart += adj_worldPos; adj_rayDir += adj_worldPos * tcurrent; real_t adj_tcurrent = dot(adj_worldPos, rayDir); adj_stepSize += adj_tcurrent * i; } z.segment(0, 3) = toEigen(adj_rayStart); z.segment(3, 3) = toEigen(adj_rayDir); z[6] = adj_stepSize; }; std::default_random_engine rnd(42); std::uniform_real_distribution<real_t> distr(0.01, 0.99); int N = 20; for (int i = 0; i < N; ++i) { INFO("N=" << i); Vector_t x(7); for (int j = 0; j < 7; ++j) x[j] = distr(rnd); checkAdjoint<Vector_t, TmpStorage_t>(x, forward, adjoint, 1e-5, 1e-5, 1e-6); } } TEST_CASE("Adjoint-Camera", "[adjoint]") { testAdjointCamera(); }
[ "sebastian13.weiss@tum.de" ]
sebastian13.weiss@tum.de
f27c5d56fe337743def6c747c3b64eb938213eba
87d1f9d88a204b2cf7748491aa4b10c909984966
/include/openeaagles/sensors/sensorsFF.h
48df98e8e61f83e536e40a590a5ae0c95b76f0ae
[]
no_license
yaroslav-tarasov/OpenEaagles
2c9e683cdf9d191c07daf53e444a7aabb487dfcb
8551df88bebab03a6cdaed8649cfed91d7f4ad19
refs/heads/master
2021-01-17T06:33:29.753917
2015-04-06T18:23:15
2015-04-06T18:23:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
461
h
//------------------------------------------------------------------------------ // Form function for the default 'sensors' library //------------------------------------------------------------------------------ #ifndef __Eaagles_Sensor_FormFunc_H__ #define __Eaagles_Sensor_FormFunc_H__ namespace Eaagles { namespace Basic { class Object; } namespace Sensor { extern Basic::Object* sensorsFormFunc(const char* name); } } #endif
[ "doug@openeaagles.org" ]
doug@openeaagles.org
5fdd9b3815ea0e8530d47c8b124da6c203ad6d25
81c2fdde96dae39389b50b3f23e94f69c3af06db
/opengl-examples-master/lib/camcontrol-orientsensor.cpp
2b3d44d9f2d14121994463b5db6bc9f7a99509f7
[ "BSD-3-Clause" ]
permissive
Animal211/Graphics-OpenGL
1d9f3c50f9437da03bdba40eec6493bfbdf520d4
6944cb06f9a0af17b09e55b3694f4d1a5f7badab
refs/heads/master
2021-03-22T08:29:12.568488
2020-03-14T20:26:23
2020-03-14T20:26:23
247,348,295
1
0
null
null
null
null
UTF-8
C++
false
false
1,969
cpp
#include <stdlib.h> #include "kuhl-util.h" #include "camcontrol-orientsensor.h" #include "vecmat.h" #include "orient-sensor.h" camcontrolOrientSensor::camcontrolOrientSensor(dispmode *currentDisplayMode, const float initialPos[3]) :camcontrol(currentDisplayMode) { vec3f_copy(position, initialPos); int orientSensorType = ORIENT_SENSOR_NONE; const char *typeString = kuhl_config_get("orientsensor.type"); if(typeString != NULL) { if(strcasecmp(typeString, "bno055") == 0) orientSensorType = ORIENT_SENSOR_BNO055; else if(strcasecmp(typeString, "dsight") == 0) orientSensorType = ORIENT_SENSOR_DSIGHT; else { msg(MSG_FATAL, "Unknown orientation sensor type: %s\n", typeString); exit(EXIT_FAILURE); } } orientsense = orient_sensor_init(kuhl_config_get("orientsensor.tty"), orientSensorType); } camcontrolOrientSensor::~camcontrolOrientSensor() { } viewmat_eye camcontrolOrientSensor::get_separate(float pos[3], float orient[16], viewmat_eye requestedEye) { vec3f_copy(pos, position); // use default position mat4f_identity(orient); // initialize orientation matrix // Retrieve quaternion from sensor, convert it into a matrix. float quaternion[4]; orient_sensor_get(&orientsense, quaternion); mat4f_rotateQuatVec_new(orient, quaternion); // Correct rotation float adjustLeft[16] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1 }; mat4f_transpose(adjustLeft); // transpose to column-major order float adjustRight[16] = { 0, 0, -1, 0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1 }; mat4f_transpose(adjustRight); mat4f_mult_mat4f_new(orient, adjustLeft, orient); mat4f_mult_mat4f_new(orient, orient, adjustRight); //mat4f_invert(cyclopsViewMatrix); //vec3f_print(pos); //mat4f_print(orient); return VIEWMAT_EYE_MIDDLE; }
[ "jrmcneil@mtu.edu" ]
jrmcneil@mtu.edu
80bb8ae4c9ec178827be6c80e1be8bbd7f0bf583
690330c86dce9812894891c7d90e80d052372b5b
/anyfx/api/lowlevel/base/varblockbase.cc
c0b15bcef3d29c5f1f56879857d5046d96145341
[ "BSD-3-Clause", "LicenseRef-scancode-nvidia-2002" ]
permissive
Duttenheim/fips-anyfx
948fef1593501d874647bf56c4ccb137ed38ac62
71617128d7ec5ba85f229e88bb00325b5fb9015e
refs/heads/master
2023-08-22T09:22:03.426472
2023-08-12T18:55:06
2023-08-12T18:55:06
97,407,640
1
3
null
2020-11-28T20:42:56
2017-07-16T19:57:47
C++
UTF-8
C++
false
false
1,425
cc
//------------------------------------------------------------------------------ // varblockbase.cc // (C) 2016 Individual contributors, see AUTHORS file //------------------------------------------------------------------------------ #include "varblockbase.h" #include "variablebase.h" namespace AnyFX { //------------------------------------------------------------------------------ /** */ VarblockBase::VarblockBase() : byteSize(0), binding(0), set(0), qualifiers(0) { // empty } //------------------------------------------------------------------------------ /** */ VarblockBase::~VarblockBase() { unsigned i; for (i = 0; i < this->variables.size(); i++) { delete this->variables[i]; } this->variables.clear(); this->variablesByName.clear(); } //------------------------------------------------------------------------------ /** */ void VarblockBase::OnLoaded() { // setup this varblock unsigned i; for (i = 0; i < this->variables.size(); i++) { this->byteSize += this->variables[i]->byteSize; } // create a signature for the varblock this->signature.append(this->name + "{"); // format signature by retrieving all variable signatures and making a string mask for (i = 0; i < this->variables.size(); i++) { VariableBase* variable = this->variables[i]; this->signature.append(variable->signature); this->signature.append(";"); } this->signature.append("}"); } } // namespace AnyFX
[ "gustav.sterbrant@gmail.com" ]
gustav.sterbrant@gmail.com
11909fa015dea1e7272e98333b11f4a332797ef5
f81b774e5306ac01d2c6c1289d9e01b5264aae70
/chrome/browser/ui/webui/nearby_share/nearby_share_dialog_ui.cc
147c7a9224d66dc13f9d0a6f242c97962f35305a
[ "BSD-3-Clause" ]
permissive
waaberi/chromium
a4015160d8460233b33fe1304e8fd9960a3650a9
6549065bd785179608f7b8828da403f3ca5f7aab
refs/heads/master
2022-12-13T03:09:16.887475
2020-09-05T20:29:36
2020-09-05T20:29:36
293,153,821
1
1
BSD-3-Clause
2020-09-05T21:02:50
2020-09-05T21:02:49
null
UTF-8
C++
false
false
4,063
cc
// Copyright 2020 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 "chrome/browser/ui/webui/nearby_share/nearby_share_dialog_ui.h" #include <string> #include "chrome/browser/nearby_sharing/nearby_per_session_discovery_manager.h" #include "chrome/browser/nearby_sharing/nearby_share_settings.h" #include "chrome/browser/nearby_sharing/nearby_sharing_service.h" #include "chrome/browser/nearby_sharing/nearby_sharing_service_factory.h" #include "chrome/browser/nearby_sharing/nearby_sharing_service_impl.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/webui/nearby_share/shared_resources.h" #include "chrome/browser/ui/webui/webui_util.h" #include "chrome/common/webui_url_constants.h" #include "chrome/grit/generated_resources.h" #include "chrome/grit/nearby_share_dialog_resources.h" #include "chrome/grit/nearby_share_dialog_resources_map.h" #include "chrome/grit/theme_resources.h" #include "content/public/browser/web_ui.h" #include "content/public/browser/web_ui_data_source.h" #include "mojo/public/cpp/bindings/self_owned_receiver.h" #include "services/network/public/mojom/content_security_policy.mojom.h" #include "ui/base/resource/resource_bundle.h" #include "ui/base/webui/web_ui_util.h" namespace nearby_share { NearbyShareDialogUI::NearbyShareDialogUI(content::WebUI* web_ui) : ui::MojoWebUIController(web_ui, /*enable_chrome_send=*/true) { Profile* profile = Profile::FromWebUI(web_ui); // Nearby Share is not available to incognito or guest profiles. DCHECK(profile->IsRegularProfile()); nearby_service_ = NearbySharingServiceFactory::GetForBrowserContext(profile); content::WebUIDataSource* html_source = content::WebUIDataSource::Create(chrome::kChromeUINearbyShareHost); webui::SetupWebUIDataSource(html_source, base::make_span(kNearbyShareDialogResources, kNearbyShareDialogResourcesSize), kNearbyShareGeneratedPath, IDR_NEARBY_SHARE_NEARBY_SHARE_DIALOG_HTML); html_source->AddResourcePath("nearby_share.mojom-lite.js", IDR_NEARBY_SHARE_MOJO_JS); html_source->AddResourcePath("nearby_share_target_types.mojom-lite.js", IDR_NEARBY_SHARE_TARGET_TYPES_MOJO_JS); RegisterNearbySharedResources(html_source); RegisterNearbySharedStrings(html_source); html_source->UseStringsJs(); web_ui->RegisterMessageCallback( "close", base::BindRepeating(&NearbyShareDialogUI::HandleClose, base::Unretained(this))); content::WebUIDataSource::Add(profile, html_source); } NearbyShareDialogUI::~NearbyShareDialogUI() = default; void NearbyShareDialogUI::AddObserver(NearbyShareDialogUI::Observer* observer) { observers_.AddObserver(observer); } void NearbyShareDialogUI::RemoveObserver( NearbyShareDialogUI::Observer* observer) { observers_.RemoveObserver(observer); } void NearbyShareDialogUI::SetAttachments( std::vector<std::unique_ptr<Attachment>> attachments) { attachments_ = std::move(attachments); } void NearbyShareDialogUI::BindInterface( mojo::PendingReceiver<mojom::DiscoveryManager> manager) { mojo::MakeSelfOwnedReceiver( std::make_unique<NearbyPerSessionDiscoveryManager>( nearby_service_, std::move(attachments_)), std::move(manager)); } void NearbyShareDialogUI::BindInterface( mojo::PendingReceiver<mojom::NearbyShareSettings> receiver) { NearbySharingService* nearby_sharing_service = NearbySharingServiceFactory::GetForBrowserContext( Profile::FromWebUI(web_ui())); nearby_sharing_service->GetSettings()->Bind(std::move(receiver)); } void NearbyShareDialogUI::HandleClose(const base::ListValue* args) { for (auto& observer : observers_) { observer.OnClose(); } } WEB_UI_CONTROLLER_TYPE_IMPL(NearbyShareDialogUI) } // namespace nearby_share
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
d1b85a164cc16db808b49b5ccc663ce775ec3412
6247777e38b1015b848c177b9b43d9ab4123cca8
/gecode/int/circuit.cpp
29f79840ead009102e251367b7f71200676c4854
[ "MIT" ]
permissive
feserafim/gecode
f8287439e74cb168c7a7c7fdbb78103a4fec5b9b
760bf24f1fecd2f261f6e9c1391e80467015fdf4
refs/heads/master
2021-01-11T16:05:54.829564
2012-06-16T17:17:38
2012-06-16T17:17:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,244
cpp
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte <schulte@gecode.org> * Guido Tack <tack@gecode.org> * * Copyright: * Christian Schulte, 2006 * Guido Tack, 2011 * * Last modified: * $Date: 2011-06-02 01:12:15 +0900 (木, 02 6 2011) $ by $Author: schulte $ * $Revision: 12036 $ * * This file is part of Gecode, the generic constraint * development environment: * http://www.gecode.org * * 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 <gecode/int/circuit.hh> namespace Gecode { void circuit(Home home, int offset, const IntVarArgs& x, IntConLevel icl) { Int::Limits::nonnegative(offset,"Int::circuit"); if (x.size() == 0) throw Int::TooFewArguments("Int::circuit"); if (x.same(home)) throw Int::ArgumentSame("Int::circuit"); if (home.failed()) return; ViewArray<Int::IntView> xv(home,x); if (offset == 0) { typedef Int::NoOffset<Int::IntView> NOV; NOV no; if (icl == ICL_DOM) { GECODE_ES_FAIL((Int::Circuit::Dom<Int::IntView,NOV> ::post(home,xv,no))); } else { GECODE_ES_FAIL((Int::Circuit::Val<Int::IntView,NOV> ::post(home,xv,no))); } } else { typedef Int::Offset OV; OV off(-offset); if (icl == ICL_DOM) { GECODE_ES_FAIL((Int::Circuit::Dom<Int::IntView,OV> ::post(home,xv,off))); } else { GECODE_ES_FAIL((Int::Circuit::Val<Int::IntView,OV> ::post(home,xv,off))); } } } void circuit(Home home, const IntVarArgs& x, IntConLevel icl) { circuit(home,0,x,icl); } void circuit(Home home, const IntArgs& c, int offset, const IntVarArgs& x, const IntVarArgs& y, IntVar z, IntConLevel icl) { Int::Limits::nonnegative(offset,"Int::circuit"); int n = x.size(); if (n == 0) throw Int::TooFewArguments("Int::circuit"); if (x.same(home)) throw Int::ArgumentSame("Int::circuit"); if ((y.size() != n) || (c.size() != n*n)) throw Int::ArgumentSizeMismatch("Int::circuit"); circuit(home, offset, x, icl); if (home.failed()) return; IntArgs cx(offset+n); for (int i=0; i<offset; i++) cx[i] = 0; for (int i=n; i--; ) { for (int j=0; j<n; j++) cx[offset+j] = c[i*n+j]; element(home, cx, x[i], y[i]); } linear(home, y, IRT_EQ, z); } void circuit(Home home, const IntArgs& c, const IntVarArgs& x, const IntVarArgs& y, IntVar z, IntConLevel icl) { circuit(home,c,0,x,y,z,icl); } void circuit(Home home, const IntArgs& c, int offset, const IntVarArgs& x, IntVar z, IntConLevel icl) { Int::Limits::nonnegative(offset,"Int::circuit"); if (home.failed()) return; IntVarArgs y(home, x.size(), Int::Limits::min, Int::Limits::max); circuit(home, c, offset, x, y, z, icl); } void circuit(Home home, const IntArgs& c, const IntVarArgs& x, IntVar z, IntConLevel icl) { circuit(home,c,0,x,z,icl); } void path(Home home, int offset, const IntVarArgs& x, IntVar s, IntVar e, IntConLevel icl) { Int::Limits::nonnegative(offset,"Int::path"); int n=x.size(); if (n == 0) throw Int::TooFewArguments("Int::path"); if (x.same(home)) throw Int::ArgumentSame("Int::path"); if (home.failed()) return; ViewArray<Int::IntView> xv(home,n+1); for (int i=n; i--; ) xv[i] = Int::IntView(x[i]); xv[n] = s; if (offset == 0) { element(home, x, e, n); typedef Int::NoOffset<Int::IntView> NOV; NOV no; if (icl == ICL_DOM) { GECODE_ES_FAIL((Int::Circuit::Dom<Int::IntView,NOV> ::post(home,xv,no))); } else { GECODE_ES_FAIL((Int::Circuit::Val<Int::IntView,NOV> ::post(home,xv,no))); } } else { IntVarArgs ox(n+offset); IntVar y(home, -1,-1); for (int i=offset; i--; ) ox[i] = y; for (int i=n; i--; ) ox[offset + i] = x[i]; element(home, ox, e, offset+n); typedef Int::Offset OV; OV off(-offset); if (icl == ICL_DOM) { GECODE_ES_FAIL((Int::Circuit::Dom<Int::IntView,OV> ::post(home,xv,off))); } else { GECODE_ES_FAIL((Int::Circuit::Val<Int::IntView,OV> ::post(home,xv,off))); } } } void path(Home home, const IntVarArgs& x, IntVar s, IntVar e, IntConLevel icl) { path(home,0,x,s,e,icl); } void path(Home home, const IntArgs& c, int offset, const IntVarArgs& x, IntVar s, IntVar e, const IntVarArgs& y, IntVar z, IntConLevel icl) { Int::Limits::nonnegative(offset,"Int::path"); int n = x.size(); if (n == 0) throw Int::TooFewArguments("Int::path"); if (x.same(home)) throw Int::ArgumentSame("Int::path"); if ((y.size() != n) || (c.size() != n*n)) throw Int::ArgumentSizeMismatch("Int::path"); if (home.failed()) return; path(home, offset, x, s, e, icl); IntArgs cx(offset+n+1); for (int i=0; i<offset; i++) cx[i] = 0; cx[offset+n] = 0; for (int i=n; i--; ) { for (int j=0; j<n; j++) cx[offset+j] = c[i*n+j]; element(home, cx, x[i], y[i]); } linear(home, y, IRT_EQ, z); } void path(Home home, const IntArgs& c, const IntVarArgs& x, IntVar s, IntVar e, const IntVarArgs& y, IntVar z, IntConLevel icl) { path(home,c,0,x,s,e,y,z,icl); } void path(Home home, const IntArgs& c, int offset, const IntVarArgs& x, IntVar s, IntVar e, IntVar z, IntConLevel icl) { Int::Limits::nonnegative(offset,"Int::path"); if (home.failed()) return; IntVarArgs y(home, x.size(), Int::Limits::min, Int::Limits::max); path(home, c, offset, x, s, e, y, z, icl); } void path(Home home, const IntArgs& c, const IntVarArgs& x, IntVar s, IntVar e, IntVar z, IntConLevel icl) { path(home,c,0,x,s,e,z,icl); } } // STATISTICS: int-post
[ "kenhys@gmail.com" ]
kenhys@gmail.com
23bdd2c4557b51d0fb22b8de18e9d24f9187f640
faf706266f72ac6c335662d63c8e31b0e87da3b2
/modules/trasan/include/TLine0.h
d339af0e33f82af5f27c62c834802ba50ae9385f
[]
no_license
zombiesquirrel/vxdtf
4ba3284df6ba6a87039eaa38d4faff4baccd4076
a42de988245f471b0faa20659b3d8ab2a6a53a29
refs/heads/master
2021-01-01T05:38:05.122550
2013-09-10T13:47:06
2013-09-10T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,994
h
//----------------------------------------------------------------------------- // $Id: TLine0.h 10021 2007-03-03 05:43:02Z katayama $ //----------------------------------------------------------------------------- // Filename : TLine0.h // Section : Tracking // Owner : Yoshihito Iwasaki // Email : yoshihito.iwasaki@kek.jp //----------------------------------------------------------------------------- // Description : A class to represent a line in tracking. // See http://bsunsrv1.kek.jp/~yiwasaki/tracking/ //----------------------------------------------------------------------------- // $Log$ // Revision 1.7 2002/01/03 11:04:58 katayama // HepGeom::Point3D<double> and other header files are cleaned // // Revision 1.6 2001/12/23 09:58:56 katayama // removed Strings.h // // Revision 1.5 2001/12/19 02:59:55 katayama // Uss find,istring // // Revision 1.4 2001/12/14 02:54:50 katayama // For gcc-3.0 // // Revision 1.3 2001/04/11 01:10:03 yiwasaki // Trasan 3.00 RC2.1 : bugs in RC2 fixed // // Revision 1.2 2000/10/05 23:54:31 yiwasaki // Trasan 2.09 : TLink has drift time info. // // Revision 1.1 1999/11/19 09:13:15 yiwasaki // Trasan 1.65d : new conf. finder updates, no change in default conf. finder // // Revision 1.11 1999/10/30 10:12:49 yiwasaki // Trasan 1.65c : new conf finder with 3D // // Revision 1.10 1999/03/11 23:27:27 yiwasaki // Trasan 1.24 release : salvaging improved // // Revision 1.9 1999/01/11 03:03:26 yiwasaki // Fitters added // // Revision 1.8 1998/12/24 08:46:58 yiwasaki // stereo building modified by J.Suzuki // // Revision 1.7 1998/08/12 16:33:01 yiwasaki // Trasan 1.08 release : stereo finder updated by J.Suzuki, new MC classes added by Y.Iwasaki // // Revision 1.6 1998/07/29 04:35:22 yiwasaki // Trasan 1.06 release : back to Trasan 1.02 // // Revision 1.4 1998/07/02 09:04:46 yiwasaki // Trasan 1.0 official release // // Revision 1.3 1998/06/19 12:17:12 yiwasaki // Trasan 1 beta 4.1 release, TBuilder::buildStereo updated // // Revision 1.2 1998/06/14 11:09:58 yiwasaki // Trasan beta 3 release, TBuilder and TSelector added // // Revision 1.1 1998/06/11 08:15:47 yiwasaki // Trasan 1 beta 1 release // //----------------------------------------------------------------------------- #ifndef TLine0_FLAG_ #define TLine0_FLAG_ #ifdef TRASAN_DEBUG_DETAIL #ifndef TRASAN_DEBUG #define TRASAN_DEBUG #endif #endif #include <string> #define HEP_SHORT_NAMES #include "tracking/modules/trasan/TTrackBase.h" #include "tracking/modules/trasan/TLink.h" #include "tracking/modules/trasan/TLineFitter.h" namespace Belle { /// A class to represent a track in tracking. class TLine0 : public TTrackBase { public: /// Constructor. TLine0(); /// Constructor. TLine0(const AList<TLink> &); /// Destructor virtual ~TLine0(); public:// Selectors /// returns type. virtual unsigned objectType(void) const; /// dumps debug information. void dump(const std::string& message = std::string(""), const std::string& prefix = std::string("")) const; /// returns coefficient a. double a(void) const; /// returns coefficient b. double b(void) const; /// returns chi2. double chi2(void) const; /// returns reduced-chi2. double reducedChi2(void) const; public:// Utilities /// returns distance to a position of TLink itself. (not to a wire) double distance(const TLink&) const; public:// Modifiers /// fits itself. Error was happened if return value is not zero. // int fitx(void); /// fits itself using isolated hits. Error was happened if return value is not zero. int fit2(); /// fits itself using single hits in a wire-layer. Error was happened if return value is not zero. int fit2s(); /// fits itself using isolated hits. Error was happened if return value is not zero. int fit2p(); /// fits itself using single hits in a wire-layer. Error was happened if return value is not zero. int fit2sp(); /// remove extremly bad points. void removeChits(); /// remove bad points by chi2. Bad points are returned in a 'list'. fit() should be called before calling this function. void refine(AList<TLink> & list, float maxSigma); /// void removeSLY(AList<TLink> & list); /// void appendSLY(AList<TLink> & list); /// void appendByszdistance(AList<TLink> & list, unsigned isl, float maxSigma); /// sets circle properties. void property(double a, double b, double det); private:// Always updated mutable bool _fittedUpdated; private:// Updated when fitted double _a; double _b; double _det; static const TLineFitter _fitter; private:// Updated when fitted and accessed mutable double _chi2; mutable double _reducedChi2; }; //----------------------------------------------------------------------------- #ifdef TLine0_NO_INLINE #define inline #else #undef inline #define TLine0_INLINE_DEFINE_HERE #endif #ifdef TLine0_INLINE_DEFINE_HERE inline double TLine0::a(void) const { #ifdef TRASAN_DEBUG if (! _fitted) std::cout << "TLine0::a !!! fit not performed" << std::endl; #endif return _a; } inline double TLine0::b(void) const { #ifdef TRASAN_DEBUG if (! _fitted) std::cout << "TLine0::b !!! fit not performed" << std::endl; #endif return _b; } inline double TLine0::distance(const TLink& l) const { #ifdef TRASAN_DEBUG if (! _fitted) std::cout << "TLine0::distance !!! fit not performed" << std::endl; #endif double dy = fabs(_a * l.position().x() + _b - l.position().y()); double invCos = sqrt(1. + _a * _a); return dy / invCos; } inline void TLine0::property(double a, double b, double det) { _a = a; _b = b; _det = det; } inline unsigned TLine0::objectType(void) const { return Line; } #endif #undef inline } // namespace Belle #endif /* TLine0_FLAG_ */
[ "jkl@lettenbichlerAtWork.(none)" ]
jkl@lettenbichlerAtWork.(none)
12aae5afd5f0c187fb30d3a3506489aecf6e8785
786de89be635eb21295070a6a3452f3a7fe6712c
/hdf5pp/tags/V00-00-05/test/hdf5_type_info.cpp
7eadbe5fefa69ee00c8844582afb9549fcd98214
[]
no_license
connectthefuture/psdmrepo
85267cfe8d54564f99e17035efe931077c8f7a37
f32870a987a7493e7bf0f0a5c1712a5a030ef199
refs/heads/master
2021-01-13T03:26:35.494026
2015-09-03T22:22:11
2015-09-03T22:22:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,613
cpp
//-------------------------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Class hdf5_type_info... // // Author List: // Andrei Salnikov // //------------------------------------------------------------------------ #include "Lusi/Lusi.h" //----------------- // C/C++ Headers -- //----------------- #include <iostream> #include <iomanip> //---------------------- // Base Class Headers -- //---------------------- #include "hdf5/hdf5.h" //------------------------------- // Collaborating Class Headers -- //------------------------------- //----------------------------------------------------------------------- // Local Macros, Typedefs, Structures, Unions and Forward Declarations -- //----------------------------------------------------------------------- using namespace std ; namespace { void print_type_info ( hid_t tid, const char* name ) { cout << name << '\n' ; cout << " H5Tget_class : " << int(H5Tget_class(tid)) << '\n' ; cout << " H5Tget_size : " << H5Tget_size(tid) << '\n' ; cout << " H5Tis_variable_str: " << int(H5Tis_variable_str( tid )) << '\n' ; if ( H5Tget_class(tid) == H5T_STRING ) { cout << " H5Tget_strpad : " << int(H5Tget_strpad( tid )) << '\n' ; } } } // ---------------------------------------- // -- Public Function Member Definitions -- // ---------------------------------------- int main( int, char** ) { hid_t mystr_t = H5Tcopy ( H5T_C_S1 ) ; H5Tset_size( mystr_t, H5T_VARIABLE ) ; print_type_info ( mystr_t, "mystr_t" ) ; print_type_info ( H5T_C_S1, "H5T_C_S1" ) ; print_type_info ( H5T_FORTRAN_S1, "H5T_FORTRAN_S1" ) ; print_type_info ( H5T_IEEE_F32BE, "H5T_IEEE_F32BE" ) ; print_type_info ( H5T_IEEE_F32LE, "H5T_IEEE_F32LE" ) ; print_type_info ( H5T_IEEE_F64BE, "H5T_IEEE_F64BE" ) ; print_type_info ( H5T_IEEE_F64LE, "H5T_IEEE_F64LE" ) ; print_type_info ( H5T_STD_I8BE, "H5T_STD_I8BE" ) ; print_type_info ( H5T_STD_I8LE, "H5T_STD_I8LE" ) ; print_type_info ( H5T_STD_I16BE, "H5T_STD_I16BE" ) ; print_type_info ( H5T_STD_I16LE, "H5T_STD_I16LE" ) ; print_type_info ( H5T_STD_I32BE, "H5T_STD_I32BE" ) ; print_type_info ( H5T_STD_I32LE, "H5T_STD_I32LE" ) ; print_type_info ( H5T_STD_I64BE, "H5T_STD_I64BE" ) ; print_type_info ( H5T_STD_I64LE, "H5T_STD_I64LE" ) ; print_type_info ( H5T_STD_U8BE, "H5T_STD_U8BE" ) ; print_type_info ( H5T_STD_U8LE, "H5T_STD_U8LE" ) ; print_type_info ( H5T_STD_U16BE, "H5T_STD_U16BE" ) ; print_type_info ( H5T_STD_U16LE, "H5T_STD_U16LE" ) ; print_type_info ( H5T_STD_U32BE, "H5T_STD_U32BE" ) ; print_type_info ( H5T_STD_U32LE, "H5T_STD_U32LE" ) ; print_type_info ( H5T_STD_U64BE, "H5T_STD_U64BE" ) ; print_type_info ( H5T_STD_U64LE, "H5T_STD_U64LE" ) ; print_type_info ( H5T_STD_B8BE, "H5T_STD_B8BE" ) ; print_type_info ( H5T_STD_B8LE, "H5T_STD_B8LE" ) ; print_type_info ( H5T_STD_B16BE, "H5T_STD_B16BE" ) ; print_type_info ( H5T_STD_B16LE, "H5T_STD_B16LE" ) ; print_type_info ( H5T_STD_B32BE, "H5T_STD_B32BE" ) ; print_type_info ( H5T_STD_B32LE, "H5T_STD_B32LE" ) ; print_type_info ( H5T_STD_B64BE, "H5T_STD_B64BE" ) ; print_type_info ( H5T_STD_B64LE, "H5T_STD_B64LE" ) ; print_type_info ( H5T_STD_REF_OBJ, "H5T_STD_REF_OBJ" ) ; print_type_info ( H5T_STD_REF_DSETREG, "H5T_STD_REF_DSETREG" ) ; print_type_info ( H5T_UNIX_D32BE, "H5T_UNIX_D32BE" ) ; print_type_info ( H5T_UNIX_D32LE, "H5T_UNIX_D32LE" ) ; print_type_info ( H5T_UNIX_D64BE, "H5T_UNIX_D64BE" ) ; print_type_info ( H5T_UNIX_D64LE, "H5T_UNIX_D64LE" ) ; }
[ "salnikov@b967ad99-d558-0410-b138-e0f6c56caec7" ]
salnikov@b967ad99-d558-0410-b138-e0f6c56caec7
19797b7b0be4f33873ad7e87dd591144f976abf7
a92b18defb50c5d1118a11bc364f17b148312028
/src/prod/src/ServiceModel/ApplicationIdentifier.cpp
b985d9b6f8b97b13adc2deffc1f663fec0bf299c
[ "MIT" ]
permissive
KDSBest/service-fabric
34694e150fde662286e25f048fb763c97606382e
fe61c45b15a30fb089ad891c68c893b3a976e404
refs/heads/master
2023-01-28T23:19:25.040275
2020-11-30T11:11:58
2020-11-30T11:11:58
301,365,601
1
0
MIT
2020-11-30T11:11:59
2020-10-05T10:05:53
null
UTF-8
C++
false
false
6,547
cpp
// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ #include "stdafx.h" using namespace std; using namespace Common; using namespace ServiceModel; StringLiteral const TraceType_ApplicationIdentifier("ApplicationIdentifier"); Global<ApplicationIdentifier> ApplicationIdentifier::FabricSystemAppId = make_global<ApplicationIdentifier>(L"__FabricSystem", 4294967295); GlobalWString ApplicationIdentifier::Delimiter = make_global<wstring>(L"_App"); GlobalWString ApplicationIdentifier::EnvVarName_ApplicationId = make_global<wstring>(L"Fabric_ApplicationId"); INITIALIZE_SIZE_ESTIMATION(ApplicationIdentifier) ApplicationIdentifier::ApplicationIdentifier() : applicationTypeName_(), applicationNumber_(0) { } ApplicationIdentifier::ApplicationIdentifier( wstring const & applicationTypeName, ULONG applicationNumber) : applicationTypeName_(applicationTypeName), applicationNumber_(applicationNumber) { ASSERT_IF(applicationTypeName_.empty() && (applicationNumber_ != 0), "ApplicationNumber must be 0 for empty ApplicationTypeName, specified {0}", applicationNumber_); } ApplicationIdentifier::ApplicationIdentifier(ApplicationIdentifier const & other) : applicationTypeName_(other.applicationTypeName_), applicationNumber_(other.applicationNumber_) { } ApplicationIdentifier::ApplicationIdentifier(ApplicationIdentifier && other) : applicationTypeName_(move(other.applicationTypeName_)), applicationNumber_(other.applicationNumber_) { } bool ApplicationIdentifier::IsEmpty() const { return (applicationTypeName_.empty() && (applicationNumber_ == 0)); } bool ApplicationIdentifier::IsAdhoc() const { return IsEmpty(); } bool ApplicationIdentifier::IsSystem() const { return (this->operator==(FabricSystemAppId)); } ApplicationIdentifier const & ApplicationIdentifier::operator = (ApplicationIdentifier const & other) { if (this != &other) { this->applicationTypeName_ = other.applicationTypeName_; this->applicationNumber_ = other.applicationNumber_; } return *this; } ApplicationIdentifier const & ApplicationIdentifier::operator = (ApplicationIdentifier && other) { if (this != &other) { this->applicationTypeName_ = move(other.applicationTypeName_); this->applicationNumber_ = other.applicationNumber_; } return *this; } bool ApplicationIdentifier::operator == (ApplicationIdentifier const & other) const { bool equals = true; equals = this->applicationNumber_ == other.applicationNumber_; if (!equals) { return equals; } equals = StringUtility::AreEqualCaseInsensitive(this->applicationTypeName_, other.applicationTypeName_); if (!equals) { return equals; } return equals; } bool ApplicationIdentifier::operator != (ApplicationIdentifier const & other) const { return !(*this == other); } int ApplicationIdentifier::compare(ApplicationIdentifier const & other) const { if (this->applicationNumber_ > other.applicationNumber_) { return 1; } else if (this->applicationNumber_ < other.applicationNumber_) { return -1; } else { return StringUtility::CompareCaseInsensitive(this->applicationTypeName_, other.applicationTypeName_); } } bool ApplicationIdentifier::operator < (ApplicationIdentifier const & other) const { return (this->compare(other) < 0); } void ApplicationIdentifier::WriteTo(TextWriter & w, FormatOptions const &) const { w.Write(ToString()); } wstring ApplicationIdentifier::ToString() const { if (IsEmpty()) { return L""; } else { return wformatString("{0}{1}{2}",this->applicationTypeName_, Delimiter, this->applicationNumber_); } } ErrorCode ApplicationIdentifier::FromString(wstring const & applicationIdStr, __out ApplicationIdentifier & applicationId) { if (applicationIdStr.empty()) { applicationId = ApplicationIdentifier(); } else { auto pos = applicationIdStr.find_last_of(*Delimiter); if (pos == wstring::npos) { TraceNoise( TraceTaskCodes::ServiceModel, TraceType_ApplicationIdentifier, "FromString: Invalid argument {0}", applicationIdStr); return ErrorCode(ErrorCodeValue::InvalidArgument); } wstring applicationTypeName = applicationIdStr.substr(0, pos - Delimiter->length() + 1); wstring applicationNumberStr = applicationIdStr.substr(pos + 1); ULONG appNumber; if (!StringUtility::TryFromWString<ULONG>(applicationNumberStr, appNumber)) { TraceNoise( TraceTaskCodes::ServiceModel, TraceType_ApplicationIdentifier, "FromString: Invalid argument {0}", applicationIdStr); return ErrorCode(ErrorCodeValue::InvalidArgument); } applicationId = ApplicationIdentifier(applicationTypeName, appNumber); } return ErrorCode(ErrorCodeValue::Success); } void ApplicationIdentifier::ToEnvironmentMap(EnvironmentMap & envMap) const { envMap[ApplicationIdentifier::EnvVarName_ApplicationId] = this->ToString(); } ErrorCode ApplicationIdentifier::FromEnvironmentMap(EnvironmentMap const & envMap, __out ApplicationIdentifier & applicationId) { auto appIdIterator = envMap.find(ApplicationIdentifier::EnvVarName_ApplicationId); if(appIdIterator == envMap.end()) { return ErrorCode(ErrorCodeValue::NotFound); } else { return ApplicationIdentifier::FromString(appIdIterator->second, applicationId); } } string ApplicationIdentifier::AddField(Common::TraceEvent & traceEvent, std::string const & name) { traceEvent.AddField<bool>(name + ".isEmpty"); traceEvent.AddField<std::wstring>(name + ".typeName"); traceEvent.AddField<std::wstring>(name + ".delimiter"); traceEvent.AddField<uint32>(name + ".applicationNumber"); return "isEmpty={0};appId={1}{2}{3}"; } void ApplicationIdentifier::FillEventData(Common::TraceEventContext & context) const { context.Write<bool>(IsEmpty()); context.Write<std::wstring>(applicationTypeName_); context.Write<std::wstring>(Delimiter); context.WriteCopy<uint32>(static_cast<uint32>(applicationNumber_)); }
[ "noreply-sfteam@microsoft.com" ]
noreply-sfteam@microsoft.com
d380bbbdbc3202cb7f40a1e0709f7fc589393a87
40f7252051a70991840e72d062887209c973f4b7
/Coding Ninja/Files/Implementation Of Priority Queue/inbuilt-Min-Priority-Queue.txt
923c249b181ce9f9fd72fbad953f2526b06aa940
[]
no_license
goel-aman/Self_Learning_Reference_Material
97d88038acebae5974ec5288299bebae6a68c9eb
47ff509b366800fb46fb2a75181ed52d547cd9a5
refs/heads/main
2023-06-04T03:31:30.779377
2021-06-17T13:34:10
2021-06-17T13:34:10
301,749,833
0
0
null
null
null
null
UTF-8
C++
false
false
352
txt
#include <iostream> using namespace std; #include <queue> int main() { priority_queue<int, vector<int>, greater<int> > p; p.push(100); p.push(21); p.push(7); p.push(165); p.push(78); p.push(4); cout << p.size() << endl; cout << p.empty() << endl; cout << p.top() << endl; while(!p.empty()) { cout << p.top() << endl; p.pop(); } }
[ "amangoel9873572693@gmail.com" ]
amangoel9873572693@gmail.com
ee1be003aedf5e9eccf3306306015191206d1976
c945d1901ed99649432e553768d476b8e53cbcf2
/computer_science/235-data_structures_and_algorithms/workspace/Lab7/To Students/Student_Code/Mimic.h
a00378e1773b4a4a70459167a3633110e51f3be3
[]
no_license
misterpink14/byu_course_work
a0d0909efbc00862d380ba3b271293577ace8cb2
5cdd1c580971d0c304a57956543b20681a135f72
refs/heads/master
2021-06-19T00:05:30.820383
2017-04-30T20:05:25
2017-04-30T20:05:25
68,180,953
0
0
null
null
null
null
UTF-8
C++
false
false
4,723
h
/* * Mimic.h * * Created on: Jun 10, 2014 * Author: misterpink14 */ #ifndef MIMIC_H_ #define MIMIC_H_ #include "MimicInterface.h" #include <sstream> #include <cstdlib> #include <ctime> class Mimic : public MimicInterface { private: struct Node { string key; vector<string> value; Node* next; Node() //: key(""), next(NULL) { key = ""; next = NULL; value.clear(); }; ~Node(){} }; Node* head; void find(Node*& n, string key) { n = head; while (n != NULL) { if (key == n->key) { return; } n = n->next; } } string random(vector<string> v) { unsigned int r = rand() % v.size(); return v[r]; } public: Mimic() { head = NULL; } ~Mimic(){} //Part 1-------------------------------------------------------------- /** * createMap * * Creates a prefix-suffix map based on the input text. * * Go through the input text and examine each group of 3 words. Refer * to the first two words as the "prefix" and the third word as the * "suffix". Create a map that associates each prefix with each suffix. * If you encounter a prefix that has been read already, add the new * suffix to the list of suffixes already associated with that prefix; * in this manner, each prefix can be associated with multiple * suffixes and even multiple copies of the same suffix. Note that * the input texts will only contain words separated by spaces. Also * note that the last two word prefix in the text should be associated * with the suffix "THE_END". * * @param input * the sample text to be mimicked */ void createMap(string input) { srand(time(NULL)); stringstream ss; ss << input; string key1; string key2; string value; Node* n; ss >> key1; ss >> key2; while (ss >> value) { if(head == NULL) { Node* p = new Node; p->key = key1 + " " + key2; p->value.push_back(value); head = p; } else { string key = (key1 + " " + key2); n = head; while(n->next != NULL) { if(n->key == key) { n->value.push_back(value); break; } n = n->next; } if(n->key == (key)) { n->value.push_back(value); } else { n->next = new Node();//(key, value); n->next->key = (key); n->next->value.push_back(value); } } key1 = key2; key2 = value; } n = head; while(n->next != NULL) { if(n->key == (key1 + " " + key2)) { n->value.push_back("THE_END"); break; } n = n->next; } if(n->key == (key1 + " " + key2)) { n->value.push_back("THE_END"); } else { n->next = new Node();//(key, value); n->next->key = (key1 + " " + key2); n->next->value.push_back("THE_END"); } } /** * getSuffixList * * Returns the list of suffixes associated with the given prefix. * Returns an empty vector if the given prefix is not in the map or no * map has been created yet. * * @param prefix * the prefix to be found * @return a list of suffixes associated with the given prefix if the * prefix is found; an empty vector otherwise */ vector<string> getSuffixList(string prefix) { vector<string> ret; if (head == NULL) { return ret; } Node* n = head; while (n != NULL) { if(prefix == n->key) { return n->value; } n=n->next; } return ret; } //Part 2-------------------------------------------------------------- /** * generateText * * Generates random text using the map created by the createMap method. * * To generate the new text, start with the first prefix that was read * and randomly select one of the suffixes associated with that prefix. * The next prefix is the second word from the previous prefix and the * selected suffix. Continue selecting random suffixes and building the * next prefix until the suffix "THE_END" is selected. The token * "THE_END" should not be returned as part of your generated text. * * @return random text generated using the map created with the sample * text; an empty string if no map has been created yet */ string generateText() { if (head == NULL) { return ""; } stringstream out; Node* n = head; out << head->key; while(n!=NULL) { string value = n->value[rand() % n->value.size()]; string key2; if (value == "THE_END") { break; } out << " " << value; stringstream ss(n->key); ss >> key2; ss >> key2; find(n, key2 + " " + value); } return out.str(); } }; #endif /* MIMIC_H_ */
[ "benthompson@Benjamins-MacBook.local" ]
benthompson@Benjamins-MacBook.local
940fdafe4750bd7a098e35417ffe402e4887eb8b
75e777b03684d3652dcff97ee46d5953840f940c
/picker.cpp
5fee01733c2f2f5818a10fb6329ab2730fd27ec8
[ "BSD-2-Clause" ]
permissive
montaguegabe/dual-contouring-engine
233a7bd1a6b08822f3825b4cceeef410e4c0d931
440fa95e070863e8f0b1c4b685fe5be797324be6
refs/heads/master
2021-08-31T16:39:24.625334
2017-12-22T03:41:03
2017-12-22T03:41:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,791
cpp
#ifndef __MAC__ # include <GL/glew.h> #endif #include "uniforms.h" #include "picker.h" using namespace std; Picker::Picker(const RigTForm& initialRbt, Uniforms& uniforms) : drawer_(initialRbt, uniforms) , idCounter_(0) , srgbFrameBuffer_(!g_Gl2Compatible) {} bool Picker::visit(SgTransformNode& node) { nodeStack_.push_back(node.shared_from_this()); return drawer_.visit(node); } bool Picker::postVisit(SgTransformNode& node) { nodeStack_.pop_back(); return drawer_.postVisit(node); } bool Picker::visit(SgShapeNode& node) { idCounter_++; for (int i = nodeStack_.size() - 1; i >= 0; --i) { shared_ptr<SgRbtNode> asRbtNode = dynamic_pointer_cast<SgRbtNode>(nodeStack_[i]); if (asRbtNode) { addToMap(idCounter_, asRbtNode); break; } } const Cvec3 idColor = idToColor(idCounter_); // DEBUG OUTPUT cerr << idCounter_ << " => " << idColor[0] << ' ' << idColor[1] << ' ' << idColor[2] << endl; drawer_.getUniforms().put("uIdColor", idColor); return drawer_.visit(node); } bool Picker::postVisit(SgShapeNode& node) { return drawer_.postVisit(node); } shared_ptr<SgRbtNode> Picker::getRbtNodeAtXY(int x, int y) { PackedPixel query; glReadPixels(x, y, 1, 1, GL_RGB, GL_UNSIGNED_BYTE, &query); const int id = colorToId(query); // DEBUG OUTPUT cerr << int(query.r) << ' ' << int(query.g) << ' ' << int(query.b) << " => " << id << endl; return find(id); } //------------------ // Helper functions //------------------ // void Picker::addToMap(int id, shared_ptr<SgRbtNode> node) { idToRbtNode_[id] = node; } shared_ptr<SgRbtNode> Picker::find(int id) { IdToRbtNodeMap::iterator it = idToRbtNode_.find(id); if (it != idToRbtNode_.end()) return it->second; else return shared_ptr<SgRbtNode>(); // set to null } // encode 2^4 = 16 IDs in each of R, G, B channel, for a total of 16^3 number of objects static const int NBITS = 4, N = 1 << NBITS, MASK = N-1; Cvec3 Picker::idToColor(int id) { assert(id > 0 && id < N * N * N); Cvec3 framebufferColor = Cvec3(id & MASK, (id >> NBITS) & MASK, (id >> (NBITS+NBITS)) & MASK); framebufferColor = framebufferColor / N + Cvec3(0.5/N); if (!srgbFrameBuffer_) return framebufferColor; else { // if GL3 is used, the framebuffer will be in SRGB format, and the color we supply needs to be in linear space Cvec3 linearColor; for (int i = 0; i < 3; ++i) { linearColor[i] = framebufferColor[i] <= 0.04045 ? framebufferColor[i]/12.92 : pow((framebufferColor[i] + 0.055)/1.055, 2.4); } return linearColor; } } int Picker::colorToId(const PackedPixel& p) { const int UNUSED_BITS = 8 - NBITS; int id = p.r >> UNUSED_BITS; id |= ((p.g >> UNUSED_BITS) << NBITS); id |= ((p.b >> UNUSED_BITS) << (NBITS+NBITS)); return id; }
[ "gmontague@college.harvard.edu" ]
gmontague@college.harvard.edu
a1b419057877ee75fc710958b3932b6ba204ac7d
e9dfc5f66f649c8e11110d4211c57f575471f2fb
/programa 6/main.cpp
d27008fd5faf37c5b461ac4b0c0bf79abf66ed83
[]
no_license
erickmerlo/programacion2
dad59092695ee876865cfd5d9baa00ac9fdcb8c0
53fd8fedec004c8ed7a8e0363552d01790a56068
refs/heads/master
2020-04-16T04:32:06.153781
2013-12-12T21:17:55
2013-12-12T21:17:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,108
cpp
#include <iostream> using namespace std; /* ingresar nombre del empleado,turno y las horas. luego determianar el pago por hora, el pago bruto, ihss y total a pagar turno1= 100 turno2= 150 turno3= 190 para el seguro si el salario es arriba de 7000 es igual a 245 y si no deducir del salario bruto el 3.5% */ int main() { char nombre[30]; int horas, turno, pxh; double ihss, tp, pb; cout<< "Ingresar el nombre: "; cin.getline(nombre,30); cout << "Ingresar turno: "; cin >> turno; cout << "Ingresar horas: "; cin >> horas; if (turno==1){ pxh=100; } else if(turno==2){ pxh=150; } else if( turno==3){ pxh=190; } else{ pxh=0; } pb= pxh*horas; if (pb >= 7000){ ihss=245; } else{ ihss= pb * 0.035; } tp=pb-ihss; cout << endl <<"Nombre de Empleado: " << nombre << endl; cout << "Pago por hora: " << pxh << endl; cout << "Pago bruto: " << pb << endl; cout << "Seguro Social: " << ihss << endl; cout << "Total a pagar: " << tp << endl; return 0; }
[ "erick.merlo13@hotmail.com" ]
erick.merlo13@hotmail.com
e92d47b3eea17ecc71498d2f01f6edd0ff3d2fd7
255ad6034144189e9aaff860f8580386aefa075f
/PRT_/HDRLoader.cpp
bfde1e7a7d3a7fd060d40c809d8737f83f55d3bb
[]
no_license
BigHeadJaeger/PRT_
69b022aecf47ef5e1696eb889566d219391b58c6
d23b3c12043dbe3863297dedfde29e99d81c2a55
refs/heads/master
2020-05-03T21:40:00.584433
2019-04-01T09:18:35
2019-04-01T09:18:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,353
cpp
/* * * Copyright (C) 2004 Mekensleep * * Mekensleep * 24 rue vieille du temple * 75004 Paris * licensing@mekensleep.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: * Igor Kravtchenko <igor@obraz.net> * */ #include "hdrloader.h" #include <math.h> #include <memory.h> #include <stdio.h> typedef unsigned char RGBE[4]; const int R = 0; const int G = 1; const int B = 2; const int E = 3; #define MINELEN 8 // minimum scanline length for encoding #define MAXELEN 0x7fff // maximum scanline length for encoding static void workOnRGBE(RGBE *scan, int len, float *cols); static bool decrunch(RGBE *scanline, int len, FILE *file); static bool oldDecrunch(RGBE *scanline, int len, FILE *file); bool HDRLoader::load(const char *fileName, HDRLoaderResult &res) { int i; char str[200]; FILE *file; fopen_s(&file, fileName, "rb"); if (!file) return false; fread(str, 10, 1, file); if (memcmp(str, "#?RADIANCE", 10)) { fclose(file); return false; } fseek(file, 1, SEEK_CUR); char cmd[200]; i = 0; char c = 0, oldc; while (true) { oldc = c; c = fgetc(file); if (c == 0xa && oldc == 0xa) break; cmd[i++] = c; } char reso[200]; i = 0; while (true) { c = fgetc(file); reso[i++] = c; if (c == 0xa) break; } int w, h; //if (!sscanf(reso, "-Y %ld +X %ld", &h, &w)) if (!sscanf_s(reso, "-Y %ld +X %ld", &h, &w)) { fclose(file); return false; } res.width = w; res.height = h; float *cols = new float[w * h * 3]; res.cols = cols; RGBE *scanline = new RGBE[w]; if (!scanline) { fclose(file); return false; } // convert image for (int y = h - 1; y >= 0; y--) { if (decrunch(scanline, w, file) == false) break; workOnRGBE(scanline, w, cols); cols += w * 3; } delete[] scanline; fclose(file); return true; } float convertComponent(int expo, int val) { float v = ((float)val) / 256.0f; float d = (float)powf(2.0f, (float)expo); return v * d; } void workOnRGBE(RGBE *scan, int len, float *cols) { while (len-- > 0) { int expo = scan[0][E] - 128; cols[0] = convertComponent(expo, scan[0][R]); cols[1] = convertComponent(expo, scan[0][G]); cols[2] = convertComponent(expo, scan[0][B]); cols += 3; scan++; } } bool decrunch(RGBE *scanline, int len, FILE *file) { int i, j; if (len < MINELEN || len > MAXELEN) return oldDecrunch(scanline, len, file); i = fgetc(file); if (i != 2) { fseek(file, -1, SEEK_CUR); return oldDecrunch(scanline, len, file); } scanline[0][G] = fgetc(file); scanline[0][B] = fgetc(file); i = fgetc(file); if (scanline[0][G] != 2 || scanline[0][B] & 128) { scanline[0][R] = 2; scanline[0][E] = i; return oldDecrunch(scanline + 1, len - 1, file); } // read each component for (i = 0; i < 4; i++) { for (j = 0; j < len; ) { unsigned char code = fgetc(file); if (code > 128) { // run code &= 127; unsigned char val = fgetc(file); while (code--) scanline[j++][i] = val; } else { // non-run while (code--) scanline[j++][i] = fgetc(file); } } } return feof(file) ? false : true; } bool oldDecrunch(RGBE *scanline, int len, FILE *file) { int i; int rshift = 0; while (len > 0) { scanline[0][R] = fgetc(file); scanline[0][G] = fgetc(file); scanline[0][B] = fgetc(file); scanline[0][E] = fgetc(file); if (feof(file)) return false; if (scanline[0][R] == 1 && scanline[0][G] == 1 && scanline[0][B] == 1) { for (i = scanline[0][E] << rshift; i > 0; i--) { memcpy(&scanline[0][0], &scanline[-1][0], 4); scanline++; len--; } rshift += 8; } else { scanline++; len--; rshift = 0; } } return true; }
[ "46146249+shiinayuika@users.noreply.github.com" ]
46146249+shiinayuika@users.noreply.github.com
506cdca87583435533b40edf0bd92d31841ceb11
4032667ca76494a5bcc427faa9599b98df5af60f
/src/rpc/client_config.h
9969268ea1d9996f6c886efc6c07b06cd02ba0d0
[ "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
shphrd/bitcoin-sv
7eb3dbec84338101dd3581045ce7688657767e03
0ab72c65ae492376e6fe1ec3a27532fd7cafc7b1
refs/heads/master
2021-06-28T07:31:24.916704
2021-02-10T23:48:30
2021-02-10T23:48:30
317,419,401
1
0
NOASSERTION
2021-02-10T23:48:31
2020-12-01T03:58:23
null
UTF-8
C++
false
false
1,607
h
// Copyright (c) 2020 Bitcoin Association // Distributed under the Open BSV software license, see the accompanying file LICENSE. #pragma once #include <rpc/client_utils.h> #include <string> namespace rpc::client { /** * Wrapper for RPC client config. */ class RPCClientConfig { public: // Some default config values (here so they can be checked from unit tests) static constexpr int DEFAULT_DS_AUTHORITY_PORT { 80 }; static constexpr int DEFAULT_DS_AUTHORITY_TIMEOUT { 60 }; // Factory methods static RPCClientConfig CreateForBitcoind(); static RPCClientConfig CreateForDSA(); static RPCClientConfig CreateForDSA(const std::string& url); // Accessors const std::string& GetServerIP() const { return mServerIP; } int GetServerPort() const { return mServerPort; } int GetConnectionTimeout() const { return mConnectionTimeout; } const std::string& GetCredentials() const { return mUsernamePassword; } const std::string& GetWallet() const { return mWallet; } const std::string& GetEndpoint() const { return mEndpoint; } bool UsesAuth() const { return ! mUsernamePassword.empty(); } private: // Server address details std::string mServerIP {}; int mServerPort {-1}; // Connection timeout int mConnectionTimeout { DEFAULT_HTTP_CLIENT_TIMEOUT }; // Server username:password, or auth cookie std::string mUsernamePassword {}; // Special wallet endpoint std::string mWallet {}; // The configured endpoint (may be extended elsewhere) std::string mEndpoint {}; }; } // namespace rpc::client
[ "r.mills@nchain.com" ]
r.mills@nchain.com
697aad35ac253663f9b7cb0a807e9e47be580d0d
1eebf39c08716814de4196919e470fcfb61e54ed
/src/attitudePropagator.cpp
b13d41a72d681a6b7ebc7bd5e4d6ca85e4470424
[]
no_license
nearlab/nearlab_utils
71af95732af87f779a92c036b937d82111f0e954
7b12cfdb7920251a5133cc87acd1d80615433963
refs/heads/master
2020-04-17T16:09:26.851518
2019-01-25T01:38:57
2019-01-25T01:38:57
166,728,796
0
0
null
null
null
null
UTF-8
C++
false
false
2,421
cpp
#include "attitudePropagator.h" #include "rungeKutta.h" #include "quatMath.h" #include <math.h> void attProp(Eigen::MatrixXd& stateHist, const Eigen::Vector4d& q0, const Eigen::Vector3d& w0, const Eigen::MatrixXd& control, const double& tf, const int& intervals, const AttitudeParams& p){ Eigen::VectorXd state = Eigen::VectorXd::Zero(6); double dt = tf/(intervals)/100; double dtConst = tf/intervals; double t = 0; double err = 1e-7; int iter = 0; double s = 1; while(iter<intervals){ // double tIterLow = std::floor(t/dtConst); // double tIterHigh = std::ceil(t/dtConst); // Eigen::VectorXd u; // if(tIterHigh<intervals){ // u = (t/dtConst-tIterLow)*control.col((int)tIterLow) + (tIterHigh-t/dtConst)*control.col((int)tIterHigh); // }else{ // u = control.col((int)tIterLow); // } Eigen::VectorXd u = control.col(iter); Eigen::VectorXd state4 = state; Eigen::VectorXd state5 = state; rungeKutta(state4,t,t+dt,dt,u,p,attDeriv,4); rungeKutta(state5,t,t+dt,dt,u,p,attDeriv,5); //ROS_INFO_STREAM("Time: " << t <<"\titer:"<<iter<< "\tdelta-t: "<< dt <<"\tDifference: " << (state5-state4).norm() <<"\nState4\n"<<state4<<"\nState5\n"<<state5); double sLast = s; s = pow(err*dt/2/(state5-state4).norm(),.25); if(std::isinf(s)){ s = 1.2;//Heuristic } if((state5-state4).cwiseAbs().minCoeff()>err){ dt = s*dt; continue; } double tStar = (iter)*dtConst; if(t>tStar){ // TODO: THIS IS NOT OPTIMAL FOR QUATERNIONS Eigen::VectorXd stateFixed = ((t-tStar)*state5 + (tStar-(t-dt/sLast))*state)/(dt/sLast); stateFixed.head(4).normalize(); stateHist.col(iter++) << stateFixed; } state = state5; t += dt; dt = std::min(dtConst,s*dt); } stateHist.col(intervals) << state; } Eigen::VectorXd attDeriv(const double& t, const Eigen::VectorXd& y, const Eigen::VectorXd& u, const Params& params){ const AttitudeParams& p = dynamic_cast<const AttitudeParams&>(params); Eigen::Vector4d q = y.head(4); Eigen::Vector3d w = y.tail(3); Eigen::VectorXd yDot = Eigen::VectorXd::Zero(y.size()); yDot.tail(3) = p.J.inverse()*u; yDot.head(4) = quatDot(q,w); return yDot; }
[ "jtb2013@gmail.com" ]
jtb2013@gmail.com
1567f6dc7429a778c3f186f10ee8f1926680f9cc
ece29cdeb72617063c52dee00e8b7ea958b1a16a
/disk_scan_client/disk_scan_util.cpp
4808e2b19cd3a83cc77f9b19add07bb801af55c2
[]
no_license
neilnee/disk_scan
ffab7500fefc78a86400159bebe7aea5a8d4eec6
e832237a72de8d7b0cd28d585d4acdfc09b1c851
refs/heads/master
2016-09-16T07:31:25.909654
2014-08-28T17:01:00
2014-08-28T17:01:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,207
cpp
#include "stdafx.h" #include "disk_scan_util.h" std::wstring GetProcessPath() { TCHAR path[MAX_PATH]; GetModuleFileName(NULL, path, MAX_PATH); std::wstring processPath = path; processPath = processPath.substr(0, processPath.rfind(L"\\")); return processPath; } std::string ToMultiByte(const wchar_t* src) { int cch2 = ::WideCharToMultiByte(CP_UTF8, 0, src, ::wcslen(src), 0, 0, 0, 0); char* str2 = new char[cch2 + 1]; ::WideCharToMultiByte(CP_UTF8, 0, src, ::wcslen(src), str2, cch2 + 1, 0, 0); str2[cch2] = '\0'; std::string destStr = str2; delete []str2; return destStr; } std::wstring ToWideChar(const char* src) { int cch2 = ::MultiByteToWideChar(CP_UTF8, 0, src, ::strlen(src), NULL, 0); wchar_t* str2 = new wchar_t[cch2 + 1]; ::MultiByteToWideChar(CP_UTF8, 0, src, ::strlen(src), str2, cch2); str2[cch2] = L'\0'; std::wstring destStr = str2; delete []str2; return destStr; } BOOL CreateDownloadTask(std::vector<xl_ds_api::CScanFileInfo> files) { return TRUE; } BOOL SetDownloadInfo(xl_ds_api::CScanFileInfo fileInfo) { return TRUE; } std::string CIDCalculate(std::wstring path) { return ToMultiByte(path.c_str()); }
[ "neilnee324@gmail.com" ]
neilnee324@gmail.com
1c0e45eafc14ced46901f7243a4fe5be5cb644c8
8365e80590978513f9be184787e3f9c2dbaf0af5
/tests/HopscotchHashTest.cpp
c0d9c4ca25819a6b97ffcfd983d62d6feceb452f
[]
no_license
IvanRamyk/oop_exam
5392963924daaedfa649767354569839322269a9
00b099682cef93485b5d52d75494e25ec8b16f3d
refs/heads/master
2022-10-11T10:40:56.300928
2020-06-10T22:02:32
2020-06-10T22:02:32
270,590,419
0
2
null
2020-06-10T10:05:49
2020-06-08T08:30:04
C++
UTF-8
C++
false
false
566
cpp
// // Created by hryhorchuk117 on 10/06/2020. // #include <iostream> #include <gtest/gtest.h> #include "../src/Hash/HopscotchHash.h" TEST(Hash, HopscotchHash) { HopscotchHash<date_time::Time> table({date_time::Time(1, 1, 1),date_time::Time(1, 1, 5) }); auto n = table.getData(); EXPECT_TRUE(table.getData() == n); } TEST(Hash, HopscotchHash2) { HopscotchHash<date_time::Time> table({date_time::Time(2, 1, 5), date_time::Time(1, 1, 5) }); auto n = table.getData(); EXPECT_TRUE(table.getData() == n); }
[ "hryhorchuk117@gmail.com" ]
hryhorchuk117@gmail.com
4ea77fa9ef6a223def7638b62c646c8dced01478
9a4b62f70fe859dc5ff30191a131395f336d67a1
/ResourceUtils.h
931726b7cc0ac6740c6d7eac1d32b531e8ed8c8b
[]
no_license
gix/glitch
93882714c3911d3d0fbe0e4b6118f84041057b28
ea5eda3e41800f2f276fc1c7e3b2265352052b35
refs/heads/master
2022-10-21T07:22:43.870610
2020-06-08T06:07:45
2020-06-08T06:07:45
270,550,561
0
0
null
null
null
null
UTF-8
C++
false
false
434
h
#pragma once #include "Span.h" #include <Windows.h> namespace gt { cspan<std::byte> GetModuleResource(HMODULE module, wchar_t const* type, wchar_t const* name) noexcept; inline cspan<std::byte> GetModuleResource(wchar_t const* type, wchar_t const* name) noexcept { return GetModuleResource(nullptr, type, name); } } // namespace gt
[ "nico.rieck@gmail.com" ]
nico.rieck@gmail.com
dc3ca7412ccab7a04083c79ba69b0ae3fb410be8
6b0345821fcefa528f9382eed8c0a3fbb95f60c8
/ethernet.cpp
10b726cc57ef752af2163b6b8ac4e1f895381cf6
[]
no_license
rnetuka/cpp-networking
d58b2428daca5b8e26d745425b813eba2cbccd08
2948631aa85b20bbcec7d19c73e7cf301e9d28a8
refs/heads/master
2021-07-07T03:31:45.487885
2017-10-03T08:55:05
2017-10-03T08:55:05
105,631,159
0
0
null
null
null
null
UTF-8
C++
false
false
4,400
cpp
/* */ #include <cstdint> #include <ostream> #include <sstream> #include <string> #include <vector> #include "ethernet.h" #include "mac.h" using namespace eth; using namespace mac; using namespace std; Frame::Frame() : ether_type_(0), checksum_(0) { } void Frame::set_source_address(const Address& address) { source_address_ = address; } void Frame::set_destination_address(const Address& address) { destination_address_ = address; } void Frame::set_ether_type(int type) { ether_type_ = type; } void Frame::set_payload(const vector<uint8_t>& payload) { payload_ = payload; } void Frame::set_checksum(int checksum) { checksum_ = checksum; } Address Frame::source_address() const { return source_address_; } Address Frame::destination_address() const { return destination_address_; } uint16_t Frame::ether_type() const { return ether_type_; } vector<uint8_t> Frame::payload() const { return payload_; } uint32_t Frame::checksum() const { return checksum_; } vector<uint8_t> Frame::bytes() const { vector<uint8_t> source_address_bytes = source_address_.bytes(); vector<uint8_t> destination_address_bytes = destination_address_.bytes(); vector<uint8_t> bytes; bytes.insert(bytes.end(), destination_address_bytes.begin(), destination_address_bytes.end()); bytes.insert(bytes.end(), source_address_bytes.begin(), source_address_bytes.end()); bytes.push_back(ether_type_ >> 8); bytes.push_back(ether_type_ & 0b11111111); bytes.insert(bytes.end(), payload_.begin(), payload_.end()); /* bytes.push_back(checksum_ >> 24); bytes.push_back((checksum_ >> 16) & 255); bytes.push_back((checksum_ >> 8) & 255); bytes.push_back(checksum_ & 255); for (int i = bytes.size(); i < 64; i++ bytes.push_back(0); */ return bytes; } string Frame::str() const { stringstream stream; stream << "Src MAC: " << source_address_ << endl; stream << "Dest MAC: " << destination_address_ << endl; return stream.str(); } string Frame::info() const { stringstream stream; stream << "+-----------------------" << endl; stream << "| Dest MAC: " << destination_address_ << endl; stream << "| Src MAC: " << source_address_ << endl; stream << "| Ether type: " << ether_type_ << endl; stream << "| Payload of " << payload_.size() << " bytes" << endl; stream << "| Checksum: " << checksum_ << endl; stream << "+-----------------------" << endl; return stream.str(); } Frame Frame::parse(const vector<uint8_t>& bytes) { Frame frame; frame.destination_address_ = Address(vector<uint8_t>(bytes.begin(), bytes.begin() + 6)); frame.source_address_ = Address(vector<uint8_t>(bytes.begin() + 6, bytes.begin() + 12)); frame.ether_type_ = (((uint16_t) bytes[12]) << 8) + bytes[13]; vector<uint8_t> remaining_bytes(bytes.begin() + 14, bytes.end()); int payload_length; if (frame.ether_type_ <= 1500) { payload_length = frame.ether_type_; } else if (frame.ether_type_ == EtherType::IPv4) { payload_length = (((int) remaining_bytes[2]) << 8) + remaining_bytes[3]; } else if (frame.ether_type_ == EtherType::IPv6) { // TODO: implement this payload_length = 0; } else if (frame.ether_type_ == EtherType::ARP) { //payload_length = remaining_bytes.size(); payload_length = 28; } else { // TODO: implement this } frame.payload_.insert(frame.payload_.end(), remaining_bytes.begin(), remaining_bytes.begin() + payload_length); return frame; } FrameFactory::FrameFactory() : ether_type(0) { } void FrameFactory::set_source_address(const Address& address) { source_address = address; } void FrameFactory::set_destination_address(const Address& address) { destination_address = address; } void FrameFactory::set_ether_type(uint16_t type) { ether_type = type; } Frame FrameFactory::create_frame(const vector<uint8_t>& payload) const { Frame frame; frame.set_source_address(source_address); frame.set_destination_address(destination_address); frame.set_ether_type(ether_type); frame.set_payload(payload); //frame.set_checksum(crc_checksum(frame.bytes())); return frame; } ostream& operator <<(ostream& stream, const Frame& frame) { return stream << frame.str(); }
[ "rnetuka@redhat.com" ]
rnetuka@redhat.com
34837822144cb99657d3a5e524afc046de9468f6
6035bc4bf8ca0993cf372bbf4b2a2deaee37e156
/cpp_d09/ex01/Warrior.cpp
5d809b53994837507d771deae3f9534928a837c6
[]
no_license
Clemsx/Cpp_pool
0853bc000c9e6585dd96acdc58c9760c8637cc85
43ebf6af098408c23291595817167a3d0240bc59
refs/heads/master
2023-02-08T05:57:26.524042
2020-12-28T18:54:23
2020-12-28T18:54:23
325,091,972
0
0
null
null
null
null
UTF-8
C++
false
false
1,439
cpp
// // Warrior.cpp for d09_ex01 in /home/clemsx/CPP/Pool/cpp_d09/ex01 // // Made by clement xia // Login <clemsx@epitech.net> // // Started on Thu Jan 12 16:04:23 2017 clement xia // Last update Fri Jan 13 08:52:01 2017 clement xia // #include <string> #include <iostream> #include "Warrior.hh" Warrior::Warrior(const std::string &name, int lvl, std::string weaponName) : Character(name, lvl), weaponName(weaponName) { this->strength = 12; this->stamina = 12; this->intel = 6; this->spirit = 5; this->agility = 7; std::cout << "I'm " << name; std::cout << " KKKKKKKKKKRRRRRRRRRRRRRREEEEEEEEOOOOOOORRRRGGGGGGG" << std::endl; } Warrior::~Warrior(){ } int Warrior::CloseAttack(){ if (this->power >= 30) { this->power -= 30; std::cout << this->name << " strikes with his " << this->weaponName; std::cout << std::endl; return (this->strength + 20); } std::cout << this->name << " out of power" << std::endl; this->power = 0; return (0); } int Warrior::RangeAttack(){ if (this->power >= 10) { this->power -= 10; std::cout << this->name << " intercepts" << std::endl; Range = Character::CLOSE; return (0); } std::cout << this->name << " out of power" << std::endl; this->power = 0; return (0); } /* int main() { Warrior w("jimmy", 42, "bamboo"); w.CloseAttack(); w.TakeDamage(50); w.Heal(); w.TakeDamage(200); return (0); } */
[ "clemsx@clemsx.local" ]
clemsx@clemsx.local
5c0e6ebcec5382d8219e660cfbefd23a32b2de2d
6025d1ad10143b1b3586c032e7e69ac92d9d9c63
/src/test/data/base58_keys_valid.json.h
b1a864d685afabca0c9db4d8f114dd3157015f5b
[ "MIT" ]
permissive
yanghouhao/thesiscode
eb088b70d67eb515ef302766be54de36b06e463f
9b47e756c788d06efecb920ce347916d371531f2
refs/heads/main
2023-01-24T03:53:50.756123
2020-12-10T14:57:09
2020-12-10T14:57:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
70,507
h
namespace json_tests{ static unsigned const char base58_keys_valid[] = { 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x54, 0x38, 0x79, 0x61, 0x4c, 0x56, 0x68, 0x4e, 0x71, 0x78, 0x41, 0x35, 0x4b, 0x4a, 0x63, 0x6d, 0x69, 0x71, 0x71, 0x46, 0x4e, 0x38, 0x38, 0x65, 0x38, 0x44, 0x4e, 0x70, 0x32, 0x50, 0x42, 0x66, 0x46, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x36, 0x35, 0x61, 0x31, 0x36, 0x30, 0x35, 0x39, 0x38, 0x36, 0x34, 0x61, 0x32, 0x66, 0x64, 0x62, 0x63, 0x37, 0x63, 0x39, 0x39, 0x61, 0x34, 0x37, 0x32, 0x33, 0x61, 0x38, 0x33, 0x39, 0x35, 0x62, 0x63, 0x36, 0x66, 0x31, 0x38, 0x38, 0x65, 0x62, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x56, 0x44, 0x79, 0x47, 0x48, 0x6e, 0x39, 0x6d, 0x62, 0x79, 0x43, 0x66, 0x34, 0x34, 0x38, 0x6d, 0x32, 0x63, 0x48, 0x54, 0x75, 0x35, 0x75, 0x58, 0x76, 0x73, 0x4a, 0x70, 0x4b, 0x48, 0x62, 0x69, 0x5a, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x37, 0x34, 0x66, 0x32, 0x30, 0x39, 0x66, 0x36, 0x65, 0x61, 0x39, 0x30, 0x37, 0x65, 0x32, 0x65, 0x61, 0x34, 0x38, 0x66, 0x37, 0x34, 0x66, 0x61, 0x65, 0x30, 0x35, 0x37, 0x38, 0x32, 0x61, 0x65, 0x38, 0x61, 0x36, 0x36, 0x35, 0x32, 0x35, 0x37, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x6d, 0x48, 0x4d, 0x42, 0x65, 0x65, 0x59, 0x52, 0x75, 0x63, 0x32, 0x65, 0x56, 0x69, 0x63, 0x4c, 0x4e, 0x66, 0x50, 0x31, 0x35, 0x59, 0x4c, 0x78, 0x62, 0x51, 0x73, 0x6f, 0x6f, 0x43, 0x41, 0x36, 0x6a, 0x62, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x35, 0x33, 0x63, 0x30, 0x33, 0x30, 0x37, 0x64, 0x36, 0x38, 0x35, 0x31, 0x61, 0x61, 0x30, 0x63, 0x65, 0x37, 0x38, 0x32, 0x35, 0x62, 0x61, 0x38, 0x38, 0x33, 0x63, 0x36, 0x62, 0x64, 0x39, 0x61, 0x64, 0x32, 0x34, 0x32, 0x62, 0x34, 0x38, 0x36, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x32, 0x46, 0x62, 0x6f, 0x36, 0x44, 0x42, 0x4b, 0x4b, 0x56, 0x59, 0x77, 0x31, 0x53, 0x66, 0x72, 0x59, 0x38, 0x62, 0x45, 0x67, 0x7a, 0x35, 0x36, 0x68, 0x59, 0x45, 0x68, 0x79, 0x77, 0x68, 0x45, 0x4e, 0x36, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x36, 0x33, 0x34, 0x39, 0x61, 0x34, 0x31, 0x38, 0x66, 0x63, 0x34, 0x35, 0x37, 0x38, 0x64, 0x31, 0x30, 0x61, 0x33, 0x37, 0x32, 0x62, 0x35, 0x34, 0x62, 0x34, 0x35, 0x63, 0x32, 0x38, 0x30, 0x63, 0x63, 0x38, 0x63, 0x34, 0x33, 0x38, 0x32, 0x66, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x4b, 0x64, 0x33, 0x4e, 0x42, 0x55, 0x41, 0x64, 0x55, 0x6e, 0x68, 0x79, 0x7a, 0x65, 0x6e, 0x45, 0x77, 0x56, 0x4c, 0x79, 0x39, 0x70, 0x42, 0x4b, 0x78, 0x53, 0x77, 0x58, 0x76, 0x45, 0x39, 0x46, 0x4d, 0x50, 0x79, 0x52, 0x34, 0x55, 0x4b, 0x5a, 0x76, 0x70, 0x65, 0x36, 0x45, 0x33, 0x41, 0x67, 0x4c, 0x72, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x65, 0x64, 0x64, 0x62, 0x64, 0x63, 0x31, 0x31, 0x36, 0x38, 0x66, 0x31, 0x64, 0x61, 0x65, 0x61, 0x64, 0x62, 0x64, 0x33, 0x65, 0x34, 0x34, 0x63, 0x31, 0x65, 0x33, 0x66, 0x38, 0x66, 0x35, 0x61, 0x32, 0x38, 0x34, 0x63, 0x32, 0x30, 0x32, 0x39, 0x66, 0x37, 0x38, 0x61, 0x64, 0x32, 0x36, 0x61, 0x66, 0x39, 0x38, 0x35, 0x38, 0x33, 0x61, 0x34, 0x39, 0x39, 0x64, 0x65, 0x35, 0x62, 0x31, 0x39, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x4b, 0x7a, 0x36, 0x55, 0x4a, 0x6d, 0x51, 0x41, 0x43, 0x4a, 0x6d, 0x4c, 0x74, 0x61, 0x51, 0x6a, 0x35, 0x41, 0x33, 0x4a, 0x41, 0x67, 0x65, 0x34, 0x6b, 0x56, 0x54, 0x4e, 0x51, 0x38, 0x67, 0x62, 0x76, 0x58, 0x75, 0x77, 0x62, 0x6d, 0x43, 0x6a, 0x37, 0x62, 0x73, 0x61, 0x61, 0x62, 0x75, 0x64, 0x62, 0x33, 0x52, 0x44, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x35, 0x63, 0x39, 0x62, 0x63, 0x63, 0x62, 0x39, 0x65, 0x64, 0x36, 0x38, 0x34, 0x34, 0x36, 0x64, 0x31, 0x62, 0x37, 0x35, 0x32, 0x37, 0x33, 0x62, 0x62, 0x63, 0x65, 0x38, 0x39, 0x64, 0x37, 0x66, 0x65, 0x30, 0x31, 0x33, 0x61, 0x38, 0x61, 0x63, 0x64, 0x31, 0x36, 0x32, 0x35, 0x35, 0x31, 0x34, 0x34, 0x32, 0x30, 0x66, 0x62, 0x32, 0x61, 0x63, 0x61, 0x31, 0x61, 0x32, 0x31, 0x63, 0x34, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x39, 0x32, 0x31, 0x33, 0x71, 0x4a, 0x61, 0x62, 0x32, 0x48, 0x4e, 0x45, 0x70, 0x4d, 0x70, 0x59, 0x4e, 0x42, 0x61, 0x37, 0x77, 0x48, 0x47, 0x46, 0x4b, 0x4b, 0x62, 0x6b, 0x44, 0x6e, 0x32, 0x34, 0x6a, 0x70, 0x41, 0x4e, 0x44, 0x73, 0x32, 0x68, 0x75, 0x4e, 0x33, 0x79, 0x69, 0x34, 0x4a, 0x31, 0x31, 0x6b, 0x6f, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x33, 0x36, 0x63, 0x62, 0x39, 0x33, 0x62, 0x39, 0x61, 0x62, 0x31, 0x62, 0x64, 0x61, 0x62, 0x66, 0x37, 0x66, 0x62, 0x39, 0x66, 0x32, 0x63, 0x30, 0x34, 0x66, 0x31, 0x62, 0x39, 0x63, 0x63, 0x38, 0x37, 0x39, 0x39, 0x33, 0x33, 0x35, 0x33, 0x30, 0x61, 0x65, 0x37, 0x38, 0x34, 0x32, 0x33, 0x39, 0x38, 0x65, 0x65, 0x66, 0x35, 0x61, 0x36, 0x33, 0x61, 0x35, 0x36, 0x38, 0x30, 0x30, 0x63, 0x32, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x54, 0x70, 0x42, 0x34, 0x59, 0x69, 0x79, 0x4b, 0x69, 0x42, 0x63, 0x50, 0x78, 0x6e, 0x65, 0x66, 0x73, 0x44, 0x70, 0x62, 0x6e, 0x44, 0x78, 0x46, 0x44, 0x66, 0x66, 0x6a, 0x71, 0x4a, 0x6f, 0x62, 0x38, 0x77, 0x47, 0x43, 0x45, 0x44, 0x58, 0x78, 0x67, 0x51, 0x37, 0x7a, 0x51, 0x6f, 0x4d, 0x58, 0x4a, 0x64, 0x48, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x62, 0x39, 0x66, 0x34, 0x38, 0x39, 0x32, 0x63, 0x39, 0x65, 0x38, 0x32, 0x38, 0x32, 0x30, 0x32, 0x38, 0x66, 0x65, 0x61, 0x31, 0x64, 0x32, 0x36, 0x36, 0x37, 0x63, 0x34, 0x64, 0x63, 0x35, 0x32, 0x31, 0x33, 0x35, 0x36, 0x34, 0x64, 0x34, 0x31, 0x66, 0x63, 0x35, 0x37, 0x38, 0x33, 0x38, 0x39, 0x36, 0x61, 0x30, 0x64, 0x38, 0x34, 0x33, 0x66, 0x63, 0x31, 0x35, 0x30, 0x38, 0x39, 0x66, 0x33, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x54, 0x70, 0x66, 0x67, 0x75, 0x4a, 0x6a, 0x35, 0x7a, 0x78, 0x4b, 0x55, 0x66, 0x57, 0x63, 0x73, 0x4e, 0x54, 0x72, 0x68, 0x36, 0x65, 0x6f, 0x64, 0x32, 0x58, 0x58, 0x73, 0x54, 0x4b, 0x74, 0x76, 0x42, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x36, 0x64, 0x32, 0x33, 0x31, 0x35, 0x36, 0x63, 0x62, 0x62, 0x64, 0x63, 0x63, 0x38, 0x32, 0x61, 0x35, 0x61, 0x34, 0x37, 0x65, 0x65, 0x65, 0x34, 0x63, 0x32, 0x63, 0x37, 0x63, 0x35, 0x38, 0x33, 0x63, 0x31, 0x38, 0x62, 0x36, 0x62, 0x66, 0x34, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x68, 0x63, 0x39, 0x59, 0x32, 0x73, 0x74, 0x75, 0x45, 0x57, 0x6a, 0x53, 0x32, 0x64, 0x52, 0x44, 0x74, 0x47, 0x64, 0x69, 0x75, 0x33, 0x65, 0x6e, 0x4d, 0x70, 0x78, 0x41, 0x62, 0x65, 0x55, 0x69, 0x4b, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x66, 0x63, 0x63, 0x35, 0x34, 0x36, 0x30, 0x64, 0x64, 0x36, 0x65, 0x32, 0x34, 0x38, 0x37, 0x63, 0x37, 0x64, 0x37, 0x35, 0x62, 0x31, 0x39, 0x36, 0x33, 0x36, 0x32, 0x35, 0x64, 0x61, 0x30, 0x65, 0x38, 0x66, 0x34, 0x63, 0x35, 0x39, 0x37, 0x35, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x6d, 0x58, 0x6d, 0x32, 0x67, 0x35, 0x6f, 0x75, 0x55, 0x38, 0x50, 0x7a, 0x6b, 0x73, 0x6d, 0x71, 0x78, 0x33, 0x4b, 0x59, 0x6d, 0x65, 0x6f, 0x65, 0x61, 0x57, 0x72, 0x41, 0x76, 0x6a, 0x33, 0x72, 0x42, 0x35, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x66, 0x31, 0x64, 0x34, 0x37, 0x30, 0x66, 0x39, 0x62, 0x30, 0x32, 0x33, 0x37, 0x30, 0x66, 0x64, 0x65, 0x63, 0x32, 0x65, 0x36, 0x62, 0x37, 0x30, 0x38, 0x62, 0x30, 0x38, 0x61, 0x63, 0x34, 0x33, 0x31, 0x62, 0x66, 0x37, 0x61, 0x35, 0x66, 0x37, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x32, 0x51, 0x59, 0x78, 0x48, 0x6a, 0x4d, 0x38, 0x62, 0x74, 0x7a, 0x74, 0x57, 0x54, 0x73, 0x4d, 0x6e, 0x46, 0x6e, 0x5a, 0x4e, 0x75, 0x72, 0x6d, 0x37, 0x52, 0x58, 0x45, 0x4e, 0x6b, 0x39, 0x5a, 0x68, 0x52, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x63, 0x35, 0x37, 0x39, 0x33, 0x34, 0x32, 0x63, 0x32, 0x63, 0x34, 0x63, 0x39, 0x32, 0x32, 0x30, 0x32, 0x30, 0x35, 0x65, 0x32, 0x63, 0x64, 0x63, 0x32, 0x38, 0x35, 0x36, 0x31, 0x37, 0x30, 0x34, 0x30, 0x63, 0x39, 0x32, 0x34, 0x61, 0x30, 0x61, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x4b, 0x34, 0x39, 0x34, 0x58, 0x5a, 0x77, 0x70, 0x73, 0x32, 0x62, 0x47, 0x79, 0x65, 0x4c, 0x37, 0x31, 0x70, 0x57, 0x69, 0x64, 0x34, 0x6e, 0x6f, 0x69, 0x53, 0x4e, 0x41, 0x32, 0x63, 0x66, 0x43, 0x69, 0x62, 0x72, 0x76, 0x52, 0x57, 0x71, 0x63, 0x48, 0x53, 0x70, 0x74, 0x6f, 0x46, 0x6e, 0x37, 0x72, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x33, 0x32, 0x36, 0x62, 0x39, 0x35, 0x65, 0x62, 0x61, 0x65, 0x33, 0x30, 0x31, 0x36, 0x34, 0x32, 0x31, 0x37, 0x64, 0x37, 0x61, 0x37, 0x66, 0x35, 0x37, 0x64, 0x37, 0x32, 0x61, 0x62, 0x32, 0x62, 0x35, 0x34, 0x65, 0x33, 0x62, 0x65, 0x36, 0x34, 0x39, 0x32, 0x38, 0x61, 0x31, 0x39, 0x64, 0x61, 0x30, 0x32, 0x31, 0x30, 0x62, 0x39, 0x35, 0x36, 0x38, 0x64, 0x34, 0x30, 0x31, 0x35, 0x65, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x4c, 0x31, 0x52, 0x72, 0x72, 0x6e, 0x58, 0x6b, 0x63, 0x4b, 0x75, 0x74, 0x35, 0x44, 0x45, 0x4d, 0x77, 0x74, 0x44, 0x74, 0x68, 0x6a, 0x77, 0x52, 0x63, 0x54, 0x54, 0x77, 0x45, 0x44, 0x33, 0x36, 0x74, 0x68, 0x79, 0x4c, 0x31, 0x44, 0x65, 0x62, 0x56, 0x72, 0x4b, 0x75, 0x77, 0x76, 0x6f, 0x68, 0x6a, 0x4d, 0x4e, 0x69, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x64, 0x39, 0x39, 0x38, 0x62, 0x34, 0x35, 0x63, 0x32, 0x31, 0x39, 0x61, 0x31, 0x65, 0x33, 0x38, 0x65, 0x39, 0x39, 0x65, 0x37, 0x63, 0x62, 0x64, 0x33, 0x31, 0x32, 0x65, 0x66, 0x36, 0x37, 0x66, 0x37, 0x37, 0x61, 0x34, 0x35, 0x35, 0x61, 0x39, 0x62, 0x35, 0x30, 0x63, 0x37, 0x33, 0x30, 0x63, 0x32, 0x37, 0x66, 0x30, 0x32, 0x63, 0x36, 0x66, 0x37, 0x33, 0x30, 0x64, 0x66, 0x62, 0x34, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x39, 0x33, 0x44, 0x56, 0x4b, 0x79, 0x46, 0x59, 0x77, 0x53, 0x4e, 0x36, 0x77, 0x45, 0x6f, 0x33, 0x45, 0x32, 0x66, 0x43, 0x72, 0x46, 0x50, 0x55, 0x70, 0x31, 0x37, 0x46, 0x74, 0x72, 0x74, 0x4e, 0x69, 0x32, 0x4c, 0x66, 0x37, 0x6e, 0x34, 0x47, 0x33, 0x67, 0x61, 0x72, 0x46, 0x62, 0x31, 0x36, 0x43, 0x52, 0x6a, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x64, 0x36, 0x62, 0x63, 0x61, 0x32, 0x35, 0x36, 0x62, 0x35, 0x61, 0x62, 0x63, 0x35, 0x36, 0x30, 0x32, 0x65, 0x63, 0x32, 0x65, 0x31, 0x63, 0x31, 0x32, 0x31, 0x61, 0x30, 0x38, 0x62, 0x30, 0x64, 0x61, 0x32, 0x35, 0x35, 0x36, 0x35, 0x38, 0x37, 0x34, 0x33, 0x30, 0x62, 0x63, 0x66, 0x37, 0x65, 0x31, 0x38, 0x39, 0x38, 0x61, 0x66, 0x32, 0x32, 0x32, 0x34, 0x38, 0x38, 0x35, 0x32, 0x30, 0x33, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x54, 0x44, 0x56, 0x4b, 0x74, 0x4d, 0x47, 0x56, 0x59, 0x57, 0x54, 0x48, 0x43, 0x62, 0x31, 0x41, 0x46, 0x6a, 0x6d, 0x56, 0x62, 0x45, 0x62, 0x57, 0x6a, 0x76, 0x4b, 0x70, 0x4b, 0x71, 0x4b, 0x67, 0x4d, 0x61, 0x52, 0x33, 0x51, 0x4a, 0x78, 0x54, 0x6f, 0x4d, 0x53, 0x51, 0x41, 0x68, 0x6d, 0x43, 0x65, 0x54, 0x4e, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x38, 0x31, 0x63, 0x61, 0x34, 0x65, 0x38, 0x66, 0x39, 0x30, 0x31, 0x38, 0x31, 0x65, 0x63, 0x34, 0x62, 0x36, 0x31, 0x62, 0x36, 0x61, 0x37, 0x65, 0x62, 0x39, 0x39, 0x38, 0x61, 0x66, 0x31, 0x37, 0x62, 0x32, 0x63, 0x62, 0x30, 0x34, 0x64, 0x65, 0x38, 0x61, 0x30, 0x33, 0x62, 0x35, 0x30, 0x34, 0x62, 0x39, 0x65, 0x33, 0x34, 0x63, 0x34, 0x63, 0x36, 0x31, 0x64, 0x62, 0x37, 0x64, 0x39, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x55, 0x78, 0x43, 0x54, 0x34, 0x52, 0x72, 0x43, 0x62, 0x47, 0x48, 0x33, 0x36, 0x65, 0x74, 0x66, 0x51, 0x61, 0x50, 0x46, 0x31, 0x73, 0x76, 0x4e, 0x74, 0x5a, 0x56, 0x68, 0x73, 0x71, 0x73, 0x35, 0x41, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x37, 0x39, 0x38, 0x37, 0x63, 0x63, 0x61, 0x61, 0x35, 0x33, 0x64, 0x30, 0x32, 0x63, 0x38, 0x38, 0x37, 0x33, 0x34, 0x38, 0x37, 0x65, 0x66, 0x39, 0x31, 0x39, 0x36, 0x37, 0x37, 0x63, 0x64, 0x33, 0x64, 0x62, 0x37, 0x61, 0x36, 0x39, 0x31, 0x32, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x54, 0x65, 0x79, 0x78, 0x76, 0x31, 0x67, 0x46, 0x38, 0x46, 0x5a, 0x39, 0x4d, 0x57, 0x38, 0x57, 0x4e, 0x34, 0x4d, 0x76, 0x54, 0x78, 0x51, 0x34, 0x4a, 0x53, 0x63, 0x41, 0x42, 0x73, 0x4b, 0x66, 0x4c, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x36, 0x33, 0x62, 0x63, 0x63, 0x35, 0x36, 0x35, 0x66, 0x39, 0x65, 0x36, 0x38, 0x65, 0x65, 0x30, 0x31, 0x38, 0x39, 0x64, 0x64, 0x35, 0x63, 0x63, 0x36, 0x37, 0x66, 0x31, 0x62, 0x30, 0x65, 0x35, 0x66, 0x30, 0x32, 0x66, 0x34, 0x35, 0x63, 0x62, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x6d, 0x58, 0x59, 0x42, 0x4c, 0x65, 0x32, 0x51, 0x39, 0x4d, 0x62, 0x58, 0x66, 0x67, 0x47, 0x62, 0x32, 0x51, 0x71, 0x64, 0x4e, 0x37, 0x52, 0x57, 0x64, 0x69, 0x37, 0x74, 0x51, 0x32, 0x7a, 0x38, 0x79, 0x61, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x65, 0x66, 0x36, 0x36, 0x34, 0x34, 0x34, 0x62, 0x35, 0x62, 0x31, 0x37, 0x66, 0x31, 0x34, 0x65, 0x38, 0x66, 0x61, 0x65, 0x36, 0x65, 0x37, 0x65, 0x31, 0x39, 0x62, 0x30, 0x34, 0x35, 0x61, 0x37, 0x38, 0x63, 0x35, 0x34, 0x66, 0x64, 0x37, 0x39, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x32, 0x51, 0x51, 0x63, 0x58, 0x41, 0x4c, 0x7a, 0x34, 0x37, 0x34, 0x35, 0x4a, 0x45, 0x67, 0x7a, 0x75, 0x41, 0x45, 0x73, 0x4a, 0x4e, 0x67, 0x74, 0x36, 0x6e, 0x42, 0x51, 0x70, 0x73, 0x71, 0x65, 0x67, 0x75, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x63, 0x33, 0x65, 0x35, 0x35, 0x66, 0x63, 0x65, 0x63, 0x65, 0x61, 0x61, 0x34, 0x33, 0x39, 0x31, 0x65, 0x64, 0x32, 0x61, 0x39, 0x36, 0x37, 0x37, 0x66, 0x34, 0x61, 0x34, 0x64, 0x33, 0x34, 0x65, 0x61, 0x63, 0x64, 0x30, 0x32, 0x31, 0x61, 0x30, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x4b, 0x61, 0x42, 0x57, 0x39, 0x76, 0x4e, 0x74, 0x57, 0x4e, 0x68, 0x63, 0x33, 0x5a, 0x45, 0x44, 0x79, 0x4e, 0x43, 0x69, 0x58, 0x4c, 0x50, 0x64, 0x56, 0x50, 0x48, 0x43, 0x69, 0x6b, 0x52, 0x78, 0x53, 0x42, 0x57, 0x77, 0x56, 0x39, 0x4e, 0x72, 0x70, 0x4c, 0x4c, 0x61, 0x34, 0x4c, 0x73, 0x58, 0x69, 0x39, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x65, 0x37, 0x35, 0x64, 0x39, 0x33, 0x36, 0x64, 0x35, 0x36, 0x33, 0x37, 0x37, 0x66, 0x34, 0x33, 0x32, 0x66, 0x34, 0x30, 0x34, 0x61, 0x61, 0x62, 0x62, 0x34, 0x30, 0x36, 0x36, 0x30, 0x31, 0x66, 0x38, 0x39, 0x32, 0x66, 0x64, 0x34, 0x39, 0x64, 0x61, 0x39, 0x30, 0x65, 0x62, 0x36, 0x61, 0x63, 0x35, 0x35, 0x38, 0x61, 0x37, 0x33, 0x33, 0x63, 0x39, 0x33, 0x62, 0x34, 0x37, 0x32, 0x35, 0x32, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x4c, 0x31, 0x61, 0x78, 0x7a, 0x62, 0x53, 0x79, 0x79, 0x6e, 0x4e, 0x59, 0x41, 0x38, 0x6d, 0x43, 0x41, 0x68, 0x7a, 0x78, 0x6b, 0x69, 0x70, 0x4b, 0x6b, 0x66, 0x48, 0x74, 0x41, 0x58, 0x59, 0x46, 0x34, 0x59, 0x51, 0x6e, 0x68, 0x53, 0x4b, 0x63, 0x4c, 0x56, 0x38, 0x59, 0x58, 0x41, 0x38, 0x37, 0x34, 0x66, 0x67, 0x54, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x38, 0x32, 0x34, 0x38, 0x62, 0x64, 0x30, 0x33, 0x37, 0x35, 0x66, 0x32, 0x66, 0x37, 0x35, 0x64, 0x37, 0x65, 0x32, 0x37, 0x34, 0x61, 0x65, 0x35, 0x34, 0x34, 0x66, 0x62, 0x39, 0x32, 0x30, 0x66, 0x35, 0x31, 0x37, 0x38, 0x34, 0x34, 0x38, 0x30, 0x38, 0x36, 0x36, 0x62, 0x31, 0x30, 0x32, 0x33, 0x38, 0x34, 0x31, 0x39, 0x30, 0x62, 0x31, 0x61, 0x64, 0x64, 0x66, 0x62, 0x61, 0x61, 0x35, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x39, 0x32, 0x37, 0x43, 0x6e, 0x55, 0x6b, 0x55, 0x62, 0x61, 0x73, 0x59, 0x74, 0x44, 0x77, 0x59, 0x77, 0x56, 0x6e, 0x32, 0x6a, 0x38, 0x47, 0x64, 0x54, 0x75, 0x41, 0x43, 0x4e, 0x6e, 0x4b, 0x6b, 0x6a, 0x5a, 0x31, 0x72, 0x70, 0x5a, 0x64, 0x32, 0x79, 0x42, 0x42, 0x31, 0x43, 0x4c, 0x63, 0x6e, 0x58, 0x70, 0x6f, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x34, 0x34, 0x63, 0x34, 0x66, 0x36, 0x61, 0x30, 0x39, 0x36, 0x65, 0x61, 0x63, 0x35, 0x32, 0x33, 0x38, 0x32, 0x39, 0x31, 0x61, 0x39, 0x34, 0x63, 0x63, 0x32, 0x34, 0x63, 0x30, 0x31, 0x65, 0x33, 0x62, 0x31, 0x39, 0x62, 0x38, 0x64, 0x38, 0x63, 0x65, 0x66, 0x37, 0x32, 0x38, 0x37, 0x34, 0x61, 0x30, 0x37, 0x39, 0x65, 0x30, 0x30, 0x61, 0x32, 0x34, 0x32, 0x32, 0x33, 0x37, 0x61, 0x35, 0x32, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x55, 0x63, 0x66, 0x43, 0x4d, 0x52, 0x6a, 0x69, 0x51, 0x66, 0x38, 0x35, 0x59, 0x4d, 0x7a, 0x7a, 0x51, 0x45, 0x6b, 0x39, 0x64, 0x31, 0x73, 0x35, 0x41, 0x34, 0x4b, 0x37, 0x78, 0x4c, 0x35, 0x53, 0x6d, 0x42, 0x43, 0x4c, 0x72, 0x65, 0x7a, 0x71, 0x58, 0x46, 0x75, 0x54, 0x56, 0x65, 0x66, 0x79, 0x68, 0x59, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x64, 0x31, 0x64, 0x65, 0x37, 0x30, 0x37, 0x30, 0x32, 0x30, 0x61, 0x39, 0x30, 0x35, 0x39, 0x64, 0x36, 0x64, 0x33, 0x61, 0x62, 0x61, 0x66, 0x38, 0x35, 0x65, 0x31, 0x37, 0x39, 0x36, 0x37, 0x63, 0x36, 0x35, 0x35, 0x35, 0x31, 0x35, 0x31, 0x31, 0x34, 0x33, 0x64, 0x62, 0x31, 0x33, 0x64, 0x62, 0x62, 0x30, 0x36, 0x64, 0x62, 0x37, 0x38, 0x64, 0x66, 0x30, 0x66, 0x31, 0x35, 0x63, 0x36, 0x39, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x5a, 0x69, 0x4d, 0x34, 0x6f, 0x4c, 0x46, 0x37, 0x68, 0x76, 0x62, 0x6f, 0x46, 0x34, 0x4c, 0x50, 0x71, 0x68, 0x62, 0x42, 0x67, 0x37, 0x52, 0x4c, 0x67, 0x4a, 0x43, 0x43, 0x4a, 0x43, 0x36, 0x54, 0x6a, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x61, 0x64, 0x63, 0x31, 0x63, 0x63, 0x32, 0x30, 0x38, 0x31, 0x61, 0x32, 0x37, 0x32, 0x30, 0x36, 0x66, 0x61, 0x65, 0x32, 0x35, 0x37, 0x39, 0x32, 0x66, 0x32, 0x38, 0x62, 0x62, 0x63, 0x35, 0x35, 0x62, 0x38, 0x33, 0x31, 0x35, 0x34, 0x39, 0x64, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x4c, 0x6f, 0x56, 0x38, 0x71, 0x38, 0x52, 0x34, 0x34, 0x66, 0x53, 0x62, 0x65, 0x38, 0x34, 0x44, 0x42, 0x4b, 0x44, 0x6b, 0x33, 0x73, 0x41, 0x45, 0x6f, 0x59, 0x75, 0x6d, 0x34, 0x68, 0x51, 0x59, 0x6a, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x31, 0x38, 0x38, 0x66, 0x39, 0x31, 0x61, 0x39, 0x33, 0x31, 0x39, 0x34, 0x37, 0x65, 0x64, 0x64, 0x64, 0x37, 0x34, 0x33, 0x32, 0x64, 0x36, 0x65, 0x36, 0x31, 0x34, 0x33, 0x38, 0x37, 0x65, 0x33, 0x32, 0x62, 0x32, 0x34, 0x34, 0x37, 0x30, 0x39, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x6d, 0x42, 0x6d, 0x6b, 0x65, 0x4a, 0x6d, 0x77, 0x46, 0x33, 0x55, 0x67, 0x56, 0x58, 0x71, 0x4a, 0x4c, 0x7a, 0x45, 0x69, 0x6e, 0x34, 0x39, 0x66, 0x74, 0x4b, 0x31, 0x48, 0x6d, 0x73, 0x71, 0x59, 0x75, 0x70, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x31, 0x36, 0x39, 0x34, 0x66, 0x35, 0x62, 0x63, 0x31, 0x61, 0x37, 0x32, 0x39, 0x35, 0x62, 0x36, 0x30, 0x30, 0x66, 0x34, 0x30, 0x30, 0x31, 0x38, 0x61, 0x36, 0x31, 0x38, 0x61, 0x36, 0x65, 0x61, 0x34, 0x38, 0x65, 0x65, 0x62, 0x34, 0x39, 0x38, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x32, 0x42, 0x79, 0x79, 0x70, 0x6e, 0x62, 0x78, 0x68, 0x32, 0x50, 0x66, 0x6b, 0x37, 0x56, 0x71, 0x4c, 0x4d, 0x7a, 0x59, 0x66, 0x69, 0x4e, 0x65, 0x44, 0x37, 0x32, 0x6f, 0x36, 0x79, 0x76, 0x74, 0x71, 0x58, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x33, 0x62, 0x39, 0x62, 0x33, 0x66, 0x64, 0x37, 0x61, 0x35, 0x30, 0x64, 0x34, 0x66, 0x30, 0x38, 0x64, 0x31, 0x61, 0x35, 0x62, 0x30, 0x66, 0x36, 0x32, 0x66, 0x36, 0x34, 0x34, 0x66, 0x61, 0x37, 0x31, 0x31, 0x35, 0x61, 0x65, 0x32, 0x66, 0x33, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x48, 0x74, 0x48, 0x36, 0x47, 0x64, 0x63, 0x77, 0x43, 0x4a, 0x41, 0x34, 0x67, 0x67, 0x57, 0x45, 0x4c, 0x31, 0x42, 0x33, 0x6a, 0x7a, 0x42, 0x42, 0x55, 0x42, 0x38, 0x48, 0x50, 0x69, 0x42, 0x69, 0x39, 0x53, 0x42, 0x63, 0x35, 0x68, 0x39, 0x69, 0x34, 0x57, 0x6b, 0x34, 0x50, 0x53, 0x65, 0x41, 0x70, 0x52, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x30, 0x39, 0x31, 0x30, 0x33, 0x35, 0x34, 0x34, 0x35, 0x65, 0x66, 0x31, 0x30, 0x35, 0x66, 0x61, 0x31, 0x62, 0x62, 0x31, 0x32, 0x35, 0x65, 0x63, 0x63, 0x66, 0x62, 0x31, 0x38, 0x38, 0x32, 0x66, 0x33, 0x66, 0x65, 0x36, 0x39, 0x35, 0x39, 0x32, 0x32, 0x36, 0x35, 0x39, 0x35, 0x36, 0x61, 0x64, 0x65, 0x37, 0x35, 0x31, 0x66, 0x64, 0x30, 0x39, 0x35, 0x30, 0x33, 0x33, 0x64, 0x38, 0x64, 0x30, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x4c, 0x32, 0x78, 0x53, 0x59, 0x6d, 0x4d, 0x65, 0x56, 0x6f, 0x33, 0x5a, 0x65, 0x6b, 0x33, 0x5a, 0x54, 0x73, 0x76, 0x39, 0x78, 0x55, 0x72, 0x58, 0x56, 0x41, 0x6d, 0x72, 0x57, 0x78, 0x4a, 0x38, 0x55, 0x61, 0x34, 0x63, 0x77, 0x38, 0x70, 0x6b, 0x66, 0x62, 0x51, 0x68, 0x63, 0x45, 0x46, 0x68, 0x6b, 0x58, 0x54, 0x38, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x62, 0x32, 0x62, 0x34, 0x62, 0x63, 0x64, 0x66, 0x63, 0x39, 0x31, 0x64, 0x33, 0x34, 0x64, 0x65, 0x65, 0x30, 0x61, 0x65, 0x32, 0x61, 0x38, 0x63, 0x36, 0x62, 0x36, 0x36, 0x36, 0x38, 0x64, 0x61, 0x64, 0x61, 0x65, 0x62, 0x33, 0x61, 0x38, 0x38, 0x62, 0x39, 0x38, 0x35, 0x39, 0x37, 0x34, 0x33, 0x31, 0x35, 0x36, 0x66, 0x34, 0x36, 0x32, 0x33, 0x32, 0x35, 0x31, 0x38, 0x37, 0x61, 0x66, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x39, 0x32, 0x78, 0x46, 0x45, 0x76, 0x65, 0x31, 0x5a, 0x39, 0x4e, 0x38, 0x5a, 0x36, 0x34, 0x31, 0x4b, 0x51, 0x51, 0x53, 0x37, 0x42, 0x79, 0x43, 0x53, 0x62, 0x38, 0x6b, 0x47, 0x6a, 0x73, 0x44, 0x7a, 0x77, 0x36, 0x66, 0x41, 0x6d, 0x6a, 0x48, 0x4e, 0x31, 0x4c, 0x5a, 0x47, 0x4b, 0x51, 0x58, 0x79, 0x4d, 0x71, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x62, 0x34, 0x32, 0x30, 0x34, 0x33, 0x38, 0x39, 0x63, 0x65, 0x66, 0x31, 0x38, 0x62, 0x62, 0x65, 0x32, 0x62, 0x33, 0x35, 0x33, 0x36, 0x32, 0x33, 0x63, 0x62, 0x66, 0x39, 0x33, 0x65, 0x38, 0x36, 0x37, 0x38, 0x66, 0x62, 0x63, 0x39, 0x32, 0x61, 0x34, 0x37, 0x35, 0x62, 0x36, 0x36, 0x34, 0x61, 0x65, 0x39, 0x38, 0x65, 0x64, 0x35, 0x39, 0x34, 0x65, 0x36, 0x63, 0x66, 0x30, 0x38, 0x35, 0x36, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x56, 0x4d, 0x36, 0x35, 0x74, 0x64, 0x59, 0x75, 0x31, 0x59, 0x4b, 0x33, 0x37, 0x74, 0x4e, 0x6f, 0x41, 0x79, 0x47, 0x6f, 0x4a, 0x54, 0x52, 0x31, 0x33, 0x56, 0x42, 0x59, 0x46, 0x76, 0x61, 0x31, 0x76, 0x67, 0x39, 0x46, 0x4c, 0x75, 0x50, 0x41, 0x73, 0x4a, 0x69, 0x6a, 0x47, 0x76, 0x47, 0x36, 0x4e, 0x45, 0x41, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x65, 0x37, 0x62, 0x32, 0x33, 0x30, 0x31, 0x33, 0x33, 0x66, 0x31, 0x62, 0x35, 0x34, 0x38, 0x39, 0x38, 0x34, 0x33, 0x32, 0x36, 0x30, 0x32, 0x33, 0x36, 0x62, 0x30, 0x36, 0x65, 0x64, 0x63, 0x61, 0x32, 0x35, 0x66, 0x36, 0x36, 0x61, 0x64, 0x62, 0x31, 0x62, 0x65, 0x34, 0x35, 0x35, 0x66, 0x62, 0x64, 0x33, 0x38, 0x64, 0x34, 0x30, 0x31, 0x30, 0x64, 0x34, 0x38, 0x66, 0x61, 0x65, 0x65, 0x66, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x62, 0x6f, 0x78, 0x57, 0x57, 0x75, 0x55, 0x73, 0x33, 0x64, 0x56, 0x55, 0x46, 0x65, 0x55, 0x4d, 0x69, 0x50, 0x71, 0x43, 0x64, 0x77, 0x44, 0x34, 0x51, 0x74, 0x4c, 0x31, 0x41, 0x4d, 0x78, 0x39, 0x47, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x63, 0x34, 0x63, 0x31, 0x62, 0x37, 0x32, 0x34, 0x39, 0x31, 0x65, 0x64, 0x65, 0x31, 0x65, 0x65, 0x64, 0x61, 0x63, 0x61, 0x30, 0x30, 0x36, 0x31, 0x38, 0x34, 0x30, 0x37, 0x65, 0x65, 0x30, 0x62, 0x37, 0x37, 0x32, 0x63, 0x61, 0x64, 0x30, 0x64, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x68, 0x35, 0x62, 0x76, 0x7a, 0x6b, 0x43, 0x58, 0x6b, 0x69, 0x4d, 0x74, 0x74, 0x6d, 0x51, 0x53, 0x63, 0x4b, 0x35, 0x36, 0x55, 0x6a, 0x56, 0x63, 0x71, 0x65, 0x44, 0x33, 0x4e, 0x6e, 0x52, 0x65, 0x57, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x66, 0x36, 0x66, 0x65, 0x36, 0x39, 0x62, 0x63, 0x62, 0x35, 0x34, 0x38, 0x61, 0x38, 0x32, 0x39, 0x63, 0x63, 0x65, 0x34, 0x63, 0x35, 0x37, 0x62, 0x66, 0x36, 0x66, 0x66, 0x66, 0x38, 0x61, 0x66, 0x33, 0x61, 0x35, 0x39, 0x38, 0x31, 0x66, 0x39, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x6d, 0x44, 0x42, 0x76, 0x6d, 0x32, 0x53, 0x35, 0x79, 0x41, 0x6a, 0x35, 0x70, 0x56, 0x41, 0x76, 0x42, 0x34, 0x74, 0x68, 0x31, 0x44, 0x44, 0x56, 0x70, 0x4c, 0x71, 0x33, 0x4b, 0x75, 0x4e, 0x38, 0x53, 0x31, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x32, 0x36, 0x31, 0x66, 0x38, 0x33, 0x35, 0x36, 0x38, 0x61, 0x30, 0x39, 0x38, 0x61, 0x38, 0x36, 0x33, 0x38, 0x38, 0x34, 0x34, 0x62, 0x64, 0x37, 0x61, 0x65, 0x63, 0x61, 0x30, 0x33, 0x39, 0x64, 0x35, 0x66, 0x32, 0x33, 0x35, 0x32, 0x63, 0x30, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x32, 0x54, 0x6f, 0x6f, 0x79, 0x5a, 0x37, 0x42, 0x6d, 0x51, 0x54, 0x42, 0x6b, 0x67, 0x43, 0x56, 0x68, 0x64, 0x4e, 0x51, 0x73, 0x50, 0x66, 0x65, 0x56, 0x64, 0x51, 0x6f, 0x57, 0x71, 0x73, 0x48, 0x51, 0x61, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x65, 0x39, 0x33, 0x30, 0x65, 0x31, 0x38, 0x33, 0x34, 0x61, 0x34, 0x64, 0x32, 0x33, 0x34, 0x37, 0x30, 0x32, 0x37, 0x37, 0x33, 0x39, 0x35, 0x31, 0x64, 0x36, 0x32, 0x37, 0x63, 0x63, 0x65, 0x38, 0x32, 0x66, 0x62, 0x62, 0x35, 0x64, 0x32, 0x65, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x4b, 0x51, 0x6d, 0x44, 0x72, 0x79, 0x4d, 0x4e, 0x44, 0x63, 0x69, 0x73, 0x54, 0x7a, 0x52, 0x70, 0x33, 0x7a, 0x45, 0x71, 0x39, 0x65, 0x34, 0x61, 0x77, 0x52, 0x6d, 0x4a, 0x72, 0x45, 0x56, 0x55, 0x31, 0x6a, 0x35, 0x76, 0x46, 0x52, 0x54, 0x4b, 0x70, 0x52, 0x4e, 0x59, 0x50, 0x71, 0x59, 0x72, 0x4d, 0x67, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x64, 0x31, 0x66, 0x61, 0x62, 0x37, 0x61, 0x62, 0x37, 0x33, 0x38, 0x35, 0x61, 0x64, 0x32, 0x36, 0x38, 0x37, 0x32, 0x32, 0x33, 0x37, 0x66, 0x31, 0x65, 0x62, 0x39, 0x37, 0x38, 0x39, 0x61, 0x61, 0x32, 0x35, 0x63, 0x63, 0x39, 0x38, 0x36, 0x62, 0x61, 0x63, 0x63, 0x36, 0x39, 0x35, 0x65, 0x30, 0x37, 0x61, 0x63, 0x35, 0x37, 0x31, 0x64, 0x36, 0x63, 0x64, 0x61, 0x63, 0x38, 0x62, 0x63, 0x30, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x4c, 0x33, 0x39, 0x46, 0x79, 0x37, 0x41, 0x43, 0x32, 0x48, 0x68, 0x6a, 0x39, 0x35, 0x67, 0x68, 0x33, 0x59, 0x62, 0x32, 0x41, 0x55, 0x35, 0x59, 0x48, 0x68, 0x31, 0x6d, 0x51, 0x53, 0x41, 0x48, 0x67, 0x70, 0x4e, 0x69, 0x78, 0x76, 0x6d, 0x32, 0x37, 0x70, 0x6f, 0x69, 0x7a, 0x63, 0x4a, 0x79, 0x4c, 0x74, 0x55, 0x69, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x62, 0x30, 0x62, 0x62, 0x65, 0x64, 0x65, 0x33, 0x33, 0x65, 0x66, 0x32, 0x35, 0x34, 0x65, 0x38, 0x33, 0x37, 0x36, 0x61, 0x63, 0x65, 0x62, 0x31, 0x35, 0x31, 0x30, 0x32, 0x35, 0x33, 0x66, 0x63, 0x33, 0x35, 0x35, 0x30, 0x65, 0x66, 0x64, 0x30, 0x66, 0x63, 0x66, 0x38, 0x34, 0x64, 0x63, 0x64, 0x30, 0x63, 0x39, 0x39, 0x39, 0x38, 0x62, 0x32, 0x38, 0x38, 0x66, 0x31, 0x36, 0x36, 0x62, 0x33, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x39, 0x31, 0x63, 0x54, 0x56, 0x55, 0x63, 0x67, 0x79, 0x64, 0x71, 0x79, 0x5a, 0x4c, 0x67, 0x61, 0x41, 0x4e, 0x70, 0x66, 0x31, 0x66, 0x76, 0x4c, 0x35, 0x35, 0x46, 0x48, 0x35, 0x33, 0x51, 0x4d, 0x6d, 0x34, 0x42, 0x73, 0x6e, 0x43, 0x41, 0x44, 0x56, 0x4e, 0x59, 0x75, 0x57, 0x75, 0x71, 0x64, 0x56, 0x79, 0x73, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x30, 0x33, 0x37, 0x66, 0x34, 0x31, 0x39, 0x32, 0x63, 0x36, 0x33, 0x30, 0x66, 0x33, 0x39, 0x39, 0x64, 0x39, 0x32, 0x37, 0x31, 0x65, 0x32, 0x36, 0x63, 0x35, 0x37, 0x35, 0x32, 0x36, 0x39, 0x62, 0x31, 0x64, 0x31, 0x35, 0x62, 0x65, 0x35, 0x35, 0x33, 0x65, 0x61, 0x31, 0x61, 0x37, 0x32, 0x31, 0x37, 0x66, 0x30, 0x63, 0x62, 0x38, 0x35, 0x31, 0x33, 0x63, 0x65, 0x66, 0x34, 0x31, 0x63, 0x62, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x51, 0x73, 0x70, 0x66, 0x53, 0x7a, 0x73, 0x67, 0x4c, 0x65, 0x69, 0x4a, 0x47, 0x42, 0x32, 0x75, 0x38, 0x76, 0x72, 0x41, 0x69, 0x57, 0x70, 0x43, 0x55, 0x34, 0x4d, 0x78, 0x55, 0x54, 0x36, 0x4a, 0x73, 0x65, 0x57, 0x6f, 0x32, 0x53, 0x6a, 0x58, 0x79, 0x34, 0x51, 0x62, 0x7a, 0x6e, 0x32, 0x66, 0x77, 0x44, 0x77, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x36, 0x32, 0x35, 0x31, 0x65, 0x32, 0x30, 0x35, 0x65, 0x38, 0x61, 0x64, 0x35, 0x30, 0x38, 0x62, 0x61, 0x62, 0x35, 0x35, 0x39, 0x36, 0x62, 0x65, 0x65, 0x30, 0x38, 0x36, 0x65, 0x66, 0x31, 0x36, 0x63, 0x64, 0x34, 0x62, 0x32, 0x33, 0x39, 0x65, 0x30, 0x63, 0x63, 0x30, 0x63, 0x35, 0x64, 0x37, 0x63, 0x34, 0x65, 0x36, 0x30, 0x33, 0x35, 0x34, 0x34, 0x31, 0x65, 0x37, 0x64, 0x35, 0x64, 0x65, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x53, 0x57, 0x44, 0x62, 0x48, 0x44, 0x54, 0x61, 0x74, 0x52, 0x31, 0x61, 0x67, 0x38, 0x79, 0x54, 0x46, 0x4c, 0x64, 0x56, 0x57, 0x64, 0x31, 0x65, 0x72, 0x66, 0x75, 0x37, 0x50, 0x62, 0x62, 0x6a, 0x6b, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x35, 0x65, 0x61, 0x64, 0x61, 0x66, 0x39, 0x62, 0x62, 0x37, 0x31, 0x32, 0x31, 0x66, 0x30, 0x66, 0x31, 0x39, 0x32, 0x35, 0x36, 0x31, 0x61, 0x35, 0x61, 0x36, 0x32, 0x66, 0x35, 0x65, 0x35, 0x66, 0x35, 0x34, 0x32, 0x31, 0x30, 0x32, 0x39, 0x32, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x51, 0x4b, 0x52, 0x36, 0x6d, 0x4c, 0x42, 0x77, 0x50, 0x59, 0x36, 0x44, 0x65, 0x71, 0x48, 0x77, 0x6a, 0x4a, 0x43, 0x78, 0x55, 0x77, 0x53, 0x73, 0x47, 0x55, 0x54, 0x6f, 0x42, 0x35, 0x73, 0x57, 0x4a, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x33, 0x66, 0x32, 0x31, 0x30, 0x65, 0x37, 0x32, 0x37, 0x37, 0x63, 0x38, 0x39, 0x39, 0x63, 0x33, 0x61, 0x31, 0x35, 0x35, 0x63, 0x63, 0x31, 0x63, 0x39, 0x30, 0x66, 0x34, 0x31, 0x30, 0x36, 0x63, 0x62, 0x64, 0x64, 0x65, 0x65, 0x63, 0x36, 0x65, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x6d, 0x55, 0x31, 0x45, 0x65, 0x6f, 0x4e, 0x48, 0x43, 0x66, 0x6d, 0x57, 0x70, 0x65, 0x5a, 0x57, 0x65, 0x52, 0x6e, 0x4b, 0x6d, 0x4e, 0x65, 0x56, 0x64, 0x48, 0x4a, 0x67, 0x5a, 0x6a, 0x73, 0x65, 0x35, 0x47, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x63, 0x38, 0x61, 0x33, 0x63, 0x32, 0x61, 0x30, 0x39, 0x61, 0x32, 0x39, 0x38, 0x35, 0x39, 0x32, 0x63, 0x33, 0x65, 0x31, 0x38, 0x30, 0x66, 0x30, 0x32, 0x34, 0x38, 0x37, 0x63, 0x64, 0x39, 0x31, 0x62, 0x61, 0x33, 0x34, 0x30, 0x30, 0x62, 0x35, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x32, 0x4c, 0x5a, 0x56, 0x77, 0x42, 0x35, 0x41, 0x32, 0x6e, 0x35, 0x55, 0x39, 0x6f, 0x64, 0x77, 0x4d, 0x62, 0x4c, 0x64, 0x31, 0x67, 0x35, 0x42, 0x7a, 0x39, 0x5a, 0x33, 0x5a, 0x46, 0x6f, 0x43, 0x4a, 0x48, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x39, 0x39, 0x62, 0x33, 0x31, 0x64, 0x66, 0x37, 0x63, 0x39, 0x30, 0x36, 0x38, 0x64, 0x31, 0x34, 0x38, 0x31, 0x62, 0x35, 0x39, 0x36, 0x35, 0x37, 0x38, 0x64, 0x64, 0x62, 0x62, 0x34, 0x64, 0x33, 0x62, 0x64, 0x39, 0x30, 0x62, 0x61, 0x65, 0x62, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x35, 0x4b, 0x4c, 0x36, 0x7a, 0x45, 0x61, 0x4d, 0x74, 0x50, 0x52, 0x58, 0x5a, 0x4b, 0x6f, 0x31, 0x62, 0x62, 0x4d, 0x71, 0x37, 0x4a, 0x44, 0x6a, 0x6a, 0x6f, 0x31, 0x62, 0x4a, 0x75, 0x51, 0x63, 0x73, 0x67, 0x4c, 0x33, 0x33, 0x6a, 0x65, 0x33, 0x6f, 0x59, 0x38, 0x75, 0x53, 0x4a, 0x43, 0x52, 0x35, 0x62, 0x34, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x37, 0x36, 0x36, 0x36, 0x38, 0x34, 0x32, 0x35, 0x30, 0x33, 0x64, 0x62, 0x36, 0x64, 0x63, 0x36, 0x65, 0x61, 0x30, 0x36, 0x31, 0x66, 0x30, 0x39, 0x32, 0x63, 0x66, 0x62, 0x39, 0x63, 0x33, 0x38, 0x38, 0x34, 0x34, 0x38, 0x36, 0x32, 0x39, 0x61, 0x36, 0x66, 0x65, 0x38, 0x36, 0x38, 0x64, 0x30, 0x36, 0x38, 0x63, 0x34, 0x32, 0x61, 0x34, 0x38, 0x38, 0x62, 0x34, 0x37, 0x38, 0x61, 0x65, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x4b, 0x77, 0x56, 0x39, 0x4b, 0x41, 0x66, 0x77, 0x62, 0x77, 0x74, 0x35, 0x31, 0x76, 0x65, 0x5a, 0x57, 0x4e, 0x73, 0x63, 0x52, 0x54, 0x65, 0x5a, 0x73, 0x39, 0x43, 0x4b, 0x70, 0x6f, 0x6a, 0x79, 0x75, 0x31, 0x4d, 0x73, 0x50, 0x6e, 0x61, 0x4b, 0x54, 0x46, 0x35, 0x6b, 0x7a, 0x36, 0x39, 0x48, 0x31, 0x55, 0x4e, 0x32, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x30, 0x37, 0x66, 0x30, 0x38, 0x30, 0x33, 0x66, 0x63, 0x35, 0x33, 0x39, 0x39, 0x65, 0x37, 0x37, 0x33, 0x35, 0x35, 0x35, 0x61, 0x62, 0x31, 0x65, 0x38, 0x39, 0x33, 0x39, 0x39, 0x30, 0x37, 0x65, 0x39, 0x62, 0x61, 0x64, 0x61, 0x63, 0x63, 0x31, 0x37, 0x63, 0x61, 0x31, 0x32, 0x39, 0x65, 0x36, 0x37, 0x61, 0x32, 0x66, 0x35, 0x66, 0x32, 0x66, 0x66, 0x38, 0x34, 0x33, 0x35, 0x31, 0x64, 0x64, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x39, 0x33, 0x4e, 0x38, 0x37, 0x44, 0x36, 0x75, 0x78, 0x53, 0x42, 0x7a, 0x77, 0x58, 0x76, 0x70, 0x6f, 0x6b, 0x70, 0x7a, 0x67, 0x38, 0x46, 0x46, 0x6d, 0x66, 0x51, 0x50, 0x6d, 0x76, 0x58, 0x34, 0x78, 0x48, 0x6f, 0x57, 0x51, 0x65, 0x33, 0x70, 0x4c, 0x64, 0x59, 0x70, 0x62, 0x69, 0x77, 0x54, 0x35, 0x59, 0x56, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x65, 0x61, 0x35, 0x37, 0x37, 0x61, 0x63, 0x66, 0x62, 0x35, 0x64, 0x31, 0x64, 0x31, 0x34, 0x64, 0x33, 0x62, 0x37, 0x62, 0x31, 0x39, 0x35, 0x63, 0x33, 0x32, 0x31, 0x35, 0x36, 0x36, 0x66, 0x31, 0x32, 0x66, 0x38, 0x37, 0x64, 0x32, 0x62, 0x37, 0x37, 0x65, 0x61, 0x33, 0x61, 0x35, 0x33, 0x66, 0x36, 0x38, 0x64, 0x66, 0x37, 0x65, 0x62, 0x66, 0x38, 0x36, 0x30, 0x34, 0x61, 0x38, 0x30, 0x31, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x4d, 0x78, 0x58, 0x75, 0x73, 0x53, 0x69, 0x68, 0x61, 0x58, 0x35, 0x38, 0x77, 0x70, 0x4a, 0x33, 0x74, 0x4e, 0x75, 0x75, 0x55, 0x63, 0x5a, 0x45, 0x51, 0x47, 0x74, 0x36, 0x44, 0x4b, 0x4a, 0x31, 0x77, 0x45, 0x70, 0x78, 0x79, 0x73, 0x38, 0x38, 0x46, 0x46, 0x61, 0x51, 0x43, 0x59, 0x6a, 0x6b, 0x75, 0x39, 0x68, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x30, 0x62, 0x33, 0x62, 0x33, 0x34, 0x66, 0x30, 0x39, 0x35, 0x38, 0x64, 0x38, 0x61, 0x32, 0x36, 0x38, 0x31, 0x39, 0x33, 0x61, 0x39, 0x38, 0x31, 0x34, 0x64, 0x61, 0x39, 0x32, 0x63, 0x33, 0x65, 0x38, 0x62, 0x35, 0x38, 0x62, 0x34, 0x61, 0x34, 0x33, 0x37, 0x38, 0x61, 0x35, 0x34, 0x32, 0x38, 0x36, 0x33, 0x65, 0x33, 0x34, 0x61, 0x63, 0x32, 0x38, 0x39, 0x63, 0x64, 0x38, 0x33, 0x30, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x74, 0x65, 0x73, 0x74, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x31, 0x4c, 0x67, 0x63, 0x6a, 0x34, 0x6d, 0x35, 0x72, 0x37, 0x65, 0x44, 0x57, 0x63, 0x74, 0x57, 0x51, 0x4d, 0x37, 0x65, 0x74, 0x65, 0x38, 0x35, 0x68, 0x48, 0x69, 0x76, 0x51, 0x78, 0x4d, 0x6a, 0x42, 0x5a, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x37, 0x36, 0x61, 0x39, 0x31, 0x34, 0x31, 0x65, 0x64, 0x34, 0x36, 0x37, 0x30, 0x31, 0x37, 0x66, 0x30, 0x34, 0x33, 0x65, 0x39, 0x31, 0x65, 0x64, 0x34, 0x63, 0x34, 0x34, 0x62, 0x34, 0x65, 0x38, 0x64, 0x64, 0x36, 0x37, 0x34, 0x64, 0x62, 0x32, 0x31, 0x31, 0x63, 0x34, 0x65, 0x36, 0x38, 0x38, 0x61, 0x63, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74, 0x33, 0x54, 0x43, 0x75, 0x48, 0x55, 0x78, 0x48, 0x33, 0x4c, 0x47, 0x6e, 0x73, 0x46, 0x59, 0x54, 0x55, 0x62, 0x53, 0x77, 0x48, 0x72, 0x52, 0x58, 0x78, 0x54, 0x61, 0x45, 0x41, 0x38, 0x68, 0x41, 0x61, 0x66, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x61, 0x39, 0x31, 0x34, 0x35, 0x65, 0x63, 0x65, 0x30, 0x63, 0x61, 0x64, 0x64, 0x64, 0x63, 0x34, 0x31, 0x35, 0x62, 0x31, 0x39, 0x38, 0x30, 0x66, 0x30, 0x30, 0x31, 0x37, 0x38, 0x35, 0x39, 0x34, 0x37, 0x31, 0x32, 0x30, 0x61, 0x63, 0x64, 0x62, 0x33, 0x36, 0x66, 0x63, 0x38, 0x37, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x6b, 0x65, 0x79, 0x22, 0x3a, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x61, 0x69, 0x6e, 0x6e, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x0a, 0x5d, 0x0a, };};
[ "chenxu@wutongchain.com" ]
chenxu@wutongchain.com
d356ecf9dd8f7fefe72a671bb30fc7b53627697b
46a270c50ca6d41d92c085aad2d8f8dfa3dc55df
/tafjce/Zone/Include/Legion/IBossFactory.h
14db6e602c33ba0cf1b2d486e52aa2d1eea180cb
[]
no_license
PenpenLi/YXLDGameServer
74e4eb05215373121029beefb9712f94b0488aea
6f6e709271a0f47aa8d55226fed436308aae2365
refs/heads/master
2022-10-20T15:49:13.793932
2020-07-15T07:50:00
2020-07-15T07:50:00
279,802,517
0
0
null
2020-07-15T07:49:15
2020-07-15T07:49:14
null
GB18030
C++
false
false
1,317
h
#ifndef __IBOSS_FACTORY_H__ #define __IBOSS_FACTORY_H__ #include "IFightSystem.h" typedef TC_Functor<void, TL::TLMaker<taf::Int32, const ServerEngine::BattleData&, int>::Result> DelegateBossFight; struct BossDamageRecord { BossDamageRecord():iDamageValue(0){} ServerEngine::PKRole roleKey; string strName; int iDamageValue; }; class IBoss:public IObject, public Detail::EventHandle { public: virtual bool AsynFightBoss(Uint32 dwActor, const ServerEngine::AttackBossCtx& attackCtx, DelegateBossFight cb) = 0; virtual int getBossHP() = 0; virtual int getBossMaxHP() = 0; virtual void getDamageRankList(int iLimitSize, vector<BossDamageRecord>& rankList) = 0; virtual bool getKiller(ServerEngine::PKRole& roleKey, string& strName) = 0; virtual int getDamage(const string& strName) = 0; virtual Uint32 getCreateTime() = 0; virtual int getVisibleMonsterID() = 0; }; class IBossFactory:public IComponent { public: // 功能: 创建BOSS // 参数: [iMonsterGrp] 怪物组 // 参数: [pFixCtx] 创建现场 virtual IBoss* createBoss(int iMonsterGrp, const ServerEngine::CreateBossCtx& bossCtx) = 0; // 功能: 删除BOSS // 参数: [pBoss] BOSS对象 virtual void delBoss(IBoss* pBoss) = 0; virtual void saveWorldBossData(bool bSync) = 0; virtual bool isInitFinish() = 0; }; #endif
[ "fengmm521@gmail.com" ]
fengmm521@gmail.com
bdad114b1cc8d8f94088c725b12dc56e92d926f2
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/109/403/CWE606_Unchecked_Loop_Condition__wchar_t_listen_socket_72b.cpp
78ec6b0ce220f47dc672bcf9f258ae41990e1cb0
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C++
false
false
2,923
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE606_Unchecked_Loop_Condition__wchar_t_listen_socket_72b.cpp Label Definition File: CWE606_Unchecked_Loop_Condition.label.xml Template File: sources-sinks-72b.tmpl.cpp */ /* * @description * CWE: 606 Unchecked Input For Loop Condition * BadSource: listen_socket Read data using a listen socket (server side) * GoodSource: Input a number less than MAX_LOOP * Sinks: * GoodSink: Use data as the for loop variant after checking to see if it is less than MAX_LOOP * BadSink : Use data as the for loop variant without checking its size * Flow Variant: 72 Data flow: data passed in a vector from one function to another in different source files * * */ #include "std_testcase.h" #include <vector> #define MAX_LOOP 10000 #ifndef _WIN32 #include <wchar.h> #endif using namespace std; namespace CWE606_Unchecked_Loop_Condition__wchar_t_listen_socket_72 { #ifndef OMITBAD void badSink(vector<wchar_t *> dataVector) { /* copy data out of dataVector */ wchar_t * data = dataVector[2]; { int i, n, intVariable; if (swscanf(data, L"%d", &n) == 1) { /* POTENTIAL FLAW: user-supplied value 'n' could lead to very large loop iteration */ intVariable = 0; for (i = 0; i < n; i++) { /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */ intVariable++; /* avoid a dead/empty code block issue */ } printIntLine(intVariable); } } } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink(vector<wchar_t *> dataVector) { wchar_t * data = dataVector[2]; { int i, n, intVariable; if (swscanf(data, L"%d", &n) == 1) { /* POTENTIAL FLAW: user-supplied value 'n' could lead to very large loop iteration */ intVariable = 0; for (i = 0; i < n; i++) { /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */ intVariable++; /* avoid a dead/empty code block issue */ } printIntLine(intVariable); } } } /* goodB2G uses the BadSource with the GoodSink */ void goodB2GSink(vector<wchar_t *> dataVector) { wchar_t * data = dataVector[2]; { int i, n, intVariable; if (swscanf(data, L"%d", &n) == 1) { /* FIX: limit loop iteration counts */ if (n < MAX_LOOP) { intVariable = 0; for (i = 0; i < n; i++) { /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */ intVariable++; /* avoid a dead/empty code block issue */ } printIntLine(intVariable); } } } } #endif /* OMITGOOD */ } /* close namespace */
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
2dd57090935752a77222f84812a517bde11a2d8a
e5bb4da760de6ea21285f7bc27863f3ee8641a1f
/ch21/fig13_21/Fig13_21.cpp
9cbdf95581628d99598287bf868dd4960b63eeab
[]
no_license
netdevmike/Introduction-to-programming
acbce305f2d21879526de81eafd646cf9b685c42
0a88f41a76673fdcac72801d8c8891cc22e8b348
refs/heads/main
2023-07-29T02:41:39.082979
2021-09-10T04:36:06
2021-09-10T04:36:06
330,465,070
0
0
null
null
null
null
UTF-8
C++
false
false
2,226
cpp
// Fig. 13.21: fig13_21.cpp // flags member function. #include <iostream> using namespace std; int main() { int integerValue = 1000; double doubleValue = 0.0947628; // display flags value, int and double values (original format) cout << "The value of the flags variable is: " << cout.flags() << "\nPrint int and double in original format:\n" << integerValue << '\t' << doubleValue << endl << endl; // use cout flags function to save original format ios_base::fmtflags originalFormat = cout.flags(); cout << showbase << oct << scientific; // change format // display flags value, int and double values (new format) cout << "The value of the flags variable is: " << cout.flags() << "\nPrint int and double in a new format:\n" << integerValue << '\t' << doubleValue << endl << endl; cout.flags( originalFormat ); // restore format // display flags value, int and double values (original format) cout << "The restored value of the flags variable is: " << cout.flags() << "\nPrint values in original format again:\n" << integerValue << '\t' << doubleValue << endl; } // end main /************************************************************************** * (C) Copyright 1992-2014 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * **************************************************************************/
[ "66533339+Michael-Charara@users.noreply.github.com" ]
66533339+Michael-Charara@users.noreply.github.com
70d4f740aa4ddc3cf7d14bb9818906bc612454ca
3cd8c944a212048db42541f53a030ddc2fdffa24
/glesstudy/jni/main/DiResource.cpp
88979ea94ac0935b849b7f08414c1097e24ade47
[ "MIT" ]
permissive
eastcowboy2002/gles-study
6f2f4d6c4bf99f97080a16a51c5094b63883f025
e715ea76e41c8dc73cfff1c32a2bdf24aa3b73f9
refs/heads/master
2020-05-19T21:56:12.325860
2015-07-23T02:03:27
2015-07-23T02:03:27
19,304,149
0
0
null
null
null
null
UTF-8
C++
false
false
14,942
cpp
#include "DiResource.h" #include "SDL_image.h" #include <ctime> namespace di { unique_ptr<ResourceManager> ResourceManager::s_singleton; ResourceManager::ResourceManager() : m_fields(new Fields) { m_fields->threadWillEnd = false; shared_ptr<Fields> fields = m_fields; ThreadEventHandlers handlers; handlers.onInit = []() { // ilInit(); // ilEnable(IL_ORIGIN_SET); // ilOriginFunc(IL_ORIGIN_LOWER_LEFT); }; handlers.onLoop = [fields](bool* willEndThread, uint32_t* willWaitMillis) { // onLoop lambda begin Fields* f = fields.get(); *willWaitMillis = 0; vector<ResourcePtr> vec; f->cvToWorker.WaitUntil( f->lockToWorker, [f]() { return f->threadWillEnd || !f->queueToWorker.empty(); }, [willEndThread, f, &vec]() { *willEndThread = f->threadWillEnd; if (*willEndThread) { LogInfo("willEndThread"); return; } // while (!f->queueToWorker.empty()) if (!f->queueToWorker.empty()) { vec.push_back(f->queueToWorker.top()); f->queueToWorker.pop(); } }); for (auto iter = vec.begin(); iter != vec.end(); ++iter) { if (*willEndThread) { return; } ResourcePtrCR r = *iter; r->Load(); ThreadLockGuard lock(f->lockToGL); f->queueToGL.push_back(r); } // onLoop lambda end }; handlers.threadName = "Resource Loader"; StartThread(handlers); } ResourceManager::~ResourceManager() { m_fields->threadWillEnd = true; } void ResourceManager::AsyncLoadResource(ResourcePtrCR resource) { DI_SAVE_CALLSTACK(); Resource::State state = resource->GetState(); if (state != Resource::State::Init && state != Resource::State::Timeout) { if (state == Resource::State::Finished) { resource->UpdateTimeoutTick(); } else { // note: // Normally we only need to call cvToWorker.Notify() after queueToWorker.push(), // which is done at the end of this function. // // But if cvToWorker.Notify() is called before worker thread's "cvToWorker.WaitUntil" called, // we need to call cvToWorker.Notify() somewhere again. // Or the worker thread will wait for a long time ThreadLockGuard lock(m_fields->lockToWorker); if (!m_fields->queueToWorker.empty()) { m_fields->cvToWorker.Notify(); } } return; } LogInfo("AsyncLoadResource '%s'", resource->GetName().c_str()); resource->Prepare(); if (resource->GetState() != Resource::State::Prepared) { return; } ThreadLockGuard lock(m_fields->lockToWorker); m_fields->queueToWorker.push(resource); m_fields->cvToWorker.Notify(); } void ResourceManager::CheckAsyncFinishedResources() { DI_SAVE_CALLSTACK(); ThreadLockGuard lock(m_fields->lockToGL); deque<ResourcePtr> queueToGL; queueToGL.swap(m_fields->queueToGL); lock.Unlock(); for (auto iter = queueToGL.begin(); iter != queueToGL.end(); ++iter) { ResourcePtrCR resource = *iter; if (resource->GetState() == Resource::State::Loaded) { resource->Finish(); if (resource->GetState() == Resource::State::Finished) { resource->UpdateTimeoutTick(); } } } } void ResourceManager::CheckTimeoutResources() { DI_SAVE_CALLSTACK(); auto& resourceHash = m_fields->resourceHash; for (auto iter = resourceHash.begin(); iter != resourceHash.end(); ++iter) { ResourcePtrCR resource = (*iter).second; // if (resource.unique()) // { resource->CheckTimeout(); // } } } const ResourcePtr* ResourceManager::HashFindResource(const string& name) { DI_SAVE_CALLSTACK(); auto& hash = m_fields->resourceHash; auto iter = hash.find(name); if (iter == hash.end()) { return nullptr; } ResourcePtrCR resource = (*iter).second; Resource::State state = resource->GetState(); DI_ASSERT(state != Resource::State::Init); AsyncLoadResource(resource); return &resource; } void ResourceManager::AddResource(ResourcePtrCR resource) { DI_SAVE_CALLSTACK(); DI_ASSERT(resource->GetState() == Resource::State::Init); m_fields->resourceHash[resource->GetName()] = resource; AsyncLoadResource(resource); } class SDLTextureLoader : public BaseTextureLoader { public: SDLTextureLoader(const string& name) : BaseTextureLoader(name), m_imageSurface(nullptr) {} ~SDLTextureLoader() { glDeleteTextures(1, &m_glTexture); SDL_FreeSurface(m_imageSurface); m_imageSurface = nullptr; } private: virtual bool Prepare_InGlThread() { DI_SAVE_CALLSTACK(); if (m_glTexture == 0) { glGenTextures(1, &m_glTexture); glBindTexture(GL_TEXTURE_2D, m_glTexture); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); DI_DBG_CHECK_GL_ERRORS(); } return true; } virtual bool Load_InWorkThread() { DI_SAVE_CALLSTACK(); if (m_imageSurface) { LogWarn("load new SDL surface while the old surface is still exist. resource: '%s'", GetName().c_str()); m_imageSurface = nullptr; } m_imageSurface = IMG_Load(GetName().c_str()); if (m_imageSurface) { m_width = m_imageSurface->w; m_height = m_imageSurface->h; if (m_imageSurface->format->Amask != 0 || SDL_GetColorKey(m_imageSurface, NULL)) { m_innerFormat = TextureProtocol::RGBA_8888; } else { m_innerFormat = TextureProtocol::RGB_888; } return true; } else { LogError("IMG_Load('%s') failed", GetName().c_str()); return false; } } virtual bool Finish_InGlThread() { DI_SAVE_CALLSTACK(); DI_ASSERT(m_imageSurface); DI_ASSERT(m_glTexture); Uint32 sdlFormat; GLenum glFormat; if (m_imageSurface->format->Amask != 0 || SDL_GetColorKey(m_imageSurface, NULL) == 0) { sdlFormat = SDL_PIXELFORMAT_ABGR8888; // surface has alpha, so use GL_RGBA glFormat = GL_RGBA; } else { sdlFormat = SDL_PIXELFORMAT_RGB24; // surface has no alpha, so use GL_RGB glFormat = GL_RGB; } SDL_Surface* readingSurface; SDL_Surface* tmpSurface = nullptr; if (sdlFormat == m_imageSurface->format->format) // no need to change format { readingSurface = m_imageSurface; } else // need to change format // Normally we don't go here because blit operation has some performance cost // maybe move SDL_BlitSurface to ResourceManager's work thread is an optimization { LogWarn("SDL surface type need change. origin: %s, destination: %s", SDL_GetPixelFormatName(m_imageSurface->format->format), SDL_GetPixelFormatName(sdlFormat)); int pixelDepth; Uint32 Rmask, Gmask, Bmask, Amask; SDL_PixelFormatEnumToMasks(sdlFormat, &pixelDepth, &Rmask, &Gmask, &Bmask, &Amask); tmpSurface = SDL_CreateRGBSurface(SDL_SWSURFACE, m_width, m_height, pixelDepth, Rmask, Gmask, Bmask, Amask); if (!tmpSurface) { LogError("SDL_CreateRGBSurface failed, resource: '%s'", GetName().c_str()); SDL_FreeSurface(m_imageSurface); m_imageSurface = nullptr; return false; } SDL_BlitSurface(m_imageSurface, nullptr, tmpSurface, nullptr); readingSurface = tmpSurface; } if (readingSurface->pitch % 4 != 0) { glPixelStorei(GL_PACK_ALIGNMENT, 1); } if (SDL_MUSTLOCK(readingSurface)) { SDL_UnlockSurface(readingSurface); } glTexImage2D(GL_TEXTURE_2D, 0, glFormat, m_width, m_height, 0, glFormat, GL_UNSIGNED_BYTE, readingSurface->pixels); if (SDL_MUSTLOCK(readingSurface)) { SDL_UnlockSurface(readingSurface); } if (readingSurface->pitch % 4 != 0) { glPixelStorei(GL_PACK_ALIGNMENT, 4); } SDL_FreeSurface(tmpSurface); SDL_FreeSurface(m_imageSurface); m_imageSurface = nullptr; return true; } virtual void Timeout_InGlThread() { glDeleteTextures(1, &m_glTexture); m_glTexture = 0; m_width = 0; m_height = 0; SDL_FreeSurface(m_imageSurface); m_imageSurface = nullptr; } SDL_Surface* m_imageSurface; }; class KTXTextureLoader : public BaseTextureLoader { public: KTXTextureLoader(const string& name) : BaseTextureLoader(name) {} private: virtual bool Prepare_InGlThread() { return true; } virtual bool Load_InWorkThread() { DI_SAVE_CALLSTACK(); if (!m_bytes.empty()) { LogWarn("load new KTX bytes while the old bytes is still exist. resource: '%s'", GetName().c_str()); m_bytes.clear(); } SDL_RWops* rw = SDL_RWFromFile(GetName().c_str(), "rb"); if (!rw) { LogError("SDL_RWFromFile('%s') failed", GetName().c_str()); return false; } auto rwDeleter = MakeCallAtScopeExit([rw](){ SDL_RWclose(rw); }); m_bytes.resize(size_t(SDL_RWsize(rw))); if (!m_bytes.empty()) { if (SDL_RWread(rw, &m_bytes[0], m_bytes.size(), 1) != 1) { vector<uint8_t>().swap(m_bytes); LogError("SDL_RWread('%s') failed", GetName().c_str()); return false; } } else { LogError("KTX file '%s' is empty", GetName().c_str()); return false; } return true; } virtual bool Finish_InGlThread() { DI_SAVE_CALLSTACK(); DI_ASSERT(!m_bytes.empty()); GLuint tex; GLenum target; GLenum glerr; GLboolean isMipmap; KTX_dimensions dimensions; KTX_error_code ktxErr = ktxLoadTextureM(&m_bytes[0], m_bytes.size(), &tex, &target, &dimensions, &isMipmap, &glerr, 0, NULL); vector<uint8_t>().swap(m_bytes); if (ktxErr != KTX_SUCCESS || glerr != GL_NO_ERROR) { LogError("ktxLoadTextureM('%s') failed. ktxErr = 0x%X, glerr = 0x%X", GetName().c_str(), ktxErr, glerr); return false; } if (target != GL_TEXTURE_2D) { glBindTexture(target, 0); glDeleteTextures(1, &target); LogError("ktxLoadTextureM('%s') not a 2D texture", GetName().c_str()); return false; } glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, isMipmap ? GL_LINEAR_MIPMAP_NEAREST : GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); m_width = dimensions.width; m_height = dimensions.height; m_glTexture = tex; m_innerFormat = InnerFormat::RGB_888; return true; } virtual void Timeout_InGlThread() { DI_SAVE_CALLSTACK(); glDeleteTextures(1, &m_glTexture); m_glTexture = 0; m_width = 0; m_height = 0; vector<uint8_t>().swap(m_bytes); } vector<uint8_t> m_bytes; }; ImageAsTexture::ImageAsTexture(const string& name, float priority /* = 0 */ ) : Resource(name, priority), m_loader(nullptr) { size_t pos = name.find_last_of('.'); if (pos != string::npos && SDL_strncasecmp(name.c_str() + pos + 1, "ktx", 3) == 0) { m_loader.reset(new KTXTextureLoader(name)); } else { m_loader.reset(new SDLTextureLoader(name)); } } bool ImageAsTexture::Prepare_InGlThread() { return m_loader->Prepare_InGlThread(); } bool ImageAsTexture::Load_InWorkThread() { return m_loader->Load_InWorkThread(); } bool ImageAsTexture::Finish_InGlThread() { return m_loader->Finish_InGlThread(); } void ImageAsTexture::Timeout_InGlThread() { m_loader->Timeout_InGlThread(); } }
[ "eastcowboy2002@163.com" ]
eastcowboy2002@163.com
9e8dd85e1cdd5ab7042f4cc35ffdeece407d21d3
5125e2efdf589fc87936665a0be12abe6b224786
/p2_1_Woodard.h
1e7f2e227527d3ace603b0e2882a946c31ab2dd3
[]
no_license
BJWOODS/Reverse-Polish-Notation-Calculator
df0c5139a9bf12f4aed416f657a64b2e84af5174
9691038e3a23f6336b351243abeb6f9d1f3eff82
refs/heads/master
2020-12-24T19:36:29.855840
2016-06-07T21:35:32
2016-06-07T21:35:32
56,015,282
0
0
null
null
null
null
UTF-8
C++
false
false
836
h
// // main.cpp // CST238Project2 // // Created by Brandon Woodard on 11/11/15. // Copyright (c) 2015 Brandon Woodard. All rights reserved. // #include <iostream> #include <string> #include <cstdlib> #include <stdio.h> /* printf, fgets */ #include <stdlib.h> /* atof */ #include <math.h> #include <iomanip> #include <sstream> #include <cmath> using namespace std; typedef double ElementType; const unsigned SIZE_OF_STACK = 50; class Calculator { private: double a[SIZE_OF_STACK]; unsigned t = 0; int z = 0; public: void push(ElementType b); void pop(); bool empty(); void read(string txt); void print(string x,string i); void evaluate(string x); ElementType top(); }; class Start : Calculator { private: Calculator stack; string txt; public: void startcalculate(); };
[ "bwoodard@csumb.edu" ]
bwoodard@csumb.edu
0222ed51a20edadc6cc87f60e63abadf6f9b9340
ae9ff784b524610de9abebea61a59df1152c3aad
/CH05/13.cpp
7378a968b770042c4efec2b63d28ebdb77a1d2dd
[]
no_license
headmastersquall/Cpp
489ea7757d9b0a64b929fece3b1152121f69cdc8
daca75461ca00bb9f5af7550554e32d024d335d8
refs/heads/master
2020-05-17T22:39:57.086887
2015-11-09T20:12:31
2015-11-09T20:12:31
42,877,932
0
1
null
null
null
null
UTF-8
C++
false
false
521
cpp
/* * 13. Celsius to Fahrenheit Table * * This program outputs a table showing the conversion values * of Celsius degress to Fahrenheit degrees from the values * of 0 through 20. */ #include <iostream> using namespace std; int main() { double fahrenheit; const double CONVERSION = 9.0 / 5.0; cout << "C\tF" << endl; cout << "------------" << endl; for (int celsius = 0; celsius < 21; celsius++) { fahrenheit = (CONVERSION * celsius) + 32; cout << celsius << "\t" << fahrenheit << endl; } return 0; }
[ "headmastersquall@hushmail.com" ]
headmastersquall@hushmail.com
d809389284d1125c6e06d7e5143e3cfb38134a2d
b71b8bd385c207dffda39d96c7bee5f2ccce946c
/testcases/CWE23_Relative_Path_Traversal/s01/CWE23_Relative_Path_Traversal__char_console_fopen_16.cpp
d1183abff81de5caaf9ecac276335f94d9014abf
[]
no_license
Sporknugget/Juliet_prep
e9bda84a30bdc7938bafe338b4ab2e361449eda5
97d8922244d3d79b62496ede4636199837e8b971
refs/heads/master
2023-05-05T14:41:30.243718
2021-05-25T16:18:13
2021-05-25T16:18:13
369,334,230
0
0
null
null
null
null
UTF-8
C++
false
false
3,554
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE23_Relative_Path_Traversal__char_console_fopen_16.cpp Label Definition File: CWE23_Relative_Path_Traversal.label.xml Template File: sources-sink-16.tmpl.cpp */ /* * @description * CWE: 23 Relative Path Traversal * BadSource: console Read input from the console * GoodSource: Use a fixed file name * Sink: fopen * BadSink : Open the file named in data using fopen() * Flow Variant: 16 Control flow: while(1) * * */ #include "std_testcase.h" #ifdef _WIN32 #define BASEPATH "c:\\temp\\" #else #include <wchar.h> #define BASEPATH "/tmp/" #endif #ifdef _WIN32 #define FOPEN fopen #else #define FOPEN fopen #endif namespace CWE23_Relative_Path_Traversal__char_console_fopen_16 { #ifndef OMITBAD void bad() { char * data; char dataBuffer[FILENAME_MAX] = BASEPATH; data = dataBuffer; { { /* Read input from the console */ size_t dataLen = strlen(data); /* if there is room in data, read into it from the console */ if (FILENAME_MAX-dataLen > 1) { /* POTENTIAL FLAW: Read data from the console */ if (fgets(data+dataLen, (int)(FILENAME_MAX-dataLen), stdin) != NULL) { /* The next few lines remove the carriage return from the string that is * inserted by fgets() */ dataLen = strlen(data); if (dataLen > 0 && data[dataLen-1] == '\n') { data[dataLen-1] = '\0'; } } else { printLine("fgets() failed"); /* Restore NUL terminator if fgets fails */ data[dataLen] = '\0'; } } } } { FILE *pFile = NULL; /* POTENTIAL FLAW: Possibly opening a file without validating the file name or path */ pFile = FOPEN(data, "wb+"); if (pFile != NULL) { fclose(pFile); } } } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B() - use goodsource and badsink by changing the conditions on the while statements */ static void goodG2B() { char * data; char dataBuffer[FILENAME_MAX] = BASEPATH; data = dataBuffer; { /* FIX: Use a fixed file name */ strcat(data, "file.txt"); } { FILE *pFile = NULL; /* POTENTIAL FLAW: Possibly opening a file without validating the file name or path */ pFile = FOPEN(data, "wb+"); if (pFile != NULL) { fclose(pFile); } } } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE23_Relative_Path_Traversal__char_console_fopen_16; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "jaredzap@rams.colostate.edu" ]
jaredzap@rams.colostate.edu
f6ee5d1a08f2f5724887d965f702d175a8b3549e
be290e9e622a69280e6780862775d1ef9570d1d9
/Assignment 1/Solution/Queue.cpp
21d7c47de222ea4820388659ae57afc187f13624
[]
no_license
nch8501/DSA2
25937ff44bbf520e6dc894db30328eba3aa6eb5b
2b9f7e123c63b0ff679faf5001dd279e688ef563
refs/heads/master
2021-05-11T07:36:41.841080
2018-04-23T01:03:24
2018-04-23T01:03:24
118,022,275
0
0
null
null
null
null
UTF-8
C++
false
false
2,015
cpp
#include "Queue.h" Queue::Queue() { //set all pointers to default values pArray[0] = v1; pArray[1] = v2; pArray[2] = v3; } Queue::Queue(Queue const & other) { //double the size of the queue pArraysize = other.pArraysize*2; //create the queue pArray = new int[pArraysize]; //copy the number of elements and the index elements = other.elements; lastElementIndex = other.lastElementIndex; //copy over all elements for (int i = 0; i < elements; i++) { pArray[i] = other.pArray[i]; } } Queue & Queue::operator=(Queue const & other) { if (this != &other) { //double the size of the queue pArraysize = other.pArraysize; //create the queue pArray = new int[pArraysize]; //copy the number of elements and the index elements = other.elements; lastElementIndex = other.lastElementIndex; //copy over all elements for (int i = 0; i < elements; i++) { pArray[i] = other.pArray[i]; } } return *this; } Queue::~Queue() { } void Queue::Push(int element, Queue original) { //check if the queue is full if (isFull()) { //make a new Queue Queue temp(original); original = temp; } pArray[lastElementIndex + 1] = element; lastElementIndex++; elements++; } void Queue::Pop() { //check if queue is empty if (isEmpty()) { std::cout << "Nothing to Pop" << std::endl; return; } //go through each element for (int i = 0; i < lastElementIndex; i++) { //set their index back one pArray[i] = pArray[i + 1]; } //update the index of the last element lastElementIndex--; //update the amount of elements elements--; } int Queue::GetSize() { return elements; } bool Queue::isEmpty() { //check if empty if (elements == 0) { return true; } return false; } bool Queue::isFull() { //check if last element is at the end of the queue if (pArraysize == elements) { return true; } return false; } void Queue::Print() { //print each element for (int i = 0; i < elements; i++) { std::cout << pArray[i] << std::endl; } }
[ "nch8501@rit.edu" ]
nch8501@rit.edu
48b9597c1bd3810886c1983ec1cbde7f9da23dbe
3749d5ff88b72f7c729e2efb9e31f3fe459010e9
/ThrusterDirection.cpp
1dfe83de44c0c2ac3f89444df9d82b9fe9fd1538
[]
no_license
j-rushton/AUVSeniorDesign
953c119e2f46de4cf93611d288d11169595e0315
b6d07a894e67546d2e47773b143959478b2c9493
refs/heads/master
2021-09-26T08:55:39.475989
2020-04-10T03:53:44
2020-04-10T03:53:44
112,866,248
1
0
null
null
null
null
UTF-8
C++
false
false
4,200
cpp
#include<iostream> #include<cmath> #include<fstream> #include<sstream> #include<vector> #include<typeinfo> #include<time.h> using namespace std; void CSV_file_reader(vector<double> &t, vector<double> &gx, vector<double> &gy, vector<double> &gz, vector<double> &ax, vector<double> &ay, vector<double> &az); int max_angular_vel_mag(vector<double> gyrox, vector<double> gyroy, vector<double> gyroz); int max_linear_acc_mag(vector<double> accelx, vector<double> accely, vector<double> accelz); int main() { int i, av_pos, la_pos; vector<double> t, gx, gy, gz, ax, ay, az; CSV_file_reader(t,gx,gy,gz,ax,ay,az);//This will collect all the data from the csv file. av_pos = max_angular_vel_mag(gx,gy,gz);//This will give us the position where the angular velocity vector's magnitude is maximum la_pos = max_linear_acc_mag(ax,ay,az);//This will give us the position where the linear acceleration vector's magnitude is maximum cout<<"The av position is: "<<av_pos<<endl;//Just printing the position of angular velocity(av) cout<<"The la position is: "<<la_pos<<endl;//same as above cout<<"The angular velocity vector whose magnitude is maximum is: "<<gx[av_pos]<<"i + "<<gy[av_pos]<<"j + "<<gz[av_pos]<<"k"<<" at time t = "<<t[av_pos]/1000000<<" seconds"<<endl; cout<<"The linear acceleration vector whose magnitude is maximum is: "<<ax[la_pos]<<"i + "<<ay[la_pos]<<"j + "<<az[la_pos]<<"k"<<" at time t = "<<t[la_pos]/1000000<<" seconds"<<endl; return 0; } //This will read the data file. void CSV_file_reader(vector<double> &t, vector<double> &gx, vector<double> &gy, vector<double> &gz, vector<double> &ax, vector<double> &ay, vector<double> &az) { int i; double temp=0,angular_velocity_vector[3],linear_acceleration_vector[3]; string time,gyrox,gyroy,gyroz,accelx,accely,accelz; ifstream ip("data.csv"); if(!ip.is_open()) std::cout<<"ERROR: FILE DIDN'T OPEN"<<endl; while(!ip.eof()) { getline(ip,time,','); istringstream stream(time); while (stream >> temp) t.push_back(temp); getline(ip,gyrox,','); istringstream stream1(gyrox); while (stream1 >> temp) gx.push_back(temp); getline(ip,gyroy,','); istringstream stream2(gyroy); while (stream2 >> temp) gy.push_back(temp); getline(ip,gyroz,','); istringstream stream3(gyroz); while (stream3 >> temp) gz.push_back(temp); getline(ip,accelx,','); istringstream stream4(accelx); while (stream4 >> temp) ax.push_back(temp); getline(ip,accely,','); istringstream stream5(accely); while (stream5 >> temp) ay.push_back(temp); getline(ip,accelz,'\n'); istringstream stream6(accelz); while (stream6 >> temp) az.push_back(temp); } } // This will return the position of the maximum magnitude of the angular velocity vector int max_angular_vel_mag(vector<double> gyrox, vector<double> gyroy, vector<double> gyroz) { double max_item; int maxIndex=0,i; for (i = 0; i < gyrox.size(); ++i) { if (i == 0) max_item = gyrox[i]*gyrox[i] + gyroy[i]*gyroy[i] + gyroz[i]*gyroz[i]; else if ( gyrox[i]*gyrox[i] + gyroy[i]*gyroy[i] + gyroz[i]*gyroz[i] >= max_item) { maxIndex = i; max_item = gyrox[i]*gyrox[i] + gyroy[i]*gyroy[i] + gyroz[i]*gyroz[i]; } } return maxIndex; } // This will return the position of the maximum magnitude of the linear acceleration vector int max_linear_acc_mag(vector<double> accelx, vector<double> accely, vector<double> accelz) { double max_item; int maxIndex=0,i; for (i = 0; i < accelx.size(); ++i) if (i == 0) max_item = accelx[i]*accelx[i] + accely[i]*accely[i] + accelz[i]*accelz[i] ; else if ( accelx[i]*accelx[i] + accely[i]*accely[i] + accelz[i]*accelz[i] >= max_item) { maxIndex = i; max_item = accelx[i]*accelx[i] + accely[i]*accely[i] + accelz[i]*accelz[i]; } return maxIndex; }
[ "ishanchavan@users.noreply.github.com" ]
ishanchavan@users.noreply.github.com
5623caecb094e42d7a1f9cb165f76470eb68be9d
0976b0df057b01422b1b7bdbe23934b3254f8e05
/MM3.KScanBarWrapper/MM3.KScanBarWrapper/MM3.KScanBarWrapper.cpp
e98343745b3482e96b193ff3c632b859a70ee21f
[]
no_license
popovegor/shtrihm
0b8493dda86562f7f821031f7b7934f1e9000e00
e44bdf58b39eb9fdb644e3cedc11a0797d8b54d4
refs/heads/master
2021-01-10T04:36:46.373690
2012-04-21T21:02:53
2012-04-21T21:02:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,789
cpp
// MM3.KScanBarWrapper.cpp : Defines the entry point for the DLL application. // #pragma once #include "stdafx.h" #include <windows.h> #include "KScanBar.h" BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { return TRUE; } typedef struct _MC1DBarCodeType { // 1D BarCode 18 BOOL bCodabar; BOOL bCode11; BOOL bCode39; BOOL bCode93; BOOL bCode128; BOOL bGs1_128; BOOL bUpca; BOOL bUpce; BOOL bUpce1; BOOL bEan8; BOOL bEan13; BOOL bGs1; BOOL bI2of5; BOOL bMatrix2of5; BOOL bMsi; BOOL bPlessey; BOOL bStandard2of5; BOOL bTelepen; }MC1DBarCodeType,* P1DBarCodeType; typedef struct _MC2DBarCodeType { //2D BarCode 14 BOOL bBpo; BOOL bDatamatrix; BOOL bMaxicode; BOOL bPdf417; BOOL bMicroPdf417; BOOL bPlanet; BOOL bQrCode; BOOL bTlc39; BOOL bPostnet; BOOL bAusPost; BOOL bCanadaPost; BOOL bDutchPost; BOOL bJapanPost; BOOL bSwedenPost; }MC2DBarCodeType,* P2DBarCodeType; //CReg m_Reg; DWORD m_nDisplayType; BOOL m_bKeyFlag; BOOL m_bReading; BOOL m_bBeep; DWORD m_nSyncMode; DWORD m_nTimeOut; DWORD m_nSecurityLevel; BOOL m_bXCD; BOOL m_bCenterDecode; BOOL m_b1DDecode; MC1DBarCodeType m_1DBarCode; MC2DBarCodeType m_2DBarCode; extern "C" { typedef void (*OnScanData) (int type, char * data); OnScanData ScanCallback; KSCANREAD kRead; KSCANREADEX kReadEx; int KSCANAPI KScanReadCallBack(LPVOID pRead) { if(ScanCallback != NULL) { ScanCallback(((PKSCANREAD)pRead)->out_Type, ((PKSCANREAD)pRead)->out_Barcode); } return TRUE; } _declspec(dllexport) BOOL ScanInit(OnScanData callback) { BOOL bRet = KScanOpen(6, FALSE, 57600, FALSE, NULL); if(bRet == FALSE) { KScanClose(); Sleep(100); } else { m_nTimeOut = 2; m_nSecurityLevel = 1; // Option m_nSyncMode = 0; m_bXCD = 1; m_bBeep = FALSE; m_bCenterDecode = 0; m_b1DDecode = 0; // 1D BarCode 18 m_1DBarCode.bCodabar = FALSE; m_1DBarCode.bCode11 = FALSE; m_1DBarCode.bCode39 = TRUE; m_1DBarCode.bCode93 = FALSE; m_1DBarCode.bCode128 = TRUE; m_1DBarCode.bGs1_128 = TRUE; m_1DBarCode.bUpca = TRUE; m_1DBarCode.bUpce = TRUE; m_1DBarCode.bUpce1 = FALSE; m_1DBarCode.bEan8 = TRUE; m_1DBarCode.bEan13 = TRUE; m_1DBarCode.bGs1 = FALSE; m_1DBarCode.bI2of5 = FALSE; m_1DBarCode.bMatrix2of5 = FALSE; m_1DBarCode.bMsi = FALSE; m_1DBarCode.bPlessey = FALSE; m_1DBarCode.bStandard2of5 = FALSE; m_1DBarCode.bTelepen = FALSE; // 2D BarCode 14 m_2DBarCode.bBpo = FALSE; m_2DBarCode.bDatamatrix = TRUE; m_2DBarCode.bMaxicode = FALSE; m_2DBarCode.bPdf417 = TRUE; m_2DBarCode.bMicroPdf417 = FALSE; m_2DBarCode.bPlanet = FALSE; m_2DBarCode.bQrCode = FALSE; m_2DBarCode.bTlc39 = FALSE; m_2DBarCode.bPostnet = FALSE; m_2DBarCode.bAusPost = FALSE; m_2DBarCode.bCanadaPost = FALSE; m_2DBarCode.bDutchPost = FALSE; m_2DBarCode.bJapanPost = FALSE; m_2DBarCode.bSwedenPost = FALSE; memset(&kRead, 0, sizeof(kRead)); // initialization kRead.nSize = sizeof(kRead); // initialization // KScanReadCallBack //kRead.pUserData = this; kRead.fnCallBack = KScanReadCallBack; // ReadOption kRead.nTimeInSeconds = m_nTimeOut; kRead.nSecurity = m_nSecurityLevel; // Option if(m_bXCD == TRUE) kRead.dwFlags |= KSCAN_FLAG_RETURNCHECK; if(m_bCenterDecode == TRUE) kRead.dwFlags |= KSCAN_FLAG_CENTERDECODE; if(m_b1DDecode == TRUE) kRead.dwFlags |= KSCAN_FLAG_1DDECODEMODE; // 1D BarCode 18 if(m_1DBarCode.bCodabar) kRead.dwReadType |= KSCAN_READ_TYPE_CODABAR; if(m_1DBarCode.bCode11) kRead.dwReadType |= KSCAN_READ_TYPE_CODE11; if(m_1DBarCode.bCode39) kRead.dwReadType |= KSCAN_READ_TYPE_CODE39; if(m_1DBarCode.bCode93) kRead.dwReadType |= KSCAN_READ_TYPE_CODE93; if(m_1DBarCode.bCode128) kRead.dwReadType |= KSCAN_READ_TYPE_CODE128; if(m_1DBarCode.bGs1_128) kRead.dwReadType |= KSCAN_READ_TYPE_GS1_128; if(m_1DBarCode.bUpca) kRead.dwReadType |= KSCAN_READ_TYPE_UPCA; if(m_1DBarCode.bUpce) kRead.dwReadType |= KSCAN_READ_TYPE_UPCE; if(m_1DBarCode.bUpce1) kRead.dwReadType |= KSCAN_READ_TYPE_UPCE1; if(m_1DBarCode.bEan8) kRead.dwReadType |= KSCAN_READ_TYPE_EAN8; if(m_1DBarCode.bEan13) kRead.dwReadType |= KSCAN_READ_TYPE_EAN13; if(m_1DBarCode.bGs1) kRead.dwReadType |= KSCAN_READ_TYPE_GS1; if(m_1DBarCode.bI2of5) kRead.dwReadType |= KSCAN_READ_TYPE_I2OF5; if(m_1DBarCode.bMatrix2of5) kRead.dwReadType |= KSCAN_READ_TYPE_MATRIX2OF5; if(m_1DBarCode.bMsi) kRead.dwReadType |= KSCAN_READ_TYPE_MSI; if(m_1DBarCode.bPlessey) kRead.dwReadType |= KSCAN_READ_TYPE_PLESSEY; if(m_1DBarCode.bStandard2of5) kRead.dwReadType |= KSCAN_READ_TYPE_STANDARD2OF5; if(m_1DBarCode.bTelepen) kRead.dwReadType |= KSCAN_READ_TYPE_TELEPEN; // 2D BarCode 14 if(m_2DBarCode.bBpo) kRead.dwReadType |= KSCAN_READ_TYPE_BPO; if(m_2DBarCode.bDatamatrix) kRead.dwReadType |= KSCAN_READ_TYPE_DATAMATRIX; if(m_2DBarCode.bMaxicode) kRead.dwReadType |= KSCAN_READ_TYPE_MAXICODE; if(m_2DBarCode.bPdf417) kRead.dwReadType |= KSCAN_READ_TYPE_PDF417; if(m_2DBarCode.bMicroPdf417) kRead.dwReadType |= KSCAN_READ_TYPE_MICROPDF417; if(m_2DBarCode.bPlanet) kRead.dwReadType |= KSCAN_READ_TYPE_PLANET; if(m_2DBarCode.bQrCode) kRead.dwReadType |= KSCAN_READ_TYPE_QRCODE; if(m_2DBarCode.bTlc39) kRead.dwReadType |= KSCAN_READ_TYPE_TLC39; if(m_2DBarCode.bPostnet) kRead.dwReadType |= KSCAN_READ_TYPE_POSTNET; if(m_2DBarCode.bAusPost) kRead.dwReadType |= KSCAN_READ_TYPE_AUSPOST; if(m_2DBarCode.bCanadaPost) kRead.dwReadType |= KSCAN_READ_TYPE_CANADAPOST; if(m_2DBarCode.bDutchPost) kRead.dwReadType |= KSCAN_READ_TYPE_DUTCHPOST; if(m_2DBarCode.bJapanPost) kRead.dwReadType |= KSCAN_READ_TYPE_JAPANPOST; if(m_2DBarCode.bSwedenPost) kRead.dwReadType |= KSCAN_READ_TYPE_SWEDENPOST; kRead.dwReadType = KSCAN_READ_TYPE_ALL; SetOption(&kRead); SetReturn(1, *KScanReadCallBack); //set an extern callback function ScanCallback = callback; } return bRet; } _declspec(dllexport) void ScanCancel() { KScanReadCancel(); } _declspec(dllexport) void ScanRead() { KScanRead(); } _declspec(dllexport) void ScanClose() { KScanClose(); Sleep(100); ScanCallback = NULL; } };
[ "popovegor@gmail.com" ]
popovegor@gmail.com
a1fc721403bd65b97aed05eceff83b7083cbdc1e
3728db88d8f8268ded2af24c4240eec9f9dc9068
/mln/core/image/image1d.hh
89e93e78c13c4117da4c61142f90212fa9bbbb24
[]
no_license
KDE/kolena
ca01613a49b7d37f0f74953916a49aceb162daf8
0e0eff22f44e3834e8ebaf2c226eaba602b1ebf6
refs/heads/master
2021-01-19T06:40:53.365100
2011-03-29T11:53:16
2011-03-29T11:53:16
42,732,429
2
0
null
null
null
null
UTF-8
C++
false
false
15,538
hh
// Copyright (C) 2007, 2008, 2009 EPITA Research and Development Laboratory (LRDE) // // This file is part of Olena. // // Olena 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, version 2 of the License. // // Olena 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 Olena. If not, see <http://www.gnu.org/licenses/>. // // As a special exception, you may use this file as part of a free // software project without restriction. Specifically, if other files // instantiate templates or use macros or inline functions from this // file, or you compile this file and link it with other files to produce // an executable, this file does not by itself cause the resulting // executable to be covered by the GNU General Public License. This // exception does not however invalidate any other reasons why the // executable file might be covered by the GNU General Public License. #ifndef MLN_CORE_IMAGE_IMAGE1D_HH # define MLN_CORE_IMAGE_IMAGE1D_HH /// \file /// /// Definition of the basic mln::image1d class. /// /// \todo Rewrite from_to(histo, image1d) after Etienne's work. # include <mln/core/internal/fixme.hh> # include <mln/core/internal/image_primary.hh> # include <mln/core/alias/box1d.hh> # include <mln/border/thickness.hh> # include <mln/value/set.hh> # include <mln/fun/i2v/all_to.hh> // FIXME: // # include <mln/core/pixter1d.hh> // # include <mln/core/dpoints_pixter.hh> namespace mln { // Forward declaration. template <typename T> struct image1d; namespace internal { /// Data structure for \c mln::image1d<T>. template <typename T> struct data< image1d<T> > { data(const box1d& b, unsigned bdr); ~data(); T* buffer_; T* array_; box1d b_; // theoretical box unsigned bdr_; box1d vb_; // virtual box, i.e., box including the virtual border void update_vb_(); void allocate_(); void deallocate_(); void swap_ (data< image1d<T> >& other_); void reallocate_(unsigned new_border); }; } // end of namespace mln::internal namespace trait { template <typename T> struct image_< image1d<T> > : default_image_< T, image1d<T> > { // misc typedef trait::image::category::primary category; typedef trait::image::speed::fastest speed; typedef trait::image::size::regular size; // value typedef trait::image::vw_io::none vw_io; typedef trait::image::vw_set::none vw_set; typedef trait::image::value_access::direct value_access; typedef trait::image::value_storage::one_block value_storage; typedef trait::image::value_browsing::site_wise_only value_browsing; typedef trait::image::value_alignment::with_grid value_alignment; typedef trait::image::value_io::read_write value_io; // site / domain typedef trait::image::pw_io::read_write pw_io; typedef trait::image::localization::basic_grid localization; typedef trait::image::dimension::one_d dimension; // extended domain typedef trait::image::ext_domain::extendable ext_domain; typedef trait::image::ext_value::multiple ext_value; typedef trait::image::ext_io::read_write ext_io; }; } // end of namespace mln::trait // Forward declaration. template <typename T> struct image1d; namespace convert { namespace over_load { // histo::array -> image1d. template <typename V, typename T> void from_to_(const histo::array<V>& from, image1d<T>& to); // util::array -> image1d. template <typename V, typename T> void from_to_(const util::array<V>& from, image1d<T>& to); } // end of namespace mln::convert::over_load } // end of namespace mln::convert /// Basic 1D image class. /// /// The parameter \c T is the type of pixel values. This image class /// stores data in memory and has a virtual border with constant /// thickness before and after data. /// /// \ingroup modimageconcrete // template <typename T> struct image1d : public internal::image_primary< T, box1d, image1d<T> > { typedef internal::image_primary< T, mln::box1d, image1d<T> > super_; /// Value associated type. typedef T value; /// Return type of read-only access. typedef const T& rvalue; /// Return type of read-write access. typedef T& lvalue; /// Skeleton. typedef image1d< tag::value_<T> > skeleton; /// Constructor without argument. image1d(); /// Constructor with the number of indices and the border /// thickness. image1d(unsigned ninds, unsigned bdr = border::thickness); /// Constructor with a box and the border thickness. image1d(const box1d& b, unsigned bdr = border::thickness); /// Initialize an empty image. void init_(const box1d& b, unsigned bdr = border::thickness); /// Test if \p p is valid. bool has(const point1d& p) const; /// Give the definition domain. const box1d& domain() const; /// Give the bounding box domain. const box1d& bbox() const; /// Give the border thickness. unsigned border() const; /// Read-only access to the image value located at point \p p. const T& operator()(const point1d& p) const; /// Read-write access to the image value located at point \p p. T& operator()(const point1d& p); // Specific methods: // ----------------- /// Read-only access to the image value located at (\p index). const T& at_(def::coord index) const; /// Read-write access to the image value located at (\p index). T& at_(def::coord index); /// Give the number of indexes. unsigned ninds() const; /// Fast Image method // Give the index of a point. using super_::index_of_point; /// Give the offset corresponding to the delta-point \p dp. int delta_index(const dpoint1d& dp) const; /// Give the point corresponding to the offset \p o. point1d point_at_index(unsigned i) const; /// Give a hook to the value buffer. const T* buffer() const; /// Give a hook to the value buffer. T* buffer(); /// Read-only access to the \p i-th image value (including the /// border). const T& element(unsigned i) const; /// Read-write access to the \p i-th image value (including the /// border). T& element(unsigned i); /// Give the number of cells (points including border ones). unsigned nelements() const; /// Resize image border with new_border. void resize_(unsigned new_border); }; template <typename T, typename J> void init_(tag::image_t, mln::image1d<T>& target, const J& model); # ifndef MLN_INCLUDE_ONLY // init_ template <typename T> inline void init_(tag::border_t, unsigned& b, const image1d<T>& model) { b = model.border(); } template <typename T, typename J> inline void init_(tag::image_t, image1d<T>& target, const J& model) { box1d b; init_(tag::bbox, b, model); unsigned bdr; init_(tag::border, bdr, model); target.init_(b, bdr); } // internal::data< image1d<T> > namespace internal { template <typename T> inline data< image1d<T> >::data(const box1d& b, unsigned bdr) : buffer_(0), array_ (0), b_ (b), bdr_ (bdr) { allocate_(); } template <typename T> inline data< image1d<T> >::~data() { deallocate_(); } template <typename T> inline void data< image1d<T> >::update_vb_() { dpoint1d dp(all_to(bdr_)); vb_.pmin() = b_.pmin() - dp; vb_.pmax() = b_.pmax() + dp; } template <typename T> inline void data< image1d<T> >::allocate_() { update_vb_(); unsigned ni = vb_.len(0); buffer_ = new T[ni]; array_ = buffer_ - vb_.pmin().ind(); mln_postcondition(vb_.len(0) == b_.len(0) + 2 * bdr_); } template <typename T> inline void data< image1d<T> >::deallocate_() { if (buffer_) { delete[] buffer_; buffer_ = 0; } } template <typename T> inline void data< image1d<T> >::swap_(data< image1d<T> >& other_) { data< image1d<T> > self_ = *this; *this = other_; other_ = self_; } template <typename T> inline void data< image1d<T> >::reallocate_(unsigned new_border) { data< image1d<T> >& tmp = *(new data< image1d<T> >(this->b_, new_border)); this->swap_(tmp); } } // end of namespace mln::internal // image1d<T> template <typename T> inline image1d<T>::image1d() { } template <typename T> inline image1d<T>::image1d(const box1d& b, unsigned bdr) { init_(b, bdr); } template <typename T> inline image1d<T>::image1d(unsigned ninds, unsigned bdr) { mln_precondition(ninds != 0); init_(make::box1d(ninds), bdr); } template <typename T> inline void image1d<T>::init_(const box1d& b, unsigned bdr) { mln_precondition(! this->is_valid()); this->data_ = new internal::data< image1d<T> >(b, bdr); } template <typename T> inline const box1d& image1d<T>::domain() const { mln_precondition(this->is_valid()); return this->data_->b_; } template <typename T> inline const box1d& image1d<T>::bbox() const { mln_precondition(this->is_valid()); return this->data_->b_; } template <typename T> inline unsigned image1d<T>::border() const { mln_precondition(this->is_valid()); return this->data_->bdr_; } template <typename T> inline unsigned image1d<T>::nelements() const { mln_precondition(this->is_valid()); return this->data_->vb_.nsites(); } template <typename T> inline bool image1d<T>::has(const point1d& p) const { mln_precondition(this->is_valid()); return this->data_->vb_.has(p); } template <typename T> inline const T& image1d<T>::operator()(const point1d& p) const { mln_precondition(this->has(p)); return this->data_->array_[p.ind()]; } template <typename T> inline T& image1d<T>::operator()(const point1d& p) { mln_precondition(this->has(p)); return this->data_->array_[p.ind()]; } template <typename T> inline const T& image1d<T>::at_(def::coord index) const { mln_precondition(this->has(point1d(index))); return this->data_->array_[index]; } template <typename T> inline unsigned image1d<T>::ninds() const { mln_precondition(this->is_valid()); return this->data_->b_.len(0); } template <typename T> inline T& image1d<T>::at_(def::coord index) { mln_precondition(this->has(point1d(index))); return this->data_->array_[index]; } template <typename T> inline const T& image1d<T>::element(unsigned i) const { mln_precondition(i < nelements()); return this->data_->buffer_[i]; } template <typename T> inline T& image1d<T>::element(unsigned i) { mln_precondition(i < nelements()); return this->data_->buffer_[i]; } template <typename T> inline const T* image1d<T>::buffer() const { mln_precondition(this->is_valid()); return this->data_->buffer_; } template <typename T> inline T* image1d<T>::buffer() { mln_precondition(this->is_valid()); return this->data_->buffer_; } template <typename T> inline int image1d<T>::delta_index(const dpoint1d& dp) const { mln_precondition(this->is_valid()); int o = dp[0]; return o; } template <typename T> inline point1d image1d<T>::point_at_index(unsigned i) const { mln_precondition(i < nelements()); def::coord ind = static_cast<def::coord>(i + this->data_->vb_.min_ind()); point1d p = point1d(ind); mln_postcondition(& this->operator()(p) == this->data_->buffer_ + i); return p; } template <typename T> inline void image1d<T>::resize_(unsigned new_border) { this->data_->reallocate_(new_border); } # endif // ! MLN_INCLUDE_ONLY } // end of namespace mln # include <mln/core/trait/pixter.hh> # include <mln/core/dpoints_pixter.hh> # include <mln/core/pixter1d.hh> # include <mln/core/w_window.hh> namespace mln { namespace convert { namespace over_load { // histo::array -> image1d. template <typename V, typename T> inline void from_to_(const histo::array<V>& from, image1d<T>& to) { // FIXME: The code should looks like: // box1d b(point1d(mln_min(V)), point1d(mln_max(V))); // ima.init_(b, 0); // for_all(v) // from_to(h(v), ima.at_( index_of(v) )); to.init_(make::box1d(from.nvalues())); for (unsigned i = 0; i < from.nvalues(); ++i) from_to(from[i], to(point1d(i))); } // util::array -> image1d. template <typename V, typename T> inline void from_to_(const util::array<V>& from, image1d<T>& to) { to.init_(make::box1d(from.nelements())); for (unsigned i = 0; i < from.nelements(); ++i) from_to(from[i], to(point1d(i))); } } // end of namespace mln::convert::over_load } // end of namespace mln::convert namespace trait { // pixter template <typename T> struct fwd_pixter< image1d<T> > { typedef fwd_pixter1d< image1d<T> > ret; }; template <typename T> struct fwd_pixter< const image1d<T> > { typedef fwd_pixter1d< const image1d<T> > ret; }; template <typename T> struct bkd_pixter< image1d<T> > { typedef bkd_pixter1d< image1d<T> > ret; }; template <typename T> struct bkd_pixter< const image1d<T> > { typedef bkd_pixter1d< const image1d<T> > ret; }; // qixter template <typename T, typename W> struct fwd_qixter< image1d<T>, W > { typedef dpoints_fwd_pixter< image1d<T> > ret; }; template <typename T, typename W> struct fwd_qixter< const image1d<T>, W > { typedef dpoints_fwd_pixter< const image1d<T> > ret; }; template <typename T, typename W> struct bkd_qixter< image1d<T>, W > { typedef dpoints_bkd_pixter< image1d<T> > ret; }; template <typename T, typename W> struct bkd_qixter< const image1d<T>, W > { typedef dpoints_bkd_pixter< const image1d<T> > ret; }; // nixter template <typename T, typename W> struct fwd_nixter< image1d<T>, W > { typedef dpoints_fwd_pixter< image1d<T> > ret; }; template <typename T, typename W> struct fwd_nixter< const image1d<T>, W > { typedef dpoints_fwd_pixter< const image1d<T> > ret; }; template <typename T, typename W> struct bkd_nixter< image1d<T>, W > { typedef dpoints_bkd_pixter< image1d<T> > ret; }; template <typename T, typename W> struct bkd_nixter< const image1d<T>, W > { typedef dpoints_bkd_pixter< const image1d<T> > ret; }; } // end of namespace mln::trait } // end of namespace mln # include <mln/make/image.hh> #endif // ! MLN_CORE_IMAGE_IMAGE1D_HH
[ "trueg@kde.org" ]
trueg@kde.org
3bd594deec1703bc4a8a66f5b92f89715af164db
fb8a3eecfd7ccf86daa5eedda31817b217207f9e
/test/Test.cpp
4c47c030d52bd48a0e0d9b26fc60b2969ef11b31
[ "Apache-2.0" ]
permissive
dipu-bd/tupin
7ae0bb093a5705b005d06447652eca8a2f733148
d5bca1cd7c9ecc54950a69a6477ac483a8307d1d
refs/heads/master
2021-01-13T12:50:22.908237
2017-02-03T13:24:27
2017-02-03T13:24:27
78,443,445
2
0
null
null
null
null
UTF-8
C++
false
false
1,173
cpp
#include <bits/stdc++.h> #include <execinfo.h> #include "../lib/tupin.h" #include "Data.hpp" #define FAILE_SAFE_MODE false typedef void (*FUNCTION)(void); typedef pair<FUNCTION, const char*> PFS; void runTests(bool failSafe, PFS all_tests[]) { int pass = 0, fail = 0; for (int i = 0; all_tests[i].first; i++) { FUNCTION f = all_tests[i].first; if (!failSafe) { f(); ++pass; printf("%s -- passed.", all_tests[i].second); } else { try { f(); ++pass; printf("%s -- passed.", all_tests[i].second); } catch (...) { ++fail; printf("%s -- failed.", all_tests[i].second); } } puts(""); } printf("\n-- Test Over: %d passed. %d failed.\n", pass, fail); } int main(int argc, char **argv) { PFS all_tests[] = { {&testNumber, "testNumber"}, {&testBool, "testBool"}, {&testString, "testString"}, {0, "null"}, }; runTests(FAILE_SAFE_MODE, all_tests); return 0; }
[ "dipu.sudipta@gmail.com" ]
dipu.sudipta@gmail.com
b2c0b0dd233e9f37c149e115ca54f94f8b4f3fd6
a00315b4799ced889ddd0ca00321cfdfdbafd43b
/Lesson6/Part2/icpc_7752.cpp
470cfa544ffa84ca2cf5cb3e2bcb88fe9bd50f74
[]
no_license
yakirhelets/234901_CP
928bd963882ad7f875a35317767688ae53322ecc
92dd1e17d43091c873bf302edeaf333a4f240f6b
refs/heads/master
2020-05-09T03:41:52.547440
2019-07-07T14:40:49
2019-07-07T14:40:49
180,982,276
0
0
null
null
null
null
UTF-8
C++
false
false
2,111
cpp
#include <algorithm> #include <cassert> #include <cmath> #include <iomanip> #include <iostream> #include <iterator> #include <list> #include <map> #include <queue> #include <set> #include <stack> #include <tuple> #include <unordered_map> #include <unordered_set> #include <vector> // clang-format off #ifndef LOAD_TEST // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) #define DO_LOAD_TEST(N) do {} while (false) #else #include "../load_test.hpp" // NOLINTNEXTLINE(cppcoreguidelines-macro-usage) #define DO_LOAD_TEST(N) auto re_ref = load_test(__FILE__, (N)) #endif // clang-format on using namespace std; using ll = long long; using ull = unsigned long long; using sz = size_t; int releaseFirstAndPut(int init, vector<int>& before, vector<int>& after) { int numOfActions=0; int n=init; while(before[n] == after[n] && before[before[n]-1] != 0) { n = before[n]-1; } if (before[before[n]-1] == 0) { numOfActions++; } before[n] = 0; return numOfActions; } /// XXXXX - Name int main() { DO_LOAD_TEST(0); int n; while (cin >> n) { vector<int> before(n); for (int i=0 ; i<n ; i++) { int p; cin >> p; before[i] = p; } vector<int> after(n); for (int i=0 ; i<n ; i++) { int p; cin >> p; after[i] = p; } int numOfActions = 0; for (int i=0 ; i<n ; i++) { if (before[i] != after[i]) { if (before[i] != 0 && after[i] != 0) { numOfActions+=releaseFirstAndPut(i, before, after); } } } for (int i=0 ; i<n ; i++) { if (before[i] != after[i]) { if (before[i] == 0) { before[i] = after[i]; numOfActions++; } else { if(after[i]==0) { before[i] = after[i]; numOfActions++; } } } } cout << numOfActions << endl; } }
[ "yakir.helets@gmail.com" ]
yakir.helets@gmail.com
6d5462d3642874349ae2440ecd3042b9d69897a4
0dca3325c194509a48d0c4056909175d6c29f7bc
/dataworks-public/src/model/DeleteQualityRelativeNodeRequest.cc
db27f6bb8248edd58ce626939b260b7b51b6818d
[ "Apache-2.0" ]
permissive
dingshiyu/aliyun-openapi-cpp-sdk
3eebd9149c2e6a2b835aba9d746ef9e6bef9ad62
4edd799a79f9b94330d5705bb0789105b6d0bb44
refs/heads/master
2023-07-31T10:11:20.446221
2021-09-26T10:08:42
2021-09-26T10:08:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,305
cc
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <alibabacloud/dataworks-public/model/DeleteQualityRelativeNodeRequest.h> using AlibabaCloud::Dataworks_public::Model::DeleteQualityRelativeNodeRequest; DeleteQualityRelativeNodeRequest::DeleteQualityRelativeNodeRequest() : RpcServiceRequest("dataworks-public", "2020-05-18", "DeleteQualityRelativeNode") { setMethod(HttpRequest::Method::Post); } DeleteQualityRelativeNodeRequest::~DeleteQualityRelativeNodeRequest() {} std::string DeleteQualityRelativeNodeRequest::getProjectName()const { return projectName_; } void DeleteQualityRelativeNodeRequest::setProjectName(const std::string& projectName) { projectName_ = projectName; setBodyParameter("ProjectName", projectName); } long DeleteQualityRelativeNodeRequest::getTargetNodeProjectId()const { return targetNodeProjectId_; } void DeleteQualityRelativeNodeRequest::setTargetNodeProjectId(long targetNodeProjectId) { targetNodeProjectId_ = targetNodeProjectId; setBodyParameter("TargetNodeProjectId", std::to_string(targetNodeProjectId)); } std::string DeleteQualityRelativeNodeRequest::getMatchExpression()const { return matchExpression_; } void DeleteQualityRelativeNodeRequest::setMatchExpression(const std::string& matchExpression) { matchExpression_ = matchExpression; setBodyParameter("MatchExpression", matchExpression); } std::string DeleteQualityRelativeNodeRequest::getEnvType()const { return envType_; } void DeleteQualityRelativeNodeRequest::setEnvType(const std::string& envType) { envType_ = envType; setBodyParameter("EnvType", envType); } std::string DeleteQualityRelativeNodeRequest::getTargetNodeProjectName()const { return targetNodeProjectName_; } void DeleteQualityRelativeNodeRequest::setTargetNodeProjectName(const std::string& targetNodeProjectName) { targetNodeProjectName_ = targetNodeProjectName; setBodyParameter("TargetNodeProjectName", targetNodeProjectName); } std::string DeleteQualityRelativeNodeRequest::getTableName()const { return tableName_; } void DeleteQualityRelativeNodeRequest::setTableName(const std::string& tableName) { tableName_ = tableName; setBodyParameter("TableName", tableName); } long DeleteQualityRelativeNodeRequest::getNodeId()const { return nodeId_; } void DeleteQualityRelativeNodeRequest::setNodeId(long nodeId) { nodeId_ = nodeId; setBodyParameter("NodeId", std::to_string(nodeId)); } long DeleteQualityRelativeNodeRequest::getProjectId()const { return projectId_; } void DeleteQualityRelativeNodeRequest::setProjectId(long projectId) { projectId_ = projectId; setBodyParameter("ProjectId", std::to_string(projectId)); }
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
e4290815d5b785441c8b409b920b1bb91162a747
90f9301da33fc1e5401ca5430a346610a9423877
/300+/539_Minimum_Time_Difference.h
64f8ff9c7b2316f6ea82bf305fde93ae279ec007
[]
no_license
RiceReallyGood/Leetcode
ff19d101ca7555d0fa79ef746f41da2e5803e6f5
dbc432aeeb7bbd4af30d4afa84acbf6b9f5a16b5
refs/heads/master
2021-01-25T22:58:56.601117
2020-04-10T06:27:31
2020-04-10T06:27:31
243,217,359
0
0
null
null
null
null
UTF-8
C++
false
false
868
h
#include <vector> #include <string> using namespace std; class Solution { public: int findMinDifference(vector<string>& timePoints) { if(timePoints.size() > 1440) return 0; vector<bool> exist(1440, false); for(int i = 0; i < timePoints.size(); i++){ int t = stoi(timePoints[i].substr(0, 2)) * 60 + stoi(timePoints[i].substr(3, 2)); if(exist[t]) return 0; exist[t] = true; } int earliesttime = -1; int i = 0, j = 0; while(!exist[j]) j++; earliesttime = j; int mindiff = 1440; for(i = j, j++;; j++){ while(j < 1440 && !exist[j]) j++; if(j == 1440) break; mindiff = min(mindiff, j - i); i = j; } mindiff = min(mindiff, earliesttime + 1440 - i); return mindiff; } };
[ "1601110073@pku.edu.cn" ]
1601110073@pku.edu.cn
80b438bcf2c9e73da42a3430bda380a7d4c5d7b4
ac7b69e543b9aa2d5214b7a981a84aebce10dc26
/src/HandbookDataItem.h
f7619f2cbd5f8c01d9c363a6088a2b94084eec16
[]
no_license
zeh/argos
95d54d1eb25023632fcfd9601fe5e9b2c48b008a
b8fec767a492e33414c7bd1a96cc6ca8da8f534a
refs/heads/master
2021-01-19T09:01:59.674547
2014-04-22T19:46:40
2014-04-22T19:46:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,730
h
#pragma once #include "InputView.h" #include "ARGOSButtonView.h" #include "DataViewTitle.h" #include "DataViewContentBase.h" #include "HandbookViewOverview.h" #include "HandbookViewDataList.h" #include "HandbookViewWaypoint.h" #include "DataNode.h" #include "HandbookBackgroundView.h" typedef boost::shared_ptr<class HandbookDataItem> HandbookDataItemRef; class HandbookDataItem : public InputView { typedef boost::shared_ptr<HandbookViewOverview> HandbookViewOverviewRef; typedef boost::shared_ptr<DataViewTitle> DVTitleDisplayObjectRef; typedef boost::shared_ptr<DataViewContentBase> DVContentDisplayObjectRef; protected: HandbookBackgroundViewRef background; DataNodeRef dataNode; std::vector<ButtonViewRef> buttons; std::vector<DVContentDisplayObjectRef> views; DVContentDisplayObjectRef data; DVContentDisplayObjectRef waypoint; ButtonViewRef overviewBtn; ButtonViewRef dataBtn; ButtonViewRef waypointBtn; HandbookView3dObjectRef object3D; DVTitleDisplayObjectRef mTitle; DVContentDisplayObjectRef mCurrentContent; std::map<ButtonViewRef, DVContentDisplayObjectRef> mContentMap; void hideOffscreenViews(); int getViewIndex(DVContentDisplayObjectRef view); public: HandbookDataItem(HandbookBackgroundViewRef background, DataNodeRef node, Assets* assets); ~HandbookDataItem(void); virtual void prerender(); virtual void onAnimateIn(); virtual void onAnimateOut(); virtual void setSelection( ci::Vec2i selection ); virtual void handleInput( INPUT_TYPE type ); #ifdef _WIN32 virtual void handleGamepad( XINPUT_GAMEPAD gamepad ); #endif HandbookView3dObjectRef getObject3D(){return object3D;}; };
[ "anthony.tripaldi@nyc03atripaldi.corp.local" ]
anthony.tripaldi@nyc03atripaldi.corp.local
bf16f148efdac9cf3b356d7da444aebb08ecc7d6
8ec5482489a05f29172dae9b95b70b03d386af03
/sources/xray_re/xr_sdk_version.h
28e9fd35af21fbeefa8233c01685d6dd552c43f7
[]
no_license
abramcumner/xray_re-tools
ed4d364a3d3aeda31cfebeb5df03a3d724f1f531
2222ad023c0656cbbdbe7e93d59f7bed29387e5d
refs/heads/master
2023-05-27T01:30:07.434712
2023-05-20T11:56:05
2023-05-20T11:57:23
65,939,733
31
17
null
2023-05-21T13:07:14
2016-08-17T20:30:04
C++
UTF-8
C++
false
false
1,154
h
#ifndef __GNUC__ #pragma once #endif #ifndef __XR_SDK_VERSION_H__ #define __XR_SDK_VERSION_H__ namespace xray_re { enum sdk_version { SDK_VER_756, SDK_VER_1098, SDK_VER_1850, SDK_VER_0_4, SDK_VER_0_5, SDK_VER_0_6, SDK_VER_0_7, SDK_VER_UNKNOWN = -1 }; inline sdk_version sdk_version_from_string(const std::string& str) { if(str == "756") return SDK_VER_756; if(str == "1098") return SDK_VER_1098; if(str == "1850") return SDK_VER_1850; if(str == "0.4") return SDK_VER_0_4; if(str == "0.5") return SDK_VER_0_5; if(str == "0.6") return SDK_VER_0_6; if(str == "0.7") return SDK_VER_0_7; return SDK_VER_UNKNOWN; } inline std::string sdk_version_to_string(sdk_version ver) { switch(ver) { case SDK_VER_756: return "756"; break; case SDK_VER_1098: return "1098"; break; case SDK_VER_1850: return "1850"; break; case SDK_VER_0_4: return "0.4"; break; case SDK_VER_0_5: return "0.5"; break; case SDK_VER_0_6: return "0.6"; break; case SDK_VER_0_7: return "0.7"; break; default: return "<unknown>"; } } } // end of namespace xray_re #endif
[ "abramcumner@yandex.ru" ]
abramcumner@yandex.ru
48387ffc04028c1b77de8ae31f7df090aef6d7d1
c774ccfd604caf197c411e45a81b73fb472cb10e
/src/functions/xlibfunctions.cpp
f2ea3f094ca7b06e9623d71c96d246df3411bfcf
[]
no_license
data-niklas/trac
2e9ea9363d1f2e848a0ed89aacd33b6ca67a0c39
6d7992e60a3165023add5c5fa50e6ad03d85cda8
refs/heads/main
2023-03-30T17:55:42.970948
2023-03-18T19:34:39
2023-03-18T19:34:39
348,401,685
0
1
null
2021-03-21T16:54:28
2021-03-16T15:37:33
C++
UTF-8
C++
false
false
1,406
cpp
#include "./xlibfunctions.h" #include "../libraries/xlib.h" #include "../variables/literal.h" #include <string> void registerXLibFunctions(Registry* r){ r->rFunction(new Function("window_name",[](vector<shared_ptr<Variable>> variables)->shared_ptr<Variable>{ XLib * xlib = XLib::getInstance(); shared_ptr<Variable> var = variables[0]; if (IS_TYPE(Int, intvalue, var)){ Window window = intvalue->value; if (window == 0){ return Void::noreturn(); } XTextProperty prop; XGetWMName(xlib->dpy, window, &prop); return shared_ptr<Variable>(new String(string((char*)prop.value))); } return Void::noreturn(); })); r->rFunction(new Function("is_active",[](vector<shared_ptr<Variable>> variables)->shared_ptr<Variable>{ XLib * xlib = XLib::getInstance(); static Atom ACTIVE_WINDOW = XInternAtom(xlib->dpy, "_NET_ACTIVE_WINDOW",false); Window window = xlib->getWindowProperty(xlib->root, ACTIVE_WINDOW); if (variables.size() != 1)return shared_ptr<Variable>(new Boolean(false)); else if (shared_ptr<Int> var = dynamic_pointer_cast<Int>(variables[0])){ return shared_ptr<Variable>(new Boolean(window == (long unsigned int)var->value)); } else return Void::noreturn(); })); }
[ "51879435+data-niklas@users.noreply.github.com" ]
51879435+data-niklas@users.noreply.github.com
3c38b6ac1b54f92620a2ac59c905beea41361683
70cfbcb6a23f607a8e15c60b0d5afdd27b09e6e0
/Envelope.Core/Calc/CalculationParameters.cpp
ae6410bad0f38601ce06d9c44d5247c093267d85
[]
no_license
Hengle/AirCushionSimulation
3e87077ef0cfc9731c7e8badf517e223e99a6ca9
fa7a0c50edf16a8223a0fb94ddc7191ffd2f673b
refs/heads/master
2023-03-17T16:28:24.714791
2020-10-11T19:08:03
2020-10-11T19:08:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,004
cpp
#include "stdafx.h" #include "CalculationParameters.h" namespace EnvelopeCore { CalculationParameters::CalculationParameters(void) { n_x = 100; n_y = 100; n_phi = 32; n_zeta = 31; timeMin = 0.0; timeMax = 90.0; t = timeMin; dt = 1; dtOutput = 10; cycleNumber = -1; calcScheme[FORCE_GR_INDEX].ignore = false; calcScheme[FORCE_GR_INDEX].sch = EXPLICIT; calcScheme[FORCE_ST_INDEX].ignore = false; calcScheme[FORCE_ST_INDEX].sch = EXPLICIT; calcScheme[FORCE_FL_INDEX].ignore = false; calcScheme[FORCE_FL_INDEX].sch = EXPLICIT; calcScheme[FORCE_PR_INDEX].ignore = false; calcScheme[FORCE_PR_INDEX].sch = EXPLICIT; calcScheme[FORCE_FR_INDEX].ignore = false; calcScheme[FORCE_FR_INDEX].sch = EXPLICIT; solver = INTERNAL; outputToTecplot = false; outputLandscapeToTecplot = false; outputEachStep = false; } CalculationParameters::~CalculationParameters(void) { } bool CalculationParameters::Read(const char * fileName , const char * section) { CIniReader iniReader(fileName); this->dt = iniReader.ReadFloat(section, "dt"); this->timeMax = iniReader.ReadFloat(section, "timeMax"); this->timeMin = iniReader.ReadFloat(section, "timeMin"); this->n_x = iniReader.ReadInteger(section, "n_x"); this->n_y = iniReader.ReadInteger(section, "n_y"); this->n_phi = iniReader.ReadInteger(section, "n_phi"); this->n_zeta = iniReader.ReadInteger(section, "n_zeta"); return true; } bool CalculationParameters::Save(const char * fileName , const char * section) const { CIniWriter iniWriter(fileName); iniWriter.WriteFloat(section, "dt", this->dt ); iniWriter.WriteFloat(section, "timeMax", this->timeMax ); iniWriter.WriteFloat(section, "timeMin", this->timeMin ); iniWriter.WriteInteger(section, "n_x", this->n_x ); iniWriter.WriteInteger(section, "n_y", this->n_y ); iniWriter.WriteInteger(section, "n_phi", this->n_phi ); iniWriter.WriteInteger(section, "n_zeta", this->n_zeta ); return true; } }
[ "vsalosyatov@acumatica.com" ]
vsalosyatov@acumatica.com
2f1f1516354911255e29c9eafce4a53066719d6e
24454e373001e49db71c5048615e039e019ca51e
/vendor/github.com/discordapp/lilliput/deps/osx/include/opencv2/imgcodecs.hpp
e4e858492791c0c75709524abdaf94dc4efc63fc
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
steevee/picfit
b4b6b4c3805352603e8bc1a99c85edfb8840de26
172f24158d0d3ef6e86d77b2475242fc9b83b6c7
refs/heads/master
2021-05-23T07:52:15.471748
2020-02-17T15:40:40
2020-02-17T15:40:40
241,121,910
0
1
MIT
2020-02-17T14:41:15
2020-02-17T14:03:27
null
UTF-8
C++
false
false
20,704
hpp
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. // Copyright (C) 2009, Willow Garage Inc., all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's 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. // // * The name of the copyright holders may not 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 Intel Corporation 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. // //M*/ #ifndef OPENCV_IMGCODECS_HPP #define OPENCV_IMGCODECS_HPP #include "opencv2/core.hpp" /** @defgroup imgcodecs Image file reading and writing @{ @defgroup imgcodecs_c C API @defgroup imgcodecs_ios iOS glue @} */ //////////////////////////////// image codec //////////////////////////////// namespace cv { //! @addtogroup imgcodecs //! @{ //! Imread flags enum ImreadModes { IMREAD_UNCHANGED = -1, //!< If set, return the loaded image as is (with alpha channel, otherwise it gets cropped). IMREAD_GRAYSCALE = 0, //!< If set, always convert image to the single channel grayscale image. IMREAD_COLOR = 1, //!< If set, always convert image to the 3 channel BGR color image. IMREAD_ANYDEPTH = 2, //!< If set, return 16-bit/32-bit image when the input has the corresponding depth, otherwise convert it to 8-bit. IMREAD_ANYCOLOR = 4, //!< If set, the image is read in any possible color format. IMREAD_LOAD_GDAL = 8, //!< If set, use the gdal driver for loading the image. IMREAD_REDUCED_GRAYSCALE_2 = 16, //!< If set, always convert image to the single channel grayscale image and the image size reduced 1/2. IMREAD_REDUCED_COLOR_2 = 17, //!< If set, always convert image to the 3 channel BGR color image and the image size reduced 1/2. IMREAD_REDUCED_GRAYSCALE_4 = 32, //!< If set, always convert image to the single channel grayscale image and the image size reduced 1/4. IMREAD_REDUCED_COLOR_4 = 33, //!< If set, always convert image to the 3 channel BGR color image and the image size reduced 1/4. IMREAD_REDUCED_GRAYSCALE_8 = 64, //!< If set, always convert image to the single channel grayscale image and the image size reduced 1/8. IMREAD_REDUCED_COLOR_8 = 65, //!< If set, always convert image to the 3 channel BGR color image and the image size reduced 1/8. IMREAD_IGNORE_ORIENTATION = 128 //!< If set, do not rotate the image according to EXIF's orientation flag. }; //! Imwrite flags enum ImwriteFlags { IMWRITE_JPEG_QUALITY = 1, //!< For JPEG, it can be a quality from 0 to 100 (the higher is the better). Default value is 95. IMWRITE_JPEG_PROGRESSIVE = 2, //!< Enable JPEG features, 0 or 1, default is False. IMWRITE_JPEG_OPTIMIZE = 3, //!< Enable JPEG features, 0 or 1, default is False. IMWRITE_JPEG_RST_INTERVAL = 4, //!< JPEG restart interval, 0 - 65535, default is 0 - no restart. IMWRITE_JPEG_LUMA_QUALITY = 5, //!< Separate luma quality level, 0 - 100, default is 0 - don't use. IMWRITE_JPEG_CHROMA_QUALITY = 6, //!< Separate chroma quality level, 0 - 100, default is 0 - don't use. IMWRITE_PNG_COMPRESSION = 16, //!< For PNG, it can be the compression level from 0 to 9. A higher value means a smaller size and longer compression time. Default value is 3. Also strategy is changed to IMWRITE_PNG_STRATEGY_DEFAULT (Z_DEFAULT_STRATEGY). IMWRITE_PNG_STRATEGY = 17, //!< One of cv::ImwritePNGFlags, default is IMWRITE_PNG_STRATEGY_DEFAULT. IMWRITE_PNG_BILEVEL = 18, //!< Binary level PNG, 0 or 1, default is 0. IMWRITE_PXM_BINARY = 32, //!< For PPM, PGM, or PBM, it can be a binary format flag, 0 or 1. Default value is 1. IMWRITE_WEBP_QUALITY = 64, //!< For WEBP, it can be a quality from 1 to 100 (the higher is the better). By default (without any parameter) and for quality above 100 the lossless compression is used. IMWRITE_PAM_TUPLETYPE = 128,//!< For PAM, sets the TUPLETYPE field to the corresponding string value that is defined for the format }; //! Imwrite PNG specific flags used to tune the compression algorithm. /** These flags will be modify the way of PNG image compression and will be passed to the underlying zlib processing stage. - The effect of IMWRITE_PNG_STRATEGY_FILTERED is to force more Huffman coding and less string matching; it is somewhat intermediate between IMWRITE_PNG_STRATEGY_DEFAULT and IMWRITE_PNG_STRATEGY_HUFFMAN_ONLY. - IMWRITE_PNG_STRATEGY_RLE is designed to be almost as fast as IMWRITE_PNG_STRATEGY_HUFFMAN_ONLY, but give better compression for PNG image data. - The strategy parameter only affects the compression ratio but not the correctness of the compressed output even if it is not set appropriately. - IMWRITE_PNG_STRATEGY_FIXED prevents the use of dynamic Huffman codes, allowing for a simpler decoder for special applications. */ enum ImwritePNGFlags { IMWRITE_PNG_STRATEGY_DEFAULT = 0, //!< Use this value for normal data. IMWRITE_PNG_STRATEGY_FILTERED = 1, //!< Use this value for data produced by a filter (or predictor).Filtered data consists mostly of small values with a somewhat random distribution. In this case, the compression algorithm is tuned to compress them better. IMWRITE_PNG_STRATEGY_HUFFMAN_ONLY = 2, //!< Use this value to force Huffman encoding only (no string match). IMWRITE_PNG_STRATEGY_RLE = 3, //!< Use this value to limit match distances to one (run-length encoding). IMWRITE_PNG_STRATEGY_FIXED = 4 //!< Using this value prevents the use of dynamic Huffman codes, allowing for a simpler decoder for special applications. }; //! Imwrite PAM specific tupletype flags used to define the 'TUPETYPE' field of a PAM file. enum ImwritePAMFlags { IMWRITE_PAM_FORMAT_NULL = 0, IMWRITE_PAM_FORMAT_BLACKANDWHITE = 1, IMWRITE_PAM_FORMAT_GRAYSCALE = 2, IMWRITE_PAM_FORMAT_GRAYSCALE_ALPHA = 3, IMWRITE_PAM_FORMAT_RGB = 4, IMWRITE_PAM_FORMAT_RGB_ALPHA = 5, }; /** * @brief Picture orientation which may be taken from EXIF * Orientation usually matters when the picture is taken by * smartphone or other camera with orientation sensor support * Corresponds to EXIF 2.3 Specification */ enum ImageOrientation { IMAGE_ORIENTATION_TL = 1, ///< Horizontal (normal) IMAGE_ORIENTATION_TR = 2, ///< Mirrored horizontal IMAGE_ORIENTATION_BR = 3, ///< Rotate 180 IMAGE_ORIENTATION_BL = 4, ///< Mirrored vertical IMAGE_ORIENTATION_LT = 5, ///< Mirrored horizontal & rotate 270 CW IMAGE_ORIENTATION_RT = 6, ///< Rotate 90 CW IMAGE_ORIENTATION_RB = 7, ///< Mirrored horizontal & rotate 90 CW IMAGE_ORIENTATION_LB = 8 ///< Rotate 270 CW }; /** @brief Decodes an image so that it can be rendered as pixels * * This class should not be constructed directly. Instead, use * one of the findDecoder methods to create a new decoder. * * Once created, the decoder should have setSource called * with the source of the image. * * Next, call readHeader() to load the image metadata. This * populates the height/width/type fields. * * Finally, use readData() to decode the image into a * Mat where the pixels should be stored */ class CV_EXPORTS ImageDecoder { public: ImageDecoder(); ImageDecoder(const ImageDecoder& d); ImageDecoder& operator = (const ImageDecoder& d); /** @brief Create an ImageDecoder that can decode the contents pointed at by filename * @param[in] filename File to search * * This method *does not* inspect the extension of the filename, only the contents * in the file itself. So if image.jpg actually contains PNG data, then the * appropriate PNG decoder will be returned when ImageDecoder("image.jpg") is called. * * @return Image decoder to parse image file. */ ImageDecoder( const String& filename ); /** @brief Create an ImageDecoder that can decode the encoded contents of buf * @param[in] buf vector of encoded bytes * * @return Image decoder to parse image file. */ ImageDecoder( const Mat& buf ); ~ImageDecoder(); /** Read the image metadata from the decoder source. * Call after setSource has been called * Sets decoder width, height, type * Returns true on success */ bool readHeader(); /** Read the image data from the decoder source. * Loads deserialized pixels into img, which should be large enough * to store entire image. * Returns true on success */ bool readData( Mat& img ); /** Get image width. Only returns successfully after readHeader() has been called. */ int width() const; /** Get image height. Only returns successfully after readHeader() has been called. */ int height() const; /** Get image pixel data type. Only returns successfully after readHeader() has been called. */ int type() const; /** Get the image's orientation, as set by its metadata, if any */ int orientation() const; int setScale( const int& scale_denom ); /// Called after readData to advance to the next page, if any. bool nextPage(); /* Get the description for this instance of ImageDecoder */ String getDescription() const; bool empty() const; operator bool() const; bool operator!() const; class Impl; ImageDecoder(const String& filename, Ptr<Impl> i); ImageDecoder(const Mat& buf, Ptr<Impl> i); protected: Ptr<Impl> p; }; /** @brief Encodes pixels into an image format * * This class should not be constructed directly. Instead, use * findEncoder to construct an Encoder for a particular type of image. */ class CV_EXPORTS ImageEncoder { public: ImageEncoder(); ImageEncoder(const ImageEncoder& d); ImageEncoder& operator = (const ImageEncoder& d); /** @brief Create an ImageEncoder that can encode pixels into a specific format * @param[in] _ext hint for encoder type * @param[in] filename where to save encoded image * * @return Image encoder to encode image file. */ ImageEncoder( const String& _ext, const String& filename ); /** @brief Create an ImageEncoder that can encode pixels into a specific format * @param[in] _ext hint for encoder type * @param[in] buf where to save encoded image * * @return Image encoder to encode image file. */ ImageEncoder( const String& _ext, Mat& buf ); ~ImageEncoder(); bool isFormatSupported( int depth ) const; /** Write the pixels contained by img into the image destination. * params accepts the same params as imwrite */ bool write( const Mat& img, InputArray params ); /* Get the description for this instance of ImageEncoder */ String getDescription() const; void throwOnEror() const; bool empty() const; operator bool() const; bool operator!() const; class Impl; ImageEncoder(const String& filename, Ptr<Impl> i); ImageEncoder(Mat& buf, Ptr<Impl> i); protected: Ptr<Impl> p; }; /** @brief Applies the orientation transform specified by orientation * @param[in] orientation a valid orientation value * @param[in] img a Mat containing an image to orient */ CV_EXPORTS_W void OrientationTransform(int orientation, Mat& img); /** @brief Loads an image from a file. @anchor imread The function imread loads an image from the specified file and returns it. If the image cannot be read (because of missing file, improper permissions, unsupported or invalid format), the function returns an empty matrix ( Mat::data==NULL ). Currently, the following file formats are supported: - Windows bitmaps - \*.bmp, \*.dib (always supported) - JPEG files - \*.jpeg, \*.jpg, \*.jpe (see the *Notes* section) - JPEG 2000 files - \*.jp2 (see the *Notes* section) - Portable Network Graphics - \*.png (see the *Notes* section) - WebP - \*.webp (see the *Notes* section) - Portable image format - \*.pbm, \*.pgm, \*.ppm \*.pxm, \*.pnm (always supported) - Sun rasters - \*.sr, \*.ras (always supported) - TIFF files - \*.tiff, \*.tif (see the *Notes* section) - OpenEXR Image files - \*.exr (see the *Notes* section) - Radiance HDR - \*.hdr, \*.pic (always supported) - Raster and Vector geospatial data supported by Gdal (see the *Notes* section) @note - The function determines the type of an image by the content, not by the file extension. - In the case of color images, the decoded images will have the channels stored in **B G R** order. - On Microsoft Windows\* OS and MacOSX\*, the codecs shipped with an OpenCV image (libjpeg, libpng, libtiff, and libjasper) are used by default. So, OpenCV can always read JPEGs, PNGs, and TIFFs. On MacOSX, there is also an option to use native MacOSX image readers. But beware that currently these native image loaders give images with different pixel values because of the color management embedded into MacOSX. - On Linux\*, BSD flavors and other Unix-like open-source operating systems, OpenCV looks for codecs supplied with an OS image. Install the relevant packages (do not forget the development files, for example, "libjpeg-dev", in Debian\* and Ubuntu\*) to get the codec support or turn on the OPENCV_BUILD_3RDPARTY_LIBS flag in CMake. - In the case you set *WITH_GDAL* flag to true in CMake and @ref IMREAD_LOAD_GDAL to load the image, then [GDAL](http://www.gdal.org) driver will be used in order to decode the image by supporting the following formats: [Raster](http://www.gdal.org/formats_list.html), [Vector](http://www.gdal.org/ogr_formats.html). - If EXIF information are embedded in the image file, the EXIF orientation will be taken into account and thus the image will be rotated accordingly except if the flag @ref IMREAD_IGNORE_ORIENTATION is passed. @param filename Name of file to be loaded. @param flags Flag that can take values of cv::ImreadModes */ CV_EXPORTS_W Mat imread( const String& filename, int flags = IMREAD_COLOR ); /** @brief Loads a multi-page image from a file. The function imreadmulti loads a multi-page image from the specified file into a vector of Mat objects. @param filename Name of file to be loaded. @param flags Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. @param mats A vector of Mat objects holding each page, if more than one. @sa cv::imread */ CV_EXPORTS_W bool imreadmulti(const String& filename, std::vector<Mat>& mats, int flags = IMREAD_ANYCOLOR); /** @brief Saves an image to a specified file. The function imwrite saves the image to the specified file. The image format is chosen based on the filename extension (see cv::imread for the list of extensions). Only 8-bit (or 16-bit unsigned (CV_16U) in case of PNG, JPEG 2000, and TIFF) single-channel or 3-channel (with 'BGR' channel order) images can be saved using this function. If the format, depth or channel order is different, use Mat::convertTo , and cv::cvtColor to convert it before saving. Or, use the universal FileStorage I/O functions to save the image to XML or YAML format. It is possible to store PNG images with an alpha channel using this function. To do this, create 8-bit (or 16-bit) 4-channel image BGRA, where the alpha channel goes last. Fully transparent pixels should have alpha set to 0, fully opaque pixels should have alpha set to 255/65535. The sample below shows how to create such a BGRA image and store to PNG file. It also demonstrates how to set custom compression parameters : @code #include <opencv2/opencv.hpp> using namespace cv; using namespace std; void createAlphaMat(Mat &mat) { CV_Assert(mat.channels() == 4); for (int i = 0; i < mat.rows; ++i) { for (int j = 0; j < mat.cols; ++j) { Vec4b& bgra = mat.at<Vec4b>(i, j); bgra[0] = UCHAR_MAX; // Blue bgra[1] = saturate_cast<uchar>((float (mat.cols - j)) / ((float)mat.cols) * UCHAR_MAX); // Green bgra[2] = saturate_cast<uchar>((float (mat.rows - i)) / ((float)mat.rows) * UCHAR_MAX); // Red bgra[3] = saturate_cast<uchar>(0.5 * (bgra[1] + bgra[2])); // Alpha } } } int main(int argv, char **argc) { // Create mat with alpha channel Mat mat(480, 640, CV_8UC4); createAlphaMat(mat); vector<int> compression_params; compression_params.push_back(IMWRITE_PNG_COMPRESSION); compression_params.push_back(9); try { imwrite("alpha.png", mat, compression_params); } catch (cv::Exception& ex) { fprintf(stderr, "Exception converting image to PNG format: %s\n", ex.what()); return 1; } fprintf(stdout, "Saved PNG file with alpha data.\n"); return 0; } @endcode @param filename Name of the file. @param img Image to be saved. @param params Format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .) see cv::ImwriteFlags */ CV_EXPORTS_W bool imwrite( const String& filename, InputArray img, const std::vector<int>& params = std::vector<int>()); /** @brief Reads an image from a buffer in memory. The function imdecode reads an image from the specified buffer in the memory. If the buffer is too short or contains invalid data, the function returns an empty matrix ( Mat::data==NULL ). See cv::imread for the list of supported formats and flags description. @note In the case of color images, the decoded images will have the channels stored in **B G R** order. @param buf Input array or vector of bytes. @param flags The same flags as in cv::imread, see cv::ImreadModes. */ CV_EXPORTS_W Mat imdecode( InputArray buf, int flags ); /** @overload @param buf @param flags @param dst The optional output placeholder for the decoded matrix. It can save the image reallocations when the function is called repeatedly for images of the same size. */ CV_EXPORTS Mat imdecode( InputArray buf, int flags, Mat* dst); /** @brief Encodes an image into a memory buffer. The function imencode compresses the image and stores it in the memory buffer that is resized to fit the result. See cv::imwrite for the list of supported formats and flags description. @param ext File extension that defines the output format. @param img Image to be written. @param buf Output buffer resized to fit the compressed image. @param params Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. */ CV_EXPORTS_W bool imencode( const String& ext, InputArray img, CV_OUT std::vector<uchar>& buf, const std::vector<int>& params = std::vector<int>()); //! @} imgcodecs } // cv #endif //OPENCV_IMGCODECS_HPP
[ "m@edouard.paris" ]
m@edouard.paris
be80a0dae6ce65a39017b5e1501cdeaf106e257b
79e1178d00bfa1b68ea5757e88a2737c5a97bd15
/examples/example_panel.cpp
11fed79395bf6e3722f13556ad63ec8283423bfb
[]
no_license
gtarim/libcppcurses
211bb7e68f1d5bfdba8dcbeb5c60cfdd5d5f5b7a
2a8453ebb9cabb8fe75013b2a37306a1d56d9f76
refs/heads/main
2023-01-07T01:49:11.948241
2020-11-11T20:16:50
2020-11-11T20:16:50
310,836,083
0
0
null
null
null
null
UTF-8
C++
false
false
2,312
cpp
#include <iostream> #include "curses/curses.hpp" int main(int argc, char const *argv[]) { int colsMin {40}, linesMin {23}; CursesUI::Curses curses { colsMin, linesMin }; curses.startColor(); curses.initColor(0, COLOR_WHITE, COLOR_BLACK); curses.initColor(1, COLOR_GREEN, COLOR_BLACK); CursesUI::Text text {}; text.write(0,LINES-2,"[ -> to hide panel",false); text.write(0,LINES-1,"] -> to show panel",false); if(!curses.isSizeFit()) { curses.refreshWin(); curses.enableItalic(true); text.write(0, 0, "Curses size is should be greater then" + std::to_string(colsMin) + "x" + std::to_string(linesMin), true); curses.enableItalic(false); getch(); curses.clearWin(); curses.endWin(); return -1; } CursesUI::Window window {0 ,0, COLS, 30}; CursesUI::Panel panelWindow {window.getWindow()}; CursesUI::Form form {1, COLS-4, 0, 1, 0, 0, A_UNDERLINE, O_STATIC }; window.create(form.getForm()); window.keypadEnable(true); curses.refreshWin(); form.post(); window.refresh(); CursesUI::Window nestedWindow {10 ,10, 10, 10}; CursesUI::Panel nestedPanel {nestedWindow.getWindow()}; CursesUI::Form nestedForm {1, COLS-4, 0, 1, 0, 0, A_UNDERLINE, O_STATIC}; nestedWindow.create(nestedForm.getForm()); nestedWindow.keypadEnable(true); nestedForm.post(); nestedWindow.refresh(); hide_panel(nestedPanel.getPanel()); int c; while((c = wgetch(window.getWindow())) != KEY_F(1)) { switch(c) { case '[': hide_panel(nestedPanel.getPanel()); nestedPanel.updatePanel(); break; case ']': show_panel(nestedPanel.getPanel()); nestedPanel.updatePanel(); break; case KEY_DC : //KEY_DELETE form.driveForm(REQ_CLR_FIELD); break; case 127: // KEY_BACKSPACE case KEY_BACKSPACE: form.driveForm(REQ_DEL_PREV); break; default: form.driveForm(REQ_END_LINE); form.driveForm(c); break; } window.refresh(); } form.unpost(); curses.clearWin(); curses.endWin(); return 0; }
[ "tarim.gokhan@gmail.com" ]
tarim.gokhan@gmail.com
ef3838af01e154e1a71ba59f2a2653a1edb8951a
333b58a211c39f7142959040c2d60b69e6b20b47
/Odyssey/IsmScsiServer/ScsiXfer.cpp
34e874a1e4522f56e33c5e3a679d85726c1ea85f
[]
no_license
JoeAltmaier/Odyssey
d6ef505ade8be3adafa3740f81ed8d03fba3dc1a
121ea748881526b7787f9106133589c7bd4a9b6d
refs/heads/master
2020-04-11T08:05:34.474250
2015-09-09T20:03:29
2015-09-09T20:03:29
42,187,845
0
0
null
null
null
null
UTF-8
C++
false
false
2,715
cpp
/*************************************************************************/ // This material is a confidential trade secret and proprietary // information of ConvergeNet Technologies, Inc. which may not be // reproduced, used, sold or transferred to any third party without the // prior written consent of ConvergeNet Technologies, Inc. This material // is also copyrighted as an unpublished work under sections 104 and 408 // of Title 17 of the United States Code. Law prohibits unauthorized // use, copying or reproduction. // // File: ScsiXfer.c // // Description: // This file implements Transfer methods for the SCSI Server // // Update Log // $Log: /Gemini/Odyssey/IsmScsiServer/ScsiXfer.cpp $ // // 3 11/15/99 4:03p Mpanas // Re-organize sources // - Add new files: ScsiInquiry.cpp, ScsiReportLUNS.cpp, // ScsiReserveRelease.cpp // - Remove unused headers: ScsiRdWr.h, ScsiMessage.h, ScsiXfer.h // - New Listen code // - Use Callbacks // - All methods part of SCSI base class // // // 12/14/98 Michael G. Panas: Create file /*************************************************************************/ #include "SCSIServ.h" #include "ScsiSense.h" #include "Scsi.h" #include <string.h> /*************************************************************************/ // Forward References /*************************************************************************/ //************************************************************************ // // ScsiSendData() // Copy the data at the location pSrc to the address in the SGL. // The SGL is contained in the original message. //************************************************************************ U32 ScsiServerIsm::ScsiSendData(SCSI_CONTEXT *p_context, U8 *pSrc, U32 Length) { U32 result; Message *pMsg = p_context->pMsg; TRACE_ENTRY(ScsiSendData); // Copy data to the SGL return buffer, starting at the given offset // within the return buffer. Truncates data if it won't fit. // Handles multiple return buffer fragments. // Returns the number of bytes NOT returned (hopefully 0). result = pMsg->CopyToSgl(0, 0, (void *) pSrc, (long) Length); if (result != 0) return (result); return(0); } // ScsiSendData //************************************************************************ // // ScsiGetData() // Copy data from the address in the SGL to the location at pDst //************************************************************************ U32 ScsiServerIsm::ScsiGetData(SCSI_CONTEXT *p_context, U8 *pDst, U32 Length) { // TODO Message *pMsg = p_context->pMsg; TRACE_ENTRY(ScsiGetData); return(0); } // ScsiGetData
[ "joe.altmaier@sococo.com" ]
joe.altmaier@sococo.com
13a7c018ed6584312d3b8b29b7360bc007b104f4
d7a22f2cc02cf75f96a41b8fdbffb894efb973aa
/include/competicion.h
3d923c1b4333e4ab7c0645c66c0892dd3241033c
[]
no_license
jacedleon/DyAA-P6
a2ed7b18132905b76b41bc8941e95fc14c291f64
431016a9593715fb8d43b88be76c3db4b3fefad0
refs/heads/master
2022-10-05T17:12:33.000720
2020-03-23T22:00:33
2020-03-23T22:00:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
426
h
#pragma once #include <iostream> #include <cmath> #include <vector> class Competicion { public: Competicion(); ~Competicion(); void formarTabla(std::vector<std::vector<int>> &tabla, int inf, int sup); void completarTabla(std::vector<std::vector<int>> &tabla, int infTeam, int supTeam, int infDay, int supDay, int initialTeam); void calendario(std::vector<std::vector<int>> &tabla); };
[ "acevedodeleonjorge@gmail.com" ]
acevedodeleonjorge@gmail.com
666a2132ee1b0817d7cc9ba6352fe721881ff0e0
6b40e9cba1dd06cd31a289adff90e9ea622387ac
/Develop/CSCommon/include/CServerApplication.h
d42b0ce7610b0aab5a12a848725eec8085796ed1
[]
no_license
AmesianX/SHZPublicDev
c70a84f9170438256bc9b2a4d397d22c9c0e1fb9
0f53e3b94a34cef1bc32a06c80730b0d8afaef7d
refs/heads/master
2022-02-09T07:34:44.339038
2014-06-09T09:20:04
2014-06-09T09:20:04
null
0
0
null
null
null
null
UHC
C++
false
false
1,768
h
#pragma once #include <windows.h> #include "CSCommonLib.h" #include "MCommandLine.h" #define MAX_SERVER_TICK_DELTA (1.0f) ///< 아무리 랙이 걸려도 delta값은 1초를 초과하지 않는다. /// 서버 실행 타입 enum CServerAppType { APPTYPE_WINDOW = 0, ///< 윈도우 어플리케이션 APPTYPE_CONSOLE, ///< 콘솔 어플리케이션 APPTYPE_SERVICE ///< 서비스 어플리케이션 }; class CSCOMMON_API CServerApplication { private: CServerAppType m_nAppType; bool m_bRun; DWORD m_dwMainThreadID; unsigned int m_nLastTime; static LRESULT CALLBACK MsgProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static CServerApplication* m_pInstance; static void SignalHandler( int signo); void Update(); bool InitMainWnd(int x, int y, int width, int height, const char* szClassName, const char* szName, UINT nMenuID, UINT nIconID); void CatchTerminationSignal(void handler(int)); protected: HWND m_hWnd; cml2::MCommandLine m_CommandLine; virtual bool OnCreate() { return true; } virtual void OnUpdate(float fDelta) { } virtual void OnDestroy() { } virtual void OnPaint() { } virtual void OnMsg( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); void Destroy(); int Run_Window(); int Run_Console(); bool IsMainThread(DWORD dwCurThreadID) { return (m_dwMainThreadID == dwCurThreadID); } public: CServerApplication(); virtual ~CServerApplication(); int Run(); void Quit() { m_bRun = false; } bool Create(int x, int y, int width, int height, const char* szClassName, const char* szName, UINT nMenuID, UINT nIconID); bool CreateConsole(const char* szName); const cml2::MCommandLine& GetCommandLine() { return m_CommandLine; } };
[ "shzdev@8fd9ef21-cdc5-48af-8625-ea2f38c673c4" ]
shzdev@8fd9ef21-cdc5-48af-8625-ea2f38c673c4
6f816b29bd16ceaf157635f883afe223eda5a067
c2bce931866c14a3e1f1ab7172200437f30dab6c
/components/omnibox/browser/contextual_suggestions_service.cc
eae95a98f8ddf88df529ac93ec720c30feaeadc0
[ "BSD-3-Clause" ]
permissive
SnowCherish/chromium
a75107cdb9de144b6defb36907c603e50ded0720
61c360d1c6daf19e54c4f80af2644cf0ef9aecf9
refs/heads/master
2023-02-26T04:19:46.835972
2018-02-27T01:43:33
2018-02-27T01:43:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,695
cc
// Copyright 2017 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 "components/omnibox/browser/contextual_suggestions_service.h" #include <memory> #include <utility> #include "base/feature_list.h" #include "base/json/json_writer.h" #include "base/metrics/field_trial_params.h" #include "base/strings/stringprintf.h" #include "base/values.h" #include "components/data_use_measurement/core/data_use_user_data.h" #include "components/omnibox/browser/omnibox_field_trial.h" #include "components/search_engines/template_url_service.h" #include "components/sync/base/time.h" #include "components/variations/net/variations_http_headers.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/http/http_response_headers.h" #include "net/traffic_annotation/network_traffic_annotation.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_context_getter.h" namespace { // Server address for the experimental suggestions service. const char kDefaultExperimentalServerAddress[] = "https://cuscochromeextension-pa.googleapis.com/v1/omniboxsuggestions"; void AddVariationHeaders(const std::unique_ptr<net::URLFetcher>& fetcher) { net::HttpRequestHeaders headers; // Add Chrome experiment state to the request headers. // Note: It's OK to pass SignedIn::kNo if it's unknown, as it does not affect // transmission of experiments coming from the variations server. // // Note: It's OK to pass InIncognito::kNo since we are expected to be in // non-incognito state here (i.e. contextual sugestions are not served in // incognito mode). variations::AppendVariationHeaders(fetcher->GetOriginalURL(), variations::InIncognito::kNo, variations::SignedIn::kNo, &headers); for (net::HttpRequestHeaders::Iterator it(headers); it.GetNext();) { fetcher->AddExtraRequestHeader(it.name() + ":" + it.value()); } } // Returns API request body. The final result depends on the following input // variables: // * <current_url>: The current url visited by the user. // * <experiment_id>: the experiment id associated with the current field // trial group. // // The format of the request body is: // // urls: { // url : <current_url> // // timestamp_usec is the timestamp for the page visit time, measured // // in microseconds since the Unix epoch. // timestamp_usec: <visit_time> // } // // stream_type = 1 corresponds to zero suggest suggestions. // stream_type: 1 // // experiment_id is only set when <experiment_id> is well defined. // experiment_id: <experiment_id> // std::string FormatRequestBodyExperimentalService(const std::string& current_url, const base::Time& visit_time) { auto request = std::make_unique<base::DictionaryValue>(); auto url_list = std::make_unique<base::ListValue>(); auto url_entry = std::make_unique<base::DictionaryValue>(); url_entry->SetString("url", current_url); url_entry->SetString( "timestamp_usec", std::to_string((visit_time - base::Time::UnixEpoch()).InMicroseconds())); url_list->Append(std::move(url_entry)); request->Set("urls", std::move(url_list)); // stream_type = 1 corresponds to zero suggest suggestions. request->SetInteger("stream_type", 1); const int experiment_id = OmniboxFieldTrial::GetZeroSuggestRedirectToChromeExperimentId(); if (experiment_id >= 0) request->SetInteger("experiment_id", experiment_id); std::string result; base::JSONWriter::Write(*request, &result); return result; } } // namespace ContextualSuggestionsService::ContextualSuggestionsService( SigninManagerBase* signin_manager, OAuth2TokenService* token_service, net::URLRequestContextGetter* request_context) : request_context_(request_context), signin_manager_(signin_manager), token_service_(token_service), token_fetcher_(nullptr) {} ContextualSuggestionsService::~ContextualSuggestionsService() {} void ContextualSuggestionsService::CreateContextualSuggestionsRequest( const std::string& current_url, const base::Time& visit_time, const TemplateURLService* template_url_service, net::URLFetcherDelegate* fetcher_delegate, ContextualSuggestionsCallback callback) { const GURL experimental_suggest_url = ExperimentalContextualSuggestionsUrl(current_url, template_url_service); if (experimental_suggest_url.is_valid()) CreateExperimentalRequest(current_url, visit_time, experimental_suggest_url, fetcher_delegate, std::move(callback)); else CreateDefaultRequest(current_url, template_url_service, fetcher_delegate, std::move(callback)); } void ContextualSuggestionsService::StopCreatingContextualSuggestionsRequest() { std::unique_ptr<identity::PrimaryAccountAccessTokenFetcher> token_fetcher_deleter(std::move(token_fetcher_)); } // static GURL ContextualSuggestionsService::ContextualSuggestionsUrl( const std::string& current_url, const TemplateURLService* template_url_service) { if (template_url_service == nullptr) { return GURL(); } const TemplateURL* search_engine = template_url_service->GetDefaultSearchProvider(); if (search_engine == nullptr) { return GURL(); } const TemplateURLRef& suggestion_url_ref = search_engine->suggestions_url_ref(); const SearchTermsData& search_terms_data = template_url_service->search_terms_data(); base::string16 prefix; TemplateURLRef::SearchTermsArgs search_term_args(prefix); if (!current_url.empty()) { search_term_args.current_page_url = current_url; } return GURL(suggestion_url_ref.ReplaceSearchTerms(search_term_args, search_terms_data)); } GURL ContextualSuggestionsService::ExperimentalContextualSuggestionsUrl( const std::string& current_url, const TemplateURLService* template_url_service) const { if (current_url.empty()) { return GURL(); } if (!base::FeatureList::IsEnabled(omnibox::kZeroSuggestRedirectToChrome) || template_url_service == nullptr) { return GURL(); } // Check that the default search engine is Google. const TemplateURL& default_provider_url = *template_url_service->GetDefaultSearchProvider(); const SearchTermsData& search_terms_data = template_url_service->search_terms_data(); if (default_provider_url.GetEngineType(search_terms_data) != SEARCH_ENGINE_GOOGLE) { return GURL(); } const std::string server_address_param = OmniboxFieldTrial::GetZeroSuggestRedirectToChromeServerAddress(); GURL suggest_url(server_address_param.empty() ? kDefaultExperimentalServerAddress : server_address_param); // Check that the suggest URL for redirect to chrome field trial is valid. if (!suggest_url.is_valid()) { return GURL(); } // Check that the suggest URL for redirect to chrome is HTTPS. if (!suggest_url.SchemeIsCryptographic()) { return GURL(); } return suggest_url; } void ContextualSuggestionsService::CreateDefaultRequest( const std::string& current_url, const TemplateURLService* template_url_service, net::URLFetcherDelegate* fetcher_delegate, ContextualSuggestionsCallback callback) { const GURL suggest_url = ContextualSuggestionsUrl(current_url, template_url_service); DCHECK(suggest_url.is_valid()); net::NetworkTrafficAnnotationTag traffic_annotation = net::DefineNetworkTrafficAnnotation("omnibox_zerosuggest", R"( semantics { sender: "Omnibox" description: "When the user focuses the omnibox, Chrome can provide search or " "navigation suggestions from the default search provider in the " "omnibox dropdown, based on the current page URL.\n" "This is limited to users whose default search engine is Google, " "as no other search engines currently support this kind of " "suggestion." trigger: "The omnibox receives focus." data: "The URL of the current page." destination: GOOGLE_OWNED_SERVICE } policy { cookies_allowed: YES cookies_store: "user" setting: "Users can control this feature via the 'Use a prediction service " "to help complete searches and URLs typed in the address bar' " "settings under 'Privacy'. The feature is enabled by default." chrome_policy { SearchSuggestEnabled { policy_options {mode: MANDATORY} SearchSuggestEnabled: false } } })"); const int kFetcherID = 1; std::unique_ptr<net::URLFetcher> fetcher = net::URLFetcher::Create(kFetcherID, suggest_url, net::URLFetcher::GET, fetcher_delegate, traffic_annotation); fetcher->SetRequestContext(request_context_); data_use_measurement::DataUseUserData::AttachToFetcher( fetcher.get(), data_use_measurement::DataUseUserData::OMNIBOX); AddVariationHeaders(fetcher); fetcher->SetLoadFlags(net::LOAD_DO_NOT_SAVE_COOKIES); std::move(callback).Run(std::move(fetcher)); } void ContextualSuggestionsService::CreateExperimentalRequest( const std::string& current_url, const base::Time& visit_time, const GURL& suggest_url, net::URLFetcherDelegate* fetcher_delegate, ContextualSuggestionsCallback callback) { DCHECK(suggest_url.is_valid()); // This traffic annotation is nearly identical to the annotation for // `omnibox_zerosuggest`. The main difference is that the experimental traffic // is not allowed cookies. net::NetworkTrafficAnnotationTag traffic_annotation = net::DefineNetworkTrafficAnnotation("omnibox_zerosuggest_experimental", R"( semantics { sender: "Omnibox" description: "When the user focuses the omnibox, Chrome can provide search or " "navigation suggestions from the default search provider in the " "omnibox dropdown, based on the current page URL.\n" "This is limited to users whose default search engine is Google, " "as no other search engines currently support this kind of " "suggestion." trigger: "The omnibox receives focus." data: "The user's OAuth2 credentials and the URL of the current page." destination: GOOGLE_OWNED_SERVICE } policy { cookies_allowed: NO setting: "Users can control this feature via the 'Use a prediction service " "to help complete searches and URLs typed in the address bar' " "settings under 'Privacy'. The feature is enabled by default." chrome_policy { SearchSuggestEnabled { policy_options {mode: MANDATORY} SearchSuggestEnabled: false } } })"); const int kFetcherID = 1; std::string request_body = FormatRequestBodyExperimentalService(current_url, visit_time); std::unique_ptr<net::URLFetcher> fetcher = net::URLFetcher::Create(kFetcherID, suggest_url, /*request_type=*/net::URLFetcher::POST, fetcher_delegate, traffic_annotation); fetcher->SetUploadData("application/json", request_body); fetcher->SetRequestContext(request_context_); data_use_measurement::DataUseUserData::AttachToFetcher( fetcher.get(), data_use_measurement::DataUseUserData::OMNIBOX); AddVariationHeaders(fetcher); fetcher->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SAVE_COOKIES); const bool should_fetch_access_token = (signin_manager_ != nullptr) && (token_service_ != nullptr); // If authentication services are unavailable or if this request is still // waiting for an oauth2 token, run the contextual service without access // tokens. if (!should_fetch_access_token || (token_fetcher_ != nullptr)) { std::move(callback).Run(std::move(fetcher)); return; } // Create the oauth2 token fetcher. const OAuth2TokenService::ScopeSet scopes{ "https://www.googleapis.com/auth/cusco-chrome-extension"}; token_fetcher_ = std::make_unique<identity::PrimaryAccountAccessTokenFetcher>( "contextual_suggestions_service", signin_manager_, token_service_, scopes, base::BindOnce(&ContextualSuggestionsService::AccessTokenAvailable, base::Unretained(this), std::move(fetcher), std::move(callback)), identity::PrimaryAccountAccessTokenFetcher::Mode::kWaitUntilAvailable); } void ContextualSuggestionsService::AccessTokenAvailable( std::unique_ptr<net::URLFetcher> fetcher, ContextualSuggestionsCallback callback, const GoogleServiceAuthError& error, const std::string& access_token) { DCHECK(token_fetcher_); std::unique_ptr<identity::PrimaryAccountAccessTokenFetcher> token_fetcher_deleter(std::move(token_fetcher_)); // If there were no errors obtaining the access token, append it to the // request as a header. if (error.state() == GoogleServiceAuthError::NONE) { DCHECK(!access_token.empty()); fetcher->AddExtraRequestHeader( base::StringPrintf("Authorization: Bearer %s", access_token.c_str())); } std::move(callback).Run(std::move(fetcher)); }
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
37bc5b1b5c7a73c11fe1472b79553a1c25ddc856
16e69f48b3891ba36f52d0961dbf620613d31810
/QCDraw/Graphics/altermatorgraphic.cpp
7392fcc4f099b5cd392e3aacb0f61286761ca41a
[]
no_license
zrhcheer/QCDraw
7852bd6238908868870ded56926ba5b2aaef8ea8
6c91871d5ae6349847c94f194a54acce7cd6e267
refs/heads/master
2020-12-31T00:11:04.310183
2017-03-29T05:06:01
2017-03-29T05:06:01
86,538,623
0
0
null
null
null
null
GB18030
C++
false
false
2,454
cpp
#include "altermatorgraphic.h" #include "codeconvertor.h" const QString AlterMatorGraphic::_devName = CodeConvertor::fromLocal("发电机"); AlterMatorGraphic::AlterMatorGraphic() { setType(Graphic::GRAPHIC_ALTERMATOR); this->setColor(QColor(22,149,19)); _bOpen = true; this->setDirect(Graphic::POS_UP); _portPoints.resize(1); } void AlterMatorGraphic::setSize(const int &height) { if(height < ELE_MIN_SIZE) { _size.setHeight(ELE_MIN_SIZE); } else { _size.setHeight(height); } _size.setWidth(height * 2 / 3); } QPointF AlterMatorGraphic::getPortPos(int pos) { switch(pos) { case Graphic::JOIN_BEGIN: return _portPoints[Graphic::JOIN_BEGIN].getJoinPoint(); break; default: assert(false); break; } } void AlterMatorGraphic::loadPortPos() { float halfHeight = _size.height() / 2.0; switch(this->getDirect()) { case POS_UP: _portPoints[Graphic::JOIN_BEGIN].setJoinPoint(QPointF(0, -halfHeight)); return; case POS_RIGHT: _portPoints[Graphic::JOIN_BEGIN].setJoinPoint(QPointF(halfHeight,0)); return; case POS_DOWN: _portPoints[Graphic::JOIN_BEGIN].setJoinPoint(QPointF(0, halfHeight)); return; case POS_LEFT: _portPoints[Graphic::JOIN_BEGIN].setJoinPoint(QPointF(-halfHeight,0)); return; } } void AlterMatorGraphic::prepareGraphic(QPainter *painter) { GraphicBase::prepareGraphic(painter); switch(this->getDirect()) { case POS_UP: break; case POS_RIGHT: painter->rotate(90); break; case POS_DOWN: painter->rotate(180); break; case POS_LEFT: painter->rotate(270); break; } } void AlterMatorGraphic::drawGraphic(QPainter *painter) { float radius = _size.height() / 3;//半径 painter->drawLine(0, - radius*3/2, 0, - radius/2); painter->setBrush(Qt::NoBrush); painter->drawEllipse(QPointF(0, radius / 2),radius ,radius); // 绘制贝塞尔曲线 QPoint start_pos(0,- radius/2 + CONTROLSTYLE); QPoint end_pos(0, radius*3/2 - CONTROLSTYLE); //drawPath; QPainterPath path(start_pos); QPoint c1(radius * (1.73)/2 + CONTROLSTYLE,0 + 2*CONTROLSTYLE); QPoint c2(-radius * (1.73)/2 - CONTROLSTYLE,radius*3/4 - CONTROLSTYLE); path.cubicTo(c1 ,c2 ,end_pos ); painter->drawPath(path); }
[ "zrhcheer@126.com" ]
zrhcheer@126.com
bfd4cdd6198fe1a1a7ff46f91713055b2d015b00
a9ab72c3dd7fdfe8b6e0b1b5e296bf4c39b9989d
/round2/leetcode106.cpp
03174b52716707495b1b4f75e4bd6c346d217cf9
[]
no_license
keqhe/leetcode
cd82fc3d98b7fc71a9a08c5e438aa1f82737d76f
86b2a453255c909f94f9ea3be7f2a97a6680a854
refs/heads/master
2020-12-24T06:38:15.444432
2016-12-07T19:15:02
2016-12-07T19:15:02
48,405,123
0
0
null
null
null
null
UTF-8
C++
false
false
1,031
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: struct TreeNode * helper(vector<int>&inorder, vector<int>&postorder, int s1, int e1, int s2, int e2) { if (s1 > e1 || s2 > e2) return NULL; struct TreeNode * root = new TreeNode(postorder[e2]); if (s2 == e2) return root; int index; for (int i = s1; i <= e1; i ++) { if (inorder[i] == root->val) { index = i; break; } } root->left = helper(inorder, postorder, s1, index-1, s2, s2+index-s1-1); root->right = helper(inorder, postorder, index+1, e1, s2+index-s1, e2-1); return root; } TreeNode* buildTree(vector<int>& inorder, vector<int>& postorder) { return helper(inorder, postorder, 0, inorder.size()-1, 0, postorder.size()-1); } };
[ "keqhe@cs.wisc.edu" ]
keqhe@cs.wisc.edu
cd6eb1650a093d67c8126118096d359e7fc9c5c8
58a70d809b9cd9676ea5e1746c68533f3e3c7750
/src/C_lineFighter_Server/lineFighter/CGameMaster.h
25c36ac567f4e750df039b9817de1fad6a6d13e1
[]
no_license
liodo198592/linefighter
3b66fa265d6c47e3a228285fd88dba8bceb7d22f
54ff8b0e4b30da622c6eceab08bf44b306207a16
refs/heads/master
2020-04-11T06:16:45.337075
2018-12-13T03:08:47
2018-12-13T03:08:47
161,576,563
0
0
null
null
null
null
GB18030
C++
false
false
312
h
#ifndef CGameMaster_H #define CGameMaster_H #include "global.h" #include "RingBuf.h" #include "CProtocol.h" class CGameMaster : public ACE_Task<ACE_MT_SYNCH> { public: CGameMaster(){}//默认补召数据时间间隔 virtual ~CGameMaster(){} ACE_INT64 run(); protected: ACE_INT32 svc(); private: }; #endif
[ "hrj_zhouyu@163.com" ]
hrj_zhouyu@163.com
e7c0bda4c7b3716f31632a149168cbc1e609c514
4af341026c371c8e25d37780c3d2a85063ec60ea
/CSES-Tree Algorithm- P 4 - Tree Distance 1 - DP on Trees - Interesting subproblem - THINK.cpp
d99f55c9f043b424b21a9b81f1328536cede0595
[]
no_license
i-am-arvinder-singh/CP
46a32f9235a656e7d777a16ccbce980cb1eb1c63
e4e79e4ffc636f078f16a25ce81a3095553fc060
refs/heads/master
2023-07-12T19:20:41.093734
2021-08-29T06:58:55
2021-08-29T06:58:55
266,883,239
1
1
null
2020-10-04T14:00:29
2020-05-25T21:25:39
C++
UTF-8
C++
false
false
3,660
cpp
#include<bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> // Common file #include <ext/pb_ds/tree_policy.hpp> // Including tree_order_statistics_node_update using namespace std; using namespace __gnu_pbds;//which means policy based DS #define endl "\n" #define ll long long #define int long long #define ff first #define ss second #define fl(i,a,b) for(int i=(int)a; i<(int)b; i++) #define bfl(i,a,b) for(int i=(int)a-1; i>=(int)b; i--) #define pb push_back #define mp make_pair #define pii pair<int,int> #define vi vector<int> #define vt(type) vector<type> #define omniphantom ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); #define mii map<int,int> #define pqb priority_queue<int> //Below is implementation of min heap #define pqs priority_queue<int,vi,greater<int> > #define setbits(x) __builtin_popcountll(x) #define zrobits(x) __builtin_ctzll(x) #define mod 1000000007 #define inf 1e18 #define ps(x,y) fixed<<setprecision(y)<<x #define mk(arr,n,type) type *arr=new type[n]; #define w(x) int x; cin>>x; while(x--) #define pw(b,p) pow(b,p) + 0.1 #define ini const int #define sz(v) ((int)(v).size()) #define ppii pair<int,pii> #define tup tuple<int,int,int> #define LEFT(x) 2*x+1 #define RIGHT(x) 2*x+2 const double pi = acos(-1.0); typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; class dpOnTrees{ vector<vector<int>> edges; vector<vector<int>> dp; vector<int> depth; vector<int> ans; int n, dia; public: dpOnTrees(vector<vector<int>> edges, int n){ this->edges = edges; this->n = n; depth = vector<int> (n+2); ans = vector<int> (n+2,0); } void solve(){ depthDfs(1,-1); solve(1,-1,-1); for(int i=1;i<=n;i++) cout<<ans[i]<<" "; cout<<endl; } int depthDfs(int node, int par){ int ans = 0; for(auto child : edges[node]){ if(child==par) continue; ans = max(ans,1+depthDfs(child,node)); } return depth[node] = ans; } void solve(int node, int par, int par_ans){ vector<int> pref,suff; for(auto child:edges[node]){ if(child==par) continue; pref.pb(depth[child]); suff.pb(depth[child]); } for(int i=1;i<(int)pref.size();i++) pref[i] = max(pref[i-1] , pref[i]); for(int i=(int)suff.size()-2;i>=0;i--) suff[i] = max(suff[i+1] , suff[i]); int c_cnt = 0; for(auto child:edges[node]){ if(child==par) continue; int left = (c_cnt==0) ? -inf : pref[c_cnt-1]; int right = (c_cnt==(int)pref.size()-1) ? -inf : suff[c_cnt+1]; int top = par_ans + 1; solve(child,node,max({left+1,right+1,top})); c_cnt++; } ans[node] = max({ans[node], (pref.empty()?0:pref.back()+1), par_ans+1}); } }; void solve() { int n; cin>>n; vector<vector<int>> edges(n+2); for(int i=2;i<=n;i++){ int x,y; cin>>x>>y; edges[x].pb(y); edges[y].pb(x); } dpOnTrees t(edges,n); t.solve(); } int32_t main() { omniphantom #if 0 w(t) #endif // 0 solve(); return 0; }
[ "arvinderavy@ymail.com" ]
arvinderavy@ymail.com
0ad2930738b2d36552c958b5d92398d80b283bca
45ed614a494c70c55340a7fd5c178fd0d62bc15e
/004_Median_of_Two_Sorted_Arrays/Solution.cpp
3e403ae225ac1c1dca8710f243c7eaa1ae9a5c15
[]
no_license
ericaliu0610/XcodeLeetcode
04ac31931d2a1a7aeb73275b9df8356261caa01d
478ee97fdba6a46008660692d2f85a2bf0506b0d
refs/heads/master
2021-01-13T06:07:03.635570
2015-06-18T01:25:08
2015-06-18T01:25:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,242
cpp
// // Solution.cpp // 004_Median_of_Two_Sorted_Arrays // // Created by Chao Li on 6/11/15. // Copyright (c) 2015 Chao Li. All rights reserved. // // Solution shared at https://leetcode.com/discuss/35275/c-implementation-o-log-m-n-with-vector-int-as-parameters #include "Solution.h" double Solution::findMedianSortedArrays(vector<int> &nums1, vector<int> &nums2) { size_t size_1 = nums1.size(); size_t size_2 = nums2.size(); int k = int((size_1 + size_2) / 2); int res1 = Kth(nums1.begin(), size_1, nums2.begin(), size_2, k+1); if ((size_1 + size_2) % 2 == 0) { int res2 = Kth(nums1.begin(), size_1, nums2.begin(), size_2, k); return ( (double) res1 + res2) / 2.0; } return res1; } int Solution::Kth(Iter start1, size_t size_1, Iter start2, size_t size_2, int kth) { if (size_1 > size_2) return Kth(start2 , size_2, start1, size_1, kth); if (size_1 == 0) return *(start2 + kth - 1); if (kth == 1) return min(*start1, *start2); int index_1 = min(int(size_1), kth / 2); int index_2 = kth - index_1; if (*(start1 + index_1 - 1) > *(start2 + index_2 - 1)) return Kth(start1, size_1 ,start2 + index_2, size_2 - index_2, kth - index_2); return Kth(start1 + index_1, size_1 - index_1, start2, index_2, kth - index_1); }
[ "lichaorodxx@gmail.com" ]
lichaorodxx@gmail.com
7edb3256a3d9089da01609239823bef2b2a37296
34c83941628382c9e6e514abd634f693af7f12da
/MagicTheFileFormat/MagicImporter/MoleImporterAPI-master/MoleImporterAPI_TestVersion/MoleReader.cpp
37215b1d38208c01e70767418fa7c88a935ded1b
[]
no_license
Fanny94/ParticleEditorExport
c347ae16cee7f1be785a76834eeaa1deeb093c1e
9af040ef753607eeb2502ee832925a7ad764dc71
refs/heads/master
2021-01-15T13:18:45.076104
2019-09-15T08:16:31
2019-09-15T08:16:31
78,723,510
0
0
null
null
null
null
ISO-8859-1
C++
false
false
16,819
cpp
#include <fstream> #include <vector> #include <iostream> //#include "ReadHeaderData.h" #include "MoleReader.h" using namespace std; void MoleReader::readFromBinary(const char* filePath) { /*Reading the binary file that we just have been written to.*/ std::ifstream infile(filePath, std::ifstream::binary); cout << ">>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<" << "\n" << "\n" << endl; cout << "Binary Reader" << endl; cout << "\n" << endl; /*Reading the first block of memory that is the main header. This will read information about how much of each node type we have from a imported scene and how memory they will take up in the binary file.*/ infile.read((char*)&pmRead_mainHeader, sizeof(read_sMainHeader)); cout << "______________________" << endl; cout << "Main Header" << endl; cout << "meshCount: " << pmRead_mainHeader.meshCount << endl; cout << "materialCount: " << pmRead_mainHeader.materialCount << endl; cout << "lightCount: " << pmRead_mainHeader.lightCount << endl; cout << "cameraCount: " << pmRead_mainHeader.cameraCount << endl; cout << "______________________" << endl; if (pmRead_mainHeader.meshCount >= 1) { pmRead_meshList.resize(pmRead_mainHeader.meshCount + prevMeshes); //Reize to be the same length as the mesh list. Must be this way to work "in parallell" //with the mesh list pmRead_meshJointHolder.resize(pmRead_mainHeader.meshCount + prevMeshes); pmRead_meshChildList.resize(pmRead_mainHeader.meshCount + prevMeshes); //The vertex lists will be filled so that they are the same length as the mesh list. pmRead_mList.resize(pmRead_mainHeader.meshCount + prevMeshes); pmRead_mkList.resize(pmRead_mainHeader.meshCount + prevMeshes); for (int i = 0; i < pmRead_mainHeader.meshCount; i++) { /*Reading the block of memory that is the meshes. The information from the meshes will be read here, that includes for example vertex count for a normal mesh and a skinned mesh. What we do is reserving memory for all the data that is in the struct. For example, Vertex count is a integer and will take up to 4 bytes in the memory when reading.*/ infile.read((char*)&pmRead_meshList[i + prevMeshes], sizeof(read_sMesh)); int currMeshIndex = i + prevMeshes; { cout << "Mesh: " << currMeshIndex << endl; cout << "Name: " << pmRead_meshList[currMeshIndex].meshName << endl; cout << "\t"; cout << "Material ID: "; cout << pmRead_meshList[currMeshIndex].materialID << endl; cout << "Mesh vector: " << endl; cout << "\t"; cout << "xyz: "; cout << pmRead_meshList[currMeshIndex].translate[0] << " "; cout << pmRead_meshList[currMeshIndex].translate[1] << " "; cout << pmRead_meshList[currMeshIndex].translate[2] << " " << endl; cout << "\t"; cout << "rot: "; cout << pmRead_meshList[currMeshIndex].rotation[0] << " "; cout << pmRead_meshList[currMeshIndex].rotation[1] << " "; cout << pmRead_meshList[currMeshIndex].rotation[2] << " " << endl; cout << "\t"; cout << "scale: "; cout << pmRead_meshList[currMeshIndex].scale[0] << " "; cout << pmRead_meshList[currMeshIndex].scale[1] << " "; cout << pmRead_meshList[currMeshIndex].scale[2] << " " << endl; cout << "\t"; cout << "Vertex Count: "; cout << pmRead_meshList[currMeshIndex].vertexCount << endl; cout << "\t"; cout << "SkelAnimVert Count: "; cout << pmRead_meshList[currMeshIndex].skelAnimVertexCount << endl; cout << "\t"; cout << "Joint Count: "; cout << pmRead_meshList[currMeshIndex].jointCount << endl; } if (pmRead_meshList[currMeshIndex].isAnimated == true) { { cout << "\n"; cout << "Skeleton Vertex vector: " << endl; cout << "mkList: " << endl; pmRead_mkList[currMeshIndex].vskList.resize(pmRead_meshList[currMeshIndex].skelAnimVertexCount); cout << "\t"; cout << pmRead_mkList[currMeshIndex].vskList.data(); cout << "\t"; cout << "Allocated memory for: " << pmRead_meshList[i].skelAnimVertexCount << " skel vertices" << endl << endl; } const int jointCount = pmRead_meshList[currMeshIndex].jointCount; /*Reading all the vertex lists for each mesh. For example if a mesh have 200 vertices, we can multiply the count of vertices with the sizes in bytes that the sVertex struct have. This means that we will be reading the pos, nor, uv, tan, bitan 200 times.*/ infile.read((char*)pmRead_mkList[currMeshIndex].vskList.data(), sizeof(read_sSkelAnimVertex) * pmRead_meshList[currMeshIndex].skelAnimVertexCount); /*Reading the joint list for each mesh. Every joint in the list have individual data that we have to process when reading from the file.*/ pmRead_meshJointHolder[currMeshIndex].jointList.resize(jointCount); pmRead_meshJointHolder[currMeshIndex].perJoint.resize(jointCount); { cout << "\n"; cout << "Joint vector: " << endl; cout << "\t"; // cout << pmRead_jointList.data() << endl; cout << "\t"; cout << "Allocated memory for: " << pmRead_meshList[currMeshIndex].jointCount << " joints" << endl; } /*Reading the data for all the joints that a skinned mesh have.*/ infile.read((char*)pmRead_meshJointHolder[currMeshIndex].jointList.data(), sizeof(read_sJoint) * jointCount); for (int jointCounter = 0; jointCounter < jointCount; jointCounter++) { //pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].meshChildren.resize() const int animStateCount = pmRead_meshJointHolder[currMeshIndex].jointList[jointCounter].animationStateCount; pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].animationStateTracker.resize(animStateCount); infile.read((char*)pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].animationStateTracker.data(), sizeof(read_sAnimationStateTracker) * animStateCount); const int meshChildCount = pmRead_meshJointHolder[currMeshIndex].jointList[jointCounter].meshChildCount; //here crash infile.read((char*)pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].meshChildren.data(), sizeof(int) * meshChildCount); pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].animationStates.resize(animStateCount); for (int animStateCounter = 0; animStateCounter < animStateCount; animStateCounter++) { const int keyCount = pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].animationStateTracker[animStateCounter].keyCount; pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].animationStates[animStateCounter].keyFrames.resize(keyCount); infile.read((char*)pmRead_meshJointHolder[currMeshIndex].perJoint[jointCounter].animationStates[animStateCounter].keyFrames.data(), sizeof(read_sKeyFrame) * keyCount); } } } else { pmRead_mList[currMeshIndex].vList.resize(pmRead_meshList[currMeshIndex].vertexCount); cout << "\n"; cout << "Vertex vector: " << endl; cout << "mList: " << endl; cout << "\t"; cout << pmRead_mList[currMeshIndex].vList.data() << endl; cout << "\t"; cout << "Allocated memory for " << pmRead_meshList[currMeshIndex].vertexCount << " vertices" << endl << endl; pmRead_mList[currMeshIndex].vList.resize(pmRead_meshList[currMeshIndex].vertexCount); /*Reading all the vertex lists for each mesh. For example if a mesh have 200 vertices, we can multiply the count of vertices with the sizes in bytes that the sVertex struct have. This means that we will be reading the pos, nor, uv, tan, bitan 200 times.*/ infile.read((char*)pmRead_mList[currMeshIndex].vList.data(), sizeof(read_sVertex) * pmRead_meshList[currMeshIndex].vertexCount); } const int childMeshCount = pmRead_meshList[currMeshIndex].meshChildCount; pmRead_meshChildList[currMeshIndex].meshChildList.resize(childMeshCount); infile.read((char*)pmRead_meshChildList[currMeshIndex].meshChildList.data(), sizeof(read_sMeshChild) * childMeshCount); } prevMeshes += pmRead_mainHeader.meshCount; } if (pmRead_mainHeader.materialCount >= 1) { pmRead_materialList.resize(pmRead_mainHeader.materialCount + prevMaterials); for (int i = 0; i < pmRead_mainHeader.materialCount; i++) { int currIndex = i + prevMaterials; /*Reading all the materials from the list with the size in bytes in mind.*/ infile.read((char*)&pmRead_materialList[currIndex], sizeof(read_sMaterial)); { cout << "Material: " << i << " Name: " << pmRead_materialList[currIndex].materialName << endl; cout << "Material vector: " << endl; cout << "\t"; cout << &pmRead_materialList[currIndex] << endl; cout << "\t"; cout << "Allocated memory for " << pmRead_mainHeader.materialCount << " materials" << endl; cout << "\t"; cout << "Ambient color: "; cout << pmRead_materialList[currIndex].ambientColor[0] << " " << pmRead_materialList[currIndex].ambientColor[1] << " " << pmRead_materialList[currIndex].ambientColor[2] << " " << endl; cout << "\t"; cout << "Diffuse color: "; cout << pmRead_materialList[currIndex].diffuseColor[0] << " " << pmRead_materialList[currIndex].diffuseColor[1] << " " << pmRead_materialList[currIndex].diffuseColor[2] << " " << endl; cout << "\t"; cout << "Specular color: "; cout << pmRead_materialList[currIndex].specularColor[0] << " " << pmRead_materialList[currIndex].specularColor[1] << " " << pmRead_materialList[currIndex].specularColor[2] << " " << endl; cout << "\t"; cout << "Shiny factor: "; cout << pmRead_materialList[currIndex].shinyFactor << endl; cout << "\t"; cout << "Diffuse texture: " << pmRead_materialList[currIndex].diffuseTexture << endl; cout << "\t"; cout << "Specular texture: " << pmRead_materialList[currIndex].specularTexture << endl; cout << "\t"; cout << "Normal texture: " << pmRead_materialList[currIndex].normalTexture << endl; cout << "______________________" << endl; } } prevMaterials += pmRead_mainHeader.materialCount; } if (pmRead_mainHeader.lightCount >= 1) { pmRead_lightList.resize(pmRead_mainHeader.lightCount + prevLights); for (int i = 0; i < pmRead_mainHeader.lightCount; i++) { int currIndex = i + prevLights; /*Reading all the lights from the list with the size in bytes in mind.*/ infile.read((char*)&pmRead_lightList[currIndex], sizeof(read_sLight)); { cout << "Light: " << i << endl; cout << "Light vector: " << endl; cout << "\t"; cout << &pmRead_lightList[currIndex] << endl; cout << "\t"; cout << "Allocated memory for " << pmRead_mainHeader.lightCount << " lights" << endl; cout << "\t"; cout << "Light ID: " << pmRead_lightList[currIndex].lightID << endl; cout << "\t"; cout << "Light position: " << pmRead_lightList[currIndex].lightPos[0] << " " << pmRead_lightList[currIndex].lightPos[1] << " " << pmRead_lightList[currIndex].lightPos[2] << endl; cout << "\t"; cout << "Light rotation: " << pmRead_lightList[currIndex].lightRot[0] << " " << pmRead_lightList[currIndex].lightRot[1] << " " << pmRead_lightList[currIndex].lightRot[2] << endl; cout << "\t"; cout << "Light scale: " << pmRead_lightList[currIndex].lightScale[0] << " " << pmRead_lightList[currIndex].lightScale[1] << " " << pmRead_lightList[currIndex].lightScale[2] << endl; cout << "\t"; cout << "Light color: " << pmRead_lightList[currIndex].color[0] << " " << pmRead_lightList[currIndex].color[1] << " " << pmRead_lightList[currIndex].color[2] << " " << endl; cout << "\t"; cout << "Light intensity: " << pmRead_lightList[currIndex].intensity << endl; cout << "______________________" << endl; } } prevLights = pmRead_mainHeader.lightCount; } if (pmRead_mainHeader.cameraCount >= 1) { pmRead_cameraList.resize(pmRead_mainHeader.cameraCount + prevCameras); for (int i = 0; i < pmRead_mainHeader.cameraCount; i++) { int currIndex = i + prevCameras; /*Reading all the cameras from the list with the size in bytes in mind.*/ infile.read((char*)&pmRead_cameraList[currIndex], sizeof(read_sCamera)); { cout << "Camera: " << i << endl; cout << "Camera vector: " << endl; cout << "\t"; cout << &pmRead_cameraList[currIndex] << endl; cout << "\t"; cout << "Allocated memory for " << pmRead_mainHeader.cameraCount << " cameras" << endl; cout << "\t"; cout << "Camera position: " << pmRead_cameraList[currIndex].camPos[0] << " " << pmRead_cameraList[currIndex].camPos[1] << " " << pmRead_cameraList[currIndex].camPos[2] << endl; cout << "\t"; cout << "Camera Up vector: " << pmRead_cameraList[currIndex].upVector[0] << " " << pmRead_cameraList[currIndex].upVector[1] << " " << pmRead_cameraList[currIndex].upVector[2] << endl; cout << "\t"; cout << "FOV: " << pmRead_cameraList[currIndex].fieldOfView << endl; cout << "\t"; cout << "Near plane: " << pmRead_cameraList[currIndex].nearPlane << endl; cout << "\t"; cout << "Far plane: " << pmRead_cameraList[currIndex].farPlane << endl; cout << "______________________" << endl; } } prevCameras += pmRead_mainHeader.cameraCount; } //contains the meshes pmRead_meshList; //Contains the vertices for each mesh pmRead_mList; //contains skeletal vertices for each mesh pmRead_mkList; //contains mesh children for each mesh pmRead_meshChildList; //Contains joint and animLayer-data pmRead_meshJointHolder; //contains the cameras pmRead_cameraList; //contains the lights pmRead_lightList; //contains the materials pmRead_materialList; infile.close(); } //const std::vector<read_sMesh>* MoleReader::getMeshList() //{ // return nullptr; //} const std::vector<read_sMesh>* MoleReader::getMeshList() { return &pmRead_meshList; } const std::vector<read_sMChildHolder>* MoleReader::getMeshChildList() { return &pmRead_meshChildList; } //const std::vector<read_m>* MoleReader::getVertexList() //{ // return &pmRead_mList; //} // //const std::vector<read_mk>* MoleReader::getSkeletalVertexList() //{ // return &pmRead_mkList; //} const std::vector<read_sMaterial>* MoleReader::getMaterialList() { return &pmRead_materialList; } const std::vector<read_sCamera>* MoleReader::getCameraList() { return &pmRead_cameraList; } const std::vector<read_sLight>* MoleReader::getLightList() { return &pmRead_lightList; } const std::vector<read_sMJHolder>* MoleReader::getJointKeyList() { return &pmRead_meshJointHolder; } const read_sMainHeader * MoleReader::getMainHeader() { return &pmRead_mainHeader; } const int MoleReader::getMeshIndex(string meshName) { for (int meshIndex = 0; meshIndex < pmRead_mainHeader.meshCount; meshIndex++) { int check = meshName.compare(pmRead_meshList[meshIndex].meshName); if (check == 0) { return meshIndex; } } return -1337; } const read_sMesh * MoleReader::getMesh(int meshIndex) { return &pmRead_meshList[meshIndex]; } const std::vector<read_sKeyFrame>* MoleReader::getKeyList(int meshIndex, int jointIndex, int animationState) { return &pmRead_meshJointHolder[meshIndex].perJoint[jointIndex].animationStates[animationState].keyFrames; } const std::vector<read_sMeshChild>* MoleReader::getMeshChildList(int meshIndex) { return &pmRead_meshChildList[meshIndex].meshChildList; } const read_sMaterial * MoleReader::getMaterial(int materialIndex) { return &pmRead_materialList[materialIndex]; } const read_sJoint * MoleReader::getJoint(int meshIndex, int jointIndex) { return &pmRead_meshJointHolder[meshIndex].jointList[jointIndex]; } const std::vector<read_sMeshChild> MoleReader::getJointMeshChildList(int meshIndex, int jointIndex) { return pmRead_meshJointHolder[jointIndex].perJoint[jointIndex].meshChildren; } const std::vector<read_sSkelAnimVertex>* MoleReader::getSkelVertexList(int meshIndex) { return &pmRead_mkList[meshIndex].vskList; } const std::vector<read_sVertex>* MoleReader::getVertexList(int meshIndex) { return &pmRead_mList[meshIndex].vList; } MoleReader::MoleReader() { prevMeshes = 0; prevCameras = 0; prevLights = 0; prevMaterials = 0; prevJoints = 0; } MoleReader::~MoleReader() { } //cout << "______________________" << endl; //GLuint vertexBuff; //glGenVertexArrays(1, &vao); //glBindVertexArray(vao); //// It wörks //glEnableVertexAttribArray(0); //glEnableVertexAttribArray(1); //glEnableVertexAttribArray(2); //glEnableVertexAttribArray(3); //glEnableVertexAttribArray(4); //glGenBuffers(1, &vertexBuff); //glBindBuffer(GL_ARRAY_BUFFER, vertexBuff); //glBufferData(GL_ARRAY_BUFFER, sizeof(read_sVertex) * read_mList[i].vList.size(), read_mList[i].vList.data(), GL_STATIC_DRAW); //cout << "______________________" << endl;
[ "funnei@hotmail.com" ]
funnei@hotmail.com
1631e1dd63922d9874b20b2e6ab2182dd9808c76
5125c4e2e090715715b514b1a2ebf2fe1ccd625c
/src/OpenCV244vc11/OpenCV244vc11/test.h
c293e46c0effae1508472fb862ed2528d1e07600
[]
no_license
NecroArt/Diploma
33883375acd4d4dfdda90d032d85be137cf0b939
ef848d2aeb7de5b29d2e2c2742cea44dde8a6bb6
refs/heads/master
2016-09-06T05:47:49.668705
2013-07-13T14:12:29
2013-07-13T14:12:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
80
h
#ifndef TEST_H #define TEST_H #include "stdafx.h" using namespace std; #endif
[ "necroart@myopera.com" ]
necroart@myopera.com
88c56760a720b3248d42e5176c58bfeddc33d4eb
0d906075ab29e3e0d48f985007db6d1d2e78caf9
/android/testsurface/app/src/main/cpp/OpenGLHelper.h
33884aba89ce91c767bede4f3f2992582e0bc4b9
[]
no_license
chenyue0102/mytestchenyue
b3010bf84f46f8b285c3a4bfe926b63bcf5ecb51
ce4dc403dcbbaee513150c823f3a26501ef1ff55
refs/heads/master
2023-08-30T23:31:33.419958
2023-08-25T09:53:05
2023-08-25T09:53:05
32,462,298
0
0
null
2023-07-20T12:15:34
2015-03-18T14:03:46
C++
UTF-8
C++
false
false
1,997
h
#ifndef OPENGLHELPER_H #define OPENGLHELPER_H #include <assert.h> #include <GLES3/gl3.h> extern "C"{ #include <android/log.h> }; #define BUFFER_OFFSET(offset) ((void*)(offset)) #define GLLOG(fmt, ...) \ __android_log_print(ANDROID_LOG_ERROR, "opengles", fmt, __VA_ARGS__) inline void CHECKERR() { int err = 0; if (GL_NO_ERROR != (err = glGetError())){ GLLOG("glGetError=%d\n", err); assert(false); } } #define CHECK_BREAK \ if (GL_NO_ERROR != (ret = glGetError())) { \ GLLOG("glGetError=%x\n", ret); \ assert(false); \ break; \ } namespace OpenGLHelper { void outputCompileShader(GLuint shader); void outputProgramLog(GLuint program); //bool SaveBitmap(const char* pFileName, int width, int height, int biBitCount, const void* pBuf, int nBufLen); GLenum attachShader(GLuint program, GLenum type, const char *source, GLint len); GLenum createTexture2D(GLint internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint filterParam, GLuint& tex); GLenum createArrayBuffer(const void* vertexPointsBuffer, GLsizei vlen, const void* colorPointsBuffer, GLsizei clen, GLuint& buf); template<typename VEC2, typename VEC3> static void getTangent(const VEC3 &vertexPos1, const VEC3 &vertexPos2, const VEC3 &vertexPos3, const VEC2 &uv1, const VEC2 &uv2, const VEC2 &uv3, const VEC3 &normal, VEC3 &tangent, VEC3 &bitangent) { VEC3 edge1 = vertexPos2 - vertexPos1; VEC3 edge2 = vertexPos3 - vertexPos1; VEC2 deltaUV1 = uv2 - uv1; VEC2 deltaUV2 = uv3 - uv1; float f = 1.0f / (deltaUV1.x * deltaUV2.y - deltaUV2.x * deltaUV1.y); tangent.x = f * (deltaUV2.y * edge1.x - deltaUV1.y * edge2.x);//x tangent.y = f * (deltaUV2.y * edge1.y - deltaUV1.y * edge2.y);//y tangent.z = f * (deltaUV2.y * edge1.z - deltaUV1.y * edge2.z);//z bitangent.x = f * (-deltaUV2.x * edge1.x + deltaUV1.x * edge2.x);//x bitangent.y = f * (-deltaUV2.x * edge1.y + deltaUV1.x * edge2.y);//y bitangent.z = f * (-deltaUV2.x * edge1.z + deltaUV1.x * edge2.z);//z } }; #endif
[ "chenyue@ksjgs.com" ]
chenyue@ksjgs.com
a30d5a15f8128abba3f72c36c29b7ceb8f1724be
6de1e4199216517c9247bd5103476c33a7c98c22
/AdvanceLevel/1041. Be Unique.cpp
2315e1b6d55ccd6642086b487e0fedeb8e975ede
[]
no_license
Aiden68/PAT
9da832b5999afc5d55c3f58a39bb07dad76c89f9
a01df198ff75bc1209b86ced79a34a5155efc11d
refs/heads/master
2021-01-12T10:08:38.073835
2017-03-03T07:46:16
2017-03-03T07:46:16
76,371,489
0
0
null
null
null
null
UTF-8
C++
false
false
399
cpp
#include<iostream> using namespace std; int main() { int n; int cnt[10001] = { 0 }; int input[100001] = { 0 }; cin >> n; for (int i = 0; i < n; i++) { int tmp; scanf("%d", &tmp); cnt[tmp]++; input[i] = tmp; } int flag = 0; for (int i = 0; i < n; i++) { if (cnt[input[i]] == 1) { cout << input[i]; flag = 1; break; } } if (flag == 0) cout << "None"; return 0; }
[ "jllsjtu@163.com" ]
jllsjtu@163.com
efb42262e8a7618d943bf3d21cfc06bbde129a58
d569de1ec79431670dc2d4edec169d7e42fafdb0
/POJ/String/3461.cpp
de862691a4f16807aa7979f1bd09f9a15a67dd90
[]
no_license
peter0749/OnlineJudge
469026b3f6a6d810668e03d1b93a7055af990b8e
d60759cf53acaa58e34345b261640a1069bcda2a
refs/heads/master
2023-01-29T08:12:27.615260
2023-01-14T10:06:15
2023-01-14T10:06:15
81,049,761
1
0
null
null
null
null
UTF-8
C++
false
false
1,175
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #define STRL 1000010 using namespace std; int failure[STRL]; char pattern[STRL]; char tstring[STRL]; int Pos[STRL]; int MorrisPratt(char *t, char *p, int *stk){ int i, j, top=0; int tlen = strlen(t); int plen = strlen(p); if(plen > tlen) return 0; for(i=1, j=failure[0]=-1; i<plen; ++i){ while(j>=0 && p[j+1]!=p[i]) j = failure[j]; if(p[j+1]==p[i]) ++j; failure[i] = j; } for(i=0, j=-1; i<tlen; ++i){ while(j>=0 && p[j+1]!=t[i]) j = failure[j]; if(p[j+1]==t[i]) ++j; if(j==plen-1){ //printf("at: %d\n", i-plen+1); j=failure[j];//Optional stk[top++] = i-plen+1; } } return top; } int main(void){ int succCount, i; int T; ios::sync_with_stdio(false); cin>>T; while(T--){ cin >> pattern >> tstring; succCount = MorrisPratt(tstring, pattern, Pos); cout << succCount << '\n'; /* for(i=0; i<succCount; ++i){ cout << Pos[i] << '\n'; } */ } return 0; }
[ "peter" ]
peter