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
e447b78aa5d421412fe8b28f755cb6e949c817cc
e7016662374f79a07a5d0e049dad09a5a8d89cfc
/src/brpc/details/usercode_backup_pool.cpp
1c25569e2a48989d60f24d6bb2fe079f4963d6d9
[ "Apache-2.0" ]
permissive
bigo-sg/brpc
9f631254c01f02fb6efcbf188be7e560805e945e
9bd94d02decf04ed84775245a91ab09d290d6493
refs/heads/master
2021-07-19T02:35:24.012146
2021-07-14T04:38:10
2021-07-14T04:38:10
103,951,104
7
11
Apache-2.0
2019-12-16T11:58:28
2017-09-18T14:40:17
C++
UTF-8
C++
false
false
6,475
cpp
// Copyright (c) 2016 Baidu, Inc. // // 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. // Authors: Ge,Jun (gejun@baidu.com) #include <deque> #include <vector> #include <gflags/gflags.h> #include "butil/scoped_lock.h" #ifdef BAIDU_INTERNAL #include "butil/comlog_sink.h" #endif #include "brpc/details/usercode_backup_pool.h" namespace bthread { // Defined in bthread/task_control.cpp void run_worker_startfn(); } namespace brpc { DEFINE_int32(usercode_backup_threads, 5, "# of backup threads to run user code" " when too many pthread worker of bthreads are used"); DEFINE_int32(max_pending_in_each_backup_thread, 10, "Max number of un-run user code in each backup thread, requests" " still coming in will be failed"); // Store pending user code. struct UserCode { void (*fn)(void*); void* arg; }; struct UserCodeBackupPool { // Run user code when parallelism of user code reaches the threshold std::deque<UserCode> queue; bvar::PassiveStatus<int> inplace_var; bvar::PassiveStatus<size_t> queue_size_var; bvar::Adder<size_t> inpool_count; bvar::PerSecond<bvar::Adder<size_t> > inpool_per_second; // NOTE: we don't use Adder<double> directly which does not compile in gcc 3.4 bvar::Adder<int64_t> inpool_elapse_us; bvar::PassiveStatus<double> inpool_elapse_s; bvar::PerSecond<bvar::PassiveStatus<double> > pool_usage; UserCodeBackupPool(); int Init(); void UserCodeRunningLoop(); }; static pthread_mutex_t s_usercode_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t s_usercode_cond = PTHREAD_COND_INITIALIZER; static pthread_once_t s_usercode_init = PTHREAD_ONCE_INIT; butil::static_atomic<int> g_usercode_inplace = BUTIL_STATIC_ATOMIC_INIT(0); bool g_too_many_usercode = false; static UserCodeBackupPool* s_usercode_pool = NULL; static int GetUserCodeInPlace(void*) { return g_usercode_inplace.load(butil::memory_order_relaxed); } static size_t GetUserCodeQueueSize(void*) { BAIDU_SCOPED_LOCK(s_usercode_mutex); return (s_usercode_pool != NULL ? s_usercode_pool->queue.size() : 0); } static double GetInPoolElapseInSecond(void* arg) { return static_cast<bvar::Adder<int64_t>*>(arg)->get_value() / 1000000.0; } UserCodeBackupPool::UserCodeBackupPool() : inplace_var("rpc_usercode_inplace", GetUserCodeInPlace, NULL) , queue_size_var("rpc_usercode_queue_size", GetUserCodeQueueSize, NULL) , inpool_count("rpc_usercode_backup_count") , inpool_per_second("rpc_usercode_backup_second", &inpool_count) , inpool_elapse_s(GetInPoolElapseInSecond, &inpool_elapse_us) , pool_usage("rpc_usercode_backup_usage", &inpool_elapse_s, 1) { } static void* UserCodeRunner(void* args) { static_cast<UserCodeBackupPool*>(args)->UserCodeRunningLoop(); return NULL; } int UserCodeBackupPool::Init() { // Like bthread workers, these threads never quit (to avoid potential hang // during termination of program). for (int i = 0; i < FLAGS_usercode_backup_threads; ++i) { pthread_t th; if (pthread_create(&th, NULL, UserCodeRunner, this) != 0) { LOG(ERROR) << "Fail to create UserCodeRunner"; return -1; } } return 0; } // Entry of backup thread for running user code. void UserCodeBackupPool::UserCodeRunningLoop() { bthread::run_worker_startfn(); #ifdef BAIDU_INTERNAL logging::ComlogInitializer comlog_initializer; #endif int64_t last_time = butil::cpuwide_time_us(); while (true) { bool blocked = false; UserCode usercode = { NULL, NULL }; { BAIDU_SCOPED_LOCK(s_usercode_mutex); while (queue.empty()) { pthread_cond_wait(&s_usercode_cond, &s_usercode_mutex); blocked = true; } usercode = queue.front(); queue.pop_front(); if (g_too_many_usercode && (int)queue.size() <= FLAGS_usercode_backup_threads) { g_too_many_usercode = false; } } const int64_t begin_time = (blocked ? butil::cpuwide_time_us() : last_time); usercode.fn(usercode.arg); const int64_t end_time = butil::cpuwide_time_us(); inpool_count << 1; inpool_elapse_us << (end_time - begin_time); last_time = end_time; } } static void InitUserCodeBackupPool() { s_usercode_pool = new UserCodeBackupPool; if (s_usercode_pool->Init() != 0) { LOG(ERROR) << "Fail to init UserCodeBackupPool"; // rare and critical, often happen when the program just started since // this function is called from GlobalInitializeOrDieImpl() as well, // quiting is the best choice. exit(1); } } void InitUserCodeBackupPoolOnceOrDie() { pthread_once(&s_usercode_init, InitUserCodeBackupPool); } void EndRunningUserCodeInPool(void (*fn)(void*), void* arg) { InitUserCodeBackupPoolOnceOrDie(); g_usercode_inplace.fetch_sub(1, butil::memory_order_relaxed); // Not enough idle workers, run the code in backup threads to prevent // all workers from being blocked and no responses will be processed // anymore (deadlocked). const UserCode usercode = { fn, arg }; pthread_mutex_lock(&s_usercode_mutex); s_usercode_pool->queue.push_back(usercode); // If the queue has too many items, we can't drop the user code // directly which often must be run, for example: client-side done. // The solution is that we set a mark which is not cleared before // queue becomes short again. RPC code checks the mark before // submitting tasks that may generate more user code. if ((int)s_usercode_pool->queue.size() >= (FLAGS_usercode_backup_threads * FLAGS_max_pending_in_each_backup_thread)) { g_too_many_usercode = true; } pthread_mutex_unlock(&s_usercode_mutex); pthread_cond_signal(&s_usercode_cond); } } // namespace brpc
[ "gejun@baidu.com" ]
gejun@baidu.com
1c104140e7532961ebedcc1c288434d6515d8600
2f5c4bdc5e63b0d104bf1baa2ff3ce0a9a49b2be
/IoTtweet_test/IoTtweet_test.ino
0efd79ca52a0ce1b2d825a2231f8e999183e9440
[]
no_license
keptsecret/Air-Quality-Sensor-Scripts
fed1fb38e2725eda890c55114a93bf917ac93440
d432b8e320f6995081ad7f9848f23da45cc72b59
refs/heads/master
2020-08-10T00:51:19.987381
2019-10-10T15:36:49
2019-10-10T15:36:49
214,214,510
0
0
null
null
null
null
UTF-8
C++
false
false
1,804
ino
/* * This example demonstrate how to write data from your "Internet of Things" to IoTtweet dashboard * coding from IoTtweet.com * Created : 2016.Sep.25 * By Isaranu Janthong * IoTtweet Founder. * Visit us at : www.iottweet.com */ #include <ESP8266WiFi.h> #include <IoTtweet.h> const char *userid = "000498"; //IoTtweet account user ID (6 digits, included zero pre-fix) const char *key = "bmc5w8dkpy93"; //IoTtweet registered device key in "MY IOT Garage" const char *ssid = "Dell_pc"; //Your-WiFi-router-SSID const char *password = "0853348548"; //Your-WiFi-password float data0, data1, data2, data3; //Your sending data variable. String private_tweet = "Hello World"; //Your private tweet meassage to dashboard String public_tweet = "I am Internet of Things"; //Your public tweet message to dashboard IoTtweet myiot; //naming your devices void setup() { Serial.begin(115200); //Get IoTtweet Library version String libvers = myiot.getVersion(); Serial.println("IoTtweet Library vesion : " + String(libvers)); //Connect WiFi Serial.println("\nConnect wifi..."); bool conn = myiot.begin(ssid,password); if(!conn) { Serial.println("WiFi connection failed."); }else { Serial.println("WiFi connected !"); } } void loop() { //Example data generating data0 = random(20,80); data1 = random(30,70); data2 = random(40,60); data3 = random(50,55); //Send data from your iot to Dashboard String response = myiot.WriteDashboard(userid,key,data0,data1,data2,data3,private_tweet,public_tweet); Serial.println(response); //Show response JSON from www.iottweet.com //Waiting storage data on IoTtweet cloud 15 sec. delay(15000); }
[ "sorchon@gmail.com" ]
sorchon@gmail.com
c8b92cfb40278a02ae8656f0760a92ffd5787e99
f52bf7316736f9fb00cff50528e951e0df89fe64
/Platform/vendor/samsung/common/packages/apps/SBrowser/src/content/browser/renderer_host/render_widget_host_view_guest.cc
6f023671116cfd53afb0a6d9b0b512ec2f358126
[ "BSD-3-Clause" ]
permissive
git2u/sm-t530_KK_Opensource
bcc789ea3c855e3c1e7471fc99a11fd460b9d311
925e57f1f612b31ea34c70f87bc523e7a7d53c05
refs/heads/master
2021-01-19T21:32:06.678681
2014-11-21T23:09:45
2014-11-21T23:09:45
48,746,810
0
1
null
2015-12-29T12:35:13
2015-12-29T12:35:13
null
UTF-8
C++
false
false
14,876
cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/logging.h" #include "base/message_loop.h" #include "content/browser/browser_plugin/browser_plugin_guest.h" #include "content/browser/renderer_host/render_view_host_impl.h" #include "content/browser/renderer_host/render_widget_host_view_guest.h" #if defined(OS_WIN) || defined(USE_AURA) #include "content/browser/renderer_host/ui_events_helper.h" #endif #include "content/common/browser_plugin/browser_plugin_messages.h" #include "content/common/gpu/gpu_messages.h" #include "content/common/view_messages.h" #include "content/public/common/content_switches.h" #include "skia/ext/platform_canvas.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" #include "webkit/plugins/npapi/webplugin.h" namespace content { namespace { bool ShouldSendPinchGesture() { static bool pinch_allowed = CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnablePinch); return pinch_allowed; } WebKit::WebGestureEvent CreateFlingCancelEvent(double time_stamp) { WebKit::WebGestureEvent gesture_event; gesture_event.timeStampSeconds = time_stamp; gesture_event.type = WebKit::WebGestureEvent::GestureFlingCancel; gesture_event.sourceDevice = WebKit::WebGestureEvent::Touchscreen; return gesture_event; } } // namespace RenderWidgetHostViewGuest::RenderWidgetHostViewGuest( RenderWidgetHost* widget_host, BrowserPluginGuest* guest, RenderWidgetHostView* platform_view) : host_(RenderWidgetHostImpl::From(widget_host)), guest_(guest), is_hidden_(false), platform_view_(static_cast<RenderWidgetHostViewPort*>(platform_view)) { #if defined(OS_WIN) || defined(USE_AURA) gesture_recognizer_.reset(ui::GestureRecognizer::Create(this)); #endif // defined(OS_WIN) || defined(USE_AURA) host_->SetView(this); } RenderWidgetHostViewGuest::~RenderWidgetHostViewGuest() { } RenderWidgetHost* RenderWidgetHostViewGuest::GetRenderWidgetHost() const { return host_; } void RenderWidgetHostViewGuest::WasShown() { if (!is_hidden_) return; is_hidden_ = false; host_->WasShown(); } void RenderWidgetHostViewGuest::WasHidden() { if (is_hidden_) return; is_hidden_ = true; host_->WasHidden(); } void RenderWidgetHostViewGuest::SetSize(const gfx::Size& size) { size_ = size; host_->WasResized(); } gfx::Rect RenderWidgetHostViewGuest::GetBoundsInRootWindow() { return gfx::Rect(size_); } gfx::GLSurfaceHandle RenderWidgetHostViewGuest::GetCompositingSurface() { return gfx::GLSurfaceHandle(gfx::kNullPluginWindow, gfx::TEXTURE_TRANSPORT); } #if defined(OS_WIN) || defined(USE_AURA) void RenderWidgetHostViewGuest::ProcessAckedTouchEvent( const WebKit::WebTouchEvent& touch, InputEventAckState ack_result) { // TODO(fsamuel): Currently we will only take this codepath if the guest has // requested touch events. A better solution is to always forward touchpresses // to the embedder process to target a BrowserPlugin, and then route all // subsequent touch points of that touchdown to the appropriate guest until // that touch point is released. ScopedVector<ui::TouchEvent> events; if (!MakeUITouchEventsFromWebTouchEvents(touch, &events, LOCAL_COORDINATES)) return; ui::EventResult result = (ack_result == INPUT_EVENT_ACK_STATE_CONSUMED) ? ui::ER_HANDLED : ui::ER_UNHANDLED; for (ScopedVector<ui::TouchEvent>::iterator iter = events.begin(), end = events.end(); iter != end; ++iter) { scoped_ptr<ui::GestureRecognizer::Gestures> gestures; gestures.reset(gesture_recognizer_->ProcessTouchEventForGesture( *(*iter), result, this)); ProcessGestures(gestures.get()); } } #endif void RenderWidgetHostViewGuest::Show() { WasShown(); } void RenderWidgetHostViewGuest::Hide() { WasHidden(); } bool RenderWidgetHostViewGuest::IsShowing() { return !is_hidden_; } gfx::Rect RenderWidgetHostViewGuest::GetViewBounds() const { return gfx::Rect(size_); } void RenderWidgetHostViewGuest::RenderViewGone(base::TerminationStatus status, int error_code) { platform_view_->RenderViewGone(status, error_code); // Destroy the guest view instance only, so we don't end up calling // platform_view_->Destroy(). DestroyGuestView(); } void RenderWidgetHostViewGuest::Destroy() { platform_view_->Destroy(); // The RenderWidgetHost's destruction led here, so don't call it. DestroyGuestView(); } void RenderWidgetHostViewGuest::SetTooltipText(const string16& tooltip_text) { platform_view_->SetTooltipText(tooltip_text); } void RenderWidgetHostViewGuest::AcceleratedSurfaceBuffersSwapped( const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, int gpu_host_id) { // If accelerated surface buffers are getting swapped then we're not using // the software path. guest_->clear_damage_buffer(); guest_->SendMessageToEmbedder( new BrowserPluginMsg_BuffersSwapped( guest_->instance_id(), params.size, params.mailbox_name, params.route_id, gpu_host_id)); } void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer( const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, int gpu_host_id) { NOTREACHED(); } void RenderWidgetHostViewGuest::OnSwapCompositorFrame( scoped_ptr<cc::CompositorFrame> frame) { guest_->clear_damage_buffer(); guest_->SendMessageToEmbedder( new BrowserPluginMsg_CompositorFrameSwapped( guest_->instance_id(), *frame, host_->GetRoutingID(), host_->GetProcess()->GetID())); } void RenderWidgetHostViewGuest::SetBounds(const gfx::Rect& rect) { SetSize(rect.size()); } bool RenderWidgetHostViewGuest::OnMessageReceived(const IPC::Message& msg) { return platform_view_->OnMessageReceived(msg); } void RenderWidgetHostViewGuest::InitAsChild( gfx::NativeView parent_view) { platform_view_->InitAsChild(parent_view); } void RenderWidgetHostViewGuest::InitAsPopup( RenderWidgetHostView* parent_host_view, const gfx::Rect& pos) { // This should never get called. NOTREACHED(); } void RenderWidgetHostViewGuest::InitAsFullscreen( RenderWidgetHostView* reference_host_view) { // This should never get called. NOTREACHED(); } gfx::NativeView RenderWidgetHostViewGuest::GetNativeView() const { return guest_->GetEmbedderRenderWidgetHostView()->GetNativeView(); } gfx::NativeViewId RenderWidgetHostViewGuest::GetNativeViewId() const { return guest_->GetEmbedderRenderWidgetHostView()->GetNativeViewId(); } gfx::NativeViewAccessible RenderWidgetHostViewGuest::GetNativeViewAccessible() { return guest_->GetEmbedderRenderWidgetHostView()->GetNativeViewAccessible(); } void RenderWidgetHostViewGuest::MovePluginWindows( const gfx::Vector2d& scroll_offset, const std::vector<webkit::npapi::WebPluginGeometry>& moves) { platform_view_->MovePluginWindows(scroll_offset, moves); } void RenderWidgetHostViewGuest::Focus() { } void RenderWidgetHostViewGuest::Blur() { } bool RenderWidgetHostViewGuest::HasFocus() const { return false; } bool RenderWidgetHostViewGuest::IsSurfaceAvailableForCopy() const { NOTIMPLEMENTED(); return false; } void RenderWidgetHostViewGuest::UpdateCursor(const WebCursor& cursor) { platform_view_->UpdateCursor(cursor); } void RenderWidgetHostViewGuest::SetIsLoading(bool is_loading) { platform_view_->SetIsLoading(is_loading); } void RenderWidgetHostViewGuest::TextInputStateChanged( const ViewHostMsg_TextInputState_Params& params) { platform_view_->TextInputStateChanged(params); } void RenderWidgetHostViewGuest::ImeCancelComposition() { platform_view_->ImeCancelComposition(); } void RenderWidgetHostViewGuest::ImeCompositionRangeChanged( const ui::Range& range, const std::vector<gfx::Rect>& character_bounds) { } void RenderWidgetHostViewGuest::DidUpdateBackingStore( const gfx::Rect& scroll_rect, const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& copy_rects) { NOTREACHED(); } void RenderWidgetHostViewGuest::SelectionBoundsChanged( const ViewHostMsg_SelectionBounds_Params& params) { platform_view_->SelectionBoundsChanged(params); } void RenderWidgetHostViewGuest::ScrollOffsetChanged() { } BackingStore* RenderWidgetHostViewGuest::AllocBackingStore( const gfx::Size& size) { NOTREACHED(); return NULL; } void RenderWidgetHostViewGuest::CopyFromCompositingSurface( const gfx::Rect& src_subrect, const gfx::Size& /* dst_size */, const base::Callback<void(bool, const SkBitmap&)>& callback) { callback.Run(false, SkBitmap()); } void RenderWidgetHostViewGuest::CopyFromCompositingSurfaceToVideoFrame( const gfx::Rect& src_subrect, const scoped_refptr<media::VideoFrame>& target, const base::Callback<void(bool)>& callback) { NOTIMPLEMENTED(); callback.Run(false); } bool RenderWidgetHostViewGuest::CanCopyToVideoFrame() const { return false; } void RenderWidgetHostViewGuest::AcceleratedSurfaceSuspend() { NOTREACHED(); } void RenderWidgetHostViewGuest::AcceleratedSurfaceRelease() { } bool RenderWidgetHostViewGuest::HasAcceleratedSurface( const gfx::Size& desired_size) { return false; } void RenderWidgetHostViewGuest::SetBackground(const SkBitmap& background) { platform_view_->SetBackground(background); } #if defined(OS_WIN) && !defined(USE_AURA) void RenderWidgetHostViewGuest::SetClickthroughRegion(SkRegion* region) { } #endif #if defined(OS_WIN) && defined(USE_AURA) gfx::NativeViewAccessible RenderWidgetHostViewGuest::AccessibleObjectFromChildId(long child_id) { NOTIMPLEMENTED(); return NULL; } #endif void RenderWidgetHostViewGuest::SetHasHorizontalScrollbar( bool has_horizontal_scrollbar) { platform_view_->SetHasHorizontalScrollbar(has_horizontal_scrollbar); } void RenderWidgetHostViewGuest::SetScrollOffsetPinning( bool is_pinned_to_left, bool is_pinned_to_right) { platform_view_->SetScrollOffsetPinning( is_pinned_to_left, is_pinned_to_right); } void RenderWidgetHostViewGuest::OnAcceleratedCompositingStateChange() { } bool RenderWidgetHostViewGuest::LockMouse() { return platform_view_->LockMouse(); } void RenderWidgetHostViewGuest::UnlockMouse() { return platform_view_->UnlockMouse(); } void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { RenderWidgetHostViewPort* embedder_view = static_cast<RenderWidgetHostViewPort*>( guest_->GetEmbedderRenderWidgetHostView()); embedder_view->GetScreenInfo(results); } void RenderWidgetHostViewGuest::OnAccessibilityNotifications( const std::vector<AccessibilityHostMsg_NotificationParams>& params) { } #if defined(OS_MACOSX) void RenderWidgetHostViewGuest::SetActive(bool active) { platform_view_->SetActive(active); } void RenderWidgetHostViewGuest::SetTakesFocusOnlyOnMouseDown(bool flag) { platform_view_->SetTakesFocusOnlyOnMouseDown(flag); } void RenderWidgetHostViewGuest::SetWindowVisibility(bool visible) { platform_view_->SetWindowVisibility(visible); } void RenderWidgetHostViewGuest::WindowFrameChanged() { platform_view_->WindowFrameChanged(); } void RenderWidgetHostViewGuest::ShowDefinitionForSelection() { platform_view_->ShowDefinitionForSelection(); } bool RenderWidgetHostViewGuest::SupportsSpeech() const { return platform_view_->SupportsSpeech(); } void RenderWidgetHostViewGuest::SpeakSelection() { platform_view_->SpeakSelection(); } bool RenderWidgetHostViewGuest::IsSpeaking() const { return platform_view_->IsSpeaking(); } void RenderWidgetHostViewGuest::StopSpeaking() { platform_view_->StopSpeaking(); } void RenderWidgetHostViewGuest::AboutToWaitForBackingStoreMsg() { NOTREACHED(); } bool RenderWidgetHostViewGuest::PostProcessEventForPluginIme( const NativeWebKeyboardEvent& event) { return false; } #endif // defined(OS_MACOSX) #if defined(OS_ANDROID) void RenderWidgetHostViewGuest::ShowDisambiguationPopup( const gfx::Rect& target_rect, const SkBitmap& zoomed_bitmap) { } void RenderWidgetHostViewGuest::HasTouchEventHandlers(bool need_touch_events) { } #endif // defined(OS_ANDROID) #if defined(TOOLKIT_GTK) GdkEventButton* RenderWidgetHostViewGuest::GetLastMouseDown() { return NULL; } gfx::NativeView RenderWidgetHostViewGuest::BuildInputMethodsGtkMenu() { return gfx::NativeView(); } #endif // defined(TOOLKIT_GTK) #if defined(OS_WIN) && !defined(USE_AURA) void RenderWidgetHostViewGuest::WillWmDestroy() { } #endif void RenderWidgetHostViewGuest::DestroyGuestView() { host_ = NULL; base::MessageLoop::current()->DeleteSoon(FROM_HERE, this); } bool RenderWidgetHostViewGuest::DispatchLongPressGestureEvent( ui::GestureEvent* event) { return ForwardGestureEventToRenderer(event); } bool RenderWidgetHostViewGuest::DispatchCancelTouchEvent( ui::TouchEvent* event) { if (!host_) return false; WebKit::WebTouchEvent cancel_event; cancel_event.type = WebKit::WebInputEvent::TouchCancel; cancel_event.timeStampSeconds = event->time_stamp().InSecondsF(); host_->ForwardTouchEvent(cancel_event); return true; } bool RenderWidgetHostViewGuest::ForwardGestureEventToRenderer( ui::GestureEvent* gesture) { #if defined(OS_WIN) || defined(USE_AURA) if (!host_) return false; // Pinch gestures are disabled by default on windows desktop. See // crbug.com/128477 and crbug.com/148816 if ((gesture->type() == ui::ET_GESTURE_PINCH_BEGIN || gesture->type() == ui::ET_GESTURE_PINCH_UPDATE || gesture->type() == ui::ET_GESTURE_PINCH_END) && !ShouldSendPinchGesture()) { return true; } WebKit::WebGestureEvent web_gesture = MakeWebGestureEventFromUIEvent(*gesture); const gfx::Point& client_point = gesture->location(); const gfx::Point& screen_point = gesture->location(); web_gesture.x = client_point.x(); web_gesture.y = client_point.y(); web_gesture.globalX = screen_point.x(); web_gesture.globalY = screen_point.y(); if (web_gesture.type == WebKit::WebGestureEvent::Undefined) return false; if (web_gesture.type == WebKit::WebGestureEvent::GestureTapDown) { host_->ForwardGestureEvent( CreateFlingCancelEvent(gesture->time_stamp().InSecondsF())); } host_->ForwardGestureEvent(web_gesture); return true; #else return false; #endif } void RenderWidgetHostViewGuest::ProcessGestures( ui::GestureRecognizer::Gestures* gestures) { if ((gestures == NULL) || gestures->empty()) return; for (ui::GestureRecognizer::Gestures::iterator g_it = gestures->begin(); g_it != gestures->end(); ++g_it) { ForwardGestureEventToRenderer(*g_it); } } } // namespace content
[ "digixp2006@gmail.com" ]
digixp2006@gmail.com
1374007fa0953b57abbd97813eb1452b16454cd1
409ce560793c070ef4211b99c5a4a5316a258c4f
/unittests/libtests/faults/data/CohesiveKinSrcsDataTet4.hh
bbf27c655dd402299612cf021f25c7bcb1b8e1b1
[ "MIT" ]
permissive
calum-chamberlain/pylith
bb718bfb4305f03b45d42348e5d4fa5ed5f4a918
8712c39ade53c1cc5ac0e671e4296cee278c1dcf
refs/heads/master
2020-12-06T17:15:08.638337
2016-05-15T20:30:28
2016-05-15T20:30:28
46,401,744
0
0
null
2016-05-15T20:30:29
2015-11-18T07:09:12
C++
UTF-8
C++
false
false
3,518
hh
// -*- C++ -*- // // ====================================================================== // // Brad T. Aagaard, U.S. Geological Survey // Charles A. Williams, GNS Science // Matthew G. Knepley, University of Chicago // // This code was developed as part of the Computational Infrastructure // for Geodynamics (http://geodynamics.org). // // Copyright (c) 2010-2015 University of California, Davis // // See COPYING for license information. // // ====================================================================== // #if !defined(pylith_faults_cohesivekindatatet4_hh) #define pylith_faults_cohesivekindatatet4_hh #include "CohesiveKinData.hh" namespace pylith { namespace faults { class CohesiveKinSrcsDataTet4; } // pylith } // faults class pylith::faults::CohesiveKinSrcsDataTet4 : public CohesiveKinData { // PUBLIC METHODS /////////////////////////////////////////////////////// public: /// Constructor CohesiveKinSrcsDataTet4(void); /// Destructor ~CohesiveKinSrcsDataTet4(void); // PRIVATE MEMBERS ////////////////////////////////////////////////////// private: static const char* _meshFilename; ///< Filename of input mesh static const int _spaceDim; ///< Number of dimensions in vertex coordinates static const int _cellDim; ///< Number of dimensions associated with cell static const int _numBasis; ///< Number of vertices in cell static const int _numQuadPts; ///< Number of quadrature points static const PylithScalar _quadPts[]; ///< Coordinates of quad pts in ref cell static const PylithScalar _quadWts[]; ///< Weights of quadrature points static const PylithScalar _basis[]; ///< Basis fns at quadrature points static const PylithScalar _basisDeriv[]; ///< Derivatives of basis fns at quad pts static const PylithScalar _verticesRef[]; ///< Coordinates of vertices in ref cell (dual basis) static const int _id; ///< Fault material identifier static const char* _label; ///< Label for fault static const char* _finalSlipFilename; ///< Name of db for final slip static const char* _slipTimeFilename; ///< Name of db for slip time static const char* _riseTimeFilename; ///< Name of db for rise time static const char* _matPropsFilename; ///< Name of db for bulk mat properties. //@} static const PylithScalar _fieldT[]; ///< Field over domain at time t. static const PylithScalar _fieldIncr[]; ///< Solution increment field over domain at time t. static const PylithScalar _jacobianLumped[]; ///< Lumped Jacobian. static const PylithScalar _orientation[]; ///< Expected values for fault orientation. static const PylithScalar _area[]; ///< Expected values for fault area. static const PylithScalar _residual[]; ///< Expected values from residual calculation. static const PylithScalar _jacobian[]; ///< Expected values from Jacobian calculation. static const int _verticesFault[]; ///< Expected points for Fault vertices static const int _edgesLagrange[]; ///< Expected points for Lagrange multipliers static const int _verticesPositive[]; ///< Expected points for vertices on + side of fault. static const int _verticesNegative[]; ///< Expected points for vertices on - side of fault. static const int _numFaultVertices; ///< Number of fault vertices static const int _numCohesiveCells; ///< Number of cohesive cells static const int _cellMappingFault[]; ///< Fault cell static const int _cellMappingCohesive[]; ///< Cohesive cell }; #endif // pylith_faults_cohesivekindatatet4_hh // End of file
[ "baagaard@usgs.gov" ]
baagaard@usgs.gov
a000503279a6e05bd4e00c0970974202eb353809
216f5252a8df73f8547d6a6c831409c916bae3e5
/windows_embedded_compact_2013_2015M09/WINCE800/private/test/Multimedia/DirectX/dshow/dshow_glitchfree/scanner.cpp
93311fec7432bdafb953444e588cb717111291bb
[]
no_license
fanzcsoft/windows_embedded_compact_2013_2015M09
845fe834d84d3f0021047bc73d6cf9a75fabb74d
d04b71c517428ed2c73e94caf21a1582b34b18e3
refs/heads/master
2022-12-19T02:52:16.222712
2020-09-28T20:13:09
2020-09-28T20:13:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,933
cpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft shared // source or premium shared source license agreement under which you licensed // this source code. If you did not accept the terms of the license agreement, // you are not authorized to use this source code. For the terms of the license, // please see the license agreement between you and Microsoft or, if applicable, // see the SOURCE.RTF on your install media or the root of your tools installation. // THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES. // #include "Scanner.h" CScanner::CScanner() { } CScanner::~CScanner() { // If we have an open file if (m_ifs != NULL) { // Close it fclose(m_ifs); } } bool CScanner::Init(const char *szFilename) { // Try to open the file m_ifs = NULL; errno_t err = fopen_s(&m_ifs, szFilename, "r"); if(err!=0) { // Report it return false; } else { // If we didn't succeeded if (!m_ifs) { // Report it return false; } } // Advance reading the file return Advance(); } bool CScanner::SkipWhiteSpace() { // I'm considering the following characters as white space: // space character (0x20), carriage return(0x9), line feed(0xD) and tab(0xA) while (1) { // Break if current character is not a white space if (m_ch != 0x20 && m_ch != 0x9 && m_ch != 0xD && m_ch != 0xA) { return true; } // If we couldn't advance reading the file, something went wrong if (!Advance()) { // Report failure return false; } } } //go to next XML tag bool CScanner::Advance() { // If we are not at the end of the file if (!feof(m_ifs)) { // Read next character m_ch = (char)fgetc(m_ifs); // And we are done return true; } // We cannot advance because we reached the end of the file return false; } bool CScanner::Match(const char ch) { // Is the input character equals to the current character? return m_ch == ch; } bool CScanner::GetName(char **ppszName, int *pcchName) { if (!ppszName || !pcchName) { return false; } *ppszName = NULL; *pcchName = 0; const int BUFFER_SIZE = 1024; char pszName[BUFFER_SIZE]; int cchName = 0; while (1) { if (feof(m_ifs)) { return false; } if (m_ch == 0x20 || m_ch == 0x9 || m_ch == 0xD || m_ch == 0xA || m_ch == '/' || m_ch == '>') { break; } if(cchName < BUFFER_SIZE) pszName[cchName++] = m_ch; else return false; if (!Advance()) { return false; } } if (cchName) { *ppszName = new char[cchName + 1]; if (!*ppszName) { return false; } errno_t err = strncpy_s(*ppszName, _countof(pszName), pszName, cchName + 1); if(err!=0) { return false; } else { (*ppszName)[cchName] = '\0'; *pcchName = cchName; } } return true; } bool CScanner::GetAttributeName(char **ppszName, int *pcchName) { if (!ppszName || !pcchName) { return false; } *ppszName = NULL; *pcchName = 0; const int BUFFER_SIZE = 1204; char pszName[BUFFER_SIZE]; int cchName = 0; while (1) { if (feof(m_ifs)) { return false; } if (m_ch == 0x20 || m_ch == 0x9 || m_ch == 0xD || m_ch == 0xA || m_ch == '=') { break; } if(cchName < BUFFER_SIZE) pszName[cchName++] = m_ch; else return false; if (!Advance()) { return false; } } if (cchName) { *ppszName = new char[cchName + 1]; if (!*ppszName) { return false; } errno_t err = strncpy_s(*ppszName, _countof(pszName), pszName, cchName + 1); if(err!=0) { return false; } else { (*ppszName)[cchName] = '\0'; *pcchName = cchName; } } return true; } //return the value of this XML attribute bool CScanner::GetAttributeValue(char **ppszValue, int *pcchValue) { if (!ppszValue || !pcchValue) { return false; } *ppszValue = NULL; *pcchValue = 0; const int BUFFER_SIZE = 1024; char szValue[BUFFER_SIZE]; int cchValue = 0; while (1) { if (feof(m_ifs)) { return false; } if (m_ch == '\'' || m_ch == '\"') { break; } if(cchValue < BUFFER_SIZE) szValue[cchValue++] = m_ch; else return false; if (!Advance()) { return false; } } if (cchValue) { *ppszValue = new char[cchValue + 1]; if (!*ppszValue) { return false; } errno_t err = strncpy_s(*ppszValue, _countof(szValue), szValue, cchValue + 1); if(err!=0) { return false; } else { (*ppszValue)[cchValue] = '\0'; *pcchValue = cchValue; } } return true; } bool CScanner::GetCharacters(char **ppszCharacters, int *pcchCharacters) { if (!ppszCharacters || !pcchCharacters) { return false; } *ppszCharacters = NULL; *pcchCharacters = 0; char pszCharacters[1024]; int cchCharacters = 0; while (1) { if (feof(m_ifs)) { return false; } if (m_ch == '<') { break; } pszCharacters[cchCharacters++] = m_ch; if (!Advance()) { return false; } } if (cchCharacters) { *ppszCharacters = new char[cchCharacters + 1]; if (!*ppszCharacters) { return false; } errno_t err = strncpy_s(*ppszCharacters, _countof(pszCharacters), pszCharacters, cchCharacters + 1); if(err!=0) { return false; } else { (*ppszCharacters)[cchCharacters] = '\0'; *pcchCharacters = cchCharacters; } } return true; }
[ "benjamin.barratt@icloud.com" ]
benjamin.barratt@icloud.com
3c14bf8f9ee60c7c993db2ade39cec4abda59101
c5d59f8c30540d30a1c0930e8c60a8dac8a22889
/tests/brace-list.cc
8378ac616eff77676bcaf97a534a97e8f9aae517
[]
no_license
arai-a/spider-monkey-c-style
524dec2dfc8a99802fefddc9df191783b4730966
d29e7794e702f463aba20a993e04134a14d2725e
refs/heads/master
2021-01-10T01:01:54.383993
2014-04-03T19:16:58
2014-04-04T11:34:41
18,411,979
0
1
null
null
null
null
UTF-8
C++
false
false
278
cc
int match() { // foobar baz[] = // { // 0, // 1, // 2, // { // 1 // } // }; foobar baz[] = { 0, 1, 2, { 1 } }; }
[ "arai_a@mac.com" ]
arai_a@mac.com
fc3cc9da66b4691777681b289f633954ab127271
238e46a903cf7fac4f83fa8681094bf3c417d22d
/OCC/opencascade-7.2.0/x64/debug/inc/MeshVS_SymmetricPairHasher.hxx
e3abfbcc28c12eb61f6650ba2ed0b96dc5b8b374
[ "BSD-3-Clause" ]
permissive
baojunli/FastCAE
da1277f90e584084d461590a3699b941d8c4030b
a3f99f6402da564df87fcef30674ce5f44379962
refs/heads/master
2023-02-25T20:25:31.815729
2021-02-01T03:17:33
2021-02-01T03:17:33
268,390,180
1
0
BSD-3-Clause
2020-06-01T00:39:31
2020-06-01T00:39:31
null
UTF-8
C++
false
false
1,448
hxx
// Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _MeshVS_SymmetricPairHasher_HeaderFile #define _MeshVS_SymmetricPairHasher_HeaderFile #include <Standard_Type.hxx> typedef std::pair<Standard_Integer, Standard_Integer> MeshVS_NodePair; //! Provides symmetric hash methods pair of integers. struct MeshVS_SymmetricPairHasher { static Standard_Integer HashCode (const MeshVS_NodePair& thePair, const Standard_Integer theMaxCode) { return ((thePair.first + thePair.second) & 0x7FFFFFFF) % theMaxCode + 1; } static Standard_Boolean IsEqual (const MeshVS_NodePair& thePair1, const MeshVS_NodePair& thePair2) { return (thePair1.first == thePair2.first && thePair1.second == thePair2.second) || (thePair1.first == thePair2.second && thePair1.second == thePair2.first); } }; #endif // _MeshVS_SymmetricPairHasher_HeaderFile
[ "l”ibaojunqd@foxmail.com“" ]
l”ibaojunqd@foxmail.com“
f1d2908fc0855a47692d913266145e33896e23c7
200b310a18514177117cda1d1faed81dbfaa3a3e
/devel/.private/bwi_perception/include/bwi_perception/GetPCDResponse.h
c5df41bddf0600860696b3d076a694804fbd2e33
[]
no_license
YoheiHayamizu/rl_ws
c63aedd2dc539bd56398dd19eafe9932bc598040
7fdde2f72a3b9cbef585e218d568e8c44c2e374e
refs/heads/main
2023-08-16T09:29:33.289334
2021-10-23T20:59:08
2021-10-23T20:59:08
420,521,618
0
0
null
null
null
null
UTF-8
C++
false
false
5,294
h
// Generated by gencpp from file bwi_perception/GetPCDResponse.msg // DO NOT EDIT! #ifndef BWI_PERCEPTION_MESSAGE_GETPCDRESPONSE_H #define BWI_PERCEPTION_MESSAGE_GETPCDRESPONSE_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> namespace bwi_perception { template <class ContainerAllocator> struct GetPCDResponse_ { typedef GetPCDResponse_<ContainerAllocator> Type; GetPCDResponse_() : success(false) { } GetPCDResponse_(const ContainerAllocator& _alloc) : success(false) { (void)_alloc; } typedef uint8_t _success_type; _success_type success; typedef boost::shared_ptr< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::bwi_perception::GetPCDResponse_<ContainerAllocator> const> ConstPtr; }; // struct GetPCDResponse_ typedef ::bwi_perception::GetPCDResponse_<std::allocator<void> > GetPCDResponse; typedef boost::shared_ptr< ::bwi_perception::GetPCDResponse > GetPCDResponsePtr; typedef boost::shared_ptr< ::bwi_perception::GetPCDResponse const> GetPCDResponseConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::bwi_perception::GetPCDResponse_<ContainerAllocator> & v) { ros::message_operations::Printer< ::bwi_perception::GetPCDResponse_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace bwi_perception namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False} // {'sensor_msgs': ['/opt/ros/kinetic/share/sensor_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'actionlib_msgs': ['/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'visualization_msgs': ['/opt/ros/kinetic/share/visualization_msgs/cmake/../msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsFixedSize< ::bwi_perception::GetPCDResponse_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::bwi_perception::GetPCDResponse_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::bwi_perception::GetPCDResponse_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > { static const char* value() { return "358e233cde0c8a8bcfea4ce193f8fc15"; } static const char* value(const ::bwi_perception::GetPCDResponse_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0x358e233cde0c8a8bULL; static const uint64_t static_value2 = 0xcfea4ce193f8fc15ULL; }; template<class ContainerAllocator> struct DataType< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > { static const char* value() { return "bwi_perception/GetPCDResponse"; } static const char* value(const ::bwi_perception::GetPCDResponse_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > { static const char* value() { return "bool success\n\ \n\ "; } static const char* value(const ::bwi_perception::GetPCDResponse_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.success); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct GetPCDResponse_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::bwi_perception::GetPCDResponse_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::bwi_perception::GetPCDResponse_<ContainerAllocator>& v) { s << indent << "success: "; Printer<uint8_t>::stream(s, indent + " ", v.success); } }; } // namespace message_operations } // namespace ros #endif // BWI_PERCEPTION_MESSAGE_GETPCDRESPONSE_H
[ "hayamizu0111@gmail.com" ]
hayamizu0111@gmail.com
07aeea8f3f6f4a00d70a1a8256e455679f23e970
89d3a934c9ad223941342b652c90911bc37a5aa9
/trie.cpp
ef49476f2ac1084b3f8dd526e11f64e8b0e7faae
[]
no_license
shivam197/Cpp-Algorithms
05cf89d12748369d3c5a06e62b84288c5f384a2a
c6b0a5f299925e04f8e66490db3ceb35980b38d4
refs/heads/master
2021-02-04T00:10:30.047612
2020-03-26T23:39:06
2020-03-26T23:39:06
243,583,118
1
0
null
null
null
null
UTF-8
C++
false
false
2,226
cpp
#include<bits/stdc++.h> #define ll long long int #define ull unsigned long long int #define ld long double #define mod 1000000007 #define FT() int t; scanf("%d",&t); while(t--) #define pb push_back #define nl printf("\n") #define fi(i,start,end) for(int i=start; i < end ; ++i) #define fd(i,end,start) for(int i=end-1;i>=start; --i) #define ip(n) scanf("%d",&n) #define op(n) printf("%d",n) #define mz(a) memset(a,0,sizeof(a)) #define inpArr(A,n) fi(i,0,n) ip(A[i]); #define dispArr(A,n) fi(i,0,n) printf("%d ",A[i]); nl; #define Fastio ios_base::sync_with_stdio(false); cin.tie(NULL); using namespace std; class node { public: char data; bool terminal; map<char,node*> children; node(char ch) { this->data = ch; this->terminal = false; } }; class trie { node *root; int count; public: trie() { this->root = new node('\0'); this->count = 0; } void addWord(string s) { node *temp = root; for(auto i : s) { if(temp->children.count(i)) { temp = temp->children[i];} else { node *p = new node(i); temp->children[i] = p; temp = p; } } count++; temp->terminal = true; } bool search(string s) { node *temp = root; for(auto i : s) { if(temp->children.count(i)) temp = temp->children[i]; else return false; } return temp->terminal; } void showUtil(node *root, char *a,int i) { if(root->terminal) { for(int j=0;j<i;j++) cout<<a[j]; cout<<"\n"; } if(root->children.size()) { for(auto tp : root->children) { a[i] = tp.first; showUtil(tp.second,a,i+1); } } else return; } void show(string s) { char a[10000]; memset(a,'a',sizeof(a)); int ind=0; node *temp = root; for(auto i : s) { if(temp->children.count(i)) {a[ind++]=i; temp = temp->children[i]; } else { addWord(s); cout<<"No suggestions\n"; return; } } showUtil(temp,a,ind); } }; void solve() { trie t; int n;cin>>n; while(n--) { string s; cin>>s; t.addWord(s); } int q; cin>>q; while(q--) { string s; cin>>s; t.show(s); } } int main() { #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); #endif //FT() solve(); return 0; }
[ "shivamsehgal1980@gmail.com" ]
shivamsehgal1980@gmail.com
d94c8dff10ffd22180348a315891a5f065076941
2d43e1f524cef29254db386f6483e93b46ac2434
/tests/flash_mock.cpp
80bea0e8b7f877882614d488991e934e779ec179
[ "MIT" ]
permissive
cvra/parameter_flash_storage
4736465477bf3de518f0f296b87b644f485a6282
c52353044ff2e142b13921af764eb63017fe2ae8
refs/heads/master
2021-10-07T07:41:53.157809
2018-12-03T20:26:47
2018-12-03T20:26:47
109,841,335
2
0
MIT
2018-12-03T13:59:18
2017-11-07T13:47:24
C
UTF-8
C++
false
false
1,430
cpp
#include <CppUTest/TestHarness.h> #include <CppUTestExt/MockSupport.h> #include "../flash.h" #include <cstring> extern "C" { void flash_lock(void) { mock("flash").actualCall("lock"); } void flash_unlock(void) { mock("flash").actualCall("unlock"); } void flash_sector_erase(void *p) { mock("flash").actualCall("erase").withParameter("sector", p); /* At least invalid any checksum in that block. */ memset(p, 0, 1); } void flash_write(void *addr, const void *data, size_t len) { memcpy(addr, data, len); mock("flash").actualCall("write"); } uint8_t flash_addr_to_sector(void *addr) { (void) addr; return mock("flash").actualCall("addr_to_sector").returnIntValueOrDefault(0); } void flash_sector_erase_number(uint8_t number) { mock("flash").actualCall("erase").withParameter("sector_number", number); } } TEST_GROUP(FlashMockTestCase) { }; TEST(FlashMockTestCase, TestFlashLock) { mock("flash").expectOneCall("lock"); flash_lock(); } TEST(FlashMockTestCase, TestFlashUnlock) { mock("flash").expectOneCall("unlock"); flash_unlock(); } TEST(FlashMockTestCase, TestFlashErase) { int a; mock("flash").expectOneCall("erase").withParameter("sector", &a); flash_sector_erase(&a); } TEST(FlashMockTestCase, TestFlashWrite) { int a; int b = 42; mock("flash").expectOneCall("write"); flash_write(&a, &b, sizeof a); CHECK_EQUAL(b, a); }
[ "antoine@antoinealb.net" ]
antoine@antoinealb.net
59ae14c29523013d59f19750ea4095028fed56e3
6e1d46473b0d98f59a87ee52d4012ba8bc15fc22
/T4C Server/WDAWorlds.h
fff84b3f64aa94d2e1b429ffe2542d630692ea80
[]
no_license
BlackFury/Server-1
3ad544831a294225c9ca7a475a2347a4c6808372
ea0a8b57737f3fcc6406a0fd58fd79a644019d32
refs/heads/master
2022-03-15T21:51:08.729897
2017-05-19T17:43:47
2017-05-19T17:43:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,342
h
#ifndef AFX_WDAWORLDS_H__0F034DCF_D33D_11D2_84AD_00E02922FA40__INCLUDED_ #define AFX_WDAWORLDS_H__0F034DCF_D33D_11D2_84AD_00E02922FA40__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif #include "WDATable.h" #include <vector> #include <string> class WDAWorlds : public WDATable { public: // Construction WDAWorlds( vir::Logger &cTraceLogger ); virtual ~WDAWorlds(); // Structures. struct WorldData{ WorldData() : m_ReadOnly(false), wWorldID(0), wWorldSizeX(0), wWorldSizeY(0), lpbData(NULL) {} bool m_ReadOnly; WORD wWorldID; std::string csWorldName; WORD wWorldSizeX; WORD wWorldSizeY; LPBYTE lpbData; }; // Saves to a wdaFile virtual void SaveTo( WDAFile &wdaFile ); // Creates from a wdaFile. virtual void CreateFrom( WDAFile &wdaFile, bool createReadOnly ); #ifndef NO_DAO_SUPPORT // Loads the worlds from a DAO support virtual void CreateFrom( CDaoRecordset &cRecord, CDaoDatabase &cDatabase ); #endif // Returns the worlds. virtual std::vector< WorldData > &GetWorlds( void ); private: std::vector< WorldData > vWorlds; }; #endif
[ "melodiass@com-db.fr" ]
melodiass@com-db.fr
8d1e7e1f6163e68521c82e33378e117ff21d7878
23954f95e2b22f588a4f432e46c134891d8a078f
/HMM/build/classes/hmm/viterbi-pr.cpp
dd3092127e0b11825eaebf8d26d209b9ab12c19a
[]
no_license
siddug/POS-tagger
4c78b236d0092429aad3de966f69eb96f072f001
a2a44c2a67818763773d9ca607272668d2dba1fe
refs/heads/master
2016-09-06T03:15:17.021621
2013-10-25T11:52:35
2013-10-25T11:52:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,508
cpp
#include <iostream> #include <vector> #include <map> #include <string> #include <string.h> using namespace std; typedef struct Node Node; typedef Node* NodePtr; struct Node{ int state; NodePtr prev_node; float prob; Node(int s,NodePtr prev, float p):state(s),prev_node(prev),prob(p){} }; char* speech; vector<char> correct_pos; vector<string> tokens; int count; map<string,int> word_id_map; int v_correct,a_correct,r_correct,n_correct,o_correct; int v_assigned,a_assigned,r_assigned,n_assigned,o_assigned; int v_total,a_total,r_total,n_total,o_total; int tgs[5][5]; int printPath(NodePtr node){ int prev_count=0; if(node->prev_node->prev_node!=NULL){ prev_count = printPath(node->prev_node); } cout<<tokens[count]<<"_"<<speech[node->state]<<" "; int ti, tj; if(speech[node->state]=='V'){ti=0;} else if(speech[node->state]=='A'){ti=1;} else if(speech[node->state]=='R'){ti=2;} else if(speech[node->state]=='N'){ti=3;} else {ti=4;} if(correct_pos[count]=='V'){tj=0;} else if(correct_pos[count]=='A'){tj=1;} else if(correct_pos[count]=='R'){tj=2;} else if(correct_pos[count]=='N'){tj=3;} else {tj=4;} if(ti==tj){tgs[tj][tj]++;} else{ tgs[tj][ti]++; } if(speech[node->state]=='V')v_assigned++; else if(speech[node->state]=='A')a_assigned++; else if(speech[node->state]=='R')r_assigned++; else if(speech[node->state]=='N')n_assigned++; else if(speech[node->state]=='O')o_assigned++; if(speech[node->state]==correct_pos[count]){ prev_count++; if(correct_pos[count]=='V')v_correct++; else if(correct_pos[count]=='A')a_correct++; else if(correct_pos[count]=='R')r_correct++; else if(correct_pos[count]=='N')n_correct++; else if(correct_pos[count]=='O')o_correct++; } count++; return prev_count; } /*void printPath(NodePtr node){ //if(node==NULL)cout<<"Node Null at : "<<count<<endl; //if(node->prev_node==NULL)cout<<"Previous node null at : "<<count<<endl; if(node->prev_node->prev_node!=NULL){printPath(node->prev_node);} //cout<<"Entered node : "<<count<<endl; cout<<tokens[count]<<"_"<<speech[node->state]<<" ";count++; }*/ int main(){ for(int temp=0;temp<5;temp++){ for(int temp2=0;temp2<5;temp2++){ tgs[temp][temp2]=0; } } int num_states; int num_alpha; int total_tags = 0; int total_correct_tags = 0; v_correct=0;a_correct=0;r_correct=0;n_correct=0;o_correct=0; v_total=0;a_total=0;r_total=0;n_total=0;o_total=0; v_assigned=0;a_assigned=0;r_assigned=0;n_assigned=0;o_assigned=0; cin>>num_states>>num_alpha; //cout<<"Number of states: "<<num_states<<endl; //cout<<"Possibilities: "<<num_alpha<<endl; float state_trans_prob[num_states+1][num_states+1]; float alpha_prob[num_states+1][num_alpha+1]; speech=new char[6]; speech[0]='s';speech[1]='V';speech[2]='A';speech[3]='R';speech[4]='N';speech[5]='O'; /*Taking input of probabilities of transitions to start state */ for(int i=1;i<=num_states;i++){ cin>>state_trans_prob[0][i]; } /*Taking input of probabilities of transitions from one state to another */ for(int i=1;i<=num_states;i++){ for(int j=1;j<=num_states;j++){ cin>>state_trans_prob[i][j]; } } /*Taking input of probabilities of taking an alphabet from a state */ for(int i=1;i<=num_alpha;i++){ float total=0; int word_id;cin>>word_id; string word;cin>>word; //cout<<word_id<<" "<<word<<endl; word_id_map[word]=word_id; for(int j=1;j<=num_states;j++){ cin>>alpha_prob[j][word_id]; total+=alpha_prob[j][word_id]; } //if(total!=1)cout<<"error"<<endl; } /*Taking input of observed sequence */ char sentence[1024]; cin.ignore(); cin.ignore(); cin.getline(sentence,1024); /*string s; cin>>s; for(int ik=0;ik<1024&&ik<s.size();ik++) {sentence[ik]=s[ik];} sentence[ik+1]='\0';*/ int k=100; while(k!=0){ k--; //cout<<"Given: "<<sentence<<endl; tokens.clear(); correct_pos.clear(); string token=""; count=0; for(int i=0;sentence[i]!='\0';i++){ if(sentence[i]!='_')token.push_back(sentence[i]); else{ if(token!=""){ tokens.push_back(token); total_tags++; if(sentence[i+1]=='V')v_total++; else if(sentence[i+1]=='A')a_total++; else if(sentence[i+1]=='R')r_total++; else if(sentence[i+1]=='N')n_total++; else if(sentence[i+1]=='O')o_total++; correct_pos.push_back(sentence[i+1]); } token=""; i++;i++; if(sentence[i]=='\0')i--; } } //tokens.push_back(token); int num_obs = tokens.size(); int obs_seq[num_obs]; for(int i=0;i<num_obs;i++){ if(word_id_map.count(tokens[i])>0)obs_seq[i] = word_id_map[tokens[i]]; else obs_seq[i]=-1; //if(obs_seq[i]==-1)cout<<"NotFound:"; //cout<<tokens[i]<<" "; } //cout<<endl; /* cur_states stores the possible paths ending at different states */ NodePtr cur_states[num_states+1]; /*Initialising with the first transition */ NodePtr start_node = new Node(0,NULL,1); for(int i=1;i<=num_states;i++){ float prob = state_trans_prob[0][i]; cur_states[i] = new Node(i,start_node,prob); //cout<<i<<": "<<prob<<", "; } //cout<<endl; NodePtr temp_states[num_states+1][num_states+1]; for(int i=0;i<num_obs;i++){ //cout<<"Looking for "<<tokens[i]<<endl; for(int j=1;j<=num_states;j++){ for(int k=1;k<=num_states;k++){ //if(cur_states[j]->prob==0)cout<<"cur_states[j]->prob"<<endl; //if(state_trans_prob[cur_states[j]->state][k]==0)cout<<"state_trans_prob[cur_states[j]->state][k]"<<endl; //if(alpha_prob[cur_states[j]->state][obs_seq[i]]==0)cout<<"alpha_prob[cur_states[j]->state][obs_seq[i]]"<<endl; float temp_prob = 0.2; if(obs_seq[i]!=-1)temp_prob = alpha_prob[cur_states[j]->state][obs_seq[i]]; float prob = cur_states[j]->prob * state_trans_prob[cur_states[j]->state][k] * temp_prob; temp_states[j][k] = new Node(k,cur_states[j],prob); //cout<<cur_states[j]->state<<","<<k<<": "<<prob<<", "; } //cout<<endl; } for(int j=1;j<=num_states;j++){ NodePtr highest_node = temp_states[1][j]; for(int k=1;k<=num_states;k++){ if(temp_states[k][j]->prob > highest_node->prob)highest_node = temp_states[k][j]; } cur_states[j] = highest_node; //cout<<cur_states[j]->state<<": "<<cur_states[j]->prob<<", "; } //cout<<endl<<endl; } NodePtr end_node = cur_states[1]; for(int i=1;i<=num_states;i++){ if(cur_states[i]->prob > end_node->prob)end_node = cur_states[i]; } //cout<<"Printing path"<<endl; //cout<<end_node->state<<endl; //cout<<end_node->prob<<endl; //cout<<end_node->prev_node->state<<endl; int correct_tags = printPath(end_node->prev_node); total_correct_tags+=correct_tags; cout<<endl; cin.getline(sentence,1024); } cout<<"Correct: "<<total_correct_tags<<endl; cout<<"Given: "<<total_tags<<endl; float t_r=0; float t_p=0; cout<<"V statistics"<<endl; float Recall=(float)v_correct/v_total; float Precision=(float)v_correct/v_assigned; cout<<"Precision: "<<Precision<<endl; cout<<"Recall: "<<Recall<<endl; cout<<"F: "<<(2*Precision*Recall)/(Precision+Recall)<<endl; cout<<endl; t_r+=Recall; t_p+=Precision; cout<<"A statistics"<<endl; Recall=(float)a_correct/a_total; Precision=(float)a_correct/a_assigned; cout<<"Precision: "<<Precision<<endl; cout<<"Recall: "<<Recall<<endl; cout<<"F: "<<(2*Precision*Recall)/(Precision+Recall)<<endl; cout<<endl; t_r+=Recall; t_p+=Precision; cout<<"R statistics"<<endl; Recall=(float)r_correct/r_total; Precision=(float)r_correct/r_assigned; cout<<"Precision: "<<Precision<<endl; cout<<"Recall: "<<Recall<<endl; cout<<"F: "<<(2*Precision*Recall)/(Precision+Recall)<<endl; cout<<endl; t_r+=Recall; t_p+=Precision; cout<<"N statistics"<<endl; Recall=(float)n_correct/n_total; Precision=(float)n_correct/n_assigned; cout<<"Precision: "<<Precision<<endl; cout<<"Recall: "<<Recall<<endl; cout<<"F: "<<(2*Precision*Recall)/(Precision+Recall)<<endl; cout<<endl; t_r+=Recall; t_p+=Precision; cout<<"O statistics"<<endl; Recall=(float)o_correct/o_total; Precision=(float)o_correct/o_assigned; cout<<"Precision: "<<Precision<<endl; cout<<"Recall: "<<Recall<<endl; cout<<"F: "<<(2*Precision*Recall)/(Precision+Recall)<<endl; cout<<endl; t_r+=Recall; t_p+=Precision; int total_correct = v_correct+a_correct+r_correct+n_correct+o_correct; int total_total = v_total+a_total+r_total+n_total+o_total; int total_assigned = v_assigned+a_assigned+r_assigned+n_assigned+o_assigned; t_r/=5; t_p/=5; cout<<"Overall statistics"<<endl; Recall=(float)total_correct/total_total; Precision=(float)total_correct/total_assigned; //cout<<"Precision: "<<Precision<<endl; //cout<<"Recall: "<<Recall<<endl; cout<<"Precision: "<<t_p<<endl; cout<<"Recall: "<<t_r<<endl; //cout<<"F: "<<(2*Precision*Recall)/(Precision+Recall)<<endl; cout<<"F: "<<(2*t_p*t_r)/(t_p+t_r)<<endl; cout<<endl; cout<<"Confusion matrix: "<<endl; for(int temp=0;temp<5;temp++){ int c=0; for(int temp2=0;temp2<5;temp2++){ c+=tgs[temp][temp2]; } for(int temp2=0;temp2<5;temp2++){ cout<<(float)tgs[temp][temp2]/(float)c<<" "; } cout<<endl; } return 0; }
[ "siddhartha.gunti191@gmail.com" ]
siddhartha.gunti191@gmail.com
c3746893ca86c1b93abf95a01097cae735f12284
d08d5bf8fd21587763a94dea1ac775ec0388eb70
/core/render_system/Updater.hpp
df745eae5e4ec233f8c066e99f6734a8e694cc35
[ "MIT" ]
permissive
ibequa/flexo
c1fa7a7fd28b46659702380c86bf8f16f2f1014a
93b9b1287f33bd3420e33bf4a7bc5961d680b5e1
refs/heads/master
2021-01-09T20:39:47.863350
2016-07-13T13:53:17
2016-07-13T13:53:17
63,248,577
0
0
null
null
null
null
UTF-8
C++
false
false
478
hpp
// // Updater.hpp // Flexo // // Created by Ilya on 27/03/16. // Copyright © 2016 Ilya. All rights reserved. // #ifndef Updater_hpp #define Updater_hpp #define updater Updater::instance() class Component; class Updater final { private: Updater() {} public: void update(); void awake(); static Updater& instance(); void setAwaked(Component* const c, bool flag); bool isAwaked(Component* const c) const; }; #endif /* Updater_hpp */
[ "ibequa@gmail.com" ]
ibequa@gmail.com
74e3fa539c0fcc1a533d0104e7b1dc9db31f5077
1cf49e005bec00ffba3a966365ebf77658ac3215
/Medium/11.Funciones/97.04.Parte_fraccionaria.cpp
de53a8aa6176e04af8467bdb3d9fb6d07310cf45
[]
no_license
raulgoce/porfolio
394e4fd5d9971d6b1c6b41b85d77eb4887fc6274
905cc2079bf45d12105dc49adf22f9a8b33c62ab
refs/heads/master
2020-06-11T11:06:47.532241
2019-06-26T17:02:16
2019-06-26T17:02:16
193,939,600
0
0
null
null
null
null
UTF-8
C++
false
false
541
cpp
/* 3.Escribe un programa que devuelva la parte fraccionaria de un numero introducido por el user.*/ #include <iostream> #include <conio.h> using namespace std; //Prototipo de la funcion void askData(); float cutNumber(float x); float number; int main(){ askData(); cout<<"La parte fraccionaria del numero es: "<<cutNumber(number); getch(); return 0; } //definicion de funcion void askData(){ cout<<"Escriba su numero: "; cin>>number; } float cutNumber(float n){ int integer = n; float result= n-integer; return result; }
[ "your@email.com" ]
your@email.com
ad1e53933612738a1035b4925677b6ab4636dba0
5ff80a43bc2037b1e8d1656490d6302fdf61a1ab
/stackassignment/ev.cpp
4fa4bb755f76c126972cdcccfd5c318fcf72d0b2
[]
no_license
samikshasadana/data_structures
a22544e761494c90621bbda318995a0e79df177e
af19220a48d5f0855175dbc4743de0646a0a2302
refs/heads/master
2020-04-20T20:49:41.488322
2019-02-04T14:23:38
2019-02-04T14:23:38
169,089,201
0
0
null
null
null
null
UTF-8
C++
false
false
569
cpp
#include<iostream> using namespace std; int top=-1; int a[100]; void push(int x){ a[++top]=x; } int pop(){ int c=a[top]; top--; return c; } void eval(char exp[]){ char *e; int a,b,c; e=exp; while(*e!='\0'){ if(*e=='+'){ a=pop(); b=pop(); c=a+b; //cout<<c; // cout<<c<<" "<<a<<" "<<b<<endl; push(c); } if(*e=='*'){ a=pop(); b=pop(); c=a*b; //cout<<c<<" "<<a<<" "<<b<<endl; push(c); } else if(isalnum(*e)) { //cout<<*e-48<<endl; push(*e-48); } e++; } cout<<pop(); } int main(){ char s[100]; cin>>s; eval(s); }
[ "sadanasamiksha@gmail.com" ]
sadanasamiksha@gmail.com
b212f623a2d935cfdf27b87b853660898472a2ec
2d42a50f7f3b4a864ee19a42ea88a79be4320069
/source/game/forms/characterwindow.cpp
f11c9bee7a59027d617a00f1e828431b20da51cb
[]
no_license
Mikalai/punk_project_a
8a4f55e49e2ad478fdeefa68293012af4b64f5d4
8829eb077f84d4fd7b476fd951c93377a3073e48
refs/heads/master
2016-09-06T05:58:53.039941
2015-01-24T11:56:49
2015-01-24T11:56:49
14,536,431
1
0
null
2014-06-26T06:40:50
2013-11-19T20:03:46
C
UTF-8
C++
false
false
250
cpp
#include "characterwindow.h" #include "ui_characterwindow.h" CharacterWindow::CharacterWindow(QWidget *parent) : QWidget(parent), ui(new Ui::CharacterWindow) { ui->setupUi(this); } CharacterWindow::~CharacterWindow() { delete ui; }
[ "nickolaib2004@gmail.com" ]
nickolaib2004@gmail.com
b3a6b08cb4e4a6c80e8d5192da5150b9d0a30ca7
59ad83925bd1ffb3f3b6248ddf317921ed2bb24b
/ATATool/PropertyPageMATV.cpp
d0610827ad10ea03814b1b1d79b0ac7b61fe6964
[]
no_license
momoomom/ATA
f5cb01615b2b662d54ec834c95d7d5921ab96c7c
92489654d21c61b8a5cc6f62b790ddfa6448e704
refs/heads/master
2021-12-11T13:20:11.810785
2016-11-15T07:02:26
2016-11-15T07:02:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,401
cpp
// PropertyPageMATV.cpp : implementation file // #include "stdafx.h" #include "ATATool.h" #include "PropertyPageMATV.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CPropertyPageMATV property page IMPLEMENT_DYNCREATE(CPropertyPageMATV, CPropertyPage) char MATVCountry[][64] = { "TV_AFGHANISTAN", "TV_ARGENTINA", "TV_AUSTRALIA", "TV_BRAZIL", "TV_BURMA", "TV_CAMBODIA", "TV_CANADA", "TV_CHILE", "TV_CHINA", "TV_CHINA_HONGKONG", "TV_CHINA_SHENZHEN", "TV_EUROPE_EASTERN", "TV_EUROPE_WESTERN", "TV_FRANCE", "TV_FRENCH_COLONIE", "TV_INDIA", "TV_INDONESIA", "TV_IRAN", "TV_ITALY", "TV_JAPAN", "TV_KOREA", "TV_LAOS", "TV_MALAYSIA", "TV_MEXICO", "TV_NEWZEALAND", "TV_PAKISTAN", "TV_PARAGUAY", "TV_PHILIPPINES", "TV_PORTUGAL", "TV_RUSSIA", "TV_SINGAPORE", "TV_SOUTHAFRICA", "TV_SPAIN", "TV_TAIWAN", "TV_THAILAND", "TV_TURKEY", "TV_UNITED_ARAB_EMIRATES", "TV_UNITED_KINGDOM", "TV_USA", "TV_URUGUAY", "TV_VENEZUELA", "TV_VIETNAM", "TV_IRELAND", "TV_MOROCCO", "TV_COUNTRY_MAX" }; CPropertyPageMATV::CPropertyPageMATV() : CPropertyPage(CPropertyPageMATV::IDD) { //{{AFX_DATA_INIT(CPropertyPageMATV) m_MATVChip = _T(""); m_MATVFreq = 0; //}}AFX_DATA_INIT } CPropertyPageMATV::~CPropertyPageMATV() { } void CPropertyPageMATV::DoDataExchange(CDataExchange* pDX) { CPropertyPage::DoDataExchange(pDX); //{{AFX_DATA_MAP(CPropertyPageMATV) DDX_Control(pDX, IDC_COMBO_MATV_COUNTRY, m_comboCountry); DDX_Text(pDX, IDC_EDIT_MATV_CHIP, m_MATVChip); DDX_Text(pDX, IDC_EDIT_MATV_FREQ, m_MATVFreq); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CPropertyPageMATV, CPropertyPage) //{{AFX_MSG_MAP(CPropertyPageMATV) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CPropertyPageMATV message handlers void CPropertyPageMATV::UpdateParameters () { UpdateData (true); // common cfg p_sCommonCFG->matv_freq = m_MATVFreq; p_sCommonCFG->matv_country = m_comboCountry.GetCurSel (); // spec memcpy (p_sTestSpec->atv_chip, m_MATVChip.GetBuffer(0), m_MATVChip.GetLength()); p_sTestSpec->atv_chip[m_MATVChip.GetLength()] = '\0'; } void CPropertyPageMATV::InitParameters () { // common cfg m_MATVFreq = p_sCommonCFG->matv_freq; m_comboCountry.SetCurSel (p_sCommonCFG->matv_country); // spec m_MATVChip = p_sTestSpec->atv_chip; UpdateData (false); } BOOL CPropertyPageMATV::OnInitDialog() { CPropertyPage::OnInitDialog(); // TODO: Add extra initialization here for (int index = 0; ; index ++) { if (strcmp (MATVCountry[index], "TV_COUNTRY_MAX") == 0) { break; } CString str; str.Format ("%s", MATVCountry[index]); m_comboCountry.AddString (str); } m_comboCountry.SetCurSel (10); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE }
[ "jian.song@wheatek.com" ]
jian.song@wheatek.com
85e4ed7fe1f5edceb4743cdf9a0cddacc460b19b
59bd9f538a2deb427d95ccc6701fa89ad3bcccc3
/newfile.cpp
b6c25ecebeb6812c2497fa0430b7bbebe5443083
[]
no_license
avDec25/codes
841478189bebbbb64a2f0fa30b4629f6da649188
9c59468ae7e52ef6fe8cf646712b67723217e783
refs/heads/master
2016-09-06T16:47:19.070367
2015-02-27T22:20:38
2015-02-27T22:20:38
29,458,332
0
0
null
null
null
null
UTF-8
C++
false
false
579
cpp
/* * ===================================================================================== * * Filename: newfile.cpp * * Description: * * Version: 1.0 * Created: Friday 27 February 2015 04:37:18 IST * Revision: none * Compiler: gcc * * Author: Amar Vashishth (av), vashishth.amar@gmail.com * Organization: * * ===================================================================================== */ #include <iostream> using namespace std; int main() { std::cout << "this is a new line"; return 0; }
[ "vashishth.amar@gmail.com" ]
vashishth.amar@gmail.com
f279ba83c6cfc3d5f67c3c29b8b433b6d70dac23
e641bd95bff4a447e25235c265a58df8e7e57c84
/chrome/browser/media/kaleidoscope/kaleidoscope_tab_helper.cc
414e4e2aaf51d9ea5aa825c89dbc03abda2875ae
[ "BSD-3-Clause" ]
permissive
zaourzag/chromium
e50cb6553b4f30e42f452e666885d511f53604da
2370de33e232b282bd45faa084e5a8660cb396ed
refs/heads/master
2023-01-02T08:48:14.707555
2020-11-13T13:47:30
2020-11-13T13:47:30
312,600,463
0
0
BSD-3-Clause
2022-12-23T17:01:30
2020-11-13T14:39:10
null
UTF-8
C++
false
false
3,367
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/media/kaleidoscope/kaleidoscope_tab_helper.h" #include "base/metrics/histogram_functions.h" #include "chrome/browser/media/kaleidoscope/constants.h" #include "content/public/browser/navigation_handle.h" #include "services/metrics/public/cpp/ukm_builders.h" #include "services/metrics/public/cpp/ukm_entry_builder.h" #include "services/metrics/public/cpp/ukm_recorder.h" #include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h" #include "third_party/blink/public/mojom/autoplay/autoplay.mojom.h" namespace { const url::Origin& KaleidoscopeOrigin() { static base::NoDestructor<url::Origin> origin( url::Origin::Create(GURL(kKaleidoscopeUIURL))); return *origin; } const url::Origin& KaleidoscopeUntrustedOrigin() { static base::NoDestructor<url::Origin> origin( url::Origin::Create(GURL(kKaleidoscopeUntrustedContentUIURL))); return *origin; } const char kKaleidoscopeNavigationHistogramName[] = "Media.Kaleidoscope.Navigation"; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class KaleidoscopeNavigation { kNormal = 0, kMaxValue = kNormal, }; bool IsOpenedFromKaleidoscope(content::NavigationHandle* handle) { return (handle->GetInitiatorOrigin() && handle->GetInitiatorOrigin()->IsSameOriginWith( KaleidoscopeUntrustedOrigin())); } bool ShouldAllowAutoplay(content::NavigationHandle* handle) { // If the initiating origin is Kaleidoscope then we should allow autoplay. if (IsOpenedFromKaleidoscope(handle)) return true; // If the tab is Kaleidoscope then we should allow autoplay. auto parent_origin = url::Origin::Create(handle->GetWebContents()->GetLastCommittedURL()); if (parent_origin.IsSameOriginWith(KaleidoscopeOrigin())) { return true; } return false; } } // namespace KaleidoscopeTabHelper::KaleidoscopeTabHelper(content::WebContents* web_contents) : content::WebContentsObserver(web_contents) {} KaleidoscopeTabHelper::~KaleidoscopeTabHelper() = default; void KaleidoscopeTabHelper::ReadyToCommitNavigation( content::NavigationHandle* handle) { if (handle->IsSameDocument() || handle->IsErrorPage()) return; if (!ShouldAllowAutoplay(handle)) return; mojo::AssociatedRemote<blink::mojom::AutoplayConfigurationClient> client; handle->GetRenderFrameHost()->GetRemoteAssociatedInterfaces()->GetInterface( &client); client->AddAutoplayFlags(url::Origin::Create(handle->GetURL()), blink::mojom::kAutoplayFlagUserException); // Only record metrics if this page was opened by Kaleidoscope. if (IsOpenedFromKaleidoscope(handle)) { base::UmaHistogramEnumeration(kKaleidoscopeNavigationHistogramName, KaleidoscopeNavigation::kNormal); ukm::UkmRecorder* ukm_recorder = ukm::UkmRecorder::Get(); if (!ukm_recorder) return; ukm::builders::Media_Kaleidoscope_Navigation( handle->GetNextPageUkmSourceId()) .SetWasFromKaleidoscope(true) .Record(ukm_recorder); } } WEB_CONTENTS_USER_DATA_KEY_IMPL(KaleidoscopeTabHelper)
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
2d6ebccdb177cd1bf2ecd73b645a48b1ada82cff
3b3c47803b31d814e500caa8896427afc8c8c25b
/funciones.h
956c345e40124e424136ccada4eb3672c70099b7
[]
no_license
vitorohe/tarea2PAI
7359e09fe667faad3ca61f3a1f33e0dc352e297b
532d1b9f92e440ef2eb0cd053362108cbb441f12
refs/heads/master
2021-01-20T23:27:13.091671
2013-05-23T17:45:11
2013-05-23T17:45:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
328
h
//funciones.h #ifndef FUNCIONES_H #define FUNCIONES_H #include <opencv2/core/core.hpp> using namespace cv; class Funciones { public: Funciones(); static int umbralOtsu(Mat input); static Mat histograma(Mat input); static vector<vector<Point> > get_contours(Mat input, vector<Vec4i>& hierarchy); }; #endif // FUNCIONES_H
[ "vitorohe@gmail.com" ]
vitorohe@gmail.com
ec414790ea5872f0c3ffe74f750ee410a4af4c4b
31ac07ecd9225639bee0d08d00f037bd511e9552
/externals/OCCTLib/inc/Handle_XmlMXCAFDoc_MaterialDriver.hxx
d0aa4880bf0445d8b1d5469ee47aedadf77419da
[]
no_license
litao1009/SimpleRoom
4520e0034e4f90b81b922657b27f201842e68e8e
287de738c10b86ff8f61b15e3b8afdfedbcb2211
refs/heads/master
2021-01-20T19:56:39.507899
2016-07-29T08:01:57
2016-07-29T08:01:57
64,462,604
1
0
null
null
null
null
UTF-8
C++
false
false
806
hxx
// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _Handle_XmlMXCAFDoc_MaterialDriver_HeaderFile #define _Handle_XmlMXCAFDoc_MaterialDriver_HeaderFile #ifndef _Standard_HeaderFile #include <Standard.hxx> #endif #ifndef _Standard_DefineHandle_HeaderFile #include <Standard_DefineHandle.hxx> #endif #ifndef _Handle_XmlMDF_ADriver_HeaderFile #include <Handle_XmlMDF_ADriver.hxx> #endif class Standard_Transient; class Handle(Standard_Type); class Handle(XmlMDF_ADriver); class XmlMXCAFDoc_MaterialDriver; DEFINE_STANDARD_HANDLE(XmlMXCAFDoc_MaterialDriver,XmlMDF_ADriver) #endif
[ "litao1009@gmail.com" ]
litao1009@gmail.com
b742f64a44cb1274b42a06f972a8c5154c2be7cc
9b527d9e39ff2b33e2e86af842031bf27d4bebe4
/C/chash/asgn2/cd.cpp
444a8edd2b413a8096b6d9b8a6d64c9516ffca99
[]
no_license
Brinews/jacky
c50cdc5471ef7a764c2a27313ebf848e41c4aee0
e3f0f4bdf4253448f22306b353cb45560e882587
refs/heads/master
2021-01-17T08:32:11.034322
2017-12-03T08:28:17
2017-12-03T08:28:17
14,444,828
1
2
null
null
null
null
UTF-8
C++
false
false
958
cpp
#include "cd.h" #include <stdlib.h> Cd::Cd() { memset(performers, 0, sizeof(performers)); memset(label, 0, sizeof(label)); selections = 0; playtime = 0.0; } Cd::Cd(char *s1, char *s2, int n, double x) { int i = 0; memset(performers, 0, sizeof(performers)); while (s1 != NULL && *s1 != '\0') performers[i++] = *s1++; i = 0; memset(label, 0, sizeof(label)); while (s2 != NULL && *s2 != '\0') label[i++] = *s2++; selections = n; playtime = x; } Cd::Cd(const Cd& d) { selections = d.selections; playtime = d.playtime; strcpy(performers, d.performers); strcpy(label, d.label); } void Cd::Report() const { cout << performers << ", " << label << ", " << selections << ", " << playtime << endl; } Cd& Cd::operator=(const Cd &d) { if (&d != this) { selections = d.selections; playtime = d.playtime; strcpy(label, d.label); strcpy(performers, d.performers); } else cout << "self assignment." << endl; return *this; }
[ "brinewsor@gmail.com" ]
brinewsor@gmail.com
40cf3fe024d996445dfee442c910c313fad4cdf0
b8499de1a793500b47f36e85828f997e3954e570
/v2_3/build/Android/Debug/app/src/main/include/Fuse.Navigation.Route-8eb7c589.h
298ecee61a2561a13c2fc76a8bee10d51b39e80c
[]
no_license
shrivaibhav/boysinbits
37ccb707340a14f31bd57ea92b7b7ddc4859e989
04bb707691587b253abaac064317715adb9a9fe5
refs/heads/master
2020-03-24T05:22:21.998732
2018-07-26T20:06:00
2018-07-26T20:06:00
142,485,250
0
0
null
2018-07-26T20:03:22
2018-07-26T19:30:12
C++
UTF-8
C++
false
false
391
h
// This file was generated based on C:/Users/Vaibhav/AppData/Local/Fusetools/Packages/Fuse.Navigation/1.9.0/RouterModify.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Int.h> namespace g{ namespace Fuse{ namespace Navigation{ // internal enum RouterModify.Flags :98 uEnumType* RouterModify__Flags_typeof(); }}} // ::g::Fuse::Navigation
[ "shubhamanandoist@gmail.com" ]
shubhamanandoist@gmail.com
cc156e3fcb54a4d3e6aad6ec3d81ec42cbb4e8c3
a7c8fef892ae6a0976b61773291cc21e9461342d
/RT/Bmpfile.cpp
7d1173f56d1170c2c2cc692197bf9398c38ce350
[]
no_license
AntoineCollot/SyntheseImage
8e1fa14fc29fbf529b927f2bba4fe488c576d53c
898710c1a91a51e59814d9d6f0477e273c957495
refs/heads/master
2021-01-19T09:24:29.718201
2017-02-15T20:55:39
2017-02-15T20:55:39
82,105,725
0
0
null
null
null
null
UTF-8
C++
false
false
1,296
cpp
#ifdef _WIN32 #define _CRT_SECURE_NO_DEPRECATE #endif #include "BMPFILE.h" void BMPFile::SaveBmp(std::string fileName,unsigned char *img,unsigned int w,unsigned int h) { int filesize = 54 + 3*w*h; //w is your image width, h is image height, both int unsigned char bmpfileheader[14] = {'B','M', 0,0,0,0, 0,0, 0,0, 54,0,0,0}; unsigned char bmpinfoheader[40] = {40,0,0,0, 0,0,0,0, 0,0,0,0, 1,0, 24,0}; unsigned char bmppad[3] = {0,0,0}; bmpfileheader[ 2] = (unsigned char)(filesize ); bmpfileheader[ 3] = (unsigned char)(filesize>> 8); bmpfileheader[ 4] = (unsigned char)(filesize>>16); bmpfileheader[ 5] = (unsigned char)(filesize>>24); bmpinfoheader[ 4] = (unsigned char)( w ); bmpinfoheader[ 5] = (unsigned char)( w>> 8); bmpinfoheader[ 6] = (unsigned char)( w>>16); bmpinfoheader[ 7] = (unsigned char)( w>>24); bmpinfoheader[ 8] = (unsigned char)( h ); bmpinfoheader[ 9] = (unsigned char)( h>> 8); bmpinfoheader[10] = (unsigned char)( h>>16); bmpinfoheader[11] = (unsigned char)( h>>24); FILE *f = fopen(fileName.c_str(),"wb"); fwrite(bmpfileheader,1,14,f); fwrite(bmpinfoheader,1,40,f); for(unsigned int i=0; i<h; i++) { fwrite(img+(w*(h-i-1)*3),3,w,f); fwrite(bmppad,1,(4-(w*3)%4)%4,f); } fclose(f); }
[ "iyorshi@gmail.com" ]
iyorshi@gmail.com
c7a824a410597daee542f5ac00ef389f385c0ad2
e6ed9f0975d29dd857790e54b8ce9b8829c55cb4
/HT_make_ntuples/linkdefs.h
9f98a7aa3d8eed0628bd3d2721c4337875ccaf7f
[]
no_license
htrauger/JetTrackCorrelations
80b0830ee74966ea91b60cb0e36eb84f5eadedaa
a8ea94b879f1b0d641a01baccec50001e0005504
refs/heads/master
2021-01-18T23:26:19.279318
2016-07-18T13:00:22
2016-07-18T13:00:22
30,802,706
1
1
null
null
null
null
UTF-8
C++
false
false
2,094
h
/******************************************************************** * linkdefs.h * CAUTION: DON'T CHANGE THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED * FROM HEADER FILES LISTED IN G__setup_cpp_environmentXXX(). * CHANGE THOSE HEADER FILES AND REGENERATE THIS FILE. ********************************************************************/ #ifdef __CINT__ #error linkdefs.h/C is only for compilation. Abort cint. #endif #include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #define G__ANSIHEADER #define G__DICTIONARY #include "G__ci.h" extern "C" { extern void G__cpp_setup_tagtablelinkdefs(); extern void G__cpp_setup_inheritancelinkdefs(); extern void G__cpp_setup_typetablelinkdefs(); extern void G__cpp_setup_memvarlinkdefs(); extern void G__cpp_setup_globallinkdefs(); extern void G__cpp_setup_memfunclinkdefs(); extern void G__cpp_setup_funclinkdefs(); extern void G__set_cpp_environmentlinkdefs(); } #include "TROOT.h" #include "TMemberInspector.h" #include <algorithm> namespace std { } using namespace std; #ifndef G__MEMFUNCBODY #endif extern G__linked_taginfo G__linkdefsLN_vectorlEintcOallocatorlEintgRsPgR; extern G__linked_taginfo G__linkdefsLN_vectorlEintcOallocatorlEintgRsPgRcLcLiterator; extern G__linked_taginfo G__linkdefsLN_reverse_iteratorlEvectorlEintcOallocatorlEintgRsPgRcLcLiteratorgR; extern G__linked_taginfo G__linkdefsLN_vectorlEfloatcOallocatorlEfloatgRsPgR; extern G__linked_taginfo G__linkdefsLN_vectorlEfloatcOallocatorlEfloatgRsPgRcLcLiterator; extern G__linked_taginfo G__linkdefsLN_reverse_iteratorlEvectorlEfloatcOallocatorlEfloatgRsPgRcLcLiteratorgR; extern G__linked_taginfo G__linkdefsLN_vectorlETStreamerInfomUcOallocatorlETStreamerInfomUgRsPgR; extern G__linked_taginfo G__linkdefsLN_reverse_iteratorlEvectorlETStreamerInfomUcOallocatorlETStreamerInfomUgRsPgRcLcLiteratorgR; /* STUB derived class for protected member access */ typedef vector<int,allocator<int> > G__vectorlEintcOallocatorlEintgRsPgR; typedef vector<float,allocator<float> > G__vectorlEfloatcOallocatorlEfloatgRsPgR;
[ "hallie.causey.trauger@cern.ch" ]
hallie.causey.trauger@cern.ch
544c1ae8eb3b6f6594ea578c1d8696b62a3d10e4
c9cf0586ace11aa32fa67606d237a130a06364ee
/circular-cylinder-3-1/10/phi
6a0d01efbc9595f5e335bc3cdbdfcf413067599e
[]
no_license
jezvonek/CFD-Final-Project
c74cfa21f22545c27d97d85cf30eb6dc8c824dc1
7c9a7fb032d74f20888effa0a0b75b212bf899f4
refs/heads/master
2022-07-05T14:43:52.967657
2020-05-14T03:40:56
2020-05-14T03:40:56
262,370,756
1
1
null
null
null
null
UTF-8
C++
false
false
413,340
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "10"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; oriented oriented; internalField nonuniform List<scalar> 38030 ( -8.61695e-06 -0.00798388 0.0079925 -2.75013e-05 -0.00734882 0.0073677 -5.46303e-05 -0.00676755 0.00679468 -8.80048e-05 -0.00623697 0.00627035 -0.000125798 -0.00575359 0.00579138 -0.000166466 -0.00531382 0.00535448 -0.000208723 -0.00491414 0.0049564 -0.000251513 -0.00455117 0.00459396 -0.000293978 -0.0042217 0.00426416 -0.000335432 -0.0039227 0.00396415 -0.00037534 -0.00365136 0.00369127 -0.000413296 -0.00340508 0.00344304 -0.000449009 -0.00318145 0.00321716 -0.000482285 -0.00297826 0.00301154 -0.000513019 -0.0027935 0.00282423 -0.000541181 -0.00262533 0.00265349 -0.000566809 -0.00247207 0.0024977 -0.000589998 -0.00233221 0.0023554 -0.000610893 -0.00220439 0.00222528 -0.000629684 -0.00208736 0.00210615 -0.000646595 -0.00198002 0.00199693 -0.00066188 -0.00188138 0.00189667 -0.000675819 -0.00179055 0.00180449 -0.000688706 -0.00170675 0.00171963 -0.00070085 -0.00162927 0.00164141 -0.000712562 -0.00155751 0.00156922 -0.000724158 -0.00149092 0.00150252 -0.000735948 -0.00142905 0.00144084 -0.000748243 -0.00137146 0.00138375 -0.0013177 0.00133083 -0.000761375 -7.59506e-06 -0.00797629 -2.62413e-05 -0.00733017 -5.30284e-05 -0.00674076 -8.57164e-05 -0.00620429 -0.000122436 -0.00571687 -0.000161625 -0.00527463 -0.000201993 -0.00487377 -0.000242476 -0.00451069 -0.000282217 -0.00418196 -0.00032053 -0.00388439 -0.000356883 -0.00361501 -0.000390873 -0.00337109 -0.000422216 -0.00315011 -0.000450725 -0.00294975 -0.000476302 -0.00276792 -0.000498929 -0.0026027 -0.000518652 -0.00245235 -0.000535578 -0.00231529 -0.000549868 -0.0021901 -0.000561726 -0.0020755 -0.000571393 -0.00197036 -0.000579144 -0.00187363 -0.000585277 -0.00178442 -0.000590108 -0.00170192 -0.000593967 -0.00162541 -0.000597189 -0.00155429 -0.000600111 -0.001488 -0.000603061 -0.0014261 -0.000606367 -0.00136815 -0.00131367 -0.000610396 -7.21058e-06 -0.00796908 -2.52945e-05 -0.00731209 -5.13096e-05 -0.00671475 -8.28852e-05 -0.00617271 -0.000118083 -0.00568167 -0.000155306 -0.0052374 -0.000193244 -0.00483583 -0.000230824 -0.00447311 -0.000267185 -0.0041456 -0.00030164 -0.00384993 -0.000333659 -0.00358299 -0.000362844 -0.00334191 -0.000388912 -0.00312404 -0.000411684 -0.00292698 -0.000431069 -0.00274854 -0.000447056 -0.00258671 -0.0004597 -0.0024397 -0.00046912 -0.00230587 -0.00047549 -0.00218373 -0.000479028 -0.00207196 -0.000479994 -0.00196939 -0.000478683 -0.00187494 -0.000475416 -0.00178769 -0.000470535 -0.0017068 -0.000464397 -0.00163155 -0.000457363 -0.00156132 -0.000449798 -0.00149557 -0.000442054 -0.00143385 -0.00043445 -0.00137576 -0.00132077 -0.000427356 -6.97137e-06 -0.00796211 -2.44029e-05 -0.00729466 -4.93819e-05 -0.00668977 -7.94936e-05 -0.0061426 -0.000112755 -0.00564841 -0.000147539 -0.00520262 -0.000182516 -0.00480086 -0.000216606 -0.00443902 -0.00024894 -0.00411326 -0.000278834 -0.00382004 -0.000305756 -0.00355607 -0.00032931 -0.00331835 -0.00034922 -0.00310413 -0.000365308 -0.00291089 -0.000377489 -0.00273636 -0.000385757 -0.00257845 -0.000390176 -0.00243528 -0.000390875 -0.00230517 -0.000388037 -0.00218657 -0.000381897 -0.0020781 -0.000372732 -0.00197855 -0.000360859 -0.00188682 -0.000346623 -0.00180192 -0.000330398 -0.00172302 -0.000312575 -0.00164937 -0.000293554 -0.00158034 -0.000273738 -0.00151538 -0.000253541 -0.00145404 -0.000233364 -0.00139593 -0.00134111 -0.000213018 -6.74372e-06 -0.00795536 -2.34359e-05 -0.00727796 -4.71685e-05 -0.00666604 -7.55081e-05 -0.00611426 -0.000106447 -0.00561747 -0.000138339 -0.00517073 -0.00016984 -0.00476936 -0.000199865 -0.00440899 -0.000227543 -0.00408558 -0.000252186 -0.0037954 -0.000273266 -0.00353499 -0.000290389 -0.00330123 -0.000303279 -0.00309124 -0.000311763 -0.00290241 -0.000315757 -0.00273236 -0.000315261 -0.00257894 -0.000310343 -0.0024402 -0.00030114 -0.00231437 -0.000287844 -0.00219986 -0.000270703 -0.00209525 -0.000250011 -0.00199925 -0.000226105 -0.00191072 -0.000199357 -0.00182867 -0.000170172 -0.00175221 -0.00013898 -0.00168057 -0.000106233 -0.00161309 -7.23856e-05 -0.00154923 -3.78594e-05 -0.00148857 -3.13492e-06 -0.00143066 -0.00137458 3.03312e-05 -6.4884e-06 -0.00794887 -2.23371e-05 -0.00726211 -4.46239e-05 -0.00664375 -7.09026e-05 -0.00608798 -9.91516e-05 -0.00558922 -0.000127714 -0.00514216 -0.000155241 -0.00474183 -0.000180643 -0.00438359 -0.000203048 -0.00406318 -0.000221772 -0.00377667 -0.000236287 -0.00352048 -0.0002462 -0.00329131 -0.000251238 -0.0030862 -0.000251229 -0.00290242 -0.00024609 -0.0027375 -0.000235821 -0.00258921 -0.000220496 -0.00245553 -0.000200254 -0.00233461 -0.000175295 -0.00222482 -0.000145875 -0.00212467 -0.000112303 -0.00203282 -7.49332e-05 -0.00194809 -3.41613e-05 -0.00186944 9.58088e-06 -0.00179595 5.5832e-05 -0.00172682 0.00010411 -0.00166137 0.000153919 -0.00159904 0.000204745 -0.00153939 0.000256072 -0.00148199 -0.00142647 0.000307966 -6.19164e-06 -0.00794268 -2.10809e-05 -0.00724723 -4.1723e-05 -0.00662311 -6.56602e-05 -0.00606404 -9.08637e-05 -0.00556402 -0.000115673 -0.00511736 -0.000138739 -0.00471876 -0.000158974 -0.00436336 -0.00017551 -0.00404664 -0.000187665 -0.00376452 -0.000194914 -0.00351323 -0.000196868 -0.00328936 -0.000193252 -0.00308982 -0.000183895 -0.00291177 -0.000168715 -0.00275268 -0.00014771 -0.00261022 -0.000120954 -0.00248228 -8.85872e-05 -0.00236698 -5.08129e-05 -0.0022626 -7.89458e-06 -0.00216758 3.98493e-05 -0.00208056 9.20488e-05 -0.00200029 0.000148287 -0.00192568 0.000208104 -0.00185577 0.000271004 -0.00178972 0.000336464 -0.00172683 0.000403936 -0.00166651 0.000472864 -0.00160832 0.000542707 -0.00155183 -0.00149663 0.000612865 -5.8497e-06 -0.00793683 -1.96562e-05 -0.00723342 -3.84528e-05 -0.00660431 -5.97711e-05 -0.00604272 -8.15802e-05 -0.00554221 -0.000102222 -0.00509671 -0.000120353 -0.00470063 -0.000134892 -0.00434882 -0.000144977 -0.00403656 -0.000149932 -0.00375956 -0.000149239 -0.00351392 -0.000142509 -0.00329609 -0.00012947 -0.00310285 -0.00010995 -0.00293129 -8.38637e-05 -0.00277877 -5.12075e-05 -0.00264287 -1.20507e-05 -0.00252144 3.34684e-05 -0.0024125 8.51462e-05 -0.00231427 0.000142717 -0.00222515 0.000205854 -0.0021437 0.000274175 -0.00206861 0.000347242 -0.00199875 0.000424567 -0.00193309 0.000505616 -0.00187077 0.000589815 -0.00181102 0.000676554 -0.00175325 0.000765199 -0.00169697 0.000855095 -0.00164173 -0.00158706 0.000945528 -5.46193e-06 -0.00793137 -1.80592e-05 -0.00722082 -3.48067e-05 -0.00658756 -5.32294e-05 -0.0060243 -7.12985e-05 -0.00552414 -8.73643e-05 -0.00508065 -0.000100094 -0.0046879 -0.000108417 -0.00434049 -0.000111485 -0.00403349 -0.00010863 -0.00376242 -9.9339e-05 -0.00352321 -8.32306e-05 -0.0033122 -6.00332e-05 -0.00312605 -2.95727e-05 -0.00296176 8.23879e-06 -0.00281658 5.34108e-05 -0.00268804 0.00010588 -0.00257391 0.000165515 -0.00247213 0.000232115 -0.00238087 0.000305417 -0.00229846 0.000385091 -0.00222337 0.000470745 -0.00215427 0.000561923 -0.00208993 0.00065811 -0.00202928 0.000758732 -0.00197139 0.000863163 -0.00191545 0.000970727 -0.00186082 0.00108071 -0.00180695 0.00119235 -0.00175337 -0.00169956 0.00130485 -5.02894e-06 -0.00792634 -1.62875e-05 -0.00720956 -3.07805e-05 -0.00657307 -4.60296e-05 -0.00600905 -6.0014e-05 -0.00551016 -7.10983e-05 -0.00506956 -7.79661e-05 -0.00468103 -7.95647e-05 -0.0043389 -7.506e-05 -0.004038 -6.37987e-05 -0.00377368 -4.52783e-05 -0.00354173 -1.91227e-05 -0.00333835 1.49366e-05 -0.00316011 5.70747e-05 -0.00300389 0.000107384 -0.00286689 0.000165882 -0.00274654 0.000232514 -0.00264054 0.000307159 -0.00254678 0.000389626 -0.00246334 0.000479657 -0.00238849 0.000576927 -0.00232064 0.000681037 -0.00225838 0.00079152 -0.00220041 0.000907837 -0.00214559 0.00102938 -0.00209293 0.00115546 -0.00204154 0.00128535 -0.00199071 0.00141825 -0.00193985 0.0015533 -0.00188842 -0.00183585 0.00168959 -4.55104e-06 -0.00792179 -1.43393e-05 -0.00719977 -2.63693e-05 -0.00656104 -3.81646e-05 -0.00599726 -4.77184e-05 -0.0055006 -5.34164e-05 -0.00506386 -5.39652e-05 -0.00468049 -4.83351e-05 -0.00434453 -3.57131e-05 -0.00405062 -1.54639e-05 -0.00379393 1.2901e-05 -0.0035701 4.97481e-05 -0.0033752 9.53413e-05 -0.0032057 0.000149856 -0.00305841 0.00021339 -0.00293042 0.000285968 -0.00281912 0.00036755 -0.00272212 0.000458027 -0.00263725 0.000557225 -0.00256254 0.000664897 -0.00249616 0.000780728 -0.00243647 0.000904322 -0.00238197 0.00103521 -0.00233129 0.00117282 -0.00228321 0.00131654 -0.00223664 0.00146561 -0.00219062 0.00161925 -0.00214435 0.00177657 -0.00209717 0.00193662 -0.00204847 -0.00199759 0.00209836 -4.02821e-06 -0.00791776 -1.22118e-05 -0.00719159 -2.15668e-05 -0.00655169 -2.96239e-05 -0.0059892 -3.43979e-05 -0.00549583 -3.43029e-05 -0.00506396 -2.80753e-05 -0.00468671 -1.47153e-05 -0.00435789 6.56329e-06 -0.0040719 3.63721e-05 -0.00382374 7.51809e-05 -0.00360891 0.000123343 -0.00342336 0.000181114 -0.00326348 0.000248668 -0.00312596 0.000326107 -0.00300786 0.000413467 -0.00290648 0.00051072 -0.00281938 0.000617778 -0.00274431 0.000734485 -0.00267924 0.000860616 -0.00262229 0.000995872 -0.00257173 0.00113987 -0.00252597 0.00129214 -0.00248356 0.00145212 -0.00244319 0.00161915 -0.00240366 0.00179245 -0.00236392 0.00197117 -0.00232306 0.00215433 -0.00228033 0.00234088 -0.00223501 -0.00218636 0.00252965 -3.4597e-06 -0.0079143 -9.90068e-06 -0.00718515 -1.63643e-05 -0.00654522 -2.03933e-05 -0.00598517 -2.00329e-05 -0.00549619 -1.37335e-05 -0.00507026 -2.69769e-07 -0.00470018 2.13225e-05 -0.00437948 5.17947e-05 -0.00410237 9.17289e-05 -0.00386367 0.00014157 -0.00365875 0.000201653 -0.00348345 0.000272222 -0.00333404 0.000353446 -0.00320719 0.00044543 -0.00309984 0.000548218 -0.00300927 0.000661802 -0.00293296 0.000786111 -0.00286862 0.000921018 -0.00281415 0.00106632 -0.0027676 0.00122176 -0.00272716 0.00138696 -0.00269117 0.00156148 -0.00265808 0.00174476 -0.00262647 0.00193611 -0.00259502 0.00213475 -0.00256256 0.00233975 -0.00252806 0.00255006 -0.00249064 0.00276451 -0.00244946 -0.00240365 0.0029818 -2.84257e-06 -0.00791146 -7.39938e-06 -0.00718059 -1.075e-05 -0.00654187 -1.0454e-05 -0.00598547 -4.59714e-06 -0.00550205 8.32448e-06 -0.00508318 2.94909e-05 -0.00472134 5.98209e-05 -0.00440981 0.000100025 -0.00414257 0.000150649 -0.00391429 0.000212105 -0.0037202 0.000284704 -0.00355605 0.000368673 -0.00341801 0.000464171 -0.00330268 0.000571301 -0.00320697 0.000690117 -0.00312809 0.000820626 -0.00306347 0.000962782 -0.00301078 0.00111649 -0.00296786 0.00128158 -0.00293269 0.00145783 -0.00290341 0.00164491 -0.00287826 0.0018424 -0.00285557 0.00204976 -0.00283382 0.00226631 -0.00281157 0.00249124 -0.00278749 0.00272358 -0.0027604 0.00296221 -0.00272927 0.00320584 -0.0026931 -0.00265083 0.00345303 -2.16503e-06 -0.0079093 -4.69734e-06 -0.00717806 -4.7113e-06 -0.00654186 2.16811e-07 -0.0059904 1.19408e-05 -0.00551377 3.19112e-05 -0.00510315 6.12538e-05 -0.00475069 0.000100835 -0.00444939 0.000151316 -0.00419305 0.000213196 -0.00397617 0.00028685 -0.00379386 0.000372555 -0.00364175 0.000470513 -0.00351597 0.000580867 -0.00341304 0.000703716 -0.00332982 0.000839115 -0.00326348 0.000987087 -0.00321144 0.00114761 -0.0031713 0.00132062 -0.00314087 0.00150601 -0.00311808 0.00170358 -0.00310098 0.00191306 -0.00308774 0.00213408 -0.00307659 0.00236613 -0.00306588 0.00260857 -0.00305401 0.00286058 -0.0030395 0.00312116 -0.00302098 0.00338912 -0.00299724 0.00366307 -0.00296705 -0.00292915 0.0039414 -1.35157e-06 -0.00790794 -1.8245e-06 -0.00717759 1.76158e-06 -0.00654544 1.16442e-05 -0.00600028 2.96162e-05 -0.00553174 5.70718e-05 -0.00513061 9.50749e-05 -0.00478869 0.00014443 -0.00449874 0.000205741 -0.00425436 0.000279452 -0.00404989 0.00036589 -0.0038803 0.000465292 -0.00374115 0.000577824 -0.0036285 0.000703607 -0.00353882 0.000842723 -0.00346894 0.000995227 -0.00341599 0.00116115 -0.00337736 0.00134049 -0.00335065 0.00153323 -0.00333361 0.0017393 -0.00332414 0.00195856 -0.00332024 0.00219081 -0.00331999 0.00243575 -0.00332153 0.00269293 -0.00332305 0.00296174 -0.00332282 0.00324141 -0.00331916 0.00353092 -0.00331049 0.00382903 -0.00329535 0.00413425 -0.00327227 -0.00323972 0.00444481 -5.88727e-07 -0.00790735 1.24825e-06 -0.00717943 8.7018e-06 -0.0065529 2.3859e-05 -0.00601543 4.84671e-05 -0.00555635 8.38543e-05 -0.00516599 0.000131012 -0.00483585 0.000190676 -0.00455841 0.000263381 -0.00432707 0.000349509 -0.00413601 0.00044933 -0.00398012 0.000563027 -0.00385485 0.000690724 -0.0037562 0.000832504 -0.0036806 0.000988426 -0.00362486 0.00115853 -0.00358609 0.00134285 -0.00356168 0.00154141 -0.0035492 0.00175421 -0.00354641 0.00198124 -0.00355117 0.00222243 -0.00356144 0.00247766 -0.00357522 0.00274671 -0.00359057 0.00302922 -0.00360556 0.00332467 -0.00361827 0.00363233 -0.00362682 0.00395122 -0.00362938 0.00428007 -0.0036242 0.00461731 -0.00360951 -0.00358341 0.004961 2.62196e-07 -0.00790762 4.6768e-06 -0.00718384 1.61479e-05 -0.00656437 3.68889e-05 -0.00603618 6.85293e-05 -0.00558799 0.000112304 -0.00520977 0.000169123 -0.00489267 0.000239641 -0.00462893 0.000324318 -0.00441175 0.000423464 -0.00423516 0.00053728 -0.00409393 0.000665885 -0.00398345 0.000809348 -0.00389966 0.000967703 -0.00383896 0.00114097 -0.00379813 0.00132916 -0.00377429 0.00153231 -0.00376482 0.00175042 -0.00376732 0.00198355 -0.00377954 0.00223173 -0.00379934 0.00249495 -0.00382466 0.00277319 -0.00385346 0.00306634 -0.00388372 0.00337416 -0.00391338 0.00369624 -0.00394036 0.00403195 -0.00396253 0.00438038 -0.00397781 0.00474028 -0.0039841 0.00511001 -0.00397924 -0.00396091 0.00548751 1.22042e-06 -0.00790884 8.26084e-06 -0.00719088 2.4075e-05 -0.00658018 5.07496e-05 -0.00606285 8.98293e-05 -0.00562707 0.000142457 -0.0052624 0.000209452 -0.00495966 0.000291382 -0.00471086 0.000388623 -0.00450899 0.000501402 -0.00434794 0.000629842 -0.00422237 0.000773989 -0.0041276 0.00093384 -0.00405951 0.00110937 -0.00401448 0.00130054 -0.00398929 0.00150731 -0.00398107 0.0017297 -0.00398721 0.0019677 -0.00400533 0.00222138 -0.00403321 0.00249079 -0.00406876 0.00277603 -0.0041099 0.00307715 -0.00415459 0.00339417 -0.00420074 0.00372701 -0.00424622 0.00407542 -0.00428876 0.00443892 -0.00432603 0.00481671 -0.00435561 0.00520763 -0.00437502 0.00561002 -0.00438163 -0.00437259 0.00602169 2.13619e-06 -0.00791097 1.20622e-05 -0.00720081 3.24975e-05 -0.00660062 6.54534e-05 -0.00609581 0.000112386 -0.005674 0.000174337 -0.00532435 0.000252031 -0.00503735 0.000345939 -0.00480476 0.000456344 -0.00461939 0.000583386 -0.00447498 0.000727098 -0.00436608 0.000887442 -0.00428794 0.00106433 -0.0042364 0.00125766 -0.00420781 0.00146731 -0.00419895 0.0016932 -0.00420696 0.00193527 -0.00422927 0.00219349 -0.00426355 0.0024679 -0.00430763 0.00275861 -0.00435946 0.00306574 -0.00441702 0.00338945 -0.0044783 0.00372992 -0.00454121 0.00408722 -0.00460352 0.00446133 -0.00466287 0.00485197 -0.00471668 0.00525857 -0.0047622 0.00568007 -0.00479651 0.00611488 -0.00481644 -0.00481847 0.00656076 3.14381e-06 -0.00791412 1.61041e-05 -0.00721377 4.14247e-05 -0.00662594 8.10082e-05 -0.00613539 0.000136206 -0.0057292 0.000207953 -0.0053961 0.000296867 -0.00512627 0.00040332 -0.00491122 0.000527496 -0.00474357 0.000669438 -0.00461692 0.000829085 -0.00452573 0.0010063 -0.00446516 0.00120091 -0.00443101 0.0014127 -0.0044196 0.00164147 -0.00442772 0.00188705 -0.00445253 0.00214928 -0.0044915 0.00242809 -0.00454236 0.00272348 -0.00460301 0.00303551 -0.00467149 0.00336436 -0.00474587 0.00371028 -0.00482422 0.00407356 -0.00490449 0.0044545 -0.00498447 0.00485333 -0.0050617 0.00527007 -0.00513342 0.00570441 -0.00519654 0.00615558 -0.00524768 0.00662213 -0.00528299 -0.00529814 0.0071018 4.2435e-06 -0.00791836 2.03913e-05 -0.00722991 5.08575e-05 -0.0066564 9.74112e-05 -0.00618194 0.000161282 -0.00579307 0.000243289 -0.0054781 0.000343937 -0.00522692 0.000463494 -0.00503077 0.000602041 -0.00488211 0.000759521 -0.0047744 0.000935771 -0.00470198 0.00113055 -0.00465994 0.00134358 -0.00464404 0.00157455 -0.00465057 0.00182313 -0.00467631 0.00208904 -0.00471844 0.00237201 -0.00477448 0.00267187 -0.00484222 0.00298852 -0.00491966 0.00332198 -0.00500495 0.00367241 -0.0050963 0.00404009 -0.0051919 0.00442544 -0.00528984 0.00482896 -0.005388 0.00525118 -0.00548392 0.0056925 -0.00557473 0.00615303 -0.00565707 0.00663237 -0.00572703 0.00712938 -0.00578 -0.00581064 0.00764188 5.41346e-06 -0.00792377 2.49177e-05 -0.00724942 6.07898e-05 -0.00669228 0.000114649 -0.0062358 0.000187588 -0.00586601 0.000280301 -0.00557082 0.000393179 -0.00533979 0.000526378 -0.00516397 0.000679878 -0.00503561 0.000853518 -0.00494804 0.00104703 -0.0048955 0.00126008 -0.00487299 0.00149226 -0.00487622 0.00174314 -0.00490145 0.00201227 -0.00494545 0.00229924 -0.0050054 0.00260364 -0.00507888 0.00292514 -0.00516372 0.00326352 -0.00525804 0.00361866 -0.00536009 0.00399063 -0.00546827 0.0043797 -0.00558097 0.00478635 -0.00569649 0.00521126 -0.0058129 0.00565525 -0.00592791 0.00611917 -0.00603866 0.00660371 -0.00614161 0.00710905 -0.00623237 0.00763455 -0.00630549 -0.00635435 0.00817827 6.64568e-06 -0.00793042 2.9678e-05 -0.00727245 7.12118e-05 -0.00673381 0.000132697 -0.00629729 0.000215078 -0.00594839 0.000318916 -0.00567465 0.000444484 -0.00546536 0.00059183 -0.00531132 0.000760828 -0.00520461 0.000951215 -0.00513843 0.00116263 -0.00510691 0.00139461 -0.00510497 0.00164666 -0.00512826 0.00191821 -0.005173 0.00220871 -0.00523594 0.00251755 -0.00531425 0.00284419 -0.00540552 0.00318811 -0.00550764 0.00354889 -0.00561881 0.00392622 -0.00573742 0.00431999 -0.00586205 0.00473034 -0.00599132 0.00515769 -0.00612384 0.00560281 -0.00625802 0.00606678 -0.00639189 0.00655095 -0.00652283 0.0070567 -0.00664735 0.00758506 -0.00676074 0.00813621 -0.00685664 -0.00692685 0.00870871 7.93875e-06 -0.00793836 3.46715e-05 -0.00729918 8.2114e-05 -0.00678125 0.000151524 -0.0063667 0.000243686 -0.00604055 0.000359027 -0.00578999 0.000497698 -0.00560403 0.000659638 -0.00547326 0.00084462 -0.00538959 0.00105228 -0.00534609 0.00128216 -0.00533679 0.00153371 -0.00535652 0.00180631 -0.00540086 0.00209929 -0.00546599 0.00241195 -0.0055486 0.00274356 -0.00564586 0.00309338 -0.00575534 0.0034607 -0.00587496 0.00384484 -0.00600295 0.00424525 -0.00613784 0.00466154 -0.00627833 0.00509355 -0.00642333 0.00554149 -0.00657178 0.00600602 -0.00672255 0.00648834 -0.00687421 0.00699022 -0.00702471 0.00751382 -0.00717095 0.00806136 -0.00730828 0.0086343 -0.00742959 -0.00752468 0.00923214 9.2992e-06 -0.00794766 3.99091e-05 -0.00732979 9.34927e-05 -0.00683484 0.000171094 -0.0064443 0.00027333 -0.00614279 0.000400492 -0.00591716 0.000552611 -0.00575615 0.00072952 -0.00565017 0.00093089 -0.00559096 0.00115627 -0.00557147 0.0014051 -0.00558562 0.00167674 -0.00562817 0.00197049 -0.00569461 0.00228558 -0.00578108 0.00262119 -0.00588421 0.00297645 -0.00600112 0.00335048 -0.00612936 0.00374235 -0.00626682 0.00415114 -0.00641175 0.004576 -0.00656269 0.00501615 -0.00671848 0.00547102 -0.0068782 0.00594036 -0.00704112 0.00642445 -0.00720664 0.00692427 -0.00737402 0.00744169 -0.00754214 0.00797961 -0.00770887 0.00854168 -0.00787035 0.0091314 -0.0080193 -0.00814308 0.00974979 1.07523e-05 -0.00795841 4.54259e-05 -0.00736447 0.000105358 -0.00689477 0.000191365 -0.00653031 0.000303905 -0.00625533 0.000443132 -0.00605638 0.000608962 -0.00592198 0.000801118 -0.00584232 0.00101917 -0.00580902 0.00126259 -0.00581488 0.00153072 -0.00585375 0.00182285 -0.0059203 0.0021382 -0.00600997 0.00247593 -0.0061188 0.00283513 -0.00624341 0.00321485 -0.00638085 0.00361408 -0.00652859 0.00403175 -0.00668449 0.00446673 -0.00684673 0.00491787 -0.00701383 0.005384 -0.00718462 0.00586405 -0.00735824 0.00635711 -0.00753418 0.00686269 -0.00771222 0.00738104 -0.00789237 0.00791351 -0.00807461 0.00846312 -0.00825848 0.00903481 -0.00844205 0.00963493 -0.00861942 -0.00877545 0.0102673 1.23697e-05 -0.00797078 5.13059e-05 -0.0074034 0.000117742 -0.0069612 0.000212297 -0.00662486 0.000335287 -0.00637832 0.000486736 -0.00620783 0.000666439 -0.00610169 0.000874009 -0.00604989 0.00110892 -0.00604393 0.00137054 -0.0060765 0.00165814 -0.00614136 0.00197096 -0.00623312 0.00230815 -0.00634715 0.00266881 -0.00647947 0.00305201 -0.00662661 0.00345675 -0.00678559 0.00388198 -0.00695382 0.00432656 -0.00712907 0.00478927 -0.00730945 0.0052688 -0.00749336 0.00576371 -0.00767953 0.00627246 -0.007867 0.00679347 -0.00805519 0.00732524 -0.00824399 0.00786667 -0.00843379 0.00841757 -0.00862552 0.0089796 -0.00882051 0.00955755 -0.00902 0.0101606 -0.00922251 -0.00941577 0.010801 1.43818e-05 -0.00798516 5.77492e-05 -0.00744677 0.000130715 -0.00703417 0.000233839 -0.00672799 0.000367321 -0.0065118 0.000531049 -0.00637156 0.000724682 -0.00629532 0.000947709 -0.00627292 0.00119949 -0.00629572 0.00147931 -0.00635632 0.00178637 -0.00644841 0.00211983 -0.00656657 0.00247879 -0.00670612 0.00286235 -0.00686303 0.00326957 -0.00703383 0.00369946 -0.00721548 0.00415101 -0.00740537 0.00462316 -0.00760121 0.00511476 -0.00780104 0.00562456 -0.00800316 0.00615115 -0.00820612 0.00669293 -0.00840877 0.00724797 -0.00861024 0.00781404 -0.00881006 0.00838858 -0.00900833 0.00896901 -0.00920595 0.00955353 -0.00940502 0.0101431 -0.00960955 0.0107468 -0.00982621 -0.0100683 0.0113993 1.75598e-05 -0.00800272 6.51372e-05 -0.00749435 0.000144337 -0.00711337 0.000255885 -0.00683953 0.000399799 -0.00665571 0.00057577 -0.00654753 0.000783286 -0.00650283 0.00102169 -0.00651132 0.00129022 -0.00656425 0.00158805 -0.00665415 0.0019143 -0.00677466 0.00226806 -0.00692033 0.00264841 -0.00708647 0.00305442 -0.00726904 0.00348515 -0.00746456 0.0039397 -0.00767003 0.00441716 -0.00788282 0.00491663 -0.00810068 0.00543723 -0.00832165 0.00597808 -0.00854402 0.00653829 -0.00876633 0.00711687 -0.00898735 0.00771271 -0.00920607 0.00832437 -0.00942173 0.00894995 -0.00963391 0.00958682 -0.00984282 0.0102314 -0.0100496 0.010878 -0.0102562 0.0115214 -0.0104696 -0.0107136 0.0121668 0.00899882 4.58966e-05 -0.00904471 0.00895385 4.49679e-05 0.00890917 4.46817e-05 0.00886463 4.45405e-05 0.00882024 4.43813e-05 0.0087761 4.41469e-05 0.00873228 4.38148e-05 0.0086889 4.33786e-05 0.00864607 4.28386e-05 0.00860387 4.21985e-05 0.0085624 4.14632e-05 0.00852177 4.06382e-05 0.00848204 3.97296e-05 0.00844329 3.87433e-05 0.00840561 3.76855e-05 0.00836905 3.6562e-05 0.00833367 3.53787e-05 0.00829953 3.41412e-05 0.00826667 3.28547e-05 0.00823515 3.15242e-05 0.00820499 3.01546e-05 0.00817624 2.87504e-05 0.00814893 2.73158e-05 0.00812307 2.5855e-05 0.0080987 2.437e-05 0.00807584 2.28572e-05 0.00805455 2.12969e-05 0.00803492 1.96271e-05 0.00801729 1.76341e-05 1.45641e-05 0.0103003 0.00016389 -0.0104183 0.0101812 0.000164156 0.0100613 0.000164534 0.00994106 0.000164777 0.00982071 0.000164736 0.00970051 0.000164342 0.00958077 0.000163561 0.00946176 0.000162383 0.00934379 0.000160811 0.00922713 0.000158854 0.00911207 0.000156528 0.00899885 0.000153851 0.00888774 0.000150842 0.00877896 0.000147522 0.00867274 0.00014391 0.00856927 0.000140029 0.00846875 0.000135899 0.00837135 0.000131539 0.00827724 0.000126968 0.00818656 0.000122206 0.00809945 0.000117267 0.00801603 0.00011217 0.00793641 0.000106928 0.00786072 0.000101553 0.00778904 9.6052e-05 0.00772147 9.04215e-05 0.00765814 8.46326e-05 0.00759915 7.86072e-05 0.00754464 7.21494e-05 6.48555e-05 0.0115649 0.000341977 -0.011743 0.011384 0.000345067 0.0112011 0.000347486 0.0110167 0.000349169 0.0108314 0.000350044 0.0106456 0.000350067 0.01046 0.000349214 0.0102749 0.000347483 0.0100908 0.000344885 0.00990822 0.000341441 0.00972756 0.000337182 0.00954927 0.000332142 0.00937376 0.000326359 0.00920141 0.000319873 0.00903259 0.000312728 0.00886765 0.000304964 0.00870693 0.000296624 0.00855072 0.000287749 0.00839931 0.000278379 0.00825296 0.000268551 0.00811193 0.000258301 0.00797643 0.000247664 0.00784669 0.000236668 0.0077229 0.000225343 0.00760525 0.000213708 0.0074939 0.000201774 0.007389 0.000189532 0.00729066 0.000176944 0.00719888 0.000163923 0.000150371 0.0127832 0.000569424 -0.0130106 0.0125513 0.000576943 0.0123158 0.000582944 0.0120776 0.000587431 0.0118372 0.000590388 0.0115955 0.000591799 0.0113531 0.00059166 0.0111106 0.000589982 0.0108686 0.000586791 0.010628 0.000582125 0.0103891 0.00057603 0.0101527 0.00056856 0.00991928 0.000559778 0.00968941 0.000549746 0.0094636 0.000538534 0.00924236 0.000526208 0.00902614 0.000512838 0.0088154 0.00049849 0.00861055 0.000483232 0.00841198 0.000467124 0.00822005 0.000450228 0.00803511 0.0004326 0.00785749 0.000414293 0.00768747 0.000395358 0.00752534 0.00037584 0.00737134 0.000355777 0.00722567 0.000335201 0.00708848 0.000314134 0.00695981 0.000292594 0.000270645 0.0139474 0.000836487 -0.0142144 0.0136741 0.000850197 0.0133956 0.000861476 0.0131127 0.000870347 0.0128262 0.000876814 0.0125372 0.000880884 0.0122462 0.000882569 0.0119543 0.000881895 0.0116622 0.000878902 0.0113707 0.000873645 0.0110805 0.000866189 0.0107925 0.00085661 0.0105073 0.000844993 0.0102256 0.000831428 0.00994812 0.00081601 0.00967549 0.000798838 0.00940832 0.000780009 0.00914718 0.000759621 0.00889265 0.000737769 0.00864523 0.000714545 0.00840542 0.000690036 0.00817369 0.000664328 0.00795048 0.000637502 0.0077362 0.000609637 0.00753123 0.000580811 0.00733591 0.000551102 0.00715052 0.000520591 0.00697528 0.000489367 0.00681034 0.000457538 0.000425269 0.0150515 0.00113445 -0.0153494 0.0147454 0.00115624 0.0144323 0.00117462 0.014113 0.00118961 0.0137886 0.00120121 0.0134601 0.00120944 0.0131283 0.00121431 0.0127944 0.00121587 0.0124591 0.00121416 0.0121235 0.00120925 0.0117885 0.00120123 0.0114549 0.00119019 0.0111236 0.00117624 0.0107956 0.0011595 0.0104715 0.00114009 0.0101522 0.00111814 0.00983841 0.00109378 0.0095309 0.00106713 0.00923034 0.00103833 0.00893739 0.00100749 0.00865268 0.000974744 0.00837681 0.000940196 0.00811035 0.000903963 0.00785383 0.000866156 0.00760775 0.000826891 0.00737256 0.000786292 0.00714866 0.000744494 0.00693637 0.000701656 0.00673594 0.000657969 0.00061368 0.0160911 0.00145557 -0.0164122 0.01576 0.00148739 0.0154198 0.00151478 0.0150717 0.00153772 0.0147167 0.00155622 0.0143559 0.00157026 0.0139903 0.00157988 0.0136211 0.00158511 0.0132492 0.00158601 0.0128758 0.00158265 0.0125019 0.00157513 0.0121285 0.00156357 0.0117567 0.00154808 0.0113874 0.00152883 0.0110215 0.00150594 0.0106601 0.00147959 0.0103039 0.00144993 0.00995392 0.00141713 0.00961091 0.00138134 0.00927569 0.00134271 0.00894903 0.0013014 0.00863167 0.00125756 0.0083243 0.00121133 0.0080276 0.00116285 0.0077422 0.00111229 0.00746869 0.00105981 0.00720758 0.0010056 0.00695934 0.000949901 0.00672433 0.000892979 0.000835171 0.0170634 0.00179296 -0.0174008 0.016714 0.00183678 0.0163537 0.00187512 0.0159835 0.00190793 0.0156045 0.00193517 0.015218 0.00195681 0.014825 0.00197287 0.0144267 0.00198338 0.0140243 0.00198839 0.013619 0.00198798 0.0132119 0.00198225 0.0128041 0.00197133 0.0123968 0.00195536 0.0119912 0.0019345 0.0115882 0.00190893 0.0111889 0.00187884 0.0107944 0.00184441 0.0104057 0.00180584 0.0100238 0.0017633 0.00964948 0.001717 0.00928378 0.00166711 0.00892753 0.0016138 0.00858161 0.00155726 0.00824681 0.00149765 0.00792391 0.00143518 0.00761366 0.00137006 0.00731671 0.00130254 0.00703368 0.00123293 0.00676508 0.00116158 0.00108893 0.0179667 0.00214057 -0.0183143 0.0176051 0.00219834 0.0172307 0.00224958 0.0168444 0.00229417 0.0164476 0.00233203 0.0160413 0.00236312 0.0156267 0.00238741 0.0152052 0.00240492 0.0147779 0.00241568 0.0143461 0.00241977 0.013911 0.0024173 0.013474 0.00240838 0.0130362 0.00239318 0.0125988 0.00237187 0.0121631 0.00234464 0.0117302 0.00231171 0.0113013 0.00227329 0.0108776 0.00222959 0.0104601 0.00218083 0.0100498 0.00212723 0.00964795 0.00206899 0.00925543 0.00200632 0.00887328 0.00193941 0.00850245 0.00186848 0.0081439 0.00179374 0.00779851 0.00171545 0.00746714 0.00163392 0.00715054 0.00154953 0.00684939 0.00146273 0.00137407 0.0188005 0.00249312 -0.0191531 0.0184321 0.00256673 0.018049 0.00263276 0.0176521 0.00269102 0.0172427 0.0027414 0.0168221 0.00278379 0.0163913 0.00281815 0.0159518 0.00284445 0.0155048 0.0028627 0.0150516 0.00287297 0.0145935 0.00287535 0.014132 0.00286995 0.0136682 0.00285694 0.0132036 0.0028365 0.0127394 0.00280884 0.0122769 0.00277418 0.0118174 0.00273276 0.0113622 0.00268482 0.0109124 0.0026306 0.0104693 0.00257033 0.0100341 0.00250424 0.00960783 0.00243256 0.00919175 0.00235549 0.00878697 0.00227326 0.00839459 0.00218612 0.00801569 0.00209435 0.00765129 0.00199832 0.00730235 0.00189847 0.00696973 0.00179535 0.00168964 0.0195654 0.00284606 -0.0199183 0.0191948 0.00293729 0.0188077 0.00301991 0.018405 0.00309369 0.017988 0.00315843 0.0175578 0.00321398 0.0171157 0.00326024 0.016663 0.00329715 0.016201 0.00332469 0.0157311 0.00334288 0.0152546 0.0033518 0.014773 0.00335155 0.0142877 0.00334229 0.0138 0.0033242 0.0133113 0.0032975 0.0128231 0.00326241 0.0123367 0.00321919 0.0118534 0.00316809 0.0113746 0.00310938 0.0109017 0.0030433 0.0104358 0.00297009 0.00997838 0.00288998 0.00953068 0.00280319 0.00909399 0.00270995 0.0086696 0.00261051 0.00825878 0.00250518 0.00786276 0.00239434 0.00748271 0.00227851 0.00711971 0.00215836 0.00203469 0.0202626 0.0031955 -0.020612 0.0198939 0.00330601 0.0195069 0.00340693 0.0191026 0.00349796 0.0186822 0.00357884 0.0182468 0.00364936 0.0177977 0.00370934 0.0173362 0.00375868 0.0168636 0.0037973 0.0163813 0.00382519 0.0158907 0.0038424 0.0153932 0.00384901 0.0148903 0.00384515 0.0143835 0.003831 0.0138743 0.00380677 0.013364 0.0037727 0.0128541 0.00372904 0.0123462 0.00367606 0.0118415 0.00361402 0.0113416 0.00354319 0.0108479 0.00346381 0.0103618 0.0033761 0.00988472 0.00328027 0.00941814 0.00317653 0.00896353 0.00306512 0.00852236 0.00294634 0.00809611 0.0028206 0.00768617 0.00268845 0.00729387 0.00255066 0.00240823 0.0208941 0.00353819 -0.0212368 0.0205307 0.00366948 0.0201473 0.00379028 0.0197451 0.0039002 0.019325 0.0039989 0.0188883 0.0040861 0.0184361 0.00416155 0.0179697 0.00422508 0.0174904 0.00427657 0.0169997 0.00431595 0.0164988 0.00434322 0.0159894 0.00435844 0.0154729 0.0043617 0.0149507 0.00435316 0.0144244 0.00433303 0.0138956 0.00430153 0.0133657 0.00425893 0.0128363 0.00420548 0.0123089 0.00414147 0.0117849 0.00406715 0.011266 0.00398274 0.0107536 0.00388846 0.0102494 0.00378449 0.00975489 0.00367101 0.00927182 0.00354819 0.00880186 0.00341631 0.00834671 0.00327574 0.00790807 0.00312709 0.00748752 0.00297121 0.00280929 0.0214625 0.00387146 -0.0217958 0.0211071 0.00402487 0.0207304 0.00416696 0.0203334 0.00429726 0.0199169 0.00441534 0.0194822 0.00452084 0.0190303 0.00461343 0.0185625 0.00469287 0.0180801 0.00475896 0.0175845 0.00481158 0.0170771 0.00485067 0.0165593 0.00487624 0.0160326 0.00488837 0.0154986 0.00488717 0.0149588 0.00487282 0.0144148 0.00484555 0.0138681 0.00480561 0.0133203 0.00475326 0.012773 0.00468876 0.0122278 0.00461235 0.0116863 0.00452426 0.0111501 0.00442466 0.0106209 0.00431369 0.0101005 0.00419143 0.00959066 0.004058 0.00909339 0.00391358 0.00861064 0.00375849 0.00814443 0.0035933 0.00769666 0.00341898 0.00323691 0.0219706 0.00419316 -0.0222923 0.0216256 0.00436986 0.0212581 0.0045345 0.0208688 0.00468652 0.0204588 0.0048254 0.0200289 0.00495069 0.0195804 0.00506197 0.0191143 0.00515893 0.018632 0.00524128 0.0181347 0.00530883 0.0176239 0.00536147 0.017101 0.00539914 0.0165675 0.00542187 0.016025 0.00542975 0.0154749 0.00542292 0.0149188 0.00540159 0.0143584 0.00536599 0.0137953 0.00531638 0.0132311 0.005253 0.0126674 0.00517608 0.0121058 0.00508582 0.0115481 0.00498233 0.0109961 0.00486568 0.0104517 0.00473587 0.00991684 0.00459287 0.00939371 0.00443671 0.0088846 0.0042676 0.00839187 0.00408603 0.00791783 0.00389302 0.00369017 0.0224216 0.00450162 -0.0227301 0.0220889 0.00470259 0.0217325 0.00489087 0.0213532 0.00506579 0.0209519 0.00522674 0.0205294 0.00537317 0.0200868 0.00550458 0.0196252 0.00562055 0.0191457 0.00572072 0.0186497 0.00580482 0.0181386 0.00587266 0.0176136 0.00592412 0.0170763 0.00595917 0.0165282 0.00597786 0.0159708 0.00598029 0.0154057 0.00596664 0.0148346 0.00593712 0.014259 0.00589196 0.0136806 0.0058314 0.013101 0.00575566 0.012522 0.00566487 0.0119452 0.00555911 0.0113725 0.00543834 0.010806 0.00530242 0.0102477 0.00515115 0.0097001 0.00498432 0.00916577 0.00480192 0.00864751 0.0046043 0.00814808 0.00439245 0.00416822 0.022819 0.0047956 -0.0231129 0.0224999 0.00502167 0.0221563 0.00523449 0.0217887 0.00543332 0.021398 0.00561745 0.020985 0.00578622 0.0205505 0.00593904 0.0200957 0.00607539 0.0196216 0.00619483 0.0191294 0.00629699 0.0186205 0.0063816 0.0180961 0.00644847 0.0175578 0.00649751 0.0170069 0.0065287 0.0164451 0.0065421 0.0158739 0.00653787 0.0152948 0.00651617 0.0147096 0.00647724 0.0141197 0.00642128 0.0135269 0.00634848 0.0129328 0.00625896 0.0123392 0.0061527 0.011748 0.00602956 0.0111612 0.00588922 0.0105811 0.00573123 0.0100103 0.00555507 0.00945187 0.00536039 0.00890892 0.00514724 0.00838486 0.00491651 0.00467027 0.0231661 0.00507425 -0.0234448 0.0228617 0.00532604 0.0225321 0.00556416 0.0221777 0.00578774 0.0217991 0.00599598 0.0213972 0.00618813 0.0209728 0.0063635 0.0205267 0.00652147 0.02006 0.00666149 0.0195739 0.0067831 0.0190696 0.00688595 0.0185483 0.00696976 0.0180114 0.00703436 0.0174605 0.00707968 0.0168968 0.00710574 0.0163221 0.00711262 0.0157377 0.0071005 0.0151454 0.00706957 0.0145467 0.00702002 0.0139431 0.00695202 0.0133365 0.00686563 0.0127284 0.00676079 0.0121207 0.00663722 0.0115156 0.00649438 0.0109153 0.00633152 0.0103226 0.0061477 0.00974099 0.00594205 0.00917409 0.00571414 0.00862603 0.00546457 0.00519561 0.0234666 0.00533705 -0.0237294 0.0231776 0.00561503 0.0228628 0.00587899 0.0225225 0.006128 0.0221574 0.00636114 0.021768 0.00657756 0.021355 0.00677646 0.0209194 0.00695712 0.020462 0.00711889 0.0199839 0.00726121 0.0194862 0.00738364 0.0189701 0.0074858 0.018437 0.00756746 0.0178882 0.00762846 0.0173252 0.00766877 0.0167494 0.00768845 0.0161623 0.00768761 0.0155654 0.00766643 0.0149603 0.0076251 0.0143486 0.00756377 0.0137317 0.00748248 0.0131114 0.00738108 0.0124895 0.00725918 0.0118678 0.00711601 0.0112489 0.00695044 0.0106357 0.00676097 0.0100317 0.00654603 0.00944137 0.00630443 0.00886973 0.00603621 0.00574369 0.023724 0.00558374 -0.0239707 0.0234508 0.00588822 0.0231513 0.00617845 0.0228259 0.00645339 0.022475 0.00671204 0.0220992 0.00695344 0.0216989 0.00717669 0.0212751 0.00738097 0.0208284 0.00756552 0.02036 0.00772968 0.0198707 0.00787289 0.0193618 0.00799471 0.0188345 0.00809479 0.01829 0.00817292 0.0177298 0.008229 0.0171552 0.00826304 0.0165677 0.00827513 0.0159687 0.00826543 0.0153597 0.00823411 0.0147421 0.00818133 0.0141175 0.00810711 0.0134873 0.00801127 0.0128532 0.00789328 0.012217 0.00775217 0.0115811 0.00758635 0.0109484 0.00739368 0.0103228 0.0071716 0.00970951 0.00691777 0.00911447 0.00663125 0.00631415 0.0239416 0.00581434 -0.0241722 0.0236844 0.00614548 0.0234006 0.00646223 0.0230905 0.00676346 0.0227545 0.00704807 0.0223929 0.00731502 0.0220063 0.00756329 0.0215953 0.00779196 0.0211607 0.00800016 0.0207032 0.00818712 0.0202239 0.00835219 0.0197238 0.00849481 0.019204 0.00861457 0.0186658 0.00871116 0.0181104 0.00878442 0.0175391 0.0088343 0.0169534 0.00886087 0.0163545 0.00886428 0.0157439 0.0088447 0.015123 0.00880231 0.0144929 0.00873714 0.0138552 0.00864901 0.0132112 0.0085373 0.0125625 0.00840083 0.0119113 0.00823757 0.0112604 0.00804459 0.0106139 0.00781807 0.00997763 0.00755403 0.00935903 0.00724985 0.00690685 0.0241228 0.00602905 -0.0243375 0.0238814 0.00638688 0.0236134 0.00673026 0.0233189 0.00705799 0.022998 0.00736888 0.0226513 0.00766178 0.022279 0.00793559 0.0218817 0.00818926 0.02146 0.00842182 0.0210147 0.00863241 0.0205467 0.00882026 0.0200568 0.00898471 0.0195461 0.00912524 0.0190158 0.00924148 0.018467 0.0093332 0.017901 0.00940029 0.0173191 0.00944279 0.0167225 0.00946084 0.0161126 0.00945465 0.0154905 0.00942441 0.0148574 0.00937022 0.0142145 0.00929193 0.0135629 0.00918891 0.0129039 0.00905982 0.0122392 0.00890224 0.0115714 0.00871236 0.0109047 0.00848483 0.0102453 0.00821336 0.00960257 0.00789262 0.00752207 0.0242708 0.00622826 -0.02447 0.024045 0.00661267 0.0237926 0.00698268 0.0235136 0.00733698 0.0232081 0.00767431 0.0228765 0.00799343 0.0225189 0.00829313 0.0221359 0.00857227 0.021728 0.00882978 0.0212957 0.00906466 0.0208399 0.00927605 0.0203614 0.00946319 0.0198612 0.00962547 0.0193403 0.00976242 0.0187997 0.00987373 0.0182408 0.00995925 0.0176646 0.010019 0.0170723 0.0100531 0.0164652 0.0100618 0.0158442 0.0100454 0.0152104 0.010004 0.0145647 0.0099376 0.013908 0.00984566 0.013241 0.0097268 0.012565 0.00957827 0.0118819 0.00939543 0.0111956 0.00917117 0.0105128 0.00889614 0.00984465 0.00856077 0.00816065 0.0243884 0.00641245 -0.0245726 0.0241778 0.00682326 0.0239407 0.00721975 0.0236771 0.00760058 0.0233871 0.0079644 0.0230706 0.00830987 0.0227281 0.00863569 0.0223597 0.00894062 0.021966 0.00922349 0.0215475 0.00948319 0.0211048 0.00971874 0.0206387 0.00992929 0.0201501 0.0101141 0.0196398 0.0102727 0.019109 0.0104046 0.0185586 0.0105096 0.0179898 0.0105878 0.0174038 0.0106392 0.0168014 0.0106642 0.0161838 0.010663 0.0155516 0.0106361 0.0149057 0.0105836 0.0142464 0.010505 0.013574 0.0103991 0.0128891 0.0102632 0.0121926 0.0100918 0.0114877 0.00987613 0.0107809 0.0096029 0.0100854 0.00925628 0.00882433 0.0244785 0.00658226 -0.0246483 0.0242826 0.00701915 0.0240605 0.00744191 0.023812 0.00784911 0.023537 0.00823933 0.0232357 0.00861115 0.0229082 0.00896319 0.0225548 0.0092941 0.0221757 0.0096026 0.0217714 0.00988749 0.0213424 0.0101477 0.0208895 0.0103822 0.0204134 0.0105902 0.0199149 0.0107711 0.019395 0.0109245 0.0188547 0.0110499 0.0182949 0.0111475 0.0177168 0.0112174 0.0171211 0.0112598 0.0165089 0.0112753 0.0158807 0.0112643 0.015237 0.0112273 0.0145779 0.0111641 0.0139031 0.011074 0.0132121 0.0109541 0.0125049 0.010799 0.0117829 0.0105982 0.0110517 0.0103341 0.0103259 0.00998207 0.00951634 0.0245437 0.00673835 -0.0246998 0.0243619 0.00720096 0.0241542 0.00764966 0.0239203 0.00808298 0.0236602 0.00849942 0.0233739 0.00889749 0.0230614 0.00927571 0.0227228 0.00963266 0.0223585 0.00996693 0.0219687 0.0102772 0.021554 0.0105624 0.0211149 0.0108213 0.0206521 0.0110531 0.0201663 0.0112569 0.0196584 0.0114323 0.0191293 0.011579 0.01858 0.0116968 0.0180114 0.011786 0.0174243 0.0118469 0.0168195 0.0118801 0.0161975 0.0118863 0.0155586 0.0118662 0.0149025 0.0118202 0.0142284 0.011748 0.013535 0.0116475 0.0128205 0.0115135 0.012084 0.0113347 0.0113287 0.0110895 0.0105688 0.0107419 0.0102423 0.0245864 0.00688148 -0.0247295 0.024418 0.00736936 0.024224 0.00784362 0.0240043 0.00830271 0.0237586 0.00874509 0.0234869 0.0091692 0.0231892 0.00957347 0.0228654 0.00995638 0.0225159 0.0103165 0.0221409 0.0106523 0.0217407 0.0109626 0.0213159 0.0112461 0.0208669 0.011502 0.0203946 0.0117292 0.0198997 0.0119273 0.019383 0.0120957 0.0188454 0.0122345 0.0182877 0.0123437 0.0177108 0.0124238 0.0171153 0.0124756 0.0165017 0.0124999 0.0158701 0.0124978 0.01522 0.0124703 0.0145502 0.0124178 0.0138585 0.0123392 0.0131414 0.0122306 0.012395 0.0120811 0.0116174 0.011867 0.0108193 0.0115401 0.011012 0.0246086 0.00701241 -0.0247396 0.0244529 0.00752507 0.0242721 0.00802443 0.0240659 0.00850889 0.0238342 0.00897685 0.0235767 0.00942668 0.0232934 0.00985675 0.0229843 0.0102655 0.0226496 0.0106512 0.0222893 0.0110126 0.0219038 0.011348 0.0214936 0.0116564 0.021059 0.0119365 0.0206008 0.0121874 0.0201197 0.0124084 0.0196163 0.0125991 0.0190915 0.0127593 0.0185461 0.0128891 0.0179809 0.012989 0.0173964 0.01306 0.0167932 0.0131031 0.0161713 0.0131198 0.0155301 0.0131115 0.0148683 0.0130796 0.014183 0.0130245 0.0134695 0.0129441 0.0127205 0.0128302 0.0119266 0.0126609 0.0110873 0.0123794 0.0118431 0.0246124 0.00713195 -0.0247319 0.0244686 0.00766885 0.0243002 0.00819279 0.024107 0.00870214 0.0238886 0.00919525 0.0236448 0.00967042 0.0233756 0.010126 0.0230809 0.0105602 0.0227607 0.0109714 0.0224152 0.0113581 0.0220445 0.0117187 0.0216491 0.0120518 0.0212293 0.0123563 0.0207857 0.012631 0.0203189 0.0128752 0.0198297 0.0130883 0.0193187 0.0132702 0.0187868 0.013421 0.0182346 0.0135412 0.0176629 0.0136317 0.0170719 0.013694 0.016462 0.0137297 0.0158325 0.013741 0.0151822 0.0137299 0.0145084 0.0136983 0.013806 0.0136465 0.0130655 0.0135707 0.0122699 0.0134565 0.0113961 0.0132532 0.0127696 0.0245991 -0.0247081 0.0072409 0.0244665 0.00780147 0.0243099 0.00834944 0.0241289 0.00888315 0.0239232 0.0094009 0.0236927 0.00990095 0.0234371 0.0103815 0.0231564 0.0108409 0.0228505 0.0112773 0.0225195 0.0116891 0.0221637 0.0120746 0.0217831 0.0124324 0.0213783 0.0127611 0.0209497 0.0130596 0.0204979 0.013327 0.0200235 0.0135628 0.0195272 0.0137665 0.0190097 0.0139384 0.0184719 0.0140791 0.0179142 0.0141894 0.0173373 0.014271 0.0167412 0.0143258 0.0161259 0.0143563 0.0154905 0.0143654 0.0148328 0.014356 0.014149 0.0143303 0.0134313 0.0142884 0.012663 0.0142248 0.0118053 0.0141109 0.0138614 0.00964775 -1.06471e-05 -0.0096371 0.00965801 -1.02582e-05 0.00966648 -8.47647e-06 0.00967268 -6.20034e-06 0.00967638 -3.69657e-06 0.0096772 -8.20962e-07 0.00967545 1.74813e-06 0.00967127 4.18053e-06 0.00966451 6.76065e-06 0.00965518 9.33531e-06 0.00964331 1.18714e-05 0.00962895 1.43571e-05 0.00961216 1.67845e-05 0.00959302 1.91471e-05 0.00957158 2.14383e-05 0.00954793 2.36514e-05 0.00952215 2.57798e-05 0.00949433 2.78169e-05 0.00946457 2.97565e-05 0.00943298 3.15924e-05 0.00939966 3.33194e-05 0.00936473 3.49323e-05 0.0093283 3.6426e-05 0.00929051 3.77961e-05 0.00925147 3.90361e-05 0.00921134 4.01357e-05 0.00917026 4.10723e-05 0.00912847 4.17928e-05 0.00908633 4.2141e-05 4.16171e-05 0.0118688 -5.42756e-05 -0.0118252 0.0119057 -4.71742e-05 0.0119362 -3.8935e-05 0.01196 -3.00344e-05 0.0119771 -2.07524e-05 0.0119875 -1.12292e-05 0.011991 -1.76625e-06 0.0119874 7.83601e-06 0.0119767 1.7368e-05 0.0119592 2.68361e-05 0.0119349 3.61964e-05 0.0119039 4.54143e-05 0.0118662 5.44599e-05 0.011822 6.33053e-05 0.0117715 7.1923e-05 0.0117149 8.02861e-05 0.0116523 8.83686e-05 0.011584 9.6145e-05 0.0115102 0.00010359 0.0114311 0.000110682 0.011347 0.000117396 0.0112582 0.000123713 0.011165 0.000129611 0.0110678 0.000135069 0.0109667 0.000140063 0.0108623 0.000144563 0.0107549 0.000148518 0.0106448 0.000151846 0.0105326 0.000154384 0.00015584 0.0137424 -0.000131812 -0.0136649 0.0138092 -0.000114023 0.0138657 -9.54182e-05 0.0139119 -7.61787e-05 0.0139476 -5.64978e-05 0.0139729 -3.65357e-05 0.0139876 -1.64361e-05 0.0139917 3.74209e-06 0.0139852 2.38824e-05 0.0139681 4.39121e-05 0.0139405 6.37617e-05 0.0139026 8.33653e-05 0.0138544 0.000102661 0.0137961 0.000121589 0.0137279 0.000140089 0.0136501 0.000158106 0.0135629 0.000175582 0.0134666 0.000192461 0.0133615 0.000208691 0.0132479 0.000224219 0.0131263 0.000238996 0.0129971 0.000252972 0.0128606 0.000266103 0.0127173 0.000278341 0.0125677 0.000289637 0.0124124 0.000299937 0.0122517 0.000309173 0.0120863 0.000317254 0.0119166 0.000324062 0.000329462 0.0153109 -0.000243306 -0.0151995 0.015409 -0.000212095 0.0154938 -0.000180167 0.0155652 -0.000147602 0.0156232 -0.00011453 0.0156678 -8.10912e-05 0.0156988 -4.74225e-05 0.0157162 -1.36427e-05 0.0157199 2.01284e-05 0.01571 5.37724e-05 0.0156866 8.719e-05 0.0156497 0.000120275 0.0155994 0.000152925 0.015536 0.000185041 0.0154596 0.000216525 0.0153704 0.00024728 0.0152688 0.000277209 0.015155 0.000306218 0.0150295 0.000334216 0.0148926 0.000361112 0.0147448 0.000386818 0.0145865 0.000411252 0.0144183 0.000434331 0.0142406 0.000455975 0.0140541 0.000476105 0.0138594 0.000494639 0.0136571 0.000511487 0.0134478 0.000526556 0.0132321 0.000539748 0.000550986 0.0166118 -0.000388285 -0.0164669 0.0167414 -0.000341629 0.0168554 -0.000294177 0.0169538 -0.000245998 0.0170364 -0.000197202 0.0171033 -0.000147921 0.0171542 -9.83005e-05 0.017189 -4.84853e-05 0.0172077 1.39754e-06 0.0172103 5.11543e-05 0.0171969 0.000100688 0.0171673 0.000149836 0.0171218 0.000198455 0.0170604 0.000246401 0.0169834 0.000293533 0.016891 0.000339705 0.0167834 0.000384775 0.016661 0.000428603 0.0165242 0.000471049 0.0163733 0.000511977 0.0162089 0.000551255 0.0160314 0.000588754 0.0158414 0.000624348 0.0156394 0.000657918 0.0154262 0.000689345 0.0152023 0.000718512 0.0149685 0.000745306 0.0147254 0.000769614 0.0144738 0.000791337 0.000810398 0.0176787 -0.000565645 -0.0175014 0.0178392 -0.00050208 0.0179825 -0.000437515 0.0181086 -0.00037204 0.0182171 -0.000305769 0.0183081 -0.000238843 0.0183812 -0.000171419 0.0184364 -0.00010366 0.0184735 -3.57376e-05 0.0184925 3.21621e-05 0.0184933 9.98636e-05 0.018476 0.000167183 0.0184405 0.00023393 0.018387 0.000299913 0.0183156 0.000364942 0.0182264 0.00042882 0.0181199 0.000491354 0.0179961 0.00055235 0.0178556 0.000611617 0.0176986 0.000668964 0.0175256 0.000724207 0.0173372 0.000777165 0.0171339 0.000827662 0.0169163 0.000875529 0.016685 0.000920602 0.0164408 0.000962722 0.0161844 0.00100174 0.0159165 0.00103751 0.0156379 0.00106992 0.00109885 0.0185421 -0.00077376 -0.018334 0.0187323 -0.000692288 0.0189043 -0.000609521 0.0190579 -0.000525575 0.0191927 -0.000440586 0.0193085 -0.000354707 0.0194052 -0.000268111 0.0194826 -0.000180984 0.0195403 -9.35246e-05 0.0195784 -5.93931e-06 0.0195968 8.1544e-05 0.0195952 0.000168711 0.0195738 0.000255324 0.0195326 0.000341145 0.0194716 0.000425929 0.019391 0.000509429 0.019291 0.000591395 0.0191717 0.000671577 0.0190336 0.000749725 0.018877 0.000825591 0.0187023 0.000898932 0.0185099 0.000969509 0.0183005 0.00103709 0.0180746 0.00110145 0.0178328 0.00116236 0.0175759 0.00121963 0.0173046 0.00127306 0.0170197 0.00132245 0.0167219 0.00136766 0.00140853 0.0192294 -0.00101062 -0.0189926 0.0194478 -0.000910633 0.0196472 -0.000808983 0.0198275 -0.000705819 0.0199882 -0.000601294 0.0201291 -0.000495581 0.0202498 -0.000388867 0.0203502 -0.000281362 0.02043 -0.000173287 0.0204889 -6.48801e-05 0.0205269 4.36039e-05 0.0205437 0.000151901 0.0205393 0.000259734 0.0205136 0.000366816 0.0204667 0.000472851 0.0203985 0.000577536 0.0203094 0.000680564 0.0201993 0.000781624 0.0200687 0.000880408 0.0199176 0.000976604 0.0197467 0.00106991 0.0195562 0.00116001 0.0193466 0.00124663 0.0191186 0.00132947 0.0188727 0.00140825 0.0186096 0.00148271 0.0183301 0.0015526 0.0180349 0.00161767 0.0177248 0.00167772 0.00173255 0.0197655 -0.00127397 -0.0195021 0.02001 -0.00115517 0.0202353 -0.0010343 0.020441 -0.000911513 0.0206267 -0.000786993 0.0207921 -0.000660925 0.0209367 -0.000533512 0.0210603 -0.000404979 0.0211626 -0.00027557 0.0212433 -0.000145553 0.0213021 -1.52103e-05 0.0213388 0.000115151 0.0213534 0.000245214 0.0213455 0.000374642 0.0213153 0.000503087 0.0212627 0.000630192 0.0211876 0.000755591 0.0210903 0.000878915 0.020971 0.000999789 0.0208297 0.00111784 0.0206669 0.0012327 0.020483 0.00134399 0.0202782 0.00145136 0.0200532 0.00155444 0.0198086 0.00165291 0.0195449 0.00174642 0.0192628 0.00183467 0.0189631 0.00191735 0.0186467 0.00199418 0.00206492 0.0201724 -0.0015614 -0.019885 0.020441 -0.00142376 0.0206903 -0.00128358 0.0209198 -0.00114107 0.0211292 -0.00099639 0.021318 -0.000849746 0.0214859 -0.000701353 0.0216324 -0.000551448 0.0217571 -0.000400295 0.0218597 -0.000248185 0.0219399 -9.54316e-05 0.0219975 5.76238e-05 0.0220321 0.000210619 0.0220435 0.000363173 0.0220317 0.000514887 0.0219966 0.000665349 0.021938 0.000814135 0.0218561 0.000960814 0.021751 0.00110495 0.0216227 0.0012461 0.0214716 0.00138384 0.0212978 0.00151772 0.0211019 0.0016473 0.0208841 0.00177218 0.0206451 0.00189194 0.0203854 0.00200617 0.0201055 0.00211449 0.0198064 0.00221653 0.0194886 0.00231196 0.00240043 0.02047 -0.00187045 -0.0201609 0.0207603 -0.00171414 0.0210316 -0.00155482 0.0212832 -0.00139268 0.0215147 -0.00122792 0.0217257 -0.00106073 0.0219157 -0.000891324 0.0220842 -0.000719956 0.0222308 -0.000546903 0.0223551 -0.000372474 0.0224567 -0.000197015 0.0225352 -2.08991e-05 0.0225903 0.000155469 0.0226218 0.000331665 0.0226295 0.000507239 0.0226131 0.000681725 0.0225726 0.000854643 0.0225079 0.0010255 0.0224191 0.00119381 0.0223061 0.00135905 0.0221692 0.00152073 0.0220086 0.00167834 0.0218245 0.00183138 0.0216173 0.00197935 0.0213875 0.00212177 0.0211355 0.00225817 0.0208619 0.00238809 0.0205673 0.00251109 0.0202526 0.00262675 0.00273466 0.0206756 -0.0021987 -0.0203474 0.0209855 -0.00202405 0.0212766 -0.0018459 0.0215484 -0.00166445 0.0218003 -0.00147986 0.0220319 -0.00129234 0.0222427 -0.0011021 0.0224321 -0.000909382 0.0225997 -0.000714477 0.022745 -0.000517715 0.0228674 -0.000319467 0.0229666 -0.000120142 0.0230423 7.98197e-05 0.023094 0.000279945 0.0231215 0.000479738 0.0231246 0.000678681 0.023103 0.000876238 0.0230566 0.00107186 0.0229854 0.00126499 0.0228894 0.00145507 0.0227686 0.00164151 0.0226232 0.00182376 0.0224533 0.00200124 0.0222593 0.00217338 0.0220414 0.00233963 0.0218002 0.00249944 0.021536 0.00265228 0.0212495 0.00279762 0.0209412 0.00293497 0.00306385 0.0208047 -0.00254381 -0.0204596 0.021132 -0.00235126 0.0214408 -0.00215474 0.0217308 -0.00195442 0.0220013 -0.00175043 0.022252 -0.00154296 0.0224821 -0.0013322 0.0226911 -0.0011184 0.0228785 -0.000901853 0.0230436 -0.000682906 0.0231861 -0.000461955 0.0233054 -0.000239444 0.0234011 -1.58535e-05 0.0234728 0.000208301 0.02352 0.000432476 0.0235426 0.000656104 0.0235402 0.000878597 0.0235127 0.00109935 0.02346 0.00131775 0.0233819 0.00153318 0.0232784 0.00174499 0.0231496 0.00195255 0.0229956 0.00215523 0.0228166 0.00235239 0.0226128 0.0025434 0.0223846 0.00272765 0.0221324 0.0029045 0.0218566 0.00307339 0.0215579 0.00323371 0.00338491 0.0208707 -0.00290354 -0.020511 0.0212131 -0.00269366 0.0215377 -0.00247934 0.021844 -0.0022607 0.0221314 -0.00203784 0.0223993 -0.00181091 0.0226472 -0.00158007 0.0228744 -0.00134557 0.0230802 -0.00110771 0.0232642 -0.00086684 0.0234256 -0.0006234 0.023564 -0.000377862 0.0236789 -0.000130748 0.0237699 0.000117383 0.0238364 0.000365942 0.0238782 0.000614313 0.0238949 0.000861858 0.0238863 0.00110792 0.0238523 0.00135184 0.0237925 0.00159293 0.023707 0.00183049 0.0235957 0.00206384 0.0234587 0.00229227 0.023296 0.00251509 0.0231078 0.00273158 0.0228944 0.00294107 0.022656 0.00314285 0.0223931 0.00333627 0.0221062 0.00352065 0.00369535 0.0208851 -0.00327585 -0.0205128 0.0212407 -0.00304926 0.0215792 -0.00281779 0.0219 -0.00258148 0.0222025 -0.00234037 0.0224861 -0.00209455 0.0227502 -0.00184415 0.022994 -0.0015894 0.023217 -0.00133062 0.0234183 -0.00106818 0.0235974 -0.000802553 0.0237538 -0.000534244 0.0238869 -0.000263819 0.0239962 8.11805e-06 0.0240812 0.000280932 0.0241415 0.000553961 0.0241769 0.000826523 0.0241869 0.00109792 0.0241713 0.00136742 0.0241299 0.00163431 0.0240626 0.00189783 0.0239692 0.00215725 0.0238496 0.00241179 0.023704 0.00266069 0.0235324 0.00290319 0.023335 0.00313853 0.0231119 0.00336594 0.0228635 0.00358468 0.0225901 0.003794 0.00399318 0.020858 -0.00365885 -0.020475 0.0212249 -0.00341626 0.0215755 -0.00316836 0.0219091 -0.00291509 0.0222252 -0.00265641 0.0225229 -0.00239231 0.0228017 -0.0021229 0.0230607 -0.0018484 0.0232992 -0.00156914 0.0235165 -0.00128552 0.023712 -0.000998053 0.0238851 -0.000707293 0.0240351 -0.000413847 0.0241616 -0.000118365 0.0242641 0.000178474 0.0243421 0.000475965 0.0243952 0.000773382 0.0244231 0.00106998 0.0244255 0.001365 0.0244022 0.00165767 0.0243528 0.0019472 0.0242773 0.00223278 0.0241755 0.0025136 0.0240473 0.00278885 0.0238928 0.00305769 0.023712 0.0033193 0.0235051 0.00357285 0.0232723 0.00381751 0.0230138 0.00405247 0.00427692 0.0207977 -0.00405086 -0.0204057 0.0211744 -0.00379303 0.0215356 -0.00352949 0.0218805 -0.00326004 0.0222086 -0.00298448 0.022519 -0.00270274 0.022811 -0.00241487 0.0230837 -0.00212111 0.0233364 -0.0018218 0.0235683 -0.00151741 0.0237787 -0.00120848 0.023967 -0.000895622 0.0241327 -0.000579493 0.0242751 -0.00026079 0.0243938 5.97658e-05 0.0244884 0.00038143 0.0245583 0.00070344 0.0246033 0.00102501 0.0246229 0.00134536 0.0246169 0.00166366 0.024585 0.00197908 0.024527 0.00229078 0.0244427 0.00259791 0.024332 0.00289958 0.0241948 0.00319492 0.024031 0.00348305 0.0238408 0.00376306 0.0236243 0.00403407 0.0233815 0.00429519 0.00454551 0.0207115 -0.00445037 -0.020312 0.0210966 -0.00417815 0.021467 -0.00389985 0.021822 -0.00361502 0.0221608 -0.0033233 0.0224826 -0.00302451 0.0227864 -0.00271871 0.0230714 -0.00240614 0.0233368 -0.0020872 0.0235818 -0.00176241 0.0238057 -0.00143238 0.0240079 -0.00109779 0.0241877 -0.000759345 0.0243447 -0.000417787 0.0244784 -7.38781e-05 0.0245882 0.000271602 0.0246738 0.000617859 0.0247347 0.000964082 0.0247706 0.00130944 0.0247812 0.00165311 0.0247661 0.0019942 0.024725 0.00233185 0.0246577 0.00266515 0.0245641 0.0029932 0.024444 0.00331505 0.0242973 0.00362977 0.0241239 0.00393641 0.023924 0.00423402 0.0236975 0.00452163 0.00479827 0.0206055 -0.00485612 -0.0201998 0.0209978 -0.00457046 0.0213763 -0.00427832 0.0217402 -0.00397893 0.0220886 -0.00367172 0.0224206 -0.00335645 0.022735 -0.00303315 0.023031 -0.00270215 0.0233077 -0.00236391 0.0235644 -0.00201906 0.0238003 -0.00166829 0.0240148 -0.00131233 0.0242074 -0.000951949 0.0243776 -0.00058793 0.0245248 -0.000221074 0.0246486 0.000147811 0.0247485 0.000517904 0.0248242 0.000888373 0.0248753 0.00125837 0.0249014 0.00162703 0.0249021 0.00199348 0.0248772 0.00235678 0.0248263 0.00271602 0.0247493 0.00307024 0.0246458 0.00341848 0.0245159 0.00375974 0.0243592 0.00409302 0.024176 0.00441732 0.023966 0.0047316 0.00503483 0.0204848 -0.00526704 -0.0200739 0.0208833 -0.00496901 0.0212691 -0.00466403 0.021641 -0.00435089 0.0219981 -0.0040288 0.0223391 -0.00369747 0.022663 -0.00335701 0.0229687 -0.00300784 0.0232553 -0.00265059 0.0235222 -0.00228596 0.0237687 -0.00191476 0.0239942 -0.00153777 0.024198 -0.00115584 0.0243799 -0.00076977 0.0245392 -0.000380403 0.0246756 1.14323e-05 0.0247886 0.000404899 0.0248778 0.000799149 0.0249429 0.00119333 0.0249833 0.00158656 0.0249989 0.00197793 0.0249892 0.00236651 0.0249538 0.00275135 0.0248926 0.00313145 0.0248053 0.00350582 0.0246916 0.00387343 0.0245514 0.00423324 0.0243845 0.00458417 0.024191 0.00492517 0.00525511 0.0203535 -0.00568227 -0.0199383 0.0207577 -0.00537316 0.02115 -0.0050564 0.0215294 -0.00473025 0.0218943 -0.00439374 0.0222435 -0.00404661 0.0225756 -0.00368915 0.0228898 -0.00332198 0.0231851 -0.00294587 0.0234608 -0.0025617 0.0237164 -0.00217033 0.0239512 -0.00177266 0.024165 -0.00136955 0.0243571 -0.000961865 0.0245271 -0.000550449 0.0246747 -0.00013615 0.0247994 0.000280186 0.0249008 0.000697706 0.0249786 0.00111555 0.0250323 0.00153285 0.0250616 0.00194868 0.025066 0.00236208 0.0250453 0.00277208 0.0249991 0.00317767 0.024927 0.00357783 0.024829 0.0039715 0.0247046 0.00435759 0.0245538 0.00473501 0.0243763 0.00510261 0.00545925 0.0202153 -0.00610124 -0.0197963 0.0206247 -0.00578256 0.0210234 -0.00545511 0.0214097 -0.00511654 0.0217818 -0.00476584 0.0221381 -0.00440295 0.0224775 -0.00402848 0.0227988 -0.0036433 0.0231013 -0.00324843 0.0233845 -0.00284486 0.0236478 -0.00243359 0.0238907 -0.00201556 0.0241128 -0.00159167 0.0243137 -0.0011628 0.0244931 -0.00072982 0.0246505 -0.000293571 0.0247856 0.000145097 0.024898 0.000585336 0.0249872 0.00102629 0.025053 0.00146711 0.0250948 0.00190686 0.0251123 0.00234457 0.0251051 0.00277924 0.0250729 0.00320986 0.0250154 0.00363537 0.0249322 0.00405471 0.024823 0.00446676 0.0246876 0.00487038 0.0245259 0.00526439 0.00564758 0.0200731 -0.00652367 -0.0196506 0.0204878 -0.00619726 0.0208928 -0.00586011 0.0212857 -0.00550944 0.0216643 -0.00514444 0.0220269 -0.00476555 0.0223722 -0.00437384 0.0226995 -0.00397054 0.0230079 -0.00355691 0.0232972 -0.00313408 0.0235667 -0.00270315 0.0238162 -0.00226508 0.0240454 -0.00182081 0.0242538 -0.00137122 0.0244412 -0.000917176 0.0246071 -0.000459514 0.0247513 9.23395e-07 0.0248733 0.000463298 0.0249728 0.000926771 0.0250494 0.00139055 0.0251026 0.00185365 0.0251321 0.0023151 0.0251374 0.00277389 0.0251183 0.00322901 0.0250743 0.00367939 0.025005 0.00412394 0.0249103 0.00456153 0.0247897 0.00499098 0.024643 0.00541108 0.00582059 0.0199293 -0.00694971 -0.0195033 0.0203498 -0.00661775 0.0207614 -0.00627164 0.0211606 -0.00590867 0.021545 -0.00552882 0.0219128 -0.00513336 0.0222629 -0.004724 0.0225948 -0.00430237 0.0229078 -0.00386994 0.0232017 -0.003428 0.0234762 -0.00297765 0.023731 -0.0025199 0.0239659 -0.00205567 0.0241805 -0.00158584 0.0243746 -0.00111125 0.0245478 -0.000632731 0.0246999 -0.000151106 0.0248304 0.000332801 0.024939 0.000818169 0.0250252 0.00130431 0.0250887 0.00179018 0.025129 0.00227477 0.0251458 0.0027571 0.0251386 0.00323615 0.0251072 0.00371085 0.025051 0.0041801 0.0249698 0.00464274 0.0248632 0.00509759 0.0247309 0.0055434 0.00597888 0.0197865 -0.00738014 -0.0193561 0.0202138 -0.00704504 0.0206322 -0.00669004 0.0210374 -0.00631384 0.0214266 -0.00591805 0.0217984 -0.00550515 0.022152 -0.00507759 0.022487 -0.00463739 0.0228032 -0.00418618 0.0231005 -0.00372528 0.0233787 -0.00325582 0.0236376 -0.00277878 0.0238769 -0.00229505 0.0240966 -0.00180547 0.0242962 -0.00131088 0.0244755 -0.000812062 0.0246343 -0.000309842 0.0247721 0.000194977 0.0248887 0.000701587 0.0249835 0.00120951 0.0250561 0.00171754 0.0251062 0.00222468 0.0251334 0.00272994 0.0251372 0.00323231 0.0251173 0.00373074 0.0250733 0.00422412 0.0250047 0.00471129 0.0249113 0.00519103 0.0247926 0.00566209 0.00612315 0.0196469 -0.00781669 -0.0192104 0.0200825 -0.00748066 0.0205081 -0.00711558 0.0209184 -0.00672418 0.0213112 -0.0063108 0.0216854 -0.00587941 0.022041 -0.00543312 0.0223778 -0.00497419 0.0226959 -0.00450428 0.0229953 -0.00402469 0.0232759 -0.00353647 0.0235377 -0.00304057 0.0237805 -0.00253783 0.0240041 -0.00202903 0.0242082 -0.00151498 0.0243926 -0.000996447 0.0245569 -0.000474225 0.024701 5.08777e-05 0.0248246 0.000578042 0.0249269 0.00110719 0.0250076 0.00163681 0.0250665 0.00216585 0.025103 0.00269341 0.0251168 0.00321849 0.0251075 0.00374004 0.0250747 0.00425696 0.0250179 0.00476808 0.0249367 0.00527218 0.0248308 0.00576798 0.00625414 0.0195133 -0.00826271 -0.0190673 0.0199592 -0.00792656 0.0203916 -0.00754799 0.0208056 -0.00713822 0.0212001 -0.00670525 0.021575 -0.00625436 0.0219309 -0.00578899 0.022268 -0.00531136 0.0225868 -0.004823 0.0228872 -0.00432508 0.0231692 -0.00381856 0.0234329 -0.00330428 0.0236782 -0.00278304 0.0239047 -0.00225557 0.0241123 -0.00172262 0.0243008 -0.00118493 0.0244699 -0.000643301 0.0246193 -9.85406e-05 0.0247489 0.000448462 0.0248577 0.000998344 0.0249456 0.00154896 0.0250122 0.00209928 0.0250571 0.0026485 0.0250799 0.00319565 0.0250802 0.0037397 0.0250577 0.00427955 0.0250117 0.00481404 0.024942 0.00534193 0.024848 0.00586192 0.00637266 0.0193893 -0.008725 -0.018927 0.0198472 -0.00838449 0.0202849 -0.00798564 0.0207 -0.00755337 0.0210938 -0.00709898 0.0214674 -0.00662802 0.0218221 -0.00614361 0.0221583 -0.00564759 0.0224765 -0.00514122 0.0227769 -0.00462547 0.0230595 -0.00410117 0.0233243 -0.00356906 0.0235711 -0.00302986 0.0237998 -0.00248426 0.0240102 -0.00193296 0.0242019 -0.00137668 0.0243748 -0.000816198 0.0245287 -0.000252422 0.0246635 0.000313632 0.024778 0.000883875 0.024872 0.00145492 0.0249454 0.00202589 0.0249978 0.00259613 0.0250287 0.00316472 0.0250378 0.00373065 0.0250245 0.00429282 0.0249885 0.00485006 0.0249293 0.00540114 0.0248464 0.00594475 0.00647952 0.0192828 -0.0092158 -0.018792 0.019751 -0.00885267 0.0201893 -0.00842397 0.0206016 -0.00796568 0.0209918 -0.00748917 0.0213622 -0.00699845 0.0217142 -0.00649558 0.0220484 -0.00598182 0.0223653 -0.00545807 0.0226649 -0.00492509 0.0229473 -0.00438358 0.0232124 -0.0038342 0.0234602 -0.0032776 0.0236903 -0.00271442 0.0239027 -0.00214532 0.024097 -0.00157096 0.0242729 -0.00099209 0.0244303 -0.000409834 0.0245701 0.000173785 0.0246892 0.000764819 0.0247885 0.00135561 0.0248678 0.00194654 0.0249268 0.00253715 0.024965 0.00312656 0.0249819 0.00371376 0.0249771 0.00429764 0.0249501 0.00487703 0.0249005 0.0054507 0.0248279 0.00601734 0.00657555 0.0192079 -0.0186758 -0.00974789 0.0196732 -0.009318 0.0201033 -0.00885407 0.0205082 -0.00837051 0.0208923 -0.0078733 0.021258 -0.00736416 0.0216064 -0.00684393 0.0219379 -0.00631332 0.0222527 -0.00577293 0.022551 -0.00522338 0.0228327 -0.00466526 0.0230977 -0.00409918 0.0233458 -0.00352573 0.0235769 -0.00294551 0.0237907 -0.00235913 0.023987 -0.00176722 0.0241653 -0.00117042 0.0243246 -0.000569161 0.0244702 2.81746e-05 0.0245922 0.000642838 0.0246962 0.00125165 0.0247808 0.00186192 0.0248456 0.00247234 0.0248902 0.00308199 0.0249141 0.00368986 0.0249168 0.00429485 0.0248981 0.0048958 0.0248573 0.00549146 0.0247941 0.00608052 0.00666158 0.0152353 0.00320934 -0.00262464 -0.01582 0.0146474 0.00327749 -0.00268962 0.0140563 0.00334927 -0.00275817 0.0134619 0.00342516 -0.0028308 0.0128643 0.00350569 -0.00290804 0.0122634 0.00359142 -0.00299049 0.0116592 0.00368299 -0.00307884 0.011052 0.00378111 -0.00317386 0.0104418 0.00388659 -0.00327642 0.00982898 0.0040003 -0.00338749 0.00921393 0.0041232 -0.00350815 0.00859717 0.00425631 -0.00363955 0.00797941 0.0044007 -0.00378295 0.00736156 0.00455748 -0.00393963 0.00674479 0.0047277 -0.00411092 0.00613054 0.00491238 -0.00429814 0.00552065 0.00511239 -0.00450249 0.00491735 0.00532834 -0.00472504 0.00432339 0.00556054 -0.00496658 0.00374209 0.00580877 -0.00522748 0.00317746 0.0060722 -0.00550757 0.00263429 0.00634909 -0.00580592 0.00211827 0.00663665 -0.00612063 0.00163613 0.00693066 -0.00644852 0.00119577 0.00722522 -0.00678485 0.000806394 0.00751228 -0.00712291 0.000478723 0.00778128 -0.00745361 0.000225133 0.00801851 -0.00776492 6.0016e-05 0.00820648 -0.00804136 0.00832295 -0.00826293 0.0152357 0.00379373 -0.01582 0.0146481 0.00386506 0.0140573 0.00394008 0.0134632 0.00401925 0.0128658 0.00410309 0.0122651 0.00419213 0.0116611 0.00428694 0.011054 0.0043882 0.010444 0.00449662 0.0098313 0.004613 0.00921632 0.00473818 0.00859959 0.00487304 0.00798181 0.00501848 0.0073639 0.00517539 0.00674701 0.00534459 0.00613262 0.00552678 0.00552254 0.00572247 0.00491902 0.00593186 0.00432482 0.00615474 0.00374326 0.00639033 0.00317838 0.00663708 0.00263497 0.0068925 0.00211876 0.00715286 0.00163649 0.00741293 0.00119608 0.00766562 0.000806772 0.00790159 0.00047929 0.00810876 0.000225985 0.00827181 6.09721e-05 0.00837149 0.00838392 0.0152215 0.00437739 -0.0158051 0.0146346 0.00445192 0.0140445 0.0045302 0.0134511 0.00461267 0.0128543 0.00469984 0.0122542 0.0047922 0.0116509 0.00489028 0.0110444 0.00499469 0.010435 0.00510608 0.0098228 0.00522515 0.00920835 0.00535264 0.00859212 0.00548927 0.00797482 0.00563578 0.00735736 0.00579285 0.00674091 0.00596104 0.00612693 0.00614076 0.00551724 0.00633215 0.00491411 0.00653499 0.00432028 0.00674856 0.00373912 0.00697149 0.00317464 0.00720156 0.00263166 0.00743547 0.00211592 0.0076686 0.00163417 0.00789469 0.00119432 0.00810547 0.000805612 0.0082903 0.00047872 0.00843565 0.000225905 0.00852463 6.11065e-05 0.00853629 0.00844503 0.0151927 0.00495995 -0.0157752 0.0146069 0.00503769 0.0140179 0.00511923 0.0134255 0.00520502 0.0128299 0.00529553 0.0122308 0.00539122 0.0116285 0.00549258 0.0110231 0.00560015 0.0104146 0.00571453 0.00980347 0.0058363 0.00919001 0.0059661 0.00857476 0.00610451 0.00795844 0.0062521 0.00734195 0.00640933 0.00672647 0.00657653 0.00611345 0.00675378 0.00550474 0.00694086 0.0049026 0.00713714 0.00430978 0.00734138 0.00372964 0.00755163 0.00316623 0.00776498 0.00262435 0.00797735 0.00210974 0.00818321 0.00162915 0.00837528 0.00119048 0.00854414 0.000802925 0.00867786 0.00047709 0.00876149 0.000225145 0.00877657 6.09078e-05 0.00870052 0.00850593 0.0151494 0.00554101 -0.0157305 0.0145651 0.00562197 0.0139776 0.00570678 0.0133867 0.0057959 0.0127925 0.00588976 0.0121949 0.00598878 0.0115941 0.00609342 0.01099 0.00620417 0.010383 0.00632153 0.00977334 0.00644601 0.00916133 0.00657811 0.00854754 0.0067183 0.00793269 0.00686696 0.00731768 0.00702434 0.0067037 0.00719051 0.00609221 0.00736527 0.00548505 0.00754802 0.00488449 0.0077377 0.0042933 0.00793257 0.00371484 0.00813009 0.00315314 0.00832668 0.00261303 0.00851746 0.00210022 0.00869602 0.00162145 0.00885405 0.00118458 0.00898101 0.000798743 0.00906369 0.00047448 0.00908575 0.000223842 0.00902721 6.05192e-05 0.00886385 0.00856645 0.0150917 0.00612018 -0.0156709 0.0145093 0.00620437 0.0139236 0.00629248 0.0133346 0.00638492 0.0127422 0.00648213 0.0121465 0.00658449 0.0115475 0.00669241 0.0109454 0.00680632 0.0103402 0.00692665 0.00973242 0.00705382 0.00912232 0.00718821 0.00851046 0.00733016 0.00789757 0.00747985 0.00728455 0.00763735 0.0066726 0.00780246 0.00606319 0.00797468 0.00545816 0.00815305 0.00485979 0.00833607 0.00427086 0.00852151 0.00369471 0.00870624 0.00313539 0.008886 0.00259771 0.00905514 0.00208737 0.00920636 0.00161106 0.00933035 0.00117662 0.00941545 0.000793104 0.00944721 0.000470943 0.00940791 0.000222062 0.00927609 5.99879e-05 0.00902592 0.00862644 0.0150197 0.00669711 -0.0155966 0.0144395 0.00678454 0.013856 0.00687593 0.0132693 0.0069717 0.0126791 0.00707226 0.0120857 0.00717795 0.0114889 0.00728914 0.0108891 0.0074062 0.0102862 0.00752947 0.00968076 0.00765931 0.00907302 0.00779596 0.00846356 0.00793961 0.00785311 0.0080903 0.00724259 0.00824787 0.0066332 0.00841186 0.00602642 0.00858146 0.0054241 0.00875537 0.00482852 0.00893165 0.00424245 0.00910758 0.00366926 0.00927943 0.00311297 0.00944228 0.00257839 0.00958972 0.00207118 0.00971356 0.00159801 0.00980352 0.00116664 0.00984683 0.000786038 0.00982781 0.000466517 0.00972743 0.000219842 0.00952276 5.93333e-05 0.00918643 0.00868577 0.0149334 0.00727143 -0.0155077 0.0143559 0.0073621 0.013775 0.00745678 0.0131908 0.00755587 0.0126033 0.00765977 0.0120125 0.00776878 0.0114184 0.00788322 0.0108212 0.00800339 0.0102211 0.00812958 0.00961838 0.00826204 0.00901344 0.0084009 0.00840685 0.00854621 0.00779933 0.00869783 0.00719182 0.00885538 0.00658551 0.00901816 0.00598191 0.00918506 0.00538287 0.00935441 0.00479067 0.00952385 0.0042081 0.00969015 0.0036385 0.00984903 0.0030859 0.00999488 0.00255509 0.0101205 0.00205169 0.010217 0.00158232 0.0102729 0.00115466 0.0102745 0.000777571 0.0102049 0.000461228 0.0100438 0.000217201 0.00976679 5.8563e-05 0.00934507 0.00874434 0.0148331 0.0078428 -0.0154044 0.0142585 0.00793671 0.0136806 0.00803467 0.0130994 0.00813708 0.0125148 0.0082443 0.011927 0.0083566 0.011336 0.00847425 0.0107419 0.00859751 0.0101449 0.00872657 0.00954533 0.00886158 0.00894364 0.00900259 0.00834037 0.00914948 0.00773626 0.00930194 0.00713225 0.00945938 0.00652956 0.00962085 0.00592969 0.00978493 0.0053345 0.0099496 0.00474628 0.0101121 0.00416782 0.0102686 0.00360246 0.0104144 0.00305421 0.0105431 0.00252783 0.0106469 0.00202892 0.0107159 0.00156401 0.0107378 0.0011407 0.0106978 0.000767726 0.0105779 0.000455094 0.0103564 0.00021415 0.0100077 5.76802e-05 0.00950154 0.00880202 0.0147188 0.00841087 -0.0152868 0.0141475 0.00850803 0.0135729 0.00860927 0.012995 0.00871497 0.0124138 0.00882549 0.0118293 0.00894105 0.0112417 0.00906188 0.0106511 0.00918816 0.0100576 0.00932003 0.00946165 0.00945753 0.00886364 0.0096006 0.00826415 0.00974897 0.00766392 0.00990216 0.00706392 0.0100594 0.00646537 0.0102194 0.00586977 0.0103805 0.00527901 0.0105404 0.00469537 0.0106957 0.00412164 0.0108423 0.00356116 0.0109749 0.00301792 0.0110864 0.00249665 0.0111682 0.00200288 0.0112096 0.0015431 0.0111976 0.00112478 0.0111161 0.000756521 0.0109461 0.000448128 0.0106648 0.000210696 0.0102452 5.66863e-05 0.00965555 0.0088587 0.0145907 0.00897534 -0.0151551 0.014023 0.00907574 0.013452 0.00918024 0.0128777 0.00928922 0.0123002 0.009403 0.0117195 0.00952177 0.0111357 0.00964572 0.0105488 0.00977497 0.00995931 0.00990956 0.00936737 0.0100495 0.00877348 0.0101945 0.00817822 0.0103442 0.00758235 0.010498 0.00698686 0.0106549 0.00639296 0.0108133 0.00580219 0.0109713 0.00521642 0.0111261 0.00463796 0.0112742 0.00406958 0.0114107 0.00351463 0.0115298 0.00297706 0.0116239 0.00246156 0.0116837 0.00197362 0.0116976 0.00151962 0.0116516 0.00110693 0.0115288 0.000743973 0.0113091 0.000440342 0.0109684 0.000206846 0.0104787 5.55825e-05 0.00980681 0.00891429 0.0144489 0.00953592 -0.0150095 0.0138851 0.00963954 0.013318 0.00974728 0.0127478 0.0098595 0.0121743 0.0099765 0.0115976 0.0100984 0.0110179 0.0102254 0.0104353 0.0103576 0.00985006 0.0104948 0.00926254 0.010637 0.00867319 0.0107838 0.00808261 0.0109348 0.00749158 0.0110891 0.00690108 0.0112454 0.00631236 0.011402 0.00572696 0.0115567 0.00514677 0.0117063 0.00457408 0.0118468 0.00401168 0.0119731 0.00346289 0.0120786 0.00293165 0.0121552 0.00242259 0.0121927 0.00194115 0.012179 0.0014936 0.0120991 0.00108716 0.0119352 0.000730101 0.0116661 0.000431749 0.0112668 0.000202605 0.0107078 5.43705e-05 0.00995505 0.00896866 0.0142936 0.0100923 -0.01485 0.013734 0.0101992 0.0131712 0.0103101 0.0126051 0.0104255 0.012036 0.0105457 0.0114637 0.0106707 0.0108884 0.0108007 0.0103104 0.0109356 0.00972988 0.0110753 0.00914719 0.0112197 0.0085628 0.0113682 0.00797735 0.0115203 0.00739162 0.0116748 0.00680662 0.0118304 0.00622361 0.011985 0.00564413 0.0121362 0.00507008 0.0122804 0.00450377 0.0124132 0.00394797 0.0125289 0.00340599 0.0126206 0.00288173 0.0126794 0.00237979 0.0126947 0.0019055 0.0126533 0.00146505 0.0125396 0.00106551 0.0123348 0.000714923 0.0120167 0.00042236 0.0115593 0.00019798 0.0109322 5.30516e-05 0.0101 0.00902171 0.0141249 0.0106443 -0.0146769 0.0135698 0.0107543 0.0130114 0.0108684 0.0124499 0.010987 0.0118854 0.0111103 0.0113178 0.0112383 0.0107474 0.0113711 0.0101743 0.0115087 0.00959881 0.0116508 0.00902133 0.0117972 0.00844233 0.0119472 0.00786245 0.0121001 0.0072825 0.0122547 0.0067035 0.0124094 0.00612672 0.0125618 0.00555371 0.0127092 0.00498639 0.0128477 0.00442706 0.0129725 0.00387849 0.0130775 0.00334396 0.0131551 0.00282734 0.013196 0.00233318 0.0131889 0.00186672 0.0131198 0.00143403 0.0129723 0.001042 0.0127268 0.000698458 0.0123603 0.000412189 0.0118456 0.000192977 0.0111514 5.16279e-05 0.0102413 0.00907334 0.013943 0.0111917 -0.0144904 0.0133925 0.0113048 0.0128389 0.0114221 0.0122822 0.0115437 0.0117226 0.0116699 0.01116 0.0118009 0.0105947 0.0119364 0.0100269 0.0120765 0.00945684 0.0122208 0.00888497 0.012369 0.00831179 0.0125204 0.00773794 0.012674 0.00716424 0.0128284 0.00659174 0.0129819 0.00602172 0.0131319 0.00545574 0.0132752 0.00489573 0.0134077 0.00434398 0.0135242 0.00380326 0.0136182 0.00327683 0.0136816 0.00276853 0.0137044 0.00228281 0.0136746 0.00182484 0.0135777 0.00140055 0.0133966 0.00101665 0.0131107 0.000680728 0.0126962 0.000401249 0.0121251 0.000187603 0.011365 5.01016e-05 0.0103788 0.00912344 0.0137479 0.0117342 -0.0142905 0.0132023 0.0118505 0.0126536 0.0119707 0.012102 0.0120953 0.0115475 0.0122244 0.0109902 0.0123581 0.0104304 0.0124963 0.00986819 0.0126387 0.00930396 0.0127851 0.00873812 0.0129349 0.00817117 0.0130874 0.0076038 0.0132414 0.00703684 0.0133954 0.00647135 0.0135474 0.00590862 0.0136946 0.00535024 0.0138336 0.00479813 0.0139598 0.00425458 0.0140678 0.00372235 0.0141504 0.00320467 0.0141992 0.00270533 0.0142037 0.00222872 0.0141512 0.00177991 0.0140265 0.00136466 0.0138118 0.000989503 0.0134859 0.000661757 0.0130239 0.000389558 0.0123973 0.000181867 0.0115727 4.8475e-05 0.0105122 0.00917191 0.0135397 0.0122718 -0.0140772 0.0129991 0.012391 0.0124556 0.0125142 0.0119092 0.0126417 0.0113602 0.0127735 0.0108085 0.0129098 0.0102544 0.0130503 0.00969819 0.0131949 0.00914015 0.0133431 0.00858073 0.0134943 0.00802046 0.0136476 0.00746004 0.0138018 0.00690031 0.0139551 0.00634235 0.0141053 0.00578746 0.0142495 0.00523725 0.0143838 0.00469362 0.0145034 0.00415889 0.0146025 0.00363579 0.0146736 0.00312751 0.0147075 0.00263779 0.0146934 0.00217096 0.014618 0.00173196 0.0144655 0.0013264 0.0142174 0.000960587 0.0138517 0.000641572 0.013343 0.000377131 0.0126617 0.000175779 0.0117741 4.6751e-05 0.0106412 0.00921866 0.0133182 0.0128042 -0.0138506 0.0127828 0.0129264 0.0122447 0.0130524 0.0117039 0.0131825 0.0111605 0.0133169 0.0106147 0.0134556 0.0100667 0.0135983 0.00951679 0.0137448 0.00896534 0.0138945 0.00841276 0.0140469 0.00785962 0.0142008 0.00730662 0.0143548 0.00675464 0.0145071 0.00620474 0.0146552 0.00565826 0.0147959 0.00511679 0.0149252 0.00458226 0.015038 0.00405698 0.0151278 0.00354363 0.0151869 0.00304541 0.0152057 0.00256599 0.0151728 0.0021096 0.0150744 0.00168106 0.0148941 0.00128581 0.0146126 0.000929943 0.0142075 0.000620203 0.0136527 0.00036399 0.012918 0.000169347 0.0119687 4.49325e-05 0.0107657 0.0092636 0.0130833 0.0133314 -0.0136106 0.0125534 0.0134564 0.0120208 0.013585 0.0114857 0.0137176 0.0109482 0.0138544 0.0104086 0.0139952 0.00986705 0.0141398 0.00932388 0.014288 0.00877942 0.014439 0.00823414 0.0145922 0.0076886 0.0147463 0.00714353 0.0148999 0.00659981 0.0150508 0.00605853 0.0151965 0.00552103 0.0153335 0.00498891 0.0154574 0.00446409 0.0155628 0.00394888 0.015643 0.00344595 0.0156898 0.00295845 0.0156932 0.00248998 0.0156413 0.00204469 0.0155197 0.00162726 0.0153115 0.00124295 0.0149969 0.000897616 0.0145529 0.000597682 0.0139526 0.000350155 0.0131655 0.000162584 0.0121563 4.3023e-05 0.0108852 0.00930662 0.0128348 0.0138533 -0.0133567 0.0123104 0.0139808 0.0117835 0.0141118 0.0112544 0.0142467 0.0107231 0.0143856 0.0101901 0.0145283 0.00965534 0.0146746 0.00911929 0.014824 0.00858227 0.014976 0.00804476 0.0151297 0.00750734 0.0152837 0.00697073 0.0154365 0.00643583 0.0155857 0.00590374 0.0157286 0.00537581 0.0158614 0.00485364 0.0159795 0.00433917 0.0160772 0.00383468 0.0161475 0.00334282 0.0161817 0.00286669 0.0161694 0.00240984 0.0160982 0.00197631 0.0159532 0.00157063 0.0157172 0.00119788 0.0153697 0.000863655 0.0148871 0.000574048 0.0142422 0.000335652 0.0134039 0.000155502 0.0123365 4.10261e-05 0.0109997 0.00934764 0.0125721 0.0143697 -0.0130886 0.0120534 0.0144996 0.0115324 0.0146328 0.0110096 0.0147696 0.0104849 0.0149102 0.00995876 0.0150545 0.00943128 0.015202 0.00890282 0.0153525 0.00837374 0.0155051 0.00784453 0.0156589 0.00731576 0.0158125 0.00678818 0.0159641 0.00626268 0.0161112 0.00574038 0.0162509 0.00522264 0.0163791 0.00471106 0.0164911 0.00420757 0.0165807 0.00371445 0.0166406 0.00323432 0.0166618 0.00277024 0.0166335 0.00232567 0.0165427 0.00190454 0.0163744 0.00151126 0.0161105 0.00115067 0.0157303 0.000828116 0.0152097 0.000549342 0.014521 0.000320508 0.0136327 0.000148116 0.0125088 3.89458e-05 0.0111089 0.00938659 0.0122945 0.0148806 -0.0128054 0.0117817 0.0150125 0.011267 0.0151474 0.0107508 0.0152859 0.0102331 0.0154279 0.00971428 0.0155733 0.00919456 0.0157218 0.00867422 0.0158728 0.00815366 0.0160257 0.00763332 0.0161792 0.00711381 0.016332 0.00659586 0.016482 0.00608039 0.0166267 0.00556851 0.0167628 0.00506158 0.0168861 0.00456124 0.0169914 0.00406939 0.0170726 0.00358829 0.0171217 0.00312056 0.0171295 0.00266918 0.0170848 0.00223755 0.0169743 0.00182949 0.0167824 0.00144922 0.0164907 0.0011014 0.0160781 0.000791066 0.01552 0.000523614 0.0147885 0.000304756 0.0138516 0.000140442 0.0126732 3.67867e-05 0.0112125 0.00942338 0.0120011 0.0153856 -0.0125061 0.0114944 0.0155191 0.0109864 0.0156555 0.0104772 0.0157951 0.00996705 0.015938 0.00945618 0.0160842 0.00894483 0.0162331 0.00843326 0.0163844 0.00792185 0.0165371 0.00741105 0.01669 0.00690145 0.0168416 0.0063938 0.0169897 0.005889 0.0171315 0.00538819 0.0172636 0.00489275 0.0173815 0.00440429 0.0174799 0.00392474 0.0175521 0.00345634 0.0175901 0.00300166 0.0175842 0.00256365 0.0175228 0.00214562 0.0173924 0.00175126 0.0171768 0.00138463 0.0168574 0.00105016 0.0164126 0.000752577 0.0158176 0.000496922 0.0150441 0.000288434 0.0140601 0.0001325 0.0128291 3.45544e-05 0.0113105 0.00945793 0.0116903 0.0158843 -0.0121891 0.0111904 0.0160191 0.0106895 0.0161563 0.0101881 0.0162965 0.00968614 0.0164399 0.00918397 0.0165863 0.00868175 0.0167353 0.00817972 0.0168864 0.00767822 0.0170386 0.0071777 0.0171905 0.00667873 0.0173406 0.00618206 0.0174863 0.00568862 0.0176249 0.00519956 0.0177526 0.00471626 0.0178648 0.00424036 0.0179558 0.00377377 0.0180187 0.00331873 0.0180452 0.00287778 0.0180252 0.0024538 0.0179468 0.00205001 0.0177962 0.00166999 0.0175568 0.0013176 0.0172098 0.000997039 0.0167331 0.000712738 0.0161019 0.000469333 0.0152875 0.00027159 0.0142578 0.000124315 0.0129764 3.22556e-05 0.0114025 0.00949019 0.0113607 0.0163763 -0.0118526 0.0108681 0.0165117 0.0103753 0.0166491 0.00988243 0.0167894 0.00938972 0.0169326 0.00889724 0.0170788 0.00840511 0.0172275 0.00791353 0.017378 0.00742281 0.0175293 0.00693336 0.01768 0.00644578 0.0178281 0.00596083 0.0179713 0.00547945 0.0181063 0.00500282 0.0182293 0.00453233 0.0183353 0.00406964 0.0184185 0.00361668 0.0184717 0.00317565 0.0184862 0.00274907 0.0184517 0.00233977 0.0183561 0.00195087 0.0181851 0.00158581 0.0179219 0.00124826 0.0175473 0.000942168 0.0170392 0.000671648 0.0163724 0.000440931 0.0155182 0.000254284 0.0144444 0.000115922 0.0131147 2.99017e-05 0.0114885 0.00952009 0.01101 0.0168604 -0.0114941 0.0105259 0.0169957 0.0100424 0.0171326 0.00955958 0.0172722 0.00907743 0.0174148 0.0085959 0.0175603 0.00811502 0.0177084 0.00763492 0.0178581 0.0071559 0.0180083 0.00667837 0.0181575 0.00620294 0.0183036 0.00573042 0.0184438 0.00526179 0.0185749 0.00479824 0.0186928 0.00434122 0.0187923 0.00389239 0.0188673 0.00345368 0.0189104 0.00302731 0.0189126 0.00261576 0.0188633 0.00222177 0.0187501 0.00184838 0.0185584 0.00149888 0.0182714 0.00117675 0.0178694 0.000885677 0.0173303 0.000629428 0.0166287 0.000411818 0.0157359 0.000236599 0.0146197 0.000107378 0.013244 2.75136e-05 0.0115684 0.0095476 0.0106363 0.0173351 -0.011111 0.0101626 0.0174695 0.00969037 0.0176048 0.00921952 0.017743 0.00874968 0.0178847 0.0082806 0.0180294 0.00781223 0.0181767 0.00734466 0.0183256 0.00687822 0.0184748 0.00641337 0.0186224 0.0059508 0.0187661 0.00549135 0.0189033 0.00503607 0.0190302 0.00458621 0.0191427 0.00414325 0.0192353 0.00370889 0.0193017 0.00328506 0.0193342 0.00287396 0.0193237 0.00247804 0.0192592 0.00209999 0.0191282 0.00174273 0.0189157 0.00140938 0.0186047 0.00110324 0.0181756 0.000827713 0.0176058 0.000586215 0.0168702 0.000382123 0.0159399 0.000218652 0.0147831 9.87729e-05 0.0133638 2.51359e-05 0.011642 0.00957274 0.0102385 0.0177979 -0.0107013 0.00977835 0.0179296 0.00932068 0.0180625 0.00886437 0.0181994 0.00840874 0.0183403 0.00795351 0.0184846 0.00749865 0.0186316 0.00704437 0.0187799 0.0065911 0.018928 0.00613946 0.019074 0.00569021 0.0192154 0.0052443 0.0193492 0.00480286 0.0194717 0.0043672 0.0195783 0.00393884 0.0196636 0.00351949 0.019721 0.00311111 0.0197426 0.00271587 0.0197189 0.00233618 0.0196389 0.00197465 0.0194897 0.0016341 0.0192563 0.00131749 0.0189213 0.0010279 0.0184652 0.000768434 0.0178653 0.000542163 0.0170964 0.000352002 0.0161301 0.000200608 0.0149345 9.02686e-05 0.0134742 2.28711e-05 0.0117094 0.00959561 0.00982025 0.0182471 -0.0102694 0.00937943 0.0183704 0.0089403 0.0185016 0.00850065 0.018639 0.00806019 0.0187807 0.0076191 0.0189257 0.00717773 0.019073 0.00673664 0.019221 0.00629649 0.0193682 0.00585807 0.0195124 0.00542227 0.0196512 0.00499013 0.0197813 0.00456283 0.019899 0.00414174 0.0199994 0.0037284 0.020077 0.00332455 0.0201249 0.00293213 0.020135 0.0025533 0.0200977 0.00219041 0.0200018 0.00184598 0.0198341 0.00152271 0.0195795 0.0012234 0.0192206 0.000950884 0.0187377 0.000707996 0.0181082 0.00049743 0.017307 0.000321639 0.0163059 0.000182702 0.0150735 8.21772e-05 0.0135747 2.10083e-05 0.0117706 0.00961662 0.00941994 -0.00984865 0.00899839 0.008573 0.00814475 0.00771509 0.00728476 0.00685442 0.00642479 0.00599664 0.00557077 0.00514809 0.00472964 0.0043166 0.00391033 0.00351236 0.00312443 0.00274846 0.00238654 0.00204098 0.0017142 0.00140876 0.00112728 0.000872368 0.000646555 0.000452168 0.000291213 0.000165222 7.50618e-05 2.04847e-05 0.0087505 -0.0130195 0.0135037 -0.00923468 0.00829195 -0.0129974 0.013456 0.00784447 -0.0129668 0.0134142 0.00740374 -0.0129289 0.0133697 0.00696861 -0.0128829 0.013318 0.00653868 -0.0128264 0.0132563 0.00611406 -0.012757 0.0131816 0.00569517 -0.0126718 0.0130907 0.00528258 -0.0125673 0.0129798 0.00487703 -0.0124395 0.0128451 0.00447935 -0.0122842 0.0126819 0.00409049 -0.0120964 0.0124852 0.00371148 -0.0118704 0.0122494 0.00334347 -0.0116 0.011968 0.00298767 -0.0112783 0.0116341 0.00264535 -0.0108976 0.0112399 0.00231785 -0.0104494 0.0107769 0.00200652 -0.0099246 0.0102359 0.00171273 -0.00931302 0.00960681 0.00143783 -0.00860379 0.0088787 0.00118313 -0.0077852 0.0080399 0.000949909 -0.00684464 0.00707786 0.00073937 -0.00576862 0.00597916 0.000552652 -0.00454268 0.0047294 0.000390844 -0.00315134 0.00331315 0.000255018 -0.00157792 0.00171375 0.000146299 0.00019565 -8.69321e-05 6.6027e-05 0.00218912 -0.00210885 1.62064e-05 0.00442415 -0.00437433 0.00692516 -0.00690895 0.00915801 -0.0125388 -0.00963873 0.00869064 -0.0125301 0.00823235 -0.0125085 0.00778073 -0.0124773 0.00733454 -0.0124367 0.00689329 -0.0123851 0.00645693 -0.0123207 0.00602572 -0.0122406 0.00560017 -0.0121417 0.00518096 -0.0120203 0.00476891 -0.0118722 0.00436497 -0.0116924 0.0039702 -0.0114756 0.00358576 -0.0112155 0.00321292 -0.0109054 0.00285299 -0.0105377 0.00250739 -0.0101038 0.00217756 -0.00959477 0.00186499 -0.00900045 0.00157119 -0.00830999 0.00129765 -0.00751167 0.00104589 -0.00659287 0.000817363 -0.00554009 0.000613545 -0.00433886 0.000435897 -0.00297369 0.00028593 -0.00142795 0.000165277 0.000316303 7.5822e-05 0.00227858 1.98545e-05 0.00448012 0.00694501 0.00957026 -0.0120582 -0.0100509 0.00909393 -0.0120537 0.00862369 -0.0120382 0.00815924 -0.0120129 0.00770005 -0.0119775 0.00724577 -0.0119309 0.0067963 -0.0118712 0.00635181 -0.0117961 0.00591267 -0.0117026 0.00547947 -0.0115871 0.00505296 -0.0114457 0.00463403 -0.0112735 0.00422373 -0.0110653 0.00382319 -0.010815 0.0034337 -0.0105159 0.00305661 -0.0101606 0.00269337 -0.0097406 0.00234552 -0.00924692 0.00201465 -0.00866958 0.00170241 -0.00799774 0.00141046 -0.00721972 0.00114054 -0.00632295 0.000894367 -0.00529392 0.00067372 -0.00411821 0.000480426 -0.0027804 0.000316409 -0.00126394 0.000183767 0.000448945 8.48727e-05 0.00237747 2.24929e-05 0.0045425 0.00696751 0.00996442 -0.0115739 -0.0104487 0.00948173 -0.0115711 0.00900258 -0.0115591 0.00852755 -0.0115378 0.00805676 -0.0115067 0.00759026 -0.0114644 0.00712814 -0.0114091 0.00667063 -0.0113386 0.00621812 -0.0112501 0.00577116 -0.0111402 0.00533046 -0.011005 0.00489688 -0.0108399 0.00447142 -0.0106398 0.00405522 -0.0103988 0.00364954 -0.0101103 0.00325578 -0.0097668 0.00287542 -0.00936024 0.00251006 -0.00888157 0.00216139 -0.00832091 0.00183119 -0.00766754 0.00152129 -0.00690983 0.00123362 -0.00603528 0.000970167 -0.00503047 0.000732999 -0.00388105 0.000524296 -0.00257169 0.00034639 -0.00108603 0.000201841 0.000593494 9.35409e-05 0.00248577 2.48699e-05 0.00461117 0.00699238 0.0103399 -0.0110853 -0.0108285 0.00985173 -0.0110829 0.00936535 -0.0110727 0.00888154 -0.011054 0.00840077 -0.0110259 0.00792336 -0.010987 0.00744964 -0.0109354 0.00697996 -0.0108689 0.00651478 -0.0107849 0.00605467 -0.0106801 0.00560035 -0.0105506 0.00515265 -0.0103922 0.00471257 -0.0101998 0.00428125 -0.00996749 0.00385994 -0.00968896 0.00345006 -0.00935692 0.00305313 -0.00896331 0.00267081 -0.00849925 0.00230489 -0.00795498 0.00195724 -0.00731989 0.00162988 -0.00658247 0.00132492 -0.00573031 0.00104458 -0.00475013 0.000791239 -0.0036277 0.000567414 -0.00234787 0.000375844 -0.000894463 0.000219557 0.000749781 0.00010199 0.00260334 2.71626e-05 0.004686 0.00701954 0.0106979 -0.0105921 -0.0111911 0.0102044 -0.0105894 0.00971159 -0.0105799 0.00922011 -0.0105626 0.00873057 -0.0105364 0.00824347 -0.0104999 0.00775926 -0.0104511 0.0072784 -0.010388 0.00680142 -0.0103079 0.00632896 -0.0102076 0.00586173 -0.0100834 0.0054006 -0.00993109 0.00494656 -0.00974571 0.00450074 -0.00952167 0.00406442 -0.00925265 0.00363903 -0.00893153 0.00322614 -0.00855042 0.00282746 -0.00810057 0.00244484 -0.00757237 0.00208031 -0.00695535 0.001736 -0.00623816 0.00141422 -0.00540854 0.00111744 -0.00445335 0.000848312 -0.00335857 0.000609696 -0.00210925 0.000404736 -0.000689503 0.000236933 0.000917584 0.000110272 0.00273 2.94132e-05 0.00476686 0.00704895 0.0110398 -0.0100942 -0.0115377 0.010541 -0.0100906 0.010042 -0.0100809 0.00954348 -0.010064 0.00904603 -0.0100389 0.00855015 -0.010004 0.00805638 -0.00995738 0.00756525 -0.00989692 0.00707735 -0.00982001 0.00659334 -0.00972358 0.00611398 -0.00960405 0.00564015 -0.00945726 0.00517285 -0.00927841 0.00471322 -0.00906205 0.00426257 -0.00880199 0.00382232 -0.00849129 0.0033941 -0.0081222 0.00297967 -0.00768614 0.00258097 -0.00717367 0.00220012 -0.00657451 0.00183942 -0.00587745 0.00150134 -0.00507046 0.00118859 -0.0041406 0.000904095 -0.00307408 0.000651058 -0.00185622 0.000433023 -0.000471467 0.000253958 0.00109665 0.000118397 0.00286556 3.16306e-05 0.00485362 0.00708058 0.0113667 -0.00959128 -0.0118696 0.0108625 -0.00958641 0.0103575 -0.00957592 0.00985235 -0.00955888 0.00934751 -0.00953408 0.00884352 -0.0095 0.00834093 -0.00945479 0.0078403 -0.00939629 0.00734225 -0.00932196 0.00684747 -0.0092288 0.00635673 -0.00911332 0.00587093 -0.00897146 0.00539108 -0.00879856 0.00491834 -0.00858931 0.00445402 -0.00833767 0.00399959 -0.00803686 0.0035567 -0.0076793 0.00312717 -0.0072566 0.00271301 -0.00675952 0.00231645 -0.00617795 0.00193993 -0.00550093 0.00158609 -0.00471663 0.00125787 -0.00381238 0.000958469 -0.00277467 0.000691415 -0.00158916 0.000460648 -0.0002407 0.000270603 0.00128669 0.000126355 0.00300981 3.38114e-05 0.00494617 0.00711439 0.0116796 -0.00908323 -0.0121876 0.0111699 -0.00907671 0.010659 -0.00906503 0.0101474 -0.00904727 0.00963554 -0.00902223 0.00912392 -0.00898839 0.00861309 -0.00894395 0.00810359 -0.00888679 0.00759605 -0.00881442 0.00709118 -0.00872392 0.00658975 -0.00861189 0.00609268 -0.00847438 0.00560098 -0.00830686 0.00511582 -0.00810415 0.00463852 -0.00786037 0.00417059 -0.00756892 0.00371369 -0.0072224 0.00326971 -0.00681262 0.00284074 -0.00633054 0.00242909 -0.0057663 0.00203734 -0.00510917 0.00166831 -0.00434761 0.00132515 -0.00346922 0.00101132 -0.00246084 0.00073068 -0.00130852 0.000487553 2.42708e-06 0.000286834 0.00148741 0.000134127 0.00316252 3.59477e-05 0.00504435 0.00715034 0.0119791 -0.00856992 -0.0124924 0.0114639 -0.00856149 0.0109471 -0.00854828 0.0104292 -0.00852938 0.00991061 -0.00850361 0.00939174 -0.00846951 0.0088731 -0.00842531 0.00835525 -0.00836894 0.0078388 -0.00829797 0.00732445 -0.00820957 0.00681297 -0.00810042 0.00630527 -0.00796669 0.00580238 -0.00780397 0.00530547 -0.00760724 0.00481587 -0.00737077 0.00433509 -0.00708815 0.00386486 -0.00675217 0.00340709 -0.00635485 0.00296395 -0.0058874 0.00253784 -0.0053402 0.00213148 -0.00470281 0.00174785 -0.00396397 0.00139029 -0.00311166 0.00106254 -0.00213309 0.000768769 -0.00101475 0.000513679 0.000257517 0.000302611 0.00169848 0.000141692 0.00332344 3.80313e-05 0.00514801 0.00718837 0.0122657 -0.00805128 -0.0127843 0.0117449 -0.00804073 0.0112223 -0.00802571 0.0106983 -0.00800533 0.0101731 -0.00797847 0.00964731 -0.00794367 0.00912125 -0.00789925 0.00859548 -0.00784318 0.00807061 -0.0077731 0.00754731 -0.00768627 0.00702636 -0.00757946 0.00650864 -0.00744897 0.00599518 -0.00729051 0.00548715 -0.00709921 0.00498589 -0.00686951 0.00449294 -0.00659519 0.00401002 -0.00626926 0.00353912 -0.00588395 0.00308247 -0.00543074 0.00264255 -0.00490029 0.0022222 -0.00428245 0.00182456 -0.00356634 0.00145317 -0.00274028 0.00111203 -0.00179194 0.000805603 -0.000708322 0.000538967 0.000524153 0.000317897 0.00191955 0.00014903 0.0034923 4.0055e-05 0.00525698 0.00722843 0.0125396 -0.00752727 -0.0130636 0.0120133 -0.00751443 0.011485 -0.00749739 0.0109549 -0.00747526 0.0104234 -0.00744697 0.0098909 -0.00741113 0.00935774 -0.00736609 0.00882445 -0.00730989 0.0082916 -0.00724025 0.00775984 -0.00715451 0.00722994 -0.00704956 0.00670276 -0.00692179 0.00617931 -0.00676707 0.00566078 -0.00658067 0.00514849 -0.00635723 0.00464399 -0.0060907 0.00414905 -0.00577431 0.00366567 -0.00540058 0.00319615 -0.00496122 0.00274306 -0.0044472 0.00230935 -0.00384874 0.00189831 -0.0031553 0.00151369 -0.00235566 0.00115969 -0.00143795 0.000841108 -0.000389737 0.000563362 0.000801899 0.000332656 0.00215026 0.00015612 0.00366884 4.20124e-05 0.00537109 0.00727044 0.0128011 -0.00699792 -0.0133304 0.0122693 -0.00698266 0.0117353 -0.0069634 0.0111993 -0.00693931 0.0106617 -0.00690933 0.0101227 -0.00687214 0.00958275 -0.00682613 0.00904229 -0.00676943 0.00850186 -0.00669983 0.0079621 -0.00661475 0.00742373 -0.00651119 0.00688761 -0.00638567 0.00635474 -0.0062342 0.00582628 -0.0060522 0.00530357 -0.00583451 0.00478815 -0.00557528 0.00428182 -0.00526798 0.00378661 -0.00490537 0.00330486 -0.00447948 0.00283926 -0.00398159 0.00239282 -0.0034023 0.001969 -0.00273148 0.00157173 -0.00195838 0.00120544 -0.00107166 0.000875213 -5.95068e-05 0.000586812 0.0010903 0.000346852 0.00239022 0.000162944 0.00385275 4.38978e-05 0.00549014 0.00731434 0.01305 -0.00646328 -0.0135847 0.0125129 -0.00644548 0.0119733 -0.00642387 0.0114317 -0.00639762 0.0108881 -0.00636574 0.0103429 -0.00632693 0.00979639 -0.00627967 0.0092491 -0.00622213 0.00870147 -0.00615221 0.00815413 -0.0060674 0.00760776 -0.00596482 0.0070632 -0.00584111 0.00652144 -0.00569243 0.00598361 -0.00551438 0.00545106 -0.00530196 0.00492533 -0.00504955 0.00440822 -0.00475088 0.00390182 -0.00439897 0.00340851 -0.00398616 0.00293102 -0.00350411 0.0024725 -0.00294378 0.00203653 -0.00229551 0.00162721 -0.00154906 0.0012492 -0.00069366 0.000907856 0.000281842 0.00060927 0.00138889 0.000360456 0.00263903 0.000169487 0.00404372 4.57061e-05 0.00561392 0.00736004 0.0132865 -0.00592346 -0.0138263 0.012744 -0.00590304 0.0121991 -0.00587895 0.0116519 -0.00585039 0.0111026 -0.00581641 0.0105514 -0.00577577 0.00999872 -0.00572699 0.00944492 -0.00566833 0.00889048 -0.00559776 0.00833595 -0.00551287 0.00778203 -0.00541089 0.00722952 -0.0052886 0.00667937 -0.00514229 0.00613272 -0.00496773 0.0055909 -0.00476013 0.00505545 -0.0045141 0.00452819 -0.00422362 0.00401122 -0.00388199 0.00350697 -0.00348191 0.00301825 -0.00301539 0.00254829 -0.00247382 0.0021008 -0.00184803 0.00168004 -0.0011283 0.0012909 -0.00030452 0.000938978 0.000633767 0.000630694 0.00169717 0.000373439 0.00289628 0.000175734 0.00424142 4.7433e-05 0.00574222 0.00740748 0.0135103 -0.00537861 -0.0140552 0.0129628 -0.00535548 0.0124126 -0.00532881 0.01186 -0.00529782 0.0113052 -0.00526158 0.0107484 -0.00521891 0.0101898 -0.00516839 0.00962979 -0.00510836 0.00906889 -0.00503685 0.00850759 -0.00495157 0.00794655 -0.00484985 0.00738654 -0.0047286 0.00682852 -0.00458426 0.00627358 -0.00441279 0.00572304 -0.0042096 0.00517846 -0.00396952 0.00464164 -0.0036868 0.00411473 -0.00335508 0.00360018 -0.00296736 0.00310086 -0.00251607 0.0026201 -0.00199306 0.00216173 -0.00138965 0.00173016 -0.000696732 0.00133048 9.51638e-05 0.000968527 0.000995716 0.000651042 0.00201465 0.000385775 0.00316155 0.000181671 0.00444553 4.90744e-05 0.00587481 0.00745655 0.0137213 -0.0048289 -0.0142711 0.0131689 -0.00480301 0.0126137 -0.00477368 0.0120561 -0.00474014 0.011496 -0.0047015 0.0109337 -0.00465664 0.0103695 -0.00460419 0.0098037 -0.00454256 0.0092367 -0.00446986 0.00866902 -0.0043839 0.00810129 -0.00428212 0.00753426 -0.00416156 0.00696884 -0.00401884 0.00640612 -0.00385008 0.00584742 -0.0036509 0.00529428 -0.00341638 0.00474851 -0.00314104 0.00421227 -0.00281883 0.00368805 -0.00244314 0.00317878 -0.0020068 0.00268787 -0.00150215 0.00221925 -0.000921034 0.00177749 -0.000254974 0.00136786 0.00050479 0.000996454 0.00136713 0.00067028 0.00234083 0.00039744 0.00343439 0.000187285 0.00465568 5.06265e-05 0.00601147 0.00750718 0.0139194 -0.00427454 -0.0144738 0.0133623 -0.00424585 0.0128024 -0.00421379 0.0122398 -0.0041776 0.0116748 -0.00413646 0.0111074 -0.00408925 0.0105379 -0.00403469 0.0099666 -0.00397126 0.00939388 -0.00389714 0.00882022 -0.00381024 0.00824623 -0.00370812 0.00767262 -0.00358796 0.0071003 -0.00344652 0.00653033 -0.00328011 0.005964 -0.00308457 0.00540286 -0.00285524 0.00484873 -0.00258691 0.00430377 -0.00227387 0.00377051 -0.00190988 0.00325193 -0.00148823 0.0027515 -0.00100172 0.00227328 -0.000442815 0.00182197 0.00019634 0.00140301 0.000923749 0.00102271 0.00174742 0.000688373 0.00267517 0.000408412 0.00371435 0.000192566 0.00487153 5.2086e-05 0.00615195 0.00755926 0.0141043 -0.00371578 -0.0146631 0.0135427 -0.00368425 0.0129784 -0.0036494 0.0124113 -0.0036105 0.0118415 -0.00356673 0.0112693 -0.00351706 0.0106949 -0.00346024 0.0101184 -0.00339482 0.00954038 -0.00331907 0.00896115 -0.00323101 0.00838132 -0.00312829 0.0078016 -0.00300823 0.00722285 -0.00286777 0.00664613 -0.00270339 0.00607272 -0.00251116 0.00550415 -0.00228666 0.00494224 -0.002025 0.00438917 -0.00172079 0.00384749 -0.00136821 0.00332024 -0.000960974 0.00281095 -0.000492437 0.00232378 4.43599e-05 0.00186355 0.000656573 0.00143587 0.00135142 0.00104727 0.00213602 0.000705293 0.00301715 0.000418672 0.00400097 0.000197503 0.00509269 5.34497e-05 0.00629601 0.00761271 0.0142759 -0.00315283 -0.0148389 0.0137102 -0.00311848 0.0131416 -0.0030808 0.0125702 -0.00303912 0.0119961 -0.00299265 0.0114194 -0.0029404 0.0108404 -0.00288118 0.0102592 -0.00281361 0.00967616 -0.00273606 0.00909176 -0.00264661 0.00850652 -0.00254305 0.00792114 -0.00242285 0.00733645 -0.00228308 0.0067535 -0.00212044 0.00617354 -0.0019312 0.00559809 -0.00171122 0.00502899 -0.00145589 0.00446841 -0.00116021 0.00391894 -0.000818743 0.00338366 -0.000425688 0.00286616 2.50626e-05 0.00237068 0.00053984 0.00190217 0.00112508 0.0014664 0.00178719 0.00107009 0.00253234 0.000721013 0.00336622 0.000428202 0.00429378 0.000202087 0.00531881 5.47149e-05 0.00644338 0.00766743 0.0144339 -0.00258604 -0.0150007 0.0138643 -0.00254887 0.0132918 -0.00250834 0.0127165 -0.00246381 0.0121384 -0.00241455 0.0115576 -0.00235961 0.0109743 -0.00229787 0.0103887 -0.00222801 0.00980113 -0.00214848 0.00921198 -0.00205746 0.00862178 -0.00195286 0.00803119 -0.00183227 0.00744105 -0.00169294 0.00685237 -0.00153175 0.00626639 -0.00134522 0.00568463 -0.00112946 0.00510892 -0.00088018 0.00454144 -0.000592734 0.00398481 -0.000262114 0.00344213 0.000116992 0.00291707 0.000550126 0.00241393 0.00104297 0.00193779 0.00160122 0.00149456 0.00223043 0.00109113 0.00293577 0.000735507 0.00372184 0.000436986 0.00459231 0.000206309 0.00554949 5.58786e-05 0.00659381 0.00772331 0.0145777 -0.00201607 -0.0151477 0.0140048 -0.00197593 0.0134289 -0.00193243 0.01285 -0.00188496 0.0122683 -0.00183281 0.0116837 -0.00177508 0.0110966 -0.0017107 0.010507 -0.00163841 0.00991523 -0.00155674 0.00932175 -0.00146398 0.00872703 -0.00135814 0.00813171 -0.00123695 0.0075366 -0.00109783 0.00694269 -0.000937851 0.00635123 -0.000753762 0.00576372 -0.000541943 0.00518198 -0.000298437 0.0046082 -1.89611e-05 0.00404503 0.000301057 0.0034956 0.000666424 0.00296362 0.0010821 0.00245349 0.0015531 0.00197038 0.00208434 0.00152031 0.00268049 0.00111037 0.00334572 0.000748757 0.00408346 0.00044501 0.00489605 0.000210162 0.00578433 5.69385e-05 0.00674703 0.00778025 0.0147077 -0.00144327 -0.0152805 0.0141318 -0.00139998 0.0135527 -0.00135341 0.0129707 -0.00130291 0.0123857 -0.00124778 0.0117978 -0.00118716 0.0112071 -0.00112003 0.0106139 -0.0010452 0.0100184 -0.000961257 0.00942102 -0.000866592 0.00882222 -0.000759337 0.00822263 -0.000637356 0.00762304 -0.000498231 0.00702443 -0.000339239 0.00642802 -0.000157352 0.0058353 5.07679e-05 0.00524812 0.000288752 0.00466865 0.000560501 0.00409957 0.000870144 0.00354402 0.00122197 0.00300579 0.00162033 0.00248933 0.00206956 0.00199988 0.00257378 0.00154363 0.00313674 0.00112779 0.00376156 0.000760744 0.0044505 0.000452264 0.00520453 0.000213639 0.00602296 5.78924e-05 0.00690278 0.00783814 0.014824 -0.000867607 -0.0153996 0.0142452 -0.00082123 0.0136634 -0.000771564 0.0130785 -0.000717988 0.0124905 -0.000659821 0.0118996 -0.00059624 0.0113058 -0.000526272 0.0107094 -0.000448781 0.0101106 -0.000362446 0.00950973 -0.00026574 0.0089073 -0.000156912 0.00830391 -3.39649e-05 0.00770032 0.000105355 0.00709751 0.000263569 0.00649669 0.000443471 0.00589934 0.000648116 0.00530729 0.000880804 0.00472275 0.00114505 0.00414837 0.00144452 0.00358736 0.00178298 0.00304353 0.00216417 0.00252139 0.0025917 0.00202629 0.00306889 0.00156449 0.00359853 0.00114336 0.0041827 0.000771457 0.0048224 0.00045874 0.00551725 0.000216738 0.00626496 5.87386e-05 0.00706078 0.00789688 0.0149262 -0.000289444 -0.0155043 0.0143449 -0.000239996 0.0137606 -0.00018723 0.0131732 -0.00013055 0.0125826 -6.9298e-05 0.0119891 -2.69041e-06 0.0113926 7.0196e-05 0.0107934 0.000150436 0.0101917 0.000239274 0.00958781 0.000338145 0.00898221 0.000448686 0.00837549 0.000572755 0.00776841 0.000712439 0.00716192 0.000870059 0.00655722 0.00104817 0.00595579 0.00124954 0.00535946 0.00147714 0.00477044 0.00173407 0.0041914 0.00202356 0.00362557 0.00234881 0.0030768 0.00271294 0.00254966 0.00311884 0.00204956 0.00356898 0.00158288 0.00406521 0.00115708 0.00460849 0.00078089 0.00519859 0.000464438 0.0058337 0.00021946 0.00650994 5.9477e-05 0.00722076 0.00795635 0.0150141 0.00029081 -0.0155944 0.0144308 0.000343331 0.0138443 0.000399212 0.0132548 0.000459026 0.0126621 0.000523405 0.0120663 0.000593095 0.0114675 0.000668968 0.0108659 0.000752038 0.0102617 0.000843476 0.00965521 0.000944621 0.0090469 0.001057 0.00843733 0.00118233 0.00782724 0.00132253 0.00721759 0.00147971 0.00660955 0.0016562 0.00600461 0.00185448 0.00540459 0.00207716 0.00481169 0.00232696 0.00422863 0.00260662 0.00365862 0.00291881 0.00310558 0.00326599 0.0025741 0.00365032 0.00206968 0.0040734 0.00159877 0.00453612 0.00116894 0.00503832 0.000789048 0.00557849 0.000469367 0.00615338 0.000221812 0.00675749 6.01117e-05 0.00738246 0.00801647 0.0150876 0.000872747 -0.0156696 0.0145026 0.000928356 0.0139144 0.000987373 0.0133231 0.00105035 0.0127286 0.00111789 0.012131 0.00119071 0.0115303 0.00126963 0.0109268 0.00135561 0.0103205 0.00144973 0.0097119 0.00155324 0.00910133 0.00166756 0.00848939 0.00179427 0.00787679 0.00193512 0.00726449 0.00209202 0.00665366 0.00226704 0.00604576 0.00246237 0.00544263 0.0026803 0.00484648 0.00292312 0.00426001 0.00319309 0.00368649 0.00349233 0.00312983 0.00382265 0.0025947 0.00418545 0.00208664 0.00458147 0.00161217 0.00501059 0.00117895 0.00547153 0.000795945 0.0059615 0.000473552 0.00647578 0.000223824 0.00700722 6.06574e-05 0.00754563 0.00807712 0.0151467 0.00145597 -0.0157299 0.0145603 0.00151468 0.0139709 0.00157686 0.0133782 0.00164302 0.0127823 0.00171377 0.0121833 0.00178976 0.0115811 0.00187178 0.010976 0.00196072 0.0103681 0.00205759 0.00975782 0.00216356 0.00914546 0.00227992 0.00853162 0.00240811 0.00791702 0.00254972 0.00730259 0.00270645 0.0066895 0.00288013 0.00607921 0.00307265 0.00547356 0.00328595 0.00487475 0.00352192 0.00428552 0.00378233 0.00370913 0.00406872 0.00314953 0.00438225 0.00261143 0.00472355 0.00210041 0.00509249 0.00162306 0.00548794 0.00118711 0.00590748 0.00080161 0.006347 0.000477041 0.00680035 0.000225553 0.00725871 6.11557e-05 0.00771003 0.00813828 0.0151911 0.00204006 -0.0157752 0.0146039 0.0021019 0.0140135 0.00216726 0.0134199 0.00223664 0.012823 0.00231062 0.012223 0.00238983 0.0116198 0.00247499 0.0110135 0.00256694 0.0104045 0.00266664 0.00979294 0.00277513 0.00917926 0.0028936 0.008564 0.00302337 0.00794789 0.00316583 0.00733185 0.00332249 0.00671704 0.00349494 0.00610493 0.00368476 0.00549734 0.00389355 0.00489649 0.00412277 0.00430512 0.0043737 0.00372652 0.00464732 0.00316466 0.00494411 0.00262427 0.00526393 0.00211098 0.00560577 0.00163144 0.00596748 0.00119344 0.00634548 0.000806078 0.00673437 0.000479915 0.00712651 0.000227137 0.00751149 6.17428e-05 0.00787542 0.00820002 0.015221 -0.0158056 0.0146333 0.0140424 0.0134482 0.0128508 0.0122501 0.0116463 0.0110394 0.0104296 0.00981723 0.00920269 0.0085865 0.00796939 0.00735225 0.00673626 0.00612289 0.00551394 0.00491167 0.00431879 0.00373863 0.00317518 0.00263319 0.00211833 0.00163729 0.00119792 0.000809376 0.000482277 0.000228847 6.29098e-05 0.0140468 0.00845512 -0.00899825 0.0145133 0.00804813 -0.0085146 0.0149396 0.00757788 -0.00800419 0.0153386 0.0070772 -0.00747622 0.0157154 0.0065585 -0.00693531 0.0160724 0.00602621 -0.00638322 0.0164107 0.00548257 -0.00582086 0.0167307 0.00492898 -0.00524898 0.0170325 0.00436646 -0.00466826 0.017316 0.0037959 -0.0040794 0.017581 0.00321819 -0.00348315 0.0178271 0.00263422 -0.00288032 0.0180539 0.0020449 -0.00227176 0.0182611 0.0014512 -0.00165839 0.0184481 0.000854178 -0.0010412 0.0186148 0.000255014 -0.000421646 0.018761 -0.000345155 0.000198927 0.0188847 -0.000946428 0.000822744 0.018986 -0.00154636 0.001445 0.0190645 -0.00214357 0.00206506 0.0191197 -0.00273673 0.00268162 0.0191508 -0.0033244 0.00329325 0.0191574 -0.00390502 0.0038984 0.019139 -0.00447697 0.00449543 0.0190949 -0.00503856 0.00508261 0.0190248 -0.00558803 0.00565815 0.0189282 -0.00612356 0.00622018 0.0188047 -0.0066433 0.0067668 0.018654 -0.00714538 0.00729605 -0.00762791 0.018476 0.00780596 0.0139514 0.0079597 0.0144206 0.00757891 0.0148564 0.00714214 0.0152631 0.00667045 0.0156453 0.00617628 0.0160057 0.00566583 0.0163457 0.00514254 0.0166662 0.00460855 0.0169673 0.00406532 0.0172492 0.00351402 0.0175117 0.00295571 0.0177545 0.00239138 0.0179774 0.00182204 0.0181798 0.00124873 0.0183615 0.000672496 0.018522 9.44905e-05 0.018661 -0.000484131 0.0187774 -0.00106279 0.0188707 -0.0016397 0.0189406 -0.00221341 0.0189864 -0.00278255 0.0190076 -0.00334565 0.0190038 -0.00390117 0.0189743 -0.00444751 0.0189188 -0.004983 0.0188366 -0.00550592 0.0187276 -0.00601453 0.0185913 -0.00650703 0.0184276 -0.00698162 -0.00743652 0.0182362 0.0138811 0.00749286 0.0143389 0.00712105 0.0147733 0.0067078 0.0151819 0.00626179 0.0155664 0.00579186 0.0159282 0.00530397 0.0162687 0.00480204 0.0165886 0.00428867 0.0168883 0.00376568 0.0171678 0.00323453 0.017427 0.00269645 0.0176658 0.00215256 0.0178839 0.00160396 0.0180809 0.00105175 0.0182564 0.000497022 0.0184099 -5.90531e-05 0.0185411 -0.000615316 0.0186492 -0.00117086 0.0187336 -0.00172413 0.0187939 -0.00227372 0.0188296 -0.00281822 0.0188401 -0.00335617 0.0188249 -0.00388603 0.0187837 -0.00440624 0.0187158 -0.00491515 0.018621 -0.00541112 0.0184989 -0.00589244 0.0183493 -0.00635739 0.018172 -0.00680427 -0.00723138 0.0179668 0.0138183 0.00704419 0.0142625 0.00667689 0.0146899 0.00628036 0.0150958 0.00585593 0.0154791 0.00540859 0.01584 0.00494299 0.0161793 0.00446278 0.0164973 0.00397066 0.0167943 0.00346867 0.0170704 0.00295844 0.0173255 0.00244135 0.0175594 0.00191866 0.0177718 0.00139154 0.0179624 0.000861157 0.0181308 0.000328663 0.0182765 -0.000204759 0.0183991 -0.000737919 0.018498 -0.00126973 0.0185726 -0.00179876 0.0186225 -0.00232361 0.0186472 -0.00284289 0.0186461 -0.00335513 0.0186189 -0.00385882 0.0185651 -0.00435242 0.0184843 -0.00483435 0.0183762 -0.005303 0.0182405 -0.00575674 0.018077 -0.00619394 0.0178857 -0.00661297 -0.00701223 0.0176666 0.0137539 0.00660827 0.0141853 0.00624553 0.0146035 0.00586213 0.0150034 0.00545606 0.0153826 0.00502941 0.0157403 0.00458529 0.0160764 0.00412668 0.0163909 0.0036561 0.016684 0.00317561 0.0169555 0.00268692 0.0172053 0.00219151 0.0174333 0.00169071 0.017639 0.00118578 0.0178223 0.000677937 0.0179825 0.000168374 0.0181195 -0.000341695 0.0182326 -0.00085105 0.0183214 -0.0013585 0.0183853 -0.00186269 0.0184239 -0.00236223 0.0184368 -0.00285573 0.0184234 -0.00334174 0.0183834 -0.0038188 0.0183163 -0.00428539 0.018222 -0.00473999 0.0181 -0.00518104 0.0179503 -0.005607 0.0177726 -0.00601631 0.0175671 -0.00640745 -0.00677893 0.0173338 0.0136823 0.00618228 0.0141022 0.00582567 0.0145103 0.005454 0.0149022 0.00506421 0.015275 0.00465661 0.0156272 0.00423302 0.0159582 0.00379565 0.0162677 0.00334668 0.0165553 0.002888 0.0168209 0.00242133 0.0170642 0.00194816 0.0172851 0.00146988 0.0174831 0.000987788 0.0176578 0.00050314 0.017809 1.71728e-05 0.0179362 -0.00046888 0.018039 -0.000953776 0.0181167 -0.00143628 0.0181691 -0.00191505 0.0181956 -0.00238873 0.0181958 -0.00285595 0.0181694 -0.00331528 0.0181159 -0.0037653 0.018035 -0.00420455 0.0179266 -0.00463154 0.0177903 -0.00504481 0.0176262 -0.00544288 0.0174342 -0.00582429 0.0172144 -0.00618762 -0.00653149 0.0169669 0.0135991 0.00576484 0.0140085 0.00541629 0.0144062 0.00505622 0.0147888 0.00468162 0.0151535 0.00429195 0.0154984 0.00388807 0.0158226 0.00347153 0.0161252 0.00304407 0.0164058 0.00260739 0.016664 0.00216308 0.0168996 0.00171262 0.0171121 0.00125739 0.0173011 0.000798721 0.0174664 0.000337878 0.0176075 -0.00012388 0.0177239 -0.000585304 0.0178152 -0.00104514 0.0178811 -0.00150213 0.017921 -0.00195497 0.0179346 -0.00240231 0.0179215 -0.00284281 0.0178813 -0.00327509 0.0178137 -0.00369775 0.0177186 -0.00410939 0.0175956 -0.00450861 0.0174448 -0.004894 0.0172661 -0.00526418 0.0170596 -0.00561778 0.0168255 -0.0059535 -0.00627006 0.0165641 0.0135001 0.00535543 0.0138996 0.0050168 0.014287 0.00466885 0.0146595 0.00430913 0.0150147 0.00393675 0.0153507 0.00355202 0.0156663 0.00315595 0.0159605 0.0027499 0.0162325 0.0023353 0.016482 0.00191362 0.0167084 0.00148625 0.0169112 0.00105454 0.0170901 0.000619798 0.0172447 0.000183299 0.0173745 -0.0002537 0.0174792 -0.00068995 0.0175582 -0.0011242 0.0176113 -0.00155519 0.017638 -0.00198163 0.0176379 -0.00240222 0.0176107 -0.00281564 0.0175562 -0.00322056 0.0174741 -0.00361564 0.0173642 -0.00399953 0.0172265 -0.00437091 0.017061 -0.00472845 0.0168676 -0.00507086 0.0166467 -0.00539688 0.0163986 -0.00570531 -0.005995 0.0161235 0.0133812 0.00495406 0.013771 0.00462698 0.0141479 0.00429203 0.0145096 0.00394735 0.0148543 0.00359207 0.0151801 0.0032262 0.0154857 0.0028504 0.0157699 0.00246567 0.016032 0.00207324 0.0162712 0.00167439 0.016487 0.00127042 0.0166789 0.000862616 0.0168465 0.000452243 0.0169892 4.05543e-05 0.0171068 -0.00037121 0.0171986 -0.000781815 0.0172644 -0.00119002 0.0173038 -0.0015946 0.0173165 -0.00199428 0.0173021 -0.00238779 0.0172603 -0.00277387 0.017191 -0.00315124 0.0170939 -0.00351861 0.0169691 -0.00387472 0.0168165 -0.00421831 0.0166362 -0.00454815 0.0164284 -0.00486304 0.0161934 -0.00516184 0.0159315 -0.00544343 -0.00570681 0.0156433 0.013238 0.00456111 0.013618 0.00424699 0.0139841 0.00392601 0.0143345 0.00359686 0.0146678 0.00325882 0.0149822 0.00291179 0.0152764 0.00255619 0.0155493 0.00219279 0.0157999 0.00182262 0.0160275 0.00144678 0.0162315 0.00106647 0.0164112 0.000682895 0.0165662 0.000297255 0.016696 -8.92361e-05 0.0168001 -0.000475372 0.0168783 -0.000859948 0.01693 -0.00124176 0.016955 -0.00161959 0.0169529 -0.00199223 0.0169236 -0.00235846 0.0168668 -0.00271704 0.0167823 -0.00306678 0.0166702 -0.00340645 0.0165303 -0.00373487 0.0163629 -0.00405086 0.016168 -0.00435328 0.015946 -0.00464104 0.0156972 -0.0049131 0.0154223 -0.00516847 -0.00540624 0.0151217 0.0130658 0.00417719 0.0134356 0.00387727 0.0137903 0.00357125 0.0141289 0.00325828 0.0144499 0.00293784 0.0147519 0.00260982 0.0150335 0.00227451 0.0152938 0.00193254 0.0155317 0.00158474 0.0157463 0.0012321 0.0159371 0.000875675 0.0161035 0.000516586 0.0162447 0.000155972 0.0163605 -0.000205016 0.0164504 -0.000565221 0.0165139 -0.000923481 0.0165508 -0.00127863 0.0165607 -0.00162951 0.0165434 -0.00197495 0.0164987 -0.00231378 0.0164265 -0.00264485 0.0163268 -0.00296701 0.0161994 -0.00327911 0.0160446 -0.00358006 0.0158625 -0.00386878 0.0156535 -0.00414421 0.0154178 -0.00440537 0.015156 -0.00465133 0.0148688 -0.00488121 -0.00509423 0.0145568 0.0128593 0.0038031 0.0132181 0.00351846 0.013561 0.00322836 0.013887 0.00293231 0.0141949 0.00262996 0.0144834 0.00232126 0.0147515 0.00200647 0.0149979 0.00168608 0.0152219 0.00136082 0.0154224 0.00103154 0.0155989 0.000699191 0.0157507 0.000364804 0.0158772 2.94349e-05 0.015978 -0.000305831 0.0160527 -0.000639898 0.0161009 -0.000971661 0.0161223 -0.00130001 0.0161166 -0.00162384 0.0160837 -0.00194204 0.0160234 -0.00225351 0.0159357 -0.00255717 0.0158207 -0.00285193 0.0156783 -0.00313676 0.0155089 -0.00341062 0.0153126 -0.00367253 0.01509 -0.00392155 0.0148414 -0.00415679 0.0145675 -0.00437743 0.014269 -0.0045827 -0.00477194 0.0139467 0.0126127 0.00343979 0.0129598 0.00317138 0.01329 0.0028981 0.0136026 0.0026197 0.0138966 0.00233601 0.0141708 0.00204706 0.0144242 0.00175307 0.0146558 0.00145449 0.0148646 0.00115194 0.01505 0.000846181 0.0152111 0.000538069 0.0153474 0.000228534 0.0154583 -8.14476e-05 0.0155433 -0.000390866 0.0156021 -0.000698695 0.0156343 -0.00100389 0.0156398 -0.00130542 0.0156182 -0.00160224 0.0155694 -0.0018933 0.0154935 -0.00217759 0.0153904 -0.00245409 0.0152603 -0.0027218 0.0151033 -0.00297978 0.0149198 -0.00322707 0.01471 -0.00346281 0.0144746 -0.00368614 0.0142141 -0.00389629 0.0139292 -0.00409253 0.0136207 -0.00427422 -0.00444078 0.0132896 0.0123195 0.00308831 0.0126539 0.00283699 0.0129706 0.00258134 0.013269 0.00232131 0.0135482 0.00205687 0.0138071 0.0017881 0.0140449 0.00151524 0.0142607 0.00123872 0.0144536 0.000959068 0.0146228 0.000676974 0.0147677 0.000393206 0.0148876 0.000108606 0.0149821 -0.000175932 0.0150507 -0.000459479 0.0150931 -0.000741084 0.015109 -0.00101978 0.0150981 -0.00129461 0.0150605 -0.00156458 0.0149959 -0.00182876 0.0149045 -0.00208619 0.0147864 -0.00233594 0.0146417 -0.0025771 0.0144707 -0.00280881 0.0142739 -0.00303024 0.0140517 -0.00324058 0.0138046 -0.0034391 0.0135335 -0.00362513 0.013239 -0.00379804 0.012922 -0.00395729 -0.00410241 0.0125837 0.0119726 0.0027498 0.0122933 0.00251632 0.0125956 0.00227904 0.0128788 0.00203804 0.0131423 0.00179339 0.0133852 0.00154524 0.0136066 0.00129386 0.0138057 0.00103962 0.0139817 0.000783028 0.014134 0.0005247 0.0142618 0.000265323 0.0143648 5.66033e-06 0.0144423 -0.000253477 0.0144941 -0.000511242 0.0145198 -0.000766763 0.0145192 -0.00101916 0.0144921 -0.00126753 0.0144385 -0.00151101 0.0143585 -0.0017487 0.014252 -0.00197976 0.0141194 -0.00220333 0.0139609 -0.0024186 0.0137769 -0.00262481 0.0135679 -0.0028212 0.0133344 -0.00300708 0.0130771 -0.00318182 0.0127968 -0.00334484 0.0124944 -0.00349561 0.0121708 -0.0036337 -0.00375872 0.0118271 0.0115642 0.00242548 0.0118701 0.00221047 0.0121569 0.0019922 0.0124241 0.00177081 0.0126711 0.00154644 0.012897 0.0013193 0.0131012 0.00108967 0.0132829 0.000857907 0.0134415 0.000624487 0.0135762 0.000389956 0.0136866 0.000154939 0.0137722 -7.9882e-05 0.0138324 -0.000313774 0.0138672 -0.000545972 0.0138761 -0.000775688 0.0138591 -0.00100212 0.013816 -0.00122447 0.0137469 -0.00144193 0.0136519 -0.00165371 0.0135312 -0.00185904 0.0133851 -0.00205718 0.0132139 -0.00224739 0.013018 -0.002429 0.0127982 -0.00260136 0.012555 -0.00276387 0.0122892 -0.002916 0.0120016 -0.00305725 0.0116932 -0.00318721 0.011365 -0.00330551 -0.00341187 0.0110181 0.0110858 0.00211658 0.0113757 0.00192059 0.0116461 0.00172183 0.0118964 0.00152051 0.012126 0.00131682 0.0123343 0.001111 0.0125206 0.000903322 0.0126844 0.000694157 0.012825 0.000483929 0.0129418 0.000273136 0.0130344 6.23377e-05 0.0131023 -0.000147854 0.0131454 -0.000356785 0.0131632 -0.000563772 0.0131556 -0.000768112 0.0131226 -0.000969089 0.0130641 -0.00116599 0.0129802 -0.00135809 0.0128712 -0.0015447 0.0127373 -0.00172513 0.0125789 -0.00189873 0.0123963 -0.00206487 0.0121903 -0.00222295 0.0119614 -0.00237244 0.0117103 -0.00251281 0.0114379 -0.00264363 0.0111452 -0.00276448 0.010833 -0.00287505 0.0105025 -0.00297504 -0.00306425 0.0101549 0.0105281 0.00182436 0.0108009 0.00164779 0.0110538 0.00146894 0.0112863 0.00128802 0.0114979 0.00110528 0.0116879 0.000920949 0.0118559 0.00073533 0.0120013 0.000548758 0.0121236 0.000361628 0.0122224 0.00017439 0.0122972 -1.24584e-05 0.0123477 -0.000198373 0.0123737 -0.000382777 0.012375 -0.000565066 0.0123515 -0.000744621 0.0123032 -0.000920811 0.0122302 -0.00109301 0.0121327 -0.00126059 0.0120109 -0.00142293 0.0118653 -0.00157946 0.0116961 -0.0017296 0.0115041 -0.00187281 0.0112897 -0.0020086 0.0110538 -0.0021365 0.0107971 -0.0022561 0.0105205 -0.00236702 0.010225 -0.00246896 0.00991156 -0.00256165 0.0095814 -0.00264489 -0.00271852 0.00923568 0.0098811 0.00155007 0.0101357 0.00139318 0.0103702 0.00123445 0.0105841 0.00107412 0.010777 0.000912429 0.0109483 0.000749634 0.0110976 0.000586014 0.0112245 0.000421888 0.0113285 0.000257615 0.0114093 9.35964e-05 0.0114665 -6.97262e-05 0.0115 -0.000231877 0.0115096 -0.000392353 0.0114952 -0.000550628 0.0114567 -0.000706164 0.0113943 -0.000858416 0.0113082 -0.00100684 0.0111985 -0.0011509 0.0110656 -0.00129007 0.01091 -0.00142386 0.0107322 -0.00155177 0.0105327 -0.00167336 0.0103123 -0.00178822 0.0100718 -0.00189597 0.00981197 -0.00199626 0.00953378 -0.00208882 0.00923822 -0.0021734 0.00892638 -0.00224981 0.0085994 -0.0023179 -0.00237758 0.00825845 0.00913386 0.00129491 0.00936926 0.00115778 0.00958449 0.00101921 0.00977915 0.00087946 0.00995283 0.000738753 0.0101051 0.000597339 0.0102357 0.000455484 0.0103441 0.000313477 0.01043 0.000171642 0.0104933 3.03299e-05 0.0105336 -0.000110073 0.0105509 -0.000249157 0.0105451 -0.000386488 0.0105161 -0.000521618 0.010464 -0.000654088 0.010389 -0.000783434 0.0102914 -0.000909198 0.0101714 -0.00103093 0.0100295 -0.00114818 0.00986618 -0.00126055 0.00968203 -0.00136762 0.00947771 -0.00146904 0.00925395 -0.00156447 0.00901159 -0.0016536 0.00875151 -0.00173619 0.00847468 -0.00181199 0.00818213 -0.00188085 0.00787493 -0.00194261 0.00755422 -0.0019972 -0.00204455 0.00722119 0.00827478 0.00106002 0.00849004 0.000942525 0.0086853 0.000823955 0.00886021 0.00070455 0.00901442 0.000584536 0.00914762 0.000464139 0.00925951 0.000343599 0.00934981 0.000223175 0.0094183 0.000103149 0.00946481 -1.61758e-05 0.00948921 -0.00013447 0.00949143 -0.000251385 0.0094715 -0.000366558 0.0094295 -0.000479611 0.00936557 -0.000590162 0.00927996 -0.000697826 0.00917299 -0.000802224 0.00904505 -0.000902984 0.00889661 -0.000999747 0.00872824 -0.00109217 0.00854056 -0.00117994 0.00833429 -0.00126277 0.0081102 -0.00134038 0.00786914 -0.00141255 0.00761204 -0.00147908 0.00733985 -0.00153981 0.00705362 -0.00159461 0.00675442 -0.00164341 0.00644336 -0.00168614 -0.00172279 0.0061216 0.00729141 0.000846469 0.00748571 0.000748228 0.00766043 0.000649233 0.00781528 0.000549704 0.00794997 0.000449843 0.00806426 0.000349849 0.00815793 0.000249933 0.00823079 0.000150315 0.0082827 5.12332e-05 0.00831358 -4.70556e-05 0.00832339 -0.000144278 0.00831215 -0.000240147 0.00827996 -0.000334362 0.00822696 -0.000426616 0.0081534 -0.000516599 0.00805957 -0.000603999 0.00794586 -0.000688511 0.00781271 -0.000769837 0.00766066 -0.000847693 0.0074903 -0.000921811 0.0073023 -0.000991942 0.00709739 -0.00105786 0.00687638 -0.00111937 0.00664013 -0.0011763 0.00638955 -0.0012285 0.00612561 -0.00127587 0.00584933 -0.00131833 0.00556174 -0.00135582 0.00526394 -0.00138834 -0.00141588 0.00495703 0.00617043 0.000655199 0.0063431 0.000575558 0.0064969 0.000495433 0.00663158 0.000415019 0.00674694 0.000334489 0.00684278 0.000254007 0.00691897 0.000173746 0.00697539 9.38866e-05 0.007012 1.46224e-05 0.00702879 -6.38386e-05 0.00702578 -0.000141276 0.0070031 -0.000217458 0.00696088 -0.000292148 0.00689937 -0.000365101 0.00681884 -0.000436074 0.00671967 -0.000504823 0.00660226 -0.00057111 0.00646713 -0.000634706 0.00631483 -0.000695392 0.00614599 -0.000752965 0.00596128 -0.000807239 0.00576147 -0.000858046 0.00554734 -0.000905242 0.00531975 -0.000948707 0.00507959 -0.000988346 0.00482781 -0.00102409 0.00456538 -0.0010559 0.0042933 -0.00108375 0.00401261 -0.00110765 -0.00112761 0.00372434 0.00489755 0.00048705 0.00504808 0.000425023 0.00518077 0.000362738 0.00529543 0.00030036 0.0053919 0.000238021 0.00547006 0.000175845 0.00552984 0.000113965 0.00557121 5.25189e-05 0.00559418 -8.34574e-06 0.00559881 -6.84666e-05 0.0055852 -0.000127671 0.00555353 -0.000185784 0.005504 -0.000242621 0.0054369 -0.000297998 0.00535256 -0.000351731 0.00525137 -0.000403638 0.0051338 -0.00045354 0.00500036 -0.000501269 0.00485164 -0.000546664 0.00468825 -0.000589577 0.00451088 -0.000629874 0.00432028 -0.000667439 0.00411721 -0.000702171 0.00390249 -0.000733992 0.00367699 -0.000762843 0.00344159 -0.000788689 0.00319721 -0.000811515 0.00294479 -0.000831329 0.00268529 -0.00084815 -0.000862001 0.00241968 0.00345744 0.000342755 0.00358549 0.000296976 0.00369709 0.000251135 0.0037921 0.000205353 0.00387041 0.000159711 0.00393196 0.00011429 0.00397675 6.91768e-05 0.0040048 2.44699e-05 0.00401619 -1.97299e-05 0.00401102 -6.32997e-05 0.00398946 -0.000106113 0.00395172 -0.00014804 0.00389805 -0.00018895 0.00382876 -0.00022871 0.00374422 -0.000267189 0.00364483 -0.000304256 0.00353108 -0.000339788 0.00340348 -0.000373665 0.00326259 -0.000405777 0.00310904 -0.000436023 0.00294347 -0.000464311 0.0027666 -0.000490565 0.00257915 -0.000514721 0.00238189 -0.000536731 0.00217561 -0.000556565 0.00196113 -0.000574211 0.00173929 -0.000589676 0.00151095 -0.000602988 0.00127698 -0.00061418 -0.000623283 0.00103827 0.00183355 0.000222958 0.0019389 0.000191627 0.00202961 0.000160425 0.00210556 0.0001294 0.0021667 9.85713e-05 0.00221302 6.79665e-05 0.00224456 3.76342e-05 0.00226139 7.64346e-06 0.00226364 -2.19791e-05 0.00225145 -5.11123e-05 0.00222502 -7.9678e-05 0.00218457 -0.000107591 0.00213038 -0.000134763 0.00206278 -0.000161106 0.00198212 -0.000186533 0.00188882 -0.000210959 0.00178334 -0.000234304 0.00166617 -0.000256491 0.00153784 -0.00027745 0.00139893 -0.000297116 0.00125006 -0.000315434 0.00109184 -0.000332355 0.000924966 -0.000347843 0.000750107 -0.000361872 0.000567974 -0.000374432 0.000379288 -0.000385525 0.000184788 -0.000395176 -1.47722e-05 -0.000403427 -0.000218619 -0.000410333 -0.000415942 -0.000425961 7.76874e-06 0.000128257 9.03137e-05 0.000109082 0.000160471 9.02673e-05 0.000218146 7.17254e-05 0.000263328 5.33891e-05 0.000296058 3.5237e-05 0.000316412 1.72802e-05 0.00032442 -3.65267e-07 0.00032036 -1.79183e-05 0.000304316 -3.50687e-05 0.000276495 -5.18571e-05 0.000237131 -6.82275e-05 0.000186495 -8.41265e-05 0.000124892 -9.95026e-05 5.26644e-05 -0.000114305 -2.98082e-05 -0.000128486 -0.000122113 -0.000141999 -0.000223805 -0.0001548 -0.000334406 -0.000166849 -0.000453411 -0.000178111 -0.00058029 -0.000188555 -0.00071449 -0.000198155 -0.000855441 -0.000206892 -0.00100256 -0.000214754 -0.00115525 -0.000221741 -0.00131291 -0.000227864 -0.00147493 -0.000233155 -0.00164069 -0.000237669 -0.00180953 -0.000241496 -0.000244741 -0.00198073 -0.00203985 5.92562e-05 -0.00198018 4.94165e-05 -0.00193019 4.02783e-05 -0.00188994 3.14676e-05 -0.00185937 2.28232e-05 -0.00183841 1.4279e-05 -0.00182696 5.83056e-06 -0.00182494 -2.38399e-06 -0.00183221 -1.06518e-05 -0.00184862 -1.86635e-05 -0.00187398 -2.64984e-05 -0.00190808 -3.4124e-05 -0.00195069 -4.1513e-05 -0.00200155 -4.86412e-05 -0.00206037 -5.54853e-05 -0.00212684 -6.20232e-05 -0.0022006 -6.82336e-05 -0.0022813 -7.40971e-05 -0.00236856 -7.95958e-05 -0.00246195 -8.47136e-05 -0.00256107 -8.94368e-05 -0.00266547 -9.37542e-05 -0.00277471 -9.76572e-05 -0.00288832 -0.000101141 -0.00300585 -0.000104208 -0.00312685 -0.000106869 -0.00325085 -0.000109152 -0.0033774 -0.000111119 -0.00350599 -0.000112903 -0.000114759 -0.00363597 -0.00433149 1.64149e-05 -0.00429489 1.28138e-05 -0.0042648 1.01923e-05 -0.00424115 7.81641e-06 -0.00422385 5.52148e-06 -0.00421282 3.24331e-06 -0.00420772 7.37212e-07 -0.00420865 -1.45791e-06 -0.0042158 -3.50171e-06 -0.00422882 -5.63806e-06 -0.00424758 -7.73961e-06 -0.00427193 -9.78047e-06 -0.00430169 -1.17511e-05 -0.00433668 -1.36449e-05 -0.00437671 -1.54565e-05 -0.00442156 -1.71807e-05 -0.00447098 -1.88121e-05 -0.00452473 -2.0346e-05 -0.00458255 -2.17779e-05 -0.00464416 -2.31035e-05 -0.00470927 -2.43194e-05 -0.00477761 -2.54223e-05 -0.00484885 -2.64099e-05 -0.00492271 -2.72801e-05 -0.00499889 -2.80329e-05 -0.00507709 -2.86721e-05 -0.00515703 -2.92121e-05 -0.00523845 -2.96912e-05 -0.00532112 -3.02384e-05 -3.13167e-05 -0.00540456 -0.00689254 -0.00687972 -0.00686953 -0.00686171 -0.00685619 -0.00685295 -0.00685221 -0.00685367 -0.00685717 -0.00686281 -0.00687055 -0.00688033 -0.00689208 -0.00690573 -0.00692118 -0.00693836 -0.00695718 -0.00697752 -0.0069993 -0.0070224 -0.00704672 -0.00707214 -0.00709855 -0.00712583 -0.00715387 -0.00718254 -0.00721175 -0.00724144 -0.00727168 -0.007303 0.0182706 -0.00809496 0.00830033 0.0180377 -0.00853275 0.00876564 0.0177775 -0.00894557 0.00920584 0.01749 -0.00933175 0.00961917 0.0171759 -0.00968978 0.010004 0.0168355 -0.0100183 0.0103587 0.0164695 -0.0103161 0.010682 0.0160788 -0.0105822 0.0109729 0.0156644 -0.0108161 0.0112305 0.0152274 -0.0110171 0.0114542 0.0147689 -0.0111853 0.0116437 0.0142904 -0.0113208 0.0117993 0.0137933 -0.0114241 0.0119212 0.013279 -0.011496 0.0120103 0.012749 -0.0115376 0.0120675 0.012205 -0.0115503 0.0120944 0.0116482 -0.0115357 0.0120924 0.0110802 -0.0114954 0.0120634 0.0105021 -0.0114312 0.0120092 0.00991516 -0.0113446 0.0119316 0.00932024 -0.0112372 0.0118321 0.00871807 -0.0111098 0.011712 0.00810911 -0.0109627 0.0115717 0.00749346 -0.0107951 0.0114108 0.00687063 -0.0106046 0.0112274 0.00623896 -0.0103861 0.0110178 0.00559379 -0.0101295 0.0107747 0.00492315 -0.00981391 0.0104846 0.00419521 -0.00938458 0.0101125 -0.0086673 0.00327997 0.00958254 0.0180173 -0.00787606 0.0177708 -0.00828624 0.0174968 -0.00867164 0.0171958 -0.00903075 0.0168682 -0.00936217 0.0165146 -0.0096647 0.0161359 -0.0099373 0.0157328 -0.0101792 0.0153065 -0.0103898 0.0148582 -0.0105688 0.0143891 -0.0107162 0.0139008 -0.0108324 0.0133946 -0.0109179 0.0128721 -0.0109735 0.0123349 -0.0110004 0.0117844 -0.0109998 0.0112222 -0.0109735 0.0106496 -0.0109228 0.0100678 -0.0108494 0.00947786 -0.0107547 0.00888059 -0.0106399 0.00827646 -0.0105057 0.00766557 -0.0103518 0.00704736 -0.0101769 0.00642028 -0.00997752 0.00578096 -0.00974677 0.00512257 -0.0094711 0.00443225 -0.00912359 0.00369466 -0.00864699 -0.00791654 0.0029439 0.0177341 -0.00764332 0.0174738 -0.0080259 0.0171861 -0.008384 0.0168716 -0.00871622 0.0165307 -0.00902133 0.0161643 -0.00929826 0.0157731 -0.00954614 0.0153583 -0.0097643 0.0149208 -0.00995233 0.0144621 -0.0101101 0.0139835 -0.0102376 0.0134864 -0.0103353 0.0129724 -0.0104039 0.0124431 -0.0104442 0.0119 -0.0104573 0.0113446 -0.0104445 0.0107785 -0.0104074 0.010203 -0.0103472 0.00961922 -0.0102656 0.00902811 -0.0101636 0.00843038 -0.0100422 0.00782633 -0.00990166 0.0072158 -0.0097413 0.00659792 -0.00955903 0.00597083 -0.00935043 0.00533125 -0.00910718 0.00467422 -0.00881407 0.00399474 -0.00844411 0.00329886 -0.00795111 -0.00726397 0.00264629 0.0174198 -0.00739658 0.0171456 -0.0077517 0.0168443 -0.00808271 0.0165165 -0.00838837 0.0161627 -0.0086676 0.0157839 -0.00891946 0.015381 -0.00914323 0.0149551 -0.00933838 0.0145074 -0.00950463 0.0140393 -0.00964193 0.0135522 -0.00975049 0.0130476 -0.00983076 0.0125271 -0.00988343 0.0119924 -0.00990942 0.0114449 -0.00990983 0.0108863 -0.00988593 0.010318 -0.00983904 0.00974131 -0.00977051 0.00915732 -0.00968157 0.00856695 -0.00957323 0.00797081 -0.00944607 0.00736913 -0.00929998 0.00676169 -0.00913385 0.00614767 -0.00894501 0.00552559 -0.00872835 0.00489342 -0.008475 0.00424951 -0.00817016 0.0035961 -0.00779071 0.00294931 -0.00730432 -0.00667639 0.00236173 0.0170731 -0.00713583 0.0167851 -0.00746372 0.0164704 -0.007768 0.0161296 -0.00804756 0.0157635 -0.00830146 0.0153729 -0.00852891 0.014959 -0.00872931 0.0145229 -0.00890229 0.0140659 -0.00904767 0.0135895 -0.00916552 0.0130952 -0.00925613 0.0125844 -0.00932002 0.0120589 -0.00935793 0.0115203 -0.00937077 0.0109701 -0.00935963 0.0104099 -0.00932571 0.00984105 -0.00927023 0.00926494 -0.0091944 0.00868263 -0.00909926 0.00809499 -0.00898559 0.0075026 -0.00885368 0.00690574 -0.00870312 0.00630429 -0.0085324 0.00569777 -0.00833849 0.00508547 -0.00811606 0.00446699 -0.00785652 0.0038437 -0.00754687 0.00322225 -0.00716926 0.00262128 -0.00670335 -0.00613602 0.00208091 0.0166923 -0.00686118 0.0163908 -0.00716224 0.0160631 -0.00744027 0.0157098 -0.00769432 0.0153319 -0.00792357 0.0149304 -0.00812738 0.0145064 -0.0083053 0.0140612 -0.00845705 0.0135961 -0.00858259 0.0131126 -0.00868208 0.0126124 -0.00875588 0.0120969 -0.00880457 0.0115679 -0.0088289 0.0110269 -0.00882981 0.0104756 -0.00880833 0.00991549 -0.00876558 0.00934796 -0.0087027 0.00877431 -0.00862074 0.00819561 -0.00852056 0.00761274 -0.00840273 0.00702634 -0.00826728 0.00643676 -0.00811354 0.00584416 -0.00793979 0.00524853 -0.00774285 0.00465006 -0.00751759 0.00404984 -0.0072563 0.00345138 -0.00694842 0.00286333 -0.00658121 0.0023032 -0.00614322 -0.00563269 0.00179987 0.0162758 -0.00657293 0.0159613 -0.00684766 0.015621 -0.00710007 0.015256 -0.00732932 0.0148672 -0.00753475 0.0144557 -0.00771583 0.0140226 -0.00787225 0.0135694 -0.00800385 0.0130975 -0.00811067 0.0126084 -0.00819298 0.0121037 -0.00825119 0.0115851 -0.00828592 0.0110541 -0.00829795 0.0105125 -0.00828819 0.0099618 -0.00825763 0.00940355 -0.00820732 0.00883913 -0.00813828 0.00826981 -0.00805142 0.00769668 -0.00794744 0.00712065 -0.0078267 0.00654242 -0.00768906 0.00596254 -0.00753366 0.00538145 -0.0073587 0.00479967 -0.00716108 0.00421822 -0.00693613 0.00363932 -0.00667741 0.00306771 -0.00637681 0.0025124 -0.0060259 0.00198835 -0.00561917 -0.00516019 0.00151586 0.0158221 -0.00627155 0.015495 -0.0065206 0.0151431 -0.00674813 0.0147672 -0.00695343 0.0143684 -0.00713597 0.013948 -0.00729536 0.0135071 -0.00743138 0.0130472 -0.00754399 0.0125699 -0.00763333 0.0120766 -0.00769972 0.0115691 -0.00774363 0.0110489 -0.00776573 0.0105177 -0.00776678 0.00997719 -0.00774766 0.00942889 -0.00770933 0.00887432 -0.00765275 0.00831486 -0.00757882 0.00775178 -0.00748833 0.00718618 -0.00738183 0.00661901 -0.00725953 0.0060511 -0.00712114 0.00548316 -0.00696572 0.00491595 -0.00679149 0.00435049 -0.00659561 0.00378844 -0.00637408 0.00323274 -0.00612171 0.00268861 -0.00583268 0.00216452 -0.0055018 0.00167262 -0.00512727 -0.00471469 0.00122711 0.0153295 -0.0059577 0.0149907 -0.00618185 0.014628 -0.00638537 0.0142422 -0.0065677 0.0138347 -0.00672842 0.0134065 -0.00686725 0.0129592 -0.00698408 0.0124942 -0.00707896 0.012013 -0.00715211 0.0115172 -0.00720392 0.0110085 -0.0072349 0.0104885 -0.00724572 0.00995882 -0.00723714 0.00942118 -0.00721003 0.0088771 -0.00716526 0.00832807 -0.00710371 0.00777544 -0.0070262 0.00722049 -0.00693338 0.00666434 -0.00682569 0.00610801 -0.00670319 0.00555241 -0.00656554 0.00499847 -0.00641178 0.00444722 -0.00624024 0.00390005 -0.00604845 0.00335907 -0.00583309 0.0028276 -0.00559024 0.00231082 -0.0053159 0.00181622 -0.00500721 0.00135344 -0.00466448 -0.0042937 0.000932447 0.0147962 -0.00563224 0.0144468 -0.00583239 0.0140743 -0.00601292 0.01368 -0.00617337 0.013265 -0.00631343 0.0128307 -0.00643293 0.0123785 -0.00653187 0.0119099 -0.00661036 0.0114265 -0.00666871 0.0109299 -0.00670733 0.0104218 -0.00672677 0.00990375 -0.00672771 0.0093775 -0.00671089 0.00884462 -0.00667714 0.00830663 -0.00662727 0.00776499 -0.00656208 0.00722107 -0.00648228 0.00667613 -0.00638844 0.0061313 -0.00628086 0.00558767 -0.00615956 0.00504626 -0.00602413 0.00450815 -0.00587367 0.0039746 -0.00570669 0.00344727 -0.00552112 0.00292851 -0.00531433 0.00242173 -0.00508347 0.00193178 -0.00482595 0.00146506 -0.00454049 0.00102909 -0.00422851 -0.00389558 0.000630973 0.0142208 -0.00529624 0.0138618 -0.00547344 0.013481 -0.00563209 0.0130795 -0.00577186 0.0126586 -0.00589253 0.0122197 -0.00599404 0.0117643 -0.00607645 0.0112939 -0.00613997 0.0108101 -0.00618493 0.0103146 -0.00621179 0.00980893 -0.00622113 0.00929482 -0.0062136 0.00877386 -0.00618993 0.00824762 -0.00615089 0.00771761 -0.00609725 0.00718525 -0.00602972 0.00665189 -0.00594892 0.00611878 -0.00585532 0.00558708 -0.00574916 0.00505792 -0.0056304 0.0045324 -0.00549862 0.00401173 -0.005353 0.00349734 -0.0051923 0.00299102 -0.0050148 0.00249522 -0.00481854 0.00201325 -0.0046015 0.00154946 -0.00436216 0.0011092 -0.00410024 0.000698318 -0.00381762 -0.00351921 0.000321948 0.0136014 -0.00495099 0.0132344 -0.0051064 0.0128467 -0.00524441 0.0124397 -0.0053648 0.0120146 -0.00546745 0.0115729 -0.00555236 0.0111161 -0.00561969 0.0106458 -0.00566968 0.0101636 -0.00570271 0.00967111 -0.00571927 0.00916991 -0.00571993 0.00866166 -0.00570535 0.00814794 -0.00567621 0.00763028 -0.00563323 0.00711014 -0.00557712 0.00658893 -0.00550851 0.00606795 -0.00542795 0.00554845 -0.00533582 0.0050316 -0.00523231 0.00451855 -0.00511735 0.00401048 -0.00499054 0.00350866 -0.00485119 0.00301461 -0.00469824 0.0025302 -0.00453039 0.00205782 -0.00434616 0.00160056 -0.00414424 0.00116224 -0.00392383 0.000747259 -0.00368526 0.000360153 -0.00343052 -0.00316376 4.70063e-06 0.0129366 -0.00459804 0.0125631 -0.00473291 0.0121704 -0.00485162 0.0117596 -0.00495402 0.0113322 -0.00504007 0.0108897 -0.00510985 0.0104335 -0.00516357 0.00996538 -0.00520151 0.00948677 -0.0052241 0.00899931 -0.00523181 0.00850461 -0.00522523 0.00800425 -0.00520498 0.00749975 -0.00517171 0.00699262 -0.0051261 0.00648426 -0.00506876 0.00597604 -0.00500029 0.00546924 -0.00492114 0.00496506 -0.00483164 0.00446468 -0.00473194 0.00396927 -0.00462193 0.00348003 -0.0045013 0.00299828 -0.00436944 0.00252556 -0.00422552 0.00206371 -0.00406854 0.00161502 -0.00389747 0.00118228 -0.00371149 0.000768762 -0.00351032 0.000378081 -0.00329457 1.37524e-05 -0.00306619 -0.0028286 -0.000321407 0.0122247 -0.00423912 0.0118467 -0.00435483 0.0114507 -0.00445566 0.0110382 -0.00454152 0.0106106 -0.00461246 0.0101694 -0.00466861 0.00971602 -0.00471023 0.00925214 -0.00473763 0.00877928 -0.00475124 0.00829902 -0.00475155 0.00781292 -0.00473913 0.0073225 -0.00471456 0.00682925 -0.00467847 0.00633461 -0.00463145 0.00583993 -0.00457409 0.00534652 -0.00450688 0.00485562 -0.00443024 0.00436841 -0.00434443 0.00388604 -0.00424957 0.00340967 -0.00414557 0.00294051 -0.00403214 0.00247988 -0.00390881 0.00202929 -0.00377492 0.0015905 -0.00362975 0.00116563 -0.0034726 0.000757162 -0.00330302 0.000367869 -0.00312103 6.81688e-07 -0.00292739 -0.000341652 -0.00272386 -0.00251325 -0.000657007 0.0114642 -0.00387625 0.0110836 -0.00397424 0.0106866 -0.00405866 0.0102746 -0.00412951 0.00984904 -0.00418686 0.00941134 -0.00423092 0.00896306 -0.00426194 0.00850571 -0.00428028 0.00804085 -0.00428638 0.00757 -0.0042807 0.00709465 -0.00426379 0.00661629 -0.0042362 0.00613633 -0.00419851 0.00565613 -0.00415126 0.00517701 -0.00409496 0.00470019 -0.00403007 0.00422688 -0.00395692 0.0037582 -0.00387575 0.00329528 -0.00378665 0.00283925 -0.00368954 0.00239129 -0.00358418 0.00195268 -0.0034702 0.00152488 -0.00334712 0.00110953 -0.0032144 0.000708547 -0.00307162 0.000324093 -0.00291857 -4.14937e-05 -0.00275544 -0.000385842 -0.00258304 -0.0007068 -0.0024029 -0.0022173 -0.00100275 0.0106535 -0.00351164 0.0102727 -0.00359343 0.00987704 -0.00366299 0.0094679 -0.00372037 0.00904672 -0.00376568 0.00861497 -0.00379916 0.00817412 -0.0038211 0.00772569 -0.00383185 0.00727115 -0.00383183 0.00681196 -0.00382152 0.00634959 -0.00380141 0.0058854 -0.00377202 0.00542077 -0.00373387 0.00495698 -0.00368746 0.00449525 -0.00363324 0.00403677 -0.00357159 0.00358266 -0.00350281 0.00313401 -0.0034271 0.00269189 -0.00334453 0.00225738 -0.00325503 0.00183163 -0.00315842 0.00141584 -0.00305442 0.00101138 -0.00294265 0.000619758 -0.00282278 0.000242681 -0.00269455 -0.000117994 -0.00255789 -0.000460312 -0.00241312 -0.000782358 -0.00226099 -0.00108244 -0.00210282 -0.00194042 -0.00135932 0.00979105 -0.00314776 0.00941254 -0.00321492 0.00902073 -0.00327119 0.00861702 -0.00331665 0.00820281 -0.00335147 0.00777953 -0.00337589 0.00734863 -0.0033902 0.00691156 -0.00339477 0.00646973 -0.00339 0.00602454 -0.00337633 0.00557736 -0.00335423 0.00512951 -0.00332417 0.00468225 -0.00328661 0.00423679 -0.003242 0.00379429 -0.00319073 0.00335584 -0.00313314 0.0029225 -0.00306947 0.0024953 -0.0029999 0.00207524 -0.00292447 0.00166336 -0.00284315 0.00126071 -0.00275578 0.000868443 -0.00266215 0.0004878 -0.00256201 0.000120145 -0.00245513 -0.000233029 -0.00234137 -0.000570137 -0.00222078 -0.000889555 -0.0020937 -0.00118974 -0.00196081 -0.00146935 -0.0018232 -0.00168234 -0.00172743 0.00887522 -0.0027873 0.00850172 -0.00284142 0.00811651 -0.00288597 0.00772093 -0.00292108 0.00731638 -0.00294692 0.00690424 -0.00296375 0.00648589 -0.00297185 0.00606271 -0.00297159 0.00563605 -0.00296334 0.00520722 -0.00294751 0.00477751 -0.00292452 0.00434814 -0.0028948 0.00392029 -0.00285876 0.00349508 -0.0028168 0.00307359 -0.00276924 0.00265682 -0.00271637 0.00224577 -0.00265842 0.00184137 -0.0025955 0.00144457 -0.00252767 0.00105632 -0.0024549 0.000677619 -0.00237707 0.000309502 -0.00229403 -4.69058e-05 -0.0022056 -0.000390392 -0.00211164 -0.000719665 -0.0020121 -0.00103338 -0.00190707 -0.0013302 -0.00179688 -0.00160887 -0.00168214 -0.00186835 -0.00156373 -0.00144281 -0.00210788 0.00790433 -0.00243318 0.00753876 -0.00247585 0.00716303 -0.00251025 0.00677848 -0.00253652 0.00638642 -0.00255486 0.00598817 -0.0025655 0.00558506 -0.00256874 0.00517838 -0.00256491 0.00476939 -0.00255435 0.00435932 -0.00253744 0.00394935 -0.00251455 0.00354062 -0.00248607 0.00313422 -0.00245236 0.00273116 -0.00241374 0.00233243 -0.00237051 0.00193896 -0.0023229 0.00155164 -0.0022711 0.00117135 -0.00221521 0.000798945 -0.00215527 0.000435298 -0.00209125 8.13093e-05 -0.00202308 -0.000262079 -0.00195064 -0.000593865 -0.00187382 -0.000912992 -0.00179252 -0.00121835 -0.00170674 -0.00150881 -0.00161661 -0.00178326 -0.00152243 -0.00204071 -0.00142469 -0.00228032 -0.00132412 -0.00122163 -0.0025015 0.00687653 -0.00208851 0.00652199 -0.00212131 0.00615883 -0.00214709 0.0057883 -0.002166 0.00541168 -0.00217823 0.0050302 -0.00218402 0.00464509 -0.00218364 0.00425758 -0.00217739 0.00386881 -0.00216558 0.00347992 -0.00214855 0.00309201 -0.00212664 0.00270609 -0.00210015 0.00232315 -0.00206942 0.00194412 -0.00203471 0.00156988 -0.00199627 0.00120128 -0.0019543 0.000839122 -0.00190894 0.000484191 -0.00186028 0.000137267 -0.00180834 -0.000200867 -0.00175312 -0.000529405 -0.00169455 -0.000847509 -0.00163254 -0.0011543 -0.00156702 -0.00144887 -0.00149795 -0.00173027 -0.00142534 -0.00199756 -0.00134932 -0.00224982 -0.00127016 -0.00248626 -0.00118826 -0.0027062 -0.00110418 -0.00101863 -0.00290919 0.00578972 -0.00175663 0.0054495 -0.00178109 0.00510212 -0.00179972 0.00474878 -0.00181266 0.00439066 -0.0018201 0.0040289 -0.00182227 0.00366466 -0.0018194 0.00329903 -0.00181176 0.00293308 -0.00179963 0.00256784 -0.00178331 0.00220429 -0.00176308 0.00184335 -0.00173921 0.00148589 -0.00171197 0.00113276 -0.00168158 0.000784728 -0.00164824 0.000442551 -0.00161212 0.000106943 -0.00157333 -0.000221397 -0.00153194 -0.000541778 -0.00148796 -0.000853507 -0.00144139 -0.00115587 -0.00139218 -0.00144815 -0.00134027 -0.00172957 -0.0012856 -0.00199935 -0.00122816 -0.00225671 -0.00116799 -0.00250085 -0.00110518 -0.00273103 -0.00103997 -0.00294661 -0.000972685 -0.00314703 -0.000903754 -0.000833711 -0.00333196 0.00464146 -0.00144106 0.00431902 -0.00145865 0.00399081 -0.00147151 0.00365794 -0.00147979 0.00332148 -0.00148365 0.0029825 -0.00148329 0.00264203 -0.00147893 0.00230108 -0.0014708 0.00196059 -0.00145915 0.00162149 -0.00144421 0.00128464 -0.00142623 0.000950858 -0.00140543 0.000620918 -0.00138203 0.000295548 -0.00135621 -2.45669e-05 -0.00132813 -0.000338773 -0.00129792 -0.000646443 -0.00126566 -0.00094697 -0.00123141 -0.00123975 -0.00119518 -0.00152418 -0.00115696 -0.00179965 -0.00111671 -0.00206552 -0.00107439 -0.00232115 -0.00102997 -0.00256588 -0.000983432 -0.00279905 -0.000934818 -0.00302001 -0.00088423 -0.00322814 -0.00083184 -0.00342292 -0.000777906 -0.00360391 -0.000722758 -0.000666785 -0.00377084 0.0034288 -0.00114552 0.00312777 -0.00115761 0.00282225 -0.001166 0.00251326 -0.00117079 0.00220175 -0.00117214 0.0018887 -0.00117023 0.00157501 -0.00116524 0.00126158 -0.00115737 0.000949253 -0.00114682 0.000638823 -0.00113378 0.00033105 -0.00111845 2.66418e-05 -0.00110102 -0.000273734 -0.00108165 -0.000569454 -0.00106049 -0.000859928 -0.00103765 -0.0011446 -0.00101325 -0.00142293 -0.00098733 -0.0016944 -0.000959939 -0.0019585 -0.000931084 -0.00221471 -0.000900751 -0.00246251 -0.000868912 -0.00270137 -0.000835535 -0.00293074 -0.000800595 -0.00315008 -0.000764093 -0.00335883 -0.000726064 -0.00355647 -0.000686592 -0.0037425 -0.000645816 -0.00391647 -0.000603932 -0.00407804 -0.000561186 -0.000517853 -0.00422698 0.00214809 -0.000873929 0.00187228 -0.0008818 0.00159314 -0.000886864 0.00131158 -0.00088922 0.00102843 -0.000889002 0.000744553 -0.000886354 0.000460741 -0.000881432 0.000177765 -0.000874397 -0.000103646 -0.000865408 -0.000382805 -0.000854622 -0.00065907 -0.00084219 -0.00093184 -0.000828252 -0.00120055 -0.000812936 -0.00146469 -0.000796352 -0.00172375 -0.000778591 -0.00197728 -0.000759721 -0.00222482 -0.000739787 -0.00246595 -0.000718815 -0.00270023 -0.000696805 -0.00292723 -0.000673746 -0.00314653 -0.000649614 -0.00335768 -0.000624385 -0.00356023 -0.000598042 -0.00375374 -0.000570587 -0.00393775 -0.000542052 -0.00411183 -0.000512507 -0.00427559 -0.000482065 -0.00442864 -0.000450876 -0.00457071 -0.000419121 -0.000386989 -0.00470157 0.000794747 -0.00063041 0.000548158 -0.00063521 0.000299268 -0.000637974 4.88345e-05 -0.000638787 -0.000202403 -0.000637764 -0.00045373 -0.000635027 -0.000704461 -0.000630701 -0.000953947 -0.000624912 -0.00120157 -0.00061778 -0.00144677 -0.000609422 -0.00168901 -0.000599951 -0.0019278 -0.000589467 -0.00216267 -0.000578062 -0.00239321 -0.000565814 -0.00261901 -0.000552788 -0.00283971 -0.000539029 -0.00305493 -0.000524568 -0.00326432 -0.000509417 -0.00346755 -0.000493577 -0.00366426 -0.000477033 -0.00385411 -0.000459767 -0.00403674 -0.000441759 -0.00421178 -0.000422997 -0.00437889 -0.000403485 -0.00453769 -0.00038325 -0.00468784 -0.000362353 -0.00482902 -0.000340886 -0.00496092 -0.000318974 -0.00508329 -0.000296758 -0.000274367 -0.00519591 -0.000637041 -0.00041933 -0.000850181 -0.000422071 -0.00106476 -0.000423393 -0.00128017 -0.000423383 -0.00149578 -0.000422148 -0.00171102 -0.000419792 -0.00192531 -0.000416411 -0.00213812 -0.000412096 -0.00234897 -0.000406934 -0.00255738 -0.000401004 -0.00276295 -0.000394383 -0.00296528 -0.000387138 -0.00316401 -0.00037933 -0.00335881 -0.000371012 -0.00354938 -0.000362223 -0.00373542 -0.000352992 -0.00391665 -0.000343339 -0.0040928 -0.000333267 -0.0042636 -0.000322774 -0.00442878 -0.000311848 -0.00458808 -0.000300473 -0.0047412 -0.000288633 -0.00488788 -0.000276321 -0.00502783 -0.000263538 -0.00516077 -0.00025031 -0.00528643 -0.000236687 -0.00540457 -0.000222751 -0.00551492 -0.00020862 -0.00561725 -0.000194429 -0.000180292 -0.00571133 -0.00215472 -0.000245344 -0.0023299 -0.000246886 -0.00250585 -0.000247441 -0.0026821 -0.000247141 -0.00285814 -0.0002461 -0.00303353 -0.000244406 -0.00320781 -0.00024213 -0.00338058 -0.000239332 -0.00355145 -0.000236065 -0.00372007 -0.000232379 -0.00388614 -0.000228318 -0.00404935 -0.000223923 -0.00420945 -0.000219229 -0.0043662 -0.000214266 -0.00451936 -0.000209057 -0.00466874 -0.000203618 -0.00481412 -0.000197958 -0.00495531 -0.000192078 -0.00509211 -0.000185974 -0.00522432 -0.000179636 -0.00535174 -0.000173052 -0.00547416 -0.00016621 -0.00559138 -0.000159103 -0.00570318 -0.000151733 -0.00580938 -0.000144119 -0.00590976 -0.000136302 -0.00600415 -0.000128361 -0.00609236 -0.000120415 -0.00617414 -0.00011264 -0.000105225 -0.00624921 -0.00376782 -0.000113495 -0.00390019 -0.00011452 -0.00403286 -0.000114767 -0.0041655 -0.000114502 -0.00429774 -0.000113861 -0.00442923 -0.000112915 -0.00455965 -0.00011171 -0.00468871 -0.000110276 -0.00481613 -0.00010864 -0.00494169 -0.000106824 -0.00506515 -0.00010485 -0.00518634 -0.000102737 -0.00530507 -0.000100501 -0.00542118 -9.81553e-05 -0.00553452 -9.5711e-05 -0.00564497 -9.31747e-05 -0.00575238 -9.05495e-05 -0.00585662 -8.78351e-05 -0.00595757 -8.50277e-05 -0.00605508 -8.21209e-05 -0.00614903 -7.9107e-05 -0.00623926 -7.59777e-05 -0.00632563 -7.27276e-05 -0.00640801 -6.93558e-05 -0.00648626 -6.58725e-05 -0.00656025 -6.23075e-05 -0.00662989 -5.87243e-05 -0.00669506 -5.5245e-05 -0.00675558 -5.21178e-05 -4.97865e-05 -0.00681102 -0.00548857 -2.94885e-05 -0.00557279 -3.03003e-05 -0.00565713 -3.04244e-05 -0.00574132 -3.0311e-05 -0.0058251 -3.00807e-05 -0.00590825 -2.97709e-05 -0.00599056 -2.93984e-05 -0.00607186 -2.89721e-05 -0.006152 -2.84985e-05 -0.00623084 -2.79831e-05 -0.00630826 -2.74313e-05 -0.00638415 -2.68482e-05 -0.00645841 -2.6238e-05 -0.00653097 -2.56045e-05 -0.00660173 -2.49503e-05 -0.00667062 -2.42772e-05 -0.00673759 -2.35856e-05 -0.00680255 -2.28749e-05 -0.00686543 -2.21436e-05 -0.00692616 -2.13889e-05 -0.00698466 -2.06076e-05 -0.00704084 -1.9796e-05 -0.00709462 -1.89508e-05 -0.00714591 -1.80695e-05 -0.00719463 -1.71537e-05 -0.00724072 -1.62141e-05 -0.00728416 -1.52822e-05 -0.00732497 -1.44389e-05 -0.00736316 -1.39266e-05 -1.45271e-05 -0.00739842 -0.00733249 -0.00736279 -0.00739321 -0.00742352 -0.0074536 -0.00748337 -0.00751277 -0.00754174 -0.00757024 -0.00759823 -0.00762566 -0.00765251 -0.00767874 -0.00770435 -0.0077293 -0.00775358 -0.00777716 -0.00780004 -0.00782218 -0.00784357 -0.00786418 -0.00788397 -0.00790292 -0.00792099 -0.00793815 -0.00795436 -0.00796964 -0.00798408 -0.00799801 -0.00801253 9.04295e-06 -0.00802158 3.99796e-05 -0.00742936 9.06148e-05 -0.00686165 0.000159538 -0.00631814 0.000245982 -0.00579777 0.000349465 -0.00529939 0.000469684 -0.00482179 0.00060647 -0.00436376 0.000759748 -0.00392412 0.000929513 -0.00350172 0.00111581 -0.00309549 0.00131871 -0.0027044 0.00153833 -0.00232749 0.00177477 -0.00196387 0.00202814 -0.00161269 0.00229857 -0.00127318 0.00258615 -0.00094459 0.00289097 -0.000626227 0.00321308 -0.000317407 0.00355248 -1.74471e-05 0.00390908 0.000274369 0.00428269 0.000558839 0.00467288 0.000836916 0.00507893 0.00110982 0.00549958 0.00137922 0.005933 0.00164749 0.00637667 0.00191806 0.00682684 0.00219612 0.00728165 0.00248909 0.00280995 0.00775168 9.48777e-06 -0.00803107 3.74402e-05 -0.00745731 8.29574e-05 -0.00690717 0.000145122 -0.0063803 0.000223275 -0.00587592 0.000316977 -0.00539309 0.000425952 -0.00493077 0.000550042 -0.00448785 0.000689173 -0.00406325 0.000843327 -0.00365588 0.00101252 -0.00326468 0.00119679 -0.00288867 0.00139617 -0.00252687 0.00161069 -0.00217839 0.00184036 -0.00184236 0.00208513 -0.00151795 0.00234493 -0.00120439 0.0026196 -0.000900891 0.00290887 -0.000606676 0.00321235 -0.000320931 0.00352949 -4.27724e-05 0.00385952 0.000228813 0.00420141 0.00049503 0.00455386 0.000757362 0.00491543 0.00101765 0.00528484 0.00127808 0.00566179 0.0015411 0.00604896 0.00180895 0.00645686 0.0020812 0.00234762 0.00691918 8.86525e-06 -0.00803993 3.4078e-05 -0.00748252 7.48468e-05 -0.00694794 0.000130512 -0.00643597 0.000200567 -0.00594598 0.000284659 -0.00547718 0.000382563 -0.00502867 0.00049415 -0.00459944 0.000619356 -0.00418846 0.000758161 -0.00379468 0.000910565 -0.00341709 0.00107657 -0.00305468 0.00125619 -0.00270649 0.00144937 -0.00237158 0.00165607 -0.00204906 0.00187617 -0.00173805 0.00210949 -0.00143771 0.00235578 -0.00114718 0.0026147 -0.000865594 0.00288581 -0.000592037 0.00316857 -0.000325533 0.00346238 -6.50054e-05 0.00376667 0.00019074 0.00408102 0.000443012 0.0044055 0.000693167 0.00474118 0.000942408 0.00509087 0.0011914 0.00546032 0.0014395 0.00585897 0.00168255 0.00190876 0.00629783 7.93421e-06 -0.00804787 3.03604e-05 -0.00750495 6.65134e-05 -0.00698409 0.000115864 -0.00648532 0.000178027 -0.00600814 0.000252739 -0.0055519 0.000339835 -0.00511577 0.000439225 -0.00469883 0.00055087 -0.0043001 0.00067476 -0.00391857 0.000810896 -0.00355322 0.00095928 -0.00320306 0.0011199 -0.0028671 0.0012927 -0.00254439 0.00147763 -0.00223398 0.00167456 -0.00193498 0.00188333 -0.00164648 0.00210372 -0.00136758 0.0023355 -0.00109737 0.0025784 -0.000834936 0.00283219 -0.000579315 0.00309672 -0.00032954 0.00337211 -8.46483e-05 0.00365888 0.00015624 0.00395828 0.000393772 0.00427258 0.000628107 0.00460546 0.000858522 0.00496215 0.0010828 0.00534871 0.001296 0.00148915 0.00576832 6.92105e-06 -0.00805479 2.65343e-05 -0.00752456 5.81528e-05 -0.00701571 0.00010135 -0.00652851 0.00015584 -0.00606263 0.000221444 -0.0056175 0.000298061 -0.00519238 0.000385651 -0.00478642 0.000484208 -0.00439866 0.000593747 -0.00402811 0.000714293 -0.00367377 0.000845863 -0.00333463 0.000988462 -0.0030097 0.00114208 -0.002698 0.00130667 -0.00239858 0.00148218 -0.00211049 0.00166854 -0.00183283 0.00186565 -0.0015647 0.00207348 -0.0013052 0.002292 -0.00105346 0.00252135 -0.000808667 0.00276186 -0.000570042 0.00301415 -0.000336946 0.00327936 -0.000108965 0.00355919 0.000113937 0.00385611 0.000331187 0.00417329 0.000541343 0.00451436 0.00074174 0.00488246 0.000927891 0.00109322 0.00527839 5.89918e-06 -0.00806069 2.27214e-05 -0.00754138 4.98992e-05 -0.00704289 8.71115e-05 -0.00656573 0.000134169 -0.00610969 0.000190974 -0.0056743 0.000257494 -0.0052589 0.000333742 -0.00486267 0.00041976 -0.00448467 0.000515602 -0.00412395 0.00062133 -0.0037795 0.000737 -0.0034503 0.000862662 -0.00313536 0.000998356 -0.00283369 0.00114411 -0.00254434 0.00129997 -0.00226635 0.00146597 -0.00199883 0.00164219 -0.00174092 0.00182878 -0.00149178 0.00202598 -0.00125066 0.0022342 -0.00101689 0.00245408 -0.00078992 0.00268655 -0.000569418 0.00293292 -0.000355335 0.0031949 -0.000148042 0.00347457 5.152e-05 0.00377421 0.0002417 0.00409596 0.000419985 0.00444114 0.000582717 0.000725088 0.00480927 4.89806e-06 -0.00806558 1.89875e-05 -0.00755547 4.18426e-05 -0.00706574 7.32597e-05 -0.00659714 0.000113147 -0.00614958 0.000161491 -0.00572265 0.000218329 -0.00531574 0.000283737 -0.00492807 0.00035781 -0.00455875 0.000440654 -0.0042068 0.000532381 -0.00387122 0.000633099 -0.00355102 0.000742917 -0.00324518 0.000861946 -0.00295272 0.000990302 -0.00267269 0.00112812 -0.00240417 0.00127557 -0.00214628 0.00143288 -0.00189823 0.00160035 -0.00165926 0.00177842 -0.00142873 0.00196766 -0.00120613 0.00216886 -0.000991117 0.00238301 -0.000783574 0.00261137 -0.000583686 0.00285535 -0.000392028 0.00311651 -0.000209639 0.00339629 -3.808e-05 0.00369575 0.000120529 0.00401511 0.000263355 0.000386909 0.00435329 3.93074e-06 -0.00806951 1.53688e-05 -0.00756691 3.4041e-05 -0.00708442 5.98717e-05 -0.00662297 9.28713e-05 -0.00618258 0.000133111 -0.00576289 0.000180706 -0.00536334 0.000235796 -0.00498316 0.000298539 -0.00462149 0.000369098 -0.00427736 0.000447641 -0.00394977 0.000534338 -0.00363772 0.000629362 -0.00334021 0.000732897 -0.00305626 0.000845143 -0.00278494 0.000966328 -0.00252535 0.00109673 -0.00227668 0.00123667 -0.00203817 0.00138659 -0.00180917 0.00154699 -0.00158914 0.00171854 -0.00137768 0.00190203 -0.0011746 0.00209838 -0.000979922 0.00230863 -0.000793934 0.00253385 -0.000617257 0.00277508 -0.000450867 0.0030331 -0.000296093 0.00330823 -0.000154607 0.00360011 -2.85274e-05 7.9626e-05 0.0039074 3.00685e-06 -0.00807252 1.18862e-05 -0.00757579 2.65303e-05 -0.00709906 4.69989e-05 -0.00664344 7.34059e-05 -0.00620898 0.000105912 -0.00579539 0.000144712 -0.00540214 0.000190014 -0.00502847 0.00024204 -0.00467352 0.000301015 -0.00433633 0.000367166 -0.00401592 0.000440723 -0.00371127 0.000521923 -0.00342141 0.000611018 -0.00314535 0.000708278 -0.0028822 0.000814007 -0.00263108 0.000928551 -0.00239123 0.00105231 -0.00216194 0.00118577 -0.00194263 0.00132947 -0.00173284 0.00148407 -0.00153227 0.00165026 -0.0013408 0.00182885 -0.0011585 0.0020206 -0.000985691 0.00222628 -0.00082293 0.00244645 -0.000671043 0.00268144 -0.000531082 0.00293113 -0.000404293 0.00319481 -0.000292213 -0.000196645 0.00347108 2.14384e-06 -0.00807466 8.55283e-06 -0.0075822 1.93311e-05 -0.00710984 3.46715e-05 -0.00665878 5.47899e-05 -0.0062291 7.99386e-05 -0.00582054 0.000110391 -0.00543259 0.000146429 -0.00506451 0.000188339 -0.00471543 0.000236404 -0.0043844 0.000290911 -0.00407042 0.000352146 -0.00377251 0.000420403 -0.00348966 0.000495988 -0.00322094 0.000579226 -0.00296544 0.000670472 -0.00272233 0.000770115 -0.00249087 0.000878588 -0.00227041 0.000996375 -0.00206041 0.00112401 -0.00186047 0.00126206 -0.00167033 0.00141115 -0.00148989 0.00157187 -0.00131922 0.00174477 -0.0011586 0.00193031 -0.00100847 0.00212876 -0.000869485 0.00234008 -0.000742408 0.00256391 -0.000628119 0.00279938 -0.00052769 -0.00044239 0.00304513 1.35581e-06 -0.00807602 5.36907e-06 -0.00758621 1.24504e-05 -0.00711692 2.2904e-05 -0.00666924 3.70412e-05 -0.00624324 5.52076e-05 -0.00583871 7.77574e-05 -0.00545514 0.000105044 -0.00509179 0.000137414 -0.0047478 0.000175212 -0.00442219 0.000218775 -0.00411399 0.00026844 -0.00382217 0.000324546 -0.00354577 0.000387442 -0.00328383 0.000457488 -0.00303548 0.000535066 -0.00279991 0.000620581 -0.00257638 0.000714465 -0.00236429 0.000817178 -0.00216313 0.0009292 -0.00197249 0.00105102 -0.00179215 0.00118311 -0.00162198 0.00132591 -0.00146202 0.00147978 -0.00131246 0.00164493 -0.00117362 0.0018214 -0.00104595 0.00200895 -0.00092996 0.00220706 -0.000826229 0.00241483 -0.00073546 -0.00065852 0.00263096 4.96575e-07 -0.00807652 2.2906e-06 -0.00758801 5.88388e-06 -0.00712051 1.17002e-05 -0.00667505 2.01645e-05 -0.0062517 3.17207e-05 -0.00585027 4.68033e-05 -0.00547022 6.5834e-05 -0.00511082 8.92211e-05 -0.00477118 0.00011736 -0.00445033 0.000150635 -0.00414726 0.000189423 -0.00386096 0.000234099 -0.00359045 0.000285037 -0.00333477 0.000342619 -0.00309306 0.000407233 -0.00286452 0.000479279 -0.00264843 0.000559167 -0.00244418 0.00064731 -0.00225127 0.00074412 -0.0020693 0.00084999 -0.00189802 0.000965273 -0.00173726 0.00109026 -0.00158701 0.00122514 -0.00144734 0.00136995 -0.00131844 0.00152459 -0.00120058 0.00168868 -0.00109406 0.00186164 -0.000999189 0.00204258 -0.0009164 -0.000846249 0.00223031 -2.8552e-07 -0.00807623 -7.09913e-07 -0.00758758 -3.63397e-07 -0.00712086 1.0643e-06 -0.00667648 4.15912e-06 -0.0062548 9.47093e-06 -0.00585558 1.7512e-05 -0.00547826 2.87694e-05 -0.00512208 4.37068e-05 -0.00478612 6.27662e-05 -0.00446939 8.6371e-05 -0.00417087 0.00011493 -0.00388952 0.000148841 -0.00362436 0.000188493 -0.00337442 0.000234273 -0.00313884 0.000286563 -0.00291681 0.000345741 -0.00270761 0.00041218 -0.00251062 0.00048624 -0.00232533 0.000568256 -0.00215132 0.000658531 -0.00198829 0.000757308 -0.00183604 0.000864754 -0.00169445 0.000980932 -0.00156352 0.00110577 -0.00144328 0.00123905 -0.00133385 0.00138034 -0.00123535 0.00152904 -0.00114789 0.0016843 -0.00107166 -0.001007 0.00184505 -9.72979e-07 -0.00807526 -3.32198e-06 -0.00758523 -6.24057e-06 -0.00711794 -9.00156e-06 -0.00667372 -1.09783e-05 -0.00625282 -1.15509e-05 -0.005855 -1.01342e-05 -0.00547968 -6.18033e-06 -0.00512603 8.24349e-07 -0.00479313 1.13626e-05 -0.00447993 2.58891e-05 -0.00418539 4.48353e-05 -0.00390847 6.86127e-05 -0.00364813 9.7616e-05 -0.00340343 0.000132225 -0.00317345 0.000172803 -0.00295739 0.0002197 -0.00275451 0.000273244 -0.00256416 0.000333737 -0.00238582 0.000401444 -0.00221903 0.00047658 -0.00206343 0.000559301 -0.00191876 0.000649675 -0.00178483 0.000747673 -0.00166152 0.000853146 -0.00154876 0.000965806 -0.00144651 0.00108521 -0.00135476 0.00121077 -0.00127344 0.0013417 -0.00120259 -0.00114236 0.00147706 -1.71027e-06 -0.00807355 -5.93346e-06 -0.00758101 -1.18174e-05 -0.00711206 -1.85098e-05 -0.00666703 -2.52567e-05 -0.00624607 -3.13545e-05 -0.00584891 -3.61489e-05 -0.00547488 -3.90356e-05 -0.00512315 -3.94561e-05 -0.00479271 -3.6894e-05 -0.00448249 -3.08694e-05 -0.00419142 -2.09355e-05 -0.0039184 -6.67496e-06 -0.00366239 1.23033e-05 -0.00342241 3.63649e-05 -0.00319751 6.58504e-05 -0.00298687 0.000101073 -0.00278973 0.000142315 -0.00260541 0.000189822 -0.00243333 0.000243793 -0.002273 0.000304373 -0.00212401 0.00037164 -0.00198603 0.000445591 -0.00185878 0.000526132 -0.00174206 0.000613061 -0.00163569 0.000706065 -0.00153952 0.000804704 -0.0014534 0.000908419 -0.00137716 0.00101651 -0.00131069 -0.00125399 0.00112815 -2.40647e-06 -0.00807114 -8.40923e-06 -0.00757501 -1.70854e-05 -0.00710338 -2.74635e-05 -0.00665665 -3.8678e-05 -0.00623486 -4.99418e-05 -0.00583764 -6.05353e-05 -0.00546429 -6.98023e-05 -0.00511388 -7.71448e-05 -0.00478536 -8.20174e-05 -0.00447762 -8.39217e-05 -0.00418951 -8.24018e-05 -0.00391992 -7.70403e-05 -0.00366776 -6.74557e-05 -0.00343199 -5.33008e-05 -0.00321167 -3.42632e-05 -0.00300591 -1.00662e-05 -0.00281392 1.95274e-05 -0.002635 5.47106e-05 -0.00246851 9.56259e-05 -0.00231391 0.000142357 -0.00217074 0.000194923 -0.00203859 0.000253267 -0.00191712 0.000317248 -0.00180604 0.000386639 -0.00170508 0.000461114 -0.00161399 0.000540257 -0.00153254 0.000623555 -0.00146046 0.000710404 -0.00139754 -0.00134366 0.000800073 -3.02954e-06 -0.00806811 -1.07346e-05 -0.0075673 -2.2036e-05 -0.00709208 -3.58582e-05 -0.00664283 -5.12366e-05 -0.00621948 -6.73055e-05 -0.00582157 -8.32839e-05 -0.00544831 -9.84687e-05 -0.0050987 -0.000112227 -0.0047716 -0.000123989 -0.00446586 -0.000133244 -0.00418026 -0.00013953 -0.00391363 -0.000142435 -0.00366485 -0.000141591 -0.00343283 -0.000136672 -0.00321659 -0.000127395 -0.00301519 -0.000113518 -0.0028278 -9.48463e-05 -0.00265367 -7.12341e-05 -0.00249212 -4.25876e-05 -0.00234256 -8.87183e-06 -0.00220446 2.98849e-05 -0.00207735 7.35856e-05 -0.00196082 0.000122061 -0.00185451 0.000175066 -0.00175808 0.000232282 -0.00167121 0.000293315 -0.00159357 0.000357708 -0.00152485 0.000424953 -0.00146478 -0.00141318 0.000494468 -3.61135e-06 -0.0080645 -1.29125e-05 -0.007558 -2.66644e-05 -0.00707833 -4.3686e-05 -0.00662581 -6.29205e-05 -0.00620025 -8.34286e-05 -0.00580107 -0.000104372 -0.00542737 -0.000125005 -0.00507806 -0.000144665 -0.00475195 -0.000162761 -0.00444776 -0.000178774 -0.00416425 -0.00019224 -0.00390017 -0.000202756 -0.00365433 -0.000209968 -0.00342562 -0.000213573 -0.00321298 -0.000213315 -0.00301545 -0.000208988 -0.00283213 -0.000200436 -0.00266222 -0.00018755 -0.00250501 -0.000170281 -0.00235983 -0.000148631 -0.00222611 -0.000122665 -0.00210332 -9.25093e-05 -0.00199098 -5.83525e-05 -0.00188867 -2.04477e-05 -0.00179599 2.08914e-05 -0.00171255 6.52966e-05 -0.00163798 0.000112351 -0.0015719 0.000161604 -0.00151404 -0.00146431 0.000212736 -4.15683e-06 -0.00806034 -1.49422e-05 -0.00754721 -3.09639e-05 -0.00706231 -5.09348e-05 -0.00660583 -7.37116e-05 -0.00617747 -9.82853e-05 -0.00577649 -0.000123765 -0.00540189 -0.000149367 -0.00505246 -0.0001744 -0.00472691 -0.00019826 -0.0044239 -0.000220418 -0.00414209 -0.000240414 -0.00388017 -0.000257853 -0.0036369 -0.000272398 -0.00341108 -0.000283768 -0.00320161 -0.000291735 -0.00300748 -0.000296122 -0.00282774 -0.000296807 -0.00266154 -0.000293718 -0.0025081 -0.000286835 -0.00236671 -0.000276196 -0.00223675 -0.000261889 -0.00211762 -0.000244062 -0.00200881 -0.000222914 -0.00190982 -0.000198703 -0.0018202 -0.000171734 -0.00173952 -0.000142362 -0.00166735 -0.000110983 -0.00160328 -7.8104e-05 -0.00154692 -0.0014979 -4.45098e-05 -4.66561e-06 -0.00805568 -1.68202e-05 -0.00753506 -3.49247e-05 -0.0070442 -5.75883e-05 -0.00658317 -8.3585e-05 -0.00615147 -0.000111841 -0.00574824 -0.000141418 -0.00537231 -0.000171495 -0.00502238 -0.000201359 -0.00469705 -0.000230391 -0.00439487 -0.000258059 -0.00411442 -0.000283906 -0.00385432 -0.000307547 -0.00361325 -0.000328661 -0.00338996 -0.000346989 -0.00318329 -0.000362327 -0.00299214 -0.000374528 -0.00281554 -0.000383497 -0.00265257 -0.000389191 -0.0025024 -0.00039162 -0.00236428 -0.000390842 -0.00223752 -0.000386967 -0.0021215 -0.000380152 -0.00201562 -0.000370599 -0.00191937 -0.000358554 -0.00183224 -0.000344298 -0.00175377 -0.000328147 -0.0016835 -0.000310438 -0.00162099 -0.0002915 -0.00156585 -0.00151791 -0.000271496 -5.13628e-06 -0.00805054 -1.85409e-05 -0.00752166 -3.85347e-05 -0.00702421 -6.36263e-05 -0.00655808 -9.25115e-05 -0.00612259 -0.000124057 -0.00571669 -0.000157277 -0.00533909 -0.000191322 -0.00498834 -0.000225455 -0.00466291 -0.000259048 -0.00436128 -0.000291565 -0.00408191 -0.000322553 -0.00382334 -0.000351639 -0.00358417 -0.000378516 -0.00336309 -0.000402947 -0.00315886 -0.000424749 -0.00297034 -0.000443802 -0.00279649 -0.000460034 -0.00263634 -0.00047343 -0.00248901 -0.00048402 -0.00235369 -0.000491883 -0.00222966 -0.000497142 -0.00211624 -0.000499963 -0.0020128 -0.000500548 -0.00191879 -0.000499135 -0.00183366 -0.000495992 -0.00175691 -0.000491409 -0.00168808 -0.000485693 -0.00162671 -0.00047916 -0.00157239 -0.00152487 -0.0004722 -5.56694e-06 -0.00804498 -2.00979e-05 -0.00750712 -4.17801e-05 -0.00700253 -6.90258e-05 -0.00653083 -0.000100458 -0.00609116 -0.000134886 -0.00568226 -0.000171284 -0.00530269 -0.000208772 -0.00495085 -0.000246596 -0.00462509 -0.000284116 -0.00432376 -0.000320794 -0.00404523 -0.000356184 -0.00378795 -0.000389922 -0.00355043 -0.000421718 -0.00333129 -0.00045135 -0.00312922 -0.00047866 -0.00294303 -0.000503547 -0.0027716 -0.000525964 -0.00261392 -0.000545915 -0.00246906 -0.000563453 -0.00233616 -0.000578671 -0.00221444 -0.000591707 -0.0021032 -0.000602731 -0.00200178 -0.00061195 -0.00190957 -0.000619598 -0.00182601 -0.000625933 -0.00175058 -0.000631235 -0.00168278 -0.000635796 -0.00162215 -0.000639926 -0.00156826 -0.0015208 -0.000643994 -5.9557e-06 -0.00803902 -2.14839e-05 -0.0074916 -4.46449e-05 -0.00697937 -7.37614e-05 -0.00650172 -0.000107388 -0.00605753 -0.000144282 -0.00564537 -0.000183379 -0.00526359 -0.000223771 -0.00491046 -0.000264687 -0.00458417 -0.000305479 -0.00428296 -0.000345608 -0.0040051 -0.000384632 -0.00374892 -0.000422198 -0.00351287 -0.000458028 -0.00329546 -0.00049192 -0.00309533 -0.000523733 -0.00291122 -0.000553388 -0.00274195 -0.000580857 -0.00258645 -0.000606166 -0.00244375 -0.000629381 -0.00231294 -0.000650614 -0.00219321 -0.000670012 -0.0020838 -0.000687755 -0.00198404 -0.000704052 -0.00189327 -0.000719136 -0.00181092 -0.000733261 -0.00173645 -0.000746695 -0.00166935 -0.000759719 -0.00160912 -0.000772626 -0.00155535 -0.00150768 -0.000785743 -6.30078e-06 -0.00803272 -2.26897e-05 -0.00747521 -4.71108e-05 -0.00695494 -7.78053e-05 -0.00647102 -0.000113264 -0.00602207 -0.000152197 -0.00560644 -0.000193502 -0.00522229 -0.000236245 -0.00486772 -0.000279639 -0.00454078 -0.000323029 -0.00423957 -0.000365874 -0.00396225 -0.000407738 -0.00370706 -0.000448276 -0.00347233 -0.000487225 -0.00325651 -0.000524398 -0.00305816 -0.000559671 -0.00287594 -0.000592984 -0.00270863 -0.000624329 -0.00255511 -0.000653747 -0.00241433 -0.000681323 -0.00228537 -0.000707181 -0.00216735 -0.00073148 -0.0020595 -0.000754409 -0.00196111 -0.00077618 -0.0018715 -0.000797028 -0.00179008 -0.000817203 -0.00171628 -0.000836967 -0.00164958 -0.000856586 -0.0015895 -0.000876335 -0.0015356 -0.00148751 -0.00089651 -6.59872e-06 -0.00802612 -2.37026e-05 -0.0074581 -4.91553e-05 -0.00692949 -8.11264e-05 -0.00643905 -0.000118049 -0.00598515 -0.000158584 -0.0055659 -0.000201597 -0.00517928 -0.000246126 -0.00482319 -0.000291371 -0.00449554 -0.000336667 -0.00419428 -0.000381475 -0.00391745 -0.000425361 -0.00366317 -0.000467991 -0.0034297 -0.000509114 -0.00321539 -0.000548557 -0.00301872 -0.000586214 -0.00283829 -0.00062204 -0.00267281 -0.000656044 -0.0025211 -0.000688286 -0.00238209 -0.000718864 -0.00225479 -0.000747918 -0.0021383 -0.000775616 -0.00203181 -0.000802157 -0.00193457 -0.000827759 -0.0018459 -0.000852659 -0.00176518 -0.000877107 -0.00169183 -0.000901359 -0.00162533 -0.000925673 -0.00156519 -0.000950308 -0.00151097 -0.00146227 -0.000975539 -6.84214e-06 -0.00801928 -2.45019e-05 -0.00744044 -5.07484e-05 -0.00690325 -8.369e-05 -0.00640611 -0.000121703 -0.00594714 -0.000163401 -0.0055242 -0.000207613 -0.00513507 -0.000253356 -0.00477744 -0.000299811 -0.00444908 -0.00034631 -0.00414778 -0.00039231 -0.00387145 -0.000437384 -0.0036181 -0.000481205 -0.00338588 -0.000523534 -0.00317306 -0.000564211 -0.00297804 -0.000603146 -0.00279935 -0.000640311 -0.00263564 -0.00067573 -0.00248568 -0.000709477 -0.00234834 -0.000741668 -0.0022226 -0.000772455 -0.00210751 -0.000802018 -0.00200224 -0.000830565 -0.00190602 -0.000858323 -0.00181814 -0.000885534 -0.00173796 -0.000912449 -0.00166492 -0.000939323 -0.00159846 -0.000966408 -0.00153811 -0.000993959 -0.00148341 -0.001434 -0.00102224 -7.01217e-06 -0.00801227 -2.5051e-05 -0.0074224 -5.18489e-05 -0.00687645 -8.54565e-05 -0.0063725 -0.000124188 -0.0059084 -0.00016661 -0.00548178 -0.000211513 -0.00509016 -0.000257889 -0.00473107 -0.000304908 -0.00440206 -0.000351894 -0.00410079 -0.000398304 -0.00382504 -0.000443716 -0.00357269 -0.000487811 -0.00334178 -0.00053036 -0.00313051 -0.000571217 -0.00293718 -0.000610306 -0.00276026 -0.000647612 -0.00259834 -0.000683177 -0.00245012 -0.00071709 -0.00231443 -0.00074948 -0.00219021 -0.000780513 -0.00207648 -0.000810384 -0.00197237 -0.000839309 -0.00187709 -0.000867527 -0.00178992 -0.000895285 -0.00171021 -0.00092284 -0.00163736 -0.000950453 -0.00157085 -0.000978375 -0.00151018 -0.00100686 -0.00145493 -0.00140469 -0.00103617 -7.06265e-06 -0.0080052 -2.5283e-05 -0.00740418 -5.23988e-05 -0.00684933 -8.63827e-05 -0.00633852 -0.000125474 -0.00586931 -0.000168184 -0.00543907 -0.000213268 -0.00504508 -0.000259697 -0.00468464 -0.000306627 -0.00435513 -0.000353377 -0.00405404 -0.000399407 -0.00377901 -0.000444298 -0.0035278 -0.000487738 -0.00329834 -0.00052951 -0.00308874 -0.000569479 -0.00289721 -0.000607583 -0.00272216 -0.000643821 -0.0025621 -0.000678249 -0.00241569 -0.000710972 -0.00228171 -0.000742133 -0.00215904 -0.000771912 -0.0020467 -0.000800516 -0.00194377 -0.000828178 -0.00184943 -0.000855143 -0.00176296 -0.000881673 -0.00168368 -0.000908034 -0.001611 -0.000934491 -0.00154439 -0.000961307 -0.00148337 -0.00098874 -0.0014275 -0.00137637 -0.00101705 -6.84764e-06 -0.00799836 -2.50584e-05 -0.00738597 -5.23161e-05 -0.00682207 -8.64278e-05 -0.00630441 -0.00012554 -0.0058302 -0.000168113 -0.0053965 -0.000212871 -0.00500032 -0.000258768 -0.00463874 -0.000304954 -0.00430895 -0.000350743 -0.00400825 -0.000395597 -0.00373415 -0.000439101 -0.00348429 -0.000480953 -0.00325649 -0.000520945 -0.00304874 -0.000558952 -0.00285921 -0.000594925 -0.00268619 -0.000628878 -0.00252815 -0.000660879 -0.00238369 -0.000691048 -0.00225154 -0.000719545 -0.00213055 -0.000746562 -0.00201968 -0.000772323 -0.00191801 -0.000797072 -0.00182468 -0.000821071 -0.00173896 -0.000844593 -0.00166015 -0.000867918 -0.00158767 -0.000891324 -0.00152098 -0.000915085 -0.00145961 -0.000939474 -0.00140311 -0.00135108 -0.000964769 -5.85557e-06 -2.41279e-05 -5.15227e-05 -8.5581e-05 -0.000124398 -0.000166412 -0.000210336 -0.000255117 -0.000299899 -0.000343998 -0.000386879 -0.000428132 -0.000467461 -0.000504668 -0.00053964 -0.000572337 -0.000602787 -0.000631072 -0.000657326 -0.000681723 -0.000704472 -0.000725813 -0.000746005 -0.000765326 -0.000784066 -0.000802519 -0.000820981 -0.000839744 -0.000859097 -0.000879343 -0.000804228 -0.00781145 0.0078543 -0.000621499 -0.00781738 0.00763465 -0.000385958 -0.00750226 0.00726672 -1.40512e-05 -0.00789258 0.00752067 0.000448114 -0.00800744 0.00754528 0.000991382 -0.00809617 0.0075529 0.00160076 -0.00783242 0.00722305 0.00226422 -0.00723213 0.00656867 0.00297326 -0.006191 0.00548196 0.00371842 -0.00472182 0.00397666 0.00449414 -0.00284079 0.00206506 0.00529399 -0.000630192 -0.000169653 0.00611383 0.00178313 -0.00260297 0.00694977 0.00421259 -0.00504853 0.00779997 0.00641786 -0.00726806 0.00866404 0.00810884 -0.00897291 0.00954343 0.00896358 -0.00984297 0.01044 0.00865748 -0.009554 0.0113539 0.00690994 -0.00782393 0.012281 0.00354732 -0.00447439 0.0132094 -0.00142741 0.00049905 0.0141186 -0.00777943 0.0068702 0.0149819 -0.0150287 0.0141654 0.0157716 -0.0224966 0.0217069 0.0164668 -0.0294034 0.0287082 0.0170607 -0.034986 0.034392 0.017566 -0.0385866 0.0380813 0.0180147 -0.0397042 0.0392554 0.0184536 -0.0380061 0.0375673 0.01893 -0.0334017 0.0329253 0.0194765 -0.02612 0.0255735 0.0200951 -0.0169145 0.0162958 0.0207583 -0.00689484 0.00623173 0.0214139 0.00239959 -0.00305528 0.022012 0.00998082 -0.0105789 0.0225046 0.0146618 -0.0151543 0.0228803 0.0172436 -0.0176193 0.023118 0.0166163 -0.016854 0.0232664 0.0163205 -0.0164689 0.012153 -0.012169 -0.000636999 -0.00778485 -0.000441561 -0.00801281 -0.00019322 -0.00775061 0.000186387 -0.00827219 0.000648301 -0.00846936 0.00119087 -0.00863873 0.0017974 -0.00843895 0.00245641 -0.00789114 0.00316047 -0.00689506 0.00390092 -0.00546228 0.004673 -0.00361286 0.00547085 -0.00142804 0.00629073 0.000963246 0.00712886 0.00337446 0.0079832 0.00556352 0.00885283 0.00723921 0.00973834 0.00807807 0.0106404 0.0077554 0.0115581 0.00599229 0.0124856 0.00261978 0.0134102 -0.00235195 0.0143108 -0.00868005 0.0151608 -0.0158788 0.0159334 -0.0232692 0.016609 -0.030079 0.017182 -0.0355589 0.0176658 -0.0390703 0.0180931 -0.0401315 0.0185109 -0.0384239 0.0189673 -0.0338582 0.0194961 -0.0266488 0.0201004 -0.0175188 0.0207534 -0.00754786 0.0214032 0.0017498 0.0219989 0.00938515 0.0224913 0.0141693 0.0228683 0.0168667 0.0231077 0.0163769 0.0232582 0.01617 0.0121351 -0.000434735 -0.00777747 -0.000227327 -0.00822022 3.92578e-05 -0.00801719 0.000421254 -0.00865418 0.000885384 -0.00893349 0.00142641 -0.00917976 0.00202887 -0.00904141 0.00268186 -0.00854413 0.00337916 -0.00759235 0.00411295 -0.00619607 0.00487933 -0.00437924 0.00567304 -0.00222176 0.00649079 0.000145502 0.00732888 0.00253637 0.00818511 0.00470728 0.00905802 0.0063663 0.00994734 0.00718875 0.0108526 0.00685012 0.0117716 0.00507334 0.0126972 0.00169414 0.0136157 -0.00327046 0.0145057 -0.00957003 0.0153408 -0.0167139 0.016095 -0.0240235 0.0167501 -0.0307341 0.0173016 -0.0361105 0.0177638 -0.0395325 0.0181697 -0.0405374 0.0185666 -0.0388208 0.0190033 -0.0342948 0.0195143 -0.0271598 0.0201041 -0.0181086 0.0207467 -0.00819054 0.0213904 0.00110611 0.0219836 0.00879197 0.022476 0.0136769 0.0228545 0.0164882 0.0230961 0.0161353 0.0232494 0.0160167 0.0121148 -0.000196178 -0.00779431 1.34934e-05 -0.00842989 0.000298875 -0.00830257 0.00069165 -0.00904696 0.00115822 -0.00940006 0.00169683 -0.00971837 0.00229398 -0.00963856 0.00293941 -0.00918956 0.00362818 -0.00828112 0.00435341 -0.0069213 0.00511204 -0.00513788 0.00589953 -0.00300924 0.00671293 -0.000667902 0.00754878 0.00170052 0.00840464 0.00385142 0.00927853 0.00549241 0.0101693 0.00629796 0.0110754 0.00594401 0.0119933 0.00415549 0.0129147 0.000772708 0.013825 -0.00418071 0.0147023 -0.0104474 0.0155208 -0.0175324 0.0162555 -0.0247582 0.0168893 -0.0313679 0.017419 -0.0366402 0.0178596 -0.0399731 0.0182443 -0.0409221 0.0186206 -0.0391971 0.0190375 -0.0347118 0.0195308 -0.027653 0.0201059 -0.0186838 0.0207381 -0.0088227 0.0213755 0.000468692 0.0219661 0.00820134 0.0224587 0.0131844 0.0228391 0.0161078 0.0230834 0.015891 0.0232401 0.01586 0.0120911 7.7498e-05 -0.00784148 0.000307843 -0.00866024 0.000596886 -0.00859161 0.00099667 -0.00944674 0.00146544 -0.00986883 0.00200071 -0.0102536 0.0025913 -0.0102292 0.00322763 -0.00982589 0.00390614 -0.00895963 0.00462092 -0.00763608 0.00536983 -0.00588679 0.006149 -0.00378841 0.00695593 -0.00147483 0.00778734 0.000869106 0.00864056 0.0029982 0.00951314 0.00461984 0.0104031 0.00540804 0.0113076 0.00503943 0.0122221 0.00324107 0.013137 -0.000142208 0.0140368 -0.00508056 0.0148997 -0.0113103 0.0157 -0.0183327 0.016414 -0.0254721 0.0170259 -0.0319797 0.0175335 -0.0371478 0.0179525 -0.0403921 0.0183163 -0.0412859 0.0186723 -0.0395531 0.0190698 -0.0351094 0.0195454 -0.0281286 0.020106 -0.0192443 0.0207275 -0.00944419 0.0213585 -0.000162329 0.0219465 0.00761328 0.0224393 0.0126916 0.022822 0.0157251 0.0230695 0.0156435 0.0232302 0.0156993 0.0120633 0.000368478 -0.00790199 0.00062618 -0.00891794 0.000928704 -0.00889414 0.00133487 -0.00985291 0.00180542 -0.0103394 0.00233636 -0.0107846 0.00291912 -0.0108119 0.00354483 -0.0104516 0.00421138 -0.00962617 0.00491389 -0.00833859 0.00565114 -0.00662404 0.00641999 -0.00455726 0.00721835 -0.00227319 0.00804315 4.43011e-05 0.00889151 0.00214985 0.00976049 0.00375086 0.0106472 0.0045213 0.0115479 0.00413873 0.0124566 0.00233243 0.0133627 -0.00104836 0.0142501 -0.00596794 0.0150966 -0.0121568 0.0158774 -0.0191135 0.0165697 -0.0261644 0.017159 -0.032569 0.0176444 -0.0376332 0.018042 -0.0407897 0.0183852 -0.0416291 0.0187213 -0.0398892 0.0190999 -0.0354879 0.0195581 -0.0285868 0.020104 -0.0197902 0.0207148 -0.0100549 0.0213393 -0.000786861 0.0219248 0.00702779 0.022418 0.0121984 0.0228032 0.0153399 0.0230544 0.0153923 0.0232197 0.015534 0.0120306 0.000694884 -0.00798401 0.000974532 -0.00919759 0.00129242 -0.00921202 0.0017045 -0.010265 0.00217631 -0.0108112 0.00270187 -0.0113101 0.0032755 -0.0113855 0.00388909 -0.0110652 0.00454201 -0.0102791 0.0052305 -0.00902708 0.00595424 -0.00734778 0.00671081 -0.00531383 0.00749863 -0.003061 0.0083146 -0.000771669 0.00915596 0.00130848 0.0100191 0.00288773 0.0109004 0.00364004 0.0117949 0.00324421 0.0126955 0.00143183 0.0135907 -0.00194356 0.0144636 -0.00684084 0.0152921 -0.0129853 0.016052 -0.0198734 0.0167216 -0.0268341 0.017288 -0.0331354 0.0177511 -0.0380964 0.0181276 -0.0411661 0.0184507 -0.0419523 0.0187674 -0.0402059 0.0191274 -0.0358479 0.0195685 -0.0290279 0.0200999 -0.0203217 0.0206999 -0.0106549 0.0213179 -0.00140486 0.0219009 0.00644485 0.0223946 0.0117046 0.0227827 0.0149519 0.0230381 0.0151369 0.0232087 0.0153634 0.0119923 0.00105173 -0.00809021 0.00135194 -0.00949779 0.00168622 -0.0095463 0.00210365 -0.0106824 0.00257602 -0.0112836 0.0030951 -0.0118292 0.00365825 -0.0119487 0.00425823 -0.0116652 0.00489594 -0.0109168 0.00556872 -0.00969986 0.00627717 -0.00805623 0.00701961 -0.00605627 0.00779487 -0.00383627 0.00860008 -0.00157688 0.00943229 0.000476269 0.0102874 0.00203261 0.011161 0.00276649 0.0120471 0.00235811 0.0129374 0.00054149 0.0138196 -0.00282573 0.0146761 -0.00769737 0.015485 -0.0137942 0.0162227 -0.0206111 0.016869 -0.0274803 0.0174121 -0.0336785 0.0178529 -0.0385373 0.0182086 -0.0415217 0.0185121 -0.0422558 0.0188101 -0.0405039 0.0191521 -0.0361898 0.0195764 -0.0294522 0.0200935 -0.0208388 0.0206828 -0.0112442 0.0212943 -0.00201632 0.0218747 0.0058644 0.0223693 0.0112101 0.0227605 0.0145606 0.0230207 0.0148768 0.0231971 0.0151869 0.0119475 0.00143707 -0.00822243 0.00175686 -0.00981757 0.00210815 -0.00989759 0.00253021 -0.0111045 0.00300228 -0.0117556 0.00351367 -0.0123406 0.00406498 -0.0125 0.0046499 -0.0122501 0.00527085 -0.0115378 0.00592632 -0.0103553 0.0066178 -0.0087477 0.00734434 -0.00678282 0.0081052 -0.00459712 0.00889771 -0.0023694 0.00971873 -0.000344749 0.0105637 0.00118762 0.0114274 0.00190279 0.0123029 0.0014826 0.0131809 -0.00033648 0.014048 -0.00369286 0.0148864 -0.00853575 0.0156742 -0.014582 0.0163888 -0.0213256 0.017011 -0.0281026 0.0175305 -0.034198 0.0179493 -0.038956 0.0182846 -0.041857 0.0185692 -0.0425404 0.0188491 -0.0407838 0.0191736 -0.0365144 0.0195817 -0.0298603 0.0200847 -0.0213419 0.0206634 -0.0118229 0.0212684 -0.00262128 0.0218464 0.00528638 0.0223419 0.0107146 0.0227367 0.0141658 0.023002 0.0146115 0.0231851 0.0150039 0.0118956 0.00184927 -0.00838212 0.00218755 -0.0101559 0.00255609 -0.0102661 0.00298188 -0.0115303 0.00345258 -0.0122263 0.00395503 -0.0128431 0.00449309 -0.0130381 0.00506152 -0.0128185 0.00566423 -0.0121405 0.00630089 -0.010992 0.00697383 -0.00942064 0.00768284 -0.00749183 0.00842756 -0.00534184 0.00920555 -0.00314738 0.0100134 -0.00115263 0.0108463 0.000354743 0.0116981 0.001051 0.012561 0.00061973 0.0134245 -0.00120006 0.0142748 -0.00454307 0.0150933 -0.00935433 0.0158587 -0.0153474 0.0165491 -0.022016 0.0171467 -0.0287002 0.0176425 -0.0346938 0.0180395 -0.039353 0.0183549 -0.0421725 0.0186213 -0.0428068 0.0188839 -0.0410464 0.0191916 -0.0368221 0.019584 -0.0302526 0.0200734 -0.0218313 0.0206416 -0.0123912 0.0212402 -0.00321985 0.0218159 0.00471068 0.0223125 0.010218 0.0227112 0.0137671 0.0229823 0.0143404 0.0231724 0.0148137 0.0118356 0.00228672 -0.00857048 0.00264213 -0.0105113 0.00302777 -0.0106518 0.00345621 -0.0119587 0.00392426 -0.0126944 0.00441641 -0.0133352 0.00493978 -0.0135614 0.00549033 -0.0133691 0.00607341 -0.0127236 0.00668985 -0.0116084 0.00734281 -0.0100736 0.00803278 -0.00818179 0.00875976 -0.00606882 0.0095215 -0.00390912 0.0103145 -0.0019456 0.0111333 -0.00046409 0.0119712 0.000213058 0.0128195 -0.00022853 0.0136668 -0.00204737 0.0144984 -0.00537462 0.0152956 -0.0101516 0.0160373 -0.0160891 0.0167027 -0.0226814 0.0172754 -0.0292729 0.0177475 -0.0351659 0.0181229 -0.0397284 0.0184191 -0.0424687 0.018668 -0.0430557 0.0189141 -0.0412925 0.0192059 -0.037114 0.0195831 -0.0306298 0.0200592 -0.0223073 0.0206173 -0.0129493 0.0212096 -0.00381214 0.0217831 0.00413714 0.0222811 0.00971996 0.0226841 0.0133641 0.0229614 0.0140632 0.0231592 0.0146159 0.011767 0.00274778 -0.00878862 0.00311857 -0.0108821 0.00352079 -0.011054 0.00395057 -0.0123885 0.00441446 -0.0131583 0.00489488 -0.0138156 0.00540209 -0.0140686 0.00593341 -0.0139004 0.00649555 -0.0132857 0.0070905 -0.0122034 0.00772218 -0.0107053 0.00839173 -0.00885135 0.00909952 -0.00677661 0.00984344 -0.00465303 0.0106198 -0.00272199 0.0114229 -0.00126714 0.0122451 -0.0006092 0.013077 -0.00106037 0.0139062 -0.00287664 0.0147175 -0.00618588 0.015492 -0.0109261 0.0162091 -0.0168061 0.0168488 -0.0233211 0.0173962 -0.0298203 0.0178448 -0.0356145 0.0181991 -0.0400827 0.0184767 -0.0427463 0.0187089 -0.0432879 0.0189394 -0.041523 0.0192161 -0.0373907 0.0195789 -0.0309926 0.0200421 -0.0227706 0.0205903 -0.0134974 0.0211765 -0.00439836 0.0217481 0.00356559 0.0222477 0.0092203 0.0226553 0.0129565 0.0229393 0.0137792 0.0231455 0.0144096 0.0116888 0.00323074 -0.00903756 0.00361476 -0.0112661 0.0040326 -0.0114718 0.0044622 -0.0128181 0.00492018 -0.0136162 0.00538735 -0.0142828 0.00587692 -0.0145582 0.00638771 -0.0144112 0.0069277 -0.0138257 0.0075 -0.0127757 0.00810924 -0.0113145 0.00875717 -0.00949928 0.00944446 -0.00746391 0.0101692 -0.00537773 0.0109274 -0.00348027 0.0117131 -0.0020528 0.012518 -0.00141411 0.0133317 -0.00187411 0.0141414 -0.00368627 0.0149309 -0.00697538 0.0156815 -0.0116767 0.0163729 -0.0174976 0.0169864 -0.0239346 0.0175084 -0.0303423 0.0179336 -0.0360397 0.0182673 -0.0404164 0.0185272 -0.0430061 0.0187437 -0.0435044 0.0189595 -0.0417389 0.019222 -0.0376531 0.019571 -0.0313416 0.020022 -0.0232216 0.0205606 -0.014036 0.021141 -0.00497873 0.0217107 0.00299584 0.0222123 0.00871873 0.0226249 0.0125439 0.0229161 0.013488 0.0231313 0.0141944 0.0116005 0.00373382 -0.00931835 0.0041285 -0.0116608 0.00456051 -0.0119038 0.00498817 -0.0132458 0.00543827 -0.0140663 0.00589058 -0.0147351 0.00636104 -0.0150287 0.00685006 -0.0149002 0.00736678 -0.0143424 0.00791543 -0.0133243 0.00850122 -0.0119003 0.00912649 -0.0101245 0.00979216 -0.00812958 0.0104964 -0.00608197 0.0112352 -0.00421908 0.012002 -0.00281961 0.0127881 -0.00220017 0.0135822 -0.00266823 0.0143707 -0.00447479 0.0151372 -0.00774183 0.0158627 -0.0124022 0.0165278 -0.0181626 0.0171147 -0.0245215 0.0176112 -0.0308388 0.0180134 -0.0364419 0.0183272 -0.0407302 0.01857 -0.043249 0.0187718 -0.0437061 0.018974 -0.041941 0.0192231 -0.0379023 0.0195592 -0.0316777 0.0199986 -0.023661 0.020528 -0.0145655 0.0211029 -0.00555353 0.0216711 0.00242763 0.0221748 0.00821497 0.0225928 0.012126 0.0228917 0.013189 0.0231165 0.0139696 0.0115011 0.00425513 -0.00963208 0.0046575 -0.0120631 0.0051017 -0.012348 0.00552544 -0.0136695 0.00596547 -0.0145064 0.00640123 -0.0151709 0.0068511 -0.0154785 0.00731719 -0.0153663 0.00780966 -0.0148349 0.00833377 -0.0138485 0.00889528 -0.0124618 0.00949703 -0.0107263 0.0101401 -0.0087727 0.0108229 -0.0067647 0.0115411 -0.00493727 0.0122877 -0.0035663 0.0130536 -0.00296603 0.0138268 -0.00344139 0.0145929 -0.00524092 0.0153351 -0.00848407 0.0160348 -0.0131019 0.0166728 -0.0188007 0.0172329 -0.0250816 0.0177041 -0.03131 0.0180836 -0.0368215 0.0183781 -0.0410247 0.0186049 -0.0434758 0.0187929 -0.0438941 0.0189825 -0.0421306 0.0192193 -0.0381391 0.0195434 -0.0320018 0.0199717 -0.0240893 0.0204925 -0.0150863 0.0210621 -0.00612309 0.021629 0.0018607 0.0221353 0.0077087 0.022559 0.0117023 0.0228662 0.0128818 0.0231012 0.0137346 0.01139 0.00479269 -0.00997996 0.00519942 -0.0124699 0.00565324 -0.0128019 0.00607085 -0.0140871 0.00649839 -0.0149339 0.00691586 -0.0155883 0.00734367 -0.0159063 0.00778575 -0.0158084 0.00825311 -0.0153022 0.00875199 -0.0143473 0.00928856 -0.0129984 0.0098661 -0.0113038 0.0104859 -0.0093925 0.0111463 -0.00742505 0.0118428 -0.00563384 0.0125683 -0.00429178 0.0133128 -0.00371053 0.0140638 -0.0041924 0.0148064 -0.00598353 0.0155235 -0.00920113 0.0161965 -0.0137749 0.0168071 -0.0194113 0.0173402 -0.0256147 0.0177863 -0.0317561 0.0181437 -0.0371789 0.0184197 -0.0413007 0.0186313 -0.0436874 0.0188066 -0.0440694 0.0189847 -0.0423087 0.0192103 -0.0383648 0.0195233 -0.0323147 0.0199413 -0.0245074 0.020454 -0.0155989 0.0210187 -0.00668779 0.0215846 0.00129473 0.0220937 0.0071996 0.0225236 0.0112724 0.0228396 0.0125658 0.0230854 0.0134889 0.0112665 0.00534437 -0.0103633 0.00575184 -0.0128773 0.00621206 -0.0132621 0.00662108 -0.0144961 0.00703355 -0.0153464 0.00743093 -0.0159857 0.00783529 -0.0163107 0.00825237 -0.0162255 0.00869391 -0.0157438 0.009167 -0.0148204 0.00967815 -0.0135095 0.010231 -0.0118567 0.0108269 -0.00998843 0.0114643 -0.00806237 0.0121384 -0.00630801 0.0128418 -0.00499516 0.013564 -0.0044327 0.0142918 -0.00492026 0.01501 -0.00670169 0.0157011 -0.00989222 0.0163468 -0.0144206 0.0169298 -0.0199943 0.0174359 -0.0261209 0.0178572 -0.0321773 0.0181931 -0.0375148 0.0184514 -0.041559 0.0186489 -0.0438849 0.0188126 -0.044233 0.0189804 -0.0424765 0.0191959 -0.0385803 0.0194986 -0.0326175 0.0199072 -0.0249159 0.0204122 -0.016104 0.0209725 -0.00724803 0.0215378 0.000729387 0.0220501 0.00668731 0.0224866 0.0108359 0.0228119 0.0122406 0.023069 0.0132317 0.0111298 0.00590789 -0.0107837 0.00631228 -0.0132817 0.00677499 -0.0137248 0.00717274 -0.0148939 0.00756738 -0.015741 0.00794287 -0.0163612 0.00832244 -0.0166903 0.00871366 -0.0166167 0.00912881 -0.0161589 0.00957573 -0.0152673 0.0100612 -0.013995 0.010589 -0.0123845 0.0111608 -0.0105601 0.0117746 -0.0086762 0.0124258 -0.00695921 0.0131063 -0.00567573 0.0138054 -0.00513175 0.0145093 -0.00562419 0.0152023 -0.00739465 0.0158668 -0.0105567 0.0164848 -0.0150387 0.0170399 -0.0205493 0.0175193 -0.0266002 0.0179163 -0.0325743 0.0182314 -0.03783 0.018473 -0.0418005 0.0186574 -0.0440693 0.0188106 -0.0443863 0.0189692 -0.0426351 0.0191757 -0.0387867 0.0194692 -0.0329111 0.0198691 -0.0253157 0.0203672 -0.0166021 0.0209234 -0.00780429 0.0214885 0.000164288 0.0220044 0.00617146 0.0224479 0.0103924 0.022783 0.0119055 0.0230522 0.0129625 0.0109792 0.00648076 -0.0112428 0.00687819 -0.0136791 0.00733874 -0.0141853 0.0077223 -0.0152774 0.00809628 -0.016115 0.00844806 -0.016713 0.00880161 -0.0170438 0.00916623 -0.0169813 0.00955459 -0.0165473 0.00997514 -0.0156879 0.0104348 -0.0144546 0.0109376 -0.0128873 0.0114849 -0.0111075 0.012075 -0.00926627 0.0127028 -0.00758704 0.0133601 -0.006333 0.0140355 -0.00580712 0.0147148 -0.00630356 0.015382 -0.00806183 0.0160195 -0.0111942 0.0166097 -0.0156288 0.0171369 -0.0210766 0.0175898 -0.0270531 0.017963 -0.0329475 0.0182582 -0.0381251 0.0184839 -0.0420262 0.0186563 -0.0442417 0.0188003 -0.0445302 0.0189509 -0.0427857 0.0191495 -0.0389854 0.019435 -0.0331965 0.019827 -0.0257077 0.0203188 -0.0170939 0.0208715 -0.00835707 0.0214368 -0.00040097 0.0219566 0.00565166 0.0224075 0.00994146 0.022753 0.01156 0.0230348 0.0126807 0.010814 0.00706031 -0.0117423 0.00744693 -0.0140657 0.00789992 -0.0146383 0.00826615 -0.0156437 0.00861659 -0.0164654 0.00894288 -0.0170393 0.00926929 -0.0173702 0.00960674 -0.0173188 0.00996807 -0.0169086 0.0103622 -0.016082 0.0107962 -0.0148886 0.011274 -0.0133652 0.011797 -0.0116305 0.0123633 -0.00983256 0.0129676 -0.00819136 0.0136013 -0.00696669 0.0142526 -0.00645841 0.014907 -0.00695796 0.015548 -0.00870287 0.0161582 -0.0118043 0.0167204 -0.0161911 0.01722 -0.0215762 0.0176469 -0.02748 0.017997 -0.0332976 0.018273 -0.0384012 0.018484 -0.0422372 0.0186455 -0.0444033 0.0187815 -0.0446661 0.0189253 -0.0429295 0.0191172 -0.0391773 0.0193956 -0.0334749 0.0197807 -0.0260928 0.0202669 -0.0175801 0.0208167 -0.00890689 0.0213825 -0.000966825 0.0219067 0.00512748 0.0223655 0.00948262 0.0227218 0.0112037 0.0230169 0.0123857 0.0106335 0.00764359 -0.0122841 0.00801577 -0.0144379 0.00845504 -0.0150776 0.00880058 -0.0159892 0.00912461 -0.0167895 0.00942373 -0.0173384 0.00972205 -0.0176686 0.0100319 -0.0176286 0.0103662 -0.0172428 0.0107341 -0.01645 0.0111426 -0.015297 0.0115957 -0.0138183 0.0120947 -0.0121294 0.0126373 -0.0103752 0.0132182 -0.00877219 0.0138282 -0.00757672 0.0144552 -0.00708547 0.0150845 -0.00758719 0.0156992 -0.00931756 0.0162819 -0.0123871 0.0168163 -0.0167254 0.0172885 -0.0220485 0.0176899 -0.0278814 0.0180177 -0.0336254 0.0182755 -0.038659 0.0184728 -0.0424345 0.0186247 -0.0445553 0.0187538 -0.0447952 0.0188921 -0.0430678 0.0190786 -0.0393637 0.019351 -0.0337473 0.01973 -0.0264718 0.0202114 -0.0180614 0.0207588 -0.00945434 0.0213257 -0.00153374 0.0218547 0.0045985 0.0223219 0.00901543 0.0226896 0.010836 0.0229984 0.0120769 0.0104369 0.00822737 -0.0128696 0.00858182 -0.0147924 0.00900053 -0.0154963 0.00932183 -0.0163105 0.00961668 -0.0170843 0.00988706 -0.0176088 0.0101565 -0.017938 0.0104385 -0.0179106 0.0107458 -0.0175501 0.0110879 -0.016792 0.0114714 -0.0156806 0.0119004 -0.0142473 0.0123757 -0.0126048 0.0128951 -0.0108946 0.0134527 -0.00932978 0.0140392 -0.00816321 0.014642 -0.00768831 0.0152461 -0.0081912 0.0158344 -0.00990591 0.0163899 -0.0129425 0.0168966 -0.0172321 0.0173419 -0.0224938 0.0177185 -0.0282579 0.0180248 -0.0339317 0.0182655 -0.0388998 0.0184502 -0.0426192 0.0185937 -0.0446987 0.0187172 -0.0449187 0.0188512 -0.0432019 0.0190334 -0.0395459 0.0193009 -0.0340148 0.0196749 -0.0268458 0.0201522 -0.0185387 0.0206979 -0.01 0.0212664 -0.00210222 0.0218006 0.00406426 0.0222766 0.00853941 0.0226563 0.0104564 0.0229795 0.0117537 0.0102237 0.0088081 -0.0134994 0.00914204 -0.0151263 0.00953272 -0.015887 0.00982606 -0.0166039 0.0100891 -0.0173474 0.0103294 -0.017849 0.0105694 -0.0181781 0.0108236 -0.0181648 0.0111043 -0.0178308 0.011421 -0.0171088 0.0117802 -0.0160397 0.0121856 -0.0146528 0.012638 -0.0130571 0.0131347 -0.0113912 0.0136695 -0.00986458 0.0142327 -0.00872648 0.0148116 -0.00826717 0.0153906 -0.00877019 0.0159528 -0.0104681 0.0164812 -0.0134709 0.0169606 -0.0177116 0.0173797 -0.0229129 0.0177322 -0.0286104 0.018018 -0.0342175 0.0182427 -0.0391244 0.018416 -0.0427925 0.0185522 -0.0448349 0.0186714 -0.0450379 0.0188024 -0.043333 0.0189816 -0.039725 0.0192454 -0.0342787 0.0196153 -0.0272158 0.0200893 -0.0190127 0.0206339 -0.0105446 0.0212044 -0.00267279 0.0217444 0.00352428 0.0222297 0.0080541 0.0226218 0.0100643 0.02296 0.0114155 0.00999304 0.00938198 -0.0141727 0.00969317 -0.0154375 0.0100479 -0.0162417 0.0103094 -0.0168654 0.0105384 -0.0175764 0.0107474 -0.018058 0.0109577 -0.0183883 0.0111841 -0.0183912 0.0114387 -0.0180854 0.0117308 -0.0174008 0.0120665 -0.0163754 0.0124493 -0.0150356 0.0128795 -0.0134874 0.0133542 -0.0118659 0.0138668 -0.0103772 0.0144074 -0.00926705 0.0149627 -0.00882245 0.015517 -0.00932448 0.0160533 -0.0110044 0.0165551 -0.0139727 0.0170079 -0.0181644 0.0174014 -0.0233064 0.0177307 -0.0289398 0.0179971 -0.0344839 0.0182068 -0.0393341 0.01837 -0.0429557 0.0185002 -0.0449651 0.0186163 -0.0451539 0.0187456 -0.0434623 0.0189229 -0.0399023 0.0191841 -0.0345399 0.019551 -0.0275826 0.0200226 -0.0194843 0.0205667 -0.0110887 0.0211399 -0.00324598 0.0216861 0.00297808 0.0221812 0.00755899 0.0225863 0.00965916 0.02294 0.0110617 0.00974435 0.009945 -0.0148856 0.0102317 -0.0157242 0.0105423 -0.0165522 0.0107681 -0.0170912 0.010961 -0.0177693 0.0111378 -0.0182349 0.0113183 -0.0185688 0.0115174 -0.0185904 0.0117466 -0.0183146 0.0120149 -0.0176692 0.0123281 -0.0166886 0.0126893 -0.0153968 0.0130984 -0.0138964 0.013552 -0.0123196 0.0140433 -0.0108685 0.0145618 -0.00978562 0.0150941 -0.00935475 0.0156243 -0.00985463 0.0161353 -0.0115155 0.0166111 -0.0144485 0.0170379 -0.0185912 0.0174066 -0.0236751 0.0177138 -0.029247 0.0179618 -0.0347319 0.0181578 -0.0395301 0.018312 -0.0431098 0.0184374 -0.0450905 0.0185517 -0.0452682 0.0186806 -0.0435912 0.0188573 -0.040079 0.0191171 -0.0347997 0.0194819 -0.0279475 0.0199519 -0.0199542 0.0204963 -0.0116331 0.0210727 -0.00382237 0.0216256 0.00242516 0.022131 0.00705361 0.0225497 0.00924051 0.0229196 0.0106918 0.00947695 0.0104927 -0.0156285 0.0107538 -0.0159853 0.0110121 -0.0168105 0.0111983 -0.0172774 0.0113536 -0.0179246 0.0114977 -0.018379 0.0116485 -0.0187196 0.011821 -0.0187628 0.0120256 -0.0185192 0.0122713 -0.0179148 0.0125631 -0.0169804 0.0129038 -0.0157376 0.0132928 -0.0142855 0.0137265 -0.0127532 0.0141974 -0.0113394 0.0146948 -0.010283 0.0152049 -0.00986483 0.0157116 -0.0103613 0.016198 -0.012002 0.0166484 -0.0148989 0.0170501 -0.0189928 0.017395 -0.02402 0.0176811 -0.0295331 0.017912 -0.0349628 0.0180955 -0.0397136 0.018242 -0.0432563 0.0183639 -0.0452125 0.0184777 -0.045382 0.0186074 -0.0437209 0.0187847 -0.0402564 0.0190442 -0.0350592 0.0194081 -0.0283113 0.0198773 -0.0204235 0.0204227 -0.0121784 0.0210029 -0.00440254 0.021563 0.00186498 0.0220792 0.00653744 0.0225119 0.00880777 0.0228986 0.0103052 0.00919017 0.0110197 -0.0163809 0.0112545 -0.0162202 0.0114531 -0.017009 0.0115961 -0.0174204 0.0117127 -0.0180411 0.0118239 -0.0184902 0.0119456 -0.0188414 0.0120922 -0.0189094 0.0122734 -0.0187004 0.0124976 -0.018139 0.0127694 -0.0172521 0.0130909 -0.0160591 0.0134613 -0.0146558 0.0138762 -0.0131681 0.0143279 -0.0117911 0.0148052 -0.0107604 0.0152941 -0.0103537 0.0157782 -0.0108454 0.0162409 -0.0124646 0.0166668 -0.0153248 0.0170442 -0.0193702 0.0173664 -0.0243422 0.0176326 -0.0297993 0.0178475 -0.0351777 0.0180198 -0.0398859 0.0181598 -0.0433964 0.0182796 -0.0453323 0.0183941 -0.0454965 0.0185258 -0.0438526 0.018705 -0.0404356 0.0189654 -0.0353195 0.0193293 -0.0286752 0.0197988 -0.020893 0.0203458 -0.0127255 0.0209304 -0.00498712 0.0214983 0.00129701 0.0220258 0.00600998 0.0224731 0.00836042 0.0228771 0.00990125 0.00888338 0.011522 -0.017102 0.0117277 -0.0164259 0.0118601 -0.0171414 0.011957 -0.0175173 0.0120345 -0.0181187 0.0121132 -0.0185689 0.0122067 -0.0189348 0.0123285 -0.0190312 0.0124876 -0.0188595 0.0126917 -0.0183431 0.0129448 -0.0175053 0.0132488 -0.0163631 0.0136019 -0.015009 0.0139996 -0.0135657 0.0144334 -0.012225 0.014892 -0.011219 0.0153608 -0.0108224 0.0158234 -0.0113081 0.0162634 -0.0129046 0.0166659 -0.0157273 0.0170201 -0.0197245 0.0173207 -0.0246428 0.0175682 -0.0300468 0.0177684 -0.0353779 0.0179307 -0.0400481 0.0180656 -0.0435313 0.0181844 -0.0454511 0.0183008 -0.0456129 0.0184358 -0.0439876 0.0186181 -0.0406179 0.0188805 -0.035582 0.0192455 -0.0290401 0.0197161 -0.0213636 0.0202656 -0.013275 0.0208552 -0.00557672 0.0214315 0.000720712 0.0219708 0.0054707 0.0224333 0.00789791 0.0228551 0.00947946 0.00855595 0.0120072 -0.0177099 0.0121715 -0.0165901 0.0122319 -0.0172019 0.0122796 -0.017565 0.0123181 -0.0181572 0.0123647 -0.0186155 0.0124309 -0.019001 0.0125291 -0.0191294 0.0126674 -0.0189978 0.0128528 -0.0185285 0.0130888 -0.0177412 0.0133765 -0.0166508 0.0137138 -0.0153463 0.0140956 -0.0139475 0.0145129 -0.0126423 0.014954 -0.01166 0.0154038 -0.0112723 0.0158461 -0.0117504 0.0162644 -0.0133229 0.0166447 -0.0161076 0.016977 -0.0200568 0.0172573 -0.0249231 0.0174874 -0.0302769 0.0176744 -0.0355649 0.0178281 -0.0402019 0.0179592 -0.0436624 0.0180784 -0.0455702 0.0181981 -0.0457327 0.0183376 -0.0441271 0.0185241 -0.0408044 0.0187897 -0.0358475 0.0191568 -0.0294072 0.0196294 -0.0218362 0.0201821 -0.0138277 0.0207774 -0.00617199 0.0213626 0.000135519 0.0219142 0.0049191 0.0223924 0.00741971 0.0228326 0.00903923 0.00820727 0.0124927 -0.0180358 0.0125929 -0.0166904 0.0125739 -0.017183 0.012569 -0.01756 0.0125677 -0.0181558 0.0125828 -0.0186306 0.0126226 -0.0190408 0.0126983 -0.0192052 0.0128169 -0.0191164 0.0129847 -0.0186963 0.0132045 -0.017961 0.0134769 -0.0169232 0.0137992 -0.0156686 0.0141656 -0.0143139 0.014567 -0.0130437 0.0149909 -0.0120839 0.0154224 -0.0117038 0.0158449 -0.0121729 0.0162424 -0.0137204 0.0166014 -0.0164666 0.0169131 -0.0203686 0.0171747 -0.0251847 0.0173894 -0.0304916 0.017565 -0.0357404 0.017712 -0.0403489 0.017841 -0.0437915 0.017962 -0.0456913 0.0180864 -0.045857 0.0182316 -0.0442723 0.0184236 -0.0409964 0.0186933 -0.0361173 0.0190635 -0.0297773 0.0195389 -0.0223116 0.0200955 -0.0143844 0.020697 -0.00677346 0.0212916 -0.000459098 0.021856 0.00435472 0.0223504 0.00692523 0.0228095 0.00858014 0.00783665 0.0320445 -0.0165671 -0.0335132 0.0314678 -0.0161137 0.0310244 -0.0167395 0.030683 -0.0172186 0.0303781 -0.017851 0.0301021 -0.0183546 0.0298473 -0.0187861 0.0296224 -0.0189802 0.0294357 -0.0189297 0.0293021 -0.0185626 0.0292356 -0.0178945 0.0292516 -0.0169393 0.0293633 -0.0157803 0.029581 -0.0145316 0.0299097 -0.0133724 0.0303469 -0.0125211 0.0308804 -0.0122372 0.0314865 -0.012779 0.0321305 -0.0143643 0.0327682 -0.0171043 0.0333516 -0.020952 0.0338357 -0.0256687 0.0341857 -0.0308416 0.0343829 -0.0359376 0.0344258 -0.0403917 0.0343285 -0.0436942 0.0341186 -0.0454813 0.0338355 -0.0455739 0.033533 -0.0439699 0.0332774 -0.0407407 0.0331405 -0.0359804 0.0331793 -0.0298162 0.0334203 -0.0225526 0.0338383 -0.0148023 0.034379 -0.00731414 0.0349519 -0.00103206 0.0355046 0.00380211 0.0359556 0.00647416 0.036343 0.00819274 0.00760457 0.0365916 -0.0147838 -0.0383749 0.0356962 -0.0152183 0.0350048 -0.0160481 0.0344715 -0.0166853 0.0340129 -0.0173924 0.0336106 -0.0179523 0.0332472 -0.0184227 0.0329276 -0.0186606 0.0326568 -0.0186589 0.032448 -0.0183539 0.0323142 -0.0177607 0.0322701 -0.0168951 0.0323281 -0.0158383 0.0324981 -0.0147017 0.0327843 -0.0136586 0.0331832 -0.01292 0.033681 -0.0127351 0.0342527 -0.0133507 0.0348616 -0.0149732 0.035462 -0.0177047 0.0360047 -0.0214947 0.0364442 -0.0261082 0.0367459 -0.0311433 0.0368915 -0.0360832 0.0368803 -0.0403806 0.0367277 -0.0435416 0.0364619 -0.0452155 0.0361232 -0.0452351 0.0357657 -0.0436124 0.035457 -0.040432 0.0352714 -0.0357948 0.035269 -0.0298138 0.0354796 -0.0227632 0.0358798 -0.0152025 0.0364148 -0.00784917 0.0369916 -0.00160889 0.0375543 0.00323946 0.0380176 0.00601079 0.0384178 0.00779259 0.00736236 0.0414538 -0.0129245 -0.0433131 0.0403124 -0.0140769 0.0393888 -0.0151246 0.0386552 -0.0159516 0.0380304 -0.0167676 0.0374876 -0.0174095 0.0370027 -0.0179377 0.0365763 -0.0182343 0.0362104 -0.018293 0.0359164 -0.0180599 0.0357057 -0.01755 0.0355922 -0.0167817 0.0355877 -0.0158338 0.0357013 -0.0148153 0.0359363 -0.0138935 0.0362879 -0.0132717 0.0367412 -0.0131883 0.0372692 -0.0138787 0.0378335 -0.0155375 0.038387 -0.0182582 0.0388795 -0.0219871 0.0392648 -0.0264936 0.0395086 -0.0313872 0.0395934 -0.0361679 0.0395196 -0.0403068 0.0393036 -0.0433256 0.0389749 -0.0448867 0.0385741 -0.0448344 0.038156 -0.0431944 0.0377889 -0.0400649 0.0375492 -0.0355551 0.0375002 -0.0297648 0.037675 -0.022938 0.0380523 -0.0155798 0.0385774 -0.00837428 0.0391547 -0.0021862 0.0397253 0.00266894 0.0401995 0.00553659 0.040612 0.00738006 0.00711025 0.0466307 -0.0110608 -0.0484945 0.0452808 -0.012727 0.0441548 -0.0139986 0.0432275 -0.0150243 0.0424323 -0.0159724 0.0417405 -0.0167177 0.0411246 -0.0173217 0.0405819 -0.0176915 0.0401116 -0.0178227 0.0397232 -0.0176715 0.0394269 -0.0172537 0.0392356 -0.0165903 0.03916 -0.0157582 0.0392085 -0.0148639 0.0393834 -0.0140684 0.0396787 -0.013567 0.0400779 -0.0135875 0.0405523 -0.0143532 0.041062 -0.0160472 0.0415583 -0.0187545 0.04199 -0.0224188 0.0423108 -0.0268143 0.0424865 -0.031563 0.0425006 -0.036182 0.0423549 -0.0401611 0.0420673 -0.043038 0.0416681 -0.0444875 0.0411987 -0.044365 0.0407142 -0.0427098 0.0402833 -0.0396341 0.0399841 -0.0352559 0.0398829 -0.0296635 0.0400161 -0.0230712 0.040365 -0.0159287 0.0408753 -0.00888461 0.0414493 -0.0027602 0.042025 0.00209325 0.0425084 0.00505316 0.0429324 0.00695608 0.00684836 0.0520742 -0.00920958 -0.0539254 0.050564 -0.0112168 0.0492714 -0.012706 0.0481689 -0.0139218 0.0472089 -0.0150124 0.046367 -0.0158759 0.0456158 -0.0165705 0.0449508 -0.0170265 0.0443696 -0.0172415 0.0438799 -0.0171819 0.0434908 -0.0168646 0.0432141 -0.0163136 0.0430597 -0.0156038 0.043035 -0.0148392 0.0431412 -0.0141745 0.043371 -0.0137969 0.0437064 -0.0139229 0.0441172 -0.014764 0.0445617 -0.0164916 0.0449899 -0.0191827 0.0453498 -0.0227788 0.045595 -0.0270595 0.045692 -0.0316599 0.0456252 -0.0361152 0.0453979 -0.0399338 0.0450297 -0.0426698 0.0445523 -0.04401 0.0440076 -0.0438203 0.0434507 -0.0421529 0.0429505 -0.0391339 0.0425863 -0.0348917 0.0424271 -0.0295042 0.0425127 -0.0231569 0.0428272 -0.0162432 0.0433174 -0.00937479 0.0438838 -0.00332656 0.0444615 0.00151557 0.0449522 0.00456241 0.0453865 0.00652181 0.00657693 0.0577385 -0.00738492 -0.0595632 0.0561182 -0.00959654 0.0546976 -0.0112854 0.0534479 -0.0126721 0.0523387 -0.0139031 0.051354 -0.0148912 0.0504697 -0.0156862 0.0496814 -0.0162383 0.0489865 -0.0165465 0.0483915 -0.016587 0.0479047 -0.0163777 0.047537 -0.0159459 0.0472974 -0.0153642 0.0471924 -0.0147342 0.0472219 -0.0142041 0.0473776 -0.0139526 0.0476398 -0.0141851 0.0479768 -0.015101 0.0483452 -0.0168601 0.0486942 -0.0195317 0.0489711 -0.0230556 0.0491295 -0.0272179 0.0491366 -0.0316671 0.0489783 -0.0359569 0.0486596 -0.0396152 0.0482019 -0.0422121 0.0476383 -0.0434464 0.0470114 -0.0431935 0.0463761 -0.0415176 0.0458012 -0.038559 0.0453665 -0.034457 0.0451434 -0.0292811 0.0451752 -0.0231887 0.045449 -0.0165171 0.0459132 -0.00983895 0.0464671 -0.00388046 0.0470431 0.00093954 0.0475389 0.0040666 0.0479821 0.00607868 0.00629631 0.0635741 -0.00560164 -0.0653573 0.0618934 -0.00791592 0.0603848 -0.00977673 0.0590226 -0.0113099 0.0577885 -0.0126691 0.0566766 -0.0137793 0.0556687 -0.0146783 0.0547623 -0.0153319 0.0539557 -0.0157398 0.0532554 -0.0158868 0.0526692 -0.0157915 0.0522074 -0.015484 0.0518783 -0.0150351 0.0516874 -0.0145433 0.0516336 -0.0141503 0.0517074 -0.0140263 0.0518875 -0.0143652 0.0521409 -0.0153544 0.0524229 -0.0171421 0.0526817 -0.0197905 0.0528642 -0.0232382 0.0529245 -0.0272782 0.0528308 -0.0315733 0.0525703 -0.0356964 0.0521503 -0.0391952 0.0515941 -0.0416559 0.0509364 -0.0427887 0.0502206 -0.0424776 0.049501 -0.0407981 0.048846 -0.037904 0.0483355 -0.0339465 0.0480427 -0.0289883 0.0480142 -0.0231602 0.0482408 -0.0167437 0.0486726 -0.0102708 0.0492087 -0.00441655 0.0497789 0.00036929 0.0502772 0.00356837 0.0507274 0.00562842 0.006007 0.0695251 -0.00388058 -0.0712462 0.0678343 -0.00622506 0.0662785 -0.00822095 0.0648423 -0.00987378 0.0635147 -0.0113414 0.0622989 -0.0125635 0.0611843 -0.0135636 0.0601713 -0.0143189 0.0592608 -0.0148293 0.0584599 -0.0150859 0.0577766 -0.0151082 0.057221 -0.0149284 0.0568008 -0.0146149 0.0565208 -0.0142633 0.0563789 -0.0140084 0.0563644 -0.0140117 0.0564548 -0.0144557 0.0566157 -0.0155153 0.0568015 -0.0173279 0.0569597 -0.0199487 0.0570372 -0.0233156 0.0569885 -0.0272295 0.0567832 -0.031368 0.0564105 -0.0353237 0.0558796 -0.0386643 0.0552162 -0.0409925 0.0544567 -0.0420293 0.0536453 -0.0416662 0.0528359 -0.0399887 0.0520957 -0.0371638 0.0515043 -0.0333551 0.0511361 -0.0286201 0.0510409 -0.023065 0.0512133 -0.0169161 0.0516061 -0.0106635 0.0521186 -0.00492902 0.0526784 -0.000190564 0.0531761 0.00307074 0.0536314 0.00517307 0.00570961 0.0755332 -0.00224907 -0.0771647 0.0738817 -0.00457356 0.0723206 -0.0066598 0.0708509 -0.00840406 0.0694657 -0.00995625 0.0681756 -0.0112734 0.0669777 -0.0123657 0.0658763 -0.0132176 0.0648755 -0.0138285 0.0639839 -0.0141943 0.0632104 -0.0143347 0.0625651 -0.0142831 0.0620557 -0.0141054 0.0616863 -0.0138939 0.0614539 -0.0137761 0.0613469 -0.0139047 0.0613416 -0.0144504 0.0614028 -0.0155764 0.0614839 -0.0174091 0.0615321 -0.0199969 0.0614947 -0.0232782 0.0613271 -0.027062 0.0610004 -0.0310414 0.0605059 -0.0348292 0.0598553 -0.0380136 0.0590765 -0.0402138 0.0582081 -0.0411609 0.057295 -0.0407531 0.0563906 -0.0390843 0.0555607 -0.0363339 0.0548837 -0.0326781 0.0544349 -0.0281712 0.0542667 -0.0228968 0.054378 -0.0170274 0.0547246 -0.0110101 0.0552072 -0.00541162 0.0557516 -0.000734938 0.0562453 0.00257709 0.0567033 0.00471498 0.00540496 0.0815425 -0.000737924 -0.0830536 0.0799772 -0.00300829 0.0784528 -0.00513546 0.0769899 -0.00694109 0.0755854 -0.00855177 0.0742547 -0.0099427 0.0730022 -0.0111133 0.0718363 -0.0120516 0.0707644 -0.0127566 0.0697973 -0.0132272 0.0689452 -0.0134826 0.0682188 -0.0135567 0.0676257 -0.0135124 0.0671699 -0.013438 0.0668478 -0.0134539 0.0666466 -0.0137035 0.0665421 -0.0143459 0.0664981 -0.0155324 0.0664678 -0.0173788 0.0663985 -0.0199275 0.0662379 -0.0231176 0.065943 -0.026767 0.0654865 -0.0305849 0.064862 -0.0342047 0.0640838 -0.0372354 0.0631826 -0.0393126 0.0621989 -0.0401772 0.0611787 -0.0397329 0.0601748 -0.0380804 0.0592512 -0.0354103 0.0584846 -0.0319115 0.0579503 -0.0276369 0.0577031 -0.0226497 0.0577464 -0.0170706 0.0580396 -0.0113034 0.0584857 -0.00585773 0.0590091 -0.00125832 0.059495 0.00209121 0.0599531 0.00425685 0.00509401 0.0875057 0.00062255 -0.0888662 0.0860677 -0.00157029 0.0846209 -0.00368863 0.0832034 -0.00552357 0.0818178 -0.0071662 0.0804821 -0.00860698 0.0792068 -0.00983802 0.078004 -0.0108488 0.0768847 -0.0116374 0.0758619 -0.0122043 0.0749473 -0.012568 0.0741525 -0.0127619 0.0734855 -0.0128455 0.07295 -0.0129025 0.072542 -0.0130459 0.0722481 -0.0134096 0.0720436 -0.0141414 0.0718919 -0.0153807 0.0717461 -0.017233 0.0715538 -0.0197352 0.071264 -0.0228279 0.0708352 -0.0263382 0.0702423 -0.029992 0.0694813 -0.0334437 0.0685694 -0.0363235 0.0675401 -0.0382833 0.066436 -0.0390732 0.0653044 -0.0386012 0.0641973 -0.0369733 0.0631768 -0.0343899 0.0623173 -0.0310519 0.0616933 -0.027013 0.0613617 -0.0223181 0.0613303 -0.0170391 0.0615628 -0.0115359 0.0619655 -0.00626046 0.062462 -0.0017548 0.062936 0.00161724 0.0633912 0.00380168 0.0047779 0.0933909 0.00180719 -0.0945755 0.0921123 -0.000291759 0.0907794 -0.00235572 0.0894425 -0.00418663 0.0881115 -0.0058352 0.0868056 -0.00730108 0.0855401 -0.00857257 0.0843303 -0.00963896 0.0831901 -0.0104972 0.0821346 -0.0111488 0.0811773 -0.0116107 0.0803305 -0.0119151 0.0796028 -0.0121178 0.0789979 -0.0122975 0.0785114 -0.0125594 0.0781297 -0.0130279 0.0778276 -0.0138393 0.0775684 -0.0151215 0.0773057 -0.0169703 0.076988 -0.0194175 0.0765656 -0.0224055 0.0759991 -0.0257716 0.0752657 -0.0292586 0.0743642 -0.0325423 0.0733145 -0.0352738 0.0721531 -0.0371218 0.070925 -0.0378451 0.0696788 -0.0373549 0.068466 -0.0357605 0.0673466 -0.0332704 0.0663917 -0.0300971 0.0656749 -0.0262961 0.0652541 -0.0218973 0.0651416 -0.0169267 0.0653062 -0.0117005 0.0656586 -0.00661282 0.066122 -0.00221822 0.0665796 0.00115961 0.0670285 0.00335279 0.00445798 0.0991869 0.00279848 -0.100178 0.0980877 0.000807385 0.0968973 -0.00116529 0.0956705 -0.00295986 0.094425 -0.00458969 0.0931806 -0.00605662 0.0919557 -0.00734776 0.0907682 -0.00845143 0.0896344 -0.00936343 0.088571 -0.0100853 0.0875928 -0.0106326 0.0867131 -0.0110354 0.0859408 -0.0113455 0.0852796 -0.0116364 0.0847252 -0.012005 0.0842636 -0.0125663 0.0838695 -0.0134453 0.0835066 -0.0147586 0.083129 -0.0165927 0.0826865 -0.0189751 0.0821315 -0.0218504 0.0814264 -0.0250666 0.0805514 -0.0283836 0.0795081 -0.0314989 0.0783191 -0.0340849 0.0770238 -0.0358266 0.07567 -0.0364913 0.0743077 -0.0359926 0.0729881 -0.0344409 0.0717687 -0.032051 0.0707174 -0.0290458 0.0699055 -0.0254842 0.0693915 -0.0213834 0.0691924 -0.0167276 0.0692823 -0.0117904 0.0695773 -0.00690784 0.0700013 -0.0026422 0.0704379 0.000723026 0.0708769 0.00291375 0.00413576 0.104903 0.00358923 -0.105694 0.103991 0.00171957 0.102961 -0.000135879 0.101867 -0.0018654 0.100731 -0.00345393 0.0995745 -0.00489988 0.0984171 -0.00619041 0.0972786 -0.00731286 0.0961768 -0.00826168 0.0951296 -0.0090381 0.0941528 -0.0096558 0.0932602 -0.0101427 0.092461 -0.0105463 0.091759 -0.0109343 0.0911496 -0.0113956 0.0906187 -0.0120355 0.0901413 -0.0129679 0.0896814 -0.0142986 0.0891942 -0.0161055 0.0886311 -0.018412 0.0879466 -0.0211659 0.0871058 -0.0242258 0.0860915 -0.0273692 0.084908 -0.0303153 0.083581 -0.0327579 0.0821528 -0.0343984 0.0806738 -0.0350123 0.0791956 -0.0345145 0.0777696 -0.0330148 0.0764507 -0.0307322 0.0753031 -0.0278981 0.074395 -0.0245762 0.0737852 -0.0207735 0.0734948 -0.0164372 0.0735036 -0.0117992 0.0737345 -0.00713875 0.0741126 -0.00302035 0.0745233 0.000312362 0.0749487 0.00248838 0.00381294 0.110567 0.0041841 -0.111162 0.109839 0.00244718 0.108979 0.00072431 0.10803 -0.000916458 0.10702 -0.00244432 0.105971 -0.00385016 0.104902 -0.00512151 0.103834 -0.0062451 0.102786 -0.007214 0.101777 -0.00802871 0.100822 -0.00870109 0.099936 -0.0092565 0.0991277 -0.00973803 0.0984008 -0.0102073 0.0977506 -0.0107454 0.0971631 -0.011448 0.0966132 -0.012418 0.0960658 -0.0137512 0.0954774 -0.0155171 0.0948012 -0.0177359 0.093994 -0.0203588 0.0930237 -0.0232554 0.0918757 -0.0262212 0.0905571 -0.0289968 0.0890966 -0.0312973 0.0875391 -0.0328409 0.0859377 -0.0334109 0.0843461 -0.0329229 0.0828157 -0.0314844 0.0813993 -0.0293158 0.0801568 -0.0266556 0.0791531 -0.0235725 0.0784459 -0.0200663 0.0780605 -0.0160517 0.0779827 -0.0117214 0.0781432 -0.00729925 0.0784692 -0.0033464 0.078849 -6.74318e-05 0.0792567 0.00208064 0.0034914 0.116221 0.00459686 -0.116634 0.115668 0.00300024 0.114975 0.0014175 0.114177 -0.000117796 0.113301 -0.00156913 0.11237 -0.00291907 0.111404 -0.00415516 0.110423 -0.00526392 0.109446 -0.00623718 0.108492 -0.00707442 0.107576 -0.00778567 0.106713 -0.00839354 0.105912 -0.00893665 0.105175 -0.00947069 0.104498 -0.0100686 0.103867 -0.0108168 0.103257 -0.0118079 0.102634 -0.0131277 0.101955 -0.0148382 0.101176 -0.0169569 0.100256 -0.0194388 0.0991656 -0.022165 0.0978929 -0.0249486 0.0964478 -0.0275517 0.0948613 -0.0297108 0.0931809 -0.0311605 0.0914625 -0.0316925 0.0897619 -0.0312223 0.0881309 -0.0298534 0.0866205 -0.0278054 0.0852861 -0.0253213 0.0841887 -0.022475 0.083384 -0.0192617 0.0829012 -0.015569 0.0827323 -0.0115525 0.0828168 -0.00738367 0.0830848 -0.0036144 0.0834288 -0.000411453 0.0838148 0.00169457 0.00317314 0.12192 0.00484668 -0.12217 0.121527 0.00339411 0.120991 0.00195315 0.12034 0.000533206 0.1196 -0.00082906 0.118792 -0.00211091 0.117935 -0.00329848 0.11705 -0.00437854 0.116154 -0.00534198 0.115267 -0.00618712 0.114404 -0.00692211 0.113577 -0.00756674 0.112795 -0.0081552 0.112062 -0.0087372 0.111371 -0.00937794 0.110709 -0.0101546 0.110051 -0.0111499 0.109363 -0.0124403 0.108606 -0.014081 0.107737 -0.0160874 0.106716 -0.0184184 0.105518 -0.0209669 0.104133 -0.0235633 0.102573 -0.0259914 0.10087 -0.0280086 0.0990762 -0.0293663 0.0972485 -0.0298647 0.0954453 -0.0294191 0.0937194 -0.0281275 0.09212 -0.0262061 0.0906982 -0.0238995 0.0895102 -0.021287 0.0886096 -0.0183611 0.0880287 -0.014988 0.0877654 -0.0112892 0.0877689 -0.00738723 0.0879735 -0.00381892 0.088277 -0.000714983 0.0886374 0.00133419 0.00286029 0.127721 0.00495451 -0.127829 0.127469 0.00364627 0.127077 0.00234472 0.126565 0.00104535 0.125956 -0.000219488 0.125269 -0.00142391 0.124522 -0.00255236 0.123736 -0.00359204 0.122927 -0.00453321 0.122113 -0.00537302 0.121309 -0.00611772 0.120526 -0.00678427 0.119774 -0.00740252 0.119053 -0.0080163 0.118358 -0.00868323 0.117675 -0.0094717 0.11698 -0.010455 0.116241 -0.0117008 0.115418 -0.0132581 0.114471 -0.0151404 0.113364 -0.0173113 0.112072 -0.0196749 0.110588 -0.0220795 0.108926 -0.0243295 0.107121 -0.0262034 0.105224 -0.0274697 0.103297 -0.0279373 0.101399 -0.0275216 0.0995854 -0.0263137 0.0979034 -0.0245241 0.0963999 -0.022396 0.0951262 -0.0200133 0.0941327 -0.0173675 0.0934541 -0.0143095 0.0930946 -0.0109297 0.0930136 -0.00730623 0.09315 -0.00395526 0.0934086 -0.000973639 0.0937394 0.00100336 0.00255504 0.133679 0.00494031 -0.133665 0.133552 0.00377386 0.133289 0.00260737 0.132905 0.00143004 0.132417 0.000267798 0.131845 -0.000852098 0.131206 -0.00191315 0.130517 -0.00290265 0.129794 -0.00381066 0.129055 -0.00463326 0.128312 -0.00537484 0.127577 -0.00604954 0.126857 -0.00668301 0.126155 -0.00731335 0.125462 -0.00799092 0.124766 -0.00877567 0.124043 -0.0097319 0.123262 -0.0109193 0.122384 -0.0123808 0.121372 -0.0141287 0.120192 -0.0161312 0.118821 -0.018304 0.117254 -0.0205121 0.115505 -0.0225808 0.113611 -0.0243093 0.111625 -0.0254835 0.109609 -0.0259216 0.107627 -0.0255395 0.105734 -0.0244205 0.103977 -0.0227669 0.102399 -0.0208176 0.101045 -0.0186599 0.099963 -0.0162855 0.0991891 -0.0135355 0.098733 -0.0104737 0.098565 -0.00713823 0.0986294 -0.00401963 0.0988393 -0.00118353 0.099137 0.000705674 0.00225958 0.139849 0.00482148 -0.13973 0.139831 0.00379217 0.139682 0.00275559 0.139413 0.00169924 0.139038 0.000642708 0.138574 -0.000387485 0.138035 -0.00137441 0.137438 -0.00230538 0.136798 -0.00317057 0.136129 -0.00396516 0.135446 -0.00469178 0.134759 -0.00536186 0.134073 -0.005997 0.133389 -0.00662981 0.132702 -0.0073037 0.131997 -0.00807062 0.131251 -0.00898641 0.130435 -0.0101031 0.129513 -0.0114583 0.128448 -0.0130634 0.127207 -0.0148911 0.125771 -0.016868 0.124135 -0.018876 0.122315 -0.0207604 0.120347 -0.0223409 0.118284 -0.023421 0.116192 -0.0238294 0.114135 -0.023483 0.112172 -0.022457 0.110348 -0.0209429 0.108702 -0.019172 0.107276 -0.0172334 0.106111 -0.0151205 0.105245 -0.0126699 0.104694 -0.00992227 0.104438 -0.00688217 0.104427 -0.00400932 0.104585 -0.0013414 0.104847 0.000444331 0.00197605 0.146279 0.00461238 -0.14607 0.146357 0.00371416 0.146311 0.00280202 0.146146 0.00186424 0.145873 0.000914949 0.145507 -2.15552e-05 0.145062 -0.000928702 0.14455 -0.00179371 0.143987 -0.0026072 0.143385 -0.00336368 0.142758 -0.00406419 0.142113 -0.0047176 0.141458 -0.00534167 0.140792 -0.00596384 0.140109 -0.00662094 0.139396 -0.00735736 0.138631 -0.00822101 0.137784 -0.00925674 0.136823 -0.0104974 0.135713 -0.0119531 0.134423 -0.0136013 0.132935 -0.0153792 0.131243 -0.0171845 0.129365 -0.0188822 0.127336 -0.0203119 0.12521 -0.0212954 0.123053 -0.0216726 0.120933 -0.0213628 0.118908 -0.0204323 0.117026 -0.0190602 0.115321 -0.0174669 0.113829 -0.0157414 0.112587 -0.013879 0.111634 -0.0117173 0.11099 -0.00927816 0.110647 -0.00653836 0.11056 -0.00392281 0.110663 -0.00144476 0.110886 0.00022198 0.00170647 0.153017 0.00432461 -0.15273 0.153181 0.00355049 0.153226 0.00275727 0.153155 0.00193499 0.152977 0.00109341 0.152702 0.000253398 0.152342 -0.00056865 0.151909 -0.00136094 0.151416 -0.00211429 0.150875 -0.0028229 0.150298 -0.00348648 0.149691 -0.00411155 0.149062 -0.00471235 0.14841 -0.00531145 0.147728 -0.0059396 0.147005 -0.00663408 0.14622 -0.0074354 0.145344 -0.00838173 0.144348 -0.00950128 0.143199 -0.0108034 0.141867 -0.0122695 0.140335 -0.0138469 0.138598 -0.0154484 0.136674 -0.0169576 0.134596 -0.0182341 0.132419 -0.0191179 0.130208 -0.0194617 0.128033 -0.0191881 0.125956 -0.0183549 0.124022 -0.0171268 0.122265 -0.0157098 0.120715 -0.0141909 0.119404 -0.0125679 0.11837 -0.0106835 0.117637 -0.00854522 0.117207 -0.00610845 0.117044 -0.00375983 0.117091 -0.00149203 0.117273 4.06041e-05 0.00145257 0.160113 0.00396746 -0.159756 0.160354 0.00331003 0.160481 0.00263021 0.160496 0.00191996 0.160403 0.00118568 0.160212 0.000444714 0.159931 -0.00028778 0.159571 -0.00100085 0.159143 -0.00168586 0.158657 -0.002337 0.158123 -0.00295293 0.15755 -0.00353813 0.156941 -0.00410366 0.156297 -0.00466767 0.155613 -0.00525527 0.154876 -0.00589722 0.154068 -0.00662716 0.153163 -0.00747701 0.152133 -0.00847067 0.150946 -0.0096165 0.149576 -0.0108998 0.148006 -0.0122769 0.146232 -0.0136748 0.14427 -0.014995 0.142152 -0.0161163 0.139932 -0.0168975 0.137675 -0.0172052 0.135454 -0.016967 0.133331 -0.0162321 0.131353 -0.0151491 0.129551 -0.0139071 0.127949 -0.0125887 0.126574 -0.0111937 0.125465 -0.00957456 0.124648 -0.00772818 0.124135 -0.00559522 0.123897 -0.00352131 0.123887 -0.00148256 0.124026 -9.86015e-05 0.00121578 0.167619 0.00354846 -0.1672 0.167928 0.00300029 0.16813 0.00242841 0.168224 0.00182659 0.168211 0.00119872 0.168097 0.000558698 0.167889 -8.01376e-05 0.167596 -0.000707822 0.167227 -0.00131654 0.16679 -0.00190069 0.166296 -0.00245827 0.16575 -0.00299207 0.165156 -0.00351038 0.164516 -0.0040274 0.163824 -0.00456317 0.163069 -0.00514247 0.162235 -0.00579264 0.161297 -0.00653984 0.160231 -0.00740387 0.159006 -0.00839208 0.157599 -0.00949298 0.155994 -0.0106713 0.154186 -0.0118672 0.15219 -0.0129987 0.150037 -0.0139635 0.147779 -0.0146394 0.145482 -0.0149083 0.143219 -0.0147043 0.141056 -0.0140685 0.139039 -0.0131319 0.137195 -0.0120637 0.135546 -0.0109399 0.134115 -0.00976223 0.132936 -0.00839622 0.132041 -0.00683222 0.131448 -0.00500235 0.131136 -0.0032093 0.13107 -0.00141673 0.131167 -0.000195328 0.000996993 0.175594 0.00307374 -0.175119 0.175966 0.00262777 0.176236 0.00215863 0.176401 0.00166169 0.176461 0.00113904 0.176418 0.000601396 0.176278 5.99699e-05 0.176047 -0.000476512 0.175731 -0.00100123 0.17534 -0.00150907 0.174879 -0.00199772 0.174356 -0.00246865 0.173773 -0.00292782 0.173132 -0.00338603 0.172427 -0.00385876 0.17165 -0.00436547 0.170785 -0.00492777 0.169812 -0.00556649 0.168706 -0.00629763 0.167441 -0.00712739 0.165995 -0.00804704 0.164353 -0.00902874 0.16251 -0.0100247 0.16048 -0.0109687 0.158293 -0.0117763 0.155998 -0.0123446 0.153662 -0.0125725 0.15136 -0.0124016 0.149157 -0.0118657 0.147102 -0.011077 0.14522 -0.0101817 0.143528 -0.00924765 0.142043 -0.00827762 0.1408 -0.00715344 0.139831 -0.0058624 0.139162 -0.00433404 0.13878 -0.00282678 0.138659 -0.00129593 0.138714 -0.000250255 0.000796482 0.184108 0.00254828 -0.183583 0.184538 0.00219816 0.184869 0.0018271 0.185099 0.00143181 0.185225 0.00101317 0.185247 0.000579095 0.185169 0.000138521 0.184993 -0.000301276 0.184727 -0.000734645 0.184375 -0.00115717 0.183944 -0.00156654 0.183439 -0.00196334 0.182862 -0.00235165 0.182216 -0.00273932 0.181495 -0.00313793 0.180691 -0.00356215 0.179792 -0.00402845 0.178779 -0.00455283 0.177629 -0.00514769 0.176319 -0.00581804 0.17483 -0.00655745 0.173146 -0.00734471 0.171264 -0.00814298 0.169196 -0.00890054 0.16697 -0.00955044 0.164635 -0.0100095 0.162257 -0.0101945 0.159912 -0.0100563 0.157667 -0.0096216 0.155573 -0.00898246 0.153651 -0.00826034 0.151916 -0.00751218 0.15038 -0.00674175 0.149076 -0.0058496 0.148037 -0.00482304 0.147298 -0.0035946 0.146848 -0.00237745 0.146675 -0.00112262 0.14669 -0.000265134 0.000613669 0.193244 0.00197586 -0.192672 0.193726 0.0017164 0.194114 0.00143964 0.194402 0.00114345 0.194587 0.000827993 0.194667 0.000498731 0.194644 0.000162339 0.194518 -0.000175539 0.194294 -0.000510555 0.193976 -0.000839174 0.193569 -0.00115937 0.193077 -0.00147121 0.192502 -0.00177732 0.191846 -0.00208309 0.191105 -0.00239669 0.190271 -0.0027286 0.189333 -0.00309066 0.188275 -0.00349448 0.187076 -0.00394912 0.185717 -0.00445833 0.184177 -0.00501763 0.182444 -0.0056117 0.180515 -0.00621368 0.1784 -0.00678549 0.176126 -0.00727709 0.173742 -0.0076253 0.171313 -0.00776596 0.168918 -0.00766057 0.166625 -0.00732907 0.164485 -0.00684227 0.162519 -0.00629447 0.160737 -0.00573017 0.159149 -0.00515343 0.157785 -0.00448582 0.156679 -0.00371717 0.155873 -0.00278813 0.155361 -0.00186553 0.155138 -0.000900356 0.155116 -0.000242908 0.000446899 0.203103 0.0013593 -0.202486 0.203632 0.00118683 0.20407 0.00100196 0.20441 0.000803444 0.204647 0.000591121 0.204777 0.000368394 0.2048 0.000139693 0.204715 -9.1097e-05 0.204526 -0.000321022 0.204234 -0.000547602 0.203844 -0.000769334 0.203359 -0.000986059 0.202781 -0.0011993 0.20211 -0.00141243 0.201344 -0.00163063 0.200476 -0.00186065 0.199496 -0.00211017 0.198388 -0.00238673 0.197135 -0.00269628 0.195718 -0.00304134 0.19412 -0.00341904 0.192327 -0.00381941 0.190339 -0.00422486 0.188163 -0.00461021 0.185828 -0.004942 0.18338 -0.00517745 0.180887 -0.00527263 0.178427 -0.00520086 0.176074 -0.0049755 0.173876 -0.00464493 0.171856 -0.00427419 0.17002 -0.00389384 0.168374 -0.00350766 0.166949 -0.00306033 0.165777 -0.00254598 0.164907 -0.00191814 0.164337 -0.0012956 0.164071 -0.000633959 0.164016 -0.000187848 0.000293113 0.213804 0.000699968 -0.213144 0.214377 0.000613096 0.21486 0.00051964 0.215244 0.000419112 0.215524 0.000311318 0.215694 0.00019787 0.215753 8.09892e-05 0.215699 -3.73283e-05 0.215534 -0.000155559 0.215259 -0.000272433 0.214877 -0.000387126 0.21439 -0.000499493 0.213801 -0.000610226 0.213109 -0.000720947 0.212313 -0.000834192 0.211406 -0.000953281 0.210377 -0.00108201 0.209215 -0.00122413 0.207901 -0.00138259 0.206419 -0.00155868 0.20475 -0.00175098 0.202886 -0.00195453 0.200821 -0.00216055 0.198567 -0.00235642 0.196151 -0.00252521 0.193618 -0.00264511 0.191039 -0.00269358 0.188495 -0.00265679 0.186061 -0.00254157 0.183789 -0.00237261 0.181698 -0.0021837 0.179795 -0.00199014 0.178082 -0.00179492 0.17659 -0.00156788 0.175352 -0.00130846 0.174421 -0.000987408 0.173798 -0.000672746 0.173494 -0.00032981 0.173412 -0.000105833 0.000147437 0.225501 -0.224801 0.226114 0.226633 0.227052 0.227364 0.227562 0.227643 0.227605 0.22745 0.227177 0.22679 0.226291 0.22568 0.224959 0.224125 0.223172 0.22209 0.220866 0.219483 0.217925 0.216174 0.214219 0.212059 0.209702 0.207177 0.204532 0.201838 0.199181 0.19664 0.194267 0.192084 0.190093 0.188298 0.186731 0.185422 0.184435 0.183762 0.183432 0.183326 0.0493042 0.00717783 -0.0492411 0.049339 0.00776668 0.0493437 0.00834469 0.0493166 0.00891027 0.0492558 0.00946176 0.0491593 0.00999744 0.0490252 0.0105156 0.0488517 0.0110144 0.0486369 0.0114921 0.0483789 0.011947 0.0480762 0.0123774 0.047727 0.0127815 0.0473301 0.013158 0.0468843 0.0135054 0.0463887 0.0138226 0.0458429 0.0141086 0.0452465 0.0143629 0.0446 0.014585 0.0439038 0.0147752 0.0431591 0.014934 0.0423677 0.0150625 0.0415313 0.0151621 0.0406526 0.0152351 0.039734 0.0152839 0.0387785 0.0153115 0.0377886 0.0153201 0.0367648 0.0153122 0.0357078 0.0152817 0.0346349 0.0151838 0.0149831 0.0519128 0.00707535 -0.0518103 0.0519911 0.00768843 0.0520433 0.00829241 0.0520678 0.00888578 0.0520627 0.00946694 0.0520259 0.0100343 0.0519554 0.010586 0.0518494 0.0111205 0.0517057 0.0116358 0.0515223 0.0121304 0.0512974 0.0126023 0.051029 0.0130499 0.0507155 0.0134715 0.0503554 0.0138655 0.0499473 0.0142307 0.0494902 0.0145657 0.0489835 0.0148696 0.0484268 0.0151417 0.0478203 0.0153818 0.0471645 0.0155898 0.0464608 0.0157662 0.0457109 0.015912 0.0449172 0.0160287 0.044083 0.0161181 0.0432124 0.0161821 0.0423099 0.0162226 0.0413808 0.0162413 0.0404317 0.0162308 0.039455 0.0161605 0.0160632 0.0545684 0.00693477 -0.0544278 0.0546893 0.00756757 0.0547887 0.00819295 0.054865 0.00880951 0.0549162 0.00941573 0.0549404 0.0100101 0.0549355 0.0105909 0.0548995 0.0111565 0.0548302 0.0117051 0.0547255 0.0122351 0.0545832 0.0127446 0.0544012 0.0132319 0.0541774 0.0136952 0.05391 0.0141329 0.0535972 0.0145435 0.0532374 0.0149254 0.0528295 0.0152776 0.0523723 0.0155989 0.0518655 0.0158886 0.0513089 0.0161464 0.050703 0.0163721 0.0500489 0.0165662 0.0493482 0.0167294 0.0486035 0.0168628 0.0478179 0.0169677 0.046995 0.0170456 0.0461384 0.0170979 0.0452494 0.0171198 0.0443168 0.0170931 0.017067 0.0572747 0.00675935 -0.0570993 0.0574352 0.00740706 0.0575792 0.00804897 0.057705 0.00868377 0.0578106 0.00931007 0.0578943 0.00992641 0.0579539 0.0105313 0.0579873 0.011123 0.0579924 0.0117001 0.0579668 0.0122607 0.0579083 0.0128031 0.0578145 0.0133257 0.0576832 0.0138265 0.0575121 0.014304 0.0572991 0.0147565 0.0570422 0.0151824 0.0567396 0.0155802 0.0563898 0.0159487 0.0559917 0.0162867 0.0555445 0.0165936 0.0550478 0.0168687 0.0545021 0.0171119 0.0539081 0.0173233 0.0532675 0.0175034 0.0525823 0.0176529 0.051855 0.0177729 0.0510875 0.0178654 0.0502794 0.0179279 0.0494207 0.0179518 0.0179932 0.060044 0.00655381 -0.0598385 0.0602396 0.00721143 0.0604239 0.00786473 0.0605951 0.00851254 0.0607516 0.00915358 0.0608915 0.00978652 0.0610128 0.0104099 0.0611134 0.0110224 0.0611912 0.0116223 0.0612438 0.0122081 0.0612689 0.012778 0.061264 0.0133305 0.0612267 0.0138638 0.0611545 0.0143762 0.061045 0.014866 0.0608958 0.0153315 0.0607048 0.0157712 0.0604699 0.0161835 0.0601894 0.0165672 0.0598618 0.0169212 0.0594861 0.0172444 0.0590617 0.0175363 0.0585885 0.0177965 0.0580669 0.018025 0.0574979 0.0182219 0.0568825 0.0183883 0.0562214 0.0185265 0.0555133 0.018636 0.0547508 0.0187143 0.0188186 0.0628916 0.00632382 -0.0626616 0.0631167 0.00698633 0.0633356 0.00764586 0.0635468 0.00830133 0.0637488 0.00895162 0.0639398 0.00959552 0.0641179 0.0102318 0.0642813 0.010859 0.0644277 0.0114759 0.064555 0.0120808 0.0646607 0.0126723 0.0647424 0.0132488 0.0647977 0.0138086 0.0648238 0.0143501 0.0648181 0.0148716 0.0647782 0.0153715 0.0647014 0.015848 0.0645853 0.0162996 0.0644276 0.0167249 0.0642262 0.0171225 0.0639795 0.0174912 0.0636859 0.0178299 0.0633445 0.018138 0.0629545 0.0184149 0.0625158 0.0186606 0.0620283 0.0188759 0.0614918 0.019063 0.060905 0.0192228 0.0602628 0.0193565 0.0195182 0.0658351 0.00607532 -0.0655866 0.0660835 0.00673794 0.0663306 0.00739869 0.0665753 0.00805662 0.0668162 0.00871075 0.0670517 0.00936002 0.0672802 0.0100033 0.0674998 0.0106394 0.0677087 0.011267 0.0679046 0.0118849 0.0680853 0.0124916 0.0682485 0.0130856 0.0683917 0.0136655 0.0685122 0.0142296 0.0686075 0.0147764 0.0686746 0.0153043 0.068711 0.0158116 0.0687138 0.0162968 0.0686804 0.0167583 0.0686084 0.0171946 0.0684952 0.0176043 0.0683389 0.0179863 0.0681375 0.0183394 0.0678895 0.0186629 0.0675937 0.0189564 0.067249 0.0192206 0.0668547 0.0194573 0.0664092 0.0196682 0.0659094 0.0198564 0.0200702 0.0688922 0.00581386 -0.0686308 0.0691579 0.00647221 0.0694271 0.00712957 0.0696986 0.00778511 0.0699713 0.008438 0.070244 0.00908729 0.0705153 0.00973202 0.0707836 0.0103711 0.0710471 0.0110035 0.0713039 0.011628 0.0715521 0.0122434 0.0717893 0.0128483 0.0720133 0.0134415 0.0722216 0.0140214 0.0724114 0.0145865 0.0725802 0.0151355 0.0727251 0.0156667 0.0728433 0.0161787 0.0729318 0.0166698 0.0729879 0.0171385 0.0730087 0.0175834 0.0729918 0.0180032 0.0729345 0.0183967 0.0728346 0.0187628 0.07269 0.019101 0.072499 0.0194115 0.0722603 0.0196961 0.0719722 0.0199563 0.0716325 0.0201961 0.0204565 0.0720799 0.00554414 -0.0718102 0.0723578 0.00619437 0.0726431 0.00684424 0.0729352 0.00749307 0.073233 0.0081401 0.0735358 0.00878456 0.0738422 0.0094256 0.074151 0.0100623 0.0744607 0.0106938 0.0747698 0.011319 0.0750764 0.0119368 0.0753787 0.0125461 0.0756744 0.0131457 0.0759613 0.0137344 0.0762371 0.0143108 0.076499 0.0148736 0.0767444 0.0154213 0.0769706 0.0159525 0.0771745 0.0164658 0.0773533 0.0169597 0.077504 0.0174328 0.0776236 0.0178836 0.0777093 0.018311 0.0777583 0.0187138 0.077768 0.0190913 0.0777361 0.0194434 0.0776607 0.0197715 0.0775402 0.0200768 0.0773728 0.0203635 0.0206646 0.0754131 0.00526977 -0.0751387 0.0756989 0.00590857 0.0759957 0.00654745 0.0763029 0.0071858 0.07662 0.00782299 0.0769462 0.00845836 0.0772807 0.00909118 0.0776223 0.00972069 0.07797 0.0103461 0.0783225 0.0109665 0.0786783 0.011581 0.0790357 0.0121887 0.0793931 0.0127884 0.0797483 0.0133792 0.0800994 0.0139598 0.0804438 0.0145291 0.0807793 0.0150858 0.0811031 0.0156287 0.0814126 0.0161564 0.0817048 0.0166675 0.0819767 0.0171608 0.0822254 0.0176349 0.0824479 0.0180885 0.0826411 0.0185206 0.0828021 0.0189302 0.0829283 0.0193172 0.0830175 0.0196823 0.0830676 0.0200266 0.0830775 0.0203537 0.0206885 0.0789041 0.00499326 -0.0786276 0.0791949 0.00561784 0.0794996 0.00624274 0.0798179 0.00686746 0.0801495 0.00749143 0.0804937 0.00811409 0.0808501 0.00873482 0.0812178 0.00935297 0.081596 0.00996786 0.0819838 0.0105788 0.0823799 0.0111849 0.0827831 0.0117854 0.083192 0.0123796 0.0836048 0.0129663 0.0840199 0.0135447 0.0844353 0.0141137 0.0848488 0.0146723 0.0852581 0.0152194 0.0856607 0.0157537 0.0860541 0.0162742 0.0864354 0.0167795 0.0868017 0.0172686 0.0871502 0.0177401 0.0874778 0.018193 0.0877815 0.0186265 0.0880585 0.0190402 0.0883064 0.0194344 0.0885233 0.0198098 0.0887078 0.0201691 0.0205301 0.0825639 0.00471627 -0.0822869 0.0828575 0.00532422 0.0831676 0.00593264 0.0834941 0.00654105 0.0838365 0.00714897 0.0841947 0.00775589 0.0845682 0.0083613 0.0849566 0.00896462 0.0853592 0.00956528 0.0857752 0.0101627 0.086204 0.0107561 0.0866445 0.011345 0.0870956 0.0119285 0.087556 0.0125059 0.0880244 0.0130763 0.088499 0.013639 0.0889783 0.0141931 0.0894603 0.0147375 0.0899427 0.0152713 0.0904235 0.0157934 0.0909001 0.0163029 0.09137 0.0167987 0.0918304 0.0172797 0.0922785 0.0177449 0.0927116 0.0181935 0.0931269 0.0186249 0.0935219 0.0190393 0.0938948 0.0194369 0.0942442 0.0198197 0.0201989 0.0864024 0.00443984 -0.086126 0.0866976 0.00502908 0.0870114 0.00561881 0.0873438 0.00620863 0.0876947 0.00679809 0.0880638 0.00738675 0.088451 0.00797413 0.0888558 0.00855976 0.089278 0.00914312 0.089717 0.00972369 0.0901722 0.0103009 0.090643 0.0108742 0.0911285 0.011443 0.0916278 0.0120066 0.0921398 0.0125643 0.0926633 0.0131155 0.093197 0.0136594 0.0937393 0.0141952 0.0942886 0.014722 0.0948428 0.0152391 0.0954002 0.0157456 0.0959583 0.0162405 0.096515 0.016723 0.0970677 0.0171922 0.097614 0.0176472 0.0981513 0.0180876 0.0986774 0.0185131 0.0991905 0.0189239 0.0996894 0.0193208 0.0197101 0.0904293 0.00416466 -0.0901541 0.0907251 0.00473327 0.0910416 0.00530237 0.0913786 0.00587158 0.0917362 0.00644049 0.0921143 0.00700869 0.0925126 0.00757577 0.0929311 0.00814128 0.0933694 0.00870479 0.0938273 0.00926582 0.0943043 0.00982391 0.0948 0.0103785 0.0953138 0.0109292 0.095845 0.0114754 0.0963928 0.0120164 0.0969565 0.0125519 0.0975349 0.013081 0.0981268 0.0136032 0.0987311 0.0141178 0.0993462 0.0146241 0.0999705 0.0151213 0.100602 0.0156088 0.10124 0.0160857 0.10188 0.0165513 0.102523 0.0170049 0.103164 0.017446 0.103803 0.0178742 0.104438 0.0182893 0.105067 0.0186915 0.0190833 0.094655 0.00389121 -0.0943815 0.0949509 0.0044374 0.0952692 0.00498405 0.09561 0.0055308 0.0959732 0.00607727 0.0963588 0.00662308 0.0967667 0.00716785 0.0971968 0.00771118 0.097649 0.00825266 0.0981229 0.00879187 0.0986184 0.0093284 0.0991351 0.0098618 0.0996727 0.0103916 0.100231 0.0109174 0.100808 0.0114387 0.101405 0.0119549 0.102021 0.0124656 0.102654 0.0129702 0.103303 0.0134682 0.103969 0.0139589 0.104648 0.0144418 0.10534 0.0149163 0.106044 0.0153818 0.106758 0.0158375 0.10748 0.016283 0.108209 0.0167176 0.108942 0.0171409 0.109679 0.0175525 0.110418 0.0179522 0.0183396 0.0990911 0.00361989 -0.0988197 0.0993865 0.00414192 0.0997062 0.00466439 0.10005 0.00518693 0.100418 0.0057092 0.10081 0.00623083 0.101227 0.00675147 0.101667 0.00727074 0.102132 0.00778828 0.10262 0.00830369 0.103132 0.00881661 0.103667 0.00932662 0.104225 0.00983333 0.104806 0.0103363 0.10541 0.0108352 0.106035 0.0113295 0.106682 0.0118188 0.107349 0.0123026 0.108037 0.0127805 0.108744 0.013252 0.109469 0.0137166 0.110212 0.0141738 0.11097 0.014623 0.111744 0.0150637 0.112532 0.0154955 0.113332 0.0159177 0.114143 0.0163299 0.114964 0.0167315 0.115794 0.017122 0.0174993 0.10375 0.00335088 -0.103481 0.104045 0.00384711 0.104365 0.00434371 0.104712 0.00484037 0.105084 0.00533675 0.105483 0.00583251 0.105907 0.00632731 0.106357 0.0068208 0.106833 0.00731264 0.107334 0.00780247 0.10786 0.00828993 0.108412 0.00877467 0.108989 0.00925632 0.109591 0.0097345 0.110218 0.0102089 0.110868 0.010679 0.111542 0.0111445 0.11224 0.011605 0.11296 0.0120601 0.113703 0.0125094 0.114467 0.0129525 0.115252 0.0133889 0.116057 0.0138182 0.116881 0.0142399 0.117723 0.0146536 0.118581 0.0150588 0.119456 0.0154549 0.120346 0.0158414 0.121251 0.0162175 0.01658 0.108647 0.00308453 -0.108381 0.108941 0.00355327 0.109262 0.00402236 0.109611 0.00449148 0.109988 0.00496032 0.110392 0.00542855 0.110823 0.00589585 0.111282 0.0063619 0.111768 0.00682637 0.112282 0.00728892 0.112822 0.00774924 0.11339 0.00820698 0.113985 0.0086618 0.114606 0.00911338 0.115253 0.00956135 0.115927 0.0100054 0.116626 0.0104451 0.117351 0.0108803 0.118101 0.0113104 0.118875 0.0117351 0.119673 0.0121542 0.120495 0.0125671 0.12134 0.0129736 0.122206 0.0133732 0.123094 0.0137655 0.124003 0.0141501 0.124931 0.0145265 0.125879 0.014894 0.126845 0.0152516 0.015596 0.113798 0.00282092 -0.113535 0.114091 0.00326053 0.114413 0.00370046 0.114764 0.0041404 0.115144 0.00458005 0.115554 0.00501912 0.115992 0.0054573 0.11646 0.00589428 0.116956 0.00632976 0.117482 0.00676343 0.118036 0.00719497 0.118619 0.00762408 0.11923 0.00805044 0.11987 0.00847374 0.120538 0.00889366 0.121233 0.0093099 0.121956 0.00972212 0.122707 0.01013 0.123484 0.0105333 0.124287 0.0109316 0.125117 0.0113246 0.125972 0.0117119 0.126852 0.0120934 0.127757 0.0124685 0.128686 0.0128369 0.129638 0.0131982 0.130612 0.0135519 0.131609 0.0138974 0.132627 0.0142337 0.0145573 0.119223 0.00256006 -0.118962 0.119514 0.0029689 0.119837 0.00337803 0.12019 0.00378715 0.120574 0.004196 0.120989 0.00460428 0.121434 0.00501172 0.121911 0.00541803 0.122418 0.00582291 0.122955 0.00622608 0.123523 0.00662726 0.124121 0.00702615 0.124749 0.00742246 0.125406 0.0078159 0.126094 0.00820618 0.126811 0.00859301 0.127557 0.0089761 0.128332 0.00935516 0.129135 0.00972989 0.129967 0.0101 0.130826 0.0104652 0.131713 0.0108252 0.132626 0.0111798 0.133566 0.0115284 0.134532 0.011871 0.135523 0.0122069 0.136539 0.0125359 0.13758 0.0128572 0.138644 0.0131698 0.0134707 0.124942 0.00230188 -0.124684 0.125233 0.00267829 0.125556 0.00305496 0.125911 0.00343162 0.126299 0.00380801 0.12672 0.00418388 0.127172 0.00455895 0.127657 0.00493296 0.128175 0.00530565 0.128724 0.00567674 0.129305 0.00604596 0.129918 0.00641305 0.130563 0.00677775 0.131239 0.00713977 0.131947 0.00749886 0.132685 0.00785474 0.133454 0.00820715 0.134253 0.00855583 0.135082 0.00890051 0.135942 0.00924092 0.13683 0.0095768 0.137747 0.00990787 0.138693 0.0102339 0.139667 0.0105545 0.140669 0.0108695 0.141697 0.0111784 0.142752 0.0114808 0.143833 0.0117762 0.144939 0.0120636 0.0123402 0.130981 0.00204615 -0.130725 0.131271 0.00238845 0.131595 0.00273099 0.131953 0.00307351 0.132345 0.0034158 0.132771 0.00375759 0.133232 0.00409865 0.133726 0.00443873 0.134254 0.00477758 0.134816 0.00511497 0.135411 0.00545064 0.13604 0.00578436 0.136702 0.00611586 0.137397 0.00644491 0.138124 0.00677126 0.138884 0.00709466 0.139677 0.00741489 0.140501 0.00773168 0.141356 0.00804481 0.142243 0.00835403 0.143161 0.0086591 0.144109 0.00895977 0.145087 0.0092558 0.146095 0.00954692 0.147131 0.00983285 0.148197 0.0101133 0.14929 0.0103878 0.15041 0.0106558 0.151557 0.0109166 0.0111676 0.137369 0.0017925 -0.137116 0.137659 0.00209898 0.137984 0.00240567 0.138345 0.00271236 0.138742 0.00301882 0.139175 0.00332485 0.139643 0.00363021 0.140148 0.00393468 0.140687 0.00423805 0.141262 0.00454009 0.141872 0.00484058 0.142517 0.00513929 0.143197 0.005436 0.143911 0.00573049 0.14466 0.00602254 0.145443 0.00631193 0.146259 0.00659844 0.147109 0.00688185 0.147992 0.00716194 0.148907 0.00743851 0.149855 0.00771132 0.150835 0.00798016 0.151846 0.00824482 0.152888 0.00850505 0.15396 0.00876059 0.155062 0.00901116 0.156193 0.0092564 0.157353 0.00949583 0.158541 0.00972869 0.00995289 0.144141 0.00154042 -0.143889 0.144431 0.0018093 0.144758 0.00207839 0.145123 0.00234747 0.145526 0.00261636 0.145966 0.00288487 0.146443 0.00315279 0.146958 0.00341993 0.14751 0.00368609 0.148099 0.00395108 0.148725 0.00421469 0.149387 0.00447673 0.150086 0.004737 0.150821 0.0049953 0.151593 0.00525144 0.152399 0.00550522 0.153241 0.00575645 0.154118 0.00600493 0.15503 0.00625048 0.155975 0.0064929 0.156955 0.006732 0.157967 0.00696759 0.159012 0.00719947 0.16009 0.00742743 0.161199 0.00765124 0.16234 0.00787066 0.163511 0.00808536 0.164712 0.00829493 0.165942 0.00849872 0.008695 0.151338 0.00128919 -0.151086 0.151628 0.00151864 0.151958 0.00174827 0.152328 0.00197791 0.152737 0.0022074 0.153185 0.00243655 0.153673 0.00266522 0.154199 0.00289321 0.154765 0.00312037 0.15537 0.00334652 0.156013 0.00357149 0.156695 0.00379511 0.157414 0.0040172 0.158172 0.0042376 0.158967 0.00445615 0.1598 0.00467266 0.160669 0.00488698 0.161575 0.00509893 0.162517 0.00530836 0.163495 0.00551509 0.164508 0.00571896 0.165556 0.00591981 0.166638 0.00611747 0.167754 0.00631175 0.168903 0.00650247 0.170084 0.0066894 0.171297 0.00687228 0.172541 0.00705075 0.173816 0.00722427 0.00739146 0.159006 0.00103786 -0.158755 0.159299 0.00122594 0.159633 0.00141417 0.160008 0.00160243 0.160425 0.00179057 0.160883 0.00197844 0.161382 0.00216592 0.161923 0.00235286 0.162504 0.0025391 0.163126 0.00272452 0.163789 0.00290897 0.164491 0.00309231 0.165234 0.0032744 0.166017 0.00345509 0.166839 0.00363424 0.167699 0.00381172 0.168599 0.00398739 0.169537 0.0041611 0.170513 0.00433273 0.171525 0.00450213 0.172575 0.00466917 0.173661 0.00483371 0.174783 0.0049956 0.17594 0.00515472 0.177132 0.00531088 0.178357 0.00546392 0.179616 0.00561362 0.180907 0.00575967 0.18223 0.00590166 0.00603853 0.167204 0.000785166 -0.166951 0.1675 0.000929802 0.16784 0.00107457 0.168223 0.00121938 0.168649 0.0013641 0.169119 0.00150863 0.169632 0.00165285 0.170188 0.00179667 0.170787 0.00193996 0.171429 0.00208263 0.172114 0.00222454 0.172841 0.0023656 0.173609 0.00250569 0.17442 0.00264471 0.175271 0.00278254 0.176164 0.00291908 0.177097 0.00305421 0.17807 0.00318783 0.179083 0.00331984 0.180135 0.00345013 0.181226 0.00357858 0.182354 0.0037051 0.183521 0.00382958 0.184723 0.00395189 0.185962 0.00407193 0.187237 0.00418954 0.188546 0.00430457 0.189889 0.00441678 0.191264 0.00452586 0.00463103 0.175999 0.000529525 -0.175744 0.176301 0.000628487 0.176648 0.000727554 0.177041 0.000826652 0.177479 0.000925706 0.177963 0.00102464 0.178492 0.00112337 0.179067 0.00122182 0.179687 0.00131993 0.180352 0.0014176 0.181062 0.00151477 0.181816 0.00161135 0.182615 0.00170727 0.183457 0.00180246 0.184343 0.00189683 0.185271 0.00199032 0.186243 0.00208284 0.187256 0.00217433 0.188311 0.0022647 0.189408 0.00235389 0.190544 0.00244182 0.191721 0.00252842 0.192937 0.00261361 0.194192 0.00269732 0.195484 0.00277945 0.196814 0.00285992 0.19818 0.00293861 0.199581 0.00301537 0.201017 0.00308998 0.00316194 0.185476 0.000268738 -0.185216 0.185785 0.000319595 0.186142 0.000370513 0.186548 0.000421453 0.187001 0.000472375 0.187502 0.000523241 0.188052 0.000574007 0.188649 0.000624637 0.189294 0.000675088 0.189986 0.00072532 0.190725 0.000775296 0.191512 0.00082497 0.192345 0.000874309 0.193224 0.000923267 0.194149 0.000971811 0.195119 0.00101989 0.196135 0.00106748 0.197195 0.00111454 0.198298 0.00116102 0.199445 0.00120688 0.200635 0.0012521 0.201867 0.00129663 0.20314 0.00134043 0.204454 0.00138347 0.205808 0.00142568 0.2072 0.00146705 0.208632 0.00150749 0.2101 0.00154693 0.211605 0.00158527 0.00162225 0.195728 -0.195459 0.196047 0.196418 0.196839 0.197312 0.197835 0.198409 0.199033 0.199709 0.200434 0.201209 0.202034 0.202908 0.203832 0.204803 0.205823 0.206891 0.208005 0.209166 0.210373 0.211625 0.212922 0.214262 0.215646 0.217072 0.218539 0.220046 0.221593 0.223178 0.0404588 -0.0101776 -0.0400291 0.0408813 -0.00974055 0.0413057 -0.00927846 0.0417241 -0.00878887 0.0421356 -0.00828481 0.0425412 -0.00776973 0.0429406 -0.00724334 0.0433334 -0.00670615 0.0437194 -0.00615892 0.0440982 -0.00560222 0.0444696 -0.00503661 0.044833 -0.00446264 0.0451881 -0.00388084 0.0455344 -0.00329179 0.0458713 -0.00269603 0.0461983 -0.00209418 0.0465148 -0.00148687 0.0468205 -0.000874888 0.0471083 -0.000259619 0.0473895 0.000361573 0.0476555 0.000985666 0.0479064 0.00161106 0.0481413 0.00223746 0.0483591 0.00286412 0.0485589 0.00349009 0.0487394 0.00411439 0.0488992 0.00473593 0.0490371 0.00535355 0.0491516 0.00596603 0.00657206 0.0433574 -0.0105688 -0.0429663 0.043736 -0.0101191 0.0441106 -0.00965308 0.0444824 -0.0091606 0.04485 -0.00865246 0.0452139 -0.00813362 0.0455742 -0.00760364 0.0459307 -0.00706266 0.0462832 -0.00651137 0.0466313 -0.00595034 0.0469747 -0.00538006 0.0473131 -0.00480102 0.047646 -0.00421372 0.0479729 -0.00361867 0.0482932 -0.00301637 0.0486064 -0.00240737 0.0489118 -0.00179225 0.0492085 -0.00117159 0.0494952 -0.000546299 0.0497777 7.9023e-05 0.0500449 0.000718525 0.0503007 0.00135516 0.0505443 0.0019939 0.0507745 0.00263389 0.0509904 0.00327426 0.0511907 0.00391411 0.0513742 0.00455244 0.0515395 0.00518817 0.0516854 0.00582015 0.00644716 0.0464171 -0.0108964 -0.0460894 0.0467439 -0.0104459 0.0470667 -0.00997587 0.047388 -0.00948189 0.0477081 -0.00897265 0.0480272 -0.00845266 0.0483451 -0.00792159 0.0486619 -0.00737938 0.0489771 -0.0068266 0.0492906 -0.0062638 0.0496019 -0.00569144 0.0499109 -0.00510996 0.050217 -0.00451985 0.0505199 -0.00392156 0.0508191 -0.00331559 0.0511142 -0.00270245 0.0514046 -0.00208267 0.0516899 -0.00145686 0.0519693 -0.000825749 0.05224 -0.000191604 0.0525069 0.000451581 0.052765 0.00109712 0.0530141 0.00174478 0.0532535 0.00239447 0.0534823 0.00304549 0.0536994 0.003697 0.0539037 0.00434808 0.0540941 0.00499776 0.0542693 0.00564498 0.00628862 0.0496487 -0.0111682 -0.049377 0.0499219 -0.010719 0.0501931 -0.0102471 0.0504641 -0.00975294 0.0507357 -0.00924425 0.0510079 -0.00872481 0.0512806 -0.00819432 0.0515539 -0.00765268 0.0518277 -0.00710039 0.0521019 -0.00653794 0.0523762 -0.00596575 0.0526504 -0.00538424 0.0529244 -0.00479384 0.0531979 -0.00419499 0.0534704 -0.00358814 0.0537417 -0.00297377 0.0540114 -0.00235236 0.054279 -0.00172446 0.0545439 -0.00109065 0.0548042 -0.000451913 0.055064 0.000191789 0.0553184 0.000842785 0.0555676 0.00149551 0.0558111 0.00215096 0.0560481 0.00280856 0.0562775 0.00346754 0.0564985 0.0041271 0.0567099 0.00478633 0.0569106 0.00544429 0.00609996 0.0530379 -0.0113884 -0.0528177 0.0532599 -0.010941 0.0534812 -0.0104684 0.0537032 -0.00997498 0.0539268 -0.00946778 0.0541519 -0.00894994 0.0543787 -0.00842118 0.0546075 -0.00788143 0.0548382 -0.00733112 0.055071 -0.00677068 0.0553057 -0.00620051 0.0555425 -0.00562096 0.0557811 -0.00503245 0.0560215 -0.00443537 0.0562634 -0.00383014 0.0565068 -0.00321717 0.0567514 -0.0025969 0.0569967 -0.00196982 0.0572425 -0.0013364 0.0574877 -0.000697169 0.0577355 -5.5993e-05 0.0579809 0.000597458 0.058225 0.00125133 0.0584674 0.00190861 0.0587072 0.00256873 0.0589437 0.00323101 0.0591761 0.00389471 0.0594034 0.00455904 0.0596246 0.00522313 0.00588607 0.0565788 -0.0115579 -0.0564093 0.0567501 -0.0111124 0.0569217 -0.01064 0.0570949 -0.0101482 0.0572706 -0.00964341 0.0574488 -0.00912819 0.0576299 -0.00860228 0.0578141 -0.00806565 0.0580017 -0.00751865 0.0581927 -0.00696169 0.0583873 -0.00639513 0.0585856 -0.00581929 0.0587877 -0.00523455 0.0589936 -0.00464126 0.0592033 -0.00403981 0.0594167 -0.00343059 0.0596338 -0.00281399 0.0598544 -0.00219047 0.0600785 -0.00156046 0.0603059 -0.000924524 0.0605336 -0.00028378 0.0607672 0.000363921 0.0610023 0.00101622 0.0612391 0.00167183 0.0614771 0.00233074 0.0617157 0.0029924 0.0619543 0.00365614 0.062192 0.00432126 0.0624282 0.00498701 0.00565258 0.0602683 -0.0116755 -0.0601508 0.0603885 -0.0112325 0.0605102 -0.0107617 0.0606346 -0.0102726 0.0607626 -0.00977137 0.0608943 -0.00925994 0.0610301 -0.0087381 0.0611703 -0.00820584 0.0613152 -0.00766349 0.0614649 -0.00711142 0.0616197 -0.00654995 0.0617798 -0.0059794 0.0619454 -0.00540011 0.0621166 -0.00481241 0.0622934 -0.00421665 0.062476 -0.0036132 0.0626644 -0.00300242 0.0628587 -0.00238471 0.0630587 -0.00176047 0.0632643 -0.00113016 0.063475 -0.0004944 0.0636928 0.000146118 0.0639151 0.000793911 0.0641423 0.00144456 0.0643742 0.00209882 0.0646104 0.00275622 0.0648504 0.0034162 0.0650935 0.00407813 0.0653392 0.00474136 0.00540517 0.0641063 -0.0117402 -0.0640416 0.0641746 -0.0113008 0.0642459 -0.010833 0.0643214 -0.0103481 0.0644017 -0.00985173 0.0644872 -0.00934546 0.0645782 -0.00882907 0.0646749 -0.00830256 0.0647777 -0.00776627 0.0648868 -0.00722055 0.0650026 -0.00666568 0.0651251 -0.00610198 0.0652548 -0.00552975 0.0653917 -0.00494932 0.0655361 -0.00436102 0.065688 -0.00376518 0.0658478 -0.00316215 0.0660153 -0.00255228 0.0661908 -0.00193595 0.0663742 -0.00131355 0.0665653 -0.000685517 0.0667658 -5.4344e-05 0.0669733 0.000586386 0.0671887 0.00122917 0.0674118 0.00187577 0.0676422 0.00252576 0.0678798 0.00317864 0.068124 0.00383386 0.0683746 0.00449084 0.00514895 0.0680949 -0.0117513 -0.0680838 0.0681108 -0.0113167 0.0681313 -0.0108535 0.0681577 -0.0103745 0.0681904 -0.00988445 0.0682298 -0.00938486 0.0682761 -0.00887543 0.0683298 -0.00835622 0.0683911 -0.00782753 0.0684602 -0.0072897 0.0685375 -0.00674302 0.0686233 -0.00618776 0.0687178 -0.00562424 0.0688212 -0.00505275 0.0689338 -0.00447362 0.0690558 -0.00388716 0.0691874 -0.00329372 0.0693287 -0.00269362 0.06948 -0.00208722 0.0696413 -0.00147489 0.0698129 -0.000857059 0.0699931 -0.00023455 0.0701854 0.000394065 0.0703877 0.00102685 0.0706002 0.00166328 0.0708228 0.00230318 0.0710554 0.0029461 0.0712976 0.00359158 0.0715494 0.0042391 0.00488811 0.0722389 -0.0117083 -0.0722818 0.0722019 -0.0112797 0.0721714 -0.010823 0.0721484 -0.0103514 0.0721334 -0.00986945 0.0721267 -0.00937817 0.0721286 -0.00887735 0.0721394 -0.00836707 0.0721596 -0.00784764 0.0721892 -0.00731936 0.0722287 -0.0067825 0.0722783 -0.00623736 0.0723383 -0.00568422 0.0724089 -0.00512338 0.0724904 -0.00455513 0.0725831 -0.00397981 0.072687 -0.0033977 0.0728026 -0.00280916 0.0729299 -0.0022145 0.0730691 -0.00161409 0.0732203 -0.00100829 0.0733834 -0.00039763 0.0735596 0.000217864 0.073748 0.000838464 0.0739488 0.00146246 0.0741621 0.00208988 0.0743878 0.00272036 0.074626 0.00335347 0.0748763 0.00398875 0.00462572 0.0765443 -0.0116109 -0.0766417 0.0764543 -0.0111897 0.0763726 -0.0107413 0.0763001 -0.010279 0.0762373 -0.00980671 0.0761846 -0.00932544 0.0761422 -0.00883494 0.0761104 -0.00833531 0.0760896 -0.00782685 0.0760801 -0.00730983 0.0760821 -0.00678453 0.076096 -0.00625123 0.076122 -0.0057102 0.0761603 -0.00516173 0.0762113 -0.00460612 0.0762752 -0.00404366 0.0763522 -0.00347467 0.0764424 -0.00289945 0.0765463 -0.00231833 0.0766638 -0.00173164 0.0767952 -0.00113972 0.0769406 -0.000542977 0.0771012 5.72551e-05 0.0772755 0.000664203 0.0774643 0.00127365 0.0776677 0.00188647 0.0778857 0.00250231 0.0781184 0.00312077 0.0783657 0.00374143 0.00436386 0.0810184 -0.011459 -0.0811704 0.0808754 -0.0110467 0.0807425 -0.0106084 0.0806206 -0.0101571 0.0805102 -0.00969629 0.0804116 -0.00922679 0.080325 -0.00874836 0.0802508 -0.00826113 0.0801893 -0.00776537 0.0801409 -0.00726137 0.0801057 -0.00674939 0.0800842 -0.00622968 0.0800765 -0.00570252 0.0800829 -0.00516819 0.0801038 -0.00462697 0.0801393 -0.00407916 0.0801897 -0.00352505 0.0802552 -0.00296494 0.080336 -0.00239916 0.0804324 -0.00182801 0.0805445 -0.00125183 0.0806725 -0.000670985 0.0808162 -8.6492e-05 0.0809767 0.000503701 0.0811536 0.0010968 0.0813469 0.00169312 0.0815569 0.00229235 0.0817835 0.00289414 0.0820269 0.00349808 0.00410378 0.0856697 -0.0112526 -0.085876 0.0854738 -0.0108508 0.0852899 -0.0104245 0.0851188 -0.00998596 0.0849609 -0.00953841 0.0848165 -0.00908241 0.084686 -0.00861781 0.0845696 -0.00814473 0.0844676 -0.00766344 0.0843805 -0.00717422 0.0843084 -0.0066773 0.0842517 -0.00617295 0.0842106 -0.00566143 0.0841854 -0.005143 0.0841764 -0.00461794 0.0841837 -0.00408654 0.0842078 -0.00354908 0.0842487 -0.00300587 0.0843067 -0.00245719 0.0843821 -0.00190336 0.084475 -0.0013447 0.0845855 -0.000781562 0.0847135 -0.000214453 0.0848601 0.000357064 0.0850249 0.000932013 0.085208 0.00151 0.0854096 0.00209078 0.0856297 0.002674 0.0858685 0.00325931 0.00384632 0.090507 -0.0109921 -0.0907675 0.0902587 -0.0106025 0.0900241 -0.0101899 0.0898041 -0.00976595 0.0895991 -0.00933335 0.0894093 -0.00889259 0.089235 -0.00844356 0.0890766 -0.00798637 0.0889345 -0.0075213 0.0888089 -0.0070486 0.0887001 -0.0065685 0.0886084 -0.00608126 0.0885341 -0.00558711 0.0884774 -0.00508634 0.0884387 -0.0045792 0.0884181 -0.00406596 0.0884159 -0.00354691 0.0884324 -0.00302233 0.0884677 -0.00249252 0.0885221 -0.00195776 0.0885958 -0.00141837 0.0886889 -0.000874682 0.0888015 -0.000327078 0.0889343 0.000224344 0.0890869 0.000779373 0.0892597 0.00133725 0.0894526 0.00189779 0.089666 0.00246066 0.0898998 0.0030255 0.00359197 0.0955404 -0.010678 -0.0958545 0.0952402 -0.0103022 0.0949554 -0.00990518 0.094687 -0.00949748 0.0944351 -0.00908154 0.0942003 -0.00865773 0.0939827 -0.00822597 0.0937827 -0.00778639 0.0936007 -0.00733925 0.0934368 -0.00688478 0.0932916 -0.00642322 0.0931651 -0.0059548 0.0930578 -0.00547977 0.0929698 -0.00499838 0.0929015 -0.00451088 0.0928531 -0.00401754 0.0928248 -0.00351863 0.0928169 -0.00301442 0.0928296 -0.0025052 0.092863 -0.00199125 0.0929175 -0.00147287 0.0929932 -0.000950362 0.0930902 -0.000424089 0.0932091 0.000105503 0.0933494 0.000639011 0.0935116 0.00117504 0.0936958 0.00171358 0.0939022 0.00225434 0.0941307 0.00279697 0.00334114 0.100781 -0.010311 -0.101148 0.100429 -0.00995064 0.100095 -0.00957086 0.0997785 -0.00918111 0.0994804 -0.00878348 0.099201 -0.00837827 0.0989404 -0.00796545 0.0986992 -0.00754515 0.0984776 -0.00711761 0.0982758 -0.00668306 0.0980943 -0.00624172 0.0979334 -0.00579381 0.0977932 -0.00533958 0.097674 -0.00487926 0.0975763 -0.0044131 0.0975001 -0.00394135 0.0974457 -0.00346427 0.0974134 -0.00298213 0.0974034 -0.00249519 0.0974159 -0.00200374 0.0974511 -0.00150804 0.0975091 -0.0010084 0.0975901 -0.000505101 0.0976963 -7.27352e-07 0.0978241 0.000511221 0.0979756 0.00102359 0.0981508 0.0015384 0.0983498 0.00205532 0.0985728 0.00257401 0.00309416 0.10624 -0.00989176 -0.106659 0.105838 -0.00954857 0.105455 -0.00918765 0.105091 -0.00881745 0.104747 -0.00843973 0.104424 -0.00805474 0.104121 -0.00766247 0.103839 -0.00726308 0.103578 -0.00685677 0.103339 -0.00644377 0.103121 -0.00602429 0.102926 -0.00559855 0.102753 -0.00516677 0.102603 -0.00472919 0.102476 -0.00428604 0.102372 -0.00383757 0.102292 -0.00338402 0.102236 -0.00292564 0.102203 -0.00246271 0.102195 -0.00199548 0.102211 -0.00152422 0.102252 -0.00104922 0.102317 -0.000570775 0.102406 -8.9375e-05 0.102522 0.000395501 0.102663 0.000882718 0.102829 0.00137217 0.103021 0.00186359 0.103238 0.0023567 0.00285116 0.111932 -0.00942124 -0.112403 0.11148 -0.0090968 0.111049 -0.0087563 0.110639 -0.00840718 0.11025 -0.00805089 0.109883 -0.00768767 0.109538 -0.00731752 0.109215 -0.00694059 0.108916 -0.0065571 0.108639 -0.00616723 0.108386 -0.00577121 0.108157 -0.00536924 0.107952 -0.00496153 0.107771 -0.00454831 0.107614 -0.0041298 0.107483 -0.00370623 0.107377 -0.00327783 0.107296 -0.00284486 0.107241 -0.00240757 0.107212 -0.00196619 0.107209 -0.001521 0.107232 -0.00107227 0.107281 -0.000620256 0.107357 -0.000165311 0.10746 0.000292564 0.10759 0.000752858 0.107747 0.00121527 0.107931 0.00167954 0.108142 0.00214539 0.0026125 0.117873 -0.00890032 -0.118394 0.117372 -0.00859616 0.116894 -0.00827755 0.116437 -0.00795097 0.116004 -0.00761759 0.115594 -0.00727761 0.115208 -0.00693108 0.114845 -0.00657814 0.114507 -0.00621898 0.114194 -0.0058538 0.113905 -0.00548279 0.113642 -0.00510615 0.113405 -0.00472409 0.113193 -0.00433681 0.113008 -0.00394453 0.112849 -0.00354746 0.112717 -0.00314585 0.112612 -0.0027399 0.112534 -0.00232987 0.112484 -0.00191599 0.112462 -0.00149851 0.112467 -0.00107767 0.112501 -0.000653746 0.112562 -0.000227018 0.112652 0.000202352 0.112771 0.000634065 0.112919 0.00106777 0.113095 0.00150321 0.1133 0.00194013 0.00237823 0.124081 -0.00832991 -0.124651 0.123532 -0.00804748 0.123007 -0.00775216 0.122505 -0.00744949 0.122028 -0.00714041 0.121575 -0.0068251 0.121148 -0.00650363 0.120746 -0.00617612 0.12037 -0.00584278 0.12002 -0.00550377 0.119696 -0.00515928 0.119399 -0.0048095 0.11913 -0.00445462 0.118888 -0.00409484 0.118674 -0.00373036 0.118488 -0.00336139 0.11833 -0.00298813 0.118201 -0.00261082 0.118101 -0.00222967 0.11803 -0.0018449 0.117988 -0.00145675 0.117976 -0.00106546 0.117993 -0.000671273 0.118041 -0.000274444 0.118118 0.000124795 0.118226 0.000526293 0.118364 0.00092963 0.118533 0.0013346 0.118732 0.00174094 0.00214838 0.130577 -0.00771083 -0.131196 0.129981 -0.00745152 0.12941 -0.0071808 0.128863 -0.00690334 0.128343 -0.00661988 0.127848 -0.0063306 0.12738 -0.00603556 0.126939 -0.00573491 0.126525 -0.00542881 0.126139 -0.00511742 0.12578 -0.00480092 0.12545 -0.0044795 0.125149 -0.00415331 0.124877 -0.00382255 0.124634 -0.00348742 0.124421 -0.0031481 0.124237 -0.00280479 0.124084 -0.00245769 0.123961 -0.00210702 0.12387 -0.00175298 0.123809 -0.00139579 0.123779 -0.00103568 0.12378 -0.000672865 0.123814 -0.000307591 0.123878 5.98534e-05 0.123975 0.000429509 0.124104 0.000800821 0.124265 0.00117365 0.124458 0.00154775 0.00192287 0.137387 -0.00704381 -0.138054 0.136745 -0.00680891 0.136128 -0.00656402 0.135537 -0.006313 0.134974 -0.00605644 0.134438 -0.00579449 0.13393 -0.00552723 0.133449 -0.00525478 0.132998 -0.0049773 0.132575 -0.00469496 0.132182 -0.00440789 0.131819 -0.00411627 0.131486 -0.00382027 0.131184 -0.00352005 0.130912 -0.00321579 0.130672 -0.00290766 0.130463 -0.00259586 0.130286 -0.00228057 0.130141 -0.00196197 0.130028 -0.00164028 0.129948 -0.00131568 0.1299 -0.000988378 0.129886 -0.000658591 0.129905 -0.000326526 0.129958 7.24431e-06 0.130044 0.0003436 0.130163 0.000681207 0.130317 0.00102021 0.130504 0.00136039 0.00170151 0.144541 -0.0063294 -0.145256 0.143853 -0.00612016 0.143191 -0.00590225 0.142557 -0.00567885 0.141951 -0.0054504 0.141373 -0.00521703 0.140825 -0.00497883 0.140306 -0.00473591 0.139817 -0.00448842 0.139359 -0.00423649 0.138931 -0.00398027 0.138535 -0.00371992 0.13817 -0.00345557 0.137837 -0.00318738 0.137537 -0.00291552 0.137269 -0.00264014 0.137035 -0.00236142 0.136834 -0.00207951 0.136667 -0.00179461 0.136533 -0.00150689 0.136434 -0.00121652 0.136369 -0.000923701 0.136339 -0.000628615 0.136344 -0.000331458 0.136384 -3.25148e-05 0.136459 0.000268315 0.13657 0.000570525 0.136716 0.000874001 0.136898 0.00117854 0.00148394 0.152075 -0.00556797 -0.152836 0.15134 -0.00538553 0.150634 -0.00519571 0.149956 -0.00500106 0.149308 -0.00480189 0.148689 -0.00459831 0.1481 -0.00439042 0.147543 -0.00417833 0.147017 -0.00396215 0.146522 -0.00374202 0.14606 -0.00351805 0.14563 -0.00329039 0.145234 -0.00305916 0.144871 -0.00282451 0.144542 -0.00258658 0.144248 -0.0023455 0.143988 -0.00210144 0.143763 -0.00185454 0.143573 -0.00160495 0.143419 -0.00135285 0.143301 -0.00109838 0.143219 -0.000841727 0.143173 -0.000583045 0.143164 -0.00032251 0.143192 -6.03297e-05 0.143257 0.000203433 0.143359 0.000468486 0.143498 0.000734674 0.143675 0.00100182 0.00126973 0.16003 -0.00475962 -0.160838 0.159249 -0.0046051 0.158498 -0.00444443 0.157777 -0.0042796 0.157085 -0.00411084 0.156425 -0.00393825 0.155797 -0.00376192 0.1552 -0.00358192 0.154637 -0.00339839 0.154106 -0.00321141 0.153609 -0.0030211 0.153146 -0.00282757 0.152718 -0.00263094 0.152325 -0.00243134 0.151967 -0.00222888 0.151645 -0.00202369 0.15136 -0.00181589 0.151111 -0.00160563 0.150899 -0.00139303 0.150724 -0.00117824 0.150587 -0.00096139 0.150488 -0.000742629 0.150427 -0.000522106 0.150405 -0.000299965 0.150421 -7.63755e-05 0.150476 0.000148562 0.15057 0.000374646 0.150703 0.000601722 0.150875 0.000829633 0.00105822 0.168455 -0.00390419 -0.16931 0.167628 -0.00377864 0.166832 -0.00364814 0.166067 -0.0035142 0.165333 -0.00337698 0.164631 -0.00323655 0.163962 -0.00309299 0.163327 -0.00294638 0.162725 -0.0027968 0.162158 -0.00264435 0.161626 -0.00248911 0.16113 -0.00233118 0.160669 -0.00217066 0.160246 -0.00200765 0.159859 -0.00184224 0.15951 -0.00167455 0.159199 -0.00150468 0.158926 -0.00133275 0.158692 -0.00115885 0.158497 -0.000983121 0.158341 -0.000805665 0.158225 -0.000626605 0.158149 -0.000446064 0.158113 -0.000264166 0.158118 -8.1044e-05 0.158163 0.000103199 0.158249 0.000288415 0.158376 0.000474468 0.158545 0.000661228 0.000848564 0.177408 -0.00300124 -0.178311 0.176535 -0.00290568 0.175693 -0.00280637 0.174884 -0.00270437 0.174106 -0.0025998 0.173363 -0.00249271 0.172653 -0.00238316 0.171978 -0.00227121 0.171338 -0.00215694 0.170734 -0.00204041 0.170166 -0.00192169 0.169636 -0.00180086 0.169143 -0.00167799 0.168689 -0.00155316 0.168273 -0.00142645 0.167896 -0.00129794 0.167559 -0.00116771 0.167263 -0.00103586 0.167006 -0.000902464 0.166791 -0.000767619 0.166616 -0.000631415 0.166484 -0.000493945 0.166393 -0.000355305 0.166344 -0.000215593 0.166338 -7.49116e-05 0.166375 6.66552e-05 0.166454 0.000208996 0.166577 0.000352005 0.166742 0.000495576 0.000639611 0.186959 -0.00205009 -0.187911 0.186039 -0.00198551 0.185151 -0.00191836 0.184296 -0.00184935 0.183475 -0.00177854 0.182688 -0.00170597 0.181937 -0.00163167 0.181221 -0.00155571 0.180542 -0.00147811 0.179901 -0.00139893 0.179297 -0.00131822 0.178733 -0.00123603 0.178207 -0.0011524 0.177721 -0.00106741 0.177276 -0.000981094 0.176871 -0.000893517 0.176509 -0.000804737 0.176187 -0.000714813 0.175909 -0.000623807 0.175673 -0.000531781 0.17548 -0.000438797 0.175331 -0.000344925 0.175226 -0.000250226 0.175165 -0.000154772 0.175149 -5.86308e-05 0.175178 3.81315e-05 0.175251 0.000135448 0.17537 0.000233236 0.175534 0.000331427 0.000429949 0.197187 -0.00104984 -0.198187 0.196219 -0.00101719 0.195283 -0.000983195 0.194382 -0.000948227 0.193516 -0.00091231 0.192686 -0.000875464 0.191892 -0.000837713 0.191135 -0.000799073 0.190416 -0.000759577 0.189737 -0.000719241 0.189097 -0.000678096 0.188497 -0.000636166 0.187938 -0.00059348 0.18742 -0.000550066 0.186945 -0.000505952 0.186513 -0.000461171 0.186124 -0.000415748 0.185779 -0.000369721 0.185478 -0.000323116 0.185222 -0.000275973 0.185012 -0.000228318 0.184847 -0.000180192 0.184729 -0.000131627 0.184656 -8.26565e-05 0.184631 -3.33239e-05 0.184653 1.63417e-05 0.184722 6.63093e-05 0.184839 0.000116526 0.185003 0.000166961 0.000217575 0.208193 -0.209243 0.207176 0.206192 0.205244 0.204332 0.203456 0.202619 0.20182 0.20106 0.200341 0.199663 0.199027 0.198433 0.197883 0.197377 0.196916 0.1965 0.19613 0.195807 0.195531 0.195303 0.195123 0.194991 0.194908 0.194875 0.194892 0.194958 0.195074 0.195241 0.0371879 0.000250658 -0.000247263 0.037178 0.000751155 -0.000741264 0.0371616 0.00125349 -0.00123712 0.0371388 0.00176244 -0.00173965 0.0371096 0.00228157 -0.00225233 0.0370738 0.00281507 -0.00277932 0.0370315 0.00336717 -0.00332485 0.0369825 0.00394251 -0.00389354 0.0369268 0.00454611 -0.00449042 0.0368644 0.00518358 -0.00512113 0.0367952 0.00586117 -0.00579196 0.0367193 0.00658595 -0.00651006 0.0366369 0.00736596 -0.00728362 0.0365486 0.00821044 -0.00812205 0.0364548 0.00913003 -0.00903629 0.0363568 0.0101371 -0.0100391 0.0362561 0.011246 -0.0111453 0.0361553 0.0124734 -0.0123726 0.0360577 0.013839 -0.0137414 0.0359684 0.0153655 -0.0152763 0.0358947 0.0170792 -0.0170055 0.0358467 0.0190107 -0.0189627 0.0358387 0.021194 -0.0211859 0.0358906 0.0236677 -0.0237197 0.0360301 0.0264694 -0.0266089 0.0362953 0.0296419 -0.029907 0.0367348 0.0331962 -0.0336358 0.0374119 0.0371746 -0.0378517 0.0384077 0.0413671 -0.0423629 0.0459665 -0.0475878 0.0393107 0.000253789 0.0393014 0.000760522 0.0392857 0.00126917 0.0392638 0.00178433 0.0392357 0.0023097 0.0392013 0.00284943 0.0391607 0.00340778 0.0391138 0.00398938 0.0390607 0.00459924 0.0390014 0.0052429 0.038936 0.00592655 0.0388648 0.00665713 0.0387883 0.00744252 0.038707 0.00829172 0.038622 0.00921502 0.0385348 0.0102243 0.0384475 0.0113333 0.0383631 0.0125578 0.038286 0.0139161 0.0382222 0.0154293 0.0381799 0.0171215 0.0381708 0.0190198 0.0382107 0.0211541 0.0383215 0.0235569 0.0385325 0.0262585 0.0388839 0.0292905 0.0394248 0.0326553 0.0402277 0.0363717 0.0413384 0.0402564 0.0443386 0.0415546 0.000256691 0.0415459 0.000769267 0.0415312 0.00128389 0.0415105 0.00180495 0.041484 0.00233622 0.0414516 0.0028818 0.0414135 0.00344598 0.0413695 0.00403333 0.0413199 0.00464884 0.0412648 0.00529798 0.0412045 0.00598682 0.0411395 0.00672217 0.0410703 0.00751168 0.040998 0.00836405 0.0409239 0.00928918 0.0408498 0.0102984 0.0407784 0.0114046 0.0407135 0.0126227 0.04066 0.0139696 0.040625 0.0154644 0.0406178 0.0171287 0.0406512 0.0189863 0.0407427 0.0210626 0.0409154 0.0233842 0.0412001 0.0259738 0.041638 0.0288526 0.0422777 0.0320155 0.0431924 0.035457 0.0444018 0.039047 0.0426509 0.0439266 0.000259338 0.0439186 0.000777273 0.0439051 0.0012974 0.0438861 0.00182391 0.0438617 0.0023606 0.043832 0.00291153 0.043797 0.00348095 0.0437569 0.00407342 0.0437119 0.00469383 0.0436623 0.00534756 0.0436086 0.00604056 0.0435513 0.00677943 0.0434914 0.00757158 0.0434301 0.00842535 0.0433691 0.00935018 0.0433108 0.0103567 0.0432583 0.0114571 0.043216 0.0126651 0.0431896 0.0139959 0.043187 0.0154669 0.0432187 0.017097 0.0432986 0.0189064 0.0434452 0.020916 0.0436829 0.0231465 0.044043 0.0256137 0.044567 0.0283287 0.0453021 0.0312804 0.0463172 0.0344419 0.0476346 0.0377296 0.0409086 0.0464339 0.000261684 0.0464268 0.000784388 0.0464148 0.00130941 0.0463979 0.00184077 0.0463762 0.00238226 0.0463499 0.00293789 0.046319 0.00351184 0.0462838 0.0041086 0.0462447 0.00473299 0.046202 0.00539025 0.0461564 0.00608617 0.0461087 0.00682712 0.0460601 0.0076202 0.0460121 0.00847335 0.0459668 0.00939546 0.045927 0.0103965 0.0458964 0.0114877 0.04588 0.0126815 0.0458844 0.0139916 0.0459181 0.0154332 0.0459926 0.0170225 0.0461227 0.0187763 0.0463278 0.020711 0.0466329 0.0228414 0.0470696 0.0251769 0.0476785 0.0277198 0.0485049 0.0304541 0.0496111 0.0333357 0.0510279 0.0363128 0.0391188 0.0490844 0.000263675 0.0490783 0.000790435 0.0490681 0.0013196 0.0490538 0.00185507 0.0490355 0.00240059 0.0490133 0.00296008 0.0489875 0.00353767 0.0489583 0.00413775 0.0489263 0.004765 0.048892 0.00542454 0.0488562 0.00612193 0.0488201 0.00686328 0.0487849 0.00765535 0.0487527 0.00850561 0.0487258 0.00942236 0.0487075 0.0104148 0.0487021 0.0114931 0.0487151 0.0126685 0.0487537 0.0139529 0.0488274 0.0153595 0.0489483 0.0169016 0.049132 0.0185926 0.0493983 0.0204446 0.0497727 0.022467 0.0502862 0.0246635 0.0509776 0.0270284 0.0518899 0.0295417 0.0530774 0.0321482 0.0545767 0.0348135 0.0372862 0.0518861 0.000265246 0.0518814 0.000795209 0.0518733 0.00132763 0.0518621 0.0018663 0.0518478 0.00241491 0.0518306 0.00297727 0.0518108 0.00355743 0.0517889 0.00415964 0.0517655 0.00478846 0.0517412 0.00544881 0.0517171 0.006146 0.0516946 0.00688586 0.0516752 0.00767472 0.0516612 0.00851958 0.0516555 0.00942807 0.0516618 0.0104086 0.0516847 0.0114702 0.0517305 0.0126227 0.051807 0.0138765 0.0519242 0.0152424 0.0520948 0.016731 0.0523349 0.0183525 0.0526646 0.0201148 0.0531091 0.0220226 0.0536983 0.0240742 0.0544687 0.026258 0.0554604 0.02855 0.0567187 0.03089 0.058283 0.0332491 0.0354185 0.0548479 0.00026632 0.0548446 0.000798481 0.0548391 0.00133312 0.0548315 0.00187392 0.0548219 0.00242449 0.0548106 0.00298855 0.0547981 0.00357 0.0547847 0.00417298 0.0547713 0.00480185 0.0547588 0.00546132 0.0547484 0.00615644 0.0547416 0.00689267 0.0547404 0.00767592 0.0547473 0.00851263 0.0547657 0.00940973 0.0547995 0.0103747 0.0548541 0.0114156 0.054936 0.0125407 0.0550537 0.0137588 0.0552175 0.0150785 0.0554407 0.0165078 0.0557396 0.0180537 0.056134 0.0197204 0.0566484 0.0215082 0.0573114 0.0234112 0.0581563 0.0254131 0.0592195 0.0274868 0.060538 0.0295715 0.0621503 0.0316368 0.0335272 0.0579787 0.000266813 0.0579772 0.000799997 0.0579747 0.00133565 0.0579712 0.00187733 0.0579672 0.00242856 0.0579628 0.00299294 0.0579585 0.00357424 0.0579551 0.0041764 0.0579534 0.0048036 0.0579544 0.00546029 0.0579596 0.00615122 0.0579708 0.00688147 0.0579903 0.00765648 0.0580208 0.00848208 0.0580661 0.00936448 0.0581305 0.0103102 0.0582199 0.0113262 0.0583411 0.0124195 0.058503 0.0135969 0.0587164 0.0148651 0.0589945 0.0162297 0.0593537 0.0176945 0.0598134 0.0192607 0.0603966 0.020925 0.0611302 0.0226776 0.0620441 0.0244992 0.0631704 0.0263606 0.0645386 0.0282033 0.0661827 0.0299927 0.0316261 0.0612883 0.000266633 0.0612888 0.000799485 0.0612897 0.00133476 0.0612911 0.00187589 0.0612934 0.0024263 0.0612969 0.00298944 0.0613022 0.00356891 0.0613101 0.00416846 0.0613217 0.00479206 0.0613381 0.00544386 0.061361 0.00612828 0.0613925 0.00684998 0.0614351 0.00761391 0.0614919 0.00842527 0.0615669 0.00928951 0.0616649 0.0102123 0.0617919 0.0111992 0.0619553 0.0122561 0.0621641 0.0133881 0.0624293 0.0145999 0.0627641 0.0158949 0.0631844 0.0172742 0.0637088 0.0187363 0.064359 0.0202748 0.0651592 0.0218774 0.0661358 0.0235226 0.0673162 0.0251802 0.0687233 0.0267962 0.0703846 0.0283314 0.0297288 0.0647868 0.000265682 0.0647896 0.000796654 0.0647944 0.00132998 0.0648013 0.00186895 0.0648108 0.00241685 0.0648233 0.00297698 0.0648394 0.00355275 0.0648602 0.00414771 0.0648867 0.00476556 0.0649204 0.00541015 0.0649631 0.00608554 0.0650172 0.00679595 0.0650853 0.0075458 0.0651709 0.00833964 0.0652783 0.00918215 0.0654125 0.010078 0.0655799 0.0110319 0.0657879 0.012048 0.0660458 0.0131302 0.0663645 0.0142812 0.066757 0.0155024 0.0672384 0.0167928 0.0678262 0.0181484 0.0685402 0.0195608 0.0694021 0.0210155 0.0704345 0.0224903 0.0716598 0.0239548 0.0730954 0.0253607 0.0747611 0.0266657 0.0278482 0.068485 0.00026386 0.0684905 0.000791205 0.0684997 0.0013208 0.0685128 0.0018558 0.0685303 0.00239931 0.0685528 0.00295447 0.0685811 0.00352448 0.0686162 0.00411265 0.0686593 0.00472241 0.0687122 0.00535729 0.0687768 0.00602095 0.0688556 0.00671716 0.0689516 0.00744979 0.0690684 0.00822275 0.0692107 0.00903994 0.0693835 0.00990515 0.0695935 0.0108219 0.0698482 0.0117933 0.0701569 0.0128216 0.07053 0.013908 0.0709803 0.0150522 0.0715218 0.0162513 0.0721707 0.0174995 0.0729448 0.0187867 0.0738628 0.0200975 0.0749434 0.0214096 0.0762046 0.0226936 0.0776585 0.0239067 0.0793179 0.0250063 0.0259957 0.0723944 0.000261065 0.0724028 0.000782832 0.0724168 0.00130674 0.0724369 0.00183574 0.0724634 0.00237279 0.0724971 0.00292082 0.0725387 0.00348281 0.0725896 0.00406182 0.072651 0.00466096 0.0727249 0.00528345 0.0728133 0.00593254 0.0729189 0.00661154 0.0730449 0.00732374 0.0731953 0.00807243 0.0733745 0.00886074 0.073588 0.00969159 0.0738424 0.0105675 0.0741453 0.0114904 0.0745056 0.0124614 0.0749335 0.0134802 0.0754407 0.0145449 0.0760406 0.0156515 0.0767475 0.0167926 0.0775769 0.0179573 0.0785447 0.0191298 0.0796659 0.0202884 0.0809541 0.0214054 0.082417 0.0224438 0.0840609 0.0233625 0.0241806 0.0765269 0.000257193 0.0765385 0.000771229 0.076558 0.00128726 0.0765857 0.00180806 0.0766221 0.00233638 0.076668 0.00287494 0.0767243 0.00342647 0.0767923 0.00399376 0.0768737 0.00457963 0.0769702 0.00518693 0.0770843 0.00581849 0.0772186 0.00647717 0.0773767 0.00716571 0.0775623 0.00788676 0.0777803 0.00864274 0.0780362 0.00943575 0.0783363 0.0102674 0.0786881 0.0111386 0.0791002 0.0120493 0.0795822 0.0129981 0.080145 0.0139821 0.0808005 0.014996 0.0815614 0.0160317 0.0824408 0.0170778 0.0834518 0.0181188 0.0846059 0.0191343 0.0859126 0.0200987 0.0873759 0.0209804 0.0889969 0.0217415 0.0224099 0.0808953 0.000252147 0.0809104 0.0007561 0.0809358 0.0012619 0.0809718 0.00177209 0.0810189 0.00228922 0.0810781 0.00281578 0.0811503 0.00335426 0.0812369 0.00390714 0.0813396 0.00447693 0.0814604 0.00506612 0.0816018 0.00567715 0.0817666 0.00631238 0.0819582 0.00697406 0.0821808 0.00766421 0.0824389 0.0083846 0.0827381 0.00913657 0.0830846 0.00992092 0.0834855 0.0107377 0.0839488 0.0115859 0.0844836 0.0124633 0.0850996 0.0133661 0.0858073 0.0142883 0.0866176 0.0152214 0.0875412 0.0161542 0.0885885 0.0170716 0.0897678 0.0179549 0.0910851 0.0187814 0.0925415 0.0195241 0.0941335 0.0201495 0.0206889 0.085513 0.000245832 0.085532 0.000737165 0.0855637 0.00123017 0.0856086 0.00172718 0.0856673 0.00223051 0.0857407 0.00274239 0.0858299 0.00326506 0.0859363 0.00380071 0.0860617 0.00435154 0.0862082 0.00491965 0.0863782 0.00550711 0.0865748 0.00611581 0.0868014 0.0067475 0.0870619 0.00740366 0.0873611 0.00808545 0.0877041 0.00879354 0.088097 0.00952804 0.0885464 0.0102883 0.0890598 0.0110725 0.0896453 0.0118779 0.0903114 0.0127 0.0910671 0.0135325 0.0919216 0.014367 0.0928834 0.0151924 0.0939601 0.0159949 0.0951574 0.0167576 0.0964782 0.0174607 0.097921 0.0180813 0.0994797 0.0185908 0.0190208 0.0903943 0.000238162 0.0904173 0.000714167 0.0904558 0.00119167 0.0905102 0.00167275 0.0905813 0.0021595 0.0906698 0.0026539 0.0907769 0.0031579 0.0909042 0.00367342 0.0910534 0.00420232 0.0912267 0.00474638 0.0914266 0.00530724 0.091656 0.00588641 0.0919183 0.00648515 0.0922175 0.00710446 0.092558 0.00774495 0.0929448 0.00840673 0.0933835 0.00908934 0.0938803 0.00979151 0.0944417 0.010511 0.095075 0.0112446 0.0957876 0.0119874 0.0965869 0.0127332 0.0974801 0.0134737 0.0984738 0.0141986 0.0995733 0.0148954 0.100782 0.0155492 0.1021 0.0161427 0.103524 0.0166573 0.105046 0.0170689 0.0174072 0.0955541 0.000229064 0.0955814 0.000686883 0.0956271 0.00114601 0.0956915 0.0016083 0.0957755 0.00207557 0.0958798 0.00254956 0.0960057 0.00303196 0.0961548 0.00352439 0.0963287 0.0040284 0.0965297 0.00454543 0.0967601 0.00507677 0.097023 0.00562353 0.0973216 0.00618657 0.0976596 0.00676643 0.0980413 0.00736328 0.0984712 0.00797679 0.0989546 0.00860601 0.0994968 0.00924928 0.100104 0.00990406 0.100782 0.0105668 0.101536 0.0112326 0.102374 0.0118953 0.103301 0.0125473 0.10432 0.013179 0.105436 0.0137794 0.10665 0.0143356 0.10796 0.014833 0.109361 0.0152563 0.110844 0.0155858 0.0158482 0.101008 0.000218474 0.10104 0.000655129 0.101093 0.00109291 0.101168 0.00153341 0.101265 0.00197821 0.101386 0.00242881 0.101532 0.00288661 0.101703 0.00335297 0.101902 0.00382914 0.102131 0.00431625 0.102393 0.00481525 0.10269 0.00532691 0.103024 0.00585173 0.103401 0.00638989 0.103823 0.00694117 0.104295 0.00750488 0.104821 0.00807977 0.105407 0.00866391 0.106056 0.00925456 0.106775 0.00984807 0.107568 0.0104398 0.108439 0.0110238 0.109393 0.0115931 0.110433 0.0121393 0.11156 0.0126526 0.112773 0.0131222 0.11407 0.0135358 0.115445 0.0138812 0.116889 0.0141426 0.0143431 0.106774 0.000206349 0.10681 0.00061877 0.106871 0.00103213 0.106957 0.00144779 0.107068 0.00186707 0.107205 0.00229124 0.10737 0.00272144 0.107565 0.00315878 0.10779 0.00360422 0.108047 0.00405861 0.10834 0.00452262 0.10867 0.0049967 0.109041 0.00548106 0.109455 0.00597557 0.109916 0.00647975 0.110429 0.00699265 0.110996 0.0075128 0.111621 0.00803812 0.11231 0.00856585 0.113066 0.00909243 0.113892 0.00961343 0.114792 0.0101235 0.115769 0.0106163 0.116824 0.0110845 0.117957 0.0115198 0.119166 0.0119131 0.120447 0.0122545 0.121794 0.012534 0.123198 0.0127392 0.0128899 0.112868 0.000192657 0.112909 0.000577717 0.112978 0.000963535 0.113074 0.00135125 0.1132 0.00174194 0.113354 0.00213664 0.113539 0.00253627 0.113756 0.00294167 0.114007 0.00335359 0.114293 0.0037726 0.114617 0.00419913 0.11498 0.00463339 0.115386 0.00507534 0.115837 0.00552463 0.116336 0.00598057 0.116886 0.00644206 0.117492 0.00690752 0.118155 0.00737485 0.118879 0.00784137 0.119668 0.00830371 0.120524 0.00875782 0.121448 0.00919892 0.122443 0.00962146 0.123509 0.0100191 0.124643 0.010385 0.125845 0.0107116 0.127108 0.010991 0.128427 0.0112152 0.129792 0.0113746 0.0114856 0.11931 0.000177388 0.119356 0.000531933 0.119433 0.000887071 0.11954 0.00124372 0.119679 0.00160275 0.119851 0.00196497 0.120056 0.00233109 0.120296 0.00270175 0.120572 0.00307745 0.120886 0.00345859 0.12124 0.00384536 0.121636 0.0042378 0.122075 0.00463567 0.122561 0.00503847 0.123097 0.00544539 0.123683 0.00585526 0.124324 0.00626649 0.125022 0.00667705 0.125779 0.00708441 0.126597 0.00748551 0.127478 0.00787674 0.128423 0.0082539 0.129433 0.00861227 0.130505 0.00894655 0.131639 0.00925104 0.132831 0.00951964 0.134076 0.00974607 0.135367 0.00992418 0.136695 0.0100467 0.0101266 0.12612 0.000160543 0.12617 0.000481426 0.126255 0.000802754 0.126373 0.00112525 0.126526 0.00144957 0.126715 0.00177635 0.12694 0.00210611 0.127202 0.0024393 0.127504 0.00277624 0.127845 0.00311715 0.128228 0.00346209 0.128655 0.00381092 0.129128 0.00416329 0.129647 0.00451863 0.130217 0.00487606 0.130838 0.00523442 0.131512 0.00559217 0.132242 0.00594744 0.133028 0.00629793 0.133873 0.00664093 0.134776 0.00697329 0.135739 0.00729146 0.136759 0.00759145 0.137837 0.00786895 0.138969 0.00811931 0.140151 0.0083377 0.141377 0.00851922 0.142643 0.00865913 0.143937 0.00875195 0.00880797 0.133318 0.000142138 0.133373 0.000426241 0.133465 0.000710663 0.133595 0.000995944 0.133762 0.00128258 0.133967 0.00157103 0.134211 0.00186165 0.134496 0.00215475 0.134822 0.00245051 0.13519 0.00274901 0.135602 0.00305019 0.136059 0.00335383 0.136563 0.00365951 0.137115 0.00396662 0.137716 0.00427431 0.138369 0.00458146 0.139075 0.00488668 0.139834 0.00518827 0.140648 0.00548423 0.141516 0.00577224 0.14244 0.00604963 0.143418 0.00631345 0.144449 0.00656045 0.145531 0.00678714 0.14666 0.00698986 0.147833 0.00716484 0.149044 0.00730831 0.150286 0.0074167 0.151552 0.00748594 0.00752395 0.140927 0.000122196 0.140986 0.000366447 0.141086 0.000610914 0.141226 0.000855982 0.141407 0.00110201 0.141628 0.0013493 0.141892 0.0015981 0.142198 0.00184859 0.142548 0.00210085 0.142942 0.00235487 0.143382 0.00261051 0.143868 0.00286751 0.144402 0.00312544 0.144985 0.0033837 0.145618 0.0036415 0.146301 0.00389783 0.147037 0.00415149 0.147824 0.00440102 0.148663 0.00464471 0.149555 0.00488064 0.150498 0.00510665 0.151491 0.00532033 0.152532 0.00551912 0.153619 0.00570028 0.154748 0.00586098 0.155915 0.00599834 0.157113 0.00610955 0.158338 0.00619194 0.159582 0.0062426 0.00626741 0.148969 0.000100742 0.149034 0.000302119 0.149141 0.00050363 0.149291 0.000705538 0.149485 0.000908078 0.149723 0.00111145 0.150006 0.00131581 0.150333 0.00152124 0.150706 0.00172776 0.151126 0.00193529 0.151592 0.00214369 0.152107 0.00235266 0.152671 0.00256181 0.153284 0.00277061 0.153947 0.00297837 0.154661 0.00318424 0.155425 0.0033872 0.15624 0.00358608 0.157105 0.0037795 0.15802 0.00396592 0.158983 0.00414365 0.159992 0.00431083 0.161046 0.0044655 0.162141 0.00460558 0.163273 0.00472895 0.164437 0.0048335 0.16563 0.00491717 0.166844 0.00497804 0.168072 0.00501406 0.00502941 0.157471 7.77967e-05 0.15754 0.000233314 0.157654 0.00038891 0.157815 0.000544745 0.158022 0.000700967 0.158276 0.000857697 0.158577 0.00101502 0.158925 0.00117296 0.159321 0.0013315 0.159766 0.00149055 0.16026 0.00164995 0.160803 0.00180947 0.161396 0.00196875 0.162039 0.00212737 0.162733 0.00228477 0.163477 0.00244029 0.164271 0.00259315 0.165115 0.00274244 0.166007 0.00288713 0.166947 0.00302607 0.167933 0.003158 0.168962 0.00328158 0.170032 0.00339538 0.17114 0.00349791 0.172281 0.00358768 0.173451 0.0036632 0.174645 0.00372305 0.175857 0.0037659 0.177081 0.00379039 0.00379942 0.166458 5.33675e-05 0.166531 0.000160056 0.166653 0.000266787 0.166824 0.000373645 0.167044 0.000480711 0.167314 0.000588056 0.167633 0.000695715 0.168003 0.000803693 0.168422 0.000911954 0.168892 0.00102042 0.169413 0.00112897 0.169985 0.00123742 0.170608 0.00134552 0.171283 0.00145295 0.172008 0.00155935 0.172784 0.00166424 0.17361 0.0017671 0.174486 0.0018673 0.175408 0.00196415 0.176378 0.00205689 0.177391 0.00214469 0.178446 0.00222667 0.179539 0.00230188 0.180668 0.00236939 0.181827 0.00242822 0.183013 0.00247743 0.18422 0.00251612 0.185443 0.00254346 0.186674 0.00255858 0.00256319 0.175957 2.74391e-05 0.176035 8.23116e-05 0.176164 0.000137207 0.176346 0.000192145 0.176579 0.000247169 0.176865 0.000302314 0.177203 0.000357594 0.177594 0.000413001 0.178037 0.000468511 0.178534 0.00052408 0.179083 0.000579636 0.179685 0.000635082 0.180341 0.000690286 0.181048 0.000745086 0.181808 0.00079928 0.18262 0.000852632 0.183482 0.000904867 0.184394 0.000955671 0.185353 0.00100469 0.186359 0.00105155 0.187408 0.00109582 0.188497 0.00113707 0.189624 0.00117483 0.190785 0.00120864 0.191975 0.00123802 0.19319 0.00126251 0.194425 0.00128169 0.195673 0.00129517 0.196929 0.00130258 0.00130488 0.185998 0.186081 0.186218 0.18641 0.186657 0.186959 0.187317 0.18773 0.188199 0.188723 0.189302 0.189937 0.190628 0.191373 0.192172 0.193025 0.193929 0.194885 0.19589 0.196941 0.198037 0.199174 0.200349 0.201558 0.202796 0.204058 0.20534 0.206635 0.207938 0.0236519 2.62179e-05 -0.000109279 0.0237272 0.000251803 -0.000327127 0.0237946 0.000478126 -0.00054551 0.0238538 0.000705793 -0.000764967 0.0239044 0.000935651 -0.000986258 0.023946 0.00116853 -0.00121012 0.023978 0.00140533 -0.00143736 0.0239998 0.00164701 -0.00166881 0.0240106 0.00189461 -0.00190541 0.0240095 0.0021493 -0.00214814 0.0239952 0.00241233 -0.00239811 0.0239667 0.00268512 -0.00265654 0.0239222 0.00296926 -0.00292477 0.02386 0.00326654 -0.00320433 0.0237779 0.00357902 -0.00349694 0.0236734 0.00390905 -0.00380454 0.0235434 0.00425937 -0.00412939 0.0233843 0.00463316 -0.00447406 0.0231917 0.00503419 -0.00484157 0.0229602 0.00546684 -0.00523535 0.0226833 0.00593657 -0.00565965 0.0223529 0.00644945 -0.00611905 0.0219589 0.00701394 -0.00661993 0.0214887 0.00763814 -0.00716801 0.020926 0.008337 -0.0077743 0.0202509 0.00911918 -0.00844407 0.0194353 0.0100178 -0.00920223 0.0184496 0.0110328 -0.010047 0.0172493 0.0122595 -0.0110592 0.013629 -0.0121997 0.0236513 -5.62122e-05 0.0237259 0.000177173 0.0237925 0.000411494 0.0238509 0.000647429 0.0239006 0.000885908 0.0239413 0.00112785 0.0239724 0.00137426 0.0239932 0.00162621 0.0240029 0.00188487 0.0240007 0.00215154 0.0239853 0.00242767 0.0239556 0.00271485 0.02391 0.00301491 0.0238466 0.00332993 0.0237633 0.00366229 0.0236576 0.00401475 0.0235264 0.00439052 0.0233662 0.00479339 0.0231725 0.00522789 0.02294 0.00569931 0.0226623 0.00621433 0.0223312 0.00678049 0.0219369 0.00740832 0.0214667 0.00810827 0.0209045 0.00889917 0.0202307 0.00979299 0.0194174 0.0108311 0.0184355 0.0120147 0.0172407 0.0134542 0.0150497 0.02365 -0.000137411 0.0237234 0.000103843 0.0237886 0.000346226 0.0238456 0.00059049 0.0238938 0.000837649 0.023933 0.00108871 0.0239624 0.00134478 0.0239816 0.00160704 0.0239897 0.00187681 0.0239857 0.00215551 0.0239686 0.00244476 0.0239371 0.00274637 0.0238896 0.00306239 0.0238243 0.00339517 0.0237392 0.00374742 0.0236317 0.0041223 0.0234987 0.00452352 0.0233366 0.00495544 0.0231412 0.00542334 0.022907 0.00593345 0.0226278 0.00649361 0.0222954 0.00711286 0.0219 0.00780375 0.0214292 0.00857902 0.020867 0.0094614 0.020194 0.010466 0.0193826 0.0116425 0.0184046 0.0129927 0.0172158 0.0146431 0.0164604 0.0236482 -0.00021678 0.0237196 3.24174e-05 0.0237829 0.000282933 0.0238378 0.000535593 0.0238839 0.000791493 0.0239209 0.00105173 0.0239482 0.00131752 0.0239651 0.00159015 0.0239708 0.00187106 0.0239645 0.00216184 0.023945 0.00246427 0.023911 0.00278034 0.0238611 0.00311235 0.0237933 0.00346291 0.0237057 0.00383507 0.0235956 0.00423238 0.0234601 0.00465902 0.0232956 0.00511997 0.0230977 0.00562122 0.0228612 0.00616993 0.0225797 0.0067751 0.0222453 0.00744723 0.0218482 0.00820087 0.0213762 0.00905103 0.0208134 0.0100242 0.0201407 0.0111386 0.019331 0.0124522 0.0183569 0.0139667 0.0171744 0.0158256 0.0178596 0.0236457 -0.00029372 0.0237146 -3.64991e-05 0.0237754 0.000222223 0.0238276 0.000483349 0.023871 0.000748056 0.0239052 0.00101754 0.0239297 0.0012931 0.0239436 0.00157616 0.0239464 0.00186827 0.0239371 0.00217117 0.0239146 0.00248681 0.0238775 0.00281739 0.0238244 0.00316542 0.0237536 0.0035338 0.0236627 0.00392589 0.0235495 0.00434564 0.0234108 0.00479772 0.0232431 0.00528767 0.0230421 0.00582222 0.0228026 0.00640944 0.0225182 0.00705949 0.0221811 0.00778428 0.0217816 0.00860034 0.0213078 0.00952493 0.0207437 0.0105883 0.020071 0.0118114 0.0192626 0.0132606 0.0182925 0.0149369 0.0171169 0.0170012 0.019246 0.0236427 -0.000367634 0.0237085 -0.000102305 0.023766 0.000164703 0.023815 0.000434369 0.0238551 0.000707955 0.0238859 0.000986744 0.0239068 0.00127214 0.0239173 0.00156568 0.0239165 0.00186905 0.0239036 0.00218413 0.0238774 0.00251304 0.0238366 0.00285817 0.0237797 0.00322226 0.023705 0.00360849 0.0236104 0.00402055 0.0234933 0.00446276 0.0233507 0.00494027 0.0231792 0.0054592 0.0229744 0.00602702 0.0227312 0.00665266 0.0224432 0.00734744 0.0221028 0.00812469 0.0217003 0.00900284 0.0212239 0.0100013 0.0206581 0.011154 0.0199848 0.0124847 0.0191775 0.0140678 0.0182114 0.015903 0.0170431 0.0181694 0.0206182 0.0236391 -0.000437929 0.0237011 -0.0001644 0.0237549 0.000110978 0.0238 0.000389263 0.0238361 0.000671801 0.0238629 0.000959966 0.0238798 0.00125527 0.0238861 0.00155935 0.0238811 0.00187404 0.0238639 0.00220135 0.0238334 0.00254357 0.0237882 0.0029033 0.023727 0.00328351 0.0236478 0.00368763 0.0235487 0.00411968 0.0234271 0.00458438 0.02328 0.00508733 0.023104 0.00563525 0.0228947 0.00623629 0.0226471 0.00690028 0.0223549 0.00763965 0.0220105 0.00846912 0.0216043 0.009409 0.0211248 0.0104809 0.0205567 0.0117221 0.0198823 0.0131591 0.0190759 0.0148743 0.0181137 0.0168652 0.0169533 0.0193298 0.0219749 0.0236348 -0.000504012 0.0236926 -0.000222188 0.0237419 6.16484e-05 0.0237826 0.000348637 0.0238142 0.000640203 0.0238363 0.000937817 0.0238485 0.00124309 0.0238501 0.00155778 0.0238402 0.00188385 0.0238181 0.00222345 0.0237827 0.00257905 0.0237325 0.00295344 0.0236662 0.0033498 0.023582 0.00377186 0.0234777 0.00422395 0.023351 0.00471116 0.0231987 0.00523957 0.0230175 0.00581646 0.0228031 0.00645069 0.0225504 0.00715296 0.0222533 0.00793678 0.0219042 0.00881825 0.0214937 0.00981947 0.0210104 0.0109642 0.0204395 0.012293 0.0197636 0.013835 0.0189578 0.0156801 0.0179996 0.0178234 0.0168476 0.0204819 0.0233148 0.02363 -0.000565295 0.0236829 -0.000275073 0.0237272 1.73132e-05 0.0237628 0.00031309 0.0237892 0.000613766 0.0238061 0.000920904 0.023813 0.00123622 0.0238092 0.00156159 0.0237939 0.0018991 0.0237663 0.00225106 0.0237253 0.00262009 0.0236695 0.00300919 0.0235976 0.00342178 0.0235076 0.00386183 0.0233975 0.00433399 0.023265 0.00484375 0.0231069 0.00539765 0.0229198 0.00600352 0.0226996 0.00667091 0.0224412 0.00741137 0.0221385 0.00823951 0.021784 0.00917273 0.0213686 0.0102349 0.0208809 0.0114518 0.0203066 0.0128673 0.0196288 0.0145128 0.0188233 0.0164856 0.0178692 0.0187775 0.0167261 0.0216249 0.0246365 0.0236246 -0.000621192 0.023672 -0.000322467 0.0237107 -2.14333e-05 0.0237406 0.000283223 0.0237613 0.000593091 0.0237724 0.000909832 0.0237733 0.00123527 0.0237635 0.00157139 0.0237422 0.0019204 0.0237085 0.00228478 0.0236613 0.00266732 0.0235993 0.00307119 0.023521 0.00350006 0.0234247 0.00395815 0.0233082 0.00445045 0.0231691 0.0049828 0.0230046 0.00556221 0.022811 0.00619706 0.0225844 0.00689759 0.0223195 0.00767619 0.0220106 0.00854849 0.0216501 0.00953323 0.021229 0.0106559 0.0207364 0.0119444 0.0201582 0.0134455 0.019478 0.015193 0.0186726 0.017291 0.0177226 0.0197275 0.0165891 0.0227584 0.0259387 0.0236186 -0.00067112 0.0236599 -0.000363782 0.0236925 -5.40011e-05 0.0237161 0.000259627 0.0237304 0.000578774 0.0237351 0.000905198 0.0237295 0.00124083 0.0237131 0.00158777 0.0236851 0.00194837 0.0236447 0.00232524 0.0235907 0.00272135 0.0235218 0.00314006 0.0234366 0.00358527 0.0233333 0.00406147 0.0232098 0.00457395 0.0230636 0.00512894 0.0228919 0.0057339 0.0226912 0.00639776 0.0224574 0.0071314 0.0221856 0.00794806 0.0218697 0.00886439 0.0215025 0.0099004 0.0210752 0.0110832 0.020577 0.0124426 0.0199944 0.0140281 0.0193114 0.015876 0.018506 0.0180964 0.0175601 0.0206734 0.0164367 0.0238818 0.0272203 0.0236121 -0.000714502 0.0236467 -0.000398436 0.0236725 -7.98045e-05 0.0236893 0.000242892 0.0236966 0.000571406 0.0236942 0.000907596 0.0236816 0.0012535 0.023658 0.00161134 0.0236228 0.00198359 0.023575 0.00237303 0.0235136 0.00278278 0.0234372 0.0032164 0.0233445 0.00367802 0.0232335 0.00417239 0.0231024 0.00470512 0.0229485 0.00528282 0.022769 0.00591336 0.0225605 0.00660624 0.0223189 0.007373 0.0220394 0.00822766 0.0217159 0.00918787 0.0213414 0.0102749 0.0209073 0.0115173 0.0204029 0.012947 0.0198154 0.0146157 0.0191291 0.0165623 0.0183235 0.0189019 0.0173817 0.0216152 0.0162692 0.0249943 0.0284801 0.0236049 -0.000750765 0.0236324 -0.000425852 0.0236508 -9.82633e-05 0.0236601 0.000233598 0.0236599 0.000571569 0.0236499 0.00091761 0.0236296 0.00127386 0.0235982 0.00164268 0.0235551 0.00202667 0.0234994 0.00242874 0.02343 0.00285221 0.0233456 0.00330082 0.0232447 0.00377892 0.0231255 0.00429155 0.022986 0.00484459 0.0228238 0.00544504 0.022636 0.00610123 0.022419 0.00682315 0.022169 0.00762301 0.0218811 0.00851562 0.0215494 0.00951956 0.0211669 0.0106573 0.0207253 0.0119589 0.0202142 0.0134581 0.0196212 0.0152087 0.0189313 0.0172522 0.0181255 0.0197078 0.0171878 0.0225528 0.0160869 0.0260953 0.0297169 0.0235972 -0.000779339 0.0236168 -0.000445457 0.0236274 -0.000108803 0.0236287 0.000232324 0.0236204 0.000579844 0.0236022 0.000935822 0.0235735 0.00130251 0.0235338 0.00168238 0.0234823 0.00207818 0.0234181 0.00249298 0.02334 0.00293024 0.0232469 0.00339392 0.0231373 0.00388858 0.0230093 0.00441953 0.0228609 0.00499296 0.0226897 0.00561624 0.0224929 0.00629811 0.0222669 0.00704912 0.0220078 0.00788208 0.0217108 0.00881258 0.0213703 0.00986012 0.0209793 0.0110484 0.0205296 0.0124086 0.0200112 0.0139765 0.0194122 0.0158077 0.0187183 0.0179462 0.017912 0.0205141 0.0169785 0.0234863 0.0158899 0.0271839 0.0309298 0.023589 -0.000799663 0.0236002 -0.000456686 0.0236023 -0.000110855 0.0235949 0.000239638 0.023578 0.000596799 0.023551 0.000962802 0.0235135 0.00134001 0.0234649 0.00173102 0.0234043 0.00213871 0.023331 0.00256631 0.0232438 0.00301744 0.0231414 0.00349628 0.0230224 0.00400759 0.022885 0.00455694 0.0227272 0.00515084 0.0225464 0.00579702 0.0223398 0.00650465 0.0221042 0.00728478 0.0218354 0.00815085 0.0215288 0.00911919 0.0211788 0.0102102 0.0207785 0.0114486 0.0203201 0.012867 0.0197939 0.0145027 0.0191885 0.016413 0.0184901 0.0186446 0.0176833 0.0213208 0.0167539 0.0244157 0.0156786 0.0282592 0.0321181 0.0235802 -0.000811177 0.0235825 -0.000458977 0.0235755 -0.000103858 0.023559 0.000256103 0.0235328 0.000622999 0.0234965 0.000999114 0.0234496 0.00138693 0.0233914 0.00178916 0.0233213 0.00220883 0.0232383 0.00264931 0.0231414 0.00311441 0.0230292 0.00360847 0.0229002 0.00413652 0.0227528 0.00470436 0.0225848 0.00531882 0.0223939 0.00598797 0.0221771 0.00672143 0.0219311 0.00753074 0.021652 0.00842992 0.0213352 0.00943605 0.020975 0.0105703 0.0205649 0.0118587 0.0200973 0.0133347 0.0195625 0.0150375 0.0189503 0.0170253 0.0182471 0.0193478 0.0174397 0.0221282 0.0165145 0.025341 0.0154534 0.0293203 0.033281 0.0235708 -0.000813331 0.0235636 -0.000451777 0.023547 -8.72569e-05 0.0235208 0.000282273 0.0234848 0.000658997 0.0234386 0.00104531 0.0233817 0.00144382 0.0233135 0.00185736 0.0232333 0.00228909 0.0231401 0.00274254 0.0230328 0.00322169 0.0229102 0.00373108 0.0227707 0.00427595 0.0226127 0.00486238 0.022434 0.00549749 0.0222323 0.00618971 0.0220047 0.00694906 0.0217478 0.0077876 0.0214578 0.00871992 0.0211301 0.0097638 0.0207592 0.0109413 0.0203387 0.0122792 0.0198611 0.0138122 0.0193174 0.0155812 0.0186978 0.0176449 0.0179894 0.0200561 0.0171814 0.0229362 0.0162603 0.0262622 0.0152144 0.0303661 0.0344182 0.0235609 -0.00080558 0.0235437 -0.00043454 0.0235169 -6.05065e-05 0.0234805 0.000318693 0.0234342 0.000705339 0.0233775 0.00110195 0.0233101 0.00151123 0.0232313 0.00193617 0.0231403 0.00238005 0.0230363 0.00284656 0.0229182 0.00333985 0.0227846 0.00386466 0.0226341 0.00442645 0.0224649 0.00503156 0.022275 0.00568742 0.0220619 0.00640279 0.0218228 0.00718813 0.0215545 0.00805595 0.021253 0.00902144 0.0209137 0.010103 0.0205315 0.0113235 0.0200999 0.0127108 0.0196119 0.0143003 0.0190586 0.0161344 0.0184312 0.0182723 0.0177174 0.0207699 0.0169087 0.0237449 0.0159916 0.0271793 0.0149621 0.0313956 0.0355296 0.0235505 -0.000787386 0.0235227 -0.000406727 0.0234852 -2.30687e-05 0.023438 0.000365902 0.0233808 0.000762561 0.0233132 0.00116955 0.0232347 0.0015897 0.0231448 0.00202612 0.0230426 0.00248224 0.0229272 0.0029619 0.0227976 0.00346942 0.0226526 0.00400975 0.0224904 0.00458856 0.0223095 0.00521246 0.0221078 0.00588917 0.0218828 0.0066278 0.0216317 0.00743921 0.0213513 0.00833639 0.0210376 0.00933507 0.0206863 0.0104544 0.0202921 0.0117177 0.0198489 0.013154 0.0193498 0.0147994 0.0187865 0.0166977 0.0181508 0.0189081 0.0174312 0.0214895 0.0166217 0.0245544 0.0157086 0.0280923 0.0146966 0.0324076 0.0366157 0.0235395 -0.000758217 0.0235006 -0.000367807 0.0234519 2.55843e-05 0.0233934 0.000424424 0.0233248 0.00083119 0.0232457 0.00124865 0.0231556 0.00167975 0.023054 0.00212775 0.02294 0.0025962 0.0228128 0.0030891 0.0226713 0.00361096 0.0225142 0.0041669 0.0223399 0.00476284 0.0221467 0.00540563 0.0219326 0.00610329 0.0216951 0.00686529 0.0214314 0.00770287 0.0211383 0.00862949 0.020812 0.00966141 0.020448 0.0108183 0.0200413 0.0121245 0.0195858 0.0136094 0.0190751 0.0153101 0.0185013 0.0172716 0.0178567 0.0195526 0.017131 0.0222152 0.0163206 0.0253648 0.0154117 0.0290012 0.0144182 0.033401 0.0376772 0.023528 -0.000717552 0.0234775 -0.000317258 0.0234171 8.59709e-05 0.0233467 0.000494778 0.0232662 0.000911741 0.0231751 0.00133976 0.0230729 0.00178191 0.0229591 0.00224156 0.0228329 0.00272244 0.0226933 0.00322868 0.0225393 0.00376496 0.0223695 0.00433663 0.0221826 0.0049498 0.0219766 0.0056116 0.0217496 0.00633033 0.0214991 0.00711581 0.0212223 0.00797966 0.0209159 0.00893581 0.0205763 0.010001 0.0201991 0.0111956 0.0197792 0.0125443 0.019311 0.0140776 0.0187881 0.015833 0.0182031 0.0178565 0.0175493 0.0202064 0.0168172 0.0229473 0.0160056 0.0261764 0.0151009 0.029906 0.0141271 0.0343748 0.0387158 0.023516 -0.000664875 0.0234533 -0.000254571 0.0233807 0.000158599 0.023298 0.000577467 0.023205 0.00100472 0.0231014 0.00144338 0.0229867 0.00189667 0.0228601 0.00236808 0.0227211 0.00286146 0.0225687 0.00338114 0.0224017 0.00393196 0.0222188 0.00451945 0.0220187 0.00514997 0.0217994 0.00583089 0.0215589 0.00657081 0.0212948 0.00737988 0.0210044 0.00827012 0.0206843 0.00925589 0.0203309 0.0103544 0.0199398 0.0115866 0.0195062 0.0129779 0.0190246 0.0145593 0.0184889 0.0163687 0.0178923 0.0184532 0.0172287 0.02087 0.0164898 0.0236861 0.0156768 0.0269894 0.0147764 0.0308064 0.0138231 0.035328 0.0397336 0.0235035 -0.000599681 0.0234282 -0.000179242 0.0233428 0.000243965 0.0232473 0.000672986 0.0231414 0.00111061 0.0230248 0.00156002 0.0228969 0.00202452 0.0227572 0.00250778 0.0226049 0.00301377 0.0224391 0.00354699 0.0222586 0.00411244 0.0220622 0.00471587 0.0218483 0.00536385 0.0216152 0.00606401 0.0213608 0.00682525 0.0210826 0.00765804 0.0207779 0.00857478 0.0204436 0.00959027 0.0200758 0.0107222 0.0196703 0.0119921 0.0192225 0.0134257 0.0187269 0.0150548 0.0181779 0.0169178 0.017569 0.019062 0.0168951 0.021544 0.0161492 0.024432 0.0153343 0.0278043 0.0144383 0.0317024 0.0135061 0.0362602 0.0407336 0.0234905 -0.000521474 0.0234021 -9.07834e-05 0.0233035 0.000342553 0.0231947 0.000781817 0.0230754 0.00122991 0.0229453 0.00169014 0.0228038 0.00216596 0.0226504 0.00266115 0.0224844 0.00317985 0.0223047 0.00372669 0.0221102 0.00430689 0.0218997 0.00492636 0.0216717 0.00559192 0.0214242 0.00631145 0.0211553 0.00709413 0.0208626 0.00795077 0.0205432 0.00889415 0.020194 0.00993947 0.0198113 0.0111049 0.019391 0.0124124 0.0189283 0.0138884 0.0184182 0.015565 0.0178552 0.0174808 0.0172336 0.0196837 0.0165487 0.0222288 0.0157953 0.0251854 0.0149781 0.0286216 0.0140867 0.0325938 0.0131755 0.0371715 0.04172 0.0234771 -0.00042977 0.023375 1.12811e-05 0.0232627 0.000454833 0.0231401 0.000904427 0.023007 0.00136307 0.0228629 0.00183421 0.0227074 0.00232144 0.0225399 0.00282865 0.0223596 0.00336015 0.0221656 0.00392073 0.0219567 0.00451577 0.0217316 0.00515141 0.0214889 0.00583466 0.0212266 0.00657368 0.0209428 0.00737794 0.020635 0.00825857 0.0203005 0.00922872 0.0199359 0.010304 0.0195378 0.011503 0.019102 0.0128482 0.018624 0.0143664 0.0180988 0.0160902 0.0175212 0.0180583 0.0168862 0.0203187 0.0161898 0.0229252 0.0154284 0.0259468 0.014608 0.029442 0.0137215 0.0334802 0.0128303 0.0380626 0.0426977 0.0234631 -0.000324095 0.023347 0.000127414 0.0232206 0.000581262 0.0230837 0.00104127 0.0229363 0.00151055 0.0227778 0.0019927 0.0226078 0.00249141 0.0224257 0.00301075 0.0222307 0.00355515 0.0220219 0.00412956 0.0217981 0.00473955 0.0215581 0.00539145 0.0213002 0.00609253 0.0210227 0.00685117 0.0207235 0.00767715 0.0204002 0.00858191 0.0200499 0.00957897 0.0196696 0.0106843 0.0192555 0.0119171 0.0188038 0.0133 0.0183098 0.0148603 0.0177689 0.0166311 0.0171763 0.018651 0.0165272 0.0209678 0.0158186 0.0236338 0.0150484 0.026717 0.0142239 0.0302666 0.0133423 0.0343618 0.012469 0.038936 0.0436726 0.0234488 -0.000203988 0.0233181 0.000258062 0.0231771 0.000722286 0.0230256 0.0011928 0.0228633 0.0016728 0.02269 0.00216604 0.0225051 0.00267633 0.0223079 0.00320788 0.0220978 0.00376527 0.0218738 0.00435361 0.0216346 0.00497866 0.0213791 0.00564695 0.0211057 0.00636597 0.0208125 0.00714437 0.0204975 0.0079922 0.0201581 0.00892124 0.0197917 0.00994536 0.0193951 0.011081 0.0189646 0.0123475 0.0184964 0.0137683 0.017986 0.0153708 0.0174288 0.0171883 0.0168203 0.0192595 0.0161564 0.0216317 0.0154346 0.0243556 0.0146548 0.0274968 0.0138248 0.0310966 0.0129478 0.0352387 0.0120884 0.0397955 0.0446499 0.0234339 -6.90032e-05 0.0232883 0.000403656 0.0231323 0.000878336 0.0229657 0.00135944 0.0227882 0.00185025 0.0225996 0.00235467 0.0223993 0.00287663 0.0221867 0.00342048 0.021961 0.00399095 0.0217213 0.00459333 0.0214664 0.00523354 0.021195 0.00591834 0.0209055 0.00665543 0.0205962 0.00745373 0.0202648 0.00832357 0.019909 0.00927706 0.0195259 0.0103284 0.0191125 0.0114944 0.018665 0.012795 0.0181797 0.0142536 0.0176521 0.0158984 0.0170778 0.0177625 0.0164526 0.0198847 0.0157728 0.0223115 0.0150367 0.0250917 0.0142457 0.0282878 0.0134084 0.0319339 0.0125352 0.036112 0.0116832 0.0406474 0.0456318 0.0234187 8.12887e-05 0.0232578 0.000564606 0.0230863 0.00104983 0.0229041 0.00154161 0.022711 0.00204332 0.0225067 0.00255899 0.0222906 0.00309271 0.0220622 0.00364895 0.0218205 0.0042326 0.0215647 0.00484911 0.0212937 0.0055046 0.021006 0.00620602 0.0207001 0.00696131 0.0203742 0.00777964 0.0200262 0.00867164 0.0196535 0.00964974 0.0192534 0.0107285 0.0188227 0.0119251 0.0183579 0.0132598 0.0178549 0.0147566 0.0173097 0.0164436 0.0167179 0.0183544 0.0160753 0.0205273 0.0153789 0.0230079 0.0146274 0.0258432 0.0138238 0.0290914 0.0129776 0.0327801 0.0121069 0.0369826 0.0112546 0.0414998 0.0466169 0.0234031 0.0232265 0.0230392 0.0228412 0.0226322 0.0224118 0.0221797 0.0219351 0.0216773 0.0214052 0.0211179 0.0208138 0.0204915 0.0201491 0.0197845 0.0193951 0.0189783 0.0185309 0.0180493 0.0175296 0.0169676 0.0163593 0.0157006 0.0149888 0.014223 0.0134074 0.0125517 0.0116827 0.0108196 0.023404 0.000158874 5.85916e-06 0.0232312 0.000154511 1.83722e-05 0.0230502 0.000146828 3.41249e-05 0.0228611 0.000133677 5.54435e-05 0.0226636 0.000113151 8.4307e-05 0.0224575 8.27697e-05 0.000123366 0.0222422 3.99495e-05 0.000175346 0.0220172 -1.82965e-05 0.000243348 0.0217815 -9.49127e-05 0.000330611 0.0215342 -0.000194119 0.000441385 0.0212741 -0.000320066 0.000580165 0.0209997 -0.000478119 0.000752496 0.0207093 -0.000674124 0.000964546 0.0204007 -0.000915688 0.00122424 0.0200716 -0.00121155 0.00154069 0.0197189 -0.00157217 0.00192485 0.0193392 -0.00201035 0.00239007 0.0189283 -0.00254181 0.00295266 0.0184815 -0.00318571 0.00363252 0.0179931 -0.00396543 0.00445382 0.0174567 -0.0049096 0.00544609 0.0168646 -0.00605314 0.00664515 0.0162088 -0.00743869 0.00809452 0.0154806 -0.00911748 0.00984573 0.0146711 -0.0111488 0.0119582 0.0137752 -0.0136005 0.0144964 0.0127878 -0.0165257 0.0175131 0.0117266 -0.0199869 0.021048 0.0105712 -0.0237759 0.0249313 -0.0279822 0.0293188 0.0234198 0.000307868 0.0232627 0.00031163 0.0230975 0.000312012 0.0229241 0.000307036 0.0227424 0.000294869 0.022552 0.000273192 0.0223524 0.000239563 0.0221429 0.00019122 0.0219227 0.000125229 0.0216909 3.7651e-05 0.0214463 -7.53785e-05 0.0211872 -0.000219101 0.020912 -0.000398923 0.0206186 -0.000622274 0.0203045 -0.000897458 0.0199668 -0.00123447 0.019602 -0.00164551 0.0192059 -0.00214571 0.0187737 -0.00275352 0.0182997 -0.00349149 0.0177775 -0.00438734 0.0171994 -0.00547505 0.016557 -0.00679632 0.0158415 -0.008402 0.0150438 -0.010351 0.0141577 -0.0127143 0.0131774 -0.0155455 0.012114 -0.0189235 0.0109682 -0.0226301 -0.0266527 0.0234351 0.000441551 0.0232933 0.000453405 0.0231435 0.000461839 0.0229855 0.000465034 0.0228191 0.000461238 0.022644 0.000448288 0.0224597 0.000423889 0.0222655 0.000385445 0.0220606 0.000330103 0.021844 0.000254283 0.0216144 0.00015421 0.0213706 2.47041e-05 0.0211105 -0.000138806 0.0208321 -0.000343954 0.0205331 -0.00059841 0.0202105 -0.00091182 0.0198607 -0.00129577 0.0194797 -0.00176474 0.0190627 -0.00233651 0.018604 -0.0030328 0.0180971 -0.00388039 0.0175343 -0.00491227 0.0169071 -0.00616916 0.0162065 -0.00770139 0.0154229 -0.00956739 0.0145489 -0.0118404 0.0135781 -0.0145746 0.0125139 -0.0178593 0.011371 -0.0214871 -0.0253326 0.02345 0.000560369 0.0233231 0.000580274 0.0231882 0.000596741 0.0230451 0.000608098 0.0228937 0.000612682 0.0227335 0.000608476 0.0225641 0.000593331 0.0223847 0.000564792 0.0221947 0.000520154 0.0219929 0.000456087 0.0217782 0.000368906 0.0215489 0.000253997 0.0213036 0.000106509 0.02104 -8.04208e-05 0.0207557 -0.000314127 0.0204478 -0.000603864 0.0201128 -0.000960789 0.0197467 -0.0013986 0.0193445 -0.00193438 0.0189008 -0.00258906 0.0184089 -0.00338845 0.0178611 -0.00436452 0.0172489 -0.00555691 0.0165628 -0.00701531 0.0157928 -0.00879743 0.0149305 -0.0109781 0.0139684 -0.0136125 0.0129039 -0.0167949 0.011759 -0.0203422 -0.0240224 0.0234644 0.000664778 0.023352 0.000692691 0.0232315 0.000717166 0.023103 0.000736672 0.022966 0.000749637 0.0228203 0.000754189 0.0226653 0.000748314 0.0225004 0.000729701 0.0223248 0.000695805 0.0221374 0.000643488 0.021937 0.000569265 0.0217222 0.000468843 0.0214912 0.000337511 0.0212418 0.000168975 0.020972 -4.43651e-05 0.0206784 -0.000310299 0.0203577 -0.000640109 0.020006 -0.00104687 0.0196184 -0.00154674 0.0191892 -0.00215985 0.0187118 -0.00291109 0.0181786 -0.00383133 0.0175808 -0.00495906 0.0169086 -0.00634317 0.0161517 -0.00804047 0.0153002 -0.0101266 0.0143461 -0.0126584 0.0132816 -0.0157304 0.0121315 -0.0191921 -0.0227194 0.0234783 0.000755249 0.0233799 0.000791118 0.0232735 0.000823573 0.023159 0.000851212 0.023036 0.000872557 0.0229043 0.000885873 0.0227634 0.00088928 0.0226125 0.000880613 0.0224508 0.000857478 0.0222774 0.000816933 0.0220909 0.000755706 0.02189 0.000669728 0.021673 0.000554557 0.0214377 0.000404241 0.0211814 0.000211978 0.0209022 -3.10857e-05 0.0205955 -0.000333448 0.0202577 -0.000709117 0.0198842 -0.0011732 0.0194692 -0.00174484 0.0190061 -0.00244797 0.0184871 -0.00331234 0.0179033 -0.00437524 0.0172447 -0.00568459 0.0165004 -0.00729615 0.0156594 -0.00928561 0.0147128 -0.0117118 0.0136488 -0.0146664 0.0124916 -0.0180348 -0.0214189 0.0234918 0.00083226 0.0234069 0.000876034 0.023314 0.000916438 0.023213 0.00095219 0.0231037 0.000981909 0.0229856 0.00100399 0.0228582 0.00101669 0.0227208 0.00101798 0.0225726 0.00100562 0.0224127 0.000976865 0.0222398 0.000928642 0.0220524 0.000857121 0.0218488 0.000758098 0.0216271 0.000625999 0.0213847 0.000454378 0.0211182 0.000235394 0.0208257 -4.09389e-05 0.0205016 -0.000385041 0.0201418 -0.000813352 0.0197406 -0.00134363 0.0192913 -0.00199873 0.0187862 -0.00280723 0.0182161 -0.00380512 0.0175708 -0.00503926 0.0168388 -0.00656415 0.016008 -0.00845484 0.0150687 -0.0107726 0.0140058 -0.0136034 0.0128402 -0.0168692 -0.0201163 0.0235048 0.0008963 0.0234329 0.000947927 0.0233531 0.000996246 0.0232652 0.00104009 0.0231689 0.00107817 0.0230639 0.00110902 0.0229496 0.00113102 0.0228253 0.00114227 0.0226902 0.0011407 0.0225433 0.00112374 0.0223834 0.00108853 0.0222091 0.00103147 0.0220186 0.000948593 0.0218099 0.000834703 0.0215806 0.000683694 0.0213277 0.00048824 0.0210475 0.000239259 0.0207372 -7.47678e-05 0.0203907 -0.000466851 0.0200029 -0.000955814 0.0195672 -0.00156298 0.0190756 -0.00231562 0.0185188 -0.00324836 0.0178863 -0.0044068 0.0171664 -0.00584416 0.0163456 -0.00763405 0.0154133 -0.00984023 0.0143519 -0.0125421 0.0131777 -0.0156951 -0.0188082 0.0235173 0.000947868 0.0234579 0.00100729 0.0233906 0.0010635 0.0233153 0.00111541 0.0232317 0.00116185 0.0231392 0.00120146 0.0230375 0.00123275 0.0229258 0.00125398 0.0228033 0.0012632 0.022669 0.00125804 0.0225217 0.00123584 0.0223599 0.00119323 0.022182 0.0011265 0.0219859 0.0010308 0.0217692 0.000900405 0.0215291 0.000728366 0.021262 0.000506302 0.0209639 0.000223377 0.0206307 -0.000133703 0.0202559 -0.000580985 0.0198332 -0.00114028 0.0193547 -0.00183711 0.0188109 -0.00270454 0.0181909 -0.00378687 0.0174826 -0.00513583 0.0166716 -0.00682304 0.015746 -0.00891466 0.0146866 -0.0114827 0.013504 -0.0145124 -0.0174919 0.0235292 0.000987469 0.0234819 0.00105465 0.0234267 0.00111869 0.0233634 0.00117865 0.0232919 0.00123343 0.0232115 0.0012818 0.0231219 0.00132239 0.0230223 0.00135359 0.0229119 0.00137361 0.0227896 0.00138026 0.0226544 0.00137106 0.0225047 0.00134291 0.0223389 0.0012923 0.022155 0.00121477 0.0219504 0.00110495 0.0217225 0.000956316 0.0214678 0.00076096 0.0211822 0.000508957 0.0208611 0.000187416 0.0204992 -0.00021905 0.0200891 -0.000730163 0.0196232 -0.00137123 0.0190919 -0.00217327 0.0184841 -0.00317906 0.0177871 -0.00443882 0.0169857 -0.00602161 0.0160667 -0.00799567 0.0150096 -0.0104256 0.0138189 -0.0133217 -0.0161654 0.0235407 0.00101562 0.0235048 0.0010905 0.0234612 0.00116236 0.0234095 0.00123034 0.0233495 0.00129345 0.0232807 0.00135057 0.0232026 0.00140045 0.0231146 0.00144162 0.0230158 0.00147244 0.0229051 0.0014909 0.0227815 0.0014947 0.0226434 0.00148098 0.0224892 0.0014465 0.0223169 0.00138709 0.022124 0.0012978 0.0219078 0.00117253 0.021665 0.00100385 0.0213915 0.000782455 0.0210822 0.000496667 0.0207323 0.00013089 0.0203346 -0.00033252 0.0198808 -0.000917409 0.0193616 -0.00165407 0.0187655 -0.00258297 0.0180795 -0.00375277 0.0172874 -0.00522955 0.0163749 -0.00708311 0.0153203 -0.00937108 0.0141222 -0.0121236 -0.0148275 0.0235516 0.00103285 0.0235268 0.00111538 0.0234941 0.00119502 0.0234534 0.001271 0.0234045 0.00134243 0.0233467 0.00140829 0.0232797 0.00146746 0.0232027 0.00151861 0.023115 0.00156023 0.0230154 0.00159048 0.0229028 0.00160728 0.0227758 0.00160798 0.0226327 0.00158959 0.0224715 0.00154829 0.0222898 0.00147947 0.0220849 0.00137749 0.0218533 0.00123542 0.0215912 0.00104458 0.0212938 0.000794038 0.0209547 0.000469944 0.0205693 5.29523e-05 0.0201273 -0.000475437 0.0196196 -0.00114633 0.0190347 -0.00199815 0.0183593 -0.00307731 0.0175764 -0.00444666 0.0166702 -0.00617689 0.0156184 -0.0083193 0.0144137 -0.0109189 -0.0134775 0.023562 0.00103968 0.0235476 0.00112982 0.0235254 0.00121722 0.0234952 0.00130117 0.0234568 0.0013809 0.0234095 0.0014555 0.023353 0.00152396 0.0232866 0.00158507 0.0232093 0.00163749 0.0231203 0.00167955 0.0230182 0.00170932 0.0229018 0.00172444 0.0227692 0.00172212 0.0226186 0.00169888 0.0224476 0.00165049 0.0222534 0.00157173 0.0220326 0.0014562 0.0217813 0.00129583 0.0214949 0.00108045 0.0211678 0.000797047 0.0207918 0.000429017 0.0203621 -4.583e-05 0.0198655 -0.000649648 0.0192915 -0.00142416 0.0186262 -0.00241204 0.0178522 -0.00367271 0.0169523 -0.00527691 0.0159034 -0.00727044 0.0146929 -0.0097084 -0.0121149 0.0235719 0.00103665 0.0235674 0.00113437 0.0235551 0.00122949 0.0235349 0.0013214 0.0235063 0.00140942 0.0234691 0.00149275 0.0234226 0.00157049 0.0233661 0.00164157 0.0232988 0.00170479 0.0232197 0.00175863 0.0231276 0.00180139 0.0230212 0.00183089 0.0228987 0.00184463 0.0227581 0.00183942 0.0225972 0.0018114 0.0224131 0.0017558 0.0222026 0.00166673 0.0219617 0.00153673 0.0216857 0.00135642 0.0213691 0.00111371 0.0210049 0.000793217 0.0205838 0.000375254 0.020099 -0.000164798 0.0195353 -0.000860549 0.0188799 -0.00175655 0.0181146 -0.00290743 0.0172208 -0.00438311 0.0161749 -0.00622461 0.0149596 -0.00849302 -0.0107401 0.0235812 0.00102431 0.023586 0.00112958 0.0235831 0.00123239 0.0235723 0.00133225 0.0235532 0.00142854 0.0235253 0.00152059 0.0234882 0.00160761 0.0234411 0.00168866 0.0233832 0.00176267 0.0233135 0.0018283 0.0232309 0.00188402 0.0231339 0.0019279 0.0230209 0.00195766 0.0228898 0.00197045 0.0227385 0.00196276 0.022564 0.00193025 0.0223632 0.00186755 0.0221321 0.00176784 0.021866 0.0016225 0.0215593 0.00142044 0.0212052 0.00114734 0.020795 0.000785438 0.0203191 0.00031109 0.0197661 -0.000307554 0.01912 -0.0011104 0.018363 -0.0021505 0.0174753 -0.00349541 0.0164326 -0.00518193 0.0152132 -0.00727353 -0.0093532 0.02359 0.00100322 0.0236036 0.00111599 0.0236095 0.00122649 0.0236075 0.00133427 0.0235972 0.00143883 0.0235782 0.0015396 0.0235499 0.0016359 0.0235116 0.00172691 0.0234626 0.0018117 0.0234018 0.00188912 0.023328 0.0019578 0.0232399 0.00201603 0.0231357 0.00206179 0.0230136 0.00209254 0.0228713 0.00210513 0.0227059 0.00209565 0.0225142 0.00205924 0.0222923 0.00198973 0.0220355 0.00187926 0.0217382 0.00171773 0.0213935 0.00149205 0.0209933 0.00118569 0.020527 0.0007774 0.019983 0.000236407 0.0193463 -0.000473659 0.0185973 -0.00140154 0.0177155 -0.00261365 0.0166761 -0.00414252 0.0154534 -0.00605077 -0.00795499 0.0235982 0.000973922 0.02362 0.00109418 0.0236342 0.00121234 0.0236404 0.00132803 0.0236384 0.00144087 0.0236276 0.00155035 0.0236076 0.00165592 0.0235776 0.00175689 0.0235368 0.00185247 0.0234843 0.00194167 0.0234188 0.00202329 0.023339 0.00209586 0.0232432 0.00215761 0.0231294 0.00220627 0.0229955 0.00223909 0.0228385 0.00225258 0.0226554 0.00224239 0.0224421 0.00220298 0.0221941 0.00212728 0.0219057 0.00200616 0.02157 0.00182777 0.0211787 0.00157693 0.020722 0.00123415 0.0201862 0.000772202 0.0195582 0.000154344 0.0188174 -0.00066073 0.0179412 -0.00173755 0.0169051 -0.00310636 0.0156798 -0.00482548 -0.00654624 0.0236058 0.000936988 0.0236353 0.00106471 0.0236571 0.00119052 0.023671 0.00131412 0.0236767 0.00143522 0.0236736 0.00155341 0.0236613 0.00166826 0.023639 0.0017792 0.0236059 0.00188556 0.023561 0.00198653 0.0235032 0.00208109 0.0234311 0.00216799 0.023343 0.00224569 0.0232371 0.00231224 0.0231109 0.00236524 0.0229619 0.00240164 0.0227867 0.00241759 0.0225814 0.00240819 0.0223416 0.00236715 0.0220614 0.00228632 0.0217341 0.00215509 0.0213513 0.0019597 0.020903 0.00168244 0.0203766 0.00129864 0.0197547 0.000776206 0.0190225 7.15235e-05 0.0181526 -0.00086767 0.0171193 -0.00207306 0.0158921 -0.00359831 -0.00512788 0.0236129 0.000892986 0.0236495 0.00102816 0.0236784 0.00116161 0.0236994 0.00129312 0.0237121 0.00142247 0.0237162 0.00154938 0.0237109 0.00167351 0.0236957 0.00179441 0.0236697 0.00191156 0.0236319 0.0020243 0.0235812 0.00213179 0.0235162 0.002233 0.0234353 0.00232663 0.0233365 0.00241105 0.0232175 0.00248419 0.0230757 0.00254343 0.0229079 0.00258544 0.0227101 0.00260597 0.0224778 0.00259949 0.0222052 0.00255883 0.0218857 0.00247462 0.0215108 0.00233458 0.0210705 0.00212281 0.0205519 0.00181724 0.0199395 0.00138862 0.0192102 0.000800826 0.0183488 -6.27376e-06 0.0173187 -0.001043 0.0160901 -0.00236967 -0.00370093 0.0236194 0.000842489 0.0236625 0.000985106 0.0236979 0.00112619 0.0237254 0.0012656 0.0237446 0.00140322 0.0237552 0.00153885 0.0237564 0.00167226 0.0237477 0.00180313 0.0237282 0.00193108 0.0236969 0.00205558 0.0236527 0.002176 0.0235942 0.0022915 0.0235198 0.00240105 0.0234275 0.0025033 0.0233152 0.00259653 0.02318 0.00267856 0.0230189 0.00274657 0.0228279 0.00279693 0.0226025 0.00282491 0.022337 0.00282431 0.0220247 0.00278699 0.0216571 0.00270217 0.021224 0.00255585 0.0207128 0.00232851 0.0201073 0.00199408 0.0193884 0.00151977 0.0185249 0.000857151 0.0175028 -2.08237e-05 0.0162733 -0.0011402 -0.00226653 0.0236253 0.000786076 0.0236743 0.000936133 0.0237156 0.00108486 0.0237491 0.00123218 0.0237742 0.00137807 0.0237907 0.00152242 0.0237978 0.00166513 0.0237949 0.00180597 0.0237813 0.00194471 0.0237559 0.00208099 0.0237176 0.00221433 0.023665 0.00234412 0.0235965 0.00246956 0.0235101 0.00258961 0.0234038 0.0027029 0.0232747 0.00280766 0.0231196 0.00290161 0.0229349 0.00298172 0.0227157 0.00304405 0.0224566 0.00308339 0.0221508 0.00309282 0.0217899 0.0030631 0.0213636 0.00298215 0.020859 0.00283303 0.0202602 0.00259296 0.0195469 0.00223301 0.018693 0.0017111 0.0176671 0.0010051 0.0164414 8.5478e-05 -0.000825822 0.0236307 0.00072433 0.023685 0.000881829 0.0237316 0.0010382 0.0237704 0.00119344 0.0238008 0.0013476 0.0238226 0.0015007 0.023835 0.00165271 0.0238374 0.00180354 0.023829 0.00195308 0.0238089 0.00210113 0.0237758 0.00224739 0.0237285 0.00239146 0.0236653 0.00253279 0.0235843 0.00267061 0.0234832 0.00280392 0.0233595 0.00293137 0.02321 0.00305117 0.0230307 0.00316096 0.0228172 0.00325755 0.0225639 0.00333671 0.022264 0.00339277 0.021909 0.00341802 0.0214889 0.00340234 0.0209905 0.00333137 0.0203977 0.00318578 0.01969 0.00294069 0.018841 0.0025601 0.0178216 0.00202447 0.0165919 0.00131518 0.000618419 0.0236354 0.000657837 0.0236945 0.000822786 0.0237458 0.000986812 0.0237893 0.00114998 0.0238245 0.00131244 0.0238509 0.00147429 0.023868 0.00163561 0.023875 0.00179645 0.0238713 0.0019568 0.0238558 0.00211663 0.0238274 0.00227582 0.0237847 0.00243416 0.0237261 0.00259136 0.0236498 0.00274693 0.0235535 0.00290023 0.0234346 0.00305032 0.0232898 0.00319592 0.0231155 0.0033353 0.022907 0.00346606 0.0226588 0.00358493 0.022364 0.00368748 0.0220145 0.00376756 0.0215998 0.00381704 0.021107 0.00382413 0.0205198 0.00377307 0.0198175 0.00364295 0.018973 0.00340457 0.0179574 0.00304013 0.0167298 0.00254279 0.00206766 0.0236396 0.000587185 0.0237028 0.000759599 0.0237583 0.000931299 0.0238058 0.00110242 0.0238451 0.00127319 0.0238756 0.00144382 0.0238967 0.00161447 0.0239078 0.00178532 0.0239081 0.0019565 0.0238967 0.00212811 0.0238722 0.00230023 0.0238336 0.00247285 0.023779 0.0026459 0.0237067 0.00281922 0.0236145 0.00299247 0.0234997 0.00316515 0.0233591 0.0033365 0.023189 0.00350539 0.0229848 0.00367023 0.0227411 0.00382869 0.0224509 0.00397761 0.0221061 0.00411237 0.0216963 0.00422688 0.0212085 0.0043119 0.0206262 0.00435534 0.019929 0.0043402 0.0190891 0.00424446 0.0180768 0.00405242 0.0168512 0.00376845 0.00351919 0.0236431 0.000512968 0.0237099 0.000692868 0.0237689 0.000872262 0.02382 0.00105135 0.0238627 0.00123046 0.0238966 0.00140988 0.0239212 0.00158989 0.0239358 0.00177077 0.0239395 0.00195279 0.0239314 0.00213621 0.0239103 0.00232126 0.023875 0.00250816 0.0238239 0.00269707 0.023755 0.0028881 0.0236662 0.00308128 0.0235548 0.00327652 0.0234177 0.00347356 0.0232512 0.0036719 0.0230507 0.00387072 0.0228107 0.00406867 0.0225245 0.00426382 0.0221838 0.0044531 0.0217782 0.00463249 0.0212948 0.00479528 0.020717 0.00493312 0.0200243 0.00503289 0.0191888 0.00507998 0.0181802 0.00506102 0.0169567 0.00499195 0.00497154 0.0236461 0.000435781 0.0237158 0.000623192 0.0237777 0.000810308 0.0238317 0.000997396 0.0238773 0.00118487 0.023914 0.00137311 0.0239414 0.0015625 0.0239588 0.00175344 0.0239652 0.00194632 0.0239599 0.00214155 0.0239416 0.00233955 0.023909 0.00254073 0.0238606 0.00274549 0.0237945 0.00295424 0.0237084 0.00316733 0.0235999 0.00338509 0.0234657 0.00360777 0.0233021 0.00383549 0.0231046 0.0040682 0.0228677 0.00430553 0.0225848 0.00454678 0.0222474 0.00479043 0.0218454 0.00503452 0.0213658 0.00527489 0.0207919 0.00550698 0.0201033 0.00572148 0.0192719 0.0059114 0.0182671 0.00606584 0.0170463 0.00621275 0.00642348 0.0236485 0.000356219 0.0237205 0.000551175 0.0237847 0.000746046 0.023841 0.000941165 0.0238888 0.00113704 0.0239278 0.00133412 0.0239574 0.00153292 0.0239769 0.00173394 0.0239855 0.00193771 0.0239822 0.00214478 0.0239661 0.00235574 0.0239356 0.00257121 0.0238892 0.00279183 0.0238252 0.00301827 0.0237413 0.00325126 0.0236349 0.00349151 0.0235028 0.00373979 0.0233415 0.00399683 0.0231464 0.00426335 0.0229119 0.00453995 0.0226316 0.00482716 0.022297 0.00512501 0.0218979 0.00543363 0.0214214 0.00575134 0.0208509 0.00607746 0.020166 0.00640643 0.0193383 0.00673904 0.0183373 0.00706687 0.0171197 0.00743033 0.00787365 0.0236502 0.000274881 0.023724 0.000477421 0.0237899 0.000680085 0.0238478 0.000883272 0.0238973 0.00108757 0.0239379 0.00129355 0.023969 0.00150179 0.02399 0.00171292 0.0240001 0.00192759 0.0239984 0.00214653 0.0239837 0.00237047 0.0239546 0.00260024 0.0239098 0.00283671 0.0238472 0.00308086 0.0237647 0.00333373 0.0236598 0.00359645 0.0235293 0.00387029 0.0233695 0.00415659 0.023176 0.00445684 0.0229434 0.0047726 0.0226649 0.00510565 0.0223324 0.00545753 0.0219355 0.00583046 0.0214616 0.00622526 0.0208939 0.00664513 0.0202122 0.0070882 0.019388 0.00756319 0.0183908 0.00806409 0.0171769 0.00864424 0.00932066 0.0236514 0.000192368 0.0237263 0.000402536 0.0237933 0.000613035 0.0238523 0.000824334 0.0239027 0.00103711 0.0239443 0.00125201 0.0239763 0.00146972 0.0239983 0.001691 0.0240092 0.00191662 0.0240083 0.00214743 0.0239944 0.00238438 0.0239662 0.00262846 0.0239221 0.00288081 0.0238603 0.00314266 0.0237786 0.0034154 0.0236745 0.00370057 0.0235449 0.00399993 0.023386 0.00431544 0.0231935 0.00464936 0.0229619 0.00500418 0.0226847 0.00538292 0.0223535 0.00578865 0.0219583 0.00622567 0.0214863 0.00669727 0.0209209 0.00721055 0.0202418 0.00776726 0.0194209 0.00838415 0.0184275 0.00905748 0.0172177 0.00985401 0.0107631 0.023652 0.0237274 0.0237949 0.0238543 0.0239051 0.023947 0.0239794 0.0240015 0.0240127 0.024012 0.0239983 0.0239702 0.0239263 0.0238646 0.0237831 0.0236791 0.0235496 0.023391 0.0231988 0.0229676 0.0226909 0.0223605 0.0219662 0.0214955 0.0209318 0.0202549 0.0194369 0.0184473 0.0172421 0.185985 -1.72337e-05 0.186036 -5.16967e-05 0.186123 -8.63254e-05 0.186244 -0.000121312 0.186401 -0.000156835 0.186594 -0.000193062 0.186824 -0.000230144 0.187092 -0.000268216 0.1874 -0.000307401 0.187748 -0.000347805 0.188137 -0.000389512 0.18857 -0.000432584 0.189047 -0.000477055 0.18957 -0.000522926 0.19014 -0.000570167 0.190758 -0.000618708 0.191427 -0.00066844 0.192146 -0.000719209 0.192917 -0.000770815 0.19374 -0.000823011 0.194615 -0.0008755 0.195543 -0.000927939 0.196523 -0.000979935 0.197554 -0.00103105 0.198635 -0.00108082 0.199764 -0.00112874 0.200938 -0.00117427 0.202155 -0.00121689 0.203411 -0.00125605 -0.00129183 0.204703 0.175944 -3.32322e-05 0.175992 -9.96793e-05 0.176072 -0.000166455 0.176185 -0.000233957 0.17633 -0.000302532 0.17651 -0.000372509 0.176724 -0.00044419 0.176973 -0.000517853 0.17726 -0.000593747 0.177584 -0.000672088 0.177947 -0.000753055 0.178352 -0.000836778 0.178798 -0.000923335 0.179288 -0.00101274 0.179823 -0.00110496 0.180404 -0.00119985 0.181032 -0.00129721 0.18171 -0.00139676 0.182437 -0.00149811 0.183215 -0.00160078 0.184044 -0.0017042 0.184924 -0.00180768 0.185854 -0.00191045 0.186835 -0.00201164 0.187864 -0.00211032 0.188941 -0.00220545 0.190063 -0.00229596 0.191226 -0.00238073 0.192429 -0.0024586 -0.00252936 0.193666 0.166445 -4.78106e-05 0.166488 -0.000143418 0.166561 -0.000239529 0.166664 -0.000336738 0.166797 -0.000435572 0.166961 -0.000536528 0.167157 -0.000640068 0.167386 -0.000746619 0.167649 -0.00085657 0.167947 -0.000970264 0.168282 -0.00108799 0.168655 -0.00120996 0.169068 -0.00133631 0.169522 -0.00146712 0.17002 -0.00160232 0.170562 -0.00174177 0.17115 -0.00188519 0.171785 -0.00203219 0.172469 -0.0021822 0.173203 -0.00233454 0.173987 -0.00248837 0.174822 -0.00264267 0.175708 -0.0027963 0.176644 -0.00294796 0.17763 -0.00309621 0.178664 -0.0032395 0.179744 -0.00337617 0.180868 -0.00350453 0.182032 -0.00362281 -0.00373076 0.183234 0.157458 -6.08523e-05 0.157497 -0.000182555 0.157562 -0.000304945 0.157654 -0.000428822 0.157774 -0.0005549 0.157921 -0.000683855 0.158097 -0.000816319 0.158304 -0.000952887 0.158541 -0.0010941 0.158811 -0.00124045 0.159116 -0.00139236 0.159456 -0.00155014 0.159834 -0.00171405 0.160251 -0.0018842 0.160709 -0.00206058 0.16121 -0.00224304 0.161756 -0.00243128 0.162349 -0.0026248 0.16299 -0.00282292 0.16368 -0.00302477 0.164421 -0.00322924 0.165213 -0.00343502 0.166057 -0.00364058 0.166954 -0.00384416 0.167901 -0.00404383 0.168899 -0.00423744 0.169946 -0.00442272 0.171038 -0.00459729 0.172174 -0.00475868 -0.00490632 0.17335 0.148956 -7.22787e-05 0.14899 -0.000216851 0.149048 -0.000362308 0.149129 -0.000509657 0.149234 -0.000659809 0.149363 -0.000813633 0.149519 -0.000971946 0.149702 -0.00113552 0.149913 -0.00130509 0.150153 -0.00148129 0.150426 -0.00166471 0.150731 -0.00185583 0.151072 -0.00205499 0.151451 -0.00226243 0.151868 -0.00247822 0.152327 -0.00270225 0.15283 -0.00293422 0.153379 -0.00317359 0.153976 -0.0034196 0.154622 -0.0036712 0.15532 -0.00392706 0.156071 -0.00418559 0.156875 -0.00444485 0.157733 -0.00470265 0.158646 -0.00495648 0.159612 -0.0052036 0.160631 -0.00544103 0.161699 -0.00566562 0.162814 -0.00587413 -0.00606558 0.163974 0.140913 -8.20446e-05 0.140943 -0.000246171 0.140992 -0.00041139 0.141061 -0.000578921 0.141151 -0.000749883 0.141263 -0.000925346 0.141397 -0.00110633 0.141555 -0.0012938 0.141739 -0.00148869 0.141949 -0.00169184 0.142189 -0.00190401 0.142459 -0.00212585 0.142762 -0.00235789 0.1431 -0.00260051 0.143475 -0.00285389 0.143891 -0.00311803 0.14435 -0.00339267 0.144853 -0.0036773 0.145405 -0.00397109 0.146007 -0.0042729 0.146661 -0.00458121 0.147369 -0.00489414 0.148134 -0.0052094 0.148955 -0.00552431 0.149835 -0.0058358 0.150772 -0.00614044 0.151765 -0.00643447 0.152813 -0.00671387 0.153914 -0.00697446 -0.00721455 0.155063 0.133304 -9.01355e-05 0.133329 -0.000270471 0.133369 -0.000452115 0.133427 -0.0006365 0.133502 -0.000824962 0.133595 -0.00101878 0.133708 -0.00121919 0.133842 -0.00142737 0.133998 -0.00164447 0.134177 -0.00187155 0.134383 -0.00210958 0.134617 -0.00235944 0.134881 -0.00262185 0.135177 -0.00289738 0.13551 -0.00318641 0.135881 -0.00348907 0.136294 -0.00380524 0.136751 -0.00413446 0.137256 -0.00447593 0.137811 -0.00482846 0.13842 -0.00519039 0.139086 -0.0055596 0.13981 -0.00593347 0.140594 -0.00630884 0.141441 -0.00668204 0.142349 -0.00704889 0.143319 -0.00740477 0.14435 -0.00774466 0.145439 -0.00806333 -0.00835796 0.146582 0.126106 -9.65642e-05 0.126125 -0.000289789 0.126158 -0.00048454 0.126204 -0.000682468 0.126264 -0.000885126 0.126339 -0.00109401 0.126431 -0.00131058 0.12654 -0.00153624 0.126667 -0.00177237 0.126816 -0.00202027 0.126988 -0.00228118 0.127184 -0.00255619 0.127409 -0.0028463 0.127664 -0.00315232 0.127952 -0.00347486 0.128278 -0.00381426 0.128643 -0.0041706 0.129052 -0.00454357 0.129509 -0.00493247 0.130016 -0.00533611 0.130579 -0.0057528 0.131199 -0.00618023 0.131881 -0.00661547 0.132627 -0.00705492 0.13344 -0.00749428 0.134319 -0.00792861 0.135267 -0.0083523 0.136281 -0.00875918 0.137361 -0.00914282 -0.00949871 0.138502 0.119297 -0.000101369 0.119311 -0.00030424 0.119335 -0.000508855 0.11937 -0.000717077 0.119415 -0.000930679 0.119473 -0.00115138 0.119543 -0.00138085 0.119628 -0.00162075 0.119728 -0.0018727 0.119846 -0.00213826 0.119984 -0.00241894 0.120144 -0.00271613 0.120328 -0.00303111 0.120541 -0.00336497 0.120785 -0.00371864 0.121063 -0.00409276 0.12138 -0.00448764 0.12174 -0.00490324 0.122147 -0.00533903 0.122604 -0.00579396 0.123118 -0.00626635 0.123692 -0.00675382 0.124329 -0.00725319 0.125035 -0.00776046 0.125811 -0.00827073 0.126661 -0.00877822 0.127585 -0.00927627 0.128583 -0.00975741 0.129654 -0.0102139 -0.0106386 0.130794 0.112854 -0.000104612 0.112864 -0.000314008 0.112881 -0.000525359 0.112904 -0.000740737 0.112936 -0.000962128 0.112976 -0.00119146 0.113026 -0.00143064 0.113087 -0.00168157 0.11316 -0.00194613 0.113248 -0.00222615 0.113352 -0.00252344 0.113476 -0.0028397 0.113621 -0.00317654 0.113792 -0.00353541 0.113991 -0.00391759 0.114222 -0.00432407 0.11449 -0.00475555 0.114799 -0.00521229 0.115154 -0.00569409 0.11556 -0.00620012 0.116023 -0.00672885 0.116547 -0.00727791 0.117138 -0.00784401 0.1178 -0.00842281 0.118538 -0.00900884 0.119355 -0.00959549 0.120254 -0.010175 0.121235 -0.0107383 0.122297 -0.0112763 -0.0117783 0.123437 0.10676 -0.000106375 0.106765 -0.000319336 0.106775 -0.000534456 0.106788 -0.000754002 0.106806 -0.000980163 0.10683 -0.00121508 0.10686 -0.00146087 0.106898 -0.00171969 0.106945 -0.00199368 0.107004 -0.00228496 0.107076 -0.00259564 0.107165 -0.00292777 0.107271 -0.00328333 0.1074 -0.00366417 0.107554 -0.00407197 0.107739 -0.00450818 0.107957 -0.00497392 0.108215 -0.00546993 0.108517 -0.0059964 0.10887 -0.00655289 0.109279 -0.00713814 0.109751 -0.00774997 0.110292 -0.00838508 0.110908 -0.00903893 0.111605 -0.00970556 0.112387 -0.0103775 0.113258 -0.0110459 0.11422 -0.0117001 0.115273 -0.0123293 -0.0129177 0.116412 0.100995 -0.000106756 0.100996 -0.00032052 0.100998 -0.000536632 0.101002 -0.000757543 0.101007 -0.000985629 0.101015 -0.00122322 0.101027 -0.00147267 0.101044 -0.00173635 0.101067 -0.00201667 0.101098 -0.00231605 0.101139 -0.00263691 0.101193 -0.00298166 0.101262 -0.00335268 0.101351 -0.00375226 0.101461 -0.00418256 0.101599 -0.00464553 0.101767 -0.00514285 0.101973 -0.00567579 0.102222 -0.00624511 0.10252 -0.00685087 0.102874 -0.0074923 0.103292 -0.00816755 0.10378 -0.0088735 0.104347 -0.00960557 0.104999 -0.0103575 0.105742 -0.011121 0.106582 -0.011886 0.107522 -0.0126402 0.108564 -0.0133712 -0.0140561 0.109703 0.095541 -0.000105867 0.0955383 -0.000317894 0.0955341 -0.00053244 0.0955287 -0.000752124 0.0955226 -0.000979491 0.0955164 -0.00121705 0.0955111 -0.00146736 0.0955078 -0.00173302 0.0955078 -0.00201669 0.0955128 -0.00232108 0.0955249 -0.00264893 0.0955462 -0.00300304 0.0955798 -0.0033862 0.0956287 -0.00380116 0.0956967 -0.00425062 0.0957883 -0.00473711 0.0959084 -0.00526293 0.0960626 -0.00583003 0.0962574 -0.00643984 0.0964996 -0.00709313 0.0967971 -0.00778977 0.097158 -0.00852845 0.097591 -0.0093065 0.0981049 -0.0101195 0.0987083 -0.0109609 0.0994094 -0.0118221 0.100215 -0.0126917 0.10113 -0.0135556 0.102159 -0.0143997 -0.0151918 0.103295 0.0903815 -0.000103829 0.0903754 -0.000311818 0.0903655 -0.000522479 0.0903519 -0.000738578 0.0903353 -0.000962806 0.090316 -0.00119784 0.0902951 -0.00144641 0.0902734 -0.00171134 0.0902522 -0.00199553 0.0902331 -0.00230196 0.0902179 -0.00263371 0.0902088 -0.00299394 0.0902085 -0.00338588 0.0902201 -0.00381278 0.0902474 -0.0042779 0.0902947 -0.00478442 0.0903671 -0.00533534 0.0904704 -0.00593338 0.0906114 -0.00658081 0.0907976 -0.00727927 0.0910372 -0.00802946 0.0913397 -0.0088309 0.0917147 -0.00968156 0.0921727 -0.0105775 0.0927241 -0.0115123 0.0933788 -0.0124768 0.0941461 -0.0134591 0.0950331 -0.0144425 0.0960455 -0.0154121 -0.0163229 0.0971766 0.0855007 -0.000100767 0.0854916 -0.00030267 0.0854764 -0.000507377 0.0854556 -0.000717777 0.0854295 -0.000936688 0.0853986 -0.00116692 0.0853636 -0.00141139 0.0853253 -0.00167308 0.0852849 -0.00195514 0.0852438 -0.0022608 0.0852035 -0.00259347 0.0851663 -0.00295667 0.0851344 -0.00335406 0.0851111 -0.00378942 0.0850998 -0.00426659 0.0851048 -0.00478944 0.0851312 -0.00536176 0.085185 -0.00598714 0.085273 -0.00666883 0.0854032 -0.00740947 0.0855846 -0.00821086 0.0858273 -0.00907359 0.0861423 -0.00999659 0.0865415 -0.0109767 0.0870372 -0.012008 0.0876416 -0.0130812 0.0883664 -0.0141838 0.0892209 -0.0152971 0.090214 -0.0164052 -0.0174466 0.0913377 0.0808835 -9.68114e-05 0.0808716 -0.000290835 0.080852 -0.000487771 0.0808249 -0.000690613 0.0807905 -0.000902276 0.0807492 -0.00112569 0.0807017 -0.0013639 0.0806487 -0.00162008 0.0805912 -0.00189756 0.0805302 -0.00219984 0.0804673 -0.0025306 0.0804044 -0.00289373 0.0803437 -0.00329333 0.0802879 -0.00373369 0.0802406 -0.00421926 0.0802058 -0.00475463 0.0801885 -0.00534442 0.0801945 -0.0059932 0.080231 -0.0067053 0.0803061 -0.00748458 0.0804294 -0.00833412 0.0806116 -0.00925586 0.0808651 -0.01025 0.0812031 -0.0113146 0.0816398 -0.0124447 0.0821899 -0.0136313 0.0828678 -0.0148617 0.0836856 -0.0161149 0.0846557 -0.0173753 -0.0185595 0.0857686 0.0765156 -9.20873e-05 0.0765015 -0.000276691 0.076478 -0.000464294 0.0764454 -0.00065797 0.0764038 -0.000860704 0.0763536 -0.00107552 0.0762953 -0.00130558 0.0762294 -0.0015542 0.0761567 -0.00182489 0.0760783 -0.00212137 0.0759953 -0.0024476 0.0759094 -0.00280781 0.0758225 -0.0032065 0.0757373 -0.00364848 0.0756569 -0.00413881 0.0755851 -0.00468281 0.0755267 -0.00528601 0.0754874 -0.00595399 0.0754744 -0.00669228 0.0754959 -0.0075061 0.0755619 -0.00840006 0.0756837 -0.00937772 0.0758747 -0.010441 0.0761496 -0.0115895 0.0765245 -0.0128197 0.0770166 -0.0141234 0.0776432 -0.0154883 0.0784197 -0.0168913 0.0793626 -0.0183182 -0.0196575 0.0804606 0.0723837 -8.67179e-05 0.0723676 -0.000260608 0.0723409 -0.00043756 0.0723036 -0.000620709 0.072256 -0.000813082 0.0721982 -0.00101777 0.0721307 -0.00123803 0.0720538 -0.0014773 0.0719681 -0.00173923 0.0718745 -0.00202774 0.0717739 -0.00234704 0.0716678 -0.00270165 0.0715577 -0.00309649 0.0714461 -0.00353684 0.0713357 -0.00402838 0.07123 -0.00457716 0.0711336 -0.00518961 0.071052 -0.0058724 0.0709921 -0.00663235 0.0709622 -0.00747618 0.0709724 -0.00841022 0.0710346 -0.00943993 0.0711629 -0.0105693 0.0713734 -0.0118 0.0716841 -0.0131304 0.0721147 -0.014554 0.0726859 -0.0160595 0.0734161 -0.0176215 0.0743272 -0.0192292 -0.0207353 0.075405 0.0684749 -8.082e-05 0.0684572 -0.000242935 0.0684278 -0.000408156 0.0683868 -0.000579652 0.0683342 -0.000760469 0.0682701 -0.000953745 0.0681949 -0.0011628 0.0681088 -0.00139117 0.0680122 -0.00164263 0.0679057 -0.00192124 0.0677901 -0.00223144 0.0676664 -0.00257803 0.0675362 -0.00296629 0.0674013 -0.00340195 0.0672643 -0.00389128 0.0671282 -0.00444107 0.0669972 -0.00505863 0.0668766 -0.00575177 0.0667728 -0.00652863 0.0666942 -0.00739757 0.0666508 -0.00836681 0.0666549 -0.00944398 0.0667211 -0.0106355 0.0668667 -0.0119456 0.0671116 -0.0133753 0.0674777 -0.0149201 0.0679893 -0.0165711 0.0686684 -0.0183006 0.0695421 -0.020103 -0.0217869 0.0705937 0.0647773 -7.45025e-05 0.0647583 -0.000223999 0.0647268 -0.000376627 0.0646827 -0.00053557 0.0646261 -0.000703867 0.064557 -0.000884679 0.0644756 -0.00108137 0.064382 -0.00129754 0.0642764 -0.00153704 0.0641592 -0.00180409 0.0640311 -0.00210328 0.0638927 -0.00243968 0.0637453 -0.00281887 0.0635904 -0.00324702 0.06343 -0.00373093 0.0632671 -0.0042781 0.0631052 -0.00489674 0.0629492 -0.00559574 0.0628052 -0.00638467 0.0626812 -0.00727356 0.0625871 -0.00827268 0.0625352 -0.00939209 0.0625406 -0.010641 0.0626216 -0.0120266 0.0627996 -0.0135533 0.0630989 -0.0152195 0.0635471 -0.0170193 0.0641699 -0.0189233 0.0650001 -0.0209332 -0.022805 0.0660182 0.0612793 -6.78655e-05 0.0612594 -0.000204101 0.0612263 -0.000343479 0.0611799 -0.000489177 0.0611202 -0.000644202 0.0610473 -0.000811719 0.060961 -0.000995115 0.0608615 -0.00119801 0.0607488 -0.00142435 0.0606231 -0.00167841 0.0604848 -0.00196496 0.0603344 -0.00228926 0.0601727 -0.00265717 0.0600009 -0.00307523 0.0598207 -0.00355076 0.0596345 -0.0040919 0.0594455 -0.00470772 0.059258 -0.00540822 0.0590776 -0.00620435 0.058912 -0.00710789 0.0587706 -0.00813126 0.0586656 -0.00928714 0.0586124 -0.0105878 0.0586299 -0.0120441 0.0587407 -0.0136642 0.0589714 -0.0154501 0.0593527 -0.0174006 0.0599141 -0.0194847 0.0606937 -0.0217128 -0.0237816 0.0616702 0.0579704 -6.09995e-05 0.0579498 -0.000183516 0.0579155 -0.000309173 0.0578674 -0.000441123 0.0578055 -0.000582323 0.0577297 -0.000735923 0.0576399 -0.000905306 0.057536 -0.00109411 0.057418 -0.00130628 0.0572858 -0.00154621 0.0571395 -0.00181874 0.0569796 -0.0021293 0.0568064 -0.00248399 0.0566208 -0.00288968 0.0564242 -0.00335413 0.0562184 -0.0038861 0.0560061 -0.00449545 0.0557912 -0.00519324 0.0555786 -0.0059918 0.0553754 -0.00690465 0.0551906 -0.00794645 0.0550361 -0.00913263 0.0549271 -0.0104788 0.0548828 -0.0119998 0.0549271 -0.0137084 0.0550881 -0.0156111 0.0553994 -0.0177119 0.0558944 -0.0199797 0.0566153 -0.0224336 -0.0247076 0.0575413 0.0548401 -5.39857e-05 0.0548191 -0.000162488 0.054784 -0.000274122 0.0547349 -0.000391998 0.0546716 -0.000519 0.0545939 -0.000658252 0.0545017 -0.000813107 0.0543948 -0.000987186 0.054273 -0.00118445 0.0541361 -0.00140932 0.0539841 -0.00166671 0.0538169 -0.00196218 0.0536349 -0.002302 0.0534386 -0.00269333 0.0532288 -0.00314432 0.053007 -0.00366427 0.0527753 -0.00426378 0.052537 -0.00495491 0.0522965 -0.00575129 0.05206 -0.0066682 0.0518361 -0.00772253 0.051636 -0.00893256 0.0514747 -0.0103175 0.0513713 -0.0118965 0.0513503 -0.0136874 0.0514413 -0.0157021 0.05168 -0.0179507 0.052104 -0.0204037 0.0527568 -0.0230864 -0.0255739 0.0536231 0.0518789 -4.6896e-05 0.0518577 -0.000141235 0.0518222 -0.000238696 0.0517726 -0.000342327 0.0517085 -0.000454925 0.0516298 -0.00057957 0.0515363 -0.000719568 0.0514276 -0.000878506 0.0513035 -0.00106032 0.0511636 -0.00126945 0.0510077 -0.00151083 0.0508356 -0.00179011 0.0506473 -0.0021137 0.050443 -0.00248899 0.0502231 -0.00292446 0.0499887 -0.00342987 0.0497414 -0.00401648 0.0494838 -0.00469728 0.0492196 -0.00548714 0.0489545 -0.00640303 0.048696 -0.00746404 0.0484547 -0.00869132 0.0482451 -0.0101078 0.0480858 -0.0117372 0.0480016 -0.0136031 0.0480229 -0.0157234 0.0481871 -0.0181149 0.0485356 -0.0207522 0.0491101 -0.0236609 -0.0263716 0.0499079 0.0490777 -3.97938e-05 0.0490564 -0.00011995 0.0490209 -0.000203222 0.0489712 -0.000292578 0.048907 -0.000390712 0.048828 -0.000500648 0.0487341 -0.000625626 0.0486248 -0.000769181 0.0484997 -0.000935202 0.0483583 -0.00112811 0.0482003 -0.00135284 0.0480253 -0.0016151 0.047833 -0.00192138 0.0476233 -0.00227925 0.0473963 -0.00269745 0.0471525 -0.00318614 0.0468932 -0.00375715 0.0466202 -0.00442431 0.0463367 -0.00520363 0.0460473 -0.00611366 0.045759 -0.00717564 0.0454812 -0.00841359 0.0452276 -0.00985421 0.0450163 -0.0115259 0.0448715 -0.0134583 0.0448243 -0.0156762 0.0449126 -0.0182032 0.0451817 -0.0210212 0.045667 -0.0241462 -0.0270931 0.0463885 0.0464277 -3.27349e-05 0.0464066 -9.88036e-05 0.0463714 -0.000167988 0.046322 -0.000243163 0.0462581 -0.000326903 0.0461797 -0.000422166 0.0460861 -0.000532112 0.0459772 -0.000660204 0.0458522 -0.000810255 0.0457108 -0.000986659 0.0455523 -0.00119433 0.0453761 -0.00143898 0.0451819 -0.00172712 0.0449691 -0.00206648 0.0447376 -0.00246599 0.0444876 -0.00293612 0.0442197 -0.0034892 0.0439351 -0.00413977 0.0436364 -0.0049049 0.0433273 -0.00580457 0.0430137 -0.00686207 0.0427043 -0.00810417 0.0424114 -0.00956132 0.0421523 -0.0112668 0.0419503 -0.0132564 0.0418365 -0.0155624 0.0418483 -0.0182151 0.0420341 -0.0212071 0.0424189 -0.024531 -0.0277331 0.0430589 0.0439209 -2.57691e-05 0.0439001 -7.79447e-05 0.0438653 -0.00013325 0.0438166 -0.000194446 0.0437537 -0.000263974 0.0436762 -0.000344721 0.0435839 -0.000439747 0.0434761 -0.000552438 0.0433524 -0.000686506 0.043212 -0.000846305 0.0430544 -0.00103668 0.0428787 -0.00126334 0.0426844 -0.00153278 0.0424707 -0.00185282 0.0422373 -0.00223253 0.0419837 -0.00268261 0.0417103 -0.00321579 0.0414178 -0.00384722 0.0411078 -0.00459489 0.0407833 -0.00548009 0.0404492 -0.00652798 0.040113 -0.00776794 0.0397857 -0.00923406 0.0394834 -0.0109645 0.0392281 -0.0130011 0.03905 -0.0153843 0.0389856 -0.0181507 0.0390848 -0.0213063 0.0393584 -0.0248046 -0.0282874 0.0399127 0.0415495 -1.89414e-05 0.0415291 -5.75072e-05 0.0414951 -9.92302e-05 0.0414474 -0.000146743 0.0413857 -0.000202338 0.0413098 -0.000268827 0.0412192 -0.000349162 0.0411134 -0.000446629 0.0409918 -0.000564838 0.0408535 -0.00070808 0.040698 -0.000881105 0.0405242 -0.0010896 0.0403315 -0.00134 0.0401188 -0.00164017 0.0398855 -0.00199926 0.0396311 -0.00242813 0.0393551 -0.00293981 0.0390578 -0.00354995 0.0387402 -0.00427731 0.0384045 -0.00514435 0.0380544 -0.00617789 0.0376962 -0.00740974 0.0373395 -0.00887739 0.0369988 -0.0106237 0.0366945 -0.0126968 0.0364552 -0.015145 0.0363157 -0.0180111 0.0363252 -0.0213158 0.036481 -0.0249603 -0.028749 0.0369426 0.0393062 -1.22943e-05 0.0392863 -3.76119e-05 0.0392532 -6.61281e-05 0.0392068 -0.000100331 0.0391468 -0.00014235 0.0390729 -0.000194922 0.0389846 -0.000260886 0.0388814 -0.000343418 0.0387626 -0.000446006 0.0386274 -0.000572863 0.0384749 -0.000728646 0.0383043 -0.00091899 0.0381145 -0.00115019 0.0379045 -0.00143019 0.0376733 -0.00176811 0.0374201 -0.00217491 0.0371441 -0.00266383 0.0368451 -0.00325091 0.0365234 -0.00395555 0.0361802 -0.00480115 0.0358183 -0.00581602 0.0354427 -0.00703412 0.0350614 -0.00849612 0.0346871 -0.0102494 0.0343381 -0.0123478 0.034041 -0.014848 0.0338279 -0.017798 0.0337432 -0.0212312 0.0337882 -0.0250053 -0.0291031 0.0341423 0.037184 0.0371648 0.0371328 0.0370879 0.0370299 0.0369583 0.0368728 0.0367727 0.0366573 0.0365258 0.0363773 0.0362108 0.0360252 0.0358193 0.0355918 0.0353418 0.035068 0.0347698 0.0344467 0.0340994 0.0337295 0.0333405 0.0329389 0.0325352 0.0321456 0.0317941 0.0315092 0.0313261 0.0312521 0.0314678 0.203686 0.00101692 0.202703 0.000982847 0.201756 0.000947484 0.200845 0.000911175 0.199971 0.000873944 0.199135 0.00083581 0.198338 0.000796796 0.197581 0.000756918 0.196865 0.000716205 0.19619 0.000674674 0.195558 0.000632352 0.194969 0.000589263 0.194423 0.000545432 0.193922 0.000500886 0.193467 0.000455652 0.193057 0.000409758 0.192694 0.00036323 0.192378 0.000316101 0.192109 0.000268397 0.191889 0.000220153 0.191718 0.000171396 0.191595 0.000122162 0.191523 7.24834e-05 0.191501 2.2397e-05 0.191529 -2.80807e-05 0.191608 -7.89057e-05 0.191738 -0.000130034 0.191919 -0.000181434 0.192152 -0.000233072 -0.000284911 0.192437 0.1927 0.00198354 0.191766 0.00191628 0.190867 0.00184657 0.190003 0.00177505 0.189176 0.00170176 0.188385 0.00162675 0.187631 0.00155006 0.186917 0.00147173 0.186241 0.00139181 0.185605 0.00131033 0.18501 0.00122735 0.184457 0.00114291 0.183945 0.00105707 0.183476 0.000969873 0.18305 0.000881372 0.182668 0.000791621 0.182331 0.000700675 0.182039 0.000608589 0.181792 0.000515423 0.18159 0.000421235 0.181436 0.000326084 0.181328 0.000230033 0.181267 0.000133144 0.181254 3.54917e-05 0.181289 -6.28926e-05 0.181372 -0.000161915 0.181503 -0.000261509 0.181684 -0.000361608 0.181913 -0.000462145 -0.000563049 0.182191 0.182319 0.00289824 0.181436 0.00279894 0.180587 0.00269608 0.179771 0.0025906 0.17899 0.00248258 0.178245 0.00237208 0.177536 0.00225917 0.176864 0.0021439 0.176229 0.00202634 0.175633 0.00190655 0.175076 0.00178461 0.174558 0.00166058 0.174081 0.00153453 0.173644 0.00140654 0.173249 0.00127668 0.172895 0.00114504 0.172584 0.00101169 0.172316 0.00087671 0.172091 0.000740187 0.17191 0.000602207 0.171774 0.000462857 0.171682 0.000322224 0.171634 0.000180403 0.171632 3.7508e-05 0.171676 -0.000106448 0.171765 -0.000251295 0.171901 -0.000396943 0.172082 -0.000543305 0.17231 -0.000690274 -0.000837755 0.172585 0.172488 0.00376039 0.171656 0.00363022 0.170857 0.00349542 0.17009 0.00335726 0.169357 0.00321584 0.168658 0.00307124 0.167994 0.00292354 0.167365 0.00277283 0.166772 0.00261918 0.166216 0.00246269 0.165697 0.00230343 0.165216 0.00214151 0.164774 0.001977 0.16437 0.00181002 0.164006 0.00164065 0.163682 0.00146901 0.163399 0.00129518 0.163156 0.00111928 0.162955 0.000941407 0.162795 0.000761683 0.162678 0.000580216 0.162603 0.00039712 0.162571 0.000212518 0.162582 2.6583e-05 0.162636 -0.000160762 0.162734 -0.000349191 0.162876 -0.000538632 0.163062 -0.000728966 0.163291 -0.000920063 -0.00111179 0.163565 0.163164 0.00456962 0.162385 0.00440977 0.161636 0.0042443 0.160918 0.00407477 0.160233 0.00390129 0.15958 0.00372399 0.158961 0.00354296 0.158375 0.00335831 0.157824 0.00317012 0.157309 0.0029785 0.156828 0.00278357 0.156385 0.00258542 0.155977 0.00238418 0.155607 0.00217996 0.155275 0.00197288 0.154981 0.00176306 0.154726 0.00155062 0.154509 0.00133569 0.154332 0.00111841 0.154195 0.000898903 0.154098 0.000677309 0.154041 0.000453768 0.154025 0.000228426 0.15405 1.87772e-06 0.154116 -0.000227118 0.154224 -0.00045701 0.154374 -0.000688115 0.154565 -0.000920278 0.154798 -0.00115334 -0.00138715 0.155074 0.154307 0.00532567 0.153579 0.00513741 0.152881 0.00494256 0.152213 0.00474297 0.151575 0.00453881 0.150969 0.00433022 0.150394 0.00411732 0.149853 0.00390021 0.149344 0.00367901 0.148868 0.00345385 0.148427 0.00322485 0.14802 0.00299214 0.147649 0.00275585 0.147312 0.00251611 0.147012 0.00227306 0.146748 0.00202685 0.146521 0.00177762 0.146332 0.00152551 0.146179 0.00127069 0.146065 0.0010133 0.145989 0.000753497 0.145951 0.000491455 0.145952 0.000227343 0.145993 -3.8599e-05 0.146072 -0.000306505 0.146191 -0.000575871 0.146349 -0.00084662 0.146548 -0.00111858 0.146786 -0.00139157 -0.00166541 0.147064 0.14588 0.0060284 0.145204 0.005813 0.144556 0.0055901 0.143938 0.00536183 0.143348 0.00512837 0.142788 0.00488992 0.142259 0.0046466 0.141761 0.00439855 0.141294 0.00414588 0.140859 0.00388875 0.140457 0.00362728 0.140087 0.00336163 0.139751 0.00309194 0.139449 0.00281837 0.139181 0.00254108 0.138947 0.00226022 0.138749 0.00197595 0.138586 0.00168845 0.138459 0.00139789 0.138368 0.00110444 0.138313 0.000808287 0.138295 0.000509609 0.138314 0.000208609 0.138369 -9.45358e-05 0.138463 -0.000399746 0.138593 -0.000706655 0.138762 -0.00101512 0.138968 -0.00132494 0.139213 -0.00163592 -0.00194784 0.139495 0.137852 0.00667773 0.137229 0.00643651 0.136632 0.00618693 0.136062 0.00593136 0.135521 0.00567002 0.135007 0.00540316 0.134523 0.00513091 0.134068 0.00485341 0.133643 0.00457081 0.133249 0.00428327 0.132885 0.00399092 0.132553 0.00369395 0.132252 0.00339251 0.131984 0.00308678 0.131748 0.00277691 0.131545 0.00246311 0.131376 0.00214554 0.13124 0.00182439 0.131138 0.00149986 0.13107 0.00117213 0.131037 0.000841409 0.131039 0.000507898 0.131075 0.000171841 0.131147 -0.000166668 0.131255 -0.000507378 0.131398 -0.00084999 0.131578 -0.00119432 0.131793 -0.00154015 0.132044 -0.00188725 -0.0022354 0.132332 0.130198 0.00727365 0.129627 0.00700797 0.12908 0.00673312 0.12856 0.00645167 0.128066 0.0061639 0.127599 0.00587009 0.12716 0.0055704 0.126748 0.00526498 0.126365 0.00495399 0.126011 0.00463759 0.125686 0.00431596 0.12539 0.00398927 0.125125 0.0036577 0.124891 0.00332144 0.124687 0.00298068 0.124514 0.00263561 0.124373 0.00228643 0.124264 0.00193334 0.124188 0.00157655 0.124144 0.00121627 0.124132 0.000852727 0.124154 0.000486141 0.124209 0.000116824 0.124298 -0.000255319 0.12442 -0.000629767 0.124576 -0.0010063 0.124767 -0.00138472 0.124991 -0.00176478 0.12525 -0.00214623 -0.00252882 0.125544 0.122895 0.00781624 0.122375 0.00752747 0.121879 0.00722881 0.121408 0.00692295 0.120962 0.00661021 0.120541 0.00629094 0.120146 0.00596533 0.119778 0.00563352 0.119436 0.00529568 0.119121 0.00495199 0.118835 0.00460265 0.118576 0.00424784 0.118346 0.00388776 0.118145 0.0035226 0.117973 0.00315257 0.117831 0.00277788 0.117718 0.00239875 0.117636 0.00201539 0.117585 0.00162803 0.117564 0.00123689 0.117575 0.00084222 0.117617 0.00044426 0.11769 4.35966e-05 0.117795 -0.000360674 0.117933 -0.00076714 0.118102 -0.00117588 0.118304 -0.00158667 0.118539 -0.00199923 0.118806 -0.00241332 -0.00282864 0.119106 0.115923 0.00830569 0.115455 0.00799525 0.115009 0.00767426 0.114587 0.00734549 0.114188 0.00700928 0.113813 0.00666606 0.113462 0.00631604 0.113136 0.00595937 0.112836 0.00559623 0.112561 0.00522683 0.112312 0.00485135 0.11209 0.00447001 0.111895 0.00408301 0.111727 0.00369056 0.111586 0.00329289 0.111474 0.00289022 0.11139 0.00248277 0.111335 0.00207079 0.111308 0.0016545 0.111311 0.00123417 0.111343 0.000810028 0.111405 0.000382372 0.111497 -4.81992e-05 0.111619 -0.000482721 0.111771 -0.000919544 0.111954 -0.00135883 0.112168 -0.00180033 0.112412 -0.00224374 0.112688 -0.0026888 -0.00313521 0.112994 0.109266 0.00874233 0.10885 0.00841165 0.108454 0.00806986 0.10808 0.00771969 0.107727 0.00736151 0.107398 0.00699586 0.107091 0.00662297 0.106807 0.00624299 0.106547 0.00585612 0.106312 0.00546255 0.1061 0.00506251 0.105914 0.00465622 0.105753 0.00424389 0.105618 0.00382575 0.105509 0.00340203 0.105426 0.00297298 0.10537 0.00253883 0.105341 0.00209984 0.105339 0.00165626 0.105365 0.00120835 0.105419 0.000756382 0.1055 0.000300688 0.105611 -0.000158552 0.105749 -0.000621356 0.105917 -0.00108693 0.106113 -0.00155515 0.106339 -0.00202573 0.106593 -0.00249839 0.106877 -0.00297282 -0.00344871 0.107191 0.10291 0.00912667 0.102545 0.00877718 0.102199 0.00841613 0.101872 0.00804609 0.101566 0.00766748 0.101281 0.00728092 0.101017 0.00688669 0.100775 0.00648494 0.100556 0.00607587 0.100359 0.0056597 0.100184 0.00523667 0.100034 0.00480698 0.0999066 0.00437089 0.0998037 0.00392864 0.0997253 0.00348046 0.0996717 0.00302661 0.0996432 0.00256735 0.0996401 0.00210294 0.0996627 0.00163364 0.0997113 0.00115975 0.0997861 0.000681549 0.0998873 0.000199475 0.100016 -0.00028675 0.100171 -0.000776434 0.100353 -0.00126916 0.100562 -0.00176472 0.100799 -0.00226282 0.101064 -0.00276313 0.101357 -0.00326535 -0.00376914 0.101677 0.0968439 0.00945938 0.0965285 0.0090925 0.0962309 0.00871375 0.0959516 0.00832539 0.0956913 0.00792784 0.0954503 0.00752191 0.0952291 0.00710787 0.0950281 0.0066859 0.0948478 0.00625617 0.0946886 0.00581894 0.0945508 0.00537445 0.0944349 0.00492293 0.0943411 0.00446464 0.0942699 0.00399982 0.0942217 0.00352873 0.0941966 0.00305164 0.0941952 0.00256883 0.0942175 0.00208056 0.0942641 0.00158711 0.094335 0.00108879 0.0944307 0.000585912 0.0945508 7.93475e-05 0.0946967 -0.000432606 0.0948679 -0.000947635 0.0950646 -0.00146594 0.0952872 -0.00198728 0.0955357 -0.00251131 0.0958103 -0.00303772 0.0961111 -0.00356615 -0.00409626 0.0964382 0.0910558 0.00974134 0.0907898 0.00935846 0.09054 0.00896356 0.090307 0.00855841 0.0900914 0.00814345 0.0898936 0.00771964 0.0897142 0.00728732 0.0895534 0.00684663 0.0894118 0.00639778 0.0892898 0.00594101 0.0891876 0.00547659 0.0891058 0.00500477 0.0890446 0.0045258 0.0890045 0.00403995 0.0889857 0.0035475 0.0889887 0.00304871 0.0890136 0.00254388 0.0890609 0.00203329 0.0891307 0.00151724 0.0892235 0.000996041 0.0893393 0.000470057 0.0894783 -5.96458e-05 0.0896414 -0.000595617 0.0898282 -0.00113446 0.090039 -0.00167681 0.0902741 -0.00222236 0.0905336 -0.00277077 0.0908175 -0.00332168 0.0911261 -0.00387473 -0.00442954 0.0914594 0.0855363 0.00997364 0.0853187 0.0095761 0.0851157 0.00916658 0.0849279 0.00874615 0.0847561 0.00831525 0.0846007 0.00787506 0.0844621 0.00742595 0.0843407 0.00696803 0.0842369 0.00650155 0.0841512 0.00602675 0.0840839 0.0055439 0.0840353 0.00505328 0.084006 0.00455515 0.0839962 0.00404978 0.0840062 0.00353748 0.0840364 0.00301851 0.0840871 0.00249319 0.0841586 0.00196182 0.0842511 0.00142471 0.0843649 0.000882202 0.0845002 0.000334771 0.0846582 -0.000217638 0.0848377 -0.000775103 0.0850395 -0.00133626 0.0852638 -0.0019011 0.0855107 -0.00246929 0.0857804 -0.00304048 0.086073 -0.00361426 0.0863885 -0.00419025 -0.00476802 0.086727 0.0802766 0.0101576 0.080106 0.00974666 0.0799486 0.00932401 0.079805 0.00888976 0.0796759 0.00844437 0.0795617 0.00798924 0.0794629 0.00752478 0.0793798 0.00705111 0.0793129 0.00656845 0.0792626 0.00607708 0.0792292 0.00557727 0.0792132 0.00506932 0.0792148 0.0045535 0.0792345 0.00403009 0.0792726 0.00349942 0.0793293 0.00296176 0.0794051 0.00241744 0.0795001 0.00186677 0.0796147 0.0013101 0.0797491 0.000747815 0.0799032 0.000180737 0.0800783 -0.000392782 0.0802738 -0.000970594 0.0804899 -0.00155241 0.0807269 -0.00213808 0.0809849 -0.00272724 0.0812639 -0.00331947 0.081564 -0.00391435 0.0818851 -0.00451143 -0.00511023 0.0822274 0.0752679 0.0102947 0.075143 0.00987155 0.0750298 0.00943721 0.074929 0.00899054 0.0748414 0.00853204 0.0747672 0.00806336 0.0747071 0.00758496 0.0746612 0.00709693 0.0746302 0.00659951 0.0746142 0.00609299 0.0746139 0.00557766 0.0746294 0.0050538 0.0746611 0.00452173 0.0747095 0.00398173 0.0747748 0.00343412 0.0748573 0.00287921 0.0749574 0.00231733 0.0750754 0.00174881 0.0752115 0.00117401 0.075366 0.000593282 0.0755359 1.084e-05 0.0757279 -0.000584774 0.0759385 -0.00118117 0.0761681 -0.00178196 0.0764167 -0.00238673 0.0766845 -0.00299503 0.0769714 -0.0036064 0.0772775 -0.00422038 0.0776024 -0.00483643 -0.00545401 0.0779462 0.0705017 0.0103867 0.0704209 0.00995237 0.0703504 0.00950768 0.070291 0.00904994 0.0702434 0.00857963 0.070208 0.00809873 0.0701852 0.00760772 0.0701755 0.0071067 0.0701791 0.00659588 0.0701965 0.00607557 0.0702281 0.0055461 0.0702741 0.00500775 0.070335 0.00446084 0.0704111 0.00390569 0.0705026 0.00334263 0.0706098 0.00277199 0.070733 0.00219412 0.0708724 0.00160938 0.0710283 0.00101818 0.0712004 0.000421132 0.0713928 -0.000181528 0.0715993 -0.000791333 0.0718232 -0.00140508 0.0720644 -0.00202315 0.0723228 -0.00264516 0.0725985 -0.00327064 0.0728911 -0.00389907 0.0732006 -0.00452987 0.0735267 -0.00516245 -0.00579615 0.0738688 0.0659694 0.0104355 0.0659309 0.00999087 0.0659015 0.0095371 0.0658819 0.00906953 0.0658729 0.00858863 0.0658749 0.00809673 0.0658883 0.00759439 0.0659133 0.00708163 0.0659505 0.00655871 0.0660001 0.00602593 0.0660626 0.00548363 0.0661382 0.00493213 0.0662273 0.00437175 0.0663302 0.00380283 0.0664471 0.00322571 0.0665783 0.00264076 0.0667241 0.00204835 0.0668846 0.00144889 0.0670599 0.000842848 0.0672497 0.000231321 0.0674562 -0.000387969 0.0676773 -0.00101245 0.0679136 -0.00164136 0.068165 -0.00227459 0.0684315 -0.00291165 0.0687128 -0.00355195 0.0690086 -0.00419489 0.0693185 -0.00483978 0.069642 -0.00548592 -0.00613251 0.0699784 0.0616626 0.010443 0.0616646 0.00998894 0.0616744 0.00952725 0.061693 0.00905097 0.061721 0.00856061 0.0617589 0.00805887 0.0618069 0.00754635 0.0618655 0.00702306 0.0619349 0.00648924 0.0620156 0.00594523 0.0621079 0.00539138 0.062212 0.00482802 0.0623283 0.0042555 0.0624569 0.00367417 0.0625982 0.00308441 0.0627524 0.00248659 0.0629196 0.00188112 0.0631001 0.00126843 0.0632939 0.000649007 0.0634979 2.73909e-05 0.0637188 -0.000608882 0.0639524 -0.00124609 0.064199 -0.00188797 0.0644584 -0.00253397 0.0647302 -0.00318348 0.0650141 -0.00383581 0.0653094 -0.00449024 0.0656156 -0.00514595 0.0659318 -0.0058021 -0.00645772 0.066257 0.0575728 0.0104115 0.0576131 0.00994859 0.0576604 0.00948002 0.0577153 0.00899605 0.0577787 0.00849721 0.0578509 0.00798667 0.0579322 0.00746506 0.0580229 0.00693234 0.0581234 0.00638876 0.0582339 0.00583469 0.0583548 0.00527051 0.0584862 0.00469657 0.0586285 0.00411325 0.0587817 0.00352092 0.0589461 0.00292002 0.0591217 0.00231096 0.0593086 0.00169422 0.0595067 0.00107032 0.0597156 0.000440119 0.0599393 -0.000196231 0.0601713 -0.000840956 0.0604145 -0.00148922 0.0606682 -0.00214168 0.060932 -0.0027978 0.0612054 -0.00345684 0.0614876 -0.00411801 0.0617777 -0.00478042 0.0620749 -0.00544314 0.0623779 -0.00610513 -0.00676528 0.0626855 0.0536915 0.0103431 0.0537682 0.00987187 0.0538509 0.00939737 0.0539403 0.0089066 0.0540374 0.00840018 0.0541423 0.00788177 0.0542553 0.00735203 0.0543767 0.00681089 0.0545069 0.0062586 0.054646 0.00569559 0.0547943 0.00512225 0.0549519 0.00453896 0.055119 0.00394615 0.0552957 0.00334424 0.055482 0.00273369 0.0556779 0.002115 0.0558835 0.00148871 0.0560982 0.000855526 0.0563212 0.00021719 0.0565556 -0.000430637 0.0567977 -0.0010831 0.0570479 -0.00173939 0.0573056 -0.0023994 0.0575702 -0.00306238 0.0578408 -0.00372744 0.0581164 -0.00439364 0.058396 -0.00505994 0.058678 -0.00572523 0.0589612 -0.00638831 -0.00704789 0.0592439 0.0500109 0.0102401 0.0501219 0.00976094 0.0502379 0.00928134 0.05036 0.00878453 0.0504888 0.00827129 0.0506248 0.00774584 0.050768 0.00720885 0.0509186 0.00666021 0.051077 0.00610021 0.0512433 0.00552931 0.0514176 0.00494797 0.0515999 0.0043566 0.0517904 0.00375568 0.051989 0.00314567 0.0521956 0.0025271 0.0524101 0.00190051 0.0526323 0.00126648 0.0528622 0.000625625 0.0530933 -1.39095e-05 0.0533372 -0.000674536 0.0535858 -0.00133174 0.0538393 -0.00199288 0.0540969 -0.00265696 0.0543575 -0.00332303 0.0546201 -0.00399007 0.0548835 -0.00465698 0.0551461 -0.00532255 0.0554064 -0.0059855 0.0556625 -0.00664445 -0.00729793 0.0559125 0.0465239 0.0101047 0.0466668 0.00961805 0.046814 0.00913409 0.0469667 0.00863186 0.0471255 0.00811244 0.0472907 0.00758067 0.0474624 0.00703721 0.0476407 0.00648191 0.0478257 0.00591514 0.0480176 0.00533743 0.0482163 0.00474929 0.0484217 0.00415121 0.0486336 0.00354372 0.0488519 0.0029274 0.0490762 0.00230284 0.049306 0.00167071 0.0495407 0.00103177 0.0497788 0.000387534 0.0500279 -0.000263044 0.0502746 -0.000921266 0.0505244 -0.00158147 0.0507757 -0.00224421 0.0510274 -0.0029087 0.0512783 -0.00357388 0.0515268 -0.0042386 0.0517714 -0.00490161 0.0520104 -0.00556155 0.0522419 -0.00621697 0.0524638 -0.00686634 -0.00750803 0.0526739 0.0432243 0.00993938 0.0433968 0.00944554 0.0435729 0.00895793 0.043754 0.0084508 0.0439407 0.00792571 0.0441332 0.00738822 0.0443314 0.00683897 0.0445355 0.0062778 0.0447455 0.0057052 0.0449611 0.00512179 0.0451823 0.00452814 0.0454086 0.00392483 0.0456399 0.00331248 0.0458756 0.00269172 0.0461151 0.00206326 0.046358 0.00142785 0.0466034 0.000786402 0.0468487 0.000142224 0.0470986 -0.000512967 0.0473471 -0.00116972 0.0475941 -0.00182853 0.0478387 -0.00248882 0.0480795 -0.00314948 0.048315 -0.00380935 0.0485435 -0.0044671 0.0487632 -0.00512135 0.0489722 -0.00577058 0.0491685 -0.00641322 0.0493497 -0.00704758 -0.00767189 0.0495136 0.0401058 0.00974623 0.0403057 0.00924562 0.0405083 0.00875542 0.0407153 0.0082437 0.0409278 0.00771329 0.0411454 0.00717058 0.0413682 0.00661613 0.0415961 0.00604989 0.0418288 0.00547249 0.042066 0.00488466 0.0423071 0.00428704 0.0425516 0.00368028 0.042799 0.00306507 0.0430486 0.00244214 0.0432996 0.00181229 0.043551 0.0011764 0.0438017 0.000535732 0.0440508 -0.000106901 0.044299 -0.000761129 0.0445429 -0.00141362 0.0447816 -0.00206727 0.0450138 -0.002721 0.0452379 -0.00337357 0.0454522 -0.00402365 0.0456549 -0.0046698 0.0458441 -0.00531049 0.0460176 -0.0059441 0.0461733 -0.00656891 0.0463088 -0.00718313 -0.00778489 0.0464218 0.0371633 0.00952555 0.0373873 0.00902153 0.0376134 0.00852939 0.0378446 0.00801249 0.038081 0.0074769 0.0383221 0.0069295 0.0385676 0.00637059 0.0388172 0.00580034 0.0390701 0.00521956 0.0393258 0.004629 0.0395835 0.00402934 0.0398424 0.0034213 0.0401019 0.00280561 0.040361 0.00218309 0.0406186 0.00155462 0.0408737 0.000921349 0.0411233 0.000286047 0.0413728 -0.000356393 0.0416139 -0.00100214 0.0418475 -0.00164727 0.0420722 -0.00229201 0.0422865 -0.00293523 0.0424885 -0.00357558 0.0426764 -0.00421162 0.0428485 -0.00484181 0.0430025 -0.00546449 0.0431363 -0.00607795 0.0432478 -0.00668038 0.0433345 -0.00726989 -0.00784456 0.0433942 0.034398 0.00926978 0.034639 0.00878061 0.0348858 0.00828252 0.03514 0.00775836 0.0353986 0.00721829 0.0356609 0.00666715 0.0359264 0.00610507 0.0361942 0.00553256 0.0364634 0.00495041 0.036733 0.00435932 0.0370024 0.00375999 0.0372705 0.00315316 0.0375365 0.00253962 0.0377994 0.00192022 0.0380582 0.00129586 0.038312 0.000667514 0.0385563 4.17296e-05 0.0387971 -0.000597171 0.0390266 -0.00123163 0.039245 -0.00186568 0.0394509 -0.00249789 0.0396426 -0.0031269 0.0398183 -0.00375128 0.0399761 -0.00436946 0.0401141 -0.0049798 0.0402302 -0.00558056 0.0403221 -0.00616994 0.0403878 -0.00674607 0.0404249 -0.007307 -0.00785078 0.0404312 0.0317393 0.0320053 0.0322836 0.0325658 0.0328488 0.0331327 0.0334169 0.0337005 0.0339826 0.0342626 0.0345394 0.0348122 0.0350801 0.0353419 0.0355966 0.0358424 0.0360831 0.0363087 0.036522 0.0367214 0.0369051 0.0370715 0.0372186 0.0373446 0.0374474 0.037525 0.0375752 0.0375959 0.037585 0.0375402 0.192774 -0.000337316 0.193164 -0.000389445 0.193605 -0.000441662 0.194099 -0.000493928 0.194646 -0.000546205 0.195244 -0.000598455 0.195895 -0.000650635 0.196597 -0.000702711 0.197352 -0.000754638 0.198158 -0.000806379 0.199016 -0.000857894 0.199925 -0.000909141 0.200885 -0.000960082 0.201896 -0.00101067 0.202957 -0.00106088 0.204068 -0.00111066 0.205228 -0.00115997 0.206436 -0.00120877 0.207693 -0.00125702 0.208998 -0.00130468 0.21035 -0.00135172 0.211748 -0.00139808 0.213192 -0.00144373 0.21468 -0.00148862 0.216213 -0.00153269 0.217789 -0.0015759 0.219407 -0.00161816 0.221066 -0.00165938 0.222766 -0.00169938 -0.00173778 0.224504 0.182519 -0.000665033 0.182896 -0.000766458 0.183322 -0.000868032 0.183798 -0.000969683 0.184323 -0.00107134 0.184897 -0.00117291 0.185521 -0.00127435 0.186194 -0.00137555 0.186916 -0.00147645 0.187686 -0.00157698 0.188505 -0.00167705 0.189373 -0.00177658 0.190288 -0.00187551 0.191251 -0.00197375 0.192262 -0.00207122 0.193319 -0.00216785 0.194422 -0.00226356 0.195572 -0.00235827 0.196767 -0.00245191 0.198007 -0.0025444 0.19929 -0.00263566 0.200618 -0.0027256 0.201988 -0.00281416 0.203401 -0.00290124 0.204855 -0.00298673 0.20635 -0.00307053 0.207884 -0.00315249 0.209457 -0.00323238 0.211068 -0.00330991 -0.00338428 0.212714 0.172907 -0.000986786 0.173275 -0.00113497 0.173691 -0.00128335 0.174153 -0.00143183 0.174662 -0.00158027 0.175217 -0.00172859 0.17582 -0.00187667 0.176469 -0.0020244 0.177164 -0.00217168 0.177905 -0.00231838 0.178693 -0.00246439 0.179526 -0.00260961 0.180404 -0.00275393 0.181328 -0.00289723 0.182296 -0.00303939 0.183308 -0.00318031 0.184365 -0.00331988 0.185464 -0.00345797 0.186607 -0.00359449 0.187792 -0.00372932 0.189018 -0.00386235 0.190286 -0.00399345 0.191595 -0.00412252 0.192943 -0.00424941 0.19433 -0.00437399 0.195756 -0.00449609 0.197219 -0.00461547 0.198718 -0.00473183 0.200253 -0.00484469 -0.00495286 0.201821 0.163884 -0.00130551 0.164247 -0.00149811 0.164655 -0.00169093 0.165107 -0.00188384 0.165603 -0.0020767 0.166144 -0.00226937 0.166729 -0.00246171 0.167358 -0.00265358 0.168031 -0.00284483 0.168748 -0.00303531 0.169509 -0.0032249 0.170313 -0.00341344 0.171159 -0.00360078 0.172049 -0.00378679 0.172981 -0.00397131 0.173955 -0.00415421 0.17497 -0.00433534 0.176027 -0.00451455 0.177124 -0.00469171 0.178261 -0.00486666 0.179438 -0.00503927 0.180654 -0.00520937 0.181909 -0.00537682 0.183201 -0.00554145 0.18453 -0.00570307 0.185895 -0.00586144 0.187296 -0.00601627 0.188731 -0.00616715 0.1902 -0.00631345 -0.00645353 0.191701 0.155392 -0.00162336 0.155752 -0.00185817 0.156154 -0.00209323 0.156598 -0.00232838 0.157085 -0.00256345 0.157614 -0.00279827 0.158185 -0.00303267 0.158798 -0.00326647 0.159453 -0.0034995 0.160149 -0.0037316 0.160887 -0.00396257 0.161665 -0.00419226 0.162485 -0.00442049 0.163345 -0.00464708 0.164246 -0.00487185 0.165186 -0.00509463 0.166166 -0.00531525 0.167185 -0.00553354 0.168243 -0.00574931 0.169339 -0.00596239 0.170472 -0.00617261 0.171642 -0.00637979 0.172849 -0.00658373 0.174092 -0.00678422 0.17537 -0.00698104 0.176682 -0.0071739 0.178029 -0.00736243 0.179408 -0.00754609 0.180818 -0.00772411 -0.00789438 0.182259 0.147383 -0.00194204 0.147742 -0.00221701 0.148141 -0.00249225 0.14858 -0.00276758 0.149059 -0.00304279 0.149579 -0.0033177 0.150138 -0.00359209 0.150737 -0.00386578 0.151377 -0.00413857 0.152055 -0.00441024 0.152773 -0.00468059 0.15353 -0.00494943 0.154326 -0.00521656 0.155161 -0.00548176 0.156034 -0.00574483 0.156945 -0.00600557 0.157894 -0.00626378 0.158879 -0.00651925 0.159902 -0.00677179 0.16096 -0.00702118 0.162055 -0.00726721 0.163185 -0.00750969 0.16435 -0.00774837 0.165548 -0.00798303 0.166781 -0.00821337 0.168046 -0.00843907 0.169343 -0.00865966 0.170672 -0.00887452 0.17203 -0.00908267 -0.00928154 0.173417 0.139816 -0.00226292 0.140175 -0.00257609 0.140572 -0.00288957 0.141008 -0.00320313 0.141482 -0.00351654 0.141994 -0.0038296 0.142544 -0.00414207 0.143132 -0.00445373 0.143757 -0.00476435 0.144421 -0.0050737 0.145122 -0.00538155 0.14586 -0.00568767 0.146635 -0.00599184 0.147447 -0.00629382 0.148296 -0.00659338 0.149181 -0.00689029 0.150101 -0.00718432 0.151057 -0.00747523 0.152048 -0.0077628 0.153074 -0.00804678 0.154133 -0.00832696 0.155227 -0.00860307 0.156353 -0.00887486 0.157512 -0.00914205 0.158703 -0.00940433 0.159925 -0.00966128 0.161178 -0.00991239 0.162461 -0.0101569 0.163772 -0.0103936 -0.0106196 0.16511 0.132656 -0.00258706 0.133016 -0.00293659 0.133413 -0.00328644 0.133846 -0.00363638 0.134316 -0.00398616 0.134822 -0.00433553 0.135364 -0.00468425 0.135943 -0.00503207 0.136557 -0.00537872 0.137207 -0.00572396 0.137893 -0.00606754 0.138615 -0.00640919 0.139372 -0.00674866 0.140163 -0.00708569 0.14099 -0.00742003 0.141851 -0.0077514 0.142746 -0.00807957 0.143675 -0.00840426 0.144638 -0.0087252 0.145633 -0.00904215 0.146661 -0.00935483 0.147721 -0.00966295 0.148812 -0.00996623 0.149935 -0.0102644 0.151087 -0.0105569 0.15227 -0.0108435 0.153481 -0.0111235 0.15472 -0.0113961 0.155986 -0.0116598 -0.0119111 0.157278 0.125872 -0.00291528 0.126235 -0.00329938 0.126632 -0.00368384 0.127064 -0.00406841 0.127531 -0.0044528 0.128032 -0.00483675 0.128568 -0.00521998 0.129138 -0.00560223 0.129743 -0.00598321 0.130381 -0.00636264 0.131054 -0.00674025 0.13176 -0.00711575 0.132501 -0.00748886 0.133274 -0.00785929 0.134081 -0.00822675 0.134921 -0.00859096 0.135793 -0.00895162 0.136697 -0.00930845 0.137633 -0.00966114 0.1386 -0.0100094 0.139598 -0.0103529 0.140626 -0.0106914 0.141685 -0.0110244 0.142772 -0.0113517 0.143888 -0.0116728 0.145032 -0.0119872 0.146202 -0.0122943 0.147399 -0.0125929 0.148621 -0.0128817 -0.0131566 0.149866 0.119438 -0.00324817 0.119804 -0.00366515 0.120203 -0.00408254 0.120635 -0.00450003 0.121099 -0.00491736 0.121597 -0.00533421 0.122127 -0.0057503 0.12269 -0.00616533 0.123286 -0.00657899 0.123914 -0.00699098 0.124575 -0.00740099 0.125268 -0.00780871 0.125993 -0.00821382 0.126749 -0.00861602 0.127538 -0.00901497 0.128357 -0.00941035 0.129207 -0.00980184 0.130088 -0.0101891 0.130999 -0.0105718 0.131939 -0.0109496 0.132908 -0.0113221 0.133906 -0.0116889 0.134931 -0.0120498 0.135983 -0.0124042 0.137062 -0.0127516 0.138167 -0.0130916 0.139296 -0.0134232 0.140448 -0.0137455 0.141623 -0.0140568 -0.0143529 0.14282 0.113332 -0.00358616 0.113702 -0.00403438 0.114102 -0.00448305 0.114534 -0.00493185 0.114997 -0.00538048 0.115491 -0.00582862 0.116017 -0.00627595 0.116574 -0.00672215 0.117162 -0.00716688 0.117781 -0.0076098 0.11843 -0.00805059 0.11911 -0.00848889 0.119821 -0.00892436 0.120562 -0.00935663 0.121332 -0.00978535 0.122132 -0.0102101 0.122961 -0.0106306 0.123818 -0.0110464 0.124703 -0.0114571 0.125616 -0.0118623 0.126555 -0.0122616 0.127521 -0.0126545 0.128512 -0.0130406 0.129527 -0.0134194 0.130566 -0.0137903 0.131627 -0.0141527 0.132709 -0.0145057 0.133812 -0.0148482 0.134933 -0.0151785 -0.0154926 0.136073 0.107534 -0.00392947 0.107907 -0.00440733 0.10831 -0.00488568 0.108742 -0.0053642 0.109204 -0.00584254 0.109696 -0.00632038 0.110217 -0.00679734 0.110768 -0.00727308 0.111348 -0.00774724 0.111958 -0.00821945 0.112597 -0.00868932 0.113264 -0.00915646 0.113961 -0.00962048 0.114685 -0.010081 0.115437 -0.0105375 0.116217 -0.0109897 0.117023 -0.011437 0.117855 -0.011879 0.118714 -0.0123152 0.119596 -0.0127451 0.120503 -0.0131683 0.121433 -0.0135841 0.122384 -0.0139921 0.123356 -0.0143915 0.124348 -0.0147818 0.125357 -0.0151623 0.126384 -0.0155321 0.127426 -0.01589 0.128482 -0.0162344 -0.016562 0.129551 0.102026 -0.00427811 0.102403 -0.00478403 0.102807 -0.00529048 0.10324 -0.00579711 0.103701 -0.00630356 0.10419 -0.00680944 0.104707 -0.00731438 0.105252 -0.00781797 0.105825 -0.00831982 0.106425 -0.00881949 0.107052 -0.00931656 0.107706 -0.00981057 0.108387 -0.0103011 0.109093 -0.0107876 0.109825 -0.0112695 0.110582 -0.0117465 0.111363 -0.0122178 0.112167 -0.0126831 0.112994 -0.0131415 0.113841 -0.0135927 0.114709 -0.0140358 0.115595 -0.0144702 0.116498 -0.0148954 0.117417 -0.0153104 0.11835 -0.0157147 0.119295 -0.0161074 0.12025 -0.0164878 0.121215 -0.0168544 0.122187 -0.0172062 -0.0175414 0.123166 0.0967919 -0.00463184 0.0971721 -0.00516421 0.0975788 -0.00569713 0.0980119 -0.00623022 0.0984714 -0.00676306 0.0989572 -0.00729525 0.0994691 -0.00782634 0.100007 -0.00835589 0.100571 -0.00888343 0.10116 -0.00940847 0.101774 -0.00993049 0.102412 -0.010449 0.103074 -0.0109633 0.10376 -0.011473 0.104468 -0.0119774 0.105197 -0.0124758 0.105947 -0.0129676 0.106716 -0.013452 0.107502 -0.0139284 0.108306 -0.0143959 0.109124 -0.0148537 0.109954 -0.0153011 0.110796 -0.0157371 0.111647 -0.0161611 0.112504 -0.016572 0.113366 -0.0169693 0.11423 -0.0173519 0.115095 -0.0177189 0.115958 -0.0180694 -0.0184045 0.116821 0.0918176 -0.00499006 0.0922006 -0.00554717 0.0926083 -0.00610482 0.0930406 -0.00666255 0.0934974 -0.0072199 0.0939786 -0.0077764 0.0944838 -0.00833156 0.0950127 -0.00888482 0.095565 -0.00943566 0.09614 -0.00998348 0.0967371 -0.0105277 0.0973557 -0.0110675 0.0979948 -0.0116025 0.0986535 -0.0121317 0.0993305 -0.0126544 0.100025 -0.0131699 0.100734 -0.0136773 0.101458 -0.0141756 0.102194 -0.0146641 0.102939 -0.0151417 0.103693 -0.0156074 0.104452 -0.0160603 0.105215 -0.0164993 0.105977 -0.0169236 0.106737 -0.0173322 0.107492 -0.0177244 0.10824 -0.0180995 0.108978 -0.0184565 0.109704 -0.0187954 -0.0191212 0.11042 0.0870886 -0.00535168 0.0874731 -0.00593167 0.0878804 -0.00651207 0.0883102 -0.00709236 0.0887623 -0.00767202 0.0892364 -0.00825047 0.0897319 -0.00882713 0.0902485 -0.00940135 0.0907853 -0.00997247 0.0913416 -0.0105398 0.0919164 -0.0111025 0.0925088 -0.0116599 0.0931173 -0.012211 0.0937406 -0.012755 0.0943771 -0.0132909 0.095025 -0.0138178 0.0956823 -0.0143345 0.0963467 -0.0148401 0.097016 -0.0153333 0.0976874 -0.0158131 0.0983583 -0.0162783 0.0990257 -0.0167277 0.0996866 -0.0171602 0.100338 -0.0175748 0.100976 -0.0179705 0.101598 -0.0183466 0.102202 -0.0187029 0.102784 -0.0190385 0.103343 -0.0193544 -0.0196608 0.103882 0.0825907 -0.00571498 0.0829747 -0.00631569 0.0833791 -0.00691653 0.0838037 -0.0075169 0.0842478 -0.00811616 0.084711 -0.00871363 0.0851924 -0.00930861 0.0856914 -0.0099003 0.0862068 -0.0104879 0.0867375 -0.0110705 0.0872822 -0.0116472 0.0878393 -0.012217 0.0884071 -0.0127788 0.0889838 -0.0133316 0.089567 -0.0138742 0.0901546 -0.0144054 0.0907439 -0.0149239 0.0913323 -0.0154284 0.0919167 -0.0159177 0.092494 -0.0163904 0.093061 -0.0168453 0.0936142 -0.0172809 0.0941502 -0.0176962 0.0946654 -0.01809 0.0951563 -0.0184614 0.0956197 -0.01881 0.0960525 -0.0191357 0.0964523 -0.0194383 0.0968173 -0.0197194 -0.0199962 0.0971527 0.0783087 -0.00607742 0.0786892 -0.00669625 0.0790874 -0.00731472 0.0795026 -0.0079321 0.0799341 -0.00854763 0.0803809 -0.00916048 0.0808421 -0.00976977 0.0813164 -0.0103746 0.0818023 -0.0109738 0.0822983 -0.0115665 0.0828026 -0.0121515 0.0833131 -0.0127275 0.0838276 -0.0132933 0.0843436 -0.0138477 0.0848585 -0.0143891 0.0853694 -0.0149163 0.0858732 -0.0154277 0.0863666 -0.0159219 0.0868463 -0.0163974 0.0873088 -0.0168529 0.0877503 -0.0172868 0.0881672 -0.0176978 0.0885558 -0.0180848 0.0889125 -0.0184466 0.0892336 -0.0187825 0.0895159 -0.0190923 0.0897568 -0.0193766 0.0899537 -0.0196352 0.090105 -0.0198707 -0.0201082 0.090217 0.0742267 -0.00643534 0.0745996 -0.00706914 0.0749867 -0.00770179 0.075387 -0.00833243 0.0757995 -0.00896011 0.0762229 -0.00958385 0.0766556 -0.0102025 0.0770962 -0.0108151 0.0775426 -0.0114202 0.0779927 -0.0120167 0.0784444 -0.0126031 0.0788949 -0.013178 0.0793417 -0.0137401 0.0797817 -0.0142876 0.0802117 -0.0148192 0.0806286 -0.0153331 0.0810287 -0.0158278 0.0814086 -0.0163018 0.0817645 -0.0167534 0.0820927 -0.0171811 0.0823895 -0.0175836 0.0826511 -0.0179594 0.0828739 -0.0183076 0.0830545 -0.0186271 0.0831896 -0.0189175 0.0832762 -0.019179 0.083312 -0.0194124 0.0832949 -0.0196181 0.0832232 -0.019799 -0.0199889 0.0831038 0.070327 -0.00678395 0.0706867 -0.00742887 0.0710565 -0.00807153 0.0714349 -0.00871087 0.0718205 -0.00934575 0.0722117 -0.00997498 0.0726064 -0.0105973 0.0730025 -0.0112112 0.0733978 -0.0118155 0.0737896 -0.0124085 0.0741752 -0.0129887 0.0745516 -0.0135544 0.0749157 -0.0141041 0.075264 -0.014636 0.0755931 -0.0151483 0.0758995 -0.0156395 0.0761795 -0.0161078 0.0764293 -0.0165516 0.0766453 -0.0169694 0.0768239 -0.0173597 0.0769615 -0.0177211 0.0770546 -0.0180526 0.0771001 -0.0183531 0.077095 -0.018622 0.0770366 -0.0188591 0.0769224 -0.0190649 0.0767508 -0.0192408 0.0765198 -0.019387 0.0762276 -0.0195068 -0.0196425 0.0758812 0.0665902 -0.00711719 0.06693 -0.00776868 0.0672749 -0.0084164 0.0676231 -0.00905907 0.0679727 -0.00969538 0.0683217 -0.0103239 0.0686676 -0.0109432 0.0690079 -0.0115515 0.0693398 -0.0121474 0.0696604 -0.0127291 0.0699666 -0.0132949 0.070255 -0.0138429 0.0705223 -0.0143713 0.0707648 -0.0148785 0.0709791 -0.0153626 0.0711614 -0.0158218 0.0713082 -0.0162546 0.0714159 -0.0166593 0.0714812 -0.0170346 0.0715007 -0.0173792 0.0714716 -0.017692 0.0713909 -0.0179719 0.0712561 -0.0182184 0.0710651 -0.018431 0.0708157 -0.0186097 0.0705065 -0.0187556 0.0701359 -0.0188703 0.0697026 -0.0189537 0.0692042 -0.0190085 -0.0190849 0.0686467 0.0629962 -0.00742789 0.0633082 -0.0080807 0.0636197 -0.00872784 0.0639284 -0.00936783 0.0642322 -0.00999916 0.0645285 -0.0106202 0.0648146 -0.0112292 0.0650875 -0.0118245 0.0653444 -0.0124043 0.0655818 -0.0129666 0.0657966 -0.0135096 0.0659851 -0.0140315 0.0661441 -0.0145303 0.0662699 -0.0150043 0.066359 -0.0154517 0.0664082 -0.0158709 0.066414 -0.0162604 0.0663736 -0.0166188 0.0662839 -0.016945 0.0661424 -0.0172378 0.065947 -0.0174965 0.0656956 -0.0177205 0.0653866 -0.0179094 0.0650187 -0.0180631 0.0645908 -0.0181818 0.0641019 -0.0182667 0.0635511 -0.0183195 0.0629368 -0.0183393 0.0622559 -0.0183276 -0.0183416 0.0615126 0.0595241 -0.00770818 0.0598 -0.00835651 0.0600691 -0.00899693 0.060329 -0.00962777 0.0605772 -0.0102473 0.0608108 -0.0108538 0.0610268 -0.0114453 0.0612223 -0.01202 0.0613939 -0.0125759 0.0615384 -0.0131111 0.0616525 -0.0136236 0.0617326 -0.0141116 0.0617756 -0.0145732 0.0617781 -0.0150068 0.061737 -0.0154107 0.0616495 -0.0157834 0.0615129 -0.0161238 0.0613247 -0.0164306 0.0610829 -0.0167032 0.0607859 -0.0169408 0.0604324 -0.017143 0.0600214 -0.0173095 0.0595524 -0.0174404 0.059025 -0.0175357 0.0584389 -0.0175957 0.0577937 -0.0176214 0.0570887 -0.0176145 0.0563219 -0.0175726 0.0554891 -0.0174948 -0.0174438 0.0545913 0.0561544 -0.00795006 0.0563857 -0.0085878 0.0566039 -0.00921513 0.0568063 -0.00983022 0.0569902 -0.0104312 0.0571526 -0.0110161 0.0572903 -0.0115831 0.0574004 -0.01213 0.0574795 -0.012655 0.0575246 -0.0131561 0.0575323 -0.0136313 0.0574996 -0.014079 0.0574236 -0.0144972 0.0573015 -0.0148847 0.0571307 -0.0152399 0.056909 -0.0155617 0.0566344 -0.0158492 0.0563055 -0.0161018 0.0559212 -0.0163189 0.0554808 -0.0165003 0.054984 -0.0166462 0.0544311 -0.0167566 0.0538224 -0.0168318 0.0531587 -0.016872 0.0524402 -0.0168773 0.0516671 -0.0168483 0.0508386 -0.016786 0.0499521 -0.016686 0.0490013 -0.016544 -0.0164262 0.0479836 0.0528699 -0.00814607 0.0530492 -0.00876712 0.0532092 -0.0093751 0.0533471 -0.00996807 0.0534599 -0.010544 0.0535448 -0.011101 0.0535987 -0.011637 0.0536186 -0.0121499 0.0536015 -0.0126379 0.0535445 -0.0130991 0.0534447 -0.0135316 0.0532996 -0.0139338 0.0531066 -0.0143043 0.0528637 -0.0146417 0.0525689 -0.0149452 0.052221 -0.0152137 0.0518187 -0.015447 0.0513616 -0.0156446 0.0508495 -0.0158068 0.0502829 -0.0159337 0.0496625 -0.0160258 0.0489895 -0.0160836 0.0482654 -0.0161077 0.0474916 -0.0160982 0.0466692 -0.0160549 0.0457987 -0.0159778 0.044879 -0.0158663 0.0439064 -0.0157134 0.0428725 -0.0155101 -0.0153236 0.04177 0.0496576 -0.00829012 0.0497792 -0.00888871 0.0498756 -0.00947152 0.0499441 -0.0100366 0.0499818 -0.0105818 0.049986 -0.0111052 0.0499538 -0.0116048 0.0498824 -0.0120786 0.0497692 -0.0125247 0.0496116 -0.0129415 0.0494074 -0.0133274 0.0491545 -0.0136809 0.0488511 -0.0140009 0.0484958 -0.0142864 0.0480876 -0.0145369 0.0476258 -0.0147519 0.0471103 -0.0149315 0.0465414 -0.0150758 0.0459201 -0.0151855 0.0452476 -0.0152612 0.0445256 -0.0153039 0.0437564 -0.0153144 0.0429421 -0.0152934 0.0420851 -0.0152411 0.041187 -0.0151569 0.0402487 -0.0150394 0.039269 -0.0148866 0.0382433 -0.0146877 0.03716 -0.0144268 -0.0141699 0.0360063 0.0465098 -0.00837809 0.0465701 -0.00894904 0.0466002 -0.00950159 0.0465974 -0.0100337 0.046559 -0.0105434 0.0464825 -0.0110287 0.0463654 -0.0114876 0.0462052 -0.0119184 0.0459998 -0.0123193 0.0457472 -0.0126889 0.0454456 -0.0130258 0.0450936 -0.0133289 0.0446901 -0.0135974 0.0442346 -0.0138309 0.0437266 -0.014029 0.0431665 -0.0141918 0.042555 -0.01432 0.0418933 -0.014414 0.0411829 -0.0144751 0.040426 -0.0145043 0.0396251 -0.014503 0.038783 -0.0144722 0.0379025 -0.0144129 0.0369866 -0.0143252 0.0360377 -0.014208 0.0350571 -0.0140589 0.0340444 -0.0138738 0.0329946 -0.013638 0.0318933 -0.0133256 -0.0129975 0.030721 0.0434243 -0.00840824 0.0434225 -0.00894718 0.0433862 -0.00946527 0.043313 -0.00996052 0.0432005 -0.010431 0.0430465 -0.0108747 0.042849 -0.01129 0.0426058 -0.0116752 0.0423154 -0.0120289 0.0419763 -0.0123498 0.0415875 -0.0126369 0.0411481 -0.0128895 0.0406578 -0.0131072 0.0401167 -0.0132898 0.0395254 -0.0134376 0.0388847 -0.0135512 0.0381962 -0.0136314 0.0374616 -0.0136795 0.0366833 -0.0136968 0.0358639 -0.0136849 0.0350063 -0.0136454 0.0341136 -0.0135795 0.0331891 -0.0134884 0.0322358 -0.013372 0.0312568 -0.0132289 0.030254 -0.0130561 0.0292284 -0.0128483 0.0281774 -0.012587 0.0270853 -0.0122335 -0.0118348 0.0259226 0.0404042 -0.00838124 0.0403417 -0.00888467 0.0402414 -0.00936501 0.0401012 -0.00982033 0.0399191 -0.0102488 0.0396931 -0.0106487 0.0394215 -0.0110185 0.0391031 -0.0113568 0.0387365 -0.0116623 0.0383209 -0.0119343 0.037856 -0.012172 0.0373416 -0.0123751 0.0367781 -0.0125437 0.0361663 -0.012678 0.0355073 -0.0127787 0.0348029 -0.0128468 0.0340551 -0.0128836 0.0332663 -0.0128907 0.0324391 -0.0128696 0.0315766 -0.0128224 0.0306817 -0.0127505 0.0297576 -0.0126554 0.0288073 -0.0125381 0.0278339 -0.0123986 0.0268405 -0.0122356 0.0258301 -0.0120456 0.0248055 -0.0118237 0.0237711 -0.0115525 0.0227176 -0.01118 -0.0106864 0.0215692 0.0374593 0.0373402 0.0371811 0.0369799 0.036735 0.036445 0.0361085 0.0357247 0.0352928 0.0348127 0.0342845 0.0337086 0.0330861 0.0324185 0.0317073 0.0309549 0.0301638 0.0293365 0.0284761 0.0275853 0.026667 0.0257236 0.0247572 0.0237693 0.0227612 0.0217333 0.0206843 0.0196164 0.0185489 0.017445 0.225815 -0.00131115 0.227072 -0.00125755 0.22826 -0.0011878 0.22936 -0.00110034 0.230354 -0.000993861 0.231223 -0.000868631 0.231949 -0.000725911 0.232516 -0.000567541 0.232912 -0.000396024 0.233127 -0.0002147 0.233155 -2.77822e-05 0.232996 0.000159005 0.232656 0.000340248 0.232147 0.000508927 0.231489 0.000657574 0.230711 0.000778535 0.229846 0.000864348 0.228938 0.000908427 0.228032 0.000906003 0.227176 0.000855345 0.226417 0.000759233 0.225791 0.000626621 0.225316 0.000474228 0.224989 0.000327667 0.224768 0.000221053 0.224574 0.000193717 0.224291 0.000282882 0.223776 0.000514572 0.222882 0.000894902 0.221475 0.00140612 0.219471 0.00200458 0.216847 0.00262338 0.213669 0.00317839 0.210087 0.00358168 0.206316 0.00377104 0.202611 0.00370543 0.199167 0.00344437 0.196208 0.00295888 0.193661 0.00254654 0.00178129 0.21397 -0.00256728 0.215173 -0.00245985 0.216305 -0.00232071 0.217352 -0.00214652 0.218293 -0.00193492 0.219111 -0.00168668 0.219789 -0.00140439 0.220313 -0.00109173 0.220671 -0.000753665 0.220853 -0.00039681 0.220855 -2.93993e-05 0.220677 0.000337271 0.220324 0.00069262 0.21981 0.0010228 0.219155 0.00131323 0.218384 0.00154888 0.217534 0.0017151 0.216643 0.00179895 0.215758 0.00179106 0.214925 0.00168801 0.214189 0.00149528 0.213585 0.00123049 0.213133 0.000926618 0.212826 0.000634161 0.212627 0.000420478 0.212457 0.000363288 0.212204 0.000536454 0.211727 0.000991484 0.210881 0.00174038 0.209541 0.00274624 0.207624 0.00392166 0.205116 0.00513164 0.202081 0.00621349 0.198671 0.00699141 0.195087 0.00735508 0.191581 0.00721128 0.18832 0.00670543 0.185542 0.00573668 0.18313 0.00495931 0.0034411 0.203035 -0.00378118 0.204193 -0.00361731 0.205278 -0.00340631 0.206275 -0.00314311 0.207165 -0.00282454 0.20793 -0.00245215 0.208556 -0.00203 0.209028 -0.00156363 0.209334 -0.00106051 0.209468 -0.00053059 0.209425 1.38622e-05 0.209206 0.000556406 0.208817 0.00108107 0.208273 0.00156747 0.207592 0.00199413 0.206802 0.00233882 0.205937 0.00257983 0.205038 0.00269803 0.20415 0.00267951 0.203318 0.00251923 0.202588 0.00222529 0.201995 0.00182392 0.201557 0.00136414 0.20127 0.000921148 0.201096 0.000595342 0.200956 0.00050274 0.200738 0.000754103 0.200303 0.00142659 0.199506 0.00253759 0.198224 0.0040287 0.196379 0.00576604 0.193966 0.00754449 0.191055 0.0091253 0.187797 0.0102487 0.184388 0.0107647 0.181069 0.0105298 0.177993 0.00978161 0.175388 0.00834208 0.173127 0.00721999 0.00498453 0.192884 -0.00496412 0.194005 -0.0047389 0.19505 -0.00445119 0.196001 -0.00409402 0.19684 -0.00366385 0.197551 -0.00316337 0.19812 -0.00259826 0.198532 -0.00197602 0.198778 -0.0013067 0.198851 -0.000603595 0.198749 0.000116625 0.198472 0.000833391 0.198028 0.00152444 0.197432 0.00216339 0.196704 0.00272194 0.195873 0.00317073 0.194971 0.00348113 0.194041 0.00362785 0.193128 0.00359251 0.192279 0.00336843 0.191538 0.00296637 0.190941 0.00242107 0.190507 0.00179764 0.190233 0.00119593 0.190079 0.000749446 0.189969 0.000612778 0.189788 0.000934279 0.189398 0.00181736 0.188651 0.00328444 0.187426 0.00525306 0.185653 0.00753944 0.183332 0.00986552 0.180539 0.0119184 0.177429 0.0133582 0.174191 0.0140033 0.171058 0.013663 0.168166 0.012673 0.165734 0.0107742 0.163628 0.00932591 0.00640975 0.183418 -0.00612324 0.184509 -0.0058301 0.185517 -0.00545885 0.186424 -0.00500066 0.187212 -0.00445212 0.187866 -0.0038175 0.188372 -0.00310424 0.188718 -0.00232189 0.188894 -0.0014832 0.188896 -0.000604918 0.18872 0.000291991 0.188371 0.00118265 0.187857 0.00203875 0.187192 0.00282789 0.186399 0.003515 0.185506 0.00406371 0.184549 0.00443848 0.183569 0.00460791 0.182612 0.00454921 0.181727 0.00425405 0.180957 0.00373583 0.18034 0.0030378 0.179897 0.00224108 0.179623 0.00147013 0.179481 0.000891532 0.179395 0.000698707 0.179251 0.00107839 0.178907 0.00216117 0.178217 0.0039746 0.17706 0.00641015 0.175368 0.00923115 0.173149 0.012084 0.170485 0.0145831 0.167531 0.0163119 0.16447 0.0170647 0.161526 0.0166067 0.158823 0.0153762 0.156565 0.0130315 0.154616 0.0112753 0.00771668 0.174557 -0.00726293 0.175621 -0.00689363 0.176592 -0.00643018 0.177453 -0.00586194 0.178187 -0.00518637 0.17878 -0.00440977 0.179217 -0.00354142 0.179488 -0.00259302 0.179585 -0.00158022 0.179503 -0.000523294 0.179243 0.000552552 0.178808 0.00161795 0.178207 0.00263877 0.177459 0.00357656 0.176584 0.00438958 0.175613 0.00503447 0.174583 0.00546887 0.173536 0.00565536 0.172518 0.00556674 0.171579 0.00519309 0.170764 0.00455043 0.170112 0.00369037 0.169643 0.00270983 0.169356 0.00175751 0.169215 0.00103272 0.169146 0.000767654 0.169036 0.00118817 0.168744 0.00245326 0.168122 0.00459652 0.167049 0.00748254 0.165461 0.0108199 0.163367 0.0141775 0.160852 0.0170986 0.158071 0.0190925 0.1552 0.019936 0.152454 0.0193523 0.149945 0.0178859 0.147864 0.0151121 0.146072 0.0130673 0.00890658 0.166231 -0.00838407 0.167266 -0.00792881 0.168198 -0.00736253 0.16901 -0.00667321 0.169683 -0.00586022 0.170206 -0.00493221 0.170565 -0.00390034 0.17075 -0.00277865 0.170756 -0.00158591 0.170579 -0.000345992 0.17022 0.000911678 0.169684 0.0021531 0.168985 0.00333856 0.168138 0.00442356 0.167167 0.00535979 0.166105 0.00609702 0.164988 0.00658624 0.163859 0.00678408 0.162766 0.00665908 0.16176 0.00619976 0.160886 0.00542464 0.160183 0.00439345 0.159674 0.0032183 0.15936 0.00207131 0.159209 0.00118361 0.159151 0.000825736 0.159076 0.00126327 0.158844 0.00268531 0.158307 0.0051334 0.157344 0.00844601 0.155887 0.0122767 0.153948 0.016116 0.15161 0.0194371 0.149025 0.0216772 0.146361 0.0225999 0.143825 0.0218889 0.141515 0.0201961 0.139612 0.0170143 0.137977 0.0147022 0.0099819 0.158377 -0.00948353 0.159379 -0.00893086 0.160265 -0.00824877 0.161017 -0.00742513 0.16162 -0.00646266 0.16206 -0.00537244 0.162327 -0.0041675 0.162413 -0.00286453 0.162313 -0.00148569 0.162025 -5.84671e-05 0.161553 0.00138351 0.160905 0.0028016 0.160093 0.00415074 0.159136 0.00538055 0.158059 0.00643633 0.156895 0.00726126 0.155681 0.00779985 0.154462 0.00800306 0.153286 0.00783529 0.152202 0.00728353 0.151258 0.0063686 0.150494 0.00515781 0.149935 0.00377745 0.149585 0.00242159 0.149416 0.00135169 0.149366 0.000875754 0.14933 0.00129973 0.14917 0.00284501 0.148739 0.00556421 0.147913 0.0092721 0.146621 0.0135686 0.144872 0.0178659 0.142741 0.0215681 0.140376 0.0240413 0.137938 0.0250386 0.135621 0.0242054 0.133516 0.0223012 0.131793 0.0187374 0.130314 0.0161816 0.0109461 0.150936 -0.0105526 0.151894 -0.00988933 0.152721 -0.00907561 0.153398 -0.00810222 0.153912 -0.0069769 0.154253 -0.00571281 0.15441 -0.00432487 0.154378 -0.00283296 0.154155 -0.00126274 0.153742 0.00035455 0.153144 0.00198156 0.152371 0.00357486 0.151437 0.00508451 0.150363 0.00645456 0.149175 0.00762433 0.147906 0.00853075 0.146593 0.00911224 0.145282 0.00931435 0.14402 0.00909756 0.142856 0.00844726 0.141838 0.00738624 0.141008 0.00598841 0.140393 0.00439275 0.140001 0.00281318 0.139813 0.00153941 0.139773 0.000915829 0.139783 0.00128945 0.139712 0.00291676 0.13941 0.00586567 0.138751 0.00993126 0.137657 0.0146626 0.136129 0.0193945 0.134234 0.0234623 0.132114 0.0261615 0.129917 0.0272358 0.12783 0.0262927 0.125933 0.0241973 0.124389 0.0202821 0.123062 0.0175081 0.0118038 0.143842 -0.0115753 0.14474 -0.0107865 0.145486 -0.00982224 0.146066 -0.00868204 0.146469 -0.00738009 0.146687 -0.00593067 0.146713 -0.00435088 0.146544 -0.00266434 0.146182 -0.000900258 0.14563 0.000906852 0.144895 0.00271587 0.143991 0.00447931 0.142933 0.00614279 0.141742 0.00764538 0.140445 0.00892095 0.139075 0.00990071 0.13767 0.0105174 0.136273 0.0107116 0.13493 0.01044 0.133691 0.00968612 0.132604 0.00847412 0.131709 0.00688323 0.131039 0.00506298 0.130607 0.00324453 0.130403 0.0017434 0.13038 0.000939129 0.130449 0.00122079 0.130482 0.00288328 0.130333 0.00601491 0.129868 0.0103962 0.129001 0.0155294 0.127722 0.0206733 0.126089 0.0250952 0.124232 0.0280191 0.122289 0.0291789 0.120437 0.0281444 0.118751 0.0258831 0.117382 0.021651 0.116205 0.018686 0.01256 0.137025 -0.012527 0.137835 -0.0115963 0.138472 -0.0104598 0.138926 -0.00913568 0.13919 -0.00764461 0.13926 -0.0060004 0.139132 -0.0042231 0.138808 -0.0023404 0.138293 -0.000384784 0.137593 0.00160678 0.136719 0.00358962 0.135685 0.00551321 0.134509 0.00731947 0.133211 0.00894322 0.131818 0.0103136 0.130362 0.0113568 0.128879 0.0120003 0.127411 0.0121798 0.126003 0.0118484 0.124701 0.0109874 0.123554 0.00962145 0.122604 0.00783316 0.121887 0.00578013 0.121424 0.00370771 0.121213 0.00195468 0.121217 0.000934621 0.121358 0.00107994 0.121514 0.00272767 0.121536 0.00599203 0.121288 0.0106449 0.120671 0.0161462 0.119663 0.0216812 0.118309 0.026449 0.116727 0.0296012 0.115046 0.0308603 0.113432 0.0297582 0.111955 0.02736 0.110757 0.0228487 0.109722 0.0197208 0.0132207 0.130398 -0.0133742 0.131086 -0.0122844 0.13158 -0.010953 0.131874 -0.00943047 0.131971 -0.00774138 0.131868 -0.00589737 0.131568 -0.00392264 0.131076 -0.00184873 0.130402 0.00028965 0.129555 0.00245345 0.128549 0.00459584 0.127398 0.00666414 0.12612 0.00859762 0.124735 0.0103278 0.123269 0.0117798 0.12175 0.0128752 0.120214 0.0135368 0.118698 0.0136959 0.117245 0.0133013 0.115901 0.0123318 0.114711 0.010811 0.113721 0.00882287 0.112971 0.00653017 0.11249 0.00418928 0.112285 0.00215976 0.112331 0.000888538 0.112558 0.000852806 0.11285 0.00243555 0.11306 0.00578242 0.113042 0.0106627 0.112689 0.0164991 0.111964 0.022406 0.110899 0.0275143 0.109598 0.030902 0.10818 0.0322783 0.106802 0.0311361 0.105529 0.0286326 0.104496 0.0238816 0.103598 0.0206193 0.0137923 0.123868 -0.0140765 0.124394 -0.0128104 0.124705 -0.0112638 0.124809 -0.00953475 0.124713 -0.0076449 0.124419 -0.00560314 0.123935 -0.00343907 0.123274 -0.00118712 0.122446 0.00111756 0.121465 0.00343406 0.120345 0.00571554 0.119101 0.00790812 0.117749 0.00994956 0.116308 0.0117689 0.1148 0.0132881 0.113251 0.0144246 0.111691 0.0150968 0.110156 0.015231 0.108685 0.0147721 0.107321 0.0136951 0.106112 0.0120208 0.105102 0.00983244 0.104338 0.00729462 0.103855 0.00467184 0.103672 0.00234238 0.103775 0.000786205 0.104101 0.000526866 0.104539 0.00199683 0.104944 0.00537825 0.105163 0.0104437 0.105078 0.0165838 0.104639 0.0228448 0.103863 0.0282902 0.102842 0.0319232 0.101684 0.0334367 0.100536 0.0322843 0.0994601 0.0297082 0.0985836 0.0247581 0.0978136 0.0213893 0.0142816 0.117337 -0.0145921 0.117659 -0.013133 0.117753 -0.0113579 0.117642 -0.00942399 0.117336 -0.00733895 0.116844 -0.00511068 0.11618 -0.00277474 0.115359 -0.000366709 0.114397 0.00207979 0.113308 0.00452308 0.112106 0.00691803 0.110803 0.00921081 0.109414 0.0113388 0.107953 0.0132292 0.10644 0.0148015 0.104895 0.015969 0.103346 0.0166459 0.101824 0.0167535 0.100364 0.0162316 0.099009 0.0150505 0.0978033 0.0132266 0.0967964 0.0108393 0.0960386 0.00805243 0.0955745 0.00513595 0.0954315 0.00248541 0.0956038 0.00061386 0.096038 9.27268e-05 0.0966279 0.00140685 0.097227 0.00477914 0.0976801 0.00999068 0.0978588 0.016405 0.0976997 0.023004 0.0972061 0.0287837 0.0964566 0.0326727 0.095549 0.0343443 0.0946209 0.0332124 0.0937323 0.0305969 0.0930026 0.0254878 0.0923525 0.0220393 0.0146952 0.110713 -0.0148845 0.110795 -0.0132154 0.110649 -0.0112118 0.110312 -0.00908657 0.109794 -0.00682135 0.109111 -0.00442807 0.108284 -0.00194741 0.10733 0.00058739 0.106266 0.00314403 0.105105 0.00568362 0.10386 0.00816328 0.10254 0.0105307 0.101155 0.0127235 0.0997168 0.0146678 0.0982377 0.0162806 0.0967353 0.0174714 0.0952314 0.0181497 0.0937534 0.0182315 0.0923343 0.0176507 0.0910134 0.0163714 0.0898365 0.0144035 0.0888556 0.0118202 0.0881261 0.00878191 0.0877 0.00556205 0.0876128 0.00257262 0.0878665 0.000360178 0.0884141 -0.000454842 0.0891541 0.000666817 0.0899413 0.00399193 0.0906174 0.00931459 0.0910464 0.015976 0.0911529 0.0228974 0.0909275 0.0290091 0.0904357 0.0331645 0.0897654 0.0350146 0.0890444 0.0339334 0.0883309 0.0313104 0.0877372 0.0260815 0.0871979 0.0225787 0.0150402 0.103926 -0.0149283 0.103745 -0.0130347 0.103353 -0.0108193 0.102794 -0.00852756 0.102079 -0.00610658 0.10123 -0.00357952 0.100272 -0.00098917 0.0992229 0.00163663 0.0980988 0.00426813 0.0969113 0.00687106 0.0956685 0.00940612 0.094376 0.0118232 0.0930386 0.0140608 0.0916622 0.0160443 0.090255 0.0176878 0.0888293 0.0188971 0.0874025 0.0195765 0.085998 0.019636 0.084646 0.0190027 0.0833844 0.017633 0.0822597 0.0155282 0.0813268 0.0127531 0.0806461 0.00946252 0.0802761 0.00593211 0.0802585 0.00259016 0.0806014 1.73082e-05 0.081263 -0.00111645 0.0821463 -0.000216425 0.0831084 0.00302981 0.0839899 0.00843307 0.0846492 0.0153167 0.085001 0.0225457 0.0850242 0.0289859 0.0847717 0.033417 0.0843219 0.0354644 0.0837927 0.0344626 0.0832408 0.0318623 0.0827718 0.0265505 0.0823336 0.0230169 0.0153232 0.096939 -0.0147146 0.0964912 -0.0125869 0.0958664 -0.0101945 0.0951084 -0.00776954 0.0942273 -0.0052255 0.0932515 -0.00260374 0.0922062 5.60805e-05 0.0911089 0.00273392 0.0899731 0.00540399 0.0888062 0.00803792 0.0876114 0.010601 0.086389 0.0130455 0.0851385 0.0153114 0.0838604 0.0173224 0.0825579 0.0189903 0.0812387 0.0202163 0.0799158 0.0208994 0.0786092 0.0209425 0.0773469 0.0202651 0.0761659 0.018814 0.0751137 0.0165804 0.0742484 0.0136185 0.0736347 0.0100762 0.0733359 0.00623094 0.0733984 0.00252764 0.0738344 -0.000418744 0.0746061 -0.0018881 0.0756208 -0.0012312 0.0767396 0.00191104 0.0778038 0.00736884 0.0786686 0.014452 0.0792408 0.0219735 0.079489 0.0287377 0.0794544 0.0334516 0.0792058 0.035713 0.0788515 0.0348168 0.0784469 0.032267 0.0780907 0.0269066 0.0777441 0.0233635 0.0155508 0.0897564 -0.014254 0.0890592 -0.0118897 0.0882354 -0.00937061 0.0873162 -0.00685033 0.0863131 -0.00422238 0.0852595 -0.00155013 0.0841773 0.00113819 0.0830829 0.00382837 0.0819839 0.00650299 0.080883 0.00913881 0.0797775 0.0117064 0.0786625 0.0141605 0.0775319 0.0164419 0.0763814 0.0184729 0.0752094 0.0201623 0.0740194 0.0214064 0.0728209 0.0220979 0.071631 0.0221323 0.070476 0.0214201 0.0693926 0.0198975 0.0684296 0.0175433 0.0676479 0.0144002 0.0671157 0.0106083 0.0668997 0.00644695 0.067049 0.00237843 0.0675779 -0.000947652 0.0684517 -0.00276195 0.0695825 -0.00236203 0.0708362 0.000657388 0.0720572 0.00614787 0.0730996 0.0134096 0.0738645 0.0212086 0.0743117 0.0282904 0.0744713 0.033292 0.0744032 0.0357811 0.0742062 0.0350139 0.0739339 0.0325392 0.0736788 0.0271618 0.0734143 0.023628 0.0157292 0.0824242 -0.0135744 0.0815159 -0.0109814 0.080541 -0.00839575 0.0795094 -0.00581869 0.0784372 -0.00315016 0.0773593 -0.000472314 0.0762934 0.00220415 0.0752503 0.00487145 0.0742324 0.00752087 0.0732365 0.0101347 0.0722543 0.0126887 0.0712755 0.0151393 0.0702893 0.0174281 0.069287 0.0194752 0.0682631 0.0211861 0.0672177 0.0224518 0.0661573 0.0231583 0.0650968 0.0231928 0.0640614 0.0224556 0.0630878 0.020871 0.0622265 0.0184046 0.0615405 0.0150862 0.0611006 0.0110482 0.060975 0.00657256 0.0612135 0.00213989 0.0618315 -0.00156557 0.0627964 -0.00372694 0.0640253 -0.00359086 0.06539 -0.000707385 0.0667402 0.00479776 0.067931 0.0122187 0.0688597 0.0202798 0.0694789 0.0276712 0.0698084 0.0329625 0.0698996 0.0356899 0.0698417 0.0350718 0.069687 0.0326939 0.0695214 0.0273274 0.0693299 0.0238196 0.0158641 0.0750233 -0.0127165 0.0739581 -0.00991621 0.0728884 -0.00732606 0.071799 -0.0047293 0.0707139 -0.00206505 0.0696653 0.000576352 0.0686639 0.00320548 0.0677149 0.00582051 0.0668143 0.00842147 0.0659533 0.0109957 0.0651183 0.0135236 0.064295 0.0159627 0.0634684 0.0182547 0.0626263 0.0203173 0.0617602 0.0220522 0.0608674 0.0233446 0.0599522 0.0240736 0.059028 0.0241169 0.0581192 0.0233644 0.0572633 0.0217269 0.0565118 0.0191561 0.0559295 0.0156685 0.0555885 0.0113892 0.0555569 0.00660414 0.0558838 0.00181307 0.0565838 -0.00226557 0.0576266 -0.00476974 0.058934 -0.00489832 0.0603855 -0.0021589 0.061837 0.00334623 0.0631471 0.0109086 0.064211 0.019216 0.0649751 0.0269071 0.0654502 0.0324874 0.0656795 0.0354606 0.065743 0.0350082 0.0656915 0.0327455 0.0656043 0.0274146 0.065477 0.0239468 0.0159611 0.0676575 -0.0117273 0.0664991 -0.00875781 0.0653926 -0.00621959 0.0643012 -0.00363791 0.0632574 -0.00102122 0.062286 0.00154778 0.0613899 0.00410157 0.0605681 0.00664233 0.0598106 0.00917893 0.0591039 0.0117024 0.0584304 0.0141972 0.0577721 0.0166209 0.0571114 0.0189154 0.0564335 0.0209952 0.0557275 0.0227582 0.0549888 0.0240834 0.05422 0.0248423 0.0534339 0.0249031 0.0526543 0.0241439 0.0519195 0.0224618 0.051282 0.0197936 0.0508075 0.016143 0.0505682 0.0116286 0.0506306 0.00654172 0.0510415 0.00140214 0.0518144 -0.00303842 0.0529203 -0.00587572 0.0542867 -0.00626472 0.0558011 -0.00367328 0.0573274 0.00181999 0.0587288 0.00950725 0.0599 0.0180448 0.0607831 0.026024 0.0613804 0.0318902 0.0617273 0.0351137 0.0618952 0.0348403 0.061933 0.0327077 0.0619138 0.0274338 0.0618425 0.0240181 0.016025 0.0604386 -0.0106533 0.0592537 -0.00757298 0.0581655 -0.00513135 0.057125 -0.00259743 0.0561703 -6.65138e-05 0.0553152 0.00240294 0.0545547 0.00486207 0.0538822 0.00731475 0.0532829 0.00977824 0.0527397 0.0122456 0.0522321 0.0147048 0.0517401 0.0171129 0.051244 0.0194116 0.0507273 0.0215119 0.0501776 0.0233079 0.049589 0.0246719 0.0489634 0.0254679 0.0483126 0.0255539 0.047661 0.0247955 0.047047 0.0230758 0.0465241 0.0203166 0.046158 0.016509 0.0460196 0.011767 0.0461729 0.00638844 0.0466613 0.000913766 0.0474962 -0.00387335 0.0486503 -0.00702985 0.0500566 -0.00767099 0.0516114 -0.0052281 0.0531875 0.000243869 0.0546542 0.00804052 0.0559071 0.0167918 0.0568848 0.0250463 0.057582 0.031193 0.0580274 0.0346684 0.0582837 0.034584 0.0583977 0.0325937 0.0584368 0.0273947 0.058414 0.0240408 0.0160604 0.0534735 -0.0095355 0.0523268 -0.00642628 0.0513059 -0.00411041 0.0503634 -0.00165492 0.049536 0.000760842 0.0488252 0.00311378 0.0482192 0.00546805 0.0477073 0.00782668 0.047271 0.0102146 0.0468913 0.0126253 0.0465463 0.0150498 0.0462146 0.0174446 0.0458756 0.0197506 0.0455119 0.0218756 0.0451102 0.0237096 0.0446639 0.0251183 0.0441742 0.0259576 0.043653 0.026075 0.0431248 0.0253238 0.0426285 0.0235721 0.0422177 0.0207274 0.0419575 0.0167692 0.0419165 0.0118079 0.042155 0.00614993 0.0427124 0.000356381 0.0435978 -0.00475874 0.0447853 -0.0082173 0.0462136 -0.00909932 0.0477884 -0.00680289 0.0493919 -0.00135969 0.0509005 0.00653195 0.0522116 0.0154807 0.0532615 0.0239965 0.0540383 0.0304161 0.0545642 0.0341425 0.0548941 0.0342541 0.0550725 0.0324152 0.0551609 0.0273063 0.0551796 0.0240221 0.0160715 0.0468548 -0.00840672 0.0458052 -0.00537662 0.0448935 -0.00319869 0.0440875 -0.000848976 0.0434146 0.00143377 0.0428643 0.00366405 0.0424207 0.00591168 0.0420704 0.00817696 0.0417934 0.0104916 0.0415702 0.0128485 0.0413782 0.0152418 0.041196 0.0176268 0.0410024 0.0199442 0.0407798 0.0220982 0.0405145 0.0239749 0.0401996 0.0254332 0.0398362 0.026321 0.0394363 0.0264749 0.0390246 0.0257355 0.0386403 0.0239564 0.0383368 0.021031 0.0381776 0.0169284 0.0382281 0.0117574 0.0385444 0.0058337 0.0391612 -0.000260454 0.0400853 -0.00568283 0.0412921 -0.00942412 0.0427264 -0.0105336 0.0443031 -0.00837958 0.0459144 -0.00297099 0.0474441 0.00500224 0.0487926 0.0141322 0.0498946 0.0228945 0.0507326 0.029578 0.0513228 0.0335523 0.0517127 0.0338643 0.0519445 0.0321834 0.0520742 0.0271766 0.0521281 0.0239682 0.0160618 0.0406549 -0.00729158 0.0397539 -0.00447565 0.0389858 -0.00243064 0.0383451 -0.000208244 0.0378415 0.00193736 0.037457 0.00404856 0.0371738 0.00619486 0.0369783 0.00837247 0.0368505 0.0106194 0.0367714 0.0129275 0.0367189 0.0152943 0.0366718 0.0176739 0.0366092 0.0200068 0.0365134 0.022194 0.0363709 0.0241173 0.0361748 0.0256293 0.0359265 0.0265694 0.035638 0.0267634 0.0353344 0.0260391 0.0350548 0.024236 0.0348517 0.021234 0.0347866 0.0169935 0.0349212 0.0116228 0.0353065 0.00544843 0.0359727 -0.000926645 0.036924 -0.00663415 0.0381374 -0.0106375 0.0395635 -0.0119597 0.0411266 -0.00994264 0.0427287 -0.00457317 0.0442617 0.00346922 0.0456295 0.0127645 0.0467658 0.0217582 0.0476487 0.0286952 0.0482887 0.0329123 0.0487263 0.0334267 0.0490018 0.031908 0.0491655 0.0270128 0.0492489 0.0238848 0.0160347 0.0349247 -0.00621001 0.0342159 -0.00376684 0.0336187 -0.00183343 0.0331603 0.000250104 0.0328295 0.00226818 0.0326063 0.00427176 0.032474 0.00632715 0.0324206 0.0084259 0.0324274 0.0106126 0.032477 0.0128779 0.0325479 0.0152234 0.0326199 0.017602 0.0326723 0.0199544 0.0326881 0.0221782 0.0326539 0.0241515 0.0325633 0.0257199 0.0324178 0.0267149 0.0322299 0.0269512 0.0320248 0.0262442 0.0318413 0.0244195 0.0317306 0.0213447 0.0317515 0.0169725 0.0319616 0.0114127 0.0324065 0.00500351 0.0331119 -0.00163205 0.0340797 -0.00760193 0.0352883 -0.0118461 0.0366942 -0.0133656 0.0382306 -0.011479 0.0398096 -0.00615214 0.0413309 0.00194793 0.0427023 0.011393 0.0438578 0.0206027 0.044771 0.0277819 0.0454479 0.0322354 0.0459226 0.032952 0.0462329 0.0315977 0.0464242 0.0268214 0.046532 0.023777 0.015993 0.0296958 -0.00518484 0.0292139 -0.00328497 0.028807 -0.00142653 0.0285364 0.000520691 0.0283716 0.00243301 0.0282977 0.00434571 0.0283013 0.0063235 0.0283736 0.00835359 0.0284982 0.0104879 0.0286594 0.0127168 0.0288368 0.0150459 0.0290111 0.0174277 0.0291625 0.019803 0.0292743 0.0220664 0.0293339 0.0240919 0.0293351 0.0257187 0.0292801 0.0267699 0.0291816 0.0270497 0.0290649 0.026361 0.0289681 0.0245163 0.028941 0.0213718 0.0290391 0.0168745 0.0293153 0.0111365 0.0298103 0.00450854 0.0305451 -0.00236688 0.0315195 -0.00857636 0.0327136 -0.0130402 0.0340893 -0.0147412 0.0355884 -0.0129782 0.0371327 -0.00769644 0.0386299 0.000450727 0.0399921 0.0100308 0.0411536 0.0194412 0.0420849 0.0268507 0.0427874 0.0315328 0.0432897 0.0324497 0.0436271 0.0312604 0.0438404 0.0266081 0.0439681 0.0236493 0.0159394 0.0249858 -0.00424802 0.0247532 -0.00305247 0.0245475 -0.00122083 0.0244589 0.000609285 0.024445 0.00244693 0.0245032 0.00428758 0.0246247 0.00620193 0.0248047 0.00817359 0.0250294 0.0102632 0.0252848 0.0124615 0.0255519 0.0147788 0.0258122 0.0171674 0.0260468 0.0195684 0.0262397 0.0218735 0.0263789 0.0239527 0.0264588 0.0256388 0.0264821 0.0267466 0.0264618 0.0270699 0.0264232 0.0263996 0.0264037 0.0245358 0.0264508 0.0213248 0.0266167 0.0167086 0.0269497 0.0108035 0.0274853 0.00397293 0.0282404 -0.00312196 0.0292128 -0.00954873 0.0303841 -0.0142115 0.0317215 -0.0160786 0.0331751 -0.0144319 0.0346757 -0.009197 0.0361389 -0.00101244 0.0374811 0.00868859 0.0386377 0.0182846 0.0395763 0.0259121 0.0402949 0.0308142 0.0408165 0.0319281 0.0411742 0.0309027 0.0414045 0.0263779 0.0415481 0.0235057 0.0158761 0.020809 -0.00348777 0.0208246 -0.00306806 0.0208224 -0.00121865 0.0208987 0.000532994 0.0210156 0.00233001 0.0211859 0.00411727 0.0214062 0.00598162 0.0216757 0.00790416 0.0219831 0.00995582 0.022316 0.0121285 0.0226568 0.014438 0.0229878 0.0168364 0.0232909 0.0192654 0.0235508 0.0216135 0.0237563 0.0237472 0.0239024 0.0254927 0.0239924 0.0266567 0.0240397 0.0270226 0.0240691 0.0263701 0.0241171 0.0244878 0.0242291 0.0212128 0.0244535 0.0164842 0.024834 0.0104229 0.0254013 0.00340567 0.0261682 -0.00388888 0.027131 -0.0105115 0.0282728 -0.0153533 0.0295657 -0.0173716 0.0309676 -0.0158338 0.0324175 -0.010647 0.0338389 -0.00243377 0.0351526 0.00737488 0.0362953 0.017142 0.0372324 0.0249749 0.0379588 0.0300878 0.0384926 0.0313942 0.0388649 0.0305305 0.0391078 0.026135 0.0392639 0.0233495 0.0158049 0.0171377 -0.00318043 0.0174145 -0.0033449 0.0176035 -0.00140768 0.0178159 0.000320651 0.018043 0.00210287 0.0183041 0.00385616 0.0186042 0.00568153 0.0189455 0.00756285 0.0193194 0.00958193 0.0197146 0.0117334 0.0201145 0.0140381 0.0205021 0.0164487 0.0208603 0.0189072 0.0211745 0.0212993 0.0214341 0.0234876 0.021635 0.0252919 0.0217808 0.0265108 0.0218853 0.0269182 0.021973 0.0262824 0.0220792 0.0243816 0.0222468 0.0210453 0.0225205 0.0162104 0.0229396 0.0100038 0.0235302 0.00281508 0.0243014 -0.00466008 0.0252481 -0.0114582 0.0263551 -0.0164604 0.0275991 -0.0186155 0.0289447 -0.0171794 0.0303392 -0.0120414 0.0317128 -0.00380741 0.0329914 0.00609635 0.0341128 0.0160205 0.0350411 0.0240467 0.0357683 0.0293607 0.0363083 0.0308541 0.0366901 0.0301487 0.0369418 0.0258832 0.0371076 0.0231837 0.0157278 0.00817303 -0.00360179 0.00830629 -0.00347816 0.00822671 -0.0013281 0.00818532 0.000362048 0.0081598 0.00212839 0.00817097 0.00384499 0.00821643 0.00563606 0.00829449 0.00748479 0.00839857 0.00947785 0.00852314 0.0116088 0.00866219 0.0138991 0.00881175 0.0162991 0.00896928 0.0187496 0.00913468 0.0211339 0.00931011 0.0233122 0.00950059 0.0251014 0.00971415 0.0262973 0.00996222 0.0266701 0.0102594 0.0259852 0.0106221 0.0240188 0.0110659 0.0206015 0.0116009 0.0156755 0.0122268 0.00937788 0.0129308 0.00211106 0.0136894 -0.00541861 0.0144749 -0.0122437 0.0152653 -0.0172507 0.0160493 -0.0193996 0.0168271 -0.0179571 0.017603 -0.0128173 0.0183789 -0.00458332 0.0191484 0.00532682 0.0198993 0.0152696 0.0206135 0.0233324 0.0212757 0.0286984 0.0218693 0.0302606 0.0223917 0.0296263 0.0228362 0.0254387 0.0232269 0.022793 0.0154029 0.00757809 -0.00426069 0.0077405 -0.00364057 0.00772965 -0.00131725 0.00774024 0.000351459 0.00775952 0.00210911 0.00781213 0.00379238 0.00789649 0.0055517 0.00801148 0.0073698 0.00815068 0.00933865 0.00830852 0.011451 0.00847886 0.0137288 0.00865747 0.0161205 0.00884161 0.0185655 0.00903101 0.0209445 0.00922782 0.0231154 0.00943722 0.024892 0.00966761 0.0260669 0.00993095 0.0264068 0.0102424 0.0256738 0.0106189 0.0236423 0.0110762 0.0201442 0.0116239 0.0151277 0.0122614 0.0087404 0.012975 0.00139749 0.0137404 -0.00618409 0.0145304 -0.0130337 0.0153231 -0.0180435 0.0161087 -0.0201851 0.0168882 -0.0187366 0.0176667 -0.0135959 0.018446 -0.00536255 0.0192185 0.0045543 0.0199707 0.0145174 0.0206834 0.0226197 0.0213406 0.0280412 0.0219253 0.0296759 0.0224355 0.0291161 0.0228644 0.0250099 0.0232375 0.0224198 0.015099 0.00699913 -0.004962 0.0071677 -0.00380914 0.00721869 -0.00136824 0.00727718 0.000292968 0.00734029 0.002046 0.00743392 0.00369875 0.00755695 0.00542867 0.00770892 0.00721783 0.00788347 0.00916409 0.00807508 0.0112594 0.00827742 0.0135264 0.00848607 0.0159119 0.00869803 0.0183535 0.00891287 0.0207297 0.00913268 0.0228955 0.00936278 0.0246619 0.00961187 0.0258178 0.00989238 0.0261262 0.01022 0.0253462 0.010612 0.0232503 0.0110842 0.019672 0.0116459 0.014566 0.0122957 0.00809061 0.013019 0.000674141 0.0137912 -0.0069563 0.0145849 -0.0138274 0.0153792 -0.0188378 0.0161654 -0.0209712 0.0169458 -0.019517 0.0177263 -0.0143765 0.0185086 -0.00614479 0.0192841 0.00377876 0.020038 0.0137635 0.0207496 0.0219081 0.0214024 0.0273884 0.0219788 0.0290994 0.0224774 0.0286175 0.0228913 0.024596 0.0232475 0.0220637 0.0148154 0.00643661 -0.00563029 0.00660011 -0.00397264 0.00670452 -0.00147264 0.00680535 0.000192138 0.00690911 0.00194223 0.00704203 0.00356583 0.00720278 0.00526792 0.0073912 0.00702941 0.00760095 0.00895434 0.00782641 0.0110339 0.00806107 0.0132918 0.00830027 0.0156727 0.00854076 0.0181131 0.00878191 0.0204885 0.00902577 0.0226517 0.00927775 0.0244099 0.00954686 0.0255487 0.00984594 0.0258272 0.0101911 0.025001 0.0106001 0.0228414 0.0110885 0.0191836 0.0116653 0.0139892 0.0123283 0.00742764 0.013062 -5.95843e-05 0.0138412 -0.00773554 0.0146387 -0.0146248 0.0154342 -0.0196333 0.0162203 -0.0217573 0.0170009 -0.0202977 0.0177828 -0.0151584 0.0185675 -0.00692954 0.0193459 0.00300041 0.0201015 0.013008 0.0208124 0.0211972 0.0214612 0.0267397 0.0220299 0.0285307 0.0225175 0.02813 0.022917 0.0241964 0.0232568 0.021724 0.0145513 0.005884 -0.0062359 0.0060416 -0.00413024 0.00619039 -0.00162143 0.00632776 5.47682e-05 0.0064697 0.00180029 0.00663998 0.00339555 0.00683732 0.00507057 0.00706153 0.00680521 0.00730612 0.00870975 0.00756533 0.0107747 0.00783242 0.0130247 0.00810245 0.0154026 0.00837192 0.0178436 0.00864002 0.0202204 0.00890873 0.022383 0.00918356 0.0241351 0.0094738 0.0252585 0.00979272 0.0255082 0.0101568 0.0246369 0.010584 0.0224141 0.01109 0.0186777 0.011683 0.0133962 0.01236 0.00675064 0.0131047 -0.000804272 0.0138911 -0.00852201 0.0146922 -0.0154258 0.0154885 -0.0204296 0.016274 -0.0225428 0.0170541 -0.0210777 0.0178366 -0.0159409 0.0186233 -0.00771622 0.0194041 0.0022196 0.0201614 0.0122507 0.0208718 0.0204868 0.0215169 0.0260946 0.0220785 0.0279691 0.0225556 0.0276528 0.0229415 0.0238106 0.0232655 0.0214 0.0143061 0.00534051 -0.00676714 0.00549385 -0.00428358 0.00567787 -0.00180545 0.00584754 -0.000114896 0.00602462 0.00162321 0.00623036 0.00318981 0.00646308 0.00483785 0.00672227 0.00654602 0.00700123 0.00843079 0.00729396 0.010482 0.00759346 0.0127252 0.00789451 0.0151016 0.00819334 0.0175448 0.00848895 0.0199248 0.00878326 0.0220887 0.00908187 0.0238365 0.00939434 0.024946 0.00973429 0.0251683 0.0101186 0.0242525 0.0105654 0.0219674 0.0110899 0.0181531 0.0117002 0.012786 0.0123919 0.00605891 0.0131479 -0.00156029 0.0139417 -0.00931582 0.0147462 -0.0162303 0.0155428 -0.0212263 0.016327 -0.0233271 0.0171058 -0.0218565 0.0178881 -0.0167232 0.018676 -0.00850416 0.0194589 0.00143671 0.0202177 0.0114919 0.0209278 0.0197767 0.0215697 0.0254527 0.0221246 0.0274142 0.0225919 0.0271855 0.0229646 0.0234378 0.0232735 0.0210911 0.0140792 0.00480833 -0.00722218 0.0049588 -0.00443406 0.00517036 -0.00201701 0.00536707 -0.000311606 0.0055768 0.00141348 0.00581593 0.00295067 0.00608266 0.00457113 0.00637586 0.00625282 0.00668856 0.00811809 0.00701444 0.0101561 0.00734622 0.0123934 0.00767835 0.0147695 0.00800682 0.0172163 0.00833043 0.0196012 0.00865103 0.0217681 0.0089743 0.0235132 0.00931004 0.0246102 0.00967218 0.0248062 0.0100779 0.0238468 0.0105454 0.0214999 0.0110897 0.0176088 0.011718 0.0121577 0.012425 0.00535185 0.0131926 -0.00232788 0.0139937 -0.0101169 0.0148011 -0.0170377 0.0155975 -0.0220226 0.0163796 -0.0241092 0.0171561 -0.022633 0.0179373 -0.0175044 0.0187258 -0.00929267 0.0195103 0.000652203 0.0202706 0.0107316 0.0209805 0.0190669 0.0216195 0.0248137 0.0221682 0.0268655 0.0226262 0.0267275 0.0229864 0.0230776 0.0232809 0.0207966 0.0138697 0.00428947 -0.00760425 0.00443831 -0.00458291 0.00467013 -0.00224883 0.00488937 -0.000530847 0.00512918 0.00117367 0.00539957 0.00268028 0.00569881 0.00427189 0.00602492 0.00592671 0.00637058 0.00777243 0.00672909 0.00979756 0.00709285 0.0120296 0.00745601 0.0144063 0.00781429 0.016858 0.00816628 0.0192492 0.00851377 0.0214206 0.00886249 0.0231645 0.00922245 0.0242503 0.00960787 0.0244207 0.0100361 0.0234185 0.0105254 0.0210107 0.0110904 0.0170438 0.0117375 0.0115107 0.0124603 0.00462906 0.0132395 -0.00310715 0.0140476 -0.010925 0.0148576 -0.0178477 0.0156529 -0.022818 0.0164321 -0.0248883 0.0172054 -0.0234063 0.0179847 -0.0182837 0.018773 -0.010081 0.0195586 -0.000133438 0.0203202 0.00997006 0.0210299 0.0183572 0.0216663 0.0241772 0.0222092 0.0263226 0.0226585 0.0262782 0.0230069 0.0227292 0.0232876 0.0205159 0.0136771 0.0037857 -0.00791886 0.00393382 -0.00473103 0.00417956 -0.00249457 0.00441775 -0.000769035 0.00468467 0.000906747 0.00498415 0.00238081 0.00531429 0.00394174 0.00567209 0.00556892 0.0060498 0.00739472 0.00644028 0.00940707 0.00683562 0.0116343 0.00722961 0.0140123 0.00761774 0.0164699 0.00799839 0.0188686 0.00837326 0.0210457 0.00874813 0.0227896 0.00913319 0.0238652 0.00954285 0.0240111 0.0099947 0.0229667 0.0105068 0.0204986 0.0110933 0.0164573 0.0117597 0.0108443 0.0124985 0.00389024 0.0132894 -0.00389804 0.0141042 -0.0117397 0.0149161 -0.0186596 0.0157096 -0.0236115 0.0164849 -0.0256635 0.017254 -0.0241755 0.0180304 -0.01906 0.0188177 -0.0108683 0.0196039 -0.000919662 0.0203664 0.00920754 0.0210761 0.0176475 0.0217102 0.0235431 0.0222479 0.0257849 0.022689 0.0258371 0.0230261 0.0223921 0.0232937 0.0202483 0.0135006 0.00329874 -0.00817247 0.00344657 -0.00487885 0.00370089 -0.00274889 0.00395501 -0.00102315 0.00424618 0.000615581 0.00457249 0.0020545 0.00493189 0.00358235 0.00532004 0.00518077 0.00572877 0.00698599 0.00615044 0.0089854 0.00657681 0.0112079 0.00700133 0.0135878 0.00741923 0.016052 0.00782869 0.0184591 0.00823134 0.0206431 0.00863296 0.022388 0.00904387 0.0234543 0.00947868 0.0235763 0.009955 0.0224903 0.0104907 0.0199629 0.0110994 0.0158485 0.0117856 0.0101581 0.0125405 0.00313528 0.0133429 -0.00470038 0.0141638 -0.0125607 0.014977 -0.0194728 0.0157679 -0.0244025 0.0165383 -0.0264339 0.0173023 -0.0249395 0.0180747 -0.0198324 0.0188602 -0.0116538 0.0196464 -0.00170587 0.0204096 0.00844432 0.0211191 0.016938 0.0217512 0.022911 0.022284 0.0252521 0.0227175 0.0254036 0.023044 0.0220656 0.0232991 0.0199932 0.0133394 0.00283023 -0.00837175 0.00297777 -0.00502639 0.00323619 -0.00300732 0.00350398 -0.00129094 0.00381657 0.000302988 0.00416743 0.00170364 0.00455434 0.00319543 0.00497143 0.00476367 0.00541005 0.00654737 0.00586202 0.00853343 0.00631874 0.0107512 0.00677336 0.0131332 0.00722085 0.0156045 0.00765917 0.0180208 0.00808987 0.0202124 0.00851873 0.0219591 0.00895616 0.0230169 0.00941686 0.0231156 0.00991845 0.0219888 0.0104785 0.0194029 0.0111099 0.0152171 0.0118161 0.00945194 0.0125872 0.00236422 0.0134006 -0.0055138 0.0142272 -0.0133872 0.0150408 -0.0202864 0.0158281 -0.0251898 0.0165926 -0.0271984 0.0173503 -0.0256972 0.0181178 -0.0205999 0.0189005 -0.0124365 0.0196861 -0.00249141 0.0204497 0.00768073 0.0211591 0.0162285 0.0217894 0.0222808 0.0223177 0.0247238 0.022744 0.0249773 0.0230605 0.021749 0.0233039 0.0197498 0.0131928 0.00238171 -0.00852315 0.00252861 -0.00517328 0.00278743 -0.00326614 0.00306663 -0.00157014 0.00339792 -2.83e-05 0.00377179 0.00132977 0.00418439 0.00278283 0.00462895 0.00431911 0.00509623 0.0060801 0.00557747 0.00805219 0.00606377 0.0102649 0.00654793 0.012649 0.00702469 0.0151277 0.00749181 0.0175537 0.00795072 0.0197534 0.0084072 0.0215026 0.00887169 0.0225524 0.00935893 0.0226283 0.00988642 0.0214613 0.0104713 0.018818 0.0111259 0.0145625 0.0118522 0.00872561 0.0126391 0.00157729 0.0134631 -0.00633782 0.0142946 -0.0142187 0.0151078 -0.0210995 0.0158905 -0.0259726 0.0166481 -0.027956 0.0173985 -0.0264476 0.01816 -0.0213614 0.0189391 -0.0132156 0.0197233 -0.0032756 0.0204868 0.00691716 0.0211961 0.0155192 0.0218247 0.0216523 0.0223489 0.0241996 0.0227686 0.0245575 0.0230758 0.0214419 0.023308 0.0195175 0.0130602 0.00195462 -0.00863272 0.00210029 -0.00531895 0.00235679 -0.00352264 0.00264452 -0.00185787 0.00299416 -0.000377931 0.00338809 0.000935828 0.00382472 0.0023462 0.00429523 0.0038486 0.00478986 0.00558547 0.00529926 0.00754278 0.00581425 0.00974992 0.00632728 0.012136 0.00683287 0.0146221 0.0073286 0.017058 0.00781578 0.0192663 0.00830012 0.0210183 0.00879208 0.0220604 0.00930635 0.0221141 0.00986025 0.0209074 0.0104704 0.0182078 0.0111482 0.0138847 0.0118946 0.00797924 0.012697 0.00077485 0.013531 -0.00717178 0.0143665 -0.0150542 0.0151783 -0.0219113 0.0159555 -0.0267498 0.016705 -0.0287056 0.017447 -0.0271896 0.0182014 -0.0221158 0.0189759 -0.0139901 0.0197581 -0.00405773 0.0205212 0.00615404 0.0212301 0.0148103 0.0218572 0.0210252 0.0223777 0.0236791 0.0227913 0.0241439 0.0230897 0.0211436 0.0233115 0.0192957 0.0129406 0.00155036 -0.00870602 0.00169407 -0.00546266 0.00194616 -0.00377473 0.00224202 -0.00215373 0.00260601 -0.000741916 0.0030192 0.000522635 0.00347801 0.00188739 0.0039729 0.00335372 0.00449348 0.00506489 0.00502985 0.00700641 0.00557251 0.00920726 0.00611361 0.0115949 0.0066475 0.0140882 0.00717152 0.0165339 0.00768688 0.0187509 0.00819921 0.0205059 0.00871892 0.0215407 0.00926057 0.0215724 0.00984121 0.0203267 0.0104769 0.0175721 0.011178 0.0131837 0.0119441 0.00721309 0.0127615 -4.25413e-05 0.0136046 -0.00801492 0.0144432 -0.0158928 0.0152526 -0.0227206 0.0160231 -0.0275203 0.0167636 -0.0294461 0.017496 -0.0279221 0.0182423 -0.0228621 0.0190113 -0.0147591 0.0197906 -0.00483705 0.0205528 0.00539183 0.0212613 0.0141018 0.0218869 0.0203995 0.022404 0.023162 0.0228121 0.0237358 0.0231023 0.0208534 0.0233143 0.0190836 0.0128335 0.00117032 -0.00874819 0.00131122 -0.00560357 0.00155771 -0.00402121 0.00186007 -0.00245609 0.00223665 -0.0011185 0.00266733 9.19619e-05 0.00314688 0.00140784 0.00366451 0.00283609 0.0042096 0.0045198 0.00477162 0.00644438 0.00534085 0.00863804 0.00590913 0.0110266 0.00647063 0.0135267 0.00702251 0.0159821 0.00756585 0.0182076 0.00810616 0.0199656 0.00865374 0.0209931 0.00922297 0.0210032 0.00983051 0.0197192 0.0104917 0.0169109 0.0112159 0.0124595 0.0120013 0.00642765 0.012833 -0.000874214 0.0136844 -0.00886629 0.014525 -0.0167334 0.0153308 -0.0235265 0.0160936 -0.0282831 0.0168239 -0.0301764 0.0175458 -0.0286439 0.0182828 -0.0235992 0.0190453 -0.0155215 0.019821 -0.00561279 0.0205818 0.00463101 0.0212897 0.013394 0.021914 0.0197752 0.022428 0.022648 0.0228309 0.0233329 0.0231135 0.0205708 0.0233165 0.0188806 0.012738 0.000815899 -0.00876402 0.000952998 -0.00574067 0.00119328 -0.0042615 0.00150133 -0.00276414 0.00188846 -0.00150563 0.00233562 -0.000355195 0.00283378 0.000909682 0.00337256 0.00229731 0.00394065 0.00395171 0.00452695 0.00585807 0.00512154 0.00804345 0.00571598 0.0104322 0.00630431 0.0129384 0.00688347 0.0154029 0.00745444 0.0176366 0.00802257 0.0193975 0.00859801 0.0204177 0.00919485 0.0204063 0.00982927 0.0190848 0.0105158 0.0162243 0.0112627 0.0117126 0.0120669 0.0056235 0.0129119 -0.00171925 0.0137705 -0.00972486 0.014612 -0.017575 0.0154132 -0.0243276 0.0161671 -0.029037 0.0168861 -0.0308954 0.0175963 -0.0293541 0.0183231 -0.024326 0.0190781 -0.0162765 0.0198495 -0.00638416 0.0206084 0.00387212 0.0213153 0.0126871 0.0219384 0.0191521 0.0224496 0.0221368 0.0228479 0.0229346 0.0231234 0.0202953 0.0233181 0.018686 0.0126533 0.000488704 -0.00875825 0.000620592 -0.00587256 0.000854783 -0.00449569 0.00116773 -0.00307708 0.00156431 -0.00190221 0.00202566 -0.000816544 0.00254118 0.000394163 0.00309947 0.00173902 0.00368899 0.0033622 0.00429813 0.00524894 0.00491676 0.00742482 0.00553625 0.00981266 0.00615048 0.0123242 0.00675625 0.0147971 0.00735436 0.0170385 0.00795001 0.0188019 0.00855311 0.0198146 0.00917742 0.019782 0.00983854 0.0184237 0.0105501 0.0155127 0.0113192 0.0109436 0.0121412 0.00480148 0.0129986 -0.00257663 0.0138632 -0.0105895 0.0147044 -0.0184162 0.0154998 -0.0251229 0.0162437 -0.0297809 0.0169504 -0.0316021 0.0176478 -0.0300515 0.0183633 -0.0250416 0.0191099 -0.017023 0.0198761 -0.00715036 0.0206325 0.00311569 0.0213383 0.0119813 0.0219602 0.0185302 0.0224688 0.0216282 0.0228629 0.0225406 0.0231321 0.0200261 0.023319 0.0184991 0.0125787 0.000191465 -0.00873698 0.000314847 -0.00599594 0.000544081 -0.00472492 0.000861247 -0.00339425 0.00126589 -0.00230686 0.00173985 -0.0012905 0.0022713 -0.000137285 0.0028476 0.00116272 0.00345689 0.0027529 0.00408733 0.00461849 0.00472862 0.00678354 0.00537192 0.00916936 0.00601103 0.0116851 0.00664257 0.0141656 0.00726721 0.0164138 0.00788992 0.0181791 0.00852034 0.0191842 0.00917179 0.0191306 0.00985922 0.0177362 0.0105953 0.0147766 0.0113857 0.0101532 0.0122247 0.00396256 0.0130932 -0.00344518 0.0139626 -0.0114588 0.0148023 -0.0192559 0.0155906 -0.0259112 0.0163234 -0.0305137 0.0170166 -0.0322954 0.0177003 -0.0307352 0.0184036 -0.0257449 0.0191407 -0.0177601 0.0199009 -0.00791059 0.0206543 0.00236231 0.0213587 0.0112769 0.0219793 0.0179095 0.0224857 0.0211218 0.022876 0.0221503 0.0231394 0.0197627 0.0233192 0.0183192 0.0125134 -7.77938e-05 -0.0087037 3.20016e-05 -0.00610573 0.000263206 -0.00495613 0.000583722 -0.00371477 0.000995365 -0.0027185 0.00148037 -0.00177551 0.00202678 -0.000683695 0.0026191 0.000570406 0.00324652 0.00212548 0.00389667 0.00396834 0.00455912 0.00612109 0.0052249 0.00850358 0.00588773 0.0110222 0.0065441 0.0135092 0.0071945 0.0157634 0.00784365 0.01753 0.00850088 0.018527 0.00917898 0.0184525 0.00989215 0.0170231 0.010652 0.0140168 0.0114629 0.00934232 0.0123176 0.00310789 0.013196 -0.00432359 0.0140687 -0.0123316 0.0149055 -0.0200927 0.0156855 -0.0266912 0.0164061 -0.0312343 0.017085 -0.0329742 0.0177539 -0.031404 0.0184439 -0.0264349 0.0191707 -0.0184869 0.0199241 -0.00866406 0.0206739 0.00161254 0.0213766 0.0105742 0.021996 0.0172901 0.0225003 0.0206174 0.0228873 0.0217634 0.0231454 0.0195046 0.0233188 0.0181457 0.0124566 -0.000329091 -0.0086461 -0.000206164 -0.00622866 1.79006e-05 -0.00518019 0.000336833 -0.0040337 0.000754601 -0.00313627 0.00124975 -0.00227066 0.00180888 -0.00124283 0.00241587 -3.65767e-05 0.00305995 0.0014814 0.00372809 0.00330019 0.00441015 0.00543904 0.00509697 0.00781676 0.00578226 0.0103369 0.00646236 0.0128291 0.00713761 0.0150882 0.00781244 0.0168552 0.00849578 0.0178436 0.00919985 0.0177484 0.00993799 0.0162849 0.0107207 0.0132341 0.0115509 0.00851208 0.01242 0.00223878 0.0133069 -0.00521043 0.0141816 -0.0132063 0.0150141 -0.0209252 0.0157846 -0.0274617 0.0164919 -0.0319416 0.0171554 -0.0336377 0.0178086 -0.0320572 0.0184844 -0.0271106 0.0191999 -0.0192024 0.0199458 -0.00940995 0.0206914 0.000866973 0.021392 0.00987358 0.0220102 0.0166719 0.0225127 0.0201149 0.0228966 0.0213794 0.0231501 0.0192512 0.0233178 0.017978 0.0124075 -0.000543438 -0.00857487 -0.000417574 -0.00635453 -0.000205717 -0.00539205 0.000121664 -0.00436108 0.000545425 -0.00356003 0.00104953 -0.00277476 0.00161928 -0.00181258 0.00224053 -0.000657827 0.00289895 0.000822978 0.00358343 0.00261571 0.00428343 0.00473903 0.00498977 0.00711043 0.00569614 0.00963056 0.00639876 0.0121265 0.00709781 0.0143892 0.00779739 0.0161556 0.00850599 0.017135 0.00923515 0.0170193 0.00999732 0.0155228 0.0108018 0.0124296 0.01165 0.0076638 0.0125321 0.00135669 0.0134259 -0.00610415 0.014301 -0.0140814 0.0151278 -0.0217521 0.0158876 -0.0282215 0.0165806 -0.0326346 0.0172277 -0.0342848 0.0178643 -0.0326938 0.018525 -0.0277714 0.0192285 -0.0199058 0.019966 -0.0101475 0.0207068 0.000126208 0.021405 0.00917532 0.0220219 0.0160551 0.0225227 0.019614 0.0229042 0.020998 0.0231535 0.0190019 0.0233162 0.0178153 0.0123654 -0.000724536 -0.00849432 -0.000597569 -0.00648149 -0.000391374 -0.00559824 -5.96914e-05 -0.00469276 0.000369444 -0.00398917 0.000881396 -0.00328671 0.00146105 -0.00239223 0.00209359 -0.00129037 0.0027653 0.000151274 0.00346435 0.00191666 0.00418057 0.00402281 0.00490479 0.00638621 0.00563075 0.0089046 0.00635456 0.0114027 0.0070762 0.0136675 0.00779945 0.0154323 0.00853227 0.0164022 0.0092855 0.016266 0.0100705 0.0147377 0.0108954 0.0116047 0.0117603 0.00679892 0.0126538 0.000463217 0.0135528 -0.00700311 0.0144267 -0.0149553 0.0152464 -0.0225718 0.0159943 -0.0289694 0.0166719 -0.0333123 0.0173019 -0.0349148 0.0179211 -0.033313 0.0185659 -0.0284161 0.0192564 -0.0205964 0.0199848 -0.0108759 0.0207202 -0.000609166 0.0214157 0.00847977 0.0220312 0.0154396 0.0225306 0.0191146 0.0229098 0.0206187 0.0231556 0.0187562 0.0233139 0.0176569 0.0123295 -0.000872274 -0.00840779 -0.000744182 -0.00660958 -0.000541326 -0.0058011 -0.000204072 -0.00503002 0.000228164 -0.0044214 0.000746949 -0.0038055 0.00133498 -0.00298026 0.00197712 -0.00193251 0.00266056 -0.000532162 0.00337231 0.00120492 0.00410297 0.00329215 0.00484336 0.00564581 0.00558732 0.00816065 0.00633084 0.0106592 0.00707374 0.0129246 0.00781941 0.0146866 0.00857527 0.0156463 0.00935133 0.01549 0.010158 0.0139311 0.0110018 0.0107608 0.0118817 0.00591906 0.0127849 -0.000439937 0.0136873 -0.00790557 0.0145584 -0.0158264 0.0153697 -0.023383 0.0161044 -0.0297041 0.0167658 -0.0339736 0.0173777 -0.0355267 0.0179788 -0.0339141 0.0186069 -0.0290442 0.0192837 -0.0212731 0.0200023 -0.0115945 0.0207317 -0.00133856 0.0214242 0.00778729 0.0220381 0.0148257 0.0225362 0.0186165 0.0229137 0.0202413 0.0231564 0.0185135 0.023311 0.0175023 0.0122989 -0.000986164 -0.00831814 -0.00085622 -0.00673953 -0.000654937 -0.00600238 -0.000313083 -0.00537187 0.000122886 -0.00485737 0.000647445 -0.00433006 0.00124252 -0.00357534 0.00189289 -0.00258288 0.0025859 -0.00122518 0.00330861 0.000482208 0.00405186 0.0025489 0.00480663 0.00489104 0.00556687 0.00740041 0.00632854 0.00989751 0.00709122 0.0121619 0.00785793 0.0139199 0.00863547 0.0148688 0.00943297 0.0146925 0.0102597 0.0131044 0.0111209 0.00989956 0.012014 0.00502596 0.012925 -0.00135094 0.0138292 -0.00880975 0.0146959 -0.0166931 0.0154972 -0.0241843 0.0162177 -0.0304246 0.0168619 -0.0346178 0.0174551 -0.0361199 0.0180373 -0.0344963 0.0186481 -0.029655 0.0193104 -0.0219355 0.0200185 -0.0123026 0.0207413 -0.00206141 0.0214304 0.00709824 0.0220427 0.0142133 0.0225397 0.0181196 0.0229157 0.0198652 0.023156 0.0182732 0.0233075 0.0173507 0.012273 -0.00106569 -0.00822799 -0.000932756 -0.00687246 -0.000731419 -0.00620372 -0.00038507 -0.00571822 5.47888e-05 -0.00529723 0.00058396 -0.00485923 0.00118479 -0.00417617 0.0018418 -0.00323989 0.00254252 -0.0019259 0.00327434 -0.000249607 0.00402827 0.00179497 0.00479554 0.00412376 0.00557028 0.00662567 0.00634838 0.00911941 0.00712926 0.0113811 0.00791547 0.0131337 0.00871316 0.0140711 0.00953055 0.0138751 0.0103757 0.0122592 0.0112526 0.00902269 0.012157 0.00412149 0.013074 -0.00226787 0.013978 -0.0097138 0.0148386 -0.0175537 0.0156285 -0.0249743 0.0163337 -0.0311298 0.0169599 -0.035244 0.0175337 -0.0366938 0.0180966 -0.0350592 0.0186893 -0.0302477 0.0193365 -0.0225827 0.0200333 -0.0129994 0.0207491 -0.00277715 0.0214344 0.00641297 0.022045 0.0136027 0.022541 0.0176236 0.022916 0.0194902 0.0231543 0.0180349 0.0233034 0.0172016 0.0122508 -0.00111041 -0.00813982 -0.000973081 -0.00700979 -0.000770111 -0.00640669 -0.000419192 -0.00606914 2.45866e-05 -0.00574101 0.00055737 -0.00539201 0.00116269 -0.00478149 0.00182474 -0.00390194 0.00253134 -0.0026325 0.00327038 -0.000988647 0.00403301 0.00103234 0.00481085 0.00334593 0.0055982 0.00583832 0.00639094 0.00832667 0.00718827 0.0105837 0.00799231 0.0123297 0.0088085 0.0132549 0.00964408 0.0130395 0.0105059 0.0113974 0.0113965 0.0081321 0.0123103 0.00320765 0.0132312 -0.00318875 0.0141332 -0.0106158 0.014986 -0.0184064 0.0157632 -0.0257516 0.0164521 -0.0318186 0.0170595 -0.0358514 0.0176134 -0.0372477 0.0181563 -0.035602 0.0187304 -0.0308219 0.0193619 -0.0232142 0.020047 -0.0136844 0.0207551 -0.00348526 0.0214362 0.00573184 0.022045 0.0129939 0.0225401 0.0171285 0.0229144 0.019116 0.0231513 0.017798 0.0232987 0.0170541 0.0122316 -0.00111996 -0.00805603 -0.000976689 -0.00715306 -0.000770513 -0.00661287 -0.000414897 -0.00642476 3.1906e-05 -0.00618781 0.00056831 -0.00592841 0.00117689 -0.00539007 0.00184236 -0.00456741 0.0025531 -0.00334324 0.0032973 -0.00173284 0.00406667 0.000262961 0.00485308 0.00255953 0.00565108 0.00504031 0.00645656 0.00752119 0.00726851 0.00977178 0.00808858 0.0115096 0.00892147 0.012422 0.00977339 0.0121876 0.0106499 0.0105209 0.0115522 0.00722982 0.0124733 0.0022865 0.0133961 -0.00411152 0.0142942 -0.0115139 0.0151375 -0.0192497 0.0159008 -0.0265148 0.0165723 -0.0324901 0.0171602 -0.0364394 0.0176937 -0.0377812 0.0182162 -0.0361246 0.0187714 -0.031377 0.0193867 -0.0238295 0.0200593 -0.0143571 0.0207593 -0.00418522 0.0214359 0.00505519 0.0220428 0.0123869 0.0225372 0.0166341 0.0229111 0.0187421 0.0231471 0.017562 0.0232934 0.0169078 0.0122146 -0.00109411 -0.00797897 -0.000943278 -0.00730389 -0.000732308 -0.00682384 -0.000371859 -0.0067852 7.75261e-05 -0.0066372 0.000617183 -0.00646807 0.00122778 -0.00600067 0.00189512 -0.00523475 0.00260816 -0.00405628 0.00335553 -0.00248021 0.00412963 -0.000511131 0.00492253 0.00176662 0.00572916 0.00423369 0.00654539 0.00670495 0.00737003 0.00894715 0.00820421 0.0106754 0.00905186 0.0115744 0.00991816 0.0113213 0.0108074 0.0096317 0.0117192 0.00631796 0.0126455 0.00136019 0.0135681 -0.00503409 0.0144603 -0.0124061 0.0152926 -0.020082 0.0160406 -0.0272628 0.0166938 -0.0331434 0.0172618 -0.0370074 0.0177744 -0.0382938 0.0182763 -0.0366264 0.0188121 -0.0319129 0.0194106 -0.024428 0.0200704 -0.0150168 0.0207617 -0.00487657 0.0214335 0.00438334 0.0220384 0.0117821 0.0225321 0.0161404 0.022906 0.0183682 0.0231417 0.0173263 0.0232876 0.0167619 0.0121991 -0.00103278 -0.00791095 -0.000872758 -0.00746392 -0.000655371 -0.00704122 -0.000290006 -0.00715057 0.000162314 -0.00708952 0.000704148 -0.00700991 0.00131554 -0.00661207 0.00198316 -0.00590236 0.00269667 -0.0047698 0.00344527 -0.00322881 0.00422198 -0.00128784 0.00501931 0.000969286 0.00583247 0.00342053 0.00665739 0.00588003 0.00749267 0.00811188 0.00833895 0.00982917 0.00919934 0.010714 0.0100779 0.0104427 0.0109777 0.00873196 0.0118969 0.00539873 0.0128262 0.000430927 0.0137464 -0.00595436 0.0146309 -0.0132906 0.0154505 -0.0209015 0.016182 -0.0279943 0.0168162 -0.0337776 0.0173636 -0.0375548 0.0178551 -0.0387853 0.0183361 -0.0371074 0.0188522 -0.032429 0.0194337 -0.0250095 0.0200801 -0.0156632 0.0207624 -0.00555887 0.0214291 0.00371661 0.0220318 0.0111794 0.022525 0.0156472 0.0228992 0.0179941 0.023135 0.0170905 0.0232811 0.0166158 0.0121841 -0.000935994 -0.000765265 -0.000539764 -0.000169662 0.000286099 0.000829091 0.00144007 0.00210638 0.00281854 0.00356639 0.00434362 0.00514325 0.00596081 0.0067923 0.00763612 0.00849237 0.00936337 0.0102521 0.0111601 0.0120844 0.0130144 0.0139303 0.0148051 0.0156105 0.0163244 0.0169388 0.0174653 0.0179355 0.0183954 0.0188917 0.0194557 0.0200884 0.0207612 0.0214226 0.022023 0.0225158 0.0228906 0.0231271 0.023274 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 120 ( -0.0371913 -0.0393139 -0.0415575 -0.0439292 -0.0464362 -0.0490864 -0.0518877 -0.0548489 -0.0579792 -0.0612881 -0.0647858 -0.0684832 -0.0723916 -0.076523 -0.0808903 -0.0855067 -0.0903866 -0.095545 -0.100998 -0.106762 -0.112855 -0.119295 -0.126103 -0.1333 -0.140907 -0.148948 -0.157448 -0.166433 -0.175931 -0.185971 -0.0235689 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235687 -0.0235688 -0.0235688 -0.0235689 -0.0235689 -0.023569 -0.0235691 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235688 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.0235689 -0.185967 -0.175928 -0.16643 -0.157445 -0.148945 -0.140903 -0.133296 -0.1261 -0.119292 -0.112851 -0.106758 -0.100995 -0.0955419 -0.0903836 -0.0855038 -0.0808874 -0.0765203 -0.072389 -0.0684808 -0.0647836 -0.061286 -0.0579772 -0.0548471 -0.051886 -0.0490848 -0.0464348 -0.0439279 -0.0415563 -0.0393128 -0.0371905 ) ; } outlet { type calculated; value nonuniform List<scalar> 120 ( 0.0365751 0.03866 0.0408641 0.0431943 0.0456579 0.0482627 0.0510167 0.0539288 0.057008 0.0602641 0.0637073 0.0673485 0.0711992 0.0752715 0.0795783 0.0841331 0.0889502 0.0940447 0.0994324 0.10513 0.111155 0.117527 0.124263 0.131385 0.138914 0.146873 0.155283 0.16417 0.173558 0.183474 0.0232825 0.023276 0.0232698 0.0232637 0.0232579 0.0232524 0.023247 0.0232419 0.023237 0.0232324 0.0232279 0.0232237 0.0232197 0.0232159 0.0232123 0.0232089 0.0232057 0.0232028 0.0232 0.0231974 0.023195 0.0231927 0.0231907 0.0231887 0.023187 0.0231854 0.0231839 0.0231825 0.0231813 0.0231801 0.0235518 0.0235414 0.0235311 0.0235209 0.0235106 0.0235004 0.0234903 0.0234802 0.0234702 0.0234603 0.0234505 0.0234407 0.0234311 0.0234215 0.0234121 0.0234028 0.0233936 0.0233845 0.0233756 0.0233669 0.0233583 0.0233498 0.0233416 0.0233335 0.0233256 0.0233179 0.0233104 0.0233031 0.023296 0.0232891 0.19188 0.18147 0.171584 0.162203 0.153309 0.144882 0.136902 0.12935 0.122205 0.115448 0.109062 0.103026 0.0973244 0.0919388 0.0868529 0.0820506 0.0775165 0.0732359 0.0691949 0.06538 0.0617786 0.0583786 0.0551686 0.0521378 0.049276 0.0465737 0.0440217 0.0416115 0.039335 0.0371847 ) ; } top { type symmetryPlane; value uniform 0; } bottom { type symmetryPlane; value uniform 0; } cylinder { type calculated; value nonuniform List<scalar> 240 ( 1.35525e-20 0 -2.48102e-45 -1.0842e-19 0 -2.1684e-19 -2.1684e-19 2.1684e-19 -2.1684e-19 -7.01489e-45 0 0 7.12702e-45 4.33681e-19 0 4.33681e-19 -4.33681e-19 0 4.33681e-19 4.33681e-19 0 4.33681e-19 0 0 4.33681e-19 -8.67362e-19 4.33681e-19 8.67362e-19 3.18882e-43 -4.33681e-19 -1.35525e-20 0 2.48102e-45 1.0842e-19 0 2.1684e-19 2.1684e-19 -2.1684e-19 1.17244e-44 7.01489e-45 0 -2.1684e-19 -7.12702e-45 -4.33681e-19 4.33681e-19 -4.33681e-19 4.33681e-19 0 -8.67362e-19 0 0 0 0 0 -4.33681e-19 8.67362e-19 -2.84623e-43 -8.67362e-19 -3.18882e-43 4.33681e-19 -4.33681e-19 3.18882e-43 8.67362e-19 4.33681e-19 -4.33681e-19 4.33681e-19 0 0 4.33681e-19 0 4.33681e-19 4.33681e-19 0 -4.33681e-19 4.33681e-19 0 4.33681e-19 7.12702e-45 0 0 -7.01489e-45 -2.1684e-19 2.1684e-19 -2.1684e-19 -2.1684e-19 0 -1.0842e-19 -5.42101e-20 5.42101e-20 1.35525e-20 -1.35525e-20 0 2.48102e-45 1.0842e-19 0 2.1684e-19 2.1684e-19 -2.1684e-19 1.17244e-44 7.01489e-45 0 -2.1684e-19 -7.12702e-45 -4.33681e-19 4.33681e-19 -4.33681e-19 4.33681e-19 0 -8.67362e-19 0 0 0 0 0 -4.33681e-19 8.67362e-19 -2.84623e-43 -8.67362e-19 -3.18882e-43 4.33681e-19 -4.33681e-19 3.18882e-43 8.67362e-19 4.33681e-19 -4.33681e-19 4.33681e-19 0 0 4.33681e-19 0 4.33681e-19 4.33681e-19 0 -4.33681e-19 4.33681e-19 0 4.33681e-19 7.12702e-45 0 0 -7.01489e-45 -2.1684e-19 2.1684e-19 -2.1684e-19 -2.1684e-19 0 -1.0842e-19 -5.42101e-20 5.42101e-20 1.35525e-20 4.33681e-19 -3.18882e-43 -8.67362e-19 -4.33681e-19 4.33681e-19 4.33681e-19 0 0 -4.33681e-19 0 -4.33681e-19 -4.33681e-19 0 4.33681e-19 -4.33681e-19 0 -4.33681e-19 -7.12702e-45 0 0 7.01489e-45 1.17244e-44 -2.1684e-19 0 2.1684e-19 0 1.0842e-19 2.48102e-45 0 -1.35525e-20 1.35525e-20 0 -2.48102e-45 -1.0842e-19 0 -2.1684e-19 -2.1684e-19 2.1684e-19 -2.1684e-19 -7.01489e-45 0 0 7.12702e-45 4.33681e-19 0 4.33681e-19 -4.33681e-19 0 4.33681e-19 4.33681e-19 0 4.33681e-19 0 0 4.33681e-19 -8.67362e-19 4.33681e-19 8.67362e-19 3.18882e-43 -4.33681e-19 4.33681e-19 -3.18882e-43 -8.67362e-19 -4.33681e-19 4.33681e-19 4.33681e-19 0 0 -4.33681e-19 0 -4.33681e-19 -4.33681e-19 0 4.33681e-19 -4.33681e-19 0 -4.33681e-19 -7.12702e-45 0 0 7.01489e-45 1.17244e-44 -2.1684e-19 0 2.1684e-19 0 1.0842e-19 2.48102e-45 0 -1.35525e-20 ) ; } frontandback { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "jezvonek@gmail.com" ]
jezvonek@gmail.com
ae79a73ac8ef1c5dc3d7186911dcf830ae45482f
4c72d41e27022b9ecd7b373f3ea8e9ba1c9a30e0
/src/moc/moc_mgmodelviewerwidget.cpp
595a443e2a770519909a680b8770506f8beff5a8
[]
no_license
jon1scr/MGF-Explorer
25d657310cc83a12d2b623d7220a1f9fe1d9b397
6d773991188d0ed189c421905e6fca3a18ec1e95
refs/heads/master
2023-01-13T12:32:55.549226
2020-11-15T23:00:53
2020-11-15T23:00:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,964
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'mgmodelviewerwidget.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.14.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include <memory> #include "../widgets/mgmodelviewerwidget.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'mgmodelviewerwidget.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.14.2. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE QT_WARNING_PUSH QT_WARNING_DISABLE_DEPRECATED struct qt_meta_stringdata_MGModelViewerWidget_t { QByteArrayData data[1]; char stringdata0[20]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_MGModelViewerWidget_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_MGModelViewerWidget_t qt_meta_stringdata_MGModelViewerWidget = { { QT_MOC_LITERAL(0, 0, 19) // "MGModelViewerWidget" }, "MGModelViewerWidget" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_MGModelViewerWidget[] = { // content: 8, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; void MGModelViewerWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } QT_INIT_METAOBJECT const QMetaObject MGModelViewerWidget::staticMetaObject = { { QMetaObject::SuperData::link<QWidget::staticMetaObject>(), qt_meta_stringdata_MGModelViewerWidget.data, qt_meta_data_MGModelViewerWidget, qt_static_metacall, nullptr, nullptr } }; const QMetaObject *MGModelViewerWidget::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *MGModelViewerWidget::qt_metacast(const char *_clname) { if (!_clname) return nullptr; if (!strcmp(_clname, qt_meta_stringdata_MGModelViewerWidget.stringdata0)) return static_cast<void*>(this); if (!strcmp(_clname, "AMGFResourceViewer")) return static_cast< AMGFResourceViewer*>(this); return QWidget::qt_metacast(_clname); } int MGModelViewerWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QWidget::qt_metacall(_c, _id, _a); return _id; } QT_WARNING_POP QT_END_MOC_NAMESPACE
[ "tomjw@protonmail.ch" ]
tomjw@protonmail.ch
ddc3e797bacc4bfc42f906a3d154002d8a8af91b
178fd37e3a401066f684e6134b2bff5514d9a6b4
/CultyGame/Source/CultyGame/Spell_System.h
663f18515ebd3911d8dd728fac7d51465c5f5c6e
[]
no_license
beimy/DementiaGame
fbd88357500beecb11467eaef550a9b1f0ef4bfe
58d585604f73d1a522f0f78c287f0523e86e3149
refs/heads/master
2022-11-13T02:49:07.503101
2020-04-22T10:55:29
2020-04-22T10:55:29
227,208,089
0
0
null
null
null
null
UTF-8
C++
false
false
1,021
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Components/ActorComponent.h" #include "Spell_System.generated.h" UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) ) class CULTYGAME_API USpell_System : public UActorComponent { GENERATED_BODY() public: // Sets default values for this component's properties USpell_System(); //Distance that the line trace travels float dist = 500.0f; //Casts the spell that is equiped void CastEquipedSpell(); //Gets the equiped spell void FindEquipedSpell(); FVector GetLineTraceStart(); FVector GetLineTraceEnd(); float MadnessCost = 50.0f; //Ensures player has enough madness to cast the spell void MadnessCheck(); protected: // Called when the game starts virtual void BeginPlay() override; public: // Called every frame virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override; };
[ "arbm159357@gmail.com" ]
arbm159357@gmail.com
65726ae8c7dc19c4decb46c29d4928dc5f89b104
5ebd5cee801215bc3302fca26dbe534e6992c086
/blazetest/src/mathtest/smatsmatmult/HCbDCa.cpp
dc46e95a69ce17215bf386dcdb39056f1b79424b
[ "BSD-3-Clause" ]
permissive
mhochsteger/blaze
c66d8cf179deeab4f5bd692001cc917fe23e1811
fd397e60717c4870d942055496d5b484beac9f1a
refs/heads/master
2020-09-17T01:56:48.483627
2019-11-20T05:40:29
2019-11-20T05:41:35
223,951,030
0
0
null
null
null
null
UTF-8
C++
false
false
5,160
cpp
//================================================================================================= /*! // \file src/mathtest/smatsmatmult/HCbDCa.cpp // \brief Source file for the HCbDCa sparse matrix/sparse matrix multiplication math test // // Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or modify it under // the terms of the New (Revised) BSD License. Redistribution and use in source and binary // forms, with or without modification, are permitted provided that the following conditions // are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // 2. Redistributions in binary form must reproduce the above copyright notice, this list // of conditions and the following disclaimer in the documentation and/or other materials // provided with the distribution. // 3. Neither the names of the Blaze development group nor the names of its contributors // may be used to endorse or promote products derived from this software without specific // prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT // SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR // BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH // DAMAGE. */ //================================================================================================= //************************************************************************************************* // Includes //************************************************************************************************* #include <cstdlib> #include <iostream> #include <blaze/math/CompressedMatrix.h> #include <blaze/math/DiagonalMatrix.h> #include <blaze/math/HermitianMatrix.h> #include <blazetest/mathtest/Creator.h> #include <blazetest/mathtest/smatsmatmult/OperationTest.h> #include <blazetest/system/MathTest.h> #ifdef BLAZE_USE_HPX_THREADS # include <hpx/hpx_main.hpp> #endif //================================================================================================= // // MAIN FUNCTION // //================================================================================================= //************************************************************************************************* int main() { std::cout << " Running 'HCbDCa'..." << std::endl; using blazetest::mathtest::NumericA; using blazetest::mathtest::NumericB; try { // Matrix type definitions using HCb = blaze::HermitianMatrix< blaze::CompressedMatrix<NumericB> >; using DCa = blaze::DiagonalMatrix< blaze::CompressedMatrix<NumericA> >; // Creator type definitions using CHCb = blazetest::Creator<HCb>; using CDCa = blazetest::Creator<DCa>; // Running tests with small matrices for( size_t i=0UL; i<=6UL; ++i ) { RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, 0UL ), CDCa( i, 0UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, 0UL ), CDCa( i, 0.5*i ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, 0UL ), CDCa( i, i ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, 0.3*i*i ), CDCa( i, 0UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, 0.3*i*i ), CDCa( i, 0.5*i ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, 0.3*i*i ), CDCa( i, i ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, i*i ), CDCa( i, 0UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, i*i ), CDCa( i, 0.5*i ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( i, i*i ), CDCa( i, i ) ); } // Running tests with large matrices RUN_SMATSMATMULT_OPERATION_TEST( CHCb( 15UL, 7UL ), CDCa( 15UL, 7UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( 37UL, 7UL ), CDCa( 37UL, 7UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( 63UL, 13UL ), CDCa( 63UL, 13UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( 16UL, 8UL ), CDCa( 16UL, 8UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( 32UL, 8UL ), CDCa( 32UL, 8UL ) ); RUN_SMATSMATMULT_OPERATION_TEST( CHCb( 64UL, 16UL ), CDCa( 64UL, 16UL ) ); } catch( std::exception& ex ) { std::cerr << "\n\n ERROR DETECTED during sparse matrix/sparse matrix multiplication:\n" << ex.what() << "\n"; return EXIT_FAILURE; } return EXIT_SUCCESS; } //*************************************************************************************************
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
130144c22bf8f5b575c8ce287994521261791f9d
21e43827c3d40191621bec988a00d367d2762881
/solved/obtain 2 zeros.cpp
0513643931a0b2e40c139f38b63475fec5f2fac7
[]
no_license
manavroX/codeforces-problem-solutions
297d9e3c18ea336e74d422ef8f50ae4c1260bab7
7dda7bc7b76a9b162a98bb07e15e5dbe44bd994c
refs/heads/main
2023-04-24T03:22:27.138747
2021-05-13T14:02:59
2021-05-13T14:02:59
367,061,791
0
0
null
null
null
null
UTF-8
C++
false
false
498
cpp
#include <iostream> using namespace std; int main() { int t; cin >> t; bool ans[t]; for(int i=0;i<t;i++) { int a,b; cin >> a >> b; if(((2*a)-b)%3==0&&((2*b)-a)%3==0&&((2*a)-b)>=0&&((2*b)-a)>=0) { ans[i]=true; } else { ans[i]=false; } } for(int i=0;i<t;i++) { if(ans[i]) cout << "yes"<<endl; else cout << "no"<<endl; } return 0; }
[ "38128162+manavroX@users.noreply.github.com" ]
38128162+manavroX@users.noreply.github.com
8b1628ca51ed077d5bfd91e0b5f13f682ed88233
5e502618dfdfa9e104aaf2ba8d6757737e5123d8
/Assignment3/PhysicsProject/MainApp.h
22e49c7ad35a389143165e6d0e731424401dd3aa
[]
no_license
ccmccooey/Game_Physics
96d96f390222261f6155e851009ec88ea7e2efa3
8b0ae74b95c3973aa62e3182a7cc3df84e7383d2
refs/heads/master
2021-01-25T05:28:02.878845
2015-05-01T22:05:13
2015-05-01T22:05:13
29,218,246
1
0
null
null
null
null
UTF-8
C++
false
false
1,132
h
#ifndef _MAIN_APP_H #define _MAIN_APP_H class Camera; class GuiSystem; class GraphicsSystem; class PhysicsSystem; class Game; class CameraContainer; class Skybox; class MainApp { private: static MainApp* msApplication; private: GraphicsSystem* mGraphicsSystem; PhysicsSystem* mPhysicsSystem; Game* mGame; Camera* mCamera; CameraContainer* mCameraContainer; GuiSystem* mGuiSystem; Skybox* mSkybox; int mWindowWidth; int mWindowHeight; bool mPaused; double mRunSpeed; float mCameraRotationSpeed; float mCameraMoveSpeed; bool mDebugInfo; bool mUpdateOnlyOnce; public: MainApp(); ~MainApp(); void CheckMouseInput(int x, int y, bool mouseDown, bool mouseClicked); void CheckCameraMovement(); void UpdateWindowSize(int w, int h); void FixedUpdate(double value); void IncreaseRunSpeed(double amount); void DecreaseRunSpeed(double amount); void CheckGui(); void UpdateDebugInformation(); void UpdateHudInformation(); void UpdateSkyboxPosition(); static PhysicsSystem* GetPhysicsSystem(); void RenderScene(); private: void Initialize(); void CleanUp(); public: static MainApp* GetApp(); }; #endif
[ "ccmccooey@gmail.com" ]
ccmccooey@gmail.com
74ce0dcdb25c3e7304fc61cf9c6150df49ca3dfe
3c6faf45fa2a2c1daa7b3a56c507bcc0273b3463
/Source/BattleOfShips/ShipComponentBase.cpp
c98ea69e500f8f0c290c93093c0847975ed9ccd6
[]
no_license
wangyars/BattleOfShips
fd396d10b19b2afce4f65a6b9943cc659f0f8749
278e0e4c72a4cb27da07803f0ab4a80ab55d4e09
refs/heads/master
2020-06-14T19:32:04.270182
2016-12-02T02:41:36
2016-12-02T02:41:36
75,353,698
1
0
null
null
null
null
UTF-8
C++
false
false
875
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "BattleOfShips.h" #include "ShipComponentBase.h" // Sets default values for this component's properties UShipComponentBase::UShipComponentBase() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to improve performance if you don't need them. PrimaryComponentTick.bCanEverTick = true; // ... } // Called when the game starts void UShipComponentBase::BeginPlay() { Super::BeginPlay(); // ... } // Called every frame void UShipComponentBase::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) { Super::TickComponent(DeltaTime, TickType, ThisTickFunction); // ... } void UShipComponentBase::SetActive(bool IsActive) { bIsActive = IsActive; }
[ "wangyars@hotmail.com" ]
wangyars@hotmail.com
a5ace7bc0d5b615bdabd9eca911bda053fa7cc46
c4befd186f8efed065f03f188b38a48528ce9704
/hipify-clang/src/HipifyAction.h
af75f93063ffdb9971bd2ea5ab1ff771700aaef2
[ "MIT" ]
permissive
rahulmula/Gladiator_Hip
579d676d6096feacca507e24b51821ec07f3da62
fcede25343a79f5005f5a4d88a8c0e41205dc08f
refs/heads/master
2020-03-19T09:16:48.044867
2018-06-07T09:33:43
2018-06-07T09:33:43
136,274,246
1
0
null
null
null
null
UTF-8
C++
false
false
3,751
h
#pragma once #include "clang/Lex/PPCallbacks.h" #include "clang/Tooling/Tooling.h" #include "clang/Frontend/FrontendAction.h" #include "clang/Tooling/Core/Replacement.h" #include "clang/ASTMatchers/ASTMatchFinder.h" #include "ReplacementsFrontendActionFactory.h" #include "Statistics.h" namespace ct = clang::tooling; /** * A FrontendAction that hipifies CUDA programs. */ class HipifyAction : public clang::ASTFrontendAction, public clang::ast_matchers::MatchFinder::MatchCallback { private: ct::Replacements* replacements; std::unique_ptr<clang::ast_matchers::MatchFinder> Finder; /// CUDA implicitly adds its runtime header. We rewrite explicitly-provided CUDA includes with equivalent // ones, and track - using this flag - if the result led to us including the hip runtime header. If it did // not, we insert it at the top of the file when we finish processing it. // This approach means we do the best it's possible to do w.r.t preserving the user's include order. bool insertedRuntimeHeader = false; bool insertedBLASHeader = false; bool insertedRANDHeader = false; bool insertedRAND_kernelHeader = false; bool insertedDNNHeader = false; bool firstHeader = false; bool pragmaOnce = false; clang::SourceLocation firstHeaderLoc; clang::SourceLocation pragmaOnceLoc; /** * Rewrite a string literal to refer to hip, not CUDA. */ void RewriteString(StringRef s, clang::SourceLocation start); /** * Replace a CUDA identifier with the corresponding hip identifier, if applicable. */ void RewriteToken(const clang::Token &t); public: explicit HipifyAction(ct::Replacements *replacements): clang::ASTFrontendAction(), replacements(replacements) {} // MatchCallback listeners bool cudaBuiltin(const clang::ast_matchers::MatchFinder::MatchResult& Result); bool cudaLaunchKernel(const clang::ast_matchers::MatchFinder::MatchResult& Result); bool cudaSharedIncompleteArrayVar(const clang::ast_matchers::MatchFinder::MatchResult& Result); /** * Called by the preprocessor for each include directive during the non-raw lexing pass. */ void InclusionDirective(clang::SourceLocation hash_loc, const clang::Token &include_token, StringRef file_name, bool is_angled, clang::CharSourceRange filename_range, const clang::FileEntry *file, StringRef search_path, StringRef relative_path, const clang::Module *imported); /** * Called by the preprocessor for each pragma directive during the non-raw lexing pass. */ void PragmaDirective(clang::SourceLocation Loc, clang::PragmaIntroducerKind Introducer); protected: /** * Add a Replacement for the current file. These will all be applied after executing the FrontendAction. */ void insertReplacement(const ct::Replacement& rep, const clang::FullSourceLoc& fullSL); /** * FrontendAction entry point. */ void ExecuteAction() override; /** * Called at the start of each new file to process. */ void EndSourceFileAction() override; /** * MatchCallback API entry point. Called by the AST visitor while searching the AST for things we registered an * interest for. */ void run(const clang::ast_matchers::MatchFinder::MatchResult& Result) override; std::unique_ptr<clang::ASTConsumer> CreateASTConsumer(clang::CompilerInstance &CI, llvm::StringRef InFile) override; bool Exclude(const hipCounter & hipToken); };
[ "rmula@amd.com" ]
rmula@amd.com
be7fdb7f76dd48eccd25e7471a0e8700330308b7
312ac2db68db9bae2ea5db87ca05329a77564216
/1101/C [Division and Union].cpp
fd10c4e2e19f2809795c96e3a1d93c5f280644a9
[]
no_license
Nikhil-Medam/Codeforces-Solutions
3107023a4bbfc6bcf82ab05ed840a6d621567876
71f6304d7b9d87aac05f5b5c27a9f277ffdad4cd
refs/heads/master
2020-06-17T07:30:24.618634
2019-07-08T16:13:35
2019-07-08T16:13:35
195,846,206
1
0
null
null
null
null
UTF-8
C++
false
false
2,133
cpp
#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define endl "\n" #define ll long long #define int long long #define pb push_back const int N=1e5+5; int max(int a,int b) { if(a>=b) return a; else return b; } int min(int a,int b) { if(a<=b) return a; else return b; } ll diff(ll a,ll b) { if(a>=b) return a-b; else return b-a; } void pairsort(int a[], int b[], ll n) { pair<int, int> pairt[n]; for (int i = 0; i < n; i++) { pairt[i].first = a[i]; pairt[i].second = b[i]; } sort(pairt, pairt + n); for (int i = 0; i < n; i++) { a[i] = pairt[i].first; b[i] = pairt[i].second; } } ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } int isPrime(int n) { if(n < 2) return 0; if(n < 4) return 1; if(n % 2 == 0 or n % 3 == 0) return 0; for(int i = 5; i*i <= n; i += 6) if(n % i == 0 or n % (i+2) == 0) return 0; return 1; } long long C(int n, int r) { if(r > n - r) r = n - r; long long ans = 1; int i; for(i = 1; i <= r; i++) { ans *= n - r + i; ans /= i; } return ans; } ll mod = 1e9+7; ll modexpo(ll x,ll p) { ll res = 1; x = x%mod; while(p) { if(p%2) res = res * x; p >>= 1; x = x*x % mod; res %= mod; } return res; } int32_t main() { IOS; int t; cin>>t; while(t--) { int n; map<int,int> m; cin>>n; vector<tuple<int,int,int>> v; for(int i=0;i<n;i++) { int l,r; cin>>l>>r; v.push_back(make_tuple(l,r,i)); } sort(v.begin(),v.end()); int M=get<1>(v[0]),x=0; m[get<2>(v[0])]=1; for(int i=1;i<n;i++) { if(get<0>(v[i])>M) break; m[get<2>(v[i])]=1; M=max(M,get<1>(v[i])); x++; } if(x==n-1) { cout<<-1<<endl; continue; } for(int i=0;i<n;i++) cout<<m[i]+1<<" "; cout<<endl; } return 0; }
[ "medam.nikhil@gmail.com" ]
medam.nikhil@gmail.com
1991b28b3909cd4c27e6b8eaa438546ea2abcd14
641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2
/third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.cpp
147887d18781bbbc8e3b4f22b6b06883dfbc0b18
[ "LGPL-2.0-or-later", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-1.0-or-later", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft", "MIT", "Apache-2.0", "BSD-3-Clause" ]
permissive
massnetwork/mass-browser
7de0dfc541cbac00ffa7308541394bac1e945b76
67526da9358734698c067b7775be491423884339
refs/heads/master
2022-12-07T09:01:31.027715
2017-01-19T14:29:18
2017-01-19T14:29:18
73,799,690
4
4
BSD-3-Clause
2022-11-26T11:53:23
2016-11-15T09:49:29
null
UTF-8
C++
false
false
10,264
cpp
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "modules/fetch/DataConsumerHandleTestUtil.h" #include "bindings/core/v8/DOMWrapperWorld.h" #include "wtf/PtrUtil.h" #include <memory> namespace blink { using Result = WebDataConsumerHandle::Result; namespace { class WaitingHandle final : public WebDataConsumerHandle { private: class ReaderImpl final : public WebDataConsumerHandle::Reader { public: Result beginRead(const void** buffer, WebDataConsumerHandle::Flags, size_t* available) override { *available = 0; *buffer = nullptr; return ShouldWait; } Result endRead(size_t) override { return UnexpectedError; } }; std::unique_ptr<Reader> obtainReader(Client*) override { return WTF::wrapUnique(new ReaderImpl); } const char* debugName() const override { return "WaitingHandle"; } }; } // namespace DataConsumerHandleTestUtil::Thread::Thread( const char* name, InitializationPolicy initializationPolicy) : m_thread( WebThreadSupportingGC::create(name, BlinkGC::MainThreadHeapMode)), m_initializationPolicy(initializationPolicy), m_waitableEvent(makeUnique<WaitableEvent>()) { m_thread->postTask( BLINK_FROM_HERE, crossThreadBind(&Thread::initialize, crossThreadUnretained(this))); m_waitableEvent->wait(); } DataConsumerHandleTestUtil::Thread::~Thread() { m_thread->postTask( BLINK_FROM_HERE, crossThreadBind(&Thread::shutdown, crossThreadUnretained(this))); m_waitableEvent->wait(); } void DataConsumerHandleTestUtil::Thread::initialize() { if (m_initializationPolicy >= ScriptExecution) { m_isolateHolder = makeUnique<gin::IsolateHolder>(); isolate()->Enter(); } m_thread->initialize(); if (m_initializationPolicy >= ScriptExecution) { v8::HandleScope handleScope(isolate()); m_scriptState = ScriptState::create(v8::Context::New(isolate()), DOMWrapperWorld::create(isolate())); } if (m_initializationPolicy >= WithExecutionContext) { m_executionContext = new NullExecutionContext(); } m_waitableEvent->signal(); } void DataConsumerHandleTestUtil::Thread::shutdown() { m_executionContext = nullptr; if (m_scriptState) { m_scriptState->disposePerContextData(); } m_scriptState = nullptr; m_thread->shutdown(); if (m_isolateHolder) { isolate()->Exit(); isolate()->RequestGarbageCollectionForTesting( isolate()->kFullGarbageCollection); m_isolateHolder = nullptr; } m_waitableEvent->signal(); } class DataConsumerHandleTestUtil::ReplayingHandle::ReaderImpl final : public Reader { public: ReaderImpl(PassRefPtr<Context> context, Client* client) : m_context(context) { m_context->attachReader(client); } ~ReaderImpl() { m_context->detachReader(); } Result beginRead(const void** buffer, Flags flags, size_t* available) override { return m_context->beginRead(buffer, flags, available); } Result endRead(size_t readSize) override { return m_context->endRead(readSize); } private: RefPtr<Context> m_context; }; void DataConsumerHandleTestUtil::ReplayingHandle::Context::add( const Command& command) { MutexLocker locker(m_mutex); m_commands.append(command); } void DataConsumerHandleTestUtil::ReplayingHandle::Context::attachReader( WebDataConsumerHandle::Client* client) { MutexLocker locker(m_mutex); DCHECK(!m_readerThread); DCHECK(!m_client); m_readerThread = Platform::current()->currentThread(); m_client = client; if (m_client && !(isEmpty() && m_result == ShouldWait)) notify(); } void DataConsumerHandleTestUtil::ReplayingHandle::Context::detachReader() { MutexLocker locker(m_mutex); DCHECK(m_readerThread && m_readerThread->isCurrentThread()); m_readerThread = nullptr; m_client = nullptr; if (!m_isHandleAttached) m_detached->signal(); } void DataConsumerHandleTestUtil::ReplayingHandle::Context::detachHandle() { MutexLocker locker(m_mutex); m_isHandleAttached = false; if (!m_readerThread) m_detached->signal(); } WebDataConsumerHandle::Result DataConsumerHandleTestUtil::ReplayingHandle::Context::beginRead( const void** buffer, Flags, size_t* available) { MutexLocker locker(m_mutex); *buffer = nullptr; *available = 0; if (isEmpty()) return m_result; const Command& command = top(); Result result = Ok; switch (command.getName()) { case Command::Data: { auto& body = command.body(); *available = body.size() - offset(); *buffer = body.data() + offset(); result = Ok; break; } case Command::Done: m_result = result = Done; consume(0); break; case Command::Wait: consume(0); result = ShouldWait; notify(); break; case Command::Error: m_result = result = UnexpectedError; consume(0); break; } return result; } WebDataConsumerHandle::Result DataConsumerHandleTestUtil::ReplayingHandle::Context::endRead(size_t readSize) { MutexLocker locker(m_mutex); consume(readSize); return Ok; } DataConsumerHandleTestUtil::ReplayingHandle::Context::Context() : m_offset(0), m_readerThread(nullptr), m_client(nullptr), m_result(ShouldWait), m_isHandleAttached(true), m_detached(makeUnique<WaitableEvent>()) {} const DataConsumerHandleTestUtil::Command& DataConsumerHandleTestUtil::ReplayingHandle::Context::top() { DCHECK(!isEmpty()); return m_commands.first(); } void DataConsumerHandleTestUtil::ReplayingHandle::Context::consume( size_t size) { DCHECK(!isEmpty()); DCHECK(size + m_offset <= top().body().size()); bool fullyConsumed = (size + m_offset >= top().body().size()); if (fullyConsumed) { m_offset = 0; m_commands.removeFirst(); } else { m_offset += size; } } void DataConsumerHandleTestUtil::ReplayingHandle::Context::notify() { if (!m_client) return; DCHECK(m_readerThread); m_readerThread->getWebTaskRunner()->postTask( BLINK_FROM_HERE, crossThreadBind(&Context::notifyInternal, wrapPassRefPtr(this))); } void DataConsumerHandleTestUtil::ReplayingHandle::Context::notifyInternal() { { MutexLocker locker(m_mutex); if (!m_client || !m_readerThread->isCurrentThread()) { // There is no client, or a new reader is attached. return; } } // The reading thread is the current thread. m_client->didGetReadable(); } DataConsumerHandleTestUtil::ReplayingHandle::ReplayingHandle() : m_context(Context::create()) {} DataConsumerHandleTestUtil::ReplayingHandle::~ReplayingHandle() { m_context->detachHandle(); } std::unique_ptr<WebDataConsumerHandle::Reader> DataConsumerHandleTestUtil::ReplayingHandle::obtainReader(Client* client) { return makeUnique<ReaderImpl>(m_context, client); } void DataConsumerHandleTestUtil::ReplayingHandle::add(const Command& command) { m_context->add(command); } DataConsumerHandleTestUtil::HandleReader::HandleReader( std::unique_ptr<WebDataConsumerHandle> handle, std::unique_ptr<OnFinishedReading> onFinishedReading) : m_reader(handle->obtainReader(this)), m_onFinishedReading(std::move(onFinishedReading)) {} void DataConsumerHandleTestUtil::HandleReader::didGetReadable() { WebDataConsumerHandle::Result r = WebDataConsumerHandle::UnexpectedError; char buffer[3]; while (true) { size_t size; r = m_reader->read(buffer, sizeof(buffer), WebDataConsumerHandle::FlagNone, &size); if (r == WebDataConsumerHandle::ShouldWait) return; if (r != WebDataConsumerHandle::Ok) break; m_data.append(buffer, size); } std::unique_ptr<HandleReadResult> result = makeUnique<HandleReadResult>(r, m_data); m_data.clear(); Platform::current()->currentThread()->getWebTaskRunner()->postTask( BLINK_FROM_HERE, WTF::bind(&HandleReader::runOnFinishedReading, WTF::unretained(this), passed(std::move(result)))); m_reader = nullptr; } void DataConsumerHandleTestUtil::HandleReader::runOnFinishedReading( std::unique_ptr<HandleReadResult> result) { DCHECK(m_onFinishedReading); std::unique_ptr<OnFinishedReading> onFinishedReading( std::move(m_onFinishedReading)); (*onFinishedReading)(std::move(result)); } DataConsumerHandleTestUtil::HandleTwoPhaseReader::HandleTwoPhaseReader( std::unique_ptr<WebDataConsumerHandle> handle, std::unique_ptr<OnFinishedReading> onFinishedReading) : m_reader(handle->obtainReader(this)), m_onFinishedReading(std::move(onFinishedReading)) {} void DataConsumerHandleTestUtil::HandleTwoPhaseReader::didGetReadable() { WebDataConsumerHandle::Result r = WebDataConsumerHandle::UnexpectedError; while (true) { const void* buffer = nullptr; size_t size; r = m_reader->beginRead(&buffer, WebDataConsumerHandle::FlagNone, &size); if (r == WebDataConsumerHandle::ShouldWait) return; if (r != WebDataConsumerHandle::Ok) break; // Read smaller than available in order to test |endRead|. size_t readSize = std::min(size, std::max(size * 2 / 3, static_cast<size_t>(1))); m_data.append(static_cast<const char*>(buffer), readSize); m_reader->endRead(readSize); } std::unique_ptr<HandleReadResult> result = makeUnique<HandleReadResult>(r, m_data); m_data.clear(); Platform::current()->currentThread()->getWebTaskRunner()->postTask( BLINK_FROM_HERE, WTF::bind(&HandleTwoPhaseReader::runOnFinishedReading, WTF::unretained(this), passed(std::move(result)))); m_reader = nullptr; } void DataConsumerHandleTestUtil::HandleTwoPhaseReader::runOnFinishedReading( std::unique_ptr<HandleReadResult> result) { DCHECK(m_onFinishedReading); std::unique_ptr<OnFinishedReading> onFinishedReading( std::move(m_onFinishedReading)); (*onFinishedReading)(std::move(result)); } std::unique_ptr<WebDataConsumerHandle> DataConsumerHandleTestUtil::createWaitingDataConsumerHandle() { return wrapUnique(new WaitingHandle); } } // namespace blink
[ "xElvis89x@gmail.com" ]
xElvis89x@gmail.com
cd2ba9c13e82a294277e551d7f29354116682396
34a7861e9b18a88cf97207d9e44f0e16fc624388
/Source/TypingFreakConsole/TouchTyping.cpp
c799e197d82e47fab781658d6f31ac5a557bf16c
[ "MIT" ]
permissive
vexe/typing-freak-console
81451e655a2552ca03d3170d56768dc64aa8cd5d
aaae9e2c699ddc6baffb241bb3f8ede72c8f0d6c
refs/heads/master
2021-01-10T02:00:24.137151
2015-10-19T00:58:36
2015-10-19T00:58:36
44,502,865
1
0
null
null
null
null
UTF-8
C++
false
false
10,503
cpp
#include "TouchTyping.h" //------------------------------------------------------------------- void TouchTyping::knowTheNumberOfCharacters() { fin.seekg(0 , ios::end); // seeking the file pointer to the end of the file. numberOfCharacters = (int)fin.tellg(); } //------------------------------------------------------------------- int TouchTyping::inBetweenWrodsCounter(string word) { if(word.size() <= 4) return 0; int numberOfSplits = 0; for(int i = 0; i < word.size(); i++){ if(i == word.size()-1) break; if( (isupper(word[i]) && islower(word[i+1])) || (word[i] == '.' && word[i+1] != 'h' && (word[i+2] != '>' && word[i+2] != '"' )) || (word[i] == '-' && word[i+1] == '>') || (word[i] == ':' && word[i+1] == ':') || (word[i] == '(' && isalpha(word[i+1])) || (word[i] != ' ' && word[i+1] == '"' && isalpha(word[i+2])) || (word[i] == '[' && isalpha(word[i+1])) || word[i] == '_' ) numberOfSplits++; } return numberOfSplits+1; } //------------------------------------------------------------------- void TouchTyping::knowTheNumberOfWords() { numberOfWords = 0; fin.seekg(0); while(!fin.eof()){ string temp; fin >> temp; if(temp.size() > 1) if((temp.size() == 2 && (isalpha(temp[0]) && isalpha(temp[1])) || (temp.size() > 2 && temp.size() <= 4) && (temp != ""))) numberOfWords++; else numberOfWords += inBetweenWrodsCounter(temp); } } //------------------------------------------------------------------- bool TouchTyping::hasExtension(const string &_fileName) { if(_fileName.size() <= 4) return false; // cuz the smallest name of a file with a .txt extension is something like: a.txt (5 letters long). int begPos = _fileName.size()-4; // Extension Beginning Position, remember that the extension is the last four characters in the _fileName (considering that it's a .txt windows extension) if(_fileName[begPos] == '.' && _fileName[begPos+1] == 't' && _fileName[begPos+2] == 'x' && _fileName[begPos+3] == 't') return true; return false; } //------------------------------------------------------------------- void TouchTyping::addExtension(string &_fileName) { _fileName.push_back('.'); _fileName.push_back('t'); _fileName.push_back('x'); _fileName.push_back('t'); } //------------------------------------------------------------------- void TouchTyping::setTextFile(string _fileName){ static bool opened_a_FileBefore = false; // we don't wanna close something that doesn't hasn't been open before, that's why we needed the opened_a_FileBefore. // this happens in the first time the user picks his source text file. if(opened_a_FileBefore) fin.close(); if(!hasExtension(_fileName)) // if the user typed the file name without the .txt addExtension(_fileName); fin.open(_fileName); if(fin.good()) { sourceFileName= _fileName; getTextFromFile(); knowTheNumberOfCharacters(); knowTheNumberOfWords(); opened_a_FileBefore = true; openedFileSuccessfully = true; cout << "\n\t\t File Opened Successfully.\n"; } else{ cout << "\n\t\t Error Opening File.\n"; openedFileSuccessfully = false; } cout << "\n\t\t Press any key to continue..."; _getch(); } //------------------------------------------------------------------- void TouchTyping::backSpaceVisualTrick() { consoleScreenCoord = getConosleScreenCursorCoord(); gotoXY(--consoleScreenCoord.X , consoleScreenCoord.Y); cout << " "; gotoXY(consoleScreenCoord.X , consoleScreenCoord.Y); } //------------------------------------------------------------------- void TouchTyping::gotoXY(const int &x, const int &y) { COORD __coord; __coord.X = x; __coord.Y = y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE) , __coord); } //------------------------------------------------------------------- COORD TouchTyping::getConosleScreenCursorCoord() { CONSOLE_SCREEN_BUFFER_INFO __cursorInfo; GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE) , &__cursorInfo); return __cursorInfo.dwCursorPosition; } //------------------------------------------------------------------- void TouchTyping::fixSpaceProblemInTheEndOfLines() { for(int i = 0; i < text.size(); i++) if(text[i] == '\n') { for(int k = i-1; text[k] == ' '; k--) text.erase(text.begin() + k); // removing any found unnecessary spaces in the end. } } //------------------------------------------------------------------- void TouchTyping::printReportToScreen() { cout << endl << "X==========================================X" << endl; cout << "\n FILE NAME: " << sourceFileName << endl; cout << "\n\tMISTAKES MADE: " << getNumberOfMistakes() << "\n"; cout << "\n\tTIME NEEDED: " << getTotalTimeTakenToFinish() << " Seconds.\n"; cout << "\n\tCHARCTERS IN FILE: " << getNumberOfCharactersIfTheFile() << "\n"; cout << setprecision(3) << "\n\tSPEED(CPS): " << getCPS() << "\n"; cout << "\n\tWORDS IN FILE: " << getNumberOfWordsInTheFile() << "\n"; cout << setprecision(4) << "\n\tSPEED(WPM): " << getWPM() << "\n"; cout << setprecision(4) <<"\n\tCORRECTNESS PERCENTAGE: " << getCorrectnessPercentage() << "%\n"; cout << setprecision(3) <<"\n\tMISTAKE PERCENTAGE: " << getMistakePercentage() << "%\n"; cout << endl << "X==========================================X" << endl; } //------------------------------------------------------------------- void TouchTyping::printReportToFile() { time_t now; time(&now); // this sets the 'now' to the current time. fout.open(reportFileName , ios::app); // ios::app appends the new report after the last reports. fout << endl << "X==========================================X" << endl; fout << "\n\tFILE NAME: " << sourceFileName << endl; fout << "\n\tDATE-TIME: " << ctime(&now) << endl; // ctime prints the time in a human-readable fashion. fout << "\n\tMISTAKES MADE: " << getNumberOfMistakes() << "\n"; fout << "\n\tTIME NEEDED: " << getTotalTimeTakenToFinish() << " Seconds.\n"; fout << setprecision(3) << "\n\tSPEED(CPS): " << getCPS() << "\n"; fout << setprecision(4) << "\n\tSPEED(WPM): " << getWPM() << "\n"; fout << "\n\tWORDS IN FILE: " << getNumberOfWordsInTheFile() << "\n"; fout << "\n\tCHARCTERS IN FILE: " << getNumberOfCharactersIfTheFile() << "\n"; fout << setprecision(4) <<"\n\tCORRECTNESS PERCENTAGE: " << getCorrectnessPercentage() << "%\n"; fout << setprecision(3) <<"\n\tMISTAKE PERCENTAGE: " << getMistakePercentage() << "%\n"; fout << endl << "X==========================================X" << endl; } //------------------------------------------------------------------- void TouchTyping::printMenu() { cout << "\n\n\n\n\t\t* xXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXx *\n"; cout << "\t\t| |"; cout << "\n\t\t| 1- Start Typing. |\n"; cout << "\t\t| |"; cout << "\n\t\t| 2- Set Source File Name. |\n"; cout << "\t\t| |"; if(wannaMakeSound) cout << "\n\t\t| 3- Disable Sound. |\n"; else cout << "\n\t\t| 3- Enable Sound. |\n"; cout << "\t\t| |"; cout << "\n\t\t| 4- Clear Report File. |\n"; cout << "\t\t| |"; cout << "\n\t\t| 5- Exit. |\n"; cout << "\t\t| |"; cout << "\n\t\t* xXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXx *\n"; } //------------------------------------------------------------------- void TouchTyping::startTyping() { hasTypingSucceeded = false; if(text.size() <= 0){cout << "No Source Text File Selected.\n"; return;} fixSpaceProblemInTheEndOfLines(); bool quit = false; typingIndex = 0; bool isFirstTime = true; COORD beginningPoint = getConosleScreenCursorCoord(); // read further and you know why we needed this. while(!quit && typingIndex != text.size()) { currentLetter = _getch(); if(isFirstTime) {start = clock(); isFirstTime = false;} // this is just to make sure that the timer will start when the user hits something on the keyboard. if(currentLetter == ctrl_Z) quit = true; // ctrl_Z == ctrl + z else if(currentLetter == '\r') // when dealing with getch() the 'enter' button is not '\n' it's '\r' instead, if you wanna get '\n' press ctrl+j instead of enter. { char temp = text[typingIndex]; if(temp != '\n'){ // mistakenly typed enter (not in the end of the line) cout << char(7); numberOfMistakes++; } //storing the position of the cursor when the user typed enter in the newLineTracker. consoleScreenCoord = getConosleScreenCursorCoord(); newLinesTracker.push_back(consoleScreenCoord); cout << endl; typingIndex++; } else if(currentLetter == backspace) // pressed the backspace character. { consoleScreenCoord = getConosleScreenCursorCoord(); // if the cursor is at a beginning of a line, and the user wanna type backspace to get back up to the end of the above line. // but this would allow the user to get up to the original text and delete it !! which is very rude ! // that's why we said: consoleScreenCoord.Y > beginningPoint.Y. if((consoleScreenCoord.X == 0) && (consoleScreenCoord.Y > beginningPoint.Y)) { gotoXY(newLinesTracker.back().X , newLinesTracker.back().Y); newLinesTracker.pop_back(); } else { backSpaceVisualTrick(); } typingIndex--; } else if(currentLetter == text[typingIndex]) { cout << currentLetter; typingIndex++;}// if the right key is pressed go to the next letter in the text. else { // if the wrong key is pressed. numberOfMistakes++; cout << currentLetter; if(wannaMakeSound) cout << char(7); // beep :P consoleScreenCoord = getConosleScreenCursorCoord(); while(true) // forcing him to press backspace and delete the wrong letter pressed and Write the right letter. { gotoXY(consoleScreenCoord.X , consoleScreenCoord.Y); // this is just to keep the cursor holding its position. currentLetter = _getch(); if(currentLetter == backspace){ backSpaceVisualTrick(); break; } if(currentLetter == ctrl_Z){ quit = true; break; } } } } end = clock(); if(currentLetter != ctrl_Z){ cout << "\n\n\n\t\t DONE !\n"; totalTimeTakenToFinish = difftime(float(end), float(start)) / CLOCKS_PER_SEC; // CLOCKS_PER_SEC == 1000 this is just to convert from system time I think to seconds. hasTypingSucceeded = true; } } //-------------------------------------------------------------------
[ "xarxoohx@gmail.com" ]
xarxoohx@gmail.com
f6fcd56e099f843eb66620a94c07c57f007ee83b
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/run-scripts/tmp_5/Z6.3+poreleaseonce+pooncerelease+poacquireonce.c.cbmc.cpp
b192f58db4a52e273908b5af3102ae6855967c64
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C++
false
false
39,728
cpp
// Global variabls: // 4:atom_2_X2_0:1 // 0:vars:3 // 3:atom_2_X0_1:1 // Local global variabls: // 0:thr0:1 // 1:thr1:1 // 2:thr2:1 #define ADDRSIZE 5 #define LOCALADDRSIZE 3 #define NTHREAD 4 #define NCONTEXT 5 #define ASSUME(stmt) __CPROVER_assume(stmt) #define ASSERT(stmt) __CPROVER_assert(stmt, "error") #define max(a,b) (a>b?a:b) char __get_rng(); char get_rng( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } char get_rng_th( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } int main(int argc, char **argv) { // Declare arrays for intial value version in contexts int local_mem[LOCALADDRSIZE]; // Dumping initializations local_mem[0+0] = 0; local_mem[1+0] = 0; local_mem[2+0] = 0; int cstart[NTHREAD]; int creturn[NTHREAD]; // declare arrays for contexts activity int active[NCONTEXT]; int ctx_used[NCONTEXT]; // declare arrays for intial value version in contexts int meminit_[ADDRSIZE*NCONTEXT]; #define meminit(x,k) meminit_[(x)*NCONTEXT+k] int coinit_[ADDRSIZE*NCONTEXT]; #define coinit(x,k) coinit_[(x)*NCONTEXT+k] int deltainit_[ADDRSIZE*NCONTEXT]; #define deltainit(x,k) deltainit_[(x)*NCONTEXT+k] // declare arrays for running value version in contexts int mem_[ADDRSIZE*NCONTEXT]; #define mem(x,k) mem_[(x)*NCONTEXT+k] int co_[ADDRSIZE*NCONTEXT]; #define co(x,k) co_[(x)*NCONTEXT+k] int delta_[ADDRSIZE*NCONTEXT]; #define delta(x,k) delta_[(x)*NCONTEXT+k] // declare arrays for local buffer and observed writes int buff_[NTHREAD*ADDRSIZE]; #define buff(x,k) buff_[(x)*ADDRSIZE+k] int pw_[NTHREAD*ADDRSIZE]; #define pw(x,k) pw_[(x)*ADDRSIZE+k] // declare arrays for context stamps char cr_[NTHREAD*ADDRSIZE]; #define cr(x,k) cr_[(x)*ADDRSIZE+k] char iw_[NTHREAD*ADDRSIZE]; #define iw(x,k) iw_[(x)*ADDRSIZE+k] char cw_[NTHREAD*ADDRSIZE]; #define cw(x,k) cw_[(x)*ADDRSIZE+k] char cx_[NTHREAD*ADDRSIZE]; #define cx(x,k) cx_[(x)*ADDRSIZE+k] char is_[NTHREAD*ADDRSIZE]; #define is(x,k) is_[(x)*ADDRSIZE+k] char cs_[NTHREAD*ADDRSIZE]; #define cs(x,k) cs_[(x)*ADDRSIZE+k] char crmax_[NTHREAD*ADDRSIZE]; #define crmax(x,k) crmax_[(x)*ADDRSIZE+k] char sforbid_[ADDRSIZE*NCONTEXT]; #define sforbid(x,k) sforbid_[(x)*NCONTEXT+k] // declare arrays for synchronizations int cl[NTHREAD]; int cdy[NTHREAD]; int cds[NTHREAD]; int cdl[NTHREAD]; int cisb[NTHREAD]; int caddr[NTHREAD]; int cctrl[NTHREAD]; __LOCALS__ buff(0,0) = 0; pw(0,0) = 0; cr(0,0) = 0; iw(0,0) = 0; cw(0,0) = 0; cx(0,0) = 0; is(0,0) = 0; cs(0,0) = 0; crmax(0,0) = 0; buff(0,1) = 0; pw(0,1) = 0; cr(0,1) = 0; iw(0,1) = 0; cw(0,1) = 0; cx(0,1) = 0; is(0,1) = 0; cs(0,1) = 0; crmax(0,1) = 0; buff(0,2) = 0; pw(0,2) = 0; cr(0,2) = 0; iw(0,2) = 0; cw(0,2) = 0; cx(0,2) = 0; is(0,2) = 0; cs(0,2) = 0; crmax(0,2) = 0; buff(0,3) = 0; pw(0,3) = 0; cr(0,3) = 0; iw(0,3) = 0; cw(0,3) = 0; cx(0,3) = 0; is(0,3) = 0; cs(0,3) = 0; crmax(0,3) = 0; buff(0,4) = 0; pw(0,4) = 0; cr(0,4) = 0; iw(0,4) = 0; cw(0,4) = 0; cx(0,4) = 0; is(0,4) = 0; cs(0,4) = 0; crmax(0,4) = 0; cl[0] = 0; cdy[0] = 0; cds[0] = 0; cdl[0] = 0; cisb[0] = 0; caddr[0] = 0; cctrl[0] = 0; cstart[0] = get_rng(0,NCONTEXT-1); creturn[0] = get_rng(0,NCONTEXT-1); buff(1,0) = 0; pw(1,0) = 0; cr(1,0) = 0; iw(1,0) = 0; cw(1,0) = 0; cx(1,0) = 0; is(1,0) = 0; cs(1,0) = 0; crmax(1,0) = 0; buff(1,1) = 0; pw(1,1) = 0; cr(1,1) = 0; iw(1,1) = 0; cw(1,1) = 0; cx(1,1) = 0; is(1,1) = 0; cs(1,1) = 0; crmax(1,1) = 0; buff(1,2) = 0; pw(1,2) = 0; cr(1,2) = 0; iw(1,2) = 0; cw(1,2) = 0; cx(1,2) = 0; is(1,2) = 0; cs(1,2) = 0; crmax(1,2) = 0; buff(1,3) = 0; pw(1,3) = 0; cr(1,3) = 0; iw(1,3) = 0; cw(1,3) = 0; cx(1,3) = 0; is(1,3) = 0; cs(1,3) = 0; crmax(1,3) = 0; buff(1,4) = 0; pw(1,4) = 0; cr(1,4) = 0; iw(1,4) = 0; cw(1,4) = 0; cx(1,4) = 0; is(1,4) = 0; cs(1,4) = 0; crmax(1,4) = 0; cl[1] = 0; cdy[1] = 0; cds[1] = 0; cdl[1] = 0; cisb[1] = 0; caddr[1] = 0; cctrl[1] = 0; cstart[1] = get_rng(0,NCONTEXT-1); creturn[1] = get_rng(0,NCONTEXT-1); buff(2,0) = 0; pw(2,0) = 0; cr(2,0) = 0; iw(2,0) = 0; cw(2,0) = 0; cx(2,0) = 0; is(2,0) = 0; cs(2,0) = 0; crmax(2,0) = 0; buff(2,1) = 0; pw(2,1) = 0; cr(2,1) = 0; iw(2,1) = 0; cw(2,1) = 0; cx(2,1) = 0; is(2,1) = 0; cs(2,1) = 0; crmax(2,1) = 0; buff(2,2) = 0; pw(2,2) = 0; cr(2,2) = 0; iw(2,2) = 0; cw(2,2) = 0; cx(2,2) = 0; is(2,2) = 0; cs(2,2) = 0; crmax(2,2) = 0; buff(2,3) = 0; pw(2,3) = 0; cr(2,3) = 0; iw(2,3) = 0; cw(2,3) = 0; cx(2,3) = 0; is(2,3) = 0; cs(2,3) = 0; crmax(2,3) = 0; buff(2,4) = 0; pw(2,4) = 0; cr(2,4) = 0; iw(2,4) = 0; cw(2,4) = 0; cx(2,4) = 0; is(2,4) = 0; cs(2,4) = 0; crmax(2,4) = 0; cl[2] = 0; cdy[2] = 0; cds[2] = 0; cdl[2] = 0; cisb[2] = 0; caddr[2] = 0; cctrl[2] = 0; cstart[2] = get_rng(0,NCONTEXT-1); creturn[2] = get_rng(0,NCONTEXT-1); buff(3,0) = 0; pw(3,0) = 0; cr(3,0) = 0; iw(3,0) = 0; cw(3,0) = 0; cx(3,0) = 0; is(3,0) = 0; cs(3,0) = 0; crmax(3,0) = 0; buff(3,1) = 0; pw(3,1) = 0; cr(3,1) = 0; iw(3,1) = 0; cw(3,1) = 0; cx(3,1) = 0; is(3,1) = 0; cs(3,1) = 0; crmax(3,1) = 0; buff(3,2) = 0; pw(3,2) = 0; cr(3,2) = 0; iw(3,2) = 0; cw(3,2) = 0; cx(3,2) = 0; is(3,2) = 0; cs(3,2) = 0; crmax(3,2) = 0; buff(3,3) = 0; pw(3,3) = 0; cr(3,3) = 0; iw(3,3) = 0; cw(3,3) = 0; cx(3,3) = 0; is(3,3) = 0; cs(3,3) = 0; crmax(3,3) = 0; buff(3,4) = 0; pw(3,4) = 0; cr(3,4) = 0; iw(3,4) = 0; cw(3,4) = 0; cx(3,4) = 0; is(3,4) = 0; cs(3,4) = 0; crmax(3,4) = 0; cl[3] = 0; cdy[3] = 0; cds[3] = 0; cdl[3] = 0; cisb[3] = 0; caddr[3] = 0; cctrl[3] = 0; cstart[3] = get_rng(0,NCONTEXT-1); creturn[3] = get_rng(0,NCONTEXT-1); // Dumping initializations mem(4+0,0) = 0; mem(0+0,0) = 0; mem(0+1,0) = 0; mem(0+2,0) = 0; mem(3+0,0) = 0; // Dumping context matching equalities co(0,0) = 0; delta(0,0) = -1; mem(0,1) = meminit(0,1); co(0,1) = coinit(0,1); delta(0,1) = deltainit(0,1); mem(0,2) = meminit(0,2); co(0,2) = coinit(0,2); delta(0,2) = deltainit(0,2); mem(0,3) = meminit(0,3); co(0,3) = coinit(0,3); delta(0,3) = deltainit(0,3); mem(0,4) = meminit(0,4); co(0,4) = coinit(0,4); delta(0,4) = deltainit(0,4); co(1,0) = 0; delta(1,0) = -1; mem(1,1) = meminit(1,1); co(1,1) = coinit(1,1); delta(1,1) = deltainit(1,1); mem(1,2) = meminit(1,2); co(1,2) = coinit(1,2); delta(1,2) = deltainit(1,2); mem(1,3) = meminit(1,3); co(1,3) = coinit(1,3); delta(1,3) = deltainit(1,3); mem(1,4) = meminit(1,4); co(1,4) = coinit(1,4); delta(1,4) = deltainit(1,4); co(2,0) = 0; delta(2,0) = -1; mem(2,1) = meminit(2,1); co(2,1) = coinit(2,1); delta(2,1) = deltainit(2,1); mem(2,2) = meminit(2,2); co(2,2) = coinit(2,2); delta(2,2) = deltainit(2,2); mem(2,3) = meminit(2,3); co(2,3) = coinit(2,3); delta(2,3) = deltainit(2,3); mem(2,4) = meminit(2,4); co(2,4) = coinit(2,4); delta(2,4) = deltainit(2,4); co(3,0) = 0; delta(3,0) = -1; mem(3,1) = meminit(3,1); co(3,1) = coinit(3,1); delta(3,1) = deltainit(3,1); mem(3,2) = meminit(3,2); co(3,2) = coinit(3,2); delta(3,2) = deltainit(3,2); mem(3,3) = meminit(3,3); co(3,3) = coinit(3,3); delta(3,3) = deltainit(3,3); mem(3,4) = meminit(3,4); co(3,4) = coinit(3,4); delta(3,4) = deltainit(3,4); co(4,0) = 0; delta(4,0) = -1; mem(4,1) = meminit(4,1); co(4,1) = coinit(4,1); delta(4,1) = deltainit(4,1); mem(4,2) = meminit(4,2); co(4,2) = coinit(4,2); delta(4,2) = deltainit(4,2); mem(4,3) = meminit(4,3); co(4,3) = coinit(4,3); delta(4,3) = deltainit(4,3); mem(4,4) = meminit(4,4); co(4,4) = coinit(4,4); delta(4,4) = deltainit(4,4); // Dumping thread 1 int ret_thread_1 = 0; cdy[1] = get_rng(0,NCONTEXT-1); ASSUME(cdy[1] >= cstart[1]); T1BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !36, metadata !DIExpression()), !dbg !45 // br label %label_1, !dbg !46 goto T1BLOCK1; T1BLOCK1: // call void @llvm.dbg.label(metadata !44), !dbg !47 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !37, metadata !DIExpression()), !dbg !48 // call void @llvm.dbg.value(metadata i64 1, metadata !40, metadata !DIExpression()), !dbg !48 // store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) release, align 8, !dbg !49 // ST: Guess // : Release iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l20_c3 old_cw = cw(1,0+1*1); cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l20_c3 // Check ASSUME(active[iw(1,0+1*1)] == 1); ASSUME(active[cw(1,0+1*1)] == 1); ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(cw(1,0+1*1) >= iw(1,0+1*1)); ASSUME(cw(1,0+1*1) >= old_cw); ASSUME(cw(1,0+1*1) >= cr(1,0+1*1)); ASSUME(cw(1,0+1*1) >= cl[1]); ASSUME(cw(1,0+1*1) >= cisb[1]); ASSUME(cw(1,0+1*1) >= cdy[1]); ASSUME(cw(1,0+1*1) >= cdl[1]); ASSUME(cw(1,0+1*1) >= cds[1]); ASSUME(cw(1,0+1*1) >= cctrl[1]); ASSUME(cw(1,0+1*1) >= caddr[1]); ASSUME(cw(1,0+1*1) >= cr(1,4+0)); ASSUME(cw(1,0+1*1) >= cr(1,0+0)); ASSUME(cw(1,0+1*1) >= cr(1,0+1)); ASSUME(cw(1,0+1*1) >= cr(1,0+2)); ASSUME(cw(1,0+1*1) >= cr(1,3+0)); ASSUME(cw(1,0+1*1) >= cw(1,4+0)); ASSUME(cw(1,0+1*1) >= cw(1,0+0)); ASSUME(cw(1,0+1*1) >= cw(1,0+1)); ASSUME(cw(1,0+1*1) >= cw(1,0+2)); ASSUME(cw(1,0+1*1) >= cw(1,3+0)); // Update caddr[1] = max(caddr[1],0); buff(1,0+1*1) = 1; mem(0+1*1,cw(1,0+1*1)) = 1; co(0+1*1,cw(1,0+1*1))+=1; delta(0+1*1,cw(1,0+1*1)) = -1; is(1,0+1*1) = iw(1,0+1*1); cs(1,0+1*1) = cw(1,0+1*1); ASSUME(creturn[1] >= cw(1,0+1*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !41, metadata !DIExpression()), !dbg !50 // call void @llvm.dbg.value(metadata i64 1, metadata !43, metadata !DIExpression()), !dbg !50 // store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !51 // ST: Guess iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l21_c3 old_cw = cw(1,0); cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l21_c3 // Check ASSUME(active[iw(1,0)] == 1); ASSUME(active[cw(1,0)] == 1); ASSUME(sforbid(0,cw(1,0))== 0); ASSUME(iw(1,0) >= 0); ASSUME(iw(1,0) >= 0); ASSUME(cw(1,0) >= iw(1,0)); ASSUME(cw(1,0) >= old_cw); ASSUME(cw(1,0) >= cr(1,0)); ASSUME(cw(1,0) >= cl[1]); ASSUME(cw(1,0) >= cisb[1]); ASSUME(cw(1,0) >= cdy[1]); ASSUME(cw(1,0) >= cdl[1]); ASSUME(cw(1,0) >= cds[1]); ASSUME(cw(1,0) >= cctrl[1]); ASSUME(cw(1,0) >= caddr[1]); // Update caddr[1] = max(caddr[1],0); buff(1,0) = 1; mem(0,cw(1,0)) = 1; co(0,cw(1,0))+=1; delta(0,cw(1,0)) = -1; ASSUME(creturn[1] >= cw(1,0)); // ret i8* null, !dbg !52 ret_thread_1 = (- 1); goto T1BLOCK_END; T1BLOCK_END: // Dumping thread 2 int ret_thread_2 = 0; cdy[2] = get_rng(0,NCONTEXT-1); ASSUME(cdy[2] >= cstart[2]); T2BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !55, metadata !DIExpression()), !dbg !63 // br label %label_2, !dbg !46 goto T2BLOCK1; T2BLOCK1: // call void @llvm.dbg.label(metadata !62), !dbg !65 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !56, metadata !DIExpression()), !dbg !66 // call void @llvm.dbg.value(metadata i64 2, metadata !58, metadata !DIExpression()), !dbg !66 // store atomic i64 2, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !49 // ST: Guess iw(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l27_c3 old_cw = cw(2,0); cw(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l27_c3 // Check ASSUME(active[iw(2,0)] == 2); ASSUME(active[cw(2,0)] == 2); ASSUME(sforbid(0,cw(2,0))== 0); ASSUME(iw(2,0) >= 0); ASSUME(iw(2,0) >= 0); ASSUME(cw(2,0) >= iw(2,0)); ASSUME(cw(2,0) >= old_cw); ASSUME(cw(2,0) >= cr(2,0)); ASSUME(cw(2,0) >= cl[2]); ASSUME(cw(2,0) >= cisb[2]); ASSUME(cw(2,0) >= cdy[2]); ASSUME(cw(2,0) >= cdl[2]); ASSUME(cw(2,0) >= cds[2]); ASSUME(cw(2,0) >= cctrl[2]); ASSUME(cw(2,0) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,0) = 2; mem(0,cw(2,0)) = 2; co(0,cw(2,0))+=1; delta(0,cw(2,0)) = -1; ASSUME(creturn[2] >= cw(2,0)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !59, metadata !DIExpression()), !dbg !68 // call void @llvm.dbg.value(metadata i64 1, metadata !61, metadata !DIExpression()), !dbg !68 // store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) release, align 8, !dbg !51 // ST: Guess // : Release iw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l28_c3 old_cw = cw(2,0+2*1); cw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l28_c3 // Check ASSUME(active[iw(2,0+2*1)] == 2); ASSUME(active[cw(2,0+2*1)] == 2); ASSUME(sforbid(0+2*1,cw(2,0+2*1))== 0); ASSUME(iw(2,0+2*1) >= 0); ASSUME(iw(2,0+2*1) >= 0); ASSUME(cw(2,0+2*1) >= iw(2,0+2*1)); ASSUME(cw(2,0+2*1) >= old_cw); ASSUME(cw(2,0+2*1) >= cr(2,0+2*1)); ASSUME(cw(2,0+2*1) >= cl[2]); ASSUME(cw(2,0+2*1) >= cisb[2]); ASSUME(cw(2,0+2*1) >= cdy[2]); ASSUME(cw(2,0+2*1) >= cdl[2]); ASSUME(cw(2,0+2*1) >= cds[2]); ASSUME(cw(2,0+2*1) >= cctrl[2]); ASSUME(cw(2,0+2*1) >= caddr[2]); ASSUME(cw(2,0+2*1) >= cr(2,4+0)); ASSUME(cw(2,0+2*1) >= cr(2,0+0)); ASSUME(cw(2,0+2*1) >= cr(2,0+1)); ASSUME(cw(2,0+2*1) >= cr(2,0+2)); ASSUME(cw(2,0+2*1) >= cr(2,3+0)); ASSUME(cw(2,0+2*1) >= cw(2,4+0)); ASSUME(cw(2,0+2*1) >= cw(2,0+0)); ASSUME(cw(2,0+2*1) >= cw(2,0+1)); ASSUME(cw(2,0+2*1) >= cw(2,0+2)); ASSUME(cw(2,0+2*1) >= cw(2,3+0)); // Update caddr[2] = max(caddr[2],0); buff(2,0+2*1) = 1; mem(0+2*1,cw(2,0+2*1)) = 1; co(0+2*1,cw(2,0+2*1))+=1; delta(0+2*1,cw(2,0+2*1)) = -1; is(2,0+2*1) = iw(2,0+2*1); cs(2,0+2*1) = cw(2,0+2*1); ASSUME(creturn[2] >= cw(2,0+2*1)); // ret i8* null, !dbg !52 ret_thread_2 = (- 1); goto T2BLOCK_END; T2BLOCK_END: // Dumping thread 3 int ret_thread_3 = 0; cdy[3] = get_rng(0,NCONTEXT-1); ASSUME(cdy[3] >= cstart[3]); T3BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !73, metadata !DIExpression()), !dbg !85 // br label %label_3, !dbg !50 goto T3BLOCK1; T3BLOCK1: // call void @llvm.dbg.label(metadata !84), !dbg !87 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !75, metadata !DIExpression()), !dbg !88 // %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) acquire, align 8, !dbg !53 // LD: Guess // : Acquire old_cr = cr(3,0+2*1); cr(3,0+2*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN LDCOM _l34_c15 // Check ASSUME(active[cr(3,0+2*1)] == 3); ASSUME(cr(3,0+2*1) >= iw(3,0+2*1)); ASSUME(cr(3,0+2*1) >= 0); ASSUME(cr(3,0+2*1) >= cdy[3]); ASSUME(cr(3,0+2*1) >= cisb[3]); ASSUME(cr(3,0+2*1) >= cdl[3]); ASSUME(cr(3,0+2*1) >= cl[3]); ASSUME(cr(3,0+2*1) >= cx(3,0+2*1)); ASSUME(cr(3,0+2*1) >= cs(3,4+0)); ASSUME(cr(3,0+2*1) >= cs(3,0+0)); ASSUME(cr(3,0+2*1) >= cs(3,0+1)); ASSUME(cr(3,0+2*1) >= cs(3,0+2)); ASSUME(cr(3,0+2*1) >= cs(3,3+0)); // Update creg_r0 = cr(3,0+2*1); crmax(3,0+2*1) = max(crmax(3,0+2*1),cr(3,0+2*1)); caddr[3] = max(caddr[3],0); if(cr(3,0+2*1) < cw(3,0+2*1)) { r0 = buff(3,0+2*1); ASSUME((!(( (cw(3,0+2*1) < 1) && (1 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,1)> 0)); ASSUME((!(( (cw(3,0+2*1) < 2) && (2 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,2)> 0)); ASSUME((!(( (cw(3,0+2*1) < 3) && (3 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,3)> 0)); ASSUME((!(( (cw(3,0+2*1) < 4) && (4 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,4)> 0)); } else { if(pw(3,0+2*1) != co(0+2*1,cr(3,0+2*1))) { ASSUME(cr(3,0+2*1) >= old_cr); } pw(3,0+2*1) = co(0+2*1,cr(3,0+2*1)); r0 = mem(0+2*1,cr(3,0+2*1)); } cl[3] = max(cl[3],cr(3,0+2*1)); ASSUME(creturn[3] >= cr(3,0+2*1)); // call void @llvm.dbg.value(metadata i64 %0, metadata !77, metadata !DIExpression()), !dbg !88 // %conv = trunc i64 %0 to i32, !dbg !54 // call void @llvm.dbg.value(metadata i32 %conv, metadata !74, metadata !DIExpression()), !dbg !85 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !79, metadata !DIExpression()), !dbg !91 // %1 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !56 // LD: Guess old_cr = cr(3,0+1*1); cr(3,0+1*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN LDCOM _l35_c15 // Check ASSUME(active[cr(3,0+1*1)] == 3); ASSUME(cr(3,0+1*1) >= iw(3,0+1*1)); ASSUME(cr(3,0+1*1) >= 0); ASSUME(cr(3,0+1*1) >= cdy[3]); ASSUME(cr(3,0+1*1) >= cisb[3]); ASSUME(cr(3,0+1*1) >= cdl[3]); ASSUME(cr(3,0+1*1) >= cl[3]); // Update creg_r1 = cr(3,0+1*1); crmax(3,0+1*1) = max(crmax(3,0+1*1),cr(3,0+1*1)); caddr[3] = max(caddr[3],0); if(cr(3,0+1*1) < cw(3,0+1*1)) { r1 = buff(3,0+1*1); ASSUME((!(( (cw(3,0+1*1) < 1) && (1 < crmax(3,0+1*1)) )))||(sforbid(0+1*1,1)> 0)); ASSUME((!(( (cw(3,0+1*1) < 2) && (2 < crmax(3,0+1*1)) )))||(sforbid(0+1*1,2)> 0)); ASSUME((!(( (cw(3,0+1*1) < 3) && (3 < crmax(3,0+1*1)) )))||(sforbid(0+1*1,3)> 0)); ASSUME((!(( (cw(3,0+1*1) < 4) && (4 < crmax(3,0+1*1)) )))||(sforbid(0+1*1,4)> 0)); } else { if(pw(3,0+1*1) != co(0+1*1,cr(3,0+1*1))) { ASSUME(cr(3,0+1*1) >= old_cr); } pw(3,0+1*1) = co(0+1*1,cr(3,0+1*1)); r1 = mem(0+1*1,cr(3,0+1*1)); } ASSUME(creturn[3] >= cr(3,0+1*1)); // call void @llvm.dbg.value(metadata i64 %1, metadata !81, metadata !DIExpression()), !dbg !91 // %conv4 = trunc i64 %1 to i32, !dbg !57 // call void @llvm.dbg.value(metadata i32 %conv4, metadata !78, metadata !DIExpression()), !dbg !85 // %cmp = icmp eq i32 %conv, 1, !dbg !58 creg__r0__1_ = max(0,creg_r0); // %conv5 = zext i1 %cmp to i32, !dbg !58 // call void @llvm.dbg.value(metadata i32 %conv5, metadata !82, metadata !DIExpression()), !dbg !85 // store i32 %conv5, i32* @atom_2_X0_1, align 4, !dbg !59, !tbaa !60 // ST: Guess iw(3,3) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l37_c15 old_cw = cw(3,3); cw(3,3) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l37_c15 // Check ASSUME(active[iw(3,3)] == 3); ASSUME(active[cw(3,3)] == 3); ASSUME(sforbid(3,cw(3,3))== 0); ASSUME(iw(3,3) >= creg__r0__1_); ASSUME(iw(3,3) >= 0); ASSUME(cw(3,3) >= iw(3,3)); ASSUME(cw(3,3) >= old_cw); ASSUME(cw(3,3) >= cr(3,3)); ASSUME(cw(3,3) >= cl[3]); ASSUME(cw(3,3) >= cisb[3]); ASSUME(cw(3,3) >= cdy[3]); ASSUME(cw(3,3) >= cdl[3]); ASSUME(cw(3,3) >= cds[3]); ASSUME(cw(3,3) >= cctrl[3]); ASSUME(cw(3,3) >= caddr[3]); // Update caddr[3] = max(caddr[3],0); buff(3,3) = (r0==1); mem(3,cw(3,3)) = (r0==1); co(3,cw(3,3))+=1; delta(3,cw(3,3)) = -1; ASSUME(creturn[3] >= cw(3,3)); // %cmp6 = icmp eq i32 %conv4, 0, !dbg !64 creg__r1__0_ = max(0,creg_r1); // %conv7 = zext i1 %cmp6 to i32, !dbg !64 // call void @llvm.dbg.value(metadata i32 %conv7, metadata !83, metadata !DIExpression()), !dbg !85 // store i32 %conv7, i32* @atom_2_X2_0, align 4, !dbg !65, !tbaa !60 // ST: Guess iw(3,4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l39_c15 old_cw = cw(3,4); cw(3,4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l39_c15 // Check ASSUME(active[iw(3,4)] == 3); ASSUME(active[cw(3,4)] == 3); ASSUME(sforbid(4,cw(3,4))== 0); ASSUME(iw(3,4) >= creg__r1__0_); ASSUME(iw(3,4) >= 0); ASSUME(cw(3,4) >= iw(3,4)); ASSUME(cw(3,4) >= old_cw); ASSUME(cw(3,4) >= cr(3,4)); ASSUME(cw(3,4) >= cl[3]); ASSUME(cw(3,4) >= cisb[3]); ASSUME(cw(3,4) >= cdy[3]); ASSUME(cw(3,4) >= cdl[3]); ASSUME(cw(3,4) >= cds[3]); ASSUME(cw(3,4) >= cctrl[3]); ASSUME(cw(3,4) >= caddr[3]); // Update caddr[3] = max(caddr[3],0); buff(3,4) = (r1==0); mem(4,cw(3,4)) = (r1==0); co(4,cw(3,4))+=1; delta(4,cw(3,4)) = -1; ASSUME(creturn[3] >= cw(3,4)); // ret i8* null, !dbg !66 ret_thread_3 = (- 1); goto T3BLOCK_END; T3BLOCK_END: // Dumping thread 0 int ret_thread_0 = 0; cdy[0] = get_rng(0,NCONTEXT-1); ASSUME(cdy[0] >= cstart[0]); T0BLOCK0: // %thr0 = alloca i64, align 8 // %thr1 = alloca i64, align 8 // %thr2 = alloca i64, align 8 // call void @llvm.dbg.value(metadata i32 %argc, metadata !110, metadata !DIExpression()), !dbg !136 // call void @llvm.dbg.value(metadata i8** %argv, metadata !111, metadata !DIExpression()), !dbg !136 // %0 = bitcast i64* %thr0 to i8*, !dbg !67 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !67 // call void @llvm.dbg.declare(metadata i64* %thr0, metadata !112, metadata !DIExpression()), !dbg !138 // %1 = bitcast i64* %thr1 to i8*, !dbg !69 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !69 // call void @llvm.dbg.declare(metadata i64* %thr1, metadata !116, metadata !DIExpression()), !dbg !140 // %2 = bitcast i64* %thr2 to i8*, !dbg !71 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %2) #7, !dbg !71 // call void @llvm.dbg.declare(metadata i64* %thr2, metadata !117, metadata !DIExpression()), !dbg !142 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !118, metadata !DIExpression()), !dbg !143 // call void @llvm.dbg.value(metadata i64 0, metadata !120, metadata !DIExpression()), !dbg !143 // store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !74 // ST: Guess iw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l48_c3 old_cw = cw(0,0+2*1); cw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l48_c3 // Check ASSUME(active[iw(0,0+2*1)] == 0); ASSUME(active[cw(0,0+2*1)] == 0); ASSUME(sforbid(0+2*1,cw(0,0+2*1))== 0); ASSUME(iw(0,0+2*1) >= 0); ASSUME(iw(0,0+2*1) >= 0); ASSUME(cw(0,0+2*1) >= iw(0,0+2*1)); ASSUME(cw(0,0+2*1) >= old_cw); ASSUME(cw(0,0+2*1) >= cr(0,0+2*1)); ASSUME(cw(0,0+2*1) >= cl[0]); ASSUME(cw(0,0+2*1) >= cisb[0]); ASSUME(cw(0,0+2*1) >= cdy[0]); ASSUME(cw(0,0+2*1) >= cdl[0]); ASSUME(cw(0,0+2*1) >= cds[0]); ASSUME(cw(0,0+2*1) >= cctrl[0]); ASSUME(cw(0,0+2*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+2*1) = 0; mem(0+2*1,cw(0,0+2*1)) = 0; co(0+2*1,cw(0,0+2*1))+=1; delta(0+2*1,cw(0,0+2*1)) = -1; ASSUME(creturn[0] >= cw(0,0+2*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !121, metadata !DIExpression()), !dbg !145 // call void @llvm.dbg.value(metadata i64 0, metadata !123, metadata !DIExpression()), !dbg !145 // store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !76 // ST: Guess iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l49_c3 old_cw = cw(0,0+1*1); cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l49_c3 // Check ASSUME(active[iw(0,0+1*1)] == 0); ASSUME(active[cw(0,0+1*1)] == 0); ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(cw(0,0+1*1) >= iw(0,0+1*1)); ASSUME(cw(0,0+1*1) >= old_cw); ASSUME(cw(0,0+1*1) >= cr(0,0+1*1)); ASSUME(cw(0,0+1*1) >= cl[0]); ASSUME(cw(0,0+1*1) >= cisb[0]); ASSUME(cw(0,0+1*1) >= cdy[0]); ASSUME(cw(0,0+1*1) >= cdl[0]); ASSUME(cw(0,0+1*1) >= cds[0]); ASSUME(cw(0,0+1*1) >= cctrl[0]); ASSUME(cw(0,0+1*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+1*1) = 0; mem(0+1*1,cw(0,0+1*1)) = 0; co(0+1*1,cw(0,0+1*1))+=1; delta(0+1*1,cw(0,0+1*1)) = -1; ASSUME(creturn[0] >= cw(0,0+1*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !124, metadata !DIExpression()), !dbg !147 // call void @llvm.dbg.value(metadata i64 0, metadata !126, metadata !DIExpression()), !dbg !147 // store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !78 // ST: Guess iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l50_c3 old_cw = cw(0,0); cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l50_c3 // Check ASSUME(active[iw(0,0)] == 0); ASSUME(active[cw(0,0)] == 0); ASSUME(sforbid(0,cw(0,0))== 0); ASSUME(iw(0,0) >= 0); ASSUME(iw(0,0) >= 0); ASSUME(cw(0,0) >= iw(0,0)); ASSUME(cw(0,0) >= old_cw); ASSUME(cw(0,0) >= cr(0,0)); ASSUME(cw(0,0) >= cl[0]); ASSUME(cw(0,0) >= cisb[0]); ASSUME(cw(0,0) >= cdy[0]); ASSUME(cw(0,0) >= cdl[0]); ASSUME(cw(0,0) >= cds[0]); ASSUME(cw(0,0) >= cctrl[0]); ASSUME(cw(0,0) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0) = 0; mem(0,cw(0,0)) = 0; co(0,cw(0,0))+=1; delta(0,cw(0,0)) = -1; ASSUME(creturn[0] >= cw(0,0)); // store i32 0, i32* @atom_2_X0_1, align 4, !dbg !79, !tbaa !80 // ST: Guess iw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l51_c15 old_cw = cw(0,3); cw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l51_c15 // Check ASSUME(active[iw(0,3)] == 0); ASSUME(active[cw(0,3)] == 0); ASSUME(sforbid(3,cw(0,3))== 0); ASSUME(iw(0,3) >= 0); ASSUME(iw(0,3) >= 0); ASSUME(cw(0,3) >= iw(0,3)); ASSUME(cw(0,3) >= old_cw); ASSUME(cw(0,3) >= cr(0,3)); ASSUME(cw(0,3) >= cl[0]); ASSUME(cw(0,3) >= cisb[0]); ASSUME(cw(0,3) >= cdy[0]); ASSUME(cw(0,3) >= cdl[0]); ASSUME(cw(0,3) >= cds[0]); ASSUME(cw(0,3) >= cctrl[0]); ASSUME(cw(0,3) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,3) = 0; mem(3,cw(0,3)) = 0; co(3,cw(0,3))+=1; delta(3,cw(0,3)) = -1; ASSUME(creturn[0] >= cw(0,3)); // store i32 0, i32* @atom_2_X2_0, align 4, !dbg !84, !tbaa !80 // ST: Guess iw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l52_c15 old_cw = cw(0,4); cw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l52_c15 // Check ASSUME(active[iw(0,4)] == 0); ASSUME(active[cw(0,4)] == 0); ASSUME(sforbid(4,cw(0,4))== 0); ASSUME(iw(0,4) >= 0); ASSUME(iw(0,4) >= 0); ASSUME(cw(0,4) >= iw(0,4)); ASSUME(cw(0,4) >= old_cw); ASSUME(cw(0,4) >= cr(0,4)); ASSUME(cw(0,4) >= cl[0]); ASSUME(cw(0,4) >= cisb[0]); ASSUME(cw(0,4) >= cdy[0]); ASSUME(cw(0,4) >= cdl[0]); ASSUME(cw(0,4) >= cds[0]); ASSUME(cw(0,4) >= cctrl[0]); ASSUME(cw(0,4) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,4) = 0; mem(4,cw(0,4)) = 0; co(4,cw(0,4))+=1; delta(4,cw(0,4)) = -1; ASSUME(creturn[0] >= cw(0,4)); // %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !85 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[1] >= cdy[0]); // %call5 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !86 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[2] >= cdy[0]); // %call6 = call i32 @pthread_create(i64* noundef %thr2, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t2, i8* noundef null) #7, !dbg !87 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[3] >= cdy[0]); // %3 = load i64, i64* %thr0, align 8, !dbg !88, !tbaa !89 r3 = local_mem[0]; // %call7 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !91 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[1]); // %4 = load i64, i64* %thr1, align 8, !dbg !92, !tbaa !89 r4 = local_mem[1]; // %call8 = call i32 @pthread_join(i64 noundef %4, i8** noundef null), !dbg !93 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[2]); // %5 = load i64, i64* %thr2, align 8, !dbg !94, !tbaa !89 r5 = local_mem[2]; // %call9 = call i32 @pthread_join(i64 noundef %5, i8** noundef null), !dbg !95 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,0+2)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,0+2)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[3]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !128, metadata !DIExpression()), !dbg !162 // %6 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !97 // LD: Guess old_cr = cr(0,0); cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l62_c12 // Check ASSUME(active[cr(0,0)] == 0); ASSUME(cr(0,0) >= iw(0,0)); ASSUME(cr(0,0) >= 0); ASSUME(cr(0,0) >= cdy[0]); ASSUME(cr(0,0) >= cisb[0]); ASSUME(cr(0,0) >= cdl[0]); ASSUME(cr(0,0) >= cl[0]); // Update creg_r6 = cr(0,0); crmax(0,0) = max(crmax(0,0),cr(0,0)); caddr[0] = max(caddr[0],0); if(cr(0,0) < cw(0,0)) { r6 = buff(0,0); ASSUME((!(( (cw(0,0) < 1) && (1 < crmax(0,0)) )))||(sforbid(0,1)> 0)); ASSUME((!(( (cw(0,0) < 2) && (2 < crmax(0,0)) )))||(sforbid(0,2)> 0)); ASSUME((!(( (cw(0,0) < 3) && (3 < crmax(0,0)) )))||(sforbid(0,3)> 0)); ASSUME((!(( (cw(0,0) < 4) && (4 < crmax(0,0)) )))||(sforbid(0,4)> 0)); } else { if(pw(0,0) != co(0,cr(0,0))) { ASSUME(cr(0,0) >= old_cr); } pw(0,0) = co(0,cr(0,0)); r6 = mem(0,cr(0,0)); } ASSUME(creturn[0] >= cr(0,0)); // call void @llvm.dbg.value(metadata i64 %6, metadata !130, metadata !DIExpression()), !dbg !162 // %conv = trunc i64 %6 to i32, !dbg !98 // call void @llvm.dbg.value(metadata i32 %conv, metadata !127, metadata !DIExpression()), !dbg !136 // %cmp = icmp eq i32 %conv, 2, !dbg !99 creg__r6__2_ = max(0,creg_r6); // %conv10 = zext i1 %cmp to i32, !dbg !99 // call void @llvm.dbg.value(metadata i32 %conv10, metadata !131, metadata !DIExpression()), !dbg !136 // %7 = load i32, i32* @atom_2_X0_1, align 4, !dbg !100, !tbaa !80 // LD: Guess old_cr = cr(0,3); cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l64_c12 // Check ASSUME(active[cr(0,3)] == 0); ASSUME(cr(0,3) >= iw(0,3)); ASSUME(cr(0,3) >= 0); ASSUME(cr(0,3) >= cdy[0]); ASSUME(cr(0,3) >= cisb[0]); ASSUME(cr(0,3) >= cdl[0]); ASSUME(cr(0,3) >= cl[0]); // Update creg_r7 = cr(0,3); crmax(0,3) = max(crmax(0,3),cr(0,3)); caddr[0] = max(caddr[0],0); if(cr(0,3) < cw(0,3)) { r7 = buff(0,3); ASSUME((!(( (cw(0,3) < 1) && (1 < crmax(0,3)) )))||(sforbid(3,1)> 0)); ASSUME((!(( (cw(0,3) < 2) && (2 < crmax(0,3)) )))||(sforbid(3,2)> 0)); ASSUME((!(( (cw(0,3) < 3) && (3 < crmax(0,3)) )))||(sforbid(3,3)> 0)); ASSUME((!(( (cw(0,3) < 4) && (4 < crmax(0,3)) )))||(sforbid(3,4)> 0)); } else { if(pw(0,3) != co(3,cr(0,3))) { ASSUME(cr(0,3) >= old_cr); } pw(0,3) = co(3,cr(0,3)); r7 = mem(3,cr(0,3)); } ASSUME(creturn[0] >= cr(0,3)); // call void @llvm.dbg.value(metadata i32 %7, metadata !132, metadata !DIExpression()), !dbg !136 // %8 = load i32, i32* @atom_2_X2_0, align 4, !dbg !101, !tbaa !80 // LD: Guess old_cr = cr(0,4); cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l65_c13 // Check ASSUME(active[cr(0,4)] == 0); ASSUME(cr(0,4) >= iw(0,4)); ASSUME(cr(0,4) >= 0); ASSUME(cr(0,4) >= cdy[0]); ASSUME(cr(0,4) >= cisb[0]); ASSUME(cr(0,4) >= cdl[0]); ASSUME(cr(0,4) >= cl[0]); // Update creg_r8 = cr(0,4); crmax(0,4) = max(crmax(0,4),cr(0,4)); caddr[0] = max(caddr[0],0); if(cr(0,4) < cw(0,4)) { r8 = buff(0,4); ASSUME((!(( (cw(0,4) < 1) && (1 < crmax(0,4)) )))||(sforbid(4,1)> 0)); ASSUME((!(( (cw(0,4) < 2) && (2 < crmax(0,4)) )))||(sforbid(4,2)> 0)); ASSUME((!(( (cw(0,4) < 3) && (3 < crmax(0,4)) )))||(sforbid(4,3)> 0)); ASSUME((!(( (cw(0,4) < 4) && (4 < crmax(0,4)) )))||(sforbid(4,4)> 0)); } else { if(pw(0,4) != co(4,cr(0,4))) { ASSUME(cr(0,4) >= old_cr); } pw(0,4) = co(4,cr(0,4)); r8 = mem(4,cr(0,4)); } ASSUME(creturn[0] >= cr(0,4)); // call void @llvm.dbg.value(metadata i32 %8, metadata !133, metadata !DIExpression()), !dbg !136 // %and = and i32 %7, %8, !dbg !102 creg_r9 = max(creg_r7,creg_r8); r9 = r7 & r8; // call void @llvm.dbg.value(metadata i32 %and, metadata !134, metadata !DIExpression()), !dbg !136 // %and11 = and i32 %conv10, %and, !dbg !103 creg_r10 = max(creg__r6__2_,creg_r9); r10 = (r6==2) & r9; // call void @llvm.dbg.value(metadata i32 %and11, metadata !135, metadata !DIExpression()), !dbg !136 // %cmp12 = icmp eq i32 %and11, 1, !dbg !104 creg__r10__1_ = max(0,creg_r10); // br i1 %cmp12, label %if.then, label %if.end, !dbg !106 old_cctrl = cctrl[0]; cctrl[0] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[0] >= old_cctrl); ASSUME(cctrl[0] >= creg__r10__1_); if((r10==1)) { goto T0BLOCK1; } else { goto T0BLOCK2; } T0BLOCK1: // call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([131 x i8], [131 x i8]* @.str.1, i64 0, i64 0), i32 noundef 68, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !107 // unreachable, !dbg !107 r11 = 1; goto T0BLOCK_END; T0BLOCK2: // %9 = bitcast i64* %thr2 to i8*, !dbg !110 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %9) #7, !dbg !110 // %10 = bitcast i64* %thr1 to i8*, !dbg !110 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %10) #7, !dbg !110 // %11 = bitcast i64* %thr0 to i8*, !dbg !110 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %11) #7, !dbg !110 // ret i32 0, !dbg !111 ret_thread_0 = 0; goto T0BLOCK_END; T0BLOCK_END: ASSUME(meminit(0,1) == mem(0,0)); ASSUME(coinit(0,1) == co(0,0)); ASSUME(deltainit(0,1) == delta(0,0)); ASSUME(meminit(0,2) == mem(0,1)); ASSUME(coinit(0,2) == co(0,1)); ASSUME(deltainit(0,2) == delta(0,1)); ASSUME(meminit(0,3) == mem(0,2)); ASSUME(coinit(0,3) == co(0,2)); ASSUME(deltainit(0,3) == delta(0,2)); ASSUME(meminit(0,4) == mem(0,3)); ASSUME(coinit(0,4) == co(0,3)); ASSUME(deltainit(0,4) == delta(0,3)); ASSUME(meminit(1,1) == mem(1,0)); ASSUME(coinit(1,1) == co(1,0)); ASSUME(deltainit(1,1) == delta(1,0)); ASSUME(meminit(1,2) == mem(1,1)); ASSUME(coinit(1,2) == co(1,1)); ASSUME(deltainit(1,2) == delta(1,1)); ASSUME(meminit(1,3) == mem(1,2)); ASSUME(coinit(1,3) == co(1,2)); ASSUME(deltainit(1,3) == delta(1,2)); ASSUME(meminit(1,4) == mem(1,3)); ASSUME(coinit(1,4) == co(1,3)); ASSUME(deltainit(1,4) == delta(1,3)); ASSUME(meminit(2,1) == mem(2,0)); ASSUME(coinit(2,1) == co(2,0)); ASSUME(deltainit(2,1) == delta(2,0)); ASSUME(meminit(2,2) == mem(2,1)); ASSUME(coinit(2,2) == co(2,1)); ASSUME(deltainit(2,2) == delta(2,1)); ASSUME(meminit(2,3) == mem(2,2)); ASSUME(coinit(2,3) == co(2,2)); ASSUME(deltainit(2,3) == delta(2,2)); ASSUME(meminit(2,4) == mem(2,3)); ASSUME(coinit(2,4) == co(2,3)); ASSUME(deltainit(2,4) == delta(2,3)); ASSUME(meminit(3,1) == mem(3,0)); ASSUME(coinit(3,1) == co(3,0)); ASSUME(deltainit(3,1) == delta(3,0)); ASSUME(meminit(3,2) == mem(3,1)); ASSUME(coinit(3,2) == co(3,1)); ASSUME(deltainit(3,2) == delta(3,1)); ASSUME(meminit(3,3) == mem(3,2)); ASSUME(coinit(3,3) == co(3,2)); ASSUME(deltainit(3,3) == delta(3,2)); ASSUME(meminit(3,4) == mem(3,3)); ASSUME(coinit(3,4) == co(3,3)); ASSUME(deltainit(3,4) == delta(3,3)); ASSUME(meminit(4,1) == mem(4,0)); ASSUME(coinit(4,1) == co(4,0)); ASSUME(deltainit(4,1) == delta(4,0)); ASSUME(meminit(4,2) == mem(4,1)); ASSUME(coinit(4,2) == co(4,1)); ASSUME(deltainit(4,2) == delta(4,1)); ASSUME(meminit(4,3) == mem(4,2)); ASSUME(coinit(4,3) == co(4,2)); ASSUME(deltainit(4,3) == delta(4,2)); ASSUME(meminit(4,4) == mem(4,3)); ASSUME(coinit(4,4) == co(4,3)); ASSUME(deltainit(4,4) == delta(4,3)); ASSERT(r11== 0); }
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
e37d87978448d52de4aea85844c897068c74a0f3
aefac844373fe8e8faab9724e46653ca459e9ddf
/virtchem/src/third-party/headers/thrust/perf_test/cuda_timer.h
461fd7e1f4ea80d56ffd3c55c2b38e867f140779
[ "BSL-1.0", "Apache-2.0", "MIT" ]
permissive
mmetcalf14/QITE
26b4d64742b27d65aa6309923a4b9ccc488f2d64
1bc9793691343807dbff6bfbfc5cbc9a1addaaf7
refs/heads/master
2021-01-09T03:16:06.712941
2020-06-03T18:08:47
2020-06-03T18:08:47
242,218,664
4
0
null
null
null
null
UTF-8
C++
false
false
1,219
h
#include <thrust/version.h> // do not attempt to compile this code, which relies on // CUDART, without system support #if THRUST_DEVICE_COMPILER == THRUST_DEVICE_COMPILER_NVCC #include <cuda_runtime_api.h> #if THRUST_VERSION < 100600 #include <thrust/system/cuda_error.h> #else #include <thrust/system/cuda/error.h> #endif #include <thrust/system_error.h> #include <string> void cuda_safe_call(cudaError_t error, const std::string& message = "") { if(error) throw thrust::system_error(error, thrust::cuda_category(), message); } struct cuda_timer { cudaEvent_t start; cudaEvent_t end; cuda_timer(void) { cuda_safe_call(cudaEventCreate(&start)); cuda_safe_call(cudaEventCreate(&end)); restart(); } ~cuda_timer(void) { cuda_safe_call(cudaEventDestroy(start)); cuda_safe_call(cudaEventDestroy(end)); } void restart(void) { cuda_safe_call(cudaEventRecord(start, 0)); } double elapsed_seconds(void) { cuda_safe_call(cudaEventRecord(end, 0)); cuda_safe_call(cudaEventSynchronize(end)); float ms_elapsed; cuda_safe_call(cudaEventElapsedTime(&ms_elapsed, start, end)); return ms_elapsed / 1e3; } }; #endif // THRUST_DEVICE_COMPILER_NVCC
[ "mmetcalf@cs-it-8026359.local" ]
mmetcalf@cs-it-8026359.local
efd67081cf190c50f518c335fd059d2e1e9007cc
58aab600d26a36e0ef26b6e758785f5828342078
/QYFC/QYHeapBuffer.h
f0d1bcfc4f6e54e85cc78a08c2b72cfc3bcb0322
[]
no_license
tmgycjl/qyfc
b1660d48a3f9a574ac3209ca7600e2a3fb14cc20
004dad9576ed836dd9df777d7bd5414a640a7146
refs/heads/main
2023-04-23T02:34:49.693418
2021-04-30T09:58:48
2021-04-30T09:58:48
325,444,409
1
0
null
null
null
null
UTF-8
C++
false
false
240
h
#pragma once #include <string> #include "qydefine.h" class QYUI_EXPORT_CLASS QYHeapBuffer { public: QYHeapBuffer(); QYHeapBuffer(unsigned int newSize); ~QYHeapBuffer(); char* operator & (); int Length(); private: char *m_pBuffer; };
[ "jlchen@grandstream.cn" ]
jlchen@grandstream.cn
852c3155b2d96825f3ee6a57c4680e2202635040
7d886deca26b119da215cb098881f105b7fd53e2
/VTS3/SendCreateObject.cpp
73d13c414df66bca880293456c815f81dfebbc9a
[]
no_license
larrycook99/vts
2e3d9a4f377199b89302f129d229eb443b920ea2
eb75f416c3a7d082004703fbf69da3ba04dd6ece
refs/heads/master
2023-01-12T00:19:02.536960
2020-11-22T03:43:50
2020-11-22T03:43:50
314,956,244
0
0
null
null
null
null
UTF-8
C++
false
false
13,918
cpp
// SendCreateObject.cpp : implementation file // #include "stdafx.h" #include "VTS.h" #include "propid.h" #include "Send.h" #include "SendCreateObject.h" #include "VTSObjectIdentifierDialog.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif BACnetAPDUEncoder CSendCreateObject::pageContents; void EncoderToHex( const BACnetAPDUEncoder &enc, CString &str ); ///////////////////////////////////////////////////////////////////////////// // CSendCreateObject dialog IMPLEMENT_DYNCREATE( CSendCreateObject, CPropertyPage ) #pragma warning( disable : 4355 ) CSendCreateObject::CSendCreateObject( void ) : CSendPage( CSendCreateObject::IDD ) , m_ObjectTypeCombo( this, IDC_OBJECTTYPECOMBO, NetworkSniffer::BAC_STRTAB_BACnetObjectType, true, true ) , m_ObjectID( this, IDC_OBJECTID ) , m_PropList( this ) { //{{AFX_DATA_INIT(CSendCreateObject) //}}AFX_DATA_INIT m_nChoice = 0; } #pragma warning( default : 4355 ) void CSendCreateObject::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CSendCreateObject) DDX_Control(pDX, IDC_PROPLIST, m_PropListCtrl); //}}AFX_DATA_MAP DDX_Radio(pDX, IDC_RADIO1, m_nChoice); m_ObjectTypeCombo.UpdateData( pDX->m_bSaveAndValidate ); m_ObjectID.UpdateData( pDX->m_bSaveAndValidate ); // if there is a selected property, allow the controls to update if (m_PropList.colCurElem) { m_PropList.colCurElem->coePropCombo.UpdateData( pDX->m_bSaveAndValidate ); m_PropList.colCurElem->coeArrayIndex.UpdateData( pDX->m_bSaveAndValidate ); m_PropList.colCurElem->coePriority.UpdateData( pDX->m_bSaveAndValidate ); } } BEGIN_MESSAGE_MAP(CSendCreateObject, CPropertyPage) //{{AFX_MSG_MAP(CSendCreateObject) ON_CBN_SELCHANGE(IDC_OBJECTTYPECOMBO, OnSelchangeObjectTypeCombo) ON_EN_CHANGE(IDC_OBJECTID, OnChangeObjectID) ON_BN_CLICKED(IDC_OBJECTIDBTN, OnObjectIDButton) ON_BN_CLICKED(IDC_ADDPROP, OnAddProp) ON_BN_CLICKED(IDC_REMOVEPROP, OnRemoveProp) ON_NOTIFY(LVN_ITEMCHANGING, IDC_PROPLIST, OnItemchangingPropListCtrl) ON_CBN_SELCHANGE(IDC_PROPCOMBO, OnSelchangePropCombo) ON_EN_CHANGE(IDC_ARRAYINDEX, OnChangeArrayIndex) ON_BN_CLICKED(IDC_VALUE, OnValue) ON_EN_CHANGE(IDC_PRIORITYX, OnChangePriority) //}}AFX_MSG_MAP ON_BN_CLICKED(IDC_RADIO1, OnSelectObjectType) ON_BN_CLICKED(IDC_RADIO2, OnSelectObjectID) END_MESSAGE_MAP() // // CSendCreateObject::InitPage // void CSendCreateObject::InitPage( void ) { TRACE0( "CSendCreateObject::InitPage()\n" ); // flush the data m_ObjectTypeCombo.ctrlNull = true; m_ObjectID.ctrlNull = true; // LJT: added to control when controls should be active, ctrlNull can't be used because a filled combo box sets to false m_bObjectTypeActive = true; } // // CSendCreateObject::EncodePage // void CSendCreateObject::EncodePage( CByteArray* contents ) { CByteArray header ; BACnetAPDUEncoder enc ; // encode the service choice header.Add( 10 ); // encode the object type or object identifier BACnetOpeningTag().Encode( enc, 0 ); // LJT: Updated section if (m_bObjectTypeActive) { m_ObjectTypeCombo.Encode( enc, 0 ); } else if (!m_ObjectID.ctrlNull) { m_ObjectID.Encode( enc, 1 ); } else throw "Object type or identifier required"; BACnetClosingTag().Encode( enc, 0 ); // encode the contents m_PropList.Encode( enc ); // copy the encoding into the byte array for (int i = 0; i < enc.pktLength; i++) header.Add( enc.pktBuffer[i] ); // stuff the header on the front contents->InsertAt( 0, &header ); } // // CSendCreateObject::SavePage // void CSendCreateObject::SavePage( void ) { TRACE0( "CSendCreateObject::SavePage\n" ); pageContents.Flush(); m_ObjectTypeCombo.SaveCtrl( pageContents ); m_ObjectID.SaveCtrl( pageContents ); // m_PropList.SaveList( pageContents ); } // // CSendCreateObject::RestorePage // void CSendCreateObject::RestorePage( int index ) { BACnetAPDUDecoder dec( pageContents ) ; TRACE0( "CSendCreateObject::RestorePage\n" ); if (dec.pktLength == 0) return; m_ObjectTypeCombo.RestoreCtrl( dec ); m_ObjectID.RestoreCtrl( dec ); // m_PropList.RestoreList( dec ); } // // CSendCreateObject::OnInitDialog // BOOL CSendCreateObject::OnInitDialog() { TRACE0( "CSendCreateObject::OnInitDialog()\n" ); CDialog::OnInitDialog(); // load the enumeration table m_ObjectTypeCombo.LoadCombo(); m_ObjectID.Disable(); // only allow one selection at a time, no sorting m_PropListCtrl.m_nFlags |= LVS_SINGLESEL; m_PropListCtrl.m_nFlags &= ~LBS_SORT; // set up the property list columns m_PropListCtrl.InsertColumn( 0, "Property", LVCFMT_LEFT, 96 ); m_PropListCtrl.InsertColumn( 1, "Index", LVCFMT_RIGHT, 48 ); m_PropListCtrl.InsertColumn( 2, "Value", LVCFMT_LEFT, 96 ); m_PropListCtrl.InsertColumn( 3, "Priority", LVCFMT_RIGHT, 48 ); return TRUE; } void CSendCreateObject::OnSelchangeObjectTypeCombo() { m_ObjectTypeCombo.UpdateData(); SavePage(); UpdateEncoded(); } void CSendCreateObject::OnChangeObjectID() { m_ObjectID.UpdateData(); SavePage(); UpdateEncoded(); } void CSendCreateObject::OnObjectIDButton() { VTSObjectIdentifierDialog dlg(this); // for proper parent control dlg.objID = m_ObjectID.objID; if (dlg.DoModal() && dlg.validObjID) { m_ObjectID.ctrlNull = false; m_ObjectID.objID = dlg.objID; m_ObjectID.ObjToCtrl(); SavePage(); UpdateEncoded(); } } void CSendCreateObject::OnAddProp() { int type = (m_bObjectTypeActive) ? m_ObjectTypeCombo.m_enumValue : (m_ObjectID.objID >> 22); m_PropList.AddButtonClick(type); SavePage(); } void CSendCreateObject::OnRemoveProp() { m_PropList.RemoveButtonClick(); SavePage(); } void CSendCreateObject::OnItemchangingPropListCtrl(NMHDR* pNMHDR, LRESULT* pResult) { m_PropList.OnItemChanging( pNMHDR, pResult ); SavePage(); } void CSendCreateObject::OnSelchangePropCombo() { m_PropList.OnSelchangePropCombo(); SavePage(); } void CSendCreateObject::OnChangeArrayIndex() { m_PropList.OnChangeArrayIndex(); SavePage(); } void CSendCreateObject::OnValue() { m_PropList.OnValue(); SavePage(); } void CSendCreateObject::OnChangePriority() { m_PropList.OnChangePriority(); SavePage(); } // // CreateObjectElem::CreateObjectElem // CreateObjectElem::CreateObjectElem( CSendPagePtr wp ) : coePropCombo( wp, IDC_PROPCOMBO, NetworkSniffer::BAC_STRTAB_BACnetPropertyIdentifier, true, true ) , coeArrayIndex( wp, IDC_ARRAYINDEX ) , coePriority( wp, IDC_PRIORITYX ) , coeValue(wp) // for proper parent control { // controls start out disabled coePropCombo.ctrlEnabled = false; coeArrayIndex.ctrlEnabled = false; coePriority.ctrlEnabled = false; } // // CreateObjectElem::Bind // void CreateObjectElem::Bind( void ) { // set the control value to this element values coePropCombo.ObjToCtrl(); coePropCombo.Enable(); coeArrayIndex.ObjToCtrl(); coeArrayIndex.Enable(); coePropCombo.ctrlWindow->GetDlgItem( IDC_VALUE )->EnableWindow( true ); coePriority.ObjToCtrl(); coePriority.Enable(); } // // CreateObjectElem::Unbind // void CreateObjectElem::Unbind( void ) { // clear out the contents of the controls coePropCombo.ctrlWindow->GetDlgItem( IDC_PROPCOMBO )->SetWindowText( "" ); coePropCombo.Disable(); coeArrayIndex.ctrlWindow->GetDlgItem( IDC_ARRAYINDEX )->SetWindowText( "" ); coeArrayIndex.Disable(); coePropCombo.ctrlWindow->GetDlgItem( IDC_VALUE )->EnableWindow( false ); coePriority.ctrlWindow->GetDlgItem( IDC_PRIORITYX )->SetWindowText( "" ); coePriority.Disable(); } // // CreateObjectElem::Encode // void CreateObjectElem::Encode( BACnetAPDUEncoder& enc ) { // encode the property if (coePropCombo.ctrlNull) throw "Property ID required"; coePropCombo.Encode( enc, 0 ); // encode the (optional) array index if (!coeArrayIndex.ctrlNull) coeArrayIndex.Encode( enc, 1 ); // do the value // Allow empty value: some properties are List-Of, with empty list allowed // if (coeValue.m_anyList.Length() < 1) // throw "Value required"; coeValue.Encode( enc, 2 ); // encode the (optional) priority if (!coePriority.ctrlNull) { if ((coePriority.uintValue < 1) || (coePriority.uintValue > 16)) throw "Priority out of range 1..16"; coePriority.Encode( enc, 3 ); } } // // CreateObjectList::CreateObjectList // CreateObjectList::CreateObjectList( CSendCreateObjectPtr pp ) : colPagePtr( pp ) , colCurElem(0), colCurElemIndx(0) { } // // CreateObjectList::~CreateObjectList // // If there have been any property value objects added to the list they need to // be removed here. // CreateObjectList::~CreateObjectList( void ) { for (POSITION pos = GetHeadPosition(); pos != NULL; ) delete GetNext( pos ); } // // CreateObjectList::AddButtonClick // void CreateObjectList::AddButtonClick( int theObjectType ) { int listLen = GetCount(); // deselect if something was selected POSITION selPos = colPagePtr->m_PropListCtrl.GetFirstSelectedItemPosition(); if (selPos != NULL) { int nItem = colPagePtr->m_PropListCtrl.GetNextSelectedItem( selPos ); colPagePtr->m_PropListCtrl.SetItemState( nItem, 0, LVIS_SELECTED ); } // create a new list item colAddInProgress = true; colPagePtr->m_PropListCtrl.InsertItem( listLen, "" ); // create a new item, add to the end of the list colCurElem = new CreateObjectElem( colPagePtr ); colCurElemIndx = listLen; // Make a property list of the appropriate type colCurElem->coePropCombo.m_nObjType = theObjectType; colCurElem->coePropCombo.LoadCombo(); colCurElem->coePropCombo.SetEnumValue( PRESENT_VALUE ); AddTail( colCurElem ); // bind the element to the controls colCurElem->Bind(); // update the encoding colAddInProgress = false; // madanner, 9/3/02. OnSelchangePropCombo(); // Insert new list text for Present_Value colPagePtr->m_PropListCtrl.SetItemState( listLen, LVIS_SELECTED, LVIS_SELECTED); // colPagePtr->UpdateEncoded(); } // // CreateObjectList::RemoveButtonClick // void CreateObjectList::RemoveButtonClick( void ) { int curRow = colCurElemIndx ; CreateObjectElemPtr curElem = colCurElem ; // must have a selected row if (curRow < 0) return; // deselect the row, this will cause an unbind colPagePtr->m_PropListCtrl.SetItemState( curRow, 0, LVIS_SELECTED ); // delete the row from the list colPagePtr->m_PropListCtrl.DeleteItem( curRow ); // delete the element POSITION pos = FindIndex( curRow ); if ( pos != NULL ) { delete GetAt( pos ); RemoveAt( pos ); } // madanner 9/4/02 // reselect a new row... just before the deleted one if any. colPagePtr->m_PropListCtrl.SetItemState( curRow-1 < 0 ? 0 : curRow-1, LVIS_SELECTED, LVIS_SELECTED ); // update the encoding colPagePtr->UpdateEncoded(); } // // CreateObjectList::OnSelchangePropCombo // void CreateObjectList::OnSelchangePropCombo( void ) { if (colCurElem) { colCurElem->coePropCombo.UpdateData(); colPagePtr->UpdateEncoded(); colPagePtr->m_PropListCtrl.SetItemText( colCurElemIndx, 0 , NetworkSniffer::BAC_STRTAB_BACnetPropertyIdentifier.EnumString( colCurElem->coePropCombo.m_enumValue ) ); } } // // CreateObjectList::OnChangeArrayIndex // void CreateObjectList::OnChangeArrayIndex( void ) { if (colCurElem) { CString someText ; colCurElem->coeArrayIndex.UpdateData(); colPagePtr->UpdateEncoded(); if (colCurElem->coeArrayIndex.ctrlNull) colPagePtr->m_PropListCtrl.SetItemText( colCurElemIndx, 1, "" ); else { someText.Format( "%d", colCurElem->coeArrayIndex.uintValue ); colPagePtr->m_PropListCtrl.SetItemText( colCurElemIndx, 1, someText ); } } } // // CreateObjectList::OnChangeValue // void CreateObjectList::OnValue( void ) { if (colCurElem) { CString someText ; BACnetAPDUEncoder enc ; colCurElem->coeValue.DoModal(); colPagePtr->UpdateEncoded(); colCurElem->coeValue.Encode( enc ); EncoderToHex( enc, someText ); colPagePtr->m_PropListCtrl.SetItemText( colCurElemIndx, 2, someText ); } } // // CreateObjectList::OnChangePriority // void CreateObjectList::OnChangePriority( void ) { if (colCurElem) { CString someText ; colCurElem->coePriority.UpdateData(); colPagePtr->UpdateEncoded(); if (colCurElem->coePriority.ctrlNull) colPagePtr->m_PropListCtrl.SetItemText( colCurElemIndx, 3, "" ); else { someText.Format( "%d", colCurElem->coePriority.uintValue ); colPagePtr->m_PropListCtrl.SetItemText( colCurElemIndx, 3, someText ); } } } // // CreateObjectList::OnItemChanging // void CreateObjectList::OnItemChanging( NMHDR *pNMHDR, LRESULT *pResult ) { int curRow = colCurElemIndx ; CreateObjectElemPtr curElem = colCurElem ; NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR ; // forget messages that don't change the selection state if (pNMListView->uOldState == pNMListView->uNewState) return; // skip messages during new item creation if (colAddInProgress) return; if ((pNMListView->uNewState * LVIS_SELECTED) != 0) { // item becoming selected colCurElemIndx = pNMListView->iItem; colCurElem = GetAt( FindIndex( colCurElemIndx ) ); // bind the new current element colCurElem->Bind(); } else { // item no longer selected if (pNMListView->iItem == colCurElemIndx) { // set nothing selected colCurElem = 0; colCurElemIndx = -1; // unbind from the controls curElem->Unbind(); } } } // // CreateObjectList::Encode // void CreateObjectList::Encode( BACnetAPDUEncoder& enc ) { // encode each of the bound properties BACnetOpeningTag().Encode( enc, 1 ); for (POSITION pos = GetHeadPosition(); pos != NULL; ) GetNext( pos )->Encode( enc ); BACnetClosingTag().Encode( enc, 1 ); } void CSendCreateObject::OnSelectObjectType() { UpdateData(); m_ObjectTypeCombo.Enable(); m_ObjectID.Disable(); m_bObjectTypeActive = true; SavePage(); UpdateEncoded(); } void CSendCreateObject::OnSelectObjectID() { UpdateData(); m_ObjectID.Enable(); m_ObjectTypeCombo.Disable(); m_bObjectTypeActive = false; SavePage(); UpdateEncoded(); }
[ "larrycook99@gmail.com" ]
larrycook99@gmail.com
ab9159c751dd58f810b3884659bacc531e9e0f91
387549ab27d89668e656771a19c09637612d57ed
/DRGLib UE project/Source/FSD/Private/RandLinePoint.cpp
d94d8e0c5e15bf8e0bd31759a257310f9845e6a6
[ "MIT" ]
permissive
SamsDRGMods/DRGLib
3b7285488ef98b7b22ab4e00fec64a4c3fb6a30a
76f17bc76dd376f0d0aa09400ac8cb4daad34ade
refs/heads/main
2023-07-03T10:37:47.196444
2023-04-07T23:18:54
2023-04-07T23:18:54
383,509,787
16
5
MIT
2023-04-07T23:18:55
2021-07-06T15:08:14
C++
UTF-8
C++
false
false
66
cpp
#include "RandLinePoint.h" FRandLinePoint::FRandLinePoint() { }
[ "samamstar@gmail.com" ]
samamstar@gmail.com
abb10bf46a7592800b531bd1d78b17c78aebee65
240ef2e7b2b345b756a8d0dcac16573d0df7319e
/cc/paint/paint_image.h
d12ff5b9d93c0ddbb0c069893c8c02aaf2ba2955
[ "BSD-3-Clause" ]
permissive
ifquant/chromium
73b72c049279cce9481372a2eda5b29133a96b3e
7ba58abc11b141bafe03e017c5e027b889782223
refs/heads/master
2023-01-02T21:55:26.572498
2018-12-07T15:28:56
2018-12-07T15:28:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,558
h
// 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. #ifndef CC_PAINT_PAINT_IMAGE_H_ #define CC_PAINT_PAINT_IMAGE_H_ #include <vector> #include "base/gtest_prod_util.h" #include "base/logging.h" #include "base/memory/scoped_refptr.h" #include "cc/paint/frame_metadata.h" #include "cc/paint/image_animation_count.h" #include "cc/paint/paint_export.h" #include "cc/paint/paint_worklet_input.h" #include "third_party/skia/include/core/SkImage.h" #include "ui/gfx/geometry/rect.h" namespace cc { class PaintImageGenerator; class PaintOpBuffer; using PaintRecord = PaintOpBuffer; // A representation of an image for the compositor. This is the most abstract // form of images, and represents what is known at paint time. Note that aside // from default construction, it can only be constructed using a // PaintImageBuilder, or copied/moved into using operator=. PaintImage can // be backed by different kinds of content, such as a lazy generator, a paint // record, a bitmap, or a texture. // // If backed by a generator, this image may not be decoded and information like // the animation frame, the target colorspace, or the scale at which it will be // used are not known yet. A DrawImage is a PaintImage with those decisions // known but that might not have been decoded yet. A DecodedDrawImage is a // DrawImage that has been decoded/scaled/uploaded with all of those parameters // applied. // // The PaintImage -> DrawImage -> DecodedDrawImage -> PaintImage (via SkImage) // path can be used to create a PaintImage that is snapshotted at a particular // scale or animation frame. class CC_PAINT_EXPORT PaintImage { public: using Id = int; using AnimationSequenceId = uint32_t; // A ContentId is used to identify the content for which images which can be // lazily generated (generator/record backed images). As opposed to Id, which // stays constant for the same image, the content id can be updated when the // backing encoded data for this image changes. For instance, in the case of // images which can be progressively updated as more encoded data is received. using ContentId = int; // A GeneratorClientId can be used to namespace different clients that are // using the output of a PaintImageGenerator. // // This is used to allow multiple compositors to simultaneously decode the // same image. Each compositor is assigned a unique GeneratorClientId which is // passed through to the decoder from PaintImage::Decode. Internally the // decoder ensures that requestes from different clients are executed in // parallel. This is particularly important for animated images, where // compositors displaying the same image can request decodes for different // frames from this image. using GeneratorClientId = int; static const GeneratorClientId kDefaultGeneratorClientId; // The default frame index to use if no index is provided. For multi-frame // images, this would imply the first frame of the animation. static const size_t kDefaultFrameIndex; static const Id kInvalidId; static const ContentId kInvalidContentId; class CC_PAINT_EXPORT FrameKey { public: FrameKey(ContentId content_id, size_t frame_index, gfx::Rect subset_rect); bool operator==(const FrameKey& other) const; bool operator!=(const FrameKey& other) const; uint64_t hash() const { return hash_; } std::string ToString() const; size_t frame_index() const { return frame_index_; } ContentId content_id() const { return content_id_; } private: ContentId content_id_; size_t frame_index_; // TODO(khushalsagar): Remove this when callers take care of subsetting. gfx::Rect subset_rect_; size_t hash_; }; struct CC_PAINT_EXPORT FrameKeyHash { size_t operator()(const FrameKey& frame_key) const { return frame_key.hash(); } }; enum class AnimationType { ANIMATED, VIDEO, STATIC }; enum class CompletionState { DONE, PARTIALLY_DONE }; enum class DecodingMode { // No preference has been specified. The compositor may choose to use sync // or async decoding. See CheckerImageTracker for the default behaviour. kUnspecified, // It's preferred to display this image synchronously with the rest of the // content updates, skipping any heuristics. kSync, // Async is preferred. The compositor may decode async if it meets the // heuristics used to avoid flickering (for instance vetoing of multipart // response, animated, partially loaded images) and would be performant. See // CheckerImageTracker for all heuristics used. kAsync }; // Returns the more conservative mode out of the two given ones. static DecodingMode GetConservative(DecodingMode one, DecodingMode two); static Id GetNextId(); static ContentId GetNextContentId(); static GeneratorClientId GetNextGeneratorClientId(); // Creates a PaintImage wrapping |bitmap|. Note that the pixels will be copied // unless the bitmap is marked immutable. static PaintImage CreateFromBitmap(SkBitmap bitmap); PaintImage(); PaintImage(const PaintImage& other); PaintImage(PaintImage&& other); ~PaintImage(); PaintImage& operator=(const PaintImage& other); PaintImage& operator=(PaintImage&& other); bool operator==(const PaintImage& other) const; bool operator!=(const PaintImage& other) const { return !(*this == other); } // Returns the smallest size that is at least as big as the requested_size // such that we can decode to exactly that scale. If the requested size is // larger than the image, this returns the image size. Any returned value is // guaranteed to be stable. That is, // GetSupportedDecodeSize(GetSupportedDecodeSize(size)) is guaranteed to be // GetSupportedDecodeSize(size). SkISize GetSupportedDecodeSize(const SkISize& requested_size) const; // Decode the image into the given memory for the given SkImageInfo. // - Size in |info| must be supported. // - The amount of memory allocated must be at least // |info|.minRowBytes() * |info|.height(). // Returns true on success and false on failure. Updates |info| to match the // requested color space, if provided. // Note that for non-lazy images this will do a copy or readback if the image // is texture backed. bool Decode(void* memory, SkImageInfo* info, sk_sp<SkColorSpace> color_space, size_t frame_index, GeneratorClientId client_id) const; Id stable_id() const { return id_; } const sk_sp<SkImage>& GetSkImage() const; AnimationType animation_type() const { return animation_type_; } CompletionState completion_state() const { return completion_state_; } bool is_multipart() const { return is_multipart_; } bool is_high_bit_depth() const { return is_high_bit_depth_; } int repetition_count() const { return repetition_count_; } bool ShouldAnimate() const; AnimationSequenceId reset_animation_sequence_id() const { return reset_animation_sequence_id_; } DecodingMode decoding_mode() const { return decoding_mode_; } PaintImage::ContentId content_id() const { return content_id_; } // TODO(vmpstr): Don't get the SkImage here if you don't need to. uint32_t unique_id() const { return paint_worklet_input_ ? 0 : GetSkImage()->uniqueID(); } explicit operator bool() const { return paint_worklet_input_ || !!GetSkImage(); } bool IsLazyGenerated() const { return paint_worklet_input_ ? false : GetSkImage()->isLazyGenerated(); } bool IsTextureBacked() const { return paint_worklet_input_ ? false : GetSkImage()->isTextureBacked(); } int width() const { return paint_worklet_input_ ? static_cast<int>(paint_worklet_input_->GetSize().width()) : GetSkImage()->width(); } int height() const { return paint_worklet_input_ ? static_cast<int>(paint_worklet_input_->GetSize().height()) : GetSkImage()->height(); } SkColorSpace* color_space() const { return paint_worklet_input_ ? nullptr : GetSkImage()->colorSpace(); } // Returns the color type of this image. SkColorType GetColorType() const; // Returns a unique id for the pixel data for the frame at |frame_index|. FrameKey GetKeyForFrame(size_t frame_index) const; // Returns the metadata for each frame of a multi-frame image. Should only be // used with animated images. const std::vector<FrameMetadata>& GetFrameMetadata() const; // Returns the total number of frames known to exist in this image. size_t FrameCount() const; // Returns an SkImage for the frame at |index|. sk_sp<SkImage> GetSkImageForFrame(size_t index, GeneratorClientId client_id) const; PaintWorkletInput* paint_worklet_input() { return paint_worklet_input_.get(); } std::string ToString() const; private: friend class PaintImageBuilder; FRIEND_TEST_ALL_PREFIXES(PaintImageTest, Subsetting); // Used internally for PaintImages created at raster. static const Id kNonLazyStableId; friend class ScopedRasterFlags; friend class PaintOpReader; bool DecodeFromGenerator(void* memory, SkImageInfo* info, sk_sp<SkColorSpace> color_space, size_t frame_index, GeneratorClientId client_id) const; bool DecodeFromSkImage(void* memory, SkImageInfo* info, sk_sp<SkColorSpace> color_space, size_t frame_index, GeneratorClientId client_id) const; void CreateSkImage(); PaintImage MakeSubset(const gfx::Rect& subset) const; sk_sp<SkImage> sk_image_; sk_sp<PaintRecord> paint_record_; gfx::Rect paint_record_rect_; ContentId content_id_ = kInvalidContentId; sk_sp<PaintImageGenerator> paint_image_generator_; Id id_ = 0; AnimationType animation_type_ = AnimationType::STATIC; CompletionState completion_state_ = CompletionState::DONE; int repetition_count_ = kAnimationNone; // If non-empty, holds the subset of this image relative to the original image // at the origin. gfx::Rect subset_rect_; // Whether the data fetched for this image is a part of a multpart response. bool is_multipart_ = false; // Whether this image has more than 8 bits per color channel. bool is_high_bit_depth_ = false; // An incrementing sequence number maintained by the painter to indicate if // this animation should be reset in the compositor. Incrementing this number // will reset this animation in the compositor for the first frame which has a // recording with a PaintImage storing the updated sequence id. AnimationSequenceId reset_animation_sequence_id_ = 0u; DecodingMode decoding_mode_ = DecodingMode::kSync; // The |cached_sk_image_| can be derived/created from other inputs present in // the PaintImage but we always construct it at creation time for 2 reasons: // 1) This ensures that the underlying SkImage is shared across PaintImage // copies, which is necessary to allow reuse of decodes from this image in // skia's cache. // 2) Ensures that accesses to it are thread-safe. sk_sp<SkImage> cached_sk_image_; // The input parameters that are needed to execute the JS paint callback. scoped_refptr<PaintWorkletInput> paint_worklet_input_; }; } // namespace cc #endif // CC_PAINT_PAINT_IMAGE_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
bed41508c5c10140efedf86ac935220ef48ac053
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/multimedia/dshow/filters/encdec/drmtest/drmlitetest.cpp
ce7a92614eea6f72b5f9f8bfe9cdcaa4720a737d
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
3,688
cpp
//----------------------------------------------------------------------------- // // File: drmlitetest.cpp // // Microsoft Digital Rights Management // Copyright (C) Microsoft Corporation, 1998 - 1999, All Rights Reserved // // Description: // // original link lib was: .\lib,.\checked // changed to : ..\DrmLib, ..\DrmLib\Checked // // Need to add f:\nt1\tools\x86 to Tools\Directories\Executables path //----------------------------------------------------------------------------- #include <stdio.h> #include <objbase.h> #include "des.h" #include "sha.h" #include "pkcrypto.h" #include "drmerr.h" #include "drmstub.h" #include "drmutil.h" #include "license.h" #define PACKET_LEN 128 static const BYTE NO_EXPIRY_DATE[DATE_LEN] = {0xFF, 0xFF, 0xFF, 0xFF}; INT TestDRMLite( VOID ) { HRESULT hr; CDRMLite cDRMLite; BYTE bAppSec[APPSEC_LEN] = {0x0, 0x0, 0x3, 0xE8}; // 1000 BYTE bGenLicRights[RIGHTS_LEN] = {0x13, 0x0, 0x0, 0x0}; // 0x1=PlayOnPC, 0x2=XfertoNonSDMI, 0x4=NoBackupRestore, 0x8=BurnToCD, 0x10=XferToSDMI BYTE bDecryptRights[RIGHTS_LEN] = {0x01, 0x0, 0x0, 0x0}; // 0x1=PlayOnPC LPSTR pszKID = NULL; LPSTR pszEncryptKey = NULL; BYTE *pbTmp = NULL; DWORD dwLen; INT i; BYTE data[ PACKET_LEN ]; BOOL fCanDecrypt; // Generate a new license // KID and EncryptKey are allocated and returned as base64-encoded strings in the output buffers // hr = cDRMLite.GenerateNewLicense( bAppSec, bGenLicRights, (BYTE *)NO_EXPIRY_DATE, &pszKID, &pszEncryptKey ); printf( "GenerateNewLicense (0x%x)\n", hr ); CORg( hr ); printf( "KID=%s\nEncryptKey=%s\n", pszKID, pszEncryptKey ); // Convert key from string to raw byte data // pmTmp is allocated inside the call to DRMHr64SzToBlob // hr = DRMHr64SzToBlob( pszEncryptKey, &pbTmp, &dwLen ); CORg( hr ); printf("EncryptKey="); for( i=0; i<(int)dwLen; i++ ) { printf("0x%0x ", *(pbTmp+i)); } printf("\n"); // Initialize clear data buffer // for( i=0; i<PACKET_LEN; i++ ) { data[i] = 'a'; } // Display clear data buffer // for( i=0; i<PACKET_LEN; i++ ) { printf("%02x",data[i] ); } printf("\n"); // Encrypt the data // hr = cDRMLite.Encrypt( pszEncryptKey, PACKET_LEN, data ); printf( "Encrypt (0x%x)\n", hr ); CORg( hr ); // Display the encrypted buffer // for( i=0; i<PACKET_LEN; i++ ) { printf("%02x",data[i] ); } printf("\n"); // Set the rights to use for decryption // hr = cDRMLite.SetRights( bDecryptRights ); CORg( hr ); // Check to verify the data can be decrypted // hr = cDRMLite.CanDecrypt( pszKID, &fCanDecrypt ); printf( "CanDecrypt = 0x%x (0x%x)\n", fCanDecrypt, hr ); CORg( hr ); // Decrypt the data buffer // hr = cDRMLite.Decrypt( pszKID, PACKET_LEN, data ); printf( "Decrypt (0x%x)\n", hr ); CORg( hr ); // Display the decrypted buffer // for( i=0; i<PACKET_LEN; i++ ) { printf("%02x",data[i] ); } printf("\n"); Error: if( pbTmp ) { delete [] pbTmp; } if( pszKID ) { CoTaskMemFree( pszKID ); } if( pszEncryptKey ) { CoTaskMemFree( pszEncryptKey ); } return hr; } int __cdecl main( int argc, char *argv[] ) { TestDRMLite(); return 0; }
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
c65a813e183b27f05fad0212e5905a4902befd10
b7bb18f565ebe6057f19020b2a886effb7f5e24f
/src/core/interaction.h
6df301d405312b33b3c28d49682cb3c277176534
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
JAGJ10/pbrt-v3
f746ceaa54aaf9f51648ad4dff9449e4c3f437ff
757de9ce9f07ac142a685c126b0836dd6854ad81
refs/heads/master
2021-01-15T08:26:51.395020
2016-08-17T14:46:24
2016-08-17T14:49:07
65,962,730
1
0
null
2016-08-18T03:38:27
2016-08-18T03:38:27
null
UTF-8
C++
false
false
5,736
h
/* pbrt source code is Copyright(c) 1998-2016 Matt Pharr, Greg Humphreys, and Wenzel Jakob. This file is part of pbrt. 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. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #if defined(_MSC_VER) #define NOMINMAX #pragma once #endif #ifndef PBRT_CORE_INTERACTION_H #define PBRT_CORE_INTERACTION_H // core/interaction.h* #include "pbrt.h" #include "geometry.h" #include "transform.h" #include "medium.h" #include "material.h" // Interaction Declarations struct Interaction { // Interaction Public Methods Interaction() : time(0) {} Interaction(const Point3f &p, const Normal3f &n, const Vector3f &pError, const Vector3f &wo, Float time, const MediumInterface &mediumInterface) : p(p), time(time), pError(pError), wo(Normalize(wo)), n(n), mediumInterface(mediumInterface) {} bool IsSurfaceInteraction() const { return n != Normal3f(); } Ray SpawnRay(const Vector3f &d) const { Point3f o = OffsetRayOrigin(p, pError, n, d); return Ray(o, d, Infinity, time, GetMedium(d)); } Ray SpawnRayTo(const Point3f &p2) const { Point3f origin = OffsetRayOrigin(p, pError, n, p2 - p); Vector3f d = p2 - p; return Ray(origin, d, 1 - ShadowEpsilon, time, GetMedium(d)); } Ray SpawnRayTo(const Interaction &it) const { Point3f origin = OffsetRayOrigin(p, pError, n, it.p - p); Point3f target = OffsetRayOrigin(it.p, it.pError, it.n, origin - it.p); Vector3f d = target - origin; return Ray(origin, d, 1 - ShadowEpsilon, time, GetMedium(d)); } Interaction(const Point3f &p, const Vector3f &wo, Float time, const MediumInterface &mediumInterface) : p(p), time(time), wo(wo), mediumInterface(mediumInterface) {} Interaction(const Point3f &p, Float time, const MediumInterface &mediumInterface) : p(p), time(time), mediumInterface(mediumInterface) {} bool IsMediumInteraction() const { return !IsSurfaceInteraction(); } const Medium *GetMedium(const Vector3f &w) const { return Dot(w, n) > 0 ? mediumInterface.outside : mediumInterface.inside; } const Medium *GetMedium() const { Assert(mediumInterface.inside == mediumInterface.outside); return mediumInterface.inside; } // Interaction Public Data Point3f p; Float time; Vector3f pError; Vector3f wo; Normal3f n; MediumInterface mediumInterface; }; class MediumInteraction : public Interaction { public: // MediumInteraction Public Methods MediumInteraction() : phase(nullptr) {} MediumInteraction(const Point3f &p, const Vector3f &wo, Float time, const Medium *medium, const PhaseFunction *phase) : Interaction(p, wo, time, medium), phase(phase) {} bool IsValid() const { return phase != nullptr; } // MediumInteraction Public Data const PhaseFunction *phase; }; // SurfaceInteraction Declarations class SurfaceInteraction : public Interaction { public: // SurfaceInteraction Public Methods SurfaceInteraction() {} SurfaceInteraction(const Point3f &p, const Vector3f &pError, const Point2f &uv, const Vector3f &wo, const Vector3f &dpdu, const Vector3f &dpdv, const Normal3f &dndu, const Normal3f &dndv, Float time, const Shape *sh); void SetShadingGeometry(const Vector3f &dpdu, const Vector3f &dpdv, const Normal3f &dndu, const Normal3f &dndv, bool orientationIsAuthoritative); void ComputeScatteringFunctions( const RayDifferential &ray, MemoryArena &arena, bool allowMultipleLobes = false, TransportMode mode = TransportMode::Radiance); void ComputeDifferentials(const RayDifferential &r) const; Spectrum Le(const Vector3f &w) const; // SurfaceInteraction Public Data Point2f uv; Vector3f dpdu, dpdv; Normal3f dndu, dndv; const Shape *shape = nullptr; struct { Normal3f n; Vector3f dpdu, dpdv; Normal3f dndu, dndv; } shading; const Primitive *primitive = nullptr; BSDF *bsdf = nullptr; BSSRDF *bssrdf = nullptr; mutable Vector3f dpdx, dpdy; mutable Float dudx = 0, dvdx = 0, dudy = 0, dvdy = 0; }; #endif // PBRT_CORE_INTERACTION_H
[ "matt@pharr.org" ]
matt@pharr.org
5b64b7a6e912edbf0d5b5604efe3473f524da320
1b5156451391000e12fb3013ccc6eb99b6566b98
/lua_message_field.cpp
b917147a6b40d68625738002e09fbf65a89cbb84
[]
no_license
amyvmiwei/lua-protocol-buffer
47b9a5530f379c9295bbd17b25892af3d3a73ed2
123c5b9eb73b8e68d0257280e644be967b9cd580
refs/heads/master
2021-01-25T07:28:04.499656
2014-03-21T07:36:59
2014-03-21T07:36:59
15,598,996
1
0
null
null
null
null
UTF-8
C++
false
false
10,785
cpp
#include "lua_message_field.h" #include "lua_helpers.h" #include <google/protobuf/io/printer.h> #include <google/protobuf/stubs/strutil.h> namespace google { namespace protobuf { namespace compiler { namespace mwpb_lua { namespace { void SetMessageVariables(const FieldDescriptor* descriptor, map<string, string>* variables, const Options& options) { SetCommonFieldVariables(descriptor, variables, options); (*variables)["type"] = FieldMessageTypeName(descriptor); (*variables)["stream_writer"] = (*variables)["declared_type"] + (HasFastArraySerialization(descriptor->message_type()->file()) ? "MaybeToArray" : ""); } } // namespace // =================================================================== MessageFieldGenerator:: MessageFieldGenerator(const FieldDescriptor* descriptor, const Options& options) : descriptor_(descriptor) { SetMessageVariables(descriptor, &variables_, options); } MessageFieldGenerator::~MessageFieldGenerator() {} void MessageFieldGenerator:: GeneratePrivateMembers(io::Printer* printer) const { //printer->Print(variables_, "$type$* $name$_;\n"); printer->Print(variables_, "$name$_ = $type$,\n"); } void MessageFieldGenerator:: GenerateAccessorDeclarations(io::Printer* printer) const { // printer->Print(variables_, // "inline const $type$& $name$() const$deprecation$;\n" // "inline $type$* mutable_$name$()$deprecation$;\n" // "inline $type$* release_$name$()$deprecation$;\n" // "inline void set_allocated_$name$($type$* $name$)$deprecation$;\n"); printer->Print(variables_, "$classname$.get_$name$ = function()\n"); printer->Indent(); printer->Print(variables_, "return $classname$_Member.$name$_\n"); printer->Outdent(); printer->Print("end\n\n"); printer->Print(variables_, "$classname$.set_$name$ = function(var)\n"); printer->Indent(); printer->Print(variables_, "$classname$_Member.$name$_ = var\n"); printer->Print(variables_, "$classname$_Temp.$name$_ = true\n"); printer->Outdent(); printer->Print("end\n\n"); } void MessageFieldGenerator:: GenerateInlineAccessorDefinitions(io::Printer* printer) const { printer->Print(variables_, "inline const $type$& $classname$::$name$() const {\n"); PrintHandlingOptionalStaticInitializers( variables_, descriptor_->file(), printer, // With static initializers. " return $name$_ != NULL ? *$name$_ : *default_instance_->$name$_;\n", // Without. " return $name$_ != NULL ? *$name$_ : *default_instance().$name$_;\n"); printer->Print(variables_, "}\n" "inline $type$* $classname$::mutable_$name$() {\n" " set_has_$name$();\n" " if ($name$_ == NULL) $name$_ = new $type$;\n" " return $name$_;\n" "}\n" "inline $type$* $classname$::release_$name$() {\n" " clear_has_$name$();\n" " $type$* temp = $name$_;\n" " $name$_ = NULL;\n" " return temp;\n" "}\n" "inline void $classname$::set_allocated_$name$($type$* $name$) {\n" " delete $name$_;\n" " $name$_ = $name$;\n" " if ($name$) {\n" " set_has_$name$();\n" " } else {\n" " clear_has_$name$();\n" " }\n" "}\n"); } void MessageFieldGenerator:: GenerateClearingCode(io::Printer* printer) const { printer->Print(variables_, "if ($name$_ != NULL) $name$_->$type$::Clear();\n"); } void MessageFieldGenerator:: GenerateMergingCode(io::Printer* printer) const { printer->Print(variables_, "mutable_$name$()->$type$::MergeFrom(from.$name$());\n"); } void MessageFieldGenerator:: GenerateSwappingCode(io::Printer* printer) const { printer->Print(variables_, "std::swap($name$_, other->$name$_);\n"); } void MessageFieldGenerator:: GenerateConstructorCode(io::Printer* printer) const { printer->Print(variables_, "$name$_ = NULL;\n"); } void MessageFieldGenerator:: GenerateMergeFromCodedStream(io::Printer* printer) const { if (descriptor_->type() == FieldDescriptor::TYPE_MESSAGE) { // printer->Print(variables_, // "DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(\n" // " input, mutable_$name$()));\n"); printer->Print(variables_, "$classname$_Member.$name$_.MergePartialFromCodedStream();\n"); } else { // printer->Print(variables_, // "DO_(::google::protobuf::internal::WireFormatLite::ReadGroupNoVirtual(\n" // " $number$, input, mutable_$name$()));\n"); assert(0); } } void MessageFieldGenerator:: GenerateSerializeWithCachedSizes(io::Printer* printer) const { // printer->Print(variables_, // "::google::protobuf::internal::WireFormatLite::Write$stream_writer$(\n" // " $number$, this->$name$(), output);\n"); // printer->Print(variables_, // "pb_Write_$stream_writer$($number$, $classname$.get_$name$());\n" // ); printer->Print(variables_, "$classname$_Member.$name$_.SerializeWithCachedSizes();\n"); } void MessageFieldGenerator:: GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const { printer->Print(variables_, "target = ::google::protobuf::internal::WireFormatLite::\n" " Write$declared_type$NoVirtualToArray(\n" " $number$, this->$name$(), target);\n"); } void MessageFieldGenerator:: GenerateByteSize(io::Printer* printer) const { printer->Print(variables_, "total_size += $tag_size$ +\n" " ::google::protobuf::internal::WireFormatLite::$declared_type$SizeNoVirtual(\n" " this->$name$());\n"); } // =================================================================== RepeatedMessageFieldGenerator:: RepeatedMessageFieldGenerator(const FieldDescriptor* descriptor, const Options& options) : descriptor_(descriptor) { SetMessageVariables(descriptor, &variables_, options); } RepeatedMessageFieldGenerator::~RepeatedMessageFieldGenerator() {} void RepeatedMessageFieldGenerator:: GeneratePrivateMembers(io::Printer* printer) const { // printer->Print(variables_, // "::google::protobuf::RepeatedPtrField< $type$ > $name$_;\n"); printer->Print(variables_, "$name$_={},\n"); } void RepeatedMessageFieldGenerator:: GenerateAccessorDeclarations(io::Printer* printer) const { // printer->Print(variables_, // "inline const $type$& $name$(int index) const$deprecation$;\n" // "inline $type$* mutable_$name$(int index)$deprecation$;\n" // "inline $type$* add_$name$()$deprecation$;\n"); // printer->Print(variables_, // "inline const ::google::protobuf::RepeatedPtrField< $type$ >&\n" // " $name$() const$deprecation$;\n" // "inline ::google::protobuf::RepeatedPtrField< $type$ >*\n" // " mutable_$name$()$deprecation$;\n"); printer->Print(variables_, "$classname$.add_$name$ = function(var)\n"); printer->Indent(); printer->Print(variables_, "table.insert($classname$_Member.$name$_, var)\n"); printer->Print(variables_, "$classname$_Temp.$name$_ = true\n"); printer->Outdent(); printer->Print("end\n\n"); printer->Print(variables_, "$classname$.get_$name$ = function(index)\n"); printer->Indent(); printer->Print(variables_, "return $classname$_Member.$name$_[index]\n"); printer->Outdent(); printer->Print("end\n\n"); } void RepeatedMessageFieldGenerator:: GenerateInlineAccessorDefinitions(io::Printer* printer) const { printer->Print(variables_, "inline const $type$& $classname$::$name$(int index) const {\n" " return $name$_.$cppget$(index);\n" "}\n" "inline $type$* $classname$::mutable_$name$(int index) {\n" " return $name$_.Mutable(index);\n" "}\n" "inline $type$* $classname$::add_$name$() {\n" " return $name$_.Add();\n" "}\n"); printer->Print(variables_, "inline const ::google::protobuf::RepeatedPtrField< $type$ >&\n" "$classname$::$name$() const {\n" " return $name$_;\n" "}\n" "inline ::google::protobuf::RepeatedPtrField< $type$ >*\n" "$classname$::mutable_$name$() {\n" " return &$name$_;\n" "}\n"); } void RepeatedMessageFieldGenerator:: GenerateClearingCode(io::Printer* printer) const { printer->Print(variables_, "$name$_.Clear();\n"); } void RepeatedMessageFieldGenerator:: GenerateMergingCode(io::Printer* printer) const { printer->Print(variables_, "$name$_.MergeFrom(from.$name$_);\n"); } void RepeatedMessageFieldGenerator:: GenerateSwappingCode(io::Printer* printer) const { printer->Print(variables_, "$name$_.Swap(&other->$name$_);\n"); } void RepeatedMessageFieldGenerator:: GenerateConstructorCode(io::Printer* printer) const { // Not needed for repeated fields. } void RepeatedMessageFieldGenerator:: GenerateMergeFromCodedStream(io::Printer* printer) const { if (descriptor_->type() == FieldDescriptor::TYPE_MESSAGE) { // printer->Print(variables_, // "DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(\n" // " input, add_$name$()));\n"); printer->Print(variables_, "local msgtb = $type$;\n" "msgtb.MergePartialFromCodedStream();\n" "add_$name$(msgtb);\n" ""); } else { // printer->Print(variables_, // "DO_(::google::protobuf::internal::WireFormatLite::ReadGroupNoVirtual(\n" // " $number$, input, add_$name$()));\n"); assert(0); } } void RepeatedMessageFieldGenerator:: GenerateSerializeWithCachedSizes(io::Printer* printer) const { // printer->Print(variables_, // "for (int i = 0; i < this->$name$_size(); i++) {\n" // " ::google::protobuf::internal::WireFormatLite::Write$stream_writer$(\n" // " $number$, this->$name$(i), output);\n" // "}\n"); //printer->Print(variables_, // "for i=1, $classname$.$name$_size() do\n" // " pb_Write_$stream_writer$($number$, $classname$.get_$name$());\n" // "end\n" // ); // printer->Print(variables_, // "$classname$_Member.$name$_.SerializeWithCachedSizes();\n"); printer->Print(variables_, "for i=1, $classname$.$name$_size() do\n" " $classname$.get_$name$(i).SerializeWithCachedSizes();\n" // " pb_Write_$stream_writer$($number$, $classname$.get_$name$());\n" "end\n" ); } void RepeatedMessageFieldGenerator:: GenerateSerializeWithCachedSizesToArray(io::Printer* printer) const { printer->Print(variables_, "for (int i = 0; i < this->$name$_size(); i++) {\n" " target = ::google::protobuf::internal::WireFormatLite::\n" " Write$declared_type$NoVirtualToArray(\n" " $number$, this->$name$(i), target);\n" "}\n"); } void RepeatedMessageFieldGenerator:: GenerateByteSize(io::Printer* printer) const { printer->Print(variables_, "total_size += $tag_size$ * this->$name$_size();\n" "for (int i = 0; i < this->$name$_size(); i++) {\n" " total_size +=\n" " ::google::protobuf::internal::WireFormatLite::$declared_type$SizeNoVirtual(\n" " this->$name$(i));\n" "}\n"); } } // namespace } // namespace compiler } // namespace protobuf } // namespace google
[ "amyvmiwei@gmail.com" ]
amyvmiwei@gmail.com
e19f79e6a873f8993c5f7c127ec010ab301711b5
e217eaf05d0dab8dd339032b6c58636841aa8815
/src/OpenInfraPlatform/UserInterface/ColorPicker/colorpickerwidget.h
ebdb2605c5b9cf129a48e98e5ca5fe3722fb2d65
[]
no_license
bigdoods/OpenInfraPlatform
f7785ebe4cb46e24d7f636e1b4110679d78a4303
0266e86a9f25f2ea9ec837d8d340d31a58a83c8e
refs/heads/master
2021-01-21T03:41:20.124443
2016-01-26T23:20:21
2016-01-26T23:20:21
57,377,206
0
1
null
2016-04-29T10:38:19
2016-04-29T10:38:19
null
UTF-8
C++
false
false
1,533
h
/* Copyright (C) 2009, Etienne Moutot <e.moutot@gmail.com> This file is part of colorPickerWidget. colorPickerWidget is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. colorPickerWidget 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 Foobar. If not, see <http://www.gnu.org/licenses/>. */ #ifndef COLORPICKERWIDGET_H #define COLORPICKERWIDGET_H #include <QWidget> #include <QPushbutton> #include <QGridLayout> #include "qtcolortriangle.h" #include "colorviewer.h" #include "screen.h" #include <iostream> class ColorPickerWidget : public QWidget { Q_OBJECT public: ColorPickerWidget(QWidget *parent = 0); ~ColorPickerWidget(); Q_SIGNALS: void colorChanged(const QColor &col); public Q_SLOTS: void setColor(const QColor &col); // pushButton void on_pushButtonPickColor_clicked(); private Q_SLOTS: void pickMode(); void colorChgd(); private: QtColorTriangle *colorTriangle; ColorViewer *colorView; QPushButton *pushButtonPickColor; QGridLayout *layout; screen *ecran; }; #endif // COLORPICKERWIDGET_H
[ "planung.cms.bv@tum.de" ]
planung.cms.bv@tum.de
4ca52fd72ae17eae0cdc26a807c8e52b9cd55c71
3270597ce4b7a3dcbe0df4b1aff9e253a4a6a8bb
/Project Οντοκεντρικός Προγραμματισμός/C++ Project/Visual Studio Hotel Project/ConsoleApplication1/Booking.h
c41ac3487bcac9368448b8de2bb3d43124b2471e
[ "MIT" ]
permissive
DimitrisKostorrizos/UndergraduateCeidProjects
e39e443d75cde68ab77d1d1ce7110ff782e1b0be
8e55971f5a2c3b867b9f17a8d68c39b9898458dd
refs/heads/master
2022-12-07T14:19:25.086282
2022-11-25T20:44:15
2022-11-25T20:44:15
242,327,023
9
7
MIT
2020-09-30T19:16:38
2020-02-22T11:07:30
HTML
UTF-8
C++
false
false
1,155
h
#ifndef BOOKING_H #define BOOKING_H #include<iostream> #include<string> using namespace std; class Room;//Forward Declaration. class Booking { public: Booking(string name, int _arrivalDay, int _accomodationDays, int _peopleNum); virtual ~Booking(); string getClientName() { return clientName; } void setClientName(string val) { clientName = val; } int getArrivalDay() { return arrivalDay; } void setArrivalDay(int val) { arrivalDay = val; } int getAccomodationDays() { return accomodationDays; } void setAccomodationDays(int val) { accomodationDays = val; } int getPeopleNum() { return peopleNum; } void setPeopleNum(int val) { peopleNum = val; } void setBookingID() { bookingID = ++bookingInstanceCounter; }; int getBookingID() { return bookingID; } void setRoom(Room *a) { room = a; } Room* getRoom() { return room; } friend ostream& operator<<(ostream& os, const Booking& b);//Declaration for the overloading of the operator <<, used by a Booking type object. private: string clientName; int arrivalDay; int accomodationDays; int peopleNum; int bookingID; static int bookingInstanceCounter; Room *room; }; #endif//BOOKING_H
[ "57042407+DimitrisKostorrizos@users.noreply.github.com" ]
57042407+DimitrisKostorrizos@users.noreply.github.com
f1e10bc9e6b306f8112d2e7a26eae117e38be82e
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/run-scripts/tmp_1/S+dmb.sylp+po.c.cbmc.cpp
21d345bd6c4bf2289e5ba827209fda658c285924
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C++
false
false
25,416
cpp
// 0:vars:2 // 2:atom_1_X0_1:1 // 3:thr0:1 // 4:thr1:1 #define ADDRSIZE 5 #define NPROC 3 #define NCONTEXT 1 #define ASSUME(stmt) __CPROVER_assume(stmt) #define ASSERT(stmt) __CPROVER_assert(stmt, "error") #define max(a,b) (a>b?a:b) char __get_rng(); char get_rng( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } char get_rng_th( char from, char to ) { char ret = __get_rng(); ASSUME(ret >= from && ret <= to); return ret; } int main(int argc, char **argv) { // declare arrays for intial value version in contexts int meminit_[ADDRSIZE*NCONTEXT]; #define meminit(x,k) meminit_[(x)*NCONTEXT+k] int coinit_[ADDRSIZE*NCONTEXT]; #define coinit(x,k) coinit_[(x)*NCONTEXT+k] int deltainit_[ADDRSIZE*NCONTEXT]; #define deltainit(x,k) deltainit_[(x)*NCONTEXT+k] // declare arrays for running value version in contexts int mem_[ADDRSIZE*NCONTEXT]; #define mem(x,k) mem_[(x)*NCONTEXT+k] int co_[ADDRSIZE*NCONTEXT]; #define co(x,k) co_[(x)*NCONTEXT+k] int delta_[ADDRSIZE*NCONTEXT]; #define delta(x,k) delta_[(x)*NCONTEXT+k] // declare arrays for local buffer and observed writes int buff_[NPROC*ADDRSIZE]; #define buff(x,k) buff_[(x)*ADDRSIZE+k] int pw_[NPROC*ADDRSIZE]; #define pw(x,k) pw_[(x)*ADDRSIZE+k] // declare arrays for context stamps char cr_[NPROC*ADDRSIZE]; #define cr(x,k) cr_[(x)*ADDRSIZE+k] char iw_[NPROC*ADDRSIZE]; #define iw(x,k) iw_[(x)*ADDRSIZE+k] char cw_[NPROC*ADDRSIZE]; #define cw(x,k) cw_[(x)*ADDRSIZE+k] char cx_[NPROC*ADDRSIZE]; #define cx(x,k) cx_[(x)*ADDRSIZE+k] char is_[NPROC*ADDRSIZE]; #define is(x,k) is_[(x)*ADDRSIZE+k] char cs_[NPROC*ADDRSIZE]; #define cs(x,k) cs_[(x)*ADDRSIZE+k] char crmax_[NPROC*ADDRSIZE]; #define crmax(x,k) crmax_[(x)*ADDRSIZE+k] char sforbid_[ADDRSIZE*NCONTEXT]; #define sforbid(x,k) sforbid_[(x)*NCONTEXT+k] // declare arrays for synchronizations int cl[NPROC]; int cdy[NPROC]; int cds[NPROC]; int cdl[NPROC]; int cisb[NPROC]; int caddr[NPROC]; int cctrl[NPROC]; int cstart[NPROC]; int creturn[NPROC]; // declare arrays for contexts activity int active[NCONTEXT]; int ctx_used[NCONTEXT]; __LOCALS__ buff(0,0) = 0; pw(0,0) = 0; cr(0,0) = 0; iw(0,0) = 0; cw(0,0) = 0; cx(0,0) = 0; is(0,0) = 0; cs(0,0) = 0; crmax(0,0) = 0; buff(0,1) = 0; pw(0,1) = 0; cr(0,1) = 0; iw(0,1) = 0; cw(0,1) = 0; cx(0,1) = 0; is(0,1) = 0; cs(0,1) = 0; crmax(0,1) = 0; buff(0,2) = 0; pw(0,2) = 0; cr(0,2) = 0; iw(0,2) = 0; cw(0,2) = 0; cx(0,2) = 0; is(0,2) = 0; cs(0,2) = 0; crmax(0,2) = 0; buff(0,3) = 0; pw(0,3) = 0; cr(0,3) = 0; iw(0,3) = 0; cw(0,3) = 0; cx(0,3) = 0; is(0,3) = 0; cs(0,3) = 0; crmax(0,3) = 0; buff(0,4) = 0; pw(0,4) = 0; cr(0,4) = 0; iw(0,4) = 0; cw(0,4) = 0; cx(0,4) = 0; is(0,4) = 0; cs(0,4) = 0; crmax(0,4) = 0; cl[0] = 0; cdy[0] = 0; cds[0] = 0; cdl[0] = 0; cisb[0] = 0; caddr[0] = 0; cctrl[0] = 0; cstart[0] = get_rng(0,NCONTEXT-1); creturn[0] = get_rng(0,NCONTEXT-1); buff(1,0) = 0; pw(1,0) = 0; cr(1,0) = 0; iw(1,0) = 0; cw(1,0) = 0; cx(1,0) = 0; is(1,0) = 0; cs(1,0) = 0; crmax(1,0) = 0; buff(1,1) = 0; pw(1,1) = 0; cr(1,1) = 0; iw(1,1) = 0; cw(1,1) = 0; cx(1,1) = 0; is(1,1) = 0; cs(1,1) = 0; crmax(1,1) = 0; buff(1,2) = 0; pw(1,2) = 0; cr(1,2) = 0; iw(1,2) = 0; cw(1,2) = 0; cx(1,2) = 0; is(1,2) = 0; cs(1,2) = 0; crmax(1,2) = 0; buff(1,3) = 0; pw(1,3) = 0; cr(1,3) = 0; iw(1,3) = 0; cw(1,3) = 0; cx(1,3) = 0; is(1,3) = 0; cs(1,3) = 0; crmax(1,3) = 0; buff(1,4) = 0; pw(1,4) = 0; cr(1,4) = 0; iw(1,4) = 0; cw(1,4) = 0; cx(1,4) = 0; is(1,4) = 0; cs(1,4) = 0; crmax(1,4) = 0; cl[1] = 0; cdy[1] = 0; cds[1] = 0; cdl[1] = 0; cisb[1] = 0; caddr[1] = 0; cctrl[1] = 0; cstart[1] = get_rng(0,NCONTEXT-1); creturn[1] = get_rng(0,NCONTEXT-1); buff(2,0) = 0; pw(2,0) = 0; cr(2,0) = 0; iw(2,0) = 0; cw(2,0) = 0; cx(2,0) = 0; is(2,0) = 0; cs(2,0) = 0; crmax(2,0) = 0; buff(2,1) = 0; pw(2,1) = 0; cr(2,1) = 0; iw(2,1) = 0; cw(2,1) = 0; cx(2,1) = 0; is(2,1) = 0; cs(2,1) = 0; crmax(2,1) = 0; buff(2,2) = 0; pw(2,2) = 0; cr(2,2) = 0; iw(2,2) = 0; cw(2,2) = 0; cx(2,2) = 0; is(2,2) = 0; cs(2,2) = 0; crmax(2,2) = 0; buff(2,3) = 0; pw(2,3) = 0; cr(2,3) = 0; iw(2,3) = 0; cw(2,3) = 0; cx(2,3) = 0; is(2,3) = 0; cs(2,3) = 0; crmax(2,3) = 0; buff(2,4) = 0; pw(2,4) = 0; cr(2,4) = 0; iw(2,4) = 0; cw(2,4) = 0; cx(2,4) = 0; is(2,4) = 0; cs(2,4) = 0; crmax(2,4) = 0; cl[2] = 0; cdy[2] = 0; cds[2] = 0; cdl[2] = 0; cisb[2] = 0; caddr[2] = 0; cctrl[2] = 0; cstart[2] = get_rng(0,NCONTEXT-1); creturn[2] = get_rng(0,NCONTEXT-1); // Dumping initializations mem(0+0,0) = 0; mem(0+1,0) = 0; mem(2+0,0) = 0; mem(3+0,0) = 0; mem(4+0,0) = 0; // Dumping context matching equalities co(0,0) = 0; delta(0,0) = -1; co(1,0) = 0; delta(1,0) = -1; co(2,0) = 0; delta(2,0) = -1; co(3,0) = 0; delta(3,0) = -1; co(4,0) = 0; delta(4,0) = -1; // Dumping thread 1 int ret_thread_1 = 0; cdy[1] = get_rng(0,NCONTEXT-1); ASSUME(cdy[1] >= cstart[1]); T1BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !33, metadata !DIExpression()), !dbg !42 // br label %label_1, !dbg !43 goto T1BLOCK1; T1BLOCK1: // call void @llvm.dbg.label(metadata !41), !dbg !44 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !34, metadata !DIExpression()), !dbg !45 // call void @llvm.dbg.value(metadata i64 2, metadata !37, metadata !DIExpression()), !dbg !45 // store atomic i64 2, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) release, align 8, !dbg !46 // ST: Guess // : Release iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW old_cw = cw(1,0); cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM // Check ASSUME(active[iw(1,0)] == 1); ASSUME(active[cw(1,0)] == 1); ASSUME(sforbid(0,cw(1,0))== 0); ASSUME(iw(1,0) >= 0); ASSUME(iw(1,0) >= 0); ASSUME(cw(1,0) >= iw(1,0)); ASSUME(cw(1,0) >= old_cw); ASSUME(cw(1,0) >= cr(1,0)); ASSUME(cw(1,0) >= cl[1]); ASSUME(cw(1,0) >= cisb[1]); ASSUME(cw(1,0) >= cdy[1]); ASSUME(cw(1,0) >= cdl[1]); ASSUME(cw(1,0) >= cds[1]); ASSUME(cw(1,0) >= cctrl[1]); ASSUME(cw(1,0) >= caddr[1]); ASSUME(cw(1,0) >= cr(1,0+0)); ASSUME(cw(1,0) >= cr(1,0+1)); ASSUME(cw(1,0) >= cr(1,2+0)); ASSUME(cw(1,0) >= cr(1,3+0)); ASSUME(cw(1,0) >= cr(1,4+0)); ASSUME(cw(1,0) >= cw(1,0+0)); ASSUME(cw(1,0) >= cw(1,0+1)); ASSUME(cw(1,0) >= cw(1,2+0)); ASSUME(cw(1,0) >= cw(1,3+0)); ASSUME(cw(1,0) >= cw(1,4+0)); // Update caddr[1] = max(caddr[1],0); buff(1,0) = 2; mem(0,cw(1,0)) = 2; co(0,cw(1,0))+=1; delta(0,cw(1,0)) = -1; is(1,0) = iw(1,0); cs(1,0) = cw(1,0); ASSUME(creturn[1] >= cw(1,0)); // call void (...) @dmbsy(), !dbg !47 // dumbsy: Guess old_cdy = cdy[1]; cdy[1] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[1] >= old_cdy); ASSUME(cdy[1] >= cisb[1]); ASSUME(cdy[1] >= cdl[1]); ASSUME(cdy[1] >= cds[1]); ASSUME(cdy[1] >= cctrl[1]); ASSUME(cdy[1] >= cw(1,0+0)); ASSUME(cdy[1] >= cw(1,0+1)); ASSUME(cdy[1] >= cw(1,2+0)); ASSUME(cdy[1] >= cw(1,3+0)); ASSUME(cdy[1] >= cw(1,4+0)); ASSUME(cdy[1] >= cr(1,0+0)); ASSUME(cdy[1] >= cr(1,0+1)); ASSUME(cdy[1] >= cr(1,2+0)); ASSUME(cdy[1] >= cr(1,3+0)); ASSUME(cdy[1] >= cr(1,4+0)); ASSUME(creturn[1] >= cdy[1]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !38, metadata !DIExpression()), !dbg !48 // call void @llvm.dbg.value(metadata i64 1, metadata !40, metadata !DIExpression()), !dbg !48 // store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !49 // ST: Guess iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW old_cw = cw(1,0+1*1); cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM // Check ASSUME(active[iw(1,0+1*1)] == 1); ASSUME(active[cw(1,0+1*1)] == 1); ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(iw(1,0+1*1) >= 0); ASSUME(cw(1,0+1*1) >= iw(1,0+1*1)); ASSUME(cw(1,0+1*1) >= old_cw); ASSUME(cw(1,0+1*1) >= cr(1,0+1*1)); ASSUME(cw(1,0+1*1) >= cl[1]); ASSUME(cw(1,0+1*1) >= cisb[1]); ASSUME(cw(1,0+1*1) >= cdy[1]); ASSUME(cw(1,0+1*1) >= cdl[1]); ASSUME(cw(1,0+1*1) >= cds[1]); ASSUME(cw(1,0+1*1) >= cctrl[1]); ASSUME(cw(1,0+1*1) >= caddr[1]); // Update caddr[1] = max(caddr[1],0); buff(1,0+1*1) = 1; mem(0+1*1,cw(1,0+1*1)) = 1; co(0+1*1,cw(1,0+1*1))+=1; delta(0+1*1,cw(1,0+1*1)) = -1; ASSUME(creturn[1] >= cw(1,0+1*1)); // ret i8* null, !dbg !50 ret_thread_1 = (- 1); // Dumping thread 2 int ret_thread_2 = 0; cdy[2] = get_rng(0,NCONTEXT-1); ASSUME(cdy[2] >= cstart[2]); T2BLOCK0: // call void @llvm.dbg.value(metadata i8* %arg, metadata !53, metadata !DIExpression()), !dbg !67 // br label %label_2, !dbg !49 goto T2BLOCK1; T2BLOCK1: // call void @llvm.dbg.label(metadata !66), !dbg !69 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !56, metadata !DIExpression()), !dbg !70 // %0 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !52 // LD: Guess old_cr = cr(2,0+1*1); cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM // Check ASSUME(active[cr(2,0+1*1)] == 2); ASSUME(cr(2,0+1*1) >= iw(2,0+1*1)); ASSUME(cr(2,0+1*1) >= 0); ASSUME(cr(2,0+1*1) >= cdy[2]); ASSUME(cr(2,0+1*1) >= cisb[2]); ASSUME(cr(2,0+1*1) >= cdl[2]); ASSUME(cr(2,0+1*1) >= cl[2]); // Update creg_r0 = cr(2,0+1*1); crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1)); caddr[2] = max(caddr[2],0); if(cr(2,0+1*1) < cw(2,0+1*1)) { r0 = buff(2,0+1*1); } else { if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) { ASSUME(cr(2,0+1*1) >= old_cr); } pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1)); r0 = mem(0+1*1,cr(2,0+1*1)); } ASSUME(creturn[2] >= cr(2,0+1*1)); // call void @llvm.dbg.value(metadata i64 %0, metadata !58, metadata !DIExpression()), !dbg !70 // %conv = trunc i64 %0 to i32, !dbg !53 // call void @llvm.dbg.value(metadata i32 %conv, metadata !54, metadata !DIExpression()), !dbg !67 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !59, metadata !DIExpression()), !dbg !73 // call void @llvm.dbg.value(metadata i64 1, metadata !61, metadata !DIExpression()), !dbg !73 // store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !55 // ST: Guess iw(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW old_cw = cw(2,0); cw(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM // Check ASSUME(active[iw(2,0)] == 2); ASSUME(active[cw(2,0)] == 2); ASSUME(sforbid(0,cw(2,0))== 0); ASSUME(iw(2,0) >= 0); ASSUME(iw(2,0) >= 0); ASSUME(cw(2,0) >= iw(2,0)); ASSUME(cw(2,0) >= old_cw); ASSUME(cw(2,0) >= cr(2,0)); ASSUME(cw(2,0) >= cl[2]); ASSUME(cw(2,0) >= cisb[2]); ASSUME(cw(2,0) >= cdy[2]); ASSUME(cw(2,0) >= cdl[2]); ASSUME(cw(2,0) >= cds[2]); ASSUME(cw(2,0) >= cctrl[2]); ASSUME(cw(2,0) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,0) = 1; mem(0,cw(2,0)) = 1; co(0,cw(2,0))+=1; delta(0,cw(2,0)) = -1; ASSUME(creturn[2] >= cw(2,0)); // %cmp = icmp eq i32 %conv, 1, !dbg !56 // %conv1 = zext i1 %cmp to i32, !dbg !56 // call void @llvm.dbg.value(metadata i32 %conv1, metadata !62, metadata !DIExpression()), !dbg !67 // call void @llvm.dbg.value(metadata i64* @atom_1_X0_1, metadata !63, metadata !DIExpression()), !dbg !76 // %1 = zext i32 %conv1 to i64 // call void @llvm.dbg.value(metadata i64 %1, metadata !65, metadata !DIExpression()), !dbg !76 // store atomic i64 %1, i64* @atom_1_X0_1 seq_cst, align 8, !dbg !58 // ST: Guess iw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW old_cw = cw(2,2); cw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM // Check ASSUME(active[iw(2,2)] == 2); ASSUME(active[cw(2,2)] == 2); ASSUME(sforbid(2,cw(2,2))== 0); ASSUME(iw(2,2) >= max(creg_r0,0)); ASSUME(iw(2,2) >= 0); ASSUME(cw(2,2) >= iw(2,2)); ASSUME(cw(2,2) >= old_cw); ASSUME(cw(2,2) >= cr(2,2)); ASSUME(cw(2,2) >= cl[2]); ASSUME(cw(2,2) >= cisb[2]); ASSUME(cw(2,2) >= cdy[2]); ASSUME(cw(2,2) >= cdl[2]); ASSUME(cw(2,2) >= cds[2]); ASSUME(cw(2,2) >= cctrl[2]); ASSUME(cw(2,2) >= caddr[2]); // Update caddr[2] = max(caddr[2],0); buff(2,2) = (r0==1); mem(2,cw(2,2)) = (r0==1); co(2,cw(2,2))+=1; delta(2,cw(2,2)) = -1; ASSUME(creturn[2] >= cw(2,2)); // ret i8* null, !dbg !59 ret_thread_2 = (- 1); // Dumping thread 0 int ret_thread_0 = 0; cdy[0] = get_rng(0,NCONTEXT-1); ASSUME(cdy[0] >= cstart[0]); T0BLOCK0: // %thr0 = alloca i64, align 8 // %thr1 = alloca i64, align 8 // call void @llvm.dbg.value(metadata i32 %argc, metadata !86, metadata !DIExpression()), !dbg !112 // call void @llvm.dbg.value(metadata i8** %argv, metadata !87, metadata !DIExpression()), !dbg !112 // %0 = bitcast i64* %thr0 to i8*, !dbg !65 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !65 // call void @llvm.dbg.declare(metadata i64* %thr0, metadata !88, metadata !DIExpression()), !dbg !114 // %1 = bitcast i64* %thr1 to i8*, !dbg !67 // call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !67 // call void @llvm.dbg.declare(metadata i64* %thr1, metadata !92, metadata !DIExpression()), !dbg !116 // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !93, metadata !DIExpression()), !dbg !117 // call void @llvm.dbg.value(metadata i64 0, metadata !95, metadata !DIExpression()), !dbg !117 // store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !70 // ST: Guess iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW old_cw = cw(0,0+1*1); cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM // Check ASSUME(active[iw(0,0+1*1)] == 0); ASSUME(active[cw(0,0+1*1)] == 0); ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(iw(0,0+1*1) >= 0); ASSUME(cw(0,0+1*1) >= iw(0,0+1*1)); ASSUME(cw(0,0+1*1) >= old_cw); ASSUME(cw(0,0+1*1) >= cr(0,0+1*1)); ASSUME(cw(0,0+1*1) >= cl[0]); ASSUME(cw(0,0+1*1) >= cisb[0]); ASSUME(cw(0,0+1*1) >= cdy[0]); ASSUME(cw(0,0+1*1) >= cdl[0]); ASSUME(cw(0,0+1*1) >= cds[0]); ASSUME(cw(0,0+1*1) >= cctrl[0]); ASSUME(cw(0,0+1*1) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0+1*1) = 0; mem(0+1*1,cw(0,0+1*1)) = 0; co(0+1*1,cw(0,0+1*1))+=1; delta(0+1*1,cw(0,0+1*1)) = -1; ASSUME(creturn[0] >= cw(0,0+1*1)); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !96, metadata !DIExpression()), !dbg !119 // call void @llvm.dbg.value(metadata i64 0, metadata !98, metadata !DIExpression()), !dbg !119 // store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !72 // ST: Guess iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW old_cw = cw(0,0); cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM // Check ASSUME(active[iw(0,0)] == 0); ASSUME(active[cw(0,0)] == 0); ASSUME(sforbid(0,cw(0,0))== 0); ASSUME(iw(0,0) >= 0); ASSUME(iw(0,0) >= 0); ASSUME(cw(0,0) >= iw(0,0)); ASSUME(cw(0,0) >= old_cw); ASSUME(cw(0,0) >= cr(0,0)); ASSUME(cw(0,0) >= cl[0]); ASSUME(cw(0,0) >= cisb[0]); ASSUME(cw(0,0) >= cdy[0]); ASSUME(cw(0,0) >= cdl[0]); ASSUME(cw(0,0) >= cds[0]); ASSUME(cw(0,0) >= cctrl[0]); ASSUME(cw(0,0) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,0) = 0; mem(0,cw(0,0)) = 0; co(0,cw(0,0))+=1; delta(0,cw(0,0)) = -1; ASSUME(creturn[0] >= cw(0,0)); // call void @llvm.dbg.value(metadata i64* @atom_1_X0_1, metadata !99, metadata !DIExpression()), !dbg !121 // call void @llvm.dbg.value(metadata i64 0, metadata !101, metadata !DIExpression()), !dbg !121 // store atomic i64 0, i64* @atom_1_X0_1 monotonic, align 8, !dbg !74 // ST: Guess iw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW old_cw = cw(0,2); cw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM // Check ASSUME(active[iw(0,2)] == 0); ASSUME(active[cw(0,2)] == 0); ASSUME(sforbid(2,cw(0,2))== 0); ASSUME(iw(0,2) >= 0); ASSUME(iw(0,2) >= 0); ASSUME(cw(0,2) >= iw(0,2)); ASSUME(cw(0,2) >= old_cw); ASSUME(cw(0,2) >= cr(0,2)); ASSUME(cw(0,2) >= cl[0]); ASSUME(cw(0,2) >= cisb[0]); ASSUME(cw(0,2) >= cdy[0]); ASSUME(cw(0,2) >= cdl[0]); ASSUME(cw(0,2) >= cds[0]); ASSUME(cw(0,2) >= cctrl[0]); ASSUME(cw(0,2) >= caddr[0]); // Update caddr[0] = max(caddr[0],0); buff(0,2) = 0; mem(2,cw(0,2)) = 0; co(2,cw(0,2))+=1; delta(2,cw(0,2)) = -1; ASSUME(creturn[0] >= cw(0,2)); // %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !75 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[1] >= cdy[0]); // %call5 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !76 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cstart[2] >= cdy[0]); // %2 = load i64, i64* %thr0, align 8, !dbg !77, !tbaa !78 // LD: Guess old_cr = cr(0,3); cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,3)] == 0); ASSUME(cr(0,3) >= iw(0,3)); ASSUME(cr(0,3) >= 0); ASSUME(cr(0,3) >= cdy[0]); ASSUME(cr(0,3) >= cisb[0]); ASSUME(cr(0,3) >= cdl[0]); ASSUME(cr(0,3) >= cl[0]); // Update creg_r2 = cr(0,3); crmax(0,3) = max(crmax(0,3),cr(0,3)); caddr[0] = max(caddr[0],0); if(cr(0,3) < cw(0,3)) { r2 = buff(0,3); } else { if(pw(0,3) != co(3,cr(0,3))) { ASSUME(cr(0,3) >= old_cr); } pw(0,3) = co(3,cr(0,3)); r2 = mem(3,cr(0,3)); } ASSUME(creturn[0] >= cr(0,3)); // %call6 = call i32 @pthread_join(i64 noundef %2, i8** noundef null), !dbg !82 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[1]); // %3 = load i64, i64* %thr1, align 8, !dbg !83, !tbaa !78 // LD: Guess old_cr = cr(0,4); cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,4)] == 0); ASSUME(cr(0,4) >= iw(0,4)); ASSUME(cr(0,4) >= 0); ASSUME(cr(0,4) >= cdy[0]); ASSUME(cr(0,4) >= cisb[0]); ASSUME(cr(0,4) >= cdl[0]); ASSUME(cr(0,4) >= cl[0]); // Update creg_r3 = cr(0,4); crmax(0,4) = max(crmax(0,4),cr(0,4)); caddr[0] = max(caddr[0],0); if(cr(0,4) < cw(0,4)) { r3 = buff(0,4); } else { if(pw(0,4) != co(4,cr(0,4))) { ASSUME(cr(0,4) >= old_cr); } pw(0,4) = co(4,cr(0,4)); r3 = mem(4,cr(0,4)); } ASSUME(creturn[0] >= cr(0,4)); // %call7 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !84 // dumbsy: Guess old_cdy = cdy[0]; cdy[0] = get_rng(0,NCONTEXT-1); // Check ASSUME(cdy[0] >= old_cdy); ASSUME(cdy[0] >= cisb[0]); ASSUME(cdy[0] >= cdl[0]); ASSUME(cdy[0] >= cds[0]); ASSUME(cdy[0] >= cctrl[0]); ASSUME(cdy[0] >= cw(0,0+0)); ASSUME(cdy[0] >= cw(0,0+1)); ASSUME(cdy[0] >= cw(0,2+0)); ASSUME(cdy[0] >= cw(0,3+0)); ASSUME(cdy[0] >= cw(0,4+0)); ASSUME(cdy[0] >= cr(0,0+0)); ASSUME(cdy[0] >= cr(0,0+1)); ASSUME(cdy[0] >= cr(0,2+0)); ASSUME(cdy[0] >= cr(0,3+0)); ASSUME(cdy[0] >= cr(0,4+0)); ASSUME(creturn[0] >= cdy[0]); ASSUME(cdy[0] >= creturn[2]); // call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !103, metadata !DIExpression()), !dbg !133 // %4 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) seq_cst, align 8, !dbg !86 // LD: Guess old_cr = cr(0,0); cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,0)] == 0); ASSUME(cr(0,0) >= iw(0,0)); ASSUME(cr(0,0) >= 0); ASSUME(cr(0,0) >= cdy[0]); ASSUME(cr(0,0) >= cisb[0]); ASSUME(cr(0,0) >= cdl[0]); ASSUME(cr(0,0) >= cl[0]); // Update creg_r4 = cr(0,0); crmax(0,0) = max(crmax(0,0),cr(0,0)); caddr[0] = max(caddr[0],0); if(cr(0,0) < cw(0,0)) { r4 = buff(0,0); } else { if(pw(0,0) != co(0,cr(0,0))) { ASSUME(cr(0,0) >= old_cr); } pw(0,0) = co(0,cr(0,0)); r4 = mem(0,cr(0,0)); } ASSUME(creturn[0] >= cr(0,0)); // call void @llvm.dbg.value(metadata i64 %4, metadata !105, metadata !DIExpression()), !dbg !133 // %conv = trunc i64 %4 to i32, !dbg !87 // call void @llvm.dbg.value(metadata i32 %conv, metadata !102, metadata !DIExpression()), !dbg !112 // %cmp = icmp eq i32 %conv, 2, !dbg !88 // %conv8 = zext i1 %cmp to i32, !dbg !88 // call void @llvm.dbg.value(metadata i32 %conv8, metadata !106, metadata !DIExpression()), !dbg !112 // call void @llvm.dbg.value(metadata i64* @atom_1_X0_1, metadata !108, metadata !DIExpression()), !dbg !137 // %5 = load atomic i64, i64* @atom_1_X0_1 seq_cst, align 8, !dbg !90 // LD: Guess old_cr = cr(0,2); cr(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM // Check ASSUME(active[cr(0,2)] == 0); ASSUME(cr(0,2) >= iw(0,2)); ASSUME(cr(0,2) >= 0); ASSUME(cr(0,2) >= cdy[0]); ASSUME(cr(0,2) >= cisb[0]); ASSUME(cr(0,2) >= cdl[0]); ASSUME(cr(0,2) >= cl[0]); // Update creg_r5 = cr(0,2); crmax(0,2) = max(crmax(0,2),cr(0,2)); caddr[0] = max(caddr[0],0); if(cr(0,2) < cw(0,2)) { r5 = buff(0,2); } else { if(pw(0,2) != co(2,cr(0,2))) { ASSUME(cr(0,2) >= old_cr); } pw(0,2) = co(2,cr(0,2)); r5 = mem(2,cr(0,2)); } ASSUME(creturn[0] >= cr(0,2)); // call void @llvm.dbg.value(metadata i64 %5, metadata !110, metadata !DIExpression()), !dbg !137 // %conv12 = trunc i64 %5 to i32, !dbg !91 // call void @llvm.dbg.value(metadata i32 %conv12, metadata !107, metadata !DIExpression()), !dbg !112 // %and = and i32 %conv8, %conv12, !dbg !92 creg_r6 = max(max(creg_r4,0),creg_r5); ASSUME(active[creg_r6] == 0); r6 = (r4==2) & r5; // call void @llvm.dbg.value(metadata i32 %and, metadata !111, metadata !DIExpression()), !dbg !112 // %cmp13 = icmp eq i32 %and, 1, !dbg !93 // br i1 %cmp13, label %if.then, label %if.end, !dbg !95 old_cctrl = cctrl[0]; cctrl[0] = get_rng(0,NCONTEXT-1); ASSUME(cctrl[0] >= old_cctrl); ASSUME(cctrl[0] >= creg_r6); ASSUME(cctrl[0] >= 0); if((r6==1)) { goto T0BLOCK1; } else { goto T0BLOCK2; } T0BLOCK1: // call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([98 x i8], [98 x i8]* @.str.1, i64 0, i64 0), i32 noundef 52, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !96 // unreachable, !dbg !96 r7 = 1; T0BLOCK2: // %6 = bitcast i64* %thr1 to i8*, !dbg !99 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %6) #7, !dbg !99 // %7 = bitcast i64* %thr0 to i8*, !dbg !99 // call void @llvm.lifetime.end.p0i8(i64 8, i8* %7) #7, !dbg !99 // ret i32 0, !dbg !100 ret_thread_0 = 0; ASSERT(r7== 0); }
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
9c96a688491afe3b5d5888918867b5eff8bc8b86
f8e5926a313ce6e607b29d75c9a4577ab172856f
/operationBancaire.cpp
be75af3b94b4c939ac916df6b1ffdb38efc83828
[]
no_license
anoera/CPPprojet2B12018GestionComptes
74981cf0e3daddb1cd72fbf9ed4a1b19c27f070a
e928944f41f72844a2a740abfe18a9642c787818
refs/heads/master
2021-09-12T13:26:02.463237
2018-04-17T08:37:37
2018-04-17T08:37:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
802
cpp
// // Created by arnau on 06/04/2018. // #include "operationBancaire.h" #include "compte.h" #include <iostream> using namespace std; operationBancaire::operationBancaire(){ _montant = 0; _Type = Mouvement::CREDIT; }; operationBancaire::operationBancaire(double montant, Mouvement Type) { _montant = montant; _Type = Type; } double operationBancaire::getMontant() { double a=_montant; if (_Type == Mouvement::DEBIT){ a *= -1; } return a; } /* int main(){ if(TypeMouvement::DEBIT){ // En gros ici on debite la solde de la classe compte par le montant; solde += montant; }else if(TypeMouvement::CREDIT){ // En gros ici on credite la solde de la classe compte par le montant; solde -= montant; }; } */
[ "arnaud.gonin@live.fr" ]
arnaud.gonin@live.fr
8ea78908f8f55f1ca50213b29a9db08e51e4d26f
85c91b680d74357b379204ecf7643ae1423f8d1e
/branches/ras_openpmf/CompilationChain/CCMGenerator_CSDBackEnd_compo/CCMGenerator_CSDBackEnd_compo.cpp
d2fb992574a51c0d4a2b7dd9afd5a2b065028e41
[]
no_license
BackupTheBerlios/qedo-svn
6fdec4ca613d24b99a20b138fb1488f1ae9a80a2
3679ffe8ac7c781483b012dbef70176e28fea174
refs/heads/master
2020-11-26T09:42:37.603285
2010-07-02T10:00:26
2010-07-02T10:00:26
40,806,890
0
0
null
null
null
null
UTF-8
C++
false
false
15,916
cpp
// // generated by Qedo // #include "CCMGenerator_CSDBackEnd_compo.h" // BEGIN USER INSERT SECTION file #include <iostream> #include "Exceptions.h" #include "HelpFunctions.h" // END USER INSERT SECTION file namespace CCMGenerator { // BEGIN USER INSERT SECTION CSDBackendSessionImpl void CSDBackendSessionImpl::connect_the_whole_repository () { M2C::MOFRepository::RepositoryRoot_var repository_root = M2C::MOFRepository::RepositoryRoot::_narrow ( _root ); if( CORBA::is_nil ( repository_root ) ) { std::cerr << "I got a nil reference for the repository root reference" << std::endl; exit (1); } ::Reflective::RefPackageSet* package_set = repository_root -> get_root_packages(); _repconnector.set_package_set (package_set); _repconnector.connectRepository(); _base_idl_pkg_ref = _repconnector._base_idl_pkg_ref; _cif_ref = _repconnector._cif_ref; _component_idl_ref = _repconnector._component_idl_ref ; _deployment_ref = _repconnector._deployment_ref; } void CSDBackendSessionImpl::begin ( ostream& out ) { out << "<?xml version = '1.0' ?>"; HelpFunctions::new_line ( out, 0 ); out << "<!DOCTYPE softpkg PUBLIC \"-//OMG//DTD Software Package Descriptor\" \"softpkg.dtd\">"; HelpFunctions::new_line ( out, 0 ); } void CSDBackendSessionImpl::_generate_deployment_unit_element ( MDE::Deployment::DeploymentUnit_ptr unit, ostream& out, unsigned long & indent_level ) { out << "<implementation id=\"" << unit->uuid() << "\">"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); MDE::Deployment::DeploymentRequirementSet_var reqs_ = unit->req(); MDE::Deployment::ContainedFileSet_var contained_ = unit->contained_file(); // generate os element std::string unit_name_ = unit->identifier(); std::string req_name_ = unit_name_ + "_os"; this->_generate_os_element( unit, req_name_, out, indent_level ); // generate processor element HelpFunctions::new_line ( out, indent_level ); req_name_ = unit_name_ + "_processor"; this->_generate_processor_element( unit, req_name_, out, indent_level ); // generate compiler element HelpFunctions::new_line ( out, indent_level ); req_name_ = unit_name_ + "_compiler"; this->_generate_compiler_element( unit, req_name_, out, indent_level ); // generate programminglanguage element HelpFunctions::new_line ( out, indent_level ); req_name_ = unit_name_ + "_programmlanguage"; this->_generate_prog_language_element( unit, req_name_, out, indent_level ); // generate descriptorfile element HelpFunctions::new_line ( out, indent_level ); /*req_name_ = unit_name_ + "_descriptorfile_link"; std::string str_ = get_req_value( unit, req_name_ ); if ( ! str_.empty() )*/ this->_generate_descriptor_element( unit, out, indent_level ); // generate code elements HelpFunctions::new_line ( out, indent_level ); if ( contained_->length() > 0 ) { for (CORBA::ULong i = 0; i < contained_->length (); i++) { HelpFunctions::new_line ( out, indent_level ); this->_generate_code_element ( contained_[i], out, indent_level ); } } HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</implementation>"; } void CSDBackendSessionImpl::_generate_os_element ( MDE::Deployment::DeploymentUnit_ptr unit, std::string req_name, ostream& out, unsigned long & indent_level ) { out << "<os name=\"" << get_req_value( unit, req_name); if ( get_req_version (unit, req_name) == "" ) out << "\"/>"; else out << "\" version=\"" << get_req_version (unit, req_name) << "/>"; } void CSDBackendSessionImpl::_generate_processor_element ( MDE::Deployment::DeploymentUnit_ptr unit, std::string req_name, ostream& out, unsigned long & indent_level ) { out << "<processor name=\"" << get_req_value( unit, req_name) << "\"/>"; } void CSDBackendSessionImpl::_generate_compiler_element ( MDE::Deployment::DeploymentUnit_ptr unit, std::string req_name, ostream& out, unsigned long & indent_level ) { out << "<compiler name=\"" << get_req_value( unit, req_name); if ( get_req_version (unit, req_name) == "" ) out << "\"/>"; else out << "\" version=\"" << get_req_version (unit, req_name) << "\"/>"; } void CSDBackendSessionImpl::_generate_prog_language_element ( MDE::Deployment::DeploymentUnit_ptr unit, std::string req_name, ostream& out, unsigned long & indent_level ) { out << "<programminglanguage name=\"" << get_req_value( unit, req_name); if ( get_req_version (unit, req_name) == "" ) out << "\"/>"; else out << "\" version=\"" << get_req_version (unit, req_name) << "/>"; } void CSDBackendSessionImpl::_generate_descriptor_element ( MDE::Deployment::DeploymentUnit_ptr unit, ostream& out, unsigned long & indent_level ) { MDE::CIF::HomeImplDef_var home_impl_ = unit->homeimpl(); MDE::CIF::ComponentImplDef_var comp_impl_ = home_impl_->component_impl(); std::string path_ = "meta-inf/"; path_.append( comp_impl_->identifier() ); path_.append(".ccd"); out << "<descriptor type=\"CORBA-Component\">"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<fileinarchive name=\"" << path_ << "\" />"; HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</descriptor>"; } void CSDBackendSessionImpl::_generate_code_element ( MDE::Deployment::ContainedFile_ptr contained, ostream& out, unsigned long & indent_level ) { out << "<code type=\"" << contained->codetype() << "\">"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<fileinarchive name=\"" << contained->filename(); std::string test_ = contained->location(); if ( ! strcmp (contained->location(), "" ) ) out << "\"/>"; else { out << "\">"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<link href=\"" << contained->location() << "\"/>"; HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</fileinarchive>"; } HelpFunctions::new_line ( out, indent_level ); out << "<entrypoint>" << contained->entrypoint() << "</entrypoint>"; HelpFunctions::new_line ( out, indent_level ); out << "<usage>" << contained->entrypointusage () << "</usage>"; HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</code>"; } std::string CSDBackendSessionImpl::get_req_value ( MDE::Deployment::DeploymentUnit_ptr unit, std::string req_name ) { std::string ret_ = ""; MDE::Deployment::DeploymentRequirementSet_var all_reqs_ = unit->req(); for (CORBA::ULong i = 0; i < all_reqs_->length (); i++) { if ( all_reqs_[i]->identifier() == req_name) { ret_ = all_reqs_[i]->kind(); return ret_; } } return ret_; } std::string CSDBackendSessionImpl::get_req_version ( MDE::Deployment::DeploymentUnit_ptr unit, std::string req_name ) { std::string ret_ = ""; MDE::Deployment::DeploymentRequirementSet_var all_reqs_ = unit->req(); for (CORBA::ULong i = 0; i < all_reqs_->length (); i++) { if ( all_reqs_[i]->identifier() == req_name) { ret_ = all_reqs_[i]->req_version(); return ret_; } } return ret_; } // END USER INSERT SECTION CSDBackendSessionImpl CSDBackendSessionImpl::CSDBackendSessionImpl() { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::CSDBackendSessionImpl // END USER INSERT SECTION CSDBackendSessionImpl::CSDBackendSessionImpl } CSDBackendSessionImpl::~CSDBackendSessionImpl() { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::~CSDBackendSessionImpl // END USER INSERT SECTION CSDBackendSessionImpl::~CSDBackendSessionImpl } void CSDBackendSessionImpl::set_context(::CCMGenerator::CCM_CSDBackend_ContextImpl_ptr context) throw (CORBA::SystemException, Components::CCMException) { context_ = ::CCMGenerator::CCM_CSDBackend_ContextImpl::_duplicate(context); } void CSDBackendSessionImpl::configuration_complete() throw (CORBA::SystemException, Components::InvalidConfiguration) { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::configuration_complete cout << "configuration_complete() by CSDBackEnd was called!!! " << endl; // END USER INSERT SECTION CSDBackendSessionImpl::configuration_complete } void CSDBackendSessionImpl::remove() throw (CORBA::SystemException) { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::remove // END USER INSERT SECTION CSDBackendSessionImpl::remove } void CSDBackendSessionImpl::rep_ref(CORBA::Object_ptr param) throw(CORBA::SystemException) { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::_rep_ref _root = CORBA::Object::_duplicate(param); if( CORBA::is_nil ( _root ) ) { throw NilObjectRef ( "Repository root is NIL: narrow problem!" ); } // END USER INSERT SECTION CSDBackendSessionImpl::_rep_ref } CORBA::Object_ptr CSDBackendSessionImpl::rep_ref() throw(CORBA::SystemException) { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::rep_ref return _root._retn(); // END USER INSERT SECTION CSDBackendSessionImpl::rep_ref } void CSDBackendSessionImpl::generate(const char* name, const char* vers, const char* a_name, const char* a_comp, const char* a_web, const char* title, const char* description, const char* lisence, const char* idl_id, const char* idl_file, const char* output, const CCMGenerator::DeploymentUnitIDList& units) throw(CORBA::SystemException, ::CCMGenerator::OutputError) { // BEGIN USER INSERT SECTION CSDBackendSessionImpl::generate //this->_generate_deployment_unit_element (); try { this->connect_the_whole_repository (); ofstream out; out.open ( output ); unsigned long indent_level = 0; begin(out); HelpFunctions::new_line ( out, indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<softpkg name=\"" << name << "\" " << "version=\"" << vers << "\">"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<title> " << title << " </title>"; HelpFunctions::new_line ( out, indent_level ); out << "<author>"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<name>" << a_name << "</name>"; HelpFunctions::new_line ( out, indent_level ); out << "<company>" << a_comp << "</company>"; HelpFunctions::new_line ( out, indent_level ); out << "<webpage href=\"" << a_web << "\"/>"; HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</author>"; HelpFunctions::new_line ( out, indent_level ); out << "<description>" << description << "</description>"; HelpFunctions::new_line ( out, indent_level ); out << "<license href=\"" << lisence << "\"/>"; HelpFunctions::new_line ( out, indent_level ); out << "<idl id=\"" << idl_id << "\">"; HelpFunctions::inc_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "<fileinarchive name=\"" << idl_file << "\"/>"; HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</idl>"; HelpFunctions::new_line ( out, indent_level ); MDE::Deployment::DeploymentUnitSet_var all_units_= _repconnector._deployment_unit_ref->all_of_class_deployment_unit(); MDE::Deployment::DeploymentUnit_var unit_; std::string unit_rep_id_; CORBA::ULong i; for (i = 0; i < units.length(); i++) { for (CORBA::ULong j = 0; j < all_units_->length (); j++) { unit_rep_id_ = all_units_[j]->repository_id(); if ( !strcmp ( unit_rep_id_.c_str(), units[i] ) ) { unit_ = all_units_[j]; if ( ! CORBA::is_nil ( unit_ )) { HelpFunctions::new_line ( out, indent_level ); this->_generate_deployment_unit_element( unit_, out, indent_level ); } } } } HelpFunctions::dec_indent_level ( indent_level ); HelpFunctions::new_line ( out, indent_level ); out << "</softpkg>" ; out.close(); } catch (CORBA::SystemException& e) { throw e; } // END USER INSERT SECTION CSDBackendSessionImpl::generate } // BEGIN USER INSERT SECTION CSDBackEnd_compo // END USER INSERT SECTION CSDBackEnd_compo CSDBackEnd_compo::CSDBackEnd_compo() :component_(new CSDBackendSessionImpl()) { // BEGIN USER INSERT SECTION CSDBackEnd_compo::CSDBackEnd_compo // END USER INSERT SECTION CSDBackEnd_compo::CSDBackEnd_compo } CSDBackEnd_compo::~CSDBackEnd_compo() { // BEGIN USER INSERT SECTION CSDBackEnd_compo::~CSDBackEnd_compo // END USER INSERT SECTION CSDBackEnd_compo::~CSDBackEnd_compo component_->_remove_ref(); } ::CORBA::Object* CSDBackEnd_compo::obtain_executor(const char* name) throw (CORBA::SystemException) { if (! strcmp ( name, "component" ) ) { return Components::EnterpriseComponent::_duplicate (component_); } else if (! strcmp (name, "control")) { return Components::EnterpriseComponent::_duplicate (component_); } return Components::EnterpriseComponent::_nil(); } void CSDBackEnd_compo::release_executor(::CORBA::Object_ptr executor) throw (CORBA::SystemException) { CORBA::release (executor); } void CSDBackEnd_compo::configuration_complete() throw (CORBA::SystemException, Components::InvalidConfiguration) { component_->configuration_complete(); // BEGIN USER INSERT SECTION CSDBackEnd_compo::configuration_complete // END USER INSERT SECTION CSDBackEnd_compo::configuration_complete } void CSDBackEnd_compo::set_session_context(::Components::SessionContext_ptr context) throw (CORBA::SystemException, Components::CCMException) { #ifdef TAO_ORB ::CCMGenerator::CCM_CSDBackend_Context_ptr tmp_context; tmp_context = dynamic_cast<::CCMGenerator::CCM_CSDBackend_ContextImpl*>(context); if (tmp_context) context_ = ::CCMGenerator::CCM_CSDBackend_ContextImpl::_duplicate(tmp_context); else context_ = ::CCMGenerator::CCM_CSDBackend_ContextImpl::_nil(); #else context_ = ::CCMGenerator::CCM_CSDBackend_ContextImpl::_narrow(context); #endif component_->set_context(context_); } void CSDBackEnd_compo::ccm_activate() throw (CORBA::SystemException, Components::CCMException) { // BEGIN USER INSERT SECTION CSDBackEnd_compo::ccm_activate // END USER INSERT SECTION CSDBackEnd_compo::ccm_activate } void CSDBackEnd_compo::ccm_passivate() throw (CORBA::SystemException, Components::CCMException) { // BEGIN USER INSERT SECTION CSDBackEnd_compo::ccm_passivate // END USER INSERT SECTION CSDBackEnd_compo::ccm_passivate } void CSDBackEnd_compo::ccm_remove() throw (CORBA::SystemException, Components::CCMException) { // BEGIN USER INSERT SECTION CSDBackEnd_compo::ccm_remove // END USER INSERT SECTION CSDBackEnd_compo::ccm_remove } // BEGIN USER INSERT SECTION CSDBackendHomeImpl // END USER INSERT SECTION CSDBackendHomeImpl CSDBackendHomeImpl::CSDBackendHomeImpl() { // BEGIN USER INSERT SECTION CSDBackendHomeImpl::CSDBackendHomeImpl // END USER INSERT SECTION CSDBackendHomeImpl::CSDBackendHomeImpl } CSDBackendHomeImpl::~CSDBackendHomeImpl() { // BEGIN USER INSERT SECTION CSDBackendHomeImpl::~CSDBackendHomeImpl // END USER INSERT SECTION CSDBackendHomeImpl::~CSDBackendHomeImpl } void CSDBackendHomeImpl::set_context(Components::HomeContext_ptr ctx) throw (CORBA::SystemException, Components::CCMException) { context_ = Components::HomeContext::_duplicate(ctx); } ::Components::EnterpriseComponent_ptr CSDBackendHomeImpl::create () throw (CORBA::SystemException, Components::CreateFailure) { // BEGIN USER INSERT SECTION CSDBackendHomeImpl::create // END USER INSERT SECTION CSDBackendHomeImpl::create return new CSDBackEnd_compo(); } }; // // entry point // ::Components::HomeExecutorBase_ptr create_CSDBackendHomeE(void) { // BEGIN USER INSERT SECTION create_CSDBackendHome // END USER INSERT SECTION create_CSDBackendHome return new ::CCMGenerator::CSDBackendHomeImpl(); }
[ "kgardas@798282e8-cfd4-0310-a90d-ae7fb11434eb" ]
kgardas@798282e8-cfd4-0310-a90d-ae7fb11434eb
72eb0f7faa1c8612645491f32c28405889595d8d
0ae41b99a1f4afc0932cf0d3cfe7b8cf288f57e6
/src/masternode-meta.cpp
a1990fede4d90dadf4c8b17281c749178f85c938
[ "MIT" ]
permissive
Sivonja8/ruxcryptoRXC
bdc6c94349774fd6c24a40eabedfb1646ad28aa2
4921ee3b3b4a8b1d2d71c7bd19f1a9a3635e4075
refs/heads/master
2023-07-05T13:50:33.832602
2021-07-06T15:29:07
2021-07-06T15:29:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,467
cpp
// Copyright (c) 2014-2019 The Dash Core developers // Copyright (c) 2020 The RuxCrypto Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "masternode-meta.h" CMasternodeMetaMan mmetaman; const std::string CMasternodeMetaMan::SERIALIZATION_VERSION_STRING = "CMasternodeMetaMan-Version-1"; void CMasternodeMetaInfo::AddGovernanceVote(const uint256& nGovernanceObjectHash) { LOCK(cs); // Insert a zero value, or not. Then increment the value regardless. This // ensures the value is in the map. const auto& pair = mapGovernanceObjectsVotedOn.emplace(nGovernanceObjectHash, 0); pair.first->second++; } void CMasternodeMetaInfo::RemoveGovernanceObject(const uint256& nGovernanceObjectHash) { LOCK(cs); // Whether or not the govobj hash exists in the map first is irrelevant. mapGovernanceObjectsVotedOn.erase(nGovernanceObjectHash); } /** * FLAG GOVERNANCE ITEMS AS DIRTY * * - When masternode come and go on the network, we must flag the items they voted on to recalc it's cached flags * */ void CMasternodeMetaInfo::FlagGovernanceItemsAsDirty() { LOCK(cs); for (auto& govObjHashPair : mapGovernanceObjectsVotedOn) { mmetaman.AddDirtyGovernanceObjectHash(govObjHashPair.first); } } CMasternodeMetaInfoPtr CMasternodeMetaMan::GetMetaInfo(const uint256& proTxHash, bool fCreate) { LOCK(cs); auto it = metaInfos.find(proTxHash); if (it != metaInfos.end()) { return it->second; } if (!fCreate) { return nullptr; } it = metaInfos.emplace(proTxHash, std::make_shared<CMasternodeMetaInfo>(proTxHash)).first; return it->second; } void CMasternodeMetaMan::AllowMixing(const uint256& proTxHash) { LOCK(cs); auto mm = GetMetaInfo(proTxHash); nDsqCount++; LOCK(mm->cs); mm->nLastDsq = nDsqCount; mm->nMixingTxCount = 0; } void CMasternodeMetaMan::DisallowMixing(const uint256& proTxHash) { LOCK(cs); auto mm = GetMetaInfo(proTxHash); LOCK(mm->cs); mm->nMixingTxCount++; } bool CMasternodeMetaMan::AddGovernanceVote(const uint256& proTxHash, const uint256& nGovernanceObjectHash) { LOCK(cs); auto mm = GetMetaInfo(proTxHash); mm->AddGovernanceVote(nGovernanceObjectHash); return true; } void CMasternodeMetaMan::RemoveGovernanceObject(const uint256& nGovernanceObjectHash) { LOCK(cs); for(auto& p : metaInfos) { p.second->RemoveGovernanceObject(nGovernanceObjectHash); } } void CMasternodeMetaMan::AddDirtyGovernanceObjectHash(const uint256& nHash) { LOCK(cs); vecDirtyGovernanceObjectHashes.push_back(nHash); } std::vector<uint256> CMasternodeMetaMan::GetAndClearDirtyGovernanceObjectHashes() { LOCK(cs); std::vector<uint256> vecTmp = std::move(vecDirtyGovernanceObjectHashes); vecDirtyGovernanceObjectHashes.clear(); return vecTmp; } void CMasternodeMetaMan::Clear() { LOCK(cs); metaInfos.clear(); vecDirtyGovernanceObjectHashes.clear(); } void CMasternodeMetaMan::CheckAndRemove() { } std::string CMasternodeMetaMan::ToString() const { std::ostringstream info; info << "Masternodes: meta infos object count: " << (int)metaInfos.size() << ", deterministic masternode count: " << deterministicMNManager->GetListAtChainTip().GetAllMNsCount() << ", nDsqCount: " << (int)nDsqCount; return info.str(); }
[ "nsmajic@gmail.com" ]
nsmajic@gmail.com
ab07dee3b71c820e064cfffb3d395ef12bd9b7d5
420f1a298ad4c94e44e7ff60fe309d79b080723a
/org.alljoyn.ControlPanel.AirPurifier/AirPurifierServiceEventArgs.h
46bb3eb2f9fb0f49f2f89fa848b3be402a3f4e48
[ "MIT" ]
permissive
jpoon/HeavenFresh-AllJoyn-Example
fe5820915b2e715fd6cd725babfdb16fa297dec8
10ed91014f072031eb13df613cc1165e19fd7726
refs/heads/master
2021-01-17T12:19:24.140864
2016-07-20T06:41:19
2016-07-20T06:41:19
42,607,513
0
1
null
2015-09-17T17:22:58
2015-09-16T19:04:13
C++
UTF-8
C++
false
false
24,613
h
//----------------------------------------------------------------------------- // <auto-generated> // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // Tool: AllJoynCodeGenerator.exe // // This tool is located in the Windows 10 SDK and the Windows 10 AllJoyn // Visual Studio Extension in the Visual Studio Gallery. // // The generated code should be packaged in a Windows 10 C++/CX Runtime // Component which can be consumed in any UWP-supported language using // APIs that are available in Windows.Devices.AllJoyn. // // Using AllJoynCodeGenerator - Invoke the following command with a valid // Introspection XML file and a writable output directory: // AllJoynCodeGenerator -i <INPUT XML FILE> -o <OUTPUT DIRECTORY> // </auto-generated> //----------------------------------------------------------------------------- #pragma once namespace org { namespace alljoyn { namespace ControlPanel { namespace AirPurifier { // Methods public ref class AirPurifierPowerONCalledEventArgs sealed { public: AirPurifierPowerONCalledEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierPowerONResult^ Result { AirPurifierPowerONResult^ get() { return m_result; } void set(_In_ AirPurifierPowerONResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierPowerONResult^>^ GetResultAsync(AirPurifierPowerONCalledEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierPowerONResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierPowerONResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierPowerONResult^ m_result; }; public ref class AirPurifierPowerOFFCalledEventArgs sealed { public: AirPurifierPowerOFFCalledEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierPowerOFFResult^ Result { AirPurifierPowerOFFResult^ get() { return m_result; } void set(_In_ AirPurifierPowerOFFResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierPowerOFFResult^>^ GetResultAsync(AirPurifierPowerOFFCalledEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierPowerOFFResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierPowerOFFResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierPowerOFFResult^ m_result; }; public ref class AirPurifierResetCalledEventArgs sealed { public: AirPurifierResetCalledEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierResetResult^ Result { AirPurifierResetResult^ get() { return m_result; } void set(_In_ AirPurifierResetResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierResetResult^>^ GetResultAsync(AirPurifierResetCalledEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierResetResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierResetResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierResetResult^ m_result; }; public ref class AirPurifierSendSoftwareUpgradeFileCalledEventArgs sealed { public: AirPurifierSendSoftwareUpgradeFileCalledEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info, _In_ uint32 interfaceMemberCurrentIndex, _In_ Windows::Foundation::Collections::IVectorView<byte>^ interfaceMemberFileData); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierSendSoftwareUpgradeFileResult^ Result { AirPurifierSendSoftwareUpgradeFileResult^ get() { return m_result; } void set(_In_ AirPurifierSendSoftwareUpgradeFileResult^ value) { m_result = value; } } property uint32 CurrentIndex { uint32 get() { return m_interfaceMemberCurrentIndex; } } property Windows::Foundation::Collections::IVectorView<byte>^ FileData { Windows::Foundation::Collections::IVectorView<byte>^ get() { return m_interfaceMemberFileData; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierSendSoftwareUpgradeFileResult^>^ GetResultAsync(AirPurifierSendSoftwareUpgradeFileCalledEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierSendSoftwareUpgradeFileResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierSendSoftwareUpgradeFileResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierSendSoftwareUpgradeFileResult^ m_result; uint32 m_interfaceMemberCurrentIndex; Windows::Foundation::Collections::IVectorView<byte>^ m_interfaceMemberFileData; }; // Readable Properties public ref class AirPurifierGetPowerStatusRequestedEventArgs sealed { public: AirPurifierGetPowerStatusRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetPowerStatusResult^ Result { AirPurifierGetPowerStatusResult^ get() { return m_result; } void set(_In_ AirPurifierGetPowerStatusResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetPowerStatusResult^>^ GetResultAsync(AirPurifierGetPowerStatusRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetPowerStatusResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetPowerStatusResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetPowerStatusResult^ m_result; }; public ref class AirPurifierGetFlowValueRequestedEventArgs sealed { public: AirPurifierGetFlowValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetFlowValueResult^ Result { AirPurifierGetFlowValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetFlowValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetFlowValueResult^>^ GetResultAsync(AirPurifierGetFlowValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetFlowValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetFlowValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetFlowValueResult^ m_result; }; public ref class AirPurifierGetTimerValueRequestedEventArgs sealed { public: AirPurifierGetTimerValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetTimerValueResult^ Result { AirPurifierGetTimerValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetTimerValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetTimerValueResult^>^ GetResultAsync(AirPurifierGetTimerValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetTimerValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetTimerValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetTimerValueResult^ m_result; }; public ref class AirPurifierGetSensorOdorValueRequestedEventArgs sealed { public: AirPurifierGetSensorOdorValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetSensorOdorValueResult^ Result { AirPurifierGetSensorOdorValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetSensorOdorValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetSensorOdorValueResult^>^ GetResultAsync(AirPurifierGetSensorOdorValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetSensorOdorValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetSensorOdorValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetSensorOdorValueResult^ m_result; }; public ref class AirPurifierGetSensorDustValueRequestedEventArgs sealed { public: AirPurifierGetSensorDustValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetSensorDustValueResult^ Result { AirPurifierGetSensorDustValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetSensorDustValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetSensorDustValueResult^>^ GetResultAsync(AirPurifierGetSensorDustValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetSensorDustValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetSensorDustValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetSensorDustValueResult^ m_result; }; public ref class AirPurifierGetSensorAllergenValueRequestedEventArgs sealed { public: AirPurifierGetSensorAllergenValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetSensorAllergenValueResult^ Result { AirPurifierGetSensorAllergenValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetSensorAllergenValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetSensorAllergenValueResult^>^ GetResultAsync(AirPurifierGetSensorAllergenValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetSensorAllergenValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetSensorAllergenValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetSensorAllergenValueResult^ m_result; }; public ref class AirPurifierGetSensorCleanMetalGridValueRequestedEventArgs sealed { public: AirPurifierGetSensorCleanMetalGridValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetSensorCleanMetalGridValueResult^ Result { AirPurifierGetSensorCleanMetalGridValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetSensorCleanMetalGridValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetSensorCleanMetalGridValueResult^>^ GetResultAsync(AirPurifierGetSensorCleanMetalGridValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetSensorCleanMetalGridValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetSensorCleanMetalGridValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetSensorCleanMetalGridValueResult^ m_result; }; public ref class AirPurifierGetSensorReplaceFilterValueRequestedEventArgs sealed { public: AirPurifierGetSensorReplaceFilterValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetSensorReplaceFilterValueResult^ Result { AirPurifierGetSensorReplaceFilterValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetSensorReplaceFilterValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetSensorReplaceFilterValueResult^>^ GetResultAsync(AirPurifierGetSensorReplaceFilterValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetSensorReplaceFilterValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetSensorReplaceFilterValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetSensorReplaceFilterValueResult^ m_result; }; public ref class AirPurifierGetSensorCleanMonitorValueRequestedEventArgs sealed { public: AirPurifierGetSensorCleanMonitorValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property AirPurifierGetSensorCleanMonitorValueResult^ Result { AirPurifierGetSensorCleanMonitorValueResult^ get() { return m_result; } void set(_In_ AirPurifierGetSensorCleanMonitorValueResult^ value) { m_result = value; } } Windows::Foundation::Deferral^ GetDeferral(); static Windows::Foundation::IAsyncOperation<AirPurifierGetSensorCleanMonitorValueResult^>^ GetResultAsync(AirPurifierGetSensorCleanMonitorValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierGetSensorCleanMonitorValueResult^> { return t; }); } private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierGetSensorCleanMonitorValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; AirPurifierGetSensorCleanMonitorValueResult^ m_result; }; // Writable Properties public ref class AirPurifierSetPowerStatusRequestedEventArgs sealed { public: AirPurifierSetPowerStatusRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info, _In_ int32 value); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property int32 Value { int32 get() { return m_value; } } property AirPurifierSetPowerStatusResult^ Result { AirPurifierSetPowerStatusResult^ get() { return m_result; } void set(_In_ AirPurifierSetPowerStatusResult^ value) { m_result = value; } } static Windows::Foundation::IAsyncOperation<AirPurifierSetPowerStatusResult^>^ GetResultAsync(AirPurifierSetPowerStatusRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierSetPowerStatusResult^> { return t; }); } Windows::Foundation::Deferral^ GetDeferral(); private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierSetPowerStatusResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; int32 m_value; AirPurifierSetPowerStatusResult^ m_result; }; public ref class AirPurifierSetFlowValueRequestedEventArgs sealed { public: AirPurifierSetFlowValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info, _In_ int32 value); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property int32 Value { int32 get() { return m_value; } } property AirPurifierSetFlowValueResult^ Result { AirPurifierSetFlowValueResult^ get() { return m_result; } void set(_In_ AirPurifierSetFlowValueResult^ value) { m_result = value; } } static Windows::Foundation::IAsyncOperation<AirPurifierSetFlowValueResult^>^ GetResultAsync(AirPurifierSetFlowValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierSetFlowValueResult^> { return t; }); } Windows::Foundation::Deferral^ GetDeferral(); private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierSetFlowValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; int32 m_value; AirPurifierSetFlowValueResult^ m_result; }; public ref class AirPurifierSetTimerValueRequestedEventArgs sealed { public: AirPurifierSetTimerValueRequestedEventArgs(_In_ Windows::Devices::AllJoyn::AllJoynMessageInfo^ info, _In_ int32 value); property Windows::Devices::AllJoyn::AllJoynMessageInfo^ MessageInfo { Windows::Devices::AllJoyn::AllJoynMessageInfo^ get() { return m_messageInfo; } } property int32 Value { int32 get() { return m_value; } } property AirPurifierSetTimerValueResult^ Result { AirPurifierSetTimerValueResult^ get() { return m_result; } void set(_In_ AirPurifierSetTimerValueResult^ value) { m_result = value; } } static Windows::Foundation::IAsyncOperation<AirPurifierSetTimerValueResult^>^ GetResultAsync(AirPurifierSetTimerValueRequestedEventArgs^ args) { args->InvokeAllFinished(); auto t = concurrency::create_task(args->m_tce); return concurrency::create_async([t]() -> concurrency::task<AirPurifierSetTimerValueResult^> { return t; }); } Windows::Foundation::Deferral^ GetDeferral(); private: void Complete(); void InvokeAllFinished(); void InvokeCompleteHandler(); bool m_raised; int m_completionsRequired; concurrency::task_completion_event<AirPurifierSetTimerValueResult^> m_tce; std::mutex m_lock; Windows::Devices::AllJoyn::AllJoynMessageInfo^ m_messageInfo; int32 m_value; AirPurifierSetTimerValueResult^ m_result; }; } } } }
[ "git@jasonpoon.ca" ]
git@jasonpoon.ca
688c0ac2f2dcc1ef3b494f2d14d9a4d28171a2fc
c32ee8ade268240a8064e9b8efdbebfbaa46ddfa
/Libraries/m2sdk/mafia/gui/hud/C_HudWidgetStack.h
7598252fe52ea3620893db6e3d047f5dc08a2c40
[]
no_license
hopk1nz/maf2mp
6f65bd4f8114fdeb42f9407a4d158ad97f8d1789
814cab57dc713d9ff791dfb2a2abeb6af0e2f5a8
refs/heads/master
2021-03-12T23:56:24.336057
2015-08-22T13:53:10
2015-08-22T13:53:10
41,209,355
19
21
null
2015-08-31T05:28:13
2015-08-22T13:56:04
C++
UTF-8
C++
false
false
654
h
// auto-generated file (rttidump-exporter by h0pk1nz) #pragma once #include <mafia/gui/hud/C_HudWidget.h> namespace mafia { namespace gui { namespace hud { /** mafia::gui::hud::C_HudWidgetStack (VTable=0x01E6F200) */ class C_HudWidgetStack : public C_HudWidget { public: virtual void vfn_0001_A3E29AA5() = 0; virtual void vfn_0002_A3E29AA5() = 0; virtual void vfn_0003_A3E29AA5() = 0; virtual void vfn_0004_A3E29AA5() = 0; virtual void vfn_0005_A3E29AA5() = 0; virtual void vfn_0006_A3E29AA5() = 0; virtual void vfn_0007_A3E29AA5() = 0; virtual void vfn_0008_A3E29AA5() = 0; }; } // namespace hud } // namespace gui } // namespace mafia
[ "hopk1nz@gmail.com" ]
hopk1nz@gmail.com
b2bb4443b0bcd4447be98df7f03e97e5895b1015
509e33ff07eeb3d4d538ec6237e47324b2ad9084
/TxtAdv/LuaGameState.cpp
42bb6793e1b62aafcc87e1a2a0b6861d9003b7f7
[ "MIT" ]
permissive
doc97/TxtAdv
a81a025005b6ca109bb5b4e960dadf15cae2aa06
c74163548f5c68202a06d0ad320fbd5b687d6f1a
refs/heads/master
2021-06-09T10:30:54.539125
2021-05-06T20:36:07
2021-05-06T20:36:07
161,996,345
0
0
null
null
null
null
UTF-8
C++
false
false
4,170
cpp
/********************************************************** * License: The MIT License * https://www.github.com/doc97/TxtAdv/blob/master/LICENSE **********************************************************/ #include "LuaGameState.h" #include "LuaUtils.h" namespace txt { const char* LuaGameState::className = "LuaGameState"; const Luna<LuaGameState>::FunctionType LuaGameState::methods[] = { { "setStr", &LuaGameState::setStr }, { "getStr", &LuaGameState::getStr }, { "hasStr", &LuaGameState::hasStr }, { "setFloat", &LuaGameState::setFloat }, { "getFloat", &LuaGameState::getFloat }, { "hasFloat", &LuaGameState::hasFloat }, { "setInt", &LuaGameState::setInt }, { "getInt", &LuaGameState::getInt }, { "hasInt", &LuaGameState::hasInt }, {NULL, NULL} }; const Luna<LuaGameState>::PropertyType LuaGameState::properties[] = { {NULL, NULL} }; LuaGameState::LuaGameState(lua_State* L) : m_state(nullptr) { } LuaGameState::LuaGameState(GameState* state) : m_state(state) { } LuaGameState::~LuaGameState() { } void LuaGameState::SetStr(const std::string& key, const std::string& value) { m_state->SetString(key, value); } std::string LuaGameState::GetStr(const std::string& key) { return m_state->ReadString(key, ""); } void LuaGameState::SetFloat(const std::string& key, float value) { m_state->SetFloat(key, value); } float LuaGameState::GetFloat(const std::string& key) { return m_state->ReadFloat(key, 0.f); } void LuaGameState::SetInt(const std::string& key, int value) { m_state->SetInt(key, value); } int LuaGameState::GetInt(const std::string& key) { return m_state->ReadInt(key, 0); } bool LuaGameState::HasStr(const std::string& key) { return m_state->HasString(key); } bool LuaGameState::HasFloat(const std::string& key) { return m_state->HasFloat(key); } bool LuaGameState::HasInt(const std::string& key) { return m_state->HasInt(key); } /*** LUA INTERFACE ***/ int LuaGameState::setStr(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); const char* val = luaL_checkstring(L, 3); s->SetStr(key, val); return 0; } int LuaGameState::getStr(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); const char* val = s->GetStr(key).c_str(); lua_pushstring(L, val); return 1; } int LuaGameState::hasStr(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); bool exists = s->HasStr(key); lua_pushboolean(L, (int)exists); return 1; } int LuaGameState::setFloat(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); double value = luaL_checknumber(L, 3); s->SetFloat(key, (float)value); return 0; } int LuaGameState::getFloat(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); float value = s->GetFloat(key); lua_pushnumber(L, (double)value); return 1; } int LuaGameState::hasFloat(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); bool exists = s->HasFloat(key); lua_pushboolean(L, (int)exists); return 1; } int LuaGameState::setInt(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); long long value = luaL_checkinteger(L, 3); s->SetInt(key, (int)value); return 0; } int LuaGameState::getInt(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); int value = s->GetInt(key); lua_pushinteger(L, (long long)value); return 1; } int LuaGameState::hasInt(lua_State* L) { LuaGameState* s = GetObj<LuaGameState>(L, 1, className); const char* key = luaL_checkstring(L, 2); bool exists = s->HasInt(key); lua_pushboolean(L, (int)exists); return 1; } } // namespace txt
[ "daniel.riissanen@gmail.com" ]
daniel.riissanen@gmail.com
aa89a6925b74710ed1230eaab2cb4711a00bb462
a59afd60007d7de188f24f16e55b750ee4f200ac
/C++/OOP-SeminarHW4-task2/SeminarHW4-zadacha2/SeminarHW4-zadacha2.cpp
e033d46bf6b0bbb3d7676a95697425301567ac5e
[]
no_license
emakkaa/firstSteps
f32c3a09a50c3d94588dba3540e3cca00dd63d20
0e37fa66caf8893161f4f7621f1230113ceada60
refs/heads/master
2020-05-21T12:24:20.268072
2017-02-23T12:33:53
2017-02-23T12:33:53
53,432,686
0
0
null
null
null
null
UTF-8
C++
false
false
1,743
cpp
// SeminarHW4-zadacha2.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include <cstring> using namespace std; class DoubleVect { protected: double* vector; int size; int lower; int upper; public: DoubleVect(int s = 1) { lower = 0; upper = s - 1; size = s; vector = new double[s]; } ~DoubleVect() { delete[] vector; } DoubleVect(const DoubleVect& other) { size = other.size; vector = new double[size]; for (int i = 0; i < size; i++) { vector[i] = other.vector[i]; } lower = other.lower; upper = other.upper; } DoubleVect& operator=(const DoubleVect& other) { if (this != &other) { delete[] vector; size = other.size; vector = new double[size]; for (int i = 0; i < size; i++) { vector[i] = other.vector[i]; } lower = other.lower; upper = other.upper; } return *this; } double& operator[](int i) { return vector[i]; } int lowerBound() const { return lower; } int upperBound() const { return upper; } }; class DoubleVector : public DoubleVect { public: DoubleVector(int low, int upp) : DoubleVect(upp - low + 1) { lower = low; upper = upp; } double& operator[] (int i) { return DoubleVect::operator[] (i - lower); } }; int main() { DoubleVect a(4); for (int i = a.lowerBound(); i < a.upperBound(); i++) { cout << "> "; cin >> a[i]; } for (int i = a.lowerBound(); i < a.upperBound(); i++) { cout << a[i] << " " << endl; } DoubleVector b(16, 25); for (int i = b.lowerBound(); i < b.upperBound(); i++) { cout << "> "; cin >> b[i]; } for (int i = b.lowerBound(); i < b.upperBound(); i++) { cout << b[i] << " " << endl; } system("pause"); return 0; }
[ "emo960427@gmail.com" ]
emo960427@gmail.com
b600debf2ba82ad2a63c7380e93ab2bd749550fd
1f4033e4172a7bc29608eb4070eca7a8bdf530f1
/warped/simulationmodels/raid/factory/src/RAIDForkStub.cpp
b395d5ecb114a447129422ca6f63d96fb65e0db4
[ "Latex2e" ]
permissive
joerocklin/pdes
4dd84b5ce4b354d35ffb21a2b254b94db25cb1f2
b5d7596b0a0ff903a41cf1d2b932cf8b0afbacb3
refs/heads/master
2022-08-30T18:42:19.605727
2013-04-30T01:49:21
2013-04-30T01:49:21
4,184,954
0
0
null
2022-08-15T11:41:03
2012-04-30T17:11:49
C++
UTF-8
C++
false
false
2,564
cpp
// Copyright (c) The University of Cincinnati. // All rights reserved. // UC MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF // THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED // TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A // PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UC SHALL NOT BE LIABLE // FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, // RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS // DERIVATIVES. // By using or copying this Software, Licensee agrees to abide by the // intellectual property laws, and all other applicable laws of the // U.S., and the terms of this license. // Authors: Malolan Chetlur mal@ececs.uc.edu // Jorgen Dahl dahlj@ececs.uc.edu // Dale E. Martin dmartin@ececs.uc.edu // Radharamanan Radhakrishnan ramanan@ececs.uc.edu // Dhananjai Madhava Rao dmadhava@ececs.uc.edu // Philip A. Wilsey phil.wilsey@uc.edu //--------------------------------------------------------------------------- // // $Id: RAIDForkStub.cpp // //--------------------------------------------------------------------------- #include "../include/RAIDFork.h" #include "../include/RAIDForkStub.h" #include "SimulationObject.h" SimulationObject* RAIDForkStub::createSimulationObject(int numberOfArguments, ostringstream &argumentStream) { RAIDFork *newObject; /* NR OF REQUIRED OBJECTS NOT YET DETERMINED! if (numberOfArguments < 6) { cerr << "Invalid number of parameters for Process" << endl; cerr << "Minimum is 6 but got " << numberOfArguments << endl; cerr << "Argument Stream = " << argumentStream.str() << endl; delete [] argumentStream.str(); exit(-1); } */ istringstream inputStream(argumentStream.str()); string name; int nrOutputs; int dummyOutPortNr; vector<string> outputNames; int dummyInPortNrOfDest; int disks; int startDisk; // Break out the input stream into separate fields inputStream >> name >> nrOutputs; // Pack the outputNames vector with the output names. int iter = 0; string tmp; while (iter < nrOutputs) { inputStream >> dummyOutPortNr >> tmp >> dummyInPortNrOfDest; outputNames.push_back(tmp); iter++; } inputStream >> disks >> startDisk; newObject = new RAIDFork(name, nrOutputs, outputNames, disks, startDisk); //delete [] argumentStream.str(); return (SimulationObject *) newObject; }
[ "xinyu@ubuntu.(none)" ]
xinyu@ubuntu.(none)
cdddb31e7c97a142155c74e415dab5b5ad5c50d7
5f2f0a83e99b941f509fc762ecdc94d785729e87
/client_box/communication/communication/old/main.cpp
d39f0822b899ea997d293a3a39d34d3fd6ae2d0d
[]
no_license
TheCBear/AUHack19_Darth
b161128004062df82efa6551af7e421d49513469
939c12dcf5c5ede4096e100c3d664b88769f1a65
refs/heads/master
2020-05-05T05:23:12.395475
2019-04-07T10:00:02
2019-04-07T10:00:02
179,749,319
0
0
null
null
null
null
UTF-8
C++
false
false
7,891
cpp
#include <iostream> #include <fstream> #include <stdio.h> #include <stdlib.h> #include <string> #include <unistd.h> #include <pthread.h> #include <mutex> #include <deque> #include <boost/bind.hpp> #include <boost/asio.hpp> #include <boost/thread.hpp> #ifdef POSIX #include <termios.h> #endif #include "protocol.h" using boost::asio::ip::tcp; using namespace std; void *telnet_tread(void *ptr); string buffer; //Den modtaget string fra server bool msgSucces = false; //Fortæller om beskeden blev sendt bool openConnection = false; //Fortæller at forbindelsen til serveren er oprettet string sendString; //Benyt denne variable til at ligge jeres besked i til afsending til server int sendInt; //Benyt denne string til at ligge jeres besked i til afsending til server mutex lockRFID; string alarmState = "0"; struct connectInfo{ int port_; string ip_; }; int main(int argc, char *argv[]) { pthread_t thread[1]; for(int i = 0; i < 1 ; i++) { connectInfo msg; msg.port_ = 23; msg.ip_ = "192.168.43.8"; pthread_create( &thread[i], NULL, telnet_tread, &msg); } while(true) { cout << "opening connection to box" << endl; openConnection = false; while(openConnection == false)//Venter på der er oprettet forbindelse til server { sleep(1); openConnection = serverOpen(); if(openConnection == false) { //sendSeriel("7"); sleep(1); //alarmState = "1"; } } while(true) { cout << "IM ALIVE" << endl; string menu = "0"; if(tjekMessage() == true) { cout << "Message from server" << endl; menu = reciveMsg(); if(menu == "1") { cout << "Server want alarm status" << endl; if(alarmState == "1") sendMsg("1"); else sendMsg("0"); } else if(menu == "2") { cout << "Deaktiver alarm" << endl; } else if(menu == "3") //ping { cout << "Server want to hire, is the box alive" << endl; // sendSeriel("3"); // string state = recevieSeriel(); // if(state == "1") sendMsg("1"); //else //sendMsg("0"); } else if(menu == "4") { cout << "Server want to open box" << endl; } else if(menu == "5") //close connection { cout << "Server want to close connection" << endl; serverClose(); } else if(menu == "6") //close connection { string sensi = reciveMsg(); cout << "Server want to set sensitiviti" << endl; } else { cout << "not a valide menu input" << endl; cout << "closing server" << endl; //serverClose(); break; } } } } return (1); //////////////// TIL PROTOCOL //////////////////// } class telnet_client { public: enum { max_read_length = 512 }; telnet_client(boost::asio::io_service& io_service, tcp::resolver::iterator endpoint_iterator) : io_service_(io_service), socket_(io_service) { connect_start(endpoint_iterator); } void write(const char msg) // pass the write data to the do_write function via the io service in the other thread { io_service_.post(boost::bind(&telnet_client::do_write, this, msg)); } void close() // call the do_close function via the io service in the other thread { io_service_.post(boost::bind(&telnet_client::do_close, this)); } private: void connect_start(tcp::resolver::iterator endpoint_iterator) { // asynchronously connect a socket to the specified remote endpoint and call connect_complete when it completes or fails tcp::endpoint endpoint = *endpoint_iterator; socket_.async_connect(endpoint, boost::bind(&telnet_client::connect_complete, this, boost::asio::placeholders::error, ++endpoint_iterator)); } void connect_complete(const boost::system::error_code& error, tcp::resolver::iterator endpoint_iterator) { // the connection to the server has now completed or failed and returned an error if (!error) // success, so start waiting for read data read_start(); else if (endpoint_iterator != tcp::resolver::iterator()) { // failed, so wait for another connection event socket_.close(); connect_start(endpoint_iterator); } } void read_start(void) { // Start an asynchronous read and call read_complete when it completes or fails socket_.async_read_some(boost::asio::buffer(read_msg_, max_read_length), boost::bind(&telnet_client::read_complete, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred)); } void read_complete(const boost::system::error_code& error, size_t bytes_transferred) { // the asynchronous read operation has now completed or failed and returned an error if (!error) { // read completed, so process the data cout.write(read_msg_, bytes_transferred); // echo to standard output //cout << "\n"; read_start(); // start waiting for another asynchronous read again } else do_close(); } void do_write(const char msg) { // callback to handle write call from outside this class bool write_in_progress = !write_msgs_.empty(); // is there anything currently being written? write_msgs_.push_back(msg); // store in write buffer if (!write_in_progress) // if nothing is currently being written, then start write_start(); } void write_start(void) { // Start an asynchronous write and call write_complete when it completes or fails boost::asio::async_write(socket_, boost::asio::buffer(&write_msgs_.front(), 1), boost::bind(&telnet_client::write_complete, this, boost::asio::placeholders::error)); } void write_complete(const boost::system::error_code& error) { // the asynchronous read operation has now completed or failed and returned an error if (!error) { // write completed, so send next write data write_msgs_.pop_front(); // remove the completed data if (!write_msgs_.empty()) // if there is anthing left to be written write_start(); // then start sending the next item in the buffer } else do_close(); } void do_close() { socket_.close(); } private: boost::asio::io_service& io_service_; // the main IO service that runs this connection tcp::socket socket_; // the socket this instance is connected to char read_msg_[max_read_length]; // data read from the socket deque<char> write_msgs_; // buffered write data }; void *telnet_tread(void *ptr) { connectInfo * info = (connectInfo *)ptr; int argc = info->port_; const char* argv = info->ip_.c_str(); const char* port = "23"; while (true) { #ifdef POSIX termios stored_settings; tcgetattr(0, &stored_settings); termios new_settings = stored_settings; new_settings.c_lflag &= (~ICANON); new_settings.c_lflag &= (~ISIG); // don't automatically handle control-C tcsetattr(0, TCSANOW, &new_settings); #endif try { if (argc != 3) { cerr << "Usage: telnet <host> <port>\n"; } boost::asio::io_service io_service; // resolve the host name and port number to an iterator that can be used to connect to the server tcp::resolver resolver(io_service); tcp::resolver::query query(argv, port); tcp::resolver::iterator iterator = resolver.resolve(query); // define an instance of the main class of this program telnet_client c(io_service, iterator); // run the IO service as a separate thread, so the main thread can block on standard input boost::thread t(boost::bind(&boost::asio::io_service::run, &io_service)); while (1) { char ch; cin.get(ch); // blocking wait for standard input if (ch == 3) // ctrl-C to end program break; c.write(ch); } c.close(); // close the telnet client connection t.join(); // wait for the IO service thread to close } catch (exception& e) { cerr << "Exception: " << e.what() << "\n"; } #ifdef POSIX // restore default buffering of standard input tcsetattr(0, TCSANOW, &stored_settings); #endif return 0; } }
[ "au570003@uni.au.dk" ]
au570003@uni.au.dk
ea3b4e6e720e5b2eafe909578e5f7148714cffcb
d0e1263b0e76b0a8e0219c1202296bd372c3eabc
/MediaPortal-1-master/DirectShowFilters/MPAudioRenderer/source/SampleCopier.cpp
f519928f96d36a8ffff4571821d55135df8851a7
[]
no_license
juancollsoler/ex.tv.player.app.v2
d431427e44eb731b7d958624885236bd90b0643f
b9db15ed171b5df03843e8d884f159c4e264c226
refs/heads/master
2020-05-19T03:10:21.872002
2019-05-03T17:15:15
2019-05-03T17:15:15
184,790,805
1
0
null
null
null
null
UTF-8
C++
false
false
5,165
cpp
// Copyright (C) 2005-2012 Team MediaPortal // http://www.team-mediaportal.com // // MediaPortal is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 2 of the License, or // (at your option) any later version. // // MediaPortal 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 MediaPortal. If not, see <http://www.gnu.org/licenses/>. #include "stdafx.h" #include "Globals.h" #include "SampleCopier.h" #include <Audioclient.h> #include "alloctracing.h" CSampleCopier::CSampleCopier(AudioRendererSettings* pSettings, Logger* pLogger) : CBaseAudioSink(true, pSettings, pLogger), m_bPassThrough(false), m_rtInSampleTime(0), m_rtNextIncomingSampleTime(0), m_pLogger(pLogger) { m_bNextFormatPassthru = false; } CSampleCopier::~CSampleCopier() { } HRESULT CSampleCopier::Init() { return CBaseAudioSink::Init(); } HRESULT CSampleCopier::Cleanup() { return CBaseAudioSink::Cleanup(); } HRESULT CSampleCopier::NegotiateFormat(const WAVEFORMATEXTENSIBLE* pwfx, int nApplyChangesDepth, ChannelOrder* pChOrder) { if (!pwfx) return VFW_E_TYPE_NOT_ACCEPTED; if (!m_pNextSink) return VFW_E_TYPE_NOT_ACCEPTED; bool bApplyChanges = (nApplyChangesDepth != 0); if (nApplyChangesDepth != INFINITE && nApplyChangesDepth > 0) nApplyChangesDepth--; // Try passthrough HRESULT hr = m_pNextSink->NegotiateFormat(pwfx, nApplyChangesDepth, pChOrder); if (SUCCEEDED(hr)) { if (bApplyChanges) { m_bPassThrough = true; SetInputFormat(pwfx); SetOutputFormat(pwfx); } m_bNextFormatPassthru = true; m_chOrder = *pChOrder; return hr; } hr = m_pNextSink->NegotiateFormat(pwfx, nApplyChangesDepth, pChOrder); if (SUCCEEDED(hr)) { if (CanBitstream(pwfx)) { hr = m_pNextSink->NegotiateBuffer(pwfx, &m_nOutBufferSize, &m_nOutBufferCount, true); m_chOrder = *pChOrder; } } return hr; } // Processing HRESULT CSampleCopier::PutSample(IMediaSample *pSample) { if (!pSample) return S_OK; WAVEFORMATEXTENSIBLE* pwfe = NULL; AM_MEDIA_TYPE *pmt = NULL; bool bFormatChanged = false; HRESULT hr = S_OK; CAutoLock lock (&m_csOutputSample); if (m_bFlushing) return S_OK; if (SUCCEEDED(pSample->GetMediaType(&pmt)) && pmt != NULL) { pwfe = (WAVEFORMATEXTENSIBLE*)pmt->pbFormat; bFormatChanged = !FormatsEqual(pwfe, m_pInputFormat); } if (bFormatChanged) { m_bBitstreaming = CanBitstream(pwfe); // Apply format change locally, // next filter will evaluate the format change when it receives the sample Log("CSampleCopier::PutSample: Processing format change"); ChannelOrder chOrder; hr = NegotiateFormat((WAVEFORMATEXTENSIBLE*)pmt->pbFormat, 1, &chOrder); if (FAILED(hr)) { DeleteMediaType(pmt); Log("SampleCopier: PutSample failed to change format: 0x%08x", hr); return hr; } SetInputFormat(pwfe); m_chOrder = chOrder; } if (m_bBitstreaming) { ASSERT(m_pMemAllocator); if (!m_pMemAllocator) { Log("CSampleCopier::PutSample m_pMemAllocator is NULL"); return E_POINTER; } REFERENCE_TIME rtStop = 0; REFERENCE_TIME rtStart = 0; if (SUCCEEDED(hr = pSample->GetTime(&rtStart, &rtStop))) { if (FAILED(hr = RequestNextOutBuffer(rtStart))) { if (pmt) DeleteMediaType(pmt); return hr; } } else return hr; ASSERT(m_pNextOutSample); if (pmt) { if (FAILED(m_pNextOutSample->SetMediaType(pmt))) Log("CBaseAudioSink - failed to set mediatype: 0x%08x", hr); DeleteMediaType(pmt); } if (pSample->IsDiscontinuity() == S_OK) m_bDiscontinuity = true; if (m_bDiscontinuity) { if (FAILED(m_pNextOutSample->SetDiscontinuity(true))) Log("CBaseAudioSink - failed to set discontinuity: 0x%08x", hr); } long cbSampleData = pSample->GetActualDataLength(); long cbDestSize = m_pNextOutSample->GetSize(); ASSERT(cbDestSize >= cbSampleData); m_pNextOutSample->SetActualDataLength(cbSampleData); BYTE *pSourceData = NULL; BYTE *pDestData = NULL; if (FAILED(hr = pSample->GetPointer(&pSourceData))) { ASSERT(pSourceData); Log("CSampleCopier::PutSample - failed to get input sample's data pointer: 0x%08x", hr); return hr; } if (FAILED(hr = m_pNextOutSample->GetPointer(&pDestData))) { ASSERT(pSourceData); Log("CSampleCopier::PutSample - failed to get output sample's data pointer: 0x%08x", hr); return hr; } memcpy(pDestData, pSourceData, cbSampleData); return OutputNextSample(); } else return m_pNextSink->PutSample(pSample); } HRESULT CSampleCopier::EndOfStream() { return CBaseAudioSink::EndOfStream(); }
[ "juan.coll@nexcode.io" ]
juan.coll@nexcode.io
37f7a1659ee1c7fdffed4ae5c9b4b3422390cfc7
91549d2b19466e9c394acdeb8dfbca48901520eb
/whilepractice2.cpp
cac099092360b82164c3bd1196df9d2220716a18
[]
no_license
aaqib-yfz/1st-Semester
b3331719f501cf5e8db7653a4f9324b9d7755cef
349b4df3a59110d36ef1c39d5f4cd536a7feedbf
refs/heads/master
2023-07-13T22:03:12.997786
2021-08-24T15:30:32
2021-08-24T15:30:32
349,517,521
0
0
null
null
null
null
UTF-8
C++
false
false
260
cpp
#include <iostream> using namespace std; int main() /* { int n,i; cout<<"ENTER ANY NUMBER = "; cin>>n; cout<<" THE TABLE OF "<<n<<endl; for ( i=1; i<=10; i++) { /* code */ cout<< n<<" * "<<i<<" = "<<n*i<<endl; } return 0; }
[ "aaqibshaheer2001@gmail.com" ]
aaqibshaheer2001@gmail.com
5919bfdd64b9c903ecc9f5f4d096e3807a2141f9
6bf7c1d8a514f73b8203043206048603fa177902
/src/base/core/memory/memheapalloc.cpp
227b0589cd0d338d7f40579516cbb4a483a91977
[ "LicenseRef-scancode-unknown-license-reference", "Zlib", "BSD-2-Clause", "BSD-3-Clause", "MIT" ]
permissive
panyihua/behaviac
fbe39a1fdb0bd762cece0710c9adb279e1a32836
a0a1b12d2da43911c4e3c41105d38929162d396e
refs/heads/master
2020-02-26T13:48:47.109138
2015-11-12T06:09:00
2015-11-12T06:09:00
45,733,207
1
0
null
2015-11-07T11:12:03
2015-11-07T11:12:03
null
UTF-8
C++
false
false
1,008
cpp
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Tencent is pleased to support the open source community by making behaviac available. // // Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at http://opensource.org/licenses/BSD-3-Clause // // 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 "behaviac/base/core/memory/memheapalloc.h" namespace behaviac { }
[ "cainhuang@tencent.com" ]
cainhuang@tencent.com
01be2c49d5988158431e282fa91037fa032c2d50
249e41c98f4d9fc9bb9c175e6f41475470845280
/generated/crs.cpp
d693ea23b4a59f665d24497de8a3de09435b8186
[]
no_license
burgrp/si-stm32f0x2
7923bcd5d4202a086ff5b36d116785e254863159
9e2821673ad6a3de2442e79dfbce805ab18ec14e
refs/heads/master
2022-02-20T13:24:32.928216
2019-07-22T16:47:24
2019-07-22T16:47:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,351
cpp
namespace target { namespace crs { namespace reg { /** control register */ class CR { volatile unsigned long raw; public: __attribute__((always_inline)) void operator= (unsigned long value) volatile { raw = value; } __attribute__((always_inline)) operator unsigned long () volatile { return raw; } /** Gets HSI48 oscillator smooth trimming @return value in range 0..63 */ __attribute__((always_inline)) unsigned long getTRIM() volatile { return (raw & (0x3F << 8)) >> 8; } /** Sets HSI48 oscillator smooth trimming @param value in range 0..63 */ __attribute__((always_inline)) unsigned long setTRIM(unsigned long value) volatile { raw = (raw & ~(0x3F << 8)) | ((value << 8) & (0x3F << 8)); } /** Gets Generate software SYNC event @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSWSYNC() volatile { return (raw & (0x1 << 7)) >> 7; } /** Sets Generate software SYNC event @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSWSYNC(unsigned long value) volatile { raw = (raw & ~(0x1 << 7)) | ((value << 7) & (0x1 << 7)); } /** Gets Automatic trimming enable @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getAUTOTRIMEN() volatile { return (raw & (0x1 << 6)) >> 6; } /** Sets Automatic trimming enable @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setAUTOTRIMEN(unsigned long value) volatile { raw = (raw & ~(0x1 << 6)) | ((value << 6) & (0x1 << 6)); } /** Gets Frequency error counter enable @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getCEN() volatile { return (raw & (0x1 << 5)) >> 5; } /** Sets Frequency error counter enable @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setCEN(unsigned long value) volatile { raw = (raw & ~(0x1 << 5)) | ((value << 5) & (0x1 << 5)); } /** Gets Expected SYNC interrupt enable @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getESYNCIE() volatile { return (raw & (0x1 << 3)) >> 3; } /** Sets Expected SYNC interrupt enable @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setESYNCIE(unsigned long value) volatile { raw = (raw & ~(0x1 << 3)) | ((value << 3) & (0x1 << 3)); } /** Gets Synchronization or trimming error interrupt enable @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getERRIE() volatile { return (raw & (0x1 << 2)) >> 2; } /** Sets Synchronization or trimming error interrupt enable @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setERRIE(unsigned long value) volatile { raw = (raw & ~(0x1 << 2)) | ((value << 2) & (0x1 << 2)); } /** Gets SYNC warning interrupt enable @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCWARNIE() volatile { return (raw & (0x1 << 1)) >> 1; } /** Sets SYNC warning interrupt enable @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCWARNIE(unsigned long value) volatile { raw = (raw & ~(0x1 << 1)) | ((value << 1) & (0x1 << 1)); } /** Gets SYNC event OK interrupt enable @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCOKIE() volatile { return (raw & (0x1 << 0)) >> 0; } /** Sets SYNC event OK interrupt enable @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCOKIE(unsigned long value) volatile { raw = (raw & ~(0x1 << 0)) | ((value << 0) & (0x1 << 0)); } }; /** configuration register */ class CFGR { volatile unsigned long raw; public: __attribute__((always_inline)) void operator= (unsigned long value) volatile { raw = value; } __attribute__((always_inline)) operator unsigned long () volatile { return raw; } /** Gets SYNC polarity selection @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCPOL() volatile { return (raw & (0x1 << 31)) >> 31; } /** Sets SYNC polarity selection @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCPOL(unsigned long value) volatile { raw = (raw & ~(0x1 << 31)) | ((value << 31) & (0x1 << 31)); } /** Gets SYNC signal source selection @return value in range 0..3 */ __attribute__((always_inline)) unsigned long getSYNCSRC() volatile { return (raw & (0x3 << 28)) >> 28; } /** Sets SYNC signal source selection @param value in range 0..3 */ __attribute__((always_inline)) unsigned long setSYNCSRC(unsigned long value) volatile { raw = (raw & ~(0x3 << 28)) | ((value << 28) & (0x3 << 28)); } /** Gets SYNC divider @return value in range 0..7 */ __attribute__((always_inline)) unsigned long getSYNCDIV() volatile { return (raw & (0x7 << 24)) >> 24; } /** Sets SYNC divider @param value in range 0..7 */ __attribute__((always_inline)) unsigned long setSYNCDIV(unsigned long value) volatile { raw = (raw & ~(0x7 << 24)) | ((value << 24) & (0x7 << 24)); } /** Gets Frequency error limit @return value in range 0..255 */ __attribute__((always_inline)) unsigned long getFELIM() volatile { return (raw & (0xFF << 16)) >> 16; } /** Sets Frequency error limit @param value in range 0..255 */ __attribute__((always_inline)) unsigned long setFELIM(unsigned long value) volatile { raw = (raw & ~(0xFF << 16)) | ((value << 16) & (0xFF << 16)); } /** Gets Counter reload value @return value in range 0..65535 */ __attribute__((always_inline)) unsigned long getRELOAD() volatile { return (raw & (0xFFFF << 0)) >> 0; } /** Sets Counter reload value @param value in range 0..65535 */ __attribute__((always_inline)) unsigned long setRELOAD(unsigned long value) volatile { raw = (raw & ~(0xFFFF << 0)) | ((value << 0) & (0xFFFF << 0)); } }; /** interrupt and status register */ class ISR { volatile unsigned long raw; public: __attribute__((always_inline)) void operator= (unsigned long value) volatile { raw = value; } __attribute__((always_inline)) operator unsigned long () volatile { return raw; } /** Gets Frequency error capture @return value in range 0..65535 */ __attribute__((always_inline)) unsigned long getFECAP() volatile { return (raw & (0xFFFF << 16)) >> 16; } /** Sets Frequency error capture @param value in range 0..65535 */ __attribute__((always_inline)) unsigned long setFECAP(unsigned long value) volatile { raw = (raw & ~(0xFFFF << 16)) | ((value << 16) & (0xFFFF << 16)); } /** Gets Frequency error direction @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getFEDIR() volatile { return (raw & (0x1 << 15)) >> 15; } /** Sets Frequency error direction @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setFEDIR(unsigned long value) volatile { raw = (raw & ~(0x1 << 15)) | ((value << 15) & (0x1 << 15)); } /** Gets Trimming overflow or underflow @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getTRIMOVF() volatile { return (raw & (0x1 << 10)) >> 10; } /** Sets Trimming overflow or underflow @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setTRIMOVF(unsigned long value) volatile { raw = (raw & ~(0x1 << 10)) | ((value << 10) & (0x1 << 10)); } /** Gets SYNC missed @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCMISS() volatile { return (raw & (0x1 << 9)) >> 9; } /** Sets SYNC missed @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCMISS(unsigned long value) volatile { raw = (raw & ~(0x1 << 9)) | ((value << 9) & (0x1 << 9)); } /** Gets SYNC error @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCERR() volatile { return (raw & (0x1 << 8)) >> 8; } /** Sets SYNC error @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCERR(unsigned long value) volatile { raw = (raw & ~(0x1 << 8)) | ((value << 8) & (0x1 << 8)); } /** Gets Expected SYNC flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getESYNCF() volatile { return (raw & (0x1 << 3)) >> 3; } /** Sets Expected SYNC flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setESYNCF(unsigned long value) volatile { raw = (raw & ~(0x1 << 3)) | ((value << 3) & (0x1 << 3)); } /** Gets Error flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getERRF() volatile { return (raw & (0x1 << 2)) >> 2; } /** Sets Error flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setERRF(unsigned long value) volatile { raw = (raw & ~(0x1 << 2)) | ((value << 2) & (0x1 << 2)); } /** Gets SYNC warning flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCWARNF() volatile { return (raw & (0x1 << 1)) >> 1; } /** Sets SYNC warning flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCWARNF(unsigned long value) volatile { raw = (raw & ~(0x1 << 1)) | ((value << 1) & (0x1 << 1)); } /** Gets SYNC event OK flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCOKF() volatile { return (raw & (0x1 << 0)) >> 0; } /** Sets SYNC event OK flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCOKF(unsigned long value) volatile { raw = (raw & ~(0x1 << 0)) | ((value << 0) & (0x1 << 0)); } }; /** interrupt flag clear register */ class ICR { volatile unsigned long raw; public: __attribute__((always_inline)) void operator= (unsigned long value) volatile { raw = value; } __attribute__((always_inline)) operator unsigned long () volatile { return raw; } /** Gets Expected SYNC clear flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getESYNCC() volatile { return (raw & (0x1 << 3)) >> 3; } /** Sets Expected SYNC clear flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setESYNCC(unsigned long value) volatile { raw = (raw & ~(0x1 << 3)) | ((value << 3) & (0x1 << 3)); } /** Gets Error clear flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getERRC() volatile { return (raw & (0x1 << 2)) >> 2; } /** Sets Error clear flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setERRC(unsigned long value) volatile { raw = (raw & ~(0x1 << 2)) | ((value << 2) & (0x1 << 2)); } /** Gets SYNC warning clear flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCWARNC() volatile { return (raw & (0x1 << 1)) >> 1; } /** Sets SYNC warning clear flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCWARNC(unsigned long value) volatile { raw = (raw & ~(0x1 << 1)) | ((value << 1) & (0x1 << 1)); } /** Gets SYNC event OK clear flag @return value in range 0..1 */ __attribute__((always_inline)) unsigned long getSYNCOKC() volatile { return (raw & (0x1 << 0)) >> 0; } /** Sets SYNC event OK clear flag @param value in range 0..1 */ __attribute__((always_inline)) unsigned long setSYNCOKC(unsigned long value) volatile { raw = (raw & ~(0x1 << 0)) | ((value << 0) & (0x1 << 0)); } }; }; class Peripheral { public: union { struct { /** control register */ volatile reg::CR CR; }; struct { volatile char _space_CFGR[4]; /** configuration register */ volatile reg::CFGR CFGR; }; struct { volatile char _space_ISR[8]; /** interrupt and status register */ volatile reg::ISR ISR; }; struct { volatile char _space_ICR[12]; /** interrupt flag clear register */ volatile reg::ICR ICR; }; }; }; } extern crs::Peripheral CRS; }
[ "pb@drake.cz" ]
pb@drake.cz
142c36823621a0d0ecb9c782e4651bbc5ae0c330
f3154cf02005b6d365841d06c8655604ee207524
/srcs/modules/JsonParser/Module.cpp
88f7f58aaa53b1584ab7e407dff7fab2d2c35f30
[ "Beerware" ]
permissive
ViguierB/zia
de057aca6488e8dfb3065db6e3846d91ca8662e8
cb3e3a967ac4129cc4aa80fc1ca3401a17666852
refs/heads/master
2020-04-28T06:24:58.729237
2019-04-26T11:44:35
2019-04-26T11:44:35
175,057,133
0
0
null
null
null
null
UTF-8
C++
false
false
845
cpp
/* ** EPITECH PROJECT, 2018 ** zia ** File description: ** Module.cpp */ #include <fstream> #include "Zany/Loader.hpp" #include "./Parser.hpp" namespace zia { class JsonParserModule : public zany::Loader::AbstractModule { public: virtual auto name() const -> const std::string& { static const std::string name("JsonParser"); return name; } virtual void init() {}; virtual bool isAParser() final { return true; } virtual auto parse(std::string const &filename) -> zany::Entity final; private: }; zany::Entity JsonParserModule::parse(std::string const &filename) { std::ifstream sConfig(filename); if (!sConfig.is_open()) { return false; } try { return Parser::fromStream(sConfig); } catch (...) { return false; } } } extern "C" ZANY_DLL zany::Loader::AbstractModule *entrypoint() { return new zia::JsonParserModule(); }
[ "benjamin.viguier@epitech.eu" ]
benjamin.viguier@epitech.eu
2701cb715a8c059cb43f28c04a4449d51411f67b
ac13959437a22b0dd7a0e808e44e12971ff6f79f
/CodeC2/thiquynh_Bai6_C2.cpp
a44a9f0436262654e40c01b573c474129a98c265
[]
no_license
hieu-ln/IT81-09
a6a8845ed1565ce11a1a1ba98f3f7a9a554dcba0
f84c8322926a05fe6b2ae5832cfb4a1ba073e0f8
refs/heads/master
2020-06-11T06:42:04.968585
2019-08-17T17:04:54
2019-08-17T17:04:54
193,879,288
0
2
null
null
null
null
UTF-8
C++
false
false
2,582
cpp
//#include<iostream> //using namespace std; //#define MAX 100 // //int a[MAX]; //int sp; // ////6.1 //void init(int a[], int& sp) //{ // sp = -1; //} // ////6.2 //int isEmpty(int a[], int sp) //{ // if (sp == -1) // return 1; // return 0; //} // ////6.3 //int isFull(int a[], int sp) //{ // if (sp == MAX - 1) // return 1; // return 0; //}//6.4 //int push(int a[], int& sp, int x) //{ // if (sp <= MAX - 1) // { // a[++sp] = x; // return 1; // } // return 0; //} // ////6.5 //int pop(int a[], int& sp, int& x) //{ // if (sp != -1) // { // x = a[sp--]; // return 1; // } // return 0; //} // ////6.6 //int Convert(int so) //{ // init(a, sp); // int np = 0; // while (so != 0) // { // int du = so % 2; // if (push(a, sp, du)) // so /= 2; // else // break; // } // while (!isEmpty(a, sp)) // { // int x; // if (pop(a, sp, x)) // np = np * 10 + x; // else // break; // } // return np; //} ////6.7 //void Xuat(int a[], int sp) //{ // for (int i = sp; i > 0; i--) // cout << a[i] << endl; //} //int main() //{ // int choice = 0; // int x, i; // system("cls"); // cout << "1.Khoi tao\n"; // cout << "2.Kiem tra rong\n"; // cout << "3.Kiem tra day\n"; // cout << "4.Them mot phan tu\n"; // cout << "5.Xoa mot phan tu\n"; // cout << "6.Doi mot so thap phan sang so nhi phan\n"; // cout << "7.Xuat danh sach\n"; // cout << "8.Thoat\n"; // do { // cout << " Vui long chon so de thuc hien: "; // cin >> choice; // switch (choice) // { // case 1: // init(a, sp); // cout << "Ban vua khoi tao danh sach thanh cong!\n"; // break; // case 2: // if (isEmpty(a, sp)) // cout << "Stack rong\n"; // else // cout << "Stack khong rong\n"; // break; // case 3: // if (isFull(a, sp)) // cout << "Stack day\n"; // else // cout << "Stack chua day\n"; // break; // case 4: // int x; // cout << "Nhap gia tri muon them:"; // cin >> x; // if (push(a, sp, x)) // cout << "Them phan tu thanh cong\n"; // else // cout << "Them phan tu khong thanh cong\n"; // break; // case 5: // int y; // if (pop(a, sp, y)) // cout << "Xoa phan tu thanh cong\n"; // else // cout << "Xoa phan tu khong thanh cong\n"; // break; // case 6: // int tp; // cout << "Nhap gia tri he thap phan can chuyen: "; // cin >> tp; // cout << "Gia tri nhi phan tuong ung la: " << Convert(tp) << endl; // break; // case 7: // cout << "Stack hien tai: " << endl; // Xuat(a, sp); // break; // case 8: // cout << "Thoat! " << endl; // break; // default: // break; // } // } while (choice != 9); // system("Pause"); // return 0; //}
[ "1851050123quynh@ou.edu.vn" ]
1851050123quynh@ou.edu.vn
90bdb679e4d2a2af09af9b786090c41eb2cfde88
d8ee682faf776c5b4646be702f8abbdecce8452d
/ui/vivaldi_browser_window.h
33b0a15d2dd0b26f3ce20def7f4cb652f18b031c
[]
no_license
PatSpiegel/vivaldi
b14898f235dae66c1c5c4b5682898e75077054ea
003f250c6c388d1a069c1794d7ec9b586e4827d2
refs/heads/master
2022-11-14T09:50:19.263539
2020-07-04T09:44:48
2020-07-04T09:44:48
276,650,379
0
0
null
null
null
null
UTF-8
C++
false
false
20,560
h
// Copyright (c) 2015 Vivaldi Technologies AS. All rights reserved. #ifndef UI_VIVALDI_BROWSER_WINDOW_H_ #define UI_VIVALDI_BROWSER_WINDOW_H_ #include <memory> #include <string> #include <vector> #include "base/compiler_specific.h" #include "base/timer/timer.h" #include "chrome/browser/ui/autofill/autofill_bubble_handler.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_window.h" #include "chrome/browser/ui/exclusive_access/exclusive_access_context.h" #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" #include "extensions/browser/app_window/app_delegate.h" #include "extensions/browser/app_window/app_web_contents_helper.h" #include "extensions/browser/app_window/app_window.h" #include "extensions/browser/app_window/app_window_contents.h" #include "extensions/browser/extension_function_dispatcher.h" #include "extensions/browser/extension_registry_observer.h" #include "ui/base/accelerators/accelerator.h" #include "ui/infobar_container_web_proxy.h" #include "ui/vivaldi_location_bar.h" #if defined(OS_WIN) #include "base/win/windows_version.h" #include "ui/views/win/scoped_fullscreen_visibility.h" #endif class Browser; #if defined(OS_WIN) class JumpList; #endif class VivaldiBrowserWindow; class VivaldiNativeAppWindow; namespace autofill { class AutofillBubbleHandler; } namespace ui { class Accelerator; } namespace content { class RenderFrameHost; } namespace extensions { class Extension; class NativeAppWindow; struct DraggableRegion; } namespace autofill { class SaveCardBubbleView; class LocalCardMigrationBubble; class SaveCardBubbleController; class LocalCardMigrationBubbleController; } class VivaldiAutofillBubbleHandler : public autofill::AutofillBubbleHandler { public: VivaldiAutofillBubbleHandler(); ~VivaldiAutofillBubbleHandler() override; autofill::SaveCardBubbleView* ShowSaveCreditCardBubble( content::WebContents* web_contents, autofill::SaveCardBubbleController* controller, bool is_user_gesture) override; // Shows the sign in promo bubble from the avatar button. autofill::SaveCardBubbleView* ShowSaveCardSignInPromoBubble( content::WebContents* contents, autofill::SaveCardBubbleController* controller) override; autofill::LocalCardMigrationBubble* ShowLocalCardMigrationBubble( content::WebContents* web_contents, autofill::LocalCardMigrationBubbleController* controller, bool is_user_gesture) override; void OnPasswordSaved() override {} void HideSignInPromo() override {} private: DISALLOW_COPY_AND_ASSIGN(VivaldiAutofillBubbleHandler); }; class VivaldiNativeAppWindowViews; // AppWindowContents class specific to vivaldi app windows. It maintains a // WebContents instance and observes it for the purpose of passing // messages to the extensions system. class VivaldiAppWindowContentsImpl : public content::WebContentsDelegate, public content::WebContentsObserver { public: VivaldiAppWindowContentsImpl(VivaldiBrowserWindow* host); ~VivaldiAppWindowContentsImpl() override; content::WebContents* web_contents() const { return web_contents_.get(); } // AppWindowContents void Initialize(std::unique_ptr<content::WebContents> web_contents); void NativeWindowClosed(); // Overridden from WebContentsDelegate bool HandleKeyboardEvent( content::WebContents* source, const content::NativeWebKeyboardEvent& event) override; bool PreHandleGestureEvent(content::WebContents* source, const blink::WebGestureEvent& event) override; content::ColorChooser* OpenColorChooser( content::WebContents* web_contents, SkColor color, const std::vector<blink::mojom::ColorSuggestionPtr>& suggestions) override; void RunFileChooser(content::RenderFrameHost* render_frame_host, std::unique_ptr<content::FileSelectListener> listener, const blink::mojom::FileChooserParams& params) override; void NavigationStateChanged(content::WebContents* source, content::InvalidateTypes changed_flags) override; void RequestMediaAccessPermission( content::WebContents* web_contents, const content::MediaStreamRequest& request, content::MediaResponseCallback callback) override; bool CheckMediaAccessPermission(content::RenderFrameHost* render_frame_host, const GURL& security_origin, blink::mojom::MediaStreamType type) override; content::PictureInPictureResult EnterPictureInPicture( content::WebContents* web_contents, const viz::SurfaceId& surface_id, const gfx::Size& natural_size) override; void ExitPictureInPicture() override; void PrintCrossProcessSubframe( content::WebContents* web_contents, const gfx::Rect& rect, int document_cookie, content::RenderFrameHost* subframe_host) const override; void ActivateContents(content::WebContents* contents) override; private: // content::WebContentsObserver void RenderViewCreated(content::RenderViewHost* render_view_host) override; void RenderProcessGone(base::TerminationStatus status) override; bool OnMessageReceived(const IPC::Message& message, content::RenderFrameHost* sender) override; void DidFinishNavigation( content::NavigationHandle* navigation_handle) override; void DidFinishLoad(content::RenderFrameHost* render_frame_host, const GURL& validated_url) override; void UpdateDraggableRegions( content::RenderFrameHost* sender, const std::vector<extensions::DraggableRegion>& regions); extensions::AppDelegate* GetAppDelegate(); VivaldiBrowserWindow* host_; // This class is owned by |host_| std::unique_ptr<content::WebContents> web_contents_; DISALLOW_COPY_AND_ASSIGN(VivaldiAppWindowContentsImpl); }; // An implementation of BrowserWindow used for Vivaldi. class VivaldiBrowserWindow : public BrowserWindow, public web_modal::WebContentsModalDialogManagerDelegate, public ExclusiveAccessContext, public ui::AcceleratorProvider, public infobars::InfoBarContainer::Delegate, public extensions::ExtensionFunctionDispatcher::Delegate, public extensions::ExtensionRegistryObserver { public: VivaldiBrowserWindow(); ~VivaldiBrowserWindow() override; enum WindowType { NORMAL, SETTINGS, }; // Returns the BrowserView used for the specified Browser. static VivaldiBrowserWindow* GetBrowserWindowForBrowser( const Browser* browser); // Create a new VivaldiBrowserWindow; static VivaldiBrowserWindow* CreateVivaldiBrowserWindow( std::unique_ptr<Browser> browser); // Returns a Browser instance of this view. Browser* browser() { return browser_.get(); } const Browser* browser() const { return browser_.get(); } content::WebContents* web_contents() const { return app_window_contents_.web_contents(); } // Takes ownership of |browser|. void SetBrowser(std::unique_ptr<Browser> browser); void CreateWebContents(const extensions::AppWindow::CreateParams& params, content::RenderFrameHost* creator_frame); void LoadContents(const std::string& resource_relative_url); // LoadCompleteListener::Delegate implementation. Creates and initializes the // |jumplist_| after the first page load. // virtual void OnLoadCompleted() override; void Show(extensions::AppWindow::ShowType show_type); // ExtensionRegistryObserver implementation. void OnExtensionUnloaded( content::BrowserContext* browser_context, const extensions::Extension* extension, extensions::UnloadedExtensionReason reason) override; // ExtensionFunctionDispatcher::Delegate implementation. extensions::WindowController* GetExtensionWindowController() const override; content::WebContents* GetAssociatedWebContents() const override; // infobars::InfoBarContainer::Delegate void InfoBarContainerStateChanged(bool is_animating) override; // // BrowserWindow overrides // void Show() override; void ShowInactive() override {} void Hide() override; bool IsVisible() const override; void SetBounds(const gfx::Rect& bounds) override; void Close() override; void Activate() override; void Deactivate() override; bool IsActive() const override; void FlashFrame(bool flash) override {} gfx::NativeWindow GetNativeWindow() const override; StatusBubble* GetStatusBubble() override; void UpdateTitleBar() override; void BookmarkBarStateChanged( BookmarkBar::AnimateChangeType change_type) override {} void UpdateDevTools() override; void UpdateLoadingAnimations(bool should_animate) override {} void SetStarredState(bool is_starred) override {} void SetTranslateIconToggled(bool is_lit) override {} void OnActiveTabChanged(content::WebContents* old_contents, content::WebContents* new_contents, int index, int reason) override; void ZoomChangedForActiveTab(bool can_show_bubble) override {} gfx::Rect GetRestoredBounds() const override; ui::WindowShowState GetRestoredState() const override; gfx::Rect GetBounds() const override; bool IsMaximized() const override; bool IsMinimized() const override; void Maximize() override; void Minimize() override; void Restore() override; bool ShouldHideUIForFullscreen() const override; bool IsFullscreen() const override; void ResetToolbarTabState(content::WebContents* contents) override {} bool IsFullscreenBubbleVisible() const override; LocationBar* GetLocationBar() const override; void SetFocusToLocationBar(bool select_all) override {} void UpdateReloadStopState(bool is_loading, bool force) override {} void UpdateToolbar(content::WebContents* contents) override; void FocusToolbar() override {} ToolbarActionsBar* GetToolbarActionsBar() override; void ToolbarSizeChanged(bool is_animating) override {} void FocusAppMenu() override {} void FocusBookmarksToolbar() override {} void FocusInactivePopupForAccessibility() override {} void RotatePaneFocus(bool forwards) override {} void ShowAppMenu() override {} content::KeyboardEventProcessingResult PreHandleKeyboardEvent( const content::NativeWebKeyboardEvent& event) override; bool HandleKeyboardEvent( const content::NativeWebKeyboardEvent& event) override; gfx::Size GetContentsSize() const override; void SetContentsSize(const gfx::Size& size) override {} bool UpdatePageActionIcon(PageActionIconType type) override; autofill::AutofillBubbleHandler* GetAutofillBubbleHandler() override; void ExecutePageActionIconForTesting(PageActionIconType type) override {} void ShowEmojiPanel() override; bool IsBookmarkBarVisible() const override; bool IsBookmarkBarAnimating() const override; bool IsTabStripEditable() const override; bool IsToolbarVisible() const override; void ShowUpdateChromeDialog() override {} void ShowBookmarkBubble(const GURL& url, bool already_bookmarked) override {} qrcode_generator::QRCodeGeneratorBubbleView* ShowQRCodeGeneratorBubble( content::WebContents* contents, qrcode_generator::QRCodeGeneratorBubbleController* controller, const GURL& url) override; ShowTranslateBubbleResult ShowTranslateBubble( content::WebContents* contents, translate::TranslateStep step, const std::string& source_language, const std::string& target_language, translate::TranslateErrors::Type error_type, bool is_user_gesture) override; bool IsDownloadShelfVisible() const override; DownloadShelf* GetDownloadShelf() override; void ConfirmBrowserCloseWithPendingDownloads( int download_count, Browser::DownloadCloseType dialog_type, bool app_modal, const base::Callback<void(bool)>& callback) override; void UserChangedTheme(BrowserThemeChangeType theme_change_type) override {} void VivaldiShowWebsiteSettingsAt( Profile* profile, content::WebContents* web_contents, const GURL& url, security_state::SecurityLevel security_level, const security_state::VisibleSecurityState& visible_security_state, gfx::Point pos) override; void CutCopyPaste(int command_id) override {} bool IsOnCurrentWorkspace() const override; void SetTopControlsShownRatio(content::WebContents* web_contents, float ratio) override {} bool DoBrowserControlsShrinkRendererSize( const content::WebContents* contents) const override; int GetTopControlsHeight() const override; void SetTopControlsGestureScrollInProgress(bool in_progress) override {} bool CanUserExitFullscreen() const override; std::unique_ptr<FindBar> CreateFindBar() override; web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost() override; void ExecuteExtensionCommand(const extensions::Extension* extension, const extensions::Command& command) override; void ShowOneClickSigninConfirmation( const base::string16& email, base::OnceCallback<void(bool)> start_sync_callback) override {} void OnTabRestored(int command_id) override {} void OnTabDetached(content::WebContents* contents, bool was_active) override { } void TabDraggingStatusChanged(bool is_dragging) override {} // Shows in-product help for the given feature. void ShowInProductHelpPromo(InProductHelpFeature iph_feature) override {} void UpdateFrameColor() override {} #if !defined(OS_ANDROID) void ShowIntentPickerBubble( std::vector<apps::IntentPickerAppInfo> app_info, bool show_stay_in_chrome, bool show_remember_selection, PageActionIconType icon_type, const base::Optional<url::Origin>& initiating_origin, IntentPickerResponse callback) override {} #endif send_tab_to_self::SendTabToSelfBubbleView* ShowSendTabToSelfBubble( content::WebContents* contents, send_tab_to_self::SendTabToSelfBubbleController* controller, bool is_user_gesture) override; ExtensionsContainer* GetExtensionsContainer() override; void UpdateCustomTabBarVisibility(bool visible, bool animate) override {} SharingDialog* ShowSharingDialog(content::WebContents* contents, SharingDialogData data) override; void ShowHatsBubble(const std::string& site_id) override {} // BrowserWindow overrides end // BaseWindow overrides ui::ZOrderLevel GetZOrderLevel() const override; void SetZOrderLevel(ui::ZOrderLevel order) override {} // web_modal::WebContentsModalDialogManagerDelegate implementation. void SetWebContentsBlocked(content::WebContents* web_contents, bool blocked) override; bool IsWebContentsVisible(content::WebContents* web_contents) override; // Overridden from ui::AcceleratorProvider: bool GetAcceleratorForCommandId(int command_id, ui::Accelerator* accelerator) const override; ui::AcceleratorProvider* GetAcceleratorProvider(); // Overridden from ExclusiveAccessContext Profile* GetProfile() override; void EnterFullscreen(const GURL& url, ExclusiveAccessBubbleType bubble_type) override; void ExitFullscreen() override; void UpdateExclusiveAccessExitBubbleContent( const GURL& url, ExclusiveAccessBubbleType bubble_type, ExclusiveAccessBubbleHideCallback bubble_first_hide_callback, bool force_update) override; void OnExclusiveAccessUserInput() override; content::WebContents* GetActiveWebContents() override; void UnhideDownloadShelf() override; void HideDownloadShelf() override; ExclusiveAccessContext* GetExclusiveAccessContext() override; void ShowAvatarBubbleFromAvatarButton( AvatarBubbleMode mode, signin_metrics::AccessPoint access_point, bool is_source_keyboard) override {} void ShowImeWarningBubble( const extensions::Extension* extension, const base::Callback<void(ImeWarningBubblePermissionStatus status)>& callback) override {} std::string GetWorkspace() const override; bool IsVisibleOnAllWorkspaces() const override; void ResetDockingState(int tab_id); bool IsToolbarShowing() const override; void UpdateDraggableRegions( const std::vector<extensions::DraggableRegion>& regions); // If moved is true, the change is caused by a move void OnNativeWindowChanged(bool moved = false); void OnNativeClose(); void OnNativeWindowActivationChanged(bool active); void NavigationStateChanged(content::WebContents* source, content::InvalidateTypes changed_flags); // Enable or disable fullscreen mode. void SetFullscreen(bool enable); base::string16 GetTitle(); extensions::NativeAppWindow* GetBaseWindow() const; content::WebContents* GetActiveWebContents() const; // TODO(pettern): fix bool requested_alpha_enabled() { return false; } const extensions::Extension* extension() { return extension_; } bool is_hidden() { return is_hidden_; } void set_type(WindowType window_type) { window_type_ = window_type; } WindowType type() { return window_type_; } protected: void DestroyBrowser() override; void DeleteThis(); // Move pinned tabs to remaining window if we have 2 open windows and // close the one with pinned tabs. void MovePinnedTabsToOtherWindowIfNeeded(); void UpdateActivation(bool is_active); // The Browser object we are associated with. std::unique_ptr<Browser> browser_; class VivaldiManagePasswordsIconView : public ManagePasswordsIconView { public: VivaldiManagePasswordsIconView(Browser* browser); virtual ~VivaldiManagePasswordsIconView() = default; void SetState(password_manager::ui::State state) override; bool Update(); private: Browser* browser_ = nullptr; DISALLOW_COPY_AND_ASSIGN(VivaldiManagePasswordsIconView); }; private: struct WindowStateData { // State kept to dispatch events on changes. bool is_fullscreen = false; bool is_maximized = false; bool is_minimized = false; gfx::Rect bounds; }; friend class VivaldiAppWindowContentsImpl; void OnMinimizedChanged(bool minimized); void OnMaximizedChanged(bool maximized); void OnFullscreenChanged(bool fullscreen); void OnPositionChanged(); void OnActivationChanged(bool activated); // Force showing of the window, even if the document has not loaded. This // avoids situations where the document fails somehow and no window is shown. void ForceShow(); // From AppWindow: // TODO: rename VivaldiNativeAppWindowViews to VivaldiNativeAppWindow. std::unique_ptr<VivaldiNativeAppWindowViews> native_app_window_; VivaldiAppWindowContentsImpl app_window_contents_; std::unique_ptr<extensions::AppDelegate> app_delegate_; // Whether the window has been shown or not. bool has_been_shown_ = false; // Whether the window is hidden or not. Hidden in this context means actively // by the chrome.app.window API, not in an operating system context. For // example windows which are minimized are not hidden, and windows which are // part of a hidden app on OS X are not hidden. Windows which were created // with the |hidden| flag set to true, or which have been programmatically // hidden, are considered hidden. bool is_hidden_ = false; // Whether the window is active (focused) or not. bool is_active_ = false; // Return the old title if the new title is not usable. base::string16 old_title_; // The window type for this window. WindowType window_type_ = WindowType::NORMAL; // Reference to the Vivaldi extension. extensions::Extension* extension_ = nullptr; // The InfoBarContainerWebProxy that contains InfoBars for the current tab. vivaldi::InfoBarContainerWebProxy* infobar_container_ = nullptr; std::unique_ptr<VivaldiLocationBar> location_bar_; #if !defined(OS_MACOSX) // Last key code received in HandleKeyboardEvent(). For auto repeat detection. int last_key_code_ = -1; #endif // !defined(OS_MACOSX) WindowStateData window_state_data_; // Used to timeout the main document loading and force show the window. std::unique_ptr<base::OneShotTimer> show_delay_timeout_; std::unique_ptr<VivaldiManagePasswordsIconView> icon_view_; std::unique_ptr<autofill::AutofillBubbleHandler> autofill_bubble_handler_; DISALLOW_COPY_AND_ASSIGN(VivaldiBrowserWindow); }; #endif // UI_VIVALDI_BROWSER_WINDOW_H_
[ "kujuhe@gmail.com" ]
kujuhe@gmail.com
d28f04cc3c0c4cc1cc8bd922bdd87c3bd8972644
b2bcd5b0bd819bc3422b2ce401d5f5d09e715a9f
/ModelDesignAll/ModelWatch/ModelWatch/ConcreateWatched.cpp
623ce56cc72be2966484190925db614509ade422
[]
no_license
zhangbin2020/jilu
6190d5d70bb44fdd621e92b19d4c9508356407e2
e8c89571798760eb8603557d04c42fb84d48ee61
refs/heads/master
2021-01-13T13:31:48.971493
2017-06-14T09:25:14
2017-06-14T09:25:14
72,628,227
0
0
null
null
null
null
UTF-8
C++
false
false
117
cpp
#include "ConcreateWatched.h" ConcreateWatched::ConcreateWatched() { } ConcreateWatched::~ConcreateWatched() { }
[ "zhangbin7@BJXX-ZHANGBIN7.360buyAD.local" ]
zhangbin7@BJXX-ZHANGBIN7.360buyAD.local
2488c4e9315b6fe6fa587bfa4d2c6ee50ddcfcd0
a05f3e3bcc9f1161f5890f98eaf1a4a7129846ce
/LeagueMode/Library/Parse.hpp
a08e71c1ded1d7a49ac5ca56f32ff8f8452e57ae
[]
no_license
sosflyyi/laboratory
17d3d0e13a62674c244a3bcd7bdca8803fe89f32
9a3f47c99279e328d2719d21dfd13cd212fab5b6
refs/heads/master
2023-04-09T23:20:02.592346
2016-05-09T13:27:16
2016-05-09T13:27:16
null
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,610
hpp
/** * @file * @brief * * @author Takuya Shishido * @date 2010.04.13 16:00:17 * * @version 0.01, Shishido Takuya, 2010.04.13 16:00:17 * (c) 2010 Konami Digital Entertainment Co., Ltd. All Rights Reserved. */ #ifndef PARSE_H_INCLUDED #define PARSE_H_INCLUDED //----------------------------------------------------- // include //----------------------------------------------------- #include <vector> #include "D:/PersonalTool/xyzzy/laboratory/LeagueMode/Structure/ReciprocateData.h" #ifdef __cplusplus extern "C" { #endif /** * @brief LeagueMode で使う例外クラスのベースクラス * * @author Takuya Shishido * @date 2010.04.07 18:18:08 * @version 0.01, Shishido Takuya, 2010.04.07 18:18:08 */ class ParseException : public ::std::exception { public: /**---------------------------------------------------- * @brief 例外文字列の取得 * @return 文字列の先頭ポインタ *---------------------------------------------------*/ virtual const char* what() const throw(); }; // class LeagueModeException /**---------------------------------------------------- * @brief Perl 側から受け取ったデータを解析する * @param[in] reciprocateData_ Perl から受け取ったデータ * @return reciprocateData_->type 型のデータを void* に変換したもの *---------------------------------------------------*/ const void* getKeyValue(const ReciprocateData& reciprocateData_, const char* key, std::vector<int> node_ = std::vector<int>()) throw(ParseException); #ifdef __cplusplus } #endif #endif
[ "kaguya@Kaguya-no-MacBook-Air.local" ]
kaguya@Kaguya-no-MacBook-Air.local
b1f839149fbe3fa67be0bf1ecd78754b0e9375ec
2687c898e6039c5417551cf340d121ec1f57118e
/ports/klangfalter/source/Settings.cpp
479cb3ab56de9d09140315382470529ac8e4f1c7
[]
no_license
mcanthony/DISTRHO-Ports
051f0d849da9e3f66ca6afdecffac77ddfd2606a
f1b57e23b85ba8bd98f216f2cfdce4fecdb9eb16
refs/heads/master
2021-01-22T15:22:37.807561
2015-10-02T10:25:10
2015-10-02T10:25:10
44,107,739
1
0
null
2015-10-12T13:02:13
2015-10-12T13:02:13
null
UTF-8
C++
false
false
4,912
cpp
// ================================================================================== // Copyright (c) 2012 HiFi-LoFi // // This is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // ================================================================================== #include "Settings.h" Settings::Settings() : _properties() { juce::PropertiesFile::Options fileOptions; fileOptions.applicationName = "KlangFalter"; fileOptions.filenameSuffix = "settings"; #ifdef JUCE_LINUX fileOptions.folderName = ".config/KlangFalter"; #else fileOptions.folderName = "KlangFalter"; #endif fileOptions.osxLibrarySubFolder = "Application Support"; // Recommended by Apple resp. the Juce documentation fileOptions.commonToAllUsers = false; fileOptions.ignoreCaseOfKeyNames = false; fileOptions.storageFormat = juce::PropertiesFile::storeAsXML; _properties.setStorageParameters(fileOptions); } Settings::~Settings() { _properties.closeFiles(); } void Settings::addChangeListener(juce::ChangeListener* listener) { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { propertiesFile->addChangeListener(listener); } } void Settings::removeChangeListener(juce::ChangeListener* listener) { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { propertiesFile->removeChangeListener(listener); } } size_t Settings::getConvolverBlockSize() { size_t blockSize = 4096; juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { blockSize = propertiesFile->getIntValue("ConvolverBlockSize", blockSize); } return blockSize; } void Settings::setConvolverBlockSize(size_t blockSize) { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { propertiesFile->setValue("ConvolverBlockSize", static_cast<int>(blockSize)); propertiesFile->saveIfNeeded(); } } juce::File Settings::getImpulseResponseDirectory() { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { const juce::File dir = juce::File::createFileWithoutCheckingPath(propertiesFile->getValue("ImpulseResponseDirectory", juce::String())); if (dir.exists() && dir.isDirectory()) { return dir; } } return juce::File::nonexistent; } void Settings::setImpulseResponseDirectory(const juce::File& directory) { if (directory.exists() && directory.isDirectory()) { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { propertiesFile->setValue("ImpulseResponseDirectory", directory.getFullPathName()); propertiesFile->saveIfNeeded(); } } } Settings::ResultLevelMeterDisplay Settings::getResultLevelMeterDisplay() { ResultLevelMeterDisplay resultDisplay = Out; juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { const juce::String resultDisplayStr = propertiesFile->getValue("ResultLevelMeterDisplay"); resultDisplay = (resultDisplayStr == juce::String("Out")) ? Out : Wet; } return resultDisplay; } void Settings::setResultLevelMeterDisplay(ResultLevelMeterDisplay resultDisplay) { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { propertiesFile->setValue("ResultLevelMeterDisplay", (resultDisplay == Out) ? "Out" : "Wet"); propertiesFile->saveIfNeeded(); } } Settings::TimelineUnit Settings::getTimelineUnit() { TimelineUnit timelineUnit = Seconds; juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { const juce::String timelineUnitStr = propertiesFile->getValue("TimelineUnit"); timelineUnit = (timelineUnitStr == juce::String("Beats")) ? Beats : Seconds; } return timelineUnit; } void Settings::setTimelineUnit(TimelineUnit timelineUnit) { juce::PropertiesFile* propertiesFile = _properties.getUserSettings(); if (propertiesFile) { propertiesFile->setValue("TimelineUnit", (timelineUnit == Beats) ? "Beats" : "Seconds"); propertiesFile->saveIfNeeded(); } }
[ "falktx@gmail.com" ]
falktx@gmail.com
c07f7c4b4005ff38f9c36d59bf2b4b5c9501879a
beaccd4ca566e9f7f112b98dfe3e32ade0feabcc
/course code/5th sem/CG/hai/spline/clamped_bspline/main.cpp
d03afbbcdd918f5bdd3beea65f6f1b4061afe94d
[]
no_license
maddotexe/Competitive-contest-programs
83bb41521f80e2eea5c08f198aa9384cd0986cde
4bc37c5167a432c47a373c548721aedd871fc6b7
refs/heads/master
2020-04-17T08:08:43.922419
2015-03-10T19:26:55
2015-03-10T19:26:55
31,177,844
1
1
null
null
null
null
UTF-8
C++
false
false
7,089
cpp
//------------------------------------------------------------ /// \file Main.cpp /// \author Rob Bateman /// \date 9-feb-2005 /// \brief This example will demonstrate how to clamp a curve /// to it's end points. It is also the fundamental brigde /// to be able to understand how the cox-de-boor /// algorithm works. /// //------------------------------------------------------------ #include <stdlib.h> #include <GL/glut.h> //------------------------------------------------------------ // We can have any length of curve with this example so i thought // it'd be a good idea to illustrate both the bezier points from // earlier, and the nurbs CV's coming up later. // #if 1 /// the points of the curve - these are the same as the bezier curve /// points demonstrated in the bezier curve example. float Points[4][3] = { { 10,10,0 }, { 5,10,2 }, { -5,0,0 }, {-10,5,-2} }; #define NUM_POINTS 4 // The following sets of 4 indices are the curves that need to // be drawn to create a clamped cubic b-spline. In total there // are 5 curve segments to draw. // // 0 0 0 1 // 0 0 1 2 // 0 1 2 3 // 1 2 3 3 // 2 3 3 3 // // Remember this when trying to understand knot vectors!! // #else /// the points of the curve - these are the same as the bezier curve /// points demonstrated in the bezier curve example. float Points[7][3] = { { 10,10,0 }, { 5,10,2 }, { -5,5,0 }, {-10,5,-2}, {-4,10,0}, {-4,5,2}, {-8,1,0} }; #define NUM_POINTS 7 // The following sets of 4 indices are the curve segments that need to // be drawn to create a clamped cubic b-spline. In total there // are 8 curve segments to draw. // // 0 0 0 1 // 0 0 1 2 // 0 1 2 3 // 1 2 3 4 // 2 3 4 5 // 3 4 5 6 // 4 5 6 6 // 5 6 6 6 // // Remember this when trying to understand knot vectors!! // #endif // the level of detail for the curve unsigned int LOD=20; /// the number of curve segments required to make the clamped b-spline /// curve is defined by NUM_POINTS + 1 /// #define NUM_SEGMENTS (NUM_POINTS+1) //------------------------------------------------------------ GetPoint() // To handle the clamped curves i imagine the curve to have 3 // extra control points at the beginning of the curve, and 3 extra // at the end. To simply the iteration of the points, i start // the indices at -3. Obviously if i use that value as an array // index it will crash horribly. Instead i use a function that // returns either the first, or last point if the index requested // is out of range. This basically simplifies our curve calculation // greatly!! // float* GetPoint(int i) { // return 1st point if (i<0) { return Points[0]; } // return last point if (i<NUM_POINTS) return Points[i]; return Points[NUM_POINTS-1]; } //------------------------------------------------------------ OnKeyPress() // void OnKeyPress(unsigned char key,int,int) { switch(key) { // increase the LOD case '+': ++LOD; break; // decrease the LOD case '-': --LOD; // have a minimum LOD value if (LOD<2) LOD=2; break; default: break; } // ask glut to redraw the screen for us... glutPostRedisplay(); } //------------------------------------------------------------ OnDraw() // void OnDraw() { // clear the screen & depth buffer glClear(GL_COLOR_BUFFER_BIT); // clear the previous transform glLoadIdentity(); // set the camera position gluLookAt( 1,10,30, // eye pos 0,0,0, // aim point 0,1,0); // up direction glColor3f(0.5,0.2,0); glPointSize(3); // draw curve hull glColor3f(0.3,0,0.5); glBegin(GL_LINE_STRIP); for(int i=0;i!=NUM_POINTS;++i) { glVertex3fv( Points[i] ); } glEnd(); glColor3f(0,1,0); // begin drawing our curve glBegin(GL_LINE_STRIP); // in total i am going to draw (NUM_POINTS+1) curves. I will start // the curves at the imaginary index -3. Each section of the curve // will start on the next vertex index. // for(int start_cv=-3,j=0;j!=NUM_SEGMENTS;++j,++start_cv) { // for each section of curve, draw LOD number of divisions for(int i=0;i!=LOD;++i) { // use the parametric time value 0 to 1 for this curve // segment. float t = (float)i/LOD; // the t value inverted float it = 1.0f-t; // calculate blending functions for cubic bspline float b0 = it*it*it/6.0f; float b1 = (3*t*t*t - 6*t*t +4)/6.0f; float b2 = (-3*t*t*t +3*t*t + 3*t + 1)/6.0f; float b3 = t*t*t/6.0f; // calculate the x,y and z of the curve point float x = b0 * GetPoint( start_cv + 0 )[0] + b1 * GetPoint( start_cv + 1 )[0] + b2 * GetPoint( start_cv + 2 )[0] + b3 * GetPoint( start_cv + 3 )[0] ; float y = b0 * GetPoint( start_cv + 0 )[1] + b1 * GetPoint( start_cv + 1 )[1] + b2 * GetPoint( start_cv + 2 )[1] + b3 * GetPoint( start_cv + 3 )[1] ; float z = b0 * GetPoint( start_cv + 0 )[2] + b1 * GetPoint( start_cv + 1 )[2] + b2 * GetPoint( start_cv + 2 )[2] + b3 * GetPoint( start_cv + 3 )[2] ; // specify the point glVertex3f( x,y,z ); } } // we need to specify the last point on the curve glVertex3fv( Points[NUM_POINTS-1] ); glEnd(); // draw CV's glBegin(GL_POINTS); for(int i=0;i!=NUM_POINTS;++i) { glVertex3fv( Points[i] ); } glEnd(); // currently we've been drawing to the back buffer, we need // to swap the back buffer with the front one to make the image visible glutSwapBuffers(); } //------------------------------------------------------------ OnInit() // void OnInit() { } //------------------------------------------------------------ OnExit() // void OnExit() { } //------------------------------------------------------------ OnReshape() // void OnReshape(int w, int h) { // prevents division by zero when minimising window if (h==0) h=1; // set the drawable region of the window glViewport(0,0,w,h); // set up the projection matrix glMatrixMode(GL_PROJECTION); glLoadIdentity(); // just use a perspective projection gluPerspective(45,(float)w/h,0.1,100); // go back to modelview matrix so we can move the objects about glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } //------------------------------------------------------------ main() // int main(int argc,char** argv) { // initialise glut glutInit(&argc,argv); // request a depth buffer, RGBA display mode, and we want double buffering glutInitDisplayMode(GLUT_RGBA|GLUT_DOUBLE); // set the initial window size glutInitWindowSize(640,480); // create the window glutCreateWindow("Clamped B-Spline Curve: +/- to Change Level of Detail"); // set the function to use to draw our scene glutDisplayFunc(OnDraw); // set the function to handle changes in screen size glutReshapeFunc(OnReshape); // set the function for the key presses glutKeyboardFunc(OnKeyPress); // run our custom initialisation OnInit(); // set the function to be called when we exit atexit(OnExit); // this function runs a while loop to keep the program running. glutMainLoop(); return 0; }
[ "agarwal.shubham21@gmail.com" ]
agarwal.shubham21@gmail.com
5b2e55638c04523b4ce08951ce24d7d8bbf7c8ec
1a29e3fc23318be40f27339a749bbc3bdc59c0c3
/codeforces/gym/102348/b.cpp
bd7fea2f170b68520147acf49d11eddba1623b56
[]
no_license
wdzeng/cp-solutions
6c2ac554f6d291774929bc6ad612c4c2e3966c9f
8d39fcbda812a1db7e03988654cd20042cf4f854
refs/heads/master
2023-03-23T17:23:08.809526
2020-12-05T00:29:21
2020-12-05T00:29:21
177,706,525
1
0
null
null
null
null
UTF-8
C++
false
false
1,080
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; #define x first #define y second #define all(v) v.begin(), v.end() #define ms(v) memset(v, 0, sizeof(v)) #define mss(v) memset(v, -1, sizeof(v)) const int N = 2e5 + 10; vector<int> adj[N]; int col[N]; int vis[N]; vector<int> ans; int dfs(int s) { vis[s] = 1; int ret = 0; for (int a : adj[s]) { if (vis[a]) continue; ret |= dfs(a); } if (ret) ans.push_back(s); return col[s] ? 1 : ret; } int main() { cin.tie(0), ios::sync_with_stdio(0); int n, k; cin >> n >> k; while (k--) { int a; cin >> a; col[a] = 1; } for (int i = 0; i < n - 1; i++) { int a, b; cin >> a >> b; adj[a].push_back(b); adj[b].push_back(a); } int root; for (int i = 1; i <= n; i++) if (!col[i]) { root = i; break; } dfs(root); cout << ans.size() << endl; for (int a : ans) cout << a << ' '; cout << endl; return 0; }
[ "hyperbola.cs07@gmail.com" ]
hyperbola.cs07@gmail.com
cfc37e19a0fabadfd62db6eb0a3248f40b2f65fa
917a3fa0c8f8e86639f0c1aa67ac96a51499b65e
/userinterface.cpp
f138347bcf959d74dee1853596d3fdff0ba7783e
[ "MIT" ]
permissive
jholownia/QTeacher
beae673092a7d6bebc95dc048e806aa3026bb3a9
8ea656b77a72df37232f68d36c18684065df54c3
refs/heads/master
2020-12-24T06:28:56.864940
2017-04-28T16:23:08
2017-04-28T16:23:08
31,479,818
0
0
null
null
null
null
UTF-8
C++
false
false
64
cpp
#include "userinterface.h" UserInterface::UserInterface() { }
[ "jan.holownia@gmail.com" ]
jan.holownia@gmail.com
db4f2eb231414431b83814bdb71ad3ad1cadd508
9d851f5315bce6e24c8adcf6d2d2b834f288d2b2
/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/VQueueCloneTester__Trace__Slow.cpp
6c9f0d59d7d4248ad6a668de32de676aa3dee76a
[ "BSD-3-Clause" ]
permissive
ajis01/systolicMM
b9830b4b00cb7f68d49fb039a5a53c04dcaf3e60
d444d0b8cae525501911e8d3c8ad76dac7fb445c
refs/heads/master
2021-08-17T22:54:34.204694
2020-03-18T03:31:59
2020-03-18T03:31:59
247,648,431
0
1
null
2021-03-29T22:26:24
2020-03-16T08:27:34
C++
UTF-8
C++
false
false
21,874
cpp
// Verilated -*- C++ -*- // DESCRIPTION: Verilator output: Tracing implementation internals #include "verilated_vcd_c.h" #include "VQueueCloneTester__Syms.h" //====================== void VQueueCloneTester::trace (VerilatedVcdC* tfp, int, int) { tfp->spTrace()->addCallback (&VQueueCloneTester::traceInit, &VQueueCloneTester::traceFull, &VQueueCloneTester::traceChg, this); } void VQueueCloneTester::traceInit(VerilatedVcd* vcdp, void* userthis, uint32_t code) { // Callback from vcd->open() VQueueCloneTester* t=(VQueueCloneTester*)userthis; VQueueCloneTester__Syms* __restrict vlSymsp = t->__VlSymsp; // Setup global symbol table if (!Verilated::calcUnusedSigs()) VL_FATAL_MT(__FILE__,__LINE__,__FILE__,"Turning on wave traces requires Verilated::traceEverOn(true) call before time 0."); vcdp->scopeEscape(' '); t->traceInitThis (vlSymsp, vcdp, code); vcdp->scopeEscape('.'); } void VQueueCloneTester::traceFull(VerilatedVcd* vcdp, void* userthis, uint32_t code) { // Callback from vcd->dump() VQueueCloneTester* t=(VQueueCloneTester*)userthis; VQueueCloneTester__Syms* __restrict vlSymsp = t->__VlSymsp; // Setup global symbol table t->traceFullThis (vlSymsp, vcdp, code); } //====================== void VQueueCloneTester::traceInitThis(VQueueCloneTester__Syms* __restrict vlSymsp, VerilatedVcd* vcdp, uint32_t code) { VQueueCloneTester* __restrict vlTOPp VL_ATTR_UNUSED = vlSymsp->TOPp; int c=code; if (0 && vcdp && c) {} // Prevent unused vcdp->module(vlSymsp->name()); // Setup signal names // Body { vlTOPp->traceInitThis__1(vlSymsp, vcdp, code); } } void VQueueCloneTester::traceFullThis(VQueueCloneTester__Syms* __restrict vlSymsp, VerilatedVcd* vcdp, uint32_t code) { VQueueCloneTester* __restrict vlTOPp VL_ATTR_UNUSED = vlSymsp->TOPp; int c=code; if (0 && vcdp && c) {} // Prevent unused // Body { vlTOPp->traceFullThis__1(vlSymsp, vcdp, code); } // Final vlTOPp->__Vm_traceActivity = 0U; } void VQueueCloneTester::traceInitThis__1(VQueueCloneTester__Syms* __restrict vlSymsp, VerilatedVcd* vcdp, uint32_t code) { VQueueCloneTester* __restrict vlTOPp VL_ATTR_UNUSED = vlSymsp->TOPp; int c=code; if (0 && vcdp && c) {} // Prevent unused // Body { vcdp->declBit (c+11,"clock",-1); vcdp->declBit (c+12,"reset",-1); vcdp->declBit (c+11,"QueueCloneTester clock",-1); vcdp->declBit (c+12,"QueueCloneTester reset",-1); vcdp->declBit (c+11,"QueueCloneTester dut_clock",-1); vcdp->declBit (c+12,"QueueCloneTester dut_reset",-1); vcdp->declBit (c+1,"QueueCloneTester dut_io_enq_ready",-1); vcdp->declBit (c+5,"QueueCloneTester dut_io_enq_valid",-1); vcdp->declBit (c+6,"QueueCloneTester dut_io_deq_ready",-1); vcdp->declBit (c+2,"QueueCloneTester dut_io_deq_valid",-1); vcdp->declBus (c+7,"QueueCloneTester dut_io_deq_bits",-1,31,0); // Tracing: QueueCloneTester _T // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:198 vcdp->declBit (c+5,"QueueCloneTester start",-1); // Tracing: QueueCloneTester _RAND_0 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:200 vcdp->declBit (c+6,"QueueCloneTester accept",-1); // Tracing: QueueCloneTester _RAND_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:202 // Tracing: QueueCloneTester _T_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:203 // Tracing: QueueCloneTester _T_2 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:204 // Tracing: QueueCloneTester _T_4 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:205 // Tracing: QueueCloneTester _T_5 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:206 // Tracing: QueueCloneTester _T_7 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:207 vcdp->declBit (c+11,"QueueCloneTester dut clock",-1); vcdp->declBit (c+12,"QueueCloneTester dut reset",-1); vcdp->declBit (c+1,"QueueCloneTester dut io_enq_ready",-1); vcdp->declBit (c+5,"QueueCloneTester dut io_enq_valid",-1); vcdp->declBit (c+6,"QueueCloneTester dut io_deq_ready",-1); vcdp->declBit (c+2,"QueueCloneTester dut io_deq_valid",-1); vcdp->declBus (c+7,"QueueCloneTester dut io_deq_bits",-1,31,0); vcdp->declBit (c+11,"QueueCloneTester dut Queue_clock",-1); vcdp->declBit (c+12,"QueueCloneTester dut Queue_reset",-1); vcdp->declBit (c+1,"QueueCloneTester dut Queue_io_enq_ready",-1); vcdp->declBit (c+5,"QueueCloneTester dut Queue_io_enq_valid",-1); vcdp->declBus (c+13,"QueueCloneTester dut Queue_io_enq_bits",-1,31,0); vcdp->declBit (c+3,"QueueCloneTester dut Queue_io_deq_ready",-1); vcdp->declBit (c+4,"QueueCloneTester dut Queue_io_deq_valid",-1); vcdp->declBus (c+8,"QueueCloneTester dut Queue_io_deq_bits",-1,31,0); // Tracing: QueueCloneTester dut _T_clock // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:145 // Tracing: QueueCloneTester dut _T_reset // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:146 // Tracing: QueueCloneTester dut _T_io_enq_ready // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:147 // Tracing: QueueCloneTester dut _T_io_enq_valid // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:148 // Tracing: QueueCloneTester dut _T_io_enq_bits // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:149 // Tracing: QueueCloneTester dut _T_io_deq_ready // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:150 // Tracing: QueueCloneTester dut _T_io_deq_valid // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:151 // Tracing: QueueCloneTester dut _T_io_deq_bits // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:152 vcdp->declBit (c+11,"QueueCloneTester dut Queue clock",-1); vcdp->declBit (c+12,"QueueCloneTester dut Queue reset",-1); vcdp->declBit (c+1,"QueueCloneTester dut Queue io_enq_ready",-1); vcdp->declBit (c+5,"QueueCloneTester dut Queue io_enq_valid",-1); vcdp->declBus (c+13,"QueueCloneTester dut Queue io_enq_bits",-1,31,0); vcdp->declBit (c+3,"QueueCloneTester dut Queue io_deq_ready",-1); vcdp->declBit (c+4,"QueueCloneTester dut Queue io_deq_valid",-1); vcdp->declBus (c+8,"QueueCloneTester dut Queue io_deq_bits",-1,31,0); // Tracing: QueueCloneTester dut Queue _T // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:11 // Tracing: QueueCloneTester dut Queue _RAND_0 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:12 // Tracing: QueueCloneTester dut Queue _T__T_18_data // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:13 // Tracing: QueueCloneTester dut Queue _T__T_18_addr // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:14 // Tracing: QueueCloneTester dut Queue _T__T_10_data // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:15 // Tracing: QueueCloneTester dut Queue _T__T_10_addr // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:16 // Tracing: QueueCloneTester dut Queue _T__T_10_mask // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:17 // Tracing: QueueCloneTester dut Queue _T__T_10_en // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:18 vcdp->declBit (c+9,"QueueCloneTester dut Queue value",-1); // Tracing: QueueCloneTester dut Queue _RAND_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:20 vcdp->declBit (c+10,"QueueCloneTester dut Queue value_1",-1); // Tracing: QueueCloneTester dut Queue _RAND_2 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:22 // Tracing: QueueCloneTester dut Queue _T_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:23 // Tracing: QueueCloneTester dut Queue _RAND_3 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:24 // Tracing: QueueCloneTester dut Queue _T_2 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:25 // Tracing: QueueCloneTester dut Queue _T_3 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:26 // Tracing: QueueCloneTester dut Queue _T_4 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:27 // Tracing: QueueCloneTester dut Queue _T_5 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:28 // Tracing: QueueCloneTester dut Queue _T_6 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:29 // Tracing: QueueCloneTester dut Queue _T_8 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:30 // Tracing: QueueCloneTester dut Queue _T_12 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:31 // Tracing: QueueCloneTester dut Queue _T_14 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:32 // Tracing: QueueCloneTester dut Queue _T_15 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:33 // Tracing: QueueCloneTester dut _T clock // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:2 // Tracing: QueueCloneTester dut _T reset // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:3 // Tracing: QueueCloneTester dut _T io_enq_ready // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:4 // Tracing: QueueCloneTester dut _T io_enq_valid // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:5 // Tracing: QueueCloneTester dut _T io_enq_bits // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:6 // Tracing: QueueCloneTester dut _T io_deq_ready // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:7 // Tracing: QueueCloneTester dut _T io_deq_valid // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:8 // Tracing: QueueCloneTester dut _T io_deq_bits // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:9 // Tracing: QueueCloneTester dut _T _T // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:11 // Tracing: QueueCloneTester dut _T _RAND_0 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:12 // Tracing: QueueCloneTester dut _T _T__T_18_data // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:13 // Tracing: QueueCloneTester dut _T _T__T_18_addr // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:14 // Tracing: QueueCloneTester dut _T _T__T_10_data // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:15 // Tracing: QueueCloneTester dut _T _T__T_10_addr // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:16 // Tracing: QueueCloneTester dut _T _T__T_10_mask // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:17 // Tracing: QueueCloneTester dut _T _T__T_10_en // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:18 // Tracing: QueueCloneTester dut _T value // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:19 // Tracing: QueueCloneTester dut _T _RAND_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:20 // Tracing: QueueCloneTester dut _T value_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:21 // Tracing: QueueCloneTester dut _T _RAND_2 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:22 // Tracing: QueueCloneTester dut _T _T_1 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:23 // Tracing: QueueCloneTester dut _T _RAND_3 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:24 // Tracing: QueueCloneTester dut _T _T_2 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:25 // Tracing: QueueCloneTester dut _T _T_3 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:26 // Tracing: QueueCloneTester dut _T _T_4 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:27 // Tracing: QueueCloneTester dut _T _T_5 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:28 // Tracing: QueueCloneTester dut _T _T_6 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:29 // Tracing: QueueCloneTester dut _T _T_8 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:30 // Tracing: QueueCloneTester dut _T _T_12 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:31 // Tracing: QueueCloneTester dut _T _T_14 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:32 // Tracing: QueueCloneTester dut _T _T_15 // Ignored: Inlined leading underscore at /home/ajis01/scratch/CS252A_Project/chipyard/tools/chisel3/test_run_dir/QueueCloneTester/202003062135265340303674098120120/QueueCloneTester.v:33 } } void VQueueCloneTester::traceFullThis__1(VQueueCloneTester__Syms* __restrict vlSymsp, VerilatedVcd* vcdp, uint32_t code) { VQueueCloneTester* __restrict vlTOPp VL_ATTR_UNUSED = vlSymsp->TOPp; int c=code; if (0 && vcdp && c) {} // Prevent unused // Body { vcdp->fullBit (c+1,((1U & (~ (IData)(vlTOPp->QueueCloneTester__DOT__dut__DOT__Queue__DOT___T_5))))); vcdp->fullBit (c+2,((1U & (~ (IData)(vlTOPp->QueueCloneTester__DOT__dut__DOT___T__DOT___T_4))))); vcdp->fullBit (c+3,((1U & (~ (IData)(vlTOPp->QueueCloneTester__DOT__dut__DOT___T__DOT___T_5))))); vcdp->fullBit (c+4,((1U & (~ (IData)(vlTOPp->QueueCloneTester__DOT__dut__DOT__Queue__DOT___T_4))))); vcdp->fullBit (c+5,(vlTOPp->QueueCloneTester__DOT__start)); vcdp->fullBit (c+6,(vlTOPp->QueueCloneTester__DOT__accept)); vcdp->fullBus (c+7,(vlTOPp->QueueCloneTester__DOT__dut__DOT___T__DOT___T [vlTOPp->QueueCloneTester__DOT__dut__DOT___T__DOT__value_1]),32); vcdp->fullBus (c+8,(vlTOPp->QueueCloneTester__DOT__dut__DOT__Queue__DOT___T [vlTOPp->QueueCloneTester__DOT__dut__DOT__Queue__DOT__value_1]),32); vcdp->fullBit (c+9,(vlTOPp->QueueCloneTester__DOT__dut__DOT__Queue__DOT__value)); vcdp->fullBit (c+10,(vlTOPp->QueueCloneTester__DOT__dut__DOT__Queue__DOT__value_1)); vcdp->fullBit (c+11,(vlTOPp->clock)); vcdp->fullBit (c+12,(vlTOPp->reset)); vcdp->fullBus (c+13,(0x2aU),32); } }
[ "ajithkumar.sreekumar94@gmail.com" ]
ajithkumar.sreekumar94@gmail.com
decabf7d205c282dee48958890326449b2dc8492
2e9dbb0172c83c4846531203d60de2f7cddab520
/test_123003/PointcloudProcess.cpp
31ee1dd9fb2459c03bfea8966910a4ca9805091e
[]
no_license
zhitaohu/structured_light_reconstructe
561e024a20bcbb202379b697346e28f5d5b5bced
54b0d30ca4f5ec4967162c8adbe72bf4193e13fc
refs/heads/master
2022-04-02T11:49:54.486862
2020-01-18T08:03:55
2020-01-18T08:03:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,054
cpp
#include "PointcloudProcess.h" const char* pnts3D_pcdfilename = "../result/points3d.pcd"; const char* pnts3D_filtered_pcdfilename = "../result/points3d_filtered.pcd"; void savepointcloud(cv::Mat& pnts) { pcl::PointCloud<pcl::PointXYZ> cloud; cv::Mat filterpnts3D(2000, 2000, CV_32FC1); cloud.width = pnts.cols; cloud.height = 1; cloud.points.resize(cloud.width * cloud.height); float *pnts3D_row1 = pnts.ptr<float>(0); float *pnts3D_row2 = pnts.ptr<float>(1); float *pnts3D_row3 = pnts.ptr<float>(2); float *pnts3D_row4 = pnts.ptr<float>(3); for(int i = 0; i < pnts.cols; i++) { float pnts3D_data4 = *(pnts3D_row4 + i); float pnts3D_data1 = *(pnts3D_row1 + i) / pnts3D_data4; float pnts3D_data2 = *(pnts3D_row2 + i) / pnts3D_data4; float pnts3D_data3 = *(pnts3D_row3 + i) / pnts3D_data4; // pnts3D_data3 = 1400; // std::cout << "cloud.points.size = " << cloud.points.size() <<endl; // filterpnts3D.at<float>(i/2000, i%2000) = pnts3D_data3/1000.0f; if(i < cloud.points.size()) { //cloud.points[i].x = pnts3D_data1/1000.0f; //cloud.points[i].y = pnts3D_data2/1000.0f; //cloud.points[i].z = pnts3D_data3/1000.0f; cloud.points[i].x = pnts3D_data1/1000.0f; cloud.points[i].y = pnts3D_data2/1000.0f; cloud.points[i].z = pnts3D_data3/1000.0f; } } // cv::medianBlur(filterpnts3D, filterpnts3D, 3); // for(int i=0; i < cloud.points.size(); i++) // { // cloud.points[i].z = filterpnts3D.at<float>(i/2000, i%2000); // } pcl::io::savePCDFileASCII(pnts3D_pcdfilename, cloud); #if 0 pcl::PointCloud<pcl::PointXYZ>::Ptr viewcloud; pcl::io::loadPCDFile<pcl::PointXYZ>(pnts3D_pcdfilename, *viewcloud); pcl::visualization::CloudViewer viewer("viewer"); viewer.showCloud(viewcloud); while(!viewer.wasStopped()); #endif } void filterpointcloud(void) { pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_filtered(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_res(new pcl::PointCloud<pcl::PointXYZ>); pcl::PCDReader reader; reader.read(pnts3D_pcdfilename, *cloud); std::cout << "Pointcloud before filtering: " << cloud->width*cloud->height << "data points" <<endl; #if 0 /**********************VoxelGrid************************************/ pcl::VoxelGrid< pcl::PointXYZ > sor; sor.setInputCloud(cloud); sor.setLeafSize(0.0008f, 0.0008f, 0.0015f); sor.filter(*cloud_filtered); std::cout << "Pointcloud after filtering: " << cloud_filtered->width*cloud_filtered->height << "data points" <<endl; pcl::PCDWriter writer; writer.write(pnts3D_filtered_pcdfilename, *cloud_filtered); #endif /****************************Radius filter*************************/ pcl::RadiusOutlierRemoval<pcl::PointXYZ> outrem; outrem.setInputCloud(cloud); outrem.setRadiusSearch(0.01); outrem.setMinNeighborsInRadius(30);//30 outrem.filter(*cloud_filtered); std::cout << "Pointcloud after filtering: " << cloud_filtered->width*cloud_filtered->height << "data points" <<endl; pcl::io::savePCDFileASCII("../result/points3d_res.pcd", *cloud_filtered); } // 泊松重建 void poissonreconstruction(void) { pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ>::Ptr mls_cloud(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_filtered(new pcl::PointCloud<pcl::PointXYZ>); pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_passfilter(new pcl::PointCloud<pcl::PointXYZ>); pcl::PCDReader reader; reader.read(pnts3D_pcdfilename, *cloud); /**********************mls移动最小二乘滤波*****************************************************/ pcl::search::KdTree<pcl::PointXYZ>::Ptr tree_mls(new pcl::search::KdTree<pcl::PointXYZ>); pcl::PointCloud<pcl::PointNormal> mls_points; pcl::MovingLeastSquares<pcl::PointXYZ, pcl::PointNormal> mls; mls.setComputeNormals(true); mls.setInputCloud(cloud); mls.setSearchMethod(tree_mls); mls.setSearchRadius(0.003); mls.process(mls_points); pcl::io::savePCDFileASCII("../result/points3d_res.pcd", mls_points); reader.read("../result/points3d_res.pcd", *mls_cloud); cout << "===> " << mls_cloud->points.size() << endl; /***************************fliter********************************/ #if 0 //直通滤波 pcl::PassThrough<pcl::PointXYZ> pass; pass.setInputCloud(mls_cloud); pass.setFilterFieldName("z"); pass.setFilterLimits(1.45,1.9); pass.setFilterLimitsNegative(false); pass.filter(*cloud_passfilter); #endif cout << "===> " << cloud_passfilter->points.size() << endl; #if 0 //半径滤波 pcl::RadiusOutlierRemoval<pcl::PointXYZ> outrem; outrem.setInputCloud(cloud_passfilter); outrem.setRadiusSearch(0.01); outrem.setMinNeighborsInRadius(30); outrem.filter(*cloud_filtered); #endif cout << "===> " << cloud_filtered->points.size() << endl; /*******************************mls***************************************/ pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> n; pcl::PointCloud<pcl::Normal>::Ptr normals(new pcl::PointCloud<pcl::Normal>); pcl::search::KdTree<pcl::PointXYZ>::Ptr tree(new pcl::search::KdTree<pcl::PointXYZ>); //tree->setInputCloud(cloud_filtered); //n.setInputCloud(cloud_filtered); tree->setInputCloud(mls_cloud); n.setInputCloud(mls_cloud); n.setSearchMethod(tree); n.setKSearch(20); n.compute(*normals); pcl::PointCloud<pcl::PointNormal>::Ptr cloud_with_normals(new pcl::PointCloud<pcl::PointNormal>); //pcl::concatenateFields(*cloud_filtered, *normals, *cloud_with_normals); pcl::concatenateFields(*mls_cloud, *normals, *cloud_with_normals); pcl::search::KdTree<pcl::PointNormal>::Ptr tree2(new pcl::search::KdTree<pcl::PointNormal>); tree2->setInputCloud(cloud_with_normals); /**********************poisson reconstruction***********************/ pcl::Poisson<pcl::PointNormal> poisson; poisson.setConfidence(false); poisson.setDegree(2); poisson.setDepth(8); poisson.setIsoDivide(8); poisson.setManifold(true); poisson.setOutputPolygons(true); poisson.setSamplesPerNode(3.0); poisson.setScale(1.25); poisson.setSolverDivide(8); poisson.setSearchMethod(tree2); poisson.setInputCloud(cloud_with_normals); pcl::PolygonMesh mesh; poisson.performReconstruction(mesh); boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer(new pcl::visualization::PCLVisualizer("3D viewer")); viewer->setBackgroundColor(0,0,0); viewer->addPolygonMesh(mesh, "mesh"); // viewer->setRepresentationToPointsForAllActors(); // 以点的形式显示 viewer->setRepresentationToSurfaceForAllActors(); //以面的形式显示 // viewer->setRepresentationToWireframeForAllActors(); // 以网格的形式显示 viewer->addCoordinateSystem(0.0); viewer->initCameraParameters(); while(!viewer->wasStopped()) { viewer->spinOnce(100); } }
[ "754037927@qq.com" ]
754037927@qq.com
b84f84a504fff4d27df5390e5dbce3ccc0fe21b0
5da8d1499a8b407f7e969344edbaabb97d24d60e
/source/supreme/theater.cpp
ddd4e11501edf10ab788dd9242c7f6470658d62d
[ "MIT" ]
permissive
Hypexion/HamSandwich
1f0f0ee870669f730482d387b245d37cce88dde3
d14ad1e1b822ba936ea7edb8de4c8044fbe39001
refs/heads/master
2022-06-13T06:06:44.882717
2022-05-29T06:42:14
2022-05-29T06:42:14
189,471,423
0
0
MIT
2019-05-30T19:34:12
2019-05-30T19:34:12
null
UTF-8
C++
false
false
4,657
cpp
#include "theater.h" #include "sound.h" #include "display.h" #include "game.h" #include "dialogbits.h" #include "goal.h" typedef struct movie_t { char title[32]; char filename[16]; word sound; } movie_t; movie_t movie[32]={ {"Asylum Welcome Mat","asylumys.flc",SND_TZONE}, {"Asylum Unwelcome Mat","asylumno.flc",SND_TZONE}, {"Super Duper Zombie Defeated","asylum.flc",SND_VICTORY}, {"The Thing Defeated","caverns.flc",SND_VICTORY}, {"Sphinxter Defeated","desert.flc",SND_VICTORY}, {"Matilda Defeated","forest.flc",SND_VICTORY}, {"Yetis Defeated","icymount.flc",SND_VICTORY}, {"Kongor Defeated","island.flc",SND_VICTORY}, {"Countess Defeated","mansion.flc",SND_VICTORY}, {"Loonybot Defeated","station.flc",SND_VICTORY}, {"A Change For The Worse","transfrm.flc",SND_TZONE}, {"Bunny The Vampire Slayer Title","buntitl2.flc",SND_BUNNYTHEME}, {"Bunny The Vampire Slayer End","bunnyend.flc",SND_BUNNYTHEME}, {"Happy Halloween!","hallow.flc",SND_HAPPYWEEN}, {"Fall Of The House Of Mushroom","mushbomb.flc",SND_MARKMOVIE}, {"Marshmallow Head","marshmallow.flc",SND_HAMUMU}, {"Hungry No More!","statue.flc",SND_VICTORY}, {"Exit Theater","!",0}, }; static byte cursor,numMovies; static sprite_set_t *bestSpr; static int msx,msy,oldmsx,oldmsy; static int msBright,msDBright; static byte *backgd; void InitTheater(MGLDraw *mgl) { int i; msBright=0; msDBright=1; mgl->LoadBMP("graphics/profmenu.bmp"); backgd=(byte *)malloc(640*480); for(i=0;i<480;i++) memcpy(&backgd[i*640],&mgl->GetScreen()[i*mgl->GetWidth()],640); cursor=0; for(i=0;i<32;i++) if(movie[i].filename[0]=='!') { numMovies=i; break; } bestSpr=new sprite_set_t("graphics/pause.jsp"); GetTaps(); GetArrowTaps(); mgl->LastKeyPressed(); mgl->GetMouse(&oldmsx,&oldmsy); mgl->MouseTap(); if(profile.progress.movie[0]) profile.progress.movie[1]=1; SaveProfile(); GoalPurchase(); } void ExitTheater(void) { free(backgd); delete bestSpr; } byte AllMoviesSeen(void) { int i; for(i=0;i<32;i++) { if(movie[i].filename[0]=='!') return 1; if(!profile.progress.movie[i]) return 0; } return 1; } TASK(byte) UpdateTheater(int *lastTime,MGLDraw *mgl) { byte c; if(*lastTime>TIME_PER_FRAME*5) *lastTime=TIME_PER_FRAME*5; while(*lastTime>=TIME_PER_FRAME) { mgl->Process(); msBright+=msDBright; if(msBright>10) msDBright=-1; if(msBright<-2) msDBright=1; *lastTime-=TIME_PER_FRAME; } mgl->GetMouse(&msx,&msy); if(mgl->LastKeyPressed()==27) CO_RETURN 1; c=GetTaps()|GetArrowTaps(); if(c&CONTROL_UP) { cursor--; if(cursor>numMovies) cursor=numMovies; } if(c&CONTROL_DN) { cursor++; if(cursor>numMovies) cursor=0; } if(mgl->MouseTap() || (c&CONTROL_B1)) { if(cursor==numMovies) CO_RETURN 1; else if(profile.progress.movie[cursor]) { MakeNormalSound(movie[cursor].sound); AWAIT ShowImageOrFlic(movie[cursor].filename,1,0); JamulSoundPurge(); } else MakeNormalSound(SND_TURRETBZZT); } CO_RETURN 0; } void RenderTheater(MGLDraw *mgl) { int i; int x,y; char txt[32]; int msx2,msy2; for(i=0;i<480;i++) memcpy(&GetDisplayMGL()->GetScreen()[i*GetDisplayMGL()->GetWidth()],&backgd[i*640],640); x=21; y=21; PrintGlow(288,21,"Welcome to SpisMall Unoplex Theaters!",0,2); PrintGlow(288,51,"Select a film, get some popcorn, and enjoy!",0,2); for(i=0;i<numMovies+1;i++) { if(oldmsx!=msx || oldmsy!=msy) { if(PointInRect(msx,msy,x,y,x+260,y+18)) cursor=i; } if(cursor==i) { mgl->FillBox(x,y,x+260,y+18,32*1+8); mgl->Box(x,y,x+260,y+18,31); mgl->Box(x-1,y-1,x+261,y+19,31); } else mgl->Box(x,y,x+260,y+18,32*1+16); if(profile.progress.movie[i] || i==numMovies) strcpy(txt,movie[i].title); else strcpy(txt,"? ? ? ? ? ?"); PrintGlowLimited(x+2,y+2,x+258,txt,0,2); y+=21; if(movie[i].filename[0]=='!') break; } SetSpriteConstraints(13,13,627,467); msx2=msx; msy2=msy; if(msx2<13) msx2=13; if(msy2<13) msy2=13; if(msx2>622) msx2=622; if(msy2>462) msy2=462; bestSpr->GetSprite(0)->DrawBright(msx2,msy2,mgl,msBright/2); SetSpriteConstraints(0,0,639,479); oldmsx=msx; oldmsy=msy; } TASK(void) Theater(MGLDraw *mgl) { byte done=0; int lastTime=1; InitTheater(mgl); GetTaps(); while(!done) { lastTime+=TimeLength(); StartClock(); done=AWAIT UpdateTheater(&lastTime,mgl); RenderTheater(mgl); AWAIT mgl->Flip(); if(!mgl->Process()) done=1; EndClock(); } ExitTheater(); } void SeeMovie(char *fname) { int i; char tmp[32]; strcpy(tmp,fname); //_strlwr(tmp); for(i=0;i<32;i++) { if(!strcasecmp(movie[i].filename,tmp)) profile.progress.movie[i]=1; } }
[ "tad@platymuus.com" ]
tad@platymuus.com
c367dc5f909b92a1a06e29a73d630fd45307b2e7
eb70e099057345f71fc3dc5c73bab3922a67e439
/include/benlib/container_algo.hpp
e604831540e1473cd17761a2711cb0cec37398c3
[]
no_license
blindley/benlib
5a6410dccb2c4c041f23605ffc433eda29f26ff9
348c53b62208235b2c07362a63f7d5f99fd3d28b
refs/heads/master
2021-01-22T01:54:44.428462
2013-03-11T17:02:00
2013-03-11T17:02:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,704
hpp
#ifndef BEN_CONTAINER_ALGO_844 #define BEN_CONTAINER_ALGO_844 #include <algorithm> #include <numeric> #include <iterator> namespace ben { template<typename C, typename T> void RemoveAndErase(C & cont, const T & val) { auto new_end = std::remove(std::begin(cont), std::end(cont), val); cont.erase(new_end, std::end(cont)); } template<typename C, typename P> void RemoveAndEraseIf(C & cont, P pred) { auto new_end = std::remove_if(std::begin(cont), std::end(cont), pred); cont.erase(new_end, std::end(cont)); } template<typename C, typename F> void TransformSelf(C & cont, F func) { std::transform( std::begin(cont), std::end(cont), std::begin(cont), func); } template<typename C> void Reverse(C & cont) { std::reverse(std::begin(cont), std::end(cont)); } template<typename C, typename T> void Iota(C & cont, T init) { std::iota(std::begin(cont), std::end(cont), init); } template<typename C> void Shuffle(C & cont) { std::random_shuffle(std::begin(cont), std::end(cont)); } template<typename C> void Sort(C & cont) { std::sort(std::begin(cont), std::end(cont)); } template<typename C, typename P> void Sort(C & cont, P pred) { std::sort(std::begin(cont), std::end(cont), pred); } template<typename C1, typename C2> void Append(C1 & dest, const C2 & src) { dest.insert(std::begin(dest), std::begin(src), std::end(src)); } template<typename C> void Unique(C & cont) { auto new_end = std::unique(std::begin(cont), std::end(cont)); cont.erase(new_end, std::end(cont)); } template<typename C, typename T> auto Accumulate(const C & cont, T init) -> decltype(std::accumulate( std::begin(cont), std::end(cont), init)) { return std::accumulate(std::begin(cont), std::end(cont), init); } template<typename C, typename T, typename P> auto Accumulate(const C & cont, T init, P pred) -> decltype(std::accumulate( std::begin(cont), std::end(cont), init, pred)) { return std::accumulate( std::begin(cont), std::end(cont), init, pred); } template<typename C, typename F> void ForEach(C & cont, F func) { std::for_each(std::begin(cont), std::end(cont), func); } template<typename C, typename F> void Generate(C & cont, F gen) { std::generate(std::begin(cont), std::end(cont), gen); } template<typename C, typename T> unsigned int Count(const C & cont, const T & value) { return std::count(std::begin(cont), std::end(cont), value); } template<typename C, typename P> unsigned int CountIf(const C & cont, P pred) { return std::count_if(std::begin(cont), std::end(cont), pred); } } #endif // #ifndef BEN_CONTAINER_ALGO_844
[ "benjameslindley@gmail.com" ]
benjameslindley@gmail.com
61e46e4d6f05d084a9e56bb01b502ceb98571176
2e596e73f04389732bc864343f52f552d04a68aa
/moisture_sensor_3_sensors.ino
1c90f65e2390657b02a2bbdd32aecf8a1d8bc339
[]
no_license
mark-ross/Plant-Saver
6ed16d21a5266d9ec1d716da2cacd04a4255b498
7d7c37cb3fa9b6701c85ee323fe52ac5946bdd9b
refs/heads/master
2021-01-10T07:17:02.846695
2015-10-29T20:16:51
2015-10-29T20:16:51
45,208,044
0
0
null
null
null
null
UTF-8
C++
false
false
1,672
ino
// **** INCLUDES ***** #include "LowPower.h" #include <Adafruit_NeoPixel.h> #define PIN 4 #define N_LEDS 1 Adafruit_NeoPixel strip = Adafruit_NeoPixel (N_LEDS, PIN, NEO_GRB + NEO_KHZ800); int m1 = A4; int m2 = A1; int m3 = A2; int led = 13; int pump = 2; void setup() { // put your setup code here, to run once: pinMode(m1,INPUT); pinMode(m2,INPUT); pinMode(m3,INPUT); pinMode(led,OUTPUT); pinMode(pump,OUTPUT); Serial.begin(9600); strip.begin(); } int check_sensor(int m){ int r1 = analogRead(m); delay(50); int r2 = analogRead(m); delay(50); int r3 = analogRead(m); delay(50); int avg = ((r1+r2+r3)/3); Serial.print("sensor "); Serial.print(m); Serial.print(" average is "); Serial.println(avg); return avg; } bool average_all(){ int s1 = check_sensor(m1); int s2 = check_sensor(m2); int s3 = check_sensor(m3); int avg = ((s1+s2+s3)/3); if (avg < 250) { strip.setPixelColor(0, strip.Color(255,0,0)); strip.show(); //turn on the motor turn_on_motor(); delay(60000); turn_off_motor(); } else if(avg > 650) { strip.setPixelColor(0, strip.Color(0,0,255)); strip.show(); } else { strip.setPixelColor(0, strip.Color(0,255,0)); strip.show(); } } void turn_on_motor(){ digitalWrite(pump,HIGH); } void turn_off_motor(){ digitalWrite(pump,LOW); } void loop() { // Enter power down state for 8 s with ADC and BOD module disabled LowPower.powerDown(SLEEP_8S, ADC_OFF, BOD_OFF); // Do something here // Example: Read sensor, data logging, data transmission. average_all(); }
[ "Mark@Mark-PC.berea.edu" ]
Mark@Mark-PC.berea.edu
4f63eb3797fb21a07125a87a10c2ca5f2218b08f
34591803cc990e0b90ba6edf4ffe7d87513f9dda
/LCDConsole.h
e330cffe501e341c7399eab4ac17ccb8ce63a0ec
[]
no_license
caoyuan96421/PushToGo-F429
2c4baba1cd591e0cdaa214aedfd2dcebd2c62887
f3d2b064c1e34fac4dec2049cb3079c0cf44e28d
refs/heads/master
2021-01-24T00:43:13.919220
2018-08-12T21:16:02
2018-08-12T21:16:02
122,775,446
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,690
h
/* * LCDStreamHandle.h * * Created on: 2018Äê2ÔÂ25ÈÕ * Author: caoyuan9642 */ #ifndef LCDCONSOLE_H_ #define LCDSTREAMHANDLE_H_ #include "mbed.h" #include "LCD_DISCO_F429ZI.h" class LCDConsole: public FileLike { protected: static int* buffer; // The first 3 byets of each int contain its color, and last byte contain the content static int *head, *tail; static Mutex mutex; static LCD_DISCO_F429ZI lcd; static Thread thread; static bool inited; static int x0, y0, width, height; static int textwidth, textheight, buffersize; static Semaphore sem_update; uint32_t color; static void task_thread(); public: static void init(int x0, int y0, int width, int height); /** Redirects the stdout the stderr * @param tolcd If true, stdout and stderr will be redirected to the console. * If false, it will be redirected back to serial */ static void redirect(bool tolcd); static LCD_DISCO_F429ZI &getLCD() { return lcd; } // Can initialize multiple instances LCDConsole(const char *name, uint32_t color); virtual ~LCDConsole() { } /** Read the contents of a file into a buffer * * Devices acting as FileHandles should follow POSIX semantics: * * * if no data is available, and non-blocking set return -EAGAIN * * if no data is available, and blocking set, wait until some data is available * * If any data is available, call returns immediately * * @param buffer The buffer to read in to * @param size The number of bytes to read * @return The number of bytes read, 0 at end of file, negative error on failure */ virtual ssize_t read(void *buffer, size_t size); /** Write the contents of a buffer to a file * * Devices acting as FileHandles should follow POSIX semantics: * * * if blocking, block until all data is written * * if no data can be written, and non-blocking set, return -EAGAIN * * if some data can be written, and non-blocking set, write partial * * @param buffer The buffer to write from * @param size The number of bytes to write * @return The number of bytes written, negative error on failure */ virtual ssize_t write(const void *buffer, size_t size); /** Move the file position to a given offset from from a given location * * @param offset The offset from whence to move to * @param whence The start of where to seek * SEEK_SET to start from beginning of file, * SEEK_CUR to start from current position in file, * SEEK_END to start from end of file * @return The new offset of the file, negative error code on failure */ virtual off_t seek(off_t offset, int whence = SEEK_SET); /** Close a file * * @return 0 on success, negative error code on failure */ virtual int close(); /** Check for poll event flags * The input parameter can be used or ignored - the could always return all events, * or could check just the events listed in events. * Call is non-blocking - returns instantaneous state of events. * Whenever an event occurs, the derived class should call the sigio() callback). * * @param events bitmask of poll events we're interested in - POLLIN/POLLOUT etc. * * @returns bitmask of poll events that have occurred. */ virtual short poll(short events) const { // Possible default for real files return POLLOUT; } /** Check if the file in an interactive terminal device * * @return True if the file is a terminal * @return False if the file is not a terminal * @return Negative error code on failure */ virtual int isatty() { return true; } }; #endif /* LCDCONSOLE_H_ */
[ "caoyuan96421@gmail.com" ]
caoyuan96421@gmail.com
4e5f02391e372d61549d28dded23653836592e3c
35103921573291fe901259875de6c017b926b1a0
/competitions/codeforces/round54/meme_problem.cpp
9912507c514deda989fa586ed8c7e091f1de7968
[]
no_license
atlekbai/algorithms
23f6caf30428d6928e2ca71930ccd10d8a3f20cc
181b99752150a465c2afd0efc433b0ca115e8651
refs/heads/master
2020-04-07T21:44:54.744084
2019-03-01T15:03:08
2019-03-01T15:03:08
158,739,338
3
0
null
null
null
null
UTF-8
C++
false
false
1,629
cpp
// ************************************************************************** // // // // ::: :::::::: // // meme_problem.cpp :+: :+: :+: // // +:+ +:+ +:+ // // By: atlekbai <atlekbai@student.unit.ua> +#+ +:+ +#+ // // +#+#+#+#+#+ +#+ // // Created: 2018/11/12 17:56:46 by atlekbai #+# #+# // // Updated: 2018/11/12 18:17:07 by atlekbai ### ########.fr // // // // ************************************************************************** // #include <iostream> #include <math.h> #include <iomanip> int solve(double d, std::pair<double, double> &res) { double des = (d * d) - 4 * d; // std::cout << des << std::endl; if (des < 0) return (0); else if (des > 0) { double x1 = (d + sqrt(des)) / 2; double x2 = (d - sqrt(des)) / 2; res = std::make_pair(x1, x2); return (1); } double x = d / 2; res = std::make_pair(x, x); return (1); } int main(void) { int n; int d; int s; std::pair<double, double> res; std::cin >> n; for (int i = 0; i < n; i++) { std::cin >> d; s = solve(d, res); if (s == 0) std::cout << "N" << std::endl; else std::cout << "Y " << std::setprecision(13) << res.first << " " << res.second << std::endl; } return (0); }
[ "tlekbalkai@gmail.com" ]
tlekbalkai@gmail.com
8b8e7d3c25ecf6fc6fd1213eee696c1b862d15a1
711f9c743c8eddbe018decfcf4f27acebe641294
/hellomap3/Nuti.framework/Versions/A/Headers/vectortiles/Mapnik/GeneratorUtils.h
80eecd0021135611b41f97fadd20023f1a8aac05
[ "BSD-2-Clause" ]
permissive
nutiteq/hellomap3d-ios
bb35b6599360b74357339f300a5b94e293bec9d3
b9b6e8a2f756937fb5f15538c560cff1115688c3
refs/heads/master
2020-04-12T02:22:51.387210
2016-12-23T14:27:13
2016-12-23T14:27:13
21,323,638
15
9
null
2016-11-28T10:11:06
2014-06-29T13:20:51
C
UTF-8
C++
false
false
880
h
/* * Copyright 2014 Nutiteq Llc. All rights reserved. * Copying and using this code is allowed only according * to license terms, as given in https://www.nutiteq.com/license/ */ #ifndef _NUTI_MAPNIK_GENERATORUTILS_H_ #define _NUTI_MAPNIK_GENERATORUTILS_H_ #include "Value.h" #include "Expression.h" #include "Transform.h" #include <memory> #include <stdexcept> #include <string> #include <vector> namespace Nuti { namespace Mapnik { class GeneratorException : public std::runtime_error { public: GeneratorException(const std::string& msg) : runtime_error(msg) { } }; std::string generateColorString(unsigned int color); std::string generateValueString(const Value& val); std::string generateExpressionString(const std::shared_ptr<Expression>& expr); std::string generateTransformListString(const std::vector<std::shared_ptr<Transform>>& transforms); } } #endif
[ "jaak@nutiteq.com" ]
jaak@nutiteq.com
6b302ccdf87385e539d660c452b29e1af863ba66
b4aff90b636412db70a2e2e2ab819a24d65cba2b
/voipengine/voipsdk/webrtc/src/chromium/src/extensions/shell/renderer/shell_content_renderer_client.h
b86fa0e9e9babaac42adf5644626361495c2cdef
[]
no_license
brainpoint/voip_ios
9a9aebba88b3c5bb17108d7ed87c702f23dc6f12
5205f896b9e60881f52c0b12b1c5188c9608d83e
refs/heads/master
2020-12-26T04:37:38.258937
2015-04-14T16:16:31
2015-04-14T16:16:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,935
h
// Copyright 2014 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_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ #define EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ #include "base/compiler_specific.h" #include "base/macros.h" #include "base/memory/scoped_ptr.h" #include "content/public/renderer/content_renderer_client.h" namespace extensions { class Dispatcher; class DispatcherDelegate; class ExtensionsClient; class ShellExtensionsRendererClient; class ShellRendererMainDelegate; // Renderer initialization and runtime support for app_shell. class ShellContentRendererClient : public content::ContentRendererClient { public: ShellContentRendererClient(); ~ShellContentRendererClient() override; // content::ContentRendererClient implementation: void RenderThreadStarted() override; void RenderFrameCreated(content::RenderFrame* render_frame) override; void RenderViewCreated(content::RenderView* render_view) override; bool OverrideCreatePlugin(content::RenderFrame* render_frame, blink::WebLocalFrame* frame, const blink::WebPluginParams& params, blink::WebPlugin** plugin) override; blink::WebPlugin* CreatePluginReplacement( content::RenderFrame* render_frame, const base::FilePath& plugin_path) override; bool WillSendRequest(blink::WebFrame* frame, ui::PageTransition transition_type, const GURL& url, const GURL& first_party_for_cookies, GURL* new_url) override; void DidCreateScriptContext(blink::WebFrame* frame, v8::Handle<v8::Context> context, int extension_group, int world_id) override; const void* CreatePPAPIInterface(const std::string& interface_name) override; bool IsExternalPepperPlugin(const std::string& module_name) override; bool ShouldEnableSiteIsolationPolicy() const override; content::BrowserPluginDelegate* CreateBrowserPluginDelegate( content::RenderFrame* render_frame, const std::string& mime_type, const GURL& original_url) override; protected: // app_shell embedders may need custom extensions client interfaces. // This class takes ownership of the returned object. virtual ExtensionsClient* CreateExtensionsClient(); private: scoped_ptr<ExtensionsClient> extensions_client_; scoped_ptr<ShellExtensionsRendererClient> extensions_renderer_client_; scoped_ptr<DispatcherDelegate> extension_dispatcher_delegate_; scoped_ptr<Dispatcher> extension_dispatcher_; DISALLOW_COPY_AND_ASSIGN(ShellContentRendererClient); }; } // namespace extensions #endif // EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_
[ "houxuehua49@gmail.com" ]
houxuehua49@gmail.com
cb663a173371c4084d1018652ad35b0966a8db1c
c1fe1493d4eaa436222e4835adc3112d0735b968
/ctg/utils/observable_stub.hh
46880f39d73b7ec7419033a6db97e2ef1a1adb42
[]
no_license
ctgcoin/ctg-master
52599e9af11677e34ac95828c09bfb668f5cda6c
330298882fa0d2da9a495931f316f3caaf471338
refs/heads/master
2020-03-28T23:24:11.833003
2018-11-27T10:08:07
2018-11-27T10:08:07
149,287,321
0
0
null
null
null
null
UTF-8
C++
false
false
1,672
hh
/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2016 * * This file is part of the ctg project. ctg is free software; * you can redistribute it and/or modify it under the terms of the GNU General * Public License version 2, as published by the Free Software Foundation. * * ctg is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 59 Temple * Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef ctg_GUARD_ctg_UTILS_OBSERVABLE_STUB_HH #define ctg_GUARD_ctg_UTILS_OBSERVABLE_STUB_HH 1 #include <ctg/observable.hh> #include <ctg/utils/private_implementation_pattern.hh> #include <ctg/utils/qualified-name.hh> namespace ctg { class ObservableStub : public Observable, public PrivateImplementationPattern<ObservableStub> { public: ObservableStub(const Parameters & parameters, const QualifiedName & name, const Kinematics & kinematics = Kinematics()); ~ObservableStub(); virtual const QualifiedName & name() const; virtual double evaluate() const; virtual Kinematics kinematics(); virtual Parameters parameters(); virtual Options options(); virtual ObservablePtr clone() const; virtual ObservablePtr clone(const Parameters & parameters) const; }; } #endif
[ "support@ctgcoin.org" ]
support@ctgcoin.org
58476f50684708ffc61268ef21df5e892f903e8c
b1b215c30ab90943646077c4407e2fe70e144015
/cpp/stroustrup_exercises/tour_basics/vector/vector.cpp
6f6bcf7dbb6518f48b07b187214a4304c94484eb
[]
no_license
Tigrolik/git_workspace
7bba081a31054c6491e65bd3db0f7f50c6209af3
5bca3ead66e6a9ed69edc84bad9e6f0646ae9894
refs/heads/master
2021-01-01T03:55:32.498126
2016-06-10T16:42:25
2016-06-10T16:42:25
57,963,573
0
0
null
null
null
null
UTF-8
C++
false
false
1,280
cpp
#include "vector.h" #include <iostream> #include <stdexcept> #include <exception> Vector::Vector(std::size_t s): elem{new double[s]}, sz{s} { // if (s < 0) // throw std::length_error(0); elem = new double[s]; sz = s; } Vector::Vector(std::initializer_list<double> lst): elem{new double[lst.size()]}, sz{lst.size()} { std::copy(lst.begin(), lst.end(), elem); } Vector::Vector(const Vector& other): elem{new double[sz]}, sz{other.sz} { sz = other.sz; elem = new double[sz]; for (std::size_t i = 0; i < sz; ++i) elem[i] = other.elem[i]; } // && means rvalue ref: ref to which we can bind an rvalue Vector::Vector(Vector&& a): elem{a.elem}, sz{a.sz} { // move constructor a.elem = nullptr; a.sz = 0; } Vector& Vector::operator=(const Vector& other) { sz = other.sz; double *p = new double[sz]; for (std::size_t i = 0; i < sz; ++i) p[i] = other.elem[i]; delete [] elem; // delete old elements elem = p; return *this; } Vector::~Vector() { std::cout << "Calling destructor\n"; delete [] elem; } double &Vector::operator[](std::size_t i) { if (i >= size()) throw std::out_of_range{"Vector::operator[]"}; return elem[i]; } std::size_t Vector::size() { return sz; }
[ "ivan.martynov@lut.fi" ]
ivan.martynov@lut.fi
4690c92ee4013ed7d7419211be7773b79dfc8891
01b490c883f07f0d447dded1c33c9481ae5c529f
/bbs_viewer/bbs_viewer.cpp
fff3f107f08afa2c0a2a2bcb0f6e43c54a4dea2f
[]
no_license
felippe-mendonca/is-matlab
bb2e586b029b95993bd5e8d401390415f22c8f3e
9091dd31b7e8b3ea013a61ac948638c1825187f6
refs/heads/master
2021-01-25T04:35:18.439696
2017-07-13T01:16:41
2017-07-13T01:16:41
93,449,482
0
0
null
null
null
null
UTF-8
C++
false
false
5,508
cpp
#include <armadillo> #include <boost/iterator/zip_iterator.hpp> #include <boost/program_options.hpp> #include <iomanip> #include <iostream> #include <is/is.hpp> #include <is/msgs/camera.hpp> #include <is/msgs/common.hpp> #include <map> #include <opencv2/core/core.hpp> #include <opencv2/highgui.hpp> #include <opencv2/imgproc.hpp> #include <string> #include <vector> #include "../arma.hpp" namespace po = boost::program_options; using namespace is::msg::camera; using namespace is::msg::common; using namespace std::chrono; using namespace arma; namespace std { std::ostream& operator<<(std::ostream& os, const std::vector<std::string>& vec) { for (auto item : vec) { os << item << " "; } return os; } } const std::map<int, cv::Scalar> colors{ {1, cv::Scalar(0, 255, 0)}, // green {2, cv::Scalar(0, 0, 255)}, // red {3, cv::Scalar(0, 255, 255)}, // yellow {4, cv::Scalar(255, 0, 0)} // blue }; namespace is { void putText(cv::Mat& frame, std::string const& text, cv::Point point, int fontFace, double fontScale, cv::Scalar color, cv::Scalar backgroundColor, int tickness = 1, int linetype = 8, bool bottomLeftOrigin = false) { int baseline = 0; cv::Size text_size = cv::getTextSize(text, fontFace, fontScale, tickness, &baseline); cv::rectangle(frame, point + cv::Point(0, baseline), point + cv::Point(text_size.width, -text_size.height), backgroundColor, CV_FILLED); cv::putText(frame, text, point, fontFace, fontScale, color, tickness, linetype); } } // ::is int main(int argc, char* argv[]) { std::string uri; std::vector<std::string> cameras; const std::vector<std::string> default_cameras{"ptgrey.0", "ptgrey.1", "ptgrey.2", "ptgrey.3"}; po::options_description description("Allowed options"); auto&& options = description.add_options(); options("help,", "show available options"); options("uri,u", po::value<std::string>(&uri)->default_value("amqp://192.168.1.110:30000"), "broker uri"); options("cameras,c", po::value<std::vector<std::string>>(&cameras)->multitoken()->default_value(default_cameras), "cameras"); po::variables_map vm; po::store(po::parse_command_line(argc, argv, description), vm); po::notify(vm); if (vm.count("help")) { std::cout << description << std::endl; return 1; } auto is = is::connect(uri); auto client = is::make_client(is); std::vector<std::string> ids; for (auto& camera : cameras) { ids.push_back(client.request(camera + ".get_configuration", is::msgpack(0))); } auto configuration_msgs = client.receive_until(high_resolution_clock::now() + 1s, ids, is::policy::discard_others); if (configuration_msgs.size() != cameras.size()) exit(0); auto configuration = is::msgpack<Configuration>(configuration_msgs.at(ids.front())); int64_t period = static_cast<int64_t>(1000.0 / *((*(configuration.sampling_rate)).rate)); std::vector<std::string> topics; for (auto& camera : cameras) { topics.push_back(camera + ".frame"); } auto tag = is.subscribe(topics); std::vector<std::string> bbs_topics; for (auto& camera : cameras) { bbs_topics.push_back(camera + ".bbs"); } auto bbs_tag = is.subscribe(bbs_topics); is::log::info("Starting capture. Period: {} ms", period); while (1) { auto images_msg = is.consume_sync(tag, topics, period); auto bbs_msg = is.consume_sync(bbs_tag, bbs_topics, period); auto it_begin = boost::make_zip_iterator(boost::make_tuple(images_msg.begin(), bbs_msg.begin())); auto it_end = boost::make_zip_iterator(boost::make_tuple(images_msg.end(), bbs_msg.end())); std::vector<cv::Mat> up_frames, down_frames; int n_frame = 0; std::for_each(it_begin, it_end, [&](auto msgs) { auto image_msg = boost::get<0>(msgs); auto bbs_msg = boost::get<1>(msgs); auto image = is::msgpack<CompressedImage>(image_msg); arma::mat bbs = is::msgpack<arma::mat>(bbs_msg); cv::Mat current_frame = cv::imdecode(image.data, CV_LOAD_IMAGE_COLOR); bbs.each_row([&](arma::rowvec const& a) { cv::rectangle(current_frame, cv::Rect(a(0), a(1), a(2), a(3)), colors.at(static_cast<int>(a(5))), 3); std::stringstream ss_text; ss_text << std::setw(4) << a(4); std::string text = ss_text.str(); int fontface = cv::FONT_HERSHEY_SIMPLEX; double scale = 1.0; int tickness = 2; cv::Point point(a(0) + a(2), a(1) + a(3)); is::putText(current_frame, text, point, cv::FONT_HERSHEY_SIMPLEX, scale, cv::Scalar(255, 255, 255), cv::Scalar(0, 0, 0), tickness); }); is::putText(current_frame, "ptgrey." + std::to_string(n_frame), cv::Point(0, 22), cv::FONT_HERSHEY_SIMPLEX, 1.0, colors.at(n_frame + 1), cv::Scalar(0, 0, 0), 2); cv::resize(current_frame, current_frame, cv::Size(current_frame.cols / 2, current_frame.rows / 2)); if (n_frame < 2) { up_frames.push_back(current_frame); } else { down_frames.push_back(current_frame); } n_frame++; }); cv::Mat output_image; cv::Mat up_row, down_row; std::vector<cv::Mat> rows_frames; cv::hconcat(up_frames, up_row); rows_frames.push_back(up_row); cv::hconcat(down_frames, down_row); rows_frames.push_back(down_row); cv::vconcat(rows_frames, output_image); cv::imshow("Intelligent Space", output_image); cv::waitKey(1); } is::logger()->info("Exiting"); return 0; }
[ "mendonca.felippe@gmail.com" ]
mendonca.felippe@gmail.com
ba1f34961c4ce01bab421dbed4a0f612abe4cbf5
db19b65eb3d6f0bbfb790dc5294a17443736dc56
/labs-old/fractals/fractals/fractals/function.h
e0f2e20ae495632a66b55e811a9bd3bd20a64644
[]
no_license
AnissaFaik-r0671584/pvm_exercises_1718
887e90e277dc16e49b9e82fc68653be20101bf48
f9eb8c754affa47adf6cb990737a1afaed060604
refs/heads/master
2020-03-19T12:46:05.281528
2018-06-07T22:52:09
2018-06-07T22:52:09
136,539,006
0
0
null
null
null
null
UTF-8
C++
false
false
581
h
#ifndef FUNCTION_H #define FUNCTION_H #include <functional> #include <memory> std::function<double(double)> linear(double x1, double y1, double x2, double y2); std::function<double(double)> linear(double y1, double y2); std::function<double(double)> easeInOut(double y1, double y2); std::function<double(double)> constant(double y); std::function<double(double)> gauss(double center, double slenderness); template<typename R, typename T> std::function<R(T)> scaleDomain(std::function<R(T)> f, double factor) { return[f, factor](double x) { return f(x / factor); }; } #endif
[ "anissa.faik@student.ucll.be" ]
anissa.faik@student.ucll.be
71a045a9e20528c17bafc7225e4a4b4c58f9cb4f
45d67a5c7a600315f7734c787d8a9938db4eaf60
/Network Homework/SplitShaderDC.h
7b8baf317b45b146b7649d89d58fd1702c070f19
[]
no_license
joecatarata/OpenGL
fe3fc346bc6bf94aec3614231df8f08fa971ae3d
76d7d6b4f51a6c56a60e8b2685284bd7fb7387d5
refs/heads/master
2021-08-28T15:12:45.321802
2017-12-12T14:58:22
2017-12-12T14:58:22
111,425,280
1
0
null
null
null
null
UTF-8
C++
false
false
875
h
#ifndef SPLIT_SHADER_DC_H #define SPLIT_SHADER_DC_H #include <iostream> #include <fstream> #include <string> #include <GL/glew.h> #include <glm/glm.hpp> #define GLM_FORCE_RADIANS #include <glm/gtx/transform.hpp> #include <stdio.h> #include <SFML/Graphics.hpp> class SplitShaderDC{ public: SplitShaderDC(); SplitShaderDC(std::string shaderV,std::string shaderF); void init(std::string shaderV,std::string shaderF); ~SplitShaderDC(); void bind(glm::mat4 tranModel,float r,float g,float b); void bindCamera(glm::mat4 camera,glm::mat4 tranModel,float r,float g,float b); private: GLuint uniformTransform; GLuint uniformColor; GLuint shader; GLuint vertexShader; GLuint fragmentShader; std::string getFileContent(std::string fileName); }; #endif /* SPLIT_SHADER_DC_H */
[ "joecatarata@gmail.com" ]
joecatarata@gmail.com
2568647f98311dee68fefe5938f27b28d9b6385e
04b0ed4a1ace87f9b08a64ae5b811bcb84b128df
/src/ofApp.cpp
881fbda5f41c2418d6590f1b9be925c735465f07
[]
no_license
NathanJewell/MouseParticle_OPENMP
db4f0efdc7190f2a9f17571e7a62b5ff2137fda1
f3e79a3311b2018fe9b38c3453ed14be84f96725
refs/heads/master
2021-01-19T20:51:06.655282
2017-04-18T01:50:51
2017-04-18T01:50:51
88,568,878
0
0
null
null
null
null
UTF-8
C++
false
false
5,118
cpp
#include "ofApp.h" #include <iostream> #include <omp.h> //-------------------------------------------------------------- void ofApp::setup(){ ofSetFrameRate(60); ofSetFullscreen(1); particleNumber = 5000; upperLimit = 10000; lowerLimit = 100; mouseMass = 200; gravityConstant = 3; particleMass = 4; increment = 1; for(int ii = 0; ii < particleNumber; ii++) { ofVec2f randPos; randPos.x = ofRandom(10, ofGetWindowWidth()-10); randPos.y = ofRandom(10, ofGetWindowHeight()-10); ofColor color(ofRandom(50), ofRandom(50), ofRandom(100, 255), ofRandom(100, 200)); basicParticle atest(randPos, particleMass, 255, color); test.push_back(atest); } } //-------------------------------------------------------------- void ofApp::update(){ ofVec2f updraft(0, -50); omp_set_num_threads(omp_get_num_procs()); #pragma omp parallel for schedule(dynamic, 10) for(int ii = 0; ii < test.size(); ii++) { ofVec2f force = mousePosition - test[ii].location; float d2 = force.lengthSquared(); if(d2 < lowerLimit) { d2 = lowerLimit; } if(d2 > upperLimit) { d2 = upperLimit; } force.normalize(); float mag = (gravityConstant * mouseMass * test[ii].mass)/(d2); force *= mag; test[ii].addForce(force); //test[ii].addForce(updraft); // if(test[ii].location.y <= 10 || // test[ii].location.y >= ofGetWindowHeight()) // { // test[ii].velocity.y *= -1; // } // if(test[ii].location.x <= 10 || // test[ii].location.x >= ofGetWindowWidth()-10) // { // test[ii].velocity.x *= -1; // } test[ii].velocity.limit(10); test[ii].update(); } } //-------------------------------------------------------------- void ofApp::draw(){ //#pragma omp parallel for for(int ii = 0; ii < test.size(); ii++) { test[ii].draw(); } ofSetColor(0, 100, 200); ofDrawBitmapString("Space to reset, shift to increase increment. Increment: " + ofToString(increment), 10, 20); ofDrawBitmapString("1(Q, A, Z)Gravity Coefficient: "+ofToString(gravityConstant), 10, 40); ofDrawBitmapString("2(W, S)#of Particles: " + ofToString(particleNumber), 10, 60); ofDrawBitmapString("1(E, D)Particle Mass: " + ofToString(particleMass), 10, 80); ofDrawBitmapString("5(R, F)Upper Limit: " + ofToString(upperLimit), 10, 100); ofDrawBitmapString("2(T, G)Lower Limit: " + ofToString(lowerLimit), 10, 120); ofDrawBitmapString("FPS: " + ofToString(ofGetFrameRate()), 10, 140); ofSetColor(200, 100, 0, 100); ofCircle(mousePosition.x, mousePosition.y, 20); } //-------------------------------------------------------------- void ofApp::keyPressed(int key){ if(key == 32) { test.clear(); for(int ii = 0; ii < particleNumber; ii++) { ofVec2f randPos; randPos.x = ofRandom(ofGetWindowWidth()); randPos.y = ofRandom(ofGetWindowHeight()); ofColor color(ofRandom(100, 255), ofRandom(50), ofRandom(50), ofRandom(100, 200)); basicParticle atest(randPos, particleMass, 255, color); test.push_back(atest); } } else if(key == 113) { gravityConstant+= increment; } else if(key == 97) { gravityConstant-= increment; } else if(key == 122) { gravityConstant *= -1; } else if(key == 101) { particleMass+= increment; } else if(key == 100) { particleMass-= increment; } else if(key == 114) { upperLimit+= increment* 20; } else if(key == 146) { upperLimit-= increment * 20; } else if(key == 116) { lowerLimit+= increment; } else if(key == 113) { lowerLimit-= increment; } else if(key = 119) { particleNumber+= increment * 100; } else if(key == 115) { particleNumber-= increment * 100; } } //-------------------------------------------------------------- void ofApp::keyReleased(int key){ } //-------------------------------------------------------------- void ofApp::mouseMoved(int x, int y ){ mousePosition.y = y; mousePosition.x = x; } //-------------------------------------------------------------- void ofApp::mouseDragged(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mousePressed(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mouseReleased(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::windowResized(int w, int h){ } //-------------------------------------------------------------- void ofApp::gotMessage(ofMessage msg){ } //-------------------------------------------------------------- void ofApp::dragEvent(ofDragInfo dragInfo){ }
[ "nathanielx.jewell@gmail.com" ]
nathanielx.jewell@gmail.com
8bcdcd5bb11119490ad985d4fc4776c13d0e7961
f0ca96cfacdc5f01d4da9ddcd1820756457e2684
/Slide.cpp
ee8f5ee8708397e06dfa9ee28881ef1cc30c862a
[]
no_license
AVGP/SLIDE
a409b9a63d6e2c803891f134c0b2819b59672ff7
fd5060ae5036051c882ddd2a03129243d4559544
refs/heads/master
2021-01-01T18:23:50.806007
2010-10-26T03:04:25
2010-10-26T03:04:25
987,782
0
0
null
null
null
null
UTF-8
C++
false
false
2,495
cpp
#include "Slide.h" Slide *Slide::instance = NULL; Slide::Slide() {} Slide *Slide::getInstance() { if(instance == NULL) { instance = new Slide(); return instance; } else { return instance; } } bool Slide::startUp(bool debug) { Logger::getInstance()->log((std::string)"Starting up."); //Reading the config: config = new SlideConfig(); unsigned int len; int numDesks = atoi((char *)config->getConfigValue((char *)"VirtualDesks",&len)); // componentPIDs = (pid_t*)malloc((4*sizeof(pid_t)));//2+numDesks)*sizeof(pid_t)); char dbg[255]; sprintf(dbg,"# workspaces: %i",numDesks); Logger::getInstance()->log(dbg); //Starting up the components: //Start the WM componentPIDs[0] = fork(); if(componentPIDs[0] == 0) { SlideWindowManager *wm = new SlideWindowManager(debug); if(!wm->run() && debug) { Logger::getInstance()->log((std::string)"FAULT: Windowmanager failed!"); exit(EXIT_FAILURE); } } //Setup the local socket: ctrlConnection = new SlideConnection((char *)"/tmp/Slide_core.sock",COMP_CORE); //Get resolution from the WM: struct sockaddr_un addr; CTRLMSG msg; do { msg.type = GEOMETRYREQUEST; msg.len = 0; ctrlConnection->sendMessage(&msg,(char *)"/tmp/Slide_wm.sock"); msg = ctrlConnection->peekMessage(&addr); }while(msg.type == NONE); int sx,sy; memcpy(&sx,msg.msg,sizeof(int)); memcpy(&sy,msg.msg+sizeof(int),sizeof(int)); //Now the Client-Components char sw[5],sh[5]; sprintf(sw,"%d",sx); sprintf(sh,"%d",sy); for(int i=0;i<numDesks;i++) { sprintf(dbg,"Starting Desk #%i",i); Logger::getInstance()->log(dbg); // componentPIDs[2+i] = fork(); if(fork() == 0)//componentPIDs[2+i] == 0) { execl((char *)config->getConfigValue((char *)"DesktopApp",&len),(char *)"SlideComponent",sw,sh,(char *)config->getConfigValue((char *)"DesktopWallpaper",&len),(char *)0); } } componentPIDs[1] = fork(); if(componentPIDs[1] == 0) { execl((char *)config->getConfigValue((char *)"TrayApp",&len),(char *)"SlideComponent",sw,sh,(char *)0); } Logger::getInstance()->log((std::string)"STATUS: AWESOME STARTUP."); return true; } bool Slide::shutDown() { return true; } void Slide::run() { while(1) { sleep(1); } }
[ "avgp_2k@yahoo.de" ]
avgp_2k@yahoo.de
6c5e7ef07c0ea44ab5e710ee54d3b0a18ef65a9e
218c6ae10980266e83592389a522fb5d7cecab21
/queue/StaticQueue.h
8fe2e93b696811693bd58a37456886a6f2ab26c2
[]
no_license
TianLanhe/DSLibrary
2abdd63ec3cd44a7358a64e86c3c5b3dd24659de
3a2b24e2da169c9cba3d297900c99c242124bbe3
refs/heads/master
2021-04-30T08:16:23.418473
2018-09-16T06:14:17
2018-09-16T06:14:17
121,370,123
3
1
null
null
null
null
GB18030
C++
false
false
3,410
h
#ifndef STATIC_QUEUE_H #define STATIC_QUEUE_H #include "Queue.h" #include "../Allocator.h" DSLIB_BEGIN template < typename T, size_t N > class StaticQueue : public Queue<T> { public: StaticQueue(); StaticQueue(const StaticQueue<T, N>&); StaticQueue<T, N>& operator=(StaticQueue<T, N>); ~StaticQueue(); virtual reference back(); virtual const_reference back() const; virtual reference front(); virtual const_reference front() const; virtual void push(const_reference); virtual void pop(); virtual size_type size() const { return (m_rear + N + 1 - m_front) % (N + 1); } virtual void swap(StaticQueue<T, N>& obj); virtual size_type capacity() { return N; } private: size_type nextIndex(size_type pos) { return (pos + 1) % (N + 1); } T *m_arr; size_type m_front; size_type m_rear; Allocator<T> m_alloc; // 使用 allocator 分离内存的分配与对象的构造 }; template < typename T, size_t N > void swap(StaticQueue<T, N>& a, StaticQueue<T, N>& b) { a.swap(b); } template < typename T, size_t N > StaticQueue<T, N>::StaticQueue() { m_arr = m_alloc.allocate(N + 1); CHECK_NO_MEMORY_EXCEPTION(m_arr); m_front = m_rear = 0; } template < typename T, size_t N > StaticQueue<T, N>::StaticQueue(const StaticQueue<T, N>& obj) { m_arr = m_alloc.allocate(N + 1); CHECK_NO_MEMORY_EXCEPTION(m_arr); m_front = m_rear = 0; for (size_type index = obj.m_front; index != obj.m_rear; index = nextIndex(index)) { m_alloc.construct(&m_arr[m_rear], m_arr[index]); m_rear = nextIndex(m_rear); } } template < typename T, size_t N > StaticQueue<T, N>& StaticQueue<T, N>::operator=(StaticQueue<T, N> obj) { swap(obj); return *this; } template < typename T, size_t N > StaticQueue<T, N>::~StaticQueue() { while (size() > 0) pop(); m_alloc.deallocate(m_arr); } template < typename T, size_t N > typename StaticQueue<T, N>::reference StaticQueue<T, N>::back() { CHECK_OPERATION_EXCEPTION(m_rear != m_front); if (m_rear == 0) return m_arr[N]; else return m_arr[m_rear - 1]; // return m_arr[(m_rear + N) % (N + 1)]; } template < typename T, size_t N > typename StaticQueue<T, N>::const_reference StaticQueue<T, N>::back() const { CHECK_OPERATION_EXCEPTION(m_rear != m_front); if (m_rear == 0) return m_arr[N]; else return m_arr[m_rear - 1]; // return m_arr[(m_rear + N) % (N + 1)]; } template < typename T, size_t N > typename StaticQueue<T, N>::reference StaticQueue<T, N>::front() { CHECK_OPERATION_EXCEPTION(m_rear != m_front); return m_arr[m_front]; } template < typename T, size_t N > typename StaticQueue<T, N>::const_reference StaticQueue<T, N>::front() const { CHECK_OPERATION_EXCEPTION(m_rear != m_front); return m_arr[m_front]; } template < typename T, size_t N > void StaticQueue<T, N>::push(const_reference e) { CHECK_OPERATION_EXCEPTION(nextIndex(m_rear) != m_front); m_alloc.construct(&m_arr[m_rear], e); m_rear = nextIndex(m_rear); } template < typename T, size_t N > void StaticQueue<T, N>::pop() { CHECK_OPERATION_EXCEPTION(m_rear != m_front); m_alloc.destroy(&m_arr[m_front]); m_front = nextIndex(m_front); } template < typename T, size_t N > void StaticQueue<T, N>::swap(StaticQueue<T, N>& obj) { T *tmp = m_arr; m_arr = obj.m_arr; obj.m_arr = tmp; int temp = m_front; m_front = obj.m_front; obj.m_front = temp; temp = m_rear; m_rear = obj.m_rear; obj.m_rear = temp; } DSLIB_END #endif // !STATIC_QUEUE_H
[ "849416763@qq.com" ]
849416763@qq.com
f4414bb5ba1ccc923eac4689beeacd9d139bca3a
40da2190aca6e5ab3f27bb650a798d94000497ba
/klinSource/Sample/shader_m.h
c51672e9d3613495b031921d404ac55b9287ab31
[]
no_license
LiuYiZhou95/CoolRender
e47a7deb501e82a6b7ca9a103acea0ba309c6dc5
8069e6f5d06eae7042d0f5544164bae1c1aec649
refs/heads/master
2020-08-07T16:55:38.770353
2019-10-08T02:34:50
2019-10-08T02:34:50
213,531,163
0
1
null
null
null
null
UTF-8
C++
false
false
6,520
h
// // Created by B612 on 2019/9/18. // #ifndef SHADER_H #define SHADER_H #include <glm/glm.hpp> #include <Context.h> #include <string> #include <fstream> #include <sstream> #include <iostream> class ShaderTest { public: unsigned int ID; // constructor generates the shader on the fly // ------------------------------------------------------------------------ ShaderTest(const char* vertexPath, const char* fragmentPath) { // 1. retrieve the vertex/fragment source code from filePath std::string vertexCode; std::string fragmentCode; std::ifstream vShaderFile; std::ifstream fShaderFile; // ensure ifstream objects can throw exceptions: vShaderFile.exceptions (std::ifstream::failbit | std::ifstream::badbit); fShaderFile.exceptions (std::ifstream::failbit | std::ifstream::badbit); try { // open files vShaderFile.open(vertexPath); fShaderFile.open(fragmentPath); std::stringstream vShaderStream, fShaderStream; // read file's buffer contents into streams vShaderStream << vShaderFile.rdbuf(); fShaderStream << fShaderFile.rdbuf(); // close file handlers vShaderFile.close(); fShaderFile.close(); // convert stream into string vertexCode = vShaderStream.str(); fragmentCode = fShaderStream.str(); } catch (std::ifstream::failure e) { std::cout << "ERROR::SHADER::FILE_NOT_SUCCESFULLY_READ" << std::endl; } const char* vShaderCode = vertexCode.c_str(); const char * fShaderCode = fragmentCode.c_str(); // 2. compile shaders unsigned int vertex, fragment; // vertex shader vertex = glCreateShader(GL_VERTEX_SHADER); glShaderSource(vertex, 1, &vShaderCode, NULL); glCompileShader(vertex); checkCompileErrors(vertex, "VERTEX"); // fragment Shader fragment = glCreateShader(GL_FRAGMENT_SHADER); glShaderSource(fragment, 1, &fShaderCode, NULL); glCompileShader(fragment); checkCompileErrors(fragment, "FRAGMENT"); // shader Program ID = glCreateProgram(); glAttachShader(ID, vertex); glAttachShader(ID, fragment); glLinkProgram(ID); checkCompileErrors(ID, "PROGRAM"); // delete the shaders as they're linked into our program now and no longer necessery glDeleteShader(vertex); glDeleteShader(fragment); } // activate the shader // ------------------------------------------------------------------------ void use() const { glUseProgram(ID); } // utility uniform functions // ------------------------------------------------------------------------ void setBool(const std::string &name, bool value) const { glUniform1i(glGetUniformLocation(ID, name.c_str()), (int)value); } // ------------------------------------------------------------------------ void setInt(const std::string &name, int value) const { glUniform1i(glGetUniformLocation(ID, name.c_str()), value); } // ------------------------------------------------------------------------ void setFloat(const std::string &name, float value) const { glUniform1f(glGetUniformLocation(ID, name.c_str()), value); } // ------------------------------------------------------------------------ void setVec2(const std::string &name, const glm::vec2 &value) const { glUniform2fv(glGetUniformLocation(ID, name.c_str()), 1, &value[0]); } void setVec2(const std::string &name, float x, float y) const { glUniform2f(glGetUniformLocation(ID, name.c_str()), x, y); } // ------------------------------------------------------------------------ void setVec3(const std::string &name, const glm::vec3 &value) const { glUniform3fv(glGetUniformLocation(ID, name.c_str()), 1, &value[0]); } void setVec3(const std::string &name, float x, float y, float z) const { glUniform3f(glGetUniformLocation(ID, name.c_str()), x, y, z); } // ------------------------------------------------------------------------ void setVec4(const std::string &name, const glm::vec4 &value) const { glUniform4fv(glGetUniformLocation(ID, name.c_str()), 1, &value[0]); } void setVec4(const std::string &name, float x, float y, float z, float w) const { glUniform4f(glGetUniformLocation(ID, name.c_str()), x, y, z, w); } // ------------------------------------------------------------------------ void setMat2(const std::string &name, const glm::mat2 &mat) const { glUniformMatrix2fv(glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &mat[0][0]); } // ------------------------------------------------------------------------ void setMat3(const std::string &name, const glm::mat3 &mat) const { glUniformMatrix3fv(glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &mat[0][0]); } // ------------------------------------------------------------------------ void setMat4(const std::string &name, const glm::mat4 &mat) const { glUniformMatrix4fv(glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &mat[0][0]); } private: // utility function for checking shader compilation/linking errors. // ------------------------------------------------------------------------ void checkCompileErrors(GLuint shader, std::string type) { GLint success; GLchar infoLog[1024]; if (type != "PROGRAM") { glGetShaderiv(shader, GL_COMPILE_STATUS, &success); if (!success) { glGetShaderInfoLog(shader, 1024, NULL, infoLog); std::cout << "ERROR::SHADER_COMPILATION_ERROR of type: " << type << "\n" << infoLog << "\n -- --------------------------------------------------- -- " << std::endl; } } else { glGetProgramiv(shader, GL_LINK_STATUS, &success); if (!success) { glGetProgramInfoLog(shader, 1024, NULL, infoLog); std::cout << "ERROR::PROGRAM_LINKING_ERROR of type: " << type << "\n" << infoLog << "\n -- --------------------------------------------------- -- " << std::endl; } } } }; #endif
[ "liuyizhou_action@163.com" ]
liuyizhou_action@163.com
e554021f20b71cd9fb97a796d4433ddee0ca706d
83fe919d7d85983d23ec61704fb77c83aeb2668f
/src/main.cpp
a8e58fbac49f34c5d0fb299131d8826c26c92a76
[]
no_license
adityaruplaha/AlgoSpeedTest
87ac0fbc8fa0360326843e99545df91cc459afd5
f85e69a71dd8a7448527687b1dadacf0a1b7d3a3
refs/heads/master
2020-04-28T09:31:24.212029
2019-04-09T06:14:13
2019-04-09T06:17:53
175,169,757
0
0
null
null
null
null
UTF-8
C++
false
false
833
cpp
#include <ctime> #include <iostream> #include <cassert> #include "test_mgr.h" using num = unsigned long long; template <typename T1, typename T2> num HCF(T1 a, T2 b) { static_assert(std::is_integral_v<T1> && std::is_integral_v<T2>); assert(a & b); if (a == b) { return a; } num x = (a > b ? a : b); // greater num y = (a < b ? a : b); // lesser while (num r = x % y) { x = y; y = r; } return y; } template <typename T1, typename T2, typename... Tr> num HCF(T1 a, T2 b, Tr... c) { return HCF(HCF(a, b), std::forward<Tr>(c)...); } int main() { TestManager<num, num, num, num> mgr{}; mgr.addTest(new Test(&HCF<num, num, num>)); mgr.start(256242050, 675125795275, 1611561616); // wait std::this_thread::sleep_for(std::chrono::seconds(2)); mgr.results(); return 0; }
[ "30696515+adityaruplaha@users.noreply.github.com" ]
30696515+adityaruplaha@users.noreply.github.com
ddfa07cded7fcd0addeb31482cfb0fde3b74fe4b
d74fc793835b2523efdda89744e4fcf3d260e78f
/sw/scheduling/include/kmeans.hpp
1bfbb6e402c00a5c90abdfb7b0401f4a9a6d2944
[]
no_license
pouya-haghi/Coyote
c0db500603b71441051e1ef010f83424d036233f
aab360e725c01f8fe283bfcc51a188a8bab7e578
refs/heads/master
2023-08-23T18:58:56.823434
2021-10-15T17:37:51
2021-10-15T17:37:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,645
hpp
#include <iostream> #include <random> #include <stdio.h> #include <string.h> #include <chrono> template <class T, class T2> class Kmeans { public: Kmeans(T* points, uint32_t size, uint32_t dimensions, uint32_t k); ~Kmeans(); void run(uint32_t iter); T2 getSSE(); double getRuntime(); void printCentroids(); private: void assignment(); void update(); void initCentroids(); T2 euclideanDist(T* p1, T* p2); T* mPoints; T* mCentroids; T* mAccu; uint32_t* mAssigned; uint32_t mSize; uint32_t mClusters; uint32_t mDimensions; double mDurationUs; }; template <class T, class T2> Kmeans<T,T2>::Kmeans(T* points, uint32_t size, uint32_t dimensions, uint32_t k) { mPoints = points; mSize = size; mClusters = k; mDimensions = dimensions; mCentroids = new T[k*mDimensions]; mAccu = new T[k*mDimensions]; mAssigned = new uint32_t[k]; } template <class T, class T2> Kmeans<T,T2>::~Kmeans() { delete[] mCentroids; delete[] mAccu; delete[] mAssigned; } template <class T, class T2> void Kmeans<T,T2>::run(uint32_t iterations) { initCentroids(); auto start_time = std::chrono::high_resolution_clock::now(); for (uint32_t it = 0; it < iterations; ++it) { memset(mAccu, 0.0, mClusters*mDimensions*sizeof(T)); memset(mAssigned, 0, mClusters*sizeof(uint32_t)); assignment(); update(); } auto end_time = std::chrono::high_resolution_clock::now(); mDurationUs = std::chrono::duration_cast<std::chrono::microseconds>(end_time-start_time).count(); } template <class T, class T2> T2 Kmeans<T,T2>::getSSE() { T2 sse = 0.0; for(uint32_t p = 0; p < (mSize*mDimensions); p += mDimensions) { T2 minDist = 0.0; for (uint32_t c = 0; c < (mClusters*mDimensions); c += mDimensions) { T dist = euclideanDist(&mPoints[p], &mCentroids[c]); if (c == 0 || dist <= minDist) { minDist = dist; } } sse += minDist; int ind = p/mDimensions; //printf("[%d]sse:%d\n",ind, sse); } return sse; } template <class T, class T2> double Kmeans<T,T2>::getRuntime() { return mDurationUs; } template <class T, class T2> void Kmeans<T,T2>::printCentroids() { std::cout << "Centroids:" << std::endl; for (uint32_t c = 0; c < mClusters; ++c) { std::cout << "centroid[" << c << "]: "; for (uint32_t d = 0; d < mDimensions; ++d) { std::cout << " " << mCentroids[c*mDimensions+d]; } std::cout << std::endl; } } template <class T, class T2> void Kmeans<T,T2>::assignment() { for(uint32_t p = 0; p < (mSize*mDimensions); p += mDimensions) { T2 minDist = 0.0; uint32_t clusterIdx = 0; for (uint32_t c = 0; c < mClusters; ++c) { T2 dist = euclideanDist(&mPoints[p], &mCentroids[c*mDimensions]); if (c == 0 || dist <= minDist) { minDist = dist; clusterIdx = c; } } int ind = p/mDimensions; //printf("[%d]assign:%d\n",ind, clusterIdx); //printf("[%d]mindist:%d\n",ind, minDist); //Accumulate for (uint32_t d = 0; d < mDimensions; ++d) { mAccu[clusterIdx*mDimensions + d] += mPoints[p + d]; } mAssigned[clusterIdx]++; } /* printf("accumulated counters:\n"); for(int i =0; i< mClusters;i++) { printf("%u ", mAssigned[i]); } printf("\n"); printf("accumulated results:\n"); for(int i =0; i< mClusters;i++) { for(int j=0; j<mDimensions; j++) { printf("%u ", mAccu[i*mDimensions+j]); } } printf("\n");*/ } template <class T, class T2> void Kmeans<T,T2>::update() { // printf("updated center:\n"); for (uint32_t c = 0; c < mClusters; ++c) { for (uint32_t d = 0; d < mDimensions; ++d) { if (mAssigned[c] != 0) { mCentroids[c*mDimensions+d] = mAccu[c*mDimensions+d] / mAssigned[c]; // printf("%d ", mCentroids[c*mDimensions+d]); } } // printf("\n"); } } template <class T, class T2> void Kmeans<T,T2>::initCentroids() { int indx_array[8] = {0, 70, 149, 35, 105, 17, 50, 85}; std::default_random_engine generator; std::uniform_int_distribution<int> distribution(0, mSize); for (uint32_t c = 0; c < mClusters; ++c) { // int idx = distribution(generator); int idx = indx_array[c]; for (uint32_t d = 0; d < mDimensions; ++d) { mCentroids[c*mDimensions+d] = mPoints[idx*mDimensions+d]; } } } template <class T, class T2> T2 Kmeans<T,T2>::euclideanDist(T* p1, T* p2) { T2 dist = 0.0; for (uint32_t d = 0; d < mDimensions; ++d) { T diff = (p1[d] > p2[d]) ? (p1[d] - p2[d]) : (p2[d] - p1[d]); dist += (diff * diff); //dist += ((p1[d] - p2[d]) * (p1[d] - p2[d])); } return dist; }
[ "dario.korolija@inf.ethz.ch" ]
dario.korolija@inf.ethz.ch
ac293a3f65477da78c1ec6dad301a1d6b629be2a
5691b6a00201ae6551394cc0f600780b8ecbfd22
/soj/2142.cpp
6a4aece6f442122ca13012c1a720867e7332323e
[ "MIT" ]
permissive
huangshenno1/algo
15c367ab41bb8bdb6bc133365cb285a7c568545a
8a3c91fd11bcb6a6a830e963b1d5aed3f5ff787d
refs/heads/master
2021-01-17T10:17:41.625025
2016-04-11T07:17:43
2016-04-11T07:17:43
29,778,231
1
0
null
null
null
null
UTF-8
C++
false
false
1,271
cpp
#include <cstdio> #include <algorithm> using namespace std; const int maxn=100; int n,ans,aa,bb; int a[maxn],b[maxn],len; void f(int ta,int tb,int i) {     if (i>=len)         return;     if (ta+tb<=ans)         return;     if (ta>=0 && tb>=0 && ta+tb>ans)         ans=ta+tb;     f(ta,tb,i+1);     f(ta+a[i],tb+b[i],i+1); } int main() {     int ta,tb;     int i;     while (scanf("%d",&n)==1)     {         ans=ta=tb=len=0;         for (i=0;i<n;i++)         {             scanf("%d%d",&aa,&bb);             if (aa>=0 && bb>=0)             {                 ta+=aa;                 tb+=bb;                 ans+=aa+bb;             }             else if (aa*bb<=0 && aa+bb>=0)             {                 a[len]=-aa;                 b[len]=-bb;                 ta+=aa;                 tb+=bb;                 len++;             }         }         f(ta,tb,0);         printf("%d\n",ans);     }     return 0; }
[ "huangshenno1@gmail.com" ]
huangshenno1@gmail.com
4676dfa0a662791aaf0154ddcbcd71bb073b0f08
13a1898185de7573fffe404fb0798a3aed4bdbb1
/FriendshipGraph.h
21e5710942861290f6197120866430115625d6ef
[]
no_license
t-seroff/SocialNetwork
ef1b8474c3ad23be932239a8cb942ff1cc5f288f
cf054849f3d99b9b5d7e0e8c5818174e3e14c41a
refs/heads/master
2020-05-23T08:00:36.681398
2016-03-14T07:21:00
2016-03-14T07:21:00
80,485,419
0
0
null
null
null
null
UTF-8
C++
false
false
506
h
#ifndef FRIENDSHIPGRAPH_H #define FRIENDSHIPGRAPH_H #include <vector> #include <string> using namespace std; #define TABLE_SIZE 211 struct graphNode{ string name; int profileDataIndex; graphNode* nextFriend; }; class FriendshipGraph{ public: FriendshipGraph(); void addPerson(string, int, vector<string>); bool addFriendship(string, string); void print(); int search(string); vector<string> listFriends(string); private: int hashName(string, int); graphNode** graph; }; #endif
[ "Tristan.Seroff@gmail.com" ]
Tristan.Seroff@gmail.com
7ee9eab141b7c20f05ec94397b0d120106921522
adaf72cf718777d3d50aefe3153a40e0c8e372a5
/kite with LeapMotion/shared/inc/rx_jpeg.h
247712be6a107c74a3a09f564ef62c9a413e8540
[]
no_license
isliulin/OpenGL_projects
28d82f399713a2f22938b4f3ce0aae21b9dceba9
31d21853210d0da5b6ea16b18d3a4f252f1bfbdd
refs/heads/master
2021-06-22T03:53:03.701382
2017-08-23T04:32:27
2017-08-23T04:32:27
null
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
3,877
h
/*! @file rx_jpeg.h @brief JPEGファイル読み込み,書き出し - libjpegを使用 - http://www.ijg.org/ @author Makoto Fujisawa @date 2011-06 */ // FILE --rx_jpeg.h-- #ifndef _RX_JPEG_H_ #define _RX_JPEG_H_ //----------------------------------------------------------------------------- // インクルードファイル //----------------------------------------------------------------------------- #include <cstdio> #include <vector> #include <string> #include <jpeglib.h> #include <jerror.h> //----------------------------------------------------------------------------- // JPEGファイルの読み込みと書き込み //----------------------------------------------------------------------------- /*! * JPEGファイルの読み込み * @param[in] fn ファイル名 * @param[out] w,h 画像サイズ * @param[out] c 画像の色深度 * @return 展開済み画像データ */ static unsigned char* ReadJpegFile(const std::string &fn, int &w, int &h, int &c) { jpeg_decompress_struct cinfo; jpeg_error_mgr jerr; // JPEG解凍用オブジェクト生成 cinfo.err = jpeg_std_error(&jerr); jpeg_create_decompress(&cinfo); // ファイルをバイナリモードで開く FILE *fp; if((fp = fopen(fn.c_str(), "rb")) == NULL){ fprintf(stderr, "jpeg error : cannot open %s file\n", fn.c_str()); return 0; } // 解凍するデータを指定 jpeg_stdio_src(&cinfo, fp); // ファイルヘッダの読み込み jpeg_read_header(&cinfo, TRUE); // 画像色深度 c = cinfo.num_components; if(!c){ fprintf(stderr, "jpeg error : the number of color components is zero\n"); return 0; } // 画像サイズ w = cinfo.image_width; h = cinfo.image_height; if(!w || !h){ fprintf(stderr, "jpeg error : size of the image is zero\n"); return 0; } // データを解凍 jpeg_start_decompress(&cinfo); // データ JSAMPARRAY buf; buf = (*cinfo.mem->alloc_sarray)((j_common_ptr)&cinfo, JPOOL_IMAGE, w*c, (JDIMENSION)1); // 出力データ unsigned char* img = new unsigned char[w*h*c]; // 1行ずつコピー unsigned char* dst_ptr = img; unsigned char* src_ptr; while(cinfo.output_scanline < (unsigned int)h){ jpeg_read_scanlines(&cinfo, buf, 1); src_ptr = buf[0]; for(int i = 0; i < w*c; ++i){ *dst_ptr++ = *src_ptr++; } } jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); fclose(fp); return img; } /*! * JPEGファイルの書き込み * @param[in] fn ファイル名 * @param[in] img 画像データ * @param[in] w,h 画像サイズ * @param[in] c 画像の色深度 * @param[in] quality 圧縮品質[0,100] */ static int WriteJpegFile(const std::string &fn, unsigned char *img, int w, int h, int c, int quality) { jpeg_compress_struct cinfo; jpeg_error_mgr jerr; // JPEG圧縮用オブジェクト生成 cinfo.err = jpeg_std_error(&jerr); jpeg_create_compress(&cinfo); // ファイルをバイナリモードで開く FILE *fp; if((fp = fopen(fn.c_str(), "wb")) == NULL){ fprintf(stderr, "jpeg error : cannot open %s file\n", fn.c_str()); return 0; } // 出力ファイルを指定 jpeg_stdio_dest(&cinfo, fp); // 画像ファイル情報 cinfo.image_width = w; cinfo.image_height = h; cinfo.input_components = c; cinfo.in_color_space = (c == 3 ? JCS_RGB : JCS_GRAYSCALE); // 圧縮設定 jpeg_set_defaults(&cinfo); // デフォルトのパラメータをセット jpeg_set_quality(&cinfo, quality, TRUE); // 画像品質を設定 // データを圧縮 jpeg_start_compress(&cinfo, TRUE); // 1行ずつ出力 unsigned char* src_ptr = img; JSAMPARRAY dst_ptr = new JSAMPROW[w*c]; while(cinfo.next_scanline < (unsigned int)h){ jpeg_write_scanlines(&cinfo, &src_ptr, 1); src_ptr += w*c; } jpeg_finish_compress(&cinfo); jpeg_destroy_compress(&cinfo); fclose(fp); return 1; } #endif // #ifdef _RX_JPEG_H_
[ "DonDracula@users.noreply.github.com" ]
DonDracula@users.noreply.github.com
7db08bf1949a8e7d7c6dfa3964f6a90a8d785991
2fd6f1d6771374128b848fabbbd63efcdc1613c9
/pseudo_fullscreen/stdafx.cpp
2f30baaf5e0b41f4777a8b28f59d08c7b6290f7c
[]
no_license
Vorsaykal/pseudo_fullscreen
2db6e1af27e225553e07c02c9fa5200cd7ed75c0
50b6f99c90b128335b022945989afabdeaa462ba
refs/heads/master
2016-09-15T23:27:44.047787
2014-05-06T05:10:03
2014-05-06T05:10:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
296
cpp
// stdafx.cpp : source file that includes just the standard includes // pseudo_fullscreen.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "vorsaykal@gmail.com" ]
vorsaykal@gmail.com
080eb14c39a5cd3bcad8267fb299a150cee21f38
d73095c6a0cddbc128fd736860f897c503504025
/interface/src/showqueue.cpp
1344fc028a864c885818aea6f0fb182a5d70980b
[]
no_license
longhao666/20180702jointMrapi
5072a5dd3ac5c270c75685197e7f54c3d1b55938
29332c80fac02e360f4be8a1a673922cca9dd972
refs/heads/master
2020-03-22T03:18:49.053977
2018-06-19T05:57:11
2018-06-19T05:57:11
139,424,570
0
0
null
null
null
null
UTF-8
C++
false
false
1,274
cpp
#include "showqueue.h" #include <iostream> using namespace std; ShowQueue::ShowQueue(int queueSize) { MaxLength = queueSize; } int ShowQueue::Count() { return data.size(); } bool ShowQueue::IsEmpty() { return data.empty(); } bool ShowQueue::DelHead() { if (IsEmpty()) { return false; } else { data.pop_front(); return true; } } void ShowQueue::Clear() { data.clear(); } void ShowQueue::Append(double newdata) { if (MaxLength < 1) { Clear(); return; } //若队列已经满了 while (Count() >= MaxLength) { // 当MaxLength改变之后 // delete head then append DelHead(); } // 把新元素挂到链尾 data.push_back(newdata); return; } void ShowQueue::FillZero() { Clear(); for (int i = 0; i < MaxLength; i++) { Append(0); } } double ShowQueue::GetValue(int index) { if (index >= Count()) { cout << "ShowQueue::GetValue : index is out of range." << endl; return 0; } return data.at(index); } void ShowQueue::CopyTo(vector<double> & eachValue) { eachValue.clear(); for (deque<double>::iterator iter = data.begin(); iter != data.end(); ++iter) { eachValue.push_back(*iter); } }
[ "305902464@qq.com" ]
305902464@qq.com
ac82e8bfd9e3990149d6d20db70512ff90eed88b
ccd818cfabdfbc6ddb61c636ded89ac53bf08aea
/Linked List Template/Passenger.h
fc685c92d7274477b6642295b9292b273939ce15
[]
no_license
KDunc11/Linked_List
3d4d04c619df354699d0773f339698f0534d2c37
0782658e2044a7774adb4ad6692e6f48d7a7a2fa
refs/heads/master
2022-12-18T11:35:23.658470
2020-10-05T17:08:34
2020-10-05T17:08:34
301,481,842
0
0
null
null
null
null
UTF-8
C++
false
false
444
h
#pragma once #include <string> #include <iostream> using namespace std; class Passenger { public: Passenger(); Passenger(const Passenger& p); ~Passenger(); string getName()const; int getFlightNum()const; bool operator==(const Passenger &pass); //Checks if two passenger instances have are equivalent bool operator!=(const Passenger &pass); //Checks if two passenger instances are not equal private: string name; int flightNum; };
[ "kduncan@nnu.edu" ]
kduncan@nnu.edu
062bebbf96ce9caeb57f941c92dec2d9f53cf159
fc79fe29914d224d9f3a1e494aff6b8937be723f
/Libraries/Rim Physics/include/rim/physics/shapes/rimPhysicsCollisionShapeBase.h
08577d08ff43f53bfe91c0023305b6876fd135ec
[]
no_license
niti1987/Quadcopter
e078d23dd1e736fda19b516a5cd5e4aca5aa3c50
6ca26b1224395c51369442f202d1b4c4b7188351
refs/heads/master
2021-01-01T18:55:55.210906
2014-12-09T23:37:09
2014-12-09T23:37:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,184
h
/* * rimPhysicsCollisionShapeBase.h * Rim Physics * * Created by Carl Schissler on 11/28/09. * Copyright 2009 Rim Software. All rights reserved. * */ #ifndef INCLUDE_RIM_PHYSICS_COLLISION_SHAPE_BASE_H #define INCLUDE_RIM_PHYSICS_COLLISION_SHAPE_BASE_H #include "rimPhysicsShapesConfig.h" #include "rimPhysicsCollisionShape.h" //########################################################################################## //************************ Start Rim Physics Shapes Namespace **************************** RIM_PHYSICS_SHAPES_NAMESPACE_START //****************************************************************************************** //########################################################################################## //******************************************************************************** //******************************************************************************** //******************************************************************************** /// A class from which all collision shape subclasses should derive that simplifies shape typing. /** * This class simplifies CollisionShape subclassing by automatically providing * CollisionShapeType information to the CollisionShape based on the * SubType template parameter. */ template < typename SubType > class CollisionShapeBase : public CollisionShape { public: //******************************************************************************** //******************************************************************************** //******************************************************************************** //****** Constructors /// Create a base collision shape. RIM_FORCE_INLINE CollisionShapeBase() : CollisionShape( &type ) { } /// Create a base collision shape with the specified material. RIM_FORCE_INLINE CollisionShapeBase( const CollisionShapeMaterial& newMaterial ) : CollisionShape( &type, newMaterial ) { } private: //******************************************************************************** //******************************************************************************** //******************************************************************************** //****** Private Data Members /// A CollisionShapeType object representing the type of this base collision shape. /** * The type object is created directly from the SubType template parameter. */ static const CollisionShapeType type; }; template < typename SubType > const CollisionShapeType CollisionShapeBase<SubType>:: type = CollisionShapeType::of<SubType>(); //########################################################################################## //************************ End Rim Physics Shapes Namespace ****************************** RIM_PHYSICS_SHAPES_NAMESPACE_END //****************************************************************************************** //########################################################################################## #endif // INCLUDE_RIM_PHYSICS_COLLISION_SHAPE_BASE_H
[ "niti1987@gmail.com" ]
niti1987@gmail.com
04f271450d44ad7b7dceba4a68aced6853f2c35b
1b48b76992426b3b6411bbad2487cd66755f4dab
/src/texteditor/basehoverhandler.h
a12f478048a43ff0445cad190353851d9261f5bc
[]
no_license
OSLL/sca
db36814bdf0c3d575ced38562f9223cef4f2fce5
389a0a6973052abb1ae0e7d995f5d3c54fd72481
refs/heads/master
2020-05-07T11:12:12.329830
2014-03-10T10:03:06
2014-03-10T10:03:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,068
h
/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef BASEHOVERHANDLER_H #define BASEHOVERHANDLER_H #include "texteditor_global.h" #include "helpitem.h" #include <QObject> #include <QString> QT_BEGIN_NAMESPACE class QPoint; QT_END_NAMESPACE namespace Core { class IEditor; } namespace TextEditor { class ITextEditor; class BaseTextEditorWidget; class TEXTEDITOR_EXPORT BaseHoverHandler : public QObject { Q_OBJECT public: BaseHoverHandler(QObject *parent = 0); ~BaseHoverHandler(); private slots: void editorOpened(Core::IEditor *editor); void showToolTip(TextEditor::ITextEditor *editor, const QPoint &point, int pos); void updateContextHelpId(TextEditor::ITextEditor *editor, int pos); protected: void setToolTip(const QString &tooltip); void appendToolTip(const QString &extension); const QString &toolTip() const; void addF1ToToolTip(); void setIsDiagnosticTooltip(bool isDiagnosticTooltip); bool isDiagnosticTooltip() const; void setLastHelpItemIdentified(const HelpItem &help); const HelpItem &lastHelpItemIdentified() const; private: void clear(); void process(ITextEditor *editor, int pos); virtual bool acceptEditor(Core::IEditor *editor) = 0; virtual void identifyMatch(ITextEditor *editor, int pos) = 0; virtual void decorateToolTip(); virtual void operateTooltip(ITextEditor *editor, const QPoint &point); bool m_diagnosticTooltip; QString m_toolTip; HelpItem m_lastHelpItemIdentified; }; } // namespace TextEditor #endif // BASEHOVERHANDLER_H
[ "exzo0mex@gmail.com" ]
exzo0mex@gmail.com
8f7e2dc9231aaa232520ebfa698a61a12818c8dc
cd605e76b971ac5f49135cd2e2208df43ae1d68b
/2015/Spring 15/CSCI 2400/Homework/HW5/shlab-handout/tsh.cc
45a143204e26834ad66a03614f2e4a7ec18b394a
[]
no_license
nisheshshukla/CU
9645487500c8d951b8cf08950ede13fe60386dd1
d7e1fad5683edcf97826c86ecf6e4f022364cca3
refs/heads/master
2021-05-29T14:52:11.620927
2015-09-28T19:14:49
2015-09-28T19:14:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,657
cc
// // tsh - A tiny shell program with job control // // Nishesh Shukla - nish3996 (101994823) using namespace std; #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <ctype.h> #include <signal.h> #include <sys/types.h> #include <sys/wait.h> #include <errno.h> #include <string> #include "globals.h" #include "jobs.h" #include "helper-routines.h" // // Needed global variable definitions // static char prompt[] = "tsh> "; int verbose = 0; // // You need to implement the functions eval, builtin_cmd, do_bgfg, // waitfg, sigchld_handler, sigstp_handler, sigint_handler // // The code below provides the "prototypes" for those functions // so that earlier code can refer to them. You need to fill in the // function bodies below. // void eval(char *cmdline); int builtin_cmd(char **argv); void do_bgfg(char **argv); void waitfg(pid_t pid); void sigchld_handler(int sig); void sigtstp_handler(int sig); void sigint_handler(int sig); // // main - The shell's main routine // int main(int argc, char **argv) { int emit_prompt = 1; // emit prompt (default) // // Redirect stderr to stdout (so that driver will get all output // on the pipe connected to stdout) // dup2(1, 2); /* Parse the command line */ char c; while ((c = getopt(argc, argv, "hvp")) != EOF) { switch (c) { case 'h': // print help message usage(); break; case 'v': // emit additional diagnostic info verbose = 1; break; case 'p': // don't print a prompt emit_prompt = 0; // handy for automatic testing break; default: usage(); } } // // Install the signal handlers // // // These are the ones you will need to implement // Signal(SIGINT, sigint_handler); // ctrl-c Signal(SIGTSTP, sigtstp_handler); // ctrl-z Signal(SIGCHLD, sigchld_handler); // Terminated or stopped child // // This one provides a clean way to kill the shell // Signal(SIGQUIT, sigquit_handler); // // Initialize the job list // initjobs(jobs); // // Execute the shell's read/eval loop // for(;;) { // // Read command line // if (emit_prompt) { printf("%s", prompt); fflush(stdout); } char cmdline[MAXLINE]; if ((fgets(cmdline, MAXLINE, stdin) == NULL) && ferror(stdin)) { app_error("fgets error"); } // // End of file? (did user type ctrl-d?) // if (feof(stdin)) { fflush(stdout); exit(0); } printf("%s",cmdline); // // Evaluate command line // eval(cmdline); fflush(stdout); fflush(stdout); } exit(0); //control never reaches here } ///////////////////////////////////////////////////////////////////////////// // // eval - Evaluate the command line that the user has just typed in // // If the user has requested a built-in command (quit, jobs, bg or fg) // then execute it immediately. Otherwise, fork a child process and // run the job in the context of the child. If the job is running in // the foreground, wait for it to terminate and then return. Note: // each child process must have a unique process group ID so that our // background children don't receive SIGINT (SIGTSTP) from the kernel // when we type ctrl-c (ctrl-z) at the keyboard. // void eval(char *cmdline) { /* Parse command line */ // // The 'argv' vector is filled in by the parseline // routine below. It provides the arguments needed // for the execve() routine, which you'll need to // use below to launch a process. // char *argv[MAXARGS]; // // The 'bg' variable is TRUE if the job should run // in background mode or FALSE if it should run in FG // pid_t pid; sigset_t mask; int bg = parseline(cmdline, argv); if (argv[0] == NULL) return; /* ignore empty lines */ if(!builtin_cmd(argv)){ sigemptyset(&mask); sigaddset(&mask,SIGCHLD); sigprocmask(SIG_BLOCK, &mask,NULL); if((pid = fork()) == 0) { /*Child runs user job*/ setpgid(0, 0); sigprocmask(SIG_UNBLOCK, &mask,NULL); if(execve(argv[0],argv,environ) < 0) { //Check if command exists printf("%s: Command not found. \n",argv[0]); exit(0); } } /*Parent waits for foreground job to terminate */ if(!bg) { if(addjob(jobs, pid, FG, cmdline)) //Check whether addjob works or not { sigprocmask(SIG_UNBLOCK,&mask,NULL); waitfg(pid); } else{kill(-pid,SIGINT);}; //if it doesnt then kill the child } else { if(addjob(jobs, pid, BG, cmdline)) //check whether addjob works or not { sigprocmask(SIG_UNBLOCK,&mask,NULL); printf("[%d] (%d) %s",pid2jid(pid),pid,cmdline); } else{kill(-pid,SIGINT);}; //if it doesnt then kill the child } } return; } ///////////////////////////////////////////////////////////////////////////// // // builtin_cmd - If the user has typed a built-in command then execute // it immediately. The command name would be in argv[0] and // is a C string. We've cast this to a C++ string type to simplify // string comparisons; however, the do_bgfg routine will need // to use the argv array as well to look for a job number. int builtin_cmd(char **argv) { //initialize all the strings string cmd(argv[0]); string bg="bg"; string fg="fg"; string quit="quit"; string jobstr="jobs"; //execute it immediately if its a built in command //else go through the regular process if(argv[0]==bg||argv[0]==fg) { do_bgfg(argv); return 1; } else if (argv[0]==quit) { sigchld_handler(1); exit(EXIT_SUCCESS); } else if(argv[0]==jobstr) { listjobs(jobs); return 1; } return 0; /* not a builtin command */ } ///////////////////////////////////////////////////////////////////////////// // // do_bgfg - Execute the builtin bg and fg commands // void do_bgfg(char **argv) { struct job_t *jobp=NULL; /* Ignore command if no argument */ if (argv[1] == NULL) { printf("%s command requires PID or %%jobid argument\n", argv[0]); return; } /* Parse the required PID or %JID arg */ if (isdigit(argv[1][0])) { pid_t pid = atoi(argv[1]); if (!(jobp = getjobpid(jobs, pid))) { printf("(%d): No such process\n", pid); return; } } else if (argv[1][0] == '%') { int jid = atoi(&argv[1][1]); if (!(jobp = getjobjid(jobs, jid))) { printf("%s: No such job\n", argv[1]); return; } } else { printf("%s: argument must be a PID or %%jobid\n", argv[0]); return; } // // You need to complete rest. At this point, // the variable 'jobp' is the job pointer // for the job ID specified as an argument. // // Your actions will depend on the specified command // so we've converted argv[0] to a string (cmd) for // your benefit. // kill first kill(-jobp->pid,SIGCONT); string cmd(argv[0]); if(cmd == "fg"){ jobp->state = FG; waitfg(jobp->pid); } else { // else print it out jobp->state = BG; printf("[%d] (%d) %s",jobp->jid,jobp->pid,jobp->cmdline); } return; } ///////////////////////////////////////////////////////////////////////////// // // waitfg - Block until process pid is no longer the foreground process // void waitfg(pid_t pid) { while(fgpid(jobs)==pid) {} //it holds off the process, until the process is done. return; } ///////////////////////////////////////////////////////////////////////////// // // Signal handlers // ///////////////////////////////////////////////////////////////////////////// // // sigchld_handler - The kernel sends a SIGCHLD to the shell whenever // a child job terminates (becomes a zombie), or stops because it // received a SIGSTOP or SIGTSTP signal. The handler reaps all // available zombie children, but doesn't wait for any other // currently running children to terminate. // void sigchld_handler(int sig) { pid_t pid; int status; while ((pid=waitpid(WAIT_ANY,&status,WNOHANG|WUNTRACED)) > 0){ if(WIFSIGNALED(status)){ //sending to the shell when child terminated fprintf(stderr, "Job [%d] (%d) terminated by signal %d\n", pid2jid(pid),pid,WTERMSIG(status)); } else if(WIFSTOPPED(status)) // when it recieved a stop signal { fprintf(stderr, "Job [%d] (%d) stopped by signal %d\n", pid2jid(pid),pid,WSTOPSIG(status)); return; } deletejob(jobs, pid); } return; } ///////////////////////////////////////////////////////////////////////////// // // sigint_handler - The kernel sends a SIGINT to the shell whenver the // user types ctrl-c at the keyboard. Catch it and send it along // to the foreground job. // void sigint_handler(int sig) { pid_t fgid=fgpid(jobs); //when entered ctrl+c to distrupt the foreground process. Execute the following kill command if(fgid) { kill(-fgid,SIGINT); } return; } ///////////////////////////////////////////////////////////////////////////// // // sigtstp_handler - The kernel sends a SIGTSTP to the shell whenever // the user types ctrl-z at the keyboard. Catch it and suspend the // foreground job by sending it a SIGTSTP. // void sigtstp_handler(int sig) { pid_t fgid=fgpid(jobs); //stop when ctrl+z is executed. execute the following command. if(fgid) { kill(-fgid,SIGTSTP); job_t *currentJob=getjobpid(jobs,fgid); (*currentJob).state = ST; } return; } /********************* * End signal handlers *********************/
[ "nish3996@colorado.edu" ]
nish3996@colorado.edu
2cc7bf0bed917a9bbbfdbead34deb695b4a68a1a
bdc5de0a9eb501933f553dc44b314f6534050125
/ContainerWithMostWater.cpp
e5ec8a8f5ab8beff9dba8c38ce5201ad47a323f8
[]
no_license
gupenghu/LeetCode
5e689ae91ca5eda92b60aa9eb828faf44bc8e8a6
912d0084733a02b43511d248543b5cb49c4923ea
refs/heads/master
2020-12-24T19:18:29.830942
2017-05-19T10:30:50
2017-05-19T10:30:50
31,646,815
0
0
null
null
null
null
UTF-8
C++
false
false
572
cpp
class Solution { public: int maxArea(vector<int>& height) { int result = 0; int capacity = 0; int start = 0,end = height.size() - 1; while(start < end){ if(height[start] <= height[end]){ capacity = (end - start) * height[start]; result = result > capacity ? result : capacity; start++; } else{ capacity = (end - start) * height[end]; result = result > capacity ? result : capacity; end--; } } return result; } };
[ "806088082@qq.com" ]
806088082@qq.com