blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
3640cf1b45a6fa5f09736ba61949636e9ea08705
625ef45569fc3c1843fcfb2e25cc5f6229c73cc9
/src/eos.modules/eosmodule.kinect/KinectManager.h
54bb8e5bc963451b28ff65e366592cad49ed3f9b
[ "MIT" ]
permissive
zester/eos-multimedia-scripting
25db29be5f7d9492fcecc44231fb85dfba022778
8cbc98fd6a2d53cbb322156ea8e83883b4fda6bc
refs/heads/master
2020-02-26T13:36:20.876932
2014-02-21T12:50:49
2014-02-21T12:50:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,768
h
KinectManager.h
/* ----------------------------------------------------------------------------- This source file is part of EOS Multimedia Scripting System For the latest info, see https://github.com/ultimoistante/eos-multimedia-scripting The MIT License (MIT) Copyright (c) 2014-2019 of Salvatore Carotenuto aka ultimoistante of StartupSolutions (mailto: ultimoistante@gmail.com | www.startupsolutions.it) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------------- */ #ifndef EOS_KINECT_KINECTMANAGER_H #define EOS_KINECT_KINECTMANAGER_H #include "EOSObject.h" #include "eos_data_containers.h" #include "EOSLuaRuntime.h" #include <XnCppWrapper.h> #include <XnOpenNI.h> #include <vector> #include <string> #define DISPLAY_MODE_OVERLAY 1 #define DISPLAY_MODE_DEPTH 2 #define DISPLAY_MODE_IMAGE 3 #define DEFAULT_DISPLAY_MODE DISPLAY_MODE_IMAGE #define EVT_NEWUSER 1 #define EVT_LOSTUSER 2 #define EVT_POSEDETECTED 3 #define EVT_CALIBRATIONSTART 4 #define EVT_CALIBRATIONEND 5 #define EVT_CALIBRATIONFAIL 6 using namespace xn; /*typedef struct RGB24_t { unsigned char r; unsigned char g; unsigned char b; } RGB24;*/ class KinectManager { public: KinectManager(); virtual ~KinectManager(); static KinectManager *getInstance(); bool powerOn(); void shutdown(); void update(); // UserGenerator& getUserGenerator() { return this->userGen; } bool isPoseNeeded() { return this->needPose; } // EOSObject* getRGBFramebufferObject(); private: static bool instanceFlag; static KinectManager* instance; static char luaCmdBuffer[512]; // Context context; DepthGenerator depthGen; ImageGenerator imageGen; UserGenerator userGen; DepthMetaData depthMD; ImageMetaData imageMD; unsigned int nViewState; // eos_rgba_pixel* rgbaBuffer; unsigned long rgbaBufferSize; unsigned int bufferWidth; unsigned int bufferHeight; uint width; uint height; eos_imagedata shared_imagedata; // bool needPose; static char strPose[20]; static void XN_CALLBACK_TYPE User_NewUser(xn::UserGenerator& generator, XnUserID nId, void* pCookie); static void XN_CALLBACK_TYPE User_LostUser(xn::UserGenerator& generator, XnUserID nId, void* pCookie); static void XN_CALLBACK_TYPE UserPose_PoseDetected(xn::PoseDetectionCapability& capability, const XnChar* strPose, XnUserID nId, void* pCookie); static void XN_CALLBACK_TYPE UserCalibration_CalibrationStart(xn::SkeletonCapability& capability, XnUserID nId, void* pCookie); static void XN_CALLBACK_TYPE UserCalibration_CalibrationComplete(xn::SkeletonCapability& capability, XnUserID nId, XnCalibrationStatus eStatus, void* pCookie); } ; #endif
80049ea3bba8ffbf0ebee35f455a8b6481965db0
06447997ea319a9faeff680e96626cdf05c251c9
/Transport-Guide-CPP/Guide/Route/Stop.hpp
ce968fe8dc251166fcc91fc1501ae6ab39cdbf5e
[ "MIT" ]
permissive
Cheshulko/Transport-Guide-CPP
844d197a96a3afa120ae3ac9e9c716f692fe0f83
84d8e447ecf45d1f6f7598ef773b70d6611413e8
refs/heads/master
2022-11-13T04:43:20.629372
2020-07-12T20:31:26
2020-07-12T20:31:26
277,104,381
0
0
null
null
null
null
UTF-8
C++
false
false
2,273
hpp
Stop.hpp
// // Stop.hpp // transportnyi-spravochnik // // Created by Mykyta Cheshulko on 02.07.2020. // Copyright © 2020 Mykyta Cheshulko. All rights reserved. // #ifndef Stop_hpp #define Stop_hpp #include "GeoPoint.hpp" #include "Route.hpp" #include <string> #include <optional> #include <memory> #include <cassert> #include <iostream> #include <vector> #include <map> namespace guide::route { class Route; } namespace guide::route { class Stop { public: enum class Completion: size_t { Complete, Nocoord }; struct SharedComparator { bool operator()( const std::shared_ptr<Stop>& a, const std::shared_ptr<Stop>& b) const { return *a < *b; } }; struct WeakComparator { bool operator()( const std::weak_ptr<Stop>& a, const std::weak_ptr<Stop>& b) const { assert(a.lock() != nullptr); assert(b.lock() != nullptr); return *a.lock() < *b.lock(); } }; public: explicit Stop(std::string name); Stop(std::string name, const GeoPoint& geoPoint); void SetGeoPoint(const GeoPoint& geoPoint); bool AddCrossingRoute(std::weak_ptr<Route> route); bool AddNeighborStopsDistance(std::weak_ptr<Stop> stop, size_t distance); bool UpdateNeighborStopsDistance(std::weak_ptr<Stop> stop, size_t distance); std::optional<size_t> FindNeighborStopDistance(std::shared_ptr<Stop> stop) const; const std::string& GetName() const; std::optional<GeoPoint> GetGeoPoint() const; const std::vector<std::weak_ptr<Route>>& GetCrossingRoutes() const; const std::map<std::weak_ptr<Stop>, size_t, Stop::WeakComparator>& GetNeighborStopsDistances() const; bool IsComplete() const; bool operator==(const Stop& rhs) const; bool operator<(const Stop& rhs) const; private: std::string name_; std::optional<GeoPoint> geoPoint_; Completion completion_; std::vector<std::weak_ptr<Route>> crossingRoutes_; std::map<std::weak_ptr<Stop>, size_t, Stop::WeakComparator> neighborStopsDistances_; }; std::ostream& operator<<(std::ostream& os, const Stop& stop); } #endif /* Stop_hpp */
15a1616d0193a250f2c84460c80abb644c27d7cd
afa59b7b69f09b924061eade6ecfd77bed61ebac
/controllers/ros44/RosEmitter.cpp
d053b5676ee95682c0f98d3acaa874d960f90c2b
[]
no_license
ekuo1/rovey2
a8ead58269be266a7f880c6cac2da7dbc5fc5270
db883dd7ae6b96465a16c83a57394cc2acb9b139
refs/heads/master
2020-04-13T14:25:15.274334
2019-01-05T07:29:52
2019-01-05T07:29:52
163,262,441
0
0
null
null
null
null
UTF-8
C++
false
false
2,289
cpp
RosEmitter.cpp
#include "RosEmitter.hpp" RosEmitter::RosEmitter(Emitter *emitter, Ros *ros) : RosDevice(emitter, ros) { mEmitter = emitter; std::string fixedDeviceName = RosDevice::fixedDeviceName(); mSendServer = RosDevice::rosAdvertiseService((ros->name())+'/'+fixedDeviceName+"/send", &RosEmitter::sendCallback); mGetBufferSizeServer = RosDevice::rosAdvertiseService((ros->name())+'/'+fixedDeviceName+"/get_buffer_size", &RosEmitter::getBufferSizeCallback); mGetChannelServer = RosDevice::rosAdvertiseService((ros->name())+'/'+fixedDeviceName+"/get_channel", &RosEmitter::getChannelCallback); mGetRangeServer = RosDevice::rosAdvertiseService((ros->name())+'/'+fixedDeviceName+"/get_range", &RosEmitter::getRangeCallback); mSetChannelServer = RosDevice::rosAdvertiseService((ros->name())+'/'+fixedDeviceName+"/set_channel",&RosEmitter::setChannelCallback); mSetRangeServer = RosDevice::rosAdvertiseService((ros->name())+'/'+fixedDeviceName+"/set_range", &RosEmitter::setRangeCallback); } RosEmitter::~RosEmitter() { mSendServer.shutdown(); mGetBufferSizeServer.shutdown(); mGetChannelServer.shutdown(); mGetRangeServer.shutdown(); mSetChannelServer.shutdown(); mSetRangeServer.shutdown(); } bool RosEmitter::sendCallback(webots_ros::set_string::Request &req, webots_ros::set_string::Response &res) { mEmitter->send((void *)req.value.c_str(), req.value.size()); res.success = true; return true; } bool RosEmitter::getBufferSizeCallback(webots_ros::get_int::Request &req, webots_ros::get_int::Response &res) { res.value = mEmitter->getBufferSize(); return true; } bool RosEmitter::getChannelCallback(webots_ros::get_int::Request &req, webots_ros::get_int::Response &res) { res.value = mEmitter->getChannel(); return true; } bool RosEmitter::getRangeCallback(webots_ros::get_float::Request &req, webots_ros::get_float::Response &res) { res.value = mEmitter->getRange(); return true; } bool RosEmitter::setChannelCallback(webots_ros::set_int::Request &req, webots_ros::set_int::Response &res) { mEmitter->setChannel(req.value); res.success = true; return true; } bool RosEmitter::setRangeCallback(webots_ros::set_float::Request &req, webots_ros::set_float::Response &res) { mEmitter->setRange(req.value); res.success = true; return true; }
bfdde81bab5f77f049a695cbe44be19d5fc41daf
6883ab72c4498312e31abac6b9739dda8e2242fb
/com/mainwindow.cpp
66a51e27f7b26047dad21eb2064078a647786efe
[]
no_license
tungngovn/PIC16F877A_UART_PC
822b068f56f80a042ed235d45e98272b43a0fd14
9fec668307cb2c58f0ac8ca9f14defd03666be0f
refs/heads/master
2020-05-16T05:16:49.336368
2019-12-21T16:49:59
2019-12-21T16:49:59
182,810,990
7
0
null
null
null
null
UTF-8
C++
false
false
2,436
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include <QtSerialPort> #include <QString> QSerialPort * serialPort; int count = 0; int times = 0; QString t; QString u; MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); // Initialize serial port serialPort = new QSerialPort(this); serialPort->setPortName("/dev/ttyUSB0"); serialPort->setBaudRate(QSerialPort::Baud9600); serialPort->setDataBits(QSerialPort::Data8); serialPort->setParity(QSerialPort::NoParity); serialPort->setStopBits(QSerialPort::OneStop); serialPort->open(QIODevice::ReadWrite); connect(serialPort, SIGNAL(readyRead()),this,SLOT(serialport_read())); // Initialize graph ui->plotTemp->addGraph(); ui->plotTemp->graph(0)->setPen(QPen(Qt::red)); ui->plotHumid->addGraph(); ui->plotHumid->graph(0)->setPen(QPen(Qt::blue)); } MainWindow::~MainWindow() { delete ui; serialPort->close(); } void MainWindow::addPointTemp(double x, double y) { qv_x.append(x); qv_y.append(y); } void MainWindow::plotTemp() { ui->plotTemp->graph(0)->setData(qv_x,qv_y); ui->plotTemp->graph(0)->rescaleAxes(); ui->plotTemp->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); ui->plotTemp->replot(); ui->plotTemp->update(); } void MainWindow::addPointHumid(double x, double y) { hv_x.append(x); hv_y.append(y); } void MainWindow::plotHumid() { ui->plotHumid->graph(0)->setData(hv_x,hv_y); ui->plotHumid->graph(0)->rescaleAxes(); ui->plotHumid->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); ui->plotHumid->replot(); ui->plotHumid->update(); } void MainWindow::serialport_read() { QString a = serialPort->readAll(); count = count%4; switch (count) { case 0: t.append(a); break; case 1: t.append(a); if(t.toInt() < 50){ ui->progressBar_2->setValue(t.toInt()); addPointTemp(double(times), t.toDouble()); plotTemp(); } t.clear(); break; case 2: u.append(a); break; case 3: u.append(a); ui->progressBar->setValue(u.toInt()); addPointHumid(double(times), u.toDouble()); plotHumid(); u.clear(); times++; break; default: break; } count++; }
31464bb2a3142274be2fcb192c1bdf5da25d6001
55ec83151272076bc2411bc4a4ee17ebb67de2cd
/csce313pr2step1/Scheduler.cpp
c1f1d7827167a5331819eaf5232bd827450f3255
[]
no_license
dtracers/SchoolWork
efb13150b5e5b397389d73921f224ccf940292e7
93b32dd35897657548de57d2da5a8635aae133bd
refs/heads/master
2021-01-22T23:21:30.796600
2014-04-02T20:26:38
2014-04-02T20:26:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,828
cpp
Scheduler.cpp
/* * Scheduler.cpp * * Created on: Mar 17, 2012 * Author: gigemjt */ #include "Scheduler.h" #include "Schedulable.h" Scheduler::Scheduler(char _name[]) { strncpy(name, _name, MAX_NAME_LEN); scheduler_mutex=new Semaphore(-1); } Scheduler::~Scheduler() { // TODO Auto-generated destructor stub } int Scheduler::Kick_Off( ) { // printf("I am kicking off"); // cerr<<"dequieing"<<endl; Schedulable* newTask=this->dequeue(); // cerr<<"done dequieing"<<endl; scheduler_mutex->P(); // cerr<<"new task is now current task in kickoff"; current_task=newTask; scheduler_mutex->V(); current_task->Unblock(); // cerr<<"done kicking off!"; } int Scheduler::Resume(Schedulable* _task) { // cerr<<"resuming!"; // cerr<<"resuming task "<<_task<<endl; enqueue(_task); //_task->Unblock();//probably do other stuff } int Scheduler::Start(Schedulable* _task) { // cout<<"enquing "<<_task<<endl; enqueue(_task); // cerr<<"Task is blocked"<<endl; _task -> Block(); // return _task->Start(); } int Scheduler::Yield() { // cerr<<"yielding task"<<endl; scheduler_mutex->P(); Schedulable* oldtask=current_task; scheduler_mutex->V(); if(ready_queue.size() > 0) { // cerr<<"queue size"<<ready_queue.size()<<endl; Schedulable* newTask=this->dequeue(); scheduler_mutex->P(); current_task=newTask; scheduler_mutex->V(); }else { cerr<<"ready size is zero"<<endl; } current_task -> Unblock(); if(oldtask!=NULL) { oldtask->Block(); } } int Scheduler::enqueue(Schedulable* _task) { scheduler_mutex->P(); this->ready_queue.push_back(_task); scheduler_mutex->V(); } Schedulable* Scheduler::dequeue() { Schedulable* sched=NULL; if(ready_queue.size() > 0) { scheduler_mutex->P(); sched=this->ready_queue.front(); this->ready_queue.pop_front(); scheduler_mutex->V(); }else { } return sched; }
5e5dfa23a8b191fb521c43de2e68426b9ca0f130
4cbe457618baf4ebb2d15346e7749526714ea76f
/Code/Game/Game.cpp
4bc57ea034283c084c84368d75b5358395e7270e
[ "MIT" ]
permissive
adamenkov/jet-story
67448b299ad7573e24d6156310228141e0b8b855
f095b24007796e739a764a0cd886c520bc3a78dd
refs/heads/master
2022-12-18T14:27:43.093159
2021-10-05T23:49:02
2021-10-05T23:49:02
50,054,950
5
1
MIT
2022-12-08T22:10:43
2016-01-20T19:34:09
Assembly
UTF-8
C++
false
false
1,210
cpp
Game.cpp
#include "../Shared/Game.h" #include "../Shared/Engine.h" #include "Debug.h" #include "GameStates.h" #include "Maze.h" #include "Sounds.h" namespace { bool bExitDialog = false; } // namespace namespace Game { const char* GetName() { return "Jet-Story"; } bool Init() { return Sounds::Init() && Maze::GetMaze().Init() && GameStates::Init(); } void ShutDown() { GameStates::ShutDown(); Maze::GetMaze().ShutDown(); } void Render() { if (bExitDialog) { Engine::Print(8, 9, EColor::White, "EXIT JET-STORY?"); Engine::Print(5, 13, EColor::White, "ENTER=YES ESC=NO"); } else { GameStates::Render(); } } void Update() { if (!bExitDialog) { GameStates::Update(); } } void KeyPressed(char key) { if (key == VK_ESCAPE) { bExitDialog = !bExitDialog; if (bExitDialog) { Audio::PauseAll(); } else { Audio::ResumeAll(); } return; } if (bExitDialog) { if (key == VK_RETURN) { Engine::Exit(); } } else { GameStates::KeyPressed(key); Debug::KeyPressed(key); } } } // namespace Game
2a2b3b6634e17b5412401eb22ebe72ca5b05b100
101f993d9e3a636e2c773aaad06ec4e7a49fd5c4
/LuaControlAlgorithm.h
bb7e08e6336a4b0ef87f822e3a52fecd90b57c59
[]
no_license
freescale-cup-simulator/camera-simulator
51d475695d2f8004cf5fb820598f25f107850c18
5ed16ccb6ea80ac8ab7e5ab63ddc9d1dad78bdef
refs/heads/master
2020-04-24T12:08:10.487821
2013-08-24T10:34:38
2013-08-24T10:34:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
680
h
LuaControlAlgorithm.h
#ifndef LUACONTROLALGORITHM_H #define LUACONTROLALGORITHM_H #include <IControlAlgorithm.h> #include <lua.hpp> class LuaControlAlgorithm : public IControlAlgorithm { Q_OBJECT public: LuaControlAlgorithm(QObject * parent = nullptr); ~LuaControlAlgorithm(); bool loadFile(const QString & file); QString getId(); void setInterval(int msec); private: bool executeControlScript(const QByteArray & frame); lua_State * m_lua_state; QString m_current_file; bool m_lua_loaded; int m_interval; public slots: void onCameraResponse(const QByteArray & data); void init(); signals: void unloaded(); }; #endif // LUACONTROLALGORITHM_H
fcbbef72642a6ee7b8661c564f21334903407194
67d7bb97437dedae43b0f98c83e22fdd92f00a7d
/TrippleX.cpp
bbce87ec7163474a0bd4293c0fb1ae09d80be304
[]
no_license
RileyBurg/CPP3digitGuessGame
95cd3004f99e34ccf97912abf772395532a12eec
8138fbfda2befe3841debb4f56b24fd64a22526b
refs/heads/master
2020-07-23T01:48:06.195914
2019-09-09T21:17:28
2019-09-09T21:17:28
207,406,176
0
0
null
null
null
null
UTF-8
C++
false
false
1,709
cpp
TrippleX.cpp
#include <iostream> void printIntroduction(int Difficulty) { std::cout << "\nYou're currently at level: " << Difficulty << std::endl; std::cout << "Enter the correct code to continue...\n"; } bool PlayGame(int Difficulty) { printIntroduction(Difficulty); //Declare the 3 number code. const int a {rand() % Difficulty + 1}; const int b {rand() % Difficulty + 1}; const int c {rand() % Difficulty + 1}; const int sum = a + b + c; const int product = a*b*c; //Print sum and product to the terminal std::cout << "\n+ There are 3 numbers in the code." << std::endl; std::cout << "+ The codes add-up to : " << sum << std::endl; std::cout << "+ The codes multiply to give: " << product << std::endl; int guessA, guessB, guessC; std::cin >> guessA; std::cin >> guessB; std::cin >> guessC; std::cout << "You entered: " << guessA << " " << guessB << " " << guessC;; int guessSum = guessA + guessB + guessC; int guessProd = guessA * guessB * guessC; if (guessSum == sum && guessProd == product) { std::cout << "\n**You've guessed correct! Keep going.**" << std::endl; return true; } else { std::cout << "\n**You have failed. Try again!**"<<std::endl; return false; } } int main() { int const maxDifficulty = 5; int levelDifficulty = 1; while (levelDifficulty <= maxDifficulty) { bool bLevelComplete = PlayGame(levelDifficulty); std::cin.clear(); std::cin.ignore(); if(bLevelComplete) { ++levelDifficulty; } } std::cout << "\nYou have completed the game!" << std::endl; return 0; }
417c229b7a96fd357efa19df63b0f4260b004310
97e39ad68e5350faad04b2f63802e2ebefe382d8
/cxx/test/bundle/test_bundle.cc
005b018431b86e82d2d72e73b3d1132ca7e60072
[ "BSD-3-Clause" ]
permissive
Yangzhengtang/mspass
092545952c0225d519e71a8093aa1b491608de2f
7ac6db4afa7577f0e67981490fd89d50e35bf4c7
refs/heads/master
2023-08-22T10:17:33.196431
2021-10-01T14:25:09
2021-10-01T14:25:09
412,347,269
0
0
BSD-3-Clause
2021-10-01T05:59:50
2021-10-01T05:59:49
null
UTF-8
C++
false
false
9,971
cc
test_bundle.cc
#include <float.h> #include <string> #include <vector> #include "mspass/seismic/keywords.h" #include "mspass/seismic/TimeSeries.h" #include "mspass/seismic/Seismogram.h" #include "mspass/seismic/Ensemble.h" #include "mspass/algorithms/algorithms.h" using namespace std; using namespace mspass::algorithms; using namespace mspass::seismic; using namespace mspass::utility; /* Creates a time series with specified npts filled with constant, fill, value*/ TimeSeries make_testdatum(const string net, const string sta,const string chan, const string loc,const double dt, const double t0,const int npts, const double fill) { TimeSeries d(npts); for(size_t i=0;i<npts;++i)d.s[i]=fill; d.set_t0(t0); d.set_dt(dt); d.set_live(); d.set_tref(TimeReferenceType::UTC); d.force_t0_shift(0.0); d.put(SEISMICMD_net,net); d.put(SEISMICMD_sta,sta); d.put(SEISMICMD_chan,chan); d.put(SEISMICMD_loc,loc); string comp; comp.assign(chan,2,1); if(comp=="Z") { d.put(SEISMICMD_hang,0.0); d.put(SEISMICMD_vang,0.0); } /* For this test we don't worry about real issue of HH1 and HH2 */ else if(comp=="N") { d.put(SEISMICMD_hang,0.0); d.put(SEISMICMD_vang,90.0); } else { d.put(SEISMICMD_hang,90.0); d.put(SEISMICMD_vang,90.0); } return d; } void print_input_pattern(const LoggingEnsemble<TimeSeries>& e) { string sta,chan,loc,net; cout <<"net sta chan loc npts fill_value"<<endl; for(auto d=e.member.begin();d!=e.member.end();++d) { if(d->is_defined(SEISMICMD_net)) { cout << d->get_string(SEISMICMD_net)<<" "; } else { cout << "Undefined"<<" "; } if(d->is_defined(SEISMICMD_sta)) { cout << d->get_string(SEISMICMD_sta)<<" "; } else { cout << "Undefined"<<" "; } if(d->is_defined("chan")) { cout << d->get_string("chan")<<" "; } else { cout << "Undefined"<<" "; } if(d->is_defined(SEISMICMD_loc)) { loc=d->get_string(SEISMICMD_loc); if(loc=="") cout << "EMPTY "; else cout << loc << " "; } else { cout << "Undefined"<<" "; } cout << d->s[0]<< endl; } } void print_output(const LoggingEnsemble<Seismogram>& e) { string sta,chan,loc,net; cout <<"net sta chan loc npts fill_values"<<endl; int i(0); for(auto d=e.member.begin();d!=e.member.end();++d,++i) { /* Exception kill but insert dead Seismogram objects so we flag them in this print function */ if(d->dead()) { cout << "Ensemble member "<<i<<" was killed"<<endl; } if(d->is_defined(SEISMICMD_net)) { cout << d->get_string(SEISMICMD_net)<<" "; } else { cout << "Undefined"<<" "; } if(d->is_defined(SEISMICMD_sta)) { cout << d->get_string(SEISMICMD_sta)<<" "; } else { cout << "Undefined"<<" "; } if(d->is_defined(SEISMICMD_loc)) { loc=d->get_string(SEISMICMD_loc); if(loc!="") cout << d->get_string(SEISMICMD_loc)<<" "; else cout << "EMPTY" << " "; } else { cout << "Undefined"<<" "; } if(d->live()) { for(auto k=0;k<3;++k) { cout << d->u(k,0) << " "; } } else { cout << "NULL - killed"<<endl; } cout <<endl; } } bool compare_stas(const LoggingEnsemble<Seismogram>& d,const vector<string>& pattern) { size_t i(0); for(auto dptr=d.member.begin();dptr!=d.member.end();++dptr,++i) { string sta=dptr->get_string(SEISMICMD_sta); if(sta!=pattern[i]) return false; } return true; } /* used in exception handler tests */ int count_live(const LoggingEnsemble<Seismogram>& d) { int count=0; for(auto dptr=d.member.begin();dptr!=d.member.end();++dptr) { if(dptr->live()) ++count; } return count; } void print_ensemble_errors(const LoggingEnsemble<Seismogram>& d) { int count=0; for(auto dptr=d.member.begin();dptr!=d.member.end();++dptr,++count) { if(dptr->dead()) { cout << "Member number "<< count << " marked dead with this error message"<<endl; list<LogData> errors=dptr->elog.get_error_log(); for(auto e=errors.begin();e!=errors.end();++e) { /* Just print algorithm and message */ cout << e->algorithm << " generated this message: "<<e->message<<endl; } } } } int main(int argc, char **argv) { cout << "Starting test_bundle program"<<endl; LoggingEnsemble<TimeSeries> ens0, ens1, ens2, ens3, ens4; LoggingEnsemble<Seismogram> ens3c; // always holds output of bundle /* We will fill ens0 with a pattern we will mostly reuse. Data are intentionally in the wrong order to test sorting */ vector<string> sta; vector<string> net; vector<string> loc; vector<string>chan; net.push_back(string("AA")); net.push_back(string("XY")); sta.push_back(string("ABC")); sta.push_back(string("DEF")); sta.push_back(string("BBLONG")); chan.push_back(string("HHN")); chan.push_back(string("HHZ")); chan.push_back(string("HHE")); loc.push_back(string("00")); loc.push_back(string("")); const double dt1(0.01); const double t01(10000.0); const int npts1(100); int n(0); for(auto i=0;i<chan.size();++i) { for(auto j=0;j<net.size();++j) { for(auto k=0;k<loc.size();++k) { for(auto l=0;l<sta.size();++l) { double fill; ++n; fill=static_cast<double>(n); TimeSeries d; d=make_testdatum(net[j],sta[l],chan[i],loc[k],dt1,t01,npts1,fill); ens0.member.push_back(d); } } } } vector<string> pattern; // First set of tests should have sat in this order pattern.push_back("DEF"); pattern.push_back("DEF"); pattern.push_back("BBLONG"); pattern.push_back("BBLONG"); pattern.push_back("ABC"); pattern.push_back("ABC"); pattern.push_back("DEF"); pattern.push_back("DEF"); pattern.push_back("BBLONG"); pattern.push_back("BBLONG"); pattern.push_back("ABC"); pattern.push_back("ABC"); cout << "Input ensemble summary"<<endl; print_input_pattern(ens0); cout << "Running best case test for bundle_seed_data"<<endl; ens1=ens0; ens3c=bundle_seed_data(ens1); print_output(ens3c); assert(compare_stas(ens3c,pattern)); int nlive; nlive=count_live(ens3c); assert(nlive==12); ens2=ens0; cout << "Trying an ensemble with some net values undefined"<<endl; for(auto d=ens2.member.begin();d!=ens2.member.end();++d) { string netname; netname=d->get_string(SEISMICMD_net); if(netname=="AA") d->erase(SEISMICMD_net); } ens3c=bundle_seed_data(ens2); print_output(ens3c); assert(compare_stas(ens3c,pattern)); nlive=count_live(ens3c); assert(nlive==12); ens3=ens0; cout << "Trying similar test with some loc values undefined"<<endl; for(auto d=ens3.member.begin();d!=ens3.member.end();++d) { string name; name=d->get_string(SEISMICMD_loc); if(name=="00") d->erase(SEISMICMD_loc); } ens3c=bundle_seed_data(ens3); print_output(ens3c); assert(compare_stas(ens3c,pattern)); nlive=count_live(ens3c); assert(nlive==12); cout << "Test handling of pure duplicates"<<endl; ens2=ens0; ens2.member.push_back(ens0.member[4]); ens2.member.push_back(ens0.member[8]); ens3c=bundle_seed_data(ens2); print_output(ens3c); assert(compare_stas(ens3c,pattern)); nlive=count_live(ens3c); assert(nlive==12); cout << "Test handling of incomplete bundles"<<endl; ens2=ens0; ens2.member.erase(ens2.member.begin()); ens2.member.erase(ens2.member.end()); ens3c=bundle_seed_data(ens2); print_output(ens3c); assert(compare_stas(ens3c,pattern)); cout << "Testing handling of irregular start and end time"<<endl << "Note this is really a test of the CoreTimeSeries constructor used by bundle_seed_data" <<endl; ens4=ens0; double oldt0=ens4.member[0].t0(); ens4.member[0].set_t0(oldt0+0.2); // Assume all members have commons start time - true unless something is changed in test ens4.member[5].set_t0(oldt0-0.3); ens3c=bundle_seed_data(ens4); assert(compare_stas(ens3c,pattern)); cout << "Output member start and end times relative to base time shift"<<endl; for(auto d=ens3c.member.begin();d!=ens3c.member.end();++d) { d->ator(10000.0); cout << d->t0()<<" "<<d->endtime()<<endl; } assert(fabs(ens3c.member[9].endtime()-0.68)/0.68 < FLT_EPSILON); assert(fabs(ens3c.member[10].t0() - 0.2)/0.2 < FLT_EPSILON); assert(fabs(ens3c.member[10].endtime()-0.98)/0.98 < FLT_EPSILON); cout << "Testing exception handlers for unrepairable data"<<endl; ens4=ens0; oldt0=ens4.member[0].t0(); /* this will make a member without an overlap that will cause an exception to be thrown */ ens4.member[0].set_t0(oldt0+1000.0); /* This will generate an irregular sample rate error */ ens4.member[5].set_dt(0.5); ens3c=bundle_seed_data(ens4); cout << "test Ensemble output size="<<ens3c.member.size()<<endl; nlive=count_live(ens3c); cout << "This should say number marked live is 10"<<endl; cout << "Number marked live="<<nlive<<endl; cout << "This should show two different errors and define last two members as marked dead"<<endl; print_ensemble_errors(ens3c); assert(nlive==10); cout << "Testing sort function isolation"<<endl; ens2=ens1; /* Could not figure out a good assert to validate that the following work. The steps after will create errors if it didn't do what it should though.*/ seed_ensemble_sort(ens2); cout << "Testing BundleSEEDGroup"<<endl<<"First a test that should work"<<endl; Seismogram s; s=BundleSEEDGroup(ens2.member,0,2); assert(s.live()); cout << "Success - trying an improper bundle. This one should be killed"<<endl; s=BundleSEEDGroup(ens2.member,0,5); assert(s.dead()); cout << "Error message posted"<<endl; list<LogData> errors=s.elog.get_error_log(); for(auto e=errors.begin();e!=errors.end();++e) cout << *e<<endl; }
a2b80332f14b2de3b446094b6a0629f14e3b22ff
0b469793092fad87e74005924070989ef959fee4
/examples/example.cpp
df93f9e18a87c91a8fe3447bd177c0aa91cb44cf
[]
no_license
MakeshVineeth/WinBGIm
a2fc1c5e0a16f35f939f71ac886fa752c1fc5ad3
494fbc5514e348eecb6dde03e6eddfff6b7f9508
refs/heads/master
2023-08-25T18:18:18.163936
2021-10-29T15:30:19
2021-10-29T15:30:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
494
cpp
example.cpp
// This example was found online at // http://www.programmingsimplified.com/c/graphics.h // It demonstrates the OLD Borland C++ BGI method of // creating a graphics context. WinBGIm compiles it // without any problem. #include <graphics.h> int main() { int gd = DETECT, gm; int x = 320, y = 240, radius; initgraph(&gd, &gm, "C:\\TC\\BGI"); for ( radius = 25; radius <= 125 ; radius = radius + 20) circle(x, y, radius); getch(); closegraph(); return 0; }
91b01e9351b487da9f080eb8a94ef10e7d261e8c
18a0c524017dcced8c4766a46df6fb8a9adce83e
/Filter/ABORTED/FixControlChar/ReturnChar.h
30f80f8484cadaea4c9d291e81f79c36b625481e
[]
no_license
YukihoAA/araltrans02
766c483bde8ecec83d86f4ff0b4b34b87c5d9280
848f0379c1648ec0ad7624b8517764af5b80d67f
refs/heads/master
2021-05-03T12:55:10.410343
2018-02-07T09:15:59
2018-02-07T09:15:59
120,503,674
0
0
null
2018-02-06T18:22:49
2018-02-06T18:22:49
null
UTF-8
C++
false
false
103
h
ReturnChar.h
#pragma once class CReturnChar { public: CReturnChar(void); public: ~CReturnChar(void); };
4559c8bf6b7846604faa40bd1cc4f789577d676b
e6003d1dd19b590b026c3aaff15304d35450f659
/src/Graphics/Lighting.cpp
201f0855313adff36a4a0e5c9c5b5272b687a614
[]
no_license
Twiebs/Raptor
63ddbe6e46e294e91eb6dda7182ce467bc225c6e
4bbe89e704f32f9b1f9707141ce570e8c8ac68cb
refs/heads/master
2020-06-30T03:38:57.563653
2015-11-30T18:52:40
2015-11-30T18:52:40
34,770,110
0
0
null
null
null
null
UTF-8
C++
false
false
2,037
cpp
Lighting.cpp
#include "Lighting.hpp" #include "GLSLProgram.hpp" #include <string> #include <cmath> #include <GL/glew.h> PointLight::PointLight() { linear = 0.027f; quadratic = 0.0028f; float lightMax = std::fmaxf(std::fmaxf(color.x, color.y), color.z); radius = (-linear + sqrtf(linear * linear - 4 * quadratic * (1.0f - (256.0f / 5.0f) * lightMax))) / (2 * quadratic); } void PointLight::SetRadius (float radius) { this->radius = radius; linear = (2.0f / radius); quadratic = (1.0f / (radius*radius)); } inline void UniformVector3(GLint location, const Vector3& vector) { glUniform3fv(location, 1, &vector.x); } //void UniformDirectionalLight (GLuint shaderID, U32 lightIndex, const DirectionalLight& light) { // auto directionLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].direction").c_str()); // auto ambientLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].ambient").c_str()); // auto diffuseLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].diffuse").c_str()); // auto specularLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].specular").c_str()); // // UniformVector3(directionLoc, light.direction); // UniformVector3(ambientLoc, light.ambientColor); // UniformVector3(diffuseLoc, light.diffuseColor); // UniformVector3(specularLoc, light.specularColor); //} void UniformDirectionalLight (GLuint shaderID, U32 lightIndex, const DirectionalLight& light) { auto directionLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].direction").c_str()); auto colorLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].color").c_str()); auto ambientLoc = GetUniformLocation(shaderID, ("directionalLights[" + std::to_string(lightIndex) + "].ambient").c_str()); UniformVector3(directionLoc, light.direction); UniformVector3(colorLoc, light.color); glUniform1f(ambientLoc, light.ambient); }
605e005726113596f984afd49671d527dc24c499
7d139ecd60979a89236867022d073ee85b92d829
/snde/allocator.hpp
b79b83706be7ca30228fcb9a3a14f400e4b34bc4
[]
no_license
isuthermography/spatialnde2
59336f6ef313aa1b0e5759959fe647d509bdd09b
5cf6f0bcd9adad46827a6cffffe976709a6d6cd6
refs/heads/master
2023-05-27T20:44:38.615258
2023-05-10T17:20:10
2023-05-10T17:20:10
235,888,543
0
0
null
null
null
null
UTF-8
C++
false
false
28,089
hpp
allocator.hpp
#ifndef SNDE_ALLOCATOR_HPP #define SNDE_ALLOCATOR_HPP #include <mutex> #include <cstdint> #include <cstring> #include <cmath> #include "snde/memallocator.hpp" #include "snde/lockmanager.hpp" namespace snde { /* This is a toolkit for allocating and freeing pieces of a larger array. The larger array is made up of type <AT> Pass a pointer to a memory allocator, a pointer to an optional locker, a pointer to the array pointer, and the number of elements to initially reserve space for to the constructor. It is presumed that the creator will take care of keeping the memory allocator object in memory until such time as this object is destroyed. */ std::map<size_t,size_t> prime_factorization(size_t number); size_t multiply_factors(std::map<size_t,size_t> factors); class allocator_alignment { public: std::mutex admin; // locks access to members. Last in locking order std::vector<size_t> address_alignment; /* required address alignments, in bytes */ std::shared_ptr<size_t> cached_alignment; allocator_alignment() { address_alignment.push_back(8); /* always require at least 8-byte (64-bit) alignment */ } void add_requirement(size_t alignment) { std::lock_guard<std::mutex> adminlock(admin); address_alignment.push_back(alignment); cached_alignment = nullptr; } size_t get_alignment() { std::lock_guard<std::mutex> adminlock(admin); if (cached_alignment) { return *cached_alignment; } // alignment is least common multiple of the various elements of address_alignment //std::vector<std::vector<unsigned>> factors; std::vector<std::map<size_t,size_t>> factors_powers; std::unordered_map<size_t,size_t> factors_maxpowers; //fprintf(stderr,"get_alignment():\n"); // evaluate prime factorization for (size_t reqnum=0;reqnum < address_alignment.size();reqnum++) { size_t alignment = address_alignment[reqnum]; //fprintf(stderr," alignment requirement: %d\n",alignment); //factors.emplace_back(); factors_powers.emplace_back(prime_factorization(alignment)); // adjust stored maximum power for each divisor std::vector<std::map<size_t,size_t>>::iterator factors_powers_lastentry = factors_powers.end()-1; for (auto && factor_power: *factors_powers_lastentry) { // adjust factors_maxpowers entry if power is greater than this size_t maxpower=0; size_t divisor=factor_power.first; size_t power=factor_power.second; if (factors_maxpowers.find(divisor) != factors_maxpowers.end()) { maxpower=factors_maxpowers.at(divisor); } if (power > maxpower) { factors_maxpowers[divisor]=power; } } } /* Ok. Should have sorted prime factorization of all alignment requirements now */ /* least common multiple comes from the product of the highest powers of each prime factor */ size_t result=1; for (auto & factor_maxpower : factors_maxpowers) { for (size_t power=0;power < factor_maxpower.second;power++) { result=result*factor_maxpower.first; } } //fprintf(stderr,"alignment result: %d\n",result); cached_alignment=std::make_shared<size_t>(result); return result; } static void *alignment_shift(void *ptr,size_t alignment) // alignment should be from get_alignment(). ptr must have at least this much extra space available { if (!alignment) { return ptr; } // check for power of 2 if ( (alignment & (alignment-1))==0) { // power of 2 alignments, use std::align size_t space = 1+(size_t)alignment; std::align(alignment,1,ptr,space); return ptr; } // Otherwise cast to uintptr_t and do pointer math uintptr_t ptrval = (uintptr_t)ptr; uintptr_t modulus = (ptrval % alignment); if (!modulus) { return ptr; // already aligned } ptrval += (alignment-modulus); assert(!(ptrval % alignment)); ptr = (void *)ptrval; return ptr; } }; struct arrayinfo { void **arrayptr; size_t elemsize; memallocator_regionid id; bool destroyed; /* locked by allocatormutex */ }; class alloc_voidpp { /* Used to work around SWIG troubles with iterating over a pair with a void ** */ public: void **ptr; alloc_voidpp(void **_ptr) : ptr(_ptr) {} alloc_voidpp() : ptr(NULL) {} void **value() {return ptr;} }; class allocation { /* protected by allocator's allocatormutex */ public: snde_index regionstart; snde_index regionend; snde_index nelem; // valid only form allocations_unmerged... number of elements requested in original allocation NOTE THAT THIS IS IN ELEMENTS, NOT CHUNKS.... regionstart and regionend are in CHUNKS -- each one is _allocchunksize elements allocation(const allocation &)=delete; /* copy constructor disabled */ allocation& operator=(const allocation &)=delete; /* copy assignment disabled */ allocation(snde_index regionstart,snde_index regionend,snde_index nelem) { this->regionstart=regionstart; this->regionend=regionend; this->nelem=nelem; } bool attempt_merge(allocation &later) { /* !!!*** NOTE: Would be more efficient if we allowed allocations to merge and breakup thereby skipping over groups of allocations during the free space search */ assert(later.regionstart==regionend); regionend=later.regionend; nelem=SNDE_INDEX_INVALID; /* don't know how many elements after merge */ return true; } std::shared_ptr<allocation> sp_breakup(snde_index breakpoint,snde_index nelem) /* breakup method ends this region at breakpoint and returns a new region starting at from breakpoint to the prior end */ { std::shared_ptr<allocation> newregion=std::make_shared<allocation>(breakpoint,regionend,SNDE_INDEX_INVALID); nelem=SNDE_INDEX_INVALID; /* don't know how many elements after breakup */ regionend=breakpoint; return newregion; } ~allocation() { } }; class allocator /* : public allocatorbase*/ { /* NOTE: allocator can handle parallel-indexed portions of arrays of different things, e.g. vertex array and curvature array should be allocated in parallel. This is done through add_other_array() */ /* most methods, including alloc() and free() are thread safe, */ std::mutex allocatormutex; // Always final mutex in locking order; protects the free list public: snde_index _totalnchunks; size_t maxaddressbytes; size_t _elemsize; std::shared_ptr<memallocator> _memalloc; std::shared_ptr<lockmanager> _locker; // could be NULL if there is no locker std::deque<std::shared_ptr<std::function<void(snde_index)>>> pool_realloc_callbacks; // locked by allocatormutex // These next 4 parameters are immutable once assigned std::string recording_path; uint64_t recrevision; uint64_t originating_rss_unique_id; memallocator_regionid id; // ID of primary array bool destroyed; /* Should lock things on allocation... Will probably need separate lock for main *_arrayptr so we can wait on everything relinquishing that in order to do a pool realloc. */ //void **_arrayptr; //size_t _elemsize; // The arrays member is genuinely public for read access through // the arrays() accessor and // may be iterated over. Note that it may only be written // to when allocatormutex is locked. // Elements may never be deleted, so as to maintain numbering. // The shared_ptr around _arrays // is atomic, so it may be freely read through the accessor std::shared_ptr<std::deque<struct arrayinfo>> _arrays; // atomic shared_ptr // alignment requirement allocator_alignment our_alignment; // requirements from our element size and GPU alignment requirements allocator_alignment sub_alignment; // like our_alignment but in terms of elements, not bytes! /* Freelist structure ... */ rangetracker<allocation> allocations; rangetracker<allocation> allocations_unmerged; /* Unmerged copy of allocations... we can use this to know the length of each allocation for parameterless free() */ snde_index _allocchunksize; // size of chunks we allocate, in numbers of elements allocator(std::shared_ptr<memallocator> memalloc,std::shared_ptr<lockmanager> locker,std::string recording_path,uint64_t recrevision,uint64_t originating_rss_unique_id,memallocator_regionid id,std::shared_ptr<allocator_alignment> alignment,void **arrayptr,size_t elemsize,snde_index totalnelem,const std::set<snde_index>& follower_elemsizes,size_t maxaddressbytes) : recording_path(recording_path), recrevision(recrevision), originating_rss_unique_id(originating_rss_unique_id), id(id), maxaddressbytes(maxaddressbytes), _elemsize(elemsize) { // must hold writelock on array destroyed=false; _memalloc=memalloc; _locker=locker; // could be NULL if there is no locker std::shared_ptr<std::deque<struct arrayinfo>> new_arrays=std::make_shared<std::deque<struct arrayinfo>>(); new_arrays->push_back(arrayinfo{arrayptr,elemsize,id,false}); std::atomic_store(&_arrays,new_arrays); //_allocchunksize = 2*sizeof(snde_index)/_elemsize; // Round up when determining chunk size _allocchunksize = (2*sizeof(snde_index) + elemsize-1)/elemsize; if (alignment) { // satisfy alignment requirement on _allocchunksize //our_alignment = *alignment; std::lock_guard<std::mutex> alignadmin(alignment->admin); our_alignment.address_alignment = alignment->address_alignment; } our_alignment.add_requirement(((size_t)_allocchunksize)*elemsize); //for (auto && follower_elemsize: follower_elemsizes) { //our_alignment.add_requirement(follower_elemsize); //} size_t initial_allocchunksize = our_alignment.get_alignment()/elemsize; // identify prime factors of preexisting alignment requirements // present in elemsize, and create sub_alignment with those // factors divided out (if present) std::map<size_t,size_t> elemsizeprimefactors = prime_factorization(elemsize); //sub_alignment = our_alignment; // copy our_alignment sub_alignment.address_alignment=our_alignment.address_alignment; // now divide factors from elemsize out of sub_alignment for (snde_index align_idx=0;align_idx < sub_alignment.address_alignment.size();align_idx++) { std::map<size_t,size_t> alignprimefactors = prime_factorization(sub_alignment.address_alignment.at(align_idx)); for (auto && primefactor_power: elemsizeprimefactors) { auto alignfactorref = alignprimefactors.find(primefactor_power.first); if (alignfactorref != alignprimefactors.end()) { // found this factor; reduce it appropriately. if (alignfactorref->second <= primefactor_power.second) { alignfactorref->second=0; } else { alignfactorref->second -= primefactor_power.second; } } } sub_alignment.address_alignment.at(align_idx) = multiply_factors(alignprimefactors); } // now add in follower element size requirements, likewise // with address alignment factors divided out for (auto && follower_elemsize: follower_elemsizes) { std::map<size_t,size_t> follower_elemsize_primefactors = prime_factorization(follower_elemsize); //fprintf(stderr,"follower elemsize: %d\n",(int)follower_elemsize); for (auto alignreq: alignment->address_alignment) { // for each address alignment requirement // alignreq is a size_t std::map<size_t,size_t> alignreqprimefactors = prime_factorization(alignreq); // for this follower, any common prime factors in the element size // and the alignment requirement reduce the alignment requirement for (auto && primefactor_power: alignreqprimefactors) { auto followerfactor = follower_elemsize_primefactors.find(primefactor_power.first); if (followerfactor != follower_elemsize_primefactors.end()) { if (followerfactor->second <= primefactor_power.second) { primefactor_power.second -= followerfactor->second; } else { primefactor_power.second=0; } } } sub_alignment.add_requirement(multiply_factors(alignreqprimefactors)); } } _allocchunksize = ((size_t)initial_allocchunksize)*sub_alignment.get_alignment(); // _totalnchunks = totalnelem / _allocchunksize but round up. _totalnchunks = (totalnelem + _allocchunksize-1)/_allocchunksize; if (_totalnchunks < 2) { _totalnchunks=2; } // Perform memory allocation *(*arrays()).at(0).arrayptr = _memalloc->malloc(recording_path,recrevision,originating_rss_unique_id,id,_totalnchunks * _allocchunksize * elemsize, maxaddressbytes); if (_locker) { _locker->set_array_size((*arrays()).at(0).arrayptr,(*arrays()).at(0).elemsize,_totalnchunks*_allocchunksize); } // Permanently allocate (and waste) first chunk // so that an snde_index==0 is otherwise invalid _alloc(_allocchunksize); } allocator(const allocator &)=delete; /* copy constructor disabled */ allocator& operator=(const allocator &)=delete; /* assignment disabled */ // accessor for atomic _arrays member std::shared_ptr<std::deque<struct arrayinfo>> arrays() { return std::atomic_load(&_arrays); } std::tuple<std::shared_ptr<std::deque<struct arrayinfo>>> _begin_atomic_update() // allocatormutex must be locked when calling this function... // it returns new copies of the atomically-guarded data { // Make copies of atomically-guarded data std::shared_ptr<std::deque<struct arrayinfo>> new_arrays=std::make_shared<std::deque<struct arrayinfo>>(*arrays()); return std::make_tuple(new_arrays); } void _end_atomic_update(std::shared_ptr<std::deque<struct arrayinfo>> new_arrays) // allocatormutex must be locked when calling this function... { // replace old with new std::atomic_store(&_arrays,new_arrays); } size_t add_other_array(memallocator_regionid other_array_id,void **arrayptr, size_t elsize) /* returns index */ { std::lock_guard<std::mutex> lock(allocatormutex); std::shared_ptr<std::deque<struct arrayinfo>> new_arrays; std::tie(new_arrays) = _begin_atomic_update(); assert(!destroyed); size_t retval=new_arrays->size(); new_arrays->push_back(arrayinfo {arrayptr,elsize,other_array_id,false}); size_t newmaxbytes = (size_t)((double)maxaddressbytes * (double)elsize / (double)_elemsize); if (*(*new_arrays)[0].arrayptr) { /* if main array already allocated */ //snde_warning("Allocating %ull and reserving %ull for base el size %ull and other el size %ull", _totalnchunks * _allocchunksize * elsize, newmaxbytes, elsize, _elemsize); *arrayptr=_memalloc->calloc(recording_path,recrevision,originating_rss_unique_id,other_array_id,_totalnchunks*_allocchunksize * elsize,newmaxbytes); } else { *arrayptr = nullptr; } _end_atomic_update(new_arrays); return retval; } size_t num_arrays(void) { std::lock_guard<std::mutex> lock(allocatormutex); size_t size=0; auto arrays_loc = arrays(); for (auto & ary: *arrays_loc) { if (!ary.destroyed) size++; } return size; } void remove_array(void **arrayptr) { std::unique_lock<std::mutex> lock(allocatormutex); size_t index=0; // we hold allocatormutex, so _arrays should not be accessed directly, but won't change for (std::deque<struct arrayinfo>::iterator ary=arrays()->begin();ary != arrays()->end();ary++,index++) { if (ary->arrayptr == arrayptr) { if (ary==arrays()->begin()) { /* removing our master array invalidates the entire allocator */ destroyed=true; } _memalloc->free(recording_path,recrevision,originating_rss_unique_id,ary->id,*ary->arrayptr); //arrays.erase(ary); ary->destroyed=true; return; } } } void _pool_realloc(snde_index newnchunks) { /* This routine reallocates the entire array memory pool, in case we run out of space in it */ assert(!destroyed); // Must hold write lock on entire array // must hold allocatormutex... therefore arrays() won't change although it's still unsafe to read _arrays directly _totalnchunks = newnchunks; //*arrays[0].arrayptr = _memalloc->realloc(*arrays.at(0).arrayptr,_totalnchunks * _allocchunksize * _elemsize,0); /* resize all arrays */ for (size_t cnt=0;cnt < arrays()->size();cnt++) { if ((*arrays()).at(cnt).destroyed) continue; *arrays()->at(cnt).arrayptr= _memalloc->realloc(recording_path,recrevision,originating_rss_unique_id,arrays()->at(cnt).id,*arrays()->at(cnt).arrayptr,arrays()->at(cnt).elemsize*_totalnchunks*_allocchunksize); if (_locker) { size_t arraycnt; for (arraycnt=0;arraycnt < arrays()->size();arraycnt++) { _locker->set_array_size(arrays()->at(arraycnt).arrayptr,arrays()->at(arraycnt).elemsize,_totalnchunks*_allocchunksize); } } } } snde_index _total_nelem() // return total number of elements in pool ALLOCATORMUTEX MUST BE LOCKED! { assert(!destroyed); return _totalnchunks*_allocchunksize; } snde_index total_nelem() // return total number of elements in pool { std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex return _total_nelem(); } snde_index space_needed() // return size (in elements) of minimal pool into which currently // allocated data could be copied without changing // indices { std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex snde_index space_end=0; auto allocation=allocations.end(); if (allocation==allocations.begin()) { // empty -- no space needed return 0; } allocation--; return allocation->second->regionend*_allocchunksize; } snde_index _alloc(snde_index nelem) { // Step through gaps in the range, looking for a chunk big enough snde_index retpos; bool pool_reallocflag=false; // Number of chunks we need... nelem/_allocchunksize rounding up snde_index allocchunks = (nelem+_allocchunksize-1)/_allocchunksize; std::unique_lock<std::mutex> lock(allocatormutex); assert(!destroyed); std::shared_ptr<allocation> alloc=allocations.find_unmarked_region(0, _totalnchunks, allocchunks,SNDE_INDEX_INVALID); if (alloc==nullptr) { snde_index newnchunks=(snde_index)((_totalnchunks+allocchunks)*1.7); /* Reserve extra space, not just bare minimum */ this->_pool_realloc(newnchunks); pool_reallocflag=true; alloc=allocations.find_unmarked_region(0, _totalnchunks, allocchunks,SNDE_INDEX_INVALID); } retpos=SNDE_INDEX_INVALID; if (alloc) { retpos=alloc->regionstart*_allocchunksize; allocations.mark_region(alloc->regionstart,alloc->regionend-alloc->regionstart,nelem); allocations_unmerged.mark_region(alloc->regionstart,alloc->regionend-alloc->regionstart,nelem); } // !!!*** Need to implement merge to get O(1) performance allocations.merge_adjacent_regions(); if (pool_reallocflag) { // notify recipients that we reallocated std::deque<std::shared_ptr<std::function<void(snde_index)>>> realloccallbacks_copy(pool_realloc_callbacks); // copy can be iterated with allocatormutex unlocked for (std::deque<std::shared_ptr<std::function<void(snde_index)>>>::iterator reallocnotify=realloccallbacks_copy.begin();reallocnotify != realloccallbacks_copy.end();reallocnotify++) { snde_index new_total_nelem=_total_nelem(); lock.unlock(); // release allocatormutex (**reallocnotify)(new_total_nelem); lock.lock(); } } //fprintf(stderr,"_alloc return %d (_allocchunksize=%d)\n",retpos,_allocchunksize); return retpos; } std::pair<snde_index,std::vector<std::pair<std::shared_ptr<alloc_voidpp>,rwlock_token_set>>> alloc_arraylocked(rwlock_token_set all_locks,snde_index nelem) { // must hold write lock on entire array... returns write lock on new allocation // and position... Note that the new allocation is not included in the // original lock on the entire array, so you can freely release the // original if you don't otherwise need it snde_index retpos = _alloc(nelem); std::vector<std::pair<std::shared_ptr<alloc_voidpp>,rwlock_token_set>> retlocks; // NOTE: our admin lock is NOT locked for this // notify locker of new allocation if (_locker && retpos != SNDE_INDEX_INVALID) { size_t arraycnt; auto curarrays=arrays(); for (arraycnt=0;arraycnt < curarrays->size();arraycnt++) { rwlock_token token; rwlock_token_set token_set; auto &thisarray=curarrays->at(arraycnt); token_set=empty_rwlock_token_set(); token=_locker->newallocation(all_locks,thisarray.arrayptr,retpos,nelem,thisarray.elemsize); (*token_set)[token->mutex()]=token; retlocks.push_back(std::make_pair(std::make_shared<alloc_voidpp>(thisarray.arrayptr),token_set)); } } //fprintf(stderr,"alloc_arraylocked(%llu)->%llu\n",nelem,retpos); return std::make_pair(retpos,retlocks); } snde_index alloc_nolocking(snde_index nelem) { // allocation function for when you are not using locking at all snde_index retpos = _alloc(nelem); return retpos; } //std::pair<rwlock_token_set,snde_index> alloc(snde_index nelem) { // // must be in a locking process or otherwise where we can lock the entire array... // // this locks the entire array, allocates the new element, and // // releases the rest of the array // //} /* Realloc callbacks are used to notify when the array's memory pool changes address (i.e. because the entire pool has been reallocated because more space is needed) Note that this happens immediately upon the reallocation. Somebody generally has a write lock on the entire array during such allocation. The callback is called without allocatormutex being held */ void register_pool_realloc_callback(std::shared_ptr<std::function<void(snde_index)>> callback) { std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex pool_realloc_callbacks.emplace_back(callback); } void unregister_pool_realloc_callback(std::shared_ptr<std::function<void(snde_index)>> callback) { std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex for (size_t pos=0;pos < pool_realloc_callbacks.size();) { if (pool_realloc_callbacks[pos]==callback) { pool_realloc_callbacks.erase(pool_realloc_callbacks.begin()+pos); } else { pos++; } } } void _free(snde_index addr,snde_index nelem) { // Number of chunks we need... nelem/_allocchunksize rounding up snde_index chunkaddr; snde_index freechunks = (nelem+_allocchunksize-1)/_allocchunksize; std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex assert(!destroyed); assert(addr != SNDE_INDEX_INVALID); assert(nelem != SNDE_INDEX_INVALID); assert(addr > 0); /* addr==0 is wasted element allocated by constructor */ assert(addr % _allocchunksize == 0); /* all addresses returned by alloc() are multiples of _allocchunksize */ chunkaddr=addr/_allocchunksize; allocations.clear_region(chunkaddr,freechunks,SNDE_INDEX_INVALID); allocations_unmerged.clear_region(chunkaddr,freechunks,SNDE_INDEX_INVALID); } snde_index get_length(snde_index addr) { std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex std::shared_ptr<allocation> alloc = allocations_unmerged.get_region(addr/_allocchunksize); snde_index nelem = alloc->nelem; /* a null pointer here would mean that addr is not a validly allocated region */ return nelem; } void free(snde_index addr) { // must hold write lock on this allocation (I DON"T THINK THIS IS NECESSARY ANYMORE ... except possibly for // the freeallocation() calls, below) snde_index nelem=get_length(addr); // notify locker of free operation if (_locker) { size_t arraycnt; auto curarrays=arrays(); for (arraycnt=0;arraycnt < curarrays->size();arraycnt++) { auto &thisarray=curarrays->at(arraycnt); _locker->freeallocation(thisarray.arrayptr,addr,nelem,thisarray.elemsize); } } _free(addr,nelem); } void _realloc_down(snde_index addr, snde_index orignelem, snde_index newnelem) /* Shrink an allocation to the newly specified size. You must have a write lock on the allocation, but not necessarily the entire array */ { snde_index chunkaddr; assert(orignelem != SNDE_INDEX_INVALID); assert(newnelem != SNDE_INDEX_INVALID); assert(orignelem >= newnelem); snde_index origchunks = (orignelem+_allocchunksize-1)/_allocchunksize; snde_index newchunks = (newnelem+_allocchunksize-1)/_allocchunksize; assert(addr != SNDE_INDEX_INVALID); assert(addr > 0); /* addr==0 is wasted element allocated by constructor */ assert(addr % _allocchunksize == 0); /* all addresses returned by alloc() are multiples of _allocchunksize */ std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex { std::shared_ptr<allocation> alloc = allocations_unmerged.get_region(addr/_allocchunksize); assert(alloc->nelem == orignelem); if (newchunks==origchunks) { alloc->nelem = newnelem; return; } } chunkaddr=addr/_allocchunksize; allocations.clear_region(chunkaddr+newchunks,origchunks-newchunks,SNDE_INDEX_INVALID); allocations_unmerged.clear_region(chunkaddr+newchunks,origchunks-newchunks,SNDE_INDEX_INVALID); // must hold write lock on this allocation (NOT ANYMORE?) // mark reduced nelem in this allocation if (newnelem > 0) { std::shared_ptr<allocation> alloc = allocations_unmerged.get_region(chunkaddr); alloc->nelem = newnelem; } } void realloc_down(snde_index addr,snde_index orignelem,snde_index newnelem) { // notify locker of free operation if (_locker) { size_t arraycnt; auto curarrays=arrays(); for (arraycnt=0;arraycnt < curarrays->size();arraycnt++) { auto &thisarray=curarrays->at(arraycnt); _locker->realloc_down_allocation(thisarray.arrayptr,addr,orignelem,newnelem); } } _realloc_down(addr,orignelem,newnelem); } ~allocator() { // _memalloc was provided by our creator and is not freed // _locker was provided by our creator and is not freed std::lock_guard<std::mutex> lock(allocatormutex); // Lock the allocator mutex // free all arrays for (size_t cnt=0;cnt < arrays()->size();cnt++) { if (*arrays()->at(cnt).arrayptr) { if (!arrays()->at(cnt).destroyed) { _memalloc->free(recording_path,recrevision,originating_rss_unique_id,arrays()->at(cnt).id,*arrays()->at(cnt).arrayptr); *(arrays()->at(cnt).arrayptr) = NULL; } } } /* Should we explicitly go through and empty arrays? I don't think it will accomplish anything... */ arrays().reset(); } }; } #endif /* SNDE_ALLOCATOR_HPP */
75f58d596523673f24c26f8a3a13989e912ecddb
5e68dd1c7e455c9ed3b101741c1d95f2ab7a2e9c
/src/plugins/A_Blur/menu.h
8490fbbb66df84d178f7d96c01438935e54abf6e
[]
no_license
Dariasteam/CV
d927235a76cf2a567507504a224b836b65e6a602
00afc1eeb38920fe99daaf17fc87b9cdcc1f6f17
refs/heads/master
2021-09-04T02:36:22.883772
2018-01-14T18:49:40
2018-01-14T18:49:40
105,511,783
0
0
null
null
null
null
UTF-8
C++
false
false
1,374
h
menu.h
#ifndef MENU_H #define MENU_H #include <iostream> #include <QWidget> #include <QSlider> #include <QBoxLayout> #include <QLabel> #include <QCheckBox> #include "../../model/picture.h" #define GAMMA_TXT "Fuerza" #define MIN_RANGE 3 #define MAX_RANGE 30 #define DEFAULT_VALUE 3 class view_interface : public QWidget { Q_OBJECT public: view_interface (QWidget* parent) : QWidget (parent) {} }; class labeled_slider : public QWidget { Q_OBJECT private: QBoxLayout* layout; QLabel* value_indicator; QSlider* slider; public: explicit labeled_slider () { layout = new QBoxLayout(QBoxLayout::LeftToRight, this); value_indicator = new QLabel (this); value_indicator->setMinimumWidth(20); slider = new QSlider(Qt::Horizontal, this); slider->setRange(MIN_RANGE, MAX_RANGE); slider->setValue(DEFAULT_VALUE); layout->addWidget(slider); layout->addWidget(value_indicator); connect(slider,SIGNAL(sliderMoved(int)),this,SLOT(on_slider_moved(int))); } inline QSlider* get_slider () { return slider; } private slots: void on_slider_moved (int i) { if (i % 2 == 0) i++; value_indicator->setText(QString::number(double(i))); } }; class menu : public view_interface { Q_OBJECT private: QBoxLayout* layout; public: labeled_slider* slider; explicit menu(QWidget *parent = nullptr); }; #endif // MENU_H
71fa443ca6dac36a1b4b67f6f98a9af4527323b7
ec9d62dbe5e668973fc2bc411e67e72aecae8758
/GradientDescentTrustRegion/ImageRegistration3.cxx
723438ade112bc2c1b328291639dc0f116334c07
[]
no_license
midas-journal/midas-journal-834
12fecad034d3326735d982215c18e8595535aabe
14d421b4dc75e291073ba068bef20870ec90ba40
refs/heads/master
2020-06-06T12:06:02.898220
2011-08-22T15:59:01
2011-08-22T15:59:01
2,249,456
0
0
null
null
null
null
UTF-8
C++
false
false
14,910
cxx
ImageRegistration3.cxx
/*========================================================================= This has been modified from the original included with ITK 3.20 to show the performance of the GradientDescentTrustRegionOptimizer. Program: Insight Segmentation & Registration Toolkit Module: $RCSfile: ImageRegistration3.cxx,v $ Language: C++ Date: $Date: 2009-06-24 12:09:09 $ Version: $Revision: 1.38 $ Copyright (c) Insight Software Consortium. All rights reserved. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #if defined(_MSC_VER) #pragma warning ( disable : 4786 ) #endif // Software Guide : BeginLatex // // Given the numerous parameters involved in tuning a registration method for // a particular application, it is not uncommon for a registration process to // run for several minutes and still produce a useless result. To avoid // this situation it is quite helpful to track the evolution of the // registration as it progresses. The following section illustrates the // mechanisms provided in ITK for monitoring the activity of the // ImageRegistrationMethod class. // // Insight implements the \emph{Observer/Command} design pattern // \cite{Gamma1995}. (See Section~\ref{sec:EventHandling} for an overview.) // The classes involved in this implementation are the \doxygen{Object}, // \doxygen{Command} and \doxygen{EventObject} classes. The Object // is the base class of most ITK objects. This class maintains a linked // list of pointers to event observers. The role of observers is played by // the Command class. Observers register themselves with an // Object, declaring that they are interested in receiving // notification when a particular event happens. A set of events is // represented by the hierarchy of the Event class. Typical events // are \code{Start}, \code{End}, \code{Progress} and \code{Iteration}. // // Registration is controlled by an \doxygen{Optimizer}, which generally // executes an iterative process. Most Optimizer classes invoke an // \doxygen{IterationEvent} at the end of each iteration. When an event is // invoked by an object, this object goes through its list of registered // observers (Commands) and checks whether any one of them has expressed // interest in the current event type. Whenever such an observer is found, // its corresponding \code{Execute()} method is invoked. In this context, // \code{Execute()} methods should be considered \emph{callbacks}. As such, // some of the common sense rules of callbacks should be respected. For // example, \code{Execute()} methods should not perform heavy computational // tasks. They are expected to execute rapidly, for example, printing out a // message or updating a value in a GUI. // // \index{itk::ImageRegistrationMethod!Monitoring} // // // Software Guide : EndLatex #include "itkImageRegistrationMethod.h" #include "itkTranslationTransform.h" #include "itkMeanSquaresImageToImageMetric.h" #include "itkLinearInterpolateImageFunction.h" #include "itkRegularStepGradientDescentOptimizer.h" #include "itkGradientDescentTrustRegionOptimizer.h" #include "itkImage.h" #include "itkImageFileReader.h" #include "itkImageFileWriter.h" #include "itkResampleImageFilter.h" #include "itkCastImageFilter.h" // Software Guide : BeginLatex // // The following code illustrates a simple way of creating a // Observer/Command to monitor a registration process. This new // class derives from the Command class and provides a specific // implementation of the \code{Execute()} method. First, the header file of // the Command class must be included. // // Software Guide : EndLatex // Software Guide : BeginCodeSnippet #include "itkCommand.h" // Software Guide : EndCodeSnippet // Software Guide : BeginLatex // // Our custom command class is called \code{CommandIterationUpdate}. It // derives from the Command class and declares for convenience the // types \code{Self} and \code{Superclass}. This facilitate the use of // standard macros later in the class implementation. // // Software Guide : EndLatex // Software Guide : BeginCodeSnippet #include "CommandObserver.h" int main( int argc, char *argv[] ) { if( argc < 4 ) { std::cerr << "Missing Parameters " << std::endl; std::cerr << "Usage: " << argv[0]; std::cerr << " rs|tr fixedImageFile movingImageFile "; std::cerr << "outputImagefile [differenceImage]" << std::endl; return EXIT_FAILURE; } bool mode=true; { std::string argstr(argv[1]); if(argstr=="rs") mode=true; else if(argstr=="tr") mode=false; else { std::cerr << "Could not parse optimizer method, must be rs, or tr. Got " << argstr << std::endl; return EXIT_FAILURE; } } const unsigned int Dimension = 2; typedef unsigned short PixelType; typedef itk::Image< PixelType, Dimension > FixedImageType; typedef itk::Image< PixelType, Dimension > MovingImageType; typedef itk::TranslationTransform< double, Dimension > TransformType; typedef itk::RegularStepGradientDescentOptimizer OptimizerType1; typedef itk::GradientDescentTrustRegionOptimizer OptimizerType2; typedef itk::LinearInterpolateImageFunction< MovingImageType, double > InterpolatorType; typedef itk::ImageRegistrationMethod< FixedImageType, MovingImageType > RegistrationType; typedef itk::MeanSquaresImageToImageMetric< FixedImageType, MovingImageType > MetricType; TransformType::Pointer transform = TransformType::New(); OptimizerType1::Pointer optimizer1 = OptimizerType1::New(); OptimizerType2::Pointer optimizer2 = OptimizerType2::New(); InterpolatorType::Pointer interpolator = InterpolatorType::New(); RegistrationType::Pointer registration = RegistrationType::New(); if(mode) { registration->SetOptimizer( optimizer1 ); } else { registration->SetOptimizer( optimizer2 ); } registration->SetTransform( transform ); registration->SetInterpolator( interpolator ); MetricType::Pointer metric = MetricType::New(); registration->SetMetric( metric ); typedef itk::ImageFileReader< FixedImageType > FixedImageReaderType; typedef itk::ImageFileReader< MovingImageType > MovingImageReaderType; FixedImageReaderType::Pointer fixedImageReader = FixedImageReaderType::New(); MovingImageReaderType::Pointer movingImageReader = MovingImageReaderType::New(); fixedImageReader->SetFileName( argv[2] ); movingImageReader->SetFileName( argv[3] ); registration->SetFixedImage( fixedImageReader->GetOutput() ); registration->SetMovingImage( movingImageReader->GetOutput() ); fixedImageReader->Update(); // This is needed to make the BufferedRegion below valid. registration->SetFixedImageRegion( fixedImageReader->GetOutput()->GetBufferedRegion() ); typedef RegistrationType::ParametersType ParametersType; ParametersType initialParameters( transform->GetNumberOfParameters() ); initialParameters[0] = 0.0; // Initial offset in mm along X initialParameters[1] = 0.0; // Initial offset in mm along Y registration->SetInitialTransformParameters( initialParameters ); optimizer1->SetMaximumStepLength( 4.00 ); optimizer1->SetMinimumStepLength( 0.01 ); optimizer1->SetNumberOfIterations( 200 ); optimizer1->MaximizeOff(); optimizer2->SetInitialStepLength( 4.00 ); optimizer2->SetMinimumStepLength( 0.01 ); optimizer2->SetNumberOfIterations( 200 ); optimizer2->MaximizeOff(); // Software Guide : BeginLatex // // Once all the registration components are in place we can create one // instance of our observer. This is done with the standard \code{New()} // method and assigned to a SmartPointer. // // Software Guide : EndLatex // Software Guide : BeginCodeSnippet CommandIterationUpdate<OptimizerType1>::Pointer observer1 = CommandIterationUpdate<OptimizerType1>::New(); CommandIterationUpdate<OptimizerType2>::Pointer observer2 = CommandIterationUpdate<OptimizerType2>::New(); // Software Guide : EndCodeSnippet // Software Guide : BeginLatex // // \begin{figure} // \center // \includegraphics[width=\textwidth]{ImageRegistration3Observer.eps} // \itkcaption[Command/Observer and the Registration Framework]{Interaction // between the Command/Observer and the Registration Method.} // \label{fig:ImageRegistration3Observer} // \end{figure} // // // Software Guide : EndLatex // Software Guide : BeginLatex // // The newly created command is registered as observer on the // optimizer, using the \code{AddObserver()} method. Note // that the event type is provided as the first argument to this // method. In order for the RTTI mechanism to work correctly, a newly // created event of the desired type must be passed as the first // argument. The second argument is simply the smart pointer to the // optimizer. Figure \ref{fig:ImageRegistration3Observer} illustrates the // interaction between the Command/Observer class and the registration // method. // // Software Guide : EndLatex // Software Guide : BeginCodeSnippet optimizer1->AddObserver( itk::IterationEvent(), observer1 ); optimizer2->AddObserver( itk::IterationEvent(), observer2 ); // Software Guide : EndCodeSnippet // Software Guide : BeginLatex // // At this point, we are ready to execute the registration. The // typical call to \code{StartRegistration()} will do it. Note again the // use of the \code{try/catch} block around the \code{StartRegistration()} // method in case an exception is thrown. // // Software Guide : EndLatex // Software Guide : BeginCodeSnippet try { registration->StartRegistration(); std::cout << "Optimizer stop condition: " << registration->GetOptimizer()->GetStopConditionDescription() << std::endl; } catch( itk::ExceptionObject & err ) { std::cout << "ExceptionObject caught !" << std::endl; std::cout << err << std::endl; return EXIT_FAILURE; } // Software Guide : EndCodeSnippet // Software Guide : BeginLatex // // The registration process is applied to the following images in \code{Examples/Data}: // // \begin{itemize} // \item \code{BrainProtonDensitySliceBorder20.png} // \item \code{BrainProtonDensitySliceShifted13x17y.png} // \end{itemize} // // It produces the following output. // // \begin{verbatim} // 0 = 4499.45 : [2.9287, 2.72447] // 1 = 3860.84 : [5.62751, 5.67683] // 2 = 3450.68 : [8.85516, 8.03952] // 3 = 3152.07 : [11.7997, 10.7469] // 4 = 2189.97 : [13.3628, 14.4288] // 5 = 1047.21 : [11.292, 17.851] // 6 = 900.189 : [13.1602, 17.1372] // 7 = 19.6301 : [12.3268, 16.5846] // 8 = 237.317 : [12.7824, 16.7906] // 9 = 38.1331 : [13.1833, 17.0894] // 10 = 18.9201 : [12.949, 17.002] // 11 = 1.15456 : [13.074, 16.9979] // 12 = 2.42488 : [13.0115, 16.9994] // 13 = 0.0590549 : [12.949, 17.002] // 14 = 1.15451 : [12.9803, 17.001] // 15 = 0.173731 : [13.0115, 16.9997] // 16 = 0.0586584 : [12.9959, 17.0001] // \end{verbatim} // You can verify from the code in the \code{Execute()} method that the first // column is the iteration number, the second column is the metric value and // the third and fourth columns are the parameters of the transform, which // is a $2D$ translation transform in this case. By tracking these values as // the registration progresses, you will be able to determine whether the // optimizer is advancing in the right direction and whether the step-length // is reasonable or not. That will allow you to interrupt the registration // process and fine-tune parameters without having to wait until the // optimizer stops by itself. // // Software Guide : EndLatex ParametersType finalParameters = registration->GetLastTransformParameters(); const double TranslationAlongX = finalParameters[0]; const double TranslationAlongY = finalParameters[1]; const unsigned int numberOfIterations = (mode) ? optimizer1->GetCurrentIteration() : optimizer2->GetCurrentIteration(); const double bestValue = mode ? optimizer1->GetValue() : optimizer2->GetValue(); std::cout << "Registration done !" << std::endl; std::cout << "Number of iterations = " << numberOfIterations << std::endl; std::cout << "Translation along X = " << TranslationAlongX << std::endl; std::cout << "Translation along Y = " << TranslationAlongY << std::endl; std::cout << "Optimal metric value = " << bestValue << std::endl; // Prepare the resampling filter in order to map the moving image. // typedef itk::ResampleImageFilter< MovingImageType, FixedImageType > ResampleFilterType; TransformType::Pointer finalTransform = TransformType::New(); finalTransform->SetParameters( finalParameters ); finalTransform->SetFixedParameters( transform->GetFixedParameters() ); ResampleFilterType::Pointer resample = ResampleFilterType::New(); resample->SetTransform( finalTransform ); resample->SetInput( movingImageReader->GetOutput() ); FixedImageType::Pointer fixedImage = fixedImageReader->GetOutput(); resample->SetSize( fixedImage->GetLargestPossibleRegion().GetSize() ); resample->SetOutputOrigin( fixedImage->GetOrigin() ); resample->SetOutputSpacing( fixedImage->GetSpacing() ); resample->SetOutputDirection( fixedImage->GetDirection() ); resample->SetDefaultPixelValue( 100 ); // Prepare a writer and caster filters to send the resampled moving image to // a file // typedef unsigned char OutputPixelType; typedef itk::Image< OutputPixelType, Dimension > OutputImageType; typedef itk::CastImageFilter< FixedImageType, OutputImageType > CastFilterType; typedef itk::ImageFileWriter< OutputImageType > WriterType; WriterType::Pointer writer = WriterType::New(); CastFilterType::Pointer caster = CastFilterType::New(); writer->SetFileName( argv[4] ); caster->SetInput( resample->GetOutput() ); writer->SetInput( caster->GetOutput() ); writer->Update(); return EXIT_SUCCESS; }
c74edf1049fb967d016f5b710ff048e9d0868cb9
c1e69f3077fea9c531d299fa66399e3608bb867c
/1_StacksAndQueues/Stack.cpp
1611b4f2d2ad6ddd7a16d7df71672a16e286a2a5
[]
no_license
dblasher/CS260_DataStructures
11c565a6c95969ff82659bca1f6a048c454ed7f0
d432f877899341739314a7dc170acc1c5dacb2ea
refs/heads/master
2020-04-10T07:59:32.744308
2018-12-08T02:53:26
2018-12-08T02:53:26
160,894,861
0
0
null
null
null
null
UTF-8
C++
false
false
648
cpp
Stack.cpp
// // Stack.cpp // Lab_2 // // By Daniel Blasher 10/5/2018 //Do this after writing Dequeue files #include "Stack.h" #include <iostream> #include <stdexcept> Stack::Stack() { mystack = new Dequeue(); } Stack::Stack(int size) { mystack = new Dequeue(size); } Stack::~Stack() { delete mystack; } void Stack::push(int item) { //adds an item to the stack mystack->addLeft(item); } int Stack::peek() { //shows the last item added, which is located at myarray[left -1] int index = mystack->left; return mystack->myarray[index -1]; } int Stack::pop() { //removes and returns last item added return mystack->getLeft(); }
bf0a2e5496c37c698c01c207e0d6f5b4fe15fb4f
f8c8efcf7a2b870afe3a518902071fda9c98783e
/02DataStructuresAndAlgorithms/CPPDataStructuresAndAlgorithms/LinearList/scr/testArrayStack.hpp
a43cc300d0c7eabdbfec414db478da108e9f7862
[]
no_license
HaroldCC/littleDemo
8abddebda58e8177cf2d87094a42cc10b3d800c9
6d5722e4db8cff9d4e4b6edb37e5ae01afb71885
refs/heads/master
2020-12-28T18:35:00.460064
2020-12-10T12:36:41
2020-12-10T12:36:41
238,441,600
0
0
null
null
null
null
UTF-8
C++
false
false
703
hpp
testArrayStack.hpp
#pragma once #include <iostream> #include "include/ArrayStack.h" using std::cout; using std::endl; void testArrayStack() { ArrayStack<int> s; // add a few elements s.push(1); s.push(2); s.push(3); s.push(4); cout << "Stack should be 1234, bottom to top" << endl; // test empty and size if (s.empty()) cout << "The stack is empty" << endl; else cout << "The stack is not empty" << endl; cout << "The stack size is " << s.size() << endl; while (!s.empty()) { cout << "Stack top is " << s.top() << endl; s.pop(); cout << "Popped top element" << endl; } try { s.pop(); } catch (stackEmpty message) { cout << "Last pop failed " << endl; message.outputMessage(); } }
a9a7ddfebff8204dce7c5ec7f7c38b92bd879769
49f415ecf4f20ee980b588c3328136a3eb91d4ce
/v2/branches/_temporary_and_old_codes/plugins/base/Navigator/src/Entity.h
911a2b9af512462f055fe84ee2d2a50d1d9e76ca
[]
no_license
testmana2/mks
709031fc258eb1c914be198ce3d6812a18d72b9c
0ae408f133f807bdc4b60539c1f78f2cfbd7b75f
refs/heads/master
2021-01-10T02:58:23.887302
2012-11-25T18:22:22
2012-11-25T18:22:22
48,477,118
0
0
null
null
null
null
UTF-8
C++
false
false
3,743
h
Entity.h
/**************************************************************************** ** ** Created using Monkey Studio v1.8.1.0 ** Authors : Filipe AZEVEDO aka Nox P@sNox <pasnox@gmail.com> ** Project : Monkey Studio Base Plugins ** FileName : Entity.h ** Date : 2008-01-14T00:40:06 ** License : GPL ** Comment : This header has been automatically generated, if you are the original author, or co-author, fill free to replace/append with your informations. ** Home Page : http://www.monkeystudio.org ** Copyright (C) 2005 - 2008 Filipe AZEVEDO & The Monkey Studio Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ** ****************************************************************************/ /*! \file EntityContainer.h \date 2008-01-14T00:40:08 \author Andrei Kopats \brief Header file for Entity class */ #ifndef ENTITY_H #define ENTITY_H #include <QString> #include <QList> #include <QTreeWidget> #include <QObject> #include <QDateTime> #include <QIcon> #include <CtagsManager.h> /*! Enum representing possible types of entityes Set of entityes, except ROTO_ENTITY and UNKNOWN taked from Ctags */ enum EntityType { NAMESPACE = 0x0001, CLASS = 0x0002, CONSTRUCTOR = 0x0004, DESTRUCTOR = 0x0008, ENUM = 0x0010, ENUMERATOR = 0x0020, EXTERN = 0x0040, FUNCTION = 0x0080, MACRO = 0x0100, MEMBER = 0x0200, PROTOTYPE = 0x0400, STRUCT = 0x0800, TYPEDEF = 0x1000, UNION = 0x2000, VARIABLE = 0x4000, ROOT_ENTITY, //15 //top level entiry, possible file, or project UNKNOWN = 0x8000 //16 }; /*! \brief Any item, which can be part of source file and can be included in the tree Stores all information about item (type, name, line of source file...). Entity can have parent and child entityes (class is parent, member of class is child) Entity also can display self on UI, as part on tree model */ class Entity : public QTreeWidgetItem { private: // Icons, which is using for display entity on UI static QIcon iNAMESPACE; static QIcon iCLASS; static QIcon iENUM; static QIcon iFUNCTION; static QIcon iMEMBER; static QIcon iSTRUCT; static QIcon iTYPEDEF; static QIcon iMACRO; static QIcon iENUMERATOR; public: Entity ( tagEntryInfo* entry, QString fileName, QDateTime time); Entity (EntityType ttype, QString tname); QDateTime updateTime ; QString name; EntityType type; QString file; int line; QString varType; QString signature; Entity* child (int i); //function will create or update info about file in the entity //convert string kindName to the EntityType static EntityType getScopeType ( QString kindName ); //convert TagEntry.kind to the EntiryType static EntityType getEntityType ( char kind ); static void initIcons (); void deleteFileInfo ( QString file, QDateTime olderThan ); void updateSelf (tagEntryInfo* entry, QString fileName, QDateTime time); void updateGUI (); }; #endif //ENTITY_H
0656acd744f7614835a26863af93011372693b53
e3ab97195901e11dcad1040167f92e338fd2b911
/Graphics/GraphicsEngineD3D12/src/DescriptorHeap.cpp
6815b11226cabaae2485deeb528fc00e5edaa918
[ "Apache-2.0" ]
permissive
polytronicgr/DiligentCore
782eabcf91b14e946e953c061f2979f1a641ca47
592115f32869fbcdb79608f5db56a0e914614e7b
refs/heads/master
2021-09-19T09:06:52.707554
2018-07-26T05:32:15
2018-07-26T05:32:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,683
cpp
DescriptorHeap.cpp
/* Copyright 2015-2018 Egor Yusov * * 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 * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF ANY PROPRIETARY RIGHTS. * * In no event and under no legal theory, whether in tort (including negligence), * contract, or otherwise, unless required by applicable law (such as deliberate * and grossly negligent acts) or agreed to in writing, shall any Contributor be * liable for any damages, including any direct, indirect, special, incidental, * or consequential damages of any character arising as a result of this License or * out of the use or inability to use the software (including but not limited to damages * for loss of goodwill, work stoppage, computer failure or malfunction, or any and * all other commercial damages or losses), even if such Contributor has been advised * of the possibility of such damages. */ #include "pch.h" #include "DescriptorHeap.h" #include "RenderDeviceD3D12Impl.h" #include "D3D12Utils.h" namespace Diligent { // Creates a new descriptor heap and reference the entire heap DescriptorHeapAllocationManager::DescriptorHeapAllocationManager(IMemoryAllocator& Allocator, RenderDeviceD3D12Impl* pDeviceD3D12Impl, IDescriptorAllocator* pParentAllocator, size_t ThisManagerId, const D3D12_DESCRIPTOR_HEAP_DESC& HeapDesc) : m_FreeBlockManager (HeapDesc.NumDescriptors, Allocator), m_NumDescriptorsInAllocation (HeapDesc.NumDescriptors), m_HeapDesc (HeapDesc), m_pDeviceD3D12Impl (pDeviceD3D12Impl), m_pParentAllocator (pParentAllocator), m_ThisManagerId (ThisManagerId) { auto pDevice = pDeviceD3D12Impl->GetD3D12Device(); m_FirstCPUHandle.ptr = 0; m_FirstGPUHandle.ptr = 0; m_DescriptorSize = pDevice->GetDescriptorHandleIncrementSize(HeapDesc.Type); pDevice->CreateDescriptorHeap(&m_HeapDesc, __uuidof(m_pd3d12DescriptorHeap), reinterpret_cast<void**>(static_cast<ID3D12DescriptorHeap**>(&m_pd3d12DescriptorHeap))); m_FirstCPUHandle = m_pd3d12DescriptorHeap->GetCPUDescriptorHandleForHeapStart(); if(m_HeapDesc.Flags & D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE) m_FirstGPUHandle = m_pd3d12DescriptorHeap->GetGPUDescriptorHandleForHeapStart(); } // Uses subrange of descriptors in the existing D3D12 descriptor heap // that starts at offset FirstDescriptor and uses NumDescriptors descriptors DescriptorHeapAllocationManager::DescriptorHeapAllocationManager(IMemoryAllocator& Allocator, RenderDeviceD3D12Impl* pDeviceD3D12Impl, IDescriptorAllocator* pParentAllocator, size_t ThisManagerId, ID3D12DescriptorHeap* pd3d12DescriptorHeap, Uint32 FirstDescriptor, Uint32 NumDescriptors): m_FreeBlockManager (NumDescriptors, Allocator), m_NumDescriptorsInAllocation (NumDescriptors), m_pDeviceD3D12Impl (pDeviceD3D12Impl), m_pParentAllocator (pParentAllocator), m_ThisManagerId (ThisManagerId), m_pd3d12DescriptorHeap (pd3d12DescriptorHeap) { m_HeapDesc = m_pd3d12DescriptorHeap->GetDesc(); m_DescriptorSize = pDeviceD3D12Impl->GetD3D12Device()->GetDescriptorHandleIncrementSize(m_HeapDesc.Type); m_FirstCPUHandle = pd3d12DescriptorHeap->GetCPUDescriptorHandleForHeapStart(); m_FirstCPUHandle.ptr += m_DescriptorSize * FirstDescriptor; if (m_HeapDesc.Flags & D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE) { m_FirstGPUHandle = pd3d12DescriptorHeap->GetGPUDescriptorHandleForHeapStart(); m_FirstGPUHandle.ptr += m_DescriptorSize * FirstDescriptor; } } DescriptorHeapAllocationManager::~DescriptorHeapAllocationManager() { VERIFY(m_FreeBlockManager.GetFreeSize() == m_NumDescriptorsInAllocation, "Not all descriptors were released"); } DescriptorHeapAllocation DescriptorHeapAllocationManager::Allocate(uint32_t Count) { std::lock_guard<std::mutex> LockGuard(m_AllocationMutex); // Methods of VariableSizeGPUAllocationsManager class are not thread safe! // Use variable-size GPU allocations manager to allocate the requested number of descriptors auto DescriptorHandleOffset = m_FreeBlockManager.Allocate(Count); if (DescriptorHandleOffset == VariableSizeGPUAllocationsManager::InvalidOffset) { return DescriptorHeapAllocation(); } // Compute the first CPU and GPU descriptor handles in the allocation by // offseting the first CPU and GPU descriptor handle in the range auto CPUHandle = m_FirstCPUHandle; CPUHandle.ptr += DescriptorHandleOffset * m_DescriptorSize; auto GPUHandle = m_FirstGPUHandle; // Will be null if the heap is not GPU-visible if(m_HeapDesc.Flags & D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE) GPUHandle.ptr += DescriptorHandleOffset * m_DescriptorSize; VERIFY(m_ThisManagerId < std::numeric_limits<Uint16>::max(), "ManagerID exceeds 16-bit range"); return DescriptorHeapAllocation( m_pParentAllocator, m_pd3d12DescriptorHeap, CPUHandle, GPUHandle, Count, static_cast<Uint16>(m_ThisManagerId)); } void DescriptorHeapAllocationManager::Free(DescriptorHeapAllocation&& Allocation) { std::lock_guard<std::mutex> LockGuard(m_AllocationMutex); // Methods of VariableSizeGPUAllocationsManager class are not thread safe! VERIFY(Allocation.GetAllocationManagerId() == m_ThisManagerId, "Invalid descriptor heap manager Id"); auto DescriptorOffset = (Allocation.GetCpuHandle().ptr - m_FirstCPUHandle.ptr) / m_DescriptorSize; // Note that the allocation is not released immediately, but added to the release queue in the allocations manager // The following basic requirement guarantees correctness of resource deallocation: // // A resource is never released before the last draw command referencing it is invoked on the immediate context // // See http://diligentgraphics.com/diligent-engine/architecture/d3d12/managing-resource-lifetimes/ // // If basic requirement is met, GetNextFenceValue() will never return a number that is less than the fence value // associated with the last command list that references descriptors from the allocation m_FreeBlockManager.Free(DescriptorOffset, Allocation.GetNumHandles(), m_pDeviceD3D12Impl->GetNextFenceValue()); // Clear the allocation Allocation = DescriptorHeapAllocation(); } void DescriptorHeapAllocationManager::ReleaseStaleAllocations(Uint64 LastCompletedFenceValue) { std::lock_guard<std::mutex> LockGuard(m_AllocationMutex); // Methods of VariableSizeGPUAllocationsManager class are not thread safe! m_FreeBlockManager.ReleaseStaleAllocations(LastCompletedFenceValue); } // // CPUDescriptorHeap implementation // CPUDescriptorHeap::CPUDescriptorHeap(IMemoryAllocator& Allocator, RenderDeviceD3D12Impl* pDeviceD3D12Impl, Uint32 NumDescriptorsInHeap, D3D12_DESCRIPTOR_HEAP_TYPE Type, D3D12_DESCRIPTOR_HEAP_FLAGS Flags) : m_pDeviceD3D12Impl(pDeviceD3D12Impl), m_MemAllocator (Allocator), m_HeapPool(STD_ALLOCATOR_RAW_MEM(DescriptorHeapAllocationManager, GetRawAllocator(), "Allocator for vector<DescriptorHeapAllocationManager>")), m_AvailableHeaps(STD_ALLOCATOR_RAW_MEM(size_t, GetRawAllocator(), "Allocator for set<size_t>")) { m_HeapDesc.Type = Type; m_HeapDesc.NodeMask = 1; m_HeapDesc.NumDescriptors = NumDescriptorsInHeap; m_HeapDesc.Flags = Flags; m_DescriptorSize = m_pDeviceD3D12Impl->GetD3D12Device()->GetDescriptorHandleIncrementSize(Type); } CPUDescriptorHeap::~CPUDescriptorHeap() { VERIFY(m_CurrentSize == 0, "Not all allocations released" ); VERIFY(m_AvailableHeaps.size() == m_HeapPool.size(), "Not all descriptor heap pools are released"); Uint32 TotalDescriptors = 0; for (auto HeapPoolIt = m_HeapPool.begin(); HeapPoolIt != m_HeapPool.end(); ++HeapPoolIt) { VERIFY(HeapPoolIt->GetNumAvailableDescriptors() == HeapPoolIt->GetMaxDescriptors(), "Not all descriptors in the descriptor pool are released"); TotalDescriptors += HeapPoolIt->GetMaxDescriptors(); } TotalDescriptors = std::max(TotalDescriptors, 1u); LOG_INFO_MESSAGE(GetD3D12DescriptorHeapTypeLiteralName(m_HeapDesc.Type), " CPU heap max size: ", m_MaxHeapSize, " (", m_MaxHeapSize*100/ TotalDescriptors, "%) " ". Max stale size: ", m_MaxStaleSize, " (", m_MaxStaleSize * 100 / TotalDescriptors, "%)"); } DescriptorHeapAllocation CPUDescriptorHeap::Allocate( uint32_t Count ) { std::lock_guard<std::mutex> LockGuard(m_AllocationMutex); // Note that every DescriptorHeapAllocationManager object instance is itslef // thread-safe. Nested mutexes cannot cause a deadlock DescriptorHeapAllocation Allocation; // Go through all descriptor heap managers that have free descriptors auto AvailableHeapIt = m_AvailableHeaps.begin(); while( AvailableHeapIt != m_AvailableHeaps.end() ) { auto NextIt = AvailableHeapIt; ++NextIt; // Try to allocate descriptor using the current descriptor heap manager Allocation = m_HeapPool[*AvailableHeapIt].Allocate(Count); // Remove the manager from the pool if it has no more available descriptors if (m_HeapPool[*AvailableHeapIt].GetNumAvailableDescriptors() == 0) m_AvailableHeaps.erase(*AvailableHeapIt); // Terminate the loop if descriptor was successfully allocated, otherwise // go to the next manager if(Allocation.GetCpuHandle().ptr != 0) break; AvailableHeapIt = NextIt; } // If there were no available descriptor heap managers or no manager was able // to suffice the allocation request, create a new manager if(Allocation.GetCpuHandle().ptr == 0) { // Make sure the heap is large enough to accomodate the requested number of descriptors if(Count > m_HeapDesc.NumDescriptors) { LOG_WARNING_MESSAGE("Number of requested CPU descriptors handles (", Count, ") exceeds the descriptor heap size (", m_HeapDesc.NumDescriptors,"). Increasing the number of descriptors in the heap"); } m_HeapDesc.NumDescriptors = std::max(m_HeapDesc.NumDescriptors, static_cast<UINT>(Count)); // Create a new descriptor heap manager. Note that this constructor creates a new D3D12 descriptor // heap and references the entire heap. Pool index is used as manager ID m_HeapPool.emplace_back(m_MemAllocator, m_pDeviceD3D12Impl, this, m_HeapPool.size(), m_HeapDesc); auto NewHeapIt = m_AvailableHeaps.insert(m_HeapPool.size()-1); // Use the new manager to allocate descriptor handles Allocation = m_HeapPool[*NewHeapIt.first].Allocate(Count); } m_CurrentSize += (Allocation.GetCpuHandle().ptr != 0) ? Count : 0; m_MaxHeapSize = std::max(m_MaxHeapSize, m_CurrentSize); return Allocation; } void CPUDescriptorHeap::Free(DescriptorHeapAllocation&& Allocation) { // Method is called from ~DescriptorHeapAllocation() std::lock_guard<std::mutex> LockGuard(m_AllocationMutex); auto ManagerId = Allocation.GetAllocationManagerId(); m_CurrentSize -= static_cast<Uint32>(Allocation.GetNumHandles()); m_HeapPool[ManagerId].Free(std::move(Allocation)); } void CPUDescriptorHeap::ReleaseStaleAllocations(Uint64 LastCompletedFenceValue) { std::lock_guard<std::mutex> LockGuard(m_AllocationMutex); size_t StaleSize = 0; for (size_t HeapManagerInd = 0; HeapManagerInd < m_HeapPool.size(); ++HeapManagerInd) { // Update size before releasing stale allocations StaleSize += m_HeapPool[HeapManagerInd].GetNumStaleDescriptors(); m_HeapPool[HeapManagerInd].ReleaseStaleAllocations(LastCompletedFenceValue); // Return the manager to the pool of available managers if it has available descriptors if(m_HeapPool[HeapManagerInd].GetNumAvailableDescriptors() > 0) m_AvailableHeaps.insert(HeapManagerInd); } m_MaxStaleSize = std::max(m_MaxStaleSize, static_cast<Uint32>(StaleSize)); } GPUDescriptorHeap::GPUDescriptorHeap(IMemoryAllocator& Allocator, RenderDeviceD3D12Impl* pDevice, Uint32 NumDescriptorsInHeap, Uint32 NumDynamicDescriptors, D3D12_DESCRIPTOR_HEAP_TYPE Type, D3D12_DESCRIPTOR_HEAP_FLAGS Flags) : m_pDeviceD3D12(pDevice), m_HeapDesc { Type, NumDescriptorsInHeap + NumDynamicDescriptors, Flags, 1 // UINT NodeMask; }, m_pd3d12DescriptorHeap([&]{ CComPtr<ID3D12DescriptorHeap> pHeap; pDevice->GetD3D12Device()->CreateDescriptorHeap(&m_HeapDesc, __uuidof(pHeap), reinterpret_cast<void**>(&pHeap)); return pHeap; }()), m_DescriptorSize( pDevice->GetD3D12Device()->GetDescriptorHandleIncrementSize(Type) ), m_HeapAllocationManager(Allocator, pDevice, this, 0, m_pd3d12DescriptorHeap, 0, NumDescriptorsInHeap), m_DynamicAllocationsManager(Allocator, pDevice, this, 1, m_pd3d12DescriptorHeap, NumDescriptorsInHeap, NumDynamicDescriptors ) { } GPUDescriptorHeap::~GPUDescriptorHeap() { auto StaticSize = m_HeapAllocationManager.GetMaxDescriptors(); auto DynamicSize = m_DynamicAllocationsManager.GetMaxDescriptors(); LOG_INFO_MESSAGE(GetD3D12DescriptorHeapTypeLiteralName(m_HeapDesc.Type), " GPU heap max allocated size (static|dynamic): ", m_MaxHeapSize, " (", m_MaxHeapSize * 100 / StaticSize,"%) | ", m_MaxDynamicSize, " (", m_MaxDynamicSize * 100 / DynamicSize, "%). Max stale size (static|dynamic): ", m_MaxStaleSize, " (", m_MaxStaleSize * 100 / StaticSize, "%) | ", m_MaxDynamicStaleSize, " (", m_MaxDynamicStaleSize * 100 / DynamicSize, "%)"); } DescriptorHeapAllocation GPUDescriptorHeap::Allocate(uint32_t Count) { VERIFY_EXPR(Count > 0); // Note: this mutex may be redundant as DescriptorHeapAllocationManager::Allocate() is itself thread-safe std::lock_guard<std::mutex> LockGuard(m_AllocMutex); DescriptorHeapAllocation Allocation = m_HeapAllocationManager.Allocate(Count); VERIFY(!Allocation.IsNull(), "Failed to allocate ", Count, " GPU descriptors"); m_CurrentSize += (Allocation.GetCpuHandle().ptr != 0) ? Count : 0; m_MaxHeapSize = std::max(m_MaxHeapSize, m_CurrentSize); return Allocation; } DescriptorHeapAllocation GPUDescriptorHeap::AllocateDynamic(uint32_t Count) { VERIFY_EXPR(Count > 0); // Note: this mutex may be redundant as DescriptorHeapAllocationManager::Allocate() is itself thread-safe std::lock_guard<std::mutex> LockGuard(m_DynAllocMutex); DescriptorHeapAllocation Allocation = m_DynamicAllocationsManager.Allocate(Count); VERIFY(!Allocation.IsNull(), "Failed to allocate ", Count, " dynamic GPU descriptors"); m_CurrentDynamicSize += (Allocation.GetCpuHandle().ptr != 0) ? Count : 0; m_MaxDynamicSize = std::max(m_MaxDynamicSize, m_CurrentDynamicSize); return Allocation; } void GPUDescriptorHeap::Free(DescriptorHeapAllocation&& Allocation) { auto MgrId = Allocation.GetAllocationManagerId(); VERIFY(MgrId == 0 || MgrId == 1, "Unexpected allocation manager ID"); // Note: mutexex may be redundant as DescriptorHeapAllocationManager::Free() is itself thread-safe if(MgrId == 0) { std::lock_guard<std::mutex> LockGuard(m_AllocMutex); m_CurrentSize -= static_cast<Uint32>(Allocation.GetNumHandles()); m_HeapAllocationManager.Free(std::move(Allocation)); } else { std::lock_guard<std::mutex> LockGuard(m_DynAllocMutex); m_CurrentDynamicSize -= static_cast<Uint32>(Allocation.GetNumHandles()); m_DynamicAllocationsManager.Free(std::move(Allocation)); } } void GPUDescriptorHeap::ReleaseStaleAllocations(Uint64 LastCompletedFenceValue) { { std::lock_guard<std::mutex> LockGuard(m_AllocMutex); m_MaxStaleSize = std::max(m_MaxStaleSize, static_cast<Uint32>(m_HeapAllocationManager.GetNumStaleDescriptors())); m_HeapAllocationManager.ReleaseStaleAllocations(LastCompletedFenceValue); } { std::lock_guard<std::mutex> LockGuard(m_DynAllocMutex); m_MaxDynamicStaleSize = std::max(m_MaxDynamicStaleSize, static_cast<Uint32>(m_DynamicAllocationsManager.GetNumStaleDescriptors())); m_DynamicAllocationsManager.ReleaseStaleAllocations(LastCompletedFenceValue); } } DynamicSuballocationsManager::DynamicSuballocationsManager(IMemoryAllocator &Allocator, GPUDescriptorHeap& ParentGPUHeap, Uint32 DynamicChunkSize) : m_ParentGPUHeap(ParentGPUHeap), m_DynamicChunkSize(DynamicChunkSize), m_Suballocations(STD_ALLOCATOR_RAW_MEM(DescriptorHeapAllocation, GetRawAllocator(), "Allocator for vector<DescriptorHeapAllocation>")) { } void DynamicSuballocationsManager::DiscardAllocations(Uint64 /*FenceValue*/) { // Clear the list and dispose all allocated chunks of GPU descriptor heap. // The chunks will be added to the release queue in the allocations manager m_Suballocations.clear(); } DescriptorHeapAllocation DynamicSuballocationsManager::Allocate(Uint32 Count) { // This method is intentionally lock-free as it is expected to // be called through device context from single thread only // Check if there are no chunks or the last chunk does not have enough space if( m_Suballocations.empty() || m_CurrentSuballocationOffset + Count > m_Suballocations.back().GetNumHandles() ) { // Request a new chunk from the parent GPU descriptor heap auto SuballocationSize = std::max(m_DynamicChunkSize, Count); auto NewDynamicSubAllocation = m_ParentGPUHeap.AllocateDynamic(SuballocationSize); if (NewDynamicSubAllocation.GetCpuHandle().ptr == 0) { LOG_ERROR_MESSAGE("Failed to suballocate region for dynamic descriptors"); return DescriptorHeapAllocation(); } m_Suballocations.emplace_back(std::move(NewDynamicSubAllocation)); m_CurrentSuballocationOffset = 0; } // Perform suballocation from the last chunk auto &CurrentSuballocation = m_Suballocations.back(); auto ManagerId = CurrentSuballocation.GetAllocationManagerId(); VERIFY(ManagerId < std::numeric_limits<Uint16>::max(), "ManagerID exceed allowed limit"); DescriptorHeapAllocation Allocation( this, CurrentSuballocation.GetDescriptorHeap(), CurrentSuballocation.GetCpuHandle(m_CurrentSuballocationOffset), CurrentSuballocation.GetGpuHandle(m_CurrentSuballocationOffset), Count, static_cast<Uint16>(ManagerId) ); m_CurrentSuballocationOffset += Count; return Allocation; } void DynamicSuballocationsManager::Free(DescriptorHeapAllocation&& Allocation) { // Do nothing. Dynamic allocations are not disposed individually, but as whole chunks at the end of the frame Allocation = DescriptorHeapAllocation(); } }
0d13323bc60f54ba3adb21bdb1e0363bfd20bec3
ee24ef7aaa7d4ab6a66c56e95953414306302df3
/Cpp/SDK/AwardDealyBase_parameters.h
3d861cf03ba6e7b838ec0137dbc7076421ccf61b
[]
no_license
zH4x-SDK/zAWL-SDK
bfc0573125d3398d892c85eac05a6575592db187
3d7001585dab120480e0d16fc24396f61a1d46c6
refs/heads/main
2023-07-15T11:05:51.834741
2021-08-31T15:10:19
2021-08-31T15:10:19
401,745,502
0
0
null
null
null
null
UTF-8
C++
false
false
1,840
h
AwardDealyBase_parameters.h
#pragma once // Name: AWL, Version: 4.24.3 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function AwardDealyBase.AwardDealyBase_C.ShowAward struct UAwardDealyBase_C_ShowAward_Params { }; // Function AwardDealyBase.AwardDealyBase_C.BndEvt__Button_83_K2Node_ComponentBoundEvent_2_OnButtonHoverEvent__DelegateSignature struct UAwardDealyBase_C_BndEvt__Button_83_K2Node_ComponentBoundEvent_2_OnButtonHoverEvent__DelegateSignature_Params { }; // Function AwardDealyBase.AwardDealyBase_C.BndEvt__Button_83_K2Node_ComponentBoundEvent_3_OnButtonHoverEvent__DelegateSignature struct UAwardDealyBase_C_BndEvt__Button_83_K2Node_ComponentBoundEvent_3_OnButtonHoverEvent__DelegateSignature_Params { }; // Function AwardDealyBase.AwardDealyBase_C.BndEvt__Button_83_K2Node_ComponentBoundEvent_4_OnButtonClickedEvent__DelegateSignature struct UAwardDealyBase_C_BndEvt__Button_83_K2Node_ComponentBoundEvent_4_OnButtonClickedEvent__DelegateSignature_Params { }; // Function AwardDealyBase.AwardDealyBase_C.BndEvt__Button_0_K2Node_ComponentBoundEvent_0_OnButtonClickedEvent__DelegateSignature struct UAwardDealyBase_C_BndEvt__Button_0_K2Node_ComponentBoundEvent_0_OnButtonClickedEvent__DelegateSignature_Params { }; // Function AwardDealyBase.AwardDealyBase_C.WidgetAnimationEvt_Start_K2Node_WidgetAnimationEvent_1 struct UAwardDealyBase_C_WidgetAnimationEvt_Start_K2Node_WidgetAnimationEvent_1_Params { }; // Function AwardDealyBase.AwardDealyBase_C.ExecuteUbergraph_AwardDealyBase struct UAwardDealyBase_C_ExecuteUbergraph_AwardDealyBase_Params { }; } #ifdef _MSC_VER #pragma pack(pop) #endif
8bb56fa461031bdad93a7ed4e13fdbcc4fb2fba3
1bfee3d12f762d39d1554fd5f812086e86b32f96
/unit_tests/core/math/kmeans/src/unit_kmeans.cpp
a71b528b1883796bff999998ff0dec9f7e554c2e
[ "Zlib" ]
permissive
sundong2012/OpenTissue
f7a461b60fadcf46d6acd1a5b9cc140950093a39
54988a2402acbb21e102a7ee807c91d9f8c9d272
refs/heads/master
2023-05-03T12:39:27.593285
2021-05-14T22:39:13
2021-05-14T22:39:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,339
cpp
unit_kmeans.cpp
// // OpenTissue, A toolbox for physical based simulation and animation. // Copyright (C) 2007 Department of Computer Science, University of Copenhagen // #include <OpenTissue/configuration.h> #include <OpenTissue/core/math/math_basic_types.h> #include <OpenTissue/core/math/math_kmeans.h> #define BOOST_AUTO_TEST_MAIN #include <OpenTissue/utility/utility_push_boost_filter.h> #include <boost/test/auto_unit_test.hpp> #include <boost/test/unit_test_suite.hpp> #include <boost/test/floating_point_comparison.hpp> #include <boost/test/test_tools.hpp> #include <OpenTissue/utility/utility_pop_boost_filter.h> #include <cmath> #include <iostream> using namespace OpenTissue; BOOST_AUTO_TEST_SUITE(opentissue_math_kmeans); BOOST_AUTO_TEST_CASE(simple_test) { typedef OpenTissue::math::BasicMathTypes<double, size_t> math_types; typedef math_types::vector3_type vector3_type; typedef math_types::matrix3x3_type matrix3x3_type; typedef math_types::real_type real_type; typedef math_types::index_type index_type; typedef math_types::value_traits value_traits; typedef std::vector<vector3_type> vector_container; typedef std::vector<size_t> index_container; vector_container features; size_t index = 0; features.resize(40); real_type lower = - value_traits::half(); real_type upper = value_traits::half(); vector3_type center[4]; center[0] = vector3_type( value_traits::half(), value_traits::half(), -value_traits::two() ); center[1] = vector3_type( -value_traits::four(), value_traits::zero(), -value_traits::half() ); center[2] = vector3_type( value_traits::half(), value_traits::four(), value_traits::half() ); center[3] = vector3_type( value_traits::half(), -value_traits::two(), value_traits::four() ); for(size_t i = 0;i<10;++i,++index) { OpenTissue::math::random( features[index], lower, upper ); features[index] += center[0]; } for(size_t i = 0;i<10;++i,++index) { OpenTissue::math::random( features[index], lower, upper ); features[index] += center[1]; } for(size_t i = 0;i<10;++i,++index) { OpenTissue::math::random( features[index], lower, upper ); features[index] += center[2]; } for(size_t i = 0;i<10;++i,++index) { OpenTissue::math::random( features[index], lower, upper ); features[index] += center[3]; } vector_container cluster_centers; index_container cluster_indexes; size_t K = 4; size_t iteration = 0u; size_t max_iterations = 50u; // K-means may get caught by local minimas, in such cases clusters // seem to ``melt'' together unexpected. // // If k-means gets caught by a local minima then all the following // unit-tests is likely to fail! // OpenTissue::math::kmeans( features.begin() , features.end() , cluster_centers , cluster_indexes , K , iteration , max_iterations ); BOOST_CHECK( iteration < max_iterations ); for(size_t i = 0;i<40;++i) std::cout << cluster_indexes[i] << " "; std::cout << std::endl; size_t cluster_order[4]; cluster_order[0] = cluster_indexes[0]; cluster_order[1] = cluster_indexes[10]; cluster_order[2] = cluster_indexes[20]; cluster_order[3] = cluster_indexes[30]; BOOST_CHECK( cluster_order[0] != cluster_order[1] ); BOOST_CHECK( cluster_order[0] != cluster_order[2] ); BOOST_CHECK( cluster_order[0] != cluster_order[3] ); BOOST_CHECK( cluster_order[1] != cluster_order[2] ); BOOST_CHECK( cluster_order[1] != cluster_order[3] ); BOOST_CHECK( cluster_order[2] != cluster_order[3] ); for(size_t i = 0;i<10;++i) BOOST_CHECK( cluster_indexes[i] == cluster_order[0] ); for(size_t i = 10;i<20;++i) BOOST_CHECK( cluster_indexes[i] == cluster_order[1] ); for(size_t i = 20;i<30;++i) BOOST_CHECK( cluster_indexes[i] == cluster_order[2] ); for(size_t i = 30;i<40;++i) BOOST_CHECK( cluster_indexes[i] == cluster_order[3] ); for(size_t c = 0;c<K;++c) { std::cout << cluster_centers[ cluster_order[c] ] << std::endl; real_type dist = OpenTissue::math::length( center[c] - cluster_centers[ cluster_order[c] ] ); BOOST_CHECK(dist < value_traits::half() ); } } BOOST_AUTO_TEST_SUITE_END();
635dc87e857396772983157e335e340ac8fc4d7f
434ff801f9f28918c9e572bb752d0fc5a181edb2
/c++_basic/pointer.cpp
f4a0ae29eddd5e1a6ed73373b9e9313b9fceb2d9
[]
no_license
ayushikhandelwal99/C_basic_to_adv
bdf63dd202a9ef287f558a959a82a04e157f8a76
9cfcc20c10a2b1c19e3e32f5c8e3a49c581df1fa
refs/heads/master
2022-12-26T00:52:48.973577
2020-10-15T05:31:03
2020-10-15T05:31:03
279,268,546
0
1
null
2020-10-15T05:31:04
2020-07-13T10:15:51
C++
UTF-8
C++
false
false
339
cpp
pointer.cpp
#include<iostream> using namespace std; int main() { int a =10,*p; p=&a; printf("%d\n",a); printf("%u\n",&a); printf("%u\n",p); printf("%u\n",&p); printf("%u\n",*p); printf("%u\n",*(&a)); return 0; } // pointers are variable which stores the address of another variable // * is dereferential address // & is referential address
3b69410d280cd44eca9b4c30df48245368eba705
7cb408a37041574bff085e3e83108c005ea528d0
/Project1/Project1/源.cpp
bf335f7a1d1cd2c9bd22e1b66b53f39bb3f287dd
[]
no_license
zhaoluyao123/C-one
8827239eced1ab9cee195595bf4c4fe6b5aab069
10fc9e22e6d13c9affb4c876cb6753d287ee6a23
refs/heads/master
2023-03-12T19:40:23.252616
2021-02-24T03:23:23
2021-02-24T03:23:23
336,673,337
0
0
null
null
null
null
GB18030
C++
false
false
2,806
cpp
源.cpp
#define _CRT_SECURE_NO_WARNINGS 1//统计二进制中1的个数,写一个函数返回 #include<stdio.h> //int sum(unsigned int a) //{ // int count = 0; // while (a) // { // if (a % 2 == 1) // { // count++; // } // a = a / 2; // } // return count; //} //int main() //{ // int a = 0; // scanf("%d", &a); // int ret = sum(a); // printf("%d\n", ret); // return 0; //} //编程实现两个int整数m和n二进制表达中,有多少个位不同 //int Contary(int m, int n) //{ // int count = 0; // int tmp = m^n; // while (tmp) // { // tmp = tmp & (tmp - 1); // count++; // } // // return count; //} //int main() //{ // int m = 0; // int n = 0; // scanf("%d\n%d", &m,&n); // int ret = Contary(m, n); // printf("%d\n", ret); // return 0; //} ////获取一个整数二进制序列中所有的偶数位和奇数位,分别打印出二进制序列 //void get_bit(int m) //{ // int i = 0; // for (i = 30; i >= 0; i -= 2) // { // printf("%2d", ((m >> i) & 1)); // } // printf("\n"); // for (i = 31; i >= 1; i -= 2) // { // printf("%2d", ((m >> i) & 1)); // } //} //int main() //{ // int m = 0; // scanf("%d", &m); // get_bit(m); // return 0; //} //写一个函数打印arr数组的内容,不使用数组下标,使用指针。arr是一个整形一维数组 //int Print(int arr[],int sz) //{ // int i = 0; // int* p = arr; // for (i = 0; i < sz; i++) // { // printf("% d", *(p + i)); // } // return 0; //} //int main() //{ // int arr[] = { 1,3,1,4,5,6,7,8,9,10 }; // int sz = sizeof(arr) / sizeof(arr[0]); // Print(arr,sz); // return 0; //} //交换两个int变量的值,不能使用第三个变量 //int main() //{ // int a = 0; // int b = 0; // scanf("%d\n%d", &a, &b); // b = b - a; // a = a + b; // b = a - b; // printf("%d %d", a, b); // return 0; //} //实现一个函数打印乘法口诀表,口诀表的行数和列数自己指定,输入9,输出9*9的乘法口诀表 //void Print(int c) //{ // int a = 0; // int b = 0; // // int ret = 0; // // for (a = 1; a <= c; a++) // { // for (b = 1; b <= a; b++) // { // ret = a * b; // printf("%d*%d=%-4d ", a, b, ret); // } // printf("\n"); // } //} //int main() //{ // int c = 0; // scanf("%d", &c); // Print(c); // return 0; //} //递归实现打印一个整数的每一位 //void Print(int a) //{ // int b = 0; // b = a % 10; // if (a != 0) // { // // Print(a / 10); // printf("%d ", b); // } // //} //int main() //{ // int a = 0; // scanf("%d", &a); // Print(a); // return 0; //} //写一个递归函数digitsum(),输入一个非负整数,返回组成他的数字之和 int digitsum(unsigned int n) { int ret = 0; if (n > 9) { ret = digitsum(n / 10) + n % 10; return ret; } else { return n; } } int main() { unsigned int n = 0; scanf("%d", &n); int ret=digitsum(n); printf("%d", ret); return 0; }
c5ecfa33fee2129f004cca467ecd5531868aa6e9
d91614cd38f48df331e4ab79cbb1e940e1afc6d2
/ALGOS in C++/LINKLISTS/hoodiesproblem.cpp
5b3d67c3a8ab2b51ed8bf58055c18ce8d67c2049
[]
no_license
seemantaggarwal/CODEFORALL
c78495b091585d27a11f96a2071f1c6f59b4a251
2a7d71ebbaf0e8b1f90e6f345a3171ddeada5f9d
refs/heads/master
2020-05-31T06:51:39.717258
2020-01-15T18:57:10
2020-01-15T18:57:10
190,152,366
0
2
null
2019-06-19T06:07:08
2019-06-04T07:33:11
C++
UTF-8
C++
false
false
1,998
cpp
hoodiesproblem.cpp
#include<iostream> using namespace std; struct node { int data; node *next; }; class queue { node *front; node *rear; public: queue() { front=NULL; rear=NULL; } void insert(int); void check(int); void display(); void del(); }; void queue::insert(int item) { node *temp = new node; temp->data=item; temp->next=NULL; if(front==NULL) { front=temp; rear=temp; } else { rear->next=temp; rear=temp; } } void queue::check(int item) { if(front==NULL) { insert(item); } else { node *temp = new node; temp->data=item; temp->next=NULL; node *iter= new node; iter=front; if(iter->data==item) { temp->next=iter->next; iter->next=temp; } while(iter->data!=item) { if(iter->next==NULL) { insert(item); break; } else if(iter->next->data==item) { temp->next=iter->next; iter->next=temp; } iter=iter->next; } } } void queue::display() { node *temp= new node; temp=front; while(temp!=NULL) { cout<<temp->data; temp=temp->next; } } void queue::del() { if(front!=NULL) { /*node *temp= new node; temp=front; front=temp->next;*/ front=front->next; } else if(front==rear) { front=NULL; rear=NULL; } else { cout<<"underflow"; } } int main() { queue c1, c2; cout<<"press E for adding and D for distributing and x for exit"; char selection; cin>>selection; while(selection!='x') { if(selection=='e' || selection=='E') { cout<<"enter course number"; int num; cin>>num; if(num==1) { cout<<"enter roll number"; int item; cin>>item; c1.check(item); } if(num==2) { cout<<"enter roll number"; int item; cin>>item; c2.check(item); } } else if(selection=='d' || selection=='D') { c1.del(); c2.del(); } cin>>selection; } c1.display(); cout<<endl; c2.display(); }
c91811719873cda5ae09eef2480122859fd9f67e
d9d19f848fd5afe438fb07eb187b08856bb264e0
/source/src/input/input.cpp
11abdecb9eb703357e2fb4ab0993fb1deb0bd9bf
[ "MIT" ]
permissive
timsl/agp-grus
b6734c7f4d18dc8c3487d617b7d6fe26806fcd96
4f224324ed37b9f85d1b352bcda72b5bf2940835
refs/heads/master
2021-09-20T21:27:06.104481
2018-08-15T12:22:58
2018-08-15T12:22:58
112,482,989
3
0
null
null
null
null
UTF-8
C++
false
false
3,838
cpp
input.cpp
#include "input.hpp" void resize_callback(GLFWwindow *win, int width, int height, WorldState *world) { world->window.width = width; world->window.height = height; glViewport(0, 0, width, height); } void keyboard_callback(GLFWwindow *win, int key, int action, WorldState *world) { // Generally only one action per keypress, so we can return if // anything matches. // Keys that act when held down. REPEAT is considered the same as // press since the held thingies should be idempotent anyways. bool key_down = action == GLFW_PRESS || action == GLFW_REPEAT; switch (key) { case GLFW_KEY_LEFT: world->held.turn_left = key_down; return; case GLFW_KEY_RIGHT: world->held.turn_right = key_down; return; case GLFW_KEY_UP: world->held.turn_up = key_down; return; case GLFW_KEY_DOWN: world->held.turn_down = key_down; return; case GLFW_KEY_W: world->held.move_forw = key_down; return; case GLFW_KEY_A: world->held.move_left = key_down; return; case GLFW_KEY_S: world->held.move_back = key_down; return; case GLFW_KEY_D: world->held.move_right = key_down; return; case GLFW_KEY_Q: world->held.roll_left = key_down; return; case GLFW_KEY_E: world->held.roll_right = key_down; return; case GLFW_KEY_LEFT_SHIFT: world->held.move_up = key_down; return; case GLFW_KEY_LEFT_CONTROL: world->held.move_down = key_down; return; } // Keys that aren't held, but just act { bool p = action == GLFW_PRESS; switch (key) { case GLFW_KEY_ESCAPE: if (p) { glfwSetWindowShouldClose(win, 1); } return; case GLFW_KEY_R: if (p) { world->cam = CameraState(); } return; case GLFW_KEY_P: if (p) { world->held.simulation_running ^= true; } return; case GLFW_KEY_PERIOD: if (p) { update(world, 0.1); } return; } } // Fallback when nothing matches const char *actionname = "ERROR_WEIRD_ACTION"; if (action == GLFW_PRESS) { actionname = "Pressed"; } else if (action == GLFW_REPEAT) { actionname = "Repeated"; } else if (action == GLFW_RELEASE) { actionname = "Released"; } printf("%s unbound key %d.\n", actionname, key); } constexpr double sensitivity = 0.1 * (M_PI / 180.0); void cursor_callback(GLFWwindow *win, double xpos, double ypos, WorldState *world) { auto &c = world->cam; if (!c.has_seen_mouse) { c.old_xpos = xpos; c.old_ypos = ypos; c.has_seen_mouse = true; } auto x_diff = xpos - c.old_xpos; c.old_xpos = xpos; auto y_diff = ypos - c.old_ypos; c.old_ypos = ypos; c.rotate(glm::cross(c.up, c.dir), y_diff * sensitivity); c.rotate(c.up, -x_diff * sensitivity); } constexpr float movespeed = 5000.0; constexpr float rotationspeed = 15 * 3.6 * (M_PI / 180.0); void update_held(WorldState *world, float dt) { const float ms = movespeed * dt; const float rs = rotationspeed * dt; auto &h = world->held; auto &c = world->cam; if (h.move_forw) { c.move(c.dir * ms); } if (h.move_back) { c.move(-c.dir * ms); } if (h.move_up) { c.move(c.up * ms); } if (h.move_down) { c.move(-c.up * ms); } if (h.move_left) { // These are normalized as the inputs are orthogonal c.move(glm::cross(c.up, c.dir) * ms); } if (h.move_right) { c.move(glm::cross(c.dir, c.up) * ms); } if (h.turn_left) { c.rotate(c.up, rs); } if (h.turn_right) { c.rotate(c.up, -rs); } if (h.turn_up) { c.rotate(glm::cross(c.dir, c.up), rs); } if (h.turn_down) { c.rotate(glm::cross(c.up, c.dir), rs); } if (h.roll_left) { c.rotate(c.dir, -rs); } if (h.roll_right) { c.rotate(c.dir, rs); } }
5755e3bfd7d84d0f91266a8a6e6628727841b503
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/content/public/test/fenced_frame_test_util.h
051fc4b35533a54085722b7845a9484f4aedaa4f
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
4,812
h
fenced_frame_test_util.h
// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_TEST_FENCED_FRAME_TEST_UTIL_H_ #define CONTENT_PUBLIC_TEST_FENCED_FRAME_TEST_UTIL_H_ #include "base/compiler_specific.h" #include "base/test/scoped_feature_list.h" #include "content/public/browser/web_contents.h" #include "net/base/net_errors.h" #include "third_party/blink/public/common/fenced_frame/redacted_fenced_frame_config.h" #include "third_party/blink/public/mojom/fenced_frame/fenced_frame.mojom.h" class GURL; namespace content { class RenderFrameHost; class FencedFrameURLMapping; class FencedFrameReporter; namespace test { // Browser tests can use this class to more conveniently leverage fenced frames. class FencedFrameTestHelper { public: explicit FencedFrameTestHelper(); ~FencedFrameTestHelper(); FencedFrameTestHelper(const FencedFrameTestHelper&) = delete; FencedFrameTestHelper& operator=(const FencedFrameTestHelper&) = delete; // This method creates a new fenced frame in `mode` rooted at // `fenced_frame_parent` that is navigated to `url`. This method waits for the // navigation to `url` to commit, and returns the `RenderFrameHost` that // committed the navigation if it succeeded. Otherwise, it returns `nullptr`. // See `NavigationFrameInFencedFrameTree()` documentation for the // `expected_error_code` parameter. RenderFrameHost* CreateFencedFrame( RenderFrameHost* fenced_frame_parent, const GURL& url, net::Error expected_error_code = net::OK, blink::FencedFrame::DeprecatedFencedFrameMode mode = blink::FencedFrame::DeprecatedFencedFrameMode::kDefault, bool wait_for_load = true); // This method is similar to `FencedFrameTestHelper::CreateFencedFrame` but // doesn't wait until the fenced frame completes loading. void CreateFencedFrameAsync(RenderFrameHost* fenced_frame_parent_rfh, const GURL& url); void NavigateFencedFrameUsingFledge(RenderFrameHost* fenced_frame_parent, const GURL& url, const std::string fenced_frame_id); // This method provides a way to navigate frames within a fenced frame's tree, // and synchronously wait for the load to finish. This method returns the // `RenderFrameHost` that the navigation committed to if it was successful // (which may be different from the one that navigation started in), and // `nullptr` otherwise. It takes an `expected_error_code` in case the // navigation to `url` fails, which can be detected on a per-error-code basis. // TODO(crbug.com/1294189): Directly use TestFrameNavigationObserver instead // of relying on this method. RenderFrameHost* NavigateFrameInFencedFrameTree( RenderFrameHost* rfh, const GURL& url, net::Error expected_error_code = net::OK, bool wait_for_load = true); // Helper function for event reporting tests that sends out a request. This is // used to see if this request or the actual event reached the server first. // If this reaches the server first, we know that the event was not sent. void SendBasicRequest(WebContents* web_contents, GURL url, absl::optional<std::string> content = absl::nullopt); // Returns the last created fenced frame. This can be used by embedders who // must create fenced frames from script but need to get the fence frame's // inner root RenderFrameHost. // This method will return nullptr if no fenced frames were created. static RenderFrameHost* GetMostRecentlyAddedFencedFrame(RenderFrameHost* rfh); // Returns a vector of all child fenced frames given a parent `rfh`. This can // be used by embedders who must create multiple fenced frames from script but // need to get their inner root RenderFrameHosts. static std::vector<RenderFrameHost*> GetChildFencedFrameHosts( RenderFrameHost* rfh); private: base::test::ScopedFeatureList scoped_feature_list_; }; // Maps a URL to a URN that can be loaded into an opaque-ads fenced frame. This // can be called from outside of `content/` as it does not require access to // `RenderFrameHostImpl`. GURL CreateFencedFrameURLMapping(RenderFrameHost* rfh, const GURL& url); // Helper function that converts a URL to a URN and adds the mapping to a given // fenced frame URL mapping object. This can only be called from inside of // `content/`. GURL AddAndVerifyFencedFrameURL( FencedFrameURLMapping* fenced_frame_url_mapping, const GURL& https_url, scoped_refptr<FencedFrameReporter> fenced_frame_reporter = nullptr); } // namespace test } // namespace content #endif // CONTENT_PUBLIC_TEST_FENCED_FRAME_TEST_UTIL_H_
e8deaec52729ea15500a8995899dee5f09839aff
a4b09665ae7e698652aff7f67a751c031271ee14
/DEM/Low/src/Physics/MotionStateDynamic.h
02944175521bf87093fe06140ace8e04567f0363
[ "MIT" ]
permissive
ugozapad/deusexmachina
80ce769c83ed997fa6440402ac4f0123ce907310
f5ca9f2eb850bc827bcf2c18a7303f3e569fea5c
refs/heads/master
2020-05-20T04:38:43.234542
2019-01-17T11:27:24
2019-01-17T11:27:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,336
h
MotionStateDynamic.h
#pragma once #ifndef __DEM_L1_MOTION_STATE_DYNAMIC_H__ #define __DEM_L1_MOTION_STATE_DYNAMIC_H__ #include <LinearMath/btMotionState.h> // Motion state for dynamic objects. Very rarely gets tfm, but reads it almost every frame, at least // when object is active. Since it feeds the node controller that uses quaternion for rotation, and // conversion will be done anyway, we store quaternion + vector here to reduce memory usage. namespace Physics { class CMotionStateDynamic: public btMotionState { public: BT_DECLARE_ALIGNED_ALLOCATOR(); btQuaternion Rotation; btVector3 Position; bool TfmChanged; CMotionStateDynamic(): Rotation(0.f, 0.f, 0.f, 1.f), Position(0.f, 0.f, 0.f), TfmChanged(false) {} virtual void getWorldTransform(btTransform& worldTrans) const; virtual void setWorldTransform(const btTransform& worldTrans); }; inline void CMotionStateDynamic::getWorldTransform(btTransform& worldTrans) const { worldTrans.setRotation(Rotation); worldTrans.setOrigin(Position); } //--------------------------------------------------------------------- inline void CMotionStateDynamic::setWorldTransform(const btTransform& worldTrans) { Rotation = worldTrans.getRotation(); Position = worldTrans.getOrigin(); TfmChanged = true; } //--------------------------------------------------------------------- } #endif
40b61836776acb82050a06e14eb43bb613a6f037
8314e17eb2d7d64b36f5e0d4f6803f3f4e863524
/src/SimulationBlock.cpp
c5008a20f7039eaa3aa64fc567845fd9d3e7b647
[ "MIT" ]
permissive
ELCT-350/Shared
da588c5a90e970001aacfc407496d32dcfe40f0e
e8702856d14173af75734d0a9890a985de7d97ce
refs/heads/Project
2020-11-29T05:33:56.781979
2020-04-21T04:01:30
2020-04-21T04:01:30
230,034,447
0
2
MIT
2020-04-10T16:13:28
2019-12-25T03:19:16
C++
UTF-8
C++
false
false
831
cpp
SimulationBlock.cpp
#include "SimulationBlock.h" #include <stdexcept> using namespace ELCT350; using namespace std; #pragma region Constructors SimulationBlock::SimulationBlock(size_t numParameters) : _numParameters(numParameters), _parameters(make_unique<double[]>(_numParameters)) { } #pragma endregion #pragma region Modifiers void SimulationBlock::setParameter(size_t parameterIndex, double parameter) { if (parameterIndex >= _numParameters) throw out_of_range("Parameter index out of range"); _parameters[parameterIndex] = parameter; } #pragma endregion #pragma region Observers double SimulationBlock::getParameter(size_t parameterIndex) const { if (parameterIndex >= _numParameters) throw out_of_range("Parameter index out of range"); return _parameters[parameterIndex]; } #pragma endregion
39a37c91fe115e42d090f87e598fd330b4abf778
0f0b2c5e9095ba273992ab0b74a82f986b4f941e
/libs/binder/include/private/binder/binder_module.h
7be8f7b2d92822961a4f4fc7955f5d0930831db8
[ "LicenseRef-scancode-unicode", "Apache-2.0" ]
permissive
LineageOS/android_frameworks_native
28274a8a6a3d2b16150702e0a34434bc45090b9a
c25b27db855a0a6d749bfd45d05322939d2ad39a
refs/heads/lineage-18.1
2023-08-04T11:18:47.942921
2023-05-05T12:54:26
2023-05-05T12:54:26
75,639,913
21
626
NOASSERTION
2021-06-11T19:11:21
2016-12-05T15:41:33
C++
UTF-8
C++
false
false
2,616
h
binder_module.h
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _BINDER_MODULE_H_ #define _BINDER_MODULE_H_ #ifdef __cplusplus namespace android { #endif /* obtain structures and constants from the kernel header */ // TODO(b/31559095): bionic on host #ifndef __ANDROID__ #define __packed __attribute__((__packed__)) #endif // TODO(b/31559095): bionic on host #if defined(B_PACK_CHARS) && !defined(_UAPI_LINUX_BINDER_H) #undef B_PACK_CHARS #endif #include <sys/ioctl.h> #include <linux/android/binder.h> #ifndef BR_FROZEN_REPLY // Temporary definition of BR_FROZEN_REPLY. For production // this will come from UAPI binder.h #define BR_FROZEN_REPLY _IO('r', 18) #endif //BR_FROZEN_REPLY #ifndef BINDER_FREEZE /* * Temporary definitions for freeze support. For the final version * these will be defined in the UAPI binder.h file from upstream kernel. */ #define BINDER_FREEZE _IOW('b', 14, struct binder_freeze_info) struct binder_freeze_info { // // Group-leader PID of process to be frozen // uint32_t pid; // // Enable(1) / Disable(0) freeze for given PID // uint32_t enable; // // Timeout to wait for transactions to drain. // 0: don't wait (ioctl will return EAGAIN if not drained) // N: number of ms to wait uint32_t timeout_ms; }; #endif //BINDER_FREEZE #ifndef BINDER_GET_FROZEN_INFO #define BINDER_GET_FROZEN_INFO _IOWR('b', 15, struct binder_frozen_status_info) struct binder_frozen_status_info { // // Group-leader PID of process to be queried // __u32 pid; // // Indicates whether the process has received any sync calls since last // freeze (cleared at freeze/unfreeze) // __u32 sync_recv; // // Indicates whether the process has received any async calls since last // freeze (cleared at freeze/unfreeze) // __u32 async_recv; }; #endif //BINDER_GET_FROZEN_INFO #ifdef __cplusplus } // namespace android #endif #endif // _BINDER_MODULE_H_
5f9e45a396eb03bd645fde1b00131a3bf3e7f3b5
2b1b459706bbac83dad951426927b5798e1786fc
/src/connectivity/bluetooth/hci/virtual/loopback.cc
cd33e8333568a44ff05bb6a27262bd9cc6fd61cb
[ "BSD-2-Clause" ]
permissive
gnoliyil/fuchsia
bc205e4b77417acd4513fd35d7f83abd3f43eb8d
bc81409a0527580432923c30fbbb44aba677b57d
refs/heads/main
2022-12-12T11:53:01.714113
2022-01-08T17:01:14
2022-12-08T01:29:53
445,866,010
4
3
BSD-2-Clause
2022-10-11T05:44:30
2022-01-08T16:09:33
C++
UTF-8
C++
false
false
19,066
cc
loopback.cc
// Copyright 2022 The Fuchsia 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 "loopback.h" #include <assert.h> #include <lib/ddk/debug.h> #include <lib/ddk/device.h> #include <lib/ddk/driver.h> #include <lib/ddk/platform-defs.h> #include <lib/syslog/cpp/macros.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <threads.h> #include <unistd.h> #include <zircon/assert.h> #include <zircon/status.h> namespace bt_hci_virtual { LoopbackDevice::LoopbackDevice(zx_device_t* parent, async_dispatcher_t* dispatcher) : LoopbackDeviceType(parent), dispatcher_(dispatcher) {} // NOLINTNEXTLINE(bugprone-easily-swappable-parameters) LoopbackDevice::Wait::Wait(LoopbackDevice* uart, zx::channel* channel) { this->state = ASYNC_STATE_INIT; this->handler = Handler; this->object = ZX_HANDLE_INVALID; this->trigger = ZX_SIGNAL_NONE; this->options = 0; this->uart = uart; this->channel = channel; } void LoopbackDevice::Wait::Handler(async_dispatcher_t* dispatcher, async_wait_t* async_wait, zx_status_t status, const zx_packet_signal_t* signal) { auto wait = static_cast<Wait*>(async_wait); wait->uart->OnChannelSignal(wait, status, signal); } size_t LoopbackDevice::EventPacketLength() { // payload length is in byte 2 of the packet // add 3 bytes for packet indicator, event code and length byte return event_buffer_offset_ > 2 ? event_buffer_[2] + 3 : 0; } size_t LoopbackDevice::AclPacketLength() { // length is in bytes 3 and 4 of the packet // add 5 bytes for packet indicator, control info and length fields return acl_buffer_offset_ > 4 ? (acl_buffer_[3] | (acl_buffer_[4] << 8)) + 5 : 0; } size_t LoopbackDevice::ScoPacketLength() { // payload length is byte 3 of the packet // add 4 bytes for packet indicator, handle, and length byte return sco_buffer_offset_ > 3 ? (sco_buffer_[3] + 4) : 0; } zx_status_t LoopbackDevice::BtHciOpenCommandChannel(zx::channel in) { FX_LOGS(TRACE) << "LoopbackDevice::BtHciOpenCommandChannel"; return HciOpenChannel(&cmd_channel_, in.release()); } zx_status_t LoopbackDevice::BtHciOpenAclDataChannel(zx::channel in) { FX_LOGS(TRACE) << "LoopbackDevice::BtHciOpenAclDataChannel"; return HciOpenChannel(&acl_channel_, in.release()); } zx_status_t LoopbackDevice::BtHciOpenSnoopChannel(zx::channel in) { FX_LOGS(TRACE) << "LoopbackDevice::BtHciOpenSnoopChannel"; return HciOpenChannel(&snoop_channel_, in.release()); } zx_status_t LoopbackDevice::BtHciOpenScoChannel(zx::channel in) { FX_LOGS(TRACE) << "LoopbackDevice::BtHciOpenScoChannel"; return HciOpenChannel(&sco_channel_, in.release()); } void LoopbackDevice::ChannelCleanupLocked(zx::channel* channel) { FX_LOGS(TRACE) << "LoopbackDevice::ChannelCleanupLocked"; if (!channel->is_valid()) { return; } if (channel == &cmd_channel_ && cmd_channel_wait_.pending) { async_cancel_wait(dispatcher_, &cmd_channel_wait_); cmd_channel_wait_.pending = false; } else if (channel == &acl_channel_ && acl_channel_wait_.pending) { async_cancel_wait(dispatcher_, &acl_channel_wait_); acl_channel_wait_.pending = false; } else if (channel == &sco_channel_ && sco_channel_wait_.pending) { async_cancel_wait(dispatcher_, &sco_channel_wait_); sco_channel_wait_.pending = false; } else if (channel == &in_channel_ && in_channel_wait_.pending) { async_cancel_wait(dispatcher_, &in_channel_wait_); in_channel_wait_.pending = false; } channel->reset(); } void LoopbackDevice::SnoopChannelWriteLocked(uint8_t flags, uint8_t* bytes, size_t length) { FX_LOGS(TRACE) << "LoopbackDevice::SnoopChannelWriteLocked"; if (!snoop_channel_.is_valid()) { return; } // We tack on a flags byte to the beginning of the payload. // Use an iovec to avoid a large allocation + copy. zx_channel_iovec_t iovs[2]; iovs[0] = {.buffer = &flags, .capacity = sizeof(flags), .reserved = 0}; iovs[1] = {.buffer = bytes, .capacity = static_cast<uint32_t>(length), .reserved = 0}; zx_status_t status = snoop_channel_.write(/*flags=*/ZX_CHANNEL_WRITE_USE_IOVEC, /*bytes=*/iovs, /*num_bytes=*/2, /*handles=*/nullptr, /*num_handles=*/0); if (status != ZX_OK) { if (status != ZX_ERR_PEER_CLOSED) { FX_LOGS(ERROR) << "bt-loopback-device: failed to write to snoop channel" << zx_status_get_string(status); } // It should be safe to clean up the channel right here as the work thread // never waits on this channel from outside of the lock. ChannelCleanupLocked(&snoop_channel_); } } void LoopbackDevice::HciBeginShutdown() { FX_LOGS(TRACE) << "LoopbackDevice::HciBeginShutdown"; bool was_shutting_down = shutting_down_.exchange(true, std::memory_order_relaxed); if (!was_shutting_down) { FX_LOGS(TRACE) << "LoopbackDevice::HciBeginShutdown !was_shutting_down"; DdkAsyncRemove(); } } void LoopbackDevice::OnChannelSignal(Wait* wait, zx_status_t status, const zx_packet_signal_t* signal) { FX_LOGS(TRACE) << "OnChannelSignal"; { std::lock_guard guard(mutex_); wait->pending = false; } if (wait->channel == &in_channel_) { HciHandleIncomingChannel(wait->channel, signal->observed); } else { HciHandleClientChannel(wait->channel, signal->observed); } // Reset waiters { std::lock_guard guard(mutex_); // Resume waiting for channel signals. If a packet was queued while the write was processing, // it should be immediately signaled. if (wait->channel->is_valid() && !wait->pending) { ZX_ASSERT(async_begin_wait(dispatcher_, wait) == ZX_OK); wait->pending = true; } } } zx_status_t LoopbackDevice::HciOpenChannel(zx::channel* in_channel, zx_handle_t in) { FX_LOGS(TRACE) << "LoopbackDevice::HciOpenChannel"; std::lock_guard guard(mutex_); zx_status_t result = ZX_OK; if (in_channel->is_valid()) { FX_LOGS(ERROR) << "LoopbackDevice: already bound, failing"; result = ZX_ERR_ALREADY_BOUND; return result; } in_channel->reset(in); Wait* wait = nullptr; if (in_channel == &cmd_channel_) { wait = &cmd_channel_wait_; } else if (in_channel == &acl_channel_) { wait = &acl_channel_wait_; } else if (in_channel == &sco_channel_) { wait = &sco_channel_wait_; } else if (in_channel == &snoop_channel_) { return ZX_OK; } ZX_ASSERT(wait); wait->object = in_channel->get(); wait->trigger = ZX_CHANNEL_READABLE | ZX_CHANNEL_PEER_CLOSED; ZX_ASSERT(async_begin_wait(dispatcher_, wait) == ZX_OK); wait->pending = true; return result; } void LoopbackDevice::HciHandleIncomingChannel(zx::channel* chan, zx_signals_t pending) { FX_LOGS(TRACE) << "HciHandleIncomingChannel readable:" << int(pending & ZX_CHANNEL_READABLE) << ", closed: " << int(pending & ZX_CHANNEL_PEER_CLOSED); // If we are in the process of shutting down, we are done. if (atomic_load_explicit(&shutting_down_, std::memory_order_relaxed)) { return; } // Channel may have been closed since signal was received. if (!chan->is_valid()) { FX_LOGS(ERROR) << "channel is invalid"; return; } // Handle the read signal first. If we are also peer closed, we want to make // sure that we have processed all of the pending messages before cleaning up. if (pending & ZX_CHANNEL_READABLE) { uint32_t length; uint8_t read_buffer[kAclMaxFrameSize]; { std::lock_guard guard(mutex_); zx_status_t status; status = zx_channel_read(chan->get(), 0, read_buffer, nullptr, kAclMaxFrameSize, 0, &length, nullptr); if (status == ZX_ERR_SHOULD_WAIT) { FX_LOGS(WARNING) << "ignoring ZX_ERR_SHOULD_WAIT when reading incoming channel"; return; } if (status != ZX_OK) { FX_LOGS(ERROR) << "failed to read from incoming channel " << zx_status_get_string(status); ChannelCleanupLocked(chan); return; } } const uint8_t* buf = read_buffer; const uint8_t* const end = read_buffer + length; while (buf < end) { if (cur_uart_packet_type_ == kHciNone) { // start of new packet. read packet type cur_uart_packet_type_ = static_cast<BtHciPacketIndicator>(*buf++); } switch (cur_uart_packet_type_) { case kHciEvent: ProcessNextUartPacketFromReadBuffer( event_buffer_, sizeof(event_buffer_), &event_buffer_offset_, &buf, end, &LoopbackDevice::EventPacketLength, &cmd_channel_, BT_HCI_SNOOP_TYPE_EVT); break; case kHciAclData: ProcessNextUartPacketFromReadBuffer(acl_buffer_, sizeof(acl_buffer_), &acl_buffer_offset_, &buf, end, &LoopbackDevice::AclPacketLength, &acl_channel_, BT_HCI_SNOOP_TYPE_ACL); break; case kHciSco: ProcessNextUartPacketFromReadBuffer(sco_buffer_, sizeof(sco_buffer_), &sco_buffer_offset_, &buf, end, &LoopbackDevice::ScoPacketLength, &sco_channel_, BT_HCI_SNOOP_TYPE_SCO); break; default: FX_LOGS(ERROR) << "unsupported HCI packet type " << cur_uart_packet_type_ << " received. We may be out of sync"; cur_uart_packet_type_ = kHciNone; return; } } } if (pending & ZX_CHANNEL_PEER_CLOSED) { { std::lock_guard guard(mutex_); ChannelCleanupLocked(chan); } HciBeginShutdown(); } } void LoopbackDevice::ProcessNextUartPacketFromReadBuffer( uint8_t* buffer, size_t buffer_size, size_t* buffer_offset, const uint8_t** uart_src, const uint8_t* uart_end, PacketLengthFunction get_packet_length, zx::channel* channel, bt_hci_snoop_type_t snoop_type) { size_t packet_length = (this->*get_packet_length)(); while (!packet_length && *uart_src < uart_end) { // read until we have enough to compute packet length buffer[*buffer_offset] = **uart_src; (*buffer_offset)++; (*uart_src)++; packet_length = (this->*get_packet_length)(); } // Out of bytes, but we still don't know the packet length. Just wait for // the next packet. if (!packet_length) { return; } if (packet_length > buffer_size) { FX_LOGS(ERROR) << "packet_length is too large (" << packet_length << " > " << buffer_size << ") during packet reassembly. Dropping and " "attempting to re-sync."; // Reset the reassembly state machine. *buffer_offset = 1; cur_uart_packet_type_ = kHciNone; // Consume the rest of the UART buffer to indicate that it is corrupt. *uart_src = uart_end; return; } size_t remaining = uart_end - *uart_src; size_t copy_size = packet_length - *buffer_offset; if (copy_size > remaining) { copy_size = remaining; } ZX_ASSERT(*buffer_offset + copy_size <= buffer_size); memcpy(buffer + *buffer_offset, *uart_src, copy_size); *uart_src += copy_size; *buffer_offset += copy_size; if (*buffer_offset != packet_length) { // The packet is incomplete, the next chunk should continue the same packet. return; } std::lock_guard guard(mutex_); // Attempt to send this packet to the channel. Do so in the lock so we don't shut down while // writing. if (channel->is_valid()) { zx_status_t status = channel->write(/*flags=*/0, &buffer[1], packet_length - 1, nullptr, 0); if (status != ZX_OK) { FX_LOGS(ERROR) << "failed to write packet: " << zx_status_get_string(status); ChannelCleanupLocked(&acl_channel_); } } // If the snoop channel is open then try to write the packet even if |channel| was closed. SnoopChannelWriteLocked(bt_hci_snoop_flags(snoop_type, true), &buffer[1], packet_length - 1); // reset buffer cur_uart_packet_type_ = kHciNone; *buffer_offset = 1; } void LoopbackDevice::HciHandleClientChannel(zx::channel* chan, zx_signals_t pending) { FX_LOGS(TRACE) << "LoopbackDevice::HciHandleClientChannel"; // Channel may have been closed since signal was received. if (!chan->is_valid()) { FX_LOGS(ERROR) << "chan invalid"; return; } // Figure out which channel we are dealing with and the constants which go // along with it. uint32_t max_buf_size; BtHciPacketIndicator packet_type; bt_hci_snoop_type_t snoop_type; const char* chan_name = nullptr; if (chan == &cmd_channel_) { max_buf_size = kCmdBufSize; packet_type = kHciCommand; snoop_type = BT_HCI_SNOOP_TYPE_CMD; chan_name = "command"; } else if (chan == &acl_channel_) { max_buf_size = kAclMaxFrameSize; packet_type = kHciAclData; snoop_type = BT_HCI_SNOOP_TYPE_ACL; chan_name = "ACL"; } else if (chan == &sco_channel_) { max_buf_size = kScoMaxFrameSize; packet_type = kHciSco; snoop_type = BT_HCI_SNOOP_TYPE_SCO; chan_name = "SCO"; } else { // This should never happen, we only know about three packet types currently. ZX_ASSERT(false); return; } FX_LOGS(TRACE) << "LoopbackDevice::HciHandleClientChannel handling " << chan_name; // Handle the read signal first. If we are also peer closed, we want to make // sure that we have processed all of the pending messages before cleaning up. if (pending & ZX_CHANNEL_READABLE) { zx_status_t status = ZX_OK; uint32_t length = max_buf_size - 1; { std::lock_guard guard(mutex_); status = zx_channel_read(chan->get(), 0, write_buffer_ + 1, nullptr, length, 0, &length, nullptr); if (status == ZX_ERR_SHOULD_WAIT) { FX_LOGS(WARNING) << "ignoring ZX_ERR_SHOULD_WAIT when reading " << chan_name << " channel"; return; } if (status != ZX_OK) { FX_LOGS(ERROR) << "hci_read_thread: failed to read from " << chan_name << " channel " << zx_status_get_string(status); ChannelCleanupLocked(chan); return; } write_buffer_[0] = packet_type; length++; SnoopChannelWriteLocked(bt_hci_snoop_flags(snoop_type, false), write_buffer_ + 1, length - 1); if (in_channel_.is_valid()) { status = in_channel_.write(/*flags=*/0, write_buffer_, length, nullptr, 0); if (status != ZX_OK) { FX_LOGS(ERROR) << "failed to write packet: " << zx_status_get_string(status); } } } if (status != ZX_OK) { HciBeginShutdown(); } } if (pending & ZX_CHANNEL_PEER_CLOSED) { FX_LOGS(DEBUG) << "received closed signal for " << chan_name << " channel"; std::lock_guard guard(mutex_); ChannelCleanupLocked(chan); } } void LoopbackDevice::BtHciConfigureSco(sco_coding_format_t coding_format, sco_encoding_t encoding, sco_sample_rate_t sample_rate, bt_hci_configure_sco_callback callback, void* cookie) { FX_LOGS(TRACE) << "LoopbackDevice::BtHciConfigureSco"; // UART doesn't require any SCO configuration. callback(cookie, ZX_OK); } void LoopbackDevice::BtHciResetSco(bt_hci_reset_sco_callback callback, void* cookie) { FX_LOGS(TRACE) << "LoopbackDevice::BtHciResetSco"; // UART doesn't require any SCO configuration, so there's nothing to do. callback(cookie, ZX_OK); } void LoopbackDevice::DdkUnbind(ddk::UnbindTxn txn) { FX_LOGS(TRACE) << "LoopbackDevice::DdkUnbind"; // We are now shutting down. Make sure that any pending callbacks in // flight from the serial_impl are nerfed and that our thread is shut down. std::atomic_store_explicit(&shutting_down_, true, std::memory_order_relaxed); { std::lock_guard guard(mutex_); // Close the transport channels so that the host stack is notified of device // removal and tasks aren't posted to work thread. ChannelCleanupLocked(&cmd_channel_); ChannelCleanupLocked(&acl_channel_); ChannelCleanupLocked(&sco_channel_); ChannelCleanupLocked(&snoop_channel_); ChannelCleanupLocked(&in_channel_); } if (loop_) { loop_->Quit(); loop_->JoinThreads(); } // Tell the DDK we are done unbinding. txn.Reply(); } void LoopbackDevice::DdkRelease() { FX_LOGS(TRACE) << "LoopbackDevice::DdkRelease"; // Driver manager is given a raw pointer to this dynamically allocated object in Create(), so // when DdkRelease() is called we need to free the allocated memory. delete this; } void LoopbackDevice::OpenCommandChannel(OpenCommandChannelRequestView request, OpenCommandChannelCompleter::Sync& completer) { BtHciOpenCommandChannel(zx::channel(request->channel.release())); } void LoopbackDevice::OpenAclDataChannel(OpenAclDataChannelRequestView request, OpenAclDataChannelCompleter::Sync& completer) { BtHciOpenAclDataChannel(zx::channel(request->channel.release())); } void LoopbackDevice::OpenSnoopChannel(OpenSnoopChannelRequestView request, OpenSnoopChannelCompleter::Sync& completer) { BtHciOpenSnoopChannel(zx::channel(request->channel.release())); } zx_status_t LoopbackDevice::DdkGetProtocol(uint32_t proto_id, void* out_proto) { if (proto_id != ZX_PROTOCOL_BT_HCI) { return ZX_ERR_NOT_SUPPORTED; } bt_hci_protocol_t* hci_proto = static_cast<bt_hci_protocol*>(out_proto); hci_proto->ops = &bt_hci_protocol_ops_; hci_proto->ctx = this; return ZX_OK; } zx_status_t LoopbackDevice::Bind(zx_handle_t channel, std::string_view name) { FX_LOGS(TRACE) << "LoopbackDevice::Bind"; zx_status_t result = ZX_OK; { std::lock_guard guard(mutex_); // pre-populate event packet indicators event_buffer_[0] = kHciEvent; event_buffer_offset_ = 1; acl_buffer_[0] = kHciAclData; acl_buffer_offset_ = 1; sco_buffer_[0] = kHciSco; sco_buffer_offset_ = 1; } // Spawn a new thread in production. In tests, use the test dispatcher provided in the // constructor. if (!dispatcher_) { loop_.emplace(&kAsyncLoopConfigNoAttachToCurrentThread); result = loop_->StartThread("bt-loopback-device"); if (result != ZX_OK) { FX_LOGS(ERROR) << "failed to start thread: " << zx_status_get_string(result); DdkRelease(); return result; } dispatcher_ = loop_->dispatcher(); } { FX_LOGS(TRACE) << "LoopbackDevice::Bind setup in channel waiter"; std::lock_guard guard(mutex_); // Setup up incoming channel waiter. in_channel_.reset(channel); in_channel_wait_.object = in_channel_.get(); in_channel_wait_.trigger = ZX_CHANNEL_READABLE | ZX_CHANNEL_PEER_CLOSED; ZX_ASSERT(async_begin_wait(dispatcher_, &in_channel_wait_) == ZX_OK); in_channel_wait_.pending = true; } ddk::DeviceAddArgs args(name.data()); args.set_proto_id(ZX_PROTOCOL_BT_HCI); return DdkAdd(args); } } // namespace bt_hci_virtual
efbed39bdb567754f8b371e9cac99d4e0d4c8a6f
9f54779437e9852d6f83dd46cde17a7ef99922b8
/src/pass/split_tail_block.cc
e486308f8fb4fc3c5270a8368d3bf6c92626c5a0
[ "Apache-2.0", "Zlib", "BSD-3-Clause", "MIT", "LicenseRef-scancode-unknown-license-reference", "Unlicense", "BSD-2-Clause" ]
permissive
googol-lab/akg
e5424edbdae29aa2841c518edf9a62678581c499
4ad0f6a9c44742b54505bdedcd7e64d0ccf79e15
refs/heads/master
2023-02-09T20:48:58.770091
2021-01-05T09:31:38
2021-01-05T09:31:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,753
cc
split_tail_block.cc
/** * Copyright 2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <tvm/ir.h> #include <tvm/ir_mutator.h> #include <tvm/ir_pass.h> #include <ir_pass.h> #include <algorithm> #include "emit_insn/insn_info.h" #include "emit_insn/insn_pattern.h" #include "emit_insn/insn_args_calculator.h" namespace akg { namespace ir { class TailSpliter : public IRMutator { public: TailSpliter() = default; ~TailSpliter() override = default; Stmt Mutate_(const AttrStmt *op, const Stmt &s) final { if (op->attr_key == "pragma_emit_insn") { auto intrin_name = op->value.as<StringImm>()->value; if (include_intrin_list_.find(intrin_name) == include_intrin_list_.end()) { return s; } StmtInfoList dst_info_list; StmtInfoList src_info_list; StmtInfo if_info; StmtInfo for_info; GetCompactComputationInfo(op->body, dst_info_list, src_info_list, if_info, for_info, false); CHECK(!dst_info_list.empty()); auto dst_info = dst_info_list[0]; if (src_info_list.empty()) { src_info_list = {dst_info.Copy()}; } auto info_list = GetInfoList(dst_info, src_info_list); FillEmptyVar(info_list); int dst_block_size = GetUbBlkSize(dst_info->dtype_); int src_block_size = GetUbBlkSize(src_info_list[0]->dtype_); int block_size = dst_block_size < src_block_size ? dst_block_size : src_block_size; int cast_block_size = dst_block_size > src_block_size ? dst_block_size : src_block_size; int vec_max_len = block_size * FULL_BLOCK_NUM; auto args_calculator = InsnArgsCalculator(dst_info_list, src_info_list, for_info, ""); auto vec_axis_it = args_calculator.GetVecAxisIt(); bool cast = dst_block_size != src_block_size; if (args_calculator.IsValid(vec_axis_it)) { auto vec_axis = *vec_axis_it; auto vec_axis_shape = vec_axis.extent; if (vec_axis_shape >= vec_max_len) { if (vec_axis_shape % vec_max_len != 0) { return TailBlock(s, vec_axis, vec_max_len); } } else { if (vec_axis_shape < vec_max_len * tail_rate_ && vec_axis_shape > cast_block_size && vec_axis_shape % cast_block_size != 0 && args_calculator.axis_list_.size() > 1) { return TailBlock(s, vec_axis, cast_block_size); } } } if (!cast && (!args_calculator.IsValid(vec_axis_it) || vec_axis_it->extent <= cast_block_size * tail_rate_)) { auto get_block_axis = [&](std::list<InsnAxis> &axis_list) { InsnAxis block_axis; block_axis.is_valid = false; std::vector<InsnAxis> temp_axis_set; auto block_stride_lambda = [&](int stride) { return stride % block_size == 0 && stride / block_size <= 4; }; for (auto axis : axis_list) { if (std::all_of(axis.stride_list.begin(), axis.stride_list.end(), block_stride_lambda) && axis.dst_stride != 0 && axis.extent != 0 && axis.extent > FULL_BLOCK_NUM && axis.extent % FULL_BLOCK_NUM != 0) { temp_axis_set.push_back(axis); } } if (!temp_axis_set.empty()) { return temp_axis_set[0]; } else { return block_axis; } }; auto block_axis = get_block_axis(args_calculator.axis_list_); if (block_axis.IsValid()) { return TailBlock(s, block_axis, FULL_BLOCK_NUM); } } return s; } return IRMutator::Mutate_(op, s); } Stmt TailBlock(const Stmt &s, const InsnAxis &tail_axis, int body_size) { return Block::make(TailMake(s, tail_axis, body_size, false), TailMake(s, tail_axis, body_size, true)); } Stmt TailMake(const Stmt &s, const InsnAxis &tail_axis, int body_size, bool is_tail) { if (auto attr_stmt = s.as<AttrStmt>()) { return AttrStmt::make(attr_stmt->node, attr_stmt->attr_key, attr_stmt->value, TailMake(attr_stmt->body, tail_axis, body_size, is_tail)); } if (auto for_stmt = s.as<For>()) { if (Equal(for_stmt->loop_var, tail_axis.var) && GetIntConst(for_stmt->extent) == tail_axis.extent) { if (is_tail) { return For::make(for_stmt->loop_var, for_stmt->min, Expr(tail_axis.extent % body_size), for_stmt->for_type, for_stmt->device_api, TailMake(for_stmt->body, tail_axis, body_size, is_tail)); } CHECK_NE(body_size, 0); Expr remain_extent = Expr(tail_axis.extent / body_size * body_size); return For::make(for_stmt->loop_var, for_stmt->min, remain_extent, for_stmt->for_type, for_stmt->device_api, TailMake(for_stmt->body, tail_axis, body_size, is_tail)); } return For::make(for_stmt->loop_var, for_stmt->min, for_stmt->extent, for_stmt->for_type, for_stmt->device_api, TailMake(for_stmt->body, tail_axis, body_size, is_tail)); } if (s.as<Store>() && is_tail) { return substitute(tail_axis.var, Add::make(Expr(tail_axis.extent / body_size * body_size), tail_axis.var), s); } return s; } private: const float tail_rate_{0.6}; const std::set<std::string> include_intrin_list_ = { // binary vec "vec_binary_add", "vec_binary_sub", "vec_binary_mul", "vec_binary_min", "vec_binary_max", "vec_binary_div", "vec_binary_and", "vec_binary_or", "vec_binary_vmadd", "vec_binary_vmaddrelu", "vec_binary_vmla", // single vec "vec_single_fabs", "vec_single_log", "vec_single_exp", "vec_single_rec", "vec_single_not", "vec_single_sqrt", "vec_single_rsqrt", "vec_single_relu", "vec_single_not", // Mov "broadcast", "mask_broadcast", // vector_cast "vec_single_cast", "vec_single_floor", "vec_single_round", "vec_single_ceil", "vec_single_trunc", // scalar case "vector_dup", "vmuls", "vadds", "vaxpy", }; }; Stmt SplitTail(Stmt stmt) { auto tail_spliter = TailSpliter(); auto first_round = tail_spliter.Mutate(stmt); auto second_round = tail_spliter.Mutate(stmt); return second_round; } } // namespace ir } // namespace akg
6164a20e05de9a11007424abba8572295b2b17c6
5acafaf9381a4f48a04e255720cf07277ccc1b5c
/overseer.cpp
f867e537cc5f59114a08a2d9ed9cfd07498f26e2
[]
no_license
jnowicki/MyJobScheduler
b87616af5f7e882744f5c4b587c77c15ee16a921
7fa6dc8421b6f5c1bf43fcb2ec692813a2448300
refs/heads/master
2021-01-10T21:33:52.870398
2015-01-30T00:30:02
2015-01-30T00:30:02
29,814,177
0
0
null
null
null
null
UTF-8
C++
false
false
3,734
cpp
overseer.cpp
#include <iostream> #include <string> #include <algorithm> #include <utility> #include <sstream> #include "classes.hpp" #define MSG false int Overseer::doJobs(int jobNr) { if(MSG) std::cout << "Overseer " << id << ": started tasks " << jobNr << std::endl; if (jobNr == 0) { first_t.push_back(0); }; if (jobNr > 0) { first_t.push_back(first_d.at(jobNr - 1)); } if(MSG) std::cout << "Overseer" << id << ": time of start of job " << jobNr + 1 << " for first machine equals " << first_t.at(jobNr) << std::endl; int f_exec_t = first.doJob(jobNr + 1); //czas egzekucji pierwszego zadania int f_exec_d = f_exec_t + first_t.at(jobNr); //zakonczenie pierwszego zadania first_d.push_back(f_exec_d); //wrzucenie tego do tablic zakonczen if(MSG) std::cout << "Overseer" << id << ": time of end of job " << jobNr + 1 << " for first machine equals " << f_exec_d << std::endl; int s_exec_last_d = 0; //czas zakonczenia egzekucji ostatniego zdania if (jobNr > 0) { s_exec_last_d = second_d.at(jobNr - 1); } int s_exec_start = std::max(f_exec_d, s_exec_last_d); //czas rozpoczecia zadania na drugiej maszynie if(MSG) std::cout << "Overseer" << id << ": time of start of job " << jobNr + 1 << " for second machine equals " << s_exec_start << std::endl; second_t.push_back(s_exec_start); int s_exec_t = second.doJobWithHoles(jobNr + 1, s_exec_start); int s_exec_d = s_exec_t + second_t.at(jobNr); second_d.push_back(s_exec_d); if(MSG) std::cout << "Overseer" << id << ": time of end of job " << jobNr + 1 << " for second machine equals " << s_exec_d << std::endl; return std::max(s_exec_d, f_exec_d); //zwroc czas wykonania dluzszego zadania }; int Overseer::getId() const{ return id; } void Overseer::updatePairs(int i){ // skasuj te pary ktore juz wykorzystalo std::cout << "Overseer" << id << ": deleted pair j" << pairs.at(i).jobIdent.first << std::endl; pairs.erase(pairs.begin() + i); }; bool Overseer::operator<(const Overseer& b) const{ return this->getId() < b.getId(); }; void Overseer::printValues() const{ std::cout<< "Overseer " << this->getId() << ": first machine: " << std::endl; std::cout<< "Overseer " << this->getId() << ": job nr, job length, job finish time, jobPair l" << std::endl; for(int j = 0; j < this->first_d.size(); j++ ){ std::cout << "Overseer " << this->getId() << ": " << this->first.getJobAt(j).second << ", " << this->first.getJobAt(j).first << ", " << this->first_d.at(j) << ", " << this->l.at(j) << std::endl; }; std::cout<< "Overseer " << this->getId() << ": second machine: " << std::endl; std::cout<< "Overseer " << this->getId() << ": job nr, job length, job finish time, jobPair l" << std::endl; for(int j = 0; j < this->second_d.size(); j++ ){ std::cout << "Overseer " << this->getId() << ": " << this->second.getJobAt(j).second << ", " << this->second.getJobAt(j).first << ", " << this->second_d.at(j) << ", " << this->l.at(j) << std::endl; }; std::cout << "Overseer " << this->getId() << ": " << "total time of execution for this instance is " << std::max(this->first_d.back(), this->second_d.back()) << std::endl; }; Overseer::Overseer(Machine _first, Machine _second, int _id, std::vector<jobPair> _pairs) : first(_first), second(_second), id(_id), pairs(_pairs){}; std::vector<jobPair> Overseer::getPairs(){ return pairs; }; jobPair::jobPair(std::pair<int, int> f, std::pair<int, int> s){ jobLengths = f; jobIdent = s; }; jobPair::jobPair(std::pair<int, int> f, std::pair<int, int> s, int h){ jobLengths = f; jobIdent = s; expectedTime = h; };
da19e50a09ba0b16ebdcbb2559a36d81f627fb2a
4d28185e7a78a569f9a449f39f183cac3024f711
/packages/Python/lldbsuite/test/lang/cpp/template/main.cpp
445a34fe06765b026bfda8144e22694fab61a312
[ "NCSA", "Apache-2.0", "LLVM-exception" ]
permissive
apple/swift-lldb
2789bf44f648609a1674ee520ac20b64c95de072
d74be846ef3e62de946df343e8c234bde93a8912
refs/heads/stable
2023-04-06T00:28:15.882479
2019-10-25T22:46:59
2019-10-25T22:46:59
44,838,862
780
291
Apache-2.0
2020-01-10T19:28:43
2015-10-23T21:13:18
C++
UTF-8
C++
false
false
2,201
cpp
main.cpp
//===-- main.cpp ------------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include <tuple> template <int Arg> class TestObj { public: int getArg() { return Arg; } }; //---------------------------------------------------------------------- // Define a template class that we can specialize with an enumeration //---------------------------------------------------------------------- enum class EnumType { Member, Subclass }; template <EnumType Arg> class EnumTemplate; //---------------------------------------------------------------------- // Specialization for use when "Arg" is "EnumType::Member" //---------------------------------------------------------------------- template <> class EnumTemplate<EnumType::Member> { public: EnumTemplate(int m) : m_member(m) { } int getMember() const { return m_member; } protected: int m_member; }; //---------------------------------------------------------------------- // Specialization for use when "Arg" is "EnumType::Subclass" //---------------------------------------------------------------------- template <> class EnumTemplate<EnumType::Subclass> : public EnumTemplate<EnumType::Member> { public: EnumTemplate(int m) : EnumTemplate<EnumType::Member>(m) { } }; template <typename FLOAT> struct T1 { FLOAT f = 1.5; }; template <typename FLOAT> struct T2 { FLOAT f = 2.5; int i = 42; }; template <typename FLOAT, template <typename> class ...Args> class C { std::tuple<Args<FLOAT>...> V; }; int main(int argc, char **argv) { TestObj<1> testpos; TestObj<-1> testneg; EnumTemplate<EnumType::Member> member(123); EnumTemplate<EnumType::Subclass> subclass(123*2); C<float, T1> c1; C<double, T1, T2> c2; return testpos.getArg() - testneg.getArg() + member.getMember()*2 - subclass.getMember(); // Breakpoint 1 }
982935bb7c3df43b82d517cea35af5bb3f60d8ce
4e0fad4fb8098de7693657f9c276f225f7e2bb68
/stira/deconvolve/testWiener/testWiener.cpp
35193b22e9d38c686467b7b0c00f58d78f0705ad
[ "MIT" ]
permissive
JackZhouSz/stira
6a9b3a0b393c5c10e67fb83719e59d9c8ee891f0
60b419f3e478397a8ab43ce9315a259567d94a26
refs/heads/master
2023-03-20T12:24:32.860327
2017-01-12T16:21:55
2017-01-12T16:21:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,585
cpp
testWiener.cpp
/*********************************************************************************** * Copyright (C) 2008 by Filip Rooms * * * * Terms and conditions for using this software in any form are provided in the * * file COPYING, which can be found in the root directory of this project. * * * * Contact data: filip.rooms@gmail.com * * http://www.filiprooms.be/ * * * ***********************************************************************************/ #include <iostream> #include <cstdlib> #include "../../imagetools/tools/ImageIO.h" #include "../../imagetools/imagegenerator/GridGenerator.h" #include "../../filter/filter/GaussConvolve.h" #include "../../deconvolve/deconvolve/WienerDeconvolve.h" #include "../../deconvolve/deconvolve/VanCittertLandweberDeconvolve.h" using namespace std; using namespace stira::imagedata; using namespace stira::imagetools; using namespace stira::deconvolve; using namespace stira::filter; bool TestWiener( Image* pTestImage, Image* pImagePSF, double sigmaNoise ) { WienerDeconvolve wd(pTestImage, pImagePSF); wd.SetSigmaNoise( sigmaNoise ); wd.Run(); Image* pFilteredImage = wd.GetRestoredImage(); ImageIO::Write(pFilteredImage, string("WienerRestored.ppm"), ImageIO::NULL_OUT ); delete pFilteredImage; return true; } //======================================================================================== bool TestLandweber( Image* pTestImage, Image* pImagePSF, double sigmaNoise ) { int maxNrIterations = 25; VanCittertLandweberDeconvolve decLandweber( pTestImage, pImagePSF, maxNrIterations); decLandweber.SetDeconvolutionType( DECONVOLVE_LANDWEBER ); decLandweber.SetSigmaNoise( sigmaNoise ); decLandweber.Run(); Image* pFilteredImage = decLandweber.GetRestoredImage(); ImageIO::Write(pFilteredImage, string("LandweberRestored.ppm"), ImageIO::NULL_OUT ); delete pFilteredImage; return true; } //======================================================================================== bool TestVanCittert( Image* pTestImage, Image* pImagePSF, double sigmaNoise ) { int maxNrIterations = 25; VanCittertLandweberDeconvolve decVanCittert( pTestImage, pImagePSF, maxNrIterations); decVanCittert.SetDeconvolutionType( DECONVOLVE_VANCITTERT ); decVanCittert.SetSigmaNoise( sigmaNoise ); decVanCittert.Run(); Image* pFilteredImage = decVanCittert.GetRestoredImage(); ImageIO::Write(pFilteredImage, string("VanCittertRestored.ppm"), ImageIO::NULL_OUT ); delete pFilteredImage; return true; } //======================================================================================== int main(int argc, char *argv[]) { Image* pInImage = 0; if (argc == 2) { pInImage = ImageIO::Read( argv[1] ); } else { pInImage = ImageIO::Read( "../../../../stira/stira/testdata/circles.pgm" ); } double sigmaBlur = 1.5; double sigmaNoise = 5.0; ////////////////////////////////////////////////////// // WIENERTESTS ////////////////////////////////////////////////////// Image* pTestImage = GaussConvolve::Convolve( pInImage, sigmaBlur, GaussConvolve::FFT_BASED); pTestImage->AddGaussianNoise( sigmaNoise ); ArrayGrid<double>* pPSF = GridGenerator::GenerateGaussian( pInImage->GetWidth(), pInImage->GetHeight(), sigmaBlur, sigmaBlur); Image* pImagePSF = new Image( pPSF ); cout << "PSF has " << pImagePSF->GetNumberOfBands() << " bands." << endl << flush; ImageIO::Write(pTestImage, string("DegradedImage.ppm"), ImageIO::NULL_OUT ); if ( TestWiener( pTestImage, pImagePSF, sigmaNoise ) ) { cout << "TestWiener OK" << endl << flush; } else { cout << "TestWiener failed" << endl << flush; } if ( TestLandweber( pTestImage, pImagePSF, sigmaNoise ) ) { cout << "TestLandweber OK" << endl << flush; } else { cout << "TestLandweber failed" << endl << flush; } if ( TestVanCittert( pTestImage, pImagePSF, sigmaNoise ) ) { cout << "TestLandweber OK" << endl << flush; } else { cout << "TestLandweber failed" << endl << flush; } delete pTestImage; delete pInImage; delete pPSF; }
03b20fee11c4bb0f70e8d1cc9cef1d64e9e8eba1
951372bd3bc23f15c431c1fb5bf09646e14df9e4
/tests/vowels2nongreedy.re
f87db8e638b09e63409cac3196403e27c7e3599d
[ "BSD-2-Clause" ]
permissive
ErikCorryGoogle/grut
100e1c0e04669cd6f40336609cb056cc3ca257be
ffff0ca082269097f14c2a2a540c5ec526a1dfcd
refs/heads/master
2020-06-10T17:39:47.993269
2017-02-03T14:09:53
2017-02-03T14:09:53
75,907,992
19
0
null
null
null
null
UTF-8
C++
false
false
24
re
vowels2nongreedy.re
a(.*?)e(.*)i(.*?)o(.*)u
cfa589c208146bdcf35b4b8ba0ff2a8f8a6037b6
a0df98870d2df798f8620f3fa5977c28bcca6502
/Other/ble_blink/sketch_ble_server/sketch_ble_server.ino
877e726d0cd404709ba63c2a289c398bd47c991a
[]
no_license
tora0091/esp32
7ca5ce3a5d362370363ad2b8e22c51aa1538bedd
3bff0930379f40a875e5abd968df078dcc78a02e
refs/heads/master
2020-03-30T08:50:11.778569
2018-11-15T05:26:44
2018-11-15T05:26:44
151,043,395
0
0
null
null
null
null
UTF-8
C++
false
false
3,077
ino
sketch_ble_server.ino
#include <BLEDevice.h> #include <BLEServer.h> #include <BLEUtils.h> #include <BLE2902.h> #define bleServerName "LED Blink BLE for ESP32" #define SERVICE_UUID "15f49f4a-37b2-4a07-99f7-7730a9e98096" #define CHARACTERISTIC_UUID "d391fd60-0169-424a-ae00-9d56f1b46481" const int ledPin1 = 4; const int ledPin2 = 16; const int ledPin3 = 17; const int ledPin4 = 5; bool deviceConnected = false; // prototype void ledType1(void); void ledType2(void); void ledType3(void); void ledType4(void); void ledType5(void); class MyServerCallbacks: public BLEServerCallbacks { void onConnect(BLEServer *pServer) { deviceConnected = true; }; void onDisconnect(BLEServer *pServer) { deviceConnected = false; }; }; class MyCallbacks: public BLECharacteristicCallbacks { void onWrite(BLECharacteristic *pCharacteristic) { std::string rxValue = pCharacteristic->getValue(); if (rxValue.length() > 0) { Serial.print("Received value: "); for (int i = 0; i < rxValue.length(); i++) { Serial.print(rxValue[i]); } if (rxValue.find("ONE") != -1) { Serial.println(" - ONE"); ledType1(); } else if (rxValue.find("TWO") != -1) { Serial.println(" - TWO"); ledType2(); } else if (rxValue.find("THREE") != -1) { Serial.println(" - THREE"); ledType3(); } else if (rxValue.find("FOUR") != -1) { Serial.println(" - FOUR"); ledType4(); } else { Serial.println(" - FIVE(OTHER)"); ledType5(); } } } }; void setup() { Serial.begin(115200); // pin mode setup pinMode(ledPin1, OUTPUT); pinMode(ledPin2, OUTPUT); pinMode(ledPin3, OUTPUT); pinMode(ledPin4, OUTPUT); digitalWrite(ledPin1, LOW); digitalWrite(ledPin2, LOW); digitalWrite(ledPin3, LOW); digitalWrite(ledPin4, LOW); // ble setup BLEDevice::init(bleServerName); BLEServer *pServer = BLEDevice::createServer(); pServer->setCallbacks(new MyServerCallbacks()); BLEService *pService = pServer->createService(SERVICE_UUID); BLECharacteristic *pCharacteristic = pService->createCharacteristic( CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_WRITE); pCharacteristic->setCallbacks(new MyCallbacks()); pService->start(); pServer->getAdvertising()->start(); Serial.println("Waiting to connect..."); } void loop() { } void ledType1() { digitalWrite(ledPin1, HIGH); digitalWrite(ledPin2, HIGH); digitalWrite(ledPin3, HIGH); digitalWrite(ledPin4, HIGH); } void ledType2() { digitalWrite(ledPin1, HIGH); digitalWrite(ledPin2, LOW); digitalWrite(ledPin3, HIGH); digitalWrite(ledPin4, LOW); } void ledType3() { digitalWrite(ledPin1, LOW); digitalWrite(ledPin2, HIGH); digitalWrite(ledPin3, LOW); digitalWrite(ledPin4, HIGH); } void ledType4() { digitalWrite(ledPin1, HIGH); digitalWrite(ledPin2, LOW); digitalWrite(ledPin3, LOW); digitalWrite(ledPin4, HIGH); } void ledType5() { digitalWrite(ledPin1, LOW); digitalWrite(ledPin2, LOW); digitalWrite(ledPin3, LOW); digitalWrite(ledPin4, LOW); }
2c06f84ba1445dbbfc44091de04fbfefea76c70a
842a26686d59b7c19fe8ddbcae2e50c552902827
/Src/capp/CApp_OnInit.cpp
79c01ac3b7ae3ecfc86c4d8c7dfdc5a40fb7ba63
[]
no_license
jmurrayufo/Gaia-Forge
f7b551f65ec4f62a2a9aa1060e5cfc6e4e078fd3
13bfc6204fe34da11d76419792a4e6db0d601e67
refs/heads/master
2016-09-06T09:13:42.912858
2012-08-25T20:35:14
2012-08-25T20:35:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,265
cpp
CApp_OnInit.cpp
//============================================================================== #include "CApp.h" //============================================================================== bool CApp::OnInit() { if(SDL_Init(SDL_INIT_EVERYTHING) < 0) { fprintf(stderr,"%s:%d\n SDL_Init call failed.\n",__FILE__,__LINE__); return false; } // Request use of the stencil buffer if((Surf_Display = SDL_SetVideoMode(WWIDTH, WHEIGHT, 32, SDL_GL_DOUBLEBUFFER | SDL_OPENGL | SDL_RESIZABLE)) == NULL) { fprintf(stderr,"%s:%d\n SDL_SetVideoMode call failed.\n",__FILE__,__LINE__); return false; } // Init GLDebug system GLDebug::Init(); // Init GL system glClearColor(0, 0, 0, 1); glClearDepth(1.0f); glViewport(0, 0, WWIDTH, WHEIGHT); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0, WWIDTH, WHEIGHT, 0, 1, -1); glMatrixMode(GL_MODELVIEW); glHint(GL_POINT_SMOOTH_HINT, GL_NICEST); glHint(GL_LINE_SMOOTH_HINT, GL_NICEST); glHint(GL_POLYGON_SMOOTH_HINT, GL_NICEST); glEnable(GL_POINT_SMOOTH); glEnable(GL_LINE_SMOOTH); glEnable(GL_POLYGON_SMOOTH); glLoadIdentity(); SDL_EnableKeyRepeat(1, SDL_DEFAULT_REPEAT_INTERVAL / 3); CAppStateManager::SetActiveAppState(APPSTATE_INTRO); std::cerr << gluErrorString(glGetError()) << std::endl; return true; } //============================================================================== // These options were suggested to use for SDL_GL stuff. Not sure if we need it? /* SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32); SDL_GL_SetAttribute(SDL_GL_ACCUM_RED_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ACCUM_GREEN_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ACCUM_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ACCUM_ALPHA_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1); SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 2); */
6728deed9e70187bf15300ba8b3d0b0143a7304a
0d3d716541cddde7269e732a7cfbef1713363b00
/src/qt/firestoneinfopage.cpp
f933ed8cecd6409d96f99d527445e3a0f9bae4ca
[ "MIT" ]
permissive
xblocker/poc-proj
ef80c17c3f1dc3f8ee4c2e044f67eb9561aa0905
072b2a7fb73aaa8f710a7548a7312549f0005ee1
refs/heads/master
2023-02-05T07:12:06.625189
2020-02-03T08:35:59
2020-02-20T14:31:12
273,648,509
0
1
null
null
null
null
UTF-8
C++
false
false
10,432
cpp
firestoneinfopage.cpp
#include <qt/firestoneinfopage.h> #include <qt/forms/ui_firestoneinfopage.h> #include <QList> #include <QDebug> #include <qt/walletmodel.h> #include <qt/slotinfo.h> #include <qt/guiutil.h> #include <key_io.h> #include <validation.h> #include <wallet/coincontrol.h> #include <univalue.h> #include <node/transaction.h> #include <txmempool.h> #include "txfeemodifier.h" FirestoneInfoPage::FirestoneInfoPage(const PlatformStyle* style, QWidget *parent) : QWidget(parent), ui(new Ui::FirestoneInfoPage) { ui->setupUi(this); } FirestoneInfoPage::~FirestoneInfoPage() { delete ui; } void FirestoneInfoPage::setWalletModel(WalletModel *walletModel) { _walletModel = walletModel; updateData(); } void FirestoneInfoPage::updateData() { if (!_walletModel || _walletModel->wallet().isLocked()) { return; } auto slotInfo = SlotInfo::currentSlotInfo(); ui->ebSlotIdx->setText(QString("%1").arg(slotInfo.index)); ui->ebFirestoneCount->setText(QString("%1").arg(slotInfo.count)); ui->ebLockTime->setText(QString("%1").arg(slotInfo.lockTime)); ui->ebFireStonePrice->setText(GUIUtil::formatPrice(*_walletModel, slotInfo.price)); } void FirestoneInfoPage::on_btnQuery_clicked() { auto fromAddr = ui->ebQueryAddress->text().trimmed(); CTxDestination fromDest = DecodeDestination(fromAddr.toStdString()); if (!IsValidDestination(fromDest) || fromDest.type() != typeid(CKeyID)) { QMessageBox::warning(this, windowTitle(), tr("Invalid address"), QMessageBox::Ok, QMessageBox::Ok); return; } qInfo() << "here1" << endl; auto firestoneInfo = getFirestoneInfo(boost::get<CKeyID>(fromDest)); auto strTotal = tr("Address \"%1\" has %2 firestones").arg(fromAddr).arg(firestoneInfo.totalCount); auto strCurSlot = tr("%1 firestone(s) in current slot").arg(firestoneInfo.curSlotCount); auto strNextSlot = tr("%1 immature firestone(s)").arg(firestoneInfo.nextSlotCount); auto strOverdue = tr("%1 overdue firestone(s)").arg(firestoneInfo.overdueCount); auto parts = QList<QString>() << strTotal << strCurSlot << strNextSlot << strOverdue; auto message = parts.join("\n"); QMessageBox::information(this, tr("Firestone Information"), message, QMessageBox::Ok, QMessageBox::Ok); } FirestoneInfoPage::FirestoneInfo FirestoneInfoPage::getFirestoneInfo(const CKeyID &key) { std::vector<CTicketRef> alltickets; { // // scope to limit the lock scope... LOCK(cs_main); alltickets = pticketview->FindeTickets(key); auto end = std::remove_if(alltickets.begin(), alltickets.end(), [](const CTicketRef& ticket) { return pcoinsTip->AccessCoin(COutPoint(ticket->out->hash, ticket->out->n)).IsSpent(); }); alltickets.erase(end, alltickets.end()); } size_t useableCount = 0; size_t overdueCount = 0; size_t immatureCount = 0; std::for_each(alltickets.begin(), alltickets.end(), [&useableCount, &overdueCount, &immatureCount](const CTicketRef& ticket) { int height = ticket->LockTime(); auto keyid = ticket->KeyID(); if (keyid.size() == 0 || height == 0) { return; } switch (ticket->State(chainActive.Tip()->nHeight)){ case CTicket::CTicketState::IMMATURATE: immatureCount++; break; case CTicket::CTicketState::USEABLE: useableCount++; break; case CTicket::CTicketState::OVERDUE: overdueCount++; break; case CTicket::CTicketState::UNKNOW: break; } }); FirestoneInfo info = { alltickets.size(), useableCount, immatureCount, overdueCount }; return info; } void FirestoneInfoPage::on_btnBuy_clicked() { if(!_walletModel || _walletModel->wallet().isLocked()) { QMessageBox::warning(this, windowTitle(), tr("Please unlock wallet to continue"), QMessageBox::Ok, QMessageBox::Ok); return; } auto buyAddr = ui->ebBuyAddress->text().trimmed(); CTxDestination buyDest = DecodeDestination(buyAddr.toStdString()); if (!IsValidDestination(buyDest) || buyDest.type() != typeid(CKeyID)) { QMessageBox::warning(this, windowTitle(), tr("Invalid target address"), QMessageBox::Ok, QMessageBox::Ok); return; } auto changeAddr = ui->ebChangeAddress->text().trimmed(); CTxDestination changeDest = DecodeDestination(changeAddr.toStdString()); if (!IsValidDestination(changeDest) || changeDest.type() != typeid(CKeyID)) { QMessageBox::warning(this, windowTitle(), tr("Invalid change address"), QMessageBox::Ok, QMessageBox::Ok); return; } auto buyID = boost::get<CKeyID>(buyDest); auto changeID = boost::get<CKeyID>(changeDest); CKey privKeyTemp; if(!_walletModel->wallet().getPrivKey(buyID, privKeyTemp)) { auto ret = QMessageBox::warning(this, windowTitle(), tr("Target address isn't an address in your wallet, are you sure?"), QMessageBox::Yes, QMessageBox::No); if (ret != QMessageBox::Yes) { return; } } if(!_walletModel->wallet().getPrivKey(changeID, privKeyTemp)) { auto ret = QMessageBox::warning(this, windowTitle(), tr("Change address isn't an address in your wallet, are you sure?"), QMessageBox::Yes, QMessageBox::No); if (ret != QMessageBox::Yes) { return; } } try { _walletModel->wallet().doWithChainAndWalletLock([&](std::unique_ptr<interfaces::Chain::Lock>& lockedChain, interfaces::Wallet& iWallet) { LOCK(cs_main); TxFeeModifer feeUpdater(iWallet); auto locktime = pticketview->LockTime(); if (locktime == chainActive.Height()) { QMessageBox::warning(this, windowTitle(), tr("Can't buy firestone on slot's last block"), QMessageBox::Ok, QMessageBox::Ok); return; } auto nAmount = pticketview->CurrentTicketPrice(); auto redeemScript = GenerateTicketScript(buyID, locktime); buyDest = CTxDestination(CScriptID(redeemScript)); auto scriptPubkey = GetScriptForDestination(buyDest); auto opRetScript = CScript() << OP_RETURN << CTicket::VERSION << ToByteVector(redeemScript); //set change dest CCoinControl coin_control; coin_control.destChange = CTxDestination(changeID); iWallet.sendMoneyWithOpRet(*lockedChain, buyDest, nAmount, false, opRetScript, coin_control); iWallet.importScript(redeemScript, "tickets", true); }); QMessageBox::information(this, windowTitle(), tr("Buy firestone success!"), QMessageBox::Ok, QMessageBox::Ok); } catch(...) { QMessageBox::critical(this, windowTitle(), tr("Failed to buy firestone, please make sure there is enough balance in your wallet"), QMessageBox::Ok, QMessageBox::Ok); } } void FirestoneInfoPage::on_btnRelease_clicked() { if(!_walletModel || _walletModel->wallet().isLocked()) { QMessageBox::warning(this, windowTitle(), tr("Please unlock wallet to continue"), QMessageBox::Ok, QMessageBox::Ok); return; } auto relAddr = ui->ebReleaseAddress->text().trimmed(); CTxDestination relDest = DecodeDestination(relAddr.toStdString()); if (!IsValidDestination(relDest) || relDest.type() != typeid(CKeyID)) { QMessageBox::warning(this, windowTitle(), tr("Invalid address"), QMessageBox::Ok, QMessageBox::Ok); return; } auto refundAddr = ui->ebRefundAddress->text().trimmed(); CTxDestination refundDest = DecodeDestination(refundAddr.toStdString()); if (!IsValidDestination(refundDest) || refundDest.type() != typeid(CKeyID)) { QMessageBox::warning(this, windowTitle(), tr("Invalid refund address"), QMessageBox::Ok, QMessageBox::Ok); return; } CKey key; auto relID = boost::get<CKeyID>(relDest); if (!_walletModel->wallet().getPrivKey(relID, key)){ QMessageBox::warning(this, windowTitle(), tr("This address isn't your address, you can't release firestone for it"), QMessageBox::Ok, QMessageBox::Ok); return; } std::vector<CTicketRef> alltickets; { LOCK(cs_main); alltickets = pticketview->FindeTickets(boost::get<CKeyID>(relDest)); } std::vector<CTicketRef> tickets; for(size_t i=0;i < alltickets.size(); i++){ auto ticket = alltickets[i]; auto out = *(ticket->out); if (!pcoinsTip->AccessCoin(out).IsSpent() && !mempool.isSpent(out)){ tickets.push_back(ticket); if (tickets.size() > 4) break; } } if(tickets.empty()) { QMessageBox::information(this, windowTitle(), tr("No firestones in this address"), QMessageBox::Ok, QMessageBox::Ok); return; } TxFeeModifer feeUpdater(_walletModel->wallet()); UniValue results(UniValue::VOBJ); std::map<uint256,std::pair<int,CScript>> txScriptInputs; std::vector<CTxOut> outs; UniValue ticketids(UniValue::VARR); for(auto iter = tickets.begin(); iter!=tickets.end(); iter++){ auto state = (*iter)->State(chainActive.Height()); if (state == CTicket::CTicketState::OVERDUE){ auto ticket = (*iter); uint256 txid = ticket->out->hash; uint32_t n = ticket->out->n; CScript redeemScript = ticket->redeemScript; ticketids.push_back(txid.ToString() + ":" + itostr(n)); // construct the freefirestone tx inputs. auto prevTx = MakeTransactionRef(); uint256 hashBlock; if (!GetTransaction(txid, prevTx, Params().GetConsensus(), hashBlock)) { QMessageBox::critical(this, windowTitle(), tr("Failed to free firestone, something unexpected happened..."), QMessageBox::Ok, QMessageBox::Ok); return; } txScriptInputs.insert(std::make_pair(txid,std::make_pair(n,redeemScript))); outs.push_back(prevTx->vout[n]); } } results.pushKV("OutPoint", ticketids); auto tx = _walletModel->wallet().createTicketAllSpendTx(txScriptInputs, outs, refundDest, key); std::string errStr; uint256 spendTxID; const CAmount highfee{ ::maxTxFee }; if (TransactionError::OK != BroadcastTransaction(tx, spendTxID, errStr, 50*highfee)) { QMessageBox::warning(this, windowTitle(), tr("Failed to broadcast transation!"), QMessageBox::Ok, QMessageBox::Ok); return; } QMessageBox::information(this, windowTitle(), tr("Released %1 firestone(s)").arg(tickets.size()), QMessageBox::Ok, QMessageBox::Ok); }
4a8264a834db4b02ceb332977386e9b4da1f583f
0fabce05d4cded3a2b4f7cd4f714c00e5099050e
/test/kokkos/test_kokkos.cpp
daf309a7a15dee635744e3055d997371df730adb
[]
no_license
eromero-vlc/mg_proto
3562a5bb42270a9b9b920986a7df9e74c05bc52b
2a66ab966b0f31507c6ff1c495e3b04fc157bddf
refs/heads/master
2023-03-30T10:42:26.445469
2017-07-26T21:39:50
2017-07-26T21:39:50
256,598,314
0
0
null
2020-04-17T20:02:51
2020-04-17T20:02:50
null
UTF-8
C++
false
false
13,479
cpp
test_kokkos.cpp
#include "gtest/gtest.h" #include "../test_env.h" #include "../mock_nodeinfo.h" #include "../qdpxx/qdpxx_utils.h" #include "lattice/constants.h" #include "lattice/lattice_info.h" #include "lattice/fine_qdpxx/dslashm_w.h" #include "./kokkos_types.h" #include "./kokkos_qdp_utils.h" #include "./kokkos_spinproj.h" #include "./kokkos_matvec.h" #include "./kokkos_dslash.h" using namespace MG; using namespace MGTesting; using namespace QDP; TEST(TestKokkos, TestLatticeInitialization) { IndexArray latdims={{8,8,8,8}}; initQDPXXLattice(latdims); QDPIO::cout << "QDP++ Testcase Initialized" << std::endl; } TEST(TestKokkos, TestSpinorInitialization) { IndexArray latdims={{8,8,8,8}}; initQDPXXLattice(latdims); QDPIO::cout << "QDP++ Testcase Initialized" << std::endl; LatticeInfo info(latdims,4,3,NodeInfo()); KokkosCBFineSpinor<float,4> cb_spinor_e(info, EVEN); KokkosCBFineSpinor<float,4> cb_spinor_o(info, ODD); KokkosCBFineGaugeField<float> gauge_field_even(info, EVEN); KokkosCBFineGaugeField<float> gauge_field_odd(info,ODD); } TEST(TestKokkos, TestQDPCBSpinorImportExport) { IndexArray latdims={{4,6,8,10}}; initQDPXXLattice(latdims); LatticeFermion qdp_out; LatticeFermion qdp_in; gaussian(qdp_in); LatticeInfo info(latdims,4,3,NodeInfo()); KokkosCBFineSpinor<REAL,4> kokkos_spinor_e(info, EVEN); KokkosCBFineSpinor<REAL,4> kokkos_spinor_o(info, ODD); { qdp_out = zero; // Import Checkerboard, by checkerboard QDPLatticeFermionToKokkosCBSpinor(qdp_in, kokkos_spinor_e); // Export back out KokkosCBSpinorToQDPLatticeFermion(kokkos_spinor_e,qdp_out); qdp_out[rb[0]] -= qdp_in; // Elements of QDP_out should now be zero. double norm_diff = toDouble(sqrt(norm2(qdp_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } { qdp_out = zero; QDPLatticeFermionToKokkosCBSpinor(qdp_in, kokkos_spinor_o); // Export back out KokkosCBSpinorToQDPLatticeFermion(kokkos_spinor_o,qdp_out); qdp_out[rb[1]] -= qdp_in; double norm_diff = toDouble(sqrt(norm2(qdp_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } TEST(TestKokkos, TestQDPCBHalfSpinorImportExport) { IndexArray latdims={{4,6,8,10}}; initQDPXXLattice(latdims); LatticeHalfFermion qdp_out; LatticeHalfFermion qdp_in; gaussian(qdp_in); LatticeInfo info(latdims,2,3,NodeInfo()); KokkosCBFineSpinor<REAL,2> kokkos_hspinor_e(info, EVEN); KokkosCBFineSpinor<REAL,2> kokkos_hspinor_o(info, ODD); { qdp_out = zero; // Import Checkerboard, by checkerboard QDPLatticeHalfFermionToKokkosCBSpinor2(qdp_in, kokkos_hspinor_e); // Export back out KokkosCBSpinor2ToQDPLatticeHalfFermion(kokkos_hspinor_e,qdp_out); qdp_out[rb[0]] -= qdp_in; // Elements of QDP_out should now be zero. double norm_diff = toDouble(sqrt(norm2(qdp_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } { qdp_out = zero; QDPLatticeHalfFermionToKokkosCBSpinor2(qdp_in, kokkos_hspinor_o); // Export back out KokkosCBSpinor2ToQDPLatticeHalfFermion(kokkos_hspinor_o,qdp_out); qdp_out[rb[1]] -= qdp_in; double norm_diff = toDouble(sqrt(norm2(qdp_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } TEST(TestKokkos, TestSpinProject) { IndexArray latdims={{4,2,2,4}}; initQDPXXLattice(latdims); LatticeInfo info(latdims,4,3,NodeInfo()); LatticeInfo hinfo(latdims,2,3,NodeInfo()); LatticeFermion qdp_in; LatticeHalfFermion qdp_out; LatticeHalfFermion kokkos_out; gaussian(qdp_in); KokkosCBFineSpinor<REAL,4> kokkos_in(info,EVEN); KokkosCBFineSpinor<REAL,2> kokkos_hspinor_out(hinfo,EVEN); QDPLatticeFermionToKokkosCBSpinor(qdp_in, kokkos_in); for(int sign = -1; sign <= +1; sign+=2 ) { for(int dir=0; dir < 4; ++dir ) { MasterLog(INFO,"SpinProjectTest: dir=%d sign=%d",dir,sign); if( sign == -1 ) { switch(dir) { case 0: qdp_out[rb[0]] = spinProjectDir0Minus(qdp_in); break; case 1: qdp_out[rb[0]] = spinProjectDir1Minus(qdp_in); break; case 2: qdp_out[rb[0]] = spinProjectDir2Minus(qdp_in); break; case 3: qdp_out[rb[0]] = spinProjectDir3Minus(qdp_in); break; default: MasterLog(ERROR, "Wrong direction in SpinProject test: %d",dir); break; }; } else { switch(dir) { case 0: qdp_out[rb[0]] = spinProjectDir0Plus(qdp_in); break; case 1: qdp_out[rb[0]] = spinProjectDir1Plus(qdp_in); break; case 2: qdp_out[rb[0]] = spinProjectDir2Plus(qdp_in); break; case 3: qdp_out[rb[0]] = spinProjectDir3Plus(qdp_in); break; default: MasterLog(ERROR, "Wrong direction in SpinProject test: %d",dir); }; } qdp_out[rb[1]] = zero; KokkosProjectLattice(kokkos_in,dir,sign,kokkos_hspinor_out); // Export back out KokkosCBSpinor2ToQDPLatticeHalfFermion(kokkos_hspinor_out,kokkos_out); qdp_out[rb[0]] -= kokkos_out; double norm_diff = toDouble(sqrt(norm2(qdp_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } } TEST(TestKokkos, TestSpinRecons) { IndexArray latdims={{4,2,2,4}}; initQDPXXLattice(latdims); LatticeInfo info(latdims,4,3,NodeInfo()); LatticeInfo hinfo(latdims,2,3,NodeInfo()); LatticeHalfFermion qdp_in; LatticeFermion qdp_out; LatticeFermion kokkos_out; gaussian(qdp_in); KokkosCBFineSpinor<REAL,2> kokkos_hspinor_in(hinfo,EVEN); KokkosCBFineSpinor<REAL,4> kokkos_spinor_out(info,EVEN); QDPLatticeHalfFermionToKokkosCBSpinor2(qdp_in, kokkos_hspinor_in); for(int s=-1; s <= +1; s+=2 ) { for(int dir=0; dir < 4; ++dir ) { MasterLog(INFO, "Spin Recons Test: dir = %d sign = %d", dir, s); if ( s == -1 ) { switch(dir) { case 0: qdp_out[rb[0]] = spinReconstructDir0Minus(qdp_in); break; case 1: qdp_out[rb[0]] = spinReconstructDir1Minus(qdp_in); break; case 2: qdp_out[rb[0]] = spinReconstructDir2Minus(qdp_in); break; case 3: qdp_out[rb[0]] = spinReconstructDir3Minus(qdp_in); break; default: MasterLog(ERROR, "Bad direction in SpinReconstruction Test"); break; } } else { switch(dir) { case 0: qdp_out[rb[0]] = spinReconstructDir0Plus(qdp_in); break; case 1: qdp_out[rb[0]] = spinReconstructDir1Plus(qdp_in); break; case 2: qdp_out[rb[0]] = spinReconstructDir2Plus(qdp_in); break; case 3: qdp_out[rb[0]] = spinReconstructDir3Plus(qdp_in); break; default: MasterLog(ERROR, "Bad direction in SpinReconstruction Test"); break; } } qdp_out[rb[1]] = zero; KokkosReconsLattice(kokkos_hspinor_in,dir,s,kokkos_spinor_out); KokkosCBSpinorToQDPLatticeFermion(kokkos_spinor_out,kokkos_out); qdp_out[rb[0]] -= kokkos_out; double norm_diff = toDouble(sqrt(norm2(qdp_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } // dir } // s } TEST(TestKokkos, TestQDPCBGaugeFIeldImportExport) { IndexArray latdims={{4,4,4,4}}; initQDPXXLattice(latdims); multi1d<LatticeColorMatrix> gauge_in(n_dim); for(int mu=0; mu < n_dim; ++mu) { gaussian(gauge_in[mu]); } multi1d<LatticeColorMatrix> gauge_out; // Basic uninitialized LatticeInfo info(latdims,4,3,NodeInfo()); KokkosCBFineGaugeField<REAL> kokkos_gauge_e(info, EVEN); KokkosCBFineGaugeField<REAL> kokkos_gauge_o(info, ODD); { // Import Checkerboard, by checkerboard QDPGaugeFieldToKokkosCBGaugeField(gauge_in, kokkos_gauge_e); // Export back out KokkosCBGaugeFieldToQDPGaugeField(kokkos_gauge_e, gauge_out); for(int mu=0; mu < n_dim; ++mu) { (gauge_out[mu])[rb[0]] -= gauge_in[mu]; // In this test, the copy back initialized gauge_out // so its non-checkerboard piece is junk // Take norm over only the checkerboard of interest double norm_diff = toDouble(sqrt(norm2(gauge_out[mu], rb[0]))); MasterLog(INFO, "norm_diff[%d] = %lf", mu, norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } { // gauge out is now allocated, so zero it for(int mu=0; mu < n_dim; ++mu) { gauge_out[mu] = zero; } QDPGaugeFieldToKokkosCBGaugeField(gauge_in, kokkos_gauge_o); // Export back out KokkosCBGaugeFieldToQDPGaugeField(kokkos_gauge_o, gauge_out); for(int mu=0; mu < n_dim; ++mu) { (gauge_out[mu])[rb[1]] -= gauge_in[mu]; // Other checkerboard was zeroed initially. double norm_diff = toDouble(sqrt(norm2(gauge_out[mu]))); MasterLog(INFO, "norm_diff[%d] = %lf", mu, norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } } TEST(TestKokkos, TestQDPGaugeFIeldImportExport) { IndexArray latdims={{4,4,4,4}}; initQDPXXLattice(latdims); multi1d<LatticeColorMatrix> gauge_in(n_dim); for(int mu=0; mu < n_dim; ++mu) { gaussian(gauge_in[mu]); } multi1d<LatticeColorMatrix> gauge_out; // Basic uninitialized LatticeInfo info(latdims,4,3,NodeInfo()); KokkosFineGaugeField<REAL> kokkos_gauge(info); { // Import Checkerboard, by checkerboard QDPGaugeFieldToKokkosGaugeField(gauge_in, kokkos_gauge); // Export back out KokkosGaugeFieldToQDPGaugeField(kokkos_gauge, gauge_out); for(int mu=0; mu < n_dim; ++mu) { (gauge_out[mu]) -= gauge_in[mu]; // In this test, the copy back initialized gauge_out // so its non-checkerboard piece is junk // Take norm over only the checkerboard of interest double norm_diff = toDouble(sqrt(norm2(gauge_out[mu]))); MasterLog(INFO, "norm_diff[%d] = %lf", mu, norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } } TEST(TestKokkos, TestMultHalfSpinor) { IndexArray latdims={{4,4,4,4}}; initQDPXXLattice(latdims); multi1d<LatticeColorMatrix> gauge_in(n_dim); for(int mu=0; mu < n_dim; ++mu) { gaussian(gauge_in[mu]); } LatticeHalfFermion psi_in; gaussian(psi_in); LatticeInfo info(latdims,4,3,NodeInfo()); LatticeInfo hinfo(latdims,2,3,NodeInfo()); KokkosCBFineSpinor<REAL,2> kokkos_hspinor_in(hinfo,EVEN); KokkosCBFineSpinor<REAL,2> kokkos_hspinor_out(hinfo,EVEN); KokkosCBFineGaugeField<REAL> kokkos_gauge_e(info, EVEN); // Import Gauge Field QDPGaugeFieldToKokkosCBGaugeField(gauge_in, kokkos_gauge_e); LatticeHalfFermion psi_out, kokkos_out; MasterLog(INFO, "Testing MV"); { psi_out[rb[0]] = gauge_in[0]*psi_in; psi_out[rb[1]] = zero; // Import Gauge Field QDPGaugeFieldToKokkosCBGaugeField(gauge_in, kokkos_gauge_e); // Import input halfspinor QDPLatticeHalfFermionToKokkosCBSpinor2(psi_in, kokkos_hspinor_in); KokkosMVLattice(kokkos_gauge_e, kokkos_hspinor_in, 0, kokkos_hspinor_out); // Export result HalfFermion KokkosCBSpinor2ToQDPLatticeHalfFermion(kokkos_hspinor_out,kokkos_out); psi_out[rb[0]] -= kokkos_out; double norm_diff = toDouble(sqrt(norm2(psi_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } // ********* TEST ADJOINT **************** { psi_out[rb[0]] = adj(gauge_in[0])*psi_in; psi_out[rb[1]] = zero; // Import input halfspinor -- Gauge still imported QDPLatticeHalfFermionToKokkosCBSpinor2(psi_in, kokkos_hspinor_in); KokkosHVLattice(kokkos_gauge_e, kokkos_hspinor_in, 0, kokkos_hspinor_out); // Export result HalfFermion KokkosCBSpinor2ToQDPLatticeHalfFermion(kokkos_hspinor_out,kokkos_out); psi_out[rb[0]] -= kokkos_out; double norm_diff = toDouble(sqrt(norm2(psi_out))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } TEST(TestKokkos, TestDslash) { IndexArray latdims={{4,4,4,4}}; initQDPXXLattice(latdims); multi1d<LatticeColorMatrix> gauge_in(n_dim); for(int mu=0; mu < n_dim; ++mu) { gaussian(gauge_in[mu]); reunit(gauge_in[mu]); } LatticeFermion psi_in=zero; gaussian(psi_in); LatticeInfo info(latdims,4,3,NodeInfo()); LatticeInfo hinfo(latdims,2,3,NodeInfo()); KokkosCBFineSpinor<REAL,4> kokkos_spinor_even(info,EVEN); KokkosCBFineSpinor<REAL,4> kokkos_spinor_odd(info,ODD); KokkosFineGaugeField<REAL> kokkos_gauge(info); // Import Gauge Field QDPGaugeFieldToKokkosGaugeField(gauge_in, kokkos_gauge); KokkosDslash<REAL> D(info); LatticeFermion psi_out, kokkos_out; for(int cb=0; cb < 2; ++cb) { KokkosCBFineSpinor<REAL,4>& out_spinor = (cb == EVEN) ? kokkos_spinor_even : kokkos_spinor_odd; KokkosCBFineSpinor<REAL,4>& in_spinor = (cb == EVEN) ? kokkos_spinor_odd: kokkos_spinor_even; for(int isign=-1; isign < 2; isign+=2) { // In the Host psi_out = zero; // Target cb=1 for now. dslash(psi_out,gauge_in,psi_in,isign,cb); QDPLatticeFermionToKokkosCBSpinor(psi_in, in_spinor); D(in_spinor,kokkos_gauge,out_spinor,isign); kokkos_out = zero; KokkosCBSpinorToQDPLatticeFermion(out_spinor, kokkos_out); MasterLog(DEBUG,"After export kokkos_out has norm = %16.8e on rb[0]", toDouble(sqrt(norm2(kokkos_out,rb[0])))); MasterLog(DEBUG,"After export psi_out has norm = %16.8e on rb[0]", toDouble(sqrt(norm2(psi_out,rb[0])))); MasterLog(DEBUG,"After export kokkos_out has norm = %16.8e on rb[1]", toDouble(sqrt(norm2(kokkos_out,rb[1])))); MasterLog(DEBUG,"After export psi_out has norm = %16.8e on rb[1]", toDouble(sqrt(norm2(psi_out,rb[1])))); // Check Diff on Odd psi_out[rb[cb]] -= kokkos_out; double norm_diff = toDouble(sqrt(norm2(psi_out,rb[cb]))); MasterLog(INFO, "norm_diff = %lf", norm_diff); ASSERT_LT( norm_diff, 1.0e-5); } } } int main(int argc, char *argv[]) { return ::MGTesting::TestMain(&argc, argv); }
778d30a870ebc192fcec8c3f0b9c839ee872c811
eb6f8317c6c361e05df91ae16fd66ecf3a3a8b01
/Liurujia_uva/v1bignumber/uva 748/uva 748/源.cpp
f4f75229f1c024b340826b22c8db6dc68781cc60
[]
no_license
Joey-Liu/online-judge-old-version
b00a12ec2da0053c461e914433ccb6760f7e8c50
c452ecee203c20e2856faa8ef876ad855e6c8957
refs/heads/master
2020-03-16T00:53:56.668165
2018-10-28T02:54:28
2018-10-28T02:54:28
132,428,000
1
0
null
null
null
null
GB18030
C++
false
false
1,694
cpp
源.cpp
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <memory.h> #include <string.h> #include <string> using namespace std; const int maxn = 200; int radio = 0, expon = 0, pos; int num[maxn], res[maxn][maxn]; char temp[maxn]; char value[maxn], ans[maxn * 2]; void read() { //输入的底数可能为整数 for (pos = 0; pos < 6; pos++) { if (value[pos] == '.') break; } int rp; for (rp = 5; rp >= pos; rp--) { if (value[rp] == '0') value[rp] = '\0'; else break; } memset(num, 0, sizeof(num)); memset(res, 0, sizeof(res)); int len = strlen(value); radio = (len - pos - 1) * expon; int j = 0; for (int i = len - 1; i >= 0; i--) { if ('.' == value[i]) continue; num[j] = value[i] - '0'; res[1][j] = num[j]; j++; } } void work() { for (int i = 2; i <= expon; i++) { for (int j = 0; j < maxn; j++) { for (int k = 0; k < maxn; k++) { res[i][j + k] += res[i - 1][j] * num[k]; if (res[i][j + k] >= 10) { int c = res[i][j + k] / 10; res[i][j + k + 1] += c; res[i][j + k] %= 10; } } } }//for int i } int main() { freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); while (2 == scanf("%s %d", value, &expon)) { read(); work(); int index; for (index = maxn - 1; index >= 0; index--) { if (res[expon][index]) break; } memset(ans, 0, sizeof(ans)); int i; for (i = 0; i < radio; i++) { ans[i] = res[expon][i] + '0'; } int fraction = i; if (0 != radio) ans[i++] = '.'; for (; fraction <= index; fraction++, i++) ans[i] = res[expon][fraction] + '0'; i--; for (; i >= 0; i--) putchar(ans[i]); printf("\n"); }//while return 0; }
64dcea88a71eff31eb53efc69daf79e1fdf50669
6de45a874fbc3b30f4f437d6062c676b41c16b03
/chap3/map.cpp
47f422527bb64aa2d70d85a9f196384514509d58
[]
no_license
yanghan234/EssentialCPP
b46cb66f8d6d59683b44d589dabf77b0a14c2adc
47a9eb747602fd7fdab1a1cb7c78df925bdc43ea
refs/heads/master
2020-03-27T13:27:56.459124
2018-11-29T22:56:16
2018-11-29T22:56:16
146,611,299
0
0
null
null
null
null
UTF-8
C++
false
false
1,402
cpp
map.cpp
/* * Oct-19-2018 * Using a map */ #include <iostream> #include <map> #include <vector> #include <string> using namespace std; int main() { map<string,int> words; words[ "vermeer" ] = 1; string s[] = {"a","ab","sfsa","a"}; vector<string> svec(s,s+4); vector<string>::const_iterator sit = svec.begin(); for ( ; sit != svec.end(); sit++ ){ words[ *sit ] ++; } map<string,int>::iterator it = words.begin(); for ( ; it != words.end(); it++ ){ // Using iterator->first and iterator->second to get keys and values in a map cout << " key: " << it->first << " value: " << it->second << endl; } // Check if a key in a map // Method 1: // This method has a problem. If the key was not in the map initially, this key would be added to the map. int count = 0; if ( !( count = words["vermeer"] ) ){ cout << count << endl; } // Method 2: // Using find() function of map class // Return value type: // pair, if the key is in the map // end(), if the key is not int the map it = words.find("vermeer"); if ( it != words.end() ){ count = it->second; } // Method 3: // Using count() function of map class // Return value: // number of the key if ( words.count( "vermeer" ) ) count = words[ "vermeer" ]; }
33bfff288012c1e8d99f3e057dc1c9c1b9ece2ec
abd7bda7ed530852386f27743e82a7c69ccf0fab
/backends/imgui_impl_dx9.cpp
352e21927510723d3cc262711af0bc46492227c3
[ "MIT" ]
permissive
SesameOne-Software/sesame-imgui
8701dbe093ef21e3ffc1cec028b3e9790fe0a204
fed3fe3dcab8b5cee242fad3b1d82ed7c8ae9934
refs/heads/main
2023-08-02T17:03:17.322704
2021-03-19T19:27:31
2021-03-19T19:27:31
307,354,310
0
0
null
null
null
null
UTF-8
C++
false
false
13,488
cpp
imgui_impl_dx9.cpp
// dear imgui: Renderer Backend for DirectX9 // This needs to be used along with a Platform Backend (e.g. Win32) // Implemented features: // [X] Renderer: User texture binding. Use 'LPDIRECT3DTEXTURE9' as ImTextureID. Read the FAQ about ImTextureID! // [X] Renderer: Support for large meshes (64k+ vertices) with 16-bit indices. // You can copy and use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. // If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp. // Read online: https://github.com/ocornut/imgui/tree/master/docs // CHANGELOG // (minor and older changes stripped away, please see git history for details) // 2019-05-29: DirectX9: Added support for large mesh (64K+ vertices), enable ImGuiBackendFlags_RendererHasVtxOffset flag. // 2019-04-30: DirectX9: Added support for special ImDrawCallback_ResetRenderState callback to reset render state. // 2019-03-29: Misc: Fixed erroneous assert in ImGui_ImplDX9_InvalidateDeviceObjects(). // 2019-01-16: Misc: Disabled fog before drawing UI's. Fixes issue #2288. // 2018-11-30: Misc: Setting up io.BackendRendererName so it can be displayed in the About Window. // 2018-06-08: Misc: Extracted imgui_impl_dx9.cpp/.h away from the old combined DX9+Win32 example. // 2018-06-08: DirectX9: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection matrix and clipping rectangle. // 2018-05-07: Render: Saving/restoring Transform because they don't seem to be included in the StateBlock. Setting shading mode to Gouraud. // 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplDX9_RenderDrawData() in the .h file so you can call it yourself. // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. #include "../imgui.h" #include "imgui_impl_dx9.h" // DirectX #include <d3d9.h> #define DIRECTINPUT_VERSION 0x0800 #include <dinput.h> // DirectX data static LPDIRECT3DDEVICE9 g_pd3dDevice = NULL; static LPDIRECT3DVERTEXBUFFER9 g_pVB = NULL; static LPDIRECT3DINDEXBUFFER9 g_pIB = NULL; static LPDIRECT3DTEXTURE9 g_FontTexture = NULL; static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000; struct CUSTOMVERTEX { float pos[3]; D3DCOLOR col; float uv[2]; }; #define D3DFVF_CUSTOMVERTEX (D3DFVF_XYZ|D3DFVF_DIFFUSE|D3DFVF_TEX1) static void ImGui_ImplDX9_SetupRenderState( ImDrawData* draw_data ) { // Setup viewport D3DVIEWPORT9 vp; vp.X = vp.Y = 0; vp.Width = ( DWORD )draw_data->DisplaySize.x; vp.Height = ( DWORD )draw_data->DisplaySize.y; vp.MinZ = 0.0f; vp.MaxZ = 1.0f; g_pd3dDevice->SetViewport( &vp ); // Setup render state: fixed-pipeline, alpha-blending, no face culling, no depth testing, shade mode (for gradient) g_pd3dDevice->SetPixelShader( NULL ); g_pd3dDevice->SetVertexShader( NULL ); g_pd3dDevice->SetRenderState( D3DRS_CULLMODE, D3DCULL_NONE ); g_pd3dDevice->SetRenderState( D3DRS_LIGHTING, FALSE ); g_pd3dDevice->SetRenderState( D3DRS_ZENABLE, FALSE ); g_pd3dDevice->SetRenderState( D3DRS_ALPHABLENDENABLE, TRUE ); g_pd3dDevice->SetRenderState( D3DRS_ALPHATESTENABLE, FALSE ); g_pd3dDevice->SetRenderState( D3DRS_BLENDOP, D3DBLENDOP_ADD ); g_pd3dDevice->SetRenderState( D3DRS_SRCBLEND, D3DBLEND_SRCALPHA ); g_pd3dDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA ); g_pd3dDevice->SetRenderState( D3DRS_SCISSORTESTENABLE, TRUE ); g_pd3dDevice->SetRenderState( D3DRS_SHADEMODE, D3DSHADE_GOURAUD ); g_pd3dDevice->SetRenderState( D3DRS_FOGENABLE, FALSE ); g_pd3dDevice->SetTextureStageState( 0, D3DTSS_COLOROP, D3DTOP_MODULATE ); g_pd3dDevice->SetTextureStageState( 0, D3DTSS_COLORARG1, D3DTA_TEXTURE ); g_pd3dDevice->SetTextureStageState( 0, D3DTSS_COLORARG2, D3DTA_DIFFUSE ); g_pd3dDevice->SetTextureStageState( 0, D3DTSS_ALPHAOP, D3DTOP_MODULATE ); g_pd3dDevice->SetTextureStageState( 0, D3DTSS_ALPHAARG1, D3DTA_TEXTURE ); g_pd3dDevice->SetTextureStageState( 0, D3DTSS_ALPHAARG2, D3DTA_DIFFUSE ); g_pd3dDevice->SetSamplerState( 0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR ); g_pd3dDevice->SetSamplerState( 0, D3DSAMP_MAGFILTER, D3DTEXF_LINEAR ); // Setup orthographic projection matrix // Our visible imgui space lies from draw_data->DisplayPos (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayPos is (0,0) for single viewport apps. // Being agnostic of whether <d3dx9.h> or <DirectXMath.h> can be used, we aren't relying on D3DXMatrixIdentity()/D3DXMatrixOrthoOffCenterLH() or DirectX::XMMatrixIdentity()/DirectX::XMMatrixOrthographicOffCenterLH() { float L = draw_data->DisplayPos.x + 0.5f; float R = draw_data->DisplayPos.x + draw_data->DisplaySize.x + 0.5f; float T = draw_data->DisplayPos.y + 0.5f; float B = draw_data->DisplayPos.y + draw_data->DisplaySize.y + 0.5f; D3DMATRIX mat_identity = { { { 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f } } }; D3DMATRIX mat_projection = { { { 2.0f / (R - L), 0.0f, 0.0f, 0.0f, 0.0f, 2.0f / (T - B), 0.0f, 0.0f, 0.0f, 0.0f, 0.5f, 0.0f, (L + R) / (L - R), (T + B) / (B - T), 0.5f, 1.0f } } }; g_pd3dDevice->SetTransform( D3DTS_WORLD, &mat_identity ); g_pd3dDevice->SetTransform( D3DTS_VIEW, &mat_identity ); g_pd3dDevice->SetTransform( D3DTS_PROJECTION, &mat_projection ); } } // Render function. void ImGui_ImplDX9_RenderDrawData( ImDrawData* draw_data ) { // Avoid rendering when minimized if ( draw_data->DisplaySize.x <= 0.0f || draw_data->DisplaySize.y <= 0.0f ) return; // Create and grow buffers if needed if ( !g_pVB || g_VertexBufferSize < draw_data->TotalVtxCount ) { if ( g_pVB ) { g_pVB->Release( ); g_pVB = NULL; } g_VertexBufferSize = draw_data->TotalVtxCount + 5000; if ( g_pd3dDevice->CreateVertexBuffer( g_VertexBufferSize * sizeof( CUSTOMVERTEX ), D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY, D3DFVF_CUSTOMVERTEX, D3DPOOL_DEFAULT, &g_pVB, NULL ) < 0 ) return; } if ( !g_pIB || g_IndexBufferSize < draw_data->TotalIdxCount ) { if ( g_pIB ) { g_pIB->Release( ); g_pIB = NULL; } g_IndexBufferSize = draw_data->TotalIdxCount + 10000; if ( g_pd3dDevice->CreateIndexBuffer( g_IndexBufferSize * sizeof( ImDrawIdx ), D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY, sizeof( ImDrawIdx ) == 2 ? D3DFMT_INDEX16 : D3DFMT_INDEX32, D3DPOOL_DEFAULT, &g_pIB, NULL ) < 0 ) return; } // Backup the DX9 state IDirect3DStateBlock9* d3d9_state_block = NULL; if ( g_pd3dDevice->CreateStateBlock( D3DSBT_ALL, &d3d9_state_block ) < 0 ) return; // Backup the DX9 transform (DX9 documentation suggests that it is included in the StateBlock but it doesn't appear to) D3DMATRIX last_world, last_view, last_projection; g_pd3dDevice->GetTransform( D3DTS_WORLD, &last_world ); g_pd3dDevice->GetTransform( D3DTS_VIEW, &last_view ); g_pd3dDevice->GetTransform( D3DTS_PROJECTION, &last_projection ); // Copy and convert all vertices into a single contiguous buffer, convert colors to DX9 default format. // FIXME-OPT: This is a waste of resource, the ideal is to use imconfig.h and // 1) to avoid repacking colors: #define IMGUI_USE_BGRA_PACKED_COLOR // 2) to avoid repacking vertices: #define IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT struct ImDrawVert { ImVec2 pos; float z; ImU32 col; ImVec2 uv; } CUSTOMVERTEX* vtx_dst; ImDrawIdx* idx_dst; if ( g_pVB->Lock( 0, ( UINT )(draw_data->TotalVtxCount * sizeof( CUSTOMVERTEX )), ( void** )&vtx_dst, D3DLOCK_DISCARD ) < 0 ) return; if ( g_pIB->Lock( 0, ( UINT )(draw_data->TotalIdxCount * sizeof( ImDrawIdx )), ( void** )&idx_dst, D3DLOCK_DISCARD ) < 0 ) return; for ( int n = 0; n < draw_data->CmdListsCount; n++ ) { const ImDrawList* cmd_list = draw_data->CmdLists[n]; const ImDrawVert* vtx_src = cmd_list->VtxBuffer.Data; for ( int i = 0; i < cmd_list->VtxBuffer.Size; i++ ) { vtx_dst->pos[0] = vtx_src->pos.x; vtx_dst->pos[1] = vtx_src->pos.y; vtx_dst->pos[2] = 0.0f; vtx_dst->col = (vtx_src->col & 0xFF00FF00) | ((vtx_src->col & 0xFF0000) >> 16) | ((vtx_src->col & 0xFF) << 16); // RGBA --> ARGB for DirectX9 vtx_dst->uv[0] = vtx_src->uv.x; vtx_dst->uv[1] = vtx_src->uv.y; vtx_dst++; vtx_src++; } memcpy( idx_dst, cmd_list->IdxBuffer.Data, cmd_list->IdxBuffer.Size * sizeof( ImDrawIdx ) ); idx_dst += cmd_list->IdxBuffer.Size; } g_pVB->Unlock( ); g_pIB->Unlock( ); g_pd3dDevice->SetStreamSource( 0, g_pVB, 0, sizeof( CUSTOMVERTEX ) ); g_pd3dDevice->SetIndices( g_pIB ); g_pd3dDevice->SetFVF( D3DFVF_CUSTOMVERTEX ); // Setup desired DX state ImGui_ImplDX9_SetupRenderState( draw_data ); // Render command lists // (Because we merged all buffers into a single one, we maintain our own offset into them) int global_vtx_offset = 0; int global_idx_offset = 0; ImVec2 clip_off = draw_data->DisplayPos; for ( int n = 0; n < draw_data->CmdListsCount; n++ ) { const ImDrawList* cmd_list = draw_data->CmdLists[n]; for ( int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++ ) { const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; if ( pcmd->UserCallback != NULL ) { // User callback, registered via ImDrawList::AddCallback() // (ImDrawCallback_ResetRenderState is a special callback value used by the user to request the renderer to reset render state.) if ( pcmd->UserCallback == ImDrawCallback_ResetRenderState ) ImGui_ImplDX9_SetupRenderState( draw_data ); else pcmd->UserCallback( cmd_list, pcmd ); } else { const RECT r = { ( LONG )(pcmd->ClipRect.x - clip_off.x), ( LONG )(pcmd->ClipRect.y - clip_off.y), ( LONG )(pcmd->ClipRect.z - clip_off.x), ( LONG )(pcmd->ClipRect.w - clip_off.y) }; const LPDIRECT3DTEXTURE9 texture = ( LPDIRECT3DTEXTURE9 )pcmd->TextureId; g_pd3dDevice->SetTexture( 0, texture ); g_pd3dDevice->SetScissorRect( &r ); g_pd3dDevice->DrawIndexedPrimitive( D3DPT_TRIANGLELIST, pcmd->VtxOffset + global_vtx_offset, 0, ( UINT )cmd_list->VtxBuffer.Size, pcmd->IdxOffset + global_idx_offset, pcmd->ElemCount / 3 ); } } global_idx_offset += cmd_list->IdxBuffer.Size; global_vtx_offset += cmd_list->VtxBuffer.Size; } // Restore the DX9 transform g_pd3dDevice->SetTransform( D3DTS_WORLD, &last_world ); g_pd3dDevice->SetTransform( D3DTS_VIEW, &last_view ); g_pd3dDevice->SetTransform( D3DTS_PROJECTION, &last_projection ); // Restore the DX9 state d3d9_state_block->Apply( ); d3d9_state_block->Release( ); } bool ImGui_ImplDX9_Init( IDirect3DDevice9* device ) { // Setup backend capabilities flags ImGuiIO& io = ImGui::GetIO( ); io.BackendRendererName = "imgui_impl_dx9"; io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset; // We can honor the ImDrawCmd::VtxOffset field, allowing for large meshes. g_pd3dDevice = device; g_pd3dDevice->AddRef( ); return true; } void ImGui_ImplDX9_Shutdown( ) { ImGui_ImplDX9_InvalidateDeviceObjects( ); if ( g_pd3dDevice ) { g_pd3dDevice->Release( ); g_pd3dDevice = NULL; } } static bool ImGui_ImplDX9_CreateFontsTexture( ) { // Build texture atlas ImGuiIO& io = ImGui::GetIO( ); unsigned char* pixels; int width, height, bytes_per_pixel; io.Fonts->GetTexDataAsRGBA32( &pixels, &width, &height, &bytes_per_pixel ); // Upload texture to graphics system g_FontTexture = NULL; if ( g_pd3dDevice->CreateTexture( width, height, 1, D3DUSAGE_DYNAMIC, D3DFMT_A8R8G8B8, D3DPOOL_DEFAULT, &g_FontTexture, NULL ) < 0 ) return false; D3DLOCKED_RECT tex_locked_rect; if ( g_FontTexture->LockRect( 0, &tex_locked_rect, NULL, 0 ) != D3D_OK ) return false; for ( int y = 0; y < height; y++ ) memcpy( ( unsigned char* )tex_locked_rect.pBits + tex_locked_rect.Pitch * y, pixels + (width * bytes_per_pixel) * y, (width * bytes_per_pixel) ); g_FontTexture->UnlockRect( 0 ); // Store our identifier io.Fonts->TexID = ( ImTextureID )g_FontTexture; return true; } bool ImGui_ImplDX9_CreateDeviceObjects( ) { if ( !g_pd3dDevice ) return false; if ( !ImGui_ImplDX9_CreateFontsTexture( ) ) return false; return true; } void ImGui_ImplDX9_InvalidateDeviceObjects( ) { if ( !g_pd3dDevice ) return; if ( g_pVB ) { g_pVB->Release( ); g_pVB = NULL; } if ( g_pIB ) { g_pIB->Release( ); g_pIB = NULL; } if ( g_FontTexture ) { g_FontTexture->Release( ); g_FontTexture = NULL; ImGui::GetIO( ).Fonts->TexID = NULL; } // We copied g_pFontTextureView to io.Fonts->TexID so let's clear that as well. } void ImGui_ImplDX9_NewFrame( ) { if ( !g_FontTexture ) ImGui_ImplDX9_CreateDeviceObjects( ); }
45d572e4b01632e51c9549d73e92d19b48404393
d296f3b8b55616c4a74f5bbb217fc87b9f4b8e63
/weikong/cbl/src/base/SemaphoreEx.cpp
3a38d3b051068f0402d03e9212f413e2b1c8e814
[]
no_license
ktysakura/project_test
8c541eecc974c37256a2daad0328c308253759db
4c015aa92894b87c6ed5a0419073300f2c01b206
refs/heads/master
2023-03-01T18:24:07.597722
2021-02-08T09:34:58
2021-02-08T09:34:58
294,620,728
0
0
null
null
null
null
UTF-8
C++
false
false
1,016
cpp
SemaphoreEx.cpp
#include "SemaphoreEx.h" #include <time.h> namespace cbl { CSemaphoreEx::CSemaphoreEx() { m_hSem = NULL; } CSemaphoreEx::CSemaphoreEx(int nMaxCount) { m_hSem = NULL; this->create(nMaxCount); } CSemaphoreEx::~CSemaphoreEx() { this->close(); } int CSemaphoreEx::create(int nMaxCount) { this->close(); if (NULL == (m_hSem = CreateSemaphore(NULL, 0, max(nMaxCount, 1), NULL))) { return -1; } return 0; } int CSemaphoreEx::post() { if (NULL == m_hSem) { return -1; } return (ReleaseSemaphore(m_hSem, 1, NULL) ? 0 : -2); } int CSemaphoreEx::wait() { if (NULL == m_hSem) { return -1; } return ((WAIT_OBJECT_0 == WaitForSingleObject(m_hSem, INFINITE)) ? 0 : -2); } int CSemaphoreEx::wait(int nTimeout) { if (NULL == m_hSem) { return -1; } return ((WAIT_OBJECT_0 == WaitForSingleObject(m_hSem, nTimeout)) ? 0 : -2); } int CSemaphoreEx::close() { if (m_hSem) { CloseHandle(m_hSem); m_hSem = NULL; } return 0; } bool CSemaphoreEx::isNull() { return (NULL == m_hSem); } }
5b8609101a0b545fc36e0fcb26d82116cbc1da6f
485539af8461d2ce2119bafca181b002703b6653
/OBI/P2/F2/2013/cachecol.cpp
d5594103c2579f3c0111f015dd9090515ca9a81f
[]
no_license
joaogui1/Competitive-Programming
f6cea58c7460011b366b04497e69cef97f86cdd1
8e7a0eb0f4a48ec3fd5b01b0510bc1ec7a4c46bf
refs/heads/master
2021-06-16T21:43:57.442360
2021-02-06T11:26:01
2021-02-06T11:26:01
137,510,703
1
0
null
null
null
null
UTF-8
C++
false
false
1,272
cpp
cachecol.cpp
#include <cstdio> #define MOD 1000000007 long long int m[65][4], ans[4] = {246LL, 54LL, 54LL, 12LL}; int main(){ long long int n, p = 1LL, a0, a1, a2, a3; scanf("%lld", &n); if(n >= 3){ n -= 3; m[0][0] = +5LL; m[0][1] = +1LL; m[0][2] = -2LL; m[0][3] = +0LL; for(int i = 1; i <= 60; ++i){ m[i][0] = ((m[i-1][0]*m[i-1][0])%MOD + (m[i-1][1]*m[i-1][2])%MOD)%MOD; m[i][1] = ((m[i-1][0]*m[i-1][1])%MOD + (m[i-1][1]*m[i-1][3])%MOD)%MOD; m[i][2] = ((m[i-1][0]*m[i-1][2])%MOD + (m[i-1][2]*m[i-1][3])%MOD)%MOD; m[i][3] = ((m[i-1][2]*m[i-1][1])%MOD + (m[i-1][3]*m[i-1][3])%MOD)%MOD; } for(long long int i = 0LL; (p << i) <= n; ++i){ if((p << i) & n){ a0 = ((ans[0]*m[i][0])%MOD + (ans[1]*m[i][2])%MOD)%MOD; a1 = ((ans[0]*m[i][1])%MOD + (ans[1]*m[i][3])%MOD)%MOD; a2 = ((ans[2]*m[i][0])%MOD + (ans[3]*m[i][2])%MOD)%MOD; a3 = ((ans[2]*m[i][1])%MOD + (ans[3]*m[i][3])%MOD)%MOD; ans[0] = a0; ans[1] = a1; ans[2] = a2; ans[3] = a3; } } ans[0] = (ans[0]%MOD + MOD)%MOD; printf("%lld\n", ans[0]); } else printf("%lld\n", (n == 1)?12LL:54LL); return 0; }
30dc461475d18ad6513b9d1c2593f58ccce1b6bb
14355f60733dce9b2f73daca94afe507981fb99d
/Packets/Tag11.cpp
240248f57072e371a1b61b413840491e816ef914
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
r4yan2/OpenPGP
86906fd33440b1c567b4fc0f13ad4f11a925d632
0299d96ee3b60d1d29b2d59f43610603a1135a5e
refs/heads/master
2021-12-31T09:19:32.855072
2018-02-13T12:36:55
2018-02-13T12:36:55
150,585,547
0
0
MIT
2018-09-27T12:45:55
2018-09-27T12:45:55
null
UTF-8
C++
false
false
3,538
cpp
Tag11.cpp
#include "Tag11.h" namespace OpenPGP { namespace Packet { Tag11::Tag11() : Tag(LITERAL_DATA), format(), filename(), time(), literal() {} Tag11::Tag11(const Tag11 & copy) : Tag(copy), format(copy.format), filename(copy.filename), time(copy.time), literal(copy.literal) {} Tag11::Tag11(const std::string & data) : Tag11() { read(data); } void Tag11::read(const std::string & data){ size = data.size(); format = data[0]; uint8_t len = data[1]; filename = data.substr(2, len); if (filename == "_CONSOLE"){ std::cerr << "Warning: Special name \"_CONSOLE\" used. Message is considered to be \"for your eyes only\"." << std::endl; } time = toint(data.substr(2 + len, 4), 256); literal = data.substr(len + 6, data.size() - len - 6); } std::string Tag11::show(const std::size_t indents, const std::size_t indent_size) const{ const std::string indent(indents * indent_size, ' '); const std::string tab(indent_size, ' '); const decltype(Literal::NAME)::const_iterator literal_it = Literal::NAME.find(format); return indent + show_title() + "\n" + indent + tab + "Format: " + ((literal_it == Literal::NAME.end())?"Unknown":(literal_it -> second)) + "\n" + indent + tab + "Data (" + std::to_string(1 + filename.size() + 4 + literal.size()) + " octets):\n" + indent + tab + tab + "Filename: " + filename + "\n" + indent + tab + tab + "Creation Date: " + show_time(time) + "\n" + indent + tab + tab + "Data: " + literal; } std::string Tag11::raw() const{ return std::string(1, format) + std::string(1, filename.size()) + filename + unhexlify(makehex(time, 8)) + literal; } uint8_t Tag11::get_format() const{ return format; } std::string Tag11::get_filename() const{ return filename; } uint32_t Tag11::get_time() const{ return time; } std::string Tag11::get_literal() const{ if (filename == "_CONSOLE"){ std::cerr << "Warning: Special name \"_CONSOLE\22 used. Message is considered to be \"for your eyes only\"." << std::endl; } return literal; } std::string Tag11::out(const bool writefile){ if (filename == "_CONSOLE"){ std::cerr << "Warning: Special name \"_CONSOLE\22 used. Message is considered to be \"for your eyes only\"." << std::endl; } if ((filename != "") && writefile){ std::ofstream f; switch (format){ case 'b': f.open(filename.c_str(), std::ios::binary); break; case 't': case 'u': f.open(filename.c_str()); break; default: throw std::runtime_error("Error: Unknown Literal Data format type: " + std::to_string(format)); break; } if (!f){ throw std::runtime_error("Error: Failed to open file to write literal data."); } f << literal; } else{ return literal; } return "Data written to file '" + filename + "'."; } void Tag11::set_format(const uint8_t f){ format = f; size = raw().size(); } void Tag11::set_filename(const std::string & f){ filename = f; size = raw().size(); } void Tag11::set_time(const uint32_t t){ time = t; size = raw().size(); } void Tag11::set_literal(const std::string & l){ literal = l; size = raw().size(); } Tag::Ptr Tag11::clone() const{ return std::make_shared <Packet::Tag11> (*this); } } }
99b94ebc230c828a89c6e13c2fff80a990f2cdcd
7cedacaa6f738ecf61c86d8595c6c6b5d647a6d2
/include/GameLibrary/Physics/CollisionRectBuilder.hpp
3d5fed0de034c06ad8458096c7549f1d981eb950
[]
no_license
lufinkey/GameLibrary
0268fe5f5f4249ff3ed4b247a1e2940ec1da1e8f
766e7c603eb57578316f8879fea64699b564f2ec
refs/heads/master
2021-06-12T16:37:13.295652
2021-02-02T00:30:56
2021-02-02T00:30:56
57,013,617
2
0
null
null
null
null
UTF-8
C++
false
false
1,549
hpp
CollisionRectBuilder.hpp
#pragma once #include <functional> #include "Collidable.hpp" #include <GameLibrary/Animation/Animation.hpp> namespace fgl { class CollisionRectBuilder { private: CollisionRectBuilder() = delete; public: static const CollisionRect* fromRect(const String& tag, const RectangleD& rect, const ArrayList<const CollisionRect*>& prevRects, const Vector2d& resolution={1.0, 1.0 }); static const CollisionRect* fromRect(const String& tag, const RectangleD& rect, const ArrayList<const CollisionRect*>& prevRects, double rotation, const Vector2d& resolution={ 1.0, 1.0 }); static const CollisionRect* fromAnimation(const String& tag, Animation* animation, size_t frameIndex, const ArrayList<const CollisionRect*>& prevRects, const Vector2d& origin, bool mirroredHorizontal=false, bool mirroredVertical=false); static const CollisionRect* fromAnimation(const String& tag, Animation* animation, size_t frameIndex, const ArrayList<const CollisionRect*>& prevRects, const Vector2d& origin, const Vector2d& size, double rotation, bool mirroredHorizontal=false, bool mirroredVertical=false); static const CollisionRect* fromPolygon(const String& tag, const PolygonD& polygon, const ArrayList<const CollisionRect*>& prevRects, const Vector2d& resolution=Vector2d(1.0,1.0)); static size_t findMatchingRectIndex(const ArrayList<const CollisionRect*>& collisionRects, const String& tag); static RectangleD getMatchingRect(const ArrayList<const CollisionRect*>& collisionRects, const String& tag, const RectangleD& currentRect); }; }
30c9a759870fbf07921fc73ec30908fe9c06cad9
cb501932be4d79608e527ea9c654fd43f959e518
/Extractor2Histo/Extractor2Histos.h
a9722660aeb48ef4e3b76617df5b414f13cb75ed
[]
no_license
IPNL-CMS/MttTools
5f25d359952beecfccf026d5bad79d2610f6d2ec
2f707e7df4409f535f6ddf6d53da9ff0a55b4d86
refs/heads/master
2016-09-11T00:50:11.288540
2015-10-15T20:53:55
2015-10-15T20:53:55
13,157,457
0
1
null
null
null
null
UTF-8
C++
false
false
9,669
h
Extractor2Histos.h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Fri May 4 09:46:33 2012 by ROOT version 5.32/00 // from TTree Mtt/Analysis info // found on file: /gridgroup/cms/brochet/MTT/CMSSW/CMSSW_5_2_3_patch4/src/Extractors/PatExtractor_2/analysis/tuples/MTT_TTJets_2012_v1_semimu.root ////////////////////////////////////////////////////////// #pragma once #include <TROOT.h> #include <TChain.h> #include <TFile.h> #include <TClonesArray.h> #include <TLorentzVector.h> #include <iostream> #include <Math/Vector4D.h> #include <vector> typedef ROOT::Math::PtEtaPhiEVector LorentzVector; class TBranch; // Header file for the classes stored in the TTree if any. // Fixed size dimensions of array or collections stored in the TTree if any. // #define MAX_ARRAY_SIZE 100 class Extractor2Histos { public : TChain *fMTT; //!pointer to the analyzed TChain or TChain TChain *fVertices; TChain *fEvent; TChain *fLooseMuons; TChain *fJet; TChain *fMET; TChain *fElectrons; Int_t fCurrent; //!current Tree number in a TChain std::string mDataset; bool mIsMC; bool mIsSemiMu; Float_t MC_boost_tt; float MC_pt_tt; float MC_eta_tt; //float MC_pt_tt_com; //float MC_eta_tt_com; //float MC_top1Pt; //float MC_top2Pt; //float MC_top1Pt_com; //float MC_top2Pt_com; //float MC_top1Eta; //float MC_top2Eta; //float MC_top1Eta_com; //float MC_top2Eta_com; // Declaration of leaf types Int_t MC_channel; Float_t MC_mtt; Int_t MC_nPU; Int_t nGoodMuons; Int_t nLooseGoodMuons; Float_t muonPt[MAX_ARRAY_SIZE]; //[nGoodMuons] Float_t muonEta[MAX_ARRAY_SIZE]; //[nGoodMuons] Float_t p_2DDrMin[MAX_ARRAY_SIZE]; //[nGoodMuons] Float_t p_2DpTrel[MAX_ARRAY_SIZE]; //[nGoodMuons] Float_t muRelIso[MAX_ARRAY_SIZE]; //[nGoodMuons] Int_t nGoodElectrons; Float_t electronPt[MAX_ARRAY_SIZE]; //[nGoodElectrons] Float_t electronEta[MAX_ARRAY_SIZE]; //[nGoodElectrons] Float_t elRelIso[MAX_ARRAY_SIZE]; //[nGoodElectrons] Int_t hyperTight1MC[MAX_ARRAY_SIZE]; //[nGoodElectrons] Float_t p_1stjetpt; Float_t p_2ndjetpt; Float_t p_3rdjetpt; Float_t p_4thjetpt; Float_t p_aplanarity; Float_t p_circularity; Float_t p_sphericity; Float_t p_isotropy; Float_t p_D; Float_t p_C; Int_t nJets; Float_t jetEta[MAX_ARRAY_SIZE]; //[nJets] Float_t jetPt[MAX_ARRAY_SIZE]; //[nJets] Int_t nBtaggedJets_CSVM; Float_t MET; Float_t METPhi; Int_t isSel; Int_t oneMatchedCombi; Float_t bestSolChi2; Int_t isBestSolMatched; Float_t KFChi2; Float_t kf_proba; Float_t kf_chisquare; bool kf_converged; Float_t mtt_AfterKF; Float_t mtt_AfterMVA; Float_t mtt_AfterChi2; Int_t numComb_chi2; Int_t numComb; Float_t solChi2[MAX_ARRAY_SIZE]; //[numComb] Float_t mLepTop_AfterReco; Float_t mHadTop_AfterReco; Float_t mtt_AfterReco; Float_t lepTopPt_AfterReco; Float_t lepTopEta_AfterReco; Float_t hadTopPt_AfterReco; Float_t hadTopEta_AfterReco; Float_t pt_tt_AfterReco; Float_t eta_tt_AfterReco; Float_t beta_tt_AfterReco; Float_t HTFracValue; Float_t selectedFirstJetPt_AfterReco; Float_t selectedSecondJetPt_AfterReco; Float_t selectedHadronicBPt_AfterReco; Float_t selectedLeptonicBPt_AfterReco; Float_t sumPt4JetsSel; Float_t sumPtJetsInEvent; Float_t mLepTop_AfterKF; Float_t mHadTop_AfterKF; Float_t pt_tt_AfterKF; Float_t eta_tt_AfterKF; Float_t beta_tt_AfterKF; Float_t lepTopPt_AfterKF; Float_t lepTopEta_AfterKF; Float_t hadTopPt_AfterKF; Float_t hadTopEta_AfterKF; Float_t mLepTop_AfterChi2; Float_t mHadTop_AfterChi2; Float_t pt_tt_AfterChi2; Float_t eta_tt_AfterChi2; Float_t beta_tt_AfterChi2; Float_t lepTopPt_AfterChi2; Float_t lepTopEta_AfterChi2; Float_t hadTopPt_AfterChi2; Float_t hadTopEta_AfterChi2; int N_error_pdf; float pdf_weight_up[MAX_ARRAY_SIZE]; float pdf_weight_down[MAX_ARRAY_SIZE]; float alphas_weight_up; float alphas_weight_down; bool m_triggerPassed; TClonesArray* gen_top1_p4; TClonesArray* gen_top2_p4; TClonesArray* gen_lepton_p4; TClonesArray* gen_neutrino_p4; TClonesArray* gen_leptonic_B_p4; TClonesArray* gen_hadronic_B_p4; TClonesArray* gen_lightJet1_p4; TClonesArray* gen_lightJet2_p4; LorentzVector* lepTopP4_AfterReco; LorentzVector* hadTopP4_AfterReco; LorentzVector* selectedFirstJetP4_AfterReco; LorentzVector* selectedSecondJetP4_AfterReco; LorentzVector* selectedHadronicBP4_AfterReco; LorentzVector* selectedLeptonicBP4_AfterReco; LorentzVector* selectedLeptonP4_AfterKF; TClonesArray* selectedLeptonP4_AfterReco; LorentzVector* selectedNeutrinoP4_AfterReco; LorentzVector* lepTopP4_AfterChi2; LorentzVector* hadTopP4_AfterChi2; LorentzVector* selectedFirstJetP4_AfterChi2; LorentzVector* selectedSecondJetP4_AfterChi2; LorentzVector* selectedNeutrinoP4_AfterChi2; LorentzVector* selectedHadronicBP4_AfterChi2; LorentzVector* selectedLeptonicBP4_AfterChi2; LorentzVector* lepTopP4_AfterKF; LorentzVector* hadTopP4_AfterKF; LorentzVector* selectedFirstJetP4_AfterKF; LorentzVector* selectedSecondJetP4_AfterKF; LorentzVector* selectedNeutrinoP4_AfterKF; LorentzVector* selectedHadronicBP4_AfterKF; LorentzVector* selectedLeptonicBP4_AfterKF; // List of branches TBranch *b_MC_channel; //! TBranch *b_MC_mtt; //! TBranch *b_m_nPU; //! TBranch *b_nGoodMuons; //! TBranch *b_nLooseGoodMuons; //! TBranch *b_muonPt; //! TBranch *b_2DDrMin; //! TBranch *b_2DpTrel; //! TBranch *b_muRelIso; //! TBranch *b_nGoodElectrons; //! TBranch *b_electronPt; //! TBranch *b_elRelIso; //! TBranch *b_hyperTight1MC; //! TBranch *b_1stjetpt; //! TBranch *b_2ndjetpt; //! TBranch *b_3rdjetpt; //! TBranch *b_4thjetpt; //! TBranch *b_nJets; //! TBranch *b_jetEta; //! TBranch *b_jetPt; //! TBranch *b_nBtaggedJets_TCHEL; //! TBranch *b_nBtaggedJets_TCHEM; //! TBranch *b_nBtaggedJets_TCHET; //! TBranch *b_nBtaggedJets_TCHPL; //! TBranch *b_nBtaggedJets_TCHPM; //! TBranch *b_nBtaggedJets_TCHPT; //! TBranch *b_nBtaggedJets_SSVHEM; //! TBranch *b_nBtaggedJets_SSVHPT; //! TBranch *b_MET; //! TBranch *b_isSel; //! TBranch *b_oneMatchedCombi; //! TBranch *b_bestSolChi2; //! TBranch *b_isBestSolMatched; //! TBranch *b_KFChi2; //! TBranch *b_numComb; //! TBranch *b_solChi2; //! int n_vertices; float n_trueInteractions; uint32_t run; float m_lepton_weight; float m_lepton_weight_error = 0; float m_btag_weight; float m_btag_weight_error = 0; float generator_weight; std::string mOutputFile; std::string m_bdtWeights; std::vector<std::string> m_inputFiles; int mBTag; bool mSkim; bool mUseMVA = false; bool mUseKF = false; bool mUseChi2 = false; bool mUseHybrid = false; std::string mTriggerSyst = "nominal"; std::string mJECSyst = "nominal"; std::string mPUSyst = "nominal"; std::string mPDFSyst = "nominal"; std::string mAlphasSyst = "nominal"; std::string mLeptonSyst = "nominal"; std::string mBTagSyst = "nominal"; int n_muons; float muon_relIso[100]; TClonesArray* muon_p4; float electron_SCEta[100]; TClonesArray* jet_p4; TClonesArray* met_p4; Extractor2Histos(const std::vector<std::string>& inputFiles, const std::string& outputFile, bool isSemiMu, bool isMC, int btag, bool skim, bool mva, bool chi2, bool kf, bool hybrid, const std::string& triggerSyst, const std::string& jecSyst, const std::string& puSyst, const std::string& pdfSyst, const std::string& alphasSyst, const std::string& leptonSyst, const std::string& btagSyst); virtual ~Extractor2Histos(); virtual Int_t GetEntry(Long64_t entry); virtual void Loop(); virtual void Init(); virtual void Init(bool useKF); void SetBranchAddress(TTree* t, const char* branchName, void* ptr); };
077c83f14d5c0986d48a9e458537047c031abb5d
090618a490ba9cbdcd0fbf6fe9a291eefe63d103
/handwork/mesh/subdivision.h
6aa220cee4e8a30d280e8add883a453adff34fc5
[ "MIT" ]
permissive
zjxeditor/SimpleRenderer
afa80a1e682a865a2f8c03743b0208253b868025
20b74c9c7851983495151fb8d895f591a63e8c94
refs/heads/master
2020-03-28T13:48:12.357652
2018-09-12T08:36:53
2018-09-12T08:36:53
148,430,196
3
1
null
null
null
null
UTF-8
C++
false
false
1,619
h
subdivision.h
// Do efficient mesh subdivison using OpenSubDiv library. #pragma once #include "../utility/utility.h" #include "../utility/geometry.h" namespace handwork { enum class KernelType { kCPU = 0, kOPENMP }; class StencilOutputBase { public: virtual ~StencilOutputBase() {} virtual void UpdateData(const float *src, int startVertex, int numVertices) = 0; virtual void EvalStencilsNormal() = 0; virtual void EvalStencilsLimit() = 0; virtual int GetNumStencilsNormal() const = 0; virtual int GetNumStencilsLimit() const = 0; virtual float* GetDstDataNormal() = 0; virtual float* GetDstDataLimit() = 0; }; struct TopologyInfo { int VertsNum; int FacesNum; std::vector<int> Indices; }; class SubDivision { public: SubDivision(int samples, KernelType type, int level, int vertsNum, int facesNum, int const* indices, bool leftHand = false); // Data format is [ P(xyz) ]. void UpdateSrc(const float* positions); // Data format is [ P(xyz) ]. const float* EvaluateNormal(int& num); // Data format is [ P(xyz), du(xyz), dv(xyz) ]. const float* EvaluateLimit(int& num); int GetTopologyLevelNum() const { return (int)topologyInformation.size(); } const TopologyInfo* GetTopology(int level) { return &topologyInformation[level]; } private: int samplesPerFace = 2000; KernelType kernel = KernelType::kCPU; int isolationLevel = 2; // max level of extraordinary feature isolation int nVerts = 0; std::unique_ptr<StencilOutputBase> stencilOutput; // Store the topology infomation std::vector<TopologyInfo> topologyInformation; }; } // namespace handwork
4d4af87722718db4f044682355b7acf76c259d77
508d3bbd57513a567ed4f6f2ca329dda5fd1ea5e
/linux_network/programTool/workManager/WorkManager.h
1730249dbf06f8bb6977471d668766552b3482fc
[]
no_license
rogerleeyoung/Project
e60571d926f637d5a27de645d799af4b784193c9
5b4bae338f15d22cc4ac7e7117388ea092f5a949
refs/heads/master
2021-06-17T03:58:10.941429
2017-05-16T13:19:59
2017-05-16T13:19:59
68,607,166
1
0
null
null
null
null
UTF-8
C++
false
false
263
h
WorkManager.h
#ifndef _WORKMANAGER_H #define _WORKMANAGER_H #include "../threadpool/Task.h" class WorkManagerImpl; class WorkManager { public: WorkManager(int size); ~WorkManager(); int addTask(Task* task); int init(); private: WorkManagerImpl *workManagerImpl; }; #endif
31b6536a7d4c112c08884743fc37de396a9654da
0cf7c0022a836187d85a82429c283c21a12d9273
/regulacademie.h
a672195f689d6dd272eb4b59f4cf846f71cfa33f
[]
no_license
yschutz/RegulArt
1916fd0724a8d8b0a0b87afd5a5476db998a33da
a46db31845d5a04fa9424af3694c69b11b50f84c
refs/heads/main
2023-04-26T16:06:35.812990
2021-06-03T12:46:55
2021-06-03T12:46:55
373,242,591
0
0
null
null
null
null
UTF-8
C++
false
false
1,690
h
regulacademie.h
#ifndef REGULACADEMIE_H #define REGULACADEMIE_H #include <QJsonDocument> #include <QObject> #include "regulpeintre.h" #include "downloadmanager.h" class RegulAcademie : public QObject { Q_OBJECT Q_ENUMS(ImageType) public: enum ImageType {kHD, kLD, kPhoto}; explicit RegulAcademie(QObject *parent = nullptr); ~RegulAcademie(); void downLoadImagesAndPhoto(); QString nomComplet(const QString &nom); QList<RegulPeintre*> peintres() const {return m_peintres;} QString peintreCourant() const {return m_peintres.at(m_peintreCurrent)->nom();} void setCurrent(const QString &name); void setImagesAndPhotoLoaded(bool val); void setJsonFilePath(const QString &path) {m_jsonFilePath = path;} QString tableauCourant() const {return m_peintres.at(m_peintreCurrent)->Tableaux().at(m_tableauCurrent)->nom();} void tailleTableau(const QString &peintre, const QString &nom, qreal &w, qreal &h); public slots: void loadImage(const ImageType type); void loaded(); signals: void photoready(); void tableauHDready(); void tableauLDready(); private: void browseJson(); bool m_imageHDLoaded = false; bool m_imageLDLoaded = false; QJsonDocument m_jsonDoc; QString m_jsonFilePath; QList<RegulPeintre*> m_peintres; int m_peintreCurrent; bool m_photoLoaded = false; int m_tableauCurrent; }; #endif // REGULACADEMIE_H
261c8eec9dcee8eba01ba669cacab3c371ad708b
13cdba7eabef5c8185f20de5e1e2a108c1825876
/BOJ/2875.cpp
ecd16c555e0a73e9966f8b01b21b272f87f3939d
[]
no_license
Hsue66/Algo
7b43ec88a0fb90c01aa0bca74863daee4689f416
4c02a71edaf4ac994520f4ab017cb5f27edaffc2
refs/heads/master
2021-07-05T23:23:26.174809
2021-05-18T14:08:00
2021-05-18T14:08:00
43,046,465
0
0
null
null
null
null
UTF-8
C++
false
false
218
cpp
2875.cpp
#include<cstdio> #include<iostream> using namespace std; int N,M,K; int MAX = 0; int main(){ scanf("%d%d%d",&N,&M,&K); while(N>=2 && M>=1 && M+N >= K+3){ N -= 2; M -= 1; MAX += 1; } printf("%d\n",MAX); }
2036ba50114ac5feaefb7c7c9b589cf19c1d528e
091afb7001e86146209397ea362da70ffd63a916
/inst/include/nt2/hyperbolic/include/functions/simd/acoth.hpp
31ade4048bd3646bec37134dccab4a3a2e38a2d0
[]
no_license
RcppCore/RcppNT2
f156b58c08863243f259d1e609c9a7a8cf669990
cd7e548daa2d679b6ccebe19744b9a36f1e9139c
refs/heads/master
2021-01-10T16:15:16.861239
2016-02-02T22:18:25
2016-02-02T22:18:25
50,460,545
15
1
null
2019-11-15T22:08:50
2016-01-26T21:29:34
C++
UTF-8
C++
false
false
239
hpp
acoth.hpp
#ifndef NT2_HYPERBOLIC_INCLUDE_FUNCTIONS_SIMD_ACOTH_HPP_INCLUDED #define NT2_HYPERBOLIC_INCLUDE_FUNCTIONS_SIMD_ACOTH_HPP_INCLUDED #include <nt2/hyperbolic/functions/acoth.hpp> #include <nt2/hyperbolic/functions/generic/acoth.hpp> #endif
d39b221de5fd7dff84fbef3f643e84aae7d15927
1c346f20ec4b13c4d08b8903ac95a836042fd5ad
/src/LEDClient.cpp
42f5a37320fc160ac430ba234c9ce6ac56d37cf6
[]
no_license
pkarasev3/raspberrypi3-remote-gpio
aa8c84ef9652352f2033cbbb4671468062e050ab
dd436a02a92fa71a4e247f0f7e4464d9fc7b3794
refs/heads/master
2021-05-07T16:22:00.039664
2017-10-27T14:28:07
2017-10-27T14:28:07
108,554,449
0
0
null
null
null
null
UTF-8
C++
false
false
1,491
cpp
LEDClient.cpp
#include <boost/asio.hpp> #include <string> #include <iostream> #include <thread> using boost::asio::ip::tcp; struct BuzzClient { boost::asio::io_service io_service; tcp::resolver resolver; tcp::resolver::query query; tcp::socket m_socket; bool bConnected = false; BuzzClient() : resolver(io_service), query(tcp::v4(), "raspi3-PK", "1337"), // Note: change host + port as needed. m_socket(io_service) { tcp::resolver::iterator iterator = resolver.resolve(query); tcp::resolver::iterator end; if(iterator != end) { boost::asio::connect(m_socket, iterator); bConnected = true; } else std::cout << " invalid connection parameters!" << std::endl; } bool isValid() const { return bConnected; } void turnON() { if(!isValid()) return; std::string s = "LED ON\r\n"; boost::asio::write(m_socket, boost::asio::buffer(s.data(), s.size())); } void turnOFF() { if(!isValid()) return; std::string s = "LED OFF\r\n"; boost::asio::write(m_socket, boost::asio::buffer(s.data(), s.size())); } }; int main(int ac, char* av[]) { BuzzClient bc; for(int k=0; k<3; k++) { bc.turnON(); std::this_thread::sleep_for(std::chrono::milliseconds(100)); bc.turnOFF(); std::this_thread::sleep_for(std::chrono::milliseconds(100)); } return 0; }
d8f4793a86f4f29e1358d9d306643f583d90bfc9
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/content/browser/service_worker/service_worker_request_handler.cc
01d4f023c2a91fe9d77b3295f0ea553a53f0cd6e
[ "BSD-3-Clause" ]
permissive
ECS-251-W2020/chromium
79caebf50443f297557d9510620bf8d44a68399a
ac814e85cb870a6b569e184c7a60a70ff3cb19f9
refs/heads/master
2022-08-19T17:42:46.887573
2020-03-18T06:08:44
2020-03-18T06:08:44
248,141,336
7
8
BSD-3-Clause
2022-07-06T20:32:48
2020-03-18T04:52:18
null
UTF-8
C++
false
false
3,366
cc
service_worker_request_handler.cc
// 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. #include "content/browser/service_worker/service_worker_request_handler.h" #include <utility> #include "base/macros.h" #include "content/browser/frame_host/navigation_request_info.h" #include "content/browser/service_worker/service_worker_main_resource_handle.h" #include "content/browser/service_worker/service_worker_navigation_loader_interceptor.h" #include "content/browser/service_worker/service_worker_provider_host.h" #include "content/public/common/origin_util.h" #include "content/public/common/url_constants.h" #include "net/base/url_util.h" #include "services/network/public/cpp/resource_request.h" #include "url/gurl.h" namespace content { namespace { bool SchemeMaySupportRedirectingToHTTPS(const GURL& url) { #if defined(OS_CHROMEOS) return url.SchemeIs(kExternalFileScheme); #else // OS_CHROMEOS return false; #endif // OS_CHROMEOS } } // namespace // static std::unique_ptr<NavigationLoaderInterceptor> ServiceWorkerRequestHandler::CreateForNavigation( const GURL& url, base::WeakPtr<ServiceWorkerMainResourceHandle> navigation_handle, const NavigationRequestInfo& request_info) { DCHECK_CURRENTLY_ON(BrowserThread::UI); // Create the handler even for insecure HTTP since it's used in the // case of redirect to HTTPS. if (!url.SchemeIsHTTPOrHTTPS() && !OriginCanAccessServiceWorkers(url) && !SchemeMaySupportRedirectingToHTTPS(url)) { return nullptr; } ServiceWorkerNavigationLoaderInterceptorParams params; params.resource_type = request_info.is_main_frame ? blink::mojom::ResourceType::kMainFrame : blink::mojom::ResourceType::kSubFrame; params.skip_service_worker = request_info.begin_params->skip_service_worker; params.is_main_frame = request_info.is_main_frame; params.are_ancestors_secure = request_info.are_ancestors_secure; params.frame_tree_node_id = request_info.frame_tree_node_id; return std::make_unique<ServiceWorkerNavigationLoaderInterceptor>( params, std::move(navigation_handle)); } // static std::unique_ptr<NavigationLoaderInterceptor> ServiceWorkerRequestHandler::CreateForWorker( const network::ResourceRequest& resource_request, int process_id, base::WeakPtr<ServiceWorkerMainResourceHandle> navigation_handle) { DCHECK_CURRENTLY_ON(BrowserThread::UI); auto resource_type = static_cast<blink::mojom::ResourceType>(resource_request.resource_type); DCHECK(resource_type == blink::mojom::ResourceType::kWorker || resource_type == blink::mojom::ResourceType::kSharedWorker) << resource_request.resource_type; // Create the handler even for insecure HTTP since it's used in the // case of redirect to HTTPS. if (!resource_request.url.SchemeIsHTTPOrHTTPS() && !OriginCanAccessServiceWorkers(resource_request.url)) { return nullptr; } ServiceWorkerNavigationLoaderInterceptorParams params; params.resource_type = resource_type; params.skip_service_worker = resource_request.skip_service_worker; params.process_id = process_id; return std::make_unique<ServiceWorkerNavigationLoaderInterceptor>( params, std::move(navigation_handle)); } } // namespace content
c5c3a92cb65df4e255214d019ffbcead135d4a25
6aeccfb60568a360d2d143e0271f0def40747d73
/sandbox-tags/start/libs/database/field.hpp
4dc9a1baaacbd4d4fd8fe7d0f88acef887177f77
[]
no_license
ttyang/sandbox
1066b324a13813cb1113beca75cdaf518e952276
e1d6fde18ced644bb63e231829b2fe0664e51fac
refs/heads/trunk
2021-01-19T17:17:47.452557
2013-06-07T14:19:55
2013-06-07T14:19:55
13,488,698
1
3
null
2023-03-20T11:52:19
2013-10-11T03:08:51
C++
UTF-8
C++
false
false
295
hpp
field.hpp
#ifndef BOOST_DATABASE_FIELD_HPP_INCLUDED #define BOOST_DATABASE_FIELD_HPP_INCLUDED #include <boost/variant/variant.hpp> #include <string> namespace boost { namespace db { typedef variant<bool,int,long long,double,std::string> field; } } #endif /* BOOST_DATABASE_FIELD_HPP_INCLUDED */
13bbc554a5fd459f3feb4be508aff91f370fafe9
3efc50ba20499cc9948473ee9ed2ccfce257d79a
/data/code-jam/files/1836486_whiring_1480487_1_extracted_main.cpp
240255e0eb9bbb447d0017dd4f50ac1231914ace
[]
no_license
arthurherbout/crypto_code_detection
7e10ed03238278690d2d9acaa90fab73e52bab86
3c9ff8a4b2e4d341a069956a6259bf9f731adfc0
refs/heads/master
2020-07-29T15:34:31.380731
2019-12-20T13:52:39
2019-12-20T13:52:39
209,857,592
9
4
null
2019-12-20T13:52:42
2019-09-20T18:35:35
C
UTF-8
C++
false
false
1,191
cpp
1836486_whiring_1480487_1_extracted_main.cpp
#include <stdio.h> #include <iostream> using namespace std; int main(){ int loop_num,N,oldN,sum,allsum; int mark[200],check[200]; double ll[200]; cin >> loop_num; for(int i=0;i<loop_num;i++){ sum = 0; cin >> N; oldN = N; for(int j=0;j<oldN;j++){ cin >> mark[j]; sum += mark[j]; // cout << mark[j]; } allsum = 2*sum; double threshold = (double)(allsum)/(double)(oldN); // cout << threshold << endl; for(int j=0;j<oldN;j++){ if(threshold < (double)mark[j]){ N--; allsum -= mark[j]; ll[j] = 0.0; check[j] = 0; // cout << endl; } else{ check[j] = 1; // cout << endl; } } // cout << sum << endl; threshold = (double)(allsum)/(double)N; // cout <<"new" << threshold << endl; for(int j=0;j<oldN;j++){ if(check[j]){ // cout << mark[j] << endl; ll[j] = 100*(threshold - mark[j])/(double)sum; } } cout << "Case #" << (i + 1) << ": "; for(int j=0;j<oldN-1;j++){ // cout << ll[j] <<" "; printf("%10f ",ll[j]); } // cout << ll[oldN-1] << endl; printf("%10f\n",ll[oldN-1]); } }
19cb81ce75efaded621ae47aa6d41ae8493c51ed
bda11204be0b6570fc340d4318e38ddf343579f0
/test/unit/math/prim/fun/lb_transform_test.cpp
3e7f9170cc9cf4907b90162bd873f6e87a361c70
[ "BSD-3-Clause", "GPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bstatcomp/math
bf47bd40bcf23b2d523ea51c7bc9afb34b8aa730
45371f4925d4f45a9ec64ba99ab6afbc695516b7
refs/heads/develop
2021-08-07T21:21:45.273667
2020-10-02T19:47:57
2020-10-02T19:47:57
107,233,452
3
0
BSD-3-Clause
2020-08-27T21:24:50
2017-10-17T07:32:06
C++
UTF-8
C++
false
false
1,253
cpp
lb_transform_test.cpp
#include <stan/math/prim.hpp> #include <test/unit/util.hpp> #include <gtest/gtest.h> #include <limits> TEST(prob_transform, lb) { EXPECT_FLOAT_EQ(exp(-1.0) + 2.0, stan::math::lb_constrain(-1.0, 2.0)); EXPECT_FLOAT_EQ(7.9, stan::math::lb_constrain( 7.9, -std::numeric_limits<double>::infinity())); } TEST(prob_transform, lb_j) { double lp = 15.0; EXPECT_FLOAT_EQ(exp(-1.0) + 2.0, stan::math::lb_constrain(-1.0, 2.0, lp)); EXPECT_FLOAT_EQ(15.0 - 1.0, lp); double lp2 = 8.6; EXPECT_FLOAT_EQ(7.9, stan::math::lb_constrain( 7.9, -std::numeric_limits<double>::infinity(), lp2)); EXPECT_FLOAT_EQ(8.6, lp2); } TEST(prob_transform, lb_f) { EXPECT_FLOAT_EQ(log(3.0 - 2.0), stan::math::lb_free(3.0, 2.0)); EXPECT_FLOAT_EQ( 1.7, stan::math::lb_free(1.7, -std::numeric_limits<double>::infinity())); } TEST(prob_transform, lb_f_exception) { double lb = 2.0; EXPECT_THROW(stan::math::lb_free(lb - 0.01, lb), std::domain_error); } TEST(prob_transform, lb_rt) { double x = -1.0; double xc = stan::math::lb_constrain(x, 2.0); double xcf = stan::math::lb_free(xc, 2.0); EXPECT_FLOAT_EQ(x, xcf); double xcfc = stan::math::lb_constrain(xcf, 2.0); EXPECT_FLOAT_EQ(xc, xcfc); }
bfdb9ade9ffdbaf845309996e0520c1905e50f15
68955a1b25d3cb680b8a03ea1226b940e32ff2a5
/test.cpp
55233bbbce1dec6e17512801e301880525b7d85a
[]
no_license
SamioneX/CPP-Printer
546c782012080d2cc726ce74ec4e361bc325fee4
5241d4d02eb9eb5d4482efd4243e038ae2ba4934
refs/heads/main
2022-12-28T12:24:51.492479
2020-10-19T02:38:00
2020-10-19T02:38:00
304,867,209
0
0
null
null
null
null
UTF-8
C++
false
false
7,371
cpp
test.cpp
#include <vector> #include <set> #include <tuple> #include <array> #include <iostream> #include <string> #if __has_include(<optional>) #include <optional> #endif #if __has_include(<variant>) #include <variant> #endif #if __has_include(<any>) #include <any> #endif #include <sstream> #include "printer.h" struct A {}; #define printer(...) std::cout<< #__VA_ARGS__ << " : "; \ so::write(std::cout, __VA_ARGS__); std::cout << std::endl int main() { std::cout << std::boolalpha; std::cout << "============================= Basic Types =============================\n\n"; // Prints with ostream operator printer(bool{}); printer(int{}); printer("hello"); //string literal const char* cstr = "hello"; printer(cstr); printer(std::string{"world"}); std::cout << "\n============================= Collections =============================\n\n"; // Prints with the iterable overload of write. int arr[5] = {1, 2, 3, 4, 5}; printer(arr); printer(std::initializer_list<int>{5, 6, 7}); printer(std::string{"world"}); printer(std::unordered_map<char, size_t>{{'c', 3}, {'x', 5}}); std::cout << "2D structure:\n"; printer(std::vector<std::vector<int>>{{2, 3}, {4, 5}}); std::cout << "3D structure:\n"; printer(std::vector<std::set<std::vector<int>>>{{{1, 2}, {3, 4}}, {}}); std::cout << "List of tuples:\n"; printer(std::vector<std::pair<double, double>>{{1.0, 1.5}, {3.4, 9.6}}); std::cout << "\n============================= Tuples =============================\n\n"; printer(std::tuple<bool, double, std::string>(false, 4.5, "hello")); printer(std::array<int, 3>{9, -13, 2}); printer(std::pair<size_t, std::vector<char>>{10, {'x', 'b', 'y'}}); #if __cpp_lib_variant std::cout << "\n============================= Variant =============================\n\n"; printer(std::variant<int, double, std::string>("my_variant")); #endif #if __cpp_lib_optional std::cout << "\n============================= Optional =============================\n\n"; printer(std::optional<int>(6)); printer(std::optional<int>{}); #endif #if __cpp_lib_any std::cout << "\n============================= Any =============================\n\n"; printer(std::any{49.7}); // Join a vector of different elements std::vector<std::any> any_vec{9, "apple", std::string{"candle"}, 84.6, 'c', 3738092ull, nullptr}; std::stringstream ss; std::copy(any_vec.begin(), any_vec.end(), so::ostream_iterator_sep<std::any>(ss, ", ")); std::cout << "Joined elems: \"" << ss.str() << "\"\n"; // will fail: std::array<int, 2> has not been added to registry. // The types added to the registry by default are: // char unsigned char bool short unsigned short // int unsigned int long unsigned long long long // unsigned long long float double long double // const char* std::string std::nullptr std::string_view std::cout << "Before adding std::array<int, 2> to registry:\n"; printer(std::any{std::array<int, 2>{3, 4}}); so::add_any_writer<std::array<int, 2>>(); // should work now std::cout << "After adding std::array<int, 2> to registry:\n"; printer(std::any{std::array<int, 2>{3, 4}}); // This gives a compiler error. A is not printable. // Use try_add_any_writer() if unsure if a type is printable. //---> add_any_writer<A>(); so::try_add_any_writer<A>(); // No compiler error but nothing is added; printer(std::any{A{}}); // Note: adding to the registry using add_any_writer and try_add_any_writer is not thread safe. // Define SO_ANY_REGISTRY_STORAGE as thread_local to make the registry thread_local or // Add all types you need to print using only one thread or // Synchronize access to the registry. #endif std::cout << "\n============================= print() =============================\n\n"; using namespace so; // uses global separator(default = " "), prefix(default = ""), // suffix(default = "\n") and stream(default = std::cout) so::print(std::vector<int>{2, 3}, "hello"); // change global separator. This does not affect the internal separator used by the arguments. // Only print's separator is affected. so::sep.val = "--"; so::print(std::vector<int>{2, 3}, "hello", flush=true); // passing a local separator, prefix and suffix. This doesn't affect the global ones. // This is equivalent to: // so::print(1, 'a', "world", 4.5, sep_t{", "}, prefix_t{"**"}, suffix_t{std::string{"**\n"}.data()); so::print(1, 'a', "world", 4.5, sep=", ", prefix="**", suffix=std::string{"**\n"}); // separator remains unchanged so::print(std::vector<int>{2, 3}, "hello"); // reset sep to default so::sep.val = " "; // Change the stream so::print(std::initializer_list<int>{6, 8}, stream=std::cerr); // Note changing the global sep, prefix, suffix and stream is not thread safe. // Define SO_PRINT_STORAGE as thread_local before including "printers.h" to make the // global variables thread_local, synchronize access to it or // avoid changing them altogether in a multi-threaded environment. // All keyword args must come before arguments to be printed. // Keyword args can appear in any order but must not be repeated. // Calling print without any arguments to print simply prints the suffix. // All arguments passed must of course be printable. // --> so::print(54.4, suffix="//\n", 1); //compiler error //--> so::print(A{}); } /* OUTPUT: ============================= Basic Types ============================= bool{} : false int{} : 0 "hello" : hello cstr : hello std::string{"world"} : world ============================= Collections ============================= arr : {1, 2, 3, 4, 5} std::initializer_list<int>{5, 6, 7} : {5, 6, 7} std::string{"world"} : world std::unordered_map<char, size_t>{{'c', 3}, {'x', 5}} : {(c, 3), (x, 5)} 2D structure: std::vector<std::vector<int>>{{2, 3}, {4, 5}} : {{2, 3}, {4, 5}} 3D structure: std::vector<std::set<std::vector<int>>>{{{1, 2}, {3, 4}}, {}} : {{{1, 2}, {3, 4}}, {}} List of tuples: std::vector<std::pair<double, double>>{{1.0, 1.5}, {3.4, 9.6}} : {(1, 1.5), (3.4, 9.6)} ============================= Tuples ============================= std::tuple<bool, double, std::string>(false, 4.5, "hello") : (false, 4.5, hello) std::array<int, 3>{9, -13, 2} : (9, -13, 2) std::pair<size_t, std::vector<char>>{10, {'x', 'b', 'y'}} : (10, {x, b, y}) ============================= Variant ============================= std::variant<int, double, std::string>("my_variant") : my_variant ============================= Optional ============================= std::optional<int>(6) : Some(6) std::optional<int>{} : None ============================= Any ============================= std::any{49.7} : 49.7 Joined elems: "9, apple, candle, 84.6, c, 3738092, nullptr" Before adding std::array<int, 2> to registry: std::any{std::array<int, 2>{3, 4}} : (Unknown Type) After adding std::array<int, 2> to registry: std::any{std::array<int, 2>{3, 4}} : (3, 4) std::any{A{}} : (Unknown Type) ============================= print() ============================= {2, 3} hello {2, 3}--hello **1, a, world, 4.5** {2, 3}--hello {6, 8} */
7c5f7837e8f6c413584cb01e4d52af660d06b999
67d46d972d59e715f67de1b69ee2f6ca802d478d
/AliceLibrary/source/SpriteAnimation/AnimationController.cpp
a663063c708bd9627f92bfdda60632a480f2bf4a
[]
no_license
kaosu7201/AliceGame
b8212d74c9d61cc3cd57c2bc4b50b90f3c437957
fcc05f4860645836e5554644b3b1eb772d0879fa
refs/heads/master
2022-02-23T12:25:56.030451
2019-07-19T08:54:22
2019-07-19T08:54:22
197,704,336
0
0
null
null
null
null
UTF-8
C++
false
false
707
cpp
AnimationController.cpp
#include "../appframe.h" #include "SpriteAnimation.h" AnimationController::AnimationController() { NowFrame = 0; endFrame = 0; SwitchFrame = 0; no = 0; name = ""; AnimationManager::GetManager()->addObject(shared_ptr<AnimationController>(this)); } AnimationController::~AnimationController() { } void AnimationController::update() { Calc(); } void AnimationController::Draw() { if (name != "") { SpriteAnimation::Draw(name, no, pos->x, pos->y); } } void AnimationController::Calc() { int num = AnimPack[name].SplitNum; if (SwitchFrame != 0) { no = NowFrame / SwitchFrame; no %= num; } endFrame = num * SwitchFrame; NowFrame++; if (NowFrame >= endFrame) { NowFrame = 0; } }
4a350e47911a5026df9adc939423966f48dc9883
6d088ec295b33db11e378212d42d40d5a190c54c
/contrib/brl/bbas/bil/Templates/bil_bounded_image_view+double-.cxx
5f90b616b2cf6d83a6820515532efa0a44f85b68
[]
no_license
vxl/vxl
29dffd5011f21a67e14c1bcbd5388fdbbc101b29
594ebed3d5fb6d0930d5758630113e044fee00bc
refs/heads/master
2023-08-31T03:56:24.286486
2023-08-29T17:53:12
2023-08-29T17:53:12
9,819,799
224
126
null
2023-09-14T15:52:32
2013-05-02T18:32:27
C++
UTF-8
C++
false
false
145
cxx
bil_bounded_image_view+double-.cxx
// Instantiation of bil_bounded_image_view<unsigned short> #include <bil/bil_bounded_image_view.hxx> BIL_BOUNDED_IMAGE_VIEW_INSTANTIATE(double);
a74d195912039b091b2d44df848b974361c76642
94fdbfd66b6945dba56f34d1ef26c582dec591f3
/Code/NorthWind/Include/NtErrorHandling.h
2ccecd18acc96ab6741f7490f8592b10b7500bb5
[]
no_license
oraora81/NorthWind
069f8d1c140ae6dd5a61db30c5391f489b2b388d
da56cde3067ad959ff699d5b1d6d4cd63ea4a35c
refs/heads/master
2020-06-02T17:53:21.895066
2018-09-26T15:56:52
2018-09-26T15:56:52
40,947,837
0
0
null
null
null
null
UHC
C++
false
false
314
h
NtErrorHandling.h
#pragma once namespace nt { enum eErrorCode { ERR_SUCCESS = 0, ERR_CRT_START = 10000, ERR_FILE_OPEN_FAIL, ERR_FILE_POINT_OPEN_FAIL, // 파일 포인터 작성 실패. ERR_FILE_SEEK_FAIL, ERR_CRT_END = 19999, }; typedef eErrorCode ERROR_CODE; } // namespace nt #include "NtErrorHandling.inl"
d35beb93344cf7701060e4f4e045fa9060e45b33
57918b8f0558a69f93b28612f7cb1c8851ad90a3
/diablo/UserModel.h
7ff4ea866ead1be892f0219828a8ba72e6555cc7
[]
no_license
brucelevis/diabloraid
db6cf0ad41bbd7189ef9f2a6bb109f710ac0aff9
bcf2f08818a8e63eeff29b747e38e01f03d72635
refs/heads/master
2021-01-02T09:34:12.926381
2013-11-30T10:21:39
2013-11-30T10:21:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
263
h
UserModel.h
// // UserModel.h // diablo // // Created by Kosuke Takami on 13/09/12. // // #ifndef __diablo__UserModel__ #define __diablo__UserModel__ #include <iostream> class UserModel{ UserModel(); ~UserModel(); }; #endif /* defined(__diablo__UserModel__) */
53480e8f9917d587581f66b30faf205d1e418c32
bcf100e9cd795ffdb5b7de2634c003a97fbece7d
/TrustAccount.cpp
10fbabe1e4fc4ad21f14174ca9f825c08322f623
[]
no_license
vladik9/AccountClassManagerMultipleInheritance
7ad6a173c35d29e6c850e31be70f3c9635dbe436
4341efa6810c35ba1175b02788591293313bbd53
refs/heads/main
2023-05-14T19:05:46.068154
2021-06-07T18:04:56
2021-06-07T18:04:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,039
cpp
TrustAccount.cpp
#include "TrustAccount.h" int TrustAccount::max_withdraw_op{3}; TrustAccount::TrustAccount(std::string u_name, double u_balance, double u_interest_rate) : SavingsAccount(u_name, u_balance, u_interest_rate) {} void TrustAccount::deposit(double amount) { if (amount >= 5000) { amount += 50; } SavingsAccount::deposit(amount); } void TrustAccount::withdraw(double amount) { if (max_withdraw_op > 0) { if (amount <= (balance * 0.2)) { SavingsAccount::withdraw(amount); max_withdraw_op--; std::cout << "Amount of: " << amount << " has been withdraw!" << std::endl; } else { std::cout << "Amount of: " << amount << " can not been withdraw is more that 20% from balance" << std::endl; } } else { std::cout << "You reache maximum numbers of transactions,\nyou have: " << max_withdraw_op << " transactions!" << std::endl; } }
7fccc1ffb9dd36ecf06773e9b6a61f6f30266aa0
f5bf73e8ea7950d3cf5cf965ecee01429ad84072
/Linked-List/main.cc
29e1d46395707b4a949976974f437fc24a9af275
[ "MIT" ]
permissive
Meenapintu/Plug-Lib
767ef78f14d9485112d3abeeab993afd4031aefd
ac8cf173c2f5dad4a4ff8ee72a532a7747b184d7
refs/heads/master
2021-10-08T19:10:27.382521
2018-12-16T19:01:47
2018-12-16T19:01:47
56,933,571
0
0
null
null
null
null
UTF-8
C++
false
false
263
cc
main.cc
/* * main.cc * * Copyright 2016 PintuLalM <PintuLalM@DESKTOP-63TR384> */ #include <iostream> #include "include/List.h" using namespace std; int main() { List<int> l = List<int>(); l.insert(l.begin(),5); cout<<l.getsize()<<endl; return 0; }
918c9804ae6479ac1b0660b595c3d046015042b8
dbf8299e42f7de447d34981e7dd00d6d24307034
/src/AssignmentProblem.cpp
4fbd09316d13fac3f1779dffb461568fabba3a05
[]
no_license
SeaSkyThe/Tecnicas-de-projeto-de-algoritimos
842f4b7553269656713c7e80e823519cf76fbb34
9fca47ad98c9ea7c26597c7976ec41a7f6bb2c0d
refs/heads/master
2020-09-01T01:30:38.777664
2019-11-29T03:26:56
2019-11-29T03:26:56
218,843,404
0
0
null
null
null
null
UTF-8
C++
false
false
6,065
cpp
AssignmentProblem.cpp
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <unistd.h> #include <queue> #include "stdc++.h" //Essa linha pode não ser necessaria using namespace std; #define DIM 100 void clearScreen(char* mensagem){ const char *CLEAR_SCREEN_ANSI = "\e[1;1H\e[2J"; char ch; printf("%s", mensagem); scanf("%c",&ch); getchar(); write(STDOUT_FILENO, CLEAR_SCREEN_ANSI, 12); } struct node{ int num_trabalho; int num_pessoa; struct node* pai; int custo; int custo_caminho; bool atribuidos[DIM]; }; struct node* new_node(int pessoa, int trabalho, bool atribuidos[], struct node* pai){ struct node* node = (struct node*)malloc(sizeof(struct node)); for(int i = 0; i < DIM; i++){ node -> atribuidos[i] = atribuidos[i]; } node -> atribuidos[trabalho] = true; node -> pai = pai; node -> num_pessoa = pessoa; node -> num_trabalho = trabalho; return node; } //funcao que calcula o provavel menor custo depois que uma pessoa foi atribuida a um trabalho, ou seja, calcula todos depois dessa atribuição int calcular_custo(int matrizCusto[DIM][DIM], int pessoa, int trabalho, bool atribuidos[], int tamanho){ int custo = 0; //armazenar trabalhos indisponiveis e disponiveis bool disponiveis[DIM] = {true}; //para cada pessoa for(int i = pessoa + 1; i < tamanho; i++){ int min = INT_MAX; //custo minimo int min_indice = -1; //para cada trabalho for(int j = 0; j < tamanho; j++){ //se o trabalho nao foi atribuidos ainda if(!atribuidos[j] && disponiveis[j] && matrizCusto[i][j] < min){ //guarda o numero do trabalho min_indice = j; min = matrizCusto[i][j]; } } //incrementa o custo custo += min; //torna o trabalho utilizado indisponivel disponiveis[min_indice] = false; } return custo; } struct comp{ bool operator()(const struct node* left, const struct node* right)const{ return left -> custo > right -> custo; } }; void print_atribuicoes(struct node* minimo){ if(minimo -> pai == NULL) return; print_atribuicoes(minimo -> pai); printf(" Trabalhador: %d | Tarefa: %d\n", minimo -> num_trabalho, minimo -> num_pessoa); } int encontrar_menor_custo(int matrizCusto[DIM][DIM], int tamanho){ //criando fila de prioridade para armazenar os nós ativos da arvore de busca priority_queue<struct node*, std::vector<struct node*>, comp>fila_prioridade; //inicializando heap com raiz de custo 0 bool atribuidos[DIM] = {false}; struct node* raiz = new_node(-1, -1, atribuidos, NULL); raiz -> custo_caminho = raiz -> custo = 0; raiz -> num_pessoa = -1; fila_prioridade.push(raiz); while(!fila_prioridade.empty()){ //Pega o nó ativo com menor custo estimado struct node* min = fila_prioridade.top(); //O nó que foi pego é removido da lista de nós ativos fila_prioridade.pop(); // i guarda a proxima pessoa int i = min -> num_pessoa + 1; //se todos as pessoas ja receberam trabalho if(i == tamanho){ print_atribuicoes(min); return min -> custo; } //para cada trabalho for(int j = 0; j < tamanho; j++){ //se nao foi atribuido if(!min->atribuidos[j]){ //cria um nó novo struct node* filho = new_node(i, j, min -> atribuidos, min); //custo dos anteriores + o novo nó filho -> custo_caminho = min -> custo_caminho + matrizCusto[i][j]; filho -> custo = filho -> custo_caminho + calcular_custo(matrizCusto, i, j, filho -> atribuidos, tamanho); //insere esse novo nó (filho) na lista de nós ativos fila_prioridade.push(filho); } } } return 0; } int main() { int matriz_custo[4][4] = { {82, 83, 69, 92}, {77, 37, 49, 92}, {11, 69, 5, 86}, { 8, 9, 98, 23} }; printf("\n\nEXEMPLO DE MATRIZ DE TAREFAS: \n\n"); printf(" "); for(int k = 0; k < 4; k++){ printf("Job %d ", k); } printf("\n\n"); for(int i = 0; i < 4; i++){ printf("Pessoa %d ", i); for(int j = 0; j < 4; j++){ printf("%8d", matriz_custo[i][j]); } printf("\n"); } printf("\n\n\n\n"); int tamanho; printf("\n\n"); printf("Qual sera a dimensao da sua matriz de custos? "); scanf("%d", &tamanho); printf("\n\n"); int matriz_usuario[DIM][DIM]; //inicializa matriz for(int l = 0; l < tamanho; l++){ for(int m = 0; m < tamanho; m++){ matriz_usuario[l][m] = 0; } } int temp; for(int i = 0; i < tamanho; i++){ for(int j = 0; j < tamanho; j++){ //printa matriz atual printf(" "); for(int k = 0; k < tamanho; k++) printf("Job %d ", k); printf("\n\n"); for(int l = 0; l < tamanho; l++){ printf("Pessoa %d ", l); for(int m = 0; m < tamanho; m++){ if(matriz_usuario[l][m] == 0){ printf(" "); } else printf("%8d", matriz_usuario[l][m]); } printf("\n"); } printf("\nSeguindo o exemplo, por favor insira um numero na matriz Pessoa X Trabalho\n"); printf("Lembrando: os numeros serao inseridos na matriz sempre a direita, ate o fim da linha: "); scanf("%d", &temp); matriz_usuario[i][j] = temp; printf("\n\n%d %d \n\n", i, j); clearScreen("Aperte enter para ir para a inserção do prox numero..."); } } printf("\n\nMELHOR CUSTO: %d\n", encontrar_menor_custo(matriz_usuario, tamanho)); return 1; }
7e828f17ae4fcef143a65f43e1f8c37a9b3089f1
affffd5291889836e80418ea16e87d4c24ee4446
/ConsoleApplication1/design_pattern/strategy/main.cxx
060d41fbe7404954ae65ac3d59f830b32cf26a46
[]
no_license
lantianmeng/available_source_code
0ceaa4ea105d6bc975b63d8d782c3e5951cb55c5
0c79819d7e58789bfab66c3efdfbf168c062fc6c
refs/heads/master
2023-07-20T00:51:10.721181
2023-07-18T11:00:43
2023-07-18T11:00:43
129,883,497
0
0
null
null
null
null
GB18030
C++
false
false
707
cxx
main.cxx
// strategy.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "context.h" #include <memory> #include <iostream> int _tmain(int argc, _TCHAR* argv[]) { std::shared_ptr<IQuoteStrategy> strategy = std::make_shared<OldCustomQuoteStrategy>(); std::shared_ptr<stratege_context> s_context = std::make_shared<stratege_context>(strategy.get()); std::cout << "折扣价格:" << s_context->GetPrice(100) << std::endl; std::shared_ptr<IQuoteStrategy> strategy_vip = std::make_shared<VIPCustomQuoteStrategy>(); s_context.reset(new stratege_context(strategy_vip.get())); std::cout << "折扣价格:" << s_context->GetPrice(100) << std::endl; system("pause"); return 0; }
77875e9900b473760226cb783dc64596ecb5605c
053fc29ba191431a44d3318816a5a3c4e197d40d
/zapiws/src/ZApiWS_EventHandlers.cpp
e930d2f0a0c05d6cab5f6c695d512d39ba5ea07f
[]
no_license
tamvh/zcloud
db659154c498bd7054e39cf96ca69a0db1ba1e53
dde07b3dc20979b3565c451c3e8609529daf41b9
refs/heads/master
2020-06-19T19:57:04.665436
2017-02-20T16:39:55
2017-02-20T16:39:55
82,252,911
0
1
null
null
null
null
UTF-8
C++
false
false
6,108
cpp
ZApiWS_EventHandlers.cpp
/* * File: ZApiWS.cpp * Author: tamhuy * * Created on October 24, 2015, 3:19 PM */ #include <Poco/Delegate.h> #include <Poco/Util/Application.h> #include <zcommon/ZServiceLocator.h> #include <zcommon/StringUtil.h> #include <zworker/ZWorker.h> #include <zworker/ZDeviceDataUpdatedEvent.h> #include <zworker/ZDeviceDataDeletedEvent.h> #include <zworker/ZDeviceDataCreatedEvent.h> #include <zworker/ZDeviceDataChangeInformationEvent.h> #include <zdevice/ZDevice.h> #include <zdevice/ZDeviceInfo.h> #include "RequestHandlerFactory.h" #include "ServerPacket.h" #include "WebSocketMessage.h" #include "ServerPacket.h" #include "zapiws/ZApiWS.h" using Poco::Util::Application; void ZApiWS::onDeviceToWSDataUpdated(const void* pSender, const ZCloudReceiveMessageEvent& event) { Application& app = Application::instance(); try { std::string msg = event.msg(); Poco::JSON::Object::Ptr result = StringUtil::convertString2Json(msg); std::string userApiKey = result->optValue("userApiKey", std::string()); std::string content = result->optValue("content", std::string()); send_client_list(userApiKey, content); } catch (Poco::Exception &ex) { Application& app = Application::instance(); app.logger().error("ZApiWS::onDeviceToWSDataUpdated. Exception while processing message: %s", ex.displayText()); } app.logger().information("broadcast finish"); } void ZApiWS::onDeviceDataUpdated(const void *pSender, const ZDeviceDataUpdatedEvent &event) { Application& app = Application::instance(); try { app.logger().information("value: %s", event.varialbleValue()); Poco::JSON::Object::Ptr responseData = new Poco::JSON::Object; Poco::JSON::Object::Ptr data = new Poco::JSON::Object; data->set("deviceid", event.device()->info()->deviceId()); data->set("name", event.device()->info()->deviceName()); data->set("group", event.device()->info()->deviceGroup()); data->set("type", event.device()->info()->deviceType()); data->set("apikey", event.device()->info()->apiKey()); data->set("createdAt", static_cast<Poco::Int64> (event.device()->info()->createdAt())); data->set("lastModified", static_cast<Poco::Int64> (event.device()->info()->updatedAt())); data->set("value", event.varialbleValue()); data->set("localTime", event.timeStamp()); data->set("battery", event.battery()); responseData->set("action", "update"); responseData->set("data", data); std::stringstream buffer; Poco::JSON::Stringifier::stringify(responseData, buffer); app.logger().information("data update: " + buffer.str()); std::string userApiKey = event.userApiKey(); send_client_list(userApiKey, buffer.str()); } catch (Poco::Exception &ex) { Application& app = Application::instance(); app.logger().error("ZApiWS::onDeviceDataUpdated. Exception while processing message: %s", ex.displayText()); } app.logger().information("broadcast finish"); } void ZApiWS::onDeviceDataCreated(const void *pSender, const ZDeviceDataCreatedEvent &event) { Poco::JSON::Array::Ptr params = new Poco::JSON::Array; Poco::JSON::Object::Ptr item = new Poco::JSON::Object; item->set("varId", event.varialbleId()); item->set("value", event.varialbleValue()); params->add(item); Poco::JSON::Object::Ptr responseData = new Poco::JSON::Object; Poco::JSON::Object::Ptr data = new Poco::JSON::Object; data->set("deviceid", event.device()->info()->deviceId()); data->set("name", event.device()->info()->deviceName()); data->set("group", event.device()->info()->deviceGroup()); data->set("type", event.device()->info()->deviceType()); data->set("apikey", event.device()->info()->apiKey()); data->set("createdAt", static_cast<Poco::Int64> (event.device()->info()->createdAt())); data->set("lastModified", static_cast<Poco::Int64> (event.device()->info()->updatedAt())); data->set("params", params); responseData->set("action", "create"); responseData->set("data", data); std::stringstream buffer; Poco::JSON::Stringifier::stringify(responseData, buffer); send_client_list(event.device()->info()->apiKey(), buffer.str()); } void ZApiWS::onDeviceDeletedDevice(const void *pSender, const ZDeviceDataDeletedEvent &event) { Poco::JSON::Object::Ptr responseData = new Poco::JSON::Object; Poco::JSON::Object::Ptr data = new Poco::JSON::Object; data->set("deviceid", event.deviceId()); responseData->set("action", "delete"); responseData->set("data", data); std::stringstream buffer; Poco::JSON::Stringifier::stringify(responseData, buffer); send_client_list(event.apiKey(), buffer.str()); } void ZApiWS::onDeviceChangedDeviceInformation(const void *pSender, const ZDeviceDataChangeInformationEvent &event) { Poco::JSON::Array::Ptr params = new Poco::JSON::Array; Poco::JSON::Object::Ptr item = new Poco::JSON::Object; item->set("varId", event.varialbleId()); item->set("value", event.varialbleValue()); params->add(item); Poco::JSON::Object::Ptr responseData = new Poco::JSON::Object; Poco::JSON::Object::Ptr data = new Poco::JSON::Object; data->set("deviceid", event.device()->info()->deviceId()); data->set("name", event.device()->info()->deviceName()); data->set("group", event.device()->info()->deviceGroup()); data->set("type", event.device()->info()->deviceType()); data->set("apikey", event.device()->info()->apiKey()); data->set("createdAt", static_cast<Poco::Int64> (event.device()->info()->createdAt())); data->set("lastModified", static_cast<Poco::Int64> (event.device()->info()->updatedAt())); data->set("params", params); responseData->set("action", "updateinfo"); responseData->set("data", data); std::stringstream buffer; Poco::JSON::Stringifier::stringify(responseData, buffer); send_client_list(event.device()->info()->apiKey(), buffer.str()); }
ff77ff6b7c14e7250be4499a70a8e6ad6879c264
67a036e4708ff3c773d7cb87fa7defa754d3fc76
/game/Map.cpp
157e6a8e25833d493325a9da53961b0a34018075
[]
no_license
tankwei/SDLOpenGL
28f19b7e61fe5adcd4d57bd4ef8b3494dc21a96f
a54ef826e4e217192ffc4419863bb5c3c6f4b199
refs/heads/master
2020-11-25T11:33:13.572813
2019-12-17T16:08:41
2019-12-17T16:08:41
228,638,587
2
0
null
null
null
null
UTF-8
C++
false
false
19,459
cpp
Map.cpp
#include "Map.h" #include <util/filesystem.h> #include <util/stb_image.h> #include <SDL2/SDL.h> #include <util/GameImgLoader.h> #include <sstream> #include <iostream> #include <string> float width = MAP * 6; float height = MAP * 3; float length = MAP * 6; float xx = MAP - width / 2; float yy = MAP / 3 - height / 2; float zz = -MAP - length / 2; float groundVertices[] = { -0.25f, -0.25f, -0.25f, -0.25f, 0.25f, -0.25f, 0.25f, -0.25f, -0.25f, 0.25f, 0.25f, -0.25f, 0.25f, -0.25f, 0.25f, 0.25f, 0.25f, 0.25f, -0.25f, -0.25f, 0.25f, -0.25f, 0.25f, 0.25f, }; float groundVertices_test[] = { -0.75f, 0.35f, -0.25f, 0.05f, -0.50f, 10.85f, 1.0f, 0.35f, -0.25f, 0.15f, -0.50f, 10.85f, -10.05f, -2.650f, 0.0f, 10.15f, -2.650f, 0.0f, -10.05f, -2.450f, 0.0f, 10.15f, -2.450f, 0.0f, -10.05f, -2.250f, 0.0f, 10.15f, -2.250f, 0.0f, -10.05f, -2.050f, 0.0f, 10.15f, -2.050f, 0.0f, -10.05f, -1.850f, 0.0f, 10.15f, -1.850f, 0.0f, -10.05f, -1.650f, 0.0f, 10.15f, -1.650f, 0.0f, -10.05f, -1.450f, 0.0f, 10.15f, -1.450f, 0.0f, -10.05f, -1.250f, 0.0f, 10.15f, -1.250f, 0.0f, -10.05f, -1.050f, -0.125f, 10.15f, -1.050f, -0.125f, -10.05f, -0.850f, -0.25f, 10.15f, -0.850f, -0.25f, -10.05f, -0.650f, -0.5f, 10.15f, -0.650f, -0.5f, -10.05f, -0.450f, -1.0f, 10.15f, -0.450f, -1.0f, -10.05f, -0.250f, -2.0f, 10.15f, -0.250f, -2.0f, -10.05f, -0.050f, -5.0f, 10.15f, -0.050f, -5.0f, -10.05f, -0.050f, 0.0f, 10.15f, -0.050f, 0.0f, -10.05f, 0.20f, -10.0f, 10.15f, 0.20f, -10.0f, -10.05f, 0.20f, -5.0f, 10.15f, 0.20f, -5.0f, -10.05f, 0.20f, -2.5f, 10.15f, 0.20f, -2.5f, -10.05f, 0.20f, 0.0f, 10.15f, 0.20f, 0.0f }; //42 float groundVertices1[] = { -0.75f, 0.35f, -0.25f, 0.05f, -0.50f, 10.85f, 1.0f, 0.35f, -0.25f, 0.15f, -0.50f, 10.85f, -10.05f, -0.050f, -5.0f, 10.15f, -0.050f, -5.0f, -10.05f, -0.050f, 0.0f, 10.15f, -0.050f, 0.0f, -10.05f, 0.20f, -12.5f, 10.15f, 0.20f, -12.5f, -10.05f, 0.20f, -10.0f, 10.15f, 0.20f, -10.0f, -10.05f, 0.20f, -7.5f, 10.15f, 0.20f, -7.5f, -10.05f, 0.20f, -5.0f, 10.15f, 0.20f, -5.0f, -10.05f, 0.20f, -2.5f, 10.15f, 0.20f, -2.5f, -10.05f, 0.20f, 0.0f, 10.15f, 0.20f, 0.0f, -10.05f, 0.20f, 10.0f, 10.15f, 0.20f, 10.0f }; static const GLushort vertex_indices[] = { 0, 1, 2, 2, 1, 3, 2, 3, 4, 4, 3, 5, 4, 5, 6, 6, 5, 7, 6, 7, 0, 0, 7, 1, 6, 0, 2, 2, 4, 6, 7, 5, 3, 7, 3, 1 }; Map::Map() { memset(&this->groundVerticesArray[0], 0, sizeof(this->groundVerticesArray)); memset(&this->treeVertices[0], 0, sizeof(this->treeVertices)); } void Map::Init() { //glGenBuffers(1, &index_buffer); //glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, index_buffer); //glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(vertex_indices), vertex_indices, GL_STATIC_DRAW); char *base_path = SDL_GetBasePath(); this->terrianShader = new Shader(FileSystem::getPath(base_path, "resources/shaderFiles/terrianVertexShader.vs").c_str(), FileSystem::getPath(base_path, "resources/shaderFiles/terrianFragmentShader.fs").c_str()); this->InitTerrain(5); this->InitTree(); } void Map::InitGround() { //-1.5f, 0.35f, -0.25f, //-1.5f, -0.50f, 10.85f int verticeCount = 0; float h_axis_xx_left = -3.75f; float h_axis_yy_left = -0.85f; float h_axis_zz_left = -0.25f; float h_axis_xx_right = -3.75f; float h_axis_yy_right = -0.950f; float h_axis_zz_right = 10.85f; float y_axis_xx_left = -20.05f; float y_axis_yy_left = -2.550f; float y_axis_zz_left = -12.5f; float y_axis_xx_right = 20.15f; float y_axis_yy_right = -2.550f; float y_axis_zz_right = -12.5f; for (int i = 0; i < 40; i++) { this->groundVerticesArray[verticeCount++] = h_axis_xx_left + i * 0.25; this->groundVerticesArray[verticeCount++] = h_axis_yy_left; this->groundVerticesArray[verticeCount++] = h_axis_zz_left; this->groundVerticesArray[verticeCount++] = h_axis_xx_right + i * 0.25; this->groundVerticesArray[verticeCount++] = h_axis_yy_right; this->groundVerticesArray[verticeCount++] = h_axis_zz_right; } for (int j = 0; j < 40; j++) { this->groundVerticesArray[verticeCount++] = y_axis_xx_left; this->groundVerticesArray[verticeCount++] = y_axis_yy_left; this->groundVerticesArray[verticeCount++] = y_axis_zz_left + j * (0.5); this->groundVerticesArray[verticeCount++] = y_axis_xx_right; this->groundVerticesArray[verticeCount++] = y_axis_yy_right; this->groundVerticesArray[verticeCount++] = y_axis_zz_right + j * (0.5); }//groundVertices1; char *base_path = SDL_GetBasePath(); this->groundShader = new Shader(FileSystem::getPath(base_path, "resources/shaderFiles/groundVertexShader.vs").c_str(), FileSystem::getPath(base_path, "resources/shaderFiles/groundFragmentShader.fs").c_str()); glGenVertexArrays(1, &groundVAO); glGenBuffers(1, &groundVBO); glBindVertexArray(groundVAO); glBindBuffer(GL_ARRAY_BUFFER, groundVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(groundVerticesArray), groundVerticesArray, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 0, NULL); glEnableVertexAttribArray(0); } bool Map::CheckCollision(glm::vec3 pos, Man* costar, int costar_num, bool bullet) { return false; } void Map::Render(Camera &camera, glm::mat4 &projection, glm::mat4 &view) { this->DrawSand(camera,projection, view); } void Map::InitTerrain(float h) { char *base_path = SDL_GetBasePath(); this->g_imageData = LoadBit(FileSystem::getPath(base_path, "resources/Terrain1.bmp").c_str()); GameImgLoader gameImgLoader; gameImgLoader.loadTextureData(&map_texture, FileSystem::getPath(base_path, "resources/sand0.bmp").c_str()); int index = 0; int Vertex; for (int z = 0; z < MAP_W; z++) { for (int x = 0; x < MAP_W; x++) { Vertex = z * MAP_W + x; g_terrain[Vertex][0] = float(x) * MAP_SCALE; g_terrain[Vertex][1] = (float)(g_imageData[(z * MAP_W + x) * 3] / 3); g_terrain[Vertex][2] = -float(z) * MAP_SCALE; g_texcoord[Vertex][0] = (float)x; g_texcoord[Vertex][1] = (float)z; g_index[index++] = Vertex; g_index[index++] = Vertex + MAP_W; } } glGenVertexArrays(1, &terrianVAO); glGenBuffers(1, &terrianVBO); glBindVertexArray(terrianVAO); glBindBuffer(GL_ARRAY_BUFFER, terrianVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(g_terrain), g_terrain, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), NULL); glEnableVertexAttribArray(0); glGenBuffers(1, &vbo_terrian_colors); glBindBuffer(GL_ARRAY_BUFFER, vbo_terrian_colors); glBufferData(GL_ARRAY_BUFFER, sizeof(g_texcoord), g_texcoord, GL_STATIC_DRAW); glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(float), NULL); glEnableVertexAttribArray(1); } void Map::InitTree() { char *base_path = SDL_GetBasePath(); GameImgLoader gameImgLoader; gameImgLoader.loadTextureData(&map_Tree_Texture[0], FileSystem::getPath(base_path, "resources/tree/tree5.bmp").c_str()); gameImgLoader.loadTextureData(&map_Tree_Texture[1], FileSystem::getPath(base_path, "resources/tree/tree2.bmp").c_str()); gameImgLoader.loadTextureData(&map_Tree_Texture[2], FileSystem::getPath(base_path, "resources/tree/tree3.bmp").c_str()); gameImgLoader.loadTextureData(&map_Tree_Texture[3], FileSystem::getPath(base_path, "resources/tree/tree4.bmp").c_str()); this->treeShader = new Shader(FileSystem::getPath(base_path, "resources/shaderFiles/treeVertexShader.vs").c_str(), FileSystem::getPath(base_path, "resources/shaderFiles/treeFragmentShader.fs").c_str()); srand(100); //for (int i = 0; i < 1; i++) //{ // float x = RAND_COORD((MAP_W - 1)*MAP_SCALE); // float z = RAND_COORD((MAP_W - 1)*MAP_SCALE); // float size = 4.0f + rand() % 4; // float h = -size / 10; // int cactus = rand() % 4 + 11; // //ShowTree(x, z, size, h, cactus); // //glEnable(GL_BLEND); // //glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // //glEnable(GL_ALPHA_TEST); // //glAlphaFunc(GL_GREATER, 0); // float mat[16]; // //glGetFloatv(GL_MODELVIEW_MATRIX, mat); //https://blog.csdn.net/zulinlv/article/details/89140211 //https://gamedev.stackexchange.com/questions/34944/glgetfloatv-should-it-be-avoided-can-it-be-replaced // //glm::mat4 mv = viewM * trans1; // //float *matArray = glm::value_ptr(mv); // glm::vec3 X(mat[0], mat[4], mat[8]); // glm::vec3 Z(mat[1], mat[5], mat[9]); // //glBindTexture(GL_TEXTURE_2D, g_cactus[cactus]); // glm::vec3 pos(x, 0.0, -z); // pos.y = GetHeight(x, -z) + h + size; // //glBegin(GL_QUADS); // //glTexCoord2f(0.0, 0.0); glVertex3fv((pos + (X + Z)*-h).v);//���µ� // glm::vec3 temp = (pos + (X + Z)*-h); // treeVertices[i] = temp.x; // treeVertices[i + 1] = temp.y; // treeVertices[i + 2] = temp.z; // treeVertices[i + 3] = 0.0; // treeVertices[i + 4] = 0.0; // //glTexCoord2f(1.0, 0.0); glVertex3fv((pos + (X - Z)* h).v);//���µ� // temp = (pos + (X - Z)* h); // treeVertices[i + 5] = temp.x; // treeVertices[i + 6] = temp.y; // treeVertices[i + 7] = temp.z; // treeVertices[i + 8] = 1.0; // treeVertices[i + 9] = 0.0; // //glTexCoord2f(1.0, 1.0); glVertex3fv((pos + (X + Z)* h).v);//���ϵ� // temp = (pos + (X + Z)* h); // treeVertices[i + 10] = temp.x; // treeVertices[i + 11] = temp.y; // treeVertices[i + 12] = temp.z; // treeVertices[i + 13] = 1.0; // treeVertices[i + 14] = 1.0; // //glTexCoord2f(0.0, 1.0); glVertex3fv((pos + (Z - X)* h).v);//���ϵ� // temp = (pos + (Z - X)* h); // treeVertices[i + 15] = temp.x; // treeVertices[i + 16] = temp.y; // treeVertices[i + 17] = temp.z; // treeVertices[i + 18] = 0.0; // treeVertices[i + 19] = 1.0; //} float x = RAND_COORD((MAP_W - 1)*MAP_SCALE); float z = RAND_COORD((MAP_W - 1)*MAP_SCALE); float tree_Vertices[] = { // positions // texture coords 0.5f, 0.5f, 0.0f, 1.0f, 1.0f, // top right 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, // bottom right -0.5f, -0.5f, 0.0f, 0.0f, 0.0f, // bottom left -0.5f, 0.5f, 0.0f, 0.0f, 1.0f // top left /*-0.5f, -0.5f, 0.0f, 0.5f, -0.5f, 0.0f, 0.0f, 0.5f, 0.0f*/ }; unsigned int indices[] = { 0, 1, 3, // first triangle 1, 2, 3 // second triangle }; // store instance data in an array buffer // -------------------------------------- /*glGenBuffers(1, &treeInstanceVBO); glBindBuffer(GL_ARRAY_BUFFER, treeInstanceVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(glm::mat4), &translations[0], GL_STATIC_DRAW); glBindBuffer(GL_ARRAY_BUFFER, 0);*/ glGenVertexArrays(1, &treeVAO); glGenBuffers(1, &treeVBO); glGenBuffers(1, &treeVEO); glBindVertexArray(treeVAO); glBindBuffer(GL_ARRAY_BUFFER, treeVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(tree_Vertices), tree_Vertices, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(float), NULL); glEnableVertexAttribArray(0); glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)(3 * sizeof(float))); glEnableVertexAttribArray(1); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, treeVEO); glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW); //glBindBuffer(GL_ARRAY_BUFFER, treeInstanceVBO); // this attribute comes from a different vertex buffer //glVertexAttribPointer(2, 4, GL_FLOAT, GL_FALSE, sizeof(glm::mat4), (void*)0); //glEnableVertexAttribArray(2); //glBindBuffer(GL_ARRAY_BUFFER, 0); //glVertexAttribDivisor(2, 1); // tell OpenGL this is an instanced vertex attribute. } float Map::GetHeight(float x, float z) { float CameraX = x / MAP_SCALE; float CameraZ = -z / MAP_SCALE; int Col0 = int(CameraX); int Row0 = int(CameraZ); int Col1 = Col0 + 1; int Row1 = Row0 + 1; if (Col1 > MAP_W) Col1 = 0; if (Row1 > MAP_W) Row1 = 0; float h00 = g_terrain[Col0 + Row0 * MAP_W][1]; float h01 = g_terrain[Col1 + Row0 * MAP_W][1]; float h11 = g_terrain[Col1 + Row1 * MAP_W][1]; float h10 = g_terrain[Col0 + Row1 * MAP_W][1]; float tx = CameraX - int(CameraX); float ty = CameraZ - int(CameraZ); float txty = tx * ty; return h00 * (1.0f - ty - tx + txty) + h01 * (tx - txty) + h11 * txty + h10 * (ty - txty); } void Map::DrawSand(Camera &camera,glm::mat4 projection, glm::mat4 view) { this->terrianShader->use(); glBindVertexArray(terrianVAO); glBindTexture(GL_TEXTURE_2D, this->map_texture); //float yyy = GetHeight(20.0f, 20.0); //float yyy_scale = yyy;//3.45f glm::mat4 anim = glm::translate(glm::mat4(1.0f), glm::vec3(65.0f, 0.0f, 0.0f)) * glm::rotate(glm::mat4(1.0f), 1.0f * 141.29f, glm::vec3(0, 0, 1)) * glm::rotate(glm::mat4(1.0f), -1.0f * 0.003f, glm::vec3(1, 0, 0)) * glm::scale(glm::mat4(1.0), glm::vec3(1.0, 1.0, 1.0)); /*glm::translate(glm::mat4(1.0f), glm::vec3(55.0f, 15.0f, 0.0)) * glm::rotate(glm::mat4(1.0f), 1 * 22.0f, glm::vec3(0, 0, 1)) * glm::scale(glm::mat4(1.0), glm::vec3(0.5, 0.5 * 3.0 / 4.0, 0.5));*/ this->terrianShader->setMat4("transform", anim); terrianShader->setMat4("projection",projection); terrianShader->setMat4("view", view); for (int z = 0; z < MAP_W - 1; z++) glDrawElements(GL_TRIANGLE_STRIP, MAP_W * 2, GL_UNSIGNED_INT, &g_index[z*MAP_W * 2]); //https://www.cnblogs.com/yizhen/p/10730500.html //https://blog.csdn.net/augusdi/article/details/19989595 //https://github.com/franjaviersans/MD2-OpenGL-Loader GLSL //http://www.zwqxin.com/archives/opengl/md2-model-format-import-animation.html //https://www.dssz.com/665646.html //https://www.cnblogs.com/sgamerw/p/4108877.html//[��]ѧϰ�ִ�OpenGL //http://ogldev.atspace.co.uk/index.html // https://blog.csdn.net/zju_fish1996/article/details/52450008 //https://blog.csdn.net/theonegis/article/details/50245459 //https://blog.csdn.net/cordova/article/details/53350395 //https://github.com/tomdalling/opengl-series //http://huangwei.pro/2015-05/modern-opengl1/ //https://bbs.csdn.net/topics/392006905 //https://blog.csdn.net/ZJU_fish1996/article/details/51876197 //https://download.csdn.net/download/bselff/7963447 //https://my.oschina.net/gujianhan/blog/166853 //http://blog.chinaunix.net/uid-25411469-id-3145016.html //https://blog.csdn.net/dqmengxiang/article/details/5791740 //https://gameinstitute.qq.com/community/detail/113742 //https://www.cnblogs.com/AnKen/p/8400067.html //https://www.jianshu.com/p/2bed156e3236 ���Ƶ��ε�òhttps://github.com/SquarePants1991/OpenGLESLearn // //https://www.gamedev.net/forums/topic/703949-terrain-mapping-more-earthquake-when-closer-to-ground/?tab=comments#comment-5413297 glBindTexture(GL_TEXTURE_2D, this->map_Tree_Texture[0]); this->treeShader->use(); glBindVertexArray(treeVAO); glm::mat4 model = glm::mat4(1.0); //0.0f, -45.0f, -35.0f model = glm::translate(model, glm::vec3(0.0f, -48.3f, -35.0f)); //model = glm::scale(model, glm::vec3(10.0, 10.0, 1.0)); //treeShader.setMat4("transform", model); glm::mat4 translations[100]; int index = 0; float z_offset = -1.2f; float x_offset = -1.1f; srand(100); //0.0f, -45.0f, -35.0f glm::mat4 viewM = camera.GetViewMatrix(); for (int i = 0; i < 100; i++) { float x_index = RAND_COORD((100 - 1)); float z_index = RAND_COORD((100 - 1)); float xx = 0.0f + x_offset * x_index; float zz = -35.0f + z_offset * z_index; float yy = this->GetHeight(xx, zz); glm::mat4 trans = glm::mat4(1.0); trans = glm::translate(trans, glm::vec3(xx, -45.1f, zz)); trans = glm::scale(trans, glm::vec3(10.0, 10.0, 1.0)); translations[i] = trans; } for (unsigned int i = 0; i < 100; i++) { std::stringstream ss; std::string index; ss << i; index = ss.str(); treeShader->setMat4(("offsets[" + index + "]").c_str(), translations[i]); } this->treeShader->setMat4("projection", projection); treeShader->setMat4("view", view); //glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0); glDrawElementsInstanced(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0, 100); //glDrawArraysInstanced(GL_TRIANGLES, 0, 6, 100); } void Map::drawGround(glm::mat4 projection, glm::mat4 view) { this->groundShader->use(); glBindVertexArray(groundVAO); glDrawArrays(GL_LINES, 0, 480); //glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); //glEnable(GL_LINE_SMOOTH); glm::mat4 trans = glm::mat4(1.0f); trans = glm::translate(trans, glm::vec3(0.0f, 0.0f, -4.0)); this->groundShader->setMat4("transform", trans); groundShader->setMat4("projection", projection); // camera/view transformation //glm::vec3 up = glm::vec3(0.0f, 1.0f, 0.0f); //glm::vec3 cameraRight = glm::normalize(glm::cross(up, cameraPos + cameraFront)); groundShader->setMat4("view", view); } unsigned char* Map::LoadBit(const char *filename) { //https://www.linuxidc.com/Linux/2012-05/61456.htm // /https://blog.csdn.net/songyulong8888/article/details/94001862 //https://www.cnblogs.com/lidabo/p/3326500.html //https://blog.csdn.net/weiaipan1314/article/details/51753288 //https://blog.csdn.net/wangjunchao001/article/details/52798304 //https://bbs.csdn.net/topics/390209790 //https://zhidao.baidu.com/question/240675687911717044.html //http://www.itkeyword.com/doc/1114926412907587021/qt-desktop-shader-compilation-issue FILE *filePtr = nullptr; BITMAPINFOHEADER bmpInfor_Header; BITMAPFILEHEADER bmpFile_Header; unsigned short fileType = 0; unsigned char* ImageData = NULL; unsigned int imageIdx = 0; unsigned char tempRGB; filePtr = fopen(filename, "rb"); if (NULL == filePtr){ return NULL; } fread(&fileType,sizeof(unsigned short),1,filePtr); if(0x4D42 == fileType){ fread(&bmpFile_Header, sizeof(BITMAPFILEHEADER), 1, filePtr); printf("\n***************bmp文件头信息************************\n"); printf("文件大小:%d \n", bmpFile_Header.bfSize); printf("保留字:%d \n", bmpFile_Header.bfReserved1); printf("保留字:%d \n", bmpFile_Header.bfReserved2); printf("位图数据偏移字节数:%d \n", bmpFile_Header.bfOffBits); fread(&bmpInfor_Header, sizeof(BITMAPINFOHEADER), 1, filePtr); //fseek(filePtr, bmpInfor_Header.bfOffBits, SEEK_SET); /*if (bmpInfor_Header.bfType != BITMAP_ID){ fclose(filePtr); return NULL; }*/ int channels = 0; int width = 0; int height = 0; int bmp_biBitCount = bmpInfor_Header.biBitCount; if(8 == bmp_biBitCount){ } else if(24 == bmp_biBitCount){ channels = 3; width = bmpInfor_Header.biWidth; height = bmpInfor_Header.biHeight; ImageData = (unsigned char *)malloc(sizeof(unsigned char *) * width * height); if (nullptr == ImageData){ free(ImageData); fclose(filePtr); filePtr = NULL; return NULL; } fread(ImageData, 1, bmpInfor_Header.biSizeImage, filePtr); if (NULL == ImageData){ fclose(filePtr); return NULL; } for (imageIdx = 0; imageIdx < bmpInfor_Header.biSizeImage; imageIdx += 3){ tempRGB = ImageData[imageIdx]; ImageData[imageIdx] = ImageData[imageIdx + 2]; ImageData[imageIdx + 2] = tempRGB; } } } fclose(filePtr); filePtr = NULL; return ImageData; }
1ca5f6995bf8db018063982b81ba1773cc2b7e92
35e28d7705773eed54345af4440700522c9d1863
/deps/libgdal/gdal/gcore/gdalmultidomainmetadata.cpp
f47eccb31b3bab4e893277862ff1287d5cf0bbc6
[ "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "MIT", "SunPro", "LicenseRef-scancode-info-zip-2005-02", "BSD-3-Clause" ]
permissive
naturalatlas/node-gdal
0ee3447861bf2d1abc48d4fbdbcf15aba5473a27
c83e7858a9ec566cc91d65db74fd07b99789c0f0
refs/heads/master
2023-09-03T00:11:41.576937
2022-03-12T20:41:59
2022-03-12T20:41:59
19,504,824
522
122
Apache-2.0
2022-06-04T20:03:43
2014-05-06T18:02:34
C++
UTF-8
C++
false
false
12,967
cpp
gdalmultidomainmetadata.cpp
/****************************************************************************** * * Project: GDAL Core * Purpose: Implementation of GDALMultiDomainMetadata class. This class * manages metadata items for a variable list of domains. * Author: Frank Warmerdam, warmerdam@pobox.com * ****************************************************************************** * Copyright (c) 2005, Frank Warmerdam <warmerdam@pobox.com> * Copyright (c) 2009-2011, Even Rouault <even dot rouault at mines-paris dot org> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "cpl_port.h" #include "gdal_priv.h" #include <cstring> #include "cpl_conv.h" #include "cpl_error.h" #include "cpl_minixml.h" #include "cpl_string.h" #include "gdal_pam.h" CPL_CVSID("$Id: gdalmultidomainmetadata.cpp ec7b85e6bb8f9737693a31f0bf7166e31e10992e 2018-04-16 00:08:36 +0200 Even Rouault $") //! @cond Doxygen_Suppress /************************************************************************/ /* GDALMultiDomainMetadata() */ /************************************************************************/ GDALMultiDomainMetadata::GDALMultiDomainMetadata() : papszDomainList(nullptr), papoMetadataLists(nullptr) {} /************************************************************************/ /* ~GDALMultiDomainMetadata() */ /************************************************************************/ GDALMultiDomainMetadata::~GDALMultiDomainMetadata() { Clear(); } /************************************************************************/ /* Clear() */ /************************************************************************/ void GDALMultiDomainMetadata::Clear() { const int nDomainCount = CSLCount( papszDomainList ); CSLDestroy( papszDomainList ); papszDomainList = nullptr; for( int i = 0; i < nDomainCount; i++ ) { delete papoMetadataLists[i]; } CPLFree( papoMetadataLists ); papoMetadataLists = nullptr; } /************************************************************************/ /* GetMetadata() */ /************************************************************************/ char **GDALMultiDomainMetadata::GetMetadata( const char *pszDomain ) { if( pszDomain == nullptr ) pszDomain = ""; const int iDomain = CSLFindString( papszDomainList, pszDomain ); if( iDomain == -1 ) return nullptr; return papoMetadataLists[iDomain]->List(); } /************************************************************************/ /* SetMetadata() */ /************************************************************************/ CPLErr GDALMultiDomainMetadata::SetMetadata( char **papszMetadata, const char *pszDomain ) { if( pszDomain == nullptr ) pszDomain = ""; int iDomain = CSLFindString( papszDomainList, pszDomain ); if( iDomain == -1 ) { papszDomainList = CSLAddString( papszDomainList, pszDomain ); const int nDomainCount = CSLCount( papszDomainList ); papoMetadataLists = static_cast<CPLStringList **>( CPLRealloc( papoMetadataLists, sizeof(void*)*(nDomainCount+1) )); papoMetadataLists[nDomainCount] = nullptr; papoMetadataLists[nDomainCount-1] = new CPLStringList(); iDomain = nDomainCount-1; } papoMetadataLists[iDomain]->Assign( CSLDuplicate( papszMetadata ) ); // we want to mark name/value pair domains as being sorted for fast // access. if( !STARTS_WITH_CI(pszDomain, "xml:") && !EQUAL(pszDomain, "SUBDATASETS") ) papoMetadataLists[iDomain]->Sort(); return CE_None; } /************************************************************************/ /* GetMetadataItem() */ /************************************************************************/ const char *GDALMultiDomainMetadata::GetMetadataItem( const char *pszName, const char *pszDomain ) { if( pszDomain == nullptr ) pszDomain = ""; const int iDomain = CSLFindString( papszDomainList, pszDomain ); if( iDomain == -1 ) return nullptr; return papoMetadataLists[iDomain]->FetchNameValue( pszName ); } /************************************************************************/ /* SetMetadataItem() */ /************************************************************************/ CPLErr GDALMultiDomainMetadata::SetMetadataItem( const char *pszName, const char *pszValue, const char *pszDomain ) { if( pszDomain == nullptr ) pszDomain = ""; /* -------------------------------------------------------------------- */ /* Create the domain if it does not already exist. */ /* -------------------------------------------------------------------- */ int iDomain = CSLFindString( papszDomainList, pszDomain ); if( iDomain == -1 ) { SetMetadata( nullptr, pszDomain ); iDomain = CSLFindString( papszDomainList, pszDomain ); } /* -------------------------------------------------------------------- */ /* Set the value in the domain list. */ /* -------------------------------------------------------------------- */ papoMetadataLists[iDomain]->SetNameValue( pszName, pszValue ); return CE_None; } /************************************************************************/ /* XMLInit() */ /* */ /* This method should be invoked on the parent of the */ /* <Metadata> elements. */ /************************************************************************/ int GDALMultiDomainMetadata::XMLInit( CPLXMLNode *psTree, int /* bMerge */ ) { CPLXMLNode *psMetadata = nullptr; /* ==================================================================== */ /* Process all <Metadata> elements, each for one domain. */ /* ==================================================================== */ for( psMetadata = psTree->psChild; psMetadata != nullptr; psMetadata = psMetadata->psNext ) { if( psMetadata->eType != CXT_Element || !EQUAL(psMetadata->pszValue,"Metadata") ) continue; const char *pszDomain = CPLGetXMLValue( psMetadata, "domain", "" ); const char *pszFormat = CPLGetXMLValue( psMetadata, "format", "" ); // Make sure we have a CPLStringList for this domain, // without wiping out an existing one. if( GetMetadata( pszDomain ) == nullptr ) SetMetadata( nullptr, pszDomain ); const int iDomain = CSLFindString( papszDomainList, pszDomain ); CPLAssert( iDomain != -1 ); CPLStringList *poMDList = papoMetadataLists[iDomain]; /* -------------------------------------------------------------------- */ /* XML format subdocuments. */ /* -------------------------------------------------------------------- */ if( EQUAL(pszFormat,"xml") ) { // Find first non-attribute child of current element. CPLXMLNode *psSubDoc = psMetadata->psChild; while( psSubDoc != nullptr && psSubDoc->eType == CXT_Attribute ) psSubDoc = psSubDoc->psNext; char *pszDoc = CPLSerializeXMLTree( psSubDoc ); poMDList->Clear(); poMDList->AddStringDirectly( pszDoc ); } /* -------------------------------------------------------------------- */ /* Name value format. */ /* <MDI key="...">value_Text</MDI> */ /* -------------------------------------------------------------------- */ else { for( CPLXMLNode *psMDI = psMetadata->psChild; psMDI != nullptr; psMDI = psMDI->psNext ) { if( !EQUAL(psMDI->pszValue,"MDI") || psMDI->eType != CXT_Element || psMDI->psChild == nullptr || psMDI->psChild->psNext == nullptr || psMDI->psChild->eType != CXT_Attribute || psMDI->psChild->psChild == nullptr ) continue; char* pszName = psMDI->psChild->psChild->pszValue; char* pszValue = psMDI->psChild->psNext->pszValue; if( pszName != nullptr && pszValue != nullptr ) poMDList->SetNameValue( pszName, pszValue ); } } } return CSLCount(papszDomainList) != 0; } /************************************************************************/ /* Serialize() */ /************************************************************************/ CPLXMLNode *GDALMultiDomainMetadata::Serialize() { CPLXMLNode *psFirst = nullptr; for( int iDomain = 0; papszDomainList != nullptr && papszDomainList[iDomain] != nullptr; iDomain++ ) { char **papszMD = papoMetadataLists[iDomain]->List(); // Do not serialize empty domains. if( papszMD == nullptr || papszMD[0] == nullptr ) continue; CPLXMLNode *psMD = CPLCreateXMLNode( nullptr, CXT_Element, "Metadata" ); if( strlen( papszDomainList[iDomain] ) > 0 ) CPLCreateXMLNode( CPLCreateXMLNode( psMD, CXT_Attribute, "domain" ), CXT_Text, papszDomainList[iDomain] ); bool bFormatXML = false; if( STARTS_WITH_CI(papszDomainList[iDomain], "xml:") && CSLCount(papszMD) == 1 ) { CPLXMLNode *psValueAsXML = CPLParseXMLString( papszMD[0] ); if( psValueAsXML != nullptr ) { bFormatXML = true; CPLCreateXMLNode( CPLCreateXMLNode( psMD, CXT_Attribute, "format" ), CXT_Text, "xml" ); CPLAddXMLChild( psMD, psValueAsXML ); } } if( !bFormatXML ) { CPLXMLNode* psLastChild = nullptr; // To go after domain attribute. if( psMD->psChild != nullptr ) { psLastChild = psMD->psChild; while( psLastChild->psNext != nullptr ) psLastChild = psLastChild->psNext; } for( int i = 0; papszMD != nullptr && papszMD[i] != nullptr; i++ ) { char *pszKey = nullptr; const char *pszRawValue = CPLParseNameValue( papszMD[i], &pszKey ); CPLXMLNode *psMDI = CPLCreateXMLNode( nullptr, CXT_Element, "MDI" ); if( psLastChild == nullptr ) psMD->psChild = psMDI; else psLastChild->psNext = psMDI; psLastChild = psMDI; CPLSetXMLValue( psMDI, "#key", pszKey ); CPLCreateXMLNode( psMDI, CXT_Text, pszRawValue ); CPLFree( pszKey ); } } if( psFirst == nullptr ) psFirst = psMD; else CPLAddXMLSibling( psFirst, psMD ); } return psFirst; } //! @endcond
5d5ec8fc90bab0f93a0202accb24cf73b61b76ef
2637af7d683984d521c3c6284b2d564eade6151d
/Math/C++/384-Shuffle-an-Array.cpp
25f4c04317a5f5703c720c7206cc64e8874933ec
[]
no_license
Atom-Heart/Leetcode
528d1904f887e9a136d22c2bef7b2c40ecf704a5
803d31fa04293722f31ffe688d5cf3794b505440
refs/heads/master
2023-03-09T02:58:31.168628
2021-03-04T02:03:11
2021-03-04T02:03:11
285,464,784
1
0
null
null
null
null
UTF-8
C++
false
false
916
cpp
384-Shuffle-an-Array.cpp
/*洗牌算法:第一个位置可以从[1, n]个数里选一个,第二个位置从[2, n]个数里选一个,.......*/ /*具体做法就是遍历每一个位置,然后和大于等于当前位置之后的一个位置上的数交换*/ /**/ class Solution { public: Solution(vector<int>& nums) { a = nums; } /** Resets the array to its original configuration and return it. */ vector<int> reset() { return a; } /** Returns a random shuffling of the array. */ vector<int> shuffle() { vector<int> b = a; for(int i = 0; i < b.size(); i++){ swap(b[i], b[i + random() % (b.size() - i)]); } return b; } vector<int> a; }; /** * Your Solution object will be instantiated and called as such: * Solution* obj = new Solution(nums); * vector<int> param_1 = obj->reset(); * vector<int> param_2 = obj->shuffle(); */
854d70f5d41db20ec4b32f5c355b306975a5ea57
a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e
/SteadyState_Rectangular_0_dt2t10000/processor9/2000/p
89f812c90f228363efd9e1a8358ce6a54ade7f81
[]
no_license
jhargun/FluidIP
4c3f6d9a87ed8ce24ed692a9bf939a9ca04222f6
d6e0f20c1f5e1f86c160497be9d632e6d17abbf7
refs/heads/master
2022-08-26T02:34:26.327956
2020-05-26T22:33:29
2020-05-26T22:33:29
266,886,503
0
0
null
null
null
null
UTF-8
C++
false
false
534,061
p
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "2000"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 33733 ( -5.1351772e+29 -5.3938529e+29 -5.1283202e+29 -5.2384567e+29 -5.2323044e+29 -4.8372848e+29 -5.0665199e+29 -5.0653603e+29 -5.2548658e+29 -5.0775417e+29 -5.2348872e+29 -5.3869678e+29 -5.4746274e+29 -5.4822361e+29 -5.3970828e+29 -5.0638083e+29 -4.8281957e+29 -5.0657453e+29 -5.2385046e+29 -5.4010312e+29 -5.4017992e+29 -5.319904e+29 -5.3067118e+29 -5.2344429e+29 -5.2186108e+29 -4.7158696e+29 -4.9063673e+29 -4.9120982e+29 -4.7362039e+29 -5.0622195e+29 -5.1534501e+29 -5.0491136e+29 -5.1376024e+29 -5.272603e+29 -5.2875666e+29 -5.090182e+29 -5.0855108e+29 -5.3338233e+29 -5.2481268e+29 -5.0726811e+29 -4.9105258e+29 -5.1655133e+29 -4.7133085e+29 -5.4302239e+29 -5.3054367e+29 -5.2155152e+29 -5.2303116e+29 -5.3175755e+29 -5.4172473e+29 -5.5055661e+29 -5.4362901e+29 -5.1322276e+29 -5.0422086e+29 -4.9018435e+29 -5.1470893e+29 -5.0514769e+29 -4.7109805e+29 -4.7088707e+29 -4.9027466e+29 -5.1552191e+29 -5.0595863e+29 -5.1589078e+29 -5.0657402e+29 -5.2368281e+29 -5.3224125e+29 -5.3247638e+29 -5.2400111e+29 -5.4538507e+29 -5.4134038e+29 -5.4152024e+29 -5.4537157e+29 -5.4140167e+29 -5.4510918e+29 -5.4109857e+29 -5.331386e+29 -5.3207189e+29 -5.3700839e+29 -5.3618317e+29 -5.2947345e+29 -5.2562607e+29 -5.2406786e+29 -5.2821719e+29 -4.481208e+29 -4.6731409e+29 -4.8438435e+29 -4.9689776e+29 -4.9626875e+29 -4.8491642e+29 -5.0900161e+29 -5.0696711e+29 -5.1381621e+29 -5.1174692e+29 -5.1784591e+29 -5.2185566e+29 -5.1581692e+29 -5.2015748e+29 -5.3070669e+29 -5.4927082e+29 -5.4997815e+29 -5.4855175e+29 -5.297759e+29 -5.0966096e+29 -5.0941169e+29 -5.3677375e+29 -5.3528566e+29 -5.2817442e+29 -5.2676863e+29 -5.3873075e+29 -5.3781523e+29 -5.2969119e+29 -5.2890224e+29 -4.9026551e+29 -5.2055002e+29 -5.0957279e+29 -5.0927174e+29 -5.1995276e+29 -5.1948277e+29 -5.0894208e+29 -5.0848319e+29 -4.9065349e+29 -5.1829039e+29 -4.6874496e+29 -4.6989599e+29 -5.3403741e+29 -5.3788543e+29 -5.3038306e+29 -5.2652762e+29 -5.1482563e+29 -5.0991687e+29 -4.9755086e+29 -4.8458689e+29 -5.1879166e+29 -5.2275334e+29 -5.0767982e+29 -5.2545365e+29 -5.4681792e+29 -5.3330369e+29 -5.2423177e+29 -5.2685894e+29 -5.353643e+29 -5.4418004e+29 -5.5325455e+29 -5.4712135e+29 -5.4391213e+29 -5.4785213e+29 -5.1542711e+29 -5.0575005e+29 -4.9569323e+29 -4.8473263e+29 -4.8386744e+29 -4.9586645e+29 -5.1768428e+29 -5.0760524e+29 -4.6738186e+29 -4.465447e+29 -4.6618078e+29 -4.9628397e+29 -4.8355568e+29 -4.8405686e+29 -4.9692359e+29 -5.2086946e+29 -5.1611005e+29 -5.1769632e+29 -5.2203787e+29 -5.1146332e+29 -5.0631339e+29 -5.1314684e+29 -5.0783514e+29 -5.1851605e+29 -5.1871067e+29 -5.2267467e+29 -5.2266046e+29 -5.0892385e+29 -5.1414081e+29 -5.0958505e+29 -5.1456725e+29 -5.2500455e+29 -5.2935097e+29 -5.3007836e+29 -5.260228e+29 -5.3748701e+29 -5.3328894e+29 -5.3382287e+29 -5.3778254e+29 -5.3781653e+29 -5.3397938e+29 -5.3753709e+29 -5.3372612e+29 -5.3034899e+29 -5.3013169e+29 -5.2650002e+29 -5.2635275e+29 -5.4266912e+29 -5.445619e+29 -5.4438198e+29 -5.4255711e+29 -5.4612963e+29 -5.4829722e+29 -5.46362e+29 -5.4799954e+29 -5.4223612e+29 -5.4400494e+29 -5.4189438e+29 -5.4361296e+29 -5.4531287e+29 -5.457394e+29 -5.476016e+29 -5.4717017e+29 -5.4512381e+29 -5.4170883e+29 -5.4153792e+29 -5.4328591e+29 -5.4341714e+29 -5.3430461e+29 -5.3602532e+29 -5.3549183e+29 -5.3369689e+29 -5.3913459e+29 -5.3953808e+29 -5.3773462e+29 -5.372306e+29 -5.3090186e+29 -5.3263136e+29 -5.3014409e+29 -5.3197867e+29 -5.2754934e+29 -5.2660382e+29 -5.284259e+29 -5.2924571e+29 -4.4398464e+29 -4.6496809e+29 -4.8353725e+29 -4.9549766e+29 -5.0343665e+29 -4.9485005e+29 -5.0198103e+29 -5.1284503e+29 -5.1543734e+29 -5.1339152e+29 -5.1074515e+29 -5.174406e+29 -5.1923893e+29 -5.1753204e+29 -5.1546351e+29 -5.2092159e+29 -5.2252013e+29 -5.2120468e+29 -5.1937607e+29 -5.2584609e+29 -5.241123e+29 -5.2291712e+29 -5.2481648e+29 -5.4094152e+29 -5.3122395e+29 -5.3070247e+29 -5.4030996e+29 -5.4942522e+29 -5.4977529e+29 -5.540486e+29 -5.53658e+29 -5.5035344e+29 -5.5001836e+29 -5.5468282e+29 -5.5434347e+29 -5.4866007e+29 -5.4903158e+29 -5.5320051e+29 -5.3981751e+29 -5.4814304e+29 -5.4838439e+29 -5.3935967e+29 -5.3001976e+29 -5.3039415e+29 -5.2153662e+29 -5.099814e+29 -5.0969962e+29 -4.8963599e+29 -5.2115723e+29 -4.8995674e+29 -5.2099669e+29 -5.0966646e+29 -5.0981517e+29 -5.2077165e+29 -4.6774818e+29 -4.6696223e+29 -5.4117711e+29 -5.4192066e+29 -5.3749699e+29 -5.3819448e+29 -5.3918583e+29 -5.4036634e+29 -5.3669521e+29 -5.3542447e+29 -5.3034734e+29 -5.309865e+29 -5.3464801e+29 -5.3399196e+29 -5.2818531e+29 -5.2954185e+29 -5.3318926e+29 -5.3187824e+29 -5.4345372e+29 -5.4401438e+29 -5.4785752e+29 -5.401406e+29 -5.3959131e+29 -5.4295762e+29 -5.4245134e+29 -5.3866588e+29 -5.3912261e+29 -5.3260417e+29 -5.3214109e+29 -5.3645465e+29 -5.3593529e+29 -5.3139984e+29 -5.3176864e+29 -5.3549441e+29 -5.3507389e+29 -4.8276768e+29 -4.9784263e+29 -4.9770189e+29 -4.8260174e+29 -5.2393969e+29 -5.2430246e+29 -5.2863743e+29 -5.2823734e+29 -5.1336835e+29 -5.1291822e+29 -5.1958141e+29 -5.1921082e+29 -5.1279276e+29 -5.1891003e+29 -5.1277492e+29 -5.1870387e+29 -5.2785414e+29 -5.2349006e+29 -5.2751976e+29 -5.2320772e+29 -5.2255928e+29 -5.2303693e+29 -5.2663489e+29 -5.2720713e+29 -5.1218218e+29 -5.1252616e+29 -5.1848974e+29 -5.1807109e+29 -4.9771704e+29 -5.1137792e+29 -5.1191659e+29 -5.1755496e+29 -5.1650913e+29 -4.979319e+29 -4.839755e+29 -4.8300478e+29 -5.2056939e+29 -5.2183815e+29 -5.2450255e+29 -5.2585555e+29 -4.633463e+29 -5.3480039e+29 -5.365254e+29 -5.3822016e+29 -5.4004609e+29 -5.331495e+29 -5.3142977e+29 -5.298007e+29 -5.281047e+29 -5.1979932e+29 -5.1799796e+29 -5.0409527e+29 -5.1594965e+29 -5.1330193e+29 -4.9583506e+29 -5.2145268e+29 -5.2308788e+29 -5.2469577e+29 -5.2642885e+29 -4.7198931e+29 -4.9007625e+29 -4.8976127e+29 -4.699208e+29 -5.0882952e+29 -5.2802296e+29 -5.5006224e+29 -5.5604563e+29 -5.4662064e+29 -5.3547009e+29 -5.2607506e+29 -5.3221761e+29 -5.2987377e+29 -5.2804441e+29 -5.3868227e+29 -5.3605912e+29 -5.4007764e+29 -5.5873407e+29 -5.4823425e+29 -5.5013636e+29 -5.4605424e+29 -5.4999819e+29 -5.5220764e+29 -5.4601821e+29 -5.4417328e+29 -5.478004e+29 -5.4970704e+29 -5.1680696e+29 -5.0650768e+29 -4.9626613e+29 -4.8439649e+29 -4.8363118e+29 -4.9677194e+29 -5.2006631e+29 -5.1883098e+29 -5.2377112e+29 -5.0900222e+29 -5.1379891e+29 -5.0836778e+29 -4.6515529e+29 -4.4187612e+29 -4.6348231e+29 -4.8278162e+29 -4.8302515e+29 -4.9423523e+29 -5.0116632e+29 -5.0221562e+29 -4.9440369e+29 -4.9480655e+29 -5.0303699e+29 -5.0374001e+29 -4.9550915e+29 -5.1902735e+29 -5.214208e+29 -5.2269258e+29 -5.2041096e+29 -5.2560945e+29 -5.2348939e+29 -5.2462406e+29 -5.2653967e+29 -5.1629182e+29 -5.1076943e+29 -5.2117967e+29 -5.2323755e+29 -5.2352977e+29 -5.217782e+29 -5.2352582e+29 -5.2325283e+29 -5.219567e+29 -5.2175087e+29 -5.2511257e+29 -5.2695393e+29 -5.2690751e+29 -5.2518042e+29 -5.2505445e+29 -5.2671524e+29 -5.2643792e+29 -5.2475705e+29 -5.1359481e+29 -5.1049083e+29 -5.1230955e+29 -5.1532701e+29 -5.1873098e+29 -5.1611599e+29 -5.1766584e+29 -5.1978967e+29 -5.131558e+29 -5.1604905e+29 -5.1352083e+29 -5.1619762e+29 -5.1826196e+29 -5.2016711e+29 -5.2007231e+29 -5.1826348e+29 -5.3131593e+29 -5.3360193e+29 -5.3324071e+29 -5.3184704e+29 -5.2952636e+29 -5.3016851e+29 -5.2758793e+29 -5.2842863e+29 -5.3506781e+29 -5.3694951e+29 -5.3535055e+29 -5.371003e+29 -5.3880034e+29 -5.407935e+29 -5.4081683e+29 -5.3887088e+29 -5.3875073e+29 -5.4059049e+29 -5.4022535e+29 -5.3850383e+29 -5.3539531e+29 -5.3705374e+29 -5.3686344e+29 -5.3520293e+29 -5.4004639e+29 -5.3832343e+29 -5.3986082e+29 -5.3810711e+29 -5.3668536e+29 -5.3500902e+29 -5.3643739e+29 -5.3474896e+29 -5.3204575e+29 -5.3189461e+29 -5.3372751e+29 -5.3355369e+29 -5.3167845e+29 -5.3138973e+29 -5.3308869e+29 -5.3335253e+29 -5.2878277e+29 -5.3044869e+29 -5.2867039e+29 -5.302853e+29 -5.3005791e+29 -5.2840606e+29 -5.2976088e+29 -5.2811216e+29 -5.4576156e+29 -5.4607756e+29 -5.4521462e+29 -5.4504299e+29 -5.4439389e+29 -5.4338845e+29 -5.4310474e+29 -5.441851e+29 -5.4654904e+29 -5.4690434e+29 -5.4777816e+29 -5.4740302e+29 -5.4867999e+29 -5.4964441e+29 -5.4924293e+29 -5.482898e+29 -5.4366315e+29 -5.4281628e+29 -5.4241156e+29 -5.4324376e+29 -5.4497413e+29 -5.4539909e+29 -5.4409788e+29 -5.4456445e+29 -5.4216579e+29 -5.4299848e+29 -5.4281718e+29 -5.4199179e+29 -5.445099e+29 -5.4470254e+29 -5.4362994e+29 -5.4382106e+29 -5.4554787e+29 -5.4644442e+29 -5.4625405e+29 -5.4535802e+29 -5.4581542e+29 -5.4621062e+29 -5.4706822e+29 -5.466979e+29 -5.4757745e+29 -5.4794543e+29 -5.4889399e+29 -5.4852403e+29 -5.4828164e+29 -5.4733229e+29 -5.4714587e+29 -5.480929e+29 -5.4526978e+29 -5.4616795e+29 -5.4613691e+29 -5.4523427e+29 -5.4189981e+29 -5.4272287e+29 -5.4265851e+29 -5.418376e+29 -5.4180986e+29 -5.4262931e+29 -5.4249151e+29 -5.4170226e+29 -5.4444945e+29 -5.444053e+29 -5.4332507e+29 -5.4346375e+29 -5.4436813e+29 -5.4441884e+29 -5.4347705e+29 -5.435363e+29 -5.3545907e+29 -5.3709789e+29 -5.4043113e+29 -5.3876397e+29 -5.4282784e+29 -5.4207141e+29 -5.4468112e+29 -5.3221538e+29 -5.3383168e+29 -5.2912411e+29 -5.3064954e+29 -4.4111988e+29 -4.8146711e+29 -4.8269056e+29 -4.9662721e+29 -5.045882e+29 -5.0938473e+29 -5.0771607e+29 -5.0340213e+29 -5.1630927e+29 -5.1883071e+29 -5.2058556e+29 -5.2198762e+29 -5.2332099e+29 -5.2464028e+29 -5.2759457e+29 -5.2606291e+29 -5.5065759e+29 -5.4168068e+29 -5.4201458e+29 -5.4622131e+29 -5.4588454e+29 -5.381017e+29 -5.3405868e+29 -5.3373476e+29 -5.3775864e+29 -5.3328901e+29 -5.3347382e+29 -5.3749006e+29 -5.3730208e+29 -5.4564887e+29 -5.4139231e+29 -5.4116307e+29 -5.4534722e+29 -5.5152763e+29 -5.5128331e+29 -5.4919114e+29 -5.4941184e+29 -5.5185352e+29 -5.5169984e+29 -5.4958585e+29 -5.4974509e+29 -5.5387866e+29 -5.5604759e+29 -5.53711e+29 -5.5584781e+29 -5.5352883e+29 -5.5565377e+29 -5.5328866e+29 -5.5541424e+29 -5.5238389e+29 -5.5223417e+29 -5.5022882e+29 -5.5005713e+29 -5.5208916e+29 -5.5196706e+29 -5.4992098e+29 -5.4982706e+29 -5.544471e+29 -5.5663488e+29 -5.5430893e+29 -5.5649851e+29 -5.5416047e+29 -5.5634821e+29 -5.5402275e+29 -5.5620041e+29 -5.5057728e+29 -5.5042922e+29 -5.4474668e+29 -5.4844848e+29 -5.4856615e+29 -5.5102858e+29 -5.5076964e+29 -5.450361e+29 -5.4872348e+29 -5.4896021e+29 -5.5302474e+29 -5.5514848e+29 -5.5274184e+29 -5.4092806e+29 -5.4074447e+29 -5.5005779e+29 -5.4992846e+29 -5.4438514e+29 -5.4804466e+29 -5.4815749e+29 -5.5030298e+29 -5.5017562e+29 -5.4457315e+29 -5.4824069e+29 -5.4834729e+29 -5.4064699e+29 -5.4049133e+29 -5.3690118e+29 -5.3290415e+29 -5.3281752e+29 -5.3673691e+29 -5.3712129e+29 -5.3316066e+29 -5.3299545e+29 -5.3695698e+29 -5.2988308e+29 -5.2518647e+29 -5.2497632e+29 -5.2956572e+29 -4.9743393e+29 -5.1315903e+29 -5.1377034e+29 -5.2023975e+29 -5.1994559e+29 -5.1975374e+29 -5.1302939e+29 -5.1313992e+29 -5.1961743e+29 -4.9719865e+29 -4.8139865e+29 -4.8112513e+29 -5.2928176e+29 -5.2463299e+29 -5.2448741e+29 -5.2912796e+29 -4.9735869e+29 -4.9786177e+29 -4.8145583e+29 -4.8237703e+29 -5.2906843e+29 -5.2446539e+29 -5.2432792e+29 -5.2887737e+29 -5.1315653e+29 -5.1960488e+29 -5.1311034e+29 -5.1953368e+29 -5.1325963e+29 -5.1358771e+29 -5.1972343e+29 -5.1959802e+29 -5.2429472e+29 -5.2435842e+29 -5.2877734e+29 -5.2880052e+29 -4.620255e+29 -4.6101202e+29 -5.43398e+29 -5.4178156e+29 -5.4140486e+29 -5.4301213e+29 -5.4406822e+29 -5.4242146e+29 -5.4210753e+29 -5.4373384e+29 -5.3827254e+29 -5.3861799e+29 -5.4022016e+29 -5.39856e+29 -5.3892666e+29 -5.3922045e+29 -5.4083678e+29 -5.4054026e+29 -5.4143908e+29 -5.3976941e+29 -5.3899693e+29 -5.4074965e+29 -5.4261265e+29 -5.4101607e+29 -5.4041234e+29 -5.4203765e+29 -5.3947119e+29 -5.3787518e+29 -5.372192e+29 -5.3883773e+29 -5.3563793e+29 -5.3650937e+29 -5.3816043e+29 -5.3733922e+29 -5.3205156e+29 -5.3237593e+29 -5.3393112e+29 -5.3360273e+29 -5.3267228e+29 -5.3298196e+29 -5.3452585e+29 -5.3423025e+29 -5.3601896e+29 -5.3762719e+29 -5.3733417e+29 -5.3572966e+29 -5.351031e+29 -5.3543369e+29 -5.3703225e+29 -5.3670605e+29 -5.2915617e+29 -5.3014547e+29 -5.317298e+29 -5.3078666e+29 -5.3092907e+29 -5.3163483e+29 -5.3319107e+29 -5.3249759e+29 -5.3630408e+29 -5.3469518e+29 -5.3401447e+29 -5.3563474e+29 -5.3490364e+29 -5.3326714e+29 -5.3234124e+29 -5.3401598e+29 -5.4562856e+29 -5.4392964e+29 -5.4364243e+29 -5.4534246e+29 -5.4968061e+29 -5.4954886e+29 -5.4420725e+29 -5.4451459e+29 -5.4621223e+29 -5.4590769e+29 -5.4817278e+29 -5.4089572e+29 -5.4121503e+29 -5.4288447e+29 -5.4257463e+29 -5.4227902e+29 -5.4059881e+29 -5.4032106e+29 -5.4199929e+29 -5.4508684e+29 -5.4337948e+29 -5.4307617e+29 -5.4477265e+29 -5.42635e+29 -5.4283775e+29 -5.4451805e+29 -5.4429261e+29 -5.3940225e+29 -5.3955492e+29 -5.4121726e+29 -5.4103505e+29 -5.3976888e+29 -5.4005985e+29 -5.4173997e+29 -5.4144541e+29 -5.3634106e+29 -5.3471881e+29 -5.3441826e+29 -5.3602854e+29 -5.3390967e+29 -5.3415476e+29 -5.3548961e+29 -5.3575181e+29 -5.3758735e+29 -5.379055e+29 -5.3957499e+29 -5.3924833e+29 -5.3729616e+29 -5.3895184e+29 -5.3867985e+29 -5.3702188e+29 -5.3316534e+29 -5.3329113e+29 -5.3469715e+29 -5.3481767e+29 -5.3345291e+29 -5.3370799e+29 -5.3499663e+29 -5.352574e+29 -5.3676081e+29 -5.3841687e+29 -5.3812696e+29 -5.3649161e+29 -5.3629854e+29 -5.3792367e+29 -5.3779521e+29 -5.3617934e+29 -4.8087916e+29 -4.9542145e+29 -5.0527684e+29 -5.057485e+29 -4.9481634e+29 -5.0531789e+29 -5.051872e+29 -4.9479179e+29 -4.9516421e+29 -4.80846e+29 -5.273445e+29 -5.2758135e+29 -5.2930869e+29 -5.2908288e+29 -5.2779673e+29 -5.280549e+29 -5.2978331e+29 -5.2952628e+29 -5.3111295e+29 -5.3138216e+29 -5.3306609e+29 -5.3277441e+29 -5.3252377e+29 -5.3087661e+29 -5.3065706e+29 -5.3230091e+29 -5.1773748e+29 -5.2131341e+29 -5.1723307e+29 -5.2093841e+29 -5.2050739e+29 -5.1686145e+29 -5.2064358e+29 -5.1676768e+29 -5.2385779e+29 -5.2351939e+29 -5.2609295e+29 -5.2581228e+29 -5.2558711e+29 -5.2327207e+29 -5.2310968e+29 -5.2537012e+29 -5.1668605e+29 -5.2035637e+29 -5.2024433e+29 -5.1663037e+29 -5.2516707e+29 -5.2292682e+29 -5.2269439e+29 -5.2487908e+29 -5.1662265e+29 -5.2022702e+29 -5.2025628e+29 -5.1684014e+29 -5.2261607e+29 -5.2268025e+29 -5.2480484e+29 -5.2472925e+29 -5.3212061e+29 -5.3046836e+29 -5.3019802e+29 -5.3185524e+29 -5.288489e+29 -5.2711489e+29 -5.2681859e+29 -5.2856593e+29 -5.3170184e+29 -5.3004181e+29 -5.2993108e+29 -5.3158286e+29 -5.2841531e+29 -5.2669858e+29 -5.2661856e+29 -5.2832328e+29 -5.2578505e+29 -5.2607739e+29 -5.2771706e+29 -5.2741388e+29 -5.263039e+29 -5.2654462e+29 -5.2821885e+29 -5.2795967e+29 -5.2891382e+29 -5.292214e+29 -5.3079996e+29 -5.3049191e+29 -5.2948948e+29 -5.2977662e+29 -5.3139891e+29 -5.3108688e+29 -5.0504981e+29 -5.1598154e+29 -5.1602939e+29 -5.1954955e+29 -5.1938212e+29 -5.0521384e+29 -5.1627715e+29 -5.1665011e+29 -5.2010304e+29 -5.1978786e+29 -5.2224059e+29 -5.2253133e+29 -5.2466279e+29 -5.244108e+29 -5.2418921e+29 -5.2201491e+29 -5.2180454e+29 -5.2393287e+29 -4.9529228e+29 -4.9518958e+29 -5.0498631e+29 -5.1465186e+29 -5.1531896e+29 -5.183183e+29 -5.1739245e+29 -5.0504225e+29 -5.1560491e+29 -5.158663e+29 -5.1917381e+29 -5.1880253e+29 -5.2104468e+29 -5.2152408e+29 -5.2358903e+29 -5.2300202e+29 -5.2230511e+29 -5.2043277e+29 -5.1941552e+29 -5.2120527e+29 -4.9549151e+29 -4.960217e+29 -5.2283359e+29 -5.2397753e+29 -5.2550485e+29 -5.2438567e+29 -5.2473883e+29 -5.2539293e+29 -5.2700423e+29 -5.2630685e+29 -5.2591677e+29 -5.2699507e+29 -5.2857644e+29 -5.2756106e+29 -5.277964e+29 -5.2850423e+29 -5.3008146e+29 -5.2936922e+29 -4.6169465e+29 -5.0486522e+29 -5.0987202e+29 -4.7080419e+29 -4.8982346e+29 -4.8938054e+29 -4.6839867e+29 -5.1783779e+29 -5.0940448e+29 -5.0675029e+29 -5.3004877e+29 -5.3753529e+29 -5.2760477e+29 -5.5273759e+29 -5.5004369e+29 -5.4843852e+29 -5.5814536e+29 -5.6019754e+29 -5.5510697e+29 -5.6147047e+29 -5.6383769e+29 -5.3306686e+29 -5.3490436e+29 -5.344579e+29 -5.3230395e+29 -5.3198847e+29 -5.3645383e+29 -5.3033912e+29 -5.2962196e+29 -5.3139454e+29 -5.4131134e+29 -5.4030007e+29 -5.3823979e+29 -5.4223473e+29 -5.4438089e+29 -5.3670624e+29 -5.3853143e+29 -5.4229483e+29 -5.4035273e+29 -5.596208e+29 -5.578566e+29 -5.4900949e+29 -5.4996227e+29 -5.5079627e+29 -5.4961122e+29 -5.4780134e+29 -5.5250936e+29 -5.5158133e+29 -5.5566245e+29 -5.5396606e+29 -5.4534703e+29 -5.4663949e+29 -5.4846001e+29 -5.4718153e+29 -5.5215736e+29 -5.5024351e+29 -5.4895897e+29 -5.5087325e+29 -5.5257501e+29 -5.5138709e+29 -5.5331285e+29 -5.5453668e+29 -5.4604253e+29 -5.4686728e+29 -5.4407787e+29 -5.4516677e+29 -5.4767876e+29 -5.485366e+29 -5.4943581e+29 -5.5038967e+29 -4.9638559e+29 -4.8392886e+29 -4.8309069e+29 -5.0269385e+29 -4.9718801e+29 -4.9509901e+29 -5.2059426e+29 -5.2595883e+29 -5.2776847e+29 -5.2146328e+29 -5.2199254e+29 -5.2347182e+29 -5.2072878e+29 -5.257121e+29 -5.277291e+29 -5.0942397e+29 -5.0988459e+29 -5.0951862e+29 -5.1517542e+29 -5.1615023e+29 -4.6345974e+29 -4.8202602e+29 -4.8297591e+29 -4.3881808e+29 -4.8079141e+29 -4.8200734e+29 -4.8079658e+29 -4.8208882e+29 -4.9554338e+29 -4.9588267e+29 -4.9652307e+29 -5.0416138e+29 -5.0299856e+29 -5.073032e+29 -5.0862644e+29 -5.0362906e+29 -5.0451194e+29 -5.0971276e+29 -5.051584e+29 -5.1017791e+29 -5.2514441e+29 -5.2245601e+29 -5.2726755e+29 -5.2902263e+29 -5.1905563e+29 -5.18737e+29 -5.2154872e+29 -5.125522e+29 -5.1271064e+29 -5.1622149e+29 -5.2380513e+29 -5.2524908e+29 -5.247398e+29 -5.2595098e+29 -5.2633024e+29 -5.2545044e+29 -5.2551662e+29 -5.2633264e+29 -5.2615314e+29 -5.239467e+29 -5.2367089e+29 -5.2468284e+29 -5.2456692e+29 -5.2505032e+29 -5.2525419e+29 -5.2591722e+29 -5.2569602e+29 -5.2466195e+29 -5.2491281e+29 -5.2555138e+29 -5.2530315e+29 -5.2393154e+29 -5.2384732e+29 -5.2445263e+29 -5.2458284e+29 -5.2343673e+29 -5.2378082e+29 -5.2433856e+29 -5.2405585e+29 -5.2718253e+29 -5.2693018e+29 -5.278048e+29 -5.2805815e+29 -5.285916e+29 -5.2940766e+29 -5.2950613e+29 -5.2880108e+29 -5.2861887e+29 -5.293541e+29 -5.2901338e+29 -5.2825571e+29 -5.2685979e+29 -5.2712176e+29 -5.2752471e+29 -5.2785682e+29 -5.2635033e+29 -5.2661278e+29 -5.272903e+29 -5.2703838e+29 -5.2775892e+29 -5.2800852e+29 -5.2878592e+29 -5.2856554e+29 -5.2846394e+29 -5.2763617e+29 -5.2742398e+29 -5.282431e+29 -5.2596448e+29 -5.2620326e+29 -5.2689637e+29 -5.2665493e+29 -5.1556147e+29 -5.1876243e+29 -5.1698207e+29 -5.1849485e+29 -5.2006377e+29 -5.2174074e+29 -5.207446e+29 -5.1972481e+29 -5.2107338e+29 -5.224539e+29 -5.2176846e+29 -5.2274522e+29 -5.2314659e+29 -5.1917711e+29 -5.1669606e+29 -5.1786558e+29 -5.1895023e+29 -5.1960312e+29 -5.1936226e+29 -5.2042606e+29 -5.2037973e+29 -5.1863487e+29 -5.1881543e+29 -5.1776691e+29 -5.1647096e+29 -5.1955096e+29 -5.2046733e+29 -5.19971e+29 -5.1893702e+29 -5.2195839e+29 -5.2131556e+29 -5.211653e+29 -5.2185807e+29 -5.2250986e+29 -5.2262105e+29 -5.2321316e+29 -5.231512e+29 -5.2309584e+29 -5.2241917e+29 -5.2204121e+29 -5.2275235e+29 -5.214175e+29 -5.2179386e+29 -5.2114086e+29 -5.2073733e+29 -5.3456527e+29 -5.3442254e+29 -5.3551837e+29 -5.3532435e+29 -5.3366046e+29 -5.3224609e+29 -5.3077392e+29 -5.3621273e+29 -5.3706857e+29 -5.3721083e+29 -5.3644592e+29 -5.3799426e+29 -5.3790639e+29 -5.3878017e+29 -5.3878267e+29 -5.415114e+29 -5.4244325e+29 -5.4225437e+29 -5.4134162e+29 -5.3961474e+29 -5.396804e+29 -5.4044733e+29 -5.4058596e+29 -5.3942186e+29 -5.3914327e+29 -5.3992349e+29 -5.4022252e+29 -5.4109382e+29 -5.4197807e+29 -5.4159243e+29 -5.4074624e+29 -5.4051811e+29 -5.413566e+29 -5.4118952e+29 -5.4035346e+29 -5.3879568e+29 -5.389478e+29 -5.3957279e+29 -5.3972971e+29 -5.3626535e+29 -5.3610518e+29 -5.3716801e+29 -5.3685726e+29 -5.3760415e+29 -5.3786736e+29 -5.3862169e+29 -5.3836782e+29 -5.3819401e+29 -5.3741383e+29 -5.3726814e+29 -5.3804896e+29 -5.3666741e+29 -5.3589939e+29 -5.3574919e+29 -5.3652519e+29 -5.4103286e+29 -5.411008e+29 -5.402646e+29 -5.4019808e+29 -5.3948085e+29 -5.3870149e+29 -5.3862215e+29 -5.3940628e+29 -5.4017419e+29 -5.4101265e+29 -5.4091488e+29 -5.4007588e+29 -5.3845293e+29 -5.3858462e+29 -5.3926254e+29 -5.3938068e+29 -5.3795642e+29 -5.3717447e+29 -5.3708707e+29 -5.3786526e+29 -5.3642637e+29 -5.3564186e+29 -5.3554877e+29 -5.3633573e+29 -5.3782586e+29 -5.3703535e+29 -5.3685927e+29 -5.3766547e+29 -5.3627744e+29 -5.3548063e+29 -5.3524099e+29 -5.3607316e+29 -5.3390565e+29 -5.3321594e+29 -5.331359e+29 -5.3382765e+29 -5.3362974e+29 -5.3292312e+29 -5.3271163e+29 -5.3345356e+29 -5.3455622e+29 -5.3464064e+29 -5.3531889e+29 -5.3543611e+29 -5.3419325e+29 -5.3436477e+29 -5.3498628e+29 -5.3512928e+29 -5.3237418e+29 -5.3254592e+29 -5.3329999e+29 -5.3315017e+29 -5.3198137e+29 -5.3225526e+29 -5.3302606e+29 -5.3276093e+29 -5.3359761e+29 -5.3384119e+29 -5.3472208e+29 -5.3449571e+29 -5.3392367e+29 -5.3404738e+29 -5.3475985e+29 -5.3486474e+29 -5.3036402e+29 -5.3120417e+29 -5.3075238e+29 -5.3031611e+29 -5.325308e+29 -5.3185595e+29 -5.3181739e+29 -5.3242335e+29 -5.2977923e+29 -5.3015368e+29 -5.3086755e+29 -5.305037e+29 -5.3120905e+29 -5.3150357e+29 -5.3218951e+29 -5.3197406e+29 -5.3179798e+29 -5.3101154e+29 -5.3081805e+29 -5.3161978e+29 -5.2932071e+29 -5.2954714e+29 -5.3028729e+29 -5.3007837e+29 -5.3149737e+29 -5.3070387e+29 -5.3046718e+29 -5.3123368e+29 -5.2897421e+29 -5.2922314e+29 -5.2994983e+29 -5.2973835e+29 -5.460848e+29 -5.4539038e+29 -5.4470508e+29 -5.4459093e+29 -5.4357797e+29 -5.4412352e+29 -5.4424368e+29 -5.4685186e+29 -5.476772e+29 -5.4949271e+29 -5.4857086e+29 -5.43848e+29 -5.4302444e+29 -5.425958e+29 -5.4340425e+29 -5.4513331e+29 -5.45572e+29 -5.4427478e+29 -5.4474697e+29 -5.4231617e+29 -5.4312806e+29 -5.4294125e+29 -5.4213249e+29 -5.4463011e+29 -5.448287e+29 -5.4377007e+29 -5.4396784e+29 -5.4569707e+29 -5.4657262e+29 -5.4638374e+29 -5.4550284e+29 -5.4599072e+29 -5.4639243e+29 -5.4722902e+29 -5.4685216e+29 -5.4774683e+29 -5.4811708e+29 -5.4903502e+29 -5.4866475e+29 -5.483955e+29 -5.4747465e+29 -5.4728938e+29 -5.4820919e+29 -5.4542201e+29 -5.4630089e+29 -5.4630897e+29 -5.4542382e+29 -5.4492118e+29 -5.4204291e+29 -5.4285073e+29 -5.4282274e+29 -5.4202084e+29 -5.4210298e+29 -5.4289363e+29 -5.4441885e+29 -5.4460986e+29 -5.4466933e+29 -5.4362971e+29 -5.4374197e+29 -5.4453608e+29 -5.4454801e+29 -5.4366111e+29 -5.436853e+29 -5.3637332e+29 -5.3663318e+29 -5.3567566e+29 -5.3798785e+29 -5.3820344e+29 -5.374037e+29 -5.411721e+29 -5.4133111e+29 -5.4053722e+29 -5.3959106e+29 -5.3976863e+29 -5.3896678e+29 -5.4235306e+29 -5.4268329e+29 -5.4341299e+29 -5.4310385e+29 -5.4286888e+29 -5.4213324e+29 -5.4498321e+29 -5.3324284e+29 -5.3258822e+29 -5.3334205e+29 -5.347914e+29 -5.3503485e+29 -5.3407486e+29 -5.3029177e+29 -5.2955945e+29 -5.3045118e+29 -5.3173936e+29 -5.3113594e+29 -5.3187743e+29 -4.960411e+29 -4.9605653e+29 -4.9641045e+29 -4.9697373e+29 -5.0623768e+29 -5.1226175e+29 -5.183789e+29 -5.185633e+29 -5.1992928e+29 -5.2105707e+29 -5.2109049e+29 -5.2202297e+29 -5.2262548e+29 -5.2261215e+29 -5.2311255e+29 -5.2398071e+29 -5.2355491e+29 -5.238388e+29 -5.2519727e+29 -5.2451295e+29 -5.2502355e+29 -5.2617871e+29 -5.2638602e+29 -5.2578873e+29 -5.2888349e+29 -5.2833064e+29 -5.2901671e+29 -5.2748902e+29 -5.2766914e+29 -5.2701395e+29 -5.5460722e+29 -5.5453488e+29 -5.5255744e+29 -5.5246896e+29 -5.5034211e+29 -5.5044325e+29 -5.4238553e+29 -5.4249125e+29 -5.4431709e+29 -5.4422458e+29 -5.4262274e+29 -5.4282986e+29 -5.4463955e+29 -5.4444052e+29 -5.4836271e+29 -5.4643847e+29 -5.4624146e+29 -5.4817017e+29 -5.4603347e+29 -5.4611383e+29 -5.4803625e+29 -5.4795836e+29 -5.4108298e+29 -5.3931239e+29 -5.3909879e+29 -5.4086519e+29 -5.3767535e+29 -5.3601715e+29 -5.3581403e+29 -5.3746452e+29 -5.3552372e+29 -5.3566551e+29 -5.3733207e+29 -5.3720362e+29 -5.4072317e+29 -5.3895367e+29 -5.3883148e+29 -5.4061371e+29 -5.3511849e+29 -5.3517359e+29 -5.368631e+29 -5.3679099e+29 -5.3524114e+29 -5.3539474e+29 -5.3706377e+29 -5.3692307e+29 -5.4047695e+29 -5.3868401e+29 -5.3854895e+29 -5.4032446e+29 -5.402496e+29 -5.3848833e+29 -5.3841134e+29 -5.401613e+29 -5.4789512e+29 -5.4595568e+29 -5.457966e+29 -5.4773154e+29 -5.4411511e+29 -5.4225663e+29 -5.4210067e+29 -5.4395877e+29 -5.4188391e+29 -5.4199769e+29 -5.4382955e+29 -5.4368308e+29 -5.475637e+29 -5.4564352e+29 -5.4547319e+29 -5.473686e+29 -5.5137694e+29 -5.5126344e+29 -5.5257501e+29 -5.5244925e+29 -5.523306e+29 -5.5218377e+29 -5.51133e+29 -5.5097814e+29 -5.4944303e+29 -5.4969775e+29 -5.5165585e+29 -5.5159361e+29 -5.5287414e+29 -5.5279294e+29 -5.5273851e+29 -5.5266779e+29 -5.5153519e+29 -5.5146238e+29 -5.4987528e+29 -5.4999472e+29 -5.5389512e+29 -5.538015e+29 -5.5482705e+29 -5.5492393e+29 -5.5595351e+29 -5.5701548e+29 -5.5690937e+29 -5.5585074e+29 -5.5466778e+29 -5.5373875e+29 -5.5474657e+29 -5.5366546e+29 -5.5576279e+29 -5.5681506e+29 -5.5567826e+29 -5.5672137e+29 -5.5357114e+29 -5.5343606e+29 -5.5457979e+29 -5.5444533e+29 -5.554511e+29 -5.5663078e+29 -5.5649266e+29 -5.5558828e+29 -5.5332257e+29 -5.5318084e+29 -5.5417503e+29 -5.5431814e+29 -5.5532214e+29 -5.5517996e+29 -5.5636251e+29 -5.5622135e+29 -5.5213701e+29 -5.5209845e+29 -5.5337544e+29 -5.5332971e+29 -5.5328826e+29 -5.5323357e+29 -5.5204036e+29 -5.5197506e+29 -5.5044633e+29 -5.503242e+29 -5.5191319e+29 -5.5184329e+29 -5.5316422e+29 -5.5308369e+29 -5.5302497e+29 -5.5295653e+29 -5.5178424e+29 -5.5172023e+29 -5.5021075e+29 -5.5010249e+29 -5.5539359e+29 -5.5440532e+29 -5.5544469e+29 -5.5435219e+29 -5.5647897e+29 -5.5642978e+29 -5.5754315e+29 -5.5749483e+29 -5.5529259e+29 -5.5431576e+29 -5.5534223e+29 -5.5426639e+29 -5.5744546e+29 -5.563783e+29 -5.5632716e+29 -5.5739063e+29 -5.5515159e+29 -5.5420243e+29 -5.5523707e+29 -5.5411468e+29 -5.5733447e+29 -5.5627002e+29 -5.5618161e+29 -5.5724307e+29 -5.5499869e+29 -5.5405011e+29 -5.55073e+29 -5.5397792e+29 -5.5716612e+29 -5.5610239e+29 -5.5602707e+29 -5.5708835e+29 -5.5039355e+29 -5.5031049e+29 -5.5154099e+29 -5.5144152e+29 -5.5138032e+29 -5.5131708e+29 -5.5024575e+29 -5.5018273e+29 -5.4680966e+29 -5.4500507e+29 -5.449551e+29 -5.4672316e+29 -5.486947e+29 -5.4880905e+29 -5.5083556e+29 -5.507022e+29 -5.5202834e+29 -5.5187348e+29 -5.5175996e+29 -5.5164843e+29 -5.5059031e+29 -5.5048361e+29 -5.4715897e+29 -5.4528887e+29 -5.4510276e+29 -5.469402e+29 -5.489615e+29 -5.4916943e+29 -5.538724e+29 -5.5303246e+29 -5.5403958e+29 -5.5286405e+29 -5.5504736e+29 -5.5608573e+29 -5.5591065e+29 -5.5487786e+29 -5.5360302e+29 -5.5274182e+29 -5.5373148e+29 -5.5262534e+29 -5.4351634e+29 -5.4173427e+29 -5.4158612e+29 -5.433532e+29 -5.4157112e+29 -5.4154576e+29 -5.4329005e+29 -5.4327348e+29 -5.4994231e+29 -5.4989164e+29 -5.5102483e+29 -5.5095849e+29 -5.5091124e+29 -5.5084685e+29 -5.4983861e+29 -5.4977074e+29 -5.4648828e+29 -5.4478147e+29 -5.4469587e+29 -5.4639267e+29 -5.483627e+29 -5.4846738e+29 -5.5012204e+29 -5.5007105e+29 -5.512448e+29 -5.5117834e+29 -5.511371e+29 -5.510902e+29 -5.5003152e+29 -5.4998925e+29 -5.466442e+29 -5.4489529e+29 -5.4482581e+29 -5.4655239e+29 -5.4853486e+29 -5.4859649e+29 -5.432364e+29 -5.4156796e+29 -5.4152644e+29 -5.4318315e+29 -5.4140444e+29 -5.4149109e+29 -5.4315253e+29 -5.4306822e+29 -5.3994823e+29 -5.382677e+29 -5.3822675e+29 -5.3990012e+29 -5.3664749e+29 -5.3496974e+29 -5.3494019e+29 -5.3661728e+29 -5.3486316e+29 -5.3490997e+29 -5.3657019e+29 -5.3650398e+29 -5.3984478e+29 -5.3816473e+29 -5.380769e+29 -5.3976205e+29 -5.400187e+29 -5.3827984e+29 -5.3814436e+29 -5.3987205e+29 -5.3666049e+29 -5.3501045e+29 -5.3487594e+29 -5.3652735e+29 -5.3493327e+29 -5.3486446e+29 -5.3652584e+29 -5.3660601e+29 -5.3984191e+29 -5.3812525e+29 -5.3820199e+29 -5.3990226e+29 -5.3435915e+29 -5.326364e+29 -5.3242249e+29 -5.3414214e+29 -5.3090316e+29 -5.2903058e+29 -5.2886304e+29 -5.3071299e+29 -5.2848923e+29 -5.2869812e+29 -5.3055406e+29 -5.303616e+29 -5.3396706e+29 -5.3222869e+29 -5.3205478e+29 -5.3381638e+29 -5.0559465e+29 -4.9448668e+29 -4.9371917e+29 -5.0493744e+29 -5.1694072e+29 -5.1713687e+29 -5.2118058e+29 -5.2099199e+29 -5.1757051e+29 -5.181828e+29 -5.2185466e+29 -5.2151291e+29 -5.2426647e+29 -5.2446955e+29 -5.2690021e+29 -5.2672706e+29 -5.2655196e+29 -5.2401044e+29 -5.2385489e+29 -5.2636463e+29 -5.2620339e+29 -5.237909e+29 -5.2360368e+29 -5.2603085e+29 -5.047681e+29 -5.2091975e+29 -5.1682118e+29 -5.1670003e+29 -5.2075768e+29 -5.0498659e+29 -5.1706052e+29 -5.168635e+29 -5.2075704e+29 -5.2090104e+29 -5.2594605e+29 -5.2347125e+29 -5.2361729e+29 -5.2600885e+29 -4.9357659e+29 -4.9398045e+29 -4.790155e+29 -4.7877902e+29 -5.3368486e+29 -5.3189547e+29 -5.3172873e+29 -5.3351605e+29 -5.3015198e+29 -5.2827875e+29 -5.2810808e+29 -5.2997948e+29 -5.2810293e+29 -5.2806256e+29 -5.2993866e+29 -5.2996346e+29 -5.3345136e+29 -5.3167259e+29 -5.3167615e+29 -5.3342851e+29 -5.0504228e+29 -5.0506443e+29 -4.9414147e+29 -4.9410018e+29 -5.0535384e+29 -5.0588981e+29 -4.9452517e+29 -4.9540573e+29 -4.7923883e+29 -4.803551e+29 -5.3335869e+29 -5.3164551e+29 -5.3149652e+29 -5.3320717e+29 -5.2993251e+29 -5.2807766e+29 -5.2797505e+29 -5.2980496e+29 -5.2788224e+29 -5.2973325e+29 -5.29792e+29 -5.2795792e+29 -5.331591e+29 -5.314267e+29 -5.3148566e+29 -5.3322693e+29 -5.2096897e+29 -5.1708883e+29 -5.1686231e+29 -5.2080109e+29 -5.2365853e+29 -5.2598734e+29 -5.2589177e+29 -5.2351568e+29 -5.1692548e+29 -5.2074437e+29 -5.1687035e+29 -5.2077776e+29 -5.2349482e+29 -5.2588347e+29 -5.2339024e+29 -5.2578421e+29 -5.1714453e+29 -5.1702122e+29 -5.2085145e+29 -5.2096633e+29 -5.2143493e+29 -5.1744783e+29 -5.2119602e+29 -5.1783269e+29 -5.238143e+29 -5.2608016e+29 -5.2615296e+29 -5.2397126e+29 -5.2364142e+29 -5.2597689e+29 -5.2356125e+29 -5.2593963e+29 -5.2799723e+29 -5.2982571e+29 -5.2981839e+29 -5.2801153e+29 -5.2807175e+29 -5.2983907e+29 -5.298479e+29 -5.2811426e+29 -5.3148992e+29 -5.3149881e+29 -5.3321862e+29 -5.3319622e+29 -5.3149919e+29 -5.3151324e+29 -5.3326476e+29 -5.3323501e+29 -4.6026168e+29 -4.5917097e+29 -5.4387e+29 -5.4243159e+29 -5.4205278e+29 -5.4348018e+29 -5.4446113e+29 -5.4299084e+29 -5.4272334e+29 -5.441786e+29 -5.3915637e+29 -5.395107e+29 -5.4096445e+29 -5.4059936e+29 -5.3979191e+29 -5.4003448e+29 -5.4150059e+29 -5.4124433e+29 -5.4186977e+29 -5.4035873e+29 -5.4296633e+29 -5.4329327e+29 -5.4401613e+29 -5.4369786e+29 -5.4303924e+29 -5.4161279e+29 -5.4104124e+29 -5.4249208e+29 -5.4358192e+29 -5.4390811e+29 -5.4462442e+29 -5.4431286e+29 -5.4414584e+29 -5.4439155e+29 -5.451074e+29 -5.4486122e+29 -5.4016432e+29 -5.3871925e+29 -5.3807431e+29 -5.3955317e+29 -5.3728642e+29 -5.3880851e+29 -5.3347023e+29 -5.3381168e+29 -5.3517344e+29 -5.3483081e+29 -5.3411066e+29 -5.3437356e+29 -5.3571312e+29 -5.3546682e+29 -5.3710269e+29 -5.3855127e+29 -5.3831881e+29 -5.3686695e+29 -5.3623782e+29 -5.3658062e+29 -5.3803162e+29 -5.3768669e+29 -5.3139242e+29 -5.3278801e+29 -5.3230541e+29 -5.330189e+29 -5.3438516e+29 -5.3368787e+29 -5.3725106e+29 -5.3579469e+29 -5.3511233e+29 -5.3658397e+29 -5.3575016e+29 -5.3424655e+29 -5.4604673e+29 -5.4452298e+29 -5.4421379e+29 -5.4574479e+29 -5.4981779e+29 -5.496958e+29 -5.4483468e+29 -5.4512486e+29 -5.4664106e+29 -5.4635077e+29 -5.4774857e+29 -5.4851566e+29 -5.4878531e+29 -5.4801381e+29 -5.4865532e+29 -5.4788288e+29 -5.4176221e+29 -5.4205586e+29 -5.4358483e+29 -5.4329534e+29 -5.4297831e+29 -5.4144262e+29 -5.4111915e+29 -5.4265041e+29 -5.4546752e+29 -5.4392946e+29 -5.4363934e+29 -5.451737e+29 -5.431919e+29 -5.4340773e+29 -5.4491973e+29 -5.4468208e+29 -5.4019357e+29 -5.403539e+29 -5.4187104e+29 -5.4167592e+29 -5.4055414e+29 -5.4082666e+29 -5.423696e+29 -5.420825e+29 -5.3759755e+29 -5.3619824e+29 -5.3590435e+29 -5.3728719e+29 -5.3527853e+29 -5.355847e+29 -5.3663986e+29 -5.3694411e+29 -5.3872428e+29 -5.3901512e+29 -5.4051604e+29 -5.4022143e+29 -5.3838946e+29 -5.398959e+29 -5.3957628e+29 -5.3807267e+29 -5.3452432e+29 -5.3461911e+29 -5.3583622e+29 -5.3593318e+29 -5.3479453e+29 -5.349934e+29 -5.3611099e+29 -5.3633603e+29 -5.377679e+29 -5.3927626e+29 -5.3901482e+29 -5.3752258e+29 -5.3734107e+29 -5.3882443e+29 -5.3869264e+29 -5.3723039e+29 -4.8016218e+29 -4.9605931e+29 -4.9543693e+29 -5.0524452e+29 -5.1206014e+29 -5.053766e+29 -5.1202222e+29 -5.1244411e+29 -5.0637561e+29 -5.1303472e+29 -5.0557154e+29 -5.0522233e+29 -5.1190613e+29 -5.122389e+29 -5.0578095e+29 -5.1183734e+29 -5.0532189e+29 -5.1194138e+29 -5.050607e+29 -4.953789e+29 -4.9582867e+29 -4.8012938e+29 -5.3005692e+29 -5.303482e+29 -5.3156863e+29 -5.3131897e+29 -5.3063277e+29 -5.3086531e+29 -5.3212765e+29 -5.3188045e+29 -5.3316859e+29 -5.3342516e+29 -5.3478424e+29 -5.345105e+29 -5.342039e+29 -5.3285917e+29 -5.3259715e+29 -5.3391485e+29 -5.2180586e+29 -5.2559752e+29 -5.2122486e+29 -5.2516894e+29 -5.2459797e+29 -5.2077236e+29 -5.2478687e+29 -5.2063252e+29 -5.278222e+29 -5.2750464e+29 -5.2943546e+29 -5.291823e+29 -5.2888916e+29 -5.2717829e+29 -5.2692253e+29 -5.2858671e+29 -5.2052338e+29 -5.2441336e+29 -5.2426396e+29 -5.2041687e+29 -5.2834916e+29 -5.267086e+29 -5.264859e+29 -5.2807219e+29 -5.2045609e+29 -5.2427132e+29 -5.2434187e+29 -5.2068115e+29 -5.2640279e+29 -5.2645846e+29 -5.2800157e+29 -5.2789526e+29 -5.3365805e+29 -5.3236822e+29 -5.3216004e+29 -5.3346302e+29 -5.3108239e+29 -5.2978757e+29 -5.2952975e+29 -5.308441e+29 -5.3329285e+29 -5.3200405e+29 -5.3187894e+29 -5.3318746e+29 -5.3069273e+29 -5.2940445e+29 -5.2929739e+29 -5.3057609e+29 -5.284306e+29 -5.2874478e+29 -5.2989722e+29 -5.2960297e+29 -5.290022e+29 -5.2920899e+29 -5.3044109e+29 -5.3019995e+29 -5.3082569e+29 -5.3113734e+29 -5.3244243e+29 -5.3211475e+29 -5.3144624e+29 -5.3171054e+29 -5.3302179e+29 -5.327501e+29 -5.0547422e+29 -5.0517445e+29 -5.1154041e+29 -5.1162227e+29 -5.1979979e+29 -5.1986647e+29 -5.2358143e+29 -5.2340133e+29 -5.0573702e+29 -5.1211083e+29 -5.11727e+29 -5.0523634e+29 -5.2015722e+29 -5.2057044e+29 -5.2420417e+29 -5.2386685e+29 -5.2605481e+29 -5.2631398e+29 -5.2783791e+29 -5.2762829e+29 -5.2738516e+29 -5.2579581e+29 -5.2554488e+29 -5.2708838e+29 -5.1127648e+29 -5.0533738e+29 -5.0549386e+29 -5.1095527e+29 -5.1917799e+29 -5.2221696e+29 -5.1155984e+29 -5.055076e+29 -5.0525804e+29 -5.1138392e+29 -5.1946162e+29 -5.1967198e+29 -5.2316832e+29 -5.2279922e+29 -5.247053e+29 -5.2522662e+29 -5.266929e+29 -5.2606774e+29 -5.2515989e+29 -5.2391967e+29 -5.2632709e+29 -5.2745252e+29 -5.2729392e+29 -5.2799128e+29 -5.2916456e+29 -5.2843928e+29 -5.2868844e+29 -5.300078e+29 -5.2965285e+29 -5.3038469e+29 -5.3166997e+29 -5.3094571e+29 -4.8024524e+29 -4.8019319e+29 -4.6716462e+29 -4.6988841e+29 -4.8961805e+29 -4.8888428e+29 -4.9599782e+29 -5.1852945e+29 -5.1912762e+29 -5.0997634e+29 -5.0699831e+29 -5.0729498e+29 -5.3168768e+29 -5.2958902e+29 -5.4021835e+29 -5.3901251e+29 -5.2872137e+29 -5.5266453e+29 -5.6325953e+29 -5.6179925e+29 -5.5138157e+29 -5.5453635e+29 -5.570596e+29 -5.3320624e+29 -5.5468114e+29 -5.6558976e+29 -5.6446034e+29 -5.5366196e+29 -5.6565803e+29 -5.6703077e+29 -5.6540705e+29 -5.6257921e+29 -5.6691046e+29 -5.6110796e+29 -5.6505818e+29 -5.6949361e+29 -5.6823157e+29 -5.6381931e+29 -5.6815561e+29 -5.6914649e+29 -5.3443884e+29 -5.3621894e+29 -5.3621663e+29 -5.3527578e+29 -5.3748939e+29 -5.3576747e+29 -5.3474636e+29 -5.3356112e+29 -5.3637789e+29 -5.3533479e+29 -5.3376131e+29 -5.3342499e+29 -5.3463423e+29 -5.3921682e+29 -5.3787797e+29 -5.3792611e+29 -5.3971364e+29 -5.3685427e+29 -5.3857919e+29 -5.3116985e+29 -5.3262959e+29 -5.342371e+29 -5.3285298e+29 -5.4324837e+29 -5.460461e+29 -5.4760338e+29 -5.4334278e+29 -5.4186935e+29 -5.4160285e+29 -5.4348832e+29 -5.422666e+29 -5.4040859e+29 -5.4109584e+29 -5.3926107e+29 -5.379961e+29 -5.3979994e+29 -5.4479948e+29 -5.4289335e+29 -5.4159147e+29 -5.4349576e+29 -5.4719157e+29 -5.4529457e+29 -5.4596999e+29 -5.4407003e+29 -5.3794812e+29 -5.3711974e+29 -5.3876695e+29 -5.3959739e+29 -5.4220956e+29 -5.4309697e+29 -5.4135973e+29 -5.4045892e+29 -5.6011165e+29 -5.5917864e+29 -5.61214e+29 -5.6216237e+29 -5.583113e+29 -5.5734188e+29 -5.4922437e+29 -5.4993127e+29 -5.5017298e+29 -5.4957384e+29 -5.4863152e+29 -5.5086248e+29 -5.526515e+29 -5.5171008e+29 -5.5188659e+29 -5.5041163e+29 -5.510127e+29 -5.5127372e+29 -5.4917961e+29 -5.4983603e+29 -5.5069587e+29 -5.5005548e+29 -5.4803289e+29 -5.4898748e+29 -5.4831561e+29 -5.4734482e+29 -5.5287751e+29 -5.5707647e+29 -5.5852374e+29 -5.5422316e+29 -5.5251194e+29 -5.5434088e+29 -5.5348616e+29 -5.5167975e+29 -5.5526888e+29 -5.5615031e+29 -5.572561e+29 -5.5817739e+29 -5.5443366e+29 -5.5348989e+29 -5.5545353e+29 -5.5640261e+29 -5.454279e+29 -5.4573173e+29 -5.4642076e+29 -5.4465796e+29 -5.4676506e+29 -5.4705904e+29 -5.4773355e+29 -5.4609567e+29 -5.4791232e+29 -5.4859333e+29 -5.4947392e+29 -5.4876466e+29 -5.4730273e+29 -5.4814296e+29 -5.4747434e+29 -5.4665648e+29 -5.5304365e+29 -5.5136878e+29 -5.5209067e+29 -5.5233921e+29 -5.5119829e+29 -5.5030957e+29 -5.5047596e+29 -5.4959366e+29 -5.4914319e+29 -5.4983421e+29 -5.4896076e+29 -5.4828498e+29 -5.5072673e+29 -5.516962e+29 -5.5099527e+29 -5.5003672e+29 -5.5272961e+29 -5.5302543e+29 -5.5363564e+29 -5.5211844e+29 -5.5088565e+29 -5.5153128e+29 -5.5243295e+29 -5.5177421e+29 -5.5267521e+29 -5.5334734e+29 -5.5432603e+29 -5.5362769e+29 -5.5455811e+29 -5.555514e+29 -5.5493476e+29 -5.5394354e+29 -5.4604546e+29 -5.4676549e+29 -5.4379952e+29 -5.45316e+29 -5.4755137e+29 -5.4837922e+29 -5.4929244e+29 -5.5022629e+29 -5.0334178e+29 -4.9688834e+29 -4.9480452e+29 -5.0334579e+29 -4.9530402e+29 -5.2496786e+29 -5.2629272e+29 -5.231155e+29 -5.2197008e+29 -5.2728715e+29 -5.3080603e+29 -5.2873738e+29 -5.293226e+29 -5.2880598e+29 -5.3079266e+29 -5.3290381e+29 -5.3194021e+29 -5.2984762e+29 -5.2238193e+29 -5.2279117e+29 -5.2341057e+29 -5.2961879e+29 -5.2815376e+29 -5.2460892e+29 -5.239422e+29 -5.2731497e+29 -5.1322856e+29 -5.101404e+29 -5.0991997e+29 -5.1037826e+29 -5.1711569e+29 -5.1667756e+29 -5.2003089e+29 -4.6210581e+29 -4.8257114e+29 -4.8247674e+29 -4.8151358e+29 -4.8161601e+29 -4.6115812e+29 -4.9447215e+29 -4.9452273e+29 -4.9498497e+29 -4.9500304e+29 -4.9582723e+29 -4.9529473e+29 -4.9513383e+29 -4.9518495e+29 -4.9588488e+29 -4.9591368e+29 -4.9555394e+29 -4.9614658e+29 -4.9626683e+29 -4.9677643e+29 -5.0423655e+29 -5.0508309e+29 -5.0575966e+29 -5.0650479e+29 -5.0521223e+29 -5.0911206e+29 -5.1114063e+29 -5.1872348e+29 -5.1471527e+29 -5.1143532e+29 -5.1478153e+29 -5.1400588e+29 -5.1211781e+29 -5.1486955e+29 -5.1767385e+29 -5.2722195e+29 -5.2752323e+29 -5.2618837e+29 -5.2419699e+29 -5.2944199e+29 -5.2928467e+29 -5.2849699e+29 -5.311482e+29 -5.3002257e+29 -5.3073919e+29 -5.20881e+29 -5.2162629e+29 -5.2245945e+29 -5.2561077e+29 -5.2510341e+29 -5.2223808e+29 -5.2351146e+29 -5.2429131e+29 -5.2339167e+29 -5.1392942e+29 -5.1781361e+29 -5.1886028e+29 -5.1454885e+29 -5.2038584e+29 -5.1862557e+29 -5.2589107e+29 -5.2510647e+29 -5.2596427e+29 -5.2672281e+29 -5.2792656e+29 -5.2640709e+29 -5.2692074e+29 -5.275379e+29 -5.2703321e+29 -5.2503565e+29 -5.2567452e+29 -5.2579575e+29 -5.2604162e+29 -5.2662961e+29 -5.2638129e+29 -5.2572328e+29 -5.2634046e+29 -5.2485377e+29 -5.2467345e+29 -5.2521031e+29 -5.2541816e+29 -5.2439769e+29 -5.2463756e+29 -5.2513374e+29 -5.2497874e+29 -5.2851378e+29 -5.2967174e+29 -5.3088484e+29 -5.3031581e+29 -5.2951934e+29 -5.3013639e+29 -5.2958081e+29 -5.2892822e+29 -5.2760024e+29 -5.2818173e+29 -5.2824498e+29 -5.2882257e+29 -5.2700315e+29 -5.272472e+29 -5.278798e+29 -5.2765317e+29 -5.2836397e+29 -5.2857704e+29 -5.2928075e+29 -5.2909841e+29 -5.2911058e+29 -5.2836061e+29 -5.2894449e+29 -5.2698098e+29 -5.2763798e+29 -5.2024856e+29 -5.1742688e+29 -5.2006523e+29 -5.2063811e+29 -5.2226062e+29 -5.2355871e+29 -5.2311811e+29 -5.2404843e+29 -5.2442106e+29 -5.2147685e+29 -5.1992482e+29 -5.2006009e+29 -5.2025135e+29 -5.213166e+29 -5.2195866e+29 -5.2159491e+29 -5.2228949e+29 -5.2237891e+29 -5.2058564e+29 -5.2112216e+29 -5.217891e+29 -5.2224038e+29 -5.2344205e+29 -5.2301231e+29 -5.2279192e+29 -5.2326153e+29 -5.2370981e+29 -5.2391254e+29 -5.2429704e+29 -5.241466e+29 -5.2408625e+29 -5.2361021e+29 -5.2319623e+29 -5.2276425e+29 -5.3542672e+29 -5.3639306e+29 -5.3423591e+29 -5.3527595e+29 -5.3481935e+29 -5.3402386e+29 -5.3308417e+29 -5.3365983e+29 -5.3272506e+29 -5.3161744e+29 -5.3247952e+29 -5.3814191e+29 -5.3738921e+29 -5.3658468e+29 -5.3889937e+29 -5.3962826e+29 -5.4263629e+29 -5.4184681e+29 -5.4036605e+29 -5.4104027e+29 -5.3978171e+29 -5.393783e+29 -5.4011603e+29 -5.4049956e+29 -5.4133392e+29 -5.4219116e+29 -5.4176376e+29 -5.4093501e+29 -5.4068012e+29 -5.4149307e+29 -5.4132174e+29 -5.4052104e+29 -5.3899605e+29 -5.3913812e+29 -5.3974105e+29 -5.3988426e+29 -5.3680246e+29 -5.3645237e+29 -5.3628074e+29 -5.3645788e+29 -5.3767508e+29 -5.3717672e+29 -5.3792043e+29 -5.3834279e+29 -5.3902904e+29 -5.3863553e+29 -5.3839145e+29 -5.376549e+29 -5.3751978e+29 -5.3825354e+29 -5.3690537e+29 -5.3616444e+29 -5.3604114e+29 -5.3678284e+29 -5.4121362e+29 -5.4123255e+29 -5.404318e+29 -5.4041481e+29 -5.3965284e+29 -5.3890457e+29 -5.3887323e+29 -5.3962632e+29 -5.4050723e+29 -5.4130411e+29 -5.3893957e+29 -5.39708e+29 -5.3816585e+29 -5.3743099e+29 -5.3739484e+29 -5.3812404e+29 -5.3670567e+29 -5.3596381e+29 -5.3593732e+29 -5.366679e+29 -5.3818113e+29 -5.3743756e+29 -5.3669184e+29 -5.3597292e+29 -5.3566628e+29 -5.3373094e+29 -5.3434528e+29 -5.339854e+29 -5.3333747e+29 -5.3308965e+29 -5.3379217e+29 -5.3501407e+29 -5.3549085e+29 -5.357063e+29 -5.3619513e+29 -5.3452494e+29 -5.3468059e+29 -5.3527763e+29 -5.3540095e+29 -5.3282749e+29 -5.3292201e+29 -5.3364395e+29 -5.3356176e+29 -5.3276243e+29 -5.3350429e+29 -5.3434659e+29 -5.3520492e+29 -5.3502457e+29 -5.3435505e+29 -5.3440647e+29 -5.3516313e+29 -5.3519478e+29 -5.3139788e+29 -5.3139311e+29 -5.3115039e+29 -5.3111839e+29 -5.3151661e+29 -5.3254208e+29 -5.3310403e+29 -5.3025744e+29 -5.3080083e+29 -5.3137042e+29 -5.30918e+29 -5.316272e+29 -5.3198516e+29 -5.3265468e+29 -5.3236256e+29 -5.3219184e+29 -5.3143884e+29 -5.3131239e+29 -5.3207939e+29 -5.2981418e+29 -5.2999447e+29 -5.3070377e+29 -5.3055626e+29 -5.3202852e+29 -5.3127088e+29 -5.2950078e+29 -5.2975604e+29 -5.3049281e+29 -5.461675e+29 -5.4502714e+29 -5.4549693e+29 -5.4485004e+29 -5.4333537e+29 -5.4368736e+29 -5.4405359e+29 -5.4454171e+29 -5.4691875e+29 -5.4773672e+29 -5.4954254e+29 -5.4862753e+29 -5.4458675e+29 -5.4392415e+29 -5.4311053e+29 -5.4374167e+29 -5.4265063e+29 -5.4345676e+29 -5.451822e+29 -5.456352e+29 -5.4432209e+29 -5.4481619e+29 -5.4235518e+29 -5.4316803e+29 -5.42975e+29 -5.4216462e+29 -5.446674e+29 -5.4486827e+29 -5.4380627e+29 -5.4400753e+29 -5.4573732e+29 -5.4661388e+29 -5.4642455e+29 -5.4553965e+29 -5.4603455e+29 -5.4644483e+29 -5.472796e+29 -5.4689657e+29 -5.4778898e+29 -5.4816433e+29 -5.4908e+29 -5.4870555e+29 -5.4843313e+29 -5.4751456e+29 -5.4732962e+29 -5.4824752e+29 -5.4546446e+29 -5.4634769e+29 -5.4637519e+29 -5.4548027e+29 -5.420802e+29 -5.4288929e+29 -5.4287296e+29 -5.4207186e+29 -5.4218104e+29 -5.4296535e+29 -5.4475199e+29 -5.4483405e+29 -5.4473726e+29 -5.4453534e+29 -5.4363505e+29 -5.4391319e+29 -5.4380096e+29 -5.4458833e+29 -5.4459154e+29 -5.4370998e+29 -5.4372677e+29 -5.3612799e+29 -5.3665973e+29 -5.3747368e+29 -5.369955e+29 -5.3680384e+29 -5.3597476e+29 -5.3553559e+29 -5.3581815e+29 -5.3900074e+29 -5.382171e+29 -5.3780086e+29 -5.3859518e+29 -5.3832303e+29 -5.3757342e+29 -5.4199254e+29 -5.4124077e+29 -5.4086805e+29 -5.4163885e+29 -5.4138009e+29 -5.4062284e+29 -5.3933721e+29 -5.3973358e+29 -5.4051825e+29 -5.4013233e+29 -5.3984692e+29 -5.3908109e+29 -5.4238741e+29 -5.4268877e+29 -5.4338234e+29 -5.4421326e+29 -5.4309695e+29 -5.4289181e+29 -5.4216318e+29 -5.3302419e+29 -5.3360645e+29 -5.3434868e+29 -5.337837e+29 -5.3283743e+29 -5.33567e+29 -5.3589385e+29 -5.350773e+29 -5.3451692e+29 -5.3538256e+29 -5.3533212e+29 -5.3520404e+29 -5.3492956e+29 -5.3432698e+29 -5.3089138e+29 -5.3156323e+29 -5.3092435e+29 -5.3025768e+29 -5.294774e+29 -5.2991535e+29 -5.2984297e+29 -5.3067289e+29 -5.3291936e+29 -5.3221137e+29 -5.3159543e+29 -5.3232203e+29 -5.3139178e+29 -5.3212509e+29 -5.0677493e+29 -5.0725201e+29 -5.0670813e+29 -5.0700927e+29 -5.0674978e+29 -5.0701414e+29 -5.068011e+29 -5.0695338e+29 -5.1381977e+29 -5.1662188e+29 -5.1339394e+29 -5.1983496e+29 -5.2067241e+29 -5.2237615e+29 -5.2132965e+29 -5.2248835e+29 -5.2356993e+29 -5.2419496e+29 -5.2323005e+29 -5.2277542e+29 -5.2409784e+29 -5.2462554e+29 -5.2367071e+29 -5.2502867e+29 -5.2322579e+29 -5.2360546e+29 -5.2432781e+29 -5.2453095e+29 -5.2487554e+29 -5.2395378e+29 -5.2448351e+29 -5.2540613e+29 -5.2581276e+29 -5.2541151e+29 -5.2551681e+29 -5.2509048e+29 -5.2484714e+29 -5.2491543e+29 -5.2628981e+29 -5.268047e+29 -5.2598204e+29 -5.2542251e+29 -5.2645089e+29 -5.2728788e+29 -5.2785744e+29 -5.2710273e+29 -5.2669891e+29 -5.2607594e+29 -5.302698e+29 -5.2963012e+29 -5.2966627e+29 -5.2897902e+29 -5.285935e+29 -5.2901036e+29 -5.2934387e+29 -5.2935762e+29 -5.2903088e+29 -5.2841892e+29 -5.2769903e+29 -5.2834542e+29 -5.2794982e+29 -5.2731691e+29 -5.5455695e+29 -5.544911e+29 -5.5558288e+29 -5.5552667e+29 -5.5446931e+29 -5.5444673e+29 -5.5547531e+29 -5.554968e+29 -5.5230778e+29 -5.5224708e+29 -5.5352743e+29 -5.5346164e+29 -5.534336e+29 -5.5340771e+29 -5.5220294e+29 -5.5216626e+29 -5.4663015e+29 -5.4851911e+29 -5.505364e+29 -5.5064501e+29 -5.4482288e+29 -5.4316211e+29 -5.4327499e+29 -5.4494464e+29 -5.4485929e+29 -5.4339088e+29 -5.4355947e+29 -5.4522695e+29 -5.4506048e+29 -5.4870339e+29 -5.4695299e+29 -5.4679261e+29 -5.4855431e+29 -5.4659908e+29 -5.4668027e+29 -5.4844073e+29 -5.4835044e+29 -5.4191312e+29 -5.4032874e+29 -5.4015187e+29 -5.4173378e+29 -5.3881998e+29 -5.3739051e+29 -5.3722521e+29 -5.3863574e+29 -5.368993e+29 -5.3707778e+29 -5.3848653e+29 -5.383418e+29 -5.4161338e+29 -5.400073e+29 -5.3986801e+29 -5.4148284e+29 -5.3652035e+29 -5.3661831e+29 -5.3803168e+29 -5.3794713e+29 -5.3664859e+29 -5.3671707e+29 -5.3816572e+29 -5.3808049e+29 -5.4134564e+29 -5.3971046e+29 -5.3961008e+29 -5.4122694e+29 -5.4114149e+29 -5.3954344e+29 -5.3944015e+29 -5.4101227e+29 -5.4826698e+29 -5.4651718e+29 -5.4638965e+29 -5.4814288e+29 -5.4476391e+29 -5.4303771e+29 -5.4291222e+29 -5.4463351e+29 -5.4264259e+29 -5.4279569e+29 -5.4449055e+29 -5.4430872e+29 -5.479723e+29 -5.4622663e+29 -5.4601548e+29 -5.4773405e+29 -5.5148979e+29 -5.513801e+29 -5.5275616e+29 -5.5263784e+29 -5.525058e+29 -5.5234729e+29 -5.5125138e+29 -5.5108885e+29 -5.4904743e+29 -5.4922233e+29 -5.5008641e+29 -5.4991404e+29 -5.4935055e+29 -5.4947289e+29 -5.5032878e+29 -5.5021238e+29 -5.5176955e+29 -5.5171214e+29 -5.5305764e+29 -5.5298686e+29 -5.5293101e+29 -5.528553e+29 -5.5166381e+29 -5.5158911e+29 -5.4955015e+29 -5.4962379e+29 -5.5049241e+29 -5.5041917e+29 -5.4965912e+29 -5.4970853e+29 -5.5058372e+29 -5.5053078e+29 -5.5412927e+29 -5.5404639e+29 -5.5505866e+29 -5.5514697e+29 -5.5615617e+29 -5.571661e+29 -5.5707156e+29 -5.5606334e+29 -5.5489852e+29 -5.5397828e+29 -5.5497974e+29 -5.5390096e+29 -5.5597746e+29 -5.5697959e+29 -5.5589061e+29 -5.5688392e+29 -5.5380624e+29 -5.53679e+29 -5.5480379e+29 -5.5467489e+29 -5.5566296e+29 -5.5678535e+29 -5.5665458e+29 -5.5579368e+29 -5.5354472e+29 -5.5339251e+29 -5.5438576e+29 -5.5453687e+29 -5.5552373e+29 -5.5537242e+29 -5.5651388e+29 -5.5636175e+29 -5.5222126e+29 -5.5219631e+29 -5.5352914e+29 -5.5350055e+29 -5.5347181e+29 -5.5342412e+29 -5.5216572e+29 -5.521115e+29 -5.5102366e+29 -5.5015044e+29 -5.5010018e+29 -5.5098599e+29 -5.4999224e+29 -5.5005463e+29 -5.5095076e+29 -5.5089554e+29 -5.5205492e+29 -5.5199196e+29 -5.5336693e+29 -5.5329739e+29 -5.5322576e+29 -5.5314456e+29 -5.5192816e+29 -5.5185107e+29 -5.4988737e+29 -5.4994676e+29 -5.5084627e+29 -5.5078623e+29 -5.4976795e+29 -5.4983875e+29 -5.5073121e+29 -5.5065445e+29 -5.5560826e+29 -5.5461571e+29 -5.5564552e+29 -5.5457917e+29 -5.5665935e+29 -5.5662516e+29 -5.5767035e+29 -5.5763836e+29 -5.5552598e+29 -5.5454599e+29 -5.5557028e+29 -5.5450198e+29 -5.5760064e+29 -5.5658613e+29 -5.5653982e+29 -5.575504e+29 -5.5539362e+29 -5.5444925e+29 -5.5547256e+29 -5.5437236e+29 -5.5749651e+29 -5.5648525e+29 -5.5640544e+29 -5.5741681e+29 -5.5522941e+29 -5.5429422e+29 -5.5531178e+29 -5.5421225e+29 -5.5733419e+29 -5.5632211e+29 -5.5623829e+29 -5.5724724e+29 -5.5048971e+29 -5.5041418e+29 -5.5170462e+29 -5.5161639e+29 -5.5155034e+29 -5.5148104e+29 -5.5035581e+29 -5.5028984e+29 -5.4718342e+29 -5.4555501e+29 -5.4550594e+29 -5.4709226e+29 -5.4838482e+29 -5.4844457e+29 -5.4925422e+29 -5.4919134e+29 -5.4848926e+29 -5.4854795e+29 -5.4936867e+29 -5.4930295e+29 -5.5092378e+29 -5.5079414e+29 -5.5218243e+29 -5.5203776e+29 -5.5192209e+29 -5.5181034e+29 -5.5069025e+29 -5.5058537e+29 -5.4748573e+29 -5.4579318e+29 -5.4563776e+29 -5.4729856e+29 -5.4861602e+29 -5.4870497e+29 -5.495455e+29 -5.4945007e+29 -5.4878555e+29 -5.4890772e+29 -5.4975999e+29 -5.4963309e+29 -5.5407391e+29 -5.5323638e+29 -5.5423404e+29 -5.5307838e+29 -5.5522135e+29 -5.5620905e+29 -5.5604468e+29 -5.5506004e+29 -5.5380594e+29 -5.5294927e+29 -5.5393279e+29 -5.5283138e+29 -5.4410563e+29 -5.4245753e+29 -5.4234812e+29 -5.4397001e+29 -5.4236104e+29 -5.4233541e+29 -5.4391817e+29 -5.4391362e+29 -5.5007303e+29 -5.5003074e+29 -5.5121864e+29 -5.5116543e+29 -5.5111606e+29 -5.5104359e+29 -5.4998618e+29 -5.4991446e+29 -5.4693242e+29 -5.4540331e+29 -5.4531293e+29 -5.468277e+29 -5.480999e+29 -5.4818088e+29 -5.4894954e+29 -5.4887302e+29 -5.4822023e+29 -5.4825363e+29 -5.4902453e+29 -5.4898794e+29 -5.5022485e+29 -5.5018389e+29 -5.5140999e+29 -5.5135674e+29 -5.5132059e+29 -5.5127553e+29 -5.5015936e+29 -5.5012003e+29 -5.4702347e+29 -5.454549e+29 -5.4543196e+29 -5.4697631e+29 -5.4828121e+29 -5.4830251e+29 -5.4908927e+29 -5.4906129e+29 -5.4831084e+29 -5.483385e+29 -5.4913528e+29 -5.4910264e+29 -5.438905e+29 -5.4236383e+29 -5.4238277e+29 -5.4388253e+29 -5.4227011e+29 -5.4237649e+29 -5.4386376e+29 -5.4377945e+29 -5.4084973e+29 -5.3937142e+29 -5.3941368e+29 -5.4087529e+29 -5.3792831e+29 -5.3649062e+29 -5.3652953e+29 -5.3795893e+29 -5.3638215e+29 -5.3649522e+29 -5.3792303e+29 -5.3779982e+29 -5.4087242e+29 -5.393821e+29 -5.3924827e+29 -5.4074673e+29 -5.4083587e+29 -5.3927237e+29 -5.3918215e+29 -5.4073321e+29 -5.3777186e+29 -5.3633613e+29 -5.3625099e+29 -5.3767674e+29 -5.3637182e+29 -5.3628458e+29 -5.3769593e+29 -5.3780854e+29 -5.4074678e+29 -5.3919292e+29 -5.3928544e+29 -5.4080648e+29 -5.3599251e+29 -5.3465413e+29 -5.3449348e+29 -5.3581957e+29 -5.3333895e+29 -5.3198232e+29 -5.3182003e+29 -5.3315611e+29 -5.3130403e+29 -5.3158851e+29 -5.3290653e+29 -5.3267371e+29 -5.3565708e+29 -5.3426649e+29 -5.3405157e+29 -5.354552e+29 -5.1315589e+29 -5.0597238e+29 -5.0506051e+29 -5.1244506e+29 -4.9482231e+29 -4.9399724e+29 -5.1198422e+29 -5.0462461e+29 -5.0467068e+29 -5.1184892e+29 -5.2084791e+29 -5.2105859e+29 -5.2539447e+29 -5.2516707e+29 -5.2157764e+29 -5.2222135e+29 -5.2619097e+29 -5.2580163e+29 -5.2837197e+29 -5.286066e+29 -5.3041082e+29 -5.3023598e+29 -5.2998944e+29 -5.2806169e+29 -5.2781312e+29 -5.2970554e+29 -5.2947359e+29 -5.2765676e+29 -5.2750117e+29 -5.2934554e+29 -5.0426574e+29 -5.0456376e+29 -5.1171601e+29 -5.1155247e+29 -5.2501367e+29 -5.2068457e+29 -5.2050416e+29 -5.2483876e+29 -5.1174364e+29 -5.044506e+29 -5.0507209e+29 -5.1209384e+29 -5.2094316e+29 -5.2063778e+29 -5.248185e+29 -5.2501874e+29 -5.2931145e+29 -5.2741015e+29 -5.2750162e+29 -5.2932488e+29 -4.93828e+29 -4.9425592e+29 -4.7812751e+29 -4.7785525e+29 -5.3526728e+29 -5.3385182e+29 -5.3376301e+29 -5.3519131e+29 -5.3242715e+29 -5.3100983e+29 -5.3092275e+29 -5.3233316e+29 -5.3092021e+29 -5.3091202e+29 -5.3232163e+29 -5.3231585e+29 -5.3517526e+29 -5.3374072e+29 -5.3369616e+29 -5.3509331e+29 -5.0459727e+29 -5.0508781e+29 -5.1209944e+29 -5.1180522e+29 -5.1180051e+29 -5.0460406e+29 -5.0505083e+29 -5.1200949e+29 -4.9443516e+29 -4.9445745e+29 -5.0527071e+29 -5.0525131e+29 -5.1213988e+29 -5.122651e+29 -5.0569852e+29 -5.1262251e+29 -5.0648704e+29 -5.1314143e+29 -4.9498181e+29 -4.9600952e+29 -4.7836125e+29 -4.7958212e+29 -5.3492133e+29 -5.3356482e+29 -5.3345519e+29 -5.3482046e+29 -5.3223686e+29 -5.3087308e+29 -5.3077213e+29 -5.3209016e+29 -5.3069832e+29 -5.3207455e+29 -5.3215063e+29 -5.3077287e+29 -5.3485077e+29 -5.3344998e+29 -5.334966e+29 -5.349094e+29 -5.2508075e+29 -5.2098883e+29 -5.2071026e+29 -5.2490461e+29 -5.2751828e+29 -5.2928988e+29 -5.2921271e+29 -5.2741308e+29 -5.2076072e+29 -5.2480729e+29 -5.2063949e+29 -5.2485873e+29 -5.273558e+29 -5.291779e+29 -5.2728623e+29 -5.2908443e+29 -5.2101263e+29 -5.2087341e+29 -5.2494605e+29 -5.2507762e+29 -5.2567026e+29 -5.2138399e+29 -5.2536398e+29 -5.2187524e+29 -5.2775583e+29 -5.294597e+29 -5.295031e+29 -5.278874e+29 -5.275589e+29 -5.2935286e+29 -5.2745071e+29 -5.2927382e+29 -5.3086199e+29 -5.3224812e+29 -5.3229053e+29 -5.3091716e+29 -5.3095985e+29 -5.3229119e+29 -5.3222976e+29 -5.3094051e+29 -5.3355704e+29 -5.3364846e+29 -5.3504935e+29 -5.349444e+29 -5.3366901e+29 -5.3362433e+29 -5.3503533e+29 -5.3507786e+29 -4.7845322e+29 -4.7965541e+29 -4.7827572e+29 -4.7798668e+29 -5.4454035e+29 -5.4385635e+29 -5.4368106e+29 -5.4436821e+29 -5.4319438e+29 -5.42481e+29 -5.4231314e+29 -5.4302015e+29 -5.4190573e+29 -5.4214106e+29 -5.4284303e+29 -5.4260771e+29 -5.4419222e+29 -5.435002e+29 -5.4326081e+29 -5.4394837e+29 -5.4506336e+29 -5.4435748e+29 -5.4494215e+29 -5.4423903e+29 -5.4367765e+29 -5.4294763e+29 -5.4356305e+29 -5.4283508e+29 -5.4345325e+29 -5.4272671e+29 -5.4259813e+29 -5.433167e+29 -5.4482908e+29 -5.4412577e+29 -5.4398424e+29 -5.4467904e+29 -5.3915334e+29 -5.3936818e+29 -5.4008375e+29 -5.3986656e+29 -5.3953044e+29 -5.3969496e+29 -5.4041028e+29 -5.4024771e+29 -5.4179984e+29 -5.4108307e+29 -5.4092155e+29 -5.4163713e+29 -5.4146875e+29 -5.407567e+29 -5.4053269e+29 -5.4123768e+29 -5.4065136e+29 -5.3994398e+29 -5.3981713e+29 -5.4052602e+29 -5.4085399e+29 -5.4013401e+29 -5.4075634e+29 -5.4003935e+29 -5.4225278e+29 -5.4152889e+29 -5.4214534e+29 -5.4142647e+29 -5.4203592e+29 -5.4131821e+29 -5.4119605e+29 -5.4191313e+29 -5.4481549e+29 -5.4450412e+29 -5.4262484e+29 -5.4192211e+29 -5.4156666e+29 -5.4229416e+29 -5.4123481e+29 -5.4048328e+29 -5.4008304e+29 -5.4086051e+29 -5.4299417e+29 -5.4330436e+29 -5.4399083e+29 -5.4368222e+29 -5.4590814e+29 -5.4566307e+29 -5.4542523e+29 -5.4512048e+29 -5.4373137e+29 -5.4304533e+29 -5.4279398e+29 -5.4348481e+29 -5.4238715e+29 -5.4168758e+29 -5.4143383e+29 -5.4213176e+29 -5.4082278e+29 -5.4118015e+29 -5.4188742e+29 -5.4154925e+29 -5.4324513e+29 -5.4254917e+29 -5.4221805e+29 -5.4291423e+29 -5.4361234e+29 -5.4391919e+29 -5.4460142e+29 -5.4430323e+29 -5.4416876e+29 -5.443984e+29 -5.4507859e+29 -5.4484587e+29 -5.4101964e+29 -5.4031961e+29 -5.4005559e+29 -5.4076463e+29 -5.3965372e+29 -5.3895128e+29 -5.3867459e+29 -5.3938183e+29 -5.3794695e+29 -5.3837001e+29 -5.3909562e+29 -5.3868865e+29 -5.405018e+29 -5.3977837e+29 -5.3938553e+29 -5.4012693e+29 -5.3708546e+29 -5.3755945e+29 -5.3830546e+29 -5.3786468e+29 -5.397685e+29 -5.3901128e+29 -5.3858683e+29 -5.3935897e+29 -5.3403016e+29 -5.3466513e+29 -5.3446481e+29 -5.3383175e+29 -5.3435745e+29 -5.3499362e+29 -5.3482525e+29 -5.3418835e+29 -5.3626787e+29 -5.3560761e+29 -5.354382e+29 -5.3610278e+29 -5.3594257e+29 -5.3528097e+29 -5.350777e+29 -5.3574285e+29 -5.3466211e+29 -5.3528867e+29 -5.3513821e+29 -5.3450486e+29 -5.3549696e+29 -5.3488065e+29 -5.3540362e+29 -5.3478234e+29 -5.3673072e+29 -5.3608859e+29 -5.3665308e+29 -5.3600297e+29 -5.3654726e+29 -5.358952e+29 -5.3574741e+29 -5.3640756e+29 -5.380532e+29 -5.3736454e+29 -5.379719e+29 -5.3728458e+29 -5.394458e+29 -5.3872448e+29 -5.3935627e+29 -5.3863928e+29 -5.3926473e+29 -5.3854755e+29 -5.3841603e+29 -5.3913819e+29 -5.3787536e+29 -5.3718513e+29 -5.3704743e+29 -5.377437e+29 -5.363874e+29 -5.3658887e+29 -5.3728717e+29 -5.3708654e+29 -5.3760994e+29 -5.3691225e+29 -5.3674667e+29 -5.3744664e+29 -5.3901023e+29 -5.3828595e+29 -5.3812194e+29 -5.3884604e+29 -5.3868396e+29 -5.3796278e+29 -5.3775764e+29 -5.384743e+29 -5.3202694e+29 -5.3268566e+29 -5.3209881e+29 -5.314279e+29 -5.3401112e+29 -5.3331984e+29 -5.3274066e+29 -5.3343893e+29 -5.3297457e+29 -5.3361301e+29 -5.3315131e+29 -5.3250199e+29 -5.3362208e+29 -5.3425371e+29 -5.3395088e+29 -5.3332037e+29 -5.3553242e+29 -5.348687e+29 -5.34568e+29 -5.3523784e+29 -5.3490839e+29 -5.342356e+29 -5.3378218e+29 -5.3446539e+29 -5.3827395e+29 -5.3755619e+29 -5.3726947e+29 -5.3799491e+29 -5.3687915e+29 -5.3617939e+29 -5.3588508e+29 -5.3658963e+29 -5.3512154e+29 -5.3556189e+29 -5.3627019e+29 -5.3583703e+29 -5.3768235e+29 -5.3695307e+29 -5.3651955e+29 -5.3725079e+29 -5.3684879e+29 -5.3609958e+29 -5.3555971e+29 -5.3634865e+29 -5.3540057e+29 -5.3467774e+29 -5.3411064e+29 -5.3483905e+29 -5.4670292e+29 -5.4597112e+29 -5.4580188e+29 -5.465408e+29 -5.4527249e+29 -5.4452808e+29 -5.4434683e+29 -5.45096e+29 -5.440203e+29 -5.4419242e+29 -5.4495157e+29 -5.4478578e+29 -5.4640655e+29 -5.456613e+29 -5.4549589e+29 -5.4623784e+29 -5.4963643e+29 -5.4951306e+29 -5.4937182e+29 -5.4468433e+29 -5.4486025e+29 -5.4560504e+29 -5.4543027e+29 -5.4586781e+29 -5.4511878e+29 -5.4498942e+29 -5.457364e+29 -5.4730067e+29 -5.4656394e+29 -5.4643589e+29 -5.4717261e+29 -5.4703995e+29 -5.4630254e+29 -5.4612511e+29 -5.4685813e+29 -5.4775397e+29 -5.4848345e+29 -5.4875356e+29 -5.4801837e+29 -5.4862983e+29 -5.4789702e+29 -5.4174821e+29 -5.4191859e+29 -5.4267647e+29 -5.4250818e+29 -5.4294381e+29 -5.4218671e+29 -5.4204823e+29 -5.4280664e+29 -5.4440395e+29 -5.4365078e+29 -5.4352043e+29 -5.4427614e+29 -5.4414763e+29 -5.4339139e+29 -5.4322173e+29 -5.4397407e+29 -5.438162e+29 -5.4306695e+29 -5.4287203e+29 -5.4362905e+29 -5.4139886e+29 -5.4159196e+29 -5.4235157e+29 -5.4215807e+29 -5.4106131e+29 -5.4123921e+29 -5.4199007e+29 -5.4181643e+29 -5.4346474e+29 -5.4269991e+29 -5.425269e+29 -5.4329051e+29 -5.4610461e+29 -5.4536755e+29 -5.4521373e+29 -5.4595926e+29 -5.4465475e+29 -5.4388854e+29 -5.4373215e+29 -5.4449717e+29 -5.4346272e+29 -5.4359766e+29 -5.4436327e+29 -5.442246e+29 -5.4583242e+29 -5.4507936e+29 -5.4493397e+29 -5.4568139e+29 -5.4303503e+29 -5.4314591e+29 -5.438887e+29 -5.4377108e+29 -5.4412094e+29 -5.4336525e+29 -5.4324831e+29 -5.4399579e+29 -5.4556125e+29 -5.448223e+29 -5.4469476e+29 -5.4542885e+29 -5.453138e+29 -5.4458324e+29 -5.4445672e+29 -5.4517493e+29 -5.401994e+29 -5.4027566e+29 -5.4100477e+29 -5.4092019e+29 -5.4034215e+29 -5.4043149e+29 -5.4118207e+29 -5.4108597e+29 -5.4264559e+29 -5.4188986e+29 -5.4178702e+29 -5.4253592e+29 -5.4243566e+29 -5.4169296e+29 -5.4160063e+29 -5.4233293e+29 -5.4051692e+29 -5.4063708e+29 -5.4139029e+29 -5.4126713e+29 -5.4168355e+29 -5.4091869e+29 -5.4075822e+29 -5.4152187e+29 -5.4316008e+29 -5.4239814e+29 -5.4224121e+29 -5.4300529e+29 -5.4286704e+29 -5.4210166e+29 -5.4197646e+29 -5.4273648e+29 -5.3868002e+29 -5.380246e+29 -5.3788918e+29 -5.3854599e+29 -5.3740084e+29 -5.3674094e+29 -5.3661505e+29 -5.3726753e+29 -5.3628582e+29 -5.3647251e+29 -5.3711927e+29 -5.3692901e+29 -5.3840667e+29 -5.3774127e+29 -5.3754592e+29 -5.382153e+29 -5.3558859e+29 -5.3577672e+29 -5.3640819e+29 -5.3622103e+29 -5.3593604e+29 -5.3611605e+29 -5.3674569e+29 -5.365624e+29 -5.3768682e+29 -5.3702191e+29 -5.3683473e+29 -5.3750343e+29 -5.3802673e+29 -5.3735741e+29 -5.3717053e+29 -5.3783748e+29 -5.3887132e+29 -5.3905497e+29 -5.3976108e+29 -5.395866e+29 -5.4002245e+29 -5.3931779e+29 -5.3918338e+29 -5.398859e+29 -5.4146791e+29 -5.4071685e+29 -5.4057832e+29 -5.4132982e+29 -5.4120113e+29 -5.404525e+29 -5.402797e+29 -5.4103168e+29 -5.3941371e+29 -5.3869222e+29 -5.3850037e+29 -5.3922363e+29 -5.4087116e+29 -5.4011597e+29 -5.3992666e+29 -5.4068085e+29 -5.4051848e+29 -5.3976651e+29 -5.3958322e+29 -5.4033936e+29 -5.3816357e+29 -5.3834618e+29 -5.3906441e+29 -5.3888303e+29 -5.3493934e+29 -5.3497596e+29 -5.3558126e+29 -5.3554908e+29 -5.3499474e+29 -5.3504991e+29 -5.3565587e+29 -5.3559985e+29 -5.3681595e+29 -5.3617079e+29 -5.3613518e+29 -5.367775e+29 -5.3690792e+29 -5.3625327e+29 -5.3619389e+29 -5.3684661e+29 -5.3514341e+29 -5.3523415e+29 -5.358431e+29 -5.3574992e+29 -5.3530392e+29 -5.3542493e+29 -5.360506e+29 -5.3592017e+29 -5.3709441e+29 -5.3643944e+29 -5.3634164e+29 -5.3699344e+29 -5.3733801e+29 -5.3666648e+29 -5.3652674e+29 -5.3719215e+29 -5.3872753e+29 -5.3800452e+29 -5.3785348e+29 -5.3857536e+29 -5.4019281e+29 -5.3943331e+29 -5.3927932e+29 -5.4003596e+29 -5.3991579e+29 -5.3916353e+29 -5.3904982e+29 -5.397999e+29 -5.3764374e+29 -5.3774849e+29 -5.3846334e+29 -5.3835506e+29 -5.3827275e+29 -5.3756191e+29 -5.374958e+29 -5.382039e+29 -5.397163e+29 -5.3896811e+29 -5.3889371e+29 -5.3963522e+29 -5.3957469e+29 -5.3884178e+29 -5.3878167e+29 -5.3950761e+29 -5.3741344e+29 -5.3745826e+29 -5.3815806e+29 -5.3810687e+29 -4.9450112e+29 -4.9508129e+29 -4.9585745e+29 -4.9524256e+29 -5.0707819e+29 -5.0792105e+29 -5.0681538e+29 -5.0671815e+29 -5.1471399e+29 -5.1467044e+29 -5.1517757e+29 -5.1589169e+29 -5.066835e+29 -5.1455548e+29 -5.1495868e+29 -5.0728914e+29 -5.1444366e+29 -5.0672749e+29 -5.1457366e+29 -5.0649275e+29 -4.9518096e+29 -4.9565257e+29 -4.9489493e+29 -4.9444045e+29 -5.3112155e+29 -5.3128016e+29 -5.3182064e+29 -5.3167522e+29 -5.3142977e+29 -5.3161188e+29 -5.3212294e+29 -5.3195303e+29 -5.3314201e+29 -5.3260999e+29 -5.3243778e+29 -5.3297216e+29 -5.3285663e+29 -5.3232147e+29 -5.3218606e+29 -5.3272603e+29 -5.3177013e+29 -5.319316e+29 -5.3246514e+29 -5.322976e+29 -5.3263495e+29 -5.3209019e+29 -5.3203038e+29 -5.3257109e+29 -5.3371009e+29 -5.3314963e+29 -5.3307837e+29 -5.3362688e+29 -5.3350757e+29 -5.3296762e+29 -5.3279401e+29 -5.33332e+29 -5.3387365e+29 -5.3404885e+29 -5.3464128e+29 -5.3446734e+29 -5.348652e+29 -5.3426192e+29 -5.3417022e+29 -5.3476879e+29 -5.3611143e+29 -5.3546375e+29 -5.3535776e+29 -5.3599679e+29 -5.3585816e+29 -5.3522759e+29 -5.3505067e+29 -5.3567753e+29 -5.3550956e+29 -5.3488288e+29 -5.3470694e+29 -5.3533414e+29 -5.3429058e+29 -5.3369335e+29 -5.3352055e+29 -5.3411789e+29 -5.3325895e+29 -5.3339589e+29 -5.3398044e+29 -5.3382832e+29 -5.3517605e+29 -5.3455918e+29 -5.3439136e+29 -5.3499505e+29 -5.2589486e+29 -5.237585e+29 -5.261781e+29 -5.2328986e+29 -5.2795844e+29 -5.2909134e+29 -5.2897908e+29 -5.2774504e+29 -5.2533058e+29 -5.2290346e+29 -5.2557622e+29 -5.2265257e+29 -5.2749914e+29 -5.2879328e+29 -5.2853072e+29 -5.2723986e+29 -5.2674641e+29 -5.280437e+29 -5.2791868e+29 -5.2670436e+29 -5.2487789e+29 -5.2238659e+29 -5.2505528e+29 -5.2212919e+29 -5.2701066e+29 -5.283526e+29 -5.281459e+29 -5.2682435e+29 -5.2479357e+29 -5.2206702e+29 -5.2477825e+29 -5.2221045e+29 -5.2978404e+29 -5.3042118e+29 -5.3035484e+29 -5.2969666e+29 -5.2955882e+29 -5.302411e+29 -5.3004402e+29 -5.2932482e+29 -5.3092168e+29 -5.3098197e+29 -5.3155385e+29 -5.3149865e+29 -5.3064249e+29 -5.3082022e+29 -5.3139871e+29 -5.3123504e+29 -5.3028791e+29 -5.3048736e+29 -5.3107832e+29 -5.3088812e+29 -5.2916101e+29 -5.2988298e+29 -5.2967967e+29 -5.2895053e+29 -5.2881955e+29 -5.2952194e+29 -5.2935922e+29 -5.2865681e+29 -5.2996036e+29 -5.3012381e+29 -5.3072762e+29 -5.3056601e+29 -5.2458571e+29 -5.2217136e+29 -5.24712e+29 -5.2195019e+29 -5.265759e+29 -5.2783971e+29 -5.2771136e+29 -5.2644803e+29 -5.2632497e+29 -5.2758588e+29 -5.2749916e+29 -5.2626005e+29 -5.244896e+29 -5.2192793e+29 -5.2449443e+29 -5.2200674e+29 -5.2971414e+29 -5.2985864e+29 -5.3044589e+29 -5.3030175e+29 -5.2859109e+29 -5.2927331e+29 -5.2913242e+29 -5.2845696e+29 -5.2833046e+29 -5.289995e+29 -5.288992e+29 -5.2822351e+29 -5.2948424e+29 -5.2958297e+29 -5.3017458e+29 -5.30081e+29 -5.2447856e+29 -5.2193486e+29 -5.2193337e+29 -5.2449013e+29 -5.2757478e+29 -5.26295e+29 -5.2632632e+29 -5.2752191e+29 -5.2643292e+29 -5.2651767e+29 -5.2758534e+29 -5.2756731e+29 -5.2478489e+29 -5.2208287e+29 -5.246168e+29 -5.2238135e+29 -5.2822547e+29 -5.282563e+29 -5.2886519e+29 -5.2883232e+29 -5.2824743e+29 -5.2890655e+29 -5.2890547e+29 -5.282766e+29 -5.2944951e+29 -5.2947039e+29 -5.3004776e+29 -5.3001585e+29 -5.2937008e+29 -5.294048e+29 -5.2996493e+29 -5.299282e+29 -5.3483437e+29 -5.3424399e+29 -5.3413588e+29 -5.3472179e+29 -5.336914e+29 -5.3313917e+29 -5.3303374e+29 -5.3358622e+29 -5.3287126e+29 -5.3295307e+29 -5.3351686e+29 -5.3343977e+29 -5.3465739e+29 -5.3407039e+29 -5.3398715e+29 -5.3456984e+29 -5.326098e+29 -5.3206819e+29 -5.3194627e+29 -5.3250123e+29 -5.3154381e+29 -5.3099066e+29 -5.3084813e+29 -5.314128e+29 -5.3064235e+29 -5.3073417e+29 -5.3130479e+29 -5.3121766e+29 -5.3240963e+29 -5.3184616e+29 -5.3175885e+29 -5.3232619e+29 -5.3447478e+29 -5.3390074e+29 -5.3384332e+29 -5.34421e+29 -5.3336033e+29 -5.3280173e+29 -5.3274309e+29 -5.3329974e+29 -5.3261859e+29 -5.32686e+29 -5.3325355e+29 -5.3319697e+29 -5.3439893e+29 -5.3380987e+29 -5.3375695e+29 -5.3435736e+29 -5.3225575e+29 -5.316957e+29 -5.3163994e+29 -5.3220119e+29 -5.3055105e+29 -5.3059445e+29 -5.3115818e+29 -5.3111005e+29 -5.3045915e+29 -5.3050187e+29 -5.3105591e+29 -5.3100475e+29 -5.3214258e+29 -5.3158404e+29 -5.3152184e+29 -5.3207728e+29 -5.2951613e+29 -5.2970117e+29 -5.3018421e+29 -5.3000966e+29 -5.2984325e+29 -5.2998741e+29 -5.3046433e+29 -5.3031556e+29 -5.3143203e+29 -5.3092434e+29 -5.307687e+29 -5.3127338e+29 -5.3115034e+29 -5.30648e+29 -5.3047803e+29 -5.3098597e+29 -5.3012379e+29 -5.3026664e+29 -5.3077273e+29 -5.3062208e+29 -5.3094853e+29 -5.304221e+29 -5.3036068e+29 -5.3087808e+29 -5.3199711e+29 -5.3145249e+29 -5.3137027e+29 -5.3190223e+29 -5.3177823e+29 -5.3125717e+29 -5.3109544e+29 -5.3161209e+29 -5.3149937e+29 -5.3166977e+29 -5.3223962e+29 -5.3206371e+29 -5.3254666e+29 -5.3196609e+29 -5.3180143e+29 -5.3238221e+29 -5.3374946e+29 -5.3312723e+29 -5.3295981e+29 -5.335828e+29 -5.334262e+29 -5.328112e+29 -5.3262488e+29 -5.3323542e+29 -5.3213793e+29 -5.3230624e+29 -5.3288046e+29 -5.3271528e+29 -5.3311417e+29 -5.3253672e+29 -5.3243248e+29 -5.3301063e+29 -5.3428985e+29 -5.3368365e+29 -5.3357903e+29 -5.3419076e+29 -5.3406398e+29 -5.3345188e+29 -5.3328621e+29 -5.3390489e+29 -5.1422259e+29 -5.1432638e+29 -5.2376309e+29 -5.2126026e+29 -5.2372919e+29 -5.2139098e+29 -5.214489e+29 -5.2391602e+29 -5.2128061e+29 -5.237686e+29 -5.2558464e+29 -5.2699597e+29 -5.2573109e+29 -5.2686546e+29 -5.2676701e+29 -5.2552447e+29 -5.2663681e+29 -5.2548288e+29 -5.1487621e+29 -5.1443874e+29 -5.2173889e+29 -5.2426598e+29 -5.2411272e+29 -5.2161396e+29 -5.2236614e+29 -5.220244e+29 -5.2472559e+29 -5.244942e+29 -5.2625869e+29 -5.2756848e+29 -5.2644745e+29 -5.2746128e+29 -5.2731491e+29 -5.260787e+29 -5.2589919e+29 -5.2711934e+29 -5.2786092e+29 -5.2803416e+29 -5.2867058e+29 -5.2852446e+29 -5.2882574e+29 -5.2822812e+29 -5.2815492e+29 -5.2877746e+29 -5.2931131e+29 -5.2935708e+29 -5.2990333e+29 -5.2985332e+29 -5.2907616e+29 -5.2921683e+29 -5.2976006e+29 -5.296214e+29 -5.2881669e+29 -5.2895467e+29 -5.2949112e+29 -5.2935668e+29 -5.2839801e+29 -5.2773984e+29 -5.27608e+29 -5.2826391e+29 -5.2748808e+29 -5.2812605e+29 -5.279583e+29 -5.2733064e+29 -5.2849258e+29 -5.2867266e+29 -5.2920867e+29 -5.2902571e+29 -5.141083e+29 -5.2110014e+29 -5.2315374e+29 -5.2095973e+29 -5.2284893e+29 -5.2414181e+29 -5.2455249e+29 -5.2485459e+29 -5.2541242e+29 -5.142695e+29 -5.1415462e+29 -5.2107295e+29 -5.2339905e+29 -5.2333519e+29 -5.2111761e+29 -5.2130747e+29 -5.2113019e+29 -5.2364547e+29 -5.2349341e+29 -5.252063e+29 -5.2653504e+29 -5.2536997e+29 -5.263612e+29 -5.2615317e+29 -5.2505243e+29 -5.2485002e+29 -5.2580308e+29 -5.2635542e+29 -5.267477e+29 -5.2728676e+29 -5.268693e+29 -5.2700206e+29 -5.2720329e+29 -5.2779981e+29 -5.2757469e+29 -5.2806269e+29 -5.2831543e+29 -5.2882962e+29 -5.2855601e+29 -5.2730306e+29 -5.2775155e+29 -5.2822324e+29 -5.2775363e+29 -5.2654304e+29 -5.2680002e+29 -5.2722882e+29 -5.2612953e+29 -5.2531776e+29 -5.2591588e+29 -5.2639081e+29 -5.2574754e+29 -5.2764252e+29 -5.2811231e+29 -5.2745855e+29 -5.2696874e+29 -5.2911161e+29 -5.2858133e+29 -5.2793453e+29 -5.2848241e+29 -5.2865112e+29 -5.2867365e+29 -5.2914535e+29 -5.28183e+29 -5.2980172e+29 -5.293119e+29 -5.2902061e+29 -5.2950399e+29 -5.3078175e+29 -5.3027466e+29 -5.2997143e+29 -5.3048228e+29 -5.3011903e+29 -5.2961005e+29 -5.2911097e+29 -5.2962952e+29 -5.3022055e+29 -5.2964031e+29 -5.2902178e+29 -5.296171e+29 -5.3141428e+29 -5.307921e+29 -5.3019424e+29 -5.3081322e+29 -5.3014576e+29 -5.3063503e+29 -5.3119946e+29 -5.3071936e+29 -5.3185798e+29 -5.3129672e+29 -5.3099544e+29 -5.3155865e+29 -5.3302554e+29 -5.324195e+29 -5.321187e+29 -5.3272666e+29 -5.3237443e+29 -5.317634e+29 -5.3128017e+29 -5.319005e+29 -4.9409122e+29 -4.9462033e+29 -4.950675e+29 -4.9448222e+29 -4.9436865e+29 -4.9403163e+29 -4.9441718e+29 -4.948213e+29 -4.6542523e+29 -4.6855719e+29 -4.6905114e+29 -4.6612978e+29 -4.8952805e+29 -4.8859364e+29 -4.960039e+29 -4.9588453e+29 -5.2303104e+29 -5.1954578e+29 -5.1055889e+29 -5.1983578e+29 -5.0739196e+29 -5.0720165e+29 -5.1029769e+29 -5.42291e+29 -5.3100805e+29 -5.303224e+29 -5.4123675e+29 -5.344109e+29 -5.4475145e+29 -5.5730246e+29 -5.560811e+29 -5.5645093e+29 -5.5536221e+29 -5.5970153e+29 -5.6088888e+29 -5.3441935e+29 -5.5630602e+29 -5.6766967e+29 -5.6662456e+29 -5.55428e+29 -5.3170882e+29 -5.4403671e+29 -5.3236388e+29 -5.4318057e+29 -5.5911945e+29 -5.5824056e+29 -5.6673954e+29 -5.7129883e+29 -5.7044221e+29 -5.6594856e+29 -5.7605319e+29 -5.7559181e+29 -5.7512642e+29 -5.7466899e+29 -5.6784756e+29 -5.7254323e+29 -5.7194104e+29 -5.6730095e+29 -5.7667619e+29 -5.7634109e+29 -5.7737222e+29 -5.7701636e+29 -5.6490376e+29 -5.6568864e+29 -5.6312112e+29 -5.6238436e+29 -5.6515789e+29 -5.6440255e+29 -5.6715928e+29 -5.6941936e+29 -5.6858593e+29 -5.6637171e+29 -5.6168757e+29 -5.6087405e+29 -5.6292279e+29 -5.6371611e+29 -5.6567016e+29 -5.6507233e+29 -5.6714815e+29 -5.6775751e+29 -5.6978756e+29 -5.7208119e+29 -5.7142455e+29 -5.6915975e+29 -5.6783555e+29 -5.685475e+29 -5.7078337e+29 -5.7008632e+29 -5.644541e+29 -5.6374792e+29 -5.65816e+29 -5.6653038e+29 -5.7421614e+29 -5.7139595e+29 -5.7023599e+29 -5.6866676e+29 -5.7353352e+29 -5.6831648e+29 -5.7306829e+29 -5.7784538e+29 -5.7760599e+29 -5.7807655e+29 -5.7832998e+29 -5.7446581e+29 -5.695061e+29 -5.6900793e+29 -5.7393481e+29 -5.3767195e+29 -5.3670823e+29 -5.3599939e+29 -5.3695068e+29 -5.3807147e+29 -5.3899158e+29 -5.3832385e+29 -5.3738307e+29 -5.3671184e+29 -5.3678277e+29 -5.354915e+29 -5.3621682e+29 -5.3797095e+29 -5.3717273e+29 -5.3792392e+29 -5.3679373e+29 -5.3569168e+29 -5.3540758e+29 -5.3626663e+29 -5.4117201e+29 -5.4018039e+29 -5.3682842e+29 -5.3743705e+29 -5.3931543e+29 -5.38655e+29 -5.4102314e+29 -5.4032526e+29 -5.4219125e+29 -5.4290964e+29 -5.3876449e+29 -5.3959972e+29 -5.4057919e+29 -5.4144083e+29 -5.3913274e+29 -5.4046918e+29 -5.4150017e+29 -5.4089247e+29 -5.3988637e+29 -5.37956e+29 -5.3929111e+29 -5.4027509e+29 -5.3960697e+29 -5.3867114e+29 -5.3436202e+29 -5.3551667e+29 -5.4443561e+29 -5.4554537e+29 -5.5004232e+29 -5.4879895e+29 -5.4903657e+29 -5.4714509e+29 -5.4622099e+29 -5.4810509e+29 -5.5064643e+29 -5.4871106e+29 -5.4793891e+29 -5.4983638e+29 -5.4416845e+29 -5.4490093e+29 -5.468554e+29 -5.4610362e+29 -5.4339563e+29 -5.4531474e+29 -5.4440139e+29 -5.4250218e+29 -5.41819e+29 -5.4266637e+29 -5.4330027e+29 -5.4244649e+29 -5.4348651e+29 -5.4412445e+29 -5.4496141e+29 -5.443104e+29 -5.4367078e+29 -5.4284696e+29 -5.4214942e+29 -5.429881e+29 -5.4119353e+29 -5.4203341e+29 -5.4132993e+29 -5.4049607e+29 -5.4083042e+29 -5.4153131e+29 -5.4237984e+29 -5.4167502e+29 -5.4070575e+29 -5.3986875e+29 -5.3918558e+29 -5.4001079e+29 -5.3855354e+29 -5.3937153e+29 -5.386548e+29 -5.3782756e+29 -5.4017649e+29 -5.4100775e+29 -5.4028614e+29 -5.3945862e+29 -5.458153e+29 -5.4421488e+29 -5.4491894e+29 -5.451259e+29 -5.4406453e+29 -5.4321106e+29 -5.4250288e+29 -5.433516e+29 -5.4111603e+29 -5.4183106e+29 -5.4268455e+29 -5.4196442e+29 -5.4354345e+29 -5.444498e+29 -5.4367081e+29 -5.4279938e+29 -5.4769054e+29 -5.4743235e+29 -5.4828817e+29 -5.4681075e+29 -5.4577762e+29 -5.4660773e+29 -5.4596625e+29 -5.4512574e+29 -5.4619801e+29 -5.4551787e+29 -5.4639774e+29 -5.4708763e+29 -5.4449752e+29 -5.4382222e+29 -5.4466752e+29 -5.4534589e+29 -5.4207452e+29 -5.4284075e+29 -5.4135335e+29 -5.6018685e+29 -5.6069568e+29 -5.6118118e+29 -5.5970613e+29 -5.5926585e+29 -5.6025607e+29 -5.597881e+29 -5.5879596e+29 -5.6074958e+29 -5.6122573e+29 -5.6227829e+29 -5.6178102e+29 -5.6215244e+29 -5.627341e+29 -5.6321807e+29 -5.6166561e+29 -5.5839601e+29 -5.5938208e+29 -5.588976e+29 -5.5790731e+29 -5.5693028e+29 -5.574467e+29 -5.5843485e+29 -5.579055e+29 -5.4908801e+29 -5.4970101e+29 -5.5021748e+29 -5.5064464e+29 -5.5116521e+29 -5.5033375e+29 -5.4975373e+29 -5.4850303e+29 -5.5113222e+29 -5.5161588e+29 -5.5207653e+29 -5.5067823e+29 -5.5244282e+29 -5.5291754e+29 -5.537953e+29 -5.5330576e+29 -5.5200167e+29 -5.5285862e+29 -5.5235156e+29 -5.5148426e+29 -5.5193874e+29 -5.505518e+29 -5.5113389e+29 -5.5134944e+29 -5.4931943e+29 -5.4995523e+29 -5.5074669e+29 -5.5012309e+29 -5.4789662e+29 -5.4915248e+29 -5.4850529e+29 -5.4721104e+29 -5.5316259e+29 -5.5386945e+29 -5.5579258e+29 -5.5502872e+29 -5.5974476e+29 -5.5767878e+29 -5.568842e+29 -5.5893557e+29 -5.6045847e+29 -5.6119945e+29 -5.5914857e+29 -5.5839799e+29 -5.5528751e+29 -5.5454294e+29 -5.5649558e+29 -5.5724296e+29 -5.527599e+29 -5.5236301e+29 -5.5332436e+29 -5.5373612e+29 -5.5459687e+29 -5.5548959e+29 -5.5504363e+29 -5.5416856e+29 -5.5376968e+29 -5.5331979e+29 -5.541923e+29 -5.5463335e+29 -5.5197413e+29 -5.529321e+29 -5.5247756e+29 -5.5152361e+29 -5.5547131e+29 -5.5638159e+29 -5.5592541e+29 -5.5502197e+29 -5.5589263e+29 -5.5634686e+29 -5.5727286e+29 -5.5681141e+29 -5.5832499e+29 -5.5731489e+29 -5.5685323e+29 -5.5785793e+29 -5.5821925e+29 -5.5774789e+29 -5.5876493e+29 -5.592434e+29 -5.5463588e+29 -5.5505227e+29 -5.5554008e+29 -5.541464e+29 -5.5369515e+29 -5.5459763e+29 -5.5409043e+29 -5.5318873e+29 -5.5501102e+29 -5.5551487e+29 -5.5650927e+29 -5.5600377e+29 -5.5646208e+29 -5.5746186e+29 -5.5696841e+29 -5.5596963e+29 -5.4521119e+29 -5.4584739e+29 -5.4654462e+29 -5.4438653e+29 -5.4658211e+29 -5.4722396e+29 -5.4787184e+29 -5.4592621e+29 -5.4801969e+29 -5.4868322e+29 -5.4948789e+29 -5.4880088e+29 -5.4737036e+29 -5.481297e+29 -5.4745653e+29 -5.4672234e+29 -5.5299355e+29 -5.5136766e+29 -5.5207505e+29 -5.5230466e+29 -5.5116642e+29 -5.5031313e+29 -5.5045967e+29 -5.49614e+29 -5.4906871e+29 -5.4975647e+29 -5.4892363e+29 -5.4824288e+29 -5.506604e+29 -5.516012e+29 -5.5091353e+29 -5.4997747e+29 -5.527713e+29 -5.5305729e+29 -5.5364199e+29 -5.5218449e+29 -5.5094928e+29 -5.5157674e+29 -5.5244422e+29 -5.5180804e+29 -5.5272453e+29 -5.5337751e+29 -5.5432492e+29 -5.5364621e+29 -5.545826e+29 -5.5554348e+29 -5.5495566e+29 -5.5399458e+29 -5.4613609e+29 -5.4679765e+29 -5.4383785e+29 -5.4550205e+29 -5.4444706e+29 -5.4755969e+29 -5.4837947e+29 -5.4929189e+29 -5.5022721e+29 -4.9684155e+29 -5.0339053e+29 -5.0332011e+29 -5.052715e+29 -5.2881409e+29 -5.3290662e+29 -5.3121463e+29 -5.3191169e+29 -5.3419429e+29 -5.3139551e+29 -5.3358188e+29 -5.3363999e+29 -5.3530275e+29 -5.3428104e+29 -5.3262557e+29 -5.2391048e+29 -5.242485e+29 -5.3022768e+29 -5.3084161e+29 -5.2540216e+29 -5.2914353e+29 -5.2870914e+29 -5.2505258e+29 -5.2601242e+29 -5.2989144e+29 -5.2953437e+29 -5.257181e+29 -5.3232879e+29 -5.3278195e+29 -5.3523848e+29 -5.3470042e+29 -5.3108818e+29 -5.2750452e+29 -5.267043e+29 -5.3014382e+29 -5.19322e+29 -5.1499368e+29 -5.1354971e+29 -5.1481194e+29 -5.1962577e+29 -5.105977e+29 -5.176536e+29 -5.1743801e+29 -5.1052891e+29 -5.1382506e+29 -5.2117514e+29 -5.2071461e+29 -5.2701186e+29 -5.2348635e+29 -5.2296433e+29 -5.2616902e+29 -4.8128418e+29 -4.8217497e+29 -4.8113385e+29 -4.8004542e+29 -4.9700972e+29 -4.8132866e+29 -4.8001125e+29 -4.7966846e+29 -4.8100333e+29 -5.0527371e+29 -5.0535639e+29 -5.0435438e+29 -5.0474217e+29 -5.0554554e+29 -5.0513912e+29 -5.0434345e+29 -5.0464907e+29 -5.0541724e+29 -5.0511246e+29 -5.0613143e+29 -5.0572213e+29 -5.0728637e+29 -5.0682862e+29 -5.0566655e+29 -5.0592252e+29 -5.0676769e+29 -5.0708394e+29 -5.0448574e+29 -5.0470037e+29 -5.0542995e+29 -5.051343e+29 -5.0458181e+29 -5.0517419e+29 -5.0554085e+29 -5.0477353e+29 -5.0583783e+29 -5.053424e+29 -5.070448e+29 -5.067018e+29 -5.0524284e+29 -5.0598493e+29 -5.0698358e+29 -5.0670317e+29 -5.1245804e+29 -5.1839408e+29 -5.1609941e+29 -5.1023386e+29 -5.1001934e+29 -5.1229454e+29 -5.1671109e+29 -5.1935667e+29 -5.1948115e+29 -5.1943219e+29 -5.178586e+29 -5.1995702e+29 -5.2730966e+29 -5.2832049e+29 -5.2985937e+29 -5.2875627e+29 -5.2975547e+29 -5.3173575e+29 -5.3093287e+29 -5.3052848e+29 -5.2883079e+29 -5.3305132e+29 -5.3192174e+29 -5.3124261e+29 -5.3241886e+29 -5.2283626e+29 -5.2472315e+29 -5.2391912e+29 -5.2362103e+29 -5.2760403e+29 -5.264323e+29 -5.2729605e+29 -5.281699e+29 -5.2725956e+29 -5.2528819e+29 -5.262851e+29 -5.255167e+29 -5.2468608e+29 -5.2639222e+29 -5.2558929e+29 -5.2449338e+29 -5.2532223e+29 -5.2489847e+29 -5.1970252e+29 -5.226186e+29 -5.2061524e+29 -5.2160967e+29 -5.2146284e+29 -5.2377479e+29 -5.2331341e+29 -5.2114812e+29 -5.1805897e+29 -5.2794901e+29 -5.2614363e+29 -5.2705149e+29 -5.2824018e+29 -5.2725824e+29 -5.2904832e+29 -5.255063e+29 -5.2620098e+29 -5.2877372e+29 -5.293623e+29 -5.2795948e+29 -5.267144e+29 -5.2698608e+29 -5.2811672e+29 -5.2763464e+29 -5.2783245e+29 -5.2808499e+29 -5.2730899e+29 -5.2771746e+29 -5.2545939e+29 -5.2605352e+29 -5.2606305e+29 -5.26316e+29 -5.2688419e+29 -5.2662938e+29 -5.2599511e+29 -5.2659651e+29 -5.2520104e+29 -5.2497823e+29 -5.2549184e+29 -5.2573092e+29 -5.2472188e+29 -5.2489786e+29 -5.2483968e+29 -5.2548427e+29 -5.2540145e+29 -5.2534977e+29 -5.2895688e+29 -5.2913704e+29 -5.2984044e+29 -5.3110265e+29 -5.3098463e+29 -5.3223403e+29 -5.3045626e+29 -5.3171773e+29 -5.2982567e+29 -5.303932e+29 -5.2978364e+29 -5.2917065e+29 -5.2784377e+29 -5.2844991e+29 -5.2831867e+29 -5.2905479e+29 -5.2851377e+29 -5.2916136e+29 -5.2723756e+29 -5.2747067e+29 -5.281027e+29 -5.2788309e+29 -5.2857754e+29 -5.287844e+29 -5.2946673e+29 -5.2928337e+29 -5.2916167e+29 -5.2926475e+29 -5.2855046e+29 -5.291747e+29 -5.2721177e+29 -5.2785519e+29 -5.2059991e+29 -5.2095805e+29 -5.2080846e+29 -5.2035171e+29 -5.2202607e+29 -5.231419e+29 -5.2102946e+29 -5.2302934e+29 -5.2197091e+29 -5.2120468e+29 -5.2100726e+29 -5.2083578e+29 -5.2319159e+29 -5.2379921e+29 -5.2404816e+29 -5.2487526e+29 -5.2372978e+29 -5.2455012e+29 -5.2466033e+29 -5.243799e+29 -5.2519746e+29 -5.2493198e+29 -5.2142903e+29 -5.2226938e+29 -5.2174622e+29 -5.2192078e+29 -5.2081353e+29 -5.2153805e+29 -5.2112762e+29 -5.2199183e+29 -5.2201357e+29 -5.2150431e+29 -5.2254103e+29 -5.2277743e+29 -5.224018e+29 -5.2271126e+29 -5.2321267e+29 -5.2305285e+29 -5.2320367e+29 -5.2073584e+29 -5.22131e+29 -5.2309421e+29 -5.2253046e+29 -5.2367925e+29 -5.2290037e+29 -5.240257e+29 -5.2367103e+29 -5.2352789e+29 -5.2387624e+29 -5.2419248e+29 -5.2440285e+29 -5.2471373e+29 -5.245206e+29 -5.2442002e+29 -5.2403724e+29 -5.2372579e+29 -5.2338481e+29 -5.3625879e+29 -5.372225e+29 -5.3431445e+29 -5.3505218e+29 -5.3584829e+29 -5.3699821e+29 -5.3641684e+29 -5.3563593e+29 -5.3489227e+29 -5.3535017e+29 -5.3488113e+29 -5.340086e+29 -5.3452621e+29 -5.3327607e+29 -5.3376525e+29 -5.337484e+29 -5.3437797e+29 -5.3345635e+29 -5.327054e+29 -5.3286208e+29 -5.3828471e+29 -5.3894119e+29 -5.3771433e+29 -5.3816093e+29 -5.3705329e+29 -5.3895959e+29 -5.3967964e+29 -5.3964703e+29 -5.4041628e+29 -5.4246619e+29 -5.426897e+29 -5.4305805e+29 -5.417414e+29 -5.4183485e+29 -5.4225654e+29 -5.4034274e+29 -5.4116682e+29 -5.4104276e+29 -5.4104768e+29 -5.415481e+29 -5.3985158e+29 -5.3943692e+29 -5.4016542e+29 -5.4092731e+29 -5.405312e+29 -5.4133513e+29 -5.4175481e+29 -5.4226674e+29 -5.4265065e+29 -5.4181812e+29 -5.4097703e+29 -5.4072313e+29 -5.4153541e+29 -5.4135947e+29 -5.4056247e+29 -5.3904635e+29 -5.3918728e+29 -5.3978771e+29 -5.3992935e+29 -5.3680584e+29 -5.3654541e+29 -5.3694217e+29 -5.3732133e+29 -5.3785898e+29 -5.3728936e+29 -5.3801695e+29 -5.3848251e+29 -5.3914373e+29 -5.3871678e+29 -5.3845394e+29 -5.3772898e+29 -5.3759239e+29 -5.383136e+29 -5.3698667e+29 -5.3624461e+29 -5.3613153e+29 -5.3686286e+29 -5.4127392e+29 -5.412742e+29 -5.4048076e+29 -5.4048403e+29 -5.397086e+29 -5.3896496e+29 -5.3895482e+29 -5.397031e+29 -5.4060499e+29 -5.4139328e+29 -5.390481e+29 -5.3981106e+29 -5.3823509e+29 -5.3751577e+29 -5.3750445e+29 -5.3821644e+29 -5.3680315e+29 -5.3607571e+29 -5.3608022e+29 -5.3679438e+29 -5.383008e+29 -5.3757614e+29 -5.3685723e+29 -5.3608959e+29 -5.3615063e+29 -5.3592609e+29 -5.3391173e+29 -5.345041e+29 -5.341098e+29 -5.3347656e+29 -5.3321463e+29 -5.3390579e+29 -5.3553028e+29 -5.3513823e+29 -5.3632154e+29 -5.3581243e+29 -5.361403e+29 -5.3702824e+29 -5.3709021e+29 -5.3463013e+29 -5.3478265e+29 -5.3537471e+29 -5.3549247e+29 -5.3299136e+29 -5.3305143e+29 -5.337691e+29 -5.3371829e+29 -5.3295483e+29 -5.3368326e+29 -5.3451243e+29 -5.3537606e+29 -5.3524665e+29 -5.3518685e+29 -5.3451157e+29 -5.3453206e+29 -5.3531838e+29 -5.3531374e+29 -5.3188143e+29 -5.3169783e+29 -5.3228627e+29 -5.3149857e+29 -5.3279891e+29 -5.3280334e+29 -5.3222779e+29 -5.3332452e+29 -5.3041615e+29 -5.3099372e+29 -5.3152942e+29 -5.3193755e+29 -5.3106458e+29 -5.3177512e+29 -5.3216017e+29 -5.3281973e+29 -5.3250459e+29 -5.323374e+29 -5.3159444e+29 -5.3150028e+29 -5.3225609e+29 -5.2997706e+29 -5.3015614e+29 -5.3086266e+29 -5.3073449e+29 -5.3224093e+29 -5.3149699e+29 -5.2971789e+29 -5.2980041e+29 -5.2988378e+29 -5.3070939e+29 -5.4618965e+29 -5.4516801e+29 -5.4553271e+29 -5.4351923e+29 -5.4693211e+29 -5.4774524e+29 -5.4954126e+29 -5.4862824e+29 -5.4469596e+29 -5.4396501e+29 -5.4316825e+29 -5.4385436e+29 -5.4346914e+29 -5.4267843e+29 -5.4348128e+29 -5.4519965e+29 -5.4566e+29 -5.4434348e+29 -5.4485076e+29 -5.4237282e+29 -5.4318448e+29 -5.4298882e+29 -5.4217861e+29 -5.4468207e+29 -5.4488331e+29 -5.4382063e+29 -5.4402358e+29 -5.4575208e+29 -5.4663056e+29 -5.4644248e+29 -5.4555498e+29 -5.4604962e+29 -5.4646528e+29 -5.4729951e+29 -5.4691219e+29 -5.4780408e+29 -5.4818061e+29 -5.4909586e+29 -5.4871891e+29 -5.4844801e+29 -5.4752972e+29 -5.4734625e+29 -5.4826402e+29 -5.4548648e+29 -5.4636926e+29 -5.4641054e+29 -5.4551155e+29 -5.4209709e+29 -5.4290622e+29 -5.428983e+29 -5.4209999e+29 -5.422459e+29 -5.4301847e+29 -5.4496256e+29 -5.4477256e+29 -5.4464983e+29 -5.4473582e+29 -5.4384481e+29 -5.4367087e+29 -5.4383771e+29 -5.4461511e+29 -5.4461205e+29 -5.4373361e+29 -5.4374462e+29 -5.3629081e+29 -5.3677874e+29 -5.3756794e+29 -5.3714546e+29 -5.3694626e+29 -5.357798e+29 -5.3906754e+29 -5.3832667e+29 -5.379504e+29 -5.3869288e+29 -5.3840056e+29 -5.3766794e+29 -5.4199284e+29 -5.4128672e+29 -5.409383e+29 -5.4166523e+29 -5.4141862e+29 -5.4066883e+29 -5.394377e+29 -5.3980774e+29 -5.4055274e+29 -5.4019117e+29 -5.3990255e+29 -5.3914282e+29 -5.4239587e+29 -5.4268548e+29 -5.4337685e+29 -5.4412524e+29 -5.4489362e+29 -5.4310253e+29 -5.429063e+29 -5.4218391e+29 -5.3314909e+29 -5.3370676e+29 -5.344162e+29 -5.3388105e+29 -5.3294927e+29 -5.3366642e+29 -5.3597108e+29 -5.3517358e+29 -5.3464916e+29 -5.354656e+29 -5.3508773e+29 -5.3504992e+29 -5.3441955e+29 -5.31027e+29 -5.3167686e+29 -5.3107646e+29 -5.3045195e+29 -5.2999509e+29 -5.308325e+29 -5.3017589e+29 -5.3301212e+29 -5.3233677e+29 -5.3174345e+29 -5.3243842e+29 -5.3153221e+29 -5.32254e+29 -5.1391875e+29 -5.1403613e+29 -5.1810571e+29 -5.176912e+29 -5.1967303e+29 -5.23099e+29 -5.2433647e+29 -5.2484399e+29 -5.2462166e+29 -5.2380714e+29 -5.2316908e+29 -5.2440306e+29 -5.2493334e+29 -5.2408408e+29 -5.252714e+29 -5.2352707e+29 -5.2384197e+29 -5.2447961e+29 -5.2486492e+29 -5.2508801e+29 -5.2481136e+29 -5.2413963e+29 -5.2472345e+29 -5.2560307e+29 -5.2598412e+29 -5.2536142e+29 -5.2646759e+29 -5.269949e+29 -5.2619601e+29 -5.2561964e+29 -5.2673982e+29 -5.2751416e+29 -5.2806563e+29 -5.2736999e+29 -5.2686798e+29 -5.2628126e+29 -5.3039122e+29 -5.2978786e+29 -5.2984987e+29 -5.2918491e+29 -5.2869018e+29 -5.2944186e+29 -5.2920045e+29 -5.2862373e+29 -5.2795648e+29 -5.2856463e+29 -5.2807768e+29 -5.274599e+29 -5.5476115e+29 -5.5470641e+29 -5.5577721e+29 -5.5572888e+29 -5.546762e+29 -5.5464848e+29 -5.5567423e+29 -5.5569796e+29 -5.5239908e+29 -5.5234364e+29 -5.5368715e+29 -5.5363109e+29 -5.5359755e+29 -5.5356374e+29 -5.5230307e+29 -5.5226141e+29 -5.4713224e+29 -5.4882941e+29 -5.5018102e+29 -5.5023926e+29 -5.5110968e+29 -5.5106046e+29 -5.5028936e+29 -5.5035282e+29 -5.5121092e+29 -5.5115299e+29 -5.4543791e+29 -5.4309183e+29 -5.4316692e+29 -5.4399937e+29 -5.4393666e+29 -5.4322146e+29 -5.4328106e+29 -5.4409314e+29 -5.4404099e+29 -5.457208e+29 -5.4487294e+29 -5.4482556e+29 -5.4567293e+29 -5.4564497e+29 -5.447938e+29 -5.4473928e+29 -5.4559705e+29 -5.4332731e+29 -5.4339487e+29 -5.4421494e+29 -5.4414747e+29 -5.44381e+29 -5.4356304e+29 -5.4345888e+29 -5.4427712e+29 -5.4600291e+29 -5.4515967e+29 -5.4506052e+29 -5.4590637e+29 -5.4584523e+29 -5.4499865e+29 -5.4493004e+29 -5.4577617e+29 -5.4933684e+29 -5.4848275e+29 -5.4841119e+29 -5.4927678e+29 -5.4766943e+29 -5.4681004e+29 -5.4671934e+29 -5.4758828e+29 -5.4659015e+29 -5.4665821e+29 -5.4752818e+29 -5.4746187e+29 -5.4922395e+29 -5.483531e+29 -5.4828669e+29 -5.4915923e+29 -5.4641431e+29 -5.4646042e+29 -5.4732826e+29 -5.4727918e+29 -5.4741171e+29 -5.4653842e+29 -5.4648981e+29 -5.4736193e+29 -5.4911256e+29 -5.4823899e+29 -5.4818736e+29 -5.4905683e+29 -5.4901386e+29 -5.4814927e+29 -5.4809455e+29 -5.4895089e+29 -5.4279567e+29 -5.4200215e+29 -5.4189559e+29 -5.4269071e+29 -5.4127021e+29 -5.4052497e+29 -5.4041768e+29 -5.4116296e+29 -5.4026983e+29 -5.4034873e+29 -5.4109554e+29 -5.410239e+29 -5.4262434e+29 -5.4182695e+29 -5.4175736e+29 -5.4255607e+29 -5.3984011e+29 -5.3914712e+29 -5.3903541e+29 -5.3973172e+29 -5.385076e+29 -5.3785463e+29 -5.3774437e+29 -5.3839534e+29 -5.3760507e+29 -5.3768007e+29 -5.3832797e+29 -5.3825188e+29 -5.3965984e+29 -5.3896369e+29 -5.3888287e+29 -5.3957846e+29 -5.3721738e+29 -5.3734997e+29 -5.3801009e+29 -5.3788924e+29 -5.3744658e+29 -5.3753551e+29 -5.3817484e+29 -5.3809204e+29 -5.3949774e+29 -5.3880228e+29 -5.3872298e+29 -5.3942025e+29 -5.3935556e+29 -5.3865422e+29 -5.3854141e+29 -5.3925428e+29 -5.4251024e+29 -5.4170471e+29 -5.4163439e+29 -5.4244528e+29 -5.4095742e+29 -5.401956e+29 -5.401182e+29 -5.4088378e+29 -5.3995927e+29 -5.4005367e+29 -5.4081804e+29 -5.4073129e+29 -5.4238314e+29 -5.4157001e+29 -5.4148609e+29 -5.4230389e+29 -5.368835e+29 -5.3699025e+29 -5.3763685e+29 -5.3753841e+29 -5.3704174e+29 -5.3705686e+29 -5.3769938e+29 -5.3767978e+29 -5.3901883e+29 -5.3832478e+29 -5.3830228e+29 -5.389898e+29 -5.3895345e+29 -5.38268e+29 -5.3817239e+29 -5.3886062e+29 -5.3705523e+29 -5.3704137e+29 -5.3770647e+29 -5.3771111e+29 -5.3704025e+29 -5.3709883e+29 -5.3777272e+29 -5.3771129e+29 -5.3915499e+29 -5.3843232e+29 -5.3836719e+29 -5.3908743e+29 -5.3906388e+29 -5.3835375e+29 -5.3834659e+29 -5.3904648e+29 -5.4224284e+29 -5.414177e+29 -5.4134957e+29 -5.4217674e+29 -5.406524e+29 -5.398711e+29 -5.3980233e+29 -5.4058441e+29 -5.397456e+29 -5.3977113e+29 -5.4054561e+29 -5.4051298e+29 -5.4212873e+29 -5.4130549e+29 -5.4126475e+29 -5.4207969e+29 -5.4203848e+29 -5.4122919e+29 -5.4117392e+29 -5.4197391e+29 -5.4047895e+29 -5.3971571e+29 -5.396786e+29 -5.4043337e+29 -5.3953851e+29 -5.3963361e+29 -5.4037787e+29 -5.4027787e+29 -5.4190114e+29 -5.4110903e+29 -5.4100193e+29 -5.41788e+29 -5.4889862e+29 -5.4804894e+29 -5.4800302e+29 -5.4885143e+29 -5.4723728e+29 -5.4637794e+29 -5.4632651e+29 -5.4718882e+29 -5.4620468e+29 -5.4627875e+29 -5.4714721e+29 -5.4707664e+29 -5.4881522e+29 -5.4796186e+29 -5.4789137e+29 -5.4874327e+29 -5.455588e+29 -5.4469314e+29 -5.4463596e+29 -5.4550426e+29 -5.4388033e+29 -5.430318e+29 -5.4297054e+29 -5.4382157e+29 -5.4286464e+29 -5.429221e+29 -5.4377283e+29 -5.4370885e+29 -5.454546e+29 -5.4458584e+29 -5.4451639e+29 -5.4538218e+29 -5.425477e+29 -5.4266612e+29 -5.4348681e+29 -5.4336342e+29 -5.4274334e+29 -5.4281279e+29 -5.4364615e+29 -5.4356931e+29 -5.4530983e+29 -5.4444846e+29 -5.4436208e+29 -5.4521242e+29 -5.4511488e+29 -5.4427282e+29 -5.4414318e+29 -5.4497836e+29 -5.4867082e+29 -5.4781699e+29 -5.476972e+29 -5.4854727e+29 -5.4699888e+29 -5.461291e+29 -5.4602329e+29 -5.4688532e+29 -5.4577432e+29 -5.4591822e+29 -5.4677207e+29 -5.466196e+29 -5.4842057e+29 -5.4757618e+29 -5.4741547e+29 -5.482512e+29 -5.5127683e+29 -5.5116354e+29 -5.5296609e+29 -5.5284794e+29 -5.5271299e+29 -5.5255362e+29 -5.5103988e+29 -5.5086638e+29 -5.4904515e+29 -5.4921441e+29 -5.5003911e+29 -5.4986926e+29 -5.4935614e+29 -5.4947182e+29 -5.5028548e+29 -5.5017481e+29 -5.5154947e+29 -5.5149332e+29 -5.5327461e+29 -5.5320419e+29 -5.5314397e+29 -5.5306661e+29 -5.5145254e+29 -5.5137783e+29 -5.4955504e+29 -5.4962305e+29 -5.5044972e+29 -5.5038178e+29 -5.4966186e+29 -5.4970563e+29 -5.5053717e+29 -5.5049042e+29 -5.5425174e+29 -5.5417293e+29 -5.5514848e+29 -5.5523292e+29 -5.562145e+29 -5.5720674e+29 -5.5711708e+29 -5.5612635e+29 -5.5498467e+29 -5.541014e+29 -5.5506907e+29 -5.5402143e+29 -5.5604004e+29 -5.5702491e+29 -5.5594895e+29 -5.569269e+29 -5.5392368e+29 -5.5380067e+29 -5.5488621e+29 -5.547607e+29 -5.5572282e+29 -5.5682446e+29 -5.5669743e+29 -5.5584969e+29 -5.5366173e+29 -5.5350724e+29 -5.5446724e+29 -5.5462038e+29 -5.5558123e+29 -5.5542767e+29 -5.5655461e+29 -5.5639979e+29 -5.5198434e+29 -5.5196325e+29 -5.5373783e+29 -5.5371432e+29 -5.5368865e+29 -5.536449e+29 -5.5194277e+29 -5.5189203e+29 -5.5097295e+29 -5.5014176e+29 -5.5009816e+29 -5.5094087e+29 -5.4999509e+29 -5.5005192e+29 -5.5090564e+29 -5.5085472e+29 -5.5184022e+29 -5.5177851e+29 -5.5358862e+29 -5.5352091e+29 -5.5344599e+29 -5.5336106e+29 -5.5171673e+29 -5.5163316e+29 -5.4989167e+29 -5.4994723e+29 -5.5080289e+29 -5.5074684e+29 -5.4976903e+29 -5.4983717e+29 -5.5068638e+29 -5.5061211e+29 -5.5568999e+29 -5.5472823e+29 -5.5571924e+29 -5.5469971e+29 -5.5670533e+29 -5.5667725e+29 -5.5769856e+29 -5.576726e+29 -5.5561384e+29 -5.5466876e+29 -5.5565714e+29 -5.5462702e+29 -5.5764018e+29 -5.5664442e+29 -5.5659832e+29 -5.5759247e+29 -5.5548539e+29 -5.5457409e+29 -5.5556041e+29 -5.545019e+29 -5.575379e+29 -5.5654484e+29 -5.5646788e+29 -5.5746136e+29 -5.5531671e+29 -5.5442102e+29 -5.5540289e+29 -5.5433551e+29 -5.5737941e+29 -5.5638547e+29 -5.5629726e+29 -5.5729035e+29 -5.5027765e+29 -5.5020504e+29 -5.5190796e+29 -5.5182049e+29 -5.5174937e+29 -5.5167772e+29 -5.5015239e+29 -5.5008527e+29 -5.4779084e+29 -5.4699952e+29 -5.4695184e+29 -5.4773673e+29 -5.4623802e+29 -5.4542118e+29 -5.4539866e+29 -5.4619939e+29 -5.4536479e+29 -5.4538881e+29 -5.4617493e+29 -5.4614068e+29 -5.4769612e+29 -5.4691449e+29 -5.4687121e+29 -5.4764266e+29 -5.4838612e+29 -5.4844247e+29 -5.4921151e+29 -5.4915193e+29 -5.4849154e+29 -5.4854451e+29 -5.4932373e+29 -5.4926432e+29 -5.506985e+29 -5.5056594e+29 -5.5238974e+29 -5.5224496e+29 -5.5212564e+29 -5.5201278e+29 -5.504731e+29 -5.5037004e+29 -5.4811708e+29 -5.4728758e+29 -5.4717632e+29 -5.4799959e+29 -5.4649649e+29 -5.4565702e+29 -5.4555891e+29 -5.4639034e+29 -5.45452e+29 -5.4550328e+29 -5.463288e+29 -5.462721e+29 -5.4792451e+29 -5.4710491e+29 -5.4703991e+29 -5.4784519e+29 -5.4861589e+29 -5.4869834e+29 -5.4949751e+29 -5.4940825e+29 -5.4878331e+29 -5.4889592e+29 -5.4970672e+29 -5.4958833e+29 -5.5415559e+29 -5.5334975e+29 -5.5431086e+29 -5.5319761e+29 -5.5527037e+29 -5.5624028e+29 -5.5607893e+29 -5.5511193e+29 -5.5388398e+29 -5.5306511e+29 -5.5401407e+29 -5.5294519e+29 -5.4486488e+29 -5.4403424e+29 -5.4394481e+29 -5.4477072e+29 -5.4325694e+29 -5.4244462e+29 -5.4236444e+29 -5.4317107e+29 -5.4231659e+29 -5.4233108e+29 -5.4313299e+29 -5.4310866e+29 -5.4472026e+29 -5.4389791e+29 -5.4386285e+29 -5.4467469e+29 -5.423836e+29 -5.4237019e+29 -5.4313449e+29 -5.4313933e+29 -5.4234606e+29 -5.4232592e+29 -5.4310213e+29 -5.4311434e+29 -5.4464812e+29 -5.4384365e+29 -5.438477e+29 -5.4463793e+29 -5.4464255e+29 -5.4386171e+29 -5.4385847e+29 -5.4462897e+29 -5.4988777e+29 -5.4984841e+29 -5.5141805e+29 -5.5136648e+29 -5.5131312e+29 -5.5123641e+29 -5.4980993e+29 -5.4973327e+29 -5.4754527e+29 -5.4680859e+29 -5.4677497e+29 -5.4751204e+29 -5.4610021e+29 -5.4534239e+29 -5.4531832e+29 -5.4606913e+29 -5.4520763e+29 -5.4528577e+29 -5.4603054e+29 -5.4595332e+29 -5.4747064e+29 -5.4673053e+29 -5.4665e+29 -5.4738857e+29 -5.4811273e+29 -5.4818941e+29 -5.4891942e+29 -5.4884658e+29 -5.4823283e+29 -5.4826096e+29 -5.489922e+29 -5.4896129e+29 -5.5002032e+29 -5.4998357e+29 -5.5160826e+29 -5.5155642e+29 -5.5151769e+29 -5.514724e+29 -5.4996687e+29 -5.4993251e+29 -5.4760411e+29 -5.4683872e+29 -5.4681996e+29 -5.4757992e+29 -5.4611057e+29 -5.4533935e+29 -5.4533159e+29 -5.4609563e+29 -5.4534829e+29 -5.4534359e+29 -5.4610248e+29 -5.4610434e+29 -5.4757592e+29 -5.4681844e+29 -5.4681481e+29 -5.4756211e+29 -5.4828928e+29 -5.4830652e+29 -5.4905267e+29 -5.4902976e+29 -5.4831451e+29 -5.4833715e+29 -5.4909327e+29 -5.4906651e+29 -5.4460991e+29 -5.43846e+29 -5.4384933e+29 -5.446065e+29 -5.4313022e+29 -5.4238059e+29 -5.423983e+29 -5.4313875e+29 -5.4246415e+29 -5.4243444e+29 -5.4316871e+29 -5.4319062e+29 -5.4462323e+29 -5.4386962e+29 -5.4388355e+29 -5.4463108e+29 -5.4229485e+29 -5.4239847e+29 -5.4313425e+29 -5.430435e+29 -5.4245172e+29 -5.4247681e+29 -5.4319272e+29 -5.4317273e+29 -5.4462409e+29 -5.4387857e+29 -5.4386105e+29 -5.446042e+29 -5.44576e+29 -5.4383065e+29 -5.4374552e+29 -5.4449678e+29 -5.4167559e+29 -5.4094468e+29 -5.409784e+29 -5.4169986e+29 -5.4026617e+29 -5.3957026e+29 -5.3962299e+29 -5.403077e+29 -5.3969246e+29 -5.3966821e+29 -5.4035526e+29 -5.4038784e+29 -5.4174045e+29 -5.4102086e+29 -5.41055e+29 -5.4177432e+29 -5.3892097e+29 -5.3824994e+29 -5.3831569e+29 -5.3898042e+29 -5.3701465e+29 -5.3693895e+29 -5.3760976e+29 -5.3768159e+29 -5.3706405e+29 -5.370498e+29 -5.3771462e+29 -5.3772877e+29 -5.3902e+29 -5.3834855e+29 -5.3836157e+29 -5.3903951e+29 -5.3683329e+29 -5.3692506e+29 -5.3759306e+29 -5.3749941e+29 -5.3699774e+29 -5.3704851e+29 -5.3771351e+29 -5.3766532e+29 -5.3902995e+29 -5.3834931e+29 -5.3830074e+29 -5.3898322e+29 -5.3890922e+29 -5.3822899e+29 -5.381265e+29 -5.3879716e+29 -5.4179182e+29 -5.4106835e+29 -5.4103248e+29 -5.4176217e+29 -5.4038988e+29 -5.3968622e+29 -5.3964042e+29 -5.4035014e+29 -5.3944647e+29 -5.3956615e+29 -5.4027668e+29 -5.4015589e+29 -5.4169945e+29 -5.4096276e+29 -5.4084274e+29 -5.4158789e+29 -5.4168582e+29 -5.4090214e+29 -5.4082582e+29 -5.4160782e+29 -5.4017774e+29 -5.3943875e+29 -5.3936421e+29 -5.401025e+29 -5.3933085e+29 -5.3933781e+29 -5.4007599e+29 -5.4007147e+29 -5.4157693e+29 -5.4079537e+29 -5.4078978e+29 -5.4156806e+29 -5.387563e+29 -5.3806337e+29 -5.3798244e+29 -5.3867989e+29 -5.3741818e+29 -5.3675816e+29 -5.3667079e+29 -5.3733407e+29 -5.3665248e+29 -5.3664514e+29 -5.3730903e+29 -5.373124e+29 -5.3865203e+29 -5.3795397e+29 -5.3794997e+29 -5.3864526e+29 -5.3685714e+29 -5.3677594e+29 -5.3744324e+29 -5.3753159e+29 -5.3672712e+29 -5.366801e+29 -5.3732893e+29 -5.3737964e+29 -5.3865231e+29 -5.3795948e+29 -5.3801177e+29 -5.3870268e+29 -5.3877551e+29 -5.3808581e+29 -5.381733e+29 -5.3885826e+29 -5.4158676e+29 -5.4080989e+29 -5.4084567e+29 -5.416138e+29 -5.4008489e+29 -5.3934083e+29 -5.3938699e+29 -5.4012721e+29 -5.3952238e+29 -5.3945115e+29 -5.4018027e+29 -5.4023614e+29 -5.4164585e+29 -5.4088761e+29 -5.4092763e+29 -5.416711e+29 -5.3724295e+29 -5.3662518e+29 -5.3652729e+29 -5.371372e+29 -5.3605141e+29 -5.3547809e+29 -5.3540802e+29 -5.3596497e+29 -5.352302e+29 -5.3534515e+29 -5.359069e+29 -5.3581449e+29 -5.3707233e+29 -5.3646504e+29 -5.3638161e+29 -5.3699574e+29 -5.3494378e+29 -5.3438335e+29 -5.3433787e+29 -5.3488198e+29 -5.3383442e+29 -5.3323192e+29 -5.3320952e+29 -5.3380147e+29 -5.329943e+29 -5.3313274e+29 -5.3371942e+29 -5.3357964e+29 -5.3480789e+29 -5.3425482e+29 -5.3411402e+29 -5.3467785e+29 -5.3235397e+29 -5.3256193e+29 -5.331571e+29 -5.3296808e+29 -5.3271193e+29 -5.3286085e+29 -5.3343092e+29 -5.3328626e+29 -5.3452118e+29 -5.3395609e+29 -5.3381338e+29 -5.3438338e+29 -5.3427982e+29 -5.3370228e+29 -5.3353406e+29 -5.3413269e+29 -5.3692366e+29 -5.3629455e+29 -5.3618482e+29 -5.3682853e+29 -5.3569927e+29 -5.3509167e+29 -5.3495807e+29 -5.355785e+29 -5.3471511e+29 -5.3485248e+29 -5.354706e+29 -5.3533503e+29 -5.367226e+29 -5.360774e+29 -5.3593999e+29 -5.3658611e+29 -5.1597519e+29 -5.0745414e+29 -5.0649103e+29 -5.1516037e+29 -4.9448632e+29 -4.936452e+29 -5.060226e+29 -5.0602575e+29 -5.146116e+29 -5.1447631e+29 -5.2517688e+29 -5.222944e+29 -5.2518329e+29 -5.2238811e+29 -5.2265997e+29 -5.2551033e+29 -5.2528186e+29 -5.2234767e+29 -5.2916868e+29 -5.2763482e+29 -5.2742386e+29 -5.2896772e+29 -5.288641e+29 -5.2732022e+29 -5.2726775e+29 -5.2872702e+29 -5.2580666e+29 -5.2324346e+29 -5.2606849e+29 -5.229633e+29 -5.2364029e+29 -5.2415455e+29 -5.2671947e+29 -5.2638813e+29 -5.2989267e+29 -5.2862047e+29 -5.2837843e+29 -5.2978253e+29 -5.2960662e+29 -5.2813667e+29 -5.2787052e+29 -5.2934016e+29 -5.3024756e+29 -5.3046599e+29 -5.3123557e+29 -5.3106215e+29 -5.3136423e+29 -5.3065773e+29 -5.3059914e+29 -5.3134028e+29 -5.319776e+29 -5.3199175e+29 -5.3263547e+29 -5.3261958e+29 -5.3173611e+29 -5.3188985e+29 -5.3254043e+29 -5.3239677e+29 -5.3143573e+29 -5.315986e+29 -5.3226379e+29 -5.3211509e+29 -5.3091102e+29 -5.3008653e+29 -5.299046e+29 -5.3074195e+29 -5.2962013e+29 -5.2977591e+29 -5.3059138e+29 -5.3041799e+29 -5.3108226e+29 -5.3127613e+29 -5.3195631e+29 -5.3174807e+29 -5.3081802e+29 -5.309144e+29 -5.3155756e+29 -5.3145411e+29 -5.3026888e+29 -5.2949643e+29 -5.2938623e+29 -5.3016879e+29 -5.2929118e+29 -5.2934649e+29 -5.3012854e+29 -5.3011191e+29 -5.3077885e+29 -5.3078267e+29 -5.3143815e+29 -5.3144423e+29 -5.0559527e+29 -5.0589147e+29 -5.1430662e+29 -5.1408855e+29 -5.2863348e+29 -5.2719369e+29 -5.2706577e+29 -5.2848863e+29 -5.2230885e+29 -5.2508961e+29 -5.2494915e+29 -5.2199755e+29 -5.2182615e+29 -5.247655e+29 -5.2473904e+29 -5.2188925e+29 -5.2683666e+29 -5.2843782e+29 -5.2691398e+29 -5.2835833e+29 -5.1430275e+29 -5.058048e+29 -5.0646173e+29 -5.1476427e+29 -5.2529849e+29 -5.2231617e+29 -5.2505886e+29 -5.2266419e+29 -5.2198256e+29 -5.2215059e+29 -5.2476373e+29 -5.2484335e+29 -5.2834703e+29 -5.2682395e+29 -5.268413e+29 -5.283651e+29 -5.2704919e+29 -5.2846554e+29 -5.2851955e+29 -5.2721949e+29 -5.3080149e+29 -5.3077799e+29 -5.3145613e+29 -5.3148998e+29 -5.3008306e+29 -5.2926088e+29 -5.2927541e+29 -5.30102e+29 -5.3012952e+29 -5.2932993e+29 -5.2935163e+29 -5.3012524e+29 -5.3079742e+29 -5.3081471e+29 -5.3149712e+29 -5.3147952e+29 -4.9346767e+29 -4.9390297e+29 -4.9363682e+29 -4.9283923e+29 -4.9267144e+29 -4.9308464e+29 -5.3646341e+29 -5.3581931e+29 -5.3575982e+29 -5.3640535e+29 -5.3521414e+29 -5.3459439e+29 -5.3452367e+29 -5.3514999e+29 -5.3452356e+29 -5.3450912e+29 -5.3514177e+29 -5.3516185e+29 -5.3640761e+29 -5.3575738e+29 -5.3577588e+29 -5.3642655e+29 -5.3399687e+29 -5.3337792e+29 -5.3328486e+29 -5.3391801e+29 -5.327821e+29 -5.3215817e+29 -5.3205342e+29 -5.3268015e+29 -5.3206014e+29 -5.3204695e+29 -5.3267572e+29 -5.3269377e+29 -5.3390159e+29 -5.332718e+29 -5.3328742e+29 -5.3391697e+29 -5.3210006e+29 -5.3211645e+29 -5.3274407e+29 -5.3272422e+29 -5.3210631e+29 -5.3207296e+29 -5.3270736e+29 -5.3273673e+29 -5.33928e+29 -5.3330031e+29 -5.3332365e+29 -5.3394501e+29 -5.3393249e+29 -5.3332437e+29 -5.332928e+29 -5.3388366e+29 -5.3643642e+29 -5.3578817e+29 -5.3578402e+29 -5.3642665e+29 -5.3517086e+29 -5.3453222e+29 -5.3454122e+29 -5.3517481e+29 -5.3444884e+29 -5.3451757e+29 -5.3513746e+29 -5.3505092e+29 -5.3637393e+29 -5.357386e+29 -5.3563922e+29 -5.3626885e+29 -5.0596077e+29 -5.0645962e+29 -5.1477359e+29 -5.1439809e+29 -5.143574e+29 -5.0596741e+29 -5.0643548e+29 -5.1463033e+29 -4.9408208e+29 -4.941086e+29 -5.0673257e+29 -5.0664896e+29 -5.1478777e+29 -5.1492318e+29 -5.0721127e+29 -5.1536011e+29 -5.0805409e+29 -5.1600611e+29 -4.9466886e+29 -4.9575266e+29 -4.9326497e+29 -4.9329563e+29 -4.9384792e+29 -4.9493081e+29 -5.361359e+29 -5.3550924e+29 -5.3541642e+29 -5.3604614e+29 -5.3492318e+29 -5.3434069e+29 -5.3425007e+29 -5.3483056e+29 -5.3417238e+29 -5.3419123e+29 -5.3478767e+29 -5.3478652e+29 -5.3601656e+29 -5.3538073e+29 -5.3538397e+29 -5.3602481e+29 -5.3379636e+29 -5.3322922e+29 -5.3314776e+29 -5.3370394e+29 -5.3267136e+29 -5.3205985e+29 -5.3200485e+29 -5.3260192e+29 -5.3190121e+29 -5.3195155e+29 -5.3252347e+29 -5.3248071e+29 -5.3362149e+29 -5.3305727e+29 -5.3301525e+29 -5.3359126e+29 -5.3190132e+29 -5.318783e+29 -5.3248102e+29 -5.3251813e+29 -5.336169e+29 -5.3303433e+29 -5.3307883e+29 -5.3366301e+29 -5.3369363e+29 -5.3312614e+29 -5.3319736e+29 -5.337657e+29 -5.3201857e+29 -5.319484e+29 -5.325636e+29 -5.326344e+29 -5.360577e+29 -5.3541626e+29 -5.3545335e+29 -5.3610086e+29 -5.3481159e+29 -5.3419375e+29 -5.3423284e+29 -5.3484748e+29 -5.3432137e+29 -5.3424938e+29 -5.3485659e+29 -5.3493115e+29 -5.3613404e+29 -5.354747e+29 -5.35548e+29 -5.3621237e+29 -5.2725627e+29 -5.2855969e+29 -5.284998e+29 -5.2718172e+29 -5.2515531e+29 -5.2266956e+29 -5.2529211e+29 -5.2235717e+29 -5.248675e+29 -5.2214316e+29 -5.2496352e+29 -5.2207915e+29 -5.2702139e+29 -5.2844461e+29 -5.2834339e+29 -5.2691152e+29 -5.293e+29 -5.2936242e+29 -5.3010889e+29 -5.3006022e+29 -5.3072211e+29 -5.3076649e+29 -5.3144018e+29 -5.3139353e+29 -5.3064007e+29 -5.3070122e+29 -5.3135679e+29 -5.3130031e+29 -5.2997505e+29 -5.2928727e+29 -5.3004741e+29 -5.2920149e+29 -5.221112e+29 -5.2487121e+29 -5.25035e+29 -5.2237737e+29 -5.2678003e+29 -5.2824707e+29 -5.2685854e+29 -5.2828066e+29 -5.2204058e+29 -5.2206261e+29 -5.248019e+29 -5.2476979e+29 -5.2698212e+29 -5.2688089e+29 -5.2831322e+29 -5.2835587e+29 -5.291757e+29 -5.2996934e+29 -5.3003412e+29 -5.2922805e+29 -5.3071976e+29 -5.3064759e+29 -5.3132752e+29 -5.3140016e+29 -5.2913459e+29 -5.2991268e+29 -5.2912117e+29 -5.2991215e+29 -5.3059276e+29 -5.3058686e+29 -5.3125977e+29 -5.3127558e+29 -5.2527213e+29 -5.2234749e+29 -5.2508101e+29 -5.2259608e+29 -5.2241155e+29 -5.2230238e+29 -5.2503469e+29 -5.2501546e+29 -5.2702034e+29 -5.2842932e+29 -5.2700886e+29 -5.2847901e+29 -5.2854226e+29 -5.2708683e+29 -5.2860014e+29 -5.2722133e+29 -5.2784342e+29 -5.2901817e+29 -5.2906467e+29 -5.2802169e+29 -5.2277218e+29 -5.2303065e+29 -5.2540677e+29 -5.2566704e+29 -5.2758531e+29 -5.2889788e+29 -5.2735546e+29 -5.2873315e+29 -5.2625734e+29 -5.2340828e+29 -5.2597948e+29 -5.2383016e+29 -5.2955854e+29 -5.3031431e+29 -5.3039172e+29 -5.2967903e+29 -5.3100277e+29 -5.3095206e+29 -5.3159611e+29 -5.3161906e+29 -5.3098489e+29 -5.309955e+29 -5.315945e+29 -5.3156855e+29 -5.2973248e+29 -5.3040432e+29 -5.3040329e+29 -5.2975403e+29 -5.2940267e+29 -5.3018258e+29 -5.3023385e+29 -5.2945157e+29 -5.3089691e+29 -5.3085462e+29 -5.3152841e+29 -5.3156243e+29 -5.2935565e+29 -5.2929463e+29 -5.300885e+29 -5.3014846e+29 -5.3082266e+29 -5.3076975e+29 -5.3145041e+29 -5.3150059e+29 -5.3268803e+29 -5.3206981e+29 -5.3211762e+29 -5.3274099e+29 -5.3384222e+29 -5.3325699e+29 -5.3331307e+29 -5.339125e+29 -5.3393677e+29 -5.3333851e+29 -5.3335605e+29 -5.3395691e+29 -5.321692e+29 -5.3214332e+29 -5.3276417e+29 -5.3278614e+29 -5.3218613e+29 -5.3218557e+29 -5.3278933e+29 -5.3277382e+29 -5.3394567e+29 -5.3335037e+29 -5.3332147e+29 -5.3390826e+29 -5.3383676e+29 -5.3326278e+29 -5.3320449e+29 -5.3377217e+29 -5.3211421e+29 -5.3214693e+29 -5.3272056e+29 -5.3267525e+29 -5.3432782e+29 -5.3439858e+29 -5.3501801e+29 -5.349399e+29 -5.3514777e+29 -5.3452454e+29 -5.344771e+29 -5.3509963e+29 -5.3641474e+29 -5.3575832e+29 -5.3570707e+29 -5.3636512e+29 -5.3628903e+29 -5.3562905e+29 -5.3554404e+29 -5.3620163e+29 -5.3453737e+29 -5.3451707e+29 -5.351451e+29 -5.3516342e+29 -5.3502996e+29 -5.3441353e+29 -5.3448968e+29 -5.3511428e+29 -5.3629867e+29 -5.3564108e+29 -5.3572365e+29 -5.3638042e+29 -5.3641472e+29 -5.3575784e+29 -5.3577362e+29 -5.364313e+29 -4.9304834e+29 -4.9307129e+29 -4.9338263e+29 -4.9335869e+29 -4.935699e+29 -4.9449109e+29 -4.9494829e+29 -4.9390814e+29 -4.9268829e+29 -4.933843e+29 -4.9374792e+29 -4.9295266e+29 -4.9253789e+29 -4.928858e+29 -4.9319489e+29 -4.9279963e+29 -5.4454351e+29 -5.4389446e+29 -5.4373016e+29 -5.4438244e+29 -5.4322189e+29 -5.4253807e+29 -5.423803e+29 -5.4305849e+29 -5.4197431e+29 -5.4219694e+29 -5.4286865e+29 -5.426467e+29 -5.4419557e+29 -5.4353819e+29 -5.4331111e+29 -5.4396457e+29 -5.4505165e+29 -5.4438103e+29 -5.449371e+29 -5.4426948e+29 -5.4368952e+29 -5.4298873e+29 -5.4358146e+29 -5.4288246e+29 -5.4347382e+29 -5.4277742e+29 -5.4266198e+29 -5.4335079e+29 -5.4482387e+29 -5.4415716e+29 -5.4402937e+29 -5.4468915e+29 -5.3924991e+29 -5.3945401e+29 -5.4014077e+29 -5.3993657e+29 -5.3962675e+29 -5.3977972e+29 -5.4046654e+29 -5.4031593e+29 -5.4184521e+29 -5.411555e+29 -5.4100501e+29 -5.4169251e+29 -5.4151426e+29 -5.4083003e+29 -5.4061829e+29 -5.4129581e+29 -5.4070269e+29 -5.4002292e+29 -5.3990811e+29 -5.4058873e+29 -5.4089906e+29 -5.4020775e+29 -5.4080741e+29 -5.4011891e+29 -5.4228191e+29 -5.4158727e+29 -5.4218048e+29 -5.4149089e+29 -5.4207576e+29 -5.4138582e+29 -5.4127642e+29 -5.4196548e+29 -5.4474012e+29 -5.4548457e+29 -5.4517672e+29 -5.4443228e+29 -5.4263032e+29 -5.4196629e+29 -5.4163292e+29 -5.4231627e+29 -5.4126769e+29 -5.4055086e+29 -5.4017496e+29 -5.4091503e+29 -5.4299362e+29 -5.4329901e+29 -5.439838e+29 -5.4367947e+29 -5.4582428e+29 -5.4657241e+29 -5.4633002e+29 -5.45593e+29 -5.4608766e+29 -5.4579236e+29 -5.4534966e+29 -5.4505785e+29 -5.4373341e+29 -5.4308153e+29 -5.428462e+29 -5.4350237e+29 -5.4241381e+29 -5.4174394e+29 -5.415061e+29 -5.4217455e+29 -5.4090603e+29 -5.4124004e+29 -5.4191663e+29 -5.4160044e+29 -5.4325095e+29 -5.4259078e+29 -5.422803e+29 -5.4294097e+29 -5.4361232e+29 -5.439146e+29 -5.4459561e+29 -5.4430178e+29 -5.4416817e+29 -5.4439381e+29 -5.450721e+29 -5.4484392e+29 -5.4106498e+29 -5.4039116e+29 -5.4014394e+29 -5.4082474e+29 -5.3970983e+29 -5.3903433e+29 -5.3877626e+29 -5.3945478e+29 -5.3805401e+29 -5.3845692e+29 -5.3915303e+29 -5.3876965e+29 -5.4054985e+29 -5.3985412e+29 -5.3948509e+29 -5.4019811e+29 -5.372011e+29 -5.3764323e+29 -5.3836392e+29 -5.3795522e+29 -5.3982346e+29 -5.3909433e+29 -5.387006e+29 -5.3943879e+29 -5.3419082e+29 -5.3479349e+29 -5.346035e+29 -5.3400127e+29 -5.3451829e+29 -5.3512252e+29 -5.3496506e+29 -5.343604e+29 -5.3637482e+29 -5.3574096e+29 -5.355793e+29 -5.3621693e+29 -5.3604915e+29 -5.3541402e+29 -5.3521813e+29 -5.3585701e+29 -5.3482553e+29 -5.3541923e+29 -5.3527829e+29 -5.3467709e+29 -5.3562224e+29 -5.350367e+29 -5.355388e+29 -5.3494956e+29 -5.3683163e+29 -5.3621517e+29 -5.3676003e+29 -5.3613738e+29 -5.3665412e+29 -5.3602898e+29 -5.3588834e+29 -5.3652129e+29 -5.3813471e+29 -5.3747264e+29 -5.3805814e+29 -5.3739883e+29 -5.3950913e+29 -5.388155e+29 -5.394248e+29 -5.3873574e+29 -5.3933282e+29 -5.3864426e+29 -5.3852391e+29 -5.3921742e+29 -5.3796235e+29 -5.3729951e+29 -5.3717046e+29 -5.3783917e+29 -5.3651209e+29 -5.3670431e+29 -5.373766e+29 -5.3718494e+29 -5.3769874e+29 -5.3702785e+29 -5.3687097e+29 -5.3754412e+29 -5.3908375e+29 -5.3838659e+29 -5.382333e+29 -5.3892964e+29 -5.3875893e+29 -5.3806506e+29 -5.378692e+29 -5.3855847e+29 -5.3216462e+29 -5.3279064e+29 -5.3223217e+29 -5.315877e+29 -5.3410477e+29 -5.334367e+29 -5.3287941e+29 -5.3355187e+29 -5.3313411e+29 -5.3373925e+29 -5.3329604e+29 -5.3267735e+29 -5.3377838e+29 -5.3437871e+29 -5.3409501e+29 -5.3349613e+29 -5.3563458e+29 -5.3499744e+29 -5.3471141e+29 -5.3535404e+29 -5.3501181e+29 -5.3436581e+29 -5.3392899e+29 -5.3458543e+29 -5.3834563e+29 -5.3765472e+29 -5.3738601e+29 -5.3808459e+29 -5.3696582e+29 -5.3629194e+29 -5.3601268e+29 -5.3669159e+29 -5.3525374e+29 -5.3567631e+29 -5.3635811e+29 -5.3594262e+29 -5.3775682e+29 -5.3705538e+29 -5.3663889e+29 -5.3734299e+29 -5.3691369e+29 -5.3619157e+29 -5.3567607e+29 -5.3643789e+29 -5.3547784e+29 -5.347826e+29 -5.3423578e+29 -5.3493624e+29 -5.4670199e+29 -5.4600699e+29 -5.4584727e+29 -5.4654888e+29 -5.4529813e+29 -5.4458309e+29 -5.4441112e+29 -5.4512976e+29 -5.4407921e+29 -5.4424417e+29 -5.4497179e+29 -5.4481352e+29 -5.4640318e+29 -5.4569474e+29 -5.4553648e+29 -5.462421e+29 -5.4954425e+29 -5.5034425e+29 -5.5022617e+29 -5.4942714e+29 -5.5008451e+29 -5.4928022e+29 -5.4475048e+29 -5.4491599e+29 -5.4562875e+29 -5.4546544e+29 -5.4589045e+29 -5.4517191e+29 -5.4505328e+29 -5.4576931e+29 -5.472993e+29 -5.465995e+29 -5.4648169e+29 -5.4718153e+29 -5.4704045e+29 -5.4633985e+29 -5.4617246e+29 -5.4686874e+29 -5.4774934e+29 -5.4847706e+29 -5.4874722e+29 -5.4801313e+29 -5.4862578e+29 -5.4789453e+29 -5.4184303e+29 -5.420049e+29 -5.4273205e+29 -5.4257372e+29 -5.4299751e+29 -5.4227124e+29 -5.4214401e+29 -5.4287215e+29 -5.4444371e+29 -5.4372041e+29 -5.4360225e+29 -5.4432733e+29 -5.4419136e+29 -5.4346462e+29 -5.4330411e+29 -5.4402757e+29 -5.4385623e+29 -5.4313522e+29 -5.429507e+29 -5.4367736e+29 -5.4149111e+29 -5.4167411e+29 -5.4240347e+29 -5.4222146e+29 -5.4114595e+29 -5.4131686e+29 -5.420403e+29 -5.4187283e+29 -5.4350415e+29 -5.4276789e+29 -5.4260241e+29 -5.4333658e+29 -5.460963e+29 -5.4539531e+29 -5.4525124e+29 -5.4595987e+29 -5.446694e+29 -5.4393292e+29 -5.4378704e+29 -5.4452164e+29 -5.4352081e+29 -5.4364768e+29 -5.4438124e+29 -5.4425205e+29 -5.4582732e+29 -5.4511135e+29 -5.449749e+29 -5.4568548e+29 -5.4308953e+29 -5.4319642e+29 -5.4390719e+29 -5.4379508e+29 -5.4413965e+29 -5.434143e+29 -5.4330431e+29 -5.4402193e+29 -5.4555565e+29 -5.4485423e+29 -5.4473438e+29 -5.4543231e+29 -5.4530892e+29 -5.4461473e+29 -5.4449284e+29 -5.4517582e+29 -5.4028179e+29 -5.4035508e+29 -5.4105566e+29 -5.4097441e+29 -5.4042722e+29 -5.4050869e+29 -5.4122917e+29 -5.4114211e+29 -5.4268113e+29 -5.4195367e+29 -5.4185898e+29 -5.4257899e+29 -5.4247536e+29 -5.4176076e+29 -5.4167241e+29 -5.4237633e+29 -5.4059965e+29 -5.4071254e+29 -5.4143765e+29 -5.4132134e+29 -5.4172797e+29 -5.4099177e+29 -5.4084151e+29 -5.4157698e+29 -5.4319035e+29 -5.4245844e+29 -5.4231268e+29 -5.4304673e+29 -5.4290444e+29 -5.421673e+29 -5.4204968e+29 -5.4278122e+29 -5.3878581e+29 -5.3815702e+29 -5.3803221e+29 -5.3866102e+29 -5.3752874e+29 -5.3690074e+29 -5.3678166e+29 -5.3740505e+29 -5.3645137e+29 -5.3663015e+29 -5.372457e+29 -5.3706611e+29 -5.3851562e+29 -5.3787573e+29 -5.376918e+29 -5.3833496e+29 -5.3573603e+29 -5.3591847e+29 -5.3651986e+29 -5.3634109e+29 -5.3609476e+29 -5.3626535e+29 -5.3686797e+29 -5.3669188e+29 -5.3778317e+29 -5.3714236e+29 -5.3696284e+29 -5.376061e+29 -5.3813846e+29 -5.374925e+29 -5.3731189e+29 -5.3795422e+29 -5.3900016e+29 -5.3917372e+29 -5.3985241e+29 -5.3968575e+29 -5.4011587e+29 -5.394374e+29 -5.3931394e+29 -5.3998945e+29 -5.415407e+29 -5.4081964e+29 -5.4069247e+29 -5.4141315e+29 -5.4127555e+29 -5.4055595e+29 -5.403909e+29 -5.4111307e+29 -5.3950322e+29 -5.3881138e+29 -5.3862595e+29 -5.3931982e+29 -5.4094182e+29 -5.4021585e+29 -5.4003527e+29 -5.4075995e+29 -5.4058253e+29 -5.3985829e+29 -5.3968103e+29 -5.4040888e+29 -5.3827649e+29 -5.3845227e+29 -5.3914366e+29 -5.3896822e+29 -5.350967e+29 -5.3512845e+29 -5.3570464e+29 -5.3567727e+29 -5.3515337e+29 -5.3519938e+29 -5.3577851e+29 -5.3573029e+29 -5.3692515e+29 -5.3630389e+29 -5.3627115e+29 -5.3688803e+29 -5.3701495e+29 -5.3638426e+29 -5.3633252e+29 -5.3695977e+29 -5.3528923e+29 -5.3537217e+29 -5.3595289e+29 -5.3586868e+29 -5.3545303e+29 -5.3556574e+29 -5.3616486e+29 -5.3604225e+29 -5.3719232e+29 -5.3656036e+29 -5.3647038e+29 -5.3709851e+29 -5.3743585e+29 -5.3678917e+29 -5.3665751e+29 -5.3729794e+29 -5.3880475e+29 -5.3811037e+29 -5.3796818e+29 -5.3866124e+29 -5.4025245e+29 -5.3952141e+29 -5.3937759e+29 -5.401051e+29 -5.3997832e+29 -5.3925481e+29 -5.3914782e+29 -5.3986904e+29 -5.3775795e+29 -5.3785525e+29 -5.385426e+29 -5.3844127e+29 -5.3835804e+29 -5.3767579e+29 -5.3761662e+29 -5.3829555e+29 -5.3978232e+29 -5.3906305e+29 -5.389963e+29 -5.3970828e+29 -5.3964372e+29 -5.3894024e+29 -5.3888151e+29 -5.3957858e+29 -5.3753132e+29 -5.3757451e+29 -5.382462e+29 -5.3819639e+29 -5.0501264e+29 -5.0425476e+29 -5.0434536e+29 -5.0509353e+29 -5.0607069e+29 -5.0522015e+29 -5.0453968e+29 -5.0531995e+29 -5.0668343e+29 -5.0592452e+29 -5.0789993e+29 -5.0704684e+29 -5.0558087e+29 -5.0564403e+29 -5.066791e+29 -5.0678129e+29 -5.1429146e+29 -5.1903395e+29 -5.1871954e+29 -5.1386005e+29 -5.1388101e+29 -5.1869681e+29 -5.1433875e+29 -5.1895088e+29 -5.1950511e+29 -5.1930073e+29 -5.1460552e+29 -5.1454287e+29 -5.1585565e+29 -5.1504527e+29 -5.2052726e+29 -5.1994604e+29 -5.0663885e+29 -5.1399286e+29 -5.1864602e+29 -5.1864355e+29 -5.139089e+29 -5.1419956e+29 -5.188503e+29 -5.1482196e+29 -5.1925841e+29 -5.0729402e+29 -5.1850238e+29 -5.1865296e+29 -5.1363985e+29 -5.1393722e+29 -5.066782e+29 -5.1889585e+29 -5.1425331e+29 -5.1372362e+29 -5.1857427e+29 -5.0643238e+29 -5.0553784e+29 -5.0528802e+29 -5.0548818e+29 -5.0610417e+29 -5.0491481e+29 -5.0415397e+29 -5.0471064e+29 -5.0552341e+29 -5.0425324e+29 -5.0398032e+29 -5.04988e+29 -5.0472262e+29 -5.3139478e+29 -5.3154454e+29 -5.3205076e+29 -5.3191085e+29 -5.3169375e+29 -5.3187371e+29 -5.3235563e+29 -5.3218693e+29 -5.3336792e+29 -5.3285118e+29 -5.3268323e+29 -5.3320209e+29 -5.3306654e+29 -5.3255109e+29 -5.3241863e+29 -5.3293549e+29 -5.320482e+29 -5.3220083e+29 -5.3269906e+29 -5.3254156e+29 -5.3286371e+29 -5.3235009e+29 -5.3229604e+29 -5.3280203e+29 -5.3391804e+29 -5.3337529e+29 -5.3330859e+29 -5.338383e+29 -5.3371915e+29 -5.3319897e+29 -5.3303752e+29 -5.335561e+29 -5.340967e+29 -5.3425959e+29 -5.3482889e+29 -5.3466518e+29 -5.3505394e+29 -5.344724e+29 -5.3438507e+29 -5.3496011e+29 -5.362732e+29 -5.3565334e+29 -5.3555173e+29 -5.3616218e+29 -5.3601793e+29 -5.3541588e+29 -5.3524804e+29 -5.3584453e+29 -5.3566303e+29 -5.3506921e+29 -5.3490055e+29 -5.3549562e+29 -5.3448382e+29 -5.3391316e+29 -5.337466e+29 -5.3431589e+29 -5.3346385e+29 -5.3360094e+29 -5.3416e+29 -5.3400889e+29 -5.3532218e+29 -5.347352e+29 -5.3456932e+29 -5.3514457e+29 -5.2745056e+29 -5.2570721e+29 -5.2777933e+29 -5.2519868e+29 -5.2902348e+29 -5.29763e+29 -5.2968428e+29 -5.2882489e+29 -5.2683252e+29 -5.2476094e+29 -5.2709984e+29 -5.2450445e+29 -5.2854216e+29 -5.2951295e+29 -5.2928198e+29 -5.2829492e+29 -5.2773961e+29 -5.2874565e+29 -5.2860167e+29 -5.2774316e+29 -5.2634572e+29 -5.242338e+29 -5.2655347e+29 -5.239579e+29 -5.2802061e+29 -5.2908103e+29 -5.2888995e+29 -5.2784629e+29 -5.2629842e+29 -5.2390804e+29 -5.2625579e+29 -5.2405779e+29 -5.3029319e+29 -5.3081242e+29 -5.3076482e+29 -5.3023448e+29 -5.3010576e+29 -5.306588e+29 -5.3047773e+29 -5.2989898e+29 -5.3127216e+29 -5.3132091e+29 -5.3183703e+29 -5.3178945e+29 -5.3101355e+29 -5.3117963e+29 -5.3169755e+29 -5.3154318e+29 -5.3064787e+29 -5.3084568e+29 -5.3137049e+29 -5.311779e+29 -5.2971598e+29 -5.3030309e+29 -5.3010595e+29 -5.2951836e+29 -5.2935708e+29 -5.2993184e+29 -5.2977596e+29 -5.2919862e+29 -5.3032181e+29 -5.3047949e+29 -5.3102218e+29 -5.3086762e+29 -5.2608013e+29 -5.2402242e+29 -5.2622352e+29 -5.237804e+29 -5.275888e+29 -5.2852952e+29 -5.2841889e+29 -5.2748899e+29 -5.2740437e+29 -5.2828887e+29 -5.2819032e+29 -5.2735036e+29 -5.2603449e+29 -5.2372207e+29 -5.2601169e+29 -5.2378778e+29 -5.3006716e+29 -5.3020557e+29 -5.3073267e+29 -5.3059088e+29 -5.2911661e+29 -5.2967512e+29 -5.2954586e+29 -5.2899613e+29 -5.28869e+29 -5.2941961e+29 -5.2932654e+29 -5.2876829e+29 -5.2985936e+29 -5.299503e+29 -5.304856e+29 -5.3040139e+29 -5.2596152e+29 -5.2373845e+29 -5.2371414e+29 -5.2594181e+29 -5.2825199e+29 -5.2731419e+29 -5.2731257e+29 -5.2821106e+29 -5.274173e+29 -5.2754301e+29 -5.282535e+29 -5.282241e+29 -5.2625846e+29 -5.2389142e+29 -5.2607423e+29 -5.2419778e+29 -5.2874855e+29 -5.2878133e+29 -5.2928519e+29 -5.2925395e+29 -5.2878031e+29 -5.2931876e+29 -5.2931789e+29 -5.2880013e+29 -5.2981254e+29 -5.2983526e+29 -5.3036008e+29 -5.3032697e+29 -5.2974812e+29 -5.2977991e+29 -5.3028903e+29 -5.302548e+29 -5.349782e+29 -5.3441461e+29 -5.3431463e+29 -5.3487232e+29 -5.3386309e+29 -5.3333313e+29 -5.3323826e+29 -5.3376585e+29 -5.3308675e+29 -5.3315899e+29 -5.3369199e+29 -5.3362479e+29 -5.3480017e+29 -5.342417e+29 -5.34167e+29 -5.3472046e+29 -5.3280797e+29 -5.3229062e+29 -5.3217946e+29 -5.3270967e+29 -5.3177647e+29 -5.3125524e+29 -5.311196e+29 -5.3165195e+29 -5.3093737e+29 -5.3101821e+29 -5.3155414e+29 -5.314767e+29 -5.3262544e+29 -5.3208753e+29 -5.3201068e+29 -5.3255088e+29 -5.3462972e+29 -5.3408221e+29 -5.3403331e+29 -5.3458257e+29 -5.335446e+29 -5.3301288e+29 -5.3296168e+29 -5.3348986e+29 -5.3284515e+29 -5.3290674e+29 -5.3344244e+29 -5.3339276e+29 -5.3455659e+29 -5.3399575e+29 -5.339495e+29 -5.3451878e+29 -5.3248041e+29 -5.3194636e+29 -5.3189434e+29 -5.3242891e+29 -5.308426e+29 -5.3088467e+29 -5.3141592e+29 -5.313693e+29 -5.3076042e+29 -5.3080093e+29 -5.3132072e+29 -5.3127146e+29 -5.3237346e+29 -5.3184144e+29 -5.3178189e+29 -5.3231033e+29 -5.2981121e+29 -5.2998545e+29 -5.3043499e+29 -5.3026847e+29 -5.3012571e+29 -5.3026178e+29 -5.3071146e+29 -5.305672e+29 -5.3166981e+29 -5.3117719e+29 -5.310266e+29 -5.3151558e+29 -5.3137693e+29 -5.3089339e+29 -5.3073117e+29 -5.3121708e+29 -5.304154e+29 -5.3055353e+29 -5.3102573e+29 -5.308806e+29 -5.3120348e+29 -5.3071034e+29 -5.3065074e+29 -5.3113437e+29 -5.3222273e+29 -5.3169907e+29 -5.3162148e+29 -5.321324e+29 -5.3200613e+29 -5.3150505e+29 -5.313516e+29 -5.3184894e+29 -5.3172634e+29 -5.318908e+29 -5.3243651e+29 -5.322655e+29 -5.3275003e+29 -5.3219604e+29 -5.3203861e+29 -5.3259197e+29 -5.3391656e+29 -5.333248e+29 -5.3316693e+29 -5.3375803e+29 -5.3359175e+29 -5.3300593e+29 -5.3282561e+29 -5.3340672e+29 -5.3237141e+29 -5.3252957e+29 -5.3308002e+29 -5.3292283e+29 -5.3330969e+29 -5.3275747e+29 -5.3266077e+29 -5.3321301e+29 -5.3445168e+29 -5.3387461e+29 -5.337798e+29 -5.3436078e+29 -5.3423263e+29 -5.3364939e+29 -5.3349236e+29 -5.3408016e+29 -5.1813213e+29 -5.138931e+29 -5.1831606e+29 -5.1362034e+29 -5.1372163e+29 -5.1814975e+29 -5.1838487e+29 -5.1415328e+29 -5.2520449e+29 -5.2303687e+29 -5.2516699e+29 -5.2315364e+29 -5.2323393e+29 -5.2537113e+29 -5.2305382e+29 -5.2521703e+29 -5.2657268e+29 -5.2771103e+29 -5.2671809e+29 -5.2758714e+29 -5.2747485e+29 -5.2650997e+29 -5.2735116e+29 -5.2649265e+29 -5.1923129e+29 -5.1881599e+29 -5.1475559e+29 -5.1414747e+29 -5.1389845e+29 -5.1846824e+29 -5.1851895e+29 -5.1400349e+29 -5.2353114e+29 -5.2571693e+29 -5.2555636e+29 -5.2339191e+29 -5.2419852e+29 -5.2383567e+29 -5.2623215e+29 -5.259732e+29 -5.2726518e+29 -5.2822894e+29 -5.2745647e+29 -5.2815267e+29 -5.2801812e+29 -5.2706879e+29 -5.2690956e+29 -5.278499e+29 -5.2842926e+29 -5.2858132e+29 -5.2909953e+29 -5.2896273e+29 -5.2924078e+29 -5.2874634e+29 -5.2869404e+29 -5.2919865e+29 -5.2968078e+29 -5.2972046e+29 -5.3021631e+29 -5.3016934e+29 -5.2945843e+29 -5.295904e+29 -5.3007769e+29 -5.2994492e+29 -5.2919381e+29 -5.2932075e+29 -5.2979437e+29 -5.2967018e+29 -5.2883143e+29 -5.2829746e+29 -5.2817171e+29 -5.2870233e+29 -5.2804144e+29 -5.2856047e+29 -5.2839875e+29 -5.278917e+29 -5.2887421e+29 -5.2904861e+29 -5.2952607e+29 -5.2935083e+29 -5.181314e+29 -5.1379257e+29 -5.1820154e+29 -5.1371401e+29 -5.2359935e+29 -5.2516301e+29 -5.2354909e+29 -5.2496293e+29 -5.2550163e+29 -5.2587295e+29 -5.2535918e+29 -5.2597912e+29 -5.1406995e+29 -5.1366822e+29 -5.1807174e+29 -5.1830061e+29 -5.1818443e+29 -5.1356604e+29 -5.1805727e+29 -5.1380139e+29 -5.229284e+29 -5.2494786e+29 -5.250314e+29 -5.2322458e+29 -5.2307386e+29 -5.2288135e+29 -5.2510246e+29 -5.2496304e+29 -5.2623156e+29 -5.2722749e+29 -5.2636795e+29 -5.2706096e+29 -5.2682743e+29 -5.2613845e+29 -5.260368e+29 -5.2647128e+29 -5.2686528e+29 -5.2727679e+29 -5.2770249e+29 -5.2726916e+29 -5.2755512e+29 -5.2774986e+29 -5.2823305e+29 -5.2801269e+29 -5.2844661e+29 -5.2869263e+29 -5.2915093e+29 -5.2888606e+29 -5.2765218e+29 -5.2811084e+29 -5.2852833e+29 -5.2805266e+29 -5.2676606e+29 -5.2708216e+29 -5.2746329e+29 -5.2639297e+29 -5.2569158e+29 -5.263319e+29 -5.2671834e+29 -5.2605109e+29 -5.2786232e+29 -5.283163e+29 -5.2766753e+29 -5.2718188e+29 -5.2930984e+29 -5.2879185e+29 -5.2816682e+29 -5.2870601e+29 -5.2890077e+29 -5.2895076e+29 -5.2939129e+29 -5.2845973e+29 -5.3005818e+29 -5.2960293e+29 -5.2932249e+29 -5.2977207e+29 -5.3100491e+29 -5.3052087e+29 -5.3023122e+29 -5.307186e+29 -5.3033747e+29 -5.2984899e+29 -5.2935854e+29 -5.298582e+29 -5.3039626e+29 -5.298402e+29 -5.2924864e+29 -5.2981315e+29 -5.3155504e+29 -5.3096326e+29 -5.3038436e+29 -5.3096991e+29 -5.3037569e+29 -5.3085133e+29 -5.3139219e+29 -5.3092501e+29 -5.3204969e+29 -5.3151291e+29 -5.3122839e+29 -5.3176632e+29 -5.3318562e+29 -5.3260782e+29 -5.3232531e+29 -5.3290406e+29 -5.3253767e+29 -5.3195503e+29 -5.3148582e+29 -5.3207727e+29 -5.0347911e+29 -5.0384611e+29 -5.0582202e+29 -5.0536043e+29 -5.0341361e+29 -5.0330981e+29 -5.0516258e+29 -5.053341e+29 -4.8842464e+29 -4.8955385e+29 -4.9534662e+29 -4.958796e+29 -5.2460528e+29 -5.2497561e+29 -5.2343804e+29 -5.3130049e+29 -5.3174822e+29 -5.2017529e+29 -5.2063817e+29 -5.0728619e+29 -5.0759226e+29 -5.2360203e+29 -5.1032083e+29 -5.1003397e+29 -5.111832e+29 -5.1084039e+29 -5.1794557e+29 -5.1826921e+29 -5.4692812e+29 -5.3582187e+29 -5.3518396e+29 -5.4592383e+29 -5.3681682e+29 -5.3736035e+29 -5.4263491e+29 -5.4191841e+29 -5.4731888e+29 -5.5208293e+29 -5.5109449e+29 -5.4646911e+29 -5.5880144e+29 -5.583655e+29 -5.6295637e+29 -5.6344929e+29 -5.5788028e+29 -5.6244594e+29 -5.61731e+29 -5.5723863e+29 -5.5965094e+29 -5.5710247e+29 -5.5766896e+29 -5.5906335e+29 -5.5651849e+29 -5.5586746e+29 -5.5782168e+29 -5.5846907e+29 -5.6247584e+29 -5.6038072e+29 -5.5972362e+29 -5.6179754e+29 -5.6157453e+29 -5.6369249e+29 -5.6309803e+29 -5.6099114e+29 -5.3286241e+29 -5.4528429e+29 -5.4461433e+29 -5.6080346e+29 -5.5985602e+29 -5.3646579e+29 -5.4855027e+29 -5.3716337e+29 -5.4771705e+29 -5.5957989e+29 -5.6490242e+29 -5.6000489e+29 -5.644187e+29 -5.5934392e+29 -5.5912554e+29 -5.6385764e+29 -5.6413546e+29 -5.6725762e+29 -5.6685904e+29 -5.6901311e+29 -5.6941819e+29 -5.7385741e+29 -5.7150809e+29 -5.7108146e+29 -5.7340013e+29 -5.7065428e+29 -5.7295086e+29 -5.7251654e+29 -5.7020756e+29 -5.6644607e+29 -5.6605258e+29 -5.6814948e+29 -5.685802e+29 -5.7597225e+29 -5.7578343e+29 -5.7698459e+29 -5.7716832e+29 -5.7557431e+29 -5.7677517e+29 -5.7651848e+29 -5.7532443e+29 -5.7510425e+29 -5.7604455e+29 -5.7629264e+29 -5.7484716e+29 -5.7462787e+29 -5.758158e+29 -5.7558632e+29 -5.7440986e+29 -5.6828186e+29 -5.6797394e+29 -5.7021669e+29 -5.7052449e+29 -5.7268332e+29 -5.7509885e+29 -5.7475848e+29 -5.7236384e+29 -5.7444917e+29 -5.720799e+29 -5.7178538e+29 -5.7413368e+29 -5.6771391e+29 -5.696713e+29 -5.699379e+29 -5.67481e+29 -5.765909e+29 -5.7640228e+29 -5.7761626e+29 -5.7780369e+29 -5.7625113e+29 -5.7746229e+29 -5.7730237e+29 -5.7609664e+29 -5.7836111e+29 -5.7851257e+29 -5.7727082e+29 -5.7711357e+29 -5.7798101e+29 -5.7818707e+29 -5.7694709e+29 -5.7676095e+29 -5.6498784e+29 -5.6560815e+29 -5.6603392e+29 -5.6456656e+29 -5.6640293e+29 -5.6677605e+29 -5.6573816e+29 -5.6535588e+29 -5.6318479e+29 -5.6281044e+29 -5.6378454e+29 -5.6416582e+29 -5.6210116e+29 -5.6246865e+29 -5.6306976e+29 -5.6344134e+29 -5.6514018e+29 -5.6473945e+29 -5.6580464e+29 -5.6621472e+29 -5.6439436e+29 -5.6507437e+29 -5.6544725e+29 -5.6402038e+29 -5.672098e+29 -5.6679173e+29 -5.6786422e+29 -5.6828819e+29 -5.6935552e+29 -5.7051281e+29 -5.7007709e+29 -5.6892176e+29 -5.6853072e+29 -5.6812182e+29 -5.6924266e+29 -5.6966841e+29 -5.6642341e+29 -5.6748215e+29 -5.670864e+29 -5.6604472e+29 -5.6179033e+29 -5.6276505e+29 -5.6237479e+29 -5.6138339e+29 -5.6099699e+29 -5.6199396e+29 -5.6155829e+29 -5.60563e+29 -5.6295598e+29 -5.6252807e+29 -5.6359131e+29 -5.6401079e+29 -5.6371065e+29 -5.6476443e+29 -5.6437984e+29 -5.6332449e+29 -5.6572702e+29 -5.6673292e+29 -5.6645377e+29 -5.6544964e+29 -5.6517014e+29 -5.6616928e+29 -5.6585697e+29 -5.6486064e+29 -5.6682343e+29 -5.671492e+29 -5.6789484e+29 -5.6822563e+29 -5.6771349e+29 -5.6743208e+29 -5.6851647e+29 -5.6880118e+29 -5.6980235e+29 -5.6951249e+29 -5.7060045e+29 -5.7089315e+29 -5.7198128e+29 -5.7285417e+29 -5.7316629e+29 -5.7167456e+29 -5.7136616e+29 -5.7100721e+29 -5.7217847e+29 -5.7253405e+29 -5.6921715e+29 -5.7029619e+29 -5.6994853e+29 -5.6888278e+29 -5.6791605e+29 -5.6861155e+29 -5.6898251e+29 -5.675402e+29 -5.6931795e+29 -5.6966149e+29 -5.6860346e+29 -5.6825069e+29 -5.7036294e+29 -5.7071002e+29 -5.7187569e+29 -5.7151022e+29 -5.7003423e+29 -5.7118076e+29 -5.708207e+29 -5.6966693e+29 -5.6458123e+29 -5.6557671e+29 -5.6522068e+29 -5.6421881e+29 -5.6388365e+29 -5.6488249e+29 -5.6448945e+29 -5.6350196e+29 -5.6585372e+29 -5.6654655e+29 -5.6692481e+29 -5.6546589e+29 -5.6654395e+29 -5.6761463e+29 -5.6725928e+29 -5.6618622e+29 -5.7425739e+29 -5.7689525e+29 -5.7175996e+29 -5.711613e+29 -5.7624865e+29 -5.7061451e+29 -5.7567521e+29 -5.7504594e+29 -5.7005512e+29 -5.6885808e+29 -5.7120502e+29 -5.7103967e+29 -5.6871208e+29 -5.7345969e+29 -5.7597387e+29 -5.757393e+29 -5.7325508e+29 -5.685998e+29 -5.708857e+29 -5.7072596e+29 -5.6847702e+29 -5.7307822e+29 -5.7288405e+29 -5.753129e+29 -5.7552922e+29 -5.7770354e+29 -5.7758772e+29 -5.7885118e+29 -5.7896885e+29 -5.7748039e+29 -5.7736983e+29 -5.786177e+29 -5.7873972e+29 -5.7790492e+29 -5.791883e+29 -5.7906669e+29 -5.7779238e+29 -5.7942506e+29 -5.7814468e+29 -5.7802008e+29 -5.7930752e+29 -5.7686912e+29 -5.7403323e+29 -5.7432188e+29 -5.7656458e+29 -5.6967691e+29 -5.7202349e+29 -5.717432e+29 -5.6936243e+29 -5.6914564e+29 -5.715199e+29 -5.7134248e+29 -5.6898144e+29 -5.7380555e+29 -5.7633654e+29 -5.7613701e+29 -5.7360634e+29 -5.3795374e+29 -5.3845476e+29 -5.3937096e+29 -5.3866604e+29 -5.3774062e+29 -5.3789392e+29 -5.3733184e+29 -5.3655418e+29 -5.3714246e+29 -5.3734581e+29 -5.3771323e+29 -5.3789825e+29 -5.3844382e+29 -5.3786917e+29 -5.3857658e+29 -5.3980905e+29 -5.3890949e+29 -5.3829574e+29 -5.3889549e+29 -5.3935154e+29 -5.3872732e+29 -5.3814735e+29 -5.3772876e+29 -5.3707663e+29 -5.3749836e+29 -5.3731254e+29 -5.3681784e+29 -5.3616397e+29 -5.3665729e+29 -5.3833913e+29 -5.4026682e+29 -5.3978358e+29 -5.3786714e+29 -5.3927922e+29 -5.413004e+29 -5.4077241e+29 -5.3879645e+29 -5.431125e+29 -5.425256e+29 -5.4447158e+29 -5.4512575e+29 -5.4200697e+29 -5.439366e+29 -5.4342485e+29 -5.4152197e+29 -5.3931294e+29 -5.3994133e+29 -5.4126449e+29 -5.4060024e+29 -5.425869e+29 -5.419121e+29 -5.4419844e+29 -5.4312967e+29 -5.4275915e+29 -5.4382483e+29 -5.4377256e+29 -5.4484901e+29 -5.4453708e+29 -5.434688e+29 -5.4016343e+29 -5.4110033e+29 -5.4248927e+29 -5.4144038e+29 -5.4095976e+29 -5.4199429e+29 -5.4236458e+29 -5.419001e+29 -5.4295478e+29 -5.4343197e+29 -5.4043561e+29 -5.4104254e+29 -5.4049396e+29 -5.398648e+29 -5.3984943e+29 -5.3922076e+29 -5.4206647e+29 -5.414412e+29 -5.3796767e+29 -5.3912854e+29 -5.3979119e+29 -5.3862997e+29 -5.3922801e+29 -5.3854188e+29 -5.4077092e+29 -5.4007596e+29 -5.3461233e+29 -5.3546794e+29 -5.3598438e+29 -5.351751e+29 -5.3685268e+29 -5.3641801e+29 -5.3563199e+29 -5.3607388e+29 -5.4542916e+29 -5.4740764e+29 -5.4801292e+29 -5.4598416e+29 -5.486142e+29 -5.4932663e+29 -5.4724758e+29 -5.4655473e+29 -5.5053446e+29 -5.5126521e+29 -5.5330314e+29 -5.525646e+29 -5.4991498e+29 -5.5191763e+29 -5.5126246e+29 -5.4928921e+29 -5.5020708e+29 -5.4888521e+29 -5.4937107e+29 -5.4974239e+29 -5.4855931e+29 -5.4774094e+29 -5.4723566e+29 -5.4805818e+29 -5.4625911e+29 -5.467594e+29 -5.4758439e+29 -5.4708159e+29 -5.4840805e+29 -5.4927368e+29 -5.4875775e+29 -5.4790126e+29 -5.505354e+29 -5.5091665e+29 -5.5179667e+29 -5.5140983e+29 -5.4886955e+29 -5.4922967e+29 -5.5007313e+29 -5.4970233e+29 -5.4812207e+29 -5.4850948e+29 -5.4933257e+29 -5.4893397e+29 -5.4973964e+29 -5.5015694e+29 -5.5102444e+29 -5.5058545e+29 -5.4517194e+29 -5.4602915e+29 -5.4564843e+29 -5.447925e+29 -5.4669974e+29 -5.4583166e+29 -5.4550607e+29 -5.4636899e+29 -5.4719883e+29 -5.4753698e+29 -5.4838915e+29 -5.4803886e+29 -5.4685483e+29 -5.4768704e+29 -5.4730352e+29 -5.4647256e+29 -5.4391786e+29 -5.4440857e+29 -5.4526681e+29 -5.4477424e+29 -5.4559046e+29 -5.4608774e+29 -5.4691707e+29 -5.4641271e+29 -5.4460938e+29 -5.4511896e+29 -5.4593711e+29 -5.4544302e+29 -5.4345171e+29 -5.4430406e+29 -5.4379032e+29 -5.4294133e+29 -5.4235605e+29 -5.4312157e+29 -5.4376125e+29 -5.4299856e+29 -5.4386373e+29 -5.4450333e+29 -5.4524714e+29 -5.4460154e+29 -5.4391566e+29 -5.4318282e+29 -5.4246771e+29 -5.4321398e+29 -5.416844e+29 -5.4244478e+29 -5.4172649e+29 -5.4096363e+29 -5.410824e+29 -5.4178141e+29 -5.4254419e+29 -5.4184898e+29 -5.4102293e+29 -5.4025008e+29 -5.3954067e+29 -5.4032161e+29 -5.3886109e+29 -5.3963982e+29 -5.4038806e+29 -5.4113827e+29 -5.4575147e+29 -5.4423754e+29 -5.4493995e+29 -5.4507209e+29 -5.441153e+29 -5.4332667e+29 -5.4262068e+29 -5.434064e+29 -5.4190165e+29 -5.4269085e+29 -5.4196979e+29 -5.4351775e+29 -5.4434388e+29 -5.435337e+29 -5.4274725e+29 -5.4770386e+29 -5.475406e+29 -5.4829608e+29 -5.4692219e+29 -5.460002e+29 -5.4675916e+29 -5.4612252e+29 -5.4535089e+29 -5.4628214e+29 -5.4560047e+29 -5.4639298e+29 -5.4708145e+29 -5.4468211e+29 -5.4400136e+29 -5.4478682e+29 -5.4546483e+29 -5.4224356e+29 -5.429375e+29 -5.4157334e+29 -5.6022259e+29 -5.6072311e+29 -5.6118675e+29 -5.597667e+29 -5.5931846e+29 -5.6027624e+29 -5.598343e+29 -5.5886926e+29 -5.6082784e+29 -5.6128062e+29 -5.6231616e+29 -5.6184455e+29 -5.6219216e+29 -5.6277935e+29 -5.6324018e+29 -5.6172867e+29 -5.5843538e+29 -5.5939251e+29 -5.5893619e+29 -5.579753e+29 -5.5699267e+29 -5.5750055e+29 -5.5846042e+29 -5.5794328e+29 -5.4894488e+29 -5.4967573e+29 -5.4962043e+29 -5.5014486e+29 -5.5085628e+29 -5.5137121e+29 -5.5044589e+29 -5.4986663e+29 -5.4909265e+29 -5.4836573e+29 -5.5104798e+29 -5.5183757e+29 -5.5227497e+29 -5.5062124e+29 -5.526248e+29 -5.5307641e+29 -5.5388398e+29 -5.5342284e+29 -5.5216477e+29 -5.5295842e+29 -5.5245633e+29 -5.5165642e+29 -5.5196394e+29 -5.5061312e+29 -5.5119273e+29 -5.5137778e+29 -5.4937693e+29 -5.5001094e+29 -5.5076868e+29 -5.5014536e+29 -5.4775607e+29 -5.484925e+29 -5.4926261e+29 -5.4861879e+29 -5.478228e+29 -5.4707214e+29 -5.5343734e+29 -5.5407193e+29 -5.5444732e+29 -5.5308252e+29 -5.5414698e+29 -5.5480184e+29 -5.5518612e+29 -5.5377515e+29 -5.5568562e+29 -5.5608924e+29 -5.5702578e+29 -5.5660642e+29 -5.5532317e+29 -5.5623114e+29 -5.5583659e+29 -5.5493511e+29 -5.5982018e+29 -5.5939778e+29 -5.6043545e+29 -5.6084231e+29 -5.5843914e+29 -5.5886475e+29 -5.5791365e+29 -5.5748785e+29 -5.5670144e+29 -5.5710564e+29 -5.5805105e+29 -5.5763357e+29 -5.5901171e+29 -5.5858709e+29 -5.5961691e+29 -5.6004873e+29 -5.6053265e+29 -5.6153612e+29 -5.6116292e+29 -5.6014818e+29 -5.6124373e+29 -5.6225229e+29 -5.6188032e+29 -5.608725e+29 -5.5898838e+29 -5.5935609e+29 -5.5993086e+29 -5.602951e+29 -5.5864173e+29 -5.5825065e+29 -5.5919821e+29 -5.5958808e+29 -5.5555413e+29 -5.5660424e+29 -5.5624777e+29 -5.5519469e+29 -5.5484025e+29 -5.5589685e+29 -5.5551093e+29 -5.5446132e+29 -5.5681043e+29 -5.5642015e+29 -5.5736223e+29 -5.5775037e+29 -5.575185e+29 -5.5846702e+29 -5.5809802e+29 -5.5715421e+29 -5.5267678e+29 -5.5229862e+29 -5.535477e+29 -5.5394431e+29 -5.5476236e+29 -5.5558404e+29 -5.5515959e+29 -5.5435257e+29 -5.5393839e+29 -5.53503e+29 -5.5430376e+29 -5.547328e+29 -5.5190714e+29 -5.531406e+29 -5.5270338e+29 -5.5146418e+29 -5.5556243e+29 -5.5643466e+29 -5.5599756e+29 -5.5512876e+29 -5.5599401e+29 -5.5642756e+29 -5.5731412e+29 -5.5687372e+29 -5.5836042e+29 -5.573841e+29 -5.5694182e+29 -5.5791309e+29 -5.5827554e+29 -5.578277e+29 -5.5880991e+29 -5.5926296e+29 -5.5471228e+29 -5.5511845e+29 -5.5558008e+29 -5.5425036e+29 -5.5378192e+29 -5.546466e+29 -5.5414907e+29 -5.5328167e+29 -5.5508562e+29 -5.5558084e+29 -5.5654431e+29 -5.5604687e+29 -5.5651965e+29 -5.5748646e+29 -5.5702095e+29 -5.560543e+29 -5.4501554e+29 -5.4581425e+29 -5.4601653e+29 -5.4502668e+29 -5.4666924e+29 -5.441906e+29 -5.4642257e+29 -5.4717585e+29 -5.4733335e+29 -5.4653251e+29 -5.4797535e+29 -5.4575978e+29 -5.4806699e+29 -5.4872793e+29 -5.4949771e+29 -5.4881261e+29 -5.4741584e+29 -5.4813422e+29 -5.4746485e+29 -5.4678043e+29 -5.5297182e+29 -5.5134345e+29 -5.5205409e+29 -5.5227886e+29 -5.5114887e+29 -5.5030043e+29 -5.5044003e+29 -5.4960154e+29 -5.4903953e+29 -5.497242e+29 -5.4890005e+29 -5.4822261e+29 -5.5062126e+29 -5.5156172e+29 -5.5088013e+29 -5.4994335e+29 -5.5277396e+29 -5.5306023e+29 -5.5364017e+29 -5.5219194e+29 -5.5095201e+29 -5.5157858e+29 -5.5244345e+29 -5.5180825e+29 -5.5272231e+29 -5.5337422e+29 -5.543225e+29 -5.5364393e+29 -5.5457888e+29 -5.5553939e+29 -5.5495699e+29 -5.5399589e+29 -5.4624782e+29 -5.4688611e+29 -5.456593e+29 -5.4476916e+29 -5.4763446e+29 -5.484517e+29 -5.4937329e+29 -5.5032641e+29 -5.104512e+29 -5.1032092e+29 -5.3173893e+29 -5.30128e+29 -5.2918884e+29 -5.3078402e+29 -5.3336365e+29 -5.342871e+29 -5.3484972e+29 -5.3396285e+29 -5.3283523e+29 -5.3364785e+29 -5.3270265e+29 -5.3187835e+29 -5.3509022e+29 -5.3694215e+29 -5.3443077e+29 -5.3615823e+29 -5.3529681e+29 -5.347787e+29 -5.3555154e+29 -5.3606208e+29 -5.3723806e+29 -5.3670613e+29 -5.3615427e+29 -5.3667071e+29 -5.3621021e+29 -5.3566443e+29 -5.3501943e+29 -5.3555959e+29 -5.335991e+29 -5.3427116e+29 -5.350465e+29 -5.3439698e+29 -5.2639948e+29 -5.3042343e+29 -5.3019481e+29 -5.2624556e+29 -5.2656444e+29 -5.2678465e+29 -5.3098937e+29 -5.3068511e+29 -5.3312049e+29 -5.3560549e+29 -5.3603255e+29 -5.3343916e+29 -5.3644065e+29 -5.3688045e+29 -5.3416666e+29 -5.3377471e+29 -5.2849212e+29 -5.3230631e+29 -5.3180178e+29 -5.2808006e+29 -5.2913687e+29 -5.3311337e+29 -5.3274631e+29 -5.288378e+29 -5.3558399e+29 -5.3606799e+29 -5.3814123e+29 -5.3758022e+29 -5.3366552e+29 -5.3192532e+29 -5.3247144e+29 -5.34188e+29 -5.2994226e+29 -5.2895251e+29 -5.3314567e+29 -5.3141943e+29 -5.3086229e+29 -5.3251523e+29 -5.2164789e+29 -5.2171633e+29 -5.2429073e+29 -5.2409306e+29 -5.1822742e+29 -5.1509219e+29 -5.1510509e+29 -5.1995395e+29 -5.1979485e+29 -5.1815261e+29 -5.2181642e+29 -5.2192618e+29 -5.246256e+29 -5.2446449e+29 -5.139546e+29 -5.2166423e+29 -5.2147814e+29 -5.1392857e+29 -5.154902e+29 -5.2034561e+29 -5.2014619e+29 -5.1526862e+29 -5.2844662e+29 -5.2452262e+29 -5.24281e+29 -5.2813955e+29 -5.2747474e+29 -5.2785414e+29 -5.2403775e+29 -5.2378677e+29 -5.3038829e+29 -5.2889971e+29 -5.2927925e+29 -5.299985e+29 -5.2788706e+29 -5.2648837e+29 -5.2625563e+29 -5.275752e+29 -5.2600082e+29 -5.2724244e+29 -5.267899e+29 -5.2568953e+29 -5.2848176e+29 -5.2791812e+29 -5.2889187e+29 -5.2953455e+29 -4.9681559e+29 -4.9613146e+29 -4.9544732e+29 -4.961769e+29 -4.9590703e+29 -4.9520825e+29 -5.1037699e+29 -5.1049353e+29 -5.1073492e+29 -5.1048852e+29 -5.1277986e+29 -5.1248115e+29 -5.1250568e+29 -5.1235391e+29 -5.126066e+29 -5.1311429e+29 -5.1304432e+29 -5.1358828e+29 -5.1252537e+29 -5.1240794e+29 -5.128116e+29 -5.1291151e+29 -5.1452681e+29 -5.1393353e+29 -5.1369074e+29 -5.1379489e+29 -5.1220249e+29 -5.1245607e+29 -5.1282542e+29 -5.1257337e+29 -5.1229836e+29 -5.1269126e+29 -5.1266207e+29 -5.1308166e+29 -5.1369266e+29 -5.1343224e+29 -5.1396253e+29 -5.1352805e+29 -5.1249926e+29 -5.1239844e+29 -5.1238389e+29 -5.1303034e+29 -5.12644e+29 -5.1226562e+29 -5.1267265e+29 -5.1234912e+29 -5.1211956e+29 -5.1276908e+29 -5.1417972e+29 -5.1387296e+29 -5.1341637e+29 -5.1342894e+29 -5.1439382e+29 -5.1234258e+29 -5.1224239e+29 -5.1468463e+29 -5.1448429e+29 -5.128061e+29 -5.1278088e+29 -5.1569037e+29 -5.1700181e+29 -5.1520923e+29 -5.1601957e+29 -5.1448968e+29 -5.1450593e+29 -5.1786848e+29 -5.1784965e+29 -5.1829644e+29 -5.2044183e+29 -5.1750674e+29 -5.1803969e+29 -5.21238e+29 -5.2063724e+29 -5.1952621e+29 -5.2129996e+29 -5.305631e+29 -5.3051927e+29 -5.3238622e+29 -5.3169659e+29 -5.2950683e+29 -5.3339435e+29 -5.3291766e+29 -5.2610602e+29 -5.2578221e+29 -5.3006383e+29 -5.3104594e+29 -5.301958e+29 -5.2912013e+29 -5.2815585e+29 -5.2920975e+29 -5.2734779e+29 -5.282857e+29 -5.2882924e+29 -5.2789016e+29 -5.2738416e+29 -5.2787026e+29 -5.2702259e+29 -5.2666857e+29 -5.2697306e+29 -5.2640255e+29 -5.2590271e+29 -5.2516851e+29 -5.250009e+29 -5.2414715e+29 -5.2638234e+29 -5.2583394e+29 -5.2380839e+29 -5.2118268e+29 -5.2365763e+29 -5.234864e+29 -5.2125664e+29 -5.2653827e+29 -5.2725412e+29 -5.2849483e+29 -5.2938467e+29 -5.2767526e+29 -5.2570834e+29 -5.2635629e+29 -5.2917942e+29 -5.2927193e+29 -5.2840106e+29 -5.2683402e+29 -5.2708888e+29 -5.2809936e+29 -5.2829008e+29 -5.2743955e+29 -5.2780335e+29 -5.2897925e+29 -5.2850254e+29 -5.2571114e+29 -5.2623279e+29 -5.2624605e+29 -5.2645613e+29 -5.2701513e+29 -5.2679378e+29 -5.2623957e+29 -5.2682108e+29 -5.2538886e+29 -5.2519858e+29 -5.2569051e+29 -5.2589142e+29 -5.2512301e+29 -5.2497178e+29 -5.2545107e+29 -5.256857e+29 -5.2562819e+29 -5.3135819e+29 -5.3009473e+29 -5.3114016e+29 -5.3232454e+29 -5.3064354e+29 -5.3188944e+29 -5.3015213e+29 -5.3064252e+29 -5.2988331e+29 -5.2928689e+29 -5.2796029e+29 -5.2878411e+29 -5.2845055e+29 -5.2924545e+29 -5.2929309e+29 -5.2864196e+29 -5.2953674e+29 -5.2739075e+29 -5.2760069e+29 -5.2823746e+29 -5.2802795e+29 -5.2870657e+29 -5.2890575e+29 -5.2957335e+29 -5.2939127e+29 -5.2954977e+29 -5.2919791e+29 -5.2939394e+29 -5.2869934e+29 -5.2741229e+29 -5.2803713e+29 -5.2159865e+29 -5.226206e+29 -5.2462052e+29 -5.237187e+29 -5.246272e+29 -5.2331282e+29 -5.2147896e+29 -5.2471073e+29 -5.236223e+29 -5.243011e+29 -5.2526258e+29 -5.2402387e+29 -5.250964e+29 -5.2501965e+29 -5.256251e+29 -5.2462578e+29 -5.2546677e+29 -5.2526576e+29 -5.2221365e+29 -5.2141394e+29 -5.2308577e+29 -5.2218981e+29 -5.2228856e+29 -5.2338808e+29 -5.219532e+29 -5.2193997e+29 -5.2241194e+29 -5.2397366e+29 -5.2275005e+29 -5.2208555e+29 -5.2193098e+29 -5.2305684e+29 -5.2439094e+29 -5.234363e+29 -5.2297485e+29 -5.2402599e+29 -5.233556e+29 -5.2437454e+29 -5.2354187e+29 -5.2395162e+29 -5.2158527e+29 -5.2081555e+29 -5.2039277e+29 -5.2308711e+29 -5.2403421e+29 -5.2335096e+29 -5.2450705e+29 -5.2429848e+29 -5.2395891e+29 -5.2422376e+29 -5.2448047e+29 -5.2469482e+29 -5.2493549e+29 -5.247671e+29 -5.2469023e+29 -5.2435556e+29 -5.2407808e+29 -5.2377407e+29 -5.3514967e+29 -5.3441393e+29 -5.3591266e+29 -5.3709888e+29 -5.364585e+29 -5.3569959e+29 -5.3498282e+29 -5.3543994e+29 -5.3503372e+29 -5.3421024e+29 -5.3465065e+29 -5.3344109e+29 -5.3388471e+29 -5.3388342e+29 -5.3460364e+29 -5.33748e+29 -5.3310291e+29 -5.3905832e+29 -5.3842641e+29 -5.3791671e+29 -5.3837678e+29 -5.3905229e+29 -5.3973091e+29 -5.4042544e+29 -5.3971572e+29 -5.4264423e+29 -5.4217962e+29 -5.4037285e+29 -5.4113326e+29 -5.4143786e+29 -5.3989365e+29 -5.3945591e+29 -5.4017972e+29 -5.4144874e+29 -5.4087382e+29 -5.4054106e+29 -5.4130389e+29 -5.4173437e+29 -5.4222926e+29 -5.4231777e+29 -5.4267127e+29 -5.425814e+29 -5.4184209e+29 -5.4098839e+29 -5.4073966e+29 -5.4155262e+29 -5.4137313e+29 -5.4057969e+29 -5.3906764e+29 -5.3920628e+29 -5.3980609e+29 -5.3994642e+29 -5.3658906e+29 -5.3710102e+29 -5.3754076e+29 -5.3799596e+29 -5.3734804e+29 -5.3805935e+29 -5.3858103e+29 -5.3922085e+29 -5.3874847e+29 -5.384804e+29 -5.3776173e+29 -5.3762462e+29 -5.3833986e+29 -5.3702546e+29 -5.3628011e+29 -5.3617556e+29 -5.3690105e+29 -5.413064e+29 -5.4129311e+29 -5.4050333e+29 -5.4052013e+29 -5.3973398e+29 -5.3899343e+29 -5.3899824e+29 -5.3974335e+29 -5.4068423e+29 -5.4146507e+29 -5.3913943e+29 -5.3989662e+29 -5.3826926e+29 -5.3755675e+29 -5.3756351e+29 -5.3826543e+29 -5.3685355e+29 -5.3613401e+29 -5.3616369e+29 -5.3686529e+29 -5.3839841e+29 -5.3768794e+29 -5.3698936e+29 -5.3624272e+29 -5.3583253e+29 -5.3628853e+29 -5.340844e+29 -5.3464169e+29 -5.3416857e+29 -5.3354414e+29 -5.3327912e+29 -5.3396344e+29 -5.3632633e+29 -5.3560993e+29 -5.3523857e+29 -5.3588446e+29 -5.3623132e+29 -5.3695859e+29 -5.3724922e+29 -5.3771137e+29 -5.3785437e+29 -5.3468123e+29 -5.3482804e+29 -5.3542463e+29 -5.3553374e+29 -5.330776e+29 -5.3311943e+29 -5.3383374e+29 -5.338002e+29 -5.3305671e+29 -5.337784e+29 -5.3460676e+29 -5.355034e+29 -5.3534985e+29 -5.3459579e+29 -5.3459567e+29 -5.354079e+29 -5.3537802e+29 -5.3250916e+29 -5.3330745e+29 -5.3164886e+29 -5.3278463e+29 -5.330569e+29 -5.3254964e+29 -5.3353869e+29 -5.3049551e+29 -5.3116949e+29 -5.3163134e+29 -5.3218677e+29 -5.3114274e+29 -5.3185649e+29 -5.322537e+29 -5.3290199e+29 -5.3257998e+29 -5.324137e+29 -5.3168131e+29 -5.3160932e+29 -5.3235308e+29 -5.3006911e+29 -5.3024846e+29 -5.3095092e+29 -5.308359e+29 -5.3236036e+29 -5.3163247e+29 -5.2992416e+29 -5.2996267e+29 -5.308473e+29 -5.4526109e+29 -5.4477418e+29 -5.4395902e+29 -5.4349845e+29 -5.4508295e+29 -5.4484174e+29 -5.4483708e+29 -5.4388109e+29 -5.4369666e+29 -5.3634645e+29 -5.3680603e+29 -5.3760768e+29 -5.3724553e+29 -5.3706254e+29 -5.390968e+29 -5.3836452e+29 -5.3801454e+29 -5.3874104e+29 -5.3845825e+29 -5.3773952e+29 -5.4199553e+29 -5.4129542e+29 -5.4095961e+29 -5.4168042e+29 -5.4144593e+29 -5.4070177e+29 -5.3947374e+29 -5.3982903e+29 -5.405681e+29 -5.4021995e+29 -5.3994314e+29 -5.391874e+29 -5.4239903e+29 -5.4268141e+29 -5.4337212e+29 -5.4415438e+29 -5.4506723e+29 -5.4310422e+29 -5.3315265e+29 -5.3372196e+29 -5.3442626e+29 -5.338753e+29 -5.3310056e+29 -5.3380763e+29 -5.3598376e+29 -5.3518376e+29 -5.3463999e+29 -5.3545178e+29 -5.3509249e+29 -5.3454603e+29 -5.3106485e+29 -5.3171425e+29 -5.3112933e+29 -5.3052083e+29 -5.31053e+29 -5.3033215e+29 -5.3303519e+29 -5.3236661e+29 -5.317696e+29 -5.3245386e+29 -5.3172459e+29 -5.3242601e+29 -5.2039314e+29 -5.245555e+29 -5.2514335e+29 -5.2537152e+29 -5.2496641e+29 -5.2473066e+29 -5.2394201e+29 -5.2341897e+29 -5.2446679e+29 -5.2502342e+29 -5.2418928e+29 -5.2533893e+29 -5.2380054e+29 -5.2410638e+29 -5.247199e+29 -5.2491542e+29 -5.2511806e+29 -5.2439008e+29 -5.2476197e+29 -5.256514e+29 -5.2601964e+29 -5.2650327e+29 -5.270466e+29 -5.2628049e+29 -5.2564344e+29 -5.2689461e+29 -5.2759097e+29 -5.2814042e+29 -5.2748455e+29 -5.2698604e+29 -5.264352e+29 -5.3042641e+29 -5.298354e+29 -5.2991673e+29 -5.2925785e+29 -5.2875101e+29 -5.2925975e+29 -5.286924e+29 -5.2805572e+29 -5.2864949e+29 -5.2815903e+29 -5.2755366e+29 -5.548703e+29 -5.5482451e+29 -5.5584442e+29 -5.5580351e+29 -5.5478935e+29 -5.5475842e+29 -5.5574347e+29 -5.5577007e+29 -5.5216845e+29 -5.5211334e+29 -5.5389592e+29 -5.5384553e+29 -5.5380963e+29 -5.5377396e+29 -5.5207584e+29 -5.5203046e+29 -5.4690179e+29 -5.4700722e+29 -5.4782589e+29 -5.4774046e+29 -5.4943688e+29 -5.486047e+29 -5.4853179e+29 -5.4937203e+29 -5.5017802e+29 -5.5023273e+29 -5.5106118e+29 -5.5101434e+29 -5.5028823e+29 -5.5034619e+29 -5.51161e+29 -5.5110786e+29 -5.4622671e+29 -5.4540659e+29 -5.4527769e+29 -5.461085e+29 -4.9366155e+29 -4.933705e+29 -4.9375469e+29 -5.4316635e+29 -5.4323791e+29 -5.4404056e+29 -5.4398126e+29 -5.4329978e+29 -5.4335382e+29 -5.4413533e+29 -5.4408828e+29 -5.4575731e+29 -5.449387e+29 -5.4489577e+29 -5.4571272e+29 -5.4567829e+29 -5.4485702e+29 -5.4480542e+29 -5.4563207e+29 -5.4340695e+29 -5.4346991e+29 -5.44258e+29 -5.4419656e+29 -5.4442145e+29 -5.4363438e+29 -5.4354027e+29 -5.4432722e+29 -5.4603083e+29 -5.4521925e+29 -5.4513055e+29 -5.4594419e+29 -5.4587919e+29 -5.4506367e+29 -5.4500063e+29 -5.4581535e+29 -5.4932104e+29 -5.4850825e+29 -5.4844372e+29 -5.4926661e+29 -5.4768039e+29 -5.4685492e+29 -5.4677372e+29 -5.4760675e+29 -5.4664676e+29 -5.4670937e+29 -5.4754397e+29 -5.4748325e+29 -5.4921236e+29 -5.4838376e+29 -5.4832297e+29 -5.4915298e+29 -5.4646717e+29 -5.4651146e+29 -5.4734483e+29 -5.4729806e+29 -5.4743084e+29 -5.4659247e+29 -5.4654706e+29 -5.4738443e+29 -5.4910422e+29 -5.4827236e+29 -5.4822459e+29 -5.4905221e+29 -5.4900342e+29 -5.4818064e+29 -5.4812799e+29 -5.4894323e+29 -5.4285124e+29 -5.4208807e+29 -5.4199215e+29 -5.4275612e+29 -5.4134251e+29 -5.4062779e+29 -5.4053195e+29 -5.4124519e+29 -5.4038175e+29 -5.4045463e+29 -5.4116944e+29 -5.411045e+29 -5.4268577e+29 -5.4191745e+29 -5.4185328e+29 -5.4262148e+29 -5.3993449e+29 -5.3927185e+29 -5.3917218e+29 -5.3983693e+29 -5.3862966e+29 -5.3800901e+29 -5.3790821e+29 -5.3852688e+29 -5.3775801e+29 -5.3783132e+29 -5.3844722e+29 -5.3837502e+29 -5.3976013e+29 -5.3909166e+29 -5.3901555e+29 -5.3968348e+29 -5.3735699e+29 -5.3748438e+29 -5.3811346e+29 -5.3799943e+29 -5.3759378e+29 -5.3767619e+29 -5.3828754e+29 -5.3820855e+29 -5.3959969e+29 -5.3892865e+29 -5.3885198e+29 -5.395231e+29 -5.3944306e+29 -5.3876709e+29 -5.3866029e+29 -5.3934558e+29 -5.4256925e+29 -5.4179494e+29 -5.4172835e+29 -5.4250857e+29 -5.4103573e+29 -5.4030458e+29 -5.4022957e+29 -5.4096417e+29 -5.4006124e+29 -5.4015143e+29 -5.4088744e+29 -5.4080368e+29 -5.4243828e+29 -5.4165411e+29 -5.4157323e+29 -5.4236081e+29 -5.3703223e+29 -5.3713287e+29 -5.3774606e+29 -5.3765484e+29 -5.3718672e+29 -5.3719489e+29 -5.3780911e+29 -5.3779456e+29 -5.3911875e+29 -5.3844885e+29 -5.3842906e+29 -5.3909073e+29 -5.3904093e+29 -5.3838263e+29 -5.3829232e+29 -5.3895105e+29 -5.3719458e+29 -5.3717992e+29 -5.378146e+29 -5.3782202e+29 -5.3718568e+29 -5.3723712e+29 -5.378816e+29 -5.3782684e+29 -5.3924656e+29 -5.3855116e+29 -5.3849246e+29 -5.3918488e+29 -5.3915803e+29 -5.3847361e+29 -5.3846898e+29 -5.3914349e+29 -5.4229589e+29 -5.4150196e+29 -5.4144096e+29 -5.422376e+29 -5.4072295e+29 -5.3997199e+29 -5.3990967e+29 -5.4066094e+29 -5.3985283e+29 -5.3987506e+29 -5.4062006e+29 -5.4059087e+29 -5.4218808e+29 -5.4139511e+29 -5.4135769e+29 -5.4214234e+29 -5.4209754e+29 -5.4131963e+29 -5.4126652e+29 -5.4203684e+29 -5.4055698e+29 -5.3982391e+29 -5.3978788e+29 -5.4051266e+29 -5.3963754e+29 -5.3972998e+29 -5.4044546e+29 -5.4034801e+29 -5.4195346e+29 -5.411904e+29 -5.4108583e+29 -5.4184294e+29 -5.4888673e+29 -5.4807757e+29 -5.4803719e+29 -5.4884474e+29 -5.4725104e+29 -5.4642626e+29 -5.4638051e+29 -5.472081e+29 -5.4626081e+29 -5.4633006e+29 -5.47163e+29 -5.4709822e+29 -5.4880574e+29 -5.4799298e+29 -5.4792829e+29 -5.487395e+29 -5.4558875e+29 -5.4475343e+29 -5.4470372e+29 -5.4554028e+29 -5.4391938e+29 -5.4310161e+29 -5.4304947e+29 -5.4386943e+29 -5.4294439e+29 -5.4299855e+29 -5.4381875e+29 -5.4375781e+29 -5.4548861e+29 -5.4465194e+29 -5.4458578e+29 -5.4541965e+29 -5.4261933e+29 -5.4273483e+29 -5.4352607e+29 -5.4340574e+29 -5.4282325e+29 -5.4288728e+29 -5.4368915e+29 -5.4361899e+29 -5.4534208e+29 -5.4451183e+29 -5.4443075e+29 -5.4524976e+29 -5.4514156e+29 -5.4433109e+29 -5.4420491e+29 -5.4500911e+29 -5.4866271e+29 -5.4784904e+29 -5.4773397e+29 -5.4854435e+29 -5.4701545e+29 -5.4618006e+29 -5.4607864e+29 -5.4690683e+29 -5.4582235e+29 -5.4596181e+29 -5.4678141e+29 -5.4663406e+29 -5.4840338e+29 -5.4759988e+29 -5.4744407e+29 -5.4823973e+29 -5.5116964e+29 -5.5209064e+29 -5.5197674e+29 -5.510623e+29 -5.5310617e+29 -5.5298765e+29 -5.5184549e+29 -5.5285074e+29 -5.5269178e+29 -5.5167612e+29 -5.5092687e+29 -5.50756e+29 -5.4903655e+29 -5.4920472e+29 -5.5002866e+29 -5.4985974e+29 -5.493502e+29 -5.4946451e+29 -5.5027663e+29 -5.5016792e+29 -5.5143591e+29 -5.5237753e+29 -5.5231754e+29 -5.5138683e+29 -5.5341819e+29 -5.5334712e+29 -5.5226919e+29 -5.532845e+29 -5.5320672e+29 -5.5219465e+29 -5.513445e+29 -5.5127514e+29 -5.4954908e+29 -5.4961558e+29 -5.5044097e+29 -5.5037479e+29 -5.496559e+29 -5.4969782e+29 -5.5052756e+29 -5.5048309e+29 -5.5432104e+29 -5.5424267e+29 -5.5518537e+29 -5.5526905e+29 -5.5623355e+29 -5.5721706e+29 -5.5712872e+29 -5.5614653e+29 -5.5502086e+29 -5.5417053e+29 -5.5510596e+29 -5.5409002e+29 -5.5606014e+29 -5.5703647e+29 -5.5596735e+29 -5.5693707e+29 -5.5399085e+29 -5.5386843e+29 -5.549209e+29 -5.5479603e+29 -5.5574178e+29 -5.5683398e+29 -5.5670797e+29 -5.5586767e+29 -5.5372894e+29 -5.5357431e+29 -5.5450208e+29 -5.546557e+29 -5.5560001e+29 -5.5544581e+29 -5.5656489e+29 -5.564093e+29 -5.5186914e+29 -5.5281786e+29 -5.528053e+29 -5.5185301e+29 -5.538801e+29 -5.5385775e+29 -5.5278626e+29 -5.538321e+29 -5.5378987e+29 -5.5274015e+29 -5.5182842e+29 -5.5178194e+29 -5.5096206e+29 -5.5013197e+29 -5.5009069e+29 -5.509323e+29 -5.4998865e+29 -5.5004381e+29 -5.5089642e+29 -5.5084712e+29 -5.5172664e+29 -5.52684e+29 -5.5262138e+29 -5.5167014e+29 -5.5373368e+29 -5.5366602e+29 -5.5255161e+29 -5.5358975e+29 -5.5350403e+29 -5.5246542e+29 -5.5160359e+29 -5.5152244e+29 -5.4988552e+29 -5.4993997e+29 -5.5079414e+29 -5.5073942e+29 -5.4976169e+29 -5.4982921e+29 -5.5067703e+29 -5.5060351e+29 -5.5572455e+29 -5.5479471e+29 -5.557513e+29 -5.5476831e+29 -5.5671995e+29 -5.5669302e+29 -5.5770434e+29 -5.5767955e+29 -5.5565084e+29 -5.5473878e+29 -5.5569341e+29 -5.5469796e+29 -5.5764958e+29 -5.5666299e+29 -5.5661679e+29 -5.5760222e+29 -5.555227e+29 -5.5464391e+29 -5.555968e+29 -5.5457252e+29 -5.5754789e+29 -5.5656373e+29 -5.5648684e+29 -5.5747165e+29 -5.5535368e+29 -5.544918e+29 -5.5544057e+29 -5.5440562e+29 -5.5739087e+29 -5.5640584e+29 -5.5631614e+29 -5.5730076e+29 -5.5017014e+29 -5.5105543e+29 -5.5097838e+29 -5.5010484e+29 -5.5204329e+29 -5.5195532e+29 -5.5091649e+29 -5.5188156e+29 -5.5180909e+29 -5.5084715e+29 -5.5004876e+29 -5.4998491e+29 -5.4778029e+29 -5.4702954e+29 -5.4698498e+29 -5.4773128e+29 -5.4625512e+29 -5.4547171e+29 -5.4545106e+29 -5.4621984e+29 -5.4541533e+29 -5.454374e+29 -5.4619001e+29 -5.4615956e+29 -5.4768776e+29 -5.4694423e+29 -5.4690396e+29 -5.4763808e+29 -5.4837973e+29 -5.4843521e+29 -5.4920252e+29 -5.4914401e+29 -5.4848564e+29 -5.4853704e+29 -5.4931434e+29 -5.4925702e+29 -5.5058179e+29 -5.5150347e+29 -5.5136696e+29 -5.5045872e+29 -5.5252847e+29 -5.523835e+29 -5.51263e+29 -5.5226178e+29 -5.5214831e+29 -5.5115619e+29 -5.503627e+29 -5.5026635e+29 -5.4809728e+29 -5.4730869e+29 -5.4720615e+29 -5.4798915e+29 -5.4650376e+29 -5.4569834e+29 -5.4560849e+29 -5.4640643e+29 -5.4550263e+29 -5.4554921e+29 -5.4633987e+29 -5.4628961e+29 -5.4791081e+29 -5.4713141e+29 -5.4707204e+29 -5.478385e+29 -5.4860893e+29 -5.4868978e+29 -5.4948726e+29 -5.4939985e+29 -5.4877603e+29 -5.4888586e+29 -5.4969495e+29 -5.4957968e+29 -5.5418987e+29 -5.5341561e+29 -5.5434415e+29 -5.5326469e+29 -5.5528672e+29 -5.5624785e+29 -5.5608635e+29 -5.5512796e+29 -5.5391718e+29 -5.5313155e+29 -5.5404823e+29 -5.5301089e+29 -5.4488944e+29 -5.4409033e+29 -5.4400944e+29 -5.4480391e+29 -5.4329396e+29 -5.4251162e+29 -5.4244005e+29 -5.4321676e+29 -5.4239219e+29 -5.4240397e+29 -5.431742e+29 -5.4315456e+29 -5.4475137e+29 -5.4395979e+29 -5.4392874e+29 -5.4471057e+29 -5.4246272e+29 -5.4244777e+29 -5.4318059e+29 -5.4318896e+29 -5.4242193e+29 -5.4239907e+29 -5.4314511e+29 -5.4316102e+29 -5.4468434e+29 -5.4390831e+29 -5.4391488e+29 -5.4467674e+29 -5.4467785e+29 -5.439261e+29 -5.4392499e+29 -5.4466621e+29 -5.4979505e+29 -5.5062058e+29 -5.5057817e+29 -5.4976183e+29 -5.5154758e+29 -5.5149596e+29 -5.5053327e+29 -5.5144038e+29 -5.5136239e+29 -5.5045553e+29 -5.4971979e+29 -5.4964614e+29 -5.4754678e+29 -5.4684828e+29 -5.4681816e+29 -5.4751797e+29 -5.4612923e+29 -5.4540368e+29 -5.4538192e+29 -5.4610142e+29 -5.4526848e+29 -5.4534274e+29 -5.4605582e+29 -5.4598351e+29 -5.4747386e+29 -5.4676975e+29 -5.4669388e+29 -5.4739608e+29 -5.4810984e+29 -5.4818555e+29 -5.4891387e+29 -5.4884229e+29 -5.4823041e+29 -5.4825685e+29 -5.4898617e+29 -5.4895734e+29 -5.4991753e+29 -5.5077688e+29 -5.5073609e+29 -5.4988764e+29 -5.5173974e+29 -5.5168775e+29 -5.5070993e+29 -5.5164692e+29 -5.5160129e+29 -5.506714e+29 -5.4986999e+29 -5.498409e+29 -5.4759676e+29 -5.4686937e+29 -5.4685517e+29 -5.4757725e+29 -5.4612973e+29 -5.4539051e+29 -5.4538746e+29 -5.4611974e+29 -5.4540829e+29 -5.4540053e+29 -5.461258e+29 -5.4613206e+29 -5.4757487e+29 -5.4685479e+29 -5.4685481e+29 -5.4756544e+29 -5.4828524e+29 -5.4830127e+29 -5.4904543e+29 -5.4902408e+29 -5.4830956e+29 -5.4833038e+29 -5.4908456e+29 -5.4905998e+29 -5.4464788e+29 -5.439141e+29 -5.4392204e+29 -5.4464934e+29 -5.4318302e+29 -5.424628e+29 -5.4248476e+29 -5.4319625e+29 -5.425532e+29 -5.4252259e+29 -5.4322552e+29 -5.4325048e+29 -5.4466892e+29 -5.4394413e+29 -5.4396073e+29 -5.4467965e+29 -5.4238485e+29 -5.4248251e+29 -5.4318849e+29 -5.4310389e+29 -5.4254146e+29 -5.4256196e+29 -5.4324948e+29 -5.4323313e+29 -5.4467407e+29 -5.4395527e+29 -5.4394084e+29 -5.4465619e+29 -5.4462073e+29 -5.4390315e+29 -5.4382338e+29 -5.4454485e+29 -5.4174603e+29 -5.410445e+29 -5.4108141e+29 -5.4177453e+29 -5.4035602e+29 -5.3968654e+29 -5.3974131e+29 -5.4039939e+29 -5.3981747e+29 -5.3978961e+29 -5.4044626e+29 -5.4048223e+29 -5.4181934e+29 -5.4112648e+29 -5.4116279e+29 -5.4185375e+29 -5.3902616e+29 -5.3838252e+29 -5.3845055e+29 -5.3908717e+29 -5.3717956e+29 -5.3710239e+29 -5.3773828e+29 -5.3781344e+29 -5.3724008e+29 -5.3722258e+29 -5.3785247e+29 -5.3787187e+29 -5.3913702e+29 -5.3849273e+29 -5.3851061e+29 -5.391593e+29 -5.3700497e+29 -5.3709537e+29 -5.3772813e+29 -5.3763859e+29 -5.3717475e+29 -5.372202e+29 -5.3785186e+29 -5.3780917e+29 -5.3914698e+29 -5.3849382e+29 -5.3845026e+29 -5.391034e+29 -5.3902313e+29 -5.3837163e+29 -5.3827275e+29 -5.3891508e+29 -5.4186698e+29 -5.4117305e+29 -5.4114096e+29 -5.4184083e+29 -5.4048494e+29 -5.3981064e+29 -5.3976876e+29 -5.4044783e+29 -5.3957326e+29 -5.3968746e+29 -5.4036769e+29 -5.4025246e+29 -5.4177213e+29 -5.4106481e+29 -5.4095037e+29 -5.4166488e+29 -5.417371e+29 -5.4098316e+29 -5.4091571e+29 -5.4166783e+29 -5.4024546e+29 -5.3953595e+29 -5.3947103e+29 -5.4017857e+29 -5.394375e+29 -5.3944071e+29 -5.4014737e+29 -5.4014778e+29 -5.416366e+29 -5.4088332e+29 -5.4088152e+29 -5.4163057e+29 -5.3884567e+29 -5.3818289e+29 -5.3811204e+29 -5.3877852e+29 -5.375354e+29 -5.3690676e+29 -5.3682831e+29 -5.3745939e+29 -5.3680261e+29 -5.3679599e+29 -5.3742713e+29 -5.3743203e+29 -5.387496e+29 -5.3807959e+29 -5.380778e+29 -5.3874521e+29 -5.3702104e+29 -5.3693807e+29 -5.3757017e+29 -5.3766043e+29 -5.3687725e+29 -5.3682447e+29 -5.3744544e+29 -5.3749962e+29 -5.3875731e+29 -5.3808924e+29 -5.3814345e+29 -5.388081e+29 -5.3888155e+29 -5.3821892e+29 -5.383062e+29 -5.3896232e+29 -5.4164821e+29 -5.4090243e+29 -5.4093944e+29 -5.4167747e+29 -5.4016656e+29 -5.3945255e+29 -5.3949962e+29 -5.4020967e+29 -5.396347e+29 -5.3956472e+29 -5.4026443e+29 -5.4032029e+29 -5.4171202e+29 -5.4098336e+29 -5.4102324e+29 -5.417378e+29 -5.3740213e+29 -5.3681722e+29 -5.3672455e+29 -5.3730281e+29 -5.3624733e+29 -5.3569617e+29 -5.3562759e+29 -5.361628e+29 -5.3544655e+29 -5.3555208e+29 -5.3608834e+29 -5.3600187e+29 -5.3722962e+29 -5.3664946e+29 -5.365702e+29 -5.3715412e+29 -5.3515771e+29 -5.3462015e+29 -5.3457694e+29 -5.3509744e+29 -5.3407628e+29 -5.3351106e+29 -5.334934e+29 -5.3404642e+29 -5.3328039e+29 -5.3341569e+29 -5.3396318e+29 -5.3382813e+29 -5.3502283e+29 -5.3449404e+29 -5.3436157e+29 -5.3490136e+29 -5.3262929e+29 -5.3282711e+29 -5.3338439e+29 -5.3320482e+29 -5.3298187e+29 -5.3312407e+29 -5.3366402e+29 -5.3352119e+29 -5.3474743e+29 -5.3420021e+29 -5.3405955e+29 -5.3461087e+29 -5.3448487e+29 -5.3392949e+29 -5.3376897e+29 -5.3434064e+29 -5.3706991e+29 -5.3647491e+29 -5.3637013e+29 -5.3697935e+29 -5.3588779e+29 -5.3530993e+29 -5.3518055e+29 -5.357696e+29 -5.3491903e+29 -5.3505384e+29 -5.3564429e+29 -5.3551038e+29 -5.3686135e+29 -5.3624762e+29 -5.3611298e+29 -5.3672775e+29 -5.158654e+29 -5.2078626e+29 -5.1499202e+29 -5.2015098e+29 -5.0732698e+29 -5.0633237e+29 -5.1449026e+29 -5.1968288e+29 -5.1943175e+29 -5.143777e+29 -5.0596752e+29 -5.0505839e+29 -5.0461234e+29 -5.0461735e+29 -5.0587293e+29 -5.0585555e+29 -5.1408816e+29 -5.1913378e+29 -5.1360033e+29 -5.1876554e+29 -5.1871863e+29 -5.1356767e+29 -5.1398454e+29 -5.1891444e+29 -5.2677261e+29 -5.2421675e+29 -5.2675037e+29 -5.2433522e+29 -5.2459328e+29 -5.2708594e+29 -5.2683937e+29 -5.2427139e+29 -5.2993958e+29 -5.287058e+29 -5.2850329e+29 -5.2975267e+29 -5.2961594e+29 -5.2838253e+29 -5.2836093e+29 -5.2948513e+29 -5.2739783e+29 -5.2521477e+29 -5.2767831e+29 -5.2492366e+29 -5.2564919e+29 -5.2619262e+29 -5.2840209e+29 -5.2803394e+29 -5.3062973e+29 -5.2976794e+29 -5.2951678e+29 -5.305521e+29 -5.3037703e+29 -5.2924461e+29 -5.2898762e+29 -5.3013735e+29 -5.3084375e+29 -5.3104298e+29 -5.3166971e+29 -5.315027e+29 -5.3178687e+29 -5.3121181e+29 -5.3117751e+29 -5.3177399e+29 -5.3234995e+29 -5.3235175e+29 -5.3293643e+29 -5.329289e+29 -5.3211659e+29 -5.3226464e+29 -5.328513e+29 -5.3271181e+29 -5.3180409e+29 -5.3195621e+29 -5.3255046e+29 -5.3241143e+29 -5.3133816e+29 -5.3066433e+29 -5.3048901e+29 -5.3117139e+29 -5.3017935e+29 -5.3033724e+29 -5.3101084e+29 -5.3083065e+29 -5.3144259e+29 -5.3163796e+29 -5.3224881e+29 -5.3204595e+29 -5.3115223e+29 -5.3124784e+29 -5.3183903e+29 -5.3173795e+29 -5.3065232e+29 -5.3002851e+29 -5.2992301e+29 -5.3055148e+29 -5.2984431e+29 -5.2988055e+29 -5.3051091e+29 -5.3050332e+29 -5.3112253e+29 -5.311177e+29 -5.3171881e+29 -5.3173072e+29 -5.0540653e+29 -5.0571824e+29 -5.1881543e+29 -5.183968e+29 -5.1387602e+29 -5.1326372e+29 -5.1311571e+29 -5.1823595e+29 -5.1341658e+29 -5.183849e+29 -5.2936318e+29 -5.2825453e+29 -5.2815438e+29 -5.2922998e+29 -5.2424563e+29 -5.2668085e+29 -5.2648951e+29 -5.2391024e+29 -5.2371821e+29 -5.2628537e+29 -5.2626678e+29 -5.2377462e+29 -5.2788712e+29 -5.2918228e+29 -5.2794514e+29 -5.2912144e+29 -5.1858862e+29 -5.1352311e+29 -5.1848331e+29 -5.1349077e+29 -5.0561999e+29 -5.0632214e+29 -5.192945e+29 -5.1380996e+29 -5.1448567e+29 -5.1884371e+29 -5.2685276e+29 -5.2422392e+29 -5.2660843e+29 -5.245807e+29 -5.2385903e+29 -5.2399221e+29 -5.2630115e+29 -5.2639658e+29 -5.2911462e+29 -5.2786622e+29 -5.279281e+29 -5.2915046e+29 -5.2811536e+29 -5.2921488e+29 -5.2925204e+29 -5.282911e+29 -5.3117931e+29 -5.3114138e+29 -5.3174871e+29 -5.3179515e+29 -5.305148e+29 -5.2983812e+29 -5.2986558e+29 -5.3054202e+29 -5.3055834e+29 -5.2989718e+29 -5.2990043e+29 -5.3054343e+29 -5.3116812e+29 -5.3118733e+29 -5.3180732e+29 -5.3178952e+29 -5.0415429e+29 -5.0445662e+29 -5.0501131e+29 -5.0435901e+29 -5.0353449e+29 -5.0433541e+29 -5.0440031e+29 -5.0528507e+29 -5.0320222e+29 -5.0316027e+29 -5.0399617e+29 -5.0401263e+29 -5.0276787e+29 -5.0307146e+29 -5.0386541e+29 -5.0354875e+29 -5.0293903e+29 -5.0353249e+29 -5.0373971e+29 -5.0438385e+29 -5.3660314e+29 -5.3598897e+29 -5.3593568e+29 -5.365507e+29 -5.3538343e+29 -5.347923e+29 -5.3472852e+29 -5.3532488e+29 -5.3472766e+29 -5.3470998e+29 -5.3531181e+29 -5.353359e+29 -5.3654945e+29 -5.3592799e+29 -5.3594932e+29 -5.3656876e+29 -5.3420124e+29 -5.3361278e+29 -5.3352536e+29 -5.3412798e+29 -5.330256e+29 -5.3243205e+29 -5.3232981e+29 -5.3292685e+29 -5.3232864e+29 -5.3231258e+29 -5.3290917e+29 -5.3292684e+29 -5.3410788e+29 -5.3350395e+29 -5.3352015e+29 -5.3412362e+29 -5.3238983e+29 -5.3240663e+29 -5.3299761e+29 -5.3297645e+29 -5.323924e+29 -5.3235014e+29 -5.3294984e+29 -5.3298675e+29 -5.3414453e+29 -5.3354291e+29 -5.3357255e+29 -5.3416643e+29 -5.3415488e+29 -5.3357465e+29 -5.3354151e+29 -5.3410547e+29 -5.365793e+29 -5.3596595e+29 -5.3596759e+29 -5.3657594e+29 -5.3535485e+29 -5.3474628e+29 -5.3476017e+29 -5.3536298e+29 -5.3466731e+29 -5.3473541e+29 -5.3532506e+29 -5.3524121e+29 -5.3652312e+29 -5.3592088e+29 -5.3582502e+29 -5.364217e+29 -5.058036e+29 -5.0631625e+29 -5.1445658e+29 -5.1929831e+29 -5.1380134e+29 -5.1886511e+29 -5.1861787e+29 -5.1355258e+29 -5.1370297e+29 -5.186213e+29 -5.1852586e+29 -5.1367813e+29 -5.1857816e+29 -5.1349215e+29 -5.0580623e+29 -5.0631226e+29 -5.1903541e+29 -5.1369718e+29 -5.1429432e+29 -5.1865792e+29 -5.0455759e+29 -5.0502304e+29 -5.0502687e+29 -5.0455789e+29 -5.0662127e+29 -5.065336e+29 -5.1435247e+29 -5.1398354e+29 -5.190903e+29 -5.1890425e+29 -5.1894118e+29 -5.1925788e+29 -5.1403894e+29 -5.1449824e+29 -5.0712324e+29 -5.1473278e+29 -5.1482318e+29 -5.1945912e+29 -5.1967454e+29 -5.0801696e+29 -5.2007797e+29 -5.2059078e+29 -5.1524714e+29 -5.1597226e+29 -5.0525924e+29 -5.0537226e+29 -5.0587723e+29 -5.0673493e+29 -5.0311816e+29 -5.0355379e+29 -5.0438568e+29 -5.0391524e+29 -5.0360987e+29 -5.0314062e+29 -5.0393614e+29 -5.0443006e+29 -5.0394436e+29 -5.0385586e+29 -5.0477818e+29 -5.0466963e+29 -5.0442578e+29 -5.052301e+29 -5.0526998e+29 -5.0612542e+29 -5.3628901e+29 -5.3569438e+29 -5.3560829e+29 -5.3620611e+29 -5.3511253e+29 -5.3455246e+29 -5.3446702e+29 -5.3502414e+29 -5.3439191e+29 -5.3440618e+29 -5.3497429e+29 -5.3497449e+29 -5.3617306e+29 -5.3556671e+29 -5.3557045e+29 -5.3617939e+29 -5.340066e+29 -5.3346254e+29 -5.3338386e+29 -5.3391845e+29 -5.3291309e+29 -5.3233897e+29 -5.3227868e+29 -5.3284165e+29 -5.321689e+29 -5.3221417e+29 -5.3275701e+29 -5.3271764e+29 -5.3384684e+29 -5.3330015e+29 -5.332632e+29 -5.3382002e+29 -5.3220351e+29 -5.3216994e+29 -5.3273415e+29 -5.3277724e+29 -5.3384278e+29 -5.3328493e+29 -5.3333216e+29 -5.3388912e+29 -5.3392474e+29 -5.3338254e+29 -5.3344981e+29 -5.3399417e+29 -5.3231635e+29 -5.3225303e+29 -5.32828e+29 -5.328928e+29 -5.362057e+29 -5.3559786e+29 -5.3564057e+29 -5.3625403e+29 -5.3500009e+29 -5.344122e+29 -5.3445424e+29 -5.3503971e+29 -5.3455613e+29 -5.3448277e+29 -5.3506759e+29 -5.3514174e+29 -5.3630395e+29 -5.356787e+29 -5.3575301e+29 -5.363819e+29 -5.2830697e+29 -5.2925999e+29 -5.2919899e+29 -5.2825352e+29 -5.2669977e+29 -5.2460878e+29 -5.2687163e+29 -5.2426633e+29 -5.2637956e+29 -5.2401051e+29 -5.2648274e+29 -5.2394284e+29 -5.2805266e+29 -5.2916611e+29 -5.2908155e+29 -5.279495e+29 -5.298391e+29 -5.2988915e+29 -5.3051082e+29 -5.3046855e+29 -5.3108185e+29 -5.3112555e+29 -5.3174243e+29 -5.3169227e+29 -5.3099856e+29 -5.3105135e+29 -5.3164334e+29 -5.3159066e+29 -5.3039409e+29 -5.2982229e+29 -5.3045011e+29 -5.2975444e+29 -5.2398527e+29 -5.2638909e+29 -5.2655735e+29 -5.2425645e+29 -5.278577e+29 -5.2900583e+29 -5.2787124e+29 -5.2902299e+29 -5.2389507e+29 -5.2387925e+29 -5.2631415e+29 -5.2629641e+29 -5.2803169e+29 -5.2792125e+29 -5.2906109e+29 -5.2910612e+29 -5.29751e+29 -5.3041179e+29 -5.3046847e+29 -5.2980114e+29 -5.311002e+29 -5.3104034e+29 -5.3165849e+29 -5.3172092e+29 -5.2970508e+29 -5.303521e+29 -5.2970008e+29 -5.3035822e+29 -5.30988e+29 -5.309732e+29 -5.3158288e+29 -5.3160826e+29 -5.2678271e+29 -5.242012e+29 -5.2659145e+29 -5.2445356e+29 -5.2430567e+29 -5.2416604e+29 -5.2657621e+29 -5.2652687e+29 -5.2804173e+29 -5.2916972e+29 -5.2803748e+29 -5.2922728e+29 -5.2928749e+29 -5.2811994e+29 -5.2935217e+29 -5.2827045e+29 -5.2889729e+29 -5.2969948e+29 -5.2972811e+29 -5.2912474e+29 -5.2465361e+29 -5.2489516e+29 -5.2693804e+29 -5.2718319e+29 -5.2861195e+29 -5.2960908e+29 -5.2838662e+29 -5.2946893e+29 -5.2783465e+29 -5.2530726e+29 -5.2753491e+29 -5.2576133e+29 -5.3011912e+29 -5.3074187e+29 -5.3080058e+29 -5.3021504e+29 -5.3135909e+29 -5.3132917e+29 -5.3191231e+29 -5.3192018e+29 -5.31325e+29 -5.3134573e+29 -5.3188805e+29 -5.3185128e+29 -5.302511e+29 -5.3080422e+29 -5.3079824e+29 -5.3025963e+29 -5.2997116e+29 -5.3062259e+29 -5.3066922e+29 -5.3002392e+29 -5.3127787e+29 -5.3124377e+29 -5.3185652e+29 -5.3188378e+29 -5.2992371e+29 -5.2986292e+29 -5.3052685e+29 -5.3058235e+29 -5.3120911e+29 -5.3115837e+29 -5.3177814e+29 -5.3182678e+29 -5.3295532e+29 -5.3237459e+29 -5.3242251e+29 -5.3300789e+29 -5.340775e+29 -5.3351787e+29 -5.3357597e+29 -5.3414699e+29 -5.3417744e+29 -5.336062e+29 -5.3362182e+29 -5.3419634e+29 -5.3247089e+29 -5.3245008e+29 -5.330351e+29 -5.3305302e+29 -5.3247198e+29 -5.3248195e+29 -5.3305132e+29 -5.3302887e+29 -5.3418361e+29 -5.3361256e+29 -5.3357949e+29 -5.3414356e+29 -5.3406564e+29 -5.3351487e+29 -5.3344893e+29 -5.3399494e+29 -5.3238332e+29 -5.3242733e+29 -5.3297218e+29 -5.3291721e+29 -5.3455592e+29 -5.3462893e+29 -5.3522367e+29 -5.3514334e+29 -5.3535751e+29 -5.3476226e+29 -5.347148e+29 -5.3530954e+29 -5.3659029e+29 -5.3596541e+29 -5.3591739e+29 -5.3654297e+29 -5.3646228e+29 -5.3583441e+29 -5.3574865e+29 -5.3637386e+29 -5.3477598e+29 -5.3475189e+29 -5.3535278e+29 -5.3537389e+29 -5.3523414e+29 -5.3464402e+29 -5.3472064e+29 -5.3531513e+29 -5.3646692e+29 -5.3584097e+29 -5.3592275e+29 -5.3654724e+29 -5.3659109e+29 -5.3596471e+29 -5.3598397e+29 -5.3660942e+29 -5.026705e+29 -5.0278136e+29 -5.0459419e+29 -5.0450757e+29 -5.0317864e+29 -5.0380241e+29 -5.0578976e+29 -5.0505612e+29 -5.0264413e+29 -5.0312243e+29 -5.0505306e+29 -5.0445222e+29 -5.0244351e+29 -5.0259571e+29 -5.0441746e+29 -5.0421145e+29 -5.4454547e+29 -5.4390001e+29 -5.437384e+29 -5.4438719e+29 -5.432319e+29 -5.4255024e+29 -5.4239489e+29 -5.4307096e+29 -5.419888e+29 -5.4220881e+29 -5.4287798e+29 -5.4265873e+29 -5.4419723e+29 -5.435434e+29 -5.4331911e+29 -5.439687e+29 -5.4504894e+29 -5.4438167e+29 -5.4493578e+29 -5.4427172e+29 -5.4369455e+29 -5.4299559e+29 -5.4358777e+29 -5.428907e+29 -5.4348137e+29 -5.4278726e+29 -5.4267594e+29 -5.433623e+29 -5.4482259e+29 -5.4416012e+29 -5.440365e+29 -5.4469226e+29 -5.3927322e+29 -5.3947529e+29 -5.4015958e+29 -5.3995799e+29 -5.3965037e+29 -5.3980029e+29 -5.4048495e+29 -5.403374e+29 -5.4186055e+29 -5.4117214e+29 -5.4102467e+29 -5.4171017e+29 -5.4152958e+29 -5.4084695e+29 -5.4063808e+29 -5.4131354e+29 -5.4071973e+29 -5.400414e+29 -5.3993041e+29 -5.406094e+29 -5.4091388e+29 -5.4022469e+29 -5.4082323e+29 -5.4013714e+29 -5.4229208e+29 -5.4159945e+29 -5.4219172e+29 -5.4150436e+29 -5.4208917e+29 -5.4140093e+29 -5.4129546e+29 -5.4198277e+29 -5.4476923e+29 -5.4565731e+29 -5.4534905e+29 -5.4446284e+29 -5.426307e+29 -5.4197058e+29 -5.4164369e+29 -5.4232125e+29 -5.4127743e+29 -5.4056414e+29 -5.4019567e+29 -5.4093107e+29 -5.4298924e+29 -5.4329244e+29 -5.4397665e+29 -5.4367458e+29 -5.4585221e+29 -5.4674373e+29 -5.4650328e+29 -5.4562433e+29 -5.4625877e+29 -5.4596706e+29 -5.453788e+29 -5.4509066e+29 -5.4373433e+29 -5.43086e+29 -5.4285462e+29 -5.4350694e+29 -5.4242316e+29 -5.4175557e+29 -5.4152171e+29 -5.4218757e+29 -5.4092264e+29 -5.412514e+29 -5.4192544e+29 -5.4161421e+29 -5.4325185e+29 -5.4259517e+29 -5.4228979e+29 -5.4294624e+29 -5.4360787e+29 -5.4390872e+29 -5.4458888e+29 -5.4429697e+29 -5.4416369e+29 -5.4438783e+29 -5.4506539e+29 -5.4483902e+29 -5.4108026e+29 -5.4040759e+29 -5.4016448e+29 -5.4084356e+29 -5.3972826e+29 -5.39054e+29 -5.388007e+29 -5.3947722e+29 -5.3807692e+29 -5.3847672e+29 -5.3917037e+29 -5.3879156e+29 -5.4056464e+29 -5.3986979e+29 -5.3950616e+29 -5.4021767e+29 -5.3722627e+29 -5.3765947e+29 -5.3838144e+29 -5.379833e+29 -5.398408e+29 -5.3911252e+29 -5.387299e+29 -5.3946445e+29 -5.342367e+29 -5.3483326e+29 -5.3464535e+29 -5.3404817e+29 -5.3456401e+29 -5.3516226e+29 -5.3500803e+29 -5.3440888e+29 -5.3640785e+29 -5.3577675e+29 -5.3561729e+29 -5.362509e+29 -5.3608201e+29 -5.3544972e+29 -5.3525536e+29 -5.3589043e+29 -5.3487201e+29 -5.354593e+29 -5.3532117e+29 -5.3472536e+29 -5.3566008e+29 -5.3507991e+29 -5.3558005e+29 -5.3499607e+29 -5.3686205e+29 -5.362486e+29 -5.3679177e+29 -5.3617333e+29 -5.3668671e+29 -5.3606465e+29 -5.3592628e+29 -5.3655507e+29 -5.3815954e+29 -5.3750027e+29 -5.3808386e+29 -5.3742794e+29 -5.395291e+29 -5.388374e+29 -5.3944572e+29 -5.3875892e+29 -5.393541e+29 -5.3866792e+29 -5.3855079e+29 -5.3924213e+29 -5.3798888e+29 -5.3732926e+29 -5.372023e+29 -5.3786785e+29 -5.365439e+29 -5.3673463e+29 -5.3740434e+29 -5.37214e+29 -5.3772626e+29 -5.3705827e+29 -5.3690317e+29 -5.3757338e+29 -5.3910704e+29 -5.3841173e+29 -5.3826124e+29 -5.3895537e+29 -5.38783e+29 -5.3809097e+29 -5.3789687e+29 -5.3858391e+29 -5.3219763e+29 -5.3281869e+29 -5.3226551e+29 -5.3162477e+29 -5.3412915e+29 -5.3346332e+29 -5.3290933e+29 -5.3357829e+29 -5.3317774e+29 -5.3377621e+29 -5.3333556e+29 -5.3272187e+29 -5.3382165e+29 -5.3441646e+29 -5.3413726e+29 -5.3354383e+29 -5.3566556e+29 -5.3503105e+29 -5.3474821e+29 -5.3538665e+29 -5.3504187e+29 -5.3439822e+29 -5.3396296e+29 -5.3461584e+29 -5.3836815e+29 -5.3767896e+29 -5.3741419e+29 -5.3811119e+29 -5.3699228e+29 -5.3632072e+29 -5.3604412e+29 -5.3672066e+29 -5.3528327e+29 -5.3570395e+29 -5.3638348e+29 -5.359695e+29 -5.3777916e+29 -5.3707905e+29 -5.3666474e+29 -5.373671e+29 -5.3693035e+29 -5.3620868e+29 -5.3569633e+29 -5.3645885e+29 -5.3549718e+29 -5.3480406e+29 -5.342597e+29 -5.3495713e+29 -5.4670352e+29 -5.4601223e+29 -5.4585481e+29 -5.4655266e+29 -5.4530842e+29 -5.4459513e+29 -5.4442527e+29 -5.4514199e+29 -5.4409168e+29 -5.4425531e+29 -5.4498047e+29 -5.4482375e+29 -5.464036e+29 -5.4569881e+29 -5.4554217e+29 -5.4624397e+29 -5.4957368e+29 -5.5052334e+29 -5.5040644e+29 -5.4945858e+29 -5.5026446e+29 -5.493103e+29 -5.4476482e+29 -5.4492785e+29 -5.4563803e+29 -5.4547754e+29 -5.4589914e+29 -5.4518266e+29 -5.4506708e+29 -5.4578087e+29 -5.4729967e+29 -5.4660374e+29 -5.4648894e+29 -5.4718477e+29 -5.4704173e+29 -5.4634486e+29 -5.4618013e+29 -5.468724e+29 -5.4774353e+29 -5.484706e+29 -5.487407e+29 -5.4800694e+29 -5.4862007e+29 -5.4788928e+29 -5.4186634e+29 -5.4202642e+29 -5.4275091e+29 -5.4259501e+29 -5.4301565e+29 -5.4229193e+29 -5.4216799e+29 -5.4289387e+29 -5.4445748e+29 -5.4373596e+29 -5.4362159e+29 -5.4434448e+29 -5.4420663e+29 -5.4348143e+29 -5.433234e+29 -5.4404507e+29 -5.438714e+29 -5.431509e+29 -5.4296912e+29 -5.4369434e+29 -5.4151371e+29 -5.4169434e+29 -5.4242124e+29 -5.4224203e+29 -5.4116634e+29 -5.4133598e+29 -5.4205818e+29 -5.4189208e+29 -5.4351899e+29 -5.4278379e+29 -5.4261991e+29 -5.4335256e+29 -5.4609528e+29 -5.4539755e+29 -5.4525601e+29 -5.4596122e+29 -5.4467612e+29 -5.4394126e+29 -5.437981e+29 -5.4453077e+29 -5.4353315e+29 -5.4365803e+29 -5.4438907e+29 -5.4426224e+29 -5.4582704e+29 -5.4511475e+29 -5.4498072e+29 -5.4568741e+29 -5.431006e+29 -5.4320698e+29 -5.4391496e+29 -5.4380375e+29 -5.4414753e+29 -5.434241e+29 -5.4331574e+29 -5.440314e+29 -5.455551e+29 -5.4485768e+29 -5.4473969e+29 -5.4543383e+29 -5.4530857e+29 -5.4461807e+29 -5.4449705e+29 -5.4517626e+29 -5.403018e+29 -5.4037469e+29 -5.4107337e+29 -5.4099281e+29 -5.4044812e+29 -5.405273e+29 -5.4124534e+29 -5.4116077e+29 -5.4269409e+29 -5.4196776e+29 -5.4187546e+29 -5.4259367e+29 -5.424898e+29 -5.4177645e+29 -5.4168887e+29 -5.4239112e+29 -5.4061982e+29 -5.4073086e+29 -5.4145453e+29 -5.4134014e+29 -5.417436e+29 -5.4100906e+29 -5.4086152e+29 -5.4159529e+29 -5.4320181e+29 -5.4247163e+29 -5.4232885e+29 -5.4306103e+29 -5.4291842e+29 -5.4218231e+29 -5.4206668e+29 -5.4279693e+29 -5.388188e+29 -5.3819204e+29 -5.380702e+29 -5.3869687e+29 -5.3756696e+29 -5.3694374e+29 -5.3682635e+29 -5.3744567e+29 -5.3649615e+29 -5.3667349e+29 -5.3728387e+29 -5.3710679e+29 -5.3854905e+29 -5.3791118e+29 -5.3773053e+29 -5.3837087e+29 -5.3577543e+29 -5.3595765e+29 -5.3655409e+29 -5.3637673e+29 -5.3613837e+29 -5.363066e+29 -5.3690618e+29 -5.3673178e+29 -5.3781312e+29 -5.3717397e+29 -5.3699622e+29 -5.3763698e+29 -5.3817385e+29 -5.3752932e+29 -5.3734986e+29 -5.3799004e+29 -5.3903388e+29 -5.3920513e+29 -5.3988098e+29 -5.3971604e+29 -5.4014513e+29 -5.3946874e+29 -5.393484e+29 -5.4002151e+29 -5.4156462e+29 -5.4084577e+29 -5.4072204e+29 -5.4144012e+29 -5.4129996e+29 -5.4058232e+29 -5.4041897e+29 -5.411388e+29 -5.3953217e+29 -5.3884366e+29 -5.3865919e+29 -5.3934973e+29 -5.4096528e+29 -5.4024146e+29 -5.400628e+29 -5.4078512e+29 -5.4060428e+29 -5.3988127e+29 -5.3970493e+29 -5.4043132e+29 -5.3830525e+29 -5.3847994e+29 -5.3916886e+29 -5.389942e+29 -5.3514037e+29 -5.3517129e+29 -5.3574273e+29 -5.3571674e+29 -5.351985e+29 -5.3524148e+29 -5.3581694e+29 -5.3577159e+29 -5.3695924e+29 -5.3633978e+29 -5.3630797e+29 -5.3692196e+29 -5.3704889e+29 -5.3642006e+29 -5.3637105e+29 -5.3699557e+29 -5.3532909e+29 -5.3541025e+29 -5.3598677e+29 -5.3590511e+29 -5.354946e+29 -5.3560499e+29 -5.3620072e+29 -5.3608035e+29 -5.3722293e+29 -5.3659237e+29 -5.3650489e+29 -5.3713094e+29 -5.3746701e+29 -5.3682232e+29 -5.3669295e+29 -5.3733097e+29 -5.3882978e+29 -5.3813837e+29 -5.3799845e+29 -5.3868828e+29 -5.4027251e+29 -5.3954319e+29 -5.3940216e+29 -5.401275e+29 -5.399995e+29 -5.3927765e+29 -5.3917235e+29 -5.3989172e+29 -5.3778793e+29 -5.3788329e+29 -5.3856786e+29 -5.3846821e+29 -5.3838544e+29 -5.3770638e+29 -5.3764939e+29 -5.3832472e+29 -5.3980417e+29 -5.3908698e+29 -5.3902266e+29 -5.3973206e+29 -5.3966678e+29 -5.3896545e+29 -5.3890651e+29 -5.396014e+29 -5.3756239e+29 -5.3760566e+29 -5.3827413e+29 -5.38224e+29 -5.1254115e+29 -5.1064962e+29 -5.1056977e+29 -5.1247471e+29 -5.1354947e+29 -5.1147629e+29 -5.1098561e+29 -5.1294846e+29 -5.1452536e+29 -5.139735e+29 -5.1328321e+29 -5.1377322e+29 -5.1286843e+29 -5.1291085e+29 -5.1336375e+29 -5.1329468e+29 -5.1553881e+29 -5.1472654e+29 -5.1429915e+29 -5.1422858e+29 -5.1265315e+29 -5.1223476e+29 -5.1305994e+29 -5.1262941e+29 -5.1264493e+29 -5.1223939e+29 -5.1307203e+29 -5.126342e+29 -5.1398259e+29 -5.1355064e+29 -5.1358074e+29 -5.1404208e+29 -5.2017988e+29 -5.1984624e+29 -5.1983124e+29 -5.2010763e+29 -5.2065185e+29 -5.2044761e+29 -5.2178931e+29 -5.2115369e+29 -5.1362452e+29 -5.1368865e+29 -5.1975642e+29 -5.1974625e+29 -5.1391371e+29 -5.1996733e+29 -5.1456494e+29 -5.2040802e+29 -5.1959992e+29 -5.1975665e+29 -5.1332533e+29 -5.1362065e+29 -5.1395911e+29 -5.1342328e+29 -5.2005831e+29 -5.1970169e+29 -5.1205795e+29 -5.1255808e+29 -5.1248568e+29 -5.1299987e+29 -5.1222787e+29 -5.1195257e+29 -5.1237455e+29 -5.126572e+29 -5.1230671e+29 -5.1273617e+29 -5.1267549e+29 -5.122381e+29 -5.1251578e+29 -5.1310759e+29 -5.1359237e+29 -5.1295936e+29 -5.1231626e+29 -5.103839e+29 -5.1073432e+29 -5.1274843e+29 -5.1043276e+29 -5.1027333e+29 -5.1233836e+29 -5.1216631e+29 -5.3146836e+29 -5.3161522e+29 -5.3211324e+29 -5.3197454e+29 -5.3176348e+29 -5.3194345e+29 -5.3242099e+29 -5.3225213e+29 -5.3343328e+29 -5.3291701e+29 -5.3275005e+29 -5.3326794e+29 -5.3312592e+29 -5.3261259e+29 -5.3248051e+29 -5.3299353e+29 -5.321217e+29 -5.3227071e+29 -5.3276022e+29 -5.3260586e+29 -5.3292333e+29 -5.3241562e+29 -5.3236453e+29 -5.3286166e+29 -5.3397528e+29 -5.3343469e+29 -5.3336787e+29 -5.3389552e+29 -5.3377725e+29 -5.3325899e+29 -5.3310173e+29 -5.3361782e+29 -5.3415758e+29 -5.343169e+29 -5.3488262e+29 -5.3472166e+29 -5.3510827e+29 -5.3452929e+29 -5.3444254e+29 -5.3501409e+29 -5.3632048e+29 -5.3570492e+29 -5.3560416e+29 -5.3620991e+29 -5.360649e+29 -5.3546729e+29 -5.3530202e+29 -5.358928e+29 -5.3570915e+29 -5.3512188e+29 -5.3495446e+29 -5.3554342e+29 -5.345413e+29 -5.3397535e+29 -5.3381004e+29 -5.3437394e+29 -5.3351969e+29 -5.3365812e+29 -5.3421266e+29 -5.3406019e+29 -5.353659e+29 -5.347841e+29 -5.3461763e+29 -5.3518755e+29 -5.2807058e+29 -5.2706555e+29 -5.2835312e+29 -5.2663659e+29 -5.2937887e+29 -5.2961199e+29 -5.2996597e+29 -5.2990204e+29 -5.2948743e+29 -5.2918512e+29 -5.2742843e+29 -5.2621301e+29 -5.2771392e+29 -5.2594115e+29 -5.2889897e+29 -5.2925868e+29 -5.2974134e+29 -5.2951878e+29 -5.2902108e+29 -5.286312e+29 -5.2807565e+29 -5.2846032e+29 -5.2897455e+29 -5.2882473e+29 -5.2837338e+29 -5.2804518e+29 -5.2695383e+29 -5.2566798e+29 -5.2716432e+29 -5.2540426e+29 -5.2837183e+29 -5.287699e+29 -5.2931742e+29 -5.2912796e+29 -5.2858922e+29 -5.2818019e+29 -5.2688179e+29 -5.2534867e+29 -5.2686802e+29 -5.2545295e+29 -5.3043856e+29 -5.3092214e+29 -5.3088417e+29 -5.3039365e+29 -5.3026889e+29 -5.3078037e+29 -5.3060573e+29 -5.3007063e+29 -5.3136889e+29 -5.3141117e+29 -5.3191015e+29 -5.3186631e+29 -5.3111808e+29 -5.3127856e+29 -5.3177727e+29 -5.3162657e+29 -5.3075037e+29 -5.3094618e+29 -5.3144994e+29 -5.312569e+29 -5.2988433e+29 -5.3042767e+29 -5.3023307e+29 -5.2969e+29 -5.2952003e+29 -5.3005543e+29 -5.2990187e+29 -5.2936562e+29 -5.3042547e+29 -5.3058061e+29 -5.3110363e+29 -5.3095126e+29 -5.2671304e+29 -5.254215e+29 -5.2682992e+29 -5.2520962e+29 -5.2795038e+29 -5.2827628e+29 -5.2875074e+29 -5.2864557e+29 -5.2817167e+29 -5.2785843e+29 -5.2778276e+29 -5.2807443e+29 -5.285204e+29 -5.2841905e+29 -5.279524e+29 -5.2771974e+29 -5.2662812e+29 -5.2511992e+29 -5.2664275e+29 -5.2515054e+29 -5.3016929e+29 -5.3030413e+29 -5.3081222e+29 -5.3067156e+29 -5.2927641e+29 -5.2979525e+29 -5.296703e+29 -5.2916083e+29 -5.2903792e+29 -5.2954977e+29 -5.2946064e+29 -5.2894265e+29 -5.2997146e+29 -5.3005826e+29 -5.3057449e+29 -5.3049395e+29 -5.2657574e+29 -5.2513414e+29 -5.2511479e+29 -5.2656645e+29 -5.2846919e+29 -5.2800002e+29 -5.2768401e+29 -5.2796787e+29 -5.276933e+29 -5.2843225e+29 -5.2778093e+29 -5.2805464e+29 -5.280805e+29 -5.2786131e+29 -5.2846857e+29 -5.2843216e+29 -5.2683483e+29 -5.2528677e+29 -5.2668619e+29 -5.2555916e+29 -5.2890637e+29 -5.2894133e+29 -5.2941294e+29 -5.2938036e+29 -5.2894351e+29 -5.2944487e+29 -5.2944173e+29 -5.2896031e+29 -5.2991793e+29 -5.2994178e+29 -5.3044958e+29 -5.3041485e+29 -5.2985764e+29 -5.2988907e+29 -5.3038162e+29 -5.3034766e+29 -5.3502208e+29 -5.3446262e+29 -5.3436481e+29 -5.3491809e+29 -5.3391442e+29 -5.3338703e+29 -5.3329521e+29 -5.3381967e+29 -5.3314694e+29 -5.3321642e+29 -5.3374305e+29 -5.3367849e+29 -5.3484217e+29 -5.3428842e+29 -5.3421666e+29 -5.3476438e+29 -5.3286472e+29 -5.3235069e+29 -5.3224233e+29 -5.3276929e+29 -5.318396e+29 -5.3132614e+29 -5.3119249e+29 -5.3171687e+29 -5.3102017e+29 -5.3109673e+29 -5.3162349e+29 -5.3154944e+29 -5.3268686e+29 -5.3215343e+29 -5.3208038e+29 -5.3261513e+29 -5.3467701e+29 -5.3413367e+29 -5.3408743e+29 -5.3463226e+29 -5.3360036e+29 -5.3307329e+29 -5.3302354e+29 -5.3354761e+29 -5.3290914e+29 -5.3296965e+29 -5.3349841e+29 -5.3345034e+29 -5.3460352e+29 -5.3404738e+29 -5.340033e+29 -5.3456655e+29 -5.3254583e+29 -5.32016e+29 -5.3196482e+29 -5.3249433e+29 -5.3092342e+29 -5.3096569e+29 -5.3148857e+29 -5.3144163e+29 -5.3084476e+29 -5.3088463e+29 -5.3139568e+29 -5.3134645e+29 -5.3244055e+29 -5.3191331e+29 -5.3185441e+29 -5.3237748e+29 -5.2989431e+29 -5.3006559e+29 -5.3050644e+29 -5.303411e+29 -5.3020426e+29 -5.3033847e+29 -5.3078376e+29 -5.3064011e+29 -5.3174116e+29 -5.3124944e+29 -5.3109977e+29 -5.315872e+29 -5.314437e+29 -5.3096249e+29 -5.3080165e+29 -5.3128358e+29 -5.3049647e+29 -5.3063321e+29 -5.31097e+29 -5.3095258e+29 -5.3127599e+29 -5.3079062e+29 -5.3073069e+29 -5.3120544e+29 -5.3228853e+29 -5.3176883e+29 -5.3169105e+29 -5.3219844e+29 -5.3207276e+29 -5.3157424e+29 -5.3142294e+29 -5.3191734e+29 -5.3179063e+29 -5.3195483e+29 -5.3249609e+29 -5.323247e+29 -5.328124e+29 -5.3226346e+29 -5.3210744e+29 -5.3265515e+29 -5.3396779e+29 -5.3338195e+29 -5.3322638e+29 -5.3381094e+29 -5.3364255e+29 -5.3306193e+29 -5.32882e+29 -5.3345737e+29 -5.3243806e+29 -5.3259381e+29 -5.3313992e+29 -5.329844e+29 -5.3336789e+29 -5.3282037e+29 -5.3272532e+29 -5.3327256e+29 -5.3449992e+29 -5.3392836e+29 -5.3383639e+29 -5.3441135e+29 -5.3428393e+29 -5.3370582e+29 -5.3355096e+29 -5.3413263e+29 -5.192896e+29 -5.194854e+29 -5.1931731e+29 -5.1955987e+29 -5.2580284e+29 -5.244142e+29 -5.2579881e+29 -5.2449534e+29 -5.2460704e+29 -5.259938e+29 -5.2443951e+29 -5.2584965e+29 -5.272885e+29 -5.2696948e+29 -5.2742279e+29 -5.2794725e+29 -5.2710431e+29 -5.2782518e+29 -5.2720282e+29 -5.2770887e+29 -5.2690255e+29 -5.275782e+29 -5.2713242e+29 -5.2686385e+29 -5.2044156e+29 -5.1999128e+29 -5.1962878e+29 -5.1967489e+29 -5.249239e+29 -5.2634066e+29 -5.2615772e+29 -5.247624e+29 -5.2551939e+29 -5.2521183e+29 -5.268037e+29 -5.2658556e+29 -5.2791921e+29 -5.2764656e+29 -5.2804821e+29 -5.28434e+29 -5.2781485e+29 -5.2837289e+29 -5.27755e+29 -5.2824691e+29 -5.2744874e+29 -5.275906e+29 -5.272692e+29 -5.2808476e+29 -5.2860277e+29 -5.2874953e+29 -5.2922815e+29 -5.2909485e+29 -5.2936292e+29 -5.2890103e+29 -5.2885649e+29 -5.2932284e+29 -5.2978596e+29 -5.2982495e+29 -5.3030458e+29 -5.302572e+29 -5.2956914e+29 -5.2969771e+29 -5.3016717e+29 -5.3003592e+29 -5.2930296e+29 -5.2942851e+29 -5.2988103e+29 -5.2975828e+29 -5.2896326e+29 -5.2847091e+29 -5.2834626e+29 -5.2883457e+29 -5.2821538e+29 -5.2869425e+29 -5.2853372e+29 -5.2806557e+29 -5.2898736e+29 -5.2915938e+29 -5.2961738e+29 -5.2944382e+29 -5.2031259e+29 -5.2016812e+29 -5.2544867e+29 -5.2611072e+29 -5.2513387e+29 -5.2581074e+29 -5.2567836e+29 -5.2605842e+29 -5.2651175e+29 -5.2618751e+29 -5.2549517e+29 -5.2614106e+29 -5.1916816e+29 -5.1945602e+29 -5.1983134e+29 -5.1932918e+29 -5.244244e+29 -5.2566176e+29 -5.2587846e+29 -5.2498153e+29 -5.2443614e+29 -5.2429344e+29 -5.2573339e+29 -5.2563476e+29 -5.2687918e+29 -5.2668209e+29 -5.270183e+29 -5.274506e+29 -5.2677924e+29 -5.2728218e+29 -5.2673368e+29 -5.2703972e+29 -5.2663046e+29 -5.2650531e+29 -5.2660687e+29 -5.2666256e+29 -5.2701603e+29 -5.2744227e+29 -5.2783081e+29 -5.273867e+29 -5.2772561e+29 -5.2792038e+29 -5.2836665e+29 -5.2814541e+29 -5.2855889e+29 -5.2880439e+29 -5.2924429e+29 -5.2897937e+29 -5.2775065e+29 -5.2821709e+29 -5.2861586e+29 -5.2813189e+29 -5.2681535e+29 -5.2716177e+29 -5.2752462e+29 -5.2645857e+29 -5.2579824e+29 -5.264596e+29 -5.2681725e+29 -5.2613395e+29 -5.2791852e+29 -5.2836988e+29 -5.2771768e+29 -5.2722987e+29 -5.2936536e+29 -5.288478e+29 -5.2822845e+29 -5.287686e+29 -5.2896475e+29 -5.2902803e+29 -5.2946001e+29 -5.2853168e+29 -5.3013126e+29 -5.296855e+29 -5.2940652e+29 -5.2984608e+29 -5.3107018e+29 -5.3059011e+29 -5.3030273e+29 -5.3078529e+29 -5.3040015e+29 -5.2991452e+29 -5.2942231e+29 -5.299192e+29 -5.3044628e+29 -5.298944e+29 -5.2931114e+29 -5.298684e+29 -5.315937e+29 -5.3100772e+29 -5.3043307e+29 -5.3101029e+29 -5.3043631e+29 -5.3091143e+29 -5.3144863e+29 -5.3098101e+29 -5.3210665e+29 -5.3157431e+29 -5.3129318e+29 -5.3182604e+29 -5.3323356e+29 -5.3266076e+29 -5.3238241e+29 -5.3295544e+29 -5.325861e+29 -5.3200808e+29 -5.3153958e+29 -5.3212537e+29 -5.14698e+29 -5.1425419e+29 -4.6943702e+29 -4.6972433e+29 -5.115744e+29 -5.2700506e+29 -5.2724424e+29 -5.3151718e+29 -5.3124451e+29 -5.2514937e+29 -5.2766177e+29 -5.2746806e+29 -5.3175624e+29 -5.3197088e+29 -5.2511259e+29 -5.3217089e+29 -5.3200139e+29 -5.3752459e+29 -5.3474593e+29 -5.3445233e+29 -5.3720909e+29 -5.3524378e+29 -5.3806152e+29 -5.3780255e+29 -5.3499647e+29 -5.2391381e+29 -5.2442299e+29 -5.1005632e+29 -5.1040654e+29 -5.2506787e+29 -5.2510477e+29 -5.3244305e+29 -5.3227189e+29 -5.1074877e+29 -5.1833779e+29 -5.1813691e+29 -5.1117848e+29 -5.1046201e+29 -5.1037669e+29 -5.1792621e+29 -5.1796642e+29 -5.2205307e+29 -5.2247271e+29 -5.4885867e+29 -5.4921614e+29 -5.5421216e+29 -5.5382232e+29 -5.3823137e+29 -5.3851585e+29 -5.4420215e+29 -5.4386543e+29 -5.3799517e+29 -5.3767897e+29 -5.4308148e+29 -5.4352716e+29 -5.4843432e+29 -5.5337276e+29 -5.5277713e+29 -5.4789795e+29 -5.3997882e+29 -5.4210455e+29 -5.4170153e+29 -5.3963098e+29 -5.4280391e+29 -5.4058981e+29 -5.4245823e+29 -5.4028852e+29 -5.4443588e+29 -5.4482646e+29 -5.4701904e+29 -5.4657837e+29 -5.4404105e+29 -5.4565999e+29 -5.4615157e+29 -5.4359402e+29 -5.4881494e+29 -5.5097803e+29 -5.514897e+29 -5.4929611e+29 -5.5351708e+29 -5.5562978e+29 -5.5507982e+29 -5.5298586e+29 -5.5184222e+29 -5.5244892e+29 -5.5451164e+29 -5.5388024e+29 -5.4834388e+29 -5.5046699e+29 -5.4989046e+29 -5.4780386e+29 -5.5974053e+29 -5.6184995e+29 -5.6161223e+29 -5.5951393e+29 -5.5929529e+29 -5.6138147e+29 -5.6118725e+29 -5.5912072e+29 -5.6339455e+29 -5.6560545e+29 -5.6539546e+29 -5.6318349e+29 -5.6389631e+29 -5.6362308e+29 -5.6585058e+29 -5.6615348e+29 -5.5865614e+29 -5.5894395e+29 -5.6100032e+29 -5.6066811e+29 -5.6519975e+29 -5.6299957e+29 -5.6264574e+29 -5.6481598e+29 -5.6229406e+29 -5.644256e+29 -5.6407026e+29 -5.619486e+29 -5.583614e+29 -5.5804556e+29 -5.6001533e+29 -5.6034325e+29 -5.6090652e+29 -5.5969484e+29 -5.5997069e+29 -5.6063533e+29 -5.5746946e+29 -5.5851718e+29 -5.5821403e+29 -5.5717701e+29 -5.5801245e+29 -5.5906413e+29 -5.5879128e+29 -5.5773719e+29 -5.6036164e+29 -5.5941977e+29 -5.5910655e+29 -5.60046e+29 -5.5689506e+29 -5.5756916e+29 -5.5793403e+29 -5.565185e+29 -5.5617901e+29 -5.5723743e+29 -5.5688879e+29 -5.5583231e+29 -5.5779853e+29 -5.5814347e+29 -5.5908062e+29 -5.5874442e+29 -5.5882838e+29 -5.5976417e+29 -5.5939933e+29 -5.5846222e+29 -5.6258109e+29 -5.6222175e+29 -5.6326469e+29 -5.6361695e+29 -5.6125445e+29 -5.6161482e+29 -5.6065707e+29 -5.6029406e+29 -5.5963514e+29 -5.5997594e+29 -5.6093257e+29 -5.6058264e+29 -5.618993e+29 -5.6154073e+29 -5.6256094e+29 -5.6293531e+29 -5.6151744e+29 -5.6178588e+29 -5.6273982e+29 -5.6247508e+29 -5.6344745e+29 -5.6371987e+29 -5.6449359e+29 -5.6477101e+29 -5.6318361e+29 -5.6422092e+29 -5.6390287e+29 -5.6286741e+29 -5.6125352e+29 -5.6093941e+29 -5.618977e+29 -5.6221189e+29 -5.1227194e+29 -5.3767254e+29 -5.4906786e+29 -5.6696941e+29 -5.664059e+29 -5.6126678e+29 -5.6083622e+29 -5.6587714e+29 -5.6539708e+29 -5.6043633e+29 -5.388284e+29 -5.4448258e+29 -5.4484167e+29 -5.391772e+29 -5.4997662e+29 -5.5035604e+29 -5.553196e+29 -5.5493574e+29 -5.4512255e+29 -5.4544251e+29 -5.3982702e+29 -5.3952317e+29 -5.5469718e+29 -5.497059e+29 -5.4945575e+29 -5.5447951e+29 -5.5998456e+29 -5.6014865e+29 -5.62382e+29 -5.6219928e+29 -5.6480446e+29 -5.6511126e+29 -5.674606e+29 -5.6714279e+29 -5.6069182e+29 -5.6292918e+29 -5.6263449e+29 -5.6039124e+29 -5.6455372e+29 -5.6691012e+29 -5.6674599e+29 -5.6436782e+29 -5.5992686e+29 -5.6212469e+29 -5.6208506e+29 -5.5991609e+29 -5.5986642e+29 -5.5990626e+29 -5.6205569e+29 -5.6198499e+29 -5.6414654e+29 -5.6643471e+29 -5.6634212e+29 -5.6406091e+29 -5.6427162e+29 -5.6418747e+29 -5.6650608e+29 -5.6663319e+29 -5.6725347e+29 -5.6830059e+29 -5.6813541e+29 -5.6708731e+29 -5.6691306e+29 -5.6795723e+29 -5.6773546e+29 -5.6669966e+29 -5.6874581e+29 -5.6896822e+29 -5.7007678e+29 -5.6985401e+29 -5.7043868e+29 -5.6931837e+29 -5.6914263e+29 -5.7025588e+29 -5.7350016e+29 -5.7368736e+29 -5.7470697e+29 -5.7489275e+29 -5.7257841e+29 -5.714644e+29 -5.712809e+29 -5.7239715e+29 -5.7086801e+29 -5.7109422e+29 -5.7220128e+29 -5.7196291e+29 -5.7329855e+29 -5.7305473e+29 -5.7425035e+29 -5.7449893e+29 -5.7066633e+29 -5.7041075e+29 -5.715082e+29 -5.7175661e+29 -5.728407e+29 -5.7402916e+29 -5.7376952e+29 -5.7258562e+29 -5.723786e+29 -5.7217391e+29 -5.7335394e+29 -5.7355638e+29 -5.7020085e+29 -5.7129671e+29 -5.7108461e+29 -5.6999041e+29 -5.6650685e+29 -5.6730468e+29 -5.6753724e+29 -5.6627424e+29 -5.6608205e+29 -5.6710165e+29 -5.6690226e+29 -5.6589194e+29 -5.6788852e+29 -5.680937e+29 -5.6897854e+29 -5.6918449e+29 -5.6854497e+29 -5.6829816e+29 -5.6939182e+29 -5.696486e+29 -5.7601747e+29 -5.7584169e+29 -5.7693632e+29 -5.7711222e+29 -5.7563419e+29 -5.7672944e+29 -5.7649142e+29 -5.7539762e+29 -5.7516122e+29 -5.7601185e+29 -5.7624837e+29 -5.7491865e+29 -5.7469379e+29 -5.7578063e+29 -5.75555e+29 -5.7447599e+29 -5.6826178e+29 -5.6919923e+29 -5.6934784e+29 -5.6811086e+29 -5.6797036e+29 -5.6905847e+29 -5.689121e+29 -5.678267e+29 -5.6996624e+29 -5.7011667e+29 -5.7111768e+29 -5.7127242e+29 -5.7040469e+29 -5.7141522e+29 -5.7156074e+29 -5.7025416e+29 -5.7261518e+29 -5.7247218e+29 -5.7361776e+29 -5.7375925e+29 -5.7490104e+29 -5.7615115e+29 -5.7599592e+29 -5.7475168e+29 -5.7460282e+29 -5.7583667e+29 -5.7565321e+29 -5.7442655e+29 -5.7232951e+29 -5.7217001e+29 -5.733024e+29 -5.7347239e+29 -5.7428559e+29 -5.7411003e+29 -5.753162e+29 -5.7549509e+29 -5.7299496e+29 -5.7316771e+29 -5.7203941e+29 -5.7186332e+29 -5.717188e+29 -5.7157744e+29 -5.726909e+29 -5.7283948e+29 -5.739497e+29 -5.7379647e+29 -5.7500513e+29 -5.7515991e+29 -5.6771281e+29 -5.6879169e+29 -5.6864829e+29 -5.6756789e+29 -5.694306e+29 -5.6956085e+29 -5.7068146e+29 -5.7054812e+29 -5.698428e+29 -5.6968512e+29 -5.7081554e+29 -5.7098855e+29 -5.6745255e+29 -5.6852412e+29 -5.6840705e+29 -5.6735103e+29 -5.7664615e+29 -5.7646739e+29 -5.775744e+29 -5.777559e+29 -5.7631426e+29 -5.7741937e+29 -5.7726621e+29 -5.7615953e+29 -5.783122e+29 -5.784572e+29 -5.7731792e+29 -5.7717203e+29 -5.7794595e+29 -5.781405e+29 -5.7700617e+29 -5.7682989e+29 -5.6507002e+29 -5.6566529e+29 -5.66079e+29 -5.6465755e+29 -5.6645535e+29 -5.6680761e+29 -5.6580411e+29 -5.6544681e+29 -5.6323184e+29 -5.6287874e+29 -5.6382381e+29 -5.6418511e+29 -5.6217965e+29 -5.625329e+29 -5.6312237e+29 -5.6347595e+29 -5.651982e+29 -5.6481789e+29 -5.6586656e+29 -5.6625647e+29 -5.6446645e+29 -5.6514562e+29 -5.6550367e+29 -5.6410813e+29 -5.6727617e+29 -5.6687643e+29 -5.6790979e+29 -5.6831811e+29 -5.6940867e+29 -5.7053599e+29 -5.7011813e+29 -5.6899402e+29 -5.6859184e+29 -5.6820439e+29 -5.6929627e+29 -5.6969845e+29 -5.6650204e+29 -5.6752051e+29 -5.6714595e+29 -5.6613871e+29 -5.6184175e+29 -5.6279267e+29 -5.6242344e+29 -5.6146204e+29 -5.6106641e+29 -5.6203202e+29 -5.6160824e+29 -5.606414e+29 -5.6303051e+29 -5.6261224e+29 -5.6365838e+29 -5.6406999e+29 -5.6377409e+29 -5.6481057e+29 -5.6445023e+29 -5.6341153e+29 -5.657806e+29 -5.6675722e+29 -5.6649444e+29 -5.6552229e+29 -5.6523891e+29 -5.6620602e+29 -5.6591249e+29 -5.6494396e+29 -5.669129e+29 -5.6722401e+29 -5.6796662e+29 -5.6828359e+29 -5.6777371e+29 -5.6750963e+29 -5.6857594e+29 -5.6884333e+29 -5.6987073e+29 -5.6959752e+29 -5.7064593e+29 -5.7092492e+29 -5.7204015e+29 -5.7289835e+29 -5.7319468e+29 -5.7174994e+29 -5.7143502e+29 -5.710939e+29 -5.7223277e+29 -5.7257135e+29 -5.6930046e+29 -5.7033907e+29 -5.7001033e+29 -5.6898018e+29 -5.680059e+29 -5.6867471e+29 -5.6903303e+29 -5.6764132e+29 -5.6937502e+29 -5.6969874e+29 -5.6867757e+29 -5.6834852e+29 -5.704507e+29 -5.7077474e+29 -5.7191394e+29 -5.7156951e+29 -5.7011376e+29 -5.7123417e+29 -5.7088023e+29 -5.6975568e+29 -5.6464487e+29 -5.6561326e+29 -5.652774e+29 -5.643071e+29 -5.6396218e+29 -5.6492838e+29 -5.6454612e+29 -5.6358634e+29 -5.6593549e+29 -5.6662236e+29 -5.669912e+29 -5.655572e+29 -5.6661551e+29 -5.6766848e+29 -5.6733649e+29 -5.6628073e+29 -5.7421363e+29 -5.7667419e+29 -5.7632909e+29 -5.7929392e+29 -5.7894152e+29 -5.7396903e+29 -5.7431356e+29 -5.718825e+29 -5.7150963e+29 -5.7093848e+29 -5.71203e+29 -5.7364408e+29 -5.7335747e+29 -5.7600231e+29 -5.7862916e+29 -5.7834539e+29 -5.7570799e+29 -5.7072519e+29 -5.7044819e+29 -5.7286339e+29 -5.7315335e+29 -5.7549302e+29 -5.781062e+29 -5.7776287e+29 -5.7518173e+29 -5.7743883e+29 -5.7487773e+29 -5.7456684e+29 -5.7711744e+29 -5.7018964e+29 -5.6993375e+29 -5.722716e+29 -5.7256901e+29 -5.6871735e+29 -5.6864219e+29 -5.6978823e+29 -5.6986443e+29 -5.7098028e+29 -5.7089619e+29 -5.7210178e+29 -5.721925e+29 -5.7195983e+29 -5.7202911e+29 -5.7083586e+29 -5.7077841e+29 -5.6858942e+29 -5.6973044e+29 -5.6968475e+29 -5.6855331e+29 -5.7329836e+29 -5.7320162e+29 -5.7439553e+29 -5.744923e+29 -5.7568261e+29 -5.7698259e+29 -5.7686259e+29 -5.7557369e+29 -5.7547156e+29 -5.7537241e+29 -5.7664469e+29 -5.7675202e+29 -5.731125e+29 -5.7429447e+29 -5.74202e+29 -5.7303392e+29 -5.6852423e+29 -5.6846702e+29 -5.6957221e+29 -5.6964117e+29 -5.7072493e+29 -5.7190336e+29 -5.7180937e+29 -5.7064192e+29 -5.7057072e+29 -5.7049235e+29 -5.7164027e+29 -5.7172404e+29 -5.6841213e+29 -5.6950709e+29 -5.6943308e+29 -5.68344e+29 -5.7404258e+29 -5.7414056e+29 -5.7297815e+29 -5.7287905e+29 -5.7278375e+29 -5.7394074e+29 -5.7383971e+29 -5.7269038e+29 -5.7498687e+29 -5.7508902e+29 -5.763464e+29 -5.7624189e+29 -5.7529675e+29 -5.7645037e+29 -5.7656318e+29 -5.7518927e+29 -5.7775384e+29 -5.7764925e+29 -5.7880012e+29 -5.789113e+29 -5.7754282e+29 -5.7743037e+29 -5.7857367e+29 -5.7869207e+29 -5.7795192e+29 -5.7912469e+29 -5.7901424e+29 -5.7784637e+29 -5.7935541e+29 -5.7818115e+29 -5.7806451e+29 -5.7924011e+29 -5.7771635e+29 -5.7786469e+29 -5.765634e+29 -5.764185e+29 -5.7386839e+29 -5.7374495e+29 -5.7494177e+29 -5.7508201e+29 -5.7415432e+29 -5.7536378e+29 -5.7522576e+29 -5.7400321e+29 -5.7627395e+29 -5.7757411e+29 -5.7743238e+29 -5.7612968e+29 -5.695616e+29 -5.6938685e+29 -5.7053496e+29 -5.7069807e+29 -5.7180599e+29 -5.730245e+29 -5.7286945e+29 -5.7164757e+29 -5.715166e+29 -5.7273795e+29 -5.7262719e+29 -5.7140027e+29 -5.6923833e+29 -5.7039342e+29 -5.7026656e+29 -5.6911183e+29 -5.6902539e+29 -5.6891365e+29 -5.7006824e+29 -5.7017853e+29 -5.71308e+29 -5.7253553e+29 -5.7240963e+29 -5.7118853e+29 -5.7110409e+29 -5.723156e+29 -5.7224418e+29 -5.7103379e+29 -5.6883177e+29 -5.6998403e+29 -5.6991491e+29 -5.6876409e+29 -5.7352891e+29 -5.7365622e+29 -5.747389e+29 -5.7485751e+29 -5.7604541e+29 -5.7592735e+29 -5.7722668e+29 -5.7734293e+29 -5.7705343e+29 -5.771352e+29 -5.7583265e+29 -5.7574552e+29 -5.7342784e+29 -5.745449e+29 -5.7463609e+29 -5.7334598e+29 -5.7959585e+29 -5.3858827e+29 -5.3931687e+29 -5.3859836e+29 -5.3784863e+29 -5.3795744e+29 -5.3743226e+29 -5.3667782e+29 -5.3721841e+29 -5.3766722e+29 -5.3891348e+29 -5.394997e+29 -5.3894874e+29 -5.383762e+29 -5.3821797e+29 -5.3874039e+29 -5.3817206e+29 -5.3984512e+29 -5.4044756e+29 -5.3997188e+29 -5.3937614e+29 -5.40424e+29 -5.4091356e+29 -5.4138632e+29 -5.4089534e+29 -5.3940333e+29 -5.3996431e+29 -5.404329e+29 -5.3987203e+29 -5.385276e+29 -5.39115e+29 -5.3951904e+29 -5.3891169e+29 -5.3829522e+29 -5.3792997e+29 -5.372954e+29 -5.3766542e+29 -5.375881e+29 -5.3710681e+29 -5.3646439e+29 -5.3695416e+29 -5.4093079e+29 -5.4226253e+29 -5.4177461e+29 -5.4043408e+29 -5.4200016e+29 -5.4340466e+29 -5.4282124e+29 -5.4146151e+29 -5.448242e+29 -5.4416362e+29 -5.4537228e+29 -5.4649838e+29 -5.4618037e+29 -5.450704e+29 -5.4572127e+29 -5.4609857e+29 -5.4724894e+29 -5.4685938e+29 -5.4360845e+29 -5.4590819e+29 -5.4450812e+29 -5.4480141e+29 -5.4559861e+29 -5.4424436e+29 -5.4532011e+29 -5.4508359e+29 -5.4401714e+29 -5.4308404e+29 -5.4060773e+29 -5.4123911e+29 -5.4084792e+29 -5.4022564e+29 -5.4182811e+29 -5.4117101e+29 -5.415459e+29 -5.4089793e+29 -5.4250402e+29 -5.4279897e+29 -5.4231362e+29 -5.4202245e+29 -5.421956e+29 -5.417183e+29 -5.4131138e+29 -5.4179014e+29 -5.4332791e+29 -5.4422177e+29 -5.4449934e+29 -5.4368875e+29 -5.4397536e+29 -5.4303376e+29 -5.4352031e+29 -5.4389687e+29 -5.4299091e+29 -5.4338208e+29 -5.4232529e+29 -5.4273152e+29 -5.4495524e+29 -5.4458052e+29 -5.4556243e+29 -5.4528008e+29 -5.4160434e+29 -5.4212617e+29 -5.4039365e+29 -5.4096253e+29 -5.4161082e+29 -5.4104546e+29 -5.4309553e+29 -5.4262495e+29 -5.4258202e+29 -5.419238e+29 -5.4142689e+29 -5.4209237e+29 -5.4317501e+29 -5.4264028e+29 -5.4368292e+29 -5.4415847e+29 -5.4062778e+29 -5.4127606e+29 -5.4060477e+29 -5.4001249e+29 -5.3996597e+29 -5.3938462e+29 -5.4207525e+29 -5.4142802e+29 -5.381132e+29 -5.3926782e+29 -5.3997847e+29 -5.3875643e+29 -5.3931986e+29 -5.3864474e+29 -5.4074935e+29 -5.4003194e+29 -5.3484526e+29 -5.3571777e+29 -5.3624156e+29 -5.354466e+29 -5.3698365e+29 -5.3660348e+29 -5.3583508e+29 -5.3622274e+29 -5.4605757e+29 -5.4631279e+29 -5.4720582e+29 -5.4693512e+29 -5.4806644e+29 -5.489388e+29 -5.4864876e+29 -5.4778384e+29 -5.495912e+29 -5.4871103e+29 -5.4837009e+29 -5.4924659e+29 -5.4783897e+29 -5.4692999e+29 -5.4660484e+29 -5.4750469e+29 -5.4934402e+29 -5.4899562e+29 -5.4987623e+29 -5.5022489e+29 -5.5098193e+29 -5.5010006e+29 -5.4970703e+29 -5.5059217e+29 -5.4921969e+29 -5.4790163e+29 -5.4829798e+29 -5.4882744e+29 -5.4754163e+29 -5.4846633e+29 -5.481215e+29 -5.4720464e+29 -5.507299e+29 -5.5109123e+29 -5.5197279e+29 -5.5160594e+29 -5.5270638e+29 -5.51839e+29 -5.5145884e+29 -5.5233349e+29 -5.5452172e+29 -5.5321883e+29 -5.5358564e+29 -5.5415937e+29 -5.5286296e+29 -5.5249401e+29 -5.5343454e+29 -5.5380637e+29 -5.5010586e+29 -5.5044396e+29 -5.5130983e+29 -5.5097093e+29 -5.5312268e+29 -5.5184095e+29 -5.5218836e+29 -5.5276146e+29 -5.5120966e+29 -5.5153175e+29 -5.5244092e+29 -5.52103e+29 -5.4979794e+29 -5.4949788e+29 -5.5035132e+29 -5.5066492e+29 -5.502807e+29 -5.4908882e+29 -5.4954863e+29 -5.4983893e+29 -5.4879281e+29 -5.4805415e+29 -5.4756694e+29 -5.4831032e+29 -5.4653778e+29 -5.4706112e+29 -5.4780624e+29 -5.4729013e+29 -5.4859111e+29 -5.4935594e+29 -5.4883011e+29 -5.4807015e+29 -5.5073321e+29 -5.5109282e+29 -5.5186498e+29 -5.514982e+29 -5.4919626e+29 -5.4953175e+29 -5.502967e+29 -5.4995022e+29 -5.4845489e+29 -5.4884201e+29 -5.4958091e+29 -5.4918523e+29 -5.4994115e+29 -5.5035545e+29 -5.5111508e+29 -5.5068436e+29 -5.4588924e+29 -5.466319e+29 -5.4625744e+29 -5.4551511e+29 -5.4726286e+29 -5.4650633e+29 -5.4621097e+29 -5.469605e+29 -5.477e+29 -5.4801168e+29 -5.4876328e+29 -5.4844113e+29 -5.4736499e+29 -5.4809693e+29 -5.4771655e+29 -5.4698818e+29 -5.4462356e+29 -5.4510345e+29 -5.4585e+29 -5.4537196e+29 -5.4609752e+29 -5.4658032e+29 -5.4730825e+29 -5.4682247e+29 -5.4505558e+29 -5.4559282e+29 -5.4631144e+29 -5.4578398e+29 -5.4411846e+29 -5.4486781e+29 -5.4432632e+29 -5.4357261e+29 -5.4258748e+29 -5.4327751e+29 -5.4392052e+29 -5.4323746e+29 -5.4397007e+29 -5.4460818e+29 -5.4531495e+29 -5.4467202e+29 -5.4397427e+29 -5.4327241e+29 -5.4255429e+29 -5.4326773e+29 -5.4190041e+29 -5.4258802e+29 -5.4186478e+29 -5.4117276e+29 -5.4115212e+29 -5.4185242e+29 -5.4257578e+29 -5.4187733e+29 -5.4114349e+29 -5.4044069e+29 -5.3972723e+29 -5.4043993e+29 -5.3903699e+29 -5.397431e+29 -5.4043632e+29 -5.4114962e+29 -5.4567282e+29 -5.4419406e+29 -5.4490393e+29 -5.4498636e+29 -5.440879e+29 -5.4332324e+29 -5.4261314e+29 -5.4337023e+29 -5.4187224e+29 -5.4262864e+29 -5.4191687e+29 -5.4345063e+29 -5.4423128e+29 -5.4341351e+29 -5.4268451e+29 -5.4765218e+29 -5.4754037e+29 -5.4824298e+29 -5.4692315e+29 -5.4603597e+29 -5.467713e+29 -5.4613562e+29 -5.4539031e+29 -5.4627077e+29 -5.4558814e+29 -5.4633513e+29 -5.4702304e+29 -5.4470623e+29 -5.4402057e+29 -5.4478366e+29 -5.4546495e+29 -5.6021621e+29 -5.6072247e+29 -5.6117979e+29 -5.5976725e+29 -5.5931903e+29 -5.6027716e+29 -5.5983997e+29 -5.5887398e+29 -5.6083576e+29 -5.6128361e+29 -5.6232873e+29 -5.6186216e+29 -5.6218822e+29 -5.6279078e+29 -5.6324433e+29 -5.6173154e+29 -5.5843128e+29 -5.5938853e+29 -5.5893989e+29 -5.5797884e+29 -5.5699298e+29 -5.5750186e+29 -5.5846299e+29 -5.5794493e+29 -5.4895741e+29 -5.4950016e+29 -5.5021385e+29 -5.4983088e+29 -5.5003218e+29 -5.507413e+29 -5.509823e+29 -5.5149927e+29 -5.5052198e+29 -5.4994122e+29 -5.4924944e+29 -5.4837908e+29 -5.5093524e+29 -5.5163411e+29 -5.5121893e+29 -5.5196782e+29 -5.5240177e+29 -5.5051892e+29 -5.5270471e+29 -5.5315035e+29 -5.5392308e+29 -5.5346931e+29 -5.5223971e+29 -5.5300157e+29 -5.5249749e+29 -5.5173024e+29 -5.5198402e+29 -5.5065753e+29 -5.5123821e+29 -5.5139686e+29 -5.4941754e+29 -5.5005318e+29 -5.5078434e+29 -5.5015984e+29 -5.477686e+29 -5.4864935e+29 -5.4933638e+29 -5.4869197e+29 -5.4798481e+29 -5.4708413e+29 -5.5337567e+29 -5.5430963e+29 -5.5467918e+29 -5.530234e+29 -5.5406253e+29 -5.5504633e+29 -5.5540925e+29 -5.5371435e+29 -5.5588745e+29 -5.5626857e+29 -5.5712994e+29 -5.5673725e+29 -5.5551471e+29 -5.5635308e+29 -5.5596437e+29 -5.5513359e+29 -5.5988918e+29 -5.594942e+29 -5.6049467e+29 -5.6087362e+29 -5.5851719e+29 -5.5891735e+29 -5.5800638e+29 -5.5760707e+29 -5.5681659e+29 -5.5721463e+29 -5.5811828e+29 -5.5771161e+29 -5.5909649e+29 -5.5868197e+29 -5.5967635e+29 -5.600998e+29 -5.6061545e+29 -5.6158391e+29 -5.6122384e+29 -5.6024705e+29 -5.6130845e+29 -5.6228326e+29 -5.6193228e+29 -5.6095821e+29 -5.5909591e+29 -5.5944374e+29 -5.5999578e+29 -5.6034224e+29 -5.5874881e+29 -5.5837225e+29 -5.5927971e+29 -5.5965378e+29 -5.5546373e+29 -5.5682556e+29 -5.5649101e+29 -5.5512798e+29 -5.5477286e+29 -5.5613525e+29 -5.5576202e+29 -5.5439803e+29 -5.5700244e+29 -5.566266e+29 -5.5749331e+29 -5.578689e+29 -5.5769592e+29 -5.5856745e+29 -5.5822019e+29 -5.5735184e+29 -5.5255557e+29 -5.5329268e+29 -5.5218687e+29 -5.5290998e+29 -5.5367997e+29 -5.5407548e+29 -5.5483957e+29 -5.5562521e+29 -5.5520521e+29 -5.5443313e+29 -5.5401457e+29 -5.5358298e+29 -5.5434782e+29 -5.5477461e+29 -5.5179403e+29 -5.5250987e+29 -5.5326895e+29 -5.5206755e+29 -5.5283511e+29 -5.5135659e+29 -5.5558264e+29 -5.5645069e+29 -5.5601699e+29 -5.5515195e+29 -5.5601565e+29 -5.5644473e+29 -5.5732526e+29 -5.5688973e+29 -5.5837363e+29 -5.573973e+29 -5.5695869e+29 -5.5792989e+29 -5.582835e+29 -5.5784169e+29 -5.5882287e+29 -5.5926926e+29 -5.5472849e+29 -5.5513655e+29 -5.5559122e+29 -5.5427408e+29 -5.5380203e+29 -5.5466186e+29 -5.5416284e+29 -5.5329976e+29 -5.5509654e+29 -5.555931e+29 -5.5655725e+29 -5.5605818e+29 -5.5652848e+29 -5.574948e+29 -5.5703657e+29 -5.5607025e+29 -5.4501578e+29 -5.4597836e+29 -5.4614529e+29 -5.4526779e+29 -5.4675923e+29 -5.4419432e+29 -5.4642842e+29 -5.4732824e+29 -5.4740587e+29 -5.4668525e+29 -5.4804501e+29 -5.4576404e+29 -5.4810431e+29 -5.4876368e+29 -5.4950766e+29 -5.488233e+29 -5.4745988e+29 -5.4814752e+29 -5.474875e+29 -5.4683746e+29 -5.5296918e+29 -5.5133209e+29 -5.5204502e+29 -5.5227421e+29 -5.5113685e+29 -5.502932e+29 -5.504266e+29 -5.4959413e+29 -5.4903596e+29 -5.4971004e+29 -5.4889328e+29 -5.4822656e+29 -5.5060753e+29 -5.5155384e+29 -5.5088576e+29 -5.4994274e+29 -5.527769e+29 -5.5305895e+29 -5.536384e+29 -5.5219494e+29 -5.5095067e+29 -5.5157834e+29 -5.5243985e+29 -5.5180355e+29 -5.5272127e+29 -5.5337431e+29 -5.5433014e+29 -5.5364989e+29 -5.54581e+29 -5.55549e+29 -5.5496712e+29 -5.5399859e+29 -5.4503612e+29 -5.3260098e+29 -5.3160813e+29 -5.3394523e+29 -5.3487851e+29 -5.3529458e+29 -5.3439318e+29 -5.3368463e+29 -5.3436343e+29 -5.334184e+29 -5.3270726e+29 -5.3775439e+29 -5.3686788e+29 -5.364755e+29 -5.3734808e+29 -5.3847081e+29 -5.3804174e+29 -5.3866434e+29 -5.3911592e+29 -5.3610859e+29 -5.3695134e+29 -5.36514e+29 -5.3572359e+29 -5.376043e+29 -5.3821365e+29 -5.3769771e+29 -5.3712364e+29 -5.363156e+29 -5.3576632e+29 -5.3637051e+29 -5.369038e+29 -5.3780116e+29 -5.3726202e+29 -5.3685772e+29 -5.3739195e+29 -5.3671493e+29 -5.3631824e+29 -5.3565681e+29 -5.3605864e+29 -5.3452086e+29 -5.352138e+29 -5.3582344e+29 -5.3516045e+29 -5.2959614e+29 -5.3372414e+29 -5.3342488e+29 -5.293735e+29 -5.2978736e+29 -5.3003463e+29 -5.3439099e+29 -5.340565e+29 -5.364421e+29 -5.3858283e+29 -5.3906048e+29 -5.368489e+29 -5.395558e+29 -5.4003637e+29 -5.3770661e+29 -5.3728302e+29 -5.3104966e+29 -5.3370002e+29 -5.3561549e+29 -5.3523317e+29 -5.3330317e+29 -5.3303187e+29 -5.349026e+29 -5.3459307e+29 -5.3282937e+29 -5.3056223e+29 -5.3172856e+29 -5.3445392e+29 -5.3647381e+29 -5.3622161e+29 -5.3415635e+29 -5.3398584e+29 -5.3392217e+29 -5.358722e+29 -5.360263e+29 -5.3140983e+29 -5.3735498e+29 -5.3832621e+29 -5.3805051e+29 -5.3713397e+29 -5.388107e+29 -5.378148e+29 -5.3757267e+29 -5.3857484e+29 -5.3938415e+29 -5.3962828e+29 -5.4036792e+29 -5.401089e+29 -5.3879718e+29 -5.3911474e+29 -5.3983016e+29 -5.3947218e+29 -5.3471118e+29 -5.330634e+29 -5.3359941e+29 -5.3524135e+29 -5.3271016e+29 -5.314914e+29 -5.3107536e+29 -5.3225532e+29 -5.3188623e+29 -5.324977e+29 -5.3172841e+29 -5.3058792e+29 -5.2989878e+29 -5.3102365e+29 -5.3413842e+29 -5.3347042e+29 -5.2432186e+29 -5.2434838e+29 -5.2694887e+29 -5.2674939e+29 -5.2053836e+29 -5.1820847e+29 -5.2312783e+29 -5.231626e+29 -5.2051644e+29 -5.244386e+29 -5.2441607e+29 -5.181839e+29 -5.219564e+29 -5.2207845e+29 -5.2493851e+29 -5.2480189e+29 -5.2191553e+29 -5.2196459e+29 -5.2470882e+29 -5.247271e+29 -5.2059671e+29 -5.2326465e+29 -5.2346441e+29 -5.2087035e+29 -5.2721761e+29 -5.2710805e+29 -5.1536159e+29 -5.2045324e+29 -5.2030617e+29 -5.1521033e+29 -5.2470304e+29 -5.2488507e+29 -5.2915479e+29 -5.2889148e+29 -5.2876872e+29 -5.2465839e+29 -5.2463277e+29 -5.2860696e+29 -5.2031201e+29 -5.1526906e+29 -5.154979e+29 -5.2038758e+29 -5.1864545e+29 -5.2240171e+29 -5.2255367e+29 -5.2541757e+29 -5.252801e+29 -5.2226807e+29 -5.2515083e+29 -5.2505341e+29 -5.2218896e+29 -5.1836922e+29 -5.304812e+29 -5.3063101e+29 -5.3185176e+29 -5.3195767e+29 -5.2905043e+29 -5.2746116e+29 -5.2730978e+29 -5.2889871e+29 -5.2704458e+29 -5.2716907e+29 -5.2875211e+29 -5.2859634e+29 -5.3033606e+29 -5.3017367e+29 -5.3157501e+29 -5.3172284e+29 -5.2948225e+29 -5.29674e+29 -5.3093193e+29 -5.3066865e+29 -5.2984247e+29 -5.3005001e+29 -5.3140004e+29 -5.3116141e+29 -5.2677535e+29 -5.2693463e+29 -5.2848404e+29 -5.2831211e+29 -5.2667671e+29 -5.2818402e+29 -5.2804496e+29 -5.2660674e+29 -5.312107e+29 -5.3005998e+29 -5.3040399e+29 -5.3084937e+29 -5.2962325e+29 -5.2869536e+29 -5.28487e+29 -5.2933125e+29 -5.2823691e+29 -5.2898831e+29 -5.2848898e+29 -5.2787417e+29 -5.2962924e+29 -5.2902407e+29 -5.2967838e+29 -5.303623e+29 -5.180739e+29 -5.1772358e+29 -5.1747646e+29 -5.1748856e+29 -5.1753235e+29 -5.1726577e+29 -5.1721542e+29 -5.1737186e+29 -5.1871968e+29 -5.1922825e+29 -5.1840008e+29 -5.1841458e+29 -5.1829157e+29 -5.1806535e+29 -5.1813372e+29 -5.18482e+29 -5.1735341e+29 -5.1751631e+29 -5.1755601e+29 -5.1733743e+29 -5.1798816e+29 -5.1786004e+29 -5.184309e+29 -5.1824488e+29 -5.1901726e+29 -5.2131636e+29 -5.2465492e+29 -5.2483181e+29 -5.236913e+29 -5.2196863e+29 -5.2046807e+29 -5.2231106e+29 -5.2332311e+29 -5.2220751e+29 -5.2074908e+29 -5.2181091e+29 -5.305615e+29 -5.3082314e+29 -5.3265406e+29 -5.3204891e+29 -5.3350058e+29 -5.3309153e+29 -5.2657574e+29 -5.2640061e+29 -5.3044034e+29 -5.3146879e+29 -5.3048054e+29 -5.2957674e+29 -5.2862223e+29 -5.2949999e+29 -5.2777206e+29 -5.2776646e+29 -5.2872985e+29 -5.2874885e+29 -5.2908e+29 -5.2812413e+29 -5.2808707e+29 -5.2839703e+29 -5.2751762e+29 -5.2732275e+29 -5.2682416e+29 -5.2719161e+29 -5.2679972e+29 -5.2607777e+29 -5.2584946e+29 -5.2603707e+29 -5.2563088e+29 -5.2759953e+29 -5.2693854e+29 -5.2527564e+29 -5.2407392e+29 -5.2535443e+29 -5.2514919e+29 -5.2413947e+29 -5.2662811e+29 -5.2726974e+29 -5.2857409e+29 -5.2946106e+29 -5.2781446e+29 -5.2633696e+29 -5.2688619e+29 -5.2992832e+29 -5.2749832e+29 -5.2803341e+29 -5.2809278e+29 -5.2888536e+29 -5.2867384e+29 -5.3044856e+29 -5.2523319e+29 -5.2558872e+29 -5.2581062e+29 -5.3154097e+29 -5.3033772e+29 -5.3126477e+29 -5.3239193e+29 -5.3079479e+29 -5.3199039e+29 -5.2912507e+29 -5.2938188e+29 -5.2945303e+29 -5.2963178e+29 -5.2918871e+29 -5.2337932e+29 -5.2560374e+29 -5.2593372e+29 -5.2462204e+29 -5.252868e+29 -5.2388136e+29 -5.2499215e+29 -5.2448933e+29 -5.2506122e+29 -5.2532608e+29 -5.2487178e+29 -5.2522685e+29 -5.2579679e+29 -5.2572822e+29 -5.2520151e+29 -5.2548705e+29 -5.2326855e+29 -5.2207864e+29 -5.2277113e+29 -5.2226093e+29 -5.2375709e+29 -5.2220579e+29 -5.2229517e+29 -5.2235677e+29 -5.2289233e+29 -5.2415914e+29 -5.2310809e+29 -5.2253953e+29 -5.2352794e+29 -5.2447577e+29 -5.2388862e+29 -5.2435996e+29 -5.2451143e+29 -5.2471463e+29 -5.2352008e+29 -5.2422518e+29 -5.3519231e+29 -5.344772e+29 -5.3593053e+29 -5.3708617e+29 -5.3647237e+29 -5.3573725e+29 -5.3505339e+29 -5.3547183e+29 -5.3509001e+29 -5.3430054e+29 -5.3470862e+29 -5.3353378e+29 -5.3395444e+29 -5.3391683e+29 -5.3427291e+29 -5.3471528e+29 -5.3389669e+29 -5.3324558e+29 -5.3912922e+29 -5.3852106e+29 -5.3804688e+29 -5.3851092e+29 -5.391173e+29 -5.3976729e+29 -5.4044165e+29 -5.3976809e+29 -5.4040324e+29 -5.4112948e+29 -5.4141433e+29 -5.4082926e+29 -5.4166753e+29 -5.4219738e+29 -5.4272207e+29 -5.425833e+29 -5.3723689e+29 -5.3776527e+29 -5.363424e+29 -5.3593871e+29 -5.3634558e+29 -5.3568304e+29 -5.3632154e+29 -5.3698874e+29 -5.3772415e+29 -5.3738508e+29 -5.3787216e+29 -5.3840218e+29 -5.3558316e+29 -5.3262056e+29 -5.3344908e+29 -5.317843e+29 -5.328417e+29 -5.3298431e+29 -5.3242614e+29 -5.3012711e+29 -5.435604e+29 -5.4495126e+29 -5.439073e+29 -5.3638227e+29 -5.368191e+29 -5.3763097e+29 -5.3731918e+29 -5.3911251e+29 -5.3838667e+29 -5.3805817e+29 -5.3877228e+29 -5.4199457e+29 -5.4129814e+29 -5.4097139e+29 -5.4168815e+29 -5.3949584e+29 -5.3983942e+29 -5.4057491e+29 -5.402371e+29 -5.441763e+29 -5.4516719e+29 -5.3315351e+29 -5.3372611e+29 -5.3442672e+29 -5.3386901e+29 -5.3598515e+29 -5.3518373e+29 -5.3462902e+29 -5.3543483e+29 -5.3532278e+29 -5.3108355e+29 -5.3173357e+29 -5.3116525e+29 -5.3056498e+29 -5.3058852e+29 -5.3304469e+29 -5.3238101e+29 -5.3178656e+29 -5.3246438e+29 -5.2326913e+29 -5.2494848e+29 -5.2530776e+29 -5.2541018e+29 -5.2505291e+29 -5.2474398e+29 -5.2394934e+29 -5.2448795e+29 -5.2503991e+29 -5.2421456e+29 -5.2535529e+29 -5.2519581e+29 -5.2513125e+29 -5.247774e+29 -5.256648e+29 -5.2602985e+29 -5.2651666e+29 -5.2707106e+29 -5.2634191e+29 -5.2565486e+29 -5.2700424e+29 -5.2763231e+29 -5.2818065e+29 -5.2756052e+29 -5.3044176e+29 -5.2985736e+29 -5.2995305e+29 -5.2929996e+29 -5.2928967e+29 -5.2872816e+29 -5.281179e+29 -5.2870094e+29 -5.5493558e+29 -5.5489293e+29 -5.5587253e+29 -5.5583399e+29 -5.548574e+29 -5.5482561e+29 -5.5577333e+29 -5.5580084e+29 -5.520516e+29 -5.5299625e+29 -5.5294537e+29 -5.5200204e+29 -5.5403685e+29 -5.5398863e+29 -5.5290974e+29 -5.5395203e+29 -5.5391614e+29 -5.5286839e+29 -5.5196151e+29 -5.5191795e+29 -5.4695219e+29 -5.4705204e+29 -5.4783889e+29 -5.4775699e+29 -5.4942278e+29 -5.4863074e+29 -5.4856273e+29 -5.4936148e+29 -5.5017026e+29 -5.5022396e+29 -5.51051e+29 -5.5100516e+29 -5.5028122e+29 -5.5033756e+29 -5.511504e+29 -5.5109918e+29 -5.4625476e+29 -5.4546531e+29 -5.4534171e+29 -5.4614007e+29 -5.0610973e+29 -5.0523455e+29 -5.0362539e+29 -5.0442383e+29 -5.0540544e+29 -5.0454358e+29 -5.0315581e+29 -5.0509911e+29 -5.4318287e+29 -5.4325381e+29 -5.4405517e+29 -5.4399683e+29 -5.4331827e+29 -5.4337043e+29 -5.4415084e+29 -5.4410556e+29 -5.4577131e+29 -5.4495302e+29 -5.4491141e+29 -5.4572758e+29 -5.4569073e+29 -5.4486994e+29 -5.4481927e+29 -5.456449e+29 -5.4342601e+29 -5.4348808e+29 -5.4427407e+29 -5.4421428e+29 -5.4443678e+29 -5.436511e+29 -5.4356038e+29 -5.4434568e+29 -5.4604215e+29 -5.4523193e+29 -5.451466e+29 -5.4595884e+29 -5.4589254e+29 -5.4507797e+29 -5.4501654e+29 -5.4582998e+29 -5.4931761e+29 -5.4850865e+29 -5.4844666e+29 -5.4926539e+29 -5.4768596e+29 -5.4686268e+29 -5.4678466e+29 -5.4761506e+29 -5.466581e+29 -5.4671929e+29 -5.4755133e+29 -5.4749214e+29 -5.4921041e+29 -5.4838592e+29 -5.4832674e+29 -5.4915251e+29 -5.4647683e+29 -5.4652082e+29 -5.4735197e+29 -5.4730558e+29 -5.474392e+29 -5.4660315e+29 -5.4655862e+29 -5.4739368e+29 -5.4910309e+29 -5.4827522e+29 -5.482286e+29 -5.4905209e+29 -5.490015e+29 -5.4818272e+29 -5.4813048e+29 -5.4894175e+29 -5.4287086e+29 -5.4210908e+29 -5.4201662e+29 -5.4277893e+29 -5.4136601e+29 -5.4065373e+29 -5.4056199e+29 -5.4127196e+29 -5.4041013e+29 -5.4048207e+29 -5.411931e+29 -5.4113012e+29 -5.4270671e+29 -5.4193924e+29 -5.4187666e+29 -5.4264325e+29 -5.3996377e+29 -5.3930439e+29 -5.3920923e+29 -5.3987022e+29 -5.3866704e+29 -5.3805133e+29 -5.3795413e+29 -5.3856793e+29 -5.3779919e+29 -5.3787315e+29 -5.3848379e+29 -5.3841225e+29 -5.3979106e+29 -5.3912517e+29 -5.390502e+29 -5.3971519e+29 -5.3739272e+29 -5.3751955e+29 -5.3814378e+29 -5.3803137e+29 -5.376328e+29 -5.3771349e+29 -5.3832177e+29 -5.3824396e+29 -5.3963102e+29 -5.3896141e+29 -5.3888512e+29 -5.3955415e+29 -5.3946897e+29 -5.3879471e+29 -5.386897e+29 -5.3937237e+29 -5.4258889e+29 -5.4181681e+29 -5.4175089e+29 -5.4252964e+29 -5.410607e+29 -5.4033231e+29 -5.4025747e+29 -5.4098915e+29 -5.4008543e+29 -5.4017487e+29 -5.4090867e+29 -5.4082551e+29 -5.4245654e+29 -5.4167329e+29 -5.4159294e+29 -5.4237921e+29 -5.3707121e+29 -5.3717046e+29 -5.3777765e+29 -5.3768861e+29 -5.3722456e+29 -5.372302e+29 -5.3784159e+29 -5.3782911e+29 -5.3914879e+29 -5.3848002e+29 -5.3846121e+29 -5.3912089e+29 -5.3906649e+29 -5.384105e+29 -5.3832222e+29 -5.3897735e+29 -5.3723055e+29 -5.3721632e+29 -5.3784678e+29 -5.3785489e+29 -5.3722499e+29 -5.3727403e+29 -5.3791478e+29 -5.378626e+29 -5.3927476e+29 -5.3858146e+29 -5.3852507e+29 -5.3921504e+29 -5.391864e+29 -5.385036e+29 -5.3849986e+29 -5.3917243e+29 -5.4231357e+29 -5.4152161e+29 -5.4146298e+29 -5.4225827e+29 -5.4074533e+29 -5.3999683e+29 -5.3993678e+29 -5.4068524e+29 -5.3987943e+29 -5.3990084e+29 -5.4064343e+29 -5.4061519e+29 -5.4220806e+29 -5.4141648e+29 -5.4138003e+29 -5.4216307e+29 -5.4211742e+29 -5.4134169e+29 -5.4128885e+29 -5.4205775e+29 -5.4058178e+29 -5.398511e+29 -5.3981518e+29 -5.4053733e+29 -5.3966113e+29 -5.3975315e+29 -5.4046626e+29 -5.4036906e+29 -5.4197106e+29 -5.412092e+29 -5.4110491e+29 -5.4186063e+29 -5.4888478e+29 -5.4807914e+29 -5.4804072e+29 -5.4884472e+29 -5.4725759e+29 -5.4643461e+29 -5.4639106e+29 -5.4721679e+29 -5.4627139e+29 -5.4633949e+29 -5.4716991e+29 -5.4710671e+29 -5.488041e+29 -5.4799495e+29 -5.4793196e+29 -5.4873935e+29 -5.4560033e+29 -5.4476561e+29 -5.4471856e+29 -5.4555415e+29 -5.4393314e+29 -5.4311661e+29 -5.4306785e+29 -5.4388631e+29 -5.4296276e+29 -5.430161e+29 -5.4383493e+29 -5.437746e+29 -5.4550149e+29 -5.4466605e+29 -5.4460063e+29 -5.454332e+29 -5.4263491e+29 -5.4275005e+29 -5.4354001e+29 -5.4341994e+29 -5.4284174e+29 -5.4290403e+29 -5.4370415e+29 -5.436359e+29 -5.4535433e+29 -5.4452508e+29 -5.4444543e+29 -5.4526303e+29 -5.4515205e+29 -5.4434286e+29 -5.4421718e+29 -5.4502004e+29 -5.4866148e+29 -5.4785134e+29 -5.477373e+29 -5.4854416e+29 -5.4702259e+29 -5.4618929e+29 -5.4608885e+29 -5.4691489e+29 -5.4583019e+29 -5.459689e+29 -5.4678632e+29 -5.4663964e+29 -5.4839946e+29 -5.4759978e+29 -5.4744481e+29 -5.4823661e+29 -5.5120394e+29 -5.5229582e+29 -5.521816e+29 -5.5109808e+29 -5.5319341e+29 -5.5307469e+29 -5.5204755e+29 -5.5293625e+29 -5.5277752e+29 -5.5187863e+29 -5.5095974e+29 -5.5078942e+29 -5.4902846e+29 -5.4919641e+29 -5.5002034e+29 -5.498516e+29 -5.4934322e+29 -5.4945712e+29 -5.5026885e+29 -5.5016098e+29 -5.5147009e+29 -5.5258682e+29 -5.5252631e+29 -5.5142238e+29 -5.5350741e+29 -5.5343597e+29 -5.5247546e+29 -5.5337181e+29 -5.5329384e+29 -5.524004e+29 -5.5137892e+29 -5.513107e+29 -5.4954213e+29 -5.4960814e+29 -5.5043323e+29 -5.5036776e+29 -5.4964902e+29 -5.4969014e+29 -5.5051941e+29 -5.5047597e+29 -5.5435814e+29 -5.5427965e+29 -5.5520022e+29 -5.5528376e+29 -5.5623841e+29 -5.5721776e+29 -5.5712983e+29 -5.5615165e+29 -5.5503568e+29 -5.5420703e+29 -5.551208e+29 -5.5412642e+29 -5.5606528e+29 -5.570376e+29 -5.5597232e+29 -5.5693763e+29 -5.5402686e+29 -5.5390421e+29 -5.549349e+29 -5.5481009e+29 -5.5574626e+29 -5.5683423e+29 -5.5670848e+29 -5.5587195e+29 -5.5376424e+29 -5.5360964e+29 -5.545159e+29 -5.5466971e+29 -5.5560451e+29 -5.5545007e+29 -5.5656541e+29 -5.5640952e+29 -5.5190287e+29 -5.5302704e+29 -5.5301582e+29 -5.5188902e+29 -5.5396902e+29 -5.5394724e+29 -5.5299754e+29 -5.5392146e+29 -5.5387996e+29 -5.5295291e+29 -5.5186368e+29 -5.5181861e+29 -5.509532e+29 -5.5012333e+29 -5.5008304e+29 -5.5092455e+29 -5.4998141e+29 -5.5003595e+29 -5.5088834e+29 -5.508397e+29 -5.5176212e+29 -5.5289669e+29 -5.5283349e+29 -5.517066e+29 -5.538239e+29 -5.5375609e+29 -5.5276225e+29 -5.5367884e+29 -5.5359273e+29 -5.5267493e+29 -5.5163862e+29 -5.5155751e+29 -5.4987844e+29 -5.4993258e+29 -5.5078627e+29 -5.5073209e+29 -5.4975415e+29 -5.498215e+29 -5.5066902e+29 -5.5059576e+29 -5.5573853e+29 -5.5483029e+29 -5.5576405e+29 -5.548047e+29 -5.5672261e+29 -5.5669666e+29 -5.5770289e+29 -5.5767852e+29 -5.5566604e+29 -5.5477579e+29 -5.5570795e+29 -5.547355e+29 -5.5764974e+29 -5.5666741e+29 -5.5662175e+29 -5.5760254e+29 -5.5553784e+29 -5.5468127e+29 -5.5561149e+29 -5.5460981e+29 -5.5754826e+29 -5.5656828e+29 -5.5649182e+29 -5.574721e+29 -5.5536883e+29 -5.5452905e+29 -5.5545575e+29 -5.5444273e+29 -5.5739196e+29 -5.5641108e+29 -5.5632133e+29 -5.5730145e+29 -5.5020168e+29 -5.5125167e+29 -5.5117379e+29 -5.5013765e+29 -5.5212728e+29 -5.5203901e+29 -5.5110936e+29 -5.5196359e+29 -5.5189062e+29 -5.5103927e+29 -5.5008018e+29 -5.5001674e+29 -5.4777864e+29 -5.4703193e+29 -5.4698836e+29 -5.4773112e+29 -5.4626267e+29 -5.4548158e+29 -5.4546158e+29 -5.4622823e+29 -5.4542509e+29 -5.454466e+29 -5.4619663e+29 -5.4616724e+29 -5.4768641e+29 -5.4694644e+29 -5.4690712e+29 -5.4763759e+29 -5.4837291e+29 -5.4842809e+29 -5.4919489e+29 -5.4913682e+29 -5.4847901e+29 -5.4852973e+29 -5.4930645e+29 -5.4925006e+29 -5.5061323e+29 -5.5170423e+29 -5.5156759e+29 -5.5049213e+29 -5.5261456e+29 -5.5246971e+29 -5.5146084e+29 -5.5234637e+29 -5.5223247e+29 -5.5135307e+29 -5.5039452e+29 -5.502991e+29 -5.4809308e+29 -5.4730834e+29 -5.4720858e+29 -5.4798782e+29 -5.4650855e+29 -5.4570523e+29 -5.4561817e+29 -5.4641402e+29 -5.4551247e+29 -5.4555783e+29 -5.4634583e+29 -5.4629728e+29 -5.4790831e+29 -5.4713266e+29 -5.4707493e+29 -5.4783759e+29 -5.4860179e+29 -5.4868202e+29 -5.4947908e+29 -5.4939242e+29 -5.4876866e+29 -5.488774e+29 -5.4968604e+29 -5.4957211e+29 -5.5420369e+29 -5.5345054e+29 -5.5435749e+29 -5.5329993e+29 -5.5529033e+29 -5.5624736e+29 -5.5608578e+29 -5.5513186e+29 -5.5393067e+29 -5.531665e+29 -5.5406189e+29 -5.5304559e+29 -5.4489978e+29 -5.4410192e+29 -5.4402405e+29 -5.4481718e+29 -5.4330784e+29 -5.4252679e+29 -5.4245838e+29 -5.4323371e+29 -5.4241031e+29 -5.4242132e+29 -5.4318936e+29 -5.4317114e+29 -5.4476361e+29 -5.4397315e+29 -5.4394347e+29 -5.4472398e+29 -5.424819e+29 -5.424664e+29 -5.431963e+29 -5.432061e+29 -5.4244033e+29 -5.4241579e+29 -5.4316035e+29 -5.4317794e+29 -5.4469779e+29 -5.4392231e+29 -5.4393003e+29 -5.4469097e+29 -5.4469052e+29 -5.4393982e+29 -5.439399e+29 -5.4467946e+29 -5.4982629e+29 -5.5080676e+29 -5.5076398e+29 -5.4979433e+29 -5.51628e+29 -5.515764e+29 -5.5071722e+29 -5.5151948e+29 -5.5144088e+29 -5.5063836e+29 -5.4975106e+29 -5.4967785e+29 -5.4754834e+29 -5.4685388e+29 -5.4682509e+29 -5.4752118e+29 -5.4613996e+29 -5.4541716e+29 -5.4539619e+29 -5.4611325e+29 -5.4528133e+29 -5.4535478e+29 -5.4606533e+29 -5.4599422e+29 -5.4747577e+29 -5.4677512e+29 -5.4670047e+29 -5.4739892e+29 -5.4810452e+29 -5.4818001e+29 -5.4890772e+29 -5.4883659e+29 -5.4822539e+29 -5.4825111e+29 -5.4897971e+29 -5.4895183e+29 -5.4994828e+29 -5.509674e+29 -5.5092589e+29 -5.4991972e+29 -5.5182137e+29 -5.5176933e+29 -5.5089709e+29 -5.5172725e+29 -5.5168134e+29 -5.5085766e+29 -5.4990109e+29 -5.4987272e+29 -5.4759585e+29 -5.4687221e+29 -5.4685994e+29 -5.4757827e+29 -5.4613761e+29 -5.4540067e+29 -5.4539977e+29 -5.4612973e+29 -5.4542148e+29 -5.4541271e+29 -5.4613476e+29 -5.4614263e+29 -5.4757558e+29 -5.468592e+29 -5.4686065e+29 -5.4756742e+29 -5.4827954e+29 -5.4829507e+29 -5.4903851e+29 -5.4901784e+29 -5.4830343e+29 -5.4832345e+29 -5.49077e+29 -5.490534e+29 -5.4466173e+29 -5.4392963e+29 -5.4393984e+29 -5.4466548e+29 -5.432013e+29 -5.4248308e+29 -5.4250721e+29 -5.4321676e+29 -5.4257574e+29 -5.4254477e+29 -5.4324462e+29 -5.4327088e+29 -5.4468485e+29 -5.4396142e+29 -5.4397928e+29 -5.4469657e+29 -5.4240658e+29 -5.4250294e+29 -5.4320628e+29 -5.431236e+29 -5.4256368e+29 -5.4258237e+29 -5.4326834e+29 -5.4325363e+29 -5.4469121e+29 -5.4397312e+29 -5.4395991e+29 -5.4467407e+29 -5.4463598e+29 -5.4391942e+29 -5.4384136e+29 -5.445609e+29 -5.4176957e+29 -5.4106974e+29 -5.4110836e+29 -5.4180011e+29 -5.4038407e+29 -5.3971637e+29 -5.3977226e+29 -5.4042866e+29 -5.3984992e+29 -5.3982099e+29 -5.4047377e+29 -5.4051151e+29 -5.4184447e+29 -5.4115266e+29 -5.4119033e+29 -5.4187935e+29 -5.3905848e+29 -5.3841605e+29 -5.3848608e+29 -5.391203e+29 -5.3722398e+29 -5.371461e+29 -5.3777525e+29 -5.3785225e+29 -5.3728802e+29 -5.3726966e+29 -5.3789292e+29 -5.379145e+29 -5.3917142e+29 -5.3852983e+29 -5.3855003e+29 -5.3919501e+29 -5.3705157e+29 -5.3714269e+29 -5.3776884e+29 -5.3768015e+29 -5.3722273e+29 -5.3726672e+29 -5.3789235e+29 -5.3785163e+29 -5.3918155e+29 -5.3853114e+29 -5.3848955e+29 -5.3913891e+29 -5.3905758e+29 -5.3840911e+29 -5.3831138e+29 -5.3895016e+29 -5.4189041e+29 -5.41199e+29 -5.4116785e+29 -5.4186566e+29 -5.405134e+29 -5.3984239e+29 -5.3980156e+29 -5.4047687e+29 -5.3960594e+29 -5.3971898e+29 -5.4039543e+29 -5.4028143e+29 -5.417953e+29 -5.4109011e+29 -5.4097701e+29 -5.4168901e+29 -5.4175501e+29 -5.4100246e+29 -5.409382e+29 -5.4168888e+29 -5.4026732e+29 -5.3956023e+29 -5.3949881e+29 -5.4020342e+29 -5.3946477e+29 -5.3946706e+29 -5.4017004e+29 -5.4017235e+29 -5.4165673e+29 -5.4090433e+29 -5.4090417e+29 -5.4165162e+29 -5.388735e+29 -5.3821424e+29 -5.3814703e+29 -5.3880983e+29 -5.3757163e+29 -5.3694779e+29 -5.3687245e+29 -5.3749865e+29 -5.3684366e+29 -5.3683795e+29 -5.3746341e+29 -5.3746869e+29 -5.3877963e+29 -5.3811236e+29 -5.3811143e+29 -5.3877576e+29 -5.3706644e+29 -5.3698292e+29 -5.3760786e+29 -5.3769968e+29 -5.3691821e+29 -5.3686264e+29 -5.3748055e+29 -5.3753701e+29 -5.3878915e+29 -5.3812265e+29 -5.381782e+29 -5.388406e+29 -5.3891322e+29 -5.3825285e+29 -5.3834124e+29 -5.3899389e+29 -5.4166836e+29 -5.4092513e+29 -5.4096302e+29 -5.4169894e+29 -5.4019225e+29 -5.3948106e+29 -5.3952898e+29 -5.4023597e+29 -5.3966373e+29 -5.3959372e+29 -5.4029045e+29 -5.403465e+29 -5.4173376e+29 -5.4100707e+29 -5.4104724e+29 -5.4175972e+29 -5.3745008e+29 -5.3687067e+29 -5.3677973e+29 -5.3735317e+29 -5.3630511e+29 -5.3575626e+29 -5.3568801e+29 -5.3622139e+29 -5.3550461e+29 -5.356084e+29 -5.3614092e+29 -5.3605591e+29 -5.3727582e+29 -5.3669948e+29 -5.3662129e+29 -5.3719994e+29 -5.3521835e+29 -5.3468265e+29 -5.3463915e+29 -5.3515871e+29 -5.3413992e+29 -5.3358276e+29 -5.335668e+29 -5.3411028e+29 -5.3335433e+29 -5.3348868e+29 -5.3402708e+29 -5.338929e+29 -5.3508134e+29 -5.3455575e+29 -5.3442563e+29 -5.3496194e+29 -5.3270043e+29 -5.3289506e+29 -5.3344366e+29 -5.3326685e+29 -5.3305077e+29 -5.3319139e+29 -5.3372787e+29 -5.3358511e+29 -5.3481122e+29 -5.3426508e+29 -5.3412441e+29 -5.3467444e+29 -5.3454078e+29 -5.3398766e+29 -5.3382955e+29 -5.3439689e+29 -5.3711239e+29 -5.3652432e+29 -5.3642011e+29 -5.37023e+29 -5.3594246e+29 -5.3537004e+29 -5.3524109e+29 -5.3582431e+29 -5.3497274e+29 -5.3510772e+29 -5.3569337e+29 -5.3555896e+29 -5.3690118e+29 -5.3629274e+29 -5.3615821e+29 -5.3676737e+29 -5.1545012e+29 -5.2208461e+29 -5.1455355e+29 -5.2139224e+29 -5.1396897e+29 -5.1408063e+29 -5.2088832e+29 -5.2062645e+29 -5.142937e+29 -5.1362787e+29 -5.1346279e+29 -5.1285366e+29 -5.1242442e+29 -5.1234992e+29 -5.130142e+29 -5.1291475e+29 -5.1209362e+29 -5.1263608e+29 -5.1213672e+29 -5.1161609e+29 -5.11579e+29 -5.1194778e+29 -5.1249436e+29 -5.1210632e+29 -5.1315519e+29 -5.1357006e+29 -5.1368622e+29 -5.1318399e+29 -5.2032022e+29 -5.1992508e+29 -5.1986982e+29 -5.2009038e+29 -5.2738049e+29 -5.2573017e+29 -5.2737873e+29 -5.2581167e+29 -5.2610665e+29 -5.2772739e+29 -5.2747855e+29 -5.2580077e+29 -5.2956859e+29 -5.3019108e+29 -5.2906387e+29 -5.2937007e+29 -5.2884107e+29 -5.3000798e+29 -5.2924177e+29 -5.2986111e+29 -5.2872045e+29 -5.2916803e+29 -5.2868783e+29 -5.2972352e+29 -5.280549e+29 -5.2678083e+29 -5.2836534e+29 -5.2647431e+29 -5.271974e+29 -5.2765318e+29 -5.2904012e+29 -5.2872307e+29 -5.3046523e+29 -5.3085508e+29 -5.3016387e+29 -5.303106e+29 -5.2993659e+29 -5.307963e+29 -5.3007963e+29 -5.3062581e+29 -5.2964619e+29 -5.2981934e+29 -5.293474e+29 -5.3039233e+29 -5.3101998e+29 -5.3121604e+29 -5.3179679e+29 -5.3163186e+29 -5.3190652e+29 -5.3137269e+29 -5.3134918e+29 -5.3190078e+29 -5.3245264e+29 -5.3244969e+29 -5.3301622e+29 -5.33012e+29 -5.3222132e+29 -5.3236759e+29 -5.329347e+29 -5.3279625e+29 -5.3190456e+29 -5.3205449e+29 -5.3262674e+29 -5.3249009e+29 -5.3146281e+29 -5.3083725e+29 -5.3066283e+29 -5.3129751e+29 -5.3034229e+29 -5.3050616e+29 -5.3113387e+29 -5.3095028e+29 -5.315406e+29 -5.3173695e+29 -5.3232702e+29 -5.3212521e+29 -5.3124532e+29 -5.3134275e+29 -5.3191867e+29 -5.3181855e+29 -5.3076898e+29 -5.3018992e+29 -5.3008499e+29 -5.3066674e+29 -5.3001108e+29 -5.3004234e+29 -5.3062573e+29 -5.3061925e+29 -5.3121607e+29 -5.3120911e+29 -5.3179399e+29 -5.3180765e+29 -5.1267605e+29 -5.1297722e+29 -5.1345129e+29 -5.1282047e+29 -5.1999823e+29 -5.1953534e+29 -5.1935793e+29 -5.1951273e+29 -5.2905567e+29 -5.2959774e+29 -5.2859161e+29 -5.2891857e+29 -5.2846214e+29 -5.2947365e+29 -5.257234e+29 -5.2730461e+29 -5.2713219e+29 -5.2544e+29 -5.2525716e+29 -5.269502e+29 -5.269107e+29 -5.2528067e+29 -5.2873819e+29 -5.2823458e+29 -5.2880858e+29 -5.2942586e+29 -5.2830161e+29 -5.2937142e+29 -5.1968365e+29 -5.1307709e+29 -5.1960362e+29 -5.1305e+29 -5.1409545e+29 -5.1338533e+29 -5.2045916e+29 -5.1997758e+29 -5.2745299e+29 -5.2569866e+29 -5.272436e+29 -5.2602973e+29 -5.2533799e+29 -5.2544507e+29 -5.269376e+29 -5.2704284e+29 -5.2873362e+29 -5.2937066e+29 -5.28241e+29 -5.2879639e+29 -5.2832177e+29 -5.2941107e+29 -5.2849255e+29 -5.2891136e+29 -5.2946218e+29 -5.2948126e+29 -5.2900728e+29 -5.2863125e+29 -5.3128764e+29 -5.312441e+29 -5.3182858e+29 -5.3188038e+29 -5.3064473e+29 -5.3001573e+29 -5.3004758e+29 -5.3067719e+29 -5.3068998e+29 -5.3007292e+29 -5.3006357e+29 -5.3066796e+29 -5.3127183e+29 -5.3129257e+29 -5.3189338e+29 -5.3187495e+29 -5.1112186e+29 -5.1141228e+29 -5.1162015e+29 -5.1191657e+29 -5.1183298e+29 -5.1125867e+29 -5.1176386e+29 -5.1236711e+29 -5.1176219e+29 -5.1240043e+29 -5.1230476e+29 -5.1299275e+29 -5.1150285e+29 -5.1145172e+29 -5.120145e+29 -5.1197726e+29 -5.1037664e+29 -5.1095756e+29 -5.1241626e+29 -5.1312447e+29 -5.0983577e+29 -5.0997696e+29 -5.119362e+29 -5.1179425e+29 -5.0947614e+29 -5.0965969e+29 -5.1159754e+29 -5.1137969e+29 -5.096215e+29 -5.1001357e+29 -5.1155803e+29 -5.1203457e+29 -5.3664472e+29 -5.3603497e+29 -5.3598354e+29 -5.365944e+29 -5.3543295e+29 -5.3484598e+29 -5.3478405e+29 -5.3537654e+29 -5.3478091e+29 -5.3476293e+29 -5.3535948e+29 -5.3538433e+29 -5.3658961e+29 -5.3597219e+29 -5.3599448e+29 -5.3660868e+29 -5.3425926e+29 -5.3367579e+29 -5.3358952e+29 -5.3418746e+29 -5.3309225e+29 -5.3250521e+29 -5.3240396e+29 -5.3299465e+29 -5.3239783e+29 -5.3238097e+29 -5.3297043e+29 -5.3298783e+29 -5.341638e+29 -5.3356347e+29 -5.3357962e+29 -5.3417925e+29 -5.3246674e+29 -5.3248384e+29 -5.3306614e+29 -5.3304432e+29 -5.3246822e+29 -5.3242167e+29 -5.3301348e+29 -5.3305391e+29 -5.3420292e+29 -5.336051e+29 -5.336379e+29 -5.3422711e+29 -5.3421659e+29 -5.3364082e+29 -5.3360724e+29 -5.3416641e+29 -5.3661912e+29 -5.3601243e+29 -5.3601608e+29 -5.3661812e+29 -5.3540582e+29 -5.3480231e+29 -5.3481842e+29 -5.3541552e+29 -5.347261e+29 -5.3479394e+29 -5.3537822e+29 -5.3529458e+29 -5.3656597e+29 -5.3596969e+29 -5.3587474e+29 -5.3646509e+29 -5.132937e+29 -5.1315056e+29 -5.1406723e+29 -5.1339944e+29 -5.2051578e+29 -5.200223e+29 -5.1973459e+29 -5.197402e+29 -5.1961309e+29 -5.1326008e+29 -5.1969617e+29 -5.1307155e+29 -5.1391212e+29 -5.1328815e+29 -5.2018296e+29 -5.1978077e+29 -5.1160231e+29 -5.1175306e+29 -5.1212035e+29 -5.1225966e+29 -5.1298285e+29 -5.1239409e+29 -5.1181857e+29 -5.1236457e+29 -5.1173583e+29 -5.1231011e+29 -5.1223443e+29 -5.1284351e+29 -5.1172787e+29 -5.1153283e+29 -5.12225e+29 -5.1202882e+29 -5.1412468e+29 -5.136546e+29 -5.1397746e+29 -5.1360923e+29 -5.2025458e+29 -5.2002776e+29 -5.2005645e+29 -5.2038411e+29 -5.1435883e+29 -5.1446796e+29 -5.2059223e+29 -5.2079061e+29 -5.1563219e+29 -5.1488614e+29 -5.2118781e+29 -5.2169598e+29 -5.1208403e+29 -5.1239855e+29 -5.129292e+29 -5.1259217e+29 -5.1260788e+29 -5.1214889e+29 -5.1263503e+29 -5.1310563e+29 -5.1292491e+29 -5.1284191e+29 -5.1334327e+29 -5.1344562e+29 -5.1332628e+29 -5.1401126e+29 -5.1385999e+29 -5.145932e+29 -5.0977953e+29 -5.1003373e+29 -5.1206104e+29 -5.1173567e+29 -5.1008376e+29 -5.0977466e+29 -5.1170764e+29 -5.120486e+29 -5.1051187e+29 -5.1029386e+29 -5.1247655e+29 -5.1227494e+29 -5.1093051e+29 -5.1149783e+29 -5.1294219e+29 -5.1359384e+29 -5.3633569e+29 -5.3574658e+29 -5.3566268e+29 -5.3625542e+29 -5.3516952e+29 -5.3461203e+29 -5.3452804e+29 -5.3508271e+29 -5.3445346e+29 -5.344669e+29 -5.3503005e+29 -5.3503054e+29 -5.3621999e+29 -5.3561826e+29 -5.3562223e+29 -5.3622533e+29 -5.3406795e+29 -5.3352619e+29 -5.3344717e+29 -5.3398123e+29 -5.3297911e+29 -5.3241265e+29 -5.3235086e+29 -5.3290607e+29 -5.3223952e+29 -5.3228295e+29 -5.3282243e+29 -5.3278434e+29 -5.3391169e+29 -5.3336581e+29 -5.3333066e+29 -5.3388585e+29 -5.3228657e+29 -5.3224792e+29 -5.3280325e+29 -5.3284934e+29 -5.3390642e+29 -5.3335202e+29 -5.3340111e+29 -5.3395335e+29 -5.3399345e+29 -5.3345233e+29 -5.3351837e+29 -5.340618e+29 -5.3239685e+29 -5.3233613e+29 -5.3290089e+29 -5.3296365e+29 -5.3624871e+29 -5.3564739e+29 -5.3569224e+29 -5.3629954e+29 -5.3505459e+29 -5.3447243e+29 -5.3451567e+29 -5.3509556e+29 -5.3462236e+29 -5.3454869e+29 -5.3512996e+29 -5.3520452e+29 -5.3635482e+29 -5.3573589e+29 -5.3581104e+29 -5.3643301e+29 -5.2865904e+29 -5.2901701e+29 -5.294832e+29 -5.2942945e+29 -5.2894557e+29 -5.2857391e+29 -5.2733796e+29 -5.2602771e+29 -5.2748267e+29 -5.2575404e+29 -5.2701071e+29 -5.2550697e+29 -5.2712459e+29 -5.2542313e+29 -5.2840751e+29 -5.2885137e+29 -5.2939976e+29 -5.2932157e+29 -5.2874813e+29 -5.2829207e+29 -5.3000385e+29 -5.3004418e+29 -5.3062936e+29 -5.30591e+29 -5.3118227e+29 -5.3122503e+29 -5.3182501e+29 -5.3177391e+29 -5.3110012e+29 -5.3114834e+29 -5.3172077e+29 -5.3167032e+29 -5.3051947e+29 -5.2998381e+29 -5.3056958e+29 -5.299217e+29 -5.2545504e+29 -5.2702326e+29 -5.2716218e+29 -5.2570072e+29 -5.2868131e+29 -5.2822357e+29 -5.2926083e+29 -5.2822567e+29 -5.2868497e+29 -5.2927011e+29 -5.2535319e+29 -5.2532543e+29 -5.2694265e+29 -5.2694074e+29 -5.287954e+29 -5.2837394e+29 -5.282906e+29 -5.2872912e+29 -5.2930973e+29 -5.2934853e+29 -5.2993025e+29 -5.3054792e+29 -5.3060014e+29 -5.2997435e+29 -5.3120795e+29 -5.3115337e+29 -5.3175233e+29 -5.3181036e+29 -5.2987869e+29 -5.304851e+29 -5.2988089e+29 -5.3049554e+29 -5.3110251e+29 -5.3108278e+29 -5.3167256e+29 -5.31703e+29 -5.2741363e+29 -5.2569637e+29 -5.2724249e+29 -5.2593213e+29 -5.2574726e+29 -5.2565473e+29 -5.2720332e+29 -5.2718387e+29 -5.2887067e+29 -5.284304e+29 -5.2883628e+29 -5.2941254e+29 -5.2841396e+29 -5.2947575e+29 -5.2894313e+29 -5.2953255e+29 -5.2849719e+29 -5.2959354e+29 -5.2904152e+29 -5.2862853e+29 -5.2926435e+29 -5.2954666e+29 -5.2991029e+29 -5.2992837e+29 -5.2966021e+29 -5.2942091e+29 -5.2614343e+29 -5.2638863e+29 -5.2759394e+29 -5.278393e+29 -5.2935755e+29 -5.2901117e+29 -5.2983498e+29 -5.2878648e+29 -5.2916776e+29 -5.2970714e+29 -5.2837946e+29 -5.267983e+29 -5.2816887e+29 -5.27181e+29 -5.302897e+29 -5.3087065e+29 -5.3092079e+29 -5.3037408e+29 -5.3145696e+29 -5.3143545e+29 -5.3199992e+29 -5.3200114e+29 -5.3142028e+29 -5.3144359e+29 -5.3196899e+29 -5.3192827e+29 -5.3040194e+29 -5.3092194e+29 -5.309138e+29 -5.304074e+29 -5.3014546e+29 -5.3075493e+29 -5.3080101e+29 -5.3019766e+29 -5.3138707e+29 -5.3135391e+29 -5.3194826e+29 -5.3197358e+29 -5.3009677e+29 -5.3003554e+29 -5.3065786e+29 -5.3071253e+29 -5.3131806e+29 -5.3126731e+29 -5.3186901e+29 -5.3191755e+29 -5.33028e+29 -5.3245613e+29 -5.325048e+29 -5.3308099e+29 -5.3414343e+29 -5.3358755e+29 -5.3364702e+29 -5.3421302e+29 -5.3424615e+29 -5.3367858e+29 -5.3369376e+29 -5.3426389e+29 -5.3255251e+29 -5.32533e+29 -5.3310959e+29 -5.3312611e+29 -5.3254711e+29 -5.3256141e+29 -5.3312283e+29 -5.3309699e+29 -5.3425073e+29 -5.336831e+29 -5.3364814e+29 -5.3420901e+29 -5.3413189e+29 -5.3358279e+29 -5.3351379e+29 -5.3405781e+29 -5.3245341e+29 -5.3250182e+29 -5.3304046e+29 -5.3298147e+29 -5.3461847e+29 -5.3469372e+29 -5.3528397e+29 -5.3520208e+29 -5.3541841e+29 -5.3482766e+29 -5.3477982e+29 -5.3536971e+29 -5.366414e+29 -5.3602229e+29 -5.3597511e+29 -5.3659469e+29 -5.3651399e+29 -5.3589159e+29 -5.3580481e+29 -5.364242e+29 -5.3484169e+29 -5.3481717e+29 -5.3541241e+29 -5.3543456e+29 -5.3529258e+29 -5.3470691e+29 -5.3478411e+29 -5.3537292e+29 -5.3651568e+29 -5.3589545e+29 -5.3597732e+29 -5.3659578e+29 -5.3664254e+29 -5.3602131e+29 -5.3604186e+29 -5.3666133e+29 -5.1378558e+29 -5.1373232e+29 -5.1466767e+29 -5.1414235e+29 -5.1057646e+29 -5.1097883e+29 -5.1446767e+29 -5.1394605e+29 -5.1033634e+29 -5.1035056e+29 -5.136758e+29 -5.1363427e+29 -5.4454336e+29 -5.4390024e+29 -5.4373956e+29 -5.4438606e+29 -5.4323482e+29 -5.4255415e+29 -5.4239949e+29 -5.4307449e+29 -5.4199329e+29 -5.422126e+29 -5.428805e+29 -5.4266199e+29 -5.4419503e+29 -5.4354353e+29 -5.4332003e+29 -5.4396713e+29 -5.450447e+29 -5.4437977e+29 -5.4493189e+29 -5.4427026e+29 -5.4369517e+29 -5.4299718e+29 -5.435887e+29 -5.4289261e+29 -5.4348305e+29 -5.4279002e+29 -5.4268029e+29 -5.4336549e+29 -5.4481895e+29 -5.4415912e+29 -5.4403722e+29 -5.446904e+29 -5.3928199e+29 -5.3948371e+29 -5.4016707e+29 -5.3996607e+29 -5.3965935e+29 -5.3980836e+29 -5.4049216e+29 -5.4034559e+29 -5.4186626e+29 -5.4117849e+29 -5.4103201e+29 -5.4171652e+29 -5.4153526e+29 -5.4085343e+29 -5.4064534e+29 -5.4131986e+29 -5.4072611e+29 -5.4004823e+29 -5.3993879e+29 -5.4061726e+29 -5.4091951e+29 -5.4023108e+29 -5.4082904e+29 -5.4014379e+29 -5.4229548e+29 -5.4160381e+29 -5.4219533e+29 -5.41509e+29 -5.4209383e+29 -5.4140645e+29 -5.4130256e+29 -5.41989e+29 -5.4478991e+29 -5.4575503e+29 -5.4544836e+29 -5.4448433e+29 -5.4262732e+29 -5.419696e+29 -5.4164549e+29 -5.4231976e+29 -5.4127961e+29 -5.405686e+29 -5.4020342e+29 -5.4093598e+29 -5.4587269e+29 -5.4683983e+29 -5.4660094e+29 -5.4564595e+29 -5.4635431e+29 -5.4606561e+29 -5.4539941e+29 -5.4511275e+29 -5.4373148e+29 -5.430856e+29 -5.4285555e+29 -5.4350533e+29 -5.4242538e+29 -5.4175888e+29 -5.4152644e+29 -5.4219104e+29 -5.4092769e+29 -5.4125476e+29 -5.4192708e+29 -5.4161799e+29 -5.4324905e+29 -5.4259445e+29 -5.4229098e+29 -5.4294482e+29 -5.4108553e+29 -5.4041354e+29 -5.4017187e+29 -5.4085008e+29 -5.3973508e+29 -5.3906128e+29 -5.3880976e+29 -5.3948549e+29 -5.3808475e+29 -5.3848405e+29 -5.3917636e+29 -5.3879938e+29 -5.4056983e+29 -5.3987519e+29 -5.3951353e+29 -5.402245e+29 -5.3723597e+29 -5.3766431e+29 -5.3838785e+29 -5.3799602e+29 -5.3984768e+29 -5.3911987e+29 -5.3874352e+29 -5.3947563e+29 -5.3425537e+29 -5.3484936e+29 -5.3466206e+29 -5.3406646e+29 -5.3458267e+29 -5.3517833e+29 -5.3502551e+29 -5.3442813e+29 -5.3642107e+29 -5.3579099e+29 -5.3563219e+29 -5.3626413e+29 -5.3609516e+29 -5.3546385e+29 -5.3526969e+29 -5.3590317e+29 -5.3489075e+29 -5.3547543e+29 -5.3533851e+29 -5.3474441e+29 -5.3567523e+29 -5.3509715e+29 -5.3559664e+29 -5.3501432e+29 -5.3687399e+29 -5.362616e+29 -5.3680412e+29 -5.3618729e+29 -5.3669968e+29 -5.3607871e+29 -5.3594111e+29 -5.3656818e+29 -5.3816875e+29 -5.3751092e+29 -5.3809325e+29 -5.3743897e+29 -5.3953667e+29 -5.3884559e+29 -5.3945346e+29 -5.3876739e+29 -5.3936222e+29 -5.3867688e+29 -5.385608e+29 -5.3925149e+29 -5.3799876e+29 -5.3734077e+29 -5.3721448e+29 -5.3787847e+29 -5.3655597e+29 -5.3674654e+29 -5.3741483e+29 -5.3722471e+29 -5.3773676e+29 -5.3707022e+29 -5.3691566e+29 -5.3758433e+29 -5.3911614e+29 -5.3842136e+29 -5.3827171e+29 -5.3896524e+29 -5.3879248e+29 -5.381009e+29 -5.3790711e+29 -5.3859357e+29 -5.3220892e+29 -5.328279e+29 -5.3227783e+29 -5.316381e+29 -5.3413673e+29 -5.3347253e+29 -5.329199e+29 -5.3358668e+29 -5.3319465e+29 -5.3378975e+29 -5.3335e+29 -5.3273807e+29 -5.3383887e+29 -5.3443122e+29 -5.3415383e+29 -5.33562e+29 -5.3567771e+29 -5.3504404e+29 -5.3476159e+29 -5.3539848e+29 -5.3505305e+29 -5.3441018e+29 -5.3397388e+29 -5.346259e+29 -5.3837667e+29 -5.3768816e+29 -5.3742432e+29 -5.3812102e+29 -5.370022e+29 -5.3633181e+29 -5.3605559e+29 -5.3673106e+29 -5.3529301e+29 -5.3571391e+29 -5.3639232e+29 -5.3597796e+29 -5.3778738e+29 -5.3708745e+29 -5.3667303e+29 -5.3737528e+29 -5.3693473e+29 -5.3621298e+29 -5.3570086e+29 -5.3646489e+29 -5.3550235e+29 -5.3481035e+29 -5.3426646e+29 -5.3496217e+29 -5.4670122e+29 -5.4601249e+29 -5.4585582e+29 -5.4655114e+29 -5.4531137e+29 -5.4459918e+29 -5.4442987e+29 -5.4514556e+29 -5.4409559e+29 -5.4425905e+29 -5.4498297e+29 -5.4482647e+29 -5.46401e+29 -5.4569869e+29 -5.4554235e+29 -5.4624159e+29 -5.4959544e+29 -5.5062324e+29 -5.5050689e+29 -5.4948099e+29 -5.5036415e+29 -5.4933248e+29 -5.4476941e+29 -5.4493175e+29 -5.4564063e+29 -5.4548098e+29 -5.4590147e+29 -5.4518608e+29 -5.4507146e+29 -5.457841e+29 -5.4729671e+29 -5.466034e+29 -5.4648966e+29 -5.471828e+29 -5.470393e+29 -5.4634497e+29 -5.461811e+29 -5.4687072e+29 -5.418752e+29 -5.4203495e+29 -5.427585e+29 -5.426032e+29 -5.4302292e+29 -5.4230006e+29 -5.4217722e+29 -5.4290234e+29 -5.4446262e+29 -5.4374192e+29 -5.4362895e+29 -5.4435081e+29 -5.4421244e+29 -5.4348796e+29 -5.4333065e+29 -5.4405146e+29 -5.4387722e+29 -5.4315712e+29 -5.4297616e+29 -5.4370068e+29 -5.4152237e+29 -5.4170251e+29 -5.4242839e+29 -5.4224999e+29 -5.4117405e+29 -5.4134364e+29 -5.4206524e+29 -5.4189947e+29 -5.4352473e+29 -5.4279005e+29 -5.4262649e+29 -5.4335841e+29 -5.460918e+29 -5.4539646e+29 -5.4525578e+29 -5.459586e+29 -5.4467763e+29 -5.4394372e+29 -5.4380136e+29 -5.4453296e+29 -5.43537e+29 -5.4366134e+29 -5.4439112e+29 -5.4426494e+29 -5.4582402e+29 -5.4511424e+29 -5.4498093e+29 -5.4568501e+29 -5.4310385e+29 -5.4321034e+29 -5.4391697e+29 -5.4380576e+29 -5.4414953e+29 -5.4342709e+29 -5.4331919e+29 -5.4403377e+29 -5.455518e+29 -5.44857e+29 -5.4473967e+29 -5.4543123e+29 -5.4530554e+29 -5.4461753e+29 -5.4449657e+29 -5.4517326e+29 -5.403094e+29 -5.4038246e+29 -5.4108023e+29 -5.4099984e+29 -5.4045616e+29 -5.4053469e+29 -5.4125173e+29 -5.4116798e+29 -5.426989e+29 -5.4197316e+29 -5.4188168e+29 -5.4259897e+29 -5.424952e+29 -5.4178246e+29 -5.4169498e+29 -5.4239642e+29 -5.4062752e+29 -5.4073811e+29 -5.4146107e+29 -5.4134737e+29 -5.4174988e+29 -5.4101594e+29 -5.4086912e+29 -5.416023e+29 -5.4320602e+29 -5.4247669e+29 -5.4233491e+29 -5.4306615e+29 -5.4292367e+29 -5.4218809e+29 -5.4207307e+29 -5.4280265e+29 -5.3883183e+29 -5.3820576e+29 -5.3808499e+29 -5.3871091e+29 -5.3758233e+29 -5.3696077e+29 -5.3684377e+29 -5.3746173e+29 -5.3651357e+29 -5.3669074e+29 -5.3729917e+29 -5.3712285e+29 -5.3856239e+29 -5.3792508e+29 -5.3774548e+29 -5.3838483e+29 -5.3579069e+29 -5.3597344e+29 -5.3656794e+29 -5.3639064e+29 -5.361555e+29 -5.3632313e+29 -5.3692159e+29 -5.3674753e+29 -5.3782508e+29 -5.3718642e+29 -5.3700904e+29 -5.376489e+29 -5.3818806e+29 -5.3754404e+29 -5.3736457e+29 -5.3800401e+29 -5.3904682e+29 -5.3921745e+29 -5.3989186e+29 -5.397274e+29 -5.4015612e+29 -5.3948077e+29 -5.3936162e+29 -5.4003363e+29 -5.4157408e+29 -5.4085588e+29 -5.4073345e+29 -5.4145066e+29 -5.4130963e+29 -5.4059256e+29 -5.404296e+29 -5.4114874e+29 -5.3954352e+29 -5.3885655e+29 -5.3867205e+29 -5.3936106e+29 -5.4097471e+29 -5.4025165e+29 -5.4007333e+29 -5.4079489e+29 -5.4061297e+29 -5.3989026e+29 -5.3971384e+29 -5.4043984e+29 -5.3831617e+29 -5.3849083e+29 -5.3917846e+29 -5.3900375e+29 -5.351575e+29 -5.3518843e+29 -5.3575797e+29 -5.3573235e+29 -5.3521626e+29 -5.3525807e+29 -5.3583211e+29 -5.3578799e+29 -5.3697281e+29 -5.3635389e+29 -5.3632231e+29 -5.3693524e+29 -5.3706242e+29 -5.3643415e+29 -5.3638617e+29 -5.3700976e+29 -5.353446e+29 -5.3542539e+29 -5.3600027e+29 -5.3591941e+29 -5.3551081e+29 -5.3562048e+29 -5.3621492e+29 -5.3609533e+29 -5.3723503e+29 -5.3660487e+29 -5.3651824e+29 -5.3714356e+29 -5.3747943e+29 -5.3683541e+29 -5.3670673e+29 -5.3734394e+29 -5.3883941e+29 -5.3814944e+29 -5.3801017e+29 -5.3869848e+29 -5.4028047e+29 -5.3955173e+29 -5.3941149e+29 -5.4013615e+29 -5.4000788e+29 -5.3928647e+29 -5.3918162e+29 -5.3990043e+29 -5.3779944e+29 -5.3789424e+29 -5.3857738e+29 -5.3847825e+29 -5.3839602e+29 -5.3771847e+29 -5.3766225e+29 -5.383359e+29 -5.3981282e+29 -5.3909635e+29 -5.3903284e+29 -5.3974137e+29 -5.3967594e+29 -5.3897524e+29 -5.3891594e+29 -5.3961013e+29 -5.3757434e+29 -5.376179e+29 -5.3828478e+29 -5.3823429e+29 -5.1869044e+29 -5.1783101e+29 -5.1750552e+29 -5.1568685e+29 -5.1551419e+29 -5.1850928e+29 -5.177099e+29 -5.1747973e+29 -5.1865996e+29 -5.1919156e+29 -5.1966333e+29 -5.1642861e+29 -5.1602127e+29 -5.1914359e+29 -5.1825247e+29 -5.1806923e+29 -5.2059351e+29 -5.1987819e+29 -5.1933375e+29 -5.1916806e+29 -5.1887706e+29 -5.1846725e+29 -5.1846614e+29 -5.1882485e+29 -5.2258634e+29 -5.2227368e+29 -5.2223934e+29 -5.2244867e+29 -5.2309667e+29 -5.228547e+29 -5.2417459e+29 -5.2360686e+29 -5.2208835e+29 -5.2208071e+29 -5.2228171e+29 -5.2266418e+29 -5.2199078e+29 -5.2209832e+29 -5.2241152e+29 -5.2209834e+29 -5.1728077e+29 -5.1763635e+29 -5.1829134e+29 -5.1875177e+29 -5.1730619e+29 -5.1715742e+29 -5.1814908e+29 -5.1836716e+29 -5.1735539e+29 -5.1840768e+29 -5.1836863e+29 -5.1738344e+29 -5.1760965e+29 -5.1804446e+29 -5.192023e+29 -5.1862424e+29 -5.1827163e+29 -5.1857825e+29 -5.1836076e+29 -5.1818193e+29 -5.3149305e+29 -5.3163869e+29 -5.3213535e+29 -5.3199724e+29 -5.3178727e+29 -5.3196666e+29 -5.324447e+29 -5.3227575e+29 -5.3345848e+29 -5.329413e+29 -5.3277456e+29 -5.3329308e+29 -5.3314872e+29 -5.3263495e+29 -5.3250291e+29 -5.3301559e+29 -5.3214564e+29 -5.3229299e+29 -5.3278115e+29 -5.3262839e+29 -5.3294395e+29 -5.3243596e+29 -5.3238604e+29 -5.3288199e+29 -5.3399731e+29 -5.3345641e+29 -5.3338861e+29 -5.3391684e+29 -5.3379909e+29 -5.3328009e+29 -5.3312467e+29 -5.3364103e+29 -5.3418085e+29 -5.3433887e+29 -5.3490378e+29 -5.3474378e+29 -5.3512997e+29 -5.3455145e+29 -5.3446419e+29 -5.3503512e+29 -5.3633911e+29 -5.3572544e+29 -5.3562462e+29 -5.3622847e+29 -5.360835e+29 -5.3548767e+29 -5.353232e+29 -5.359116e+29 -5.3572762e+29 -5.3514342e+29 -5.3497591e+29 -5.355622e+29 -5.345645e+29 -5.3399987e+29 -5.3383467e+29 -5.3439699e+29 -5.3354124e+29 -5.3368062e+29 -5.3423379e+29 -5.3408039e+29 -5.3538334e+29 -5.3480386e+29 -5.3463659e+29 -5.3520414e+29 -5.2822685e+29 -5.2750849e+29 -5.2848966e+29 -5.2712278e+29 -5.294627e+29 -5.2983395e+29 -5.3002558e+29 -5.2996787e+29 -5.2972791e+29 -5.2927284e+29 -5.2758153e+29 -5.267091e+29 -5.2787419e+29 -5.264263e+29 -5.2900261e+29 -5.2952021e+29 -5.298126e+29 -5.2959007e+29 -5.2928031e+29 -5.2872195e+29 -5.2817664e+29 -5.2871692e+29 -5.2904783e+29 -5.2889518e+29 -5.2858859e+29 -5.2811899e+29 -5.2711476e+29 -5.2615508e+29 -5.2732281e+29 -5.2590328e+29 -5.2847625e+29 -5.2904332e+29 -5.2939287e+29 -5.2920306e+29 -5.2885368e+29 -5.28275e+29 -5.2702653e+29 -5.2584076e+29 -5.2702703e+29 -5.2591786e+29 -5.3047362e+29 -5.3094881e+29 -5.3091547e+29 -5.3043432e+29 -5.3031115e+29 -5.3081207e+29 -5.3063974e+29 -5.3011473e+29 -5.3139557e+29 -5.3143443e+29 -5.3193091e+29 -5.3188912e+29 -5.3114812e+29 -5.3130571e+29 -5.3180114e+29 -5.3165217e+29 -5.307807e+29 -5.3097422e+29 -5.3147438e+29 -5.3128308e+29 -5.2992872e+29 -5.3046052e+29 -5.3026771e+29 -5.297358e+29 -5.2956398e+29 -5.3008952e+29 -5.29937e+29 -5.2941071e+29 -5.3045668e+29 -5.3061006e+29 -5.3112919e+29 -5.3097794e+29 -5.2688357e+29 -5.2589668e+29 -5.2698951e+29 -5.2570694e+29 -5.2805514e+29 -5.2853136e+29 -5.2882181e+29 -5.2871793e+29 -5.2842647e+29 -5.2795714e+29 -5.278897e+29 -5.2831806e+29 -5.2859925e+29 -5.2849629e+29 -5.2819679e+29 -5.278063e+29 -5.2677432e+29 -5.2560857e+29 -5.2680549e+29 -5.2562007e+29 -5.3020082e+29 -5.3033251e+29 -5.3083744e+29 -5.3069902e+29 -5.293193e+29 -5.2982786e+29 -5.2970588e+29 -5.2920653e+29 -5.2908749e+29 -5.2958878e+29 -5.2950172e+29 -5.2899427e+29 -5.3000765e+29 -5.3009196e+29 -5.3060388e+29 -5.3052524e+29 -5.2673375e+29 -5.2561008e+29 -5.2559885e+29 -5.267339e+29 -5.2854039e+29 -5.282615e+29 -5.2777769e+29 -5.2821958e+29 -5.2780601e+29 -5.2850371e+29 -5.2788535e+29 -5.2829549e+29 -5.282774e+29 -5.2793168e+29 -5.2853844e+29 -5.2849619e+29 -5.2697582e+29 -5.2576135e+29 -5.2684644e+29 -5.2600585e+29 -5.2895015e+29 -5.2898726e+29 -5.2945129e+29 -5.294175e+29 -5.2898896e+29 -5.2948157e+29 -5.294781e+29 -5.2900525e+29 -5.2995107e+29 -5.2997458e+29 -5.3047913e+29 -5.3044418e+29 -5.2989172e+29 -5.2992339e+29 -5.3041253e+29 -5.3037858e+29 -5.3503921e+29 -5.3448183e+29 -5.3438464e+29 -5.3493575e+29 -5.33935e+29 -5.3340834e+29 -5.3331746e+29 -5.3384099e+29 -5.3317046e+29 -5.3323914e+29 -5.3376362e+29 -5.3369983e+29 -5.348587e+29 -5.3430702e+29 -5.3423623e+29 -5.3478135e+29 -5.32887e+29 -5.3237302e+29 -5.3226545e+29 -5.3279222e+29 -5.3186199e+29 -5.3134996e+29 -5.3121769e+29 -5.3174024e+29 -5.3104916e+29 -5.3112383e+29 -5.3164847e+29 -5.3157589e+29 -5.3271058e+29 -5.3217773e+29 -5.3210616e+29 -5.3263995e+29 -5.3469546e+29 -5.3415431e+29 -5.34109e+29 -5.3465161e+29 -5.3362283e+29 -5.3309756e+29 -5.3304801e+29 -5.3357073e+29 -5.3293418e+29 -5.3299466e+29 -5.3352097e+29 -5.3347325e+29 -5.3462207e+29 -5.3406798e+29 -5.3402455e+29 -5.3458516e+29 -5.3257153e+29 -5.3204194e+29 -5.3199106e+29 -5.3251982e+29 -5.3095163e+29 -5.3099385e+29 -5.3151496e+29 -5.31468e+29 -5.3087416e+29 -5.3091396e+29 -5.3142314e+29 -5.3137381e+29 -5.3246674e+29 -5.3194016e+29 -5.3188134e+29 -5.3240353e+29 -5.2992376e+29 -5.3009384e+29 -5.3053271e+29 -5.3036787e+29 -5.3023198e+29 -5.3036622e+29 -5.3081103e+29 -5.3066726e+29 -5.3176935e+29 -5.31277e+29 -5.3112729e+29 -5.3161515e+29 -5.3146989e+29 -5.3098841e+29 -5.3082782e+29 -5.3130934e+29 -5.3052465e+29 -5.3066093e+29 -5.31123e+29 -5.3097884e+29 -5.3130326e+29 -5.3081892e+29 -5.3075827e+29 -5.3123126e+29 -5.3231456e+29 -5.3179552e+29 -5.3171686e+29 -5.3222402e+29 -5.3209877e+29 -5.3160006e+29 -5.3144941e+29 -5.3194387e+29 -5.3181574e+29 -5.3198034e+29 -5.3252021e+29 -5.3234827e+29 -5.328379e+29 -5.3229046e+29 -5.3213462e+29 -5.3268056e+29 -5.3398841e+29 -5.334053e+29 -5.3325022e+29 -5.3383186e+29 -5.3366282e+29 -5.330846e+29 -5.3290427e+29 -5.3347708e+29 -5.3246417e+29 -5.3261931e+29 -5.3316405e+29 -5.3300902e+29 -5.3339154e+29 -5.3284555e+29 -5.3275053e+29 -5.3329629e+29 -5.3451908e+29 -5.3395004e+29 -5.3385886e+29 -5.3443125e+29 -5.3430441e+29 -5.3372863e+29 -5.3357429e+29 -5.341533e+29 -5.2161228e+29 -5.2178233e+29 -5.2162573e+29 -5.218141e+29 -5.2596085e+29 -5.2489222e+29 -5.2597052e+29 -5.2495204e+29 -5.250791e+29 -5.261592e+29 -5.2492258e+29 -5.2602358e+29 -5.2756643e+29 -5.2709125e+29 -5.2769366e+29 -5.2802952e+29 -5.2721754e+29 -5.2791009e+29 -5.2747253e+29 -5.277918e+29 -5.2702105e+29 -5.2765376e+29 -5.2737916e+29 -5.2696154e+29 -5.2272452e+29 -5.2231963e+29 -5.2191879e+29 -5.220061e+29 -5.2540451e+29 -5.2650707e+29 -5.2631702e+29 -5.2523272e+29 -5.2595833e+29 -5.2568225e+29 -5.2694576e+29 -5.2674595e+29 -5.2816911e+29 -5.2775319e+29 -5.2827053e+29 -5.2849933e+29 -5.2790464e+29 -5.2844682e+29 -5.280171e+29 -5.2832501e+29 -5.2756054e+29 -5.27846e+29 -5.2736687e+29 -5.2816332e+29 -5.2865355e+29 -5.2879851e+29 -5.2926631e+29 -5.2913436e+29 -5.2939821e+29 -5.2894329e+29 -5.2890242e+29 -5.2935875e+29 -5.298179e+29 -5.2985767e+29 -5.3033405e+29 -5.3028589e+29 -5.2960362e+29 -5.2973094e+29 -5.301967e+29 -5.3006608e+29 -5.2933743e+29 -5.2946336e+29 -5.2991147e+29 -5.2978803e+29 -5.29003e+29 -5.2852232e+29 -5.2839894e+29 -5.2887476e+29 -5.282684e+29 -5.2873562e+29 -5.2857588e+29 -5.2811778e+29 -5.2902444e+29 -5.2919482e+29 -5.2964813e+29 -5.2947562e+29 -5.2386914e+29 -5.2401675e+29 -5.2591202e+29 -5.263353e+29 -5.2553688e+29 -5.2599781e+29 -5.2581502e+29 -5.2613451e+29 -5.266329e+29 -5.2639577e+29 -5.255135e+29 -5.2616277e+29 -5.2156051e+29 -5.2174151e+29 -5.2298776e+29 -5.2191923e+29 -5.2494538e+29 -5.2586715e+29 -5.2610707e+29 -5.2549584e+29 -5.2490253e+29 -5.2479367e+29 -5.2590177e+29 -5.2582363e+29 -5.2714805e+29 -5.268149e+29 -5.2727733e+29 -5.2752599e+29 -5.2689575e+29 -5.2735533e+29 -5.2698807e+29 -5.2711005e+29 -5.2677025e+29 -5.2674898e+29 -5.2674792e+29 -5.2670997e+29 -5.2705559e+29 -5.2749094e+29 -5.2787031e+29 -5.2742085e+29 -5.2777555e+29 -5.2797114e+29 -5.2840782e+29 -5.2818593e+29 -5.2859402e+29 -5.2884024e+29 -5.2927584e+29 -5.2901013e+29 -5.2778027e+29 -5.2825044e+29 -5.2864438e+29 -5.2815652e+29 -5.2682638e+29 -5.2718346e+29 -5.2754219e+29 -5.264727e+29 -5.2581463e+29 -5.2648553e+29 -5.2684221e+29 -5.2615069e+29 -5.2793636e+29 -5.2838786e+29 -5.2773511e+29 -5.2724271e+29 -5.2938665e+29 -5.2886821e+29 -5.2825316e+29 -5.2879493e+29 -5.2898602e+29 -5.2905396e+29 -5.2948384e+29 -5.2855468e+29 -5.3015797e+29 -5.2971456e+29 -5.2943507e+29 -5.2987213e+29 -5.3109563e+29 -5.3061592e+29 -5.3032831e+29 -5.308103e+29 -5.3042352e+29 -5.2993772e+29 -5.2944405e+29 -5.2994139e+29 -5.3046554e+29 -5.2991548e+29 -5.2933726e+29 -5.2989074e+29 -5.316074e+29 -5.3102436e+29 -5.304519e+29 -5.3102502e+29 -5.3045859e+29 -5.3093414e+29 -5.3147046e+29 -5.3100189e+29 -5.3212955e+29 -5.3159861e+29 -5.3131772e+29 -5.3184916e+29 -5.3325239e+29 -5.3268195e+29 -5.3240445e+29 -5.3297502e+29 -5.3260465e+29 -5.3202872e+29 -5.3155969e+29 -5.321428e+29 -5.2149051e+29 -5.2118321e+29 -5.2087246e+29 -5.2062933e+29 -4.6888097e+29 -4.6919153e+29 -4.7111338e+29 -4.9039002e+29 -4.7131082e+29 -4.9020871e+29 -5.1156524e+29 -5.3031673e+29 -5.3062436e+29 -5.3505075e+29 -5.3472432e+29 -5.3204491e+29 -5.2765404e+29 -5.2771438e+29 -5.3205311e+29 -5.3106923e+29 -5.3088194e+29 -5.353314e+29 -5.3554226e+29 -5.2750371e+29 -5.3203848e+29 -5.3205198e+29 -5.2758667e+29 -5.3537937e+29 -5.3545802e+29 -5.384301e+29 -5.3828257e+29 -5.3533249e+29 -5.353384e+29 -5.3816988e+29 -5.3818443e+29 -5.4082432e+29 -5.3842626e+29 -5.3808144e+29 -5.4045384e+29 -5.3896363e+29 -5.4141122e+29 -5.4115169e+29 -5.387261e+29 -5.2474357e+29 -5.104729e+29 -5.2520235e+29 -5.2542134e+29 -5.3293561e+29 -5.3263337e+29 -5.2603444e+29 -5.3357404e+29 -5.3327281e+29 -5.2571173e+29 -5.1809355e+29 -5.1796282e+29 -5.1835773e+29 -5.1868435e+29 -5.2740791e+29 -5.3203499e+29 -5.3203104e+29 -5.2744247e+29 -5.2750978e+29 -5.3221343e+29 -5.3209711e+29 -5.2743192e+29 -5.358059e+29 -5.3562601e+29 -5.3872735e+29 -5.389493e+29 -5.3553699e+29 -5.354971e+29 -5.3851795e+29 -5.3860632e+29 -5.2251195e+29 -5.2219082e+29 -5.2193433e+29 -5.2194911e+29 -5.2972722e+29 -5.2537522e+29 -5.2509354e+29 -5.2940759e+29 -5.2999274e+29 -5.3022254e+29 -5.2594775e+29 -5.2567339e+29 -5.5051073e+29 -5.5273318e+29 -5.529245e+29 -5.5068529e+29 -5.5327523e+29 -5.5101e+29 -5.5085345e+29 -5.5310413e+29 -5.5516945e+29 -5.5535076e+29 -5.5735963e+29 -5.5757145e+29 -5.5496657e+29 -5.5714987e+29 -5.5699954e+29 -5.5479902e+29 -5.4133853e+29 -5.4375135e+29 -5.4362686e+29 -5.412237e+29 -5.4412786e+29 -5.4172528e+29 -5.414803e+29 -5.4391076e+29 -5.4609295e+29 -5.4628489e+29 -5.4861243e+29 -5.4844623e+29 -5.4593267e+29 -5.482818e+29 -5.4813345e+29 -5.4579662e+29 -5.4348322e+29 -5.4110868e+29 -5.4091308e+29 -5.4326738e+29 -5.4073662e+29 -5.4078479e+29 -5.4310393e+29 -5.4299055e+29 -5.4521286e+29 -5.4749493e+29 -5.4729187e+29 -5.4505617e+29 -5.4795659e+29 -5.4563589e+29 -5.4539898e+29 -5.4770763e+29 -5.5257708e+29 -5.5007615e+29 -5.5031486e+29 -5.5234357e+29 -5.5465005e+29 -5.5683359e+29 -5.5658094e+29 -5.5442614e+29 -5.5632049e+29 -5.5418354e+29 -5.5387764e+29 -5.5600042e+29 -5.4984674e+29 -5.4960739e+29 -5.5181766e+29 -5.5209759e+29 -5.4289876e+29 -5.4446043e+29 -5.4399225e+29 -5.4248839e+29 -5.4524693e+29 -5.4358514e+29 -5.4487399e+29 -5.4326554e+29 -5.4644454e+29 -5.4686575e+29 -5.4815298e+29 -5.4793242e+29 -5.4917804e+29 -5.4941298e+29 -5.4770716e+29 -5.4893997e+29 -5.4871034e+29 -5.4749148e+29 -5.4600121e+29 -5.4786452e+29 -5.4670818e+29 -5.4641493e+29 -5.4756282e+29 -5.472639e+29 -5.4847141e+29 -5.4816362e+29 -5.4698549e+29 -5.4546518e+29 -5.497983e+29 -5.510034e+29 -5.5004726e+29 -5.5074488e+29 -5.5281374e+29 -5.5190865e+29 -5.5164117e+29 -5.525441e+29 -5.5215296e+29 -5.5240344e+29 -5.5331434e+29 -5.530607e+29 -5.5053492e+29 -5.5149722e+29 -5.5124926e+29 -5.5028915e+29 -5.5421007e+29 -5.5394542e+29 -5.5484215e+29 -5.5511115e+29 -5.5574196e+29 -5.5601365e+29 -5.5696503e+29 -5.5669179e+29 -5.5520442e+29 -5.5548768e+29 -5.5614632e+29 -5.5643023e+29 -5.5370117e+29 -5.5459174e+29 -5.5431074e+29 -5.5342711e+29 -5.5212044e+29 -5.5244842e+29 -5.5332314e+29 -5.5298974e+29 -5.5278179e+29 -5.5315274e+29 -5.5403412e+29 -5.5365905e+29 -5.5454074e+29 -5.5492067e+29 -5.5548043e+29 -5.5586121e+29 -5.5420043e+29 -5.5386295e+29 -5.547989e+29 -5.5513904e+29 -5.5049197e+29 -5.4955444e+29 -5.4921842e+29 -5.5014518e+29 -5.5137788e+29 -5.5102292e+29 -5.5190656e+29 -5.5227226e+29 -5.5038968e+29 -5.5070287e+29 -5.5158048e+29 -5.5126524e+29 -5.4891146e+29 -5.4982823e+29 -5.4951635e+29 -5.486027e+29 -5.5992945e+29 -5.5982608e+29 -5.6095217e+29 -5.6106095e+29 -5.6203915e+29 -5.6305858e+29 -5.629318e+29 -5.6192154e+29 -5.6181853e+29 -5.6170452e+29 -5.6270055e+29 -5.6281627e+29 -5.5973121e+29 -5.6085311e+29 -5.6074047e+29 -5.5961749e+29 -5.595075e+29 -5.593677e+29 -5.6049472e+29 -5.6063005e+29 -5.615965e+29 -5.624533e+29 -5.6259775e+29 -5.6145561e+29 -5.6135108e+29 -5.6126652e+29 -5.6225896e+29 -5.6234363e+29 -5.5927703e+29 -5.6039301e+29 -5.6031416e+29 -5.5921414e+29 -5.635381e+29 -5.6339701e+29 -5.6441227e+29 -5.6454944e+29 -5.6557579e+29 -5.6668624e+29 -5.6654344e+29 -5.6543522e+29 -5.6532645e+29 -5.6643224e+29 -5.6633617e+29 -5.6523048e+29 -5.632831e+29 -5.631911e+29 -5.6420119e+29 -5.6429695e+29 -5.6402054e+29 -5.6505473e+29 -5.6491628e+29 -5.6388706e+29 -5.6375688e+29 -5.6477779e+29 -5.6464536e+29 -5.6363186e+29 -5.6693646e+29 -5.6581586e+29 -5.6567878e+29 -5.6679563e+29 -5.6610122e+29 -5.6595414e+29 -5.6707763e+29 -5.67229e+29 -5.5892532e+29 -5.5984395e+29 -5.5999802e+29 -5.5878732e+29 -5.5915602e+29 -5.6013129e+29 -5.6024897e+29 -5.5904272e+29 -5.6106546e+29 -5.6119907e+29 -5.6204789e+29 -5.6219275e+29 -5.6092373e+29 -5.6075726e+29 -5.6172433e+29 -5.6189575e+29 -5.6515243e+29 -5.6499967e+29 -5.6608983e+29 -5.6624908e+29 -5.6312562e+29 -5.6398674e+29 -5.6413173e+29 -5.6297969e+29 -5.6282348e+29 -5.6382441e+29 -5.6363472e+29 -5.6264526e+29 -5.6483464e+29 -5.6463663e+29 -5.6571378e+29 -5.6592152e+29 -5.6249084e+29 -5.622968e+29 -5.6326928e+29 -5.6346981e+29 -5.6445753e+29 -5.6552268e+29 -5.6529465e+29 -5.6424358e+29 -5.640736e+29 -5.6389522e+29 -5.6493647e+29 -5.6511209e+29 -5.6214236e+29 -5.6310451e+29 -5.629211e+29 -5.6196395e+29 -5.5864715e+29 -5.5969736e+29 -5.5953452e+29 -5.5848916e+29 -5.5819219e+29 -5.5835812e+29 -5.594037e+29 -5.5924012e+29 -5.6014081e+29 -5.6030228e+29 -5.6107551e+29 -5.6124067e+29 -5.6060986e+29 -5.6043355e+29 -5.6138398e+29 -5.6157208e+29 -5.6102241e+29 -5.5991016e+29 -5.6016835e+29 -5.6076908e+29 -5.5744248e+29 -5.5877393e+29 -5.5847897e+29 -5.5715256e+29 -5.5797584e+29 -5.5931109e+29 -5.5905497e+29 -5.5771344e+29 -5.6049926e+29 -5.5963416e+29 -5.5933112e+29 -5.6019561e+29 -5.5685836e+29 -5.5783773e+29 -5.5818207e+29 -5.5649344e+29 -5.5613276e+29 -5.5749106e+29 -5.5714392e+29 -5.5577423e+29 -5.5801112e+29 -5.5835442e+29 -5.5921937e+29 -5.5888139e+29 -5.5903329e+29 -5.5989401e+29 -5.5955161e+29 -5.5868936e+29 -5.6266677e+29 -5.623315e+29 -5.6333557e+29 -5.6366209e+29 -5.6134882e+29 -5.616886e+29 -5.6077276e+29 -5.6043094e+29 -5.5976207e+29 -5.6010211e+29 -5.6101627e+29 -5.606708e+29 -5.6199909e+29 -5.6164442e+29 -5.6262934e+29 -5.6299822e+29 -5.6164228e+29 -5.6188985e+29 -5.6280371e+29 -5.6255742e+29 -5.6354418e+29 -5.6379645e+29 -5.6455092e+29 -5.6480777e+29 -5.6327601e+29 -5.6427402e+29 -5.6396972e+29 -5.62975e+29 -5.6137658e+29 -5.6107756e+29 -5.6199386e+29 -5.6229158e+29 -5.1341306e+29 -5.1291282e+29 -5.1221857e+29 -5.4572218e+29 -5.4014885e+29 -5.4003787e+29 -5.4557046e+29 -5.5593743e+29 -5.5067382e+29 -5.5049446e+29 -5.5562859e+29 -5.6678547e+29 -5.692115e+29 -5.6958051e+29 -5.6651139e+29 -5.6892566e+29 -5.6866635e+29 -5.6622325e+29 -5.6396015e+29 -5.6425041e+29 -5.6161357e+29 -5.6123172e+29 -5.6352202e+29 -5.6372551e+29 -5.6140667e+29 -5.6574546e+29 -5.6596681e+29 -5.6842442e+29 -5.6816526e+29 -5.6557217e+29 -5.6794979e+29 -5.6772358e+29 -5.65355e+29 -5.6109364e+29 -5.609243e+29 -5.6316196e+29 -5.6336491e+29 -5.4189641e+29 -5.4200235e+29 -5.4437691e+29 -5.4427747e+29 -5.4648264e+29 -5.4873086e+29 -5.4868288e+29 -5.46376e+29 -5.4891798e+29 -5.4679408e+29 -5.4662781e+29 -5.4881879e+29 -5.4470605e+29 -5.4234698e+29 -5.4214992e+29 -5.4452753e+29 -5.5140832e+29 -5.5340505e+29 -5.5356606e+29 -5.5121544e+29 -5.5407402e+29 -5.5186405e+29 -5.5163512e+29 -5.5380111e+29 -5.5587954e+29 -5.5616227e+29 -5.581359e+29 -5.5843423e+29 -5.5564795e+29 -5.5789844e+29 -5.5774917e+29 -5.554889e+29 -5.468654e+29 -5.4701052e+29 -5.491637e+29 -5.4899588e+29 -5.4721691e+29 -5.4738635e+29 -5.4957638e+29 -5.4938325e+29 -5.4284012e+29 -5.4302225e+29 -5.4532844e+29 -5.4516071e+29 -5.4264449e+29 -5.4495757e+29 -5.4481672e+29 -5.4248029e+29 -5.5546045e+29 -5.5545416e+29 -5.5771242e+29 -5.5770807e+29 -5.5332552e+29 -5.5110578e+29 -5.5107944e+29 -5.5331831e+29 -5.5105749e+29 -5.5106733e+29 -5.5332857e+29 -5.5332907e+29 -5.5546343e+29 -5.577114e+29 -5.5769066e+29 -5.5544681e+29 -5.5998423e+29 -5.6113551e+29 -5.6119362e+29 -5.5993399e+29 -5.6023016e+29 -5.6129364e+29 -5.6143324e+29 -5.6008029e+29 -5.6233284e+29 -5.6247884e+29 -5.6356291e+29 -5.634163e+29 -5.6223685e+29 -5.6332023e+29 -5.6325806e+29 -5.6217329e+29 -5.6469249e+29 -5.6590775e+29 -5.6483421e+29 -5.6576874e+29 -5.6622842e+29 -5.6514877e+29 -5.649764e+29 -5.6605649e+29 -5.6713401e+29 -5.6730899e+29 -5.6830102e+29 -5.6847812e+29 -5.6698003e+29 -5.6685109e+29 -5.6802075e+29 -5.6814571e+29 -5.6064218e+29 -5.6079781e+29 -5.6199345e+29 -5.6183892e+29 -5.6287883e+29 -5.6303956e+29 -5.6412687e+29 -5.6395974e+29 -5.6382117e+29 -5.6274432e+29 -5.626026e+29 -5.6368156e+29 -5.6050523e+29 -5.6170368e+29 -5.6155903e+29 -5.6035659e+29 -5.6444194e+29 -5.6458232e+29 -5.6566847e+29 -5.6554173e+29 -5.666387e+29 -5.6675934e+29 -5.6782068e+29 -5.6793406e+29 -5.6648913e+29 -5.6655506e+29 -5.676734e+29 -5.6773795e+29 -5.6434866e+29 -5.654504e+29 -5.6538102e+29 -5.6428387e+29 -5.5992441e+29 -5.5992765e+29 -5.6110608e+29 -5.6111805e+29 -5.6215412e+29 -5.6323268e+29 -5.6319358e+29 -5.6212646e+29 -5.6213301e+29 -5.6216089e+29 -5.6319922e+29 -5.631838e+29 -5.5995774e+29 -5.6112295e+29 -5.6116166e+29 -5.6000636e+29 -5.6002211e+29 -5.6111703e+29 -5.611561e+29 -5.5998628e+29 -5.6004208e+29 -5.6118233e+29 -5.6118685e+29 -5.6003918e+29 -5.6216084e+29 -5.6217982e+29 -5.6318984e+29 -5.6321674e+29 -5.6213168e+29 -5.6315546e+29 -5.6311363e+29 -5.6208946e+29 -5.6419538e+29 -5.6416773e+29 -5.6524804e+29 -5.652215e+29 -5.6627783e+29 -5.6631281e+29 -5.6741762e+29 -5.6746319e+29 -5.6618103e+29 -5.662384e+29 -5.6730971e+29 -5.6737054e+29 -5.6413214e+29 -5.6518233e+29 -5.6512644e+29 -5.6408465e+29 -5.6425133e+29 -5.6534247e+29 -5.6528775e+29 -5.6420311e+29 -5.6417575e+29 -5.6524891e+29 -5.6523809e+29 -5.6417742e+29 -5.6747833e+29 -5.6750666e+29 -5.6633484e+29 -5.6631544e+29 -5.664448e+29 -5.6637841e+29 -5.6755609e+29 -5.6762882e+29 -5.6731223e+29 -5.6833224e+29 -5.6817778e+29 -5.6716132e+29 -5.6698955e+29 -5.680001e+29 -5.6779095e+29 -5.6678553e+29 -5.6883605e+29 -5.6904881e+29 -5.701383e+29 -5.6992482e+29 -5.7048958e+29 -5.6938947e+29 -5.6922556e+29 -5.7031934e+29 -5.7357787e+29 -5.7375154e+29 -5.7475272e+29 -5.7492507e+29 -5.7261577e+29 -5.7153943e+29 -5.7136908e+29 -5.7244437e+29 -5.7096571e+29 -5.7118196e+29 -5.7224874e+29 -5.7202547e+29 -5.7337557e+29 -5.7314554e+29 -5.7431132e+29 -5.7454514e+29 -5.7074797e+29 -5.7050835e+29 -5.7156616e+29 -5.7180252e+29 -5.7291613e+29 -5.7407674e+29 -5.7383139e+29 -5.7267618e+29 -5.7246077e+29 -5.7225915e+29 -5.7340886e+29 -5.7361005e+29 -5.7029525e+29 -5.7135088e+29 -5.7114334e+29 -5.700857e+29 -5.6658078e+29 -5.67363e+29 -5.6757988e+29 -5.6636552e+29 -5.6616506e+29 -5.6715412e+29 -5.6695347e+29 -5.6597044e+29 -5.679766e+29 -5.6818389e+29 -5.6904972e+29 -5.6925743e+29 -5.6862415e+29 -5.6839452e+29 -5.6946785e+29 -5.6970823e+29 -5.7597544e+29 -5.7580395e+29 -5.7682814e+29 -5.7700115e+29 -5.7559722e+29 -5.7662256e+29 -5.7638831e+29 -5.7536423e+29 -5.7512395e+29 -5.7591041e+29 -5.7614191e+29 -5.7488722e+29 -5.746616e+29 -5.7567982e+29 -5.7545287e+29 -5.7444216e+29 -5.6832636e+29 -5.6924314e+29 -5.6938097e+29 -5.6818942e+29 -5.6805054e+29 -5.6910275e+29 -5.6896522e+29 -5.6791136e+29 -5.7005608e+29 -5.7020106e+29 -5.7118685e+29 -5.7133638e+29 -5.7047699e+29 -5.7147923e+29 -5.7161345e+29 -5.7033866e+29 -5.7269363e+29 -5.7256122e+29 -5.7366357e+29 -5.7379833e+29 -5.7496679e+29 -5.7618402e+29 -5.7603984e+29 -5.7482809e+29 -5.7468013e+29 -5.7588186e+29 -5.757092e+29 -5.7451277e+29 -5.7241981e+29 -5.7226575e+29 -5.7336103e+29 -5.7352063e+29 -5.7435989e+29 -5.7419608e+29 -5.7537187e+29 -5.7554043e+29 -5.7304675e+29 -5.7321151e+29 -5.7212017e+29 -5.7195541e+29 -5.718092e+29 -5.7166708e+29 -5.7274417e+29 -5.7288948e+29 -5.7403163e+29 -5.7387851e+29 -5.7505728e+29 -5.752126e+29 -5.6778552e+29 -5.688329e+29 -5.6869917e+29 -5.6765205e+29 -5.6951574e+29 -5.6964776e+29 -5.707486e+29 -5.7061307e+29 -5.6992247e+29 -5.6977613e+29 -5.7088441e+29 -5.7104618e+29 -5.6753171e+29 -5.6857139e+29 -5.6845531e+29 -5.6742604e+29 -5.7660887e+29 -5.7643402e+29 -5.7746899e+29 -5.7764779e+29 -5.7627981e+29 -5.7731421e+29 -5.7716013e+29 -5.7612343e+29 -5.7820145e+29 -5.7834139e+29 -5.772737e+29 -5.7713276e+29 -5.7784153e+29 -5.7803194e+29 -5.7696819e+29 -5.767953e+29 -5.6507458e+29 -5.6566672e+29 -5.6608096e+29 -5.6466131e+29 -5.664577e+29 -5.6680317e+29 -5.6580258e+29 -5.6545318e+29 -5.6322917e+29 -5.6288269e+29 -5.6382794e+29 -5.6418345e+29 -5.6218664e+29 -5.6253688e+29 -5.6313053e+29 -5.6348095e+29 -5.6520042e+29 -5.6482596e+29 -5.6588422e+29 -5.6626758e+29 -5.6447443e+29 -5.6516605e+29 -5.6552195e+29 -5.6411911e+29 -5.6727298e+29 -5.6687985e+29 -5.6790874e+29 -5.6831138e+29 -5.6939896e+29 -5.7052789e+29 -5.7011606e+29 -5.6899044e+29 -5.6858724e+29 -5.6820459e+29 -5.6929926e+29 -5.6969623e+29 -5.6650549e+29 -5.6752e+29 -5.6714917e+29 -5.6614492e+29 -5.6184072e+29 -5.6279363e+29 -5.6243047e+29 -5.6146842e+29 -5.6107153e+29 -5.6203752e+29 -5.6161378e+29 -5.6064676e+29 -5.6303888e+29 -5.6262085e+29 -5.6367583e+29 -5.6408873e+29 -5.6377824e+29 -5.6482388e+29 -5.6447077e+29 -5.6342248e+29 -5.6577776e+29 -5.6675432e+29 -5.6649692e+29 -5.6552557e+29 -5.6524251e+29 -5.6621021e+29 -5.6592064e+29 -5.649512e+29 -5.6692416e+29 -5.6723136e+29 -5.6798664e+29 -5.6830086e+29 -5.6777437e+29 -5.6751622e+29 -5.6859156e+29 -5.6885256e+29 -5.6986607e+29 -5.6959933e+29 -5.7064333e+29 -5.7091686e+29 -5.7203007e+29 -5.7289596e+29 -5.7318644e+29 -5.7174563e+29 -5.7143078e+29 -5.7109409e+29 -5.7223492e+29 -5.7256963e+29 -5.6930324e+29 -5.7033801e+29 -5.7001307e+29 -5.6898598e+29 -5.680121e+29 -5.6867864e+29 -5.6903633e+29 -5.6764819e+29 -5.6937864e+29 -5.6969522e+29 -5.6867744e+29 -5.683566e+29 -5.7045342e+29 -5.7077005e+29 -5.7191206e+29 -5.7157517e+29 -5.7011484e+29 -5.7123937e+29 -5.7088459e+29 -5.6975741e+29 -5.6464698e+29 -5.6561661e+29 -5.6528703e+29 -5.6431649e+29 -5.6397001e+29 -5.649361e+29 -5.6455376e+29 -5.6359345e+29 -5.6594597e+29 -5.6664278e+29 -5.6701199e+29 -5.6556826e+29 -5.6662187e+29 -5.6768385e+29 -5.6735926e+29 -5.66294e+29 -5.7419591e+29 -5.7771077e+29 -5.7646247e+29 -5.7629192e+29 -5.7754027e+29 -5.7738284e+29 -5.7613589e+29 -5.7595778e+29 -5.772022e+29 -5.7876455e+29 -5.8011047e+29 -5.8030107e+29 -5.7894599e+29 -5.7860288e+29 -5.7843226e+29 -5.7977412e+29 -5.7994022e+29 -5.735487e+29 -5.7372736e+29 -5.7480557e+29 -5.7497827e+29 -5.7388393e+29 -5.7405266e+29 -5.7513438e+29 -5.7530162e+29 -5.7156994e+29 -5.7173698e+29 -5.7290573e+29 -5.7274234e+29 -5.7139229e+29 -5.7257776e+29 -5.7238584e+29 -5.7119677e+29 -5.7074565e+29 -5.7193181e+29 -5.7180812e+29 -5.7062508e+29 -5.7105107e+29 -5.7223626e+29 -5.7207087e+29 -5.7088016e+29 -5.7321476e+29 -5.7339505e+29 -5.7446676e+29 -5.7465651e+29 -5.7307756e+29 -5.7295435e+29 -5.7420946e+29 -5.743302e+29 -5.7563034e+29 -5.7581538e+29 -5.7706453e+29 -5.7689217e+29 -5.7812849e+29 -5.7829857e+29 -5.7964367e+29 -5.7947947e+29 -5.7934745e+29 -5.7799548e+29 -5.7786898e+29 -5.7922203e+29 -5.7549307e+29 -5.7675356e+29 -5.7662535e+29 -5.7537114e+29 -5.7054472e+29 -5.7160496e+29 -5.7172692e+29 -5.7041804e+29 -5.714852e+29 -5.7030564e+29 -5.7018376e+29 -5.7134721e+29 -5.7248191e+29 -5.7262636e+29 -5.7372329e+29 -5.738736e+29 -5.728747e+29 -5.7400316e+29 -5.7413105e+29 -5.7274634e+29 -5.7528562e+29 -5.7515148e+29 -5.7639342e+29 -5.7653205e+29 -5.7776924e+29 -5.7911896e+29 -5.7895642e+29 -5.7761751e+29 -5.7747125e+29 -5.7879668e+29 -5.7861274e+29 -5.7729508e+29 -5.7501765e+29 -5.7486138e+29 -5.7608491e+29 -5.7625402e+29 -5.7715368e+29 -5.7698277e+29 -5.7828179e+29 -5.7845567e+29 -5.7577706e+29 -5.7594812e+29 -5.7472662e+29 -5.7455204e+29 -5.7440489e+29 -5.7426658e+29 -5.7547717e+29 -5.7562366e+29 -5.7682504e+29 -5.766746e+29 -5.7797454e+29 -5.7812875e+29 -5.7123192e+29 -5.700759e+29 -5.699329e+29 -5.7108084e+29 -5.6968297e+29 -5.7095139e+29 -5.6981585e+29 -5.7081525e+29 -5.7327065e+29 -5.7205187e+29 -5.7192004e+29 -5.7313671e+29 -5.7235441e+29 -5.721936e+29 -5.7341819e+29 -5.7358758e+29 -5.6877389e+29 -5.6870847e+29 -5.6981921e+29 -5.6988848e+29 -5.7104629e+29 -5.7097134e+29 -5.721556e+29 -5.7223755e+29 -5.7202083e+29 -5.7208722e+29 -5.7091564e+29 -5.7086118e+29 -5.6866169e+29 -5.6976653e+29 -5.6972763e+29 -5.6862757e+29 -5.7337075e+29 -5.7328239e+29 -5.7443144e+29 -5.7452303e+29 -5.7574045e+29 -5.7700512e+29 -5.7689337e+29 -5.7564022e+29 -5.75541e+29 -5.7544819e+29 -5.7668476e+29 -5.7678516e+29 -5.7319728e+29 -5.7433525e+29 -5.7425091e+29 -5.7312273e+29 -5.6859734e+29 -5.6854961e+29 -5.6962093e+29 -5.6968241e+29 -5.7080677e+29 -5.7196257e+29 -5.7187936e+29 -5.7073348e+29 -5.7065926e+29 -5.7057782e+29 -5.7170582e+29 -5.7179244e+29 -5.6849267e+29 -5.6955375e+29 -5.6947774e+29 -5.68419e+29 -5.7409364e+29 -5.7418458e+29 -5.7306258e+29 -5.7297363e+29 -5.728788e+29 -5.7399317e+29 -5.73893e+29 -5.7278205e+29 -5.7506774e+29 -5.7517156e+29 -5.7639571e+29 -5.7628942e+29 -5.7536869e+29 -5.7649933e+29 -5.7660146e+29 -5.7527165e+29 -5.77711e+29 -5.7761151e+29 -5.7868718e+29 -5.787944e+29 -5.7750564e+29 -5.7739138e+29 -5.7846213e+29 -5.7858126e+29 -5.7790834e+29 -5.7900665e+29 -5.7889946e+29 -5.778052e+29 -5.7923264e+29 -5.7813235e+29 -5.7801877e+29 -5.7911913e+29 -5.7774841e+29 -5.7788915e+29 -5.7662072e+29 -5.7648756e+29 -5.739512e+29 -5.7383275e+29 -5.7498771e+29 -5.7512066e+29 -5.7422443e+29 -5.7539253e+29 -5.7526287e+29 -5.7408501e+29 -5.7634454e+29 -5.7760988e+29 -5.7747326e+29 -5.7620457e+29 -5.6961538e+29 -5.6945444e+29 -5.7056633e+29 -5.7072068e+29 -5.7187086e+29 -5.7306887e+29 -5.7292454e+29 -5.7172394e+29 -5.7159177e+29 -5.7279301e+29 -5.7268949e+29 -5.7148371e+29 -5.6930601e+29 -5.7042551e+29 -5.7030734e+29 -5.6918508e+29 -5.6908872e+29 -5.6898689e+29 -5.7010572e+29 -5.7020919e+29 -5.7138161e+29 -5.7258654e+29 -5.724694e+29 -5.7127076e+29 -5.7118168e+29 -5.7237275e+29 -5.7230085e+29 -5.7110996e+29 -5.6890047e+29 -5.7001764e+29 -5.6994795e+29 -5.6882878e+29 -5.7361459e+29 -5.7373325e+29 -5.7477861e+29 -5.7489287e+29 -5.7610915e+29 -5.7599901e+29 -5.7726212e+29 -5.7737152e+29 -5.7708836e+29 -5.771703e+29 -5.7590224e+29 -5.7581534e+29 -5.7351279e+29 -5.7458671e+29 -5.7467611e+29 -5.7342946e+29 -5.7927094e+29 -5.8060329e+29 -5.8045027e+29 -5.7909541e+29 -5.3858323e+29 -5.3921482e+29 -5.3983747e+29 -5.3848847e+29 -5.3911901e+29 -5.3785563e+29 -5.3796937e+29 -5.3745138e+29 -5.3670062e+29 -5.3723429e+29 -5.3780845e+29 -5.3799953e+29 -5.3928879e+29 -5.398453e+29 -5.3928928e+29 -5.3873417e+29 -5.3835836e+29 -5.3855776e+29 -5.3886701e+29 -5.3829228e+29 -5.4024652e+29 -5.408181e+29 -5.4035179e+29 -5.397869e+29 -5.4071863e+29 -5.4119652e+29 -5.4161258e+29 -5.4113455e+29 -5.3966676e+29 -5.402223e+29 -5.4063586e+29 -5.4008307e+29 -5.3860131e+29 -5.3919087e+29 -5.3957425e+29 -5.3896513e+29 -5.3834029e+29 -5.3799622e+29 -5.3736181e+29 -5.3770986e+29 -5.3770102e+29 -5.3742254e+29 -5.3723672e+29 -5.3659823e+29 -5.3679229e+29 -5.3706813e+29 -5.4219184e+29 -5.4188243e+29 -5.4255359e+29 -5.4284865e+29 -5.4333394e+29 -5.4381429e+29 -5.4352634e+29 -5.4304201e+29 -5.4281512e+29 -5.4255511e+29 -5.4303711e+29 -5.4329521e+29 -5.4138624e+29 -5.4164148e+29 -5.4231543e+29 -5.4206183e+29 -5.433664e+29 -5.4407167e+29 -5.4375009e+29 -5.4307324e+29 -5.4459233e+29 -5.4422907e+29 -5.4471962e+29 -5.4511031e+29 -5.4393064e+29 -5.444003e+29 -5.4407975e+29 -5.436089e+29 -5.4313709e+29 -5.4345982e+29 -5.4280093e+29 -5.4247691e+29 -5.4692115e+29 -5.465348e+29 -5.4568919e+29 -5.4639114e+29 -5.4598491e+29 -5.4528177e+29 -5.4615599e+29 -5.4583378e+29 -5.4494141e+29 -5.4460791e+29 -5.4528219e+29 -5.4562258e+29 -5.4727849e+29 -5.4694155e+29 -5.4805679e+29 -5.4766409e+29 -5.4554907e+29 -5.4526421e+29 -5.4406638e+29 -5.4435683e+29 -5.450219e+29 -5.4473353e+29 -5.4664685e+29 -5.4635085e+29 -5.4498309e+29 -5.4605583e+29 -5.4580198e+29 -5.4474284e+29 -5.4382077e+29 -5.4446936e+29 -5.4420315e+29 -5.4355346e+29 -5.4103766e+29 -5.4162765e+29 -5.412438e+29 -5.4065816e+29 -5.4220608e+29 -5.4157545e+29 -5.4194266e+29 -5.4132852e+29 -5.427413e+29 -5.4301988e+29 -5.425981e+29 -5.4232199e+29 -5.424258e+29 -5.4200981e+29 -5.4161733e+29 -5.4203751e+29 -5.4351913e+29 -5.4451333e+29 -5.4479809e+29 -5.4384276e+29 -5.4412163e+29 -5.4324034e+29 -5.4382633e+29 -5.4421055e+29 -5.4315904e+29 -5.435349e+29 -5.4254811e+29 -5.4293096e+29 -5.4503103e+29 -5.4465856e+29 -5.4562341e+29 -5.4534135e+29 -5.4185136e+29 -5.4242146e+29 -5.4058539e+29 -5.4114364e+29 -5.417519e+29 -5.4118859e+29 -5.4341206e+29 -5.4292086e+29 -5.427391e+29 -5.421255e+29 -5.4164399e+29 -5.4225737e+29 -5.432408e+29 -5.4267393e+29 -5.4375768e+29 -5.4423928e+29 -5.4065823e+29 -5.4130133e+29 -5.4063949e+29 -5.400526e+29 -5.3999959e+29 -5.3942436e+29 -5.4198671e+29 -5.4264766e+29 -5.4133772e+29 -5.4199017e+29 -5.3814351e+29 -5.3928958e+29 -5.3999167e+29 -5.3878575e+29 -5.3934385e+29 -5.3866946e+29 -5.406565e+29 -5.4130194e+29 -5.3993945e+29 -5.4056888e+29 -5.3493539e+29 -5.3520732e+29 -5.3582608e+29 -5.3604841e+29 -5.3634815e+29 -5.3555589e+29 -5.3702109e+29 -5.3666118e+29 -5.3589562e+29 -5.3626035e+29 -5.4674911e+29 -5.4703084e+29 -5.4780852e+29 -5.475202e+29 -5.4857787e+29 -5.4934804e+29 -5.4904575e+29 -5.4828112e+29 -5.4996881e+29 -5.4920225e+29 -5.4888512e+29 -5.4965857e+29 -5.4843053e+29 -5.4763915e+29 -5.4732956e+29 -5.4811354e+29 -5.4987563e+29 -5.4951377e+29 -5.5027479e+29 -5.5064287e+29 -5.5138304e+29 -5.5062709e+29 -5.5025076e+29 -5.5102249e+29 -5.4985889e+29 -5.486767e+29 -5.4906867e+29 -5.4947544e+29 -5.4830011e+29 -5.491003e+29 -5.4874336e+29 -5.479463e+29 -5.5106179e+29 -5.5143501e+29 -5.5223334e+29 -5.5186094e+29 -5.5294511e+29 -5.5215812e+29 -5.5180956e+29 -5.5260023e+29 -5.5459828e+29 -5.5343227e+29 -5.5377297e+29 -5.5425863e+29 -5.5307338e+29 -5.5270168e+29 -5.5353268e+29 -5.5390344e+29 -5.5044491e+29 -5.5074935e+29 -5.5153956e+29 -5.5123101e+29 -5.5320039e+29 -5.5205218e+29 -5.5237386e+29 -5.5286365e+29 -5.5141305e+29 -5.5174023e+29 -5.5253858e+29 -5.5219898e+29 -5.5013544e+29 -5.4982528e+29 -5.506044e+29 -5.5092241e+29 -5.5026003e+29 -5.4913036e+29 -5.4958229e+29 -5.4982643e+29 -5.4884171e+29 -5.4813068e+29 -5.4765041e+29 -5.4836621e+29 -5.4659461e+29 -5.4713222e+29 -5.4785129e+29 -5.4732353e+29 -5.4862201e+29 -5.4933411e+29 -5.4880045e+29 -5.4809277e+29 -5.5077019e+29 -5.5112133e+29 -5.5183782e+29 -5.5147912e+29 -5.4927471e+29 -5.4960073e+29 -5.5033964e+29 -5.5000116e+29 -5.4853649e+29 -5.489212e+29 -5.49633e+29 -5.4923879e+29 -5.4998144e+29 -5.5039182e+29 -5.5109515e+29 -5.5066919e+29 -5.4616892e+29 -5.468362e+29 -5.464661e+29 -5.4580107e+29 -5.4745878e+29 -5.4677845e+29 -5.4648762e+29 -5.4716231e+29 -5.4784975e+29 -5.4815046e+29 -5.4886625e+29 -5.4855417e+29 -5.4751389e+29 -5.4821124e+29 -5.4783391e+29 -5.4714024e+29 -5.4491324e+29 -5.4538749e+29 -5.4605387e+29 -5.4558182e+29 -5.4625384e+29 -5.4673068e+29 -5.4742234e+29 -5.4694175e+29 -5.4518342e+29 -5.457351e+29 -5.464194e+29 -5.4587594e+29 -5.4439839e+29 -5.4506804e+29 -5.445118e+29 -5.4383762e+29 -5.4270072e+29 -5.4333436e+29 -5.4398122e+29 -5.4335571e+29 -5.4400091e+29 -5.4464025e+29 -5.4533153e+29 -5.446872e+29 -5.4398263e+29 -5.4329598e+29 -5.4257272e+29 -5.4327195e+29 -5.420062e+29 -5.4263855e+29 -5.419111e+29 -5.4127482e+29 -5.4116783e+29 -5.4186721e+29 -5.4257408e+29 -5.418746e+29 -5.4118586e+29 -5.4053912e+29 -5.3982804e+29 -5.4048339e+29 -5.3914375e+29 -5.3979025e+29 -5.4045327e+29 -5.4114852e+29 -5.4564131e+29 -5.4416753e+29 -5.4488233e+29 -5.4495016e+29 -5.4406259e+29 -5.4330749e+29 -5.4259461e+29 -5.4333983e+29 -5.4185228e+29 -5.4259191e+29 -5.4189473e+29 -5.4341576e+29 -5.4418689e+29 -5.4334867e+29 -5.426457e+29 -5.4763434e+29 -5.4753936e+29 -5.4822629e+29 -5.4691991e+29 -5.4604067e+29 -5.46767e+29 -5.4612945e+29 -5.4539373e+29 -5.4626134e+29 -5.4557564e+29 -5.4631079e+29 -5.4700109e+29 -5.4470261e+29 -5.4401236e+29 -5.4476695e+29 -5.4545237e+29 -5.6021957e+29 -5.6072441e+29 -5.6117945e+29 -5.5977291e+29 -5.593255e+29 -5.6028106e+29 -5.5984506e+29 -5.5888167e+29 -5.6084408e+29 -5.6129015e+29 -5.6235469e+29 -5.6188991e+29 -5.6219113e+29 -5.6281572e+29 -5.632664e+29 -5.6173728e+29 -5.5843562e+29 -5.5938968e+29 -5.5894441e+29 -5.5798622e+29 -5.5699775e+29 -5.5750808e+29 -5.5846663e+29 -5.5794724e+29 -5.4897501e+29 -5.4951836e+29 -5.5037696e+29 -5.4991957e+29 -5.5005306e+29 -5.509083e+29 -5.5106559e+29 -5.515847e+29 -5.493376e+29 -5.483957e+29 -5.509553e+29 -5.517982e+29 -5.5138546e+29 -5.5205371e+29 -5.5248674e+29 -5.5054196e+29 -5.5276152e+29 -5.5320524e+29 -5.5395164e+29 -5.5350031e+29 -5.5229495e+29 -5.530316e+29 -5.5252506e+29 -5.5178308e+29 -5.4778515e+29 -5.4873748e+29 -5.480742e+29 -5.4709937e+29 -5.532596e+29 -5.5401478e+29 -5.5365568e+29 -5.5444783e+29 -5.5481839e+29 -5.529096e+29 -5.5393071e+29 -5.5471603e+29 -5.5437217e+29 -5.5518725e+29 -5.5554715e+29 -5.5359695e+29 -5.5597508e+29 -5.5634993e+29 -5.5717366e+29 -5.5678792e+29 -5.5559992e+29 -5.5640341e+29 -5.5601459e+29 -5.5521961e+29 -5.5990039e+29 -5.5951304e+29 -5.6051242e+29 -5.6088398e+29 -5.5853819e+29 -5.5893109e+29 -5.580263e+29 -5.5763441e+29 -5.5684252e+29 -5.5724106e+29 -5.5813896e+29 -5.5773248e+29 -5.5911412e+29 -5.5870022e+29 -5.5969387e+29 -5.601175e+29 -5.6063168e+29 -5.6160072e+29 -5.6124283e+29 -5.602666e+29 -5.6131797e+29 -5.6229304e+29 -5.61948e+29 -5.609732e+29 -5.5911862e+29 -5.5946133e+29 -5.6001136e+29 -5.603537e+29 -5.5877299e+29 -5.5839983e+29 -5.5930166e+29 -5.5967255e+29 -5.5532966e+29 -5.5612225e+29 -5.5696354e+29 -5.5580106e+29 -5.5663312e+29 -5.5500431e+29 -5.5464745e+29 -5.554423e+29 -5.5627789e+29 -5.5506692e+29 -5.5590674e+29 -5.5427501e+29 -5.5708742e+29 -5.5671567e+29 -5.5754435e+29 -5.5791722e+29 -5.5777638e+29 -5.5860913e+29 -5.5826788e+29 -5.5743851e+29 -5.5257586e+29 -5.5346203e+29 -5.5220829e+29 -5.5307865e+29 -5.5376786e+29 -5.541637e+29 -5.5489697e+29 -5.55655e+29 -5.5523602e+29 -5.5449112e+29 -5.5407088e+29 -5.536402e+29 -5.5437844e+29 -5.5480448e+29 -5.5181411e+29 -5.5267597e+29 -5.5335454e+29 -5.5223591e+29 -5.5292156e+29 -5.5137807e+29 -5.5559479e+29 -5.5645826e+29 -5.5602563e+29 -5.5516494e+29 -5.5602806e+29 -5.5645577e+29 -5.5733079e+29 -5.5689679e+29 -5.5839315e+29 -5.574088e+29 -5.5697155e+29 -5.5795055e+29 -5.5829269e+29 -5.5785283e+29 -5.5884163e+29 -5.5928583e+29 -5.5473906e+29 -5.5514462e+29 -5.5559685e+29 -5.5428733e+29 -5.5381402e+29 -5.5466895e+29 -5.5416812e+29 -5.5330963e+29 -5.5510593e+29 -5.5560379e+29 -5.5657599e+29 -5.5607516e+29 -5.5653794e+29 -5.5751195e+29 -5.570562e+29 -5.5608226e+29 -5.4503025e+29 -5.4608462e+29 -5.4544206e+29 -5.4421882e+29 -5.4643994e+29 -5.474145e+29 -5.4677366e+29 -5.4577644e+29 -5.3266978e+29 -5.316418e+29 -5.3413439e+29 -5.3505969e+29 -5.3544329e+29 -5.3453495e+29 -5.3402473e+29 -5.3461337e+29 -5.3367963e+29 -5.3305504e+29 -5.3874306e+29 -5.3806745e+29 -5.3765941e+29 -5.3831851e+29 -5.3929271e+29 -5.3886452e+29 -5.3931866e+29 -5.3976308e+29 -5.3723093e+29 -5.3787022e+29 -5.3739129e+29 -5.3677501e+29 -5.3839529e+29 -5.3883639e+29 -5.3829926e+29 -5.3788298e+29 -5.3670021e+29 -5.3615596e+29 -5.3666938e+29 -5.3721263e+29 -5.3800046e+29 -5.3745803e+29 -5.3709066e+29 -5.3763032e+29 -5.3689018e+29 -5.3653033e+29 -5.3585821e+29 -5.3622831e+29 -5.3486925e+29 -5.3557915e+29 -5.3610466e+29 -5.3542232e+29 -5.3216207e+29 -5.35015e+29 -5.3715901e+29 -5.3686594e+29 -5.3469516e+29 -5.3456819e+29 -5.3670056e+29 -5.3663218e+29 -5.3459517e+29 -5.3194253e+29 -5.324188e+29 -5.3274049e+29 -5.3806685e+29 -5.3578935e+29 -5.3543814e+29 -5.3776839e+29 -5.3525365e+29 -5.3755597e+29 -5.3739744e+29 -5.3520812e+29 -5.3898683e+29 -5.3917854e+29 -5.3811333e+29 -5.3796651e+29 -5.4004051e+29 -5.3982402e+29 -5.4081973e+29 -5.4057125e+29 -5.4029041e+29 -5.4058627e+29 -5.4107265e+29 -5.4137521e+29 -5.3861102e+29 -5.3970556e+29 -5.3941347e+29 -5.3831319e+29 -5.4086386e+29 -5.4115157e+29 -5.4196437e+29 -5.4165307e+29 -5.4140633e+29 -5.4166567e+29 -5.4222429e+29 -5.4249669e+29 -5.3932038e+29 -5.3959928e+29 -5.4074147e+29 -5.4048424e+29 -5.3886226e+29 -5.3909042e+29 -5.4024002e+29 -5.3997274e+29 -5.3268346e+29 -5.3240803e+29 -5.3374108e+29 -5.3404676e+29 -5.3497507e+29 -5.345919e+29 -5.3683682e+29 -5.3645163e+29 -5.3425494e+29 -5.3605291e+29 -5.3568949e+29 -5.3399452e+29 -5.3182756e+29 -5.3214998e+29 -5.3308922e+29 -5.3344023e+29 -5.3326787e+29 -5.3315432e+29 -5.3456223e+29 -5.3469389e+29 -5.3573463e+29 -5.3548748e+29 -5.3770806e+29 -5.3748909e+29 -5.3531776e+29 -5.3522573e+29 -5.3712098e+29 -5.3729472e+29 -5.3426734e+29 -5.3442788e+29 -5.3303439e+29 -5.3287981e+29 -5.3861913e+29 -5.3938281e+29 -5.390978e+29 -5.3837882e+29 -5.3983551e+29 -5.3904279e+29 -5.38831e+29 -5.3962354e+29 -5.4026631e+29 -5.4048899e+29 -5.4103326e+29 -5.4079795e+29 -5.3967316e+29 -5.4000481e+29 -5.4052221e+29 -5.4015988e+29 -5.3488096e+29 -5.3362441e+29 -5.3412319e+29 -5.3539669e+29 -5.330683e+29 -5.320571e+29 -5.3165542e+29 -5.326288e+29 -5.3234168e+29 -5.330616e+29 -5.3208468e+29 -5.3114445e+29 -5.3043282e+29 -5.3136013e+29 -5.3429532e+29 -5.3356247e+29 -5.2565021e+29 -5.2556788e+29 -5.2822868e+29 -5.2799295e+29 -5.2241135e+29 -5.2050167e+29 -5.2441824e+29 -5.2444847e+29 -5.2296756e+29 -5.2032165e+29 -5.2304941e+29 -5.2435821e+29 -5.2547122e+29 -5.2442404e+29 -5.2551194e+29 -5.2245466e+29 -5.2454389e+29 -5.2443995e+29 -5.2305583e+29 -5.2042534e+29 -5.2030089e+29 -5.2293716e+29 -5.275018e+29 -5.2738887e+29 -5.2728841e+29 -5.2731896e+29 -5.2274803e+29 -5.2468843e+29 -5.2498202e+29 -5.2328329e+29 -5.2845406e+29 -5.2834458e+29 -5.2252275e+29 -5.2233664e+29 -5.2542376e+29 -5.2559171e+29 -5.222451e+29 -5.2533109e+29 -5.2531234e+29 -5.2226047e+29 -5.2748527e+29 -5.2753102e+29 -5.2931191e+29 -5.2922788e+29 -5.2960897e+29 -5.2781566e+29 -5.27637e+29 -5.2942908e+29 -5.3120886e+29 -5.3139969e+29 -5.3280549e+29 -5.3298487e+29 -5.3107427e+29 -5.3095695e+29 -5.3247939e+29 -5.3264695e+29 -5.3217385e+29 -5.3230886e+29 -5.30897e+29 -5.3076588e+29 -5.2919591e+29 -5.2746121e+29 -5.274188e+29 -5.2911226e+29 -5.2742992e+29 -5.2908913e+29 -5.2909457e+29 -5.2748914e+29 -5.3070699e+29 -5.3067841e+29 -5.3203678e+29 -5.3210181e+29 -5.2229386e+29 -5.2227288e+29 -5.2529927e+29 -5.2529336e+29 -5.2238756e+29 -5.22548e+29 -5.254299e+29 -5.2533551e+29 -5.2084062e+29 -5.2505756e+29 -5.2493375e+29 -5.2364589e+29 -5.2108589e+29 -5.2347285e+29 -5.2802101e+29 -5.2791481e+29 -5.2478449e+29 -5.2776943e+29 -5.2763139e+29 -5.2466132e+29 -5.2330529e+29 -5.2062685e+29 -5.2053292e+29 -5.2315359e+29 -5.3167785e+29 -5.3176796e+29 -5.3281111e+29 -5.3286592e+29 -5.3080797e+29 -5.2969855e+29 -5.295849e+29 -5.3069281e+29 -5.2926665e+29 -5.2944141e+29 -5.3055268e+29 -5.3037052e+29 -5.3154309e+29 -5.3136756e+29 -5.3257466e+29 -5.3272292e+29 -5.3064806e+29 -5.3086294e+29 -5.3185823e+29 -5.3154554e+29 -5.3104205e+29 -5.3122424e+29 -5.323675e+29 -5.3212663e+29 -5.2901451e+29 -5.2914677e+29 -5.3024402e+29 -5.3008849e+29 -5.2891762e+29 -5.2996013e+29 -5.2980038e+29 -5.2881915e+29 -5.3109094e+29 -5.3153624e+29 -5.3057095e+29 -5.3076312e+29 -5.3087608e+29 -5.3117694e+29 -5.3021881e+29 -5.2945287e+29 -5.2925331e+29 -5.2994325e+29 -5.2901375e+29 -5.2960291e+29 -5.2907787e+29 -5.286279e+29 -5.3015456e+29 -5.3029742e+29 -5.2952187e+29 -5.2960632e+29 -5.2996567e+29 -5.306786e+29 -5.2078882e+29 -5.20451e+29 -5.2010458e+29 -5.2017877e+29 -5.200956e+29 -5.1987228e+29 -5.1983087e+29 -5.1999155e+29 -5.2090211e+29 -5.2140121e+29 -5.2057863e+29 -5.2051025e+29 -5.2040964e+29 -5.2014808e+29 -5.2021856e+29 -5.2048792e+29 -5.2003421e+29 -5.2011706e+29 -5.214389e+29 -5.2045544e+29 -5.2339864e+29 -5.2296159e+29 -5.2051275e+29 -5.203365e+29 -5.2118244e+29 -5.2318012e+29 -5.2690869e+29 -5.2683691e+29 -5.2526783e+29 -5.2302901e+29 -5.2162813e+29 -5.2339015e+29 -5.2459696e+29 -5.2232267e+29 -5.2184905e+29 -5.2223363e+29 -5.3134913e+29 -5.3098112e+29 -5.3276047e+29 -5.3220452e+29 -5.3353557e+29 -5.3315195e+29 -5.26693e+29 -5.2658604e+29 -5.3054514e+29 -5.3156227e+29 -5.3057524e+29 -5.297259e+29 -5.2877011e+29 -5.2959073e+29 -5.2787242e+29 -5.2795227e+29 -5.2884436e+29 -5.2895295e+29 -5.2920771e+29 -5.282458e+29 -5.2830641e+29 -5.2854198e+29 -5.2765038e+29 -5.2751667e+29 -5.2699912e+29 -5.2732627e+29 -5.268841e+29 -5.2620959e+29 -5.2637929e+29 -5.2667373e+29 -5.27316e+29 -5.2801991e+29 -5.2730635e+29 -5.2676454e+29 -5.2629806e+29 -5.2519479e+29 -5.2608893e+29 -5.2586304e+29 -5.2521906e+29 -5.2670258e+29 -5.2729869e+29 -5.2861776e+29 -5.2947063e+29 -5.2789391e+29 -5.2998605e+29 -5.2801186e+29 -5.2884588e+29 -5.2924142e+29 -5.3046669e+29 -5.3155848e+29 -5.2571846e+29 -5.316986e+29 -5.3245066e+29 -5.3207619e+29 -5.2959382e+29 -5.2968263e+29 -5.236965e+29 -5.2602385e+29 -5.2642889e+29 -5.2490635e+29 -5.2559507e+29 -5.2417651e+29 -5.2520249e+29 -5.2538625e+29 -5.2533809e+29 -5.2581616e+29 -5.2551924e+29 -5.2372694e+29 -5.2389391e+29 -5.2273899e+29 -5.2254397e+29 -5.229941e+29 -5.2420729e+29 -5.2374354e+29 -5.2445836e+29 -5.2455873e+29 -5.2493272e+29 -5.2422041e+29 -5.3522676e+29 -5.3593868e+29 -5.370829e+29 -5.3648534e+29 -5.3577392e+29 -5.3548935e+29 -5.3512405e+29 -5.3436754e+29 -5.3475524e+29 -5.3394833e+29 -5.3438429e+29 -5.3479025e+29 -5.3400382e+29 -5.3918093e+29 -5.3860137e+29 -5.3979921e+29 -5.4045916e+29 -5.411323e+29 -5.4138691e+29 -5.4208384e+29 -5.4267187e+29 -5.3603463e+29 -5.3637503e+29 -5.370279e+29 -5.3773512e+29 -5.3797383e+29 -5.3853409e+29 -5.3353999e+29 -5.3289187e+29 -5.2416597e+29 -5.2504232e+29 -5.2535967e+29 -5.2540201e+29 -5.2499403e+29 -5.5497054e+29 -5.5492944e+29 -5.5588446e+29 -5.5584688e+29 -5.5489389e+29 -5.5486184e+29 -5.5578606e+29 -5.5581393e+29 -5.5208478e+29 -5.5320349e+29 -5.5315457e+29 -5.5203713e+29 -5.5412454e+29 -5.5407767e+29 -5.5311951e+29 -5.5404059e+29 -5.5400477e+29 -5.5307828e+29 -5.5199594e+29 -5.5195301e+29 -5.4696148e+29 -5.4706023e+29 -5.4784539e+29 -5.4776455e+29 -5.494203e+29 -5.4863182e+29 -5.4856513e+29 -5.4936e+29 -5.5016262e+29 -5.5021603e+29 -5.5104275e+29 -5.5099726e+29 -5.5027393e+29 -5.5032954e+29 -5.5114179e+29 -5.5109155e+29 -5.4626634e+29 -5.4547719e+29 -5.4535508e+29 -5.4615237e+29 -5.2907916e+29 -5.2773295e+29 -5.130069e+29 -5.137087e+29 -5.1364663e+29 -5.1439945e+29 -5.1259936e+29 -5.1252561e+29 -5.1311926e+29 -5.1322229e+29 -5.104471e+29 -5.1100699e+29 -5.1319336e+29 -5.1253445e+29 -5.1100025e+29 -5.144791e+29 -5.431889e+29 -5.4325997e+29 -5.4406096e+29 -5.440026e+29 -5.4332532e+29 -5.4337681e+29 -5.4415679e+29 -5.4411223e+29 -5.4577647e+29 -5.4495848e+29 -5.449173e+29 -5.4573298e+29 -5.4569528e+29 -5.4487484e+29 -5.4482433e+29 -5.4564936e+29 -5.4343335e+29 -5.4349524e+29 -5.442805e+29 -5.4422121e+29 -5.4444271e+29 -5.4365758e+29 -5.4356828e+29 -5.4435289e+29 -5.4604624e+29 -5.4523671e+29 -5.4515282e+29 -5.4596427e+29 -5.4589752e+29 -5.4508351e+29 -5.4502261e+29 -5.4583533e+29 -5.4931282e+29 -5.4850657e+29 -5.4844546e+29 -5.4926131e+29 -5.4768674e+29 -5.4686482e+29 -5.4678801e+29 -5.476169e+29 -5.4666155e+29 -5.4672226e+29 -5.4755283e+29 -5.4749421e+29 -5.4920613e+29 -5.4838455e+29 -5.4832594e+29 -5.4914877e+29 -5.464795e+29 -5.4652353e+29 -5.4735337e+29 -5.4730702e+29 -5.4744118e+29 -5.4660644e+29 -5.4656218e+29 -5.4739592e+29 -5.4909923e+29 -5.4827428e+29 -5.4822795e+29 -5.4904852e+29 -5.4899728e+29 -5.4818134e+29 -5.4812915e+29 -5.4893762e+29 -5.4287861e+29 -5.4211739e+29 -5.4202623e+29 -5.4278795e+29 -5.4137517e+29 -5.4066402e+29 -5.405738e+29 -5.4128228e+29 -5.4042079e+29 -5.4049273e+29 -5.4120198e+29 -5.4113958e+29 -5.4271493e+29 -5.4194751e+29 -5.4188545e+29 -5.4265166e+29 -5.3997519e+29 -5.3931687e+29 -5.3922375e+29 -5.3988329e+29 -5.3868168e+29 -5.3806794e+29 -5.3797226e+29 -5.3858424e+29 -5.3781506e+29 -5.3788975e+29 -5.3849829e+29 -5.3842672e+29 -5.3980314e+29 -5.3913816e+29 -5.3906337e+29 -5.3972723e+29 -5.3740611e+29 -5.3753324e+29 -5.3815565e+29 -5.3804343e+29 -5.376478e+29 -5.3772803e+29 -5.3833514e+29 -5.3825758e+29 -5.3964309e+29 -5.3897404e+29 -5.3889757e+29 -5.3956586e+29 -5.3947876e+29 -5.388051e+29 -5.3870052e+29 -5.3938216e+29 -5.4259662e+29 -5.4182526e+29 -5.4175934e+29 -5.4253773e+29 -5.4107012e+29 -5.4034293e+29 -5.4026788e+29 -5.4099834e+29 -5.4009403e+29 -5.401835e+29 -5.4091623e+29 -5.408331e+29 -5.4246349e+29 -5.4168039e+29 -5.4159999e+29 -5.4238599e+29 -5.3708585e+29 -5.371848e+29 -5.3778973e+29 -5.3770138e+29 -5.3723869e+29 -5.3724343e+29 -5.3785383e+29 -5.3784206e+29 -5.3916004e+29 -5.3849157e+29 -5.3847294e+29 -5.3913204e+29 -5.3907601e+29 -5.3842073e+29 -5.383332e+29 -5.3898695e+29 -5.3724395e+29 -5.3723028e+29 -5.3785913e+29 -5.3786724e+29 -5.3723996e+29 -5.3728824e+29 -5.379275e+29 -5.3787628e+29 -5.3928556e+29 -5.38593e+29 -5.3853743e+29 -5.3922661e+29 -5.3919714e+29 -5.3851483e+29 -5.3851125e+29 -5.3918312e+29 -5.4232045e+29 -5.4152915e+29 -5.4147133e+29 -5.4226625e+29 -5.4075366e+29 -5.4000619e+29 -5.3994701e+29 -5.4069428e+29 -5.3988926e+29 -5.3991049e+29 -5.4065202e+29 -5.4062415e+29 -5.4221576e+29 -5.4142458e+29 -5.4138852e+29 -5.4217098e+29 -5.4212534e+29 -5.4135043e+29 -5.4129732e+29 -5.4206577e+29 -5.4059119e+29 -5.3986141e+29 -5.3982532e+29 -5.4054647e+29 -5.3966963e+29 -5.3976167e+29 -5.4047378e+29 -5.4037657e+29 -5.4197777e+29 -5.4121624e+29 -5.4111189e+29 -5.4186718e+29 -5.4888051e+29 -5.4807752e+29 -5.4803992e+29 -5.4884129e+29 -5.472587e+29 -5.4643682e+29 -5.4639421e+29 -5.4721884e+29 -5.4627441e+29 -5.4634231e+29 -5.471714e+29 -5.471085e+29 -5.4880011e+29 -5.4799358e+29 -5.4793106e+29 -5.4873574e+29 -5.4560455e+29 -5.4477026e+29 -5.4472417e+29 -5.4555915e+29 -5.4393831e+29 -5.4312215e+29 -5.430748e+29 -5.4389277e+29 -5.4296957e+29 -5.430228e+29 -5.4384117e+29 -5.4378085e+29 -5.455062e+29 -5.4467146e+29 -5.4460611e+29 -5.4543797e+29 -5.4264045e+29 -5.427557e+29 -5.4354514e+29 -5.43425e+29 -5.4284859e+29 -5.4291025e+29 -5.4370973e+29 -5.4364217e+29 -5.4535876e+29 -5.4453007e+29 -5.4445077e+29 -5.4526764e+29 -5.4515568e+29 -5.4434716e+29 -5.4422146e+29 -5.4502363e+29 -5.4865766e+29 -5.4785018e+29 -5.4773621e+29 -5.4854046e+29 -5.4702403e+29 -5.4619195e+29 -5.4609168e+29 -5.4691646e+29 -5.4583199e+29 -5.4597068e+29 -5.467868e+29 -5.4664018e+29 -5.483945e+29 -5.4759753e+29 -5.4744266e+29 -5.4823175e+29 -5.5122961e+29 -5.5240827e+29 -5.5229386e+29 -5.5112415e+29 -5.5215786e+29 -5.5198971e+29 -5.5098477e+29 -5.5081459e+29 -5.5149614e+29 -5.5270198e+29 -5.5264092e+29 -5.5144878e+29 -5.5258818e+29 -5.5251273e+29 -5.5140469e+29 -5.513368e+29 -5.5192842e+29 -5.5314282e+29 -5.5313163e+29 -5.5191575e+29 -5.5311305e+29 -5.5306926e+29 -5.5189025e+29 -5.5184582e+29 -5.5178889e+29 -5.5301313e+29 -5.5294953e+29 -5.5173363e+29 -5.528774e+29 -5.5278966e+29 -5.51665e+29 -5.5158379e+29 -5.5022573e+29 -5.513602e+29 -5.5128164e+29 -5.5016196e+29 -5.5121549e+29 -5.5114494e+29 -5.5010383e+29 -5.5004045e+29 -5.4777468e+29 -5.4703075e+29 -5.4698759e+29 -5.4772782e+29 -5.4626449e+29 -5.4548453e+29 -5.4546477e+29 -5.4623019e+29 -5.4542795e+29 -5.4544928e+29 -5.46198e+29 -5.4616892e+29 -5.476827e+29 -5.4694525e+29 -5.4690625e+29 -5.4763413e+29 -5.5063784e+29 -5.5181555e+29 -5.5167903e+29 -5.5051723e+29 -5.515701e+29 -5.5146187e+29 -5.5041885e+29 -5.5032361e+29 -5.4808799e+29 -5.4730598e+29 -5.4720731e+29 -5.4798388e+29 -5.4650899e+29 -5.4570691e+29 -5.4562096e+29 -5.4641558e+29 -5.4551535e+29 -5.455603e+29 -5.463469e+29 -5.4629892e+29 -5.4790405e+29 -5.4713102e+29 -5.4707388e+29 -5.4783389e+29 -5.4490338e+29 -5.4410621e+29 -5.4402962e+29 -5.4482197e+29 -5.4331303e+29 -5.4253241e+29 -5.4246542e+29 -5.4324023e+29 -5.4241723e+29 -5.4242804e+29 -5.4319532e+29 -5.4317755e+29 -5.4476812e+29 -5.4397825e+29 -5.4394907e+29 -5.4472883e+29 -5.4248929e+29 -5.4247367e+29 -5.4320244e+29 -5.4321269e+29 -5.4244741e+29 -5.4242202e+29 -5.4316602e+29 -5.4318449e+29 -5.4470266e+29 -5.4392752e+29 -5.4393577e+29 -5.4469616e+29 -5.4469514e+29 -5.4394498e+29 -5.4394555e+29 -5.4468423e+29 -5.4984933e+29 -5.5090972e+29 -5.5086653e+29 -5.4981773e+29 -5.5081829e+29 -5.5073899e+29 -5.4977396e+29 -5.4970086e+29 -5.4754588e+29 -5.4685414e+29 -5.4682589e+29 -5.4751943e+29 -5.4614318e+29 -5.4542166e+29 -5.4540091e+29 -5.4611668e+29 -5.4528539e+29 -5.4535871e+29 -5.4606797e+29 -5.4599714e+29 -5.4747356e+29 -5.4677533e+29 -5.4670101e+29 -5.4739687e+29 -5.4997165e+29 -5.5107304e+29 -5.5103093e+29 -5.4994339e+29 -5.5100041e+29 -5.5096037e+29 -5.499242e+29 -5.4989598e+29 -5.4759227e+29 -5.4687127e+29 -5.4685986e+29 -5.4757555e+29 -5.461394e+29 -5.4540372e+29 -5.4540381e+29 -5.4613245e+29 -5.4542581e+29 -5.454167e+29 -5.4613714e+29 -5.4614558e+29 -5.4757279e+29 -5.4685895e+29 -5.4686098e+29 -5.4756511e+29 -5.446668e+29 -5.4393555e+29 -5.4394683e+29 -5.446716e+29 -5.432083e+29 -5.4249086e+29 -5.4251603e+29 -5.432248e+29 -5.4258443e+29 -5.4255347e+29 -5.4325214e+29 -5.4327882e+29 -5.4469089e+29 -5.4396809e+29 -5.4398645e+29 -5.4470291e+29 -5.4241482e+29 -5.4251088e+29 -5.4321331e+29 -5.4313123e+29 -5.4257205e+29 -5.425901e+29 -5.432755e+29 -5.4326147e+29 -5.4469762e+29 -5.439799e+29 -5.4396711e+29 -5.4468069e+29 -5.4464174e+29 -5.4392566e+29 -5.4384816e+29 -5.4456679e+29 -5.4177874e+29 -5.4107944e+29 -5.4111886e+29 -5.4181022e+29 -5.403946e+29 -5.3972778e+29 -5.3978408e+29 -5.4043973e+29 -5.3986209e+29 -5.3983298e+29 -5.4048412e+29 -5.4052247e+29 -5.4185434e+29 -5.411627e+29 -5.4120096e+29 -5.4188935e+29 -5.3907088e+29 -5.3842877e+29 -5.3849964e+29 -5.3913284e+29 -5.3724104e+29 -5.3716302e+29 -5.3778939e+29 -5.378673e+29 -5.3730657e+29 -5.3728806e+29 -5.3790863e+29 -5.3793109e+29 -5.3918471e+29 -5.3854395e+29 -5.3856507e+29 -5.392087e+29 -5.3706974e+29 -5.3716152e+29 -5.3778502e+29 -5.3769658e+29 -5.3724124e+29 -5.3728497e+29 -5.3790809e+29 -5.3786824e+29 -5.39195e+29 -5.3854541e+29 -5.3850454e+29 -5.3915263e+29 -5.3907119e+29 -5.3842365e+29 -5.3832634e+29 -5.3896392e+29 -5.4189958e+29 -5.4120905e+29 -5.4117786e+29 -5.4187513e+29 -5.4052406e+29 -5.3985435e+29 -5.3981384e+29 -5.4048757e+29 -5.396184e+29 -5.397311e+29 -5.4040581e+29 -5.4029225e+29 -5.418043e+29 -5.4109971e+29 -5.4098705e+29 -5.416983e+29 -5.4176181e+29 -5.4100977e+29 -5.4094687e+29 -5.4169704e+29 -5.4027533e+29 -5.3956932e+29 -5.3950952e+29 -5.4021274e+29 -5.3947505e+29 -5.3947723e+29 -5.4017848e+29 -5.4018149e+29 -5.4166451e+29 -5.4091226e+29 -5.4091286e+29 -5.4165974e+29 -5.38884e+29 -5.3822623e+29 -5.3816072e+29 -5.3882196e+29 -5.3758566e+29 -5.3696365e+29 -5.3688967e+29 -5.3751404e+29 -5.3685967e+29 -5.3685471e+29 -5.3747775e+29 -5.37483e+29 -5.387913e+29 -5.3812501e+29 -5.381243e+29 -5.3878743e+29 -5.3708417e+29 -5.3700055e+29 -5.3762244e+29 -5.3771506e+29 -5.3693398e+29 -5.368773e+29 -5.3749394e+29 -5.3755132e+29 -5.3880122e+29 -5.3813521e+29 -5.3819121e+29 -5.3885302e+29 -5.3892555e+29 -5.3826567e+29 -5.3835468e+29 -5.3900618e+29 -5.4167626e+29 -5.4093405e+29 -5.4097214e+29 -5.4170729e+29 -5.4020192e+29 -5.3949186e+29 -5.3954029e+29 -5.4024599e+29 -5.3967495e+29 -5.3960491e+29 -5.4030028e+29 -5.403565e+29 -5.4174224e+29 -5.4101624e+29 -5.4105658e+29 -5.4176832e+29 -5.374688e+29 -5.368918e+29 -5.3680132e+29 -5.3737281e+29 -5.3632784e+29 -5.3577969e+29 -5.3571104e+29 -5.3624415e+29 -5.3552666e+29 -5.3563024e+29 -5.3616169e+29 -5.36077e+29 -5.3729386e+29 -5.3671913e+29 -5.3664111e+29 -5.3721746e+29 -5.3524176e+29 -5.3470572e+29 -5.3466088e+29 -5.3518158e+29 -5.3416248e+29 -5.3360551e+29 -5.3358942e+29 -5.3413165e+29 -5.333772e+29 -5.3351153e+29 -5.340488e+29 -5.339147e+29 -5.3510331e+29 -5.3457741e+29 -5.3444804e+29 -5.3498437e+29 -5.3272245e+29 -5.329159e+29 -5.3346343e+29 -5.3328756e+29 -5.3307208e+29 -5.3321361e+29 -5.3375061e+29 -5.3360729e+29 -5.348354e+29 -5.3428867e+29 -5.3414736e+29 -5.34698e+29 -5.3456152e+29 -5.3400775e+29 -5.3385052e+29 -5.3441751e+29 -5.3712903e+29 -5.3654417e+29 -5.3643957e+29 -5.3703981e+29 -5.3596435e+29 -5.3539346e+29 -5.3526401e+29 -5.3584557e+29 -5.3499283e+29 -5.3512826e+29 -5.3571254e+29 -5.3557755e+29 -5.3691659e+29 -5.3631042e+29 -5.3617544e+29 -5.3678215e+29 -5.2454848e+29 -5.23958e+29 -5.2347428e+29 -5.2317559e+29 -5.2074235e+29 -5.1914443e+29 -5.2000263e+29 -5.1856129e+29 -5.1813473e+29 -5.1790743e+29 -5.1950299e+29 -5.192874e+29 -5.1762047e+29 -5.189338e+29 -5.1845447e+29 -5.1722926e+29 -5.1716099e+29 -5.1734848e+29 -5.1869331e+29 -5.1839476e+29 -5.2283677e+29 -5.2246543e+29 -5.2238769e+29 -5.2254121e+29 -5.2753474e+29 -5.2624829e+29 -5.2754422e+29 -5.2630535e+29 -5.2662311e+29 -5.2789625e+29 -5.2764781e+29 -5.2632818e+29 -5.2987203e+29 -5.3027054e+29 -5.2917639e+29 -5.2967109e+29 -5.2894397e+29 -5.3008738e+29 -5.2953842e+29 -5.2993703e+29 -5.2882875e+29 -5.29448e+29 -5.2878032e+29 -5.2979154e+29 -5.2823099e+29 -5.2732334e+29 -5.2855455e+29 -5.2700566e+29 -5.2773003e+29 -5.2814322e+29 -5.292059e+29 -5.2891032e+29 -5.3072463e+29 -5.3092018e+29 -5.3027402e+29 -5.306049e+29 -5.3006491e+29 -5.3087396e+29 -5.3038373e+29 -5.3070493e+29 -5.2977405e+29 -5.3011552e+29 -5.294537e+29 -5.3047003e+29 -5.3106368e+29 -5.3126038e+29 -5.3182927e+29 -5.3166373e+29 -5.3193589e+29 -5.3141105e+29 -5.3139336e+29 -5.3193379e+29 -5.3248003e+29 -5.3247583e+29 -5.3303939e+29 -5.3303597e+29 -5.3224856e+29 -5.3239509e+29 -5.3295904e+29 -5.3282041e+29 -5.3193027e+29 -5.3208082e+29 -5.3265083e+29 -5.3251257e+29 -5.3149323e+29 -5.3088005e+29 -5.3070605e+29 -5.3132817e+29 -5.3037994e+29 -5.3054702e+29 -5.3116361e+29 -5.3097847e+29 -5.3156577e+29 -5.3176245e+29 -5.3234933e+29 -5.3214786e+29 -5.3127135e+29 -5.3137167e+29 -5.3194513e+29 -5.3184398e+29 -5.3080021e+29 -5.3023004e+29 -5.3012632e+29 -5.3069747e+29 -5.3005381e+29 -5.3008331e+29 -5.3065572e+29 -5.3065016e+29 -5.3124125e+29 -5.3123345e+29 -5.318159e+29 -5.318301e+29 -5.224705e+29 -5.2207267e+29 -5.2189012e+29 -5.219923e+29 -5.2932911e+29 -5.2966821e+29 -5.2870193e+29 -5.2917034e+29 -5.2855561e+29 -5.2955093e+29 -5.2622976e+29 -5.2747219e+29 -5.2730821e+29 -5.2597458e+29 -5.257978e+29 -5.2713712e+29 -5.2708656e+29 -5.2580339e+29 -5.2904146e+29 -5.2834244e+29 -5.2911151e+29 -5.2950356e+29 -5.2842703e+29 -5.2944956e+29 -5.2214366e+29 -5.2205879e+29 -5.2284901e+29 -5.224247e+29 -5.2760623e+29 -5.2620404e+29 -5.2741308e+29 -5.2651128e+29 -5.2584961e+29 -5.2595126e+29 -5.2711157e+29 -5.2721144e+29 -5.2904837e+29 -5.2945501e+29 -5.2836516e+29 -5.2911401e+29 -5.2844767e+29 -5.2949858e+29 -5.2860972e+29 -5.2920598e+29 -5.2954237e+29 -5.2954492e+29 -5.2927512e+29 -5.2872117e+29 -5.3131865e+29 -5.3127352e+29 -5.3185466e+29 -5.3190681e+29 -5.3067912e+29 -5.3006275e+29 -5.3009766e+29 -5.3071448e+29 -5.3072616e+29 -5.3012061e+29 -5.3010317e+29 -5.3070026e+29 -5.3130068e+29 -5.313233e+29 -5.3192015e+29 -5.3190087e+29 -5.1665066e+29 -5.1681149e+29 -5.1784735e+29 -5.1806903e+29 -5.1722832e+29 -5.1679523e+29 -5.1802185e+29 -5.1856613e+29 -5.1722241e+29 -5.1770375e+29 -5.1847937e+29 -5.1910851e+29 -5.1688021e+29 -5.1693539e+29 -5.1812935e+29 -5.1813795e+29 -5.1570486e+29 -5.1619246e+29 -5.1891665e+29 -5.1953933e+29 -5.1510642e+29 -5.1532524e+29 -5.1840741e+29 -5.1817742e+29 -5.1475489e+29 -5.1491577e+29 -5.1796351e+29 -5.17753e+29 -5.1485772e+29 -5.151378e+29 -5.1787988e+29 -5.1825368e+29 -5.3666064e+29 -5.3605311e+29 -5.3600214e+29 -5.3661096e+29 -5.3545259e+29 -5.3486697e+29 -5.3480535e+29 -5.3539667e+29 -5.3480072e+29 -5.3478311e+29 -5.3537813e+29 -5.3540279e+29 -5.3660485e+29 -5.3598923e+29 -5.3601159e+29 -5.3662346e+29 -5.3428182e+29 -5.3369909e+29 -5.3361247e+29 -5.3420988e+29 -5.3311591e+29 -5.3253013e+29 -5.3242845e+29 -5.3301814e+29 -5.3241939e+29 -5.3240244e+29 -5.3299096e+29 -5.33008e+29 -5.3418447e+29 -5.3358424e+29 -5.3360003e+29 -5.3419949e+29 -5.3249173e+29 -5.3250917e+29 -5.3309006e+29 -5.3306786e+29 -5.3249281e+29 -5.3244542e+29 -5.3303553e+29 -5.330769e+29 -5.3422462e+29 -5.336271e+29 -5.3366089e+29 -5.3424955e+29 -5.342398e+29 -5.3366441e+29 -5.3363061e+29 -5.3418924e+29 -5.366341e+29 -5.3603038e+29 -5.3603455e+29 -5.3663389e+29 -5.3542551e+29 -5.3482334e+29 -5.348402e+29 -5.3543562e+29 -5.3474828e+29 -5.3481607e+29 -5.353988e+29 -5.3531509e+29 -5.3658222e+29 -5.3598848e+29 -5.3589374e+29 -5.3648142e+29 -5.2292575e+29 -5.2250742e+29 -5.2222345e+29 -5.2218566e+29 -5.2206566e+29 -5.2213488e+29 -5.2257819e+29 -5.2223147e+29 -5.170776e+29 -5.1709842e+29 -5.1828111e+29 -5.183388e+29 -5.1914659e+29 -5.1772936e+29 -5.1731069e+29 -5.18582e+29 -5.1714138e+29 -5.1756113e+29 -5.1834243e+29 -5.1888233e+29 -5.1704749e+29 -5.1695817e+29 -5.182706e+29 -5.1811601e+29 -5.2264964e+29 -5.2246925e+29 -5.2251116e+29 -5.2280705e+29 -5.230051e+29 -5.2321151e+29 -5.2359294e+29 -5.2420174e+29 -5.1749118e+29 -5.1764764e+29 -5.189618e+29 -5.1868628e+29 -5.1789517e+29 -5.1755394e+29 -5.1872396e+29 -5.1914577e+29 -5.1829371e+29 -5.1809631e+29 -5.1934736e+29 -5.1949413e+29 -5.1865907e+29 -5.1920109e+29 -5.1992326e+29 -5.206807e+29 -5.1497817e+29 -5.1517048e+29 -5.1834076e+29 -5.1806365e+29 -5.1515899e+29 -5.1494863e+29 -5.1796759e+29 -5.1818758e+29 -5.1559797e+29 -5.153559e+29 -5.1861559e+29 -5.1840839e+29 -5.1596564e+29 -5.1642355e+29 -5.1904621e+29 -5.1961125e+29 -5.363537e+29 -5.3576718e+29 -5.356841e+29 -5.3627446e+29 -5.3519207e+29 -5.3463546e+29 -5.3455173e+29 -5.3510572e+29 -5.3447749e+29 -5.3449095e+29 -5.3505236e+29 -5.3505289e+29 -5.3623845e+29 -5.3563878e+29 -5.3564274e+29 -5.3624319e+29 -5.3409184e+29 -5.3355023e+29 -5.3347024e+29 -5.3400531e+29 -5.3300271e+29 -5.3243674e+29 -5.3237419e+29 -5.3292853e+29 -5.3226372e+29 -5.3230541e+29 -5.3284599e+29 -5.3280865e+29 -5.3393654e+29 -5.3338994e+29 -5.3335555e+29 -5.3391107e+29 -5.3231423e+29 -5.3227377e+29 -5.3282774e+29 -5.3287476e+29 -5.3393074e+29 -5.3337642e+29 -5.33426e+29 -5.3397771e+29 -5.3401997e+29 -5.3347766e+29 -5.3354354e+29 -5.3408785e+29 -5.3242374e+29 -5.3236378e+29 -5.3292659e+29 -5.3298892e+29 -5.3626543e+29 -5.3566723e+29 -5.3571244e+29 -5.3631699e+29 -5.3507628e+29 -5.3449592e+29 -5.3453926e+29 -5.3511745e+29 -5.3464801e+29 -5.345742e+29 -5.3515436e+29 -5.3522922e+29 -5.3637465e+29 -5.3575847e+29 -5.3583396e+29 -5.3645297e+29 -5.2876301e+29 -5.2927134e+29 -5.2955127e+29 -5.2950225e+29 -5.291806e+29 -5.2866263e+29 -5.2750895e+29 -5.2650785e+29 -5.2764367e+29 -5.2626873e+29 -5.2718123e+29 -5.2602991e+29 -5.2730296e+29 -5.2593487e+29 -5.2852643e+29 -5.2913597e+29 -5.2947394e+29 -5.2939475e+29 -5.2903632e+29 -5.2839497e+29 -5.3004688e+29 -5.3008317e+29 -5.3066014e+29 -5.3062333e+29 -5.312101e+29 -5.3125248e+29 -5.318499e+29 -5.3179843e+29 -5.3112964e+29 -5.3117446e+29 -5.3174395e+29 -5.3169672e+29 -5.3055258e+29 -5.3002553e+29 -5.3060015e+29 -5.2996458e+29 -5.2596295e+29 -5.2719452e+29 -5.2731849e+29 -5.2618693e+29 -5.2896865e+29 -5.2834163e+29 -5.2934659e+29 -5.2834308e+29 -5.2897641e+29 -5.2935031e+29 -5.2585898e+29 -5.2583281e+29 -5.2711529e+29 -5.2711052e+29 -5.2907646e+29 -5.2846956e+29 -5.284099e+29 -5.2902677e+29 -5.2939278e+29 -5.2942321e+29 -5.2998025e+29 -5.3058614e+29 -5.3063604e+29 -5.3002e+29 -5.3123979e+29 -5.3118647e+29 -5.3178195e+29 -5.3183849e+29 -5.2992529e+29 -5.3052156e+29 -5.2993239e+29 -5.3053443e+29 -5.3113636e+29 -5.3111442e+29 -5.3170045e+29 -5.317329e+29 -5.275783e+29 -5.2621313e+29 -5.2741927e+29 -5.2643294e+29 -5.2623552e+29 -5.2616835e+29 -5.2736955e+29 -5.2736235e+29 -5.2917924e+29 -5.2855406e+29 -5.2913093e+29 -5.2949038e+29 -5.2852807e+29 -5.2955706e+29 -5.2924535e+29 -5.296121e+29 -5.2861844e+29 -5.2966693e+29 -5.2932883e+29 -5.2872868e+29 -5.2935836e+29 -5.2980176e+29 -5.2996368e+29 -5.2997716e+29 -5.298703e+29 -5.2947723e+29 -5.2664379e+29 -5.2689245e+29 -5.2776528e+29 -5.2801037e+29 -5.2964573e+29 -5.2912549e+29 -5.29902e+29 -5.2890196e+29 -5.2946908e+29 -5.2977988e+29 -5.2850022e+29 -5.2728949e+29 -5.2832914e+29 -5.2760167e+29 -5.3033402e+29 -5.3090507e+29 -5.309527e+29 -5.3041417e+29 -5.3148505e+29 -5.3146571e+29 -5.3202714e+29 -5.3202615e+29 -5.3144693e+29 -5.3147081e+29 -5.3199404e+29 -5.3195266e+29 -5.3043668e+29 -5.3095206e+29 -5.3094274e+29 -5.3044099e+29 -5.3019208e+29 -5.3079097e+29 -5.3083727e+29 -5.3024326e+29 -5.3141962e+29 -5.313856e+29 -5.3197689e+29 -5.3200215e+29 -5.3014306e+29 -5.3008092e+29 -5.3069305e+29 -5.3074768e+29 -5.3134897e+29 -5.3129829e+29 -5.3189715e+29 -5.3194553e+29 -5.3305364e+29 -5.3248306e+29 -5.3253187e+29 -5.3310657e+29 -5.3416872e+29 -5.3361273e+29 -5.3367254e+29 -5.3423801e+29 -5.3427265e+29 -5.3370479e+29 -5.3371993e+29 -5.3428972e+29 -5.3257996e+29 -5.3256053e+29 -5.3313588e+29 -5.3315209e+29 -5.3257171e+29 -5.3258766e+29 -5.3314812e+29 -5.3312084e+29 -5.3427641e+29 -5.3370863e+29 -5.336727e+29 -5.3423381e+29 -5.341575e+29 -5.3360736e+29 -5.3353718e+29 -5.3408163e+29 -5.3247642e+29 -5.325264e+29 -5.3306439e+29 -5.330039e+29 -5.3464242e+29 -5.3471897e+29 -5.3530776e+29 -5.3522502e+29 -5.354426e+29 -5.3485281e+29 -5.348046e+29 -5.3539325e+29 -5.3666137e+29 -5.3604469e+29 -5.3599756e+29 -5.3661474e+29 -5.365345e+29 -5.3591436e+29 -5.3582678e+29 -5.3644384e+29 -5.3486699e+29 -5.3484245e+29 -5.3543581e+29 -5.3545842e+29 -5.3531572e+29 -5.3473123e+29 -5.3480833e+29 -5.3539552e+29 -5.365346e+29 -5.3591692e+29 -5.3599852e+29 -5.3661448e+29 -5.3666267e+29 -5.3604367e+29 -5.3606454e+29 -5.366815e+29 -5.2045548e+29 -5.2033474e+29 -5.2037111e+29 -5.2049472e+29 -5.2116094e+29 -5.2147641e+29 -5.2085689e+29 -5.2062208e+29 -5.2285036e+29 -5.2122881e+29 -5.2157787e+29 -5.2241137e+29 -5.2089401e+29 -5.2061685e+29 -5.2195714e+29 -5.2031325e+29 -5.2046292e+29 -5.2206392e+29 -5.2042256e+29 -5.2026883e+29 -5.2273552e+29 -5.2296063e+29 -5.2548663e+29 -5.2527381e+29 -5.2081691e+29 -5.2110138e+29 -5.2389098e+29 -5.2363073e+29 -5.2067264e+29 -5.2034799e+29 -5.2261811e+29 -5.2515909e+29 -5.2261653e+29 -5.2512768e+29 -5.2074728e+29 -5.2355194e+29 -5.2354971e+29 -5.2085059e+29 -5.2049201e+29 -5.203081e+29 -5.2165285e+29 -5.2197577e+29 -5.2216257e+29 -5.2236603e+29 -5.2359717e+29 -5.2379485e+29 -5.2639979e+29 -5.2623815e+29 -5.2501227e+29 -5.2475781e+29 -5.2336954e+29 -5.2597782e+29 -5.2317578e+29 -5.257345e+29 -5.2160241e+29 -5.2134318e+29 -5.2414474e+29 -5.2444714e+29 -5.2118313e+29 -5.2093741e+29 -5.2303806e+29 -5.2234418e+29 -5.217691e+29 -5.2153748e+29 -5.2124494e+29 -5.2080966e+29 -5.2079872e+29 -5.2108346e+29 -5.2374103e+29 -5.2343269e+29 -5.2339927e+29 -5.2358758e+29 -5.2427125e+29 -5.2402012e+29 -5.2528089e+29 -5.247458e+29 -5.2322014e+29 -5.2320534e+29 -5.2340834e+29 -5.2379111e+29 -5.2313096e+29 -5.2321668e+29 -5.2354192e+29 -5.2323996e+29 -5.2010366e+29 -5.2051972e+29 -5.2043452e+29 -5.2078819e+29 -5.2059402e+29 -5.2105155e+29 -5.2006476e+29 -5.2044661e+29 -5.1996763e+29 -5.2039467e+29 -5.2044444e+29 -5.205905e+29 -5.2010652e+29 -5.2047978e+29 -5.2064938e+29 -5.2012512e+29 -5.2057418e+29 -5.205343e+29 -5.2033494e+29 -5.2070462e+29 -5.2073212e+29 -5.2102599e+29 -5.2131976e+29 -5.2081962e+29 -5.2474865e+29 -5.2478756e+29 -5.2317877e+29 -5.2322123e+29 -5.2489268e+29 -5.250273e+29 -5.2338582e+29 -5.2358839e+29 -5.2328333e+29 -5.2348704e+29 -5.2503077e+29 -5.248701e+29 -5.247618e+29 -5.2473887e+29 -5.2316939e+29 -5.2314602e+29 -5.2833285e+29 -5.2779424e+29 -5.285858e+29 -5.2743736e+29 -5.2950624e+29 -5.2989309e+29 -5.2979471e+29 -5.2932268e+29 -5.27689e+29 -5.2703054e+29 -5.2798411e+29 -5.2674173e+29 -5.2905749e+29 -5.2959928e+29 -5.2935629e+29 -5.2877427e+29 -5.2823171e+29 -5.2879871e+29 -5.2865935e+29 -5.281648e+29 -5.2722565e+29 -5.2647344e+29 -5.274334e+29 -5.2623096e+29 -5.2853275e+29 -5.2912954e+29 -5.2893724e+29 -5.2833026e+29 -5.2712899e+29 -5.2616335e+29 -5.271365e+29 -5.2622384e+29 -5.2700078e+29 -5.2620389e+29 -5.2710106e+29 -5.2602928e+29 -5.2811185e+29 -5.2861291e+29 -5.2850731e+29 -5.2801255e+29 -5.2794799e+29 -5.2840249e+29 -5.2827924e+29 -5.278547e+29 -5.2687795e+29 -5.2592739e+29 -5.2691647e+29 -5.2592703e+29 -5.2684287e+29 -5.2591836e+29 -5.2591523e+29 -5.2684792e+29 -5.2834757e+29 -5.2782881e+29 -5.2829989e+29 -5.2786589e+29 -5.2794222e+29 -5.2837408e+29 -5.2833864e+29 -5.279753e+29 -5.2707936e+29 -5.2607167e+29 -5.2695782e+29 -5.2629591e+29 -5.2268711e+29 -5.2284769e+29 -5.2268402e+29 -5.2284508e+29 -5.2606698e+29 -5.2519913e+29 -5.2608207e+29 -5.2524518e+29 -5.2538312e+29 -5.2626715e+29 -5.2523307e+29 -5.2613574e+29 -5.2766637e+29 -5.2715396e+29 -5.2778749e+29 -5.2727537e+29 -5.2756815e+29 -5.2708244e+29 -5.2746125e+29 -5.2701531e+29 -5.2378302e+29 -5.2340351e+29 -5.2298924e+29 -5.2309993e+29 -5.2571602e+29 -5.2661586e+29 -5.2642272e+29 -5.2553797e+29 -5.2624679e+29 -5.2598726e+29 -5.2704523e+29 -5.268516e+29 -5.2825221e+29 -5.2780865e+29 -5.283382e+29 -5.2795224e+29 -5.2810682e+29 -5.2761865e+29 -5.2793259e+29 -5.2742104e+29 -5.2505804e+29 -5.2542352e+29 -5.2602864e+29 -5.2643639e+29 -5.2563532e+29 -5.2605229e+29 -5.2579215e+29 -5.261366e+29 -5.2664762e+29 -5.2639793e+29 -5.22661e+29 -5.2278665e+29 -5.2434709e+29 -5.2302872e+29 -5.2525347e+29 -5.2599423e+29 -5.2622683e+29 -5.25745e+29 -5.2519206e+29 -5.2508765e+29 -5.2601122e+29 -5.2593821e+29 -5.2723323e+29 -5.2687458e+29 -5.2736171e+29 -5.2695239e+29 -5.2706204e+29 -5.2683434e+29 -5.2679241e+29 -5.2679666e+29 -5.268264e+29 -5.2667323e+29 -5.2648044e+29 -5.2628714e+29 -5.2609323e+29 -5.2587634e+29 -5.2569301e+29 -5.257462e+29 -4.676532e+29 -4.6838156e+29 -4.7082944e+29 -4.9071022e+29 -4.7107133e+29 -4.9059077e+29 -4.7145693e+29 -4.9087107e+29 -4.7161131e+29 -4.9057265e+29 -5.1121396e+29 -5.3303427e+29 -5.3335653e+29 -5.3644358e+29 -5.3611197e+29 -5.3848808e+29 -5.3874969e+29 -5.3833378e+29 -5.3595191e+29 -5.3595933e+29 -5.382492e+29 -5.3560869e+29 -5.3106564e+29 -5.3111434e+29 -5.3562539e+29 -5.3384438e+29 -5.3362619e+29 -5.3656029e+29 -5.365922e+29 -5.3890131e+29 -5.3895572e+29 -5.3926553e+29 -5.3692598e+29 -5.366755e+29 -5.3907854e+29 -5.3087779e+29 -5.3557457e+29 -5.3560827e+29 -5.3098274e+29 -5.3907122e+29 -5.3914328e+29 -5.4174328e+29 -5.4160365e+29 -5.3902079e+29 -5.3905488e+29 -5.4153199e+29 -5.4152528e+29 -5.4244489e+29 -5.4332348e+29 -5.4312652e+29 -5.4225043e+29 -5.4030879e+29 -5.4007773e+29 -5.412852e+29 -5.4148477e+29 -5.3978479e+29 -5.3992104e+29 -5.4111521e+29 -5.4094265e+29 -5.4187698e+29 -5.4207118e+29 -5.4294386e+29 -5.42719e+29 -5.4068677e+29 -5.4083731e+29 -5.4191022e+29 -5.420276e+29 -5.4289815e+29 -5.4301113e+29 -5.4393972e+29 -5.4381162e+29 -5.436721e+29 -5.4276389e+29 -5.4261171e+29 -5.4349476e+29 -5.4045773e+29 -5.4056132e+29 -5.4164513e+29 -5.4178014e+29 -5.3386009e+29 -5.2611966e+29 -5.3377944e+29 -5.2616459e+29 -5.1854315e+29 -5.1873965e+29 -5.2758828e+29 -5.3237377e+29 -5.3229784e+29 -5.2755053e+29 -5.3269425e+29 -5.2784897e+29 -5.2768859e+29 -5.3250364e+29 -5.3616272e+29 -5.3637561e+29 -5.3955481e+29 -5.393555e+29 -5.3602444e+29 -5.3910351e+29 -5.3921178e+29 -5.359301e+29 -5.2862905e+29 -5.2843953e+29 -5.3328216e+29 -5.3347709e+29 -5.3693723e+29 -5.3714812e+29 -5.4028036e+29 -5.4008914e+29 -5.3655925e+29 -5.3674501e+29 -5.3970113e+29 -5.3988872e+29 -5.2823455e+29 -5.3308257e+29 -5.3287209e+29 -5.2802097e+29 -5.3081372e+29 -5.3562358e+29 -5.3557335e+29 -5.3080755e+29 -5.309378e+29 -5.3584712e+29 -5.3571494e+29 -5.3085997e+29 -5.3965211e+29 -5.3943379e+29 -5.4216974e+29 -5.424136e+29 -5.3931684e+29 -5.3920802e+29 -5.4186096e+29 -5.4201129e+29 -5.2594005e+29 -5.2570123e+29 -5.3010825e+29 -5.3024149e+29 -5.2995219e+29 -5.2981784e+29 -5.2527053e+29 -5.254691e+29 -5.251143e+29 -5.252259e+29 -5.2986873e+29 -5.2977125e+29 -5.251391e+29 -5.2506623e+29 -5.2971596e+29 -5.2972339e+29 -5.3355536e+29 -5.3179429e+29 -5.3201847e+29 -5.3338398e+29 -5.3020164e+29 -5.2836923e+29 -5.2813846e+29 -5.2997685e+29 -5.2799956e+29 -5.2983001e+29 -5.2971793e+29 -5.2791974e+29 -5.3164077e+29 -5.3151349e+29 -5.3311806e+29 -5.3324802e+29 -5.3215454e+29 -5.3230452e+29 -5.3383946e+29 -5.3369745e+29 -5.3243816e+29 -5.3255211e+29 -5.3407939e+29 -5.3397111e+29 -5.2890373e+29 -5.2904109e+29 -5.3079054e+29 -5.3067639e+29 -5.2854948e+29 -5.2873208e+29 -5.30528e+29 -5.3036153e+29 -5.5153303e+29 -5.5259048e+29 -5.5162209e+29 -5.5250677e+29 -5.5440007e+29 -5.5349607e+29 -5.5340758e+29 -5.5432733e+29 -5.5361772e+29 -5.5374893e+29 -5.5464853e+29 -5.5451054e+29 -5.5188646e+29 -5.5284634e+29 -5.5271522e+29 -5.5174726e+29 -5.5397373e+29 -5.5403607e+29 -5.5496115e+29 -5.548897e+29 -5.5310377e+29 -5.521161e+29 -5.5207246e+29 -5.5305555e+29 -5.5202227e+29 -5.5299662e+29 -5.529319e+29 -5.5196739e+29 -5.539095e+29 -5.5482214e+29 -5.5474588e+29 -5.5384298e+29 -5.5564561e+29 -5.5573131e+29 -5.5665965e+29 -5.5656453e+29 -5.5579426e+29 -5.5587049e+29 -5.5681369e+29 -5.5672822e+29 -5.5750443e+29 -5.5861789e+29 -5.5760578e+29 -5.5850992e+29 -5.5778025e+29 -5.5880682e+29 -5.5870677e+29 -5.5768497e+29 -5.555335e+29 -5.5644897e+29 -5.5631423e+29 -5.553933e+29 -5.5839691e+29 -5.5739006e+29 -5.5725482e+29 -5.5825894e+29 -5.5718393e+29 -5.5712911e+29 -5.5812797e+29 -5.5818217e+29 -5.5623762e+29 -5.5530944e+29 -5.561806e+29 -5.5524596e+29 -5.4442129e+29 -5.462709e+29 -5.4609638e+29 -5.4424916e+29 -5.4661677e+29 -5.4481254e+29 -5.4459699e+29 -5.4644802e+29 -5.4822973e+29 -5.4834691e+29 -5.4963923e+29 -5.4958892e+29 -5.5091267e+29 -5.5095692e+29 -5.4953356e+29 -5.5086196e+29 -5.5081358e+29 -5.4948136e+29 -5.4806006e+29 -5.5073004e+29 -5.4927394e+29 -5.4939913e+29 -5.5059532e+29 -5.4917337e+29 -5.5047563e+29 -5.5039145e+29 -5.4909289e+29 -5.4786079e+29 -5.4592657e+29 -5.440966e+29 -5.4392574e+29 -5.4574089e+29 -5.4375944e+29 -5.4382198e+29 -5.4560233e+29 -5.4547378e+29 -5.4734685e+29 -5.4864555e+29 -5.4852942e+29 -5.4983695e+29 -5.4996878e+29 -5.4842053e+29 -5.4970797e+29 -5.4957773e+29 -5.4830911e+29 -5.4715811e+29 -5.4889271e+29 -5.4900254e+29 -5.5030186e+29 -5.5019799e+29 -5.4768181e+29 -5.4750442e+29 -5.4880081e+29 -5.4873211e+29 -5.5005903e+29 -5.5012063e+29 -5.5335655e+29 -5.5327483e+29 -5.5421019e+29 -5.5428583e+29 -5.5221402e+29 -5.5227337e+29 -5.5128178e+29 -5.5122087e+29 -5.5233959e+29 -5.5243145e+29 -5.5145001e+29 -5.5134833e+29 -5.5320929e+29 -5.5414084e+29 -5.540803e+29 -5.5314745e+29 -5.5519629e+29 -5.5511878e+29 -5.5604236e+29 -5.5612666e+29 -5.5806864e+29 -5.570709e+29 -5.5697511e+29 -5.5796189e+29 -5.5679529e+29 -5.5689064e+29 -5.5786098e+29 -5.577426e+29 -5.550535e+29 -5.5498932e+29 -5.5589056e+29 -5.559694e+29 -5.5653997e+29 -5.5669209e+29 -5.5746755e+29 -5.5761893e+29 -5.5580152e+29 -5.5490099e+29 -5.5563958e+29 -5.5473289e+29 -5.5456948e+29 -5.543967e+29 -5.5529831e+29 -5.55474e+29 -5.5637528e+29 -5.5619597e+29 -5.5714506e+29 -5.5731826e+29 -5.5212389e+29 -5.5113313e+29 -5.5098721e+29 -5.5196954e+29 -5.5069159e+29 -5.5084224e+29 -5.5181644e+29 -5.5165992e+29 -5.5273508e+29 -5.5365827e+29 -5.5349331e+29 -5.5257223e+29 -5.5398498e+29 -5.530536e+29 -5.5289116e+29 -5.5381769e+29 -5.4425065e+29 -5.4506239e+29 -5.4484179e+29 -5.4404631e+29 -5.4567927e+29 -5.4628097e+29 -5.4602252e+29 -5.4543543e+29 -5.4521742e+29 -5.4578325e+29 -5.4544941e+29 -5.4491274e+29 -5.4385977e+29 -5.4464028e+29 -5.4436469e+29 -5.4361274e+29 -5.4712447e+29 -5.4648641e+29 -5.4630131e+29 -5.4692234e+29 -5.4494019e+29 -5.4582655e+29 -5.4566142e+29 -5.447895e+29 -5.4611079e+29 -5.467281e+29 -5.4649657e+29 -5.4588805e+29 -5.4463328e+29 -5.4443479e+29 -5.4526475e+29 -5.4547332e+29 -5.4846057e+29 -5.4869326e+29 -5.4787972e+29 -5.4812483e+29 -5.4736107e+29 -5.4711546e+29 -5.4915248e+29 -5.4893298e+29 -5.4856936e+29 -5.4777795e+29 -5.4834986e+29 -5.4756883e+29 -5.501636e+29 -5.5039357e+29 -5.4991358e+29 -5.4966659e+29 -5.4793398e+29 -5.4821125e+29 -5.4690975e+29 -5.4663844e+29 -5.4738652e+29 -5.4766313e+29 -5.4876073e+29 -5.4762275e+29 -5.4729111e+29 -5.4841987e+29 -5.4940418e+29 -5.4910183e+29 -5.4602657e+29 -5.4637985e+29 -5.4710149e+29 -5.4674197e+29 -5.5070745e+29 -5.5177737e+29 -5.5097403e+29 -5.5150624e+29 -5.5334148e+29 -5.52563e+29 -5.5228778e+29 -5.5306692e+29 -5.528085e+29 -5.5305e+29 -5.5382823e+29 -5.5357732e+29 -5.5145695e+29 -5.522644e+29 -5.5202821e+29 -5.5122318e+29 -5.5463109e+29 -5.5437426e+29 -5.5518039e+29 -5.5543867e+29 -5.5602168e+29 -5.5628019e+29 -5.5710899e+29 -5.5684865e+29 -5.5548319e+29 -5.5576566e+29 -5.5629536e+29 -5.5658087e+29 -5.5413157e+29 -5.549303e+29 -5.5465422e+29 -5.5386157e+29 -5.5247823e+29 -5.5283481e+29 -5.5361475e+29 -5.5326173e+29 -5.5319869e+29 -5.5355958e+29 -5.5434743e+29 -5.5398296e+29 -5.5481017e+29 -5.5517847e+29 -5.5563128e+29 -5.5600109e+29 -5.5444404e+29 -5.5408738e+29 -5.5491045e+29 -5.5526623e+29 -5.5122368e+29 -5.5043501e+29 -5.5010689e+29 -5.5088714e+29 -5.5199736e+29 -5.5165169e+29 -5.5241542e+29 -5.527698e+29 -5.5095752e+29 -5.5130166e+29 -5.5205368e+29 -5.5170193e+29 -5.4975834e+29 -5.5054046e+29 -5.5020181e+29 -5.494238e+29 -5.5986639e+29 -5.5977746e+29 -5.6121771e+29 -5.613191e+29 -5.6224604e+29 -5.6318357e+29 -5.6306859e+29 -5.6214027e+29 -5.6203328e+29 -5.6191835e+29 -5.6283015e+29 -5.6294703e+29 -5.5968663e+29 -5.6111709e+29 -5.6100827e+29 -5.5956969e+29 -5.5944721e+29 -5.5931024e+29 -5.6075891e+29 -5.6088639e+29 -5.6180339e+29 -5.6259152e+29 -5.627228e+29 -5.6167283e+29 -5.6156109e+29 -5.6146966e+29 -5.623808e+29 -5.624735e+29 -5.5920503e+29 -5.6064771e+29 -5.605635e+29 -5.5913869e+29 -5.6365366e+29 -5.635231e+29 -5.6449547e+29 -5.6462462e+29 -5.656697e+29 -5.6674114e+29 -5.6660919e+29 -5.6553925e+29 -5.6542492e+29 -5.6649236e+29 -5.663898e+29 -5.653239e+29 -5.6340576e+29 -5.6330861e+29 -5.6427868e+29 -5.6437788e+29 -5.6413527e+29 -5.6512614e+29 -5.6499839e+29 -5.6401268e+29 -5.6388389e+29 -5.648629e+29 -5.6473394e+29 -5.6375972e+29 -5.6699876e+29 -5.6591871e+29 -5.6578443e+29 -5.6686139e+29 -5.6618824e+29 -5.6605374e+29 -5.6713701e+29 -5.672743e+29 -5.5889209e+29 -5.6010447e+29 -5.6025524e+29 -5.5875584e+29 -5.5908752e+29 -5.6038855e+29 -5.6049036e+29 -5.5899718e+29 -5.6127493e+29 -5.6139248e+29 -5.6217917e+29 -5.6230425e+29 -5.6113761e+29 -5.6097617e+29 -5.6186691e+29 -5.62033e+29 -5.6522935e+29 -5.6509232e+29 -5.6614126e+29 -5.6628521e+29 -5.632287e+29 -5.6406326e+29 -5.6419358e+29 -5.6310082e+29 -5.629498e+29 -5.6390574e+29 -5.6372542e+29 -5.627776e+29 -5.6493161e+29 -5.6474257e+29 -5.6578098e+29 -5.6597877e+29 -5.6261328e+29 -5.6243742e+29 -5.6336528e+29 -5.6354969e+29 -5.6455542e+29 -5.6558243e+29 -5.653726e+29 -5.6435849e+29 -5.6417723e+29 -5.6399457e+29 -5.6499666e+29 -5.6517824e+29 -5.6227722e+29 -5.631941e+29 -5.6300885e+29 -5.620951e+29 -5.586091e+29 -5.5995252e+29 -5.5980461e+29 -5.5847141e+29 -5.5817617e+29 -5.5835049e+29 -5.5967225e+29 -5.5950701e+29 -5.603619e+29 -5.6052686e+29 -5.6122019e+29 -5.6139136e+29 -5.6082339e+29 -5.6066376e+29 -5.6154035e+29 -5.6170903e+29 -5.6106811e+29 -5.6000284e+29 -5.602541e+29 -5.6082047e+29 -5.573359e+29 -5.5810672e+29 -5.5892181e+29 -5.5781733e+29 -5.5862769e+29 -5.5705117e+29 -5.5786781e+29 -5.5864471e+29 -5.5945438e+29 -5.5838746e+29 -5.5920241e+29 -5.5760955e+29 -5.6055362e+29 -5.5972647e+29 -5.5942682e+29 -5.60253e+29 -5.5675319e+29 -5.5751991e+29 -5.5716838e+29 -5.5798752e+29 -5.5832647e+29 -5.5639373e+29 -5.5602292e+29 -5.5680721e+29 -5.5763896e+29 -5.5644721e+29 -5.5729045e+29 -5.5565622e+29 -5.5810238e+29 -5.5844634e+29 -5.5927486e+29 -5.5893425e+29 -5.5912245e+29 -5.5994565e+29 -5.5960987e+29 -5.5878585e+29 -5.6268322e+29 -5.6235428e+29 -5.6335708e+29 -5.636764e+29 -5.6137492e+29 -5.6170896e+29 -5.6079995e+29 -5.6046388e+29 -5.5979125e+29 -5.6013323e+29 -5.6104125e+29 -5.6069415e+29 -5.6202084e+29 -5.6166492e+29 -5.6264905e+29 -5.6301932e+29 -5.6167054e+29 -5.6191168e+29 -5.6281953e+29 -5.6257917e+29 -5.6356291e+29 -5.638089e+29 -5.6456729e+29 -5.6481779e+29 -5.6329463e+29 -5.6429105e+29 -5.6398982e+29 -5.6299738e+29 -5.6140534e+29 -5.6111082e+29 -5.6202035e+29 -5.6231404e+29 -5.1387674e+29 -5.1378332e+29 -5.1347951e+29 -5.1283367e+29 -5.1206775e+29 -5.4730063e+29 -5.4736589e+29 -5.4961341e+29 -5.4954201e+29 -5.4295252e+29 -5.4304761e+29 -5.4532003e+29 -5.4525487e+29 -5.4304685e+29 -5.4298363e+29 -5.452626e+29 -5.4533658e+29 -5.473688e+29 -5.4730323e+29 -5.4954446e+29 -5.4959641e+29 -5.5907225e+29 -5.5653525e+29 -5.5665583e+29 -5.5891831e+29 -5.5435884e+29 -5.519686e+29 -5.5189753e+29 -5.54264e+29 -5.5191391e+29 -5.5422323e+29 -5.5424972e+29 -5.5194275e+29 -5.5646922e+29 -5.5881199e+29 -5.5867625e+29 -5.5637828e+29 -5.6680376e+29 -5.679225e+29 -5.6774796e+29 -5.6663816e+29 -5.6886246e+29 -5.6904444e+29 -5.7026349e+29 -5.7007013e+29 -5.6941381e+29 -5.7062305e+29 -5.7045091e+29 -5.6922899e+29 -5.6650849e+29 -5.6632613e+29 -5.6744063e+29 -5.6761224e+29 -5.6872417e+29 -5.6992774e+29 -5.6975599e+29 -5.6855089e+29 -5.6842041e+29 -5.6829723e+29 -5.6950813e+29 -5.6962387e+29 -5.661804e+29 -5.6730026e+29 -5.6716353e+29 -5.6603311e+29 -5.6385107e+29 -5.6400114e+29 -5.6497784e+29 -5.6512709e+29 -5.643449e+29 -5.6415677e+29 -5.6527964e+29 -5.6546417e+29 -5.6163356e+29 -5.6290471e+29 -5.6275883e+29 -5.6149853e+29 -5.6125844e+29 -5.6249946e+29 -5.6244775e+29 -5.6121877e+29 -5.6467997e+29 -5.6356847e+29 -5.6350719e+29 -5.6461373e+29 -5.6363528e+29 -5.6374084e+29 -5.6486865e+29 -5.6475197e+29 -5.6140452e+29 -5.6265104e+29 -5.6255891e+29 -5.6131193e+29 -5.6565671e+29 -5.6676589e+29 -5.6685193e+29 -5.6572885e+29 -5.6693586e+29 -5.6705702e+29 -5.6592372e+29 -5.6580189e+29 -5.6807181e+29 -5.6819997e+29 -5.692932e+29 -5.6942232e+29 -5.679771e+29 -5.6918807e+29 -5.6907767e+29 -5.6787891e+29 -5.6669389e+29 -5.6548074e+29 -5.6559586e+29 -5.6657925e+29 -5.6766917e+29 -5.6779042e+29 -5.6897564e+29 -5.6884376e+29 -5.6873143e+29 -5.6756025e+29 -5.6742903e+29 -5.6860023e+29 -5.653753e+29 -5.6525905e+29 -5.6634377e+29 -5.6647021e+29 -5.6117673e+29 -5.6239768e+29 -5.6230508e+29 -5.6109222e+29 -5.6090486e+29 -5.6100538e+29 -5.6220706e+29 -5.62098e+29 -5.631418e+29 -5.6325156e+29 -5.6434327e+29 -5.6423317e+29 -5.6335062e+29 -5.6345684e+29 -5.6455949e+29 -5.6444703e+29 -5.449676e+29 -5.4512829e+29 -5.4686087e+29 -5.466988e+29 -5.4853386e+29 -5.4975702e+29 -5.4970748e+29 -5.5098758e+29 -5.5101288e+29 -5.4966834e+29 -5.5095932e+29 -5.5096438e+29 -5.4966314e+29 -5.4840912e+29 -5.4973208e+29 -5.4975241e+29 -5.5087172e+29 -5.5086495e+29 -5.4864591e+29 -5.4861472e+29 -5.4972801e+29 -5.4976516e+29 -5.509833e+29 -5.5090881e+29 -5.4708073e+29 -5.4538563e+29 -5.4525857e+29 -5.46985e+29 -5.5240747e+29 -5.5333431e+29 -5.531639e+29 -5.5222647e+29 -5.5486502e+29 -5.5394733e+29 -5.538712e+29 -5.5481292e+29 -5.5421522e+29 -5.5512537e+29 -5.5496374e+29 -5.5405232e+29 -5.5303556e+29 -5.5208615e+29 -5.5199103e+29 -5.5294609e+29 -5.546123e+29 -5.5475731e+29 -5.556787e+29 -5.5552647e+29 -5.5384107e+29 -5.5287896e+29 -5.5277008e+29 -5.5371448e+29 -5.5265728e+29 -5.5358968e+29 -5.5346598e+29 -5.5253909e+29 -5.544765e+29 -5.5538843e+29 -5.5525951e+29 -5.5434987e+29 -5.5618492e+29 -5.5631766e+29 -5.5728119e+29 -5.5714324e+29 -5.5644784e+29 -5.5660102e+29 -5.5756647e+29 -5.5741097e+29 -5.5812773e+29 -5.5933222e+29 -5.5826825e+29 -5.5918739e+29 -5.5856218e+29 -5.5962809e+29 -5.5946975e+29 -5.5840221e+29 -5.5589247e+29 -5.5605515e+29 -5.5701595e+29 -5.568564e+29 -5.5905906e+29 -5.5784208e+29 -5.5799982e+29 -5.589066e+29 -5.577038e+29 -5.5774583e+29 -5.588128e+29 -5.5876745e+29 -5.5574596e+29 -5.5578911e+29 -5.5675197e+29 -5.5671043e+29 -5.4873668e+29 -5.4897934e+29 -5.5016144e+29 -5.4999007e+29 -5.5115276e+29 -5.513327e+29 -5.4985998e+29 -5.5100664e+29 -5.5092046e+29 -5.4978711e+29 -5.4922156e+29 -5.4935073e+29 -5.5047078e+29 -5.5053812e+29 -5.5176912e+29 -5.5167799e+29 -5.5038547e+29 -5.5028451e+29 -5.5146605e+29 -5.515746e+29 -5.4594841e+29 -5.460757e+29 -5.4773767e+29 -5.4761922e+29 -5.4571588e+29 -5.4738134e+29 -5.4718249e+29 -5.4549307e+29 -5.5591082e+29 -5.5582251e+29 -5.5679164e+29 -5.5686888e+29 -5.5576987e+29 -5.5575335e+29 -5.5671933e+29 -5.5674279e+29 -5.5783432e+29 -5.5880964e+29 -5.5776606e+29 -5.588679e+29 -5.5770087e+29 -5.5875886e+29 -5.5876973e+29 -5.5771831e+29 -5.5384789e+29 -5.5384647e+29 -5.5480563e+29 -5.5481246e+29 -5.5290462e+29 -5.5193868e+29 -5.5193544e+29 -5.5290406e+29 -5.5199803e+29 -5.5296342e+29 -5.5306243e+29 -5.5209033e+29 -5.539028e+29 -5.5486319e+29 -5.5495782e+29 -5.540002e+29 -5.5210751e+29 -5.5210401e+29 -5.5309454e+29 -5.5309924e+29 -5.5311651e+29 -5.5213918e+29 -5.5212665e+29 -5.5311328e+29 -5.5403961e+29 -5.5499471e+29 -5.5498881e+29 -5.5403964e+29 -5.5405416e+29 -5.5405134e+29 -5.5500559e+29 -5.5500843e+29 -5.5595508e+29 -5.5595573e+29 -5.5691232e+29 -5.5691763e+29 -5.5890934e+29 -5.5788437e+29 -5.5788002e+29 -5.5891179e+29 -5.578423e+29 -5.5787454e+29 -5.5889955e+29 -5.5886706e+29 -5.5592415e+29 -5.5594407e+29 -5.5690553e+29 -5.5687532e+29 -5.598604e+29 -5.6138712e+29 -5.6144884e+29 -5.5980601e+29 -5.6011518e+29 -5.6155428e+29 -5.6168508e+29 -5.5996617e+29 -5.6254338e+29 -5.626783e+29 -5.6367579e+29 -5.6354392e+29 -5.62444e+29 -5.6344642e+29 -5.633787e+29 -5.6237647e+29 -5.6480533e+29 -5.6596906e+29 -5.6494197e+29 -5.6583834e+29 -5.6628212e+29 -5.6524824e+29 -5.6508965e+29 -5.6612104e+29 -5.67222e+29 -5.6738182e+29 -5.6834878e+29 -5.6851095e+29 -5.670655e+29 -5.6694331e+29 -5.6807315e+29 -5.6819223e+29 -5.6055109e+29 -5.6069124e+29 -5.6224451e+29 -5.6210095e+29 -5.6309048e+29 -5.632366e+29 -5.6423805e+29 -5.6408508e+29 -5.6394008e+29 -5.6295211e+29 -5.6281054e+29 -5.6380012e+29 -5.6041462e+29 -5.6196412e+29 -5.6182452e+29 -5.6026045e+29 -5.6456071e+29 -5.646864e+29 -5.6572955e+29 -5.6561289e+29 -5.6673213e+29 -5.6684153e+29 -5.6787279e+29 -5.6797649e+29 -5.6657279e+29 -5.6664331e+29 -5.6771422e+29 -5.6778458e+29 -5.6446517e+29 -5.6551936e+29 -5.6544741e+29 -5.6439436e+29 -5.5979877e+29 -5.5981826e+29 -5.6135611e+29 -5.6136464e+29 -5.6234984e+29 -5.6334595e+29 -5.6331529e+29 -5.6233044e+29 -5.6234049e+29 -5.6236434e+29 -5.6331817e+29 -5.6330647e+29 -5.5986549e+29 -5.6137796e+29 -5.6141714e+29 -5.5992084e+29 -5.5997642e+29 -5.6138265e+29 -5.61427e+29 -5.599294e+29 -5.5997478e+29 -5.6145263e+29 -5.6144586e+29 -5.5999035e+29 -5.6238103e+29 -5.6238862e+29 -5.6332855e+29 -5.6334109e+29 -5.6235646e+29 -5.6329984e+29 -5.6325015e+29 -5.6230806e+29 -5.6431102e+29 -5.6429634e+29 -5.6532134e+29 -5.6530398e+29 -5.663806e+29 -5.6640542e+29 -5.6748008e+29 -5.6751537e+29 -5.6627652e+29 -5.6634039e+29 -5.6736254e+29 -5.6743091e+29 -5.6426448e+29 -5.6526784e+29 -5.652075e+29 -5.6420884e+29 -5.6435542e+29 -5.6540168e+29 -5.6535309e+29 -5.6431433e+29 -5.6429327e+29 -5.6532167e+29 -5.6531181e+29 -5.6429288e+29 -5.6753045e+29 -5.675579e+29 -5.6642721e+29 -5.664077e+29 -5.6652137e+29 -5.6646314e+29 -5.6760001e+29 -5.6766337e+29 -5.673103e+29 -5.6833226e+29 -5.6818205e+29 -5.6716486e+29 -5.6699459e+29 -5.6800496e+29 -5.6779821e+29 -5.6679278e+29 -5.6884666e+29 -5.6905677e+29 -5.7015631e+29 -5.6994414e+29 -5.7050243e+29 -5.6939346e+29 -5.6923412e+29 -5.7033729e+29 -5.735752e+29 -5.7374423e+29 -5.7475213e+29 -5.7491989e+29 -5.7261062e+29 -5.71538e+29 -5.7137284e+29 -5.7244361e+29 -5.7097125e+29 -5.7118595e+29 -5.7224897e+29 -5.7202825e+29 -5.7337335e+29 -5.7314625e+29 -5.7431452e+29 -5.7454549e+29 -5.7074932e+29 -5.7051647e+29 -5.7157056e+29 -5.7180128e+29 -5.7291317e+29 -5.7407665e+29 -5.7383735e+29 -5.7267919e+29 -5.7246223e+29 -5.7225915e+29 -5.7341197e+29 -5.7361536e+29 -5.7030322e+29 -5.7135525e+29 -5.7114556e+29 -5.7009083e+29 -5.6658577e+29 -5.6737326e+29 -5.6758449e+29 -5.6637645e+29 -5.6617469e+29 -5.6716434e+29 -5.669606e+29 -5.6597666e+29 -5.6798701e+29 -5.6819702e+29 -5.6906931e+29 -5.6928078e+29 -5.6863193e+29 -5.684085e+29 -5.6949083e+29 -5.6972467e+29 -5.7595863e+29 -5.7578873e+29 -5.7675377e+29 -5.769255e+29 -5.7558281e+29 -5.7654955e+29 -5.7631579e+29 -5.7535113e+29 -5.7510947e+29 -5.7583966e+29 -5.7606857e+29 -5.7487536e+29 -5.7465009e+29 -5.7561004e+29 -5.7538165e+29 -5.7442948e+29 -5.6832621e+29 -5.6924752e+29 -5.6938097e+29 -5.6819429e+29 -5.6805684e+29 -5.6910872e+29 -5.6897227e+29 -5.6791807e+29 -5.7006648e+29 -5.7021027e+29 -5.7120568e+29 -5.7135538e+29 -5.7048066e+29 -5.7149711e+29 -5.7162598e+29 -5.703474e+29 -5.7269163e+29 -5.7256473e+29 -5.7366216e+29 -5.7379269e+29 -5.749583e+29 -5.7617685e+29 -5.7603793e+29 -5.7482439e+29 -5.7467752e+29 -5.7588192e+29 -5.7571102e+29 -5.7451166e+29 -5.7242403e+29 -5.7227003e+29 -5.7336232e+29 -5.7352086e+29 -5.7435665e+29 -5.7419713e+29 -5.7537695e+29 -5.7554134e+29 -5.7304841e+29 -5.7320905e+29 -5.721204e+29 -5.719605e+29 -5.7181489e+29 -5.716708e+29 -5.7274547e+29 -5.7289206e+29 -5.7403213e+29 -5.7387734e+29 -5.7505852e+29 -5.7521641e+29 -5.6778868e+29 -5.6883612e+29 -5.6870622e+29 -5.6765895e+29 -5.6952498e+29 -5.6965824e+29 -5.7076954e+29 -5.7063157e+29 -5.6992915e+29 -5.6978741e+29 -5.7090439e+29 -5.7106161e+29 -5.6753787e+29 -5.685785e+29 -5.6846096e+29 -5.6743004e+29 -5.7659467e+29 -5.7642155e+29 -5.7739653e+29 -5.7757366e+29 -5.7626672e+29 -5.7724171e+29 -5.770857e+29 -5.7610897e+29 -5.7812405e+29 -5.7826089e+29 -5.7725469e+29 -5.7711603e+29 -5.7776859e+29 -5.7795632e+29 -5.7695271e+29 -5.7678125e+29 -5.6508631e+29 -5.656707e+29 -5.6608569e+29 -5.6467231e+29 -5.6646261e+29 -5.6680532e+29 -5.6581214e+29 -5.654658e+29 -5.6323477e+29 -5.6289118e+29 -5.6383301e+29 -5.6418625e+29 -5.6219668e+29 -5.6254553e+29 -5.6313757e+29 -5.6348678e+29 -5.6520679e+29 -5.6483428e+29 -5.6591276e+29 -5.6629387e+29 -5.6448333e+29 -5.6519608e+29 -5.6555133e+29 -5.6412903e+29 -5.6728186e+29 -5.6689098e+29 -5.6791161e+29 -5.6831222e+29 -5.6939693e+29 -5.7054599e+29 -5.7013663e+29 -5.6899053e+29 -5.6858783e+29 -5.6820722e+29 -5.6932302e+29 -5.6971765e+29 -5.6651723e+29 -5.675238e+29 -5.6715435e+29 -5.6615767e+29 -5.6184743e+29 -5.627977e+29 -5.6243667e+29 -5.6147768e+29 -5.6108014e+29 -5.6204297e+29 -5.616185e+29 -5.6065473e+29 -5.6304752e+29 -5.6262939e+29 -5.6370388e+29 -5.6411776e+29 -5.6378535e+29 -5.6485087e+29 -5.6450058e+29 -5.6343229e+29 -5.6578306e+29 -5.66756e+29 -5.6650032e+29 -5.6553283e+29 -5.6525078e+29 -5.6621546e+29 -5.6592767e+29 -5.6496145e+29 -5.6693457e+29 -5.6723984e+29 -5.6801718e+29 -5.6833002e+29 -5.6777962e+29 -5.6752393e+29 -5.6861956e+29 -5.6887791e+29 -5.6987395e+29 -5.6960976e+29 -5.7064533e+29 -5.7091675e+29 -5.7202744e+29 -5.7291643e+29 -5.7320434e+29 -5.7174516e+29 -5.7143116e+29 -5.7109646e+29 -5.7225808e+29 -5.7259116e+29 -5.6931466e+29 -5.7034127e+29 -5.7001803e+29 -5.6899876e+29 -5.680251e+29 -5.6868441e+29 -5.6904186e+29 -5.6766146e+29 -5.6938425e+29 -5.6969793e+29 -5.6868798e+29 -5.6837039e+29 -5.7045725e+29 -5.7077093e+29 -5.7193391e+29 -5.7160033e+29 -5.7011804e+29 -5.7126447e+29 -5.7090884e+29 -5.6976086e+29 -5.646553e+29 -5.6562185e+29 -5.6529449e+29 -5.6432732e+29 -5.6398007e+29 -5.6494266e+29 -5.6455953e+29 -5.6360243e+29 -5.6595576e+29 -5.6667306e+29 -5.6704258e+29 -5.6557826e+29 -5.6663024e+29 -5.6771244e+29 -5.6739066e+29 -5.6630498e+29 -5.7773222e+29 -5.7652553e+29 -5.7636459e+29 -5.7756714e+29 -5.7740981e+29 -5.7620857e+29 -5.7603695e+29 -5.7723879e+29 -5.7882591e+29 -5.8013445e+29 -5.8031557e+29 -5.7899735e+29 -5.7866218e+29 -5.784998e+29 -5.7980515e+29 -5.7996242e+29 -5.7362609e+29 -5.7379606e+29 -5.7485795e+29 -5.7502256e+29 -5.7395294e+29 -5.7411004e+29 -5.7517966e+29 -5.7533696e+29 -5.7163568e+29 -5.7178663e+29 -5.7292101e+29 -5.7276764e+29 -5.7145882e+29 -5.7260564e+29 -5.7242197e+29 -5.7126779e+29 -5.7080271e+29 -5.7195441e+29 -5.7183155e+29 -5.7068082e+29 -5.7110436e+29 -5.7225513e+29 -5.7209871e+29 -5.7094373e+29 -5.7328803e+29 -5.7345759e+29 -5.7451485e+29 -5.7469477e+29 -5.7314564e+29 -5.7302092e+29 -5.7425419e+29 -5.7437657e+29 -5.7570578e+29 -5.7588032e+29 -5.7708579e+29 -5.7691955e+29 -5.7819009e+29 -5.7835017e+29 -5.7965873e+29 -5.7950276e+29 -5.7936836e+29 -5.7805372e+29 -5.7792919e+29 -5.7924402e+29 -5.7556728e+29 -5.7677996e+29 -5.7665623e+29 -5.7544522e+29 -5.7058824e+29 -5.7162458e+29 -5.7173683e+29 -5.7047536e+29 -5.7150808e+29 -5.703671e+29 -5.7025202e+29 -5.7138064e+29 -5.7255742e+29 -5.7269267e+29 -5.7377519e+29 -5.7391584e+29 -5.729268e+29 -5.7404322e+29 -5.7416024e+29 -5.7281043e+29 -5.753448e+29 -5.7522044e+29 -5.7641468e+29 -5.7654791e+29 -5.7781411e+29 -5.7912689e+29 -5.7897392e+29 -5.7767201e+29 -5.7752816e+29 -5.7881666e+29 -5.7864738e+29 -5.7736482e+29 -5.7508928e+29 -5.7494269e+29 -5.7612502e+29 -5.7627905e+29 -5.7721655e+29 -5.7705868e+29 -5.7832139e+29 -5.7848386e+29 -5.7581734e+29 -5.7597983e+29 -5.747997e+29 -5.7463877e+29 -5.7448916e+29 -5.7435331e+29 -5.755225e+29 -5.756606e+29 -5.7689499e+29 -5.7674905e+29 -5.7801461e+29 -5.7816425e+29 -5.7126145e+29 -5.7013895e+29 -5.7000894e+29 -5.711211e+29 -5.6975427e+29 -5.7099021e+29 -5.6988897e+29 -5.7085603e+29 -5.7332964e+29 -5.7213355e+29 -5.7200334e+29 -5.7319817e+29 -5.724253e+29 -5.7227903e+29 -5.7348026e+29 -5.736346e+29 -5.6877099e+29 -5.6870929e+29 -5.6981997e+29 -5.6988603e+29 -5.7104759e+29 -5.7097612e+29 -5.721701e+29 -5.7224806e+29 -5.7203911e+29 -5.7210539e+29 -5.7092282e+29 -5.7086963e+29 -5.6866477e+29 -5.6976986e+29 -5.6973226e+29 -5.6863105e+29 -5.7336647e+29 -5.732821e+29 -5.7442665e+29 -5.7451502e+29 -5.7572903e+29 -5.7699473e+29 -5.7688693e+29 -5.7563258e+29 -5.7553592e+29 -5.7544454e+29 -5.7668223e+29 -5.7678139e+29 -5.7320062e+29 -5.7433413e+29 -5.7425101e+29 -5.7312652e+29 -5.6860005e+29 -5.6855607e+29 -5.6962738e+29 -5.6968565e+29 -5.7081372e+29 -5.7197887e+29 -5.7189978e+29 -5.7074394e+29 -5.7066984e+29 -5.7058685e+29 -5.7172483e+29 -5.7181413e+29 -5.6849918e+29 -5.6956074e+29 -5.6948278e+29 -5.6842295e+29 -5.7409486e+29 -5.7418203e+29 -5.7306407e+29 -5.7297957e+29 -5.7288572e+29 -5.7399585e+29 -5.7389376e+29 -5.7278632e+29 -5.7506552e+29 -5.7517133e+29 -5.7639762e+29 -5.7628849e+29 -5.7536329e+29 -5.7650046e+29 -5.7659753e+29 -5.7527068e+29 -5.7769323e+29 -5.7759633e+29 -5.7860971e+29 -5.7871455e+29 -5.7749073e+29 -5.7737504e+29 -5.7838458e+29 -5.78505e+29 -5.778901e+29 -5.7892589e+29 -5.788199e+29 -5.7778794e+29 -5.7914814e+29 -5.7811101e+29 -5.7799889e+29 -5.7903571e+29 -5.7774583e+29 -5.7788167e+29 -5.7661012e+29 -5.7648285e+29 -5.7395323e+29 -5.73836e+29 -5.7498771e+29 -5.7511968e+29 -5.7421966e+29 -5.7538502e+29 -5.7526005e+29 -5.7408534e+29 -5.7634034e+29 -5.7760785e+29 -5.7747131e+29 -5.7620085e+29 -5.6961286e+29 -5.6945637e+29 -5.705681e+29 -5.7071908e+29 -5.7187273e+29 -5.7307986e+29 -5.7294e+29 -5.7172962e+29 -5.7159784e+29 -5.7281055e+29 -5.7270836e+29 -5.7149212e+29 -5.6930873e+29 -5.7042861e+29 -5.7031167e+29 -5.6918845e+29 -5.6908863e+29 -5.6899031e+29 -5.7010906e+29 -5.7020976e+29 -5.7138593e+29 -5.7260067e+29 -5.7248657e+29 -5.7127797e+29 -5.7118847e+29 -5.7239073e+29 -5.7231717e+29 -5.7111597e+29 -5.6890304e+29 -5.7002096e+29 -5.6994984e+29 -5.6882933e+29 -5.7361675e+29 -5.7373196e+29 -5.7477609e+29 -5.7488777e+29 -5.7610064e+29 -5.7599356e+29 -5.7725818e+29 -5.7736441e+29 -5.7708389e+29 -5.7716713e+29 -5.7589684e+29 -5.7580902e+29 -5.7351547e+29 -5.7458413e+29 -5.7467454e+29 -5.7343077e+29 -5.7933547e+29 -5.8063215e+29 -5.8048135e+29 -5.7916317e+29 -5.3857351e+29 -5.3922537e+29 -5.3997243e+29 -5.3849833e+29 -5.3924796e+29 -5.37849e+29 -5.3797497e+29 -5.3745457e+29 -5.367055e+29 -5.3724266e+29 -5.3786174e+29 -5.3812349e+29 -5.3946244e+29 -5.3967658e+29 -5.3999061e+29 -5.3942695e+29 -5.3910202e+29 -5.3889284e+29 -5.384141e+29 -5.3868699e+29 -5.3894814e+29 -5.3836883e+29 -5.4041905e+29 -5.4065463e+29 -5.4097216e+29 -5.4050356e+29 -5.4019435e+29 -5.3997118e+29 -5.4082009e+29 -5.4129522e+29 -5.4168937e+29 -5.4121258e+29 -5.3975581e+29 -5.4031271e+29 -5.4070467e+29 -5.4014949e+29 -5.3864202e+29 -5.3923455e+29 -5.3960108e+29 -5.3898934e+29 -5.3835926e+29 -5.3803271e+29 -5.3739792e+29 -5.3772737e+29 -5.3777271e+29 -5.375402e+29 -5.3728341e+29 -5.3664442e+29 -5.3691177e+29 -5.3714063e+29 -5.4260552e+29 -5.4228124e+29 -5.4294291e+29 -5.4323797e+29 -5.4363457e+29 -5.4405365e+29 -5.4377219e+29 -5.4334909e+29 -5.4310005e+29 -5.4284786e+29 -5.4326363e+29 -5.4351458e+29 -5.4178773e+29 -5.4203135e+29 -5.4269231e+29 -5.4244587e+29 -5.438476e+29 -5.4451056e+29 -5.4418444e+29 -5.4355583e+29 -5.4492852e+29 -5.4457006e+29 -5.4499729e+29 -5.4537596e+29 -5.4424231e+29 -5.446444e+29 -5.443268e+29 -5.4392323e+29 -5.4354903e+29 -5.4387025e+29 -5.4326027e+29 -5.4292778e+29 -5.4727501e+29 -5.4686337e+29 -5.4592116e+29 -5.4656923e+29 -5.461699e+29 -5.4552838e+29 -5.4648699e+29 -5.461385e+29 -5.4515946e+29 -5.4482959e+29 -5.4545104e+29 -5.4579071e+29 -5.4736283e+29 -5.4701204e+29 -5.4815663e+29 -5.4774967e+29 -5.4586362e+29 -5.4557096e+29 -5.4428147e+29 -5.4456474e+29 -5.4518016e+29 -5.4489599e+29 -5.4671707e+29 -5.4642108e+29 -5.4529685e+29 -5.4613404e+29 -5.4586792e+29 -5.4503153e+29 -5.4402083e+29 -5.4462722e+29 -5.443641e+29 -5.437618e+29 -5.4121983e+29 -5.4146848e+29 -5.4178627e+29 -5.4140051e+29 -5.4108219e+29 -5.4083843e+29 -5.4235984e+29 -5.4201583e+29 -5.4173068e+29 -5.4210037e+29 -5.4177287e+29 -5.4150721e+29 -5.4281851e+29 -5.4309299e+29 -5.426967e+29 -5.4242566e+29 -5.4250225e+29 -5.4211015e+29 -5.417223e+29 -5.4211773e+29 -5.4357368e+29 -5.4456236e+29 -5.448452e+29 -5.4389368e+29 -5.4416995e+29 -5.4329891e+29 -5.4389038e+29 -5.4425808e+29 -5.4321513e+29 -5.4358522e+29 -5.4261178e+29 -5.4298821e+29 -5.4495823e+29 -5.456121e+29 -5.4459532e+29 -5.4524417e+29 -5.455478e+29 -5.4621084e+29 -5.4526464e+29 -5.4592232e+29 -5.4190312e+29 -5.4247367e+29 -5.4063752e+29 -5.4119639e+29 -5.4179894e+29 -5.4123493e+29 -5.4347166e+29 -5.4299124e+29 -5.4279209e+29 -5.4218509e+29 -5.4170615e+29 -5.4231285e+29 -5.4317406e+29 -5.4383149e+29 -5.4259951e+29 -5.4325545e+29 -5.4369878e+29 -5.4435127e+29 -5.4417775e+29 -5.4483135e+29 -5.4066352e+29 -5.4130849e+29 -5.4065889e+29 -5.4006778e+29 -5.4001685e+29 -5.3943753e+29 -5.4201183e+29 -5.4280802e+29 -5.4136101e+29 -5.4214627e+29 -5.3815039e+29 -5.3928796e+29 -5.3999062e+29 -5.3879275e+29 -5.3935534e+29 -5.3868048e+29 -5.4067504e+29 -5.4145162e+29 -5.3995631e+29 -5.4071386e+29 -5.3496953e+29 -5.3531926e+29 -5.3586452e+29 -5.3616097e+29 -5.3641801e+29 -5.3562723e+29 -5.370375e+29 -5.3669373e+29 -5.3592847e+29 -5.3627605e+29 -5.4703826e+29 -5.47326e+29 -5.4802512e+29 -5.4773126e+29 -5.4873793e+29 -5.4947069e+29 -5.4916249e+29 -5.4843561e+29 -5.5007766e+29 -5.4935624e+29 -5.4904693e+29 -5.4977822e+29 -5.4864392e+29 -5.4793555e+29 -5.4762564e+29 -5.4833091e+29 -5.5003983e+29 -5.4967607e+29 -5.5039577e+29 -5.5076637e+29 -5.5149713e+29 -5.5078693e+29 -5.504193e+29 -5.5114524e+29 -5.5008339e+29 -5.4899156e+29 -5.4938252e+29 -5.4970385e+29 -5.4861245e+29 -5.493274e+29 -5.4896788e+29 -5.4825547e+29 -5.5114257e+29 -5.515188e+29 -5.5228806e+29 -5.5191384e+29 -5.5299101e+29 -5.522304e+29 -5.5189409e+29 -5.5265567e+29 -5.5456763e+29 -5.5347174e+29 -5.5380318e+29 -5.542366e+29 -5.5311079e+29 -5.5273929e+29 -5.5351033e+29 -5.5388004e+29 -5.505284e+29 -5.5081886e+29 -5.5158386e+29 -5.5128693e+29 -5.5317042e+29 -5.520933e+29 -5.5240359e+29 -5.5284523e+29 -5.5145246e+29 -5.5178127e+29 -5.5252086e+29 -5.5218059e+29 -5.5022071e+29 -5.4990628e+29 -5.506589e+29 -5.5097984e+29 -5.5025555e+29 -5.4914448e+29 -5.495952e+29 -5.4982368e+29 -5.4885157e+29 -5.481506e+29 -5.4767207e+29 -5.4837753e+29 -5.4660654e+29 -5.4714963e+29 -5.4785933e+29 -5.473266e+29 -5.4863244e+29 -5.4932814e+29 -5.4879102e+29 -5.4809918e+29 -5.5078251e+29 -5.5113169e+29 -5.5183075e+29 -5.5147404e+29 -5.4929402e+29 -5.4961764e+29 -5.503473e+29 -5.5001055e+29 -5.4855727e+29 -5.4894086e+29 -5.496427e+29 -5.492499e+29 -5.4999531e+29 -5.5040406e+29 -5.5108949e+29 -5.5066538e+29 -5.4629789e+29 -5.4691107e+29 -5.4654263e+29 -5.4593249e+29 -5.475327e+29 -5.4690708e+29 -5.4661608e+29 -5.472368e+29 -5.4789722e+29 -5.4819467e+29 -5.4889515e+29 -5.4858587e+29 -5.4756117e+29 -5.4824325e+29 -5.4786635e+29 -5.4718734e+29 -5.4504732e+29 -5.4551981e+29 -5.4613018e+29 -5.4565946e+29 -5.4630441e+29 -5.4677978e+29 -5.4745553e+29 -5.4697629e+29 -5.4522277e+29 -5.457815e+29 -5.4644949e+29 -5.4590073e+29 -5.4452965e+29 -5.4514288e+29 -5.4458105e+29 -5.4396383e+29 -5.4276858e+29 -5.4336321e+29 -5.4401298e+29 -5.4342694e+29 -5.4401211e+29 -5.4465347e+29 -5.4533473e+29 -5.446884e+29 -5.4397934e+29 -5.433023e+29 -5.4257528e+29 -5.4326518e+29 -5.4206912e+29 -5.4266312e+29 -5.4193252e+29 -5.4133513e+29 -5.4117076e+29 -5.4186857e+29 -5.4256495e+29 -5.4186588e+29 -5.4120519e+29 -5.4059796e+29 -5.3988939e+29 -5.4050453e+29 -5.3921023e+29 -5.3981611e+29 -5.4045993e+29 -5.4114398e+29 -5.456246e+29 -5.4415513e+29 -5.4487352e+29 -5.4493095e+29 -5.440375e+29 -5.4328969e+29 -5.4257526e+29 -5.4331201e+29 -5.4183438e+29 -5.4256258e+29 -5.4187889e+29 -5.4339946e+29 -5.4416361e+29 -5.4331173e+29 -5.4262939e+29 -5.4762709e+29 -5.4754568e+29 -5.4822097e+29 -5.4692356e+29 -5.4603671e+29 -5.4675594e+29 -5.461164e+29 -5.4538794e+29 -5.4626064e+29 -5.4557221e+29 -5.4629837e+29 -5.4699097e+29 -5.4469251e+29 -5.4399844e+29 -5.4474642e+29 -5.4543515e+29 -5.4953883e+29 -5.5046987e+29 -5.50075e+29 -5.5100213e+29 -5.5097688e+29 -5.5189193e+29 -5.514789e+29 -5.5056458e+29 -5.5328272e+29 -5.5419314e+29 -5.5383147e+29 -5.5453886e+29 -5.5491096e+29 -5.5293241e+29 -5.5395174e+29 -5.5489502e+29 -5.5455458e+29 -5.5527987e+29 -5.5563945e+29 -5.5362064e+29 -5.5603679e+29 -5.5640952e+29 -5.5720458e+29 -5.5682133e+29 -5.5566129e+29 -5.5643736e+29 -5.5604782e+29 -5.5528024e+29 -5.5991123e+29 -5.5952664e+29 -5.6053507e+29 -5.6090393e+29 -5.5854748e+29 -5.5893767e+29 -5.5803839e+29 -5.5764921e+29 -5.5685707e+29 -5.5725612e+29 -5.5814871e+29 -5.5774176e+29 -5.5912775e+29 -5.5871348e+29 -5.5971503e+29 -5.6013951e+29 -5.6064472e+29 -5.616231e+29 -5.6126564e+29 -5.602805e+29 -5.6132797e+29 -5.6231218e+29 -5.6196925e+29 -5.6098558e+29 -5.5913171e+29 -5.5947246e+29 -5.6001952e+29 -5.6035935e+29 -5.5878699e+29 -5.5841459e+29 -5.5931131e+29 -5.5968133e+29 -5.5535062e+29 -5.5630274e+29 -5.5705613e+29 -5.5598645e+29 -5.5672678e+29 -5.5502747e+29 -5.5467045e+29 -5.556289e+29 -5.5637243e+29 -5.5525372e+29 -5.5600139e+29 -5.5429871e+29 -5.5714907e+29 -5.56778e+29 -5.5757777e+29 -5.5795039e+29 -5.578359e+29 -5.5863941e+29 -5.5830016e+29 -5.5750009e+29 -5.5259818e+29 -5.5355829e+29 -5.5223067e+29 -5.5317415e+29 -5.5183561e+29 -5.5276949e+29 -5.5232988e+29 -5.5140016e+29 -5.3259276e+29 -5.3341882e+29 -5.324004e+29 -5.3418179e+29 -5.3510442e+29 -5.3547509e+29 -5.3456621e+29 -5.3416291e+29 -5.3469303e+29 -5.3376565e+29 -5.3320095e+29 -5.3910903e+29 -5.3853016e+29 -5.3812991e+29 -5.3869234e+29 -5.3956929e+29 -5.3915144e+29 -5.3956223e+29 -5.3999445e+29 -5.3768248e+29 -5.3822869e+29 -5.3771808e+29 -5.3719528e+29 -5.3867067e+29 -5.3906839e+29 -5.3851824e+29 -5.3813836e+29 -5.3685705e+29 -5.3616196e+29 -5.3631155e+29 -5.3563133e+29 -5.3677478e+29 -5.373201e+29 -5.3805832e+29 -5.3751343e+29 -5.3716026e+29 -5.3770274e+29 -5.3693735e+29 -5.3659063e+29 -5.3591052e+29 -5.3626929e+29 -5.3430207e+29 -5.3500814e+29 -5.3505001e+29 -5.3572653e+29 -5.3619893e+29 -5.3550679e+29 -5.336725e+29 -5.3628013e+29 -5.3598873e+29 -5.3495835e+29 -5.3516187e+29 -5.3350209e+29 -5.3838865e+29 -5.38102e+29 -5.3586645e+29 -5.3793702e+29 -5.378548e+29 -5.3587376e+29 -5.3343775e+29 -5.3487564e+29 -5.3480649e+29 -5.3336702e+29 -5.3410381e+29 -5.3654055e+29 -5.3665735e+29 -5.3564586e+29 -5.3541423e+29 -5.3389785e+29 -5.3447612e+29 -5.3605847e+29 -5.3584642e+29 -5.3427683e+29 -5.3688388e+29 -5.3719596e+29 -5.394334e+29 -5.3915074e+29 -5.3889748e+29 -5.3868238e+29 -5.4000683e+29 -5.4021393e+29 -5.3936281e+29 -5.3918614e+29 -5.4090293e+29 -5.4067358e+29 -5.4147442e+29 -5.4123088e+29 -5.4116046e+29 -5.4147445e+29 -5.4172311e+29 -5.4204985e+29 -5.3986645e+29 -5.4075799e+29 -5.4045945e+29 -5.3957029e+29 -5.4178791e+29 -5.4210057e+29 -5.4269519e+29 -5.4236688e+29 -5.4238176e+29 -5.4264596e+29 -5.4298044e+29 -5.4325558e+29 -5.4071036e+29 -5.4097699e+29 -5.418948e+29 -5.4163786e+29 -5.4016556e+29 -5.4044219e+29 -5.4136143e+29 -5.4106568e+29 -5.33353e+29 -5.3307807e+29 -5.3418205e+29 -5.352632e+29 -5.3448387e+29 -5.3560933e+29 -5.3704684e+29 -5.3667833e+29 -5.3491364e+29 -5.3628125e+29 -5.3586402e+29 -5.3454374e+29 -5.3243375e+29 -5.3278067e+29 -5.3347835e+29 -5.3385225e+29 -5.3390855e+29 -5.3382504e+29 -5.3499835e+29 -5.3617361e+29 -5.3510243e+29 -5.363372e+29 -5.3787225e+29 -5.376978e+29 -5.3602791e+29 -5.3586391e+29 -5.3732809e+29 -5.3752786e+29 -5.3472043e+29 -5.3488515e+29 -5.3373227e+29 -5.3357482e+29 -5.3910922e+29 -5.397627e+29 -5.3946757e+29 -5.3885066e+29 -5.4019525e+29 -5.3950779e+29 -5.3932238e+29 -5.400005e+29 -5.4055237e+29 -5.4075185e+29 -5.4124979e+29 -5.4103842e+29 -5.3995684e+29 -5.4029273e+29 -5.4076396e+29 -5.4039937e+29 -5.3484078e+29 -5.337846e+29 -5.3425796e+29 -5.3534154e+29 -5.332027e+29 -5.3225633e+29 -5.3185395e+29 -5.3276411e+29 -5.3246927e+29 -5.332085e+29 -5.3221424e+29 -5.3133463e+29 -5.3060537e+29 -5.3147275e+29 -5.3425263e+29 -5.3350222e+29 -5.2660563e+29 -5.2751198e+29 -5.2648638e+29 -5.2758613e+29 -5.2870817e+29 -5.2843997e+29 -5.2329849e+29 -5.2233104e+29 -5.2539988e+29 -5.2542065e+29 -5.242025e+29 -5.2218723e+29 -5.242672e+29 -5.2624616e+29 -5.2496185e+29 -5.2756626e+29 -5.2629054e+29 -5.2504812e+29 -5.2754085e+29 -5.233853e+29 -5.2551136e+29 -5.2539238e+29 -5.2429379e+29 -5.2228594e+29 -5.2215526e+29 -5.2417793e+29 -5.2878323e+29 -5.2866459e+29 -5.2852219e+29 -5.2858506e+29 -5.2374587e+29 -5.2537313e+29 -5.2570455e+29 -5.2435855e+29 -5.289395e+29 -5.288154e+29 -5.2809288e+29 -5.2823895e+29 -5.2798197e+29 -5.2792728e+29 -5.2976961e+29 -5.2985947e+29 -5.3114791e+29 -5.310295e+29 -5.3143091e+29 -5.3012868e+29 -5.2997721e+29 -5.3127215e+29 -5.3244581e+29 -5.3259741e+29 -5.338877e+29 -5.3403576e+29 -5.3230685e+29 -5.3215437e+29 -5.3351082e+29 -5.3372053e+29 -5.3312121e+29 -5.3325231e+29 -5.3202086e+29 -5.3193086e+29 -5.3096189e+29 -5.297241e+29 -5.2968903e+29 -5.3088896e+29 -5.2969347e+29 -5.3086128e+29 -5.3083858e+29 -5.297196e+29 -5.3186406e+29 -5.3178027e+29 -5.329576e+29 -5.3305283e+29 -5.2790209e+29 -5.2790858e+29 -5.2802025e+29 -5.2794825e+29 -5.2277376e+29 -5.2604521e+29 -5.2591812e+29 -5.2490512e+29 -5.2300794e+29 -5.2475805e+29 -5.2930404e+29 -5.2922348e+29 -5.2577747e+29 -5.2908343e+29 -5.2892047e+29 -5.2561155e+29 -5.2457899e+29 -5.2253811e+29 -5.2240236e+29 -5.2440568e+29 -5.3218802e+29 -5.3259436e+29 -5.3222268e+29 -5.3261557e+29 -5.3319725e+29 -5.332357e+29 -5.3139719e+29 -5.3046407e+29 -5.3037642e+29 -5.313222e+29 -5.3006775e+29 -5.3024168e+29 -5.3119283e+29 -5.3101154e+29 -5.3207441e+29 -5.3249825e+29 -5.3189628e+29 -5.3233012e+29 -5.329749e+29 -5.3312364e+29 -5.3113184e+29 -5.313946e+29 -5.3137828e+29 -5.3169972e+29 -5.3222889e+29 -5.3188813e+29 -5.3156258e+29 -5.3193273e+29 -5.317369e+29 -5.3214442e+29 -5.3276182e+29 -5.3251297e+29 -5.2980232e+29 -5.2993136e+29 -5.308694e+29 -5.3072218e+29 -5.2969868e+29 -5.3058548e+29 -5.3041055e+29 -5.2958187e+29 -5.3137787e+29 -5.3170344e+29 -5.3074311e+29 -5.3106865e+29 -5.310412e+29 -5.3134513e+29 -5.304114e+29 -5.2971886e+29 -5.2951616e+29 -5.3013746e+29 -5.2927754e+29 -5.2979538e+29 -5.2925352e+29 -5.2887345e+29 -5.3032258e+29 -5.3059623e+29 -5.2966582e+29 -5.2986732e+29 -5.3011108e+29 -5.3084129e+29 -5.2233685e+29 -5.2203479e+29 -5.2164041e+29 -5.2176299e+29 -5.2156936e+29 -5.213989e+29 -5.2136453e+29 -5.2152687e+29 -5.2131875e+29 -5.2179748e+29 -5.2100455e+29 -5.2089241e+29 -5.2081155e+29 -5.205326e+29 -5.2061697e+29 -5.2084689e+29 -5.2160784e+29 -5.2162054e+29 -5.2303736e+29 -5.220816e+29 -5.2500783e+29 -5.246751e+29 -5.2095971e+29 -5.2084048e+29 -5.2166418e+29 -5.2343952e+29 -5.2722068e+29 -5.2688801e+29 -5.2558026e+29 -5.2331536e+29 -5.2210168e+29 -5.2370352e+29 -5.2491271e+29 -5.2122532e+29 -5.2405567e+29 -5.3153724e+29 -5.3110192e+29 -5.3283389e+29 -5.3230528e+29 -5.3355505e+29 -5.3319014e+29 -5.2674578e+29 -5.2668619e+29 -5.3056862e+29 -5.3158891e+29 -5.306164e+29 -5.2979371e+29 -5.2883719e+29 -5.2963001e+29 -5.2791398e+29 -5.2803738e+29 -5.2889296e+29 -5.2904246e+29 -5.2841255e+29 -5.2859981e+29 -5.2770395e+29 -5.276072e+29 -5.2708095e+29 -5.2691888e+29 -5.2657253e+29 -5.2716714e+29 -5.279472e+29 -5.2823279e+29 -5.2749045e+29 -5.2731692e+29 -5.2675499e+29 -5.2564414e+29 -5.2643846e+29 -5.2619523e+29 -5.2555959e+29 -5.2947093e+29 -5.3004934e+29 -5.3047569e+29 -5.3160215e+29 -5.2622016e+29 -5.2664253e+29 -5.2380672e+29 -5.3708959e+29 -5.3396701e+29 -5.3444787e+29 -5.3775404e+29 -5.3861258e+29 -5.2502267e+29 -5.521103e+29 -5.5331745e+29 -5.5326952e+29 -5.5206344e+29 -5.5323417e+29 -5.5319307e+29 -5.5202205e+29 -5.5197938e+29 -5.4696396e+29 -5.4706253e+29 -5.4784643e+29 -5.4776598e+29 -5.4941595e+29 -5.4862999e+29 -5.4856377e+29 -5.4935594e+29 -5.4627038e+29 -5.4548155e+29 -5.4535984e+29 -5.4615659e+29 -5.2452267e+29 -5.2923116e+29 -5.2821825e+29 -5.1861678e+29 -5.1916204e+29 -5.2006112e+29 -5.2078967e+29 -5.1822685e+29 -5.1803438e+29 -5.1942384e+29 -5.1958689e+29 -5.1576713e+29 -5.1621581e+29 -5.1955468e+29 -5.1899138e+29 -5.2289331e+29 -5.2126048e+29 -5.2157205e+29 -5.2256961e+29 -5.257383e+29 -5.2518349e+29 -5.2473796e+29 -5.2443528e+29 -5.2239125e+29 -5.2346551e+29 -5.2249776e+29 -5.2184729e+29 -5.2275322e+29 -5.2205277e+29 -5.2139014e+29 -5.2166754e+29 -5.2109469e+29 -5.213585e+29 -5.2220552e+29 -5.2191857e+29 -5.2075824e+29 -5.2106844e+29 -5.2153749e+29 -5.2037513e+29 -5.2105862e+29 -5.2074237e+29 -5.2029243e+29 -5.2065042e+29 -5.2043388e+29 -5.2071516e+29 -5.2125346e+29 -5.2099952e+29 -5.2406599e+29 -5.2370707e+29 -5.2363855e+29 -5.237829e+29 -5.2764266e+29 -5.2657961e+29 -5.2765834e+29 -5.266206e+29 -5.269548e+29 -5.2801349e+29 -5.2776444e+29 -5.2666751e+29 -5.2996031e+29 -5.29237e+29 -5.297597e+29 -5.2900314e+29 -5.2962349e+29 -5.2888677e+29 -5.2952185e+29 -5.2883178e+29 -5.283532e+29 -5.2765927e+29 -5.286801e+29 -5.2733585e+29 -5.2806061e+29 -5.2844583e+29 -5.2931499e+29 -5.2903321e+29 -5.3078966e+29 -5.3032677e+29 -5.3068804e+29 -5.3012973e+29 -5.3047181e+29 -5.2983954e+29 -5.3019729e+29 -5.2951316e+29 -5.2367847e+29 -5.2330484e+29 -5.2313058e+29 -5.2321407e+29 -5.2940663e+29 -5.2876196e+29 -5.292511e+29 -5.2861138e+29 -5.2655082e+29 -5.2758826e+29 -5.2743048e+29 -5.26314e+29 -5.2614007e+29 -5.2726268e+29 -5.2720727e+29 -5.2613303e+29 -5.2913321e+29 -5.28403e+29 -5.2920619e+29 -5.2849467e+29 -5.233593e+29 -5.2327214e+29 -5.2408648e+29 -5.2365051e+29 -5.2771397e+29 -5.2652505e+29 -5.2753008e+29 -5.2680927e+29 -5.2617326e+29 -5.2627478e+29 -5.2723041e+29 -5.2732747e+29 -5.2914817e+29 -5.2843136e+29 -5.2921441e+29 -5.2851436e+29 -5.286716e+29 -5.2929713e+29 -5.293418e+29 -5.2877014e+29 -5.1975288e+29 -5.201369e+29 -5.1986539e+29 -5.201991e+29 -5.2043029e+29 -5.2060475e+29 -5.2032363e+29 -5.2061298e+29 -5.1992195e+29 -5.2027957e+29 -5.2063404e+29 -5.2116437e+29 -5.2027825e+29 -5.2056724e+29 -5.2072548e+29 -5.2093165e+29 -5.2100332e+29 -5.2157387e+29 -5.1993285e+29 -5.2025433e+29 -5.1999944e+29 -5.203417e+29 -5.2067937e+29 -5.2067803e+29 -5.2348608e+29 -5.2326369e+29 -5.2599276e+29 -5.262716e+29 -5.246425e+29 -5.243071e+29 -5.2396869e+29 -5.2374278e+29 -5.2655547e+29 -5.2674171e+29 -5.252852e+29 -5.2498132e+29 -5.2303201e+29 -5.2278913e+29 -5.2571173e+29 -5.2547381e+29 -5.2401322e+29 -5.23724e+29 -5.226483e+29 -5.2261363e+29 -5.2533367e+29 -5.2526263e+29 -5.236283e+29 -5.2360293e+29 -5.2229911e+29 -5.2250704e+29 -5.2514828e+29 -5.2496255e+29 -5.2349919e+29 -5.2325087e+29 -5.2219369e+29 -5.2483769e+29 -5.2221157e+29 -5.2481085e+29 -5.2311491e+29 -5.230996e+29 -5.2483653e+29 -5.2224377e+29 -5.2230743e+29 -5.249209e+29 -5.2314293e+29 -5.2323012e+29 -5.2507959e+29 -5.2244584e+29 -5.2262986e+29 -5.2524776e+29 -5.2345309e+29 -5.2371203e+29 -5.2408655e+29 -5.2370493e+29 -5.2344056e+29 -5.2339171e+29 -5.2325995e+29 -5.2332209e+29 -5.2377695e+29 -5.2343116e+29 -5.2013719e+29 -5.2050847e+29 -5.2010809e+29 -5.2044397e+29 -5.2081765e+29 -5.2082546e+29 -5.2079212e+29 -5.2167424e+29 -5.2101553e+29 -5.2040524e+29 -5.2072451e+29 -5.2114071e+29 -5.2013972e+29 -5.2046177e+29 -5.2051745e+29 -5.2076353e+29 -5.2080033e+29 -5.2129088e+29 -5.2004556e+29 -5.2038116e+29 -5.1996567e+29 -5.2032968e+29 -5.2075323e+29 -5.205906e+29 -5.2382852e+29 -5.2366966e+29 -5.2371173e+29 -5.2400681e+29 -5.2421726e+29 -5.2443327e+29 -5.2485475e+29 -5.2549607e+29 -5.2047189e+29 -5.2079695e+29 -5.2061198e+29 -5.2086315e+29 -5.214147e+29 -5.2114764e+29 -5.2082926e+29 -5.2111278e+29 -5.2052123e+29 -5.2085804e+29 -5.2116942e+29 -5.2156552e+29 -5.212428e+29 -5.2154394e+29 -5.2103742e+29 -5.2130887e+29 -5.2179472e+29 -5.2193652e+29 -5.2160735e+29 -5.2185283e+29 -5.2215321e+29 -5.2231514e+29 -5.2237118e+29 -5.2306815e+29 -5.2267265e+29 -5.2253049e+29 -5.2520159e+29 -5.2530962e+29 -5.2378213e+29 -5.2360365e+29 -5.2241551e+29 -5.2236504e+29 -5.249686e+29 -5.2506231e+29 -5.2343056e+29 -5.2331763e+29 -5.2227871e+29 -5.2231016e+29 -5.2489514e+29 -5.2488089e+29 -5.232446e+29 -5.2320785e+29 -5.2235959e+29 -5.2496408e+29 -5.2253138e+29 -5.2510525e+29 -5.2332372e+29 -5.2352441e+29 -5.253076e+29 -5.2273414e+29 -5.2292662e+29 -5.2546621e+29 -5.2367997e+29 -5.2386657e+29 -5.2261823e+29 -5.2263026e+29 -5.2519535e+29 -5.252279e+29 -5.2363319e+29 -5.236259e+29 -5.2564941e+29 -5.2310202e+29 -5.2330209e+29 -5.2587098e+29 -5.2406176e+29 -5.2430858e+29 -5.2612099e+29 -5.2353391e+29 -5.2376242e+29 -5.2633493e+29 -5.2463116e+29 -5.2495091e+29 -5.288181e+29 -5.2934452e+29 -5.2925382e+29 -5.2871449e+29 -5.2762682e+29 -5.2681226e+29 -5.277544e+29 -5.2659497e+29 -5.2729902e+29 -5.2636126e+29 -5.2742363e+29 -5.2625866e+29 -5.2858986e+29 -5.2922378e+29 -5.2912101e+29 -5.2845247e+29 -5.2628612e+29 -5.2731094e+29 -5.274281e+29 -5.2649148e+29 -5.290625e+29 -5.284054e+29 -5.2840673e+29 -5.2906862e+29 -5.2618109e+29 -5.2615758e+29 -5.2723331e+29 -5.2722533e+29 -5.2915709e+29 -5.2852321e+29 -5.2847316e+29 -5.2912252e+29 -5.2769062e+29 -5.2653758e+29 -5.2753706e+29 -5.2674463e+29 -5.2654105e+29 -5.2649066e+29 -5.2748203e+29 -5.2748069e+29 -5.2927607e+29 -5.2861774e+29 -5.2922006e+29 -5.2858673e+29 -5.2933924e+29 -5.2868207e+29 -5.2941075e+29 -5.2878365e+29 -5.2940131e+29 -5.2986014e+29 -5.299032e+29 -5.2950922e+29 -5.2695224e+29 -5.2720767e+29 -5.2787788e+29 -5.281245e+29 -5.2972533e+29 -5.2918154e+29 -5.2895797e+29 -5.2955537e+29 -5.2858976e+29 -5.2758914e+29 -5.2843397e+29 -5.278561e+29 -5.2563069e+29 -5.2575902e+29 -5.2560479e+29 -5.2557548e+29 -5.2571039e+29 -5.2565447e+29 -5.2590425e+29 -5.2580186e+29 -5.264306e+29 -5.2626092e+29 -5.266084e+29 -5.2679671e+29 -5.2611862e+29 -5.2595607e+29 -5.2582877e+29 -5.2585879e+29 -5.2610778e+29 -5.2640475e+29 -5.3219962e+29 -5.3202575e+29 -5.3090451e+29 -5.3113559e+29 -5.2688665e+29 -5.2667042e+29 -5.2725884e+29 -5.270906e+29 -5.2550412e+29 -5.2580259e+29 -5.3177774e+29 -5.3150934e+29 -5.3060916e+29 -5.3030982e+29 -5.2622798e+29 -5.2646178e+29 -5.2607815e+29 -5.2599991e+29 -5.3104545e+29 -5.309892e+29 -5.2521039e+29 -5.2512884e+29 -5.298762e+29 -5.2988106e+29 -5.2563958e+29 -5.255979e+29 -5.2573224e+29 -5.2587133e+29 -5.3130584e+29 -5.3114033e+29 -5.3010654e+29 -5.2530818e+29 -5.251332e+29 -5.2992487e+29 -5.258891e+29 -5.2570902e+29 -5.2559179e+29 -5.2560802e+29 -5.2877406e+29 -5.264764e+29 -5.285666e+29 -5.2624424e+29 -5.2283275e+29 -5.2312583e+29 -5.2521404e+29 -5.249623e+29 -5.2233729e+29 -5.2201924e+29 -5.2842692e+29 -5.2614713e+29 -5.2834465e+29 -5.2609241e+29 -5.2276346e+29 -5.2487723e+29 -5.2484863e+29 -5.2283847e+29 -5.2209695e+29 -5.219677e+29 -5.2338091e+29 -5.2412851e+29 -5.2383485e+29 -5.2449048e+29 -5.2957087e+29 -5.2745676e+29 -5.2945337e+29 -5.2729373e+29 -5.2638699e+29 -5.2616246e+29 -5.2923542e+29 -5.2701849e+29 -5.2900109e+29 -5.2671871e+29 -5.2371749e+29 -5.2341039e+29 -5.2548447e+29 -5.2581793e+29 -5.2290627e+29 -5.2261322e+29 -5.2353245e+29 -5.2286057e+29 -5.2228693e+29 -5.2202051e+29 -5.2173193e+29 -5.2128191e+29 -5.2127434e+29 -5.2150432e+29 -5.2481965e+29 -5.244989e+29 -5.2447854e+29 -5.2468102e+29 -5.2535845e+29 -5.2511921e+29 -5.262993e+29 -5.257751e+29 -5.2428424e+29 -5.242515e+29 -5.2447392e+29 -5.2492744e+29 -5.2416865e+29 -5.2424879e+29 -5.2460741e+29 -5.2428574e+29 -5.217586e+29 -5.2253596e+29 -5.2205485e+29 -5.2278396e+29 -5.2106897e+29 -5.2151272e+29 -5.2166895e+29 -5.2240553e+29 -5.2162175e+29 -5.2239423e+29 -5.2092069e+29 -5.210202e+29 -5.2170577e+29 -5.2243087e+29 -5.2110618e+29 -5.2171469e+29 -5.2245552e+29 -5.2100415e+29 -5.2191282e+29 -5.2264125e+29 -5.222565e+29 -5.2293546e+29 -5.2168861e+29 -5.2125665e+29 -5.2571569e+29 -5.257491e+29 -5.2447234e+29 -5.2450063e+29 -5.2586766e+29 -5.2599311e+29 -5.246586e+29 -5.2483456e+29 -5.2461852e+29 -5.258545e+29 -5.2479814e+29 -5.2601719e+29 -5.2575261e+29 -5.2569963e+29 -5.2450325e+29 -5.2445373e+29 -5.236574e+29 -5.2382358e+29 -5.2364009e+29 -5.2379741e+29 -5.2476257e+29 -5.2439422e+29 -5.2397573e+29 -5.24101e+29 -5.2600872e+29 -5.2663755e+29 -5.2362289e+29 -5.2374166e+29 -5.2566035e+29 -5.2404697e+29 -4.6972979e+29 -4.9041104e+29 -4.7044529e+29 -4.9072024e+29 -4.915819e+29 -4.7141006e+29 -4.9127861e+29 -4.7164852e+29 -4.7147866e+29 -4.9094927e+29 -4.7162552e+29 -4.9058519e+29 -5.1120928e+29 -5.3736885e+29 -5.373947e+29 -5.363271e+29 -5.3474126e+29 -5.3461571e+29 -5.3621095e+29 -5.3486505e+29 -5.3501176e+29 -5.3659047e+29 -5.3645023e+29 -5.3753981e+29 -5.3781549e+29 -5.3985718e+29 -5.4008353e+29 -5.3971571e+29 -5.3961829e+29 -5.3678005e+29 -5.3692025e+29 -5.3928551e+29 -5.3922285e+29 -5.3382882e+29 -5.3389904e+29 -5.3679273e+29 -5.3923708e+29 -5.3932651e+29 -5.3697298e+29 -5.355637e+29 -5.3835236e+29 -5.381347e+29 -5.3716053e+29 -5.3702884e+29 -5.354407e+29 -5.3798854e+29 -5.3797314e+29 -5.3531569e+29 -5.3689186e+29 -5.3675014e+29 -5.3516984e+29 -5.4023998e+29 -5.4032849e+29 -5.4065439e+29 -5.4047628e+29 -5.3365107e+29 -5.3686601e+29 -5.3931889e+29 -5.3919334e+29 -5.3668404e+29 -5.3669645e+29 -5.3917508e+29 -5.3927626e+29 -5.369013e+29 -5.3372786e+29 -5.4083616e+29 -5.4081556e+29 -5.4207052e+29 -5.4204394e+29 -5.4085282e+29 -5.4095571e+29 -5.4221106e+29 -5.4213425e+29 -5.4318648e+29 -5.4326311e+29 -5.442797e+29 -5.4419531e+29 -5.4306595e+29 -5.4311008e+29 -5.4412055e+29 -5.4406415e+29 -5.4082968e+29 -5.4084733e+29 -5.4203809e+29 -5.4205365e+29 -5.4085592e+29 -5.4207907e+29 -5.4209117e+29 -5.408974e+29 -5.4307687e+29 -5.430874e+29 -5.440494e+29 -5.4401373e+29 -5.4306888e+29 -5.430518e+29 -5.4404409e+29 -5.4404551e+29 -5.4342209e+29 -5.440745e+29 -5.4388197e+29 -5.4323471e+29 -5.4166993e+29 -5.4147143e+29 -5.4244266e+29 -5.4262908e+29 -5.4117388e+29 -5.4131573e+29 -5.4227547e+29 -5.4210404e+29 -5.4286507e+29 -5.4306008e+29 -5.4370778e+29 -5.4349187e+29 -5.4210113e+29 -5.4224401e+29 -5.4308922e+29 -5.4321137e+29 -5.4390656e+29 -5.4402865e+29 -5.4473226e+29 -5.4459638e+29 -5.4443608e+29 -5.4375954e+29 -5.4359389e+29 -5.4425295e+29 -5.4182614e+29 -5.4195692e+29 -5.4279563e+29 -5.4294431e+29 -5.4029477e+29 -5.371584e+29 -5.371652e+29 -5.4023565e+29 -5.2839239e+29 -5.3339684e+29 -5.3344071e+29 -5.2849845e+29 -5.3722675e+29 -5.3717478e+29 -5.4027325e+29 -5.4031751e+29 -5.2858831e+29 -5.3348247e+29 -5.335362e+29 -5.2866822e+29 -5.3605101e+29 -5.359619e+29 -5.3635187e+29 -5.3617474e+29 -5.4005838e+29 -5.4022976e+29 -5.4300048e+29 -5.4285598e+29 -5.3993354e+29 -5.4260258e+29 -5.4272973e+29 -5.3981383e+29 -5.3707083e+29 -5.3725391e+29 -5.4090946e+29 -5.4109117e+29 -5.4378467e+29 -5.4362736e+29 -5.4042875e+29 -5.4067589e+29 -5.4312394e+29 -5.4337873e+29 -5.3682719e+29 -5.3656346e+29 -5.3364991e+29 -5.3953413e+29 -5.3698849e+29 -5.3675432e+29 -5.3936582e+29 -5.3671154e+29 -5.3930209e+29 -5.3935445e+29 -5.3687763e+29 -5.3361406e+29 -5.3383232e+29 -5.3725621e+29 -5.3988048e+29 -5.3968257e+29 -5.3700122e+29 -5.3692985e+29 -5.3704931e+29 -5.3960533e+29 -5.3959051e+29 -5.3372686e+29 -5.4299654e+29 -5.4165324e+29 -5.4147405e+29 -5.4284587e+29 -5.4136298e+29 -5.4131505e+29 -5.4262536e+29 -5.4271165e+29 -5.4371604e+29 -5.4381697e+29 -5.4486638e+29 -5.4475537e+29 -5.4409388e+29 -5.4395375e+29 -5.4498551e+29 -5.4510634e+29 -5.4124348e+29 -5.4110265e+29 -5.4243329e+29 -5.4254466e+29 -5.4099047e+29 -5.4102234e+29 -5.4233136e+29 -5.422596e+29 -5.4332237e+29 -5.4341157e+29 -5.4445058e+29 -5.4434897e+29 -5.4352121e+29 -5.436292e+29 -5.4466587e+29 -5.4455444e+29 -5.2883518e+29 -5.3063282e+29 -5.3076899e+29 -5.2901164e+29 -5.3041053e+29 -5.2854808e+29 -5.2868395e+29 -5.3051074e+29 -5.3234322e+29 -5.3227299e+29 -5.339863e+29 -5.3391028e+29 -5.3243783e+29 -5.3254394e+29 -5.3409627e+29 -5.3404368e+29 -5.3220121e+29 -5.3209913e+29 -5.3383466e+29 -5.3376692e+29 -5.3204717e+29 -5.3205092e+29 -5.3374462e+29 -5.3376977e+29 -5.2820325e+29 -5.2818006e+29 -5.3010886e+29 -5.3012863e+29 -5.2828328e+29 -5.301964e+29 -5.30314e+29 -5.2843001e+29 -5.2811895e+29 -5.300991e+29 -5.300487e+29 -5.2806746e+29 -5.3025571e+29 -5.2829816e+29 -5.2820355e+29 -5.3017451e+29 -5.3215334e+29 -5.3223639e+29 -5.3395691e+29 -5.3403524e+29 -5.320833e+29 -5.320378e+29 -5.338365e+29 -5.3388466e+29 -5.2811948e+29 -5.2800875e+29 -5.2997853e+29 -5.3005643e+29 -5.3000336e+29 -5.2801676e+29 -5.2797112e+29 -5.2995371e+29 -5.3374835e+29 -5.3193964e+29 -5.3199707e+29 -5.3379423e+29 -5.3195279e+29 -5.3201285e+29 -5.3377836e+29 -5.3374669e+29 -5.3457029e+29 -5.3304158e+29 -5.3324065e+29 -5.3444436e+29 -5.3205262e+29 -5.3072161e+29 -5.3050805e+29 -5.3184028e+29 -5.3035867e+29 -5.3168735e+29 -5.3155129e+29 -5.3024427e+29 -5.3288295e+29 -5.3272771e+29 -5.3418225e+29 -5.3433196e+29 -5.3341113e+29 -5.3358898e+29 -5.3490978e+29 -5.3474851e+29 -5.3372669e+29 -5.3379966e+29 -5.3511909e+29 -5.3503838e+29 -5.3132943e+29 -5.3142237e+29 -5.3267337e+29 -5.3258956e+29 -5.3093415e+29 -5.3114974e+29 -5.3243717e+29 -5.3224282e+29 -5.5243319e+29 -5.5334861e+29 -5.5256199e+29 -5.5323664e+29 -5.5490797e+29 -5.5412557e+29 -5.5403172e+29 -5.548241e+29 -5.5424829e+29 -5.5437811e+29 -5.5514224e+29 -5.5501149e+29 -5.5283112e+29 -5.5360675e+29 -5.5348803e+29 -5.5270431e+29 -5.546117e+29 -5.5464014e+29 -5.5543761e+29 -5.5539541e+29 -5.5383613e+29 -5.5301804e+29 -5.5300851e+29 -5.5381572e+29 -5.5298416e+29 -5.537791e+29 -5.5369932e+29 -5.5292106e+29 -5.545645e+29 -5.5534742e+29 -5.5525577e+29 -5.5447517e+29 -5.5606204e+29 -5.5616138e+29 -5.5699291e+29 -5.5688853e+29 -5.5621643e+29 -5.5626964e+29 -5.5712412e+29 -5.5705815e+29 -5.5776827e+29 -5.5875998e+29 -5.5787768e+29 -5.5864689e+29 -5.5802978e+29 -5.5892833e+29 -5.5884541e+29 -5.5795332e+29 -5.5594542e+29 -5.5676882e+29 -5.5663906e+29 -5.5581178e+29 -5.5852358e+29 -5.576464e+29 -5.5751465e+29 -5.5838758e+29 -5.5742752e+29 -5.5736547e+29 -5.5822874e+29 -5.5828953e+29 -5.5655067e+29 -5.5571962e+29 -5.5648596e+29 -5.5564847e+29 -5.4676501e+29 -5.4577157e+29 -5.4565672e+29 -5.4665838e+29 -5.4822573e+29 -5.4750492e+29 -5.4739442e+29 -5.4810923e+29 -5.4799881e+29 -5.4729033e+29 -5.4718286e+29 -5.4789559e+29 -5.4655308e+29 -5.4555555e+29 -5.4544682e+29 -5.4644601e+29 -5.4845027e+29 -5.4778257e+29 -5.4774892e+29 -5.4844761e+29 -5.4709744e+29 -5.4617066e+29 -5.4607209e+29 -5.4704101e+29 -5.4695902e+29 -5.4597434e+29 -5.4586358e+29 -5.4686189e+29 -5.4839602e+29 -5.4768495e+29 -5.4759767e+29 -5.4831792e+29 -5.505276e+29 -5.5058335e+29 -5.4904716e+29 -5.4911777e+29 -5.4996704e+29 -5.4990849e+29 -5.5062978e+29 -5.5060964e+29 -5.4998296e+29 -5.4914596e+29 -5.4915056e+29 -5.4998837e+29 -5.5191413e+29 -5.5192466e+29 -5.5189189e+29 -5.5183808e+29 -5.5044436e+29 -5.5031807e+29 -5.4982066e+29 -5.4895961e+29 -5.4883585e+29 -5.4969639e+29 -5.5175021e+29 -5.5161984e+29 -5.5019072e+29 -5.5147121e+29 -5.5135434e+29 -5.5008222e+29 -5.4860776e+29 -5.4871686e+29 -5.4956565e+29 -5.4944994e+29 -5.4779953e+29 -5.470924e+29 -5.4700292e+29 -5.4772318e+29 -5.4635624e+29 -5.453679e+29 -5.4527651e+29 -5.4626905e+29 -5.4619196e+29 -5.4520363e+29 -5.4513951e+29 -5.4612903e+29 -5.476464e+29 -5.4692557e+29 -5.4685804e+29 -5.4757781e+29 -5.4502584e+29 -5.4600939e+29 -5.4508182e+29 -5.4593445e+29 -5.4608268e+29 -5.4511214e+29 -5.4509625e+29 -5.4605078e+29 -5.475163e+29 -5.4680457e+29 -5.4675532e+29 -5.4745189e+29 -5.4737682e+29 -5.4669754e+29 -5.466068e+29 -5.4726373e+29 -5.4970631e+29 -5.4960019e+29 -5.4909664e+29 -5.4824128e+29 -5.4816296e+29 -5.4900933e+29 -5.5089773e+29 -5.5101384e+29 -5.4947932e+29 -5.5075331e+29 -5.5058777e+29 -5.4933527e+29 -5.4793721e+29 -5.4807435e+29 -5.4890363e+29 -5.4874854e+29 -5.4990817e+29 -5.4999351e+29 -5.5126807e+29 -5.5119434e+29 -5.4935615e+29 -5.4851358e+29 -5.4844091e+29 -5.4928824e+29 -5.498427e+29 -5.4977894e+29 -5.4830455e+29 -5.4837384e+29 -5.4922823e+29 -5.4916502e+29 -5.5109306e+29 -5.5115017e+29 -5.5398489e+29 -5.5393528e+29 -5.5472082e+29 -5.5476756e+29 -5.5303388e+29 -5.530916e+29 -5.5226527e+29 -5.5220646e+29 -5.5313323e+29 -5.5318852e+29 -5.5236813e+29 -5.5230587e+29 -5.538985e+29 -5.546916e+29 -5.5463451e+29 -5.5384081e+29 -5.5559016e+29 -5.5553724e+29 -5.5636578e+29 -5.5642694e+29 -5.5818051e+29 -5.5730863e+29 -5.5723715e+29 -5.5809842e+29 -5.5707368e+29 -5.5717045e+29 -5.5801009e+29 -5.5789253e+29 -5.555009e+29 -5.5543385e+29 -5.5623697e+29 -5.5631563e+29 -5.5683283e+29 -5.5696032e+29 -5.5763081e+29 -5.577591e+29 -5.5614272e+29 -5.5535018e+29 -5.5601318e+29 -5.5521612e+29 -5.5504712e+29 -5.5484593e+29 -5.5564238e+29 -5.5584343e+29 -5.5668025e+29 -5.5648313e+29 -5.5731021e+29 -5.5749613e+29 -5.5294966e+29 -5.5212354e+29 -5.5199721e+29 -5.5281603e+29 -5.5164266e+29 -5.5183943e+29 -5.5265091e+29 -5.5245832e+29 -5.5344824e+29 -5.5424027e+29 -5.5404325e+29 -5.5325315e+29 -5.5454875e+29 -5.5375548e+29 -5.5361563e+29 -5.5440927e+29 -5.4471223e+29 -5.4552671e+29 -5.4530518e+29 -5.4449961e+29 -5.460349e+29 -5.4655879e+29 -5.4630641e+29 -5.4579638e+29 -5.4556303e+29 -5.4604231e+29 -5.4572014e+29 -5.4526553e+29 -5.4433668e+29 -5.4509969e+29 -5.4483104e+29 -5.4410572e+29 -5.474109e+29 -5.4686647e+29 -5.4667998e+29 -5.4720859e+29 -5.4543747e+29 -5.4632855e+29 -5.4615746e+29 -5.452824e+29 -5.4647315e+29 -5.4700093e+29 -5.4677729e+29 -5.4625413e+29 -5.4508638e+29 -5.4490606e+29 -5.4574181e+29 -5.4594713e+29 -5.4884374e+29 -5.4909114e+29 -5.4807325e+29 -5.4831635e+29 -5.4760883e+29 -5.473704e+29 -5.4956098e+29 -5.4932878e+29 -5.4876142e+29 -5.480322e+29 -5.485453e+29 -5.4782652e+29 -5.5028708e+29 -5.5052469e+29 -5.500383e+29 -5.4978543e+29 -5.483226e+29 -5.4861153e+29 -5.4715768e+29 -5.4689095e+29 -5.4757974e+29 -5.4785419e+29 -5.4890444e+29 -5.4801383e+29 -5.476468e+29 -5.485373e+29 -5.4953654e+29 -5.4923603e+29 -5.462662e+29 -5.4660947e+29 -5.4727954e+29 -5.4692437e+29 -5.5105015e+29 -5.5203221e+29 -5.5131629e+29 -5.5176225e+29 -5.5348911e+29 -5.5275204e+29 -5.5248131e+29 -5.5321847e+29 -5.5299964e+29 -5.5324375e+29 -5.539777e+29 -5.5372609e+29 -5.5180336e+29 -5.5252253e+29 -5.5228469e+29 -5.515675e+29 -5.5473796e+29 -5.5448151e+29 -5.5525708e+29 -5.5551365e+29 -5.5608177e+29 -5.5633672e+29 -5.5710323e+29 -5.5684649e+29 -5.5554566e+29 -5.5582389e+29 -5.5629429e+29 -5.5657676e+29 -5.5423863e+29 -5.5500697e+29 -5.5473547e+29 -5.5397284e+29 -5.5256724e+29 -5.5293734e+29 -5.5368633e+29 -5.533219e+29 -5.5331111e+29 -5.5366372e+29 -5.5442164e+29 -5.5406344e+29 -5.5487345e+29 -5.5523498e+29 -5.55633e+29 -5.5599665e+29 -5.5449816e+29 -5.5413284e+29 -5.5489516e+29 -5.5525933e+29 -5.5147233e+29 -5.5077222e+29 -5.5044937e+29 -5.5114258e+29 -5.5218097e+29 -5.5184727e+29 -5.5256883e+29 -5.529133e+29 -5.5113264e+29 -5.5148895e+29 -5.52199e+29 -5.5183453e+29 -5.5009988e+29 -5.5079226e+29 -5.5044267e+29 -5.497506e+29 -5.5974069e+29 -5.605887e+29 -5.5965633e+29 -5.6049124e+29 -5.6137239e+29 -5.6147227e+29 -5.6233737e+29 -5.6323402e+29 -5.6312268e+29 -5.6223515e+29 -5.6212684e+29 -5.6201234e+29 -5.6288161e+29 -5.6299936e+29 -5.5956757e+29 -5.603968e+29 -5.6127109e+29 -5.6028696e+29 -5.6116222e+29 -5.5945206e+29 -5.5932272e+29 -5.6015633e+29 -5.5918817e+29 -5.6002759e+29 -5.6091216e+29 -5.6103842e+29 -5.6189444e+29 -5.6264519e+29 -5.6277315e+29 -5.6176627e+29 -5.6165301e+29 -5.6155966e+29 -5.6242882e+29 -5.625247e+29 -5.590779e+29 -5.5991323e+29 -5.6079935e+29 -5.5983769e+29 -5.6071209e+29 -5.5900923e+29 -5.6367946e+29 -5.6355149e+29 -5.6451786e+29 -5.6464458e+29 -5.6568728e+29 -5.6675744e+29 -5.6662902e+29 -5.6555996e+29 -5.6544469e+29 -5.665116e+29 -5.6640541e+29 -5.6534066e+29 -5.6343347e+29 -5.633336e+29 -5.6429847e+29 -5.6440041e+29 -5.6416059e+29 -5.6514474e+29 -5.6502055e+29 -5.6404114e+29 -5.6391316e+29 -5.6488709e+29 -5.6475802e+29 -5.6378862e+29 -5.6701871e+29 -5.6593989e+29 -5.6580562e+29 -5.6688124e+29 -5.6620325e+29 -5.6607284e+29 -5.6715467e+29 -5.6728723e+29 -5.587796e+29 -5.5957103e+29 -5.5942719e+29 -5.6025294e+29 -5.6040434e+29 -5.586484e+29 -5.5895678e+29 -5.5977619e+29 -5.5969197e+29 -5.6053674e+29 -5.6063529e+29 -5.5887883e+29 -5.6136663e+29 -5.6147806e+29 -5.622304e+29 -5.62349e+29 -5.6122995e+29 -5.610704e+29 -5.6192228e+29 -5.6208725e+29 -5.6524072e+29 -5.6510924e+29 -5.6615627e+29 -5.6629478e+29 -5.6324949e+29 -5.6408321e+29 -5.6420807e+29 -5.6312789e+29 -5.6297955e+29 -5.6392876e+29 -5.6375029e+29 -5.6280885e+29 -5.6495105e+29 -5.6476414e+29 -5.6580089e+29 -5.6599668e+29 -5.626423e+29 -5.6247272e+29 -5.6339334e+29 -5.6357213e+29 -5.6457531e+29 -5.65601e+29 -5.6539714e+29 -5.6438414e+29 -5.6420055e+29 -5.6401433e+29 -5.6501552e+29 -5.6520109e+29 -5.6231112e+29 -5.6322111e+29 -5.6303293e+29 -5.6212595e+29 -5.5850389e+29 -5.5927449e+29 -5.6010043e+29 -5.591389e+29 -5.5995631e+29 -5.5837944e+29 -5.5807995e+29 -5.5885014e+29 -5.5826115e+29 -5.5901998e+29 -5.5982324e+29 -5.5965666e+29 -5.6045529e+29 -5.6062255e+29 -5.6127536e+29 -5.6145022e+29 -5.6091565e+29 -5.6076228e+29 -5.6160067e+29 -5.617629e+29 -5.6110137e+29 -5.6006799e+29 -5.6031705e+29 -5.608555e+29 -5.5736281e+29 -5.5829456e+29 -5.5901969e+29 -5.5800585e+29 -5.5872523e+29 -5.5707953e+29 -5.5789478e+29 -5.5883299e+29 -5.5954977e+29 -5.5857732e+29 -5.5929902e+29 -5.5763724e+29 -5.6059012e+29 -5.5979215e+29 -5.5949326e+29 -5.6029018e+29 -5.5678045e+29 -5.5770739e+29 -5.5736078e+29 -5.5808542e+29 -5.5842247e+29 -5.5642301e+29 -5.5605037e+29 -5.569988e+29 -5.577368e+29 -5.5663615e+29 -5.5738633e+29 -5.5568137e+29 -5.5816614e+29 -5.5851193e+29 -5.5931189e+29 -5.5896889e+29 -5.5918702e+29 -5.5998133e+29 -5.5964771e+29 -5.5885276e+29 -5.6269684e+29 -5.6237059e+29 -5.6338184e+29 -5.6369863e+29 -5.6138688e+29 -5.6171889e+29 -5.6081594e+29 -5.60482e+29 -5.5980693e+29 -5.6015079e+29 -5.6105302e+29 -5.6070431e+29 -5.6203652e+29 -5.6167917e+29 -5.6267154e+29 -5.6304336e+29 -5.6168601e+29 -5.6192615e+29 -5.6282755e+29 -5.6258876e+29 -5.6357652e+29 -5.6382064e+29 -5.6458861e+29 -5.6483703e+29 -5.6330883e+29 -5.6431359e+29 -5.6401303e+29 -5.6301278e+29 -5.614218e+29 -5.6112862e+29 -5.6203214e+29 -5.6232444e+29 -5.1441086e+29 -5.1409276e+29 -5.1342229e+29 -5.1271393e+29 -5.1205912e+29 -5.4911232e+29 -5.4908725e+29 -5.5031453e+29 -5.5035573e+29 -5.5162382e+29 -5.5158679e+29 -5.503152e+29 -5.503723e+29 -5.5164938e+29 -5.5158534e+29 -5.458016e+29 -5.4577626e+29 -5.4744401e+29 -5.4746884e+29 -5.4602288e+29 -5.4591697e+29 -5.4756437e+29 -5.4767307e+29 -5.4930556e+29 -5.492066e+29 -5.504213e+29 -5.504603e+29 -5.5174989e+29 -5.5171019e+29 -5.504995e+29 -5.51778e+29 -5.5180486e+29 -5.5054433e+29 -5.6018712e+29 -5.5898532e+29 -5.5906406e+29 -5.6009891e+29 -5.5688318e+29 -5.5686799e+29 -5.5790757e+29 -5.5790367e+29 -5.5689461e+29 -5.5696311e+29 -5.580106e+29 -5.5794137e+29 -5.5892689e+29 -5.5894472e+29 -5.600512e+29 -5.600208e+29 -5.5482153e+29 -5.5487974e+29 -5.5593189e+29 -5.5586529e+29 -5.538522e+29 -5.5279209e+29 -5.5275113e+29 -5.5380429e+29 -5.527498e+29 -5.5379596e+29 -5.538472e+29 -5.5281059e+29 -5.5480653e+29 -5.5584216e+29 -5.5587114e+29 -5.5484719e+29 -5.5286874e+29 -5.5389387e+29 -5.539131e+29 -5.5290115e+29 -5.5584515e+29 -5.5487374e+29 -5.5483666e+29 -5.5578224e+29 -5.5487904e+29 -5.5588661e+29 -5.5586731e+29 -5.5488174e+29 -5.5391746e+29 -5.5291997e+29 -5.5292593e+29 -5.5390248e+29 -5.5684466e+29 -5.5688089e+29 -5.5788984e+29 -5.5783879e+29 -5.5884321e+29 -5.5890672e+29 -5.5999031e+29 -5.599169e+29 -5.5868345e+29 -5.5877431e+29 -5.5984074e+29 -5.5974533e+29 -5.567213e+29 -5.5679981e+29 -5.5777628e+29 -5.5768939e+29 -5.6691689e+29 -5.6798605e+29 -5.678139e+29 -5.667501e+29 -5.6894994e+29 -5.6913049e+29 -5.7030819e+29 -5.70118e+29 -5.694865e+29 -5.7065176e+29 -5.7049568e+29 -5.6931862e+29 -5.6659979e+29 -5.664298e+29 -5.6749519e+29 -5.6765935e+29 -5.6879612e+29 -5.699597e+29 -5.6979667e+29 -5.6863198e+29 -5.6849119e+29 -5.6837008e+29 -5.6953926e+29 -5.6965533e+29 -5.6627749e+29 -5.6734841e+29 -5.6721532e+29 -5.6613276e+29 -5.640508e+29 -5.6420194e+29 -5.6508477e+29 -5.6523381e+29 -5.6454235e+29 -5.6436458e+29 -5.6539174e+29 -5.6556545e+29 -5.6316375e+29 -5.63017e+29 -5.6135834e+29 -5.6114577e+29 -5.6276412e+29 -5.6271286e+29 -5.611084e+29 -5.648056e+29 -5.6378061e+29 -5.6371931e+29 -5.6473958e+29 -5.6384076e+29 -5.6393361e+29 -5.6496856e+29 -5.6486831e+29 -5.612567e+29 -5.6289927e+29 -5.6281958e+29 -5.6118487e+29 -5.6577318e+29 -5.6683645e+29 -5.6691565e+29 -5.6584258e+29 -5.6699543e+29 -5.671035e+29 -5.6601641e+29 -5.6591138e+29 -5.6815082e+29 -5.6826448e+29 -5.6932837e+29 -5.6944329e+29 -5.6805963e+29 -5.6922706e+29 -5.6912445e+29 -5.6796864e+29 -5.6675508e+29 -5.6559886e+29 -5.6570273e+29 -5.6664864e+29 -5.6776476e+29 -5.678732e+29 -5.6901822e+29 -5.688996e+29 -5.6878098e+29 -5.6764992e+29 -5.6751784e+29 -5.6864743e+29 -5.654918e+29 -5.6537302e+29 -5.6641221e+29 -5.6653715e+29 -5.6106974e+29 -5.6265688e+29 -5.6257105e+29 -5.6099551e+29 -5.6080289e+29 -5.6090598e+29 -5.6246809e+29 -5.6235798e+29 -5.6335228e+29 -5.6346418e+29 -5.6447161e+29 -5.6435775e+29 -5.635651e+29 -5.6366081e+29 -5.6467615e+29 -5.6457571e+29 -5.46245e+29 -5.4722099e+29 -5.4633626e+29 -5.4714078e+29 -5.4740055e+29 -5.4649824e+29 -5.4641596e+29 -5.4731588e+29 -5.486944e+29 -5.4805236e+29 -5.4796907e+29 -5.4861473e+29 -5.4850986e+29 -5.4785976e+29 -5.4779622e+29 -5.4845365e+29 -5.5072759e+29 -5.507016e+29 -5.5014205e+29 -5.4935954e+29 -5.4928995e+29 -5.5010266e+29 -5.5196306e+29 -5.519617e+29 -5.5065623e+29 -5.5193348e+29 -5.5191857e+29 -5.5063545e+29 -5.4915322e+29 -5.492065e+29 -5.5003815e+29 -5.4999457e+29 -5.5055696e+29 -5.5054436e+29 -5.5165588e+29 -5.5168357e+29 -5.500188e+29 -5.4934035e+29 -5.4934915e+29 -5.5003704e+29 -5.5062832e+29 -5.5069208e+29 -5.4938999e+29 -5.4938139e+29 -5.5009653e+29 -5.501443e+29 -5.51892e+29 -5.5179567e+29 -5.4875773e+29 -5.4817427e+29 -5.4816102e+29 -5.4875612e+29 -5.4754132e+29 -5.466596e+29 -5.4661885e+29 -5.4752233e+29 -5.4749662e+29 -5.4659035e+29 -5.4654859e+29 -5.4745742e+29 -5.4875535e+29 -5.4813764e+29 -5.4811163e+29 -5.4874408e+29 -5.5320814e+29 -5.5397949e+29 -5.5380914e+29 -5.5302736e+29 -5.5526607e+29 -5.544634e+29 -5.543844e+29 -5.5520569e+29 -5.5475569e+29 -5.5555098e+29 -5.5538592e+29 -5.5458606e+29 -5.5366351e+29 -5.5286153e+29 -5.5274218e+29 -5.5355972e+29 -5.551883e+29 -5.553082e+29 -5.5610849e+29 -5.5598216e+29 -5.5450813e+29 -5.5370287e+29 -5.5360939e+29 -5.5439681e+29 -5.5350114e+29 -5.5427399e+29 -5.5413265e+29 -5.5336473e+29 -5.5505568e+29 -5.5585208e+29 -5.5570168e+29 -5.5490381e+29 -5.5654098e+29 -5.5669321e+29 -5.5756259e+29 -5.5741054e+29 -5.5682339e+29 -5.5695396e+29 -5.5783093e+29 -5.576951e+29 -5.5833965e+29 -5.5942719e+29 -5.5849253e+29 -5.5927374e+29 -5.5876769e+29 -5.597058e+29 -5.5956545e+29 -5.5862784e+29 -5.5622609e+29 -5.5639213e+29 -5.572622e+29 -5.5709974e+29 -5.5912545e+29 -5.5803254e+29 -5.5819089e+29 -5.5897144e+29 -5.5787682e+29 -5.5792446e+29 -5.5886478e+29 -5.5881441e+29 -5.5606395e+29 -5.5610959e+29 -5.5698566e+29 -5.5694134e+29 -5.5058412e+29 -5.5069391e+29 -5.4938953e+29 -5.4949633e+29 -5.501877e+29 -5.5006523e+29 -5.5106117e+29 -5.5087333e+29 -5.5054046e+29 -5.4982168e+29 -5.4964984e+29 -5.5036264e+29 -5.5201463e+29 -5.5220413e+29 -5.5182902e+29 -5.5170922e+29 -5.5131596e+29 -5.5119859e+29 -5.4995708e+29 -5.500624e+29 -5.5078886e+29 -5.5068124e+29 -5.5144823e+29 -5.5138912e+29 -5.5085887e+29 -5.5009573e+29 -5.5010642e+29 -5.5084649e+29 -5.5265703e+29 -5.5257969e+29 -5.5235848e+29 -5.524851e+29 -5.4819018e+29 -5.4732582e+29 -5.4722047e+29 -5.4809284e+29 -5.4818508e+29 -5.4733729e+29 -5.4736308e+29 -5.4822445e+29 -5.4944243e+29 -5.4880932e+29 -5.4885107e+29 -5.4947153e+29 -5.4943035e+29 -5.4881242e+29 -5.4872149e+29 -5.4933245e+29 -5.47964e+29 -5.4709086e+29 -5.469347e+29 -5.4782028e+29 -5.4919317e+29 -5.4858609e+29 -5.484443e+29 -5.4903795e+29 -5.4890497e+29 -5.4832306e+29 -5.4822892e+29 -5.4880803e+29 -5.4770208e+29 -5.4681218e+29 -5.4670374e+29 -5.4759817e+29 -5.5628124e+29 -5.5619749e+29 -5.5706645e+29 -5.5713985e+29 -5.5611499e+29 -5.5606863e+29 -5.5694499e+29 -5.5698766e+29 -5.5805204e+29 -5.5890163e+29 -5.5798479e+29 -5.5896328e+29 -5.5787647e+29 -5.5881187e+29 -5.5884221e+29 -5.5791425e+29 -5.544083e+29 -5.543703e+29 -5.5520066e+29 -5.5524834e+29 -5.5353563e+29 -5.5270032e+29 -5.5273432e+29 -5.5356991e+29 -5.5284124e+29 -5.5366628e+29 -5.5377165e+29 -5.5294638e+29 -5.5449805e+29 -5.5533396e+29 -5.5542845e+29 -5.545978e+29 -5.5300346e+29 -5.5303064e+29 -5.5386442e+29 -5.5384277e+29 -5.5385137e+29 -5.5302579e+29 -5.5304543e+29 -5.5387543e+29 -5.5469131e+29 -5.5551856e+29 -5.5548725e+29 -5.5466593e+29 -5.5467475e+29 -5.5469883e+29 -5.5552603e+29 -5.5550115e+29 -5.5637963e+29 -5.5635352e+29 -5.5721455e+29 -5.5724334e+29 -5.5902625e+29 -5.5815013e+29 -5.5812285e+29 -5.5904873e+29 -5.5809535e+29 -5.581421e+29 -5.5903705e+29 -5.5899048e+29 -5.5633108e+29 -5.5637233e+29 -5.5723537e+29 -5.571902e+29 -5.5969706e+29 -5.6062935e+29 -5.6057225e+29 -5.6154439e+29 -5.616081e+29 -5.5964184e+29 -5.5995609e+29 -5.6087458e+29 -5.6073965e+29 -5.6171363e+29 -5.6184243e+29 -5.5980726e+29 -5.6263851e+29 -5.6276907e+29 -5.6372419e+29 -5.6359696e+29 -5.6253814e+29 -5.6349987e+29 -5.6342977e+29 -5.6246965e+29 -5.6482973e+29 -5.659868e+29 -5.649654e+29 -5.6585758e+29 -5.662965e+29 -5.6526901e+29 -5.6511507e+29 -5.6613925e+29 -5.6723809e+29 -5.673932e+29 -5.6836427e+29 -5.6852166e+29 -5.6708176e+29 -5.6696045e+29 -5.6809008e+29 -5.6820866e+29 -5.6040495e+29 -5.613083e+29 -5.6053836e+29 -5.6145013e+29 -5.624008e+29 -5.6226038e+29 -5.6318533e+29 -5.633266e+29 -5.6428544e+29 -5.6413715e+29 -5.6399033e+29 -5.6304574e+29 -5.6290486e+29 -5.638495e+29 -5.6026776e+29 -5.6117267e+29 -5.6212326e+29 -5.6102708e+29 -5.6198439e+29 -5.6011179e+29 -5.6458791e+29 -5.6470877e+29 -5.6574603e+29 -5.656333e+29 -5.6674992e+29 -5.6685539e+29 -5.678896e+29 -5.6798973e+29 -5.665867e+29 -5.6666007e+29 -5.6772745e+29 -5.6780059e+29 -5.6449227e+29 -5.6553981e+29 -5.6546534e+29 -5.6441832e+29 -5.5963694e+29 -5.6055842e+29 -5.5966375e+29 -5.6056498e+29 -5.61511e+29 -5.6151922e+29 -5.6243929e+29 -5.6339386e+29 -5.63366e+29 -5.624226e+29 -5.6243298e+29 -5.6245666e+29 -5.6336711e+29 -5.6335664e+29 -5.5971872e+29 -5.6060317e+29 -5.6153307e+29 -5.6065855e+29 -5.6157122e+29 -5.5977902e+29 -5.5985749e+29 -5.6070138e+29 -5.60654e+29 -5.6153869e+29 -5.6158487e+29 -5.5980611e+29 -5.5983973e+29 -5.6070058e+29 -5.6072229e+29 -5.6160922e+29 -5.6159983e+29 -5.5986878e+29 -5.6247816e+29 -5.6248052e+29 -5.6338414e+29 -5.6339139e+29 -5.6245425e+29 -5.6335779e+29 -5.6330523e+29 -5.624046e+29 -5.6433636e+29 -5.6432671e+29 -5.6534062e+29 -5.653274e+29 -5.664014e+29 -5.6642212e+29 -5.6749957e+29 -5.6753083e+29 -5.662942e+29 -5.6636153e+29 -5.6737878e+29 -5.6745064e+29 -5.6429655e+29 -5.6529278e+29 -5.6522943e+29 -5.642373e+29 -5.6437742e+29 -5.6541718e+29 -5.6537094e+29 -5.6433845e+29 -5.6431919e+29 -5.6534211e+29 -5.6533193e+29 -5.6431807e+29 -5.6754656e+29 -5.675744e+29 -5.6644461e+29 -5.6642479e+29 -5.6653312e+29 -5.6647776e+29 -5.6761366e+29 -5.6767359e+29 -5.6731582e+29 -5.6833555e+29 -5.681869e+29 -5.6717305e+29 -5.6700317e+29 -5.6800991e+29 -5.678043e+29 -5.6680211e+29 -5.6885664e+29 -5.6906508e+29 -5.7018551e+29 -5.6997426e+29 -5.7052948e+29 -5.6940025e+29 -5.6924275e+29 -5.7036633e+29 -5.7357561e+29 -5.7374335e+29 -5.7477333e+29 -5.7493956e+29 -5.726122e+29 -5.7154778e+29 -5.7138423e+29 -5.7244657e+29 -5.7098385e+29 -5.7119757e+29 -5.7225255e+29 -5.7203304e+29 -5.7337434e+29 -5.7314856e+29 -5.7433769e+29 -5.745676e+29 -5.7076035e+29 -5.7053029e+29 -5.7157637e+29 -5.7180478e+29 -5.7291436e+29 -5.7409853e+29 -5.7386196e+29 -5.7268273e+29 -5.7246563e+29 -5.7226148e+29 -5.7343587e+29 -5.7364034e+29 -5.7031724e+29 -5.7136141e+29 -5.7115025e+29 -5.701032e+29 -5.6659464e+29 -5.6738133e+29 -5.6758978e+29 -5.6638792e+29 -5.6618609e+29 -5.6717259e+29 -5.6696695e+29 -5.6598625e+29 -5.6799687e+29 -5.6820832e+29 -5.6909939e+29 -5.6931288e+29 -5.6864061e+29 -5.6841993e+29 -5.6952247e+29 -5.6975348e+29 -5.6833262e+29 -5.6925223e+29 -5.693838e+29 -5.6820271e+29 -5.6806623e+29 -5.6911504e+29 -5.6897839e+29 -5.6792737e+29 -5.7007639e+29 -5.7021966e+29 -5.7123561e+29 -5.7138537e+29 -5.7048711e+29 -5.7152632e+29 -5.7165275e+29 -5.7035621e+29 -5.7270075e+29 -5.7257634e+29 -5.7366487e+29 -5.7379364e+29 -5.7495626e+29 -5.7619467e+29 -5.760582e+29 -5.7482425e+29 -5.7467834e+29 -5.7590369e+29 -5.757334e+29 -5.7451316e+29 -5.7243606e+29 -5.722821e+29 -5.7336646e+29 -5.7352457e+29 -5.7435788e+29 -5.7419982e+29 -5.7540192e+29 -5.7556458e+29 -5.7305282e+29 -5.732118e+29 -5.7213065e+29 -5.7197282e+29 -5.7182806e+29 -5.7168301e+29 -5.727501e+29 -5.728975e+29 -5.7403495e+29 -5.7387914e+29 -5.7508069e+29 -5.7524034e+29 -5.6779665e+29 -5.6884057e+29 -5.6871282e+29 -5.6766838e+29 -5.6953438e+29 -5.6966812e+29 -5.708007e+29 -5.7066165e+29 -5.69937e+29 -5.6979754e+29 -5.7093465e+29 -5.7108979e+29 -5.6754718e+29 -5.685851e+29 -5.6846688e+29 -5.6743896e+29 -5.777235e+29 -5.7651942e+29 -5.7636301e+29 -5.775617e+29 -5.7740547e+29 -5.7620753e+29 -5.7603668e+29 -5.7723559e+29 -5.7881776e+29 -5.8012758e+29 -5.8030482e+29 -5.7898569e+29 -5.786546e+29 -5.7849295e+29 -5.7979962e+29 -5.7995634e+29 -5.7363237e+29 -5.7380016e+29 -5.7487394e+29 -5.7503744e+29 -5.7395698e+29 -5.7410958e+29 -5.7519403e+29 -5.7534689e+29 -5.7163746e+29 -5.71782e+29 -5.7291739e+29 -5.7276865e+29 -5.7146084e+29 -5.7260757e+29 -5.7242491e+29 -5.7127021e+29 -5.7080166e+29 -5.7195474e+29 -5.7183064e+29 -5.7067872e+29 -5.7110144e+29 -5.7225274e+29 -5.7209985e+29 -5.7094403e+29 -5.7329335e+29 -5.734587e+29 -5.7452963e+29 -5.7470551e+29 -5.7314944e+29 -5.7302368e+29 -5.742663e+29 -5.7439099e+29 -5.7570492e+29 -5.7587505e+29 -5.7707645e+29 -5.7691352e+29 -5.78181e+29 -5.7833729e+29 -5.79647e+29 -5.7949471e+29 -5.793602e+29 -5.7804392e+29 -5.7791838e+29 -5.7923434e+29 -5.7556593e+29 -5.7677403e+29 -5.7664926e+29 -5.7544194e+29 -5.7058103e+29 -5.7162213e+29 -5.7173005e+29 -5.7047324e+29 -5.7150759e+29 -5.7036672e+29 -5.702533e+29 -5.7138236e+29 -5.7256248e+29 -5.7269601e+29 -5.7378934e+29 -5.7392882e+29 -5.7292355e+29 -5.7405425e+29 -5.7416584e+29 -5.7281233e+29 -5.7533537e+29 -5.7521655e+29 -5.7640568e+29 -5.7653485e+29 -5.7779748e+29 -5.7911104e+29 -5.7896294e+29 -5.7765996e+29 -5.7751778e+29 -5.788081e+29 -5.7864226e+29 -5.7735761e+29 -5.7508688e+29 -5.7494171e+29 -5.7612096e+29 -5.7627223e+29 -5.772092e+29 -5.7705592e+29 -5.7832153e+29 -5.7847946e+29 -5.7581612e+29 -5.7597455e+29 -5.7479774e+29 -5.7464188e+29 -5.7449254e+29 -5.7435481e+29 -5.7552102e+29 -5.7565971e+29 -5.76891e+29 -5.7674434e+29 -5.7801184e+29 -5.7816264e+29 -5.7126247e+29 -5.7013945e+29 -5.7001371e+29 -5.7112596e+29 -5.6975728e+29 -5.709963e+29 -5.6989422e+29 -5.7086049e+29 -5.7334889e+29 -5.7214303e+29 -5.7201132e+29 -5.7321548e+29 -5.7243011e+29 -5.722879e+29 -5.7349909e+29 -5.7364853e+29 -5.6877615e+29 -5.6871604e+29 -5.6982316e+29 -5.6988775e+29 -5.7105299e+29 -5.7098281e+29 -5.7219766e+29 -5.7227413e+29 -5.7206952e+29 -5.7213539e+29 -5.7093129e+29 -5.7087889e+29 -5.6867269e+29 -5.6977499e+29 -5.6973797e+29 -5.6863955e+29 -5.733747e+29 -5.7329174e+29 -5.744277e+29 -5.7451493e+29 -5.7572555e+29 -5.77011e+29 -5.7690512e+29 -5.7563053e+29 -5.7553579e+29 -5.7544522e+29 -5.7670275e+29 -5.7680157e+29 -5.7321286e+29 -5.7433762e+29 -5.7425512e+29 -5.7313924e+29 -5.6860784e+29 -5.6856538e+29 -5.6963309e+29 -5.6969013e+29 -5.7082168e+29 -5.7200764e+29 -5.7193007e+29 -5.7075322e+29 -5.7067977e+29 -5.7059612e+29 -5.7175519e+29 -5.7184571e+29 -5.6850879e+29 -5.6956734e+29 -5.6948827e+29 -5.684317e+29 -5.7409899e+29 -5.7418465e+29 -5.7307506e+29 -5.7299218e+29 -5.7289926e+29 -5.7400106e+29 -5.7389788e+29 -5.727987e+29 -5.7506661e+29 -5.7517356e+29 -5.7642056e+29 -5.7630945e+29 -5.7536301e+29 -5.7652282e+29 -5.7661748e+29 -5.752723e+29 -5.7776663e+29 -5.7789958e+29 -5.7660734e+29 -5.7648294e+29 -5.7396465e+29 -5.7384859e+29 -5.7499197e+29 -5.751233e+29 -5.7422786e+29 -5.7538531e+29 -5.7526257e+29 -5.7409556e+29 -5.7634069e+29 -5.7762862e+29 -5.774918e+29 -5.762014e+29 -5.6961885e+29 -5.6946348e+29 -5.7057166e+29 -5.7072168e+29 -5.7187873e+29 -5.7310637e+29 -5.7296812e+29 -5.7173671e+29 -5.7160562e+29 -5.7284011e+29 -5.7273917e+29 -5.7150131e+29 -5.6931694e+29 -5.7043326e+29 -5.7031652e+29 -5.6919642e+29 -5.6909516e+29 -5.6899807e+29 -5.701132e+29 -5.7021299e+29 -5.713927e+29 -5.726285e+29 -5.7251526e+29 -5.7128564e+29 -5.7119664e+29 -5.724206e+29 -5.7234666e+29 -5.7112402e+29 -5.6891073e+29 -5.700258e+29 -5.6995392e+29 -5.6883662e+29 -5.7362767e+29 -5.737418e+29 -5.7477835e+29 -5.7488924e+29 -5.7609886e+29 -5.759927e+29 -5.772778e+29 -5.7738268e+29 -5.7710313e+29 -5.7718736e+29 -5.7589643e+29 -5.7580819e+29 -5.7352719e+29 -5.7458684e+29 -5.7467759e+29 -5.734423e+29 -5.7932909e+29 -5.8062898e+29 -5.8047607e+29 -5.7915537e+29 -5.3857078e+29 -5.3923915e+29 -5.4004746e+29 -5.3851295e+29 -5.3932208e+29 -5.3784937e+29 -5.3788741e+29 -5.3818806e+29 -5.3953134e+29 -5.398315e+29 -5.4008319e+29 -5.3951349e+29 -5.3924453e+29 -5.389554e+29 -5.3844139e+29 -5.3875507e+29 -5.4048898e+29 -5.4081738e+29 -5.4106908e+29 -5.405982e+29 -5.4035616e+29 -5.4004321e+29 -5.4087666e+29 -5.4135195e+29 -5.4172782e+29 -5.4125077e+29 -5.3980513e+29 -5.4036551e+29 -5.4073943e+29 -5.4018137e+29 -5.3760035e+29 -5.3730462e+29 -5.3666495e+29 -5.3697263e+29 -5.4276175e+29 -5.4304705e+29 -5.4242927e+29 -5.4272771e+29 -5.4310143e+29 -5.433984e+29 -5.4373763e+29 -5.4413366e+29 -5.4385131e+29 -5.4345214e+29 -5.4319625e+29 -5.4294556e+29 -5.4333586e+29 -5.4358586e+29 -5.4193742e+29 -5.422376e+29 -5.4217596e+29 -5.424781e+29 -5.4284697e+29 -5.4260091e+29 -5.4403788e+29 -5.4433051e+29 -5.4468987e+29 -5.4435591e+29 -5.4402196e+29 -5.4374687e+29 -5.4504477e+29 -5.4468667e+29 -5.450887e+29 -5.4546633e+29 -5.4435111e+29 -5.4472799e+29 -5.4440914e+29 -5.4403141e+29 -5.4371234e+29 -5.4337888e+29 -5.4403476e+29 -5.4371067e+29 -5.4344222e+29 -5.4310278e+29 -5.4734762e+29 -5.469416e+29 -5.4599057e+29 -5.4662999e+29 -5.4623348e+29 -5.4560078e+29 -5.4655649e+29 -5.4620827e+29 -5.4522417e+29 -5.4489395e+29 -5.4550868e+29 -5.4584839e+29 -5.4730082e+29 -5.4800388e+29 -5.4694703e+29 -5.4764486e+29 -5.4809792e+29 -5.4879522e+29 -5.4769003e+29 -5.483889e+29 -5.4592366e+29 -5.4563541e+29 -5.4434221e+29 -5.4462567e+29 -5.4523387e+29 -5.4495013e+29 -5.466487e+29 -5.4733846e+29 -5.4635513e+29 -5.4703427e+29 -5.4535907e+29 -5.4607099e+29 -5.4674137e+29 -5.4579993e+29 -5.4645872e+29 -5.4509199e+29 -5.4407683e+29 -5.4467939e+29 -5.4441734e+29 -5.4381956e+29 -5.4129281e+29 -5.4163837e+29 -5.4188597e+29 -5.4149789e+29 -5.412479e+29 -5.4090939e+29 -5.4245557e+29 -5.4218196e+29 -5.4179779e+29 -5.4219846e+29 -5.4194408e+29 -5.4157998e+29 -5.4285667e+29 -5.4312914e+29 -5.4275182e+29 -5.4248354e+29 -5.4254087e+29 -5.4216822e+29 -5.4178067e+29 -5.4215704e+29 -5.4359629e+29 -5.4457755e+29 -5.4486033e+29 -5.4392165e+29 -5.4419676e+29 -5.433231e+29 -5.4391108e+29 -5.4427321e+29 -5.4324529e+29 -5.4361313e+29 -5.4263844e+29 -5.4301238e+29 -5.4498818e+29 -5.4577841e+29 -5.4462957e+29 -5.4541473e+29 -5.4557771e+29 -5.4637786e+29 -5.4529427e+29 -5.460883e+29 -5.4191869e+29 -5.4249081e+29 -5.40658e+29 -5.4121878e+29 -5.4182527e+29 -5.4125968e+29 -5.4349142e+29 -5.4301355e+29 -5.4282133e+29 -5.4221063e+29 -5.4173212e+29 -5.4234259e+29 -5.432072e+29 -5.4400321e+29 -5.4263083e+29 -5.4342377e+29 -5.4373537e+29 -5.4452628e+29 -5.4421237e+29 -5.4500395e+29 -5.406702e+29 -5.4131756e+29 -5.4203628e+29 -5.4289583e+29 -5.4138329e+29 -5.4223196e+29 -5.3928933e+29 -5.3999302e+29 -5.4069397e+29 -5.415328e+29 -5.3997331e+29 -5.4079317e+29 -5.3498463e+29 -5.3537812e+29 -5.3588113e+29 -5.3621936e+29 -5.4717325e+29 -5.474633e+29 -5.4810619e+29 -5.4780988e+29 -5.4879049e+29 -5.4950666e+29 -5.4919623e+29 -5.4848577e+29 -5.5011073e+29 -5.4940598e+29 -5.4909975e+29 -5.498127e+29 -5.4872428e+29 -5.4807463e+29 -5.4776357e+29 -5.4841209e+29 -5.5009364e+29 -5.4972769e+29 -5.5043134e+29 -5.5080167e+29 -5.5153159e+29 -5.508383e+29 -5.5047388e+29 -5.5118041e+29 -5.5016662e+29 -5.4913621e+29 -5.4952616e+29 -5.4978798e+29 -5.4875682e+29 -5.4941181e+29 -5.490513e+29 -5.4839847e+29 -5.5116363e+29 -5.515402e+29 -5.5229873e+29 -5.5192428e+29 -5.529997e+29 -5.5224948e+29 -5.519154e+29 -5.5266629e+29 -5.545596e+29 -5.5348485e+29 -5.538145e+29 -5.5423039e+29 -5.5312356e+29 -5.5275209e+29 -5.5350427e+29 -5.5387364e+29 -5.5054975e+29 -5.5083729e+29 -5.5159221e+29 -5.512981e+29 -5.5316246e+29 -5.5210721e+29 -5.5241452e+29 -5.5284045e+29 -5.5146591e+29 -5.5179549e+29 -5.525164e+29 -5.5217574e+29 -5.5024321e+29 -5.4992709e+29 -5.5066972e+29 -5.5099183e+29 -5.5025764e+29 -5.4915914e+29 -5.4961069e+29 -5.498259e+29 -5.4884863e+29 -5.4815483e+29 -5.4767679e+29 -5.4837471e+29 -5.4660635e+29 -5.4715241e+29 -5.4785521e+29 -5.4731964e+29 -5.4864514e+29 -5.4932849e+29 -5.4878928e+29 -5.4810933e+29 -5.507966e+29 -5.5114521e+29 -5.5183147e+29 -5.5147546e+29 -5.4929751e+29 -5.4962044e+29 -5.5034302e+29 -5.500068e+29 -5.4856194e+29 -5.4894463e+29 -5.4963921e+29 -5.4924786e+29 -5.5001068e+29 -5.5041821e+29 -5.5109041e+29 -5.5066741e+29 -5.4637579e+29 -5.4695078e+29 -5.465834e+29 -5.4601188e+29 -5.4757224e+29 -5.4698519e+29 -5.4669394e+29 -5.4727627e+29 -5.4791796e+29 -5.4821472e+29 -5.4890494e+29 -5.4859644e+29 -5.4758183e+29 -5.4825399e+29 -5.4787763e+29 -5.4720858e+29 -5.4512774e+29 -5.455995e+29 -5.4617103e+29 -5.4570074e+29 -5.4632697e+29 -5.46802e+29 -5.474673e+29 -5.4698841e+29 -5.4523978e+29 -5.4580184e+29 -5.4645954e+29 -5.4590831e+29 -5.4460823e+29 -5.4518236e+29 -5.4461748e+29 -5.4403961e+29 -5.5330653e+29 -5.542936e+29 -5.5393018e+29 -5.5295578e+29 -5.5397522e+29 -5.5499681e+29 -5.5465543e+29 -5.536446e+29 -5.5537422e+29 -5.5640553e+29 -5.5608887e+29 -5.5505143e+29 -5.5469457e+29 -5.557326e+29 -5.5535709e+29 -5.5432321e+29 -5.3264145e+29 -5.3361909e+29 -5.3260356e+29 -5.3420572e+29 -5.3512501e+29 -5.3548432e+29 -5.3457638e+29 -5.342406e+29 -5.3474137e+29 -5.3381993e+29 -5.3328542e+29 -5.3923828e+29 -5.3871925e+29 -5.3793915e+29 -5.3831969e+29 -5.3755587e+29 -5.3882435e+29 -5.3965721e+29 -5.3924223e+29 -5.3963565e+29 -5.4006393e+29 -5.3786572e+29 -5.3712936e+29 -5.383563e+29 -5.3783709e+29 -5.3736568e+29 -5.366539e+29 -5.3875828e+29 -5.3913902e+29 -5.3858318e+29 -5.3821823e+29 -5.3694695e+29 -5.3638006e+29 -5.3639946e+29 -5.3584319e+29 -5.3683741e+29 -5.3738433e+29 -5.3808313e+29 -5.3753665e+29 -5.3719478e+29 -5.3773931e+29 -5.3695595e+29 -5.3662019e+29 -5.3593491e+29 -5.3628321e+29 -5.3450569e+29 -5.3508702e+29 -5.3526065e+29 -5.3581058e+29 -5.3625528e+29 -5.3555705e+29 -5.3434488e+29 -5.3688014e+29 -5.3663467e+29 -5.353878e+29 -5.3559322e+29 -5.3417036e+29 -5.3852472e+29 -5.3825475e+29 -5.3652803e+29 -5.3811243e+29 -5.3801183e+29 -5.3646587e+29 -5.3409997e+29 -5.3530092e+29 -5.352145e+29 -5.3401043e+29 -5.3485306e+29 -5.3717085e+29 -5.3740823e+29 -5.3613613e+29 -5.3587711e+29 -5.3461519e+29 -5.3521028e+29 -5.3653583e+29 -5.3788262e+29 -5.3634337e+29 -5.3764295e+29 -5.3503899e+29 -5.3962238e+29 -5.3937013e+29 -5.3911153e+29 -5.3883637e+29 -5.4036979e+29 -5.4058372e+29 -5.3985106e+29 -5.3966069e+29 -5.4116763e+29 -5.4093557e+29 -5.4168385e+29 -5.414444e+29 -5.4143316e+29 -5.4175014e+29 -5.419407e+29 -5.4227232e+29 -5.4036009e+29 -5.4113297e+29 -5.4083277e+29 -5.4006897e+29 -5.4207918e+29 -5.4240414e+29 -5.4294401e+29 -5.4260879e+29 -5.4269438e+29 -5.4295722e+29 -5.432406e+29 -5.4351503e+29 -5.4126089e+29 -5.4151731e+29 -5.423081e+29 -5.4205176e+29 -5.4067561e+29 -5.4098295e+29 -5.417681e+29 -5.4145288e+29 -5.3359007e+29 -5.3331283e+29 -5.3434801e+29 -5.3547937e+29 -5.3465012e+29 -5.3580989e+29 -5.370194e+29 -5.3666616e+29 -5.3511218e+29 -5.3626503e+29 -5.3582207e+29 -5.3470783e+29 -5.3264362e+29 -5.3300253e+29 -5.3362267e+29 -5.3400844e+29 -5.3413184e+29 -5.3405963e+29 -5.3516231e+29 -5.3637694e+29 -5.3525614e+29 -5.3650549e+29 -5.3779899e+29 -5.3882094e+29 -5.3765596e+29 -5.3865411e+29 -5.3623948e+29 -5.3606091e+29 -5.3729107e+29 -5.382338e+29 -5.3749492e+29 -5.3846979e+29 -5.3489265e+29 -5.3505983e+29 -5.339781e+29 -5.3382026e+29 -5.3931093e+29 -5.3989603e+29 -5.3959637e+29 -5.3904421e+29 -5.4032175e+29 -5.3970244e+29 -5.3952436e+29 -5.401332e+29 -5.4064064e+29 -5.4083059e+29 -5.41312e+29 -5.4110903e+29 -5.4004169e+29 -5.4038189e+29 -5.4083544e+29 -5.4046852e+29 -5.3491063e+29 -5.3384236e+29 -5.3431164e+29 -5.3541021e+29 -5.332674e+29 -5.3235292e+29 -5.3195136e+29 -5.3282885e+29 -5.3250945e+29 -5.3326031e+29 -5.322763e+29 -5.3142834e+29 -5.3068627e+29 -5.3152368e+29 -5.3431852e+29 -5.3356072e+29 -5.2710203e+29 -5.2818186e+29 -5.2700528e+29 -5.2831677e+29 -5.2896336e+29 -5.2867444e+29 -5.2375599e+29 -5.2320688e+29 -5.2617096e+29 -5.2759018e+29 -5.2619312e+29 -5.2756235e+29 -5.2482968e+29 -5.2308678e+29 -5.2487646e+29 -5.2673262e+29 -5.2526795e+29 -5.2830569e+29 -5.2675125e+29 -5.2537006e+29 -5.28244e+29 -5.2387581e+29 -5.2628444e+29 -5.2774776e+29 -5.2618531e+29 -5.2763168e+29 -5.2492409e+29 -5.2318453e+29 -5.2305573e+29 -5.2481545e+29 -5.2930078e+29 -5.2917755e+29 -5.290126e+29 -5.2909319e+29 -5.2429755e+29 -5.2574076e+29 -5.2609225e+29 -5.2492109e+29 -5.2919986e+29 -5.2906476e+29 -5.2949746e+29 -5.2962566e+29 -5.2938806e+29 -5.2930082e+29 -5.3059512e+29 -5.3070034e+29 -5.3181043e+29 -5.3167595e+29 -5.3206233e+29 -5.3094554e+29 -5.308136e+29 -5.3192949e+29 -5.3297591e+29 -5.3355543e+29 -5.3309395e+29 -5.3368665e+29 -5.3432759e+29 -5.3446823e+29 -5.3284618e+29 -5.3340523e+29 -5.326729e+29 -5.332003e+29 -5.3392737e+29 -5.3415767e+29 -5.3285195e+29 -5.3350225e+29 -5.3293764e+29 -5.3364429e+29 -5.3247756e+29 -5.3238839e+29 -5.3156414e+29 -5.3052948e+29 -5.3048363e+29 -5.3148207e+29 -5.3048172e+29 -5.3145084e+29 -5.3141677e+29 -5.3048245e+29 -5.323314e+29 -5.3279261e+29 -5.3223886e+29 -5.3266342e+29 -5.3333067e+29 -5.3343434e+29 -5.2926148e+29 -5.2924886e+29 -5.2930711e+29 -5.2927631e+29 -5.2369357e+29 -5.2682751e+29 -5.2827852e+29 -5.2674453e+29 -5.281953e+29 -5.2552672e+29 -5.239068e+29 -5.2541089e+29 -5.2982004e+29 -5.2974817e+29 -5.2658316e+29 -5.2805205e+29 -5.2961346e+29 -5.2943876e+29 -5.2787787e+29 -5.2641216e+29 -5.2522892e+29 -5.2345996e+29 -5.233049e+29 -5.2504446e+29 -5.3238592e+29 -5.3297056e+29 -5.3239925e+29 -5.3295388e+29 -5.3339913e+29 -5.334293e+29 -5.3159135e+29 -5.3073773e+29 -5.3066222e+29 -5.3153273e+29 -5.3035392e+29 -5.3053086e+29 -5.3140785e+29 -5.3122561e+29 -5.3228088e+29 -5.3290004e+29 -5.321031e+29 -5.327355e+29 -5.3318486e+29 -5.3333347e+29 -5.3130757e+29 -5.3170384e+29 -5.3157083e+29 -5.3205498e+29 -5.3242216e+29 -5.3206629e+29 -5.3176216e+29 -5.3230793e+29 -5.3193754e+29 -5.3253128e+29 -5.3296842e+29 -5.3271433e+29 -5.3008687e+29 -5.3021486e+29 -5.3107908e+29 -5.3093404e+29 -5.2997815e+29 -5.3079259e+29 -5.3061074e+29 -5.2985357e+29 -5.3151189e+29 -5.3082542e+29 -5.3120586e+29 -5.3112198e+29 -5.304954e+29 -5.2985235e+29 -5.2964746e+29 -5.3022155e+29 -5.2941023e+29 -5.2987932e+29 -5.2932958e+29 -5.2899569e+29 -5.3040112e+29 -5.3072719e+29 -5.2973117e+29 -5.2997967e+29 -5.2306982e+29 -5.2280186e+29 -5.2239197e+29 -5.2253741e+29 -5.2229691e+29 -5.2215856e+29 -5.2212577e+29 -5.2227681e+29 -5.2240692e+29 -5.223602e+29 -5.2384917e+29 -5.2293346e+29 -5.2549367e+29 -5.2528476e+29 -5.2150551e+29 -5.3163386e+29 -5.3057324e+29 -5.3159484e+29 -5.274026e+29 -5.2822145e+29 -5.2754791e+29 -5.2696185e+29 -5.3162734e+29 -5.2581651e+29 -5.2933289e+29 -5.2850608e+29 -5.2183242e+29 -5.2202278e+29 -5.2236315e+29 -5.2245826e+29 -5.2273034e+29 -5.234191e+29 -5.2144328e+29 -5.2169877e+29 -5.2122829e+29 -5.2145816e+29 -5.2208666e+29 -5.2225699e+29 -5.2372984e+29 -5.2647171e+29 -5.2394555e+29 -5.2668827e+29 -5.2524152e+29 -5.2492868e+29 -5.2349562e+29 -5.2329032e+29 -5.2597458e+29 -5.2620742e+29 -5.2459439e+29 -5.2434038e+29 -5.3221782e+29 -5.3213119e+29 -5.3093326e+29 -5.2613258e+29 -5.2638314e+29 -5.3112243e+29 -5.2664506e+29 -5.2682778e+29 -5.272171e+29 -5.2702117e+29 -5.3197747e+29 -5.3185536e+29 -5.2588107e+29 -5.3070683e+29 -5.2685603e+29 -5.2629982e+29 -5.2591243e+29 -5.2563634e+29 -5.242016e+29 -5.2481072e+29 -5.241097e+29 -5.2371403e+29 -5.2439077e+29 -5.2341368e+29 -5.2324406e+29 -5.2397238e+29 -5.2290331e+29 -5.2362629e+29 -5.2282658e+29 -5.2251126e+29 -5.2255331e+29 -5.2329288e+29 -5.2212129e+29 -5.2218843e+29 -5.2295882e+29 -5.2164635e+29 -5.2210089e+29 -5.2288244e+29 -5.2219416e+29 -5.2292793e+29 -5.2180717e+29 -5.2159369e+29 -5.2521699e+29 -5.2485669e+29 -5.2481886e+29 -5.2500689e+29 -5.248099e+29 -5.2443116e+29 -5.2427207e+29 -5.243614e+29 -5.2449322e+29 -5.2441076e+29 -5.2535483e+29 -5.2481982e+29 -5.2156073e+29 -5.2234814e+29 -5.2162352e+29 -5.2237059e+29 -5.2101292e+29 -5.2115637e+29 -5.2210068e+29 -5.2282469e+29 -5.2173972e+29 -5.2250919e+29 -5.2123755e+29 -5.2175401e+29 -5.2202964e+29 -5.2275819e+29 -5.2242766e+29 -5.2311114e+29 -5.2157071e+29 -5.220876e+29 -5.2168793e+29 -5.2242375e+29 -5.2175868e+29 -5.2248938e+29 -5.2126361e+29 -5.2125202e+29 -5.295733e+29 -5.2706242e+29 -5.2984088e+29 -5.2739533e+29 -5.2613984e+29 -5.2577635e+29 -5.3007503e+29 -5.2769446e+29 -5.3021608e+29 -5.2787855e+29 -5.2675722e+29 -5.265086e+29 -5.2931491e+29 -5.2677804e+29 -5.2908412e+29 -5.265202e+29 -5.2546451e+29 -5.2518475e+29 -5.2892698e+29 -5.263904e+29 -5.2882611e+29 -5.263074e+29 -5.2507469e+29 -5.2502987e+29 -5.2870611e+29 -5.2620789e+29 -5.2854168e+29 -5.2601862e+29 -5.2493817e+29 -5.2472043e+29 -5.2842202e+29 -5.2588349e+29 -5.283745e+29 -5.258268e+29 -5.2456736e+29 -5.2451893e+29 -5.2837534e+29 -5.2584748e+29 -5.2843476e+29 -5.2593399e+29 -5.245507e+29 -5.2463208e+29 -5.2853513e+29 -5.2610156e+29 -5.2866652e+29 -5.2628428e+29 -5.2484856e+29 -5.2508783e+29 -5.251672e+29 -5.24801e+29 -5.2456485e+29 -5.2452872e+29 -5.243576e+29 -5.2442176e+29 -5.2494988e+29 -5.2454749e+29 -5.2192359e+29 -5.2270683e+29 -5.2185116e+29 -5.2260992e+29 -5.2139519e+29 -5.2137716e+29 -5.225255e+29 -5.2320098e+29 -5.2223769e+29 -5.2219488e+29 -5.2293848e+29 -5.2173568e+29 -5.2186853e+29 -5.2260517e+29 -5.2219522e+29 -5.2287775e+29 -5.2133363e+29 -5.2177813e+29 -5.2178069e+29 -5.2253075e+29 -5.2171111e+29 -5.224678e+29 -5.2130617e+29 -5.2114279e+29 -5.2495441e+29 -5.2480015e+29 -5.2483222e+29 -5.2516169e+29 -5.2540095e+29 -5.2562776e+29 -5.2615919e+29 -5.2678609e+29 -5.2219347e+29 -5.2292842e+29 -5.2230626e+29 -5.229968e+29 -5.2195162e+29 -5.2169908e+29 -5.2249654e+29 -5.2317855e+29 -5.2222837e+29 -5.2295329e+29 -5.2170115e+29 -5.220633e+29 -5.22915e+29 -5.235968e+29 -5.227072e+29 -5.2337907e+29 -5.2233044e+29 -5.2246321e+29 -5.2328313e+29 -5.2397518e+29 -5.2377945e+29 -5.2440261e+29 -5.2291665e+29 -5.2353981e+29 -5.2864138e+29 -5.2627e+29 -5.2871807e+29 -5.2636864e+29 -5.25196e+29 -5.2505866e+29 -5.2843573e+29 -5.2598896e+29 -5.2852807e+29 -5.2611879e+29 -5.2486779e+29 -5.2472756e+29 -5.2836809e+29 -5.2591407e+29 -5.2835009e+29 -5.2589555e+29 -5.2464769e+29 -5.2461596e+29 -5.2839694e+29 -5.2598328e+29 -5.2849876e+29 -5.2611623e+29 -5.2472494e+29 -5.2489144e+29 -5.2867835e+29 -5.2630676e+29 -5.2880807e+29 -5.2645102e+29 -5.25053e+29 -5.2520794e+29 -5.2856853e+29 -5.2620632e+29 -5.2860771e+29 -5.2623986e+29 -5.2499834e+29 -5.2500235e+29 -5.2895273e+29 -5.2662701e+29 -5.2913696e+29 -5.2685655e+29 -5.253928e+29 -5.2561664e+29 -5.2932124e+29 -5.2711415e+29 -5.295038e+29 -5.2737007e+29 -5.2594675e+29 -5.2627524e+29 -5.2935896e+29 -5.3136893e+29 -5.3118205e+29 -5.2915554e+29 -5.316651e+29 -5.2970299e+29 -5.2954505e+29 -5.3153759e+29 -5.3518027e+29 -5.3498458e+29 -5.3338406e+29 -5.3519828e+29 -5.3505393e+29 -5.3321736e+29 -5.336453e+29 -5.3353542e+29 -5.3533284e+29 -5.3542896e+29 -5.2848337e+29 -5.3062362e+29 -5.2857221e+29 -5.3051913e+29 -5.3077206e+29 -5.3099736e+29 -5.2895867e+29 -5.2871998e+29 -5.3468778e+29 -5.3438244e+29 -5.330422e+29 -5.3281719e+29 -5.3469926e+29 -5.3490711e+29 -5.3266781e+29 -5.3256302e+29 -5.3441173e+29 -5.3454688e+29 -5.3391805e+29 -5.3387948e+29 -5.2814724e+29 -5.301537e+29 -5.30238e+29 -5.2827122e+29 -5.3010752e+29 -5.280624e+29 -5.2807721e+29 -5.3010468e+29 -5.3214508e+29 -5.3216614e+29 -5.3403032e+29 -5.340601e+29 -5.3217304e+29 -5.3223109e+29 -5.3405458e+29 -5.3403194e+29 -5.341617e+29 -5.3398964e+29 -5.3230472e+29 -5.3245754e+29 -5.3415666e+29 -5.3427278e+29 -5.3041343e+29 -5.283745e+29 -5.2819672e+29 -5.3025385e+29 -5.2809466e+29 -5.3015414e+29 -5.3011952e+29 -5.2807029e+29 -5.3221306e+29 -5.3218245e+29 -5.34076e+29 -5.3409374e+29 -5.3020663e+29 -5.2732775e+29 -5.2897848e+29 -5.2999576e+29 -5.2710823e+29 -5.2875804e+29 -5.2379651e+29 -5.2408769e+29 -5.2588116e+29 -5.256468e+29 -5.2312816e+29 -5.2282196e+29 -5.2984505e+29 -5.269977e+29 -5.2863195e+29 -5.2972153e+29 -5.269014e+29 -5.2851737e+29 -5.2372389e+29 -5.2555216e+29 -5.2549707e+29 -5.2377504e+29 -5.2285525e+29 -5.2276222e+29 -5.2420251e+29 -5.2512673e+29 -5.246116e+29 -5.2545977e+29 -5.3099813e+29 -5.2836038e+29 -5.2989437e+29 -5.3091473e+29 -5.2822337e+29 -5.297896e+29 -5.2705145e+29 -5.2686456e+29 -5.3069699e+29 -5.2791184e+29 -5.2952416e+29 -5.3044249e+29 -5.2758303e+29 -5.2922039e+29 -5.2471623e+29 -5.2438485e+29 -5.2615216e+29 -5.2650163e+29 -5.2373149e+29 -5.2341138e+29 -5.2255731e+29 -5.2349867e+29 -5.2281934e+29 -5.2372447e+29 -5.224447e+29 -5.2334857e+29 -5.2242518e+29 -5.2335768e+29 -5.2247111e+29 -5.2336484e+29 -5.224778e+29 -5.2337881e+29 -5.2266576e+29 -5.2355976e+29 -5.2297051e+29 -5.2382617e+29 -5.2654398e+29 -5.2811116e+29 -5.2657113e+29 -5.281197e+29 -5.2513026e+29 -5.2515895e+29 -5.2667664e+29 -5.2818862e+29 -5.2677278e+29 -5.2824824e+29 -5.2530047e+29 -5.2544279e+29 -5.2672186e+29 -5.2530014e+29 -5.2831665e+29 -5.2685579e+29 -5.2545204e+29 -5.2845048e+29 -5.2662073e+29 -5.282133e+29 -5.2654463e+29 -5.281255e+29 -5.2518984e+29 -5.2512279e+29 -4.702756e+29 -4.9162567e+29 -4.7101026e+29 -4.9179749e+29 -4.9203742e+29 -4.7146055e+29 -4.9157549e+29 -4.7169495e+29 -4.9095018e+29 -4.9058561e+29 -5.3804826e+29 -5.3815362e+29 -5.3681707e+29 -5.3549813e+29 -5.3536018e+29 -5.3669379e+29 -5.3559984e+29 -5.3571595e+29 -5.3703501e+29 -5.3843431e+29 -5.3691943e+29 -5.3826784e+29 -5.4003966e+29 -5.4020698e+29 -5.3991949e+29 -5.3979935e+29 -5.382732e+29 -5.3835016e+29 -5.4067324e+29 -5.4065235e+29 -5.3545357e+29 -5.3711405e+29 -5.3716518e+29 -5.355146e+29 -5.3556158e+29 -5.3829339e+29 -5.3842772e+29 -5.3719714e+29 -5.3722157e+29 -5.356021e+29 -5.4068063e+29 -5.4073718e+29 -5.3628285e+29 -5.3902624e+29 -5.3887083e+29 -5.3761907e+29 -5.3749788e+29 -5.3617987e+29 -5.3871981e+29 -5.3859618e+29 -5.3604718e+29 -5.3735762e+29 -5.3720004e+29 -5.3588779e+29 -5.4036392e+29 -5.4050478e+29 -5.4081852e+29 -5.406574e+29 -5.3537812e+29 -5.3533117e+29 -5.3701732e+29 -5.3707883e+29 -5.3832094e+29 -5.381597e+29 -5.4072868e+29 -5.4060168e+29 -5.3815478e+29 -5.4055873e+29 -5.4062505e+29 -5.3831147e+29 -5.3705709e+29 -5.3700576e+29 -5.353377e+29 -5.3538387e+29 -5.422131e+29 -5.4222669e+29 -5.4324928e+29 -5.4321337e+29 -5.4228485e+29 -5.4238549e+29 -5.4340272e+29 -5.4331918e+29 -5.4419578e+29 -5.4428004e+29 -5.4505356e+29 -5.4496477e+29 -5.440775e+29 -5.4412394e+29 -5.4489362e+29 -5.4483982e+29 -5.4229107e+29 -5.4227129e+29 -5.4324344e+29 -5.4327736e+29 -5.4231841e+29 -5.4329969e+29 -5.4329118e+29 -5.4232694e+29 -5.4410333e+29 -5.4413411e+29 -5.4485855e+29 -5.4481257e+29 -5.441206e+29 -5.4409328e+29 -5.4484293e+29 -5.4485584e+29 -5.4371858e+29 -5.4431762e+29 -5.4413666e+29 -5.4354367e+29 -5.421865e+29 -5.4201753e+29 -5.4285489e+29 -5.4302613e+29 -5.4171408e+29 -5.4186714e+29 -5.426916e+29 -5.4251764e+29 -5.431804e+29 -5.4337292e+29 -5.4397011e+29 -5.4375999e+29 -5.4265103e+29 -5.4278884e+29 -5.4350523e+29 -5.4363088e+29 -5.4422297e+29 -5.4434664e+29 -5.4499937e+29 -5.4486405e+29 -5.4468841e+29 -5.4406735e+29 -5.4389245e+29 -5.445007e+29 -5.4234359e+29 -5.4250001e+29 -5.4319162e+29 -5.4335512e+29 -5.4351556e+29 -5.4092116e+29 -5.4089703e+29 -5.4351756e+29 -5.3704617e+29 -5.3709589e+29 -5.4111874e+29 -5.4104495e+29 -5.4366063e+29 -5.437456e+29 -5.3721041e+29 -5.3728766e+29 -5.3740871e+29 -5.4008812e+29 -5.3993946e+29 -5.3718301e+29 -5.3714787e+29 -5.3731043e+29 -5.3995534e+29 -5.3989933e+29 -5.4034802e+29 -5.3768884e+29 -5.401493e+29 -5.3739978e+29 -5.3731431e+29 -5.3745828e+29 -5.4013539e+29 -5.4007818e+29 -5.4193936e+29 -5.4192804e+29 -5.4333301e+29 -5.4331674e+29 -5.4347727e+29 -5.421315e+29 -5.4198333e+29 -5.4338631e+29 -5.4559473e+29 -5.445671e+29 -5.4450805e+29 -5.4554878e+29 -5.4443748e+29 -5.4446331e+29 -5.4551204e+29 -5.4547493e+29 -5.4178289e+29 -5.418973e+29 -5.4326739e+29 -5.4318972e+29 -5.4419421e+29 -5.4425324e+29 -5.4528207e+29 -5.4520236e+29 -5.4431519e+29 -5.4438595e+29 -5.454246e+29 -5.4535099e+29 -5.4173966e+29 -5.4313382e+29 -5.4309174e+29 -5.4173661e+29 -5.3833187e+29 -5.3839286e+29 -5.4103656e+29 -5.410559e+29 -5.4129873e+29 -5.3866051e+29 -5.3843072e+29 -5.4114958e+29 -5.4279827e+29 -5.428604e+29 -5.4421556e+29 -5.4412427e+29 -5.4434158e+29 -5.4304682e+29 -5.4294505e+29 -5.4429516e+29 -5.4536652e+29 -5.4537511e+29 -5.4634552e+29 -5.4633108e+29 -5.451974e+29 -5.4529828e+29 -5.4618824e+29 -5.4629417e+29 -5.4223832e+29 -5.4232242e+29 -5.4368221e+29 -5.4356221e+29 -5.4245964e+29 -5.4267326e+29 -5.4399253e+29 -5.4382025e+29 -5.4475359e+29 -5.4463197e+29 -5.4564648e+29 -5.4575961e+29 -5.4489197e+29 -5.4505643e+29 -5.4589113e+29 -5.4605075e+29 -5.3824453e+29 -5.3789553e+29 -5.4064231e+29 -5.4090161e+29 -5.3774467e+29 -5.4049784e+29 -5.4046227e+29 -5.3780502e+29 -5.3545575e+29 -5.3832187e+29 -5.3850658e+29 -5.3721572e+29 -5.3714308e+29 -5.3538802e+29 -5.4100886e+29 -5.4085977e+29 -5.3825849e+29 -5.4077902e+29 -5.4078651e+29 -5.383666e+29 -5.3537916e+29 -5.3711477e+29 -5.371191e+29 -5.3539857e+29 -5.3571905e+29 -5.356273e+29 -5.3741615e+29 -5.3751913e+29 -5.3882627e+29 -5.3860758e+29 -5.414128e+29 -5.4122928e+29 -5.3852036e+29 -5.3858453e+29 -5.4109217e+29 -5.4111861e+29 -5.3727862e+29 -5.3732854e+29 -5.3555568e+29 -5.355064e+29 -5.442839e+29 -5.4320884e+29 -5.4304757e+29 -5.4414148e+29 -5.4292355e+29 -5.4284264e+29 -5.4390624e+29 -5.4401033e+29 -5.4480904e+29 -5.4492321e+29 -5.4570925e+29 -5.4559215e+29 -5.4517475e+29 -5.450468e+29 -5.4581724e+29 -5.4592283e+29 -5.4274499e+29 -5.4261674e+29 -5.4368426e+29 -5.4380019e+29 -5.4243326e+29 -5.4251792e+29 -5.4357045e+29 -5.4346747e+29 -5.4435604e+29 -5.4446769e+29 -5.4525328e+29 -5.4513771e+29 -5.445833e+29 -5.4470109e+29 -5.4548575e+29 -5.4536605e+29 -5.3121059e+29 -5.3251557e+29 -5.3263842e+29 -5.3136679e+29 -5.3227175e+29 -5.3090797e+29 -5.3105624e+29 -5.3238709e+29 -5.3359701e+29 -5.3349453e+29 -5.350761e+29 -5.3497047e+29 -5.3369698e+29 -5.3377723e+29 -5.3515401e+29 -5.3513659e+29 -5.3343048e+29 -5.3336825e+29 -5.3487844e+29 -5.3486011e+29 -5.3334103e+29 -5.3333555e+29 -5.3486932e+29 -5.3490045e+29 -5.3063109e+29 -5.3059656e+29 -5.3202518e+29 -5.3204676e+29 -5.3068871e+29 -5.3209425e+29 -5.3217628e+29 -5.3079185e+29 -5.3061887e+29 -5.3207312e+29 -5.319934e+29 -5.3053252e+29 -5.3221891e+29 -5.3077983e+29 -5.3071599e+29 -5.3215794e+29 -5.3349322e+29 -5.3354691e+29 -5.351574e+29 -5.3520923e+29 -5.3341336e+29 -5.3333251e+29 -5.3500359e+29 -5.3508284e+29 -5.3054007e+29 -5.3046635e+29 -5.319241e+29 -5.319778e+29 -5.3193514e+29 -5.3046632e+29 -5.3043667e+29 -5.3190095e+29 -5.3493322e+29 -5.3325447e+29 -5.3327887e+29 -5.3495127e+29 -5.3327067e+29 -5.3330676e+29 -5.3494079e+29 -5.3493536e+29 -5.3426678e+29 -5.3498411e+29 -5.3356546e+29 -5.3413609e+29 -5.3372651e+29 -5.348771e+29 -5.3269404e+29 -5.3155593e+29 -5.3135106e+29 -5.3250002e+29 -5.311959e+29 -5.3234335e+29 -5.3218564e+29 -5.3105862e+29 -5.3341158e+29 -5.3400479e+29 -5.3322834e+29 -5.3383037e+29 -5.3461748e+29 -5.3477229e+29 -5.3393693e+29 -5.3447141e+29 -5.3413171e+29 -5.3465169e+29 -5.3534367e+29 -5.3517415e+29 -5.342687e+29 -5.34784e+29 -5.3431163e+29 -5.3484016e+29 -5.3554005e+29 -5.3546899e+29 -5.3217357e+29 -5.3224298e+29 -5.3330948e+29 -5.3325437e+29 -5.3177433e+29 -5.3199722e+29 -5.3310374e+29 -5.3289968e+29 -5.5279736e+29 -5.5362561e+29 -5.5292552e+29 -5.5350711e+29 -5.550651e+29 -5.5432903e+29 -5.5423394e+29 -5.5498005e+29 -5.5445076e+29 -5.545823e+29 -5.5529871e+29 -5.5516845e+29 -5.5318989e+29 -5.5388178e+29 -5.537608e+29 -5.5306633e+29 -5.5481031e+29 -5.5482845e+29 -5.5558289e+29 -5.5555074e+29 -5.5409224e+29 -5.5336016e+29 -5.5335911e+29 -5.5407949e+29 -5.533418e+29 -5.5404923e+29 -5.5397766e+29 -5.5328345e+29 -5.5476821e+29 -5.5550698e+29 -5.5541241e+29 -5.5467897e+29 -5.56175e+29 -5.562772e+29 -5.5707569e+29 -5.5696916e+29 -5.5633009e+29 -5.5637481e+29 -5.5719781e+29 -5.5713956e+29 -5.5782852e+29 -5.5875412e+29 -5.5793918e+29 -5.5863997e+29 -5.580828e+29 -5.5891415e+29 -5.5883799e+29 -5.5801401e+29 -5.5605791e+29 -5.5684854e+29 -5.5672119e+29 -5.5592727e+29 -5.5851319e+29 -5.5770427e+29 -5.575743e+29 -5.5837863e+29 -5.5748135e+29 -5.5741633e+29 -5.5820936e+29 -5.5827416e+29 -5.5662881e+29 -5.5583158e+29 -5.5656044e+29 -5.5575863e+29 -5.4729738e+29 -5.4627447e+29 -5.4615621e+29 -5.4719003e+29 -5.4854222e+29 -5.4791304e+29 -5.4780428e+29 -5.4842739e+29 -5.4829174e+29 -5.4768742e+29 -5.4757637e+29 -5.4818478e+29 -5.4707722e+29 -5.4604367e+29 -5.4592868e+29 -5.4696676e+29 -5.4873245e+29 -5.4816139e+29 -5.4814263e+29 -5.4873732e+29 -5.4759617e+29 -5.4666319e+29 -5.4658462e+29 -5.4756018e+29 -5.4749246e+29 -5.4649223e+29 -5.4638114e+29 -5.4740111e+29 -5.487104e+29 -5.4809412e+29 -5.4801377e+29 -5.4864233e+29 -5.5096401e+29 -5.5101757e+29 -5.4934001e+29 -5.4939456e+29 -5.501784e+29 -5.5013089e+29 -5.5102177e+29 -5.5102738e+29 -5.501694e+29 -5.4939564e+29 -5.4941003e+29 -5.501849e+29 -5.5204129e+29 -5.5203113e+29 -5.5203544e+29 -5.519852e+29 -5.5087653e+29 -5.5074862e+29 -5.5003363e+29 -5.4924037e+29 -5.4912172e+29 -5.4991191e+29 -5.5189212e+29 -5.5176446e+29 -5.5060815e+29 -5.5161503e+29 -5.5148867e+29 -5.5048519e+29 -5.4886704e+29 -5.4897703e+29 -5.4976333e+29 -5.4964533e+29 -5.4808103e+29 -5.4747741e+29 -5.4739371e+29 -5.4801193e+29 -5.4686724e+29 -5.4583599e+29 -5.4574496e+29 -5.4678072e+29 -5.4670417e+29 -5.4567209e+29 -5.4561581e+29 -5.4664466e+29 -5.4795223e+29 -5.4732331e+29 -5.4726264e+29 -5.478944e+29 -5.4553093e+29 -5.4652784e+29 -5.4558936e+29 -5.4644876e+29 -5.4660424e+29 -5.4560394e+29 -5.4560237e+29 -5.4657472e+29 -5.4783477e+29 -5.472116e+29 -5.4716521e+29 -5.4777583e+29 -5.4769341e+29 -5.4710064e+29 -5.4700495e+29 -5.4757713e+29 -5.5014748e+29 -5.5005099e+29 -5.4931336e+29 -5.4852628e+29 -5.4845758e+29 -5.4923486e+29 -5.5106255e+29 -5.5116474e+29 -5.4992891e+29 -5.509228e+29 -5.5074174e+29 -5.4975972e+29 -5.4822139e+29 -5.4835699e+29 -5.4912099e+29 -5.4896502e+29 -5.5032627e+29 -5.5039289e+29 -5.5139368e+29 -5.5133613e+29 -5.4954318e+29 -5.4876273e+29 -5.4870156e+29 -5.494856e+29 -5.5027624e+29 -5.5021635e+29 -5.4859246e+29 -5.4864559e+29 -5.4943601e+29 -5.4938411e+29 -5.5124121e+29 -5.5129648e+29 -5.5417881e+29 -5.5413695e+29 -5.5487247e+29 -5.5491413e+29 -5.5331063e+29 -5.533676e+29 -5.5263442e+29 -5.5257771e+29 -5.534069e+29 -5.5345214e+29 -5.5272381e+29 -5.5267277e+29 -5.5409976e+29 -5.5484659e+29 -5.5479235e+29 -5.5404371e+29 -5.5569016e+29 -5.5564254e+29 -5.5643839e+29 -5.5649366e+29 -5.5815988e+29 -5.5735478e+29 -5.5729072e+29 -5.5808684e+29 -5.5713398e+29 -5.5722877e+29 -5.5800401e+29 -5.578888e+29 -5.5561177e+29 -5.5554792e+29 -5.5631723e+29 -5.5639413e+29 -5.5690574e+29 -5.5702108e+29 -5.5764048e+29 -5.5775706e+29 -5.5622345e+29 -5.5546674e+29 -5.5611021e+29 -5.5534962e+29 -5.551807e+29 -5.5496804e+29 -5.5572881e+29 -5.5594178e+29 -5.5675612e+29 -5.565505e+29 -5.5731586e+29 -5.575092e+29 -5.5322651e+29 -5.5249424e+29 -5.5237544e+29 -5.5310304e+29 -5.5201474e+29 -5.5221644e+29 -5.5293752e+29 -5.5273515e+29 -5.5367122e+29 -5.5441992e+29 -5.5421046e+29 -5.5346575e+29 -5.5471152e+29 -5.539619e+29 -5.5383934e+29 -5.5458868e+29 -5.4488664e+29 -5.4526472e+29 -5.4571877e+29 -5.4549511e+29 -5.4504081e+29 -5.446821e+29 -5.4615626e+29 -5.4665062e+29 -5.4639854e+29 -5.4591964e+29 -5.4568169e+29 -5.4612596e+29 -5.4580864e+29 -5.4538559e+29 -5.4453135e+29 -5.4487508e+29 -5.4528621e+29 -5.4501592e+29 -5.4463106e+29 -5.4430756e+29 -5.4750482e+29 -5.4699761e+29 -5.4680985e+29 -5.473028e+29 -5.456308e+29 -5.4605171e+29 -5.4653553e+29 -5.4635908e+29 -5.4588372e+29 -5.4547593e+29 -5.4659821e+29 -5.4708969e+29 -5.4686706e+29 -5.463784e+29 -5.4526497e+29 -5.4565576e+29 -5.4508375e+29 -5.4547311e+29 -5.4593674e+29 -5.4614485e+29 -5.48916e+29 -5.4916175e+29 -5.4813722e+29 -5.4837891e+29 -5.4767813e+29 -5.4744271e+29 -5.4962895e+29 -5.4940169e+29 -5.4882494e+29 -5.4810549e+29 -5.4860939e+29 -5.4789927e+29 -5.5021636e+29 -5.5096268e+29 -5.5045406e+29 -5.5120536e+29 -5.4996924e+29 -5.5071116e+29 -5.4971877e+29 -5.5045009e+29 -5.4840275e+29 -5.48688e+29 -5.4722917e+29 -5.4696267e+29 -5.4764335e+29 -5.4791753e+29 -5.4884795e+29 -5.4953986e+29 -5.4808453e+29 -5.4772033e+29 -5.4847924e+29 -5.4917375e+29 -5.4947688e+29 -5.5019358e+29 -5.4918056e+29 -5.4988027e+29 -5.4633408e+29 -5.4667348e+29 -5.4733724e+29 -5.4698465e+29 -5.5119986e+29 -5.5212243e+29 -5.5146617e+29 -5.5185295e+29 -5.535304e+29 -5.5280976e+29 -5.5254181e+29 -5.5326146e+29 -5.5305786e+29 -5.5330548e+29 -5.5402045e+29 -5.537687e+29 -5.5195549e+29 -5.5261502e+29 -5.5237528e+29 -5.5171761e+29 -5.5476618e+29 -5.5450948e+29 -5.5527396e+29 -5.5553056e+29 -5.5610113e+29 -5.5635562e+29 -5.5710225e+29 -5.568461e+29 -5.5556585e+29 -5.5584314e+29 -5.5629497e+29 -5.5657605e+29 -5.5426684e+29 -5.5502395e+29 -5.5475353e+29 -5.5400178e+29 -5.5259099e+29 -5.5296549e+29 -5.5370319e+29 -5.5333482e+29 -5.5334157e+29 -5.5369116e+29 -5.5443879e+29 -5.5408231e+29 -5.5489459e+29 -5.5525409e+29 -5.5563439e+29 -5.5599626e+29 -5.5451708e+29 -5.5414845e+29 -5.5489159e+29 -5.5525868e+29 -5.5156188e+29 -5.5092062e+29 -5.5059865e+29 -5.5123419e+29 -5.5223821e+29 -5.5190978e+29 -5.5261366e+29 -5.5295406e+29 -5.5118769e+29 -5.5154953e+29 -5.5224193e+29 -5.5187359e+29 -5.5025063e+29 -5.5088318e+29 -5.5052976e+29 -5.4989601e+29 -5.5976899e+29 -5.6079074e+29 -5.5968486e+29 -5.6068961e+29 -5.6147497e+29 -5.6157418e+29 -5.6240364e+29 -5.6326916e+29 -5.6315892e+29 -5.6230253e+29 -5.6219388e+29 -5.6207919e+29 -5.6291718e+29 -5.6303539e+29 -5.5959604e+29 -5.6059468e+29 -5.6137317e+29 -5.6048842e+29 -5.6126339e+29 -5.5948135e+29 -5.5935027e+29 -5.6035378e+29 -5.5921664e+29 -5.6022894e+29 -5.610134e+29 -5.6113959e+29 -5.6196026e+29 -5.6268126e+29 -5.6280811e+29 -5.6183284e+29 -5.6171893e+29 -5.6162418e+29 -5.624625e+29 -5.6256003e+29 -5.5910514e+29 -5.6011222e+29 -5.6089981e+29 -5.600317e+29 -5.6081037e+29 -5.5903523e+29 -5.6369445e+29 -5.635675e+29 -5.6452802e+29 -5.6465389e+29 -5.6570097e+29 -5.6677947e+29 -5.6665231e+29 -5.6557477e+29 -5.6545932e+29 -5.6653497e+29 -5.6642679e+29 -5.6535355e+29 -5.6344913e+29 -5.6334768e+29 -5.6430719e+29 -5.6441074e+29 -5.6417537e+29 -5.6515339e+29 -5.6503056e+29 -5.6405708e+29 -5.6392957e+29 -5.6489813e+29 -5.6476888e+29 -5.6380468e+29 -5.6704236e+29 -5.6595518e+29 -5.6582098e+29 -5.6690474e+29 -5.6621577e+29 -5.6608755e+29 -5.6717725e+29 -5.6730771e+29 -5.5880616e+29 -5.5976163e+29 -5.5961609e+29 -5.603507e+29 -5.6050312e+29 -5.5867545e+29 -5.5898081e+29 -5.5996429e+29 -5.5988494e+29 -5.6063451e+29 -5.6073247e+29 -5.5890525e+29 -5.6143182e+29 -5.6154089e+29 -5.6226505e+29 -5.6238112e+29 -5.6129604e+29 -5.611367e+29 -5.6195896e+29 -5.6212373e+29 -5.6525138e+29 -5.6512223e+29 -5.6617833e+29 -5.6631354e+29 -5.6326196e+29 -5.6409204e+29 -5.6421467e+29 -5.6314285e+29 -5.6299614e+29 -5.6393932e+29 -5.6376161e+29 -5.62826e+29 -5.649655e+29 -5.6477946e+29 -5.6582418e+29 -5.6601929e+29 -5.6265899e+29 -5.6249187e+29 -5.6340646e+29 -5.6358297e+29 -5.6459025e+29 -5.6562401e+29 -5.6542251e+29 -5.6440138e+29 -5.6421725e+29 -5.6402995e+29 -5.6503929e+29 -5.6522673e+29 -5.6233013e+29 -5.6323404e+29 -5.6304408e+29 -5.6214306e+29 -5.5853166e+29 -5.5946469e+29 -5.6019838e+29 -5.5933231e+29 -5.6005542e+29 -5.5841018e+29 -5.5811038e+29 -5.5904344e+29 -5.5829252e+29 -5.5921378e+29 -5.5992296e+29 -5.5975538e+29 -5.6052152e+29 -5.6069048e+29 -5.613121e+29 -5.6148922e+29 -5.6098148e+29 -5.6083037e+29 -5.6163957e+29 -5.6179933e+29 -5.5738853e+29 -5.5839895e+29 -5.5811019e+29 -5.5710589e+29 -5.5792043e+29 -5.5893664e+29 -5.5868059e+29 -5.5766311e+29 -5.5680622e+29 -5.5781122e+29 -5.574661e+29 -5.5644958e+29 -5.5607642e+29 -5.5710492e+29 -5.5674081e+29 -5.5570653e+29 -5.1444051e+29 -5.1409494e+29 -5.1340846e+29 -5.1269351e+29 -5.5115506e+29 -5.5122359e+29 -5.4980243e+29 -5.4972753e+29 -5.5051705e+29 -5.5059544e+29 -5.5113207e+29 -5.5111853e+29 -5.5047927e+29 -5.4969818e+29 -5.4968568e+29 -5.5048025e+29 -5.5239127e+29 -5.5238443e+29 -5.5249371e+29 -5.5242036e+29 -5.4775258e+29 -5.468733e+29 -5.4696695e+29 -5.4784045e+29 -5.477078e+29 -5.4681601e+29 -5.4680808e+29 -5.4769293e+29 -5.4902186e+29 -5.4836734e+29 -5.4834798e+29 -5.4900571e+29 -5.4904962e+29 -5.4839514e+29 -5.4848321e+29 -5.4912932e+29 -5.4727221e+29 -5.4805083e+29 -5.4719225e+29 -5.4811676e+29 -5.4791652e+29 -5.470512e+29 -5.4711947e+29 -5.4799123e+29 -5.4919236e+29 -5.4854772e+29 -5.4862361e+29 -5.4926822e+29 -5.4932055e+29 -5.4867546e+29 -5.4874591e+29 -5.4938765e+29 -5.5145886e+29 -5.5143178e+29 -5.5005174e+29 -5.4999371e+29 -5.5080052e+29 -5.5084115e+29 -5.513168e+29 -5.5138326e+29 -5.5067182e+29 -5.4986816e+29 -5.4994046e+29 -5.5074936e+29 -5.52658e+29 -5.5259119e+29 -5.5269469e+29 -5.5270069e+29 -5.602209e+29 -5.5916875e+29 -5.5922805e+29 -5.6015124e+29 -5.5723505e+29 -5.5722823e+29 -5.5816383e+29 -5.5815341e+29 -5.5723306e+29 -5.5727501e+29 -5.582269e+29 -5.58176e+29 -5.5912236e+29 -5.5914471e+29 -5.6012043e+29 -5.6009051e+29 -5.5537437e+29 -5.5540507e+29 -5.5632377e+29 -5.5629224e+29 -5.5447799e+29 -5.535418e+29 -5.5353066e+29 -5.5445561e+29 -5.5356196e+29 -5.5447512e+29 -5.5452758e+29 -5.5362646e+29 -5.5538525e+29 -5.5629503e+29 -5.5631988e+29 -5.5542349e+29 -5.5370735e+29 -5.5458986e+29 -5.5462651e+29 -5.5376249e+29 -5.5629723e+29 -5.5546906e+29 -5.5541052e+29 -5.5622705e+29 -5.5546646e+29 -5.5634389e+29 -5.5633771e+29 -5.5548381e+29 -5.5463037e+29 -5.5378371e+29 -5.5376424e+29 -5.5459307e+29 -5.5721208e+29 -5.5724373e+29 -5.5815343e+29 -5.5810831e+29 -5.5905475e+29 -5.591102e+29 -5.6006508e+29 -5.6000051e+29 -5.5888587e+29 -5.5897885e+29 -5.599174e+29 -5.5981926e+29 -5.570776e+29 -5.5715542e+29 -5.580371e+29 -5.579526e+29 -5.6694232e+29 -5.6800536e+29 -5.6783202e+29 -5.6677396e+29 -5.6896547e+29 -5.6914659e+29 -5.7032424e+29 -5.7013364e+29 -5.6949698e+29 -5.7066077e+29 -5.7051071e+29 -5.6933498e+29 -5.6661754e+29 -5.6645089e+29 -5.6751007e+29 -5.6767191e+29 -5.6880679e+29 -5.6997034e+29 -5.6981004e+29 -5.6864534e+29 -5.6850205e+29 -5.6838089e+29 -5.6955029e+29 -5.6966714e+29 -5.6629725e+29 -5.673621e+29 -5.6722881e+29 -5.6615232e+29 -5.6414331e+29 -5.6429466e+29 -5.6513041e+29 -5.6528011e+29 -5.6463279e+29 -5.6445936e+29 -5.6543898e+29 -5.6560949e+29 -5.6332695e+29 -5.6216131e+29 -5.6317887e+29 -5.6117911e+29 -5.6098224e+29 -5.6193776e+29 -5.6292727e+29 -5.6189625e+29 -5.6287522e+29 -5.6094746e+29 -5.6485886e+29 -5.6387627e+29 -5.638159e+29 -5.6479269e+29 -5.6393628e+29 -5.6402399e+29 -5.6501232e+29 -5.6491808e+29 -5.6107859e+29 -5.6204573e+29 -5.6305925e+29 -5.6198214e+29 -5.6298245e+29 -5.6101641e+29 -5.6579945e+29 -5.6685621e+29 -5.6693421e+29 -5.6586774e+29 -5.6701244e+29 -5.6711525e+29 -5.6603416e+29 -5.6593512e+29 -5.6816396e+29 -5.6827224e+29 -5.6933992e+29 -5.6944949e+29 -5.6807395e+29 -5.6924036e+29 -5.6913924e+29 -5.6798477e+29 -5.6677191e+29 -5.6562545e+29 -5.6572547e+29 -5.666685e+29 -5.6778307e+29 -5.6788757e+29 -5.690322e+29 -5.6891776e+29 -5.6879869e+29 -5.6766725e+29 -5.6753376e+29 -5.6866301e+29 -5.6551868e+29 -5.6539828e+29 -5.6643097e+29 -5.6655707e+29 -5.6091046e+29 -5.6184691e+29 -5.6281618e+29 -5.6176878e+29 -5.6273146e+29 -5.6084075e+29 -5.6064947e+29 -5.6156194e+29 -5.6075119e+29 -5.6166937e+29 -5.6262828e+29 -5.625171e+29 -5.6344649e+29 -5.6355979e+29 -5.6452547e+29 -5.6440959e+29 -5.6366152e+29 -5.6375278e+29 -5.6472529e+29 -5.6462876e+29 -5.4672884e+29 -5.4770867e+29 -5.4684338e+29 -5.4762464e+29 -5.4790274e+29 -5.4701873e+29 -5.4693957e+29 -5.478182e+29 -5.4898331e+29 -5.4842724e+29 -5.4834897e+29 -5.4891049e+29 -5.4881092e+29 -5.4824254e+29 -5.4817946e+29 -5.4875469e+29 -5.5111795e+29 -5.5110579e+29 -5.5033355e+29 -5.4961237e+29 -5.4955443e+29 -5.5030122e+29 -5.5208644e+29 -5.5207222e+29 -5.5106072e+29 -5.5205935e+29 -5.5203547e+29 -5.5102806e+29 -5.494208e+29 -5.494708e+29 -5.5023796e+29 -5.5019376e+29 -5.508978e+29 -5.508633e+29 -5.5173182e+29 -5.5177919e+29 -5.5018381e+29 -5.4956223e+29 -5.4957879e+29 -5.5021126e+29 -5.509918e+29 -5.5107207e+29 -5.4964202e+29 -5.4961827e+29 -5.5027097e+29 -5.5033025e+29 -5.5200046e+29 -5.5189448e+29 -5.4901206e+29 -5.4851678e+29 -5.4851162e+29 -5.4901562e+29 -5.4800331e+29 -5.4712599e+29 -5.4710371e+29 -5.4799743e+29 -5.4798832e+29 -5.4709206e+29 -5.4706224e+29 -5.4795771e+29 -5.4903478e+29 -5.4850435e+29 -5.4848615e+29 -5.4903242e+29 -5.5351628e+29 -5.54208e+29 -5.5404162e+29 -5.5334176e+29 -5.5538865e+29 -5.5462946e+29 -5.5455509e+29 -5.5532956e+29 -5.5492411e+29 -5.5567819e+29 -5.5551285e+29 -5.5475579e+29 -5.5389661e+29 -5.5317731e+29 -5.530588e+29 -5.5379664e+29 -5.5536738e+29 -5.5547562e+29 -5.5623499e+29 -5.5612064e+29 -5.5473942e+29 -5.5401511e+29 -5.5392818e+29 -5.5463607e+29 -5.5381981e+29 -5.545142e+29 -5.543682e+29 -5.5368041e+29 -5.5523588e+29 -5.5599175e+29 -5.5583462e+29 -5.5507802e+29 -5.5663223e+29 -5.5679057e+29 -5.5762712e+29 -5.5746977e+29 -5.569214e+29 -5.5704063e+29 -5.57886e+29 -5.5776078e+29 -5.5837863e+29 -5.5940036e+29 -5.5853573e+29 -5.592431e+29 -5.58802e+29 -5.5967066e+29 -5.5953959e+29 -5.5867268e+29 -5.5630997e+29 -5.5647676e+29 -5.5731369e+29 -5.5715065e+29 -5.5908641e+29 -5.580634e+29 -5.5822162e+29 -5.5893206e+29 -5.5790324e+29 -5.5795168e+29 -5.5882175e+29 -5.5877003e+29 -5.5614457e+29 -5.5618895e+29 -5.5703373e+29 -5.5698904e+29 -5.5091031e+29 -5.510423e+29 -5.496209e+29 -5.4972882e+29 -5.5036014e+29 -5.5024041e+29 -5.5142545e+29 -5.5123778e+29 -5.5071654e+29 -5.5006568e+29 -5.4990334e+29 -5.5054856e+29 -5.5211659e+29 -5.5230171e+29 -5.5192021e+29 -5.5178506e+29 -5.5169479e+29 -5.5157473e+29 -5.5021273e+29 -5.5030435e+29 -5.5096719e+29 -5.5087105e+29 -5.518005e+29 -5.5176362e+29 -5.5102388e+29 -5.5032458e+29 -5.5034739e+29 -5.5102598e+29 -5.5273712e+29 -5.5268276e+29 -5.5246872e+29 -5.5259709e+29 -5.4867527e+29 -5.4783859e+29 -5.4773717e+29 -5.4858698e+29 -5.4863621e+29 -5.4780962e+29 -5.4786133e+29 -5.4869273e+29 -5.4970689e+29 -5.4915424e+29 -5.4920546e+29 -5.4974553e+29 -5.4971258e+29 -5.4917815e+29 -5.4909495e+29 -5.4962446e+29 -5.4845757e+29 -5.476009e+29 -5.4744501e+29 -5.4831739e+29 -5.494822e+29 -5.4895886e+29 -5.4882094e+29 -5.4933158e+29 -5.4917448e+29 -5.4868462e+29 -5.4858358e+29 -5.4907187e+29 -5.4818983e+29 -5.4731237e+29 -5.4719442e+29 -5.4807926e+29 -5.5636979e+29 -5.5629005e+29 -5.571252e+29 -5.5719518e+29 -5.5620165e+29 -5.5614426e+29 -5.5698928e+29 -5.5704055e+29 -5.5808998e+29 -5.5887207e+29 -5.5802332e+29 -5.5893503e+29 -5.5790229e+29 -5.5876862e+29 -5.5880651e+29 -5.5794752e+29 -5.545875e+29 -5.5453796e+29 -5.5532148e+29 -5.55379e+29 -5.5376945e+29 -5.5301649e+29 -5.5305937e+29 -5.5381299e+29 -5.5316441e+29 -5.5391008e+29 -5.5401267e+29 -5.5327236e+29 -5.546797e+29 -5.5547119e+29 -5.5556042e+29 -5.5477219e+29 -5.5335912e+29 -5.5338337e+29 -5.5412971e+29 -5.5410535e+29 -5.5409449e+29 -5.5335492e+29 -5.5338932e+29 -5.5413251e+29 -5.5489298e+29 -5.556765e+29 -5.5563842e+29 -5.5486314e+29 -5.5485122e+29 -5.5489357e+29 -5.5567747e+29 -5.5563598e+29 -5.5648843e+29 -5.5644728e+29 -5.5727731e+29 -5.5731921e+29 -5.5900453e+29 -5.5820622e+29 -5.581669e+29 -5.5903841e+29 -5.5814996e+29 -5.5820137e+29 -5.5902976e+29 -5.5897792e+29 -5.564388e+29 -5.5648619e+29 -5.5731578e+29 -5.5726507e+29 -5.5972087e+29 -5.6083954e+29 -5.6078017e+29 -5.6164845e+29 -5.6171379e+29 -5.5966515e+29 -5.5997968e+29 -5.6108173e+29 -5.6095157e+29 -5.6181856e+29 -5.6194723e+29 -5.5983172e+29 -5.6270593e+29 -5.6283503e+29 -5.6375818e+29 -5.6363239e+29 -5.6260546e+29 -5.635357e+29 -5.6346427e+29 -5.62536e+29 -5.6484379e+29 -5.6599637e+29 -5.6498067e+29 -5.6586688e+29 -5.6630336e+29 -5.6528153e+29 -5.6512922e+29 -5.6614744e+29 -5.6725087e+29 -5.6740554e+29 -5.6838574e+29 -5.6854202e+29 -5.6709603e+29 -5.6697403e+29 -5.681124e+29 -5.6823145e+29 -5.6043131e+29 -5.6151479e+29 -5.6056324e+29 -5.6165732e+29 -5.6250516e+29 -5.6236639e+29 -5.6325285e+29 -5.6339229e+29 -5.6431883e+29 -5.6417212e+29 -5.6402562e+29 -5.6311318e+29 -5.629722e+29 -5.6388406e+29 -5.6029385e+29 -5.6137945e+29 -5.6222917e+29 -5.6123757e+29 -5.6208976e+29 -5.6013797e+29 -5.6460289e+29 -5.6472211e+29 -5.6575362e+29 -5.6564229e+29 -5.6676332e+29 -5.6686737e+29 -5.6791158e+29 -5.6801043e+29 -5.6659927e+29 -5.6667331e+29 -5.6774909e+29 -5.678225e+29 -5.6450743e+29 -5.6554902e+29 -5.6547329e+29 -5.6443219e+29 -5.5966004e+29 -5.6076476e+29 -5.5968751e+29 -5.6076736e+29 -5.6161428e+29 -5.6162219e+29 -5.6250428e+29 -5.6342721e+29 -5.6340045e+29 -5.6248872e+29 -5.6249946e+29 -5.62523e+29 -5.6340146e+29 -5.6339151e+29 -5.5974322e+29 -5.6080513e+29 -5.6163622e+29 -5.6086167e+29 -5.6167318e+29 -5.5980461e+29 -5.5988734e+29 -5.6090566e+29 -5.6085711e+29 -5.6164174e+29 -5.6168954e+29 -5.5983524e+29 -5.5986551e+29 -5.6090093e+29 -5.6092773e+29 -5.6171243e+29 -5.6170239e+29 -5.5989793e+29 -5.6254696e+29 -5.6254693e+29 -5.6342142e+29 -5.6342627e+29 -5.6252387e+29 -5.6339647e+29 -5.6334225e+29 -5.6247286e+29 -5.6435103e+29 -5.6434364e+29 -5.6534948e+29 -5.6533816e+29 -5.6641648e+29 -5.6643538e+29 -5.6752304e+29 -5.6755259e+29 -5.6630855e+29 -5.6637705e+29 -5.6740176e+29 -5.6747452e+29 -5.6431447e+29 -5.6530442e+29 -5.6523953e+29 -5.6425361e+29 -5.6439029e+29 -5.6542412e+29 -5.6537897e+29 -5.6435235e+29 -5.6433388e+29 -5.6535132e+29 -5.6534099e+29 -5.6433242e+29 -5.6756857e+29 -5.675965e+29 -5.6645811e+29 -5.664384e+29 -5.6654403e+29 -5.6649063e+29 -5.6763464e+29 -5.6769281e+29 -5.7772363e+29 -5.765273e+29 -5.7637234e+29 -5.7756284e+29 -5.7740753e+29 -5.7621747e+29 -5.7604715e+29 -5.77238e+29 -5.7881569e+29 -5.8014544e+29 -5.8032117e+29 -5.7898267e+29 -5.7865345e+29 -5.7849178e+29 -5.7981818e+29 -5.7997526e+29 -5.7364043e+29 -5.7380699e+29 -5.7490317e+29 -5.7506583e+29 -5.7396375e+29 -5.7411459e+29 -5.7522191e+29 -5.7537317e+29 -5.716455e+29 -5.7178652e+29 -5.729192e+29 -5.7277256e+29 -5.7146852e+29 -5.7261157e+29 -5.7242913e+29 -5.712779e+29 -5.7080814e+29 -5.7195836e+29 -5.718334e+29 -5.7068477e+29 -5.7110695e+29 -5.7225494e+29 -5.7210385e+29 -5.7095074e+29 -5.7330084e+29 -5.7346421e+29 -5.7455761e+29 -5.7473176e+29 -5.731563e+29 -5.7303015e+29 -5.7429319e+29 -5.7441903e+29 -5.7571446e+29 -5.7588304e+29 -5.7707594e+29 -5.7691413e+29 -5.7817825e+29 -5.7833336e+29 -5.796628e+29 -5.7951193e+29 -5.7937758e+29 -5.7804121e+29 -5.7791495e+29 -5.7925045e+29 -5.7557557e+29 -5.7677491e+29 -5.766494e+29 -5.7545056e+29 -5.705843e+29 -5.7162367e+29 -5.7172999e+29 -5.7047832e+29 -5.7151043e+29 -5.7037316e+29 -5.7026017e+29 -5.7138669e+29 -5.7256993e+29 -5.7270273e+29 -5.7381713e+29 -5.7395611e+29 -5.7292691e+29 -5.7408028e+29 -5.7418949e+29 -5.72818e+29 -5.75341e+29 -5.7522472e+29 -5.764047e+29 -5.765321e+29 -5.777912e+29 -5.7912401e+29 -5.7897835e+29 -5.7765558e+29 -5.7751468e+29 -5.7882534e+29 -5.7866101e+29 -5.7735605e+29 -5.7509589e+29 -5.7495137e+29 -5.7612255e+29 -5.7627255e+29 -5.7720833e+29 -5.7705668e+29 -5.7834394e+29 -5.7849982e+29 -5.7581914e+29 -5.7597619e+29 -5.7480746e+29 -5.7465322e+29 -5.7450484e+29 -5.7436582e+29 -5.7552405e+29 -5.7566356e+29 -5.7689156e+29 -5.7674416e+29 -5.7803181e+29 -5.7818356e+29 -5.712664e+29 -5.7014681e+29 -5.7002228e+29 -5.7113115e+29 -5.6976547e+29 -5.7100288e+29 -5.6990423e+29 -5.7086578e+29 -5.7337938e+29 -5.7215276e+29 -5.7201997e+29 -5.7324484e+29 -5.7243779e+29 -5.7229658e+29 -5.7352867e+29 -5.7367665e+29 -5.7932824e+29 -5.8064953e+29 -5.8049443e+29 -5.7915342e+29 -5.395651e+29 -5.3991036e+29 -5.3931814e+29 -5.3898638e+29 -5.4052327e+29 -5.409005e+29 -5.4043643e+29 -5.400782e+29 -5.4283023e+29 -5.4321568e+29 -5.4249553e+29 -5.4289663e+29 -5.4320067e+29 -5.4349873e+29 -5.4379621e+29 -5.4417348e+29 -5.4389007e+29 -5.4350995e+29 -5.4325159e+29 -5.4300073e+29 -5.4337056e+29 -5.436205e+29 -5.4200375e+29 -5.424064e+29 -5.4224101e+29 -5.426459e+29 -5.4294444e+29 -5.4269795e+29 -5.4411871e+29 -5.4451993e+29 -5.4480009e+29 -5.4446094e+29 -5.4420223e+29 -5.4382583e+29 -5.451104e+29 -5.4475067e+29 -5.4513327e+29 -5.4551136e+29 -5.4441217e+29 -5.4476869e+29 -5.4444895e+29 -5.4409135e+29 -5.4381297e+29 -5.4355158e+29 -5.4413645e+29 -5.4388415e+29 -5.435181e+29 -5.4317617e+29 -5.4737193e+29 -5.4696784e+29 -5.4602065e+29 -5.466629e+29 -5.4626742e+29 -5.4563151e+29 -5.4657982e+29 -5.4623126e+29 -5.4525139e+29 -5.4491983e+29 -5.4553911e+29 -5.458797e+29 -5.4733982e+29 -5.481942e+29 -5.4698523e+29 -5.4783315e+29 -5.4813766e+29 -5.4898421e+29 -5.4773085e+29 -5.4857961e+29 -5.4594377e+29 -5.4565608e+29 -5.4436715e+29 -5.446517e+29 -5.4526356e+29 -5.4497937e+29 -5.4668413e+29 -5.4752068e+29 -5.4639061e+29 -5.4721403e+29 -5.4537903e+29 -5.4610598e+29 -5.4691938e+29 -5.4583317e+29 -5.4662976e+29 -5.4511152e+29 -5.4409964e+29 -5.4470768e+29 -5.4444583e+29 -5.4384269e+29 -5.4132848e+29 -5.4172342e+29 -5.4133024e+29 -5.409441e+29 -5.4226519e+29 -5.4183127e+29 -5.4202792e+29 -5.416156e+29 -5.4459156e+29 -5.4487438e+29 -5.4392777e+29 -5.4428729e+29 -5.4501589e+29 -5.4586882e+29 -5.4465925e+29 -5.4550771e+29 -5.4560558e+29 -5.4646871e+29 -5.4532187e+29 -5.4617903e+29 -5.4193201e+29 -5.425055e+29 -5.4350768e+29 -5.4303044e+29 -5.4323611e+29 -5.440963e+29 -5.4265851e+29 -5.4351596e+29 -5.4376581e+29 -5.4462121e+29 -5.4424227e+29 -5.4509744e+29 -5.4725485e+29 -5.4754608e+29 -5.4814923e+29 -5.4785177e+29 -5.4881391e+29 -5.4951945e+29 -5.4920799e+29 -5.4850796e+29 -5.5012346e+29 -5.4942914e+29 -5.4912342e+29 -5.4982518e+29 -5.4876713e+29 -5.4815827e+29 -5.4784688e+29 -5.4845522e+29 -5.5011773e+29 -5.4975128e+29 -5.5044465e+29 -5.5081447e+29 -5.5154496e+29 -5.5086243e+29 -5.5049872e+29 -5.5119334e+29 -5.5021125e+29 -5.4922311e+29 -5.4961225e+29 -5.4983297e+29 -5.4884333e+29 -5.4945662e+29 -5.4909555e+29 -5.484842e+29 -5.5116841e+29 -5.5154493e+29 -5.5229532e+29 -5.5192091e+29 -5.5299597e+29 -5.5225416e+29 -5.5192006e+29 -5.5266278e+29 -5.5455973e+29 -5.5349961e+29 -5.5382901e+29 -5.542309e+29 -5.5313818e+29 -5.5276664e+29 -5.5350491e+29 -5.5387418e+29 -5.5055444e+29 -5.5084176e+29 -5.5158842e+29 -5.5129499e+29 -5.5316254e+29 -5.5212227e+29 -5.5242856e+29 -5.5284172e+29 -5.514808e+29 -5.5181076e+29 -5.5251802e+29 -5.5217726e+29 -5.5024831e+29 -5.4993148e+29 -5.5066654e+29 -5.509891e+29 -5.326699e+29 -5.3371948e+29 -5.3270819e+29 -5.3931565e+29 -5.3882883e+29 -5.38204e+29 -5.3842931e+29 -5.3781923e+29 -5.3890288e+29 -5.3970174e+29 -5.3928901e+29 -5.3966809e+29 -5.4009385e+29 -5.3797117e+29 -5.3738186e+29 -5.3843234e+29 -5.3790823e+29 -5.3746271e+29 -5.3688222e+29 -5.3880328e+29 -5.3917034e+29 -5.3861137e+29 -5.382585e+29 -5.3649057e+29 -5.3594996e+29 -5.3460817e+29 -5.3536488e+29 -5.3458526e+29 -5.3706391e+29 -5.3682204e+29 -5.3555207e+29 -5.3575914e+29 -5.3440709e+29 -5.3844342e+29 -5.3957068e+29 -5.3818001e+29 -5.392853e+29 -5.3671747e+29 -5.3804245e+29 -5.3911338e+29 -5.3792298e+29 -5.389527e+29 -5.3662231e+29 -5.3433195e+29 -5.3546329e+29 -5.3536827e+29 -5.3423534e+29 -5.3511915e+29 -5.3736653e+29 -5.3764659e+29 -5.3632561e+29 -5.3605388e+29 -5.3486738e+29 -5.354677e+29 -5.3671686e+29 -5.3809948e+29 -5.365331e+29 -5.3787691e+29 -5.3530661e+29 -5.3955913e+29 -5.4073147e+29 -5.3931935e+29 -5.4047688e+29 -5.3906531e+29 -5.4020793e+29 -5.3876142e+29 -5.3989262e+29 -5.4049573e+29 -5.4071358e+29 -5.4005596e+29 -5.3985787e+29 -5.4124639e+29 -5.4101498e+29 -5.4174394e+29 -5.4150587e+29 -5.4151455e+29 -5.4183502e+29 -5.4200451e+29 -5.4233685e+29 -5.4057225e+29 -5.4126635e+29 -5.4096503e+29 -5.4028046e+29 -5.4216904e+29 -5.424995e+29 -5.4301723e+29 -5.426788e+29 -5.4279161e+29 -5.4305433e+29 -5.4331668e+29 -5.4359145e+29 -5.4149066e+29 -5.4174441e+29 -5.424543e+29 -5.4219803e+29 -5.4089255e+29 -5.4121045e+29 -5.4191318e+29 -5.4159024e+29 -5.337107e+29 -5.3343043e+29 -5.3442916e+29 -5.3556049e+29 -5.3473246e+29 -5.3588776e+29 -5.3711031e+29 -5.3675928e+29 -5.3518815e+29 -5.3635383e+29 -5.3589909e+29 -5.347711e+29 -5.3274715e+29 -5.3311411e+29 -5.3369257e+29 -5.3408523e+29 -5.3424163e+29 -5.341756e+29 -5.3524075e+29 -5.3645367e+29 -5.3532923e+29 -5.3657078e+29 -5.3788266e+29 -5.3909312e+29 -5.3774825e+29 -5.3893496e+29 -5.3631991e+29 -5.3613692e+29 -5.3738028e+29 -5.385015e+29 -5.3758835e+29 -5.3874813e+29 -5.3497746e+29 -5.3514517e+29 -5.3410172e+29 -5.3394416e+29 -5.394277e+29 -5.3997622e+29 -5.396742e+29 -5.3915661e+29 -5.4039778e+29 -5.3981553e+29 -5.3964129e+29 -5.4021292e+29 -5.406855e+29 -5.4087079e+29 -5.4133827e+29 -5.4113936e+29 -5.4008513e+29 -5.4042736e+29 -5.4086634e+29 -5.4049828e+29 -5.3495278e+29 -5.338671e+29 -5.3433524e+29 -5.3545285e+29 -5.3252369e+29 -5.3328167e+29 -5.3435748e+29 -5.3359512e+29 -5.2735055e+29 -5.2848632e+29 -5.2727362e+29 -5.2865587e+29 -5.2366553e+29 -5.2667784e+29 -5.2836579e+29 -5.2668621e+29 -5.2831543e+29 -5.2515409e+29 -5.2356837e+29 -5.2518668e+29 -5.2697526e+29 -5.2865116e+29 -5.2697337e+29 -5.2856628e+29 -5.2679954e+29 -5.2854041e+29 -5.2670397e+29 -5.2842362e+29 -5.2524877e+29 -5.2366166e+29 -5.2354055e+29 -5.2514524e+29 -5.2958211e+29 -5.2945809e+29 -5.2927925e+29 -5.293697e+29 -5.3007206e+29 -5.301933e+29 -5.2996583e+29 -5.2986437e+29 -5.3090012e+29 -5.3101202e+29 -5.3204009e+29 -5.3189889e+29 -5.3227911e+29 -5.3124619e+29 -5.3112145e+29 -5.321558e+29 -5.3319872e+29 -5.3400567e+29 -5.3330325e+29 -5.3412324e+29 -5.3455675e+29 -5.3469398e+29 -5.3307176e+29 -5.3385446e+29 -5.3288872e+29 -5.3362549e+29 -5.3414543e+29 -5.3438668e+29 -5.3321411e+29 -5.3369808e+29 -5.3330351e+29 -5.3384831e+29 -5.3266591e+29 -5.3257206e+29 -5.3176423e+29 -5.3082541e+29 -5.307739e+29 -5.3167647e+29 -5.307681e+29 -5.3164276e+29 -5.3160264e+29 -5.3075657e+29 -5.3251552e+29 -5.331672e+29 -5.3241861e+29 -5.3302904e+29 -5.3352585e+29 -5.3363285e+29 -5.2981815e+29 -5.2979404e+29 -5.298247e+29 -5.2981456e+29 -5.2417756e+29 -5.2733993e+29 -5.2907286e+29 -5.2727825e+29 -5.2900991e+29 -5.2584521e+29 -5.2436851e+29 -5.2574612e+29 -5.3010115e+29 -5.3003546e+29 -5.2711583e+29 -5.288677e+29 -5.2990324e+29 -5.2972206e+29 -5.2867989e+29 -5.2693538e+29 -5.2556459e+29 -5.2395113e+29 -5.2378393e+29 -5.253729e+29 -5.3248351e+29 -5.3314204e+29 -5.3248731e+29 -5.3311591e+29 -5.3167608e+29 -5.308776e+29 -5.3081152e+29 -5.316262e+29 -5.3049713e+29 -5.3067953e+29 -5.3150245e+29 -5.3131801e+29 -5.3238207e+29 -5.3308272e+29 -5.3220419e+29 -5.3292067e+29 -5.3139525e+29 -5.3185039e+29 -5.3166589e+29 -5.3221741e+29 -5.3186124e+29 -5.324806e+29 -5.3203668e+29 -5.3271012e+29 -5.3023407e+29 -5.3035866e+29 -5.3117037e+29 -5.3102777e+29 -5.3011994e+29 -5.3088308e+29 -5.3069924e+29 -5.2999277e+29 -5.2719283e+29 -5.2365019e+29 -5.2433339e+29 -5.2413316e+29 -5.2475378e+29 -5.2336733e+29 -5.2399159e+29 -5.2326362e+29 -5.2393576e+29 -5.2303715e+29 -5.2371073e+29 -5.2274354e+29 -5.2290291e+29 -5.2993554e+29 -5.2753662e+29 -5.3014304e+29 -5.2779107e+29 -5.2666224e+29 -5.2635919e+29 -5.2950387e+29 -5.2701532e+29 -5.2971498e+29 -5.2726477e+29 -5.2603057e+29 -5.2578648e+29 -5.3516171e+29 -5.3499022e+29 -5.3331954e+29 -5.3318661e+29 -5.3510673e+29 -5.3495815e+29 -5.3115858e+29 -5.2912753e+29 -5.2929058e+29 -5.3130608e+29 -5.29469e+29 -5.3146777e+29 -5.3163316e+29 -5.2966357e+29 -5.3346578e+29 -5.336195e+29 -5.3539404e+29 -5.3525207e+29 -5.3478271e+29 -5.3465039e+29 -5.2900197e+29 -5.2883945e+29 -5.3090578e+29 -5.3104433e+29 -5.3293505e+29 -5.3306848e+29 -5.3485751e+29 -5.3473391e+29 -5.2501044e+29 -5.2584723e+29 -5.2456659e+29 -5.2546018e+29 -5.2409366e+29 -5.2504035e+29 -5.2372671e+29 -5.2467305e+29 -5.2337736e+29 -5.2433236e+29 -5.2302729e+29 -5.239991e+29 -5.2293533e+29 -5.2392318e+29 -5.2299391e+29 -5.2394632e+29 -5.2240687e+29 -5.2339353e+29 -5.2243384e+29 -5.2338947e+29 -5.2291548e+29 -5.2385093e+29 -5.2258818e+29 -5.2355724e+29 -5.2283375e+29 -5.237708e+29 -5.2319797e+29 -5.2410346e+29 -5.2249413e+29 -5.2343864e+29 -5.225668e+29 -5.2349786e+29 -5.3115433e+29 -5.3172051e+29 -5.2801365e+29 -5.2979775e+29 -5.3144e+29 -5.3196457e+29 -5.2837299e+29 -5.3013304e+29 -5.2688087e+29 -5.2650127e+29 -5.3168492e+29 -5.321715e+29 -5.2870704e+29 -5.3042297e+29 -5.3179683e+29 -5.322926e+29 -5.2884847e+29 -5.3055087e+29 -5.2745907e+29 -5.2726563e+29 -5.3088842e+29 -5.3148169e+29 -5.2771883e+29 -5.2951984e+29 -5.3066173e+29 -5.3125854e+29 -5.2747536e+29 -5.2927664e+29 -5.2619029e+29 -5.2593045e+29 -5.3049989e+29 -5.3110222e+29 -5.2732693e+29 -5.2912485e+29 -5.3037651e+29 -5.3098632e+29 -5.2722834e+29 -5.2900988e+29 -5.2579806e+29 -5.2572653e+29 -5.302636e+29 -5.308656e+29 -5.2714819e+29 -5.2892239e+29 -5.3012008e+29 -5.3071275e+29 -5.2698773e+29 -5.2876327e+29 -5.2565146e+29 -5.2546794e+29 -5.2999723e+29 -5.305987e+29 -5.2683626e+29 -5.286245e+29 -5.2992925e+29 -5.3054323e+29 -5.2675076e+29 -5.2853965e+29 -5.2530637e+29 -5.2523257e+29 -5.2992692e+29 -5.3053273e+29 -5.2676196e+29 -5.2854645e+29 -5.2997652e+29 -5.3056694e+29 -5.2684482e+29 -5.2861184e+29 -5.252568e+29 -5.2534338e+29 -5.3007199e+29 -5.3064193e+29 -5.2699849e+29 -5.2873933e+29 -5.3018367e+29 -5.3074276e+29 -5.271669e+29 -5.28881e+29 -5.2553483e+29 -5.2574105e+29 -5.2276463e+29 -5.2374148e+29 -5.226642e+29 -5.2362521e+29 -5.2332134e+29 -5.2420433e+29 -5.2303284e+29 -5.239702e+29 -5.2267748e+29 -5.2361219e+29 -5.229644e+29 -5.238574e+29 -5.2259216e+29 -5.2354234e+29 -5.225313e+29 -5.2348073e+29 -5.2299646e+29 -5.2392693e+29 -5.2308676e+29 -5.2398353e+29 -5.2326343e+29 -5.2414619e+29 -5.2302465e+29 -5.2394058e+29 -5.2367382e+29 -5.245501e+29 -5.2346892e+29 -5.2433963e+29 -5.2404667e+29 -5.249432e+29 -5.2451192e+29 -5.2534025e+29 -5.30197e+29 -5.272377e+29 -5.2893202e+29 -5.3024736e+29 -5.2730226e+29 -5.2899116e+29 -5.258877e+29 -5.2579181e+29 -5.2996906e+29 -5.2691045e+29 -5.2864202e+29 -5.3008037e+29 -5.2706621e+29 -5.2878581e+29 -5.2559117e+29 -5.2543221e+29 -5.2989725e+29 -5.2683217e+29 -5.2856595e+29 -5.298748e+29 -5.2681904e+29 -5.2854469e+29 -5.2535385e+29 -5.2533429e+29 -5.2991005e+29 -5.2689567e+29 -5.286019e+29 -5.2997702e+29 -5.2699429e+29 -5.2868232e+29 -5.2543178e+29 -5.2556053e+29 -5.3014655e+29 -5.2719784e+29 -5.2886619e+29 -5.3024241e+29 -5.2730783e+29 -5.2896624e+29 -5.2575033e+29 -5.2587623e+29 -5.300459e+29 -5.2708494e+29 -5.2876672e+29 -5.3009032e+29 -5.2712935e+29 -5.2880848e+29 -5.2566358e+29 -5.256889e+29 -5.3037652e+29 -5.2747088e+29 -5.2911617e+29 -5.3054392e+29 -5.2767819e+29 -5.293084e+29 -5.2605358e+29 -5.2626611e+29 -5.3072817e+29 -5.2793164e+29 -5.2952421e+29 -5.3091232e+29 -5.2821154e+29 -5.297653e+29 -5.2657054e+29 -5.2689641e+29 -5.3342227e+29 -5.3320232e+29 -5.3370895e+29 -5.336065e+29 -5.3709869e+29 -5.4022401e+29 -5.4004732e+29 -5.3889482e+29 -5.3881393e+29 -5.3701179e+29 -5.3993064e+29 -5.3995261e+29 -5.3689409e+29 -5.3869854e+29 -5.3857675e+29 -5.3675366e+29 -5.3475582e+29 -5.3641902e+29 -5.3626597e+29 -5.34557e+29 -5.3500001e+29 -5.3491925e+29 -5.3654522e+29 -5.366059e+29 -5.3261273e+29 -5.3249142e+29 -5.3276625e+29 -5.3298143e+29 -5.3662287e+29 -5.3844349e+29 -5.3825808e+29 -5.364214e+29 -5.3979089e+29 -5.3949904e+29 -5.3626912e+29 -5.3933075e+29 -5.3932814e+29 -5.3613314e+29 -5.379689e+29 -5.3810353e+29 -5.3435837e+29 -5.341571e+29 -5.3593283e+29 -5.3611067e+29 -5.3400538e+29 -5.3388071e+29 -5.3562561e+29 -5.3577603e+29 -5.3578856e+29 -5.3574699e+29 -5.3758983e+29 -5.3763125e+29 -5.3897272e+29 -5.3880552e+29 -5.3877848e+29 -5.388937e+29 -5.3756556e+29 -5.3756527e+29 -5.3573587e+29 -5.3574808e+29 -5.3213107e+29 -5.3219933e+29 -5.320592e+29 -5.3207533e+29 -5.3348345e+29 -5.334759e+29 -5.3526406e+29 -5.3527518e+29 -5.3351656e+29 -5.3354912e+29 -5.3525416e+29 -5.3526092e+29 -5.3599898e+29 -5.3919923e+29 -5.389686e+29 -5.3770921e+29 -5.3783274e+29 -5.3587707e+29 -5.3889403e+29 -5.3901038e+29 -5.3581709e+29 -5.376488e+29 -5.3764906e+29 -5.3580712e+29 -5.3363528e+29 -5.3376222e+29 -5.3535584e+29 -5.3545604e+29 -5.3237313e+29 -5.3223049e+29 -5.3212618e+29 -5.3207151e+29 -5.3354084e+29 -5.3348941e+29 -5.35291e+29 -5.3531424e+29 -5.3079339e+29 -5.2789403e+29 -5.2988318e+29 -5.3058146e+29 -5.2768178e+29 -5.2966428e+29 -5.2430171e+29 -5.2457942e+29 -5.2622414e+29 -5.2600034e+29 -5.3042614e+29 -5.2756363e+29 -5.2952771e+29 -5.3028421e+29 -5.2744235e+29 -5.2937935e+29 -5.2422476e+29 -5.2589969e+29 -5.258272e+29 -5.2425009e+29 -5.2564041e+29 -5.2594227e+29 -5.3157013e+29 -5.2892729e+29 -5.3078867e+29 -5.3150045e+29 -5.288123e+29 -5.3070427e+29 -5.2739674e+29 -5.2723174e+29 -5.3128909e+29 -5.2849073e+29 -5.3043937e+29 -5.310285e+29 -5.2814821e+29 -5.3012318e+29 -5.2522524e+29 -5.248766e+29 -5.2649347e+29 -5.2685569e+29 -5.2400218e+29 -5.2420326e+29 -5.2384562e+29 -5.2387097e+29 -5.2385204e+29 -5.2386722e+29 -5.2403745e+29 -5.2427181e+29 -5.2709341e+29 -5.2896995e+29 -5.2711694e+29 -5.2896553e+29 -5.2546841e+29 -5.2549941e+29 -5.2721052e+29 -5.2902044e+29 -5.2727923e+29 -5.2904638e+29 -5.2562955e+29 -5.257496e+29 -5.272901e+29 -5.2565112e+29 -5.2920443e+29 -5.2740761e+29 -5.2578564e+29 -5.2932535e+29 -5.2719272e+29 -5.2910456e+29 -5.2710099e+29 -5.2899481e+29 -5.2554614e+29 -5.2546837e+29 -4.7032711e+29 -4.9246351e+29 -4.7106321e+29 -4.9254649e+29 -4.9204321e+29 -4.9158092e+29 -5.3826596e+29 -5.3837558e+29 -5.370051e+29 -5.35764e+29 -5.356214e+29 -5.3687717e+29 -5.3585717e+29 -5.3596359e+29 -5.3720455e+29 -5.3861224e+29 -5.3709834e+29 -5.3848267e+29 -5.399628e+29 -5.4117812e+29 -5.4009971e+29 -5.413314e+29 -5.3984836e+29 -5.4105183e+29 -5.3973304e+29 -5.4091534e+29 -5.3905531e+29 -5.390224e+29 -5.4083646e+29 -5.4087062e+29 -5.3620359e+29 -5.3759106e+29 -5.376659e+29 -5.3629031e+29 -5.3633695e+29 -5.3907942e+29 -5.3911329e+29 -5.3770325e+29 -5.3769443e+29 -5.3633939e+29 -5.4090338e+29 -5.409119e+29 -5.3653058e+29 -5.3921385e+29 -5.390682e+29 -5.3778986e+29 -5.3767431e+29 -5.3643557e+29 -5.3892445e+29 -5.3876642e+29 -5.3630076e+29 -5.3753335e+29 -5.3736992e+29 -5.3613624e+29 -5.4025015e+29 -5.414848e+29 -5.4041539e+29 -5.4165138e+29 -5.4072117e+29 -5.4195684e+29 -5.4056651e+29 -5.4180261e+29 -5.3616599e+29 -5.3611449e+29 -5.3751914e+29 -5.3893795e+29 -5.3758568e+29 -5.3903243e+29 -5.4090329e+29 -5.4079837e+29 -5.3890913e+29 -5.4074649e+29 -5.4078245e+29 -5.389734e+29 -5.3751578e+29 -5.3748609e+29 -5.3609627e+29 -5.3612068e+29 -5.4275762e+29 -5.4278546e+29 -5.4367257e+29 -5.4363285e+29 -5.4285802e+29 -5.4294666e+29 -5.4382959e+29 -5.4374746e+29 -5.4451253e+29 -5.4459513e+29 -5.4530811e+29 -5.4522146e+29 -5.4439062e+29 -5.4443697e+29 -5.451465e+29 -5.4509569e+29 -5.4286187e+29 -5.4281505e+29 -5.4367032e+29 -5.4371524e+29 -5.4289436e+29 -5.4373996e+29 -5.4371471e+29 -5.4287775e+29 -5.4442463e+29 -5.444658e+29 -5.4513474e+29 -5.4508137e+29 -5.4445177e+29 -5.4441437e+29 -5.4510675e+29 -5.451318e+29 -5.4380923e+29 -5.4438822e+29 -5.4421095e+29 -5.4363891e+29 -5.4240777e+29 -5.4224745e+29 -5.4300064e+29 -5.4316603e+29 -5.4194151e+29 -5.4209924e+29 -5.4283923e+29 -5.4266412e+29 -5.432785e+29 -5.434706e+29 -5.4404832e+29 -5.4383956e+29 -5.4288305e+29 -5.430188e+29 -5.4365212e+29 -5.4377895e+29 -5.4432101e+29 -5.4444561e+29 -5.4507922e+29 -5.449435e+29 -5.4476268e+29 -5.4416277e+29 -5.4398316e+29 -5.4457205e+29 -5.4256553e+29 -5.4273044e+29 -5.433309e+29 -5.4350071e+29 -5.4482312e+29 -5.4481189e+29 -5.4580901e+29 -5.4581091e+29 -5.4269896e+29 -5.4252775e+29 -5.4384562e+29 -5.4398061e+29 -5.4248635e+29 -5.4245605e+29 -5.4376937e+29 -5.437759e+29 -5.4499802e+29 -5.4488037e+29 -5.4585786e+29 -5.4595704e+29 -5.406947e+29 -5.4076006e+29 -5.3813838e+29 -5.3799911e+29 -5.3804181e+29 -5.3832411e+29 -5.4096225e+29 -5.4075071e+29 -5.4433259e+29 -5.442391e+29 -5.4292913e+29 -5.4305037e+29 -5.4279298e+29 -5.4407365e+29 -5.441618e+29 -5.4284387e+29 -5.451883e+29 -5.4509399e+29 -5.4604629e+29 -5.4611977e+29 -5.4526401e+29 -5.4619559e+29 -5.4628206e+29 -5.4535051e+29 -5.3841756e+29 -5.4105284e+29 -5.4105911e+29 -5.38339e+29 -5.3841405e+29 -5.3866238e+29 -5.4130514e+29 -5.4114028e+29 -5.4161532e+29 -5.4150195e+29 -5.4149485e+29 -5.4146911e+29 -5.4182004e+29 -5.4164891e+29 -5.4164122e+29 -5.415964e+29 -5.4347922e+29 -5.4347372e+29 -5.4460353e+29 -5.445925e+29 -5.4471552e+29 -5.436331e+29 -5.435097e+29 -5.4463726e+29 -5.4638341e+29 -5.456137e+29 -5.4556443e+29 -5.4634598e+29 -5.4551866e+29 -5.455393e+29 -5.4632865e+29 -5.4630089e+29 -5.43374e+29 -5.4345504e+29 -5.4455951e+29 -5.4449529e+29 -5.4527424e+29 -5.4535374e+29 -5.4610928e+29 -5.459962e+29 -5.4541804e+29 -5.4548272e+29 -5.4626267e+29 -5.4619087e+29 -5.4333014e+29 -5.4444197e+29 -5.4438595e+29 -5.4330109e+29 -5.4254185e+29 -5.4258995e+29 -5.4281234e+29 -5.4269174e+29 -5.443246e+29 -5.4440946e+29 -5.4548578e+29 -5.4538572e+29 -5.455817e+29 -5.4456367e+29 -5.4449333e+29 -5.4555688e+29 -5.4642358e+29 -5.4640819e+29 -5.4714967e+29 -5.4711396e+29 -5.4626602e+29 -5.4637138e+29 -5.4700945e+29 -5.4711555e+29 -5.4374974e+29 -5.4386283e+29 -5.4492942e+29 -5.4479189e+29 -5.4400781e+29 -5.4419442e+29 -5.4524099e+29 -5.4507487e+29 -5.4581643e+29 -5.4568511e+29 -5.4644769e+29 -5.4657147e+29 -5.4595787e+29 -5.461212e+29 -5.4670786e+29 -5.4686906e+29 -5.4217287e+29 -5.4240179e+29 -5.4201816e+29 -5.4194625e+29 -5.3626995e+29 -5.3913603e+29 -5.3923911e+29 -5.3773913e+29 -5.3768578e+29 -5.3623076e+29 -5.411807e+29 -5.410652e+29 -5.3909067e+29 -5.4100924e+29 -5.4098502e+29 -5.3910306e+29 -5.3622677e+29 -5.3767044e+29 -5.3765044e+29 -5.3621745e+29 -5.3655334e+29 -5.3648097e+29 -5.37974e+29 -5.3946556e+29 -5.3806253e+29 -5.3959954e+29 -5.4160738e+29 -5.41465e+29 -5.3936719e+29 -5.3932264e+29 -5.412699e+29 -5.4134748e+29 -5.3780349e+29 -5.3787794e+29 -5.3640104e+29 -5.3632606e+29 -5.4473249e+29 -5.4381378e+29 -5.4367704e+29 -5.4460632e+29 -5.4354135e+29 -5.4343006e+29 -5.4435458e+29 -5.4447388e+29 -5.4514445e+29 -5.452669e+29 -5.4599055e+29 -5.4586895e+29 -5.4549384e+29 -5.4538913e+29 -5.4609709e+29 -5.461783e+29 -5.4332699e+29 -5.4321243e+29 -5.4413009e+29 -5.4424394e+29 -5.4301653e+29 -5.4311795e+29 -5.4402057e+29 -5.4390726e+29 -5.4468028e+29 -5.4479963e+29 -5.4552178e+29 -5.4540035e+29 -5.4491481e+29 -5.450306e+29 -5.4575526e+29 -5.4563777e+29 -5.3204483e+29 -5.3316902e+29 -5.3327143e+29 -5.3218784e+29 -5.3291941e+29 -5.3175046e+29 -5.3189108e+29 -5.3304167e+29 -5.3412147e+29 -5.3473021e+29 -5.3399338e+29 -5.346081e+29 -5.3551764e+29 -5.3540268e+29 -5.342231e+29 -5.3481337e+29 -5.3427867e+29 -5.3484422e+29 -5.3558463e+29 -5.3557977e+29 -5.3391324e+29 -5.3450844e+29 -5.3389578e+29 -5.3451303e+29 -5.3530699e+29 -5.3530857e+29 -5.3388071e+29 -5.3451676e+29 -5.33875e+29 -5.3453463e+29 -5.3533082e+29 -5.3536757e+29 -5.3150538e+29 -5.3146829e+29 -5.3270678e+29 -5.3272966e+29 -5.315567e+29 -5.3276807e+29 -5.3282528e+29 -5.3163648e+29 -5.3151931e+29 -5.3277561e+29 -5.3268237e+29 -5.3142356e+29 -5.3290078e+29 -5.3165887e+29 -5.3161349e+29 -5.3285941e+29 -5.340571e+29 -5.3476157e+29 -5.3408541e+29 -5.3480036e+29 -5.3564736e+29 -5.3569208e+29 -5.339763e+29 -5.3468043e+29 -5.3387038e+29 -5.3458386e+29 -5.3548443e+29 -5.3557288e+29 -5.3141327e+29 -5.3136212e+29 -5.3263025e+29 -5.3266727e+29 -5.3262304e+29 -5.3135869e+29 -5.3133487e+29 -5.3260561e+29 -5.345279e+29 -5.3541711e+29 -5.3381694e+29 -5.3381318e+29 -5.3452949e+29 -5.3542809e+29 -5.3383839e+29 -5.3454132e+29 -5.3386102e+29 -5.3455099e+29 -5.354159e+29 -5.3542055e+29 -5.3466175e+29 -5.3519706e+29 -5.3378793e+29 -5.3457369e+29 -5.339338e+29 -5.3510247e+29 -5.3291519e+29 -5.3186318e+29 -5.3166188e+29 -5.3272816e+29 -5.315047e+29 -5.3257022e+29 -5.3240174e+29 -5.3135581e+29 -5.3363637e+29 -5.3445877e+29 -5.3343967e+29 -5.3427273e+29 -5.3484479e+29 -5.350024e+29 -5.3415635e+29 -5.3489821e+29 -5.3435475e+29 -5.3508469e+29 -5.3556902e+29 -5.3539513e+29 -5.3448901e+29 -5.3521198e+29 -5.3451997e+29 -5.3525558e+29 -5.3575925e+29 -5.3569241e+29 -5.324801e+29 -5.3253965e+29 -5.3352412e+29 -5.3348087e+29 -5.3208146e+29 -5.3230728e+29 -5.3333243e+29 -5.3312488e+29 -5.5219056e+29 -5.5295607e+29 -5.5372612e+29 -5.5232251e+29 -5.5308193e+29 -5.5360933e+29 -5.5511296e+29 -5.5439718e+29 -5.5430185e+29 -5.5502795e+29 -5.5451799e+29 -5.5464892e+29 -5.5534657e+29 -5.552159e+29 -5.5259796e+29 -5.5334456e+29 -5.5397973e+29 -5.5385878e+29 -5.5247219e+29 -5.5322173e+29 -5.5487468e+29 -5.5489123e+29 -5.5562652e+29 -5.5559721e+29 -5.5418655e+29 -5.5273548e+29 -5.535119e+29 -5.5274904e+29 -5.5351194e+29 -5.5417508e+29 -5.5274518e+29 -5.5349613e+29 -5.5414604e+29 -5.5407726e+29 -5.5269432e+29 -5.5343914e+29 -5.5483381e+29 -5.5555416e+29 -5.5545971e+29 -5.5474663e+29 -5.5620674e+29 -5.5630899e+29 -5.570953e+29 -5.569887e+29 -5.5636122e+29 -5.5640389e+29 -5.5721503e+29 -5.5715871e+29 -5.5784937e+29 -5.5875341e+29 -5.5796e+29 -5.5863942e+29 -5.5810119e+29 -5.5891146e+29 -5.5883688e+29 -5.5803445e+29 -5.5608968e+29 -5.5686796e+29 -5.567413e+29 -5.5595972e+29 -5.5851168e+29 -5.5772456e+29 -5.5759513e+29 -5.5837771e+29 -5.5750077e+29 -5.5743443e+29 -5.5820581e+29 -5.5827199e+29 -5.5664793e+29 -5.5586343e+29 -5.5657827e+29 -5.5578986e+29 -5.4751996e+29 -5.4695584e+29 -5.464585e+29 -5.4634134e+29 -5.4684052e+29 -5.474109e+29 -5.4864935e+29 -5.4805456e+29 -5.4794589e+29 -5.4853343e+29 -5.4839163e+29 -5.4782569e+29 -5.4771263e+29 -5.4827874e+29 -5.4729627e+29 -5.4672549e+29 -5.4622514e+29 -5.4610441e+29 -5.4660988e+29 -5.4718468e+29 -5.4882655e+29 -5.4829107e+29 -5.4827853e+29 -5.4883131e+29 -5.4780084e+29 -5.4729073e+29 -5.468363e+29 -5.4677845e+29 -5.4724513e+29 -5.4777363e+29 -5.4771256e+29 -5.4716802e+29 -5.4668797e+29 -5.4657221e+29 -5.4706451e+29 -5.4762446e+29 -5.4881539e+29 -5.4823522e+29 -5.4815766e+29 -5.4875102e+29 -5.5105848e+29 -5.5110385e+29 -5.4942585e+29 -5.494748e+29 -5.5024864e+29 -5.502056e+29 -5.5108286e+29 -5.5110188e+29 -5.5023049e+29 -5.4946586e+29 -5.4948247e+29 -5.5024876e+29 -5.5196606e+29 -5.5194582e+29 -5.519716e+29 -5.5192739e+29 -5.5095905e+29 -5.5083806e+29 -5.5010548e+29 -5.4932315e+29 -5.4920471e+29 -5.4998384e+29 -5.5182663e+29 -5.5170227e+29 -5.5068691e+29 -5.5154955e+29 -5.5141734e+29 -5.5056014e+29 -5.4893913e+29 -5.4905172e+29 -5.4982892e+29 -5.4970898e+29 -5.4817639e+29 -5.476114e+29 -5.4752895e+29 -5.4810599e+29 -5.4708266e+29 -5.4650959e+29 -5.4600562e+29 -5.4591611e+29 -5.4641861e+29 -5.4699507e+29 -5.4691885e+29 -5.4634387e+29 -5.4584127e+29 -5.457882e+29 -5.4628802e+29 -5.4686073e+29 -5.4805461e+29 -5.4746069e+29 -5.474032e+29 -5.4800054e+29 -5.4572369e+29 -5.4616045e+29 -5.4674174e+29 -5.4623058e+29 -5.4578682e+29 -5.4666019e+29 -5.468223e+29 -5.4626797e+29 -5.4578552e+29 -5.4579712e+29 -5.4625735e+29 -5.467914e+29 -5.4794258e+29 -5.473528e+29 -5.4730705e+29 -5.4788438e+29 -5.4780011e+29 -5.4724001e+29 -5.4714208e+29 -5.4768082e+29 -5.5023449e+29 -5.5015114e+29 -5.4938659e+29 -5.4861038e+29 -5.4854422e+29 -5.4931069e+29 -5.5101219e+29 -5.5177885e+29 -5.5110373e+29 -5.5188423e+29 -5.5002467e+29 -5.5087421e+29 -5.5162881e+29 -5.506862e+29 -5.5142995e+29 -5.4985082e+29 -5.4830382e+29 -5.4844054e+29 -5.4919423e+29 -5.4903714e+29 -5.5040493e+29 -5.5045732e+29 -5.5131638e+29 -5.5210198e+29 -5.5126821e+29 -5.5205375e+29 -5.4960473e+29 -5.4883327e+29 -5.4877447e+29 -5.4955014e+29 -5.5036281e+29 -5.503107e+29 -5.4867674e+29 -5.4872425e+29 -5.4950509e+29 -5.4945763e+29 -5.5118353e+29 -5.5196532e+29 -5.5123377e+29 -5.5201957e+29 -5.5424036e+29 -5.5419948e+29 -5.5491712e+29 -5.5495832e+29 -5.5340935e+29 -5.5346594e+29 -5.5279431e+29 -5.5273837e+29 -5.5350458e+29 -5.5354782e+29 -5.5288011e+29 -5.5283194e+29 -5.5416156e+29 -5.5489005e+29 -5.5483661e+29 -5.5410589e+29 -5.557178e+29 -5.5567079e+29 -5.5645452e+29 -5.565088e+29 -5.5815476e+29 -5.5737084e+29 -5.5730844e+29 -5.5808394e+29 -5.5715394e+29 -5.5724761e+29 -5.580025e+29 -5.5788833e+29 -5.5564041e+29 -5.555783e+29 -5.5633542e+29 -5.5641119e+29 -5.5693117e+29 -5.5704247e+29 -5.5764535e+29 -5.577582e+29 -5.5624305e+29 -5.5549855e+29 -5.5613412e+29 -5.5538635e+29 -5.5521817e+29 -5.5500187e+29 -5.5575016e+29 -5.5596637e+29 -5.5678175e+29 -5.5657338e+29 -5.573188e+29 -5.5751433e+29 -5.5332516e+29 -5.5265484e+29 -5.5253761e+29 -5.5320488e+29 -5.5217503e+29 -5.5237806e+29 -5.5303965e+29 -5.5283337e+29 -5.537429e+29 -5.5447327e+29 -5.5425969e+29 -5.5353358e+29 -5.5475772e+29 -5.5402554e+29 -5.5391032e+29 -5.546412e+29 -5.4496675e+29 -5.4547735e+29 -5.4583628e+29 -5.4561157e+29 -5.4525305e+29 -5.4476357e+29 -5.4622387e+29 -5.466957e+29 -5.4644318e+29 -5.4598697e+29 -5.457491e+29 -5.4616719e+29 -5.4585148e+29 -5.4545196e+29 -5.4461622e+29 -5.4508428e+29 -5.454016e+29 -5.4512953e+29 -5.4483706e+29 -5.4439307e+29 -5.4755063e+29 -5.4707086e+29 -5.4688093e+29 -5.473475e+29 -5.457218e+29 -5.4628605e+29 -5.4666163e+29 -5.4648231e+29 -5.4611182e+29 -5.4556503e+29 -5.4666831e+29 -5.4713261e+29 -5.469103e+29 -5.4644729e+29 -5.4534833e+29 -5.4587688e+29 -5.4516532e+29 -5.4568916e+29 -5.4605578e+29 -5.4626641e+29 -5.4893819e+29 -5.4918405e+29 -5.4816956e+29 -5.4841124e+29 -5.4770629e+29 -5.4747108e+29 -5.4965007e+29 -5.4942448e+29 -5.4885713e+29 -5.4813467e+29 -5.4864195e+29 -5.4792843e+29 -5.5025641e+29 -5.5115912e+29 -5.5049417e+29 -5.5140337e+29 -5.5000888e+29 -5.5090758e+29 -5.4975852e+29 -5.5064535e+29 -5.4842742e+29 -5.4871191e+29 -5.4725933e+29 -5.4699209e+29 -5.4767622e+29 -5.479508e+29 -5.4888667e+29 -5.4972754e+29 -5.4810599e+29 -5.4774311e+29 -5.485185e+29 -5.4936213e+29 -5.4951755e+29 -5.5038689e+29 -5.4922171e+29 -5.5007175e+29 -5.4636106e+29 -5.4669996e+29 -5.473679e+29 -5.4701575e+29 -5.512894e+29 -5.5217e+29 -5.5155573e+29 -5.5190087e+29 -5.5354557e+29 -5.5283584e+29 -5.5256868e+29 -5.5327702e+29 -5.5308406e+29 -5.5333295e+29 -5.5403634e+29 -5.5378461e+29 -5.5204652e+29 -5.526638e+29 -5.5242289e+29 -5.5180744e+29 -5.5477371e+29 -5.5451682e+29 -5.5527306e+29 -5.5552983e+29 -5.5611894e+29 -5.563733e+29 -5.5710527e+29 -5.5684936e+29 -5.5558417e+29 -5.5586114e+29 -5.5629935e+29 -5.5657955e+29 -5.5427446e+29 -5.550231e+29 -5.5475306e+29 -5.5400934e+29 -5.5259712e+29 -5.5297337e+29 -5.5370309e+29 -5.5333297e+29 -5.5335012e+29 -5.5369846e+29 -5.5443836e+29 -5.5408258e+29 -5.5491334e+29 -5.5527192e+29 -5.5563853e+29 -5.5599976e+29 -5.5453509e+29 -5.5416481e+29 -5.5489364e+29 -5.552621e+29 -5.5160939e+29 -5.5100914e+29 -5.5068771e+29 -5.5128254e+29 -5.5226429e+29 -5.5193798e+29 -5.5263034e+29 -5.5296904e+29 -5.5121301e+29 -5.5157688e+29 -5.5225806e+29 -5.518885e+29 -5.5033989e+29 -5.5093126e+29 -5.5057611e+29 -5.4998296e+29 -5.5979636e+29 -5.6090213e+29 -5.5971242e+29 -5.6080066e+29 -5.5962336e+29 -5.6070546e+29 -5.6059855e+29 -5.5950892e+29 -5.5937738e+29 -5.6046463e+29 -5.5924397e+29 -5.6034034e+29 -5.591321e+29 -5.6022323e+29 -5.601399e+29 -5.5906166e+29 -5.5883188e+29 -5.5986745e+29 -5.5972063e+29 -5.5870123e+29 -5.5900604e+29 -5.6007041e+29 -5.5999038e+29 -5.5893106e+29 -5.5855777e+29 -5.5957037e+29 -5.5943854e+29 -5.5843741e+29 -5.5813765e+29 -5.5914945e+29 -5.5831988e+29 -5.5931986e+29 -5.1443611e+29 -5.1408952e+29 -5.5148009e+29 -5.5156387e+29 -5.5002806e+29 -5.4994808e+29 -5.5067402e+29 -5.5076e+29 -5.5142575e+29 -5.5143626e+29 -5.5062941e+29 -5.4991243e+29 -5.4991e+29 -5.5064036e+29 -5.5240752e+29 -5.5242406e+29 -5.525568e+29 -5.5247208e+29 -5.4818812e+29 -5.4728285e+29 -5.4739097e+29 -5.4827642e+29 -5.4814163e+29 -5.4720264e+29 -5.4719756e+29 -5.4812443e+29 -5.4927428e+29 -5.4870139e+29 -5.4868622e+29 -5.4926332e+29 -5.4930605e+29 -5.4873253e+29 -5.488177e+29 -5.4938538e+29 -5.4771054e+29 -5.4848519e+29 -5.476265e+29 -5.4854593e+29 -5.4835905e+29 -5.4748737e+29 -5.4755168e+29 -5.4842653e+29 -5.4945567e+29 -5.4888933e+29 -5.4896225e+29 -5.4952904e+29 -5.4958198e+29 -5.4901496e+29 -5.4908285e+29 -5.4964681e+29 -5.5182006e+29 -5.5179694e+29 -5.5028384e+29 -5.5022586e+29 -5.5097459e+29 -5.510159e+29 -5.5166415e+29 -5.5174741e+29 -5.5084381e+29 -5.5010018e+29 -5.5017464e+29 -5.5092419e+29 -5.5274067e+29 -5.5265854e+29 -5.5278313e+29 -5.5278521e+29 -5.6016608e+29 -5.5919224e+29 -5.5924301e+29 -5.601049e+29 -5.5731636e+29 -5.5731237e+29 -5.582132e+29 -5.5819995e+29 -5.5731056e+29 -5.5734037e+29 -5.5826079e+29 -5.5821995e+29 -5.5914994e+29 -5.5917278e+29 -5.6007813e+29 -5.6004891e+29 -5.5554342e+29 -5.5556322e+29 -5.5643518e+29 -5.5641333e+29 -5.5470288e+29 -5.5385659e+29 -5.5385315e+29 -5.5468855e+29 -5.538898e+29 -5.5471472e+29 -5.5476517e+29 -5.5395455e+29 -5.5556028e+29 -5.5642449e+29 -5.5644591e+29 -5.5559331e+29 -5.540315e+29 -5.5482569e+29 -5.5486496e+29 -5.5408988e+29 -5.5642047e+29 -5.5563915e+29 -5.5558048e+29 -5.5635126e+29 -5.556378e+29 -5.5647063e+29 -5.5646455e+29 -5.5565421e+29 -5.5486817e+29 -5.5410928e+29 -5.5408298e+29 -5.5482615e+29 -5.5729519e+29 -5.5732675e+29 -5.5820237e+29 -5.5815758e+29 -5.5908485e+29 -5.5913834e+29 -5.6002385e+29 -5.5996226e+29 -5.589167e+29 -5.5900778e+29 -5.5987876e+29 -5.597819e+29 -5.571598e+29 -5.5723301e+29 -5.5808508e+29 -5.580029e+29 -5.6695717e+29 -5.6801501e+29 -5.6784076e+29 -5.6678754e+29 -5.689792e+29 -5.6916e+29 -5.7034653e+29 -5.7015579e+29 -5.6950737e+29 -5.7067954e+29 -5.7053318e+29 -5.6934773e+29 -5.6662898e+29 -5.66463e+29 -5.6751728e+29 -5.6767858e+29 -5.6881773e+29 -5.6999013e+29 -5.698306e+29 -5.6865702e+29 -5.6851299e+29 -5.6839252e+29 -5.6957088e+29 -5.6968781e+29 -5.6630922e+29 -5.6736907e+29 -5.6723535e+29 -5.661638e+29 -5.6420968e+29 -5.6436167e+29 -5.6516292e+29 -5.6531323e+29 -5.6469901e+29 -5.6452687e+29 -5.6547216e+29 -5.6564204e+29 -5.6343551e+29 -5.6237696e+29 -5.6328593e+29 -5.6120187e+29 -5.6100735e+29 -5.621549e+29 -5.6303527e+29 -5.6211179e+29 -5.6298245e+29 -5.6097293e+29 -5.648949e+29 -5.6394473e+29 -5.638843e+29 -5.6482816e+29 -5.6400407e+29 -5.6408952e+29 -5.6504422e+29 -5.6495244e+29 -5.611013e+29 -5.6225831e+29 -5.6316593e+29 -5.6219837e+29 -5.6308992e+29 -5.6104143e+29 -5.65814e+29 -5.6686487e+29 -5.6694268e+29 -5.6588238e+29 -5.6701972e+29 -5.6712045e+29 -5.6604511e+29 -5.6594832e+29 -5.6817546e+29 -5.682816e+29 -5.6935942e+29 -5.6946681e+29 -5.680869e+29 -5.6926137e+29 -5.6916036e+29 -5.6799749e+29 -5.6677984e+29 -5.6564024e+29 -5.6573893e+29 -5.6667749e+29 -5.6779687e+29 -5.6790128e+29 -5.6905411e+29 -5.6894052e+29 -5.6882212e+29 -5.676809e+29 -5.6754658e+29 -5.6868536e+29 -5.6553387e+29 -5.654126e+29 -5.6643947e+29 -5.6656632e+29 -5.609347e+29 -5.6206027e+29 -5.6292199e+29 -5.6198068e+29 -5.6283743e+29 -5.6086546e+29 -5.6067382e+29 -5.6176938e+29 -5.6077561e+29 -5.6187837e+29 -5.627349e+29 -5.6262297e+29 -5.6351402e+29 -5.6362816e+29 -5.6456168e+29 -5.6444482e+29 -5.6372985e+29 -5.6381963e+29 -5.6475968e+29 -5.6466432e+29 -5.4689287e+29 -5.4732528e+29 -5.4790853e+29 -5.4743632e+29 -5.4702223e+29 -5.4782641e+29 -5.4810786e+29 -5.4764117e+29 -5.4721227e+29 -5.4713794e+29 -5.475553e+29 -5.4802321e+29 -5.4908e+29 -5.4855815e+29 -5.484786e+29 -5.4900784e+29 -5.4891195e+29 -5.483746e+29 -5.483102e+29 -5.4885446e+29 -5.5118588e+29 -5.5118384e+29 -5.5039732e+29 -5.4968541e+29 -5.4963064e+29 -5.5036745e+29 -5.5201794e+29 -5.5278107e+29 -5.5199843e+29 -5.5274921e+29 -5.5114157e+29 -5.519928e+29 -5.5276628e+29 -5.5196257e+29 -5.5273909e+29 -5.5110453e+29 -5.4949805e+29 -5.4954787e+29 -5.50305e+29 -5.5026021e+29 -5.5097409e+29 -5.5092992e+29 -5.516671e+29 -5.5238371e+29 -5.5172114e+29 -5.5243876e+29 -5.5023852e+29 -5.4962514e+29 -5.4964386e+29 -5.5027007e+29 -5.5106276e+29 -5.5114793e+29 -5.497146e+29 -5.4968576e+29 -5.5032805e+29 -5.5039265e+29 -5.51936e+29 -5.5266939e+29 -5.5182899e+29 -5.5255404e+29 -5.4909678e+29 -5.4863511e+29 -5.4863107e+29 -5.4910082e+29 -5.4819515e+29 -5.4770986e+29 -5.4729005e+29 -5.4728212e+29 -5.4771572e+29 -5.4819224e+29 -5.4818775e+29 -5.4771484e+29 -5.4727578e+29 -5.4725078e+29 -5.47687e+29 -5.4816281e+29 -5.4912651e+29 -5.4863129e+29 -5.4861425e+29 -5.4912721e+29 -5.5293244e+29 -5.5365588e+29 -5.54293e+29 -5.5412852e+29 -5.5275385e+29 -5.5348393e+29 -5.5542601e+29 -5.5468624e+29 -5.5461293e+29 -5.5536779e+29 -5.5497966e+29 -5.5571595e+29 -5.5555054e+29 -5.5481252e+29 -5.5398537e+29 -5.5256871e+29 -5.5332253e+29 -5.5243501e+29 -5.5320592e+29 -5.5388685e+29 -5.5542581e+29 -5.5553126e+29 -5.5627228e+29 -5.561618e+29 -5.5482601e+29 -5.5340004e+29 -5.5415767e+29 -5.5333737e+29 -5.540713e+29 -5.5472441e+29 -5.532418e+29 -5.5396195e+29 -5.5460275e+29 -5.5445558e+29 -5.5310685e+29 -5.5382152e+29 -5.5529471e+29 -5.5603305e+29 -5.5587397e+29 -5.5513581e+29 -5.5665673e+29 -5.5681679e+29 -5.5764109e+29 -5.5748217e+29 -5.569476e+29 -5.5706353e+29 -5.5789703e+29 -5.5777493e+29 -5.5839244e+29 -5.5939365e+29 -5.5855086e+29 -5.5923539e+29 -5.5881422e+29 -5.5966159e+29 -5.5953312e+29 -5.5868809e+29 -5.5633238e+29 -5.5649927e+29 -5.5732381e+29 -5.5716067e+29 -5.5907612e+29 -5.5807477e+29 -5.582329e+29 -5.5892192e+29 -5.5791354e+29 -5.5796233e+29 -5.5881096e+29 -5.5875868e+29 -5.5616655e+29 -5.5621053e+29 -5.5704324e+29 -5.5699843e+29 -5.5098836e+29 -5.5112011e+29 -5.4968675e+29 -5.497965e+29 -5.5041763e+29 -5.5029993e+29 -5.514899e+29 -5.513174e+29 -5.507751e+29 -5.5013738e+29 -5.4997684e+29 -5.5061119e+29 -5.5205843e+29 -5.5223563e+29 -5.5186323e+29 -5.517258e+29 -5.5176749e+29 -5.5165579e+29 -5.5028643e+29 -5.5037387e+29 -5.5102546e+29 -5.5093436e+29 -5.5185399e+29 -5.5183563e+29 -5.510774e+29 -5.5038854e+29 -5.504158e+29 -5.51085e+29 -5.5265258e+29 -5.5261483e+29 -5.5241147e+29 -5.5253516e+29 -5.4887111e+29 -5.4843443e+29 -5.4803037e+29 -5.4792917e+29 -5.4833923e+29 -5.4878815e+29 -5.4881988e+29 -5.483749e+29 -5.479751e+29 -5.4804802e+29 -5.4844663e+29 -5.4888401e+29 -5.4979299e+29 -5.4927278e+29 -5.4932657e+29 -5.4983472e+29 -5.4980575e+29 -5.4930512e+29 -5.4922252e+29 -5.4971994e+29 -5.4865914e+29 -5.4820491e+29 -5.4779032e+29 -5.4763968e+29 -5.4805447e+29 -5.4852051e+29 -5.4957929e+29 -5.4908884e+29 -5.4894947e+29 -5.4942795e+29 -5.492657e+29 -5.488107e+29 -5.4870441e+29 -5.4915836e+29 -5.4838832e+29 -5.4792216e+29 -5.4750475e+29 -5.4738004e+29 -5.4780261e+29 -5.4827699e+29 -5.563927e+29 -5.563141e+29 -5.5713692e+29 -5.5720642e+29 -5.562244e+29 -5.5616483e+29 -5.5699779e+29 -5.5705126e+29 -5.5810346e+29 -5.5886415e+29 -5.5803666e+29 -5.589279e+29 -5.5791232e+29 -5.5875751e+29 -5.5879731e+29 -5.5795973e+29 -5.5464634e+29 -5.5459313e+29 -5.5535834e+29 -5.5541715e+29 -5.5385849e+29 -5.5316458e+29 -5.5320898e+29 -5.5390406e+29 -5.533115e+29 -5.5399993e+29 -5.5410102e+29 -5.534199e+29 -5.5473822e+29 -5.5551087e+29 -5.5559743e+29 -5.5482668e+29 -5.5351686e+29 -5.535394e+29 -5.5422604e+29 -5.542007e+29 -5.5418274e+29 -5.5350271e+29 -5.5354165e+29 -5.5422551e+29 -5.54958e+29 -5.5572296e+29 -5.5568325e+29 -5.5492694e+29 -5.549056e+29 -5.5495544e+29 -5.5572107e+29 -5.5567325e+29 -5.5651706e+29 -5.5647062e+29 -5.5728951e+29 -5.5733586e+29 -5.5899839e+29 -5.5822468e+29 -5.5818134e+29 -5.5903605e+29 -5.5816878e+29 -5.5822138e+29 -5.5902877e+29 -5.5897574e+29 -5.5646842e+29 -5.5651719e+29 -5.5733446e+29 -5.5728244e+29 -5.5974746e+29 -5.6095754e+29 -5.6089679e+29 -5.5969142e+29 -5.6000598e+29 -5.6119889e+29 -5.6106886e+29 -5.5985834e+29 -5.6045871e+29 -5.6163088e+29 -5.6058978e+29 -5.617725e+29 -5.603209e+29 -5.6149581e+29 -5.6135377e+29 -5.6016512e+29 -5.5968607e+29 -5.6088016e+29 -5.5971384e+29 -5.6088155e+29 -5.5976966e+29 -5.609188e+29 -5.6097372e+29 -5.5983137e+29 -5.5991545e+29 -5.6101879e+29 -5.6096942e+29 -5.5986313e+29 -5.5989207e+29 -5.6101325e+29 -5.6103951e+29 -5.5992566e+29 -5.428651e+29 -5.4330291e+29 -5.4252902e+29 -5.4298414e+29 -5.4203697e+29 -5.4249222e+29 -5.4227383e+29 -5.4273169e+29 -5.4415931e+29 -5.4461654e+29 -5.4429243e+29 -5.4386542e+29 -5.4363829e+29 -5.4397122e+29 -5.4355623e+29 -5.4321311e+29 -5.4739063e+29 -5.4698745e+29 -5.465978e+29 -5.4624876e+29 -5.4737257e+29 -5.4829648e+29 -5.4701744e+29 -5.4793511e+29 -5.4817092e+29 -5.4908552e+29 -5.477646e+29 -5.4868257e+29 -5.4596041e+29 -5.4567265e+29 -5.4671506e+29 -5.476192e+29 -5.4642123e+29 -5.4731146e+29 -5.4539521e+29 -5.4613624e+29 -5.4701556e+29 -5.4586266e+29 -5.4672439e+29 -5.4512739e+29 -5.3833727e+29 -5.3795165e+29 -5.375087e+29 -5.3699841e+29 -5.3470252e+29 -5.3713747e+29 -5.3689599e+29 -5.3562942e+29 -5.3583827e+29 -5.345205e+29 -5.3853631e+29 -5.3987462e+29 -5.3827237e+29 -5.3958581e+29 -5.3679091e+29 -5.381329e+29 -5.3940204e+29 -5.3800287e+29 -5.3921672e+29 -5.36684e+29 -5.3444661e+29 -5.355406e+29 -5.354418e+29 -5.3434631e+29 -5.3525276e+29 -5.3744368e+29 -5.3773881e+29 -5.3641703e+29 -5.3613954e+29 -5.3499366e+29 -5.3559566e+29 -5.3680285e+29 -5.3818324e+29 -5.3662372e+29 -5.3796544e+29 -5.3543925e+29 -5.3966297e+29 -5.4105601e+29 -5.394252e+29 -5.4080232e+29 -5.3917286e+29 -5.4053118e+29 -5.3885701e+29 -5.4020042e+29 -5.4057155e+29 -5.4079129e+29 -5.4017421e+29 -5.399717e+29 -5.4128661e+29 -5.4105498e+29 -5.4176935e+29 -5.415316e+29 -5.4155634e+29 -5.4187791e+29 -5.420317e+29 -5.4236463e+29 -5.4069491e+29 -5.4134586e+29 -5.4104413e+29 -5.4040249e+29 -5.4221447e+29 -5.4254778e+29 -5.4304898e+29 -5.42709e+29 -5.4284081e+29 -5.4310319e+29 -5.4334965e+29 -5.4362434e+29 -5.4162331e+29 -5.4187567e+29 -5.425409e+29 -5.422853e+29 -5.4101817e+29 -5.4134184e+29 -5.4199953e+29 -5.416724e+29 -5.3559762e+29 -5.3592383e+29 -5.3716512e+29 -5.368145e+29 -5.3522294e+29 -5.3640672e+29 -5.3594624e+29 -5.3479947e+29 -5.3648717e+29 -5.3659874e+29 -5.3793404e+29 -5.3923081e+29 -5.3780316e+29 -5.3907598e+29 -5.3635622e+29 -5.3617166e+29 -5.37434e+29 -5.3863714e+29 -5.3764379e+29 -5.3888771e+29 -5.2693441e+29 -5.2873284e+29 -5.2693231e+29 -5.2866976e+29 -5.2706106e+29 -5.2891586e+29 -5.2696554e+29 -5.2879789e+29 -5.3038606e+29 -5.3050204e+29 -5.3028121e+29 -5.301725e+29 -5.3106041e+29 -5.3117594e+29 -5.3214254e+29 -5.3199863e+29 -5.3237567e+29 -5.3140376e+29 -5.3128348e+29 -5.3225658e+29 -5.3330871e+29 -5.3421089e+29 -5.3340659e+29 -5.3432319e+29 -5.3318304e+29 -5.3405932e+29 -5.3299587e+29 -5.3381932e+29 -5.3337913e+29 -5.3347966e+29 -5.3275884e+29 -5.326629e+29 -5.3185236e+29 -5.3098054e+29 -5.3092645e+29 -5.3176073e+29 -5.3091767e+29 -5.3172568e+29 -5.3168325e+29 -5.3089897e+29 -5.3260565e+29 -5.3333582e+29 -5.3250484e+29 -5.3319822e+29 -5.3012164e+29 -5.3009197e+29 -5.3010604e+29 -5.3010751e+29 -5.2760121e+29 -5.2944822e+29 -5.2754675e+29 -5.2939264e+29 -5.2738711e+29 -5.2925344e+29 -5.2905671e+29 -5.2719905e+29 -5.2446851e+29 -5.2537648e+29 -5.2491339e+29 -5.2577011e+29 -5.2408218e+29 -5.2496518e+29 -5.238559e+29 -5.2474762e+29 -5.3138595e+29 -5.3150835e+29 -5.3151219e+29 -5.3204727e+29 -5.2844788e+29 -5.3017445e+29 -5.3171125e+29 -5.3223394e+29 -5.2870308e+29 -5.304131e+29 -5.2731903e+29 -5.2703527e+29 -5.3107815e+29 -5.3164789e+29 -5.2795183e+29 -5.2971085e+29 -5.3128813e+29 -5.3184228e+29 -5.2819114e+29 -5.2993468e+29 -5.2674125e+29 -5.2649861e+29 -5.399934e+29 -5.4021923e+29 -5.3886972e+29 -5.3873474e+29 -5.3692417e+29 -5.3706606e+29 -5.3664988e+29 -5.3678866e+29 -5.3860416e+29 -5.3846767e+29 -5.3987143e+29 -5.3986638e+29 -5.3465492e+29 -5.3448328e+29 -5.3627005e+29 -5.3610007e+29 -5.3313245e+29 -5.333099e+29 -5.3349619e+29 -5.3366242e+29 -5.3481737e+29 -5.3495714e+29 -5.3656845e+29 -5.3644283e+29 -5.364202e+29 -5.3819138e+29 -5.3835098e+29 -5.3655131e+29 -5.3975942e+29 -5.3948136e+29 -5.3633947e+29 -5.3810353e+29 -5.3945137e+29 -5.3937167e+29 -5.3810454e+29 -5.3635969e+29 -5.3289301e+29 -5.3300307e+29 -5.3424102e+29 -5.3434172e+29 -5.3599624e+29 -5.358924e+29 -5.2633897e+29 -5.2599529e+29 -5.2557148e+29 -5.2518574e+29 -5.2485034e+29 -5.2453002e+29 -5.2443881e+29 -5.2443476e+29 -5.2392624e+29 -5.2389618e+29 -5.2435774e+29 -5.2409314e+29 -5.2426314e+29 -5.2456487e+29 -5.2394074e+29 -5.2400596e+29 -5.3179903e+29 -5.3262637e+29 -5.2862927e+29 -5.3079083e+29 -5.3208845e+29 -5.3288069e+29 -5.290007e+29 -5.3113548e+29 -5.2726307e+29 -5.268702e+29 -5.3233276e+29 -5.3309149e+29 -5.2934472e+29 -5.314304e+29 -5.3243127e+29 -5.331867e+29 -5.2945744e+29 -5.3153674e+29 -5.2782113e+29 -5.2765782e+29 -5.3153447e+29 -5.3237949e+29 -5.2833787e+29 -5.3051639e+29 -5.3131131e+29 -5.3216404e+29 -5.2810446e+29 -5.3028059e+29 -5.2656405e+29 -5.2631454e+29 -5.3114718e+29 -5.3200392e+29 -5.279434e+29 -5.3012036e+29 -5.3101429e+29 -5.3187366e+29 -5.2782757e+29 -5.2998933e+29 -5.261663e+29 -5.2607658e+29 -5.3090451e+29 -5.3175334e+29 -5.2776178e+29 -5.2991107e+29 -5.3077054e+29 -5.3161937e+29 -5.2761889e+29 -5.297665e+29 -5.2601819e+29 -5.2585428e+29 -5.3064964e+29 -5.3150968e+29 -5.2746237e+29 -5.2962645e+29 -5.305746e+29 -5.3144559e+29 -5.2736048e+29 -5.2952971e+29 -5.25687e+29 -5.2559591e+29 -5.3057032e+29 -5.3143692e+29 -5.2736964e+29 -5.2953495e+29 -5.3061448e+29 -5.314716e+29 -5.2745184e+29 -5.2959327e+29 -5.2561752e+29 -5.2570831e+29 -5.3070413e+29 -5.3154549e+29 -5.2759014e+29 -5.2970675e+29 -5.3080379e+29 -5.3162427e+29 -5.2773843e+29 -5.2982981e+29 -5.2588329e+29 -5.2606871e+29 -5.2426661e+29 -5.2413082e+29 -5.2469794e+29 -5.2449586e+29 -5.2412369e+29 -5.2433509e+29 -5.2405216e+29 -5.240001e+29 -5.2442271e+29 -5.2446215e+29 -5.2462714e+29 -5.2444498e+29 -5.2501901e+29 -5.2481271e+29 -5.2539567e+29 -5.2578472e+29 -5.3083072e+29 -5.2785713e+29 -5.2991026e+29 -5.3087012e+29 -5.279005e+29 -5.2995375e+29 -5.2624513e+29 -5.2617215e+29 -5.3060033e+29 -5.2751054e+29 -5.2960954e+29 -5.3071749e+29 -5.2767998e+29 -5.2976376e+29 -5.259648e+29 -5.2579208e+29 -5.3052954e+29 -5.274349e+29 -5.2953678e+29 -5.3050508e+29 -5.2742605e+29 -5.2951446e+29 -5.2571767e+29 -5.2570526e+29 -5.3053507e+29 -5.2749418e+29 -5.2956e+29 -5.3058612e+29 -5.2756597e+29 -5.2961276e+29 -5.2579499e+29 -5.258992e+29 -5.3075183e+29 -5.2778503e+29 -5.2979956e+29 -5.3083139e+29 -5.2787245e+29 -5.2987381e+29 -5.2610806e+29 -5.2621696e+29 -5.306538e+29 -5.276582e+29 -5.296981e+29 -5.3069888e+29 -5.2771194e+29 -5.2974395e+29 -5.2600175e+29 -5.2603896e+29 -5.3095879e+29 -5.2803072e+29 -5.3001468e+29 -5.3111562e+29 -5.2822693e+29 -5.3018983e+29 -5.2638967e+29 -5.2659638e+29 -5.312963e+29 -5.2846412e+29 -5.3039593e+29 -5.3147971e+29 -5.2874994e+29 -5.3063998e+29 -5.2688077e+29 -5.2720832e+29 -5.3413378e+29 -5.3390296e+29 -5.3440125e+29 -5.3432205e+29 -5.3793064e+29 -5.4098454e+29 -5.4089412e+29 -5.3943516e+29 -5.3936551e+29 -5.3786714e+29 -5.4077553e+29 -5.4067865e+29 -5.3774868e+29 -5.3925154e+29 -5.391158e+29 -5.3760324e+29 -5.35334e+29 -5.3603292e+29 -5.369157e+29 -5.3585675e+29 -5.3676235e+29 -5.3512657e+29 -5.3556361e+29 -5.3623904e+29 -5.3550137e+29 -5.3618081e+29 -5.3703638e+29 -5.3708145e+29 -5.3331571e+29 -5.3318245e+29 -5.3347143e+29 -5.3367416e+29 -5.374692e+29 -5.3899082e+29 -5.4054505e+29 -5.3882655e+29 -5.4035124e+29 -5.3730039e+29 -5.3714479e+29 -5.4008033e+29 -5.4019429e+29 -5.369885e+29 -5.3852365e+29 -5.3867758e+29 -5.3491704e+29 -5.3567271e+29 -5.3472891e+29 -5.3549327e+29 -5.3644007e+29 -5.3660455e+29 -5.3457462e+29 -5.3534027e+29 -5.3443755e+29 -5.3519545e+29 -5.3612529e+29 -5.3628154e+29 -5.3665836e+29 -5.3663867e+29 -5.3817757e+29 -5.3968768e+29 -5.3820038e+29 -5.3975052e+29 -5.3966277e+29 -5.3967078e+29 -5.3812393e+29 -5.3814996e+29 -5.3662454e+29 -5.3660583e+29 -5.3284287e+29 -5.3289206e+29 -5.3276412e+29 -5.3278755e+29 -5.3405556e+29 -5.3482289e+29 -5.3403951e+29 -5.3481995e+29 -5.3577155e+29 -5.3577718e+29 -5.3408913e+29 -5.3483969e+29 -5.3410898e+29 -5.3483978e+29 -5.3574751e+29 -5.3576524e+29 -5.3682858e+29 -5.3993798e+29 -5.39795e+29 -5.3824943e+29 -5.3836436e+29 -5.3672238e+29 -5.3974141e+29 -5.3977059e+29 -5.3668391e+29 -5.3821257e+29 -5.3820744e+29 -5.3667028e+29 -5.3419068e+29 -5.3493452e+29 -5.3430747e+29 -5.3504543e+29 -5.3585467e+29 -5.3595578e+29 -5.330595e+29 -5.329332e+29 -5.3283439e+29 -5.3277514e+29 -5.3410523e+29 -5.3487159e+29 -5.3405312e+29 -5.3483184e+29 -5.3579406e+29 -5.3581575e+29 -5.3111045e+29 -5.2818249e+29 -5.3030901e+29 -5.3090006e+29 -5.2797317e+29 -5.3009193e+29 -5.3074178e+29 -5.278507e+29 -5.2994958e+29 -5.3059035e+29 -5.2771963e+29 -5.2978835e+29 -5.3187784e+29 -5.2921882e+29 -5.3120536e+29 -5.3181713e+29 -5.2911407e+29 -5.3113081e+29 -5.3160788e+29 -5.2878647e+29 -5.3086773e+29 -5.3134422e+29 -5.2843588e+29 -5.3054797e+29 -5.2737152e+29 -5.2937602e+29 -5.2739298e+29 -5.2936454e+29 -5.2748004e+29 -5.2941244e+29 -5.2753469e+29 -5.2942178e+29 -5.275779e+29 -5.2962378e+29 -5.2768707e+29 -5.2973765e+29 -5.2748258e+29 -5.2952533e+29 -5.2738299e+29 -5.2940634e+29 -4.9249939e+29 -4.9257789e+29 -5.383506e+29 -5.3846028e+29 -5.3709499e+29 -5.3589668e+29 -5.3575116e+29 -5.3696422e+29 -5.3598448e+29 -5.3608304e+29 -5.3728355e+29 -5.3868345e+29 -5.37183e+29 -5.3856573e+29 -5.4006605e+29 -5.4150825e+29 -5.4019387e+29 -5.4165287e+29 -5.3995181e+29 -5.41381e+29 -5.3983736e+29 -5.4124148e+29 -5.3927983e+29 -5.3922106e+29 -5.4074103e+29 -5.4197571e+29 -5.4080144e+29 -5.4203291e+29 -5.3646467e+29 -5.3777169e+29 -5.3785646e+29 -5.365618e+29 -5.366078e+29 -5.3932076e+29 -5.3930484e+29 -5.3789668e+29 -5.3787224e+29 -5.3659459e+29 -5.4084419e+29 -5.4207584e+29 -5.4082137e+29 -5.4205451e+29 -5.366519e+29 -5.3928689e+29 -5.3914541e+29 -5.3786852e+29 -5.3775612e+29 -5.3656042e+29 -5.3900355e+29 -5.3883557e+29 -5.3642651e+29 -5.3761615e+29 -5.3745032e+29 -5.3625911e+29 -5.4034248e+29 -5.4180429e+29 -5.405159e+29 -5.4198094e+29 -5.40819e+29 -5.422833e+29 -5.4066647e+29 -5.4213243e+29 -5.3644212e+29 -5.3638729e+29 -5.3770833e+29 -5.3916922e+29 -5.3777809e+29 -5.3925663e+29 -5.4081966e+29 -5.420849e+29 -5.4072264e+29 -5.4198843e+29 -5.3911429e+29 -5.4065099e+29 -5.4191415e+29 -5.4066476e+29 -5.4189869e+29 -5.3914488e+29 -5.3768975e+29 -5.3766886e+29 -5.3636056e+29 -5.3637759e+29 -5.4298833e+29 -5.4302222e+29 -5.4382191e+29 -5.4377971e+29 -5.4309924e+29 -5.4318521e+29 -5.4398132e+29 -5.4389958e+29 -5.4461144e+29 -5.4469363e+29 -5.4538488e+29 -5.452986e+29 -5.4448677e+29 -5.4453398e+29 -5.4522224e+29 -5.4517159e+29 -5.431e+29 -5.4304447e+29 -5.4381991e+29 -5.4386893e+29 -5.4313412e+29 -5.4389548e+29 -5.4386363e+29 -5.4310895e+29 -5.4452152e+29 -5.445698e+29 -5.4521805e+29 -5.4516033e+29 -5.4455466e+29 -5.4451341e+29 -5.4518544e+29 -5.4521447e+29 -5.4385426e+29 -5.4441806e+29 -5.4424307e+29 -5.4368641e+29 -5.4253617e+29 -5.4238027e+29 -5.4308701e+29 -5.432489e+29 -5.4207331e+29 -5.4223312e+29 -5.4292668e+29 -5.4275113e+29 -5.4332762e+29 -5.4351933e+29 -5.4408129e+29 -5.4387337e+29 -5.4301709e+29 -5.4315143e+29 -5.43739e+29 -5.4386562e+29 -5.4436938e+29 -5.4449407e+29 -5.451119e+29 -5.4497641e+29 -5.4479437e+29 -5.4420985e+29 -5.4402806e+29 -5.4460196e+29 -5.4269423e+29 -5.4286343e+29 -5.4341351e+29 -5.4358652e+29 -5.457078e+29 -5.4569865e+29 -5.4646015e+29 -5.464622e+29 -5.4406451e+29 -5.4387706e+29 -5.4493039e+29 -5.4508644e+29 -5.4375476e+29 -5.4373948e+29 -5.4480373e+29 -5.4480969e+29 -5.4594232e+29 -5.4580944e+29 -5.4655335e+29 -5.4667005e+29 -5.4195958e+29 -5.4200153e+29 -5.4232283e+29 -5.4209628e+29 -5.4553604e+29 -5.4542854e+29 -5.4442328e+29 -5.4454491e+29 -5.442009e+29 -5.4521001e+29 -5.4529965e+29 -5.4429191e+29 -5.4613583e+29 -5.4605815e+29 -5.4677584e+29 -5.4684158e+29 -5.4623457e+29 -5.4692872e+29 -5.4702482e+29 -5.4633338e+29 -5.424536e+29 -5.425103e+29 -5.4280207e+29 -5.4264316e+29 -5.4180339e+29 -5.4174363e+29 -5.4168756e+29 -5.4170888e+29 -5.4197984e+29 -5.4183918e+29 -5.4181383e+29 -5.4179879e+29 -5.4408333e+29 -5.44093e+29 -5.4505814e+29 -5.4504129e+29 -5.4516483e+29 -5.4423719e+29 -5.4412919e+29 -5.4509006e+29 -5.466414e+29 -5.4593815e+29 -5.4589384e+29 -5.4661181e+29 -5.458495e+29 -5.4587042e+29 -5.4659728e+29 -5.4657317e+29 -5.4401986e+29 -5.4407003e+29 -5.4501876e+29 -5.44969e+29 -5.4559454e+29 -5.4569129e+29 -5.463774e+29 -5.4625192e+29 -5.4576645e+29 -5.4582101e+29 -5.4654033e+29 -5.4647574e+29 -5.439654e+29 -5.4490763e+29 -5.4483353e+29 -5.4390669e+29 -5.4269279e+29 -5.4280115e+29 -5.4299172e+29 -5.4290824e+29 -5.4490636e+29 -5.4501381e+29 -5.4592981e+29 -5.4582125e+29 -5.4600793e+29 -5.4514133e+29 -5.4509522e+29 -5.4599596e+29 -5.4674573e+29 -5.4671613e+29 -5.4741566e+29 -5.4736066e+29 -5.465899e+29 -5.4669788e+29 -5.4727984e+29 -5.4738555e+29 -5.4436112e+29 -5.4448844e+29 -5.4539187e+29 -5.4526171e+29 -5.446244e+29 -5.4478146e+29 -5.4568299e+29 -5.455298e+29 -5.4615582e+29 -5.4602763e+29 -5.4672389e+29 -5.4684908e+29 -5.4629395e+29 -5.4644738e+29 -5.4698587e+29 -5.4713874e+29 -5.4238815e+29 -5.4256947e+29 -5.4224311e+29 -5.4212209e+29 -5.3655526e+29 -5.393827e+29 -5.3946625e+29 -5.3793806e+29 -5.3789317e+29 -5.3652686e+29 -5.4108454e+29 -5.4241569e+29 -5.4098991e+29 -5.423033e+29 -5.3936344e+29 -5.4095364e+29 -5.4224187e+29 -5.4089943e+29 -5.4215398e+29 -5.393319e+29 -5.3652597e+29 -5.3788447e+29 -5.3785362e+29 -5.3650633e+29 -5.3684475e+29 -5.3677908e+29 -5.3818559e+29 -5.3973596e+29 -5.3826762e+29 -5.3984375e+29 -5.4152053e+29 -5.4289106e+29 -5.4140034e+29 -5.4275729e+29 -5.3961913e+29 -5.395373e+29 -5.4116591e+29 -5.4250844e+29 -5.4126671e+29 -5.4262085e+29 -5.3800271e+29 -5.3808819e+29 -5.3669701e+29 -5.3661301e+29 -5.4488979e+29 -5.440683e+29 -5.4393921e+29 -5.447701e+29 -5.4380077e+29 -5.4367847e+29 -5.4451112e+29 -5.4463664e+29 -5.4524714e+29 -5.4537375e+29 -5.4607477e+29 -5.4595069e+29 -5.4558941e+29 -5.4549558e+29 -5.4618035e+29 -5.4625225e+29 -5.435735e+29 -5.4346336e+29 -5.4428761e+29 -5.4440017e+29 -5.432602e+29 -5.4336955e+29 -5.4418008e+29 -5.4406126e+29 -5.4478079e+29 -5.4490387e+29 -5.4560307e+29 -5.4547903e+29 -5.4501785e+29 -5.4513259e+29 -5.4583567e+29 -5.4571903e+29 -5.3234681e+29 -5.3339008e+29 -5.3348294e+29 -5.3248322e+29 -5.3314172e+29 -5.3205985e+29 -5.3219611e+29 -5.3326527e+29 -5.3434231e+29 -5.3518282e+29 -5.3420471e+29 -5.350459e+29 -5.3574766e+29 -5.3562814e+29 -5.34442e+29 -5.3526203e+29 -5.3448324e+29 -5.3527068e+29 -5.3580715e+29 -5.3580965e+29 -5.3412388e+29 -5.3491975e+29 -5.341236e+29 -5.3496524e+29 -5.355301e+29 -5.3554145e+29 -5.3411426e+29 -5.3498362e+29 -5.3411078e+29 -5.3500977e+29 -5.3557042e+29 -5.3561186e+29 -5.3182907e+29 -5.3179187e+29 -5.3294436e+29 -5.3296718e+29 -5.3187842e+29 -5.3300229e+29 -5.3305022e+29 -5.3194906e+29 -5.3185352e+29 -5.3302192e+29 -5.3292405e+29 -5.3175446e+29 -5.3313799e+29 -5.3198321e+29 -5.3194456e+29 -5.3310402e+29 -5.3430206e+29 -5.3526697e+29 -5.3431935e+29 -5.3529446e+29 -5.3590214e+29 -5.3594522e+29 -5.342225e+29 -5.3518768e+29 -5.3410661e+29 -5.3507944e+29 -5.3573476e+29 -5.3582756e+29 -5.3173844e+29 -5.3169626e+29 -5.3287877e+29 -5.3290893e+29 -5.3286524e+29 -5.3169152e+29 -5.3167012e+29 -5.3285403e+29 -5.3503462e+29 -5.3566901e+29 -5.3406501e+29 -5.3404903e+29 -5.3502344e+29 -5.3567738e+29 -5.3408798e+29 -5.3505042e+29 -5.3410436e+29 -5.3504839e+29 -5.3566484e+29 -5.356746e+29 -5.3484619e+29 -5.3389818e+29 -5.3477244e+29 -5.3403806e+29 -5.3301406e+29 -5.3202471e+29 -5.3182588e+29 -5.3282984e+29 -5.3166687e+29 -5.3267088e+29 -5.3249682e+29 -5.315097e+29 -5.337473e+29 -5.3466441e+29 -5.3354394e+29 -5.3447454e+29 -5.3426486e+29 -5.3509104e+29 -5.3446417e+29 -5.3528024e+29 -5.3459588e+29 -5.3540375e+29 -5.3462119e+29 -5.3544331e+29 -5.3264306e+29 -5.3269491e+29 -5.3361853e+29 -5.3358154e+29 -5.3224312e+29 -5.3247089e+29 -5.3343428e+29 -5.3322517e+29 -5.5239527e+29 -5.5304938e+29 -5.5377857e+29 -5.5253055e+29 -5.5317478e+29 -5.5366212e+29 -5.5513144e+29 -5.5442812e+29 -5.5433246e+29 -5.5504642e+29 -5.5454847e+29 -5.5467919e+29 -5.5536513e+29 -5.5523455e+29 -5.5280546e+29 -5.5343667e+29 -5.5403067e+29 -5.5391006e+29 -5.5268055e+29 -5.5331418e+29 -5.5490346e+29 -5.5491952e+29 -5.5564345e+29 -5.5561468e+29 -5.5423607e+29 -5.5293774e+29 -5.536031e+29 -5.5295325e+29 -5.5360351e+29 -5.5422467e+29 -5.5295271e+29 -5.5358854e+29 -5.5419649e+29 -5.5412928e+29 -5.5290346e+29 -5.5353204e+29 -5.5486318e+29 -5.5557188e+29 -5.5547773e+29 -5.547771e+29 -5.5621636e+29 -5.5631803e+29 -5.5709543e+29 -5.5698918e+29 -5.5636987e+29 -5.5641214e+29 -5.5721441e+29 -5.571586e+29 -5.5786827e+29 -5.5875659e+29 -5.5797872e+29 -5.5864278e+29 -5.5811873e+29 -5.5891367e+29 -5.5883983e+29 -5.5805287e+29 -5.5609913e+29 -5.5686841e+29 -5.5674214e+29 -5.5596956e+29 -5.5851471e+29 -5.5774322e+29 -5.5761431e+29 -5.5838112e+29 -5.575195e+29 -5.5745217e+29 -5.5820847e+29 -5.5827516e+29 -5.5664836e+29 -5.558732e+29 -5.5657788e+29 -5.5579893e+29 -5.4765418e+29 -5.4721049e+29 -5.465529e+29 -5.4643613e+29 -5.4709564e+29 -5.4754483e+29 -5.487012e+29 -5.4813136e+29 -5.4802374e+29 -5.4858493e+29 -5.4843941e+29 -5.4790142e+29 -5.4778767e+29 -5.483239e+29 -5.4742926e+29 -5.4697889e+29 -5.4631953e+29 -5.4619696e+29 -5.4686236e+29 -5.4731641e+29 -5.4887116e+29 -5.4836175e+29 -5.4835367e+29 -5.4887663e+29 -5.4792513e+29 -5.4752353e+29 -5.4692228e+29 -5.4687273e+29 -5.4749189e+29 -5.4790367e+29 -5.4784636e+29 -5.4742102e+29 -5.4678445e+29 -5.4666763e+29 -5.473204e+29 -5.4775938e+29 -5.4886628e+29 -5.4831201e+29 -5.4823654e+29 -5.4880374e+29 -5.5108871e+29 -5.5113094e+29 -5.4946182e+29 -5.4950799e+29 -5.5028411e+29 -5.5024346e+29 -5.5110158e+29 -5.5112459e+29 -5.5026118e+29 -5.4949316e+29 -5.4951163e+29 -5.5028107e+29 -5.5200829e+29 -5.5198549e+29 -5.5201762e+29 -5.5197551e+29 -5.5098539e+29 -5.5086641e+29 -5.5014205e+29 -5.4935763e+29 -5.4923933e+29 -5.5002036e+29 -5.5187246e+29 -5.5174914e+29 -5.5071157e+29 -5.5159468e+29 -5.5146041e+29 -5.5058296e+29 -5.4896805e+29 -5.4908137e+29 -5.4986177e+29 -5.4974111e+29 -5.4822182e+29 -5.4768458e+29 -5.4760342e+29 -5.4815114e+29 -5.4721292e+29 -5.4675862e+29 -5.4609656e+29 -5.4600696e+29 -5.4666732e+29 -5.4712533e+29 -5.4704967e+29 -5.465911e+29 -5.4593126e+29 -5.4587851e+29 -5.4653624e+29 -5.469921e+29 -5.4810384e+29 -5.4753506e+29 -5.4747979e+29 -5.4805158e+29 -5.4581523e+29 -5.4639941e+29 -5.4687197e+29 -5.4647341e+29 -5.4588128e+29 -5.4678838e+29 -5.4695411e+29 -5.4651646e+29 -5.4587781e+29 -5.4589174e+29 -5.4650496e+29 -5.4692307e+29 -5.4799441e+29 -5.4742896e+29 -5.4738494e+29 -5.4793707e+29 -5.4785191e+29 -5.4731591e+29 -5.4721779e+29 -5.4773129e+29 -5.5026227e+29 -5.5018304e+29 -5.4942351e+29 -5.4864526e+29 -5.4858062e+29 -5.4934887e+29 -5.5106216e+29 -5.5199242e+29 -5.5115128e+29 -5.5209739e+29 -5.500553e+29 -5.5092335e+29 -5.5183975e+29 -5.5073226e+29 -5.5163419e+29 -5.4987951e+29 -5.4833829e+29 -5.4847552e+29 -5.4923122e+29 -5.4907361e+29 -5.5042901e+29 -5.50477e+29 -5.5135796e+29 -5.5230882e+29 -5.5131296e+29 -5.5226479e+29 -5.4963556e+29 -5.488608e+29 -5.4880373e+29 -5.495826e+29 -5.5038996e+29 -5.5034085e+29 -5.4871167e+29 -5.4875646e+29 -5.4953977e+29 -5.4949459e+29 -5.5123237e+29 -5.5217962e+29 -5.5128085e+29 -5.5223283e+29 -5.542687e+29 -5.5422803e+29 -5.5493425e+29 -5.549755e+29 -5.5346145e+29 -5.5351773e+29 -5.5288984e+29 -5.528344e+29 -5.5355576e+29 -5.5359825e+29 -5.5297339e+29 -5.5292668e+29 -5.5418955e+29 -5.5490602e+29 -5.5485299e+29 -5.5413398e+29 -5.5572538e+29 -5.5567842e+29 -5.5645328e+29 -5.5650731e+29 -5.5815598e+29 -5.5738726e+29 -5.5732557e+29 -5.5808606e+29 -5.5717239e+29 -5.5726524e+29 -5.5800536e+29 -5.5789199e+29 -5.5564789e+29 -5.5558682e+29 -5.5633514e+29 -5.5641009e+29 -5.5695315e+29 -5.570623e+29 -5.5765173e+29 -5.5776287e+29 -5.5624447e+29 -5.5550798e+29 -5.5613677e+29 -5.5539758e+29 -5.5522984e+29 -5.5501218e+29 -5.5575238e+29 -5.5596923e+29 -5.5680282e+29 -5.5659345e+29 -5.5732392e+29 -5.5752033e+29 -5.5337742e+29 -5.5275086e+29 -5.5263432e+29 -5.5325859e+29 -5.5227005e+29 -5.524744e+29 -5.5309352e+29 -5.5288535e+29 -5.5377519e+29 -5.5449369e+29 -5.5427845e+29 -5.5356422e+29 -5.5477505e+29 -5.5405443e+29 -5.5394223e+29 -5.5466115e+29 -5.4500683e+29 -5.4558289e+29 -5.4535898e+29 -5.4480445e+29 -5.4465791e+29 -5.4518688e+29 -5.4493768e+29 -5.4443508e+29 -5.4576638e+29 -5.4640047e+29 -5.462228e+29 -5.4560881e+29 -5.4539025e+29 -5.4598807e+29 -5.4520599e+29 -5.4579586e+29 -5.4895483e+29 -5.4920096e+29 -5.4966622e+29 -5.4944134e+29 -5.5029016e+29 -5.5126338e+29 -5.5052817e+29 -5.5150821e+29 -5.5004246e+29 -5.5101174e+29 -5.4979197e+29 -5.5074949e+29 -5.4844543e+29 -5.4872977e+29 -5.4891922e+29 -5.4982798e+29 -5.4812269e+29 -5.4776019e+29 -5.4855112e+29 -5.4946279e+29 -5.4955137e+29 -5.5048926e+29 -5.4925544e+29 -5.5017375e+29 -5.5153626e+29 -5.5162406e+29 -5.5009231e+29 -5.5001096e+29 -5.5072615e+29 -5.5081503e+29 -5.5146997e+29 -5.5149267e+29 -5.5067986e+29 -5.4997431e+29 -5.4997489e+29 -5.5069453e+29 -5.5230101e+29 -5.53131e+29 -5.5232774e+29 -5.5314922e+29 -5.5246647e+29 -5.5327744e+29 -5.5237774e+29 -5.5319615e+29 -5.4837127e+29 -5.478714e+29 -5.4741657e+29 -5.475326e+29 -5.4797463e+29 -5.4846098e+29 -5.4832887e+29 -5.4779549e+29 -5.4732512e+29 -5.4732311e+29 -5.4778427e+29 -5.4831036e+29 -5.4936009e+29 -5.4881919e+29 -5.488043e+29 -5.4935023e+29 -5.493918e+29 -5.4885051e+29 -5.4893301e+29 -5.4947041e+29 -5.4785812e+29 -5.4825503e+29 -5.4866469e+29 -5.4819293e+29 -5.4777562e+29 -5.4872673e+29 -5.4854306e+29 -5.4806844e+29 -5.4763826e+29 -5.4770289e+29 -5.4812854e+29 -5.4860915e+29 -5.4954308e+29 -5.4900809e+29 -5.4907816e+29 -5.4961444e+29 -5.4966734e+29 -5.4913172e+29 -5.4919805e+29 -5.4973124e+29 -5.5187884e+29 -5.5185696e+29 -5.5034857e+29 -5.5029045e+29 -5.510313e+29 -5.5107222e+29 -5.517184e+29 -5.5180679e+29 -5.5090081e+29 -5.5016574e+29 -5.5024048e+29 -5.5098135e+29 -5.5265199e+29 -5.5344629e+29 -5.5256339e+29 -5.5336879e+29 -5.5269692e+29 -5.5347881e+29 -5.5270017e+29 -5.5346338e+29 -5.601513e+29 -5.5920068e+29 -5.5924874e+29 -5.6009278e+29 -5.5733709e+29 -5.5733351e+29 -5.5822157e+29 -5.5820833e+29 -5.5732957e+29 -5.5735667e+29 -5.5826503e+29 -5.5822692e+29 -5.5916004e+29 -5.5918248e+29 -5.6006666e+29 -5.6003802e+29 -5.5559908e+29 -5.5561528e+29 -5.5646815e+29 -5.5644786e+29 -5.547906e+29 -5.540108e+29 -5.540079e+29 -5.547781e+29 -5.5404518e+29 -5.5480587e+29 -5.5485515e+29 -5.5410908e+29 -5.5561761e+29 -5.5646182e+29 -5.5648157e+29 -5.5564753e+29 -5.5418242e+29 -5.5491377e+29 -5.549529e+29 -5.5423946e+29 -5.5645569e+29 -5.5569158e+29 -5.5563464e+29 -5.5638586e+29 -5.5569282e+29 -5.5650648e+29 -5.5649924e+29 -5.5570665e+29 -5.5495539e+29 -5.5425711e+29 -5.542278e+29 -5.5491162e+29 -5.5731567e+29 -5.5734716e+29 -5.5821035e+29 -5.5816567e+29 -5.590949e+29 -5.5914782e+29 -5.6001225e+29 -5.5995148e+29 -5.589272e+29 -5.5901778e+29 -5.5986824e+29 -5.5977169e+29 -5.5717993e+29 -5.5725238e+29 -5.5809306e+29 -5.5801146e+29 -5.6249783e+29 -5.6122862e+29 -5.6103463e+29 -5.6227534e+29 -5.6223079e+29 -5.6100044e+29 -5.6112811e+29 -5.6237907e+29 -5.6231876e+29 -5.6106907e+29 -5.6096128e+29 -5.6217831e+29 -5.620972e+29 -5.6089205e+29 -5.6070019e+29 -5.6188575e+29 -5.6080213e+29 -5.6199506e+29 -5.4697524e+29 -5.475449e+29 -5.4803001e+29 -5.4765289e+29 -5.4710885e+29 -5.4794921e+29 -5.4823194e+29 -5.478737e+29 -5.4730542e+29 -5.4723148e+29 -5.4778692e+29 -5.4814833e+29 -5.4912744e+29 -5.4863012e+29 -5.4855123e+29 -5.4905589e+29 -5.4896046e+29 -5.4844607e+29 -5.4838136e+29 -5.4890213e+29 -5.5120699e+29 -5.5120875e+29 -5.5043085e+29 -5.497161e+29 -5.4966275e+29 -5.5040193e+29 -5.5206076e+29 -5.5298352e+29 -5.5203769e+29 -5.5294578e+29 -5.5116739e+29 -5.5203762e+29 -5.5297361e+29 -5.5200585e+29 -5.5294463e+29 -5.5112893e+29 -5.4952975e+29 -5.4957971e+29 -5.5033934e+29 -5.5029409e+29 -5.5099833e+29 -5.5095103e+29 -5.5170511e+29 -5.5257781e+29 -5.5176115e+29 -5.5263418e+29 -5.50268e+29 -5.4965064e+29 -5.4967085e+29 -5.5030141e+29 -5.5108389e+29 -5.5117191e+29 -5.4974556e+29 -5.4971453e+29 -5.5035855e+29 -5.5042601e+29 -5.5197627e+29 -5.5286503e+29 -5.5186732e+29 -5.5274757e+29 -5.4913744e+29 -5.4870018e+29 -5.486987e+29 -5.4914211e+29 -5.4831186e+29 -5.4792332e+29 -5.4737514e+29 -5.4737078e+29 -5.4794137e+29 -5.4831203e+29 -5.4830948e+29 -5.4794438e+29 -5.4736658e+29 -5.4734254e+29 -5.4792101e+29 -5.4828791e+29 -5.4917167e+29 -5.4870135e+29 -5.486862e+29 -5.4917423e+29 -5.5311757e+29 -5.537399e+29 -5.5433775e+29 -5.5417436e+29 -5.5294182e+29 -5.5356925e+29 -5.5544049e+29 -5.5471227e+29 -5.5463903e+29 -5.5538205e+29 -5.5500467e+29 -5.5572966e+29 -5.5556421e+29 -5.5483814e+29 -5.5403226e+29 -5.5276091e+29 -5.5340987e+29 -5.5262836e+29 -5.5329429e+29 -5.5393396e+29 -5.5545192e+29 -5.5555627e+29 -5.5628628e+29 -5.5617692e+29 -5.5487167e+29 -5.5358982e+29 -5.5424404e+29 -5.5352641e+29 -5.5415757e+29 -5.5477053e+29 -5.5342936e+29 -5.5404777e+29 -5.5464913e+29 -5.5450171e+29 -5.5329333e+29 -5.5390646e+29 -5.5532095e+29 -5.560481e+29 -5.5588827e+29 -5.5516182e+29 -5.5666285e+29 -5.568232e+29 -5.5763843e+29 -5.5747905e+29 -5.5695394e+29 -5.5706881e+29 -5.578933e+29 -5.5777233e+29 -5.5840789e+29 -5.5939391e+29 -5.5856678e+29 -5.5923529e+29 -5.588287e+29 -5.596607e+29 -5.5953348e+29 -5.5870411e+29 -5.5633772e+29 -5.5650425e+29 -5.5731961e+29 -5.5715657e+29 -5.590749e+29 -5.5808919e+29 -5.5824712e+29 -5.5892085e+29 -5.5792748e+29 -5.5797655e+29 -5.5880975e+29 -5.5875724e+29 -5.5617139e+29 -5.562161e+29 -5.5703925e+29 -5.5699406e+29 -5.5101331e+29 -5.5114432e+29 -5.4971412e+29 -5.498246e+29 -5.5044852e+29 -5.5033172e+29 -5.5151036e+29 -5.5134268e+29 -5.508069e+29 -5.5016847e+29 -5.5000859e+29 -5.5064518e+29 -5.5209772e+29 -5.5227208e+29 -5.5190294e+29 -5.5176541e+29 -5.5178915e+29 -5.516809e+29 -5.50318e+29 -5.5040352e+29 -5.5105641e+29 -5.5096828e+29 -5.5187017e+29 -5.5185753e+29 -5.5110577e+29 -5.5041478e+29 -5.504446e+29 -5.5111649e+29 -5.5268771e+29 -5.5265296e+29 -5.5245092e+29 -5.5257338e+29 -5.4899122e+29 -5.4865563e+29 -5.4811996e+29 -5.4801913e+29 -5.4856569e+29 -5.4891099e+29 -5.4893291e+29 -5.4857986e+29 -5.480551e+29 -5.4813489e+29 -5.4866355e+29 -5.4900264e+29 -5.4983453e+29 -5.4933763e+29 -5.4939494e+29 -5.498788e+29 -5.498516e+29 -5.4937532e+29 -5.4929409e+29 -5.497672e+29 -5.4878096e+29 -5.4843187e+29 -5.4788085e+29 -5.477322e+29 -5.4828518e+29 -5.4864424e+29 -5.496271e+29 -5.4916027e+29 -5.4902148e+29 -5.4947581e+29 -5.4931012e+29 -5.4888059e+29 -5.4877228e+29 -5.4920013e+29 -5.4850903e+29 -5.4814978e+29 -5.4759746e+29 -5.4747087e+29 -5.4802924e+29 -5.483973e+29 -5.5639793e+29 -5.5631935e+29 -5.5713343e+29 -5.5720348e+29 -5.5622947e+29 -5.561693e+29 -5.5699353e+29 -5.5704786e+29 -5.5811926e+29 -5.5886406e+29 -5.5805195e+29 -5.5892846e+29 -5.5792613e+29 -5.5875599e+29 -5.5879678e+29 -5.5797469e+29 -5.5467244e+29 -5.5461847e+29 -5.5537236e+29 -5.5543099e+29 -5.5390559e+29 -5.5325393e+29 -5.5329934e+29 -5.5395205e+29 -5.5340081e+29 -5.540475e+29 -5.5414806e+29 -5.5350925e+29 -5.5476414e+29 -5.5552484e+29 -5.5561053e+29 -5.5485128e+29 -5.5361119e+29 -5.5363342e+29 -5.5427703e+29 -5.5425121e+29 -5.5422985e+29 -5.5359223e+29 -5.5363364e+29 -5.5427485e+29 -5.5498701e+29 -5.5574005e+29 -5.5570004e+29 -5.5495562e+29 -5.5493016e+29 -5.549829e+29 -5.5573674e+29 -5.5568631e+29 -5.5652422e+29 -5.5647559e+29 -5.5728604e+29 -5.5733428e+29 -5.58999e+29 -5.5824211e+29 -5.5819691e+29 -5.5903835e+29 -5.5818664e+29 -5.5823963e+29 -5.5903185e+29 -5.5897855e+29 -5.5647657e+29 -5.5652554e+29 -5.573339e+29 -5.5728161e+29 -5.3716967e+29 -5.3692782e+29 -5.3859332e+29 -5.4002868e+29 -5.3832843e+29 -5.397383e+29 -5.3682244e+29 -5.3818749e+29 -5.3954716e+29 -5.3805319e+29 -5.3935443e+29 -5.367104e+29 -5.3747767e+29 -5.3777935e+29 -5.3821912e+29 -5.3800379e+29 -5.3972485e+29 -5.4121794e+29 -5.3948756e+29 -5.4096462e+29 -5.3923594e+29 -5.4069204e+29 -5.3891497e+29 -5.4035607e+29 -5.2585754e+29 -5.262232e+29 -5.2546894e+29 -5.2525024e+29 -5.3228907e+29 -5.323926e+29 -5.3214741e+29 -5.3294812e+29 -5.2903243e+29 -5.3114811e+29 -5.3234129e+29 -5.3312239e+29 -5.2927786e+29 -5.3137663e+29 -5.2764603e+29 -5.2737219e+29 -5.3172065e+29 -5.3254693e+29 -5.2856285e+29 -5.3070882e+29 -5.31927e+29 -5.3274194e+29 -5.2879748e+29 -5.3092407e+29 -5.271028e+29 -5.268601e+29 -5.4081794e+29 -5.4096775e+29 -5.3940556e+29 -5.392811e+29 -5.377756e+29 -5.3789907e+29 -5.3745182e+29 -5.3761194e+29 -5.3912665e+29 -5.4067049e+29 -5.3896813e+29 -5.4055007e+29 -5.3520908e+29 -5.3589666e+29 -5.3501334e+29 -5.3571633e+29 -5.3674851e+29 -5.3657568e+29 -5.3381409e+29 -5.3400755e+29 -5.3419563e+29 -5.3434794e+29 -5.35383e+29 -5.3607299e+29 -5.3551664e+29 -5.3619833e+29 -5.3704707e+29 -5.3692541e+29 -5.3721925e+29 -5.3868652e+29 -5.4020781e+29 -5.3883471e+29 -5.4042262e+29 -5.3733637e+29 -5.3712573e+29 -5.3857581e+29 -5.4008883e+29 -5.4005978e+29 -5.3857452e+29 -5.3714489e+29 -5.3355621e+29 -5.3364806e+29 -5.3475076e+29 -5.3547595e+29 -5.3483709e+29 -5.3556818e+29 -5.3646275e+29 -5.3636419e+29 -5.3214226e+29 -5.3295748e+29 -5.2894376e+29 -5.3125689e+29 -5.324349e+29 -5.3321555e+29 -5.2932283e+29 -5.3160467e+29 -5.326803e+29 -5.3342635e+29 -5.2967239e+29 -5.3190064e+29 -5.3277116e+29 -5.3351172e+29 -5.2977293e+29 -5.3199656e+29 -5.3187955e+29 -5.3271087e+29 -5.2865511e+29 -5.3098432e+29 -5.3165989e+29 -5.3249919e+29 -5.2842514e+29 -5.3075281e+29 -5.3149479e+29 -5.3233829e+29 -5.2825722e+29 -5.3058858e+29 -5.3135641e+29 -5.3220247e+29 -5.281322e+29 -5.3044978e+29 -5.3124918e+29 -5.3208329e+29 -5.2807628e+29 -5.3037533e+29 -5.3112131e+29 -5.319565e+29 -5.2794128e+29 -5.3023898e+29 -5.3100258e+29 -5.3185029e+29 -5.2778177e+29 -5.3010037e+29 -5.3092421e+29 -5.3178392e+29 -5.2767163e+29 -5.2999988e+29 -5.3091932e+29 -5.3177539e+29 -5.2768111e+29 -5.3000462e+29 -5.3096064e+29 -5.3180952e+29 -5.2776224e+29 -5.3005874e+29 -5.310464e+29 -5.3188067e+29 -5.2789343e+29 -5.3016602e+29 -5.3113739e+29 -5.3194972e+29 -5.2803108e+29 -5.3027732e+29 -5.3117271e+29 -5.2817392e+29 -5.3036926e+29 -5.3120568e+29 -5.2820803e+29 -5.3040499e+29 -5.3094127e+29 -5.2781593e+29 -5.3006686e+29 -5.3106163e+29 -5.2799323e+29 -5.3022482e+29 -5.3087194e+29 -5.2774247e+29 -5.2999632e+29 -5.3084776e+29 -5.2773549e+29 -5.2997389e+29 -5.3087487e+29 -5.277994e+29 -5.3001408e+29 -5.3091691e+29 -5.2785736e+29 -5.3005321e+29 -5.3107984e+29 -5.280832e+29 -5.302409e+29 -5.3115039e+29 -5.2816028e+29 -5.3030281e+29 -5.3098402e+29 -5.2795174e+29 -5.3013943e+29 -5.3102914e+29 -5.2800909e+29 -5.3018661e+29 -5.3127361e+29 -5.2831639e+29 -5.3043987e+29 -5.3142392e+29 -5.2850655e+29 -5.3060562e+29 -5.3160132e+29 -5.2873602e+29 -5.3080882e+29 -5.3178175e+29 -5.290248e+29 -5.3105024e+29 -5.3438062e+29 -5.341464e+29 -5.3463748e+29 -5.3456841e+29 -5.3821988e+29 -5.4121754e+29 -5.4113967e+29 -5.3963815e+29 -5.3957484e+29 -5.3816447e+29 -5.410334e+29 -5.4090062e+29 -5.3804517e+29 -5.3946064e+29 -5.3932304e+29 -5.3790189e+29 -5.3558345e+29 -5.3654673e+29 -5.3717307e+29 -5.3637392e+29 -5.3701913e+29 -5.3537595e+29 -5.3580157e+29 -5.3673001e+29 -5.3574839e+29 -5.3668617e+29 -5.3729118e+29 -5.3733083e+29 -5.3356357e+29 -5.3342551e+29 -5.3371959e+29 -5.3391715e+29 -5.3776571e+29 -5.39199e+29 -5.4078678e+29 -5.3904527e+29 -5.4061604e+29 -5.3760928e+29 -5.374535e+29 -5.4033767e+29 -5.4047917e+29 -5.372894e+29 -5.3873653e+29 -5.3889784e+29 -5.3516643e+29 -5.3619395e+29 -5.3498394e+29 -5.3602536e+29 -5.3670427e+29 -5.3686281e+29 -5.3482949e+29 -5.3587122e+29 -5.3468772e+29 -5.3571742e+29 -5.3638625e+29 -5.3654606e+29 -5.3696522e+29 -5.3695312e+29 -5.3840276e+29 -5.3998326e+29 -5.3841843e+29 -5.400157e+29 -5.3994098e+29 -5.3991012e+29 -5.3833723e+29 -5.3837529e+29 -5.3693822e+29 -5.3690763e+29 -5.3309269e+29 -5.3313359e+29 -5.330144e+29 -5.330395e+29 -5.3431218e+29 -5.3535567e+29 -5.3429498e+29 -5.3535138e+29 -5.3603722e+29 -5.3604112e+29 -5.3434333e+29 -5.3536652e+29 -5.3435521e+29 -5.3535234e+29 -5.3600582e+29 -5.3602956e+29 -5.3712176e+29 -5.4017434e+29 -5.4003881e+29 -5.3845549e+29 -5.3856778e+29 -5.3701829e+29 -5.4001189e+29 -5.4001372e+29 -5.369881e+29 -5.3842862e+29 -5.3842268e+29 -5.3697539e+29 -5.3444093e+29 -5.3544687e+29 -5.3455331e+29 -5.3555183e+29 -5.3611472e+29 -5.3621658e+29 -5.3330148e+29 -5.331815e+29 -5.3308593e+29 -5.3302547e+29 -5.3436025e+29 -5.354e+29 -5.3430886e+29 -5.3536436e+29 -5.3605743e+29 -5.3607779e+29 -5.3838663e+29 -5.3849656e+29 -5.3871282e+29 -5.3860075e+29 -5.4012751e+29 -5.4167255e+29 -5.4025171e+29 -5.4181429e+29 -5.4001324e+29 -5.4154454e+29 -5.3989929e+29 -5.4140412e+29 -5.3936604e+29 -5.3929903e+29 -5.4084137e+29 -5.4230312e+29 -5.4090904e+29 -5.4237135e+29 -5.3659138e+29 -5.3785418e+29 -5.3794437e+29 -5.3669386e+29 -5.3674059e+29 -5.394135e+29 -5.3938011e+29 -5.3798597e+29 -5.3795443e+29 -5.3671978e+29 -5.4095715e+29 -5.4241882e+29 -5.4092166e+29 -5.4238378e+29 -5.3931566e+29 -5.3917624e+29 -5.390363e+29 -5.3886413e+29 -5.4039925e+29 -5.419651e+29 -5.4057584e+29 -5.4214452e+29 -5.4087729e+29 -5.4244544e+29 -5.407254e+29 -5.4229628e+29 -5.3657872e+29 -5.3652087e+29 -5.3779615e+29 -5.3925757e+29 -5.3786811e+29 -5.3934382e+29 -5.4092746e+29 -5.4242655e+29 -5.4083207e+29 -5.4233352e+29 -5.3919462e+29 -5.4075337e+29 -5.4224972e+29 -5.4075754e+29 -5.4221193e+29 -5.3921432e+29 -5.3776977e+29 -5.3775363e+29 -5.364897e+29 -5.3650153e+29 -5.4312069e+29 -5.4315815e+29 -5.4390892e+29 -5.4386523e+29 -5.4323782e+29 -5.4332283e+29 -5.4406993e+29 -5.4398854e+29 -5.4465983e+29 -5.4474178e+29 -5.4541611e+29 -5.4533003e+29 -5.4453336e+29 -5.4458109e+29 -5.4525273e+29 -5.4520211e+29 -5.432373e+29 -5.4317698e+29 -5.439067e+29 -5.439588e+29 -5.4327247e+29 -5.4398639e+29 -5.4395103e+29 -5.4324261e+29 -5.4456934e+29 -5.4462085e+29 -5.4525232e+29 -5.4519266e+29 -5.4460499e+29 -5.4456129e+29 -5.4521715e+29 -5.4524831e+29 -5.459811e+29 -5.4597267e+29 -5.4666499e+29 -5.4666907e+29 -5.445756e+29 -5.4439716e+29 -5.4531361e+29 -5.4546767e+29 -5.4427384e+29 -5.4426226e+29 -5.4519331e+29 -5.4519771e+29 -5.4621753e+29 -5.4608184e+29 -5.4676703e+29 -5.4689066e+29 -5.4201462e+29 -5.4205295e+29 -5.4240402e+29 -5.4218711e+29 -5.4595485e+29 -5.4585306e+29 -5.4500049e+29 -5.4510777e+29 -5.4473631e+29 -5.4561191e+29 -5.4573049e+29 -5.4486897e+29 -5.464326e+29 -5.4634619e+29 -5.4700616e+29 -5.4707644e+29 -5.4653202e+29 -5.4716164e+29 -5.4725916e+29 -5.4663152e+29 -5.4255964e+29 -5.426871e+29 -5.4296875e+29 -5.4283613e+29 -5.4172408e+29 -5.431232e+29 -5.4169121e+29 -5.430814e+29 -5.415945e+29 -5.4297482e+29 -5.4163982e+29 -5.4303085e+29 -5.4188064e+29 -5.432842e+29 -5.4174234e+29 -5.4315544e+29 -5.4171808e+29 -5.4312274e+29 -5.4171606e+29 -5.4312802e+29 -5.4434114e+29 -5.4435546e+29 -5.4521968e+29 -5.4520002e+29 -5.4532484e+29 -5.4449379e+29 -5.4439145e+29 -5.4525069e+29 -5.4671781e+29 -5.4603722e+29 -5.4599648e+29 -5.4669092e+29 -5.4595177e+29 -5.4597389e+29 -5.466775e+29 -5.4665361e+29 -5.4428997e+29 -5.4433103e+29 -5.4518177e+29 -5.4513724e+29 -5.4568978e+29 -5.4579629e+29 -5.4645599e+29 -5.4632721e+29 -5.45876e+29 -5.4592673e+29 -5.4662326e+29 -5.4656104e+29 -5.4423176e+29 -5.45072e+29 -5.4498988e+29 -5.4416171e+29 -5.425845e+29 -5.439655e+29 -5.4271595e+29 -5.4409397e+29 -5.42891e+29 -5.442525e+29 -5.4281864e+29 -5.4418759e+29 -5.4515273e+29 -5.4526674e+29 -5.4608579e+29 -5.4597337e+29 -5.4615684e+29 -5.4538202e+29 -5.4534561e+29 -5.4614947e+29 -5.4684454e+29 -5.4680731e+29 -5.4749337e+29 -5.4743118e+29 -5.4668889e+29 -5.4679889e+29 -5.4735884e+29 -5.4746527e+29 -5.4461852e+29 -5.4342943e+29 -5.4475003e+29 -5.4356607e+29 -5.4555643e+29 -5.4542747e+29 -5.4488103e+29 -5.436942e+29 -5.4502875e+29 -5.438549e+29 -5.4583845e+29 -5.4568997e+29 -5.4626345e+29 -5.4613514e+29 -5.4680711e+29 -5.4693347e+29 -5.4639862e+29 -5.465484e+29 -5.4706887e+29 -5.4721876e+29 -5.423092e+29 -5.4247199e+29 -5.4217953e+29 -5.4204116e+29 -5.36696e+29 -5.3948029e+29 -5.3955494e+29 -5.3803081e+29 -5.3798917e+29 -5.3666927e+29 -5.4119455e+29 -5.4277216e+29 -5.4110585e+29 -5.4266501e+29 -5.3946857e+29 -5.4107514e+29 -5.4260309e+29 -5.4100724e+29 -5.4248701e+29 -5.3942156e+29 -5.3667338e+29 -5.3798446e+29 -5.3794937e+29 -5.3664954e+29 -5.369877e+29 -5.3692463e+29 -5.3828311e+29 -5.3983872e+29 -5.3836214e+29 -5.3993786e+29 -5.4163776e+29 -5.4326253e+29 -5.4152381e+29 -5.4313517e+29 -5.3971511e+29 -5.3962154e+29 -5.4127326e+29 -5.4286517e+29 -5.4138334e+29 -5.4299129e+29 -5.3809574e+29 -5.3818653e+29 -5.3684307e+29 -5.3675421e+29 -5.4498173e+29 -5.4421427e+29 -5.4408887e+29 -5.4486534e+29 -5.4394882e+29 -5.43821e+29 -5.446019e+29 -5.4473089e+29 -5.4529684e+29 -5.454257e+29 -5.4610914e+29 -5.4598376e+29 -5.4563688e+29 -5.4554778e+29 -5.4621453e+29 -5.4628247e+29 -5.4371506e+29 -5.4360783e+29 -5.4437991e+29 -5.444907e+29 -5.4340003e+29 -5.435141e+29 -5.4427322e+29 -5.441514e+29 -5.4483011e+29 -5.4495499e+29 -5.4563637e+29 -5.4551119e+29 -5.4506836e+29 -5.4518197e+29 -5.4586818e+29 -5.4575226e+29 -5.3250359e+29 -5.3348677e+29 -5.3357569e+29 -5.3263533e+29 -5.3324024e+29 -5.3222155e+29 -5.3235477e+29 -5.3336306e+29 -5.344488e+29 -5.3538667e+29 -5.343075e+29 -5.3524396e+29 -5.3454775e+29 -5.3546423e+29 -5.3458204e+29 -5.3546382e+29 -5.3422903e+29 -5.3511524e+29 -5.3423575e+29 -5.3517087e+29 -5.3422943e+29 -5.3519656e+29 -5.342274e+29 -5.3522718e+29 -5.3199997e+29 -5.3196287e+29 -5.3305029e+29 -5.3307294e+29 -5.3204697e+29 -5.33106e+29 -5.3315022e+29 -5.3211302e+29 -5.3203106e+29 -5.3313221e+29 -5.3303273e+29 -5.3192993e+29 -5.332445e+29 -5.3215573e+29 -5.3212104e+29 -5.3321356e+29 -5.3442184e+29 -5.3549528e+29 -5.3443374e+29 -5.3551879e+29 -5.3434339e+29 -5.3541757e+29 -5.3422258e+29 -5.3530466e+29 -5.319105e+29 -5.3187339e+29 -5.3298974e+29 -5.3301651e+29 -5.3297432e+29 -5.3186813e+29 -5.3184833e+29 -5.3296534e+29 -5.3526298e+29 -5.3418679e+29 -5.3416496e+29 -5.352481e+29 -5.3421027e+29 -5.3528106e+29 -5.3422369e+29 -5.3527405e+29 -5.5250292e+29 -5.5263938e+29 -5.5291402e+29 -5.5278927e+29 -5.5304463e+29 -5.5306015e+29 -5.5306073e+29 -5.5301249e+29 -5.473347e+29 -5.4659991e+29 -5.4648341e+29 -5.4722032e+29 -5.4710263e+29 -5.4636664e+29 -5.4624334e+29 -5.4698625e+29 -5.4763686e+29 -5.469653e+29 -5.4691939e+29 -5.4761164e+29 -5.4754372e+29 -5.4683218e+29 -5.4671499e+29 -5.4744514e+29 -5.5110918e+29 -5.5114973e+29 -5.5111641e+29 -5.511411e+29 -5.5204365e+29 -5.5201999e+29 -5.5205469e+29 -5.5201364e+29 -5.5100426e+29 -5.5088591e+29 -5.519098e+29 -5.5178672e+29 -5.5072902e+29 -5.5163137e+29 -5.5149619e+29 -5.5059958e+29 -5.4688087e+29 -5.4614219e+29 -5.4605247e+29 -5.4678958e+29 -5.4671222e+29 -5.4597616e+29 -5.4592345e+29 -5.4665799e+29 -5.4586027e+29 -5.46516e+29 -5.4659133e+29 -5.4592758e+29 -5.4663768e+29 -5.459234e+29 -5.4593824e+29 -5.4662565e+29 -5.5028147e+29 -5.5020393e+29 -5.5110071e+29 -5.5210366e+29 -5.511891e+29 -5.5220903e+29 -5.5007569e+29 -5.5096136e+29 -5.5194973e+29 -5.5076884e+29 -5.5174225e+29 -5.4989901e+29 -5.5044601e+29 -5.504922e+29 -5.5139317e+29 -5.5241804e+29 -5.5134936e+29 -5.5237535e+29 -5.5040853e+29 -5.503609e+29 -5.5127062e+29 -5.5229139e+29 -5.5131833e+29 -5.5234399e+29 -5.5155356e+29 -5.516431e+29 -5.5011885e+29 -5.5003686e+29 -5.5075406e+29 -5.5084441e+29 -5.5148485e+29 -5.5151129e+29 -5.5070744e+29 -5.4999989e+29 -5.5000156e+29 -5.5072361e+29 -5.5233682e+29 -5.5333798e+29 -5.5236597e+29 -5.53356e+29 -5.5250568e+29 -5.5348452e+29 -5.5241623e+29 -5.5340419e+29 -5.4848452e+29 -5.4807977e+29 -5.4749187e+29 -5.4760889e+29 -5.4818506e+29 -5.4857531e+29 -5.484433e+29 -5.480054e+29 -5.4740042e+29 -5.4739776e+29 -5.4799232e+29 -5.4842578e+29 -5.4940134e+29 -5.488832e+29 -5.4886954e+29 -5.4939213e+29 -5.4943311e+29 -5.4891509e+29 -5.4899779e+29 -5.4951201e+29 -5.4793354e+29 -5.4845208e+29 -5.4877596e+29 -5.4839518e+29 -5.4785287e+29 -5.4883921e+29 -5.4865645e+29 -5.4827752e+29 -5.4771683e+29 -5.4778174e+29 -5.4833683e+29 -5.4872318e+29 -5.4958519e+29 -5.4907324e+29 -5.4914305e+29 -5.4965594e+29 -5.4970815e+29 -5.4919546e+29 -5.492617e+29 -5.4977178e+29 -5.5189641e+29 -5.5187526e+29 -5.5037459e+29 -5.5031624e+29 -5.5106064e+29 -5.5110154e+29 -5.5173529e+29 -5.5182526e+29 -5.509307e+29 -5.501923e+29 -5.502672e+29 -5.5101119e+29 -5.5269013e+29 -5.5364641e+29 -5.5260081e+29 -5.5357112e+29 -5.527349e+29 -5.5367626e+29 -5.5273638e+29 -5.5365597e+29 -5.6014801e+29 -5.5921355e+29 -5.5926015e+29 -5.600909e+29 -5.5734112e+29 -5.5733702e+29 -5.582161e+29 -5.582039e+29 -5.5733237e+29 -5.5735868e+29 -5.582583e+29 -5.5822136e+29 -5.5917402e+29 -5.5919573e+29 -5.6006468e+29 -5.6003663e+29 -5.5562329e+29 -5.5563893e+29 -5.5648008e+29 -5.5645955e+29 -5.5483723e+29 -5.5410472e+29 -5.5410204e+29 -5.5482557e+29 -5.5413968e+29 -5.5485417e+29 -5.5490292e+29 -5.5420274e+29 -5.5564267e+29 -5.5647432e+29 -5.564938e+29 -5.5567182e+29 -5.5427422e+29 -5.5496061e+29 -5.5499961e+29 -5.5433038e+29 -5.5646853e+29 -5.557154e+29 -5.5565842e+29 -5.5639799e+29 -5.5571685e+29 -5.5651842e+29 -5.5651103e+29 -5.5573013e+29 -5.5500175e+29 -5.5434697e+29 -5.5431553e+29 -5.549569e+29 -5.5731944e+29 -5.5735045e+29 -5.5820464e+29 -5.5816011e+29 -5.5910837e+29 -5.5916093e+29 -5.6001021e+29 -5.5994982e+29 -5.5894091e+29 -5.5903143e+29 -5.598669e+29 -5.5977046e+29 -5.5718354e+29 -5.5725641e+29 -5.5808794e+29 -5.5800627e+29 -5.4701699e+29 -5.4765601e+29 -5.4776064e+29 -5.4715283e+29 -5.4798579e+29 -5.4735196e+29 -5.4727816e+29 -5.479002e+29 -5.5122372e+29 -5.5122706e+29 -5.5209631e+29 -5.5308996e+29 -5.5207143e+29 -5.5304993e+29 -5.5118584e+29 -5.5207415e+29 -5.5308245e+29 -5.5204191e+29 -5.5305397e+29 -5.5114659e+29 -5.5101655e+29 -5.509678e+29 -5.5173733e+29 -5.5268243e+29 -5.5179427e+29 -5.5273835e+29 -5.511005e+29 -5.5119023e+29 -5.5201016e+29 -5.5296853e+29 -5.5189984e+29 -5.5285028e+29 -5.480327e+29 -5.4741922e+29 -5.4741546e+29 -5.4805229e+29 -5.4805498e+29 -5.4741215e+29 -5.4738856e+29 -5.4803576e+29 -5.5321661e+29 -5.5304177e+29 -5.5286316e+29 -5.5273206e+29 -5.5369122e+29 -5.5362639e+29 -5.5352849e+29 -5.5339211e+29 -5.5103208e+29 -5.5116261e+29 -5.5152719e+29 -5.5136207e+29 -5.5213074e+29 -5.5230382e+29 -5.5193589e+29 -5.517984e+29 -5.5180593e+29 -5.5169987e+29 -5.5188421e+29 -5.5187457e+29 -5.5271927e+29 -5.5268554e+29 -5.5248391e+29 -5.5260571e+29 -5.4876181e+29 -5.4816437e+29 -5.4806397e+29 -5.486766e+29 -5.4867989e+29 -5.4809522e+29 -5.4817789e+29 -5.4876936e+29 -5.4854189e+29 -5.479261e+29 -5.4777842e+29 -5.4839877e+29 -5.4826021e+29 -5.4764386e+29 -5.4751678e+29 -5.4814128e+29 -5.3262365e+29 -5.3272005e+29 -5.3248277e+29 -5.3327456e+29 -5.2933184e+29 -5.3160773e+29 -5.3267318e+29 -5.334428e+29 -5.2957256e+29 -5.3182827e+29 -5.3206558e+29 -5.3287877e+29 -5.2887699e+29 -5.3118119e+29 -5.3226743e+29 -5.3307291e+29 -5.291081e+29 -5.3139051e+29 -5.4105444e+29 -5.4118296e+29 -5.3960945e+29 -5.3948984e+29 -5.380724e+29 -5.3819034e+29 -5.3773236e+29 -5.3789944e+29 -5.3932449e+29 -5.4090389e+29 -5.3915784e+29 -5.4074854e+29 -5.3545142e+29 -5.363861e+29 -5.3524855e+29 -5.3619762e+29 -5.3699841e+29 -5.3682313e+29 -5.3405211e+29 -5.3425126e+29 -5.3443654e+29 -5.3458114e+29 -5.3562634e+29 -5.3657308e+29 -5.3575438e+29 -5.3669181e+29 -5.3729699e+29 -5.37177e+29 -5.374955e+29 -5.3887364e+29 -5.404089e+29 -5.3901797e+29 -5.4059272e+29 -5.3760938e+29 -5.3740297e+29 -5.3875525e+29 -5.4028327e+29 -5.4024784e+29 -5.3875357e+29 -5.3741812e+29 -5.3378157e+29 -5.33867e+29 -5.3497458e+29 -5.3595817e+29 -5.3505646e+29 -5.3604604e+29 -5.3670349e+29 -5.3660706e+29 -5.3313105e+29 -5.3339173e+29 -5.3360375e+29 -5.3368332e+29 -5.3288507e+29 -5.3267655e+29 -5.3251555e+29 -5.3237628e+29 -5.3225823e+29 -5.3213607e+29 -5.320318e+29 -5.3196419e+29 -5.3195577e+29 -5.3198922e+29 -5.320584e+29 -5.3212184e+29 -5.3449019e+29 -5.342542e+29 -5.3474148e+29 -5.3467777e+29 -5.3836123e+29 -5.4130761e+29 -5.4123339e+29 -5.3973053e+29 -5.396705e+29 -5.3830923e+29 -5.4113166e+29 -5.4099177e+29 -5.3819072e+29 -5.3955695e+29 -5.3941849e+29 -5.3804565e+29 -5.3570425e+29 -5.3677813e+29 -5.3660588e+29 -5.3549695e+29 -5.3591594e+29 -5.3695035e+29 -5.3586706e+29 -5.3691231e+29 -5.3367403e+29 -5.3353358e+29 -5.3383007e+29 -5.3402509e+29 -5.3791225e+29 -5.3929577e+29 -5.4088174e+29 -5.3914688e+29 -5.4071851e+29 -5.3776067e+29 -5.3760575e+29 -5.4043908e+29 -5.4058865e+29 -5.3743819e+29 -5.3883575e+29 -5.3900025e+29 -5.352883e+29 -5.3642974e+29 -5.3510843e+29 -5.3626601e+29 -5.3495417e+29 -5.361115e+29 -5.3481044e+29 -5.3595385e+29 -5.3711625e+29 -5.3710689e+29 -5.3850688e+29 -5.4009652e+29 -5.3851955e+29 -5.4011897e+29 -5.4004782e+29 -5.4000401e+29 -5.3843646e+29 -5.3847996e+29 -5.3709221e+29 -5.3705616e+29 -5.3320416e+29 -5.332411e+29 -5.3312688e+29 -5.3315223e+29 -5.3443801e+29 -5.3559749e+29 -5.3442084e+29 -5.3559309e+29 -5.3446767e+29 -5.3560509e+29 -5.3447564e+29 -5.3558462e+29 -5.3726699e+29 -5.4026797e+29 -5.401338e+29 -5.3855105e+29 -5.3866313e+29 -5.37163e+29 -5.4011591e+29 -5.4011006e+29 -5.3713778e+29 -5.3852886e+29 -5.3852331e+29 -5.3712596e+29 -5.3456484e+29 -5.3568059e+29 -5.3467512e+29 -5.3578381e+29 -5.3340961e+29 -5.3329294e+29 -5.331989e+29 -5.3313791e+29 -5.3448599e+29 -5.356398e+29 -5.3443492e+29 -5.3560682e+29 -5.3940077e+29 -5.3932968e+29 -5.4090079e+29 -5.4246596e+29 -5.409712e+29 -5.4253831e+29 -5.3945096e+29 -5.3940999e+29 -5.4102173e+29 -5.4258717e+29 -5.40981e+29 -5.4254752e+29 -5.3929363e+29 -5.3937985e+29 -5.4099142e+29 -5.4259654e+29 -5.4089622e+29 -5.4250449e+29 -5.3922708e+29 -5.4081426e+29 -5.4241683e+29 -5.4081459e+29 -5.4237324e+29 -5.3924156e+29 -5.4606649e+29 -5.4605909e+29 -5.4672761e+29 -5.4673142e+29 -5.4479556e+29 -5.4363382e+29 -5.4462136e+29 -5.4343021e+29 -5.4544989e+29 -5.4560219e+29 -5.4450376e+29 -5.4329028e+29 -5.4449186e+29 -5.4325234e+29 -5.4533537e+29 -5.4533836e+29 -5.4630018e+29 -5.4616468e+29 -5.468291e+29 -5.469539e+29 -5.4186653e+29 -5.4190976e+29 -5.4224684e+29 -5.420423e+29 -5.4610096e+29 -5.46002e+29 -5.4523943e+29 -5.441047e+29 -5.4534164e+29 -5.4421923e+29 -5.4496445e+29 -5.4380954e+29 -5.4575474e+29 -5.4588335e+29 -5.4510951e+29 -5.439615e+29 -5.4652762e+29 -5.4643493e+29 -5.470737e+29 -5.4714642e+29 -5.4662633e+29 -5.4723096e+29 -5.4732774e+29 -5.4672455e+29 -5.4242338e+29 -5.425847e+29 -5.4285474e+29 -5.4273077e+29 -5.418489e+29 -5.4350805e+29 -5.4182426e+29 -5.4347568e+29 -5.4171069e+29 -5.4334654e+29 -5.4176632e+29 -5.4341713e+29 -5.4199873e+29 -5.4366169e+29 -5.4186082e+29 -5.4353691e+29 -5.4183679e+29 -5.4350202e+29 -5.4184042e+29 -5.4351416e+29 -5.4448962e+29 -5.4450592e+29 -5.4531376e+29 -5.4529279e+29 -5.4541802e+29 -5.4464069e+29 -5.4454134e+29 -5.4534427e+29 -5.4674975e+29 -5.4608623e+29 -5.4604679e+29 -5.4672341e+29 -5.460017e+29 -5.4602444e+29 -5.4671031e+29 -5.4668648e+29 -5.4444466e+29 -5.4448129e+29 -5.4527672e+29 -5.4523538e+29 -5.4573752e+29 -5.4584801e+29 -5.4648879e+29 -5.4635816e+29 -5.4592997e+29 -5.4597847e+29 -5.4665735e+29 -5.4659651e+29 -5.4438421e+29 -5.4516791e+29 -5.4508134e+29 -5.4430813e+29 -5.4269757e+29 -5.4433138e+29 -5.4283507e+29 -5.4446645e+29 -5.4300338e+29 -5.4461075e+29 -5.4293418e+29 -5.4455422e+29 -5.4529495e+29 -5.4541161e+29 -5.4617678e+29 -5.4606256e+29 -5.4624404e+29 -5.4552031e+29 -5.4548906e+29 -5.4623953e+29 -5.4689303e+29 -5.4685248e+29 -5.4752508e+29 -5.4745981e+29 -5.4673732e+29 -5.4684826e+29 -5.4739114e+29 -5.4749783e+29 -5.4476596e+29 -5.4381021e+29 -5.4489957e+29 -5.4395276e+29 -5.4565156e+29 -5.4552266e+29 -5.4502748e+29 -5.440725e+29 -5.4517081e+29 -5.4422364e+29 -5.4592829e+29 -5.4578306e+29 -5.4631649e+29 -5.4618792e+29 -5.4684192e+29 -5.4696869e+29 -5.4645008e+29 -5.4659771e+29 -5.4710325e+29 -5.4725159e+29 -5.4243199e+29 -5.4258855e+29 -5.4230905e+29 -5.4216531e+29 -5.3952059e+29 -5.3959139e+29 -5.4126011e+29 -5.4294901e+29 -5.4117339e+29 -5.4284439e+29 -5.3951254e+29 -5.4114494e+29 -5.4278055e+29 -5.4107184e+29 -5.4265731e+29 -5.3945917e+29 -5.3988039e+29 -5.3997566e+29 -5.4170636e+29 -5.4344545e+29 -5.4159477e+29 -5.4332057e+29 -5.3975494e+29 -5.3965606e+29 -5.413377e+29 -5.4304281e+29 -5.4145171e+29 -5.4317409e+29 -5.5156804e+29 -5.5165859e+29 -5.5149858e+29 -5.5152664e+29 -5.5236964e+29 -5.5344995e+29 -5.5239963e+29 -5.5346647e+29 -5.5253987e+29 -5.5359466e+29 -5.5245e+29 -5.5351513e+29 -5.4818241e+29 -5.475304e+29 -5.4764769e+29 -5.4828989e+29 -5.4811241e+29 -5.474397e+29 -5.4743652e+29 -5.4809914e+29 -5.4797239e+29 -5.4855341e+29 -5.4849455e+29 -5.4789173e+29 -5.4837966e+29 -5.4775638e+29 -5.4782147e+29 -5.4844085e+29 -5.5191094e+29 -5.5189001e+29 -5.5174976e+29 -5.518402e+29 -5.5272356e+29 -5.5375212e+29 -5.5263418e+29 -5.5367886e+29 -5.5276809e+29 -5.5378052e+29 -5.5276857e+29 -5.5375819e+29 -5.3280232e+29 -5.3289479e+29 -5.3344597e+29 -5.3360988e+29 -5.3305501e+29 -5.3324819e+29 -5.4114546e+29 -5.4126799e+29 -5.3970257e+29 -5.3958467e+29 -5.3821632e+29 -5.3833256e+29 -5.3786837e+29 -5.3803843e+29 -5.3941397e+29 -5.4099453e+29 -5.3924386e+29 -5.4082779e+29 -5.3556922e+29 -5.3660655e+29 -5.3536383e+29 -5.3641515e+29 -5.3415827e+29 -5.3435967e+29 -5.3454314e+29 -5.3468342e+29 -5.3574369e+29 -5.3679677e+29 -5.3586864e+29 -5.369136e+29 -5.3762898e+29 -5.3895803e+29 -5.4048692e+29 -5.391016e+29 -5.4066169e+29 -5.3774234e+29 -5.3754104e+29 -5.3883853e+29 -5.4035836e+29 -5.4032353e+29 -5.388354e+29 -5.3755202e+29 -5.338802e+29 -5.3396238e+29 -5.3508375e+29 -5.361749e+29 -5.3516344e+29 -5.3626124e+29 -5.4134239e+29 -5.4127016e+29 -5.4117092e+29 -5.4102855e+29 -5.4092033e+29 -5.4076053e+29 -5.4048063e+29 -5.406336e+29 -5.4014306e+29 -5.4016126e+29 -5.4009205e+29 -5.400423e+29 -5.403067e+29 -5.4017244e+29 -5.4015846e+29 -5.4014988e+29 -5.4610814e+29 -5.4610113e+29 -5.4675295e+29 -5.4675656e+29 -5.4492279e+29 -5.4397069e+29 -5.4475085e+29 -5.4377321e+29 -5.4552905e+29 -5.4568067e+29 -5.4463556e+29 -5.4363795e+29 -5.4462375e+29 -5.4360021e+29 -5.4541702e+29 -5.4541969e+29 -5.4633999e+29 -5.4620457e+29 -5.4685355e+29 -5.4697883e+29 -5.419632e+29 -5.4200796e+29 -5.4234071e+29 -5.4214082e+29 -5.4618678e+29 -5.4608923e+29 -5.4537615e+29 -5.4446276e+29 -5.454759e+29 -5.4457049e+29 -5.450964e+29 -5.4415799e+29 -5.458376e+29 -5.4597216e+29 -5.4524744e+29 -5.4432274e+29 -5.4657392e+29 -5.4647821e+29 -5.4710086e+29 -5.471746e+29 -5.4667212e+29 -5.4725882e+29 -5.4735544e+29 -5.4676954e+29 -5.4252727e+29 -5.4269863e+29 -5.4296261e+29 -5.4284314e+29 -5.4192142e+29 -5.436973e+29 -5.4189982e+29 -5.4366815e+29 -5.4177901e+29 -5.4353012e+29 -5.4183899e+29 -5.4360607e+29 -5.4206904e+29 -5.4384853e+29 -5.4193065e+29 -5.4372555e+29 -5.419069e+29 -5.4368966e+29 -5.4191265e+29 -5.437034e+29 -5.4276462e+29 -5.4451311e+29 -5.4290417e+29 -5.4464847e+29 -5.4306892e+29 -5.4478553e+29 -5.4300096e+29 -5.4473328e+29 -5.4399718e+29 -5.4414058e+29 -5.4425668e+29 -5.4440451e+29 -5.4250307e+29 -5.4265731e+29 -5.4238315e+29 -5.4223762e+29 -5.4118087e+29 -5.4130088e+29 -5.4102937e+29 -5.4085786e+29 -5.4051624e+29 -5.4068777e+29 -5.4038755e+29 -5.4035108e+29 -5.4413687e+29 -5.4394202e+29 -5.438113e+29 -5.4377392e+29 -5.420217e+29 -5.4206844e+29 -5.4239903e+29 -5.4220056e+29 -5.4463572e+29 -5.4474136e+29 -5.443291e+29 -5.4449806e+29 -5.4258969e+29 -5.4276476e+29 -5.4302619e+29 -5.4290842e+29 ) ; boundaryField { frontAndBack { type zeroGradient; } inlet { type freestreamPressure; freestreamValue nonuniform 0(); supersonic 0; value nonuniform 0(); } outlet { type freestreamPressure; freestreamValue nonuniform 0(); supersonic 0; value nonuniform 0(); } solidWall { type zeroGradient; } procBoundary9to1 { type processor; value nonuniform List<scalar> 63 ( -4.8494957e+29 -4.5479974e+29 -4.8309586e+29 -4.8309586e+29 -4.8309586e+29 -4.8309586e+29 -4.5382751e+29 -4.5479974e+29 -4.8165848e+29 -4.8165848e+29 -4.8165848e+29 -4.8165848e+29 -4.530964e+29 -4.5382751e+29 -4.2577186e+29 -4.8071828e+29 -4.8071828e+29 -4.8071828e+29 -4.8071828e+29 -4.5021425e+29 -4.4803195e+29 -4.2501456e+29 -4.225624e+29 -4.4794966e+29 -4.4803195e+29 -4.4803195e+29 -4.4422869e+29 -4.217407e+29 -4.1984208e+29 -4.4422869e+29 -4.4422869e+29 -4.4422869e+29 -4.4422869e+29 -4.4153776e+29 -4.189693e+29 -4.4153776e+29 -4.4153776e+29 -4.4153776e+29 -4.4153776e+29 -4.5195012e+29 -4.526069e+29 -4.5066533e+29 -4.5133257e+29 -4.5353279e+29 -4.5412127e+29 -4.4885306e+29 -4.4985364e+29 -4.5238994e+29 -4.5299641e+29 -4.5388866e+29 -4.544812e+29 -4.5063329e+29 -4.5161855e+29 -4.5277199e+29 -4.5336295e+29 -4.5392226e+29 -4.5451427e+29 -4.5106204e+29 -4.5203668e+29 -4.5280839e+29 -4.5339765e+29 -4.5110225e+29 -4.5207625e+29 ) ; } procBoundary9to8 { type processor; value nonuniform List<scalar> 1234 ( -5.4429291e+29 -5.1462377e+29 -5.1460899e+29 -5.4357654e+29 -5.4357654e+29 -5.1383309e+29 -5.3966384e+29 -5.3897418e+29 -4.8618225e+29 -5.4186973e+29 -5.1474996e+29 -5.1474996e+29 -5.1474996e+29 -5.1474996e+29 -5.563796e+29 -5.397365e+29 -5.3914749e+29 -5.1297416e+29 -5.397365e+29 -5.397365e+29 -5.397365e+29 -4.8545797e+29 -5.3967593e+29 -5.3967593e+29 -5.3854343e+29 -5.443489e+29 -5.4662144e+29 -5.156816e+29 -5.156816e+29 -5.156816e+29 -5.156816e+29 -5.4119797e+29 -5.3914749e+29 -5.5561205e+29 -5.5622975e+29 -5.2317607e+29 -5.4841667e+29 -5.5181474e+29 -5.0608324e+29 -4.8298201e+29 -5.4841667e+29 -5.4817154e+29 -5.4475345e+29 -5.3989174e+29 -5.4065082e+29 -5.4065082e+29 -5.4992061e+29 -5.4992061e+29 -5.4992061e+29 -5.4836015e+29 -5.4836015e+29 -5.169624e+29 -5.169624e+29 -5.169624e+29 -5.169624e+29 -5.4474239e+29 -5.4313594e+29 -5.4705885e+29 -5.4599167e+29 -5.4155677e+29 -5.0608324e+29 -5.2317607e+29 -5.422934e+29 -5.6059606e+29 -5.5898022e+29 -5.5181474e+29 -5.5181474e+29 -4.9016845e+29 -4.7190137e+29 -5.4919581e+29 -5.4907134e+29 -5.4475345e+29 -5.4871475e+29 -5.4475345e+29 -5.4475345e+29 -5.4126822e+29 -5.4126822e+29 -5.4309591e+29 -5.4091102e+29 -5.5853019e+29 -5.5936996e+29 -5.5063492e+29 -5.5760982e+29 -5.4789257e+29 -5.5273333e+29 -5.4789257e+29 -5.4789257e+29 -5.4789257e+29 -5.4473912e+29 -5.4551692e+29 -5.4279568e+29 -5.4390594e+29 -5.4716536e+29 -5.4774755e+29 -5.4774755e+29 -5.4774755e+29 -5.4663586e+29 -5.4607757e+29 -5.417517e+29 -4.7323928e+29 -4.9030291e+29 -4.9016845e+29 -4.7190137e+29 -5.2491367e+29 -5.0734957e+29 -5.0734957e+29 -5.4513011e+29 -5.6535699e+29 -5.6953732e+29 -5.6190464e+29 -5.5544964e+29 -5.5544964e+29 -5.5544964e+29 -5.5164973e+29 -5.5013313e+29 -5.4982168e+29 -5.494098e+29 -5.4697143e+29 -5.4897326e+29 -5.4503166e+29 -5.4697143e+29 -5.4503166e+29 -5.4205306e+29 -5.4205306e+29 -5.4205306e+29 -5.4205306e+29 -5.4205306e+29 -5.4447581e+29 -5.4340859e+29 -5.5063492e+29 -5.5819083e+29 -5.5776272e+29 -5.5853484e+29 -5.5889262e+29 -5.5494706e+29 -5.5726097e+29 -5.5273333e+29 -5.5273333e+29 -5.5483169e+29 -5.5202575e+29 -5.5237178e+29 -5.4456672e+29 -5.4496588e+29 -5.4530833e+29 -5.4565643e+29 -5.4239695e+29 -5.4303801e+29 -5.4360065e+29 -5.4415903e+29 -5.4697557e+29 -5.4726086e+29 -5.4973945e+29 -5.4973945e+29 -5.4973945e+29 -5.4973945e+29 -5.4755081e+29 -5.4755081e+29 -5.4641296e+29 -5.4672751e+29 -5.4614326e+29 -5.4588962e+29 -4.7332989e+29 -4.9046006e+29 -5.2678465e+29 -5.0821334e+29 -5.0821334e+29 -5.4776668e+29 -5.6492183e+29 -5.729916e+29 -5.759629e+29 -5.6729421e+29 -5.6964498e+29 -5.7046813e+29 -5.7309219e+29 -5.6748695e+29 -5.6388984e+29 -5.6205135e+29 -5.5380954e+29 -5.5604388e+29 -5.5604388e+29 -5.5155154e+29 -5.5055853e+29 -5.5015538e+29 -5.4979382e+29 -5.4942318e+29 -5.4918015e+29 -5.4705728e+29 -5.4799715e+29 -5.4898907e+29 -5.4705728e+29 -5.4617776e+29 -5.4702288e+29 -5.4528566e+29 -5.4528566e+29 -5.4546318e+29 -5.4272186e+29 -5.4272186e+29 -5.4272186e+29 -5.4272186e+29 -5.4272186e+29 -5.4377167e+29 -5.5494706e+29 -5.5494706e+29 -5.5494706e+29 -5.5084028e+29 -5.5813338e+29 -5.5791531e+29 -5.5770633e+29 -5.5745144e+29 -5.584517e+29 -5.5829191e+29 -5.5873223e+29 -5.5860232e+29 -5.567059e+29 -5.5718653e+29 -5.525231e+29 -5.5235654e+29 -5.525231e+29 -5.5483169e+29 -5.5483169e+29 -5.519057e+29 -5.5176992e+29 -5.5220666e+29 -5.5205427e+29 -5.4492131e+29 -5.4530803e+29 -5.4563299e+29 -5.459243e+29 -5.4335319e+29 -5.4335319e+29 -5.4335319e+29 -5.4335319e+29 -5.4335319e+29 -5.4394375e+29 -5.4394375e+29 -5.4394375e+29 -5.4394375e+29 -5.4394375e+29 -5.4447271e+29 -5.4447271e+29 -5.4447271e+29 -5.4447271e+29 -5.4447271e+29 -5.4727104e+29 -5.4756225e+29 -5.5075749e+29 -5.5075749e+29 -5.5061762e+29 -5.4939752e+29 -5.4787843e+29 -5.4787843e+29 -5.4787843e+29 -5.4787843e+29 -5.4671061e+29 -5.4699373e+29 -5.4644222e+29 -5.4617617e+29 -4.7223798e+29 -4.9032688e+29 -5.2845064e+29 -5.0889978e+29 -5.0889978e+29 -5.5019265e+29 -5.7859826e+29 -5.5245471e+29 -5.7144108e+29 -5.7302648e+29 -5.744059e+29 -5.7566467e+29 -5.7507683e+29 -5.7667936e+29 -5.6953068e+29 -5.7111109e+29 -5.7378055e+29 -5.7247918e+29 -5.7797883e+29 -5.7921021e+29 -5.6388984e+29 -5.6388984e+29 -5.6205135e+29 -5.5935182e+29 -5.6033646e+29 -5.5400109e+29 -5.5271713e+29 -5.5641101e+29 -5.5641101e+29 -5.551699e+29 -5.5130785e+29 -5.5042973e+29 -5.4996657e+29 -5.4958969e+29 -5.4932022e+29 -5.4720732e+29 -5.4811965e+29 -5.4913344e+29 -5.4720732e+29 -5.4641037e+29 -5.4721238e+29 -5.455359e+29 -5.455359e+29 -5.4437943e+29 -5.4408636e+29 -5.4524567e+29 -5.4515887e+29 -5.5676447e+29 -5.547135e+29 -5.567059e+29 -5.5266183e+29 -5.5804414e+29 -5.5793865e+29 -5.5783897e+29 -5.5773693e+29 -5.5764254e+29 -5.5750385e+29 -5.5737138e+29 -5.572263e+29 -5.5836745e+29 -5.5827684e+29 -5.58119e+29 -5.5819921e+29 -5.5857115e+29 -5.5852766e+29 -5.5847994e+29 -5.5842407e+29 -5.5649716e+29 -5.5755654e+29 -5.5708981e+29 -5.5691693e+29 -5.5252105e+29 -5.5240979e+29 -5.5234385e+29 -5.5227572e+29 -5.5252105e+29 -5.5349839e+29 -5.5575646e+29 -5.5473228e+29 -5.5459476e+29 -5.5473228e+29 -5.5195311e+29 -5.5187636e+29 -5.5182747e+29 -5.5176048e+29 -5.5220042e+29 -5.5212176e+29 -5.5207448e+29 -5.5202228e+29 -5.4461047e+29 -5.4461047e+29 -5.4485272e+29 -5.4533397e+29 -5.4502531e+29 -5.451983e+29 -5.4550249e+29 -5.4534605e+29 -5.4573905e+29 -5.4561288e+29 -5.4497728e+29 -5.4468292e+29 -5.4606908e+29 -5.4583503e+29 -5.4557934e+29 -5.4528804e+29 -5.4711602e+29 -5.4694771e+29 -5.4740688e+29 -5.4724716e+29 -5.5094458e+29 -5.5094458e+29 -5.5081695e+29 -5.4954505e+29 -5.4954505e+29 -5.4756455e+29 -5.4833702e+29 -5.4756455e+29 -5.4654731e+29 -5.4639678e+29 -5.468103e+29 -5.4666915e+29 -5.4627324e+29 -5.4613414e+29 -5.4601232e+29 -5.4586384e+29 -4.7126861e+29 -4.9020315e+29 -5.3001961e+29 -5.0963546e+29 -5.0963546e+29 -5.544651e+29 -5.7817175e+29 -5.7695292e+29 -5.3151847e+29 -5.7569443e+29 -5.7569443e+29 -5.7569443e+29 -5.7476326e+29 -5.7476326e+29 -5.7476326e+29 -5.7640166e+29 -5.7640166e+29 -5.7640166e+29 -5.7708156e+29 -5.7708156e+29 -5.7708156e+29 -5.6786954e+29 -5.6708843e+29 -5.7067236e+29 -5.7153075e+29 -5.742258e+29 -5.742258e+29 -5.742258e+29 -5.7356525e+29 -5.7290773e+29 -5.7219734e+29 -5.8186243e+29 -5.8051126e+29 -5.7766148e+29 -5.7766148e+29 -5.7766148e+29 -5.7820152e+29 -5.7820152e+29 -5.7820152e+29 -5.7923001e+29 -5.7868213e+29 -5.6316041e+29 -5.6033646e+29 -5.6414184e+29 -5.6414184e+29 -5.6033646e+29 -5.5935182e+29 -5.539437e+29 -5.5324057e+29 -5.5259426e+29 -5.5190436e+29 -5.558591e+29 -5.5646913e+29 -5.5646913e+29 -5.5743821e+29 -5.5524462e+29 -5.5453063e+29 -5.5116937e+29 -5.5047817e+29 -5.5000962e+29 -5.4962927e+29 -5.4935731e+29 -5.4725427e+29 -5.4816464e+29 -5.491721e+29 -5.4725427e+29 -5.4651007e+29 -5.4727717e+29 -5.4563938e+29 -5.4563938e+29 -5.4515887e+29 -5.4545113e+29 -5.4542925e+29 -5.5462063e+29 -5.5659747e+29 -5.5562914e+29 -5.5654661e+29 -5.5649716e+29 -5.5651419e+29 -5.5359773e+29 -5.523689e+29 -5.5818695e+29 -5.5809236e+29 -5.5799528e+29 -5.5789195e+29 -5.5778837e+29 -5.5765782e+29 -5.5751645e+29 -5.5736172e+29 -5.5851757e+29 -5.5843846e+29 -5.5827049e+29 -5.5835709e+29 -5.5869032e+29 -5.5866123e+29 -5.5862467e+29 -5.5857392e+29 -5.5668134e+29 -5.5768584e+29 -5.5720583e+29 -5.57043e+29 -5.5272644e+29 -5.5262495e+29 -5.5254894e+29 -5.524751e+29 -5.5272644e+29 -5.536957e+29 -5.5588853e+29 -5.5491235e+29 -5.5477797e+29 -5.5491235e+29 -5.5217945e+29 -5.5211531e+29 -5.5205887e+29 -5.5198558e+29 -5.5240228e+29 -5.5233603e+29 -5.5228868e+29 -5.5223878e+29 -5.4613921e+29 -5.4463036e+29 -5.4463036e+29 -5.4486044e+29 -5.4531493e+29 -5.4504547e+29 -5.4520675e+29 -5.4550218e+29 -5.4536007e+29 -5.4573358e+29 -5.4561397e+29 -5.4624941e+29 -5.4595873e+29 -5.4568817e+29 -5.4731534e+29 -5.4707222e+29 -5.4682243e+29 -5.4654329e+29 -5.4711892e+29 -5.469582e+29 -5.474119e+29 -5.4726229e+29 -5.5113259e+29 -5.5113259e+29 -5.5100878e+29 -5.5086255e+29 -5.4919126e+29 -5.4757994e+29 -5.4831125e+29 -5.4757994e+29 -5.4654882e+29 -5.4640696e+29 -5.4680947e+29 -5.4667814e+29 -5.4627358e+29 -5.4614312e+29 -5.4601286e+29 -5.4586999e+29 -4.700788e+29 -4.7055963e+29 -4.9015057e+29 -5.1036945e+29 -5.1036945e+29 -5.3290037e+29 -5.7847281e+29 -5.780129e+29 -5.7752818e+29 -5.770423e+29 -5.7912779e+29 -5.7877453e+29 -5.7987314e+29 -5.7950129e+29 -5.6708843e+29 -5.6786954e+29 -5.6786954e+29 -5.7069935e+29 -5.7026096e+29 -5.7154901e+29 -5.7111529e+29 -5.753813e+29 -5.7390912e+29 -5.753813e+29 -5.7390912e+29 -5.7358937e+29 -5.7323435e+29 -5.7292961e+29 -5.7255802e+29 -5.7222195e+29 -5.7186442e+29 -5.8113569e+29 -5.8180457e+29 -5.8052008e+29 -5.7982343e+29 -5.803978e+29 -5.8012845e+29 -5.806521e+29 -5.8091691e+29 -5.785108e+29 -5.7925109e+29 -5.7895215e+29 -5.7871826e+29 -5.785108e+29 -5.6034465e+29 -5.6324648e+29 -5.6273932e+29 -5.6136875e+29 -5.6370777e+29 -5.6419093e+29 -5.6419093e+29 -5.6522685e+29 -5.6034465e+29 -5.5985233e+29 -5.5939658e+29 -5.5886714e+29 -5.539092e+29 -5.5321623e+29 -5.5251405e+29 -5.5184769e+29 -5.5589743e+29 -5.5647937e+29 -5.5647937e+29 -5.5742058e+29 -5.5526358e+29 -5.5456642e+29 -5.5116872e+29 -5.5047388e+29 -5.5002558e+29 -5.4964273e+29 -5.4937268e+29 -5.472764e+29 -5.4818661e+29 -5.4918955e+29 -5.472764e+29 -5.465685e+29 -5.4731213e+29 -5.4570621e+29 -5.4570621e+29 -5.453416e+29 -5.4560058e+29 -5.4553703e+29 -5.5481543e+29 -5.5677533e+29 -5.5581663e+29 -5.5673334e+29 -5.5668134e+29 -5.5670276e+29 -5.5375379e+29 -5.5247038e+29 -5.5821289e+29 -5.5812294e+29 -5.5802554e+29 -5.579208e+29 -5.5781375e+29 -5.5768703e+29 -5.5754306e+29 -5.5738588e+29 -5.5854352e+29 -5.5846815e+29 -5.5829874e+29 -5.5838637e+29 -5.5870457e+29 -5.5868085e+29 -5.5864789e+29 -5.5860025e+29 -5.567254e+29 -5.5771294e+29 -5.5722282e+29 -5.5706187e+29 -5.5283714e+29 -5.5274004e+29 -5.5265763e+29 -5.5258106e+29 -5.5283714e+29 -5.5376676e+29 -5.5592229e+29 -5.5496441e+29 -5.5482635e+29 -5.5496441e+29 -5.5229177e+29 -5.522337e+29 -5.5217175e+29 -5.5209472e+29 -5.5250967e+29 -5.524492e+29 -5.5239867e+29 -5.5234844e+29 -5.4680563e+29 -5.460644e+29 -5.4462909e+29 -5.4462909e+29 -5.448565e+29 -5.4531226e+29 -5.4504503e+29 -5.4520335e+29 -5.4549539e+29 -5.4535755e+29 -5.4572571e+29 -5.456076e+29 -5.4637258e+29 -5.4608458e+29 -5.4582025e+29 -5.4743633e+29 -5.4719311e+29 -5.4694235e+29 -5.4666521e+29 -5.4711364e+29 -5.4695449e+29 -5.4740765e+29 -5.472605e+29 -5.5125678e+29 -5.5125678e+29 -5.5113382e+29 -5.499064e+29 -5.5098881e+29 -5.4910559e+29 -5.4757776e+29 -5.4830722e+29 -5.4757776e+29 -5.4654294e+29 -5.4640325e+29 -5.4680321e+29 -5.4667429e+29 -5.462674e+29 -5.4613901e+29 -5.4600679e+29 -5.4586487e+29 -4.700788e+29 -4.9012943e+29 -5.1076632e+29 -5.3430522e+29 -5.3294804e+29 -5.7828555e+29 -5.7848094e+29 -5.7782095e+29 -5.7807055e+29 -5.7732528e+29 -5.7758816e+29 -5.7709219e+29 -5.7685914e+29 -5.7892924e+29 -5.7912262e+29 -5.7877444e+29 -5.7862022e+29 -5.7986102e+29 -5.7969423e+29 -5.7930286e+29 -5.7951492e+29 -5.6664157e+29 -5.6705908e+29 -5.6742721e+29 -5.6780519e+29 -5.6780519e+29 -5.6890862e+29 -5.7074148e+29 -5.7032326e+29 -5.7158302e+29 -5.7116646e+29 -5.7532195e+29 -5.7396576e+29 -5.7532195e+29 -5.7396576e+29 -5.736412e+29 -5.7330272e+29 -5.7297852e+29 -5.7262601e+29 -5.7228332e+29 -5.7193347e+29 -5.8109982e+29 -5.8081099e+29 -5.8176028e+29 -5.8140373e+29 -5.8018416e+29 -5.8055025e+29 -5.7983788e+29 -5.7950782e+29 -5.8021854e+29 -5.8034891e+29 -5.801019e+29 -5.7997222e+29 -5.8057991e+29 -5.804542e+29 -5.8082412e+29 -5.79498e+29 -5.7822208e+29 -5.807048e+29 -5.7903378e+29 -5.7888591e+29 -5.7874992e+29 -5.7861269e+29 -5.7851563e+29 -5.7839546e+29 -5.7830737e+29 -5.7822208e+29 -5.8206197e+29 -5.603894e+29 -5.6330902e+29 -5.6282613e+29 -5.6139877e+29 -5.6377569e+29 -5.6423595e+29 -5.6423595e+29 -5.6523612e+29 -5.603894e+29 -5.5992685e+29 -5.5945864e+29 -5.5894133e+29 -5.5387601e+29 -5.531766e+29 -5.5246221e+29 -5.5180738e+29 -5.5588836e+29 -5.5646452e+29 -5.5646452e+29 -5.5740643e+29 -5.552505e+29 -5.5455343e+29 -5.5127514e+29 -5.4558038e+29 -5.4569419e+29 -5.5491689e+29 -5.5681812e+29 -5.558806e+29 -5.5678037e+29 -5.567254e+29 -5.5674885e+29 -5.5395349e+29 -5.5224034e+29 -5.5821754e+29 -5.5812869e+29 -5.5803137e+29 -5.5792582e+29 -5.5781785e+29 -5.5769225e+29 -5.5754791e+29 -5.5738991e+29 -5.5854756e+29 -5.5847304e+29 -5.5830365e+29 -5.5839173e+29 -5.5870491e+29 -5.5868242e+29 -5.5865103e+29 -5.5860426e+29 -5.5673818e+29 -5.5771759e+29 -5.5722485e+29 -5.5706388e+29 -5.5290102e+29 -5.5280477e+29 -5.5272106e+29 -5.5264363e+29 -5.5290102e+29 -5.5379574e+29 -5.5593004e+29 -5.5498143e+29 -5.5484173e+29 -5.5498143e+29 -5.5235383e+29 -5.5229727e+29 -5.5223427e+29 -5.5215592e+29 -5.5257143e+29 -5.5251239e+29 -5.5246139e+29 -5.5241088e+29 -5.4697728e+29 -5.460946e+29 -5.4462447e+29 -5.4462447e+29 -5.4485115e+29 -5.453072e+29 -5.450409e+29 -5.4519818e+29 -5.4548866e+29 -5.4535254e+29 -5.4571851e+29 -5.4560078e+29 -5.4644848e+29 -5.4616213e+29 -5.459003e+29 -5.4751118e+29 -5.4726826e+29 -5.4701641e+29 -5.4674077e+29 -5.471077e+29 -5.4694886e+29 -5.4740202e+29 -5.4725573e+29 -5.5133426e+29 -5.5133426e+29 -5.5121164e+29 -5.5008879e+29 -5.5106693e+29 -5.4913728e+29 -5.4757275e+29 -5.4830163e+29 -5.4757275e+29 -5.4653665e+29 -5.4639759e+29 -5.4679668e+29 -5.4666857e+29 -5.4626095e+29 -5.461332e+29 -5.4600049e+29 -5.4585868e+29 -4.7137629e+29 -4.9012943e+29 -5.1094785e+29 -5.3648891e+29 -5.3552975e+29 -5.3441476e+29 -5.3309536e+29 -5.7813292e+29 -5.7831596e+29 -5.7792338e+29 -5.7769555e+29 -5.771941e+29 -5.7744692e+29 -5.7696378e+29 -5.7673403e+29 -5.7877936e+29 -5.7896645e+29 -5.7862873e+29 -5.7848498e+29 -5.7953374e+29 -5.7969883e+29 -5.7915114e+29 -5.7936268e+29 -5.6672471e+29 -5.6712994e+29 -5.6750887e+29 -5.6786413e+29 -5.6786413e+29 -5.6894255e+29 -5.7070237e+29 -5.7028995e+29 -5.7153929e+29 -5.711281e+29 -5.7521056e+29 -5.7392728e+29 -5.7521056e+29 -5.7392728e+29 -5.7360274e+29 -5.7326901e+29 -5.7293969e+29 -5.7259435e+29 -5.7225086e+29 -5.7190125e+29 -5.8086027e+29 -5.8069671e+29 -5.8057026e+29 -5.8044176e+29 -5.8152219e+29 -5.8133197e+29 -5.811612e+29 -5.8099289e+29 -5.7998922e+29 -5.7980402e+29 -5.8032686e+29 -5.8015896e+29 -5.7963583e+29 -5.7945154e+29 -5.7930284e+29 -5.7914754e+29 -5.8004902e+29 -5.8017238e+29 -5.7981696e+29 -5.7994177e+29 -5.8039356e+29 -5.8027982e+29 -5.7943341e+29 -5.8063246e+29 -5.7826971e+29 -5.8051491e+29 -5.7906906e+29 -5.7892797e+29 -5.7879585e+29 -5.7866407e+29 -5.7855607e+29 -5.7844336e+29 -5.78356e+29 -5.7826971e+29 -5.818093e+29 -5.8166326e+29 -5.6038838e+29 -5.6330758e+29 -5.6283027e+29 -5.6140882e+29 -5.6377345e+29 -5.6422603e+29 -5.6422603e+29 -5.6522372e+29 -5.6038838e+29 -5.5993424e+29 -5.5946417e+29 -5.5894632e+29 -5.5386176e+29 -5.5315967e+29 -5.5244344e+29 -5.5180683e+29 -5.558873e+29 -5.5646232e+29 -5.5646232e+29 -5.5740152e+29 -5.5524684e+29 -5.5454805e+29 -5.5498033e+29 -5.5683048e+29 -5.5590805e+29 -5.5679376e+29 -5.5673818e+29 -5.5676227e+29 -5.540918e+29 -5.5306532e+29 -5.5212572e+29 -5.5821626e+29 -5.5812788e+29 -5.5803055e+29 -5.5792462e+29 -5.578164e+29 -5.5769096e+29 -5.5754658e+29 -5.5738824e+29 -5.5854605e+29 -5.584717e+29 -5.5830246e+29 -5.5839083e+29 -5.587016e+29 -5.5867957e+29 -5.5864911e+29 -5.5860262e+29 -5.5674018e+29 -5.5771677e+29 -5.5722247e+29 -5.5706254e+29 -5.5293533e+29 -5.5283937e+29 -5.5275505e+29 -5.5267723e+29 -5.5293533e+29 -5.5380832e+29 -5.5593007e+29 -5.5498556e+29 -5.5484574e+29 -5.5498556e+29 -5.5238712e+29 -5.5233118e+29 -5.5226778e+29 -5.5218894e+29 -5.5260449e+29 -5.5254608e+29 -5.5249488e+29 -5.5244429e+29 -5.4707371e+29 -5.4611595e+29 -5.5019062e+29 -5.4915982e+29 -4.7146495e+29 -4.9046812e+29 -5.1104734e+29 -5.3761406e+29 -5.3717639e+29 -5.3639701e+29 -5.3550316e+29 -5.3432483e+29 -5.3317447e+29 -5.7794888e+29 -5.7812857e+29 -5.7773919e+29 -5.7751684e+29 -5.7702081e+29 -5.7726468e+29 -5.7678771e+29 -5.7655759e+29 -5.7859566e+29 -5.7877996e+29 -5.7844501e+29 -5.7830252e+29 -5.7935167e+29 -5.7950757e+29 -5.7897114e+29 -5.7917966e+29 -5.6672409e+29 -5.6712906e+29 -5.6751006e+29 -5.6785886e+29 -5.6785886e+29 -5.6894162e+29 -5.706878e+29 -5.7027805e+29 -5.7152193e+29 -5.7111294e+29 -5.7513506e+29 -5.7391177e+29 -5.7513506e+29 -5.7391177e+29 -5.7358791e+29 -5.7325623e+29 -5.7292512e+29 -5.7258294e+29 -5.722396e+29 -5.7188957e+29 -5.8088855e+29 -5.8073437e+29 -5.8060816e+29 -5.804812e+29 -5.8155001e+29 -5.8136863e+29 -5.8119744e+29 -5.8103574e+29 -5.8002412e+29 -5.7985307e+29 -5.8035018e+29 -5.8019275e+29 -5.7967399e+29 -5.7950015e+29 -5.7934942e+29 -5.7919661e+29 -5.7985673e+29 -5.7997554e+29 -5.7962707e+29 -5.7975065e+29 -5.8019447e+29 -5.800856e+29 -5.7931667e+29 -5.8043238e+29 -5.7822713e+29 -5.8031608e+29 -5.7902306e+29 -5.7888518e+29 -5.7875283e+29 -5.7862205e+29 -5.7850916e+29 -5.783995e+29 -5.7831384e+29 -5.7822713e+29 -5.8184802e+29 -5.8170729e+29 -5.6039258e+29 -5.6331655e+29 -5.6284142e+29 -5.6143318e+29 -5.637816e+29 -5.6423104e+29 -5.6423104e+29 -5.6522168e+29 -5.6039258e+29 -5.5994201e+29 -5.5947092e+29 -5.5895172e+29 -5.5501446e+29 -5.568327e+29 -5.5591966e+29 -5.5679593e+29 -5.5674018e+29 -5.5676456e+29 -5.5417775e+29 -5.5326985e+29 -5.5215915e+29 -4.7147938e+29 -4.904361e+29 -5.1105225e+29 -5.3766057e+29 -5.3715809e+29 -5.3601003e+29 -5.3521897e+29 -5.3432615e+29 -5.3317903e+29 -5.7786763e+29 -5.7804401e+29 -5.7765883e+29 -5.7743339e+29 -5.7694371e+29 -5.7718204e+29 -5.7671006e+29 -5.7647534e+29 -5.7851568e+29 -5.7869662e+29 -5.7836377e+29 -5.7821633e+29 -5.7926955e+29 -5.7941681e+29 -5.7888901e+29 -5.7909705e+29 -5.66726e+29 -5.6713134e+29 -5.6751315e+29 -5.6785948e+29 -5.6785948e+29 -5.6896425e+29 -5.8083576e+29 -5.8068507e+29 -5.8055998e+29 -5.8043212e+29 -5.8149898e+29 -5.8132035e+29 -5.8114927e+29 -5.8098886e+29 -5.7997495e+29 -5.7980909e+29 -5.8029495e+29 -5.8014203e+29 -5.7962847e+29 -5.7945872e+29 -5.7930692e+29 -5.7915366e+29 -5.7977258e+29 -5.7988727e+29 -5.7954017e+29 -5.7966655e+29 -5.8010658e+29 -5.7999574e+29 -5.7923657e+29 -5.8033743e+29 -5.7820936e+29 -5.8022628e+29 -5.7900375e+29 -5.7886757e+29 -5.787348e+29 -5.7860412e+29 -5.7848907e+29 -5.783807e+29 -5.7829611e+29 -5.7820936e+29 -5.8180227e+29 -5.8166237e+29 -5.5338189e+29 -5.5218468e+29 -4.9044341e+29 -5.3720818e+29 -5.3671945e+29 -5.3600883e+29 -5.3521702e+29 -5.8081225e+29 -5.8066293e+29 -5.8053855e+29 -5.804098e+29 -5.8147677e+29 -5.8129881e+29 -5.8112829e+29 -5.8096805e+29 -5.799533e+29 -5.7978978e+29 -5.8026957e+29 -5.8011885e+29 -5.7960952e+29 -5.7944165e+29 -5.7928912e+29 -5.7913526e+29 -5.8178285e+29 -5.8164282e+29 -5.3717753e+29 -5.3669403e+29 ) ; } procBoundary9to10 { type processor; value nonuniform List<scalar> 703 ( -5.3152182e+29 -5.0993553e+29 -5.4143354e+29 -5.3149812e+29 -5.2167127e+29 -5.1006517e+29 -4.8937668e+29 -4.6619932e+29 -4.389003e+29 -5.4654756e+29 -5.422935e+29 -5.4654756e+29 -5.3830875e+29 -5.3419573e+29 -5.2993477e+29 -5.2521937e+29 -4.9739205e+29 -5.1387742e+29 -5.2032765e+29 -4.8112199e+29 -4.6005683e+29 -4.3654127e+29 -5.5053513e+29 -5.4654756e+29 -5.4654756e+29 -5.486229e+29 -5.422935e+29 -5.4300408e+29 -5.4124749e+29 -5.3946732e+29 -5.3782245e+29 -5.3613368e+29 -5.3442512e+29 -5.3265283e+29 -5.3091756e+29 -5.2902988e+29 -5.0565582e+29 -4.9446769e+29 -5.1818047e+29 -5.2196533e+29 -5.2460381e+29 -5.269265e+29 -4.7868448e+29 -4.581466e+29 -5.587816e+29 -4.6023373e+29 -5.5075153e+29 -5.486229e+29 -5.467445e+29 -5.4895995e+29 -5.4493453e+29 -5.4300408e+29 -5.4377279e+29 -5.4212334e+29 -5.4053348e+29 -5.3902725e+29 -5.3759492e+29 -5.3616221e+29 -5.3475774e+29 -5.3336856e+29 -5.3196894e+29 -5.1318644e+29 -5.0603563e+29 -4.9482802e+29 -5.222892e+29 -5.2627185e+29 -5.2864833e+29 -5.3038844e+29 -4.7775928e+29 -4.7790316e+29 -4.6472261e+29 -4.6801876e+29 -5.1117386e+29 -5.3545472e+29 -5.686686e+29 -5.5700279e+29 -5.1117386e+29 -5.3322317e+29 -5.7246059e+29 -4.8111447e+29 -4.7971225e+29 -5.5040917e+29 -5.5127463e+29 -5.4895995e+29 -5.4727785e+29 -5.4949734e+29 -5.4956504e+29 -5.4558839e+29 -5.4377279e+29 -4.7775928e+29 -4.7790316e+29 -4.7790316e+29 -5.4450131e+29 -5.4368281e+29 -5.4291698e+29 -5.4212232e+29 -5.4139225e+29 -5.4064667e+29 -5.3996642e+29 -5.3927576e+29 -5.386446e+29 -5.3799239e+29 -5.3738247e+29 -5.3675389e+29 -5.3616855e+29 -5.3556502e+29 -5.3499916e+29 -5.3440474e+29 -5.3383546e+29 -5.3321246e+29 -5.1606717e+29 -5.0755361e+29 -4.9451507e+29 -5.2423193e+29 -5.26818e+29 -5.2984515e+29 -5.2869236e+29 -5.3131757e+29 -5.3060759e+29 -5.3194825e+29 -5.3260228e+29 -4.6768743e+29 -4.6801876e+29 -4.8840449e+29 -4.8967123e+29 -5.1116719e+29 -5.2098243e+29 -5.0771992e+29 -5.457741e+29 -5.6161445e+29 -5.1187991e+29 -5.3322317e+29 -5.2098243e+29 -5.3322317e+29 -5.4964731e+29 -5.4964731e+29 -5.6182817e+29 -5.7748196e+29 -5.7229102e+29 -5.7748196e+29 -4.9543829e+29 -4.960973e+29 -5.5040631e+29 -5.5122812e+29 -5.4867652e+29 -5.4949734e+29 -5.4708333e+29 -5.479e+29 -5.4948868e+29 -5.4955165e+29 -5.4548587e+29 -5.4630479e+29 -5.4462849e+29 -5.4450131e+29 -4.9451507e+29 -4.9451507e+29 -4.9451507e+29 -4.9254428e+29 -4.9242705e+29 -4.960973e+29 -4.9268872e+29 -5.4454676e+29 -5.4375864e+29 -5.4297665e+29 -5.4221162e+29 -5.4146731e+29 -5.4075144e+29 -5.4006193e+29 -5.3940083e+29 -5.3876556e+29 -5.3814713e+29 -5.3754172e+29 -5.36947e+29 -5.3636542e+29 -5.3579018e+29 -5.3522561e+29 -5.3465721e+29 -5.3408813e+29 -5.3350126e+29 -5.1594524e+29 -5.2085704e+29 -5.0746757e+29 -5.2623954e+29 -5.2846755e+29 -5.3056413e+29 -5.298635e+29 -5.3172751e+29 -5.3114516e+29 -5.3231083e+29 -5.3290941e+29 -4.6684738e+29 -4.672366e+29 -4.8982498e+29 -4.8967123e+29 -5.2098243e+29 -5.0771992e+29 -5.1294708e+29 -5.1252574e+29 -5.674358e+29 -5.3791833e+29 -5.4964731e+29 -5.6182817e+29 -5.6182817e+29 -5.6712249e+29 -5.5628043e+29 -5.6189182e+29 -5.7694129e+29 -5.7455982e+29 -5.7212843e+29 -5.7694129e+29 -5.799192e+29 -4.960973e+29 -4.960973e+29 -5.5039828e+29 -5.5121838e+29 -5.4870897e+29 -5.4948868e+29 -5.4713693e+29 -5.4792051e+29 -5.4948795e+29 -5.4954935e+29 -5.4555431e+29 -5.4634169e+29 -5.4466747e+29 -5.4454676e+29 -5.0652482e+29 -5.0746757e+29 -5.2846755e+29 -5.2623954e+29 -5.0467232e+29 -5.0311434e+29 -5.0401521e+29 -5.0251582e+29 -5.0434572e+29 -5.4456225e+29 -5.4377562e+29 -5.4299602e+29 -5.422327e+29 -5.4149024e+29 -5.4077684e+29 -5.4008971e+29 -5.3943184e+29 -5.3880024e+29 -5.3818747e+29 -5.375867e+29 -5.3699847e+29 -5.3642026e+29 -5.3585032e+29 -5.3528732e+29 -5.3472322e+29 -5.3415561e+29 -5.3357729e+29 -5.1555089e+29 -5.2208089e+29 -5.3046482e+29 -5.3078352e+29 -5.3018995e+29 -5.3184654e+29 -5.3129942e+29 -5.324114e+29 -5.3299367e+29 -4.6550348e+29 -4.6620651e+29 -4.8988313e+29 -4.8991581e+29 -5.2469839e+29 -5.1012536e+29 -5.105726e+29 -5.1308122e+29 -5.1314502e+29 -5.698366e+29 -5.4593275e+29 -5.4023534e+29 -5.5093582e+29 -5.5628043e+29 -5.6453749e+29 -5.6453749e+29 -5.6712249e+29 -5.6712249e+29 -5.6189182e+29 -5.6189182e+29 -5.5925234e+29 -5.77848e+29 -5.7659235e+29 -5.7416282e+29 -5.7542167e+29 -5.7184035e+29 -5.7301439e+29 -5.77848e+29 -5.7802487e+29 -5.7941281e+29 -5.8075267e+29 -5.5039048e+29 -5.512102e+29 -5.4871202e+29 -5.4948795e+29 -5.4714735e+29 -5.4792908e+29 -5.4948424e+29 -5.4954496e+29 -5.4556928e+29 -5.4635551e+29 -5.4468138e+29 -5.4456225e+29 -5.1421992e+29 -5.1433601e+29 -5.1555089e+29 -5.1476465e+29 -5.2208089e+29 -5.3018995e+29 -5.2883349e+29 -5.2735288e+29 -5.1225929e+29 -5.12843e+29 -5.1000809e+29 -5.120427e+29 -5.105726e+29 -5.105726e+29 -5.1395075e+29 -5.1395075e+29 -5.4456788e+29 -5.4378185e+29 -5.4300334e+29 -5.4224072e+29 -5.41499e+29 -5.4078685e+29 -5.4010057e+29 -5.3944336e+29 -5.3881335e+29 -5.3820274e+29 -5.3760382e+29 -5.3701813e+29 -5.364413e+29 -5.3587289e+29 -5.353103e+29 -5.3474649e+29 -5.3417858e+29 -5.336013e+29 -5.3069026e+29 -5.3083646e+29 -5.3026317e+29 -5.3187539e+29 -5.3133308e+29 -5.324381e+29 -5.3301833e+29 -4.8923047e+29 -4.8965314e+29 -5.3380469e+29 -5.2596001e+29 -5.1830933e+29 -5.6951475e+29 -5.7072213e+29 -5.4749894e+29 -5.4974657e+29 -5.4307302e+29 -5.4541439e+29 -5.5450446e+29 -5.5210134e+29 -5.5925234e+29 -5.5681129e+29 -5.6447789e+29 -5.6559457e+29 -5.6559457e+29 -5.6575032e+29 -5.6809854e+29 -5.6809854e+29 -5.6828227e+29 -5.6696744e+29 -5.6324889e+29 -5.6306344e+29 -5.6306344e+29 -5.617875e+29 -5.6040619e+29 -5.6149751e+29 -5.6027942e+29 -5.778856e+29 -5.7667188e+29 -5.7423651e+29 -5.7547377e+29 -5.7190264e+29 -5.7304514e+29 -5.778856e+29 -5.780562e+29 -5.7947891e+29 -5.8078021e+29 -5.4871098e+29 -5.4948424e+29 -5.4715035e+29 -5.4793095e+29 -5.4557476e+29 -5.4636038e+29 -5.4468672e+29 -5.4456788e+29 -5.2340921e+29 -5.2361888e+29 -5.2402982e+29 -5.2402982e+29 -5.3026317e+29 -5.2900449e+29 -5.2786743e+29 -5.1781627e+29 -5.1921966e+29 -5.1539176e+29 -5.1852587e+29 -5.2226014e+29 -5.2094809e+29 -5.3055649e+29 -5.2567247e+29 -5.2094809e+29 -5.3073483e+29 -5.3030069e+29 -5.4029345e+29 -5.3713865e+29 -5.2828011e+29 -5.3333194e+29 -5.6959493e+29 -5.7075985e+29 -5.4923662e+29 -5.5041922e+29 -5.516728e+29 -5.4588473e+29 -5.4760201e+29 -5.5494108e+29 -5.5599769e+29 -5.5284126e+29 -5.5390827e+29 -5.5915215e+29 -5.6027942e+29 -5.5703396e+29 -5.5808734e+29 -5.6469194e+29 -5.6571392e+29 -5.6571392e+29 -5.6587365e+29 -5.6816783e+29 -5.6816783e+29 -5.6833654e+29 -5.670871e+29 -5.6350958e+29 -5.6333229e+29 -5.6333229e+29 -5.6149751e+29 -5.6230465e+29 -5.6031604e+29 -5.778811e+29 -5.7667e+29 -5.7424089e+29 -5.7548762e+29 -5.7190253e+29 -5.730463e+29 -5.778811e+29 -5.7805245e+29 -5.794729e+29 -5.8077512e+29 -5.2463135e+29 -5.2485611e+29 -5.2531135e+29 -5.2531135e+29 -5.3030069e+29 -5.291179e+29 -5.2818269e+29 -5.210106e+29 -5.212417e+29 -5.2190072e+29 -5.2309979e+29 -5.2577268e+29 -5.2413717e+29 -5.3174751e+29 -5.2650019e+29 -5.3055649e+29 -5.3055649e+29 -5.2567247e+29 -5.2632434e+29 -5.2650019e+29 -5.4355502e+29 -5.4089752e+29 -5.3697022e+29 -5.6960806e+29 -5.7077276e+29 -5.5117466e+29 -5.5053412e+29 -5.4977233e+29 -5.5243159e+29 -5.4781335e+29 -5.4689968e+29 -5.4912123e+29 -5.4847901e+29 -5.5547652e+29 -5.5640629e+29 -5.5359441e+29 -5.545418e+29 -5.5932015e+29 -5.6031604e+29 -5.5735836e+29 -5.5831563e+29 -5.6478924e+29 -5.6576387e+29 -5.6576387e+29 -5.6592559e+29 -5.6818762e+29 -5.6818762e+29 -5.6835076e+29 -5.6711446e+29 -5.6367203e+29 -5.6349673e+29 -5.6349673e+29 -5.6131863e+29 -5.6230465e+29 -5.6252246e+29 -5.6026052e+29 -5.7788246e+29 -5.766792e+29 -5.7424774e+29 -5.7551507e+29 -5.7190942e+29 -5.7304993e+29 -5.7788246e+29 -5.7805443e+29 -5.7947234e+29 -5.807944e+29 -5.2576681e+29 -5.260232e+29 -5.2657871e+29 -5.2657871e+29 -5.2282319e+29 -5.2349946e+29 -5.2254426e+29 -5.2920696e+29 -5.2934886e+29 -5.2934886e+29 -5.2682925e+29 -5.255877e+29 -5.3457737e+29 -5.3287251e+29 -5.3467145e+29 -5.3467145e+29 -5.3464156e+29 -5.2875689e+29 -5.3082758e+29 -5.4485981e+29 -5.4586299e+29 -5.4252377e+29 -5.438153e+29 -5.4077636e+29 -5.3811848e+29 -5.6962063e+29 -5.7079408e+29 -5.5146756e+29 -5.5069384e+29 -5.4998822e+29 -5.5245901e+29 -5.4825365e+29 -5.4729687e+29 -5.4936306e+29 -5.4880858e+29 -5.5564381e+29 -5.5652314e+29 -5.53923e+29 -5.5477657e+29 -5.593362e+29 -5.6026052e+29 -5.5742967e+29 -5.5835293e+29 -5.6485817e+29 -5.6579851e+29 -5.6579851e+29 -5.6596165e+29 -5.6819626e+29 -5.6819626e+29 -5.6835722e+29 -5.671295e+29 -5.6377973e+29 -5.6360498e+29 -5.6360498e+29 -5.6134201e+29 -5.6252246e+29 -5.6264446e+29 -5.6024528e+29 -5.2364283e+29 -5.2454039e+29 -5.3080258e+29 -5.3132647e+29 -5.3091897e+29 -5.3091897e+29 -5.2776613e+29 -5.2954249e+29 -5.2629708e+29 -5.3634378e+29 -5.3952196e+29 -5.3814037e+29 -5.3421095e+29 -5.3583639e+29 -5.3583639e+29 -5.3580854e+29 -5.3283798e+29 -5.4576685e+29 -5.4653709e+29 -5.4384886e+29 -5.4487673e+29 -5.4210082e+29 -5.5153101e+29 -5.507485e+29 -5.500493e+29 -5.5236581e+29 -5.5319413e+29 -5.4844198e+29 -5.479084e+29 -5.4742992e+29 -5.4944389e+29 -5.4892253e+29 -5.5569995e+29 -5.5655705e+29 -5.5408269e+29 -5.548679e+29 -5.5934211e+29 -5.6024528e+29 -5.5744712e+29 -5.5835768e+29 -5.6136912e+29 -5.6264446e+29 -5.6024178e+29 -5.2504126e+29 -5.3145717e+29 -5.3224407e+29 -5.3156258e+29 -5.3156258e+29 -5.2837541e+29 -5.3054311e+29 -5.2665548e+29 -5.3715914e+29 -5.4019898e+29 -5.3864849e+29 -5.3475684e+29 -5.3545692e+29 -5.363149e+29 -5.363149e+29 -5.3629535e+29 -5.3353858e+29 -5.4605157e+29 -5.4675608e+29 -5.4437926e+29 -5.4527889e+29 -5.4218462e+29 -5.5155159e+29 -5.5077746e+29 -5.5007396e+29 -5.5240583e+29 -5.5340756e+29 -5.4855796e+29 -5.4812652e+29 -5.4750842e+29 -5.494827e+29 -5.4898656e+29 -5.5572466e+29 -5.5656878e+29 -5.5417918e+29 -5.549162e+29 -5.5935355e+29 -5.6024178e+29 -5.5744933e+29 -5.5835054e+29 -5.3181046e+29 -5.325846e+29 -5.319088e+29 -5.319088e+29 -5.2868834e+29 -5.3101637e+29 -5.3744372e+29 -5.4039955e+29 -5.3884023e+29 -5.3499876e+29 -5.35946e+29 -5.365625e+29 -5.365625e+29 -5.3654846e+29 -5.3378489e+29 -5.4614036e+29 -5.468217e+29 -5.4460899e+29 -5.434259e+29 -5.4542303e+29 -5.4204848e+29 -5.5156771e+29 -5.5244037e+29 -5.535224e+29 -5.4823621e+29 -5.4754897e+29 -5.3276649e+29 -5.375841e+29 -5.4047972e+29 -5.3892921e+29 -5.3511831e+29 -5.3616706e+29 -5.3389609e+29 -5.4618344e+29 -5.4684815e+29 -5.4474129e+29 -5.4377275e+29 -5.4550616e+29 -5.4215056e+29 -5.4051148e+29 -5.4394461e+29 -5.4221258e+29 ) ; } procBoundary9to15 { type processor; value nonuniform List<scalar> 12 ( -4.6678129e+29 -5.1365795e+29 -4.6887492e+29 -4.8980622e+29 -5.1444543e+29 -4.6936654e+29 -4.9102443e+29 -5.1490094e+29 -4.6940701e+29 -4.9188288e+29 -5.1490044e+29 -4.919376e+29 ) ; } } // ************************************************************************* //
df459446bec27daa0159150f8f0ca256cd5d63e7
3d82b12a6fc0b3838522f2ef4e579c6bb8c5e7fb
/Practice/34/C++/34.cpp
d765e30e46bd878ae6a564d55a3516b35bf10211
[]
no_license
IbraimAblyametov/Programming-New
63451080f7ac331acaf67a4a747dd2b4f9cd30d9
4e62c10152161a7436482eda65770d07c82d2355
refs/heads/main
2023-04-12T07:46:53.858181
2021-04-18T15:21:10
2021-04-18T15:21:10
347,373,409
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,930
cpp
34.cpp
#include <cstdio> #include <iostream> using namespace std; void create(int** arr, int len, int start = 0, int inc = 0) { if (len <= 0) { cout << "Невозможно создать arr такой длины.\n" << len; return; } *arr = new int[len]; if (!arr) { cout << "Не удалось создать массив такой длины.\n" << len; return; } for (int i = 0; i < len; ++i) { (*arr)[i] = start; start += inc; } } int* sort(int* arr, int z) { if (z <= 0) { cout << "Не удается отсортировать массив такой длины.\n" << z; return arr; } if (!arr) { cout << "Не удается отсортировать массив nullptr.\n"; return arr; } int a, b; for (int c = 1; c < z; ++c) { a = arr[c]; b = c - 1; while (b >= 0 && arr[b] > a) { arr[b + 1] = arr[b]; --b; } arr[b + 1] = a; } return arr; } int* print(int* arr, int l) { if (l == 0) { cout << "[]\n"; return arr; } if (l < 0) { cout << "Невозможно вывести массив такой длины.\n" << l; return arr; } if (!arr) { cout << "Не удается отсортировать массив nullptr.\n"; return arr; } cout << "[" << *arr; for (int i = 1; i < l; ++i) cout << ", " << arr[i]; cout << "]\n"; return arr; } void destroy(int** arr) { if (!*arr) { delete[] * arr; *arr = nullptr; } } int main(int argc, char* argv[]) { setlocale(LC_ALL, "ru"); int l, s, i; int* arr; cin >> l >> s >> i; create(&arr, l, s, i); arr = sort(arr, l); print(arr, l); destroy(&arr); return 0; }
9f0bb45f0337d24b348db391b45b9804882caf39
8b98714453c8b5d8e4a5140073c1608f3544a191
/Solution Folders/Technologies/TSQL/TSQL.cpp
10116e4ac8c3a791fc3c6007d9ef0047e9bb414e
[]
no_license
ctaylor89/DevelopmentInfo
b5b8779ae14522f75678c5329f308a8867a73765
bc98dd7561cc2efa9441884619d3903376ac744c
refs/heads/main
2023-05-12T04:03:12.085518
2023-04-30T04:01:30
2023-04-30T04:01:30
114,716,316
0
0
null
null
null
null
UTF-8
C++
false
false
8,312
cpp
TSQL.cpp
"Conversion_Functions" "Date_Time" "GUID_Statements" "Grouping_Statements" "Insert_Statements" "Select_Statements" "Update_Statements" "Validation_Statements" "Variables" "VIEW_Statements" "_Statements" //******************************************** // "_Statements" //******************************************** //******************************************** // "Conversion_Functions" //******************************************** // PARSE(string_value AS data_type[USING culture]) SELECT PARSE('12/31/2012' AS date) AS YearEndDateUS; // Error converting this value to en - us SELECT PARSE('31/12/2012' AS date USING 'en-US') AS YearEndDate; // This works converting this value to en - GB SELECT PARSE('31/12/2012' AS date USING 'en-GB') AS YearEndDate; // TRY_PARSE(string_value AS data_type[USING culture]) from string to date / time and number types SELECT TRY_PARSE('12/31/2012' AS date) AS YearEndDateUS; // Returns NULL when attempting to convert this value to en - us SELECT TRY_PARSE('31/12/2012' AS date USING 'en-US') AS YearEndDate; // CAST(expression AS data_type[(length)] SELECT CAST('12/31/2012' AS date) AS YearEndDate; // Error converting this value SELECT CAST('31/12/2012' AS date) AS YearEndDate; // TRY_CAST(expression AS data_type[(length)] SELECT TRY_CAST('12/31/2012' AS date) AS YearEndDate; // CONVERT(data_type[(length)], expression[, style]) SELECT CONVERT(date, '12/08/2012', 101) AS YearEndDate; SELECT TRY_CONVERT(date, '12/08/2012', 101) AS YearEndDate; // Practise: Create a default password DECLARE @DefaultPwd AS Nchar(8); SET @DefaultPwd = CAST(Left(NEWID(), 8) AS Nchar(8)); PRINT N'DefaultPwd is: ' + RTRIM(CAST(@DefaultPwd AS Nchar(8)) //******************************************** // "Date_Time" //******************************************** //******************************************** // "GUID_Statements" //******************************************** // Assign uniqueidentifier in a variable DECLARE @EmployeeID uniqueidentifier SET @EmployeeID = NEWID() // Inserting data in Employees table. INSERT INTO Employees (EmployeeID, Name, Phone) VALUES (NEWID(), 'John Kris', '99-99999') //******************************************** // "Grouping_Statements" //******************************************** // Get the Order Qty grouped by ProductID(Primary) and SpecialOfferID(Secondary) SELECT ProductID, SpecialOfferID, SUM([OrderQty]) AS[OrderQtyByProductID] FROM Sales.SalesOrderDetail GROUP BY ProductID, SpecialOfferID ORDER BY ProductID, SpecialOfferID; // Having clause example SELECT sod.ProductID, sod.SpecialOfferID, SUM(sod.OrderQty) AS OrderQtyByProductID FROM Sales.SalesOrderDetail AS sod GROUP BY sod.ProductID, SOD.SpecialOfferID HAVING SUM(sod.OrderQty) >= 5000 ORDER BY sod.ProductID, SOD.SpecialOfferID; ______________________________________ // Complete example for grouping sets CREATE TABLE tbl_Employee ( Employee_Name varchar(25), Region varchar(50), Department varchar(40), sal int, CONSTRAINT UNQ_Employee_sal UNIQUE(sal) ); INSERT into tbl_Employee ( Employee_Name, Region, Department, sal ) VALUES ('Shujaat', 'North America', 'Information Technology', 9999), ('Andrew', 'Asia Pacific', 'Information Technology', 5555), ('Maria', 'North America', 'Human Resources', 4444), ('Stephen', 'Middle East & Africa', 'Information Technology', 8889), ('Stephen', 'Middle East & Africa', 'Human Resources', 8888); SELECT Region, Department, avg(sal) Average_Salary from tbl_Employee Group BY GROUPING SETS ( (Region, Department), -- Avg salary for each within each region.department = null (Region), -- Avg salary for each region (Department), -- Avg salary for each department. region = null () -- Avg salary for all employees. region = null, department = null ); ________________________________________________________________ // Get the Order Qty grouped by ProductID(Primary) and SpecialOfferID(Secondary) SELECT ProductID, SpecialOfferID, SUM([OrderQty]) AS[OrderQtyByProductID] FROM Sales.SalesOrderDetail GROUP BY ProductID, SpecialOfferID ORDER BY ProductID, SpecialOfferID; // Groups two sets. // Set 1: Select ProductID, SpecialOfferID, OrderQty and group by ProductID and SpecialOfferID // Set 2 : Select ProductID, SpecialOfferID, OrderQty and group by SpecialOfferID. This set will contain NULL for // ProductID because were getting a qty for each SpecialOfferID that is made up of many rows with different ProductID's. SELECT sod.ProductID, sod.SpecialOfferID, SUM(sod.OrderQty) AS OrderQtyByProductID FROM Sales.SalesOrderDetail AS sod GROUP BY GROUPING SETS((sod.ProductID, sod.SpecialOfferID), (sod.SpecialOfferID)) ORDER BY sod.ProductID, sod.SpecialOfferID; //******************************************** // "Insert_Statements" //******************************************** INSERT INTO dbo.Department VALUES (2009, 7708, 44.00), (2019, 7709, 54.00), (2029, 7718, 144.00); // Insert from table into table variable INSERT INTO @CostTracker(Quantity, TotalCost) SELECT[Quantity], ([Quantity] * [ActualCost]) FROM[Production].[TransactionHistory]; //******************************************** // "Select_Statements" //******************************************** -- Total Number of Rows in Table SELECT COUNT(*) TotalRows FROM Sales.SalesOrderDetail -- Total Count of Rows Grouped by ORDERQty SELECT COUNT(*) Cnt, OrderQty FROM Sales.SalesOrderDetail GROUP BY OrderQty ORDER BY OrderQty -- Example of Top 10 Records SELECT TOP 10 * FROM Sales.SalesOrderDetail ORDER BY OrderQty -- Example of Top 10 WITH TIES SELECT TOP 10 WITH TIES * FROM Sales.SalesOrderDetail ORDER BY OrderQty //******************************************** // "Update_Statements" //******************************************** UPDATE HumanResources.Employee SET JobTitle = N'Executive' WHERE NationalIDNumber = 123456789 IF @@ROWCOUNT = 0 PRINT 'Warning: No rows were updated'; //******************************************** // "Validation_Statements" //******************************************** // Validating data types // ISDATE returns 0 or 1 DECLARE @Name nvarchar(50) = 'xy14822'; DECLARE @DiscontinuedDate datetime = '12/4/12'; SELECT ISDATE(@Name) AS NameIsDate, ISDATE(@DiscontinuedDate) AS DiscontinuedDateIsDate; GO // ISNUMERIC returns 0 or 1 DECLARE @Name nvarchar(50) = 'xy14822'; DECLARE @DiscontinuedDate datetime = '12/4/12'; DECLARE @DaysToProcess int = 100; SELECT ISNUMERIC(@Name) AS NameIsNumeric, ISNUMERIC(@DiscontinuedDate) AS DiscontinuedDateIsNumeric, ISNUMERIC(@DaysToProcess) AS DaysToProcessIsNumeric; //******************************************** // Variables //******************************************** http://odetocode.com/articles/365.aspx // Declare two variables. DECLARE @FirstNameVariable nvarchar(50), @PostalCodeVariable nvarchar(15); // Set their values. You can also assign these values using = when declared. SET @FirstNameVariable = N'Amy'; SET @PostalCodeVariable = N'BA5 3HX'; _____________________________________ // Create a Table Variable DECLARE @CostTracker TABLE ( [Quantity] int NOT NULL, [TotalCost] money NOT NULL, [MyCost] money NULL ); // Insert data from TransactionHistory table into Table Variable INSERT INTO @CostTracker(Quantity, TotalCost) SELECT Quantity, ([Quantity] * [ActualCost]) AS [TotalCost] FROM Production.TransactionHistory; // Select contents of the Table Variable SELECT Quantity, TotalCost FROM @CostTracker // Update a table variable UPDATE @CostTracker SET[MyCost] = 777.77 WHERE[Quantity] = 550; // Delete from a table variable DELETE FROM @CostTracker WHERE Quantity = 550; //******************************************** // "VIEW_Statements" //******************************************** IF OBJECT_ID('vPerson', 'V') IS NOT NULL DROP VIEW vPerson; GO CREATE VIEW vPerson AS SELECT[FirstName], [LastName], [Title] FROM[Person].[Person] WHERE Title IS NOT NULL; GO SELECT[FirstName], [LastName], [Title] FROM vPerson; __________________________________
79dafeee6169eec735162f7bad7a527579c9ceec
83934308b6a84a6b997563bd93f95bca7f6f1bc2
/firstTest/Classes/SpaceGame/CSpaceGame.hpp
bcbb9d28c31503e57c4c171c8e0c62b8119fd488
[]
no_license
marmusevich/cocos2dx_c-
a726bd2727ac79b89fcc935115113c4db031f23f
2ff8dfbff0219caeb4185b33269090a4ce03e397
refs/heads/master
2023-02-18T19:04:28.764180
2021-01-20T09:51:20
2021-01-20T09:51:20
283,980,191
0
0
null
null
null
null
MacCentralEurope
C++
false
false
2,350
hpp
CSpaceGame.hpp
// see : https://www.raywenderlich.com/2728-cocos2d-x-tutorial-for-ios-and-android-space-game // #ifndef SPACEGAME_CSPACEGAME_SCENE_H #define SPACEGAME_CSPACEGAME_SCENE_H #include "cocos2d.h" class CSpaceGame : public cocos2d::Scene { public: // implement the "static create()" method manually CREATE_FUNC(CSpaceGame); static cocos2d::Scene* createScene(); virtual bool init(); class ParallaxNodeExtras : public cocos2d::ParallaxNode { public: // Need to provide a constructor ParallaxNodeExtras(); // just to avoid ugly later cast and also for safety static ParallaxNodeExtras* create(); // Facility method (itís expected to have it soon in COCOS2DX) void incrementOffset(cocos2d::Point offset, cocos2d::Node* node); }; private: void menuCloseCallback(cocos2d::Ref* pSender); bool addCloseButton(const cocos2d::Size& visibleSize, const cocos2d::Vec2& origin); bool addShip(const cocos2d::Size& visibleSize); bool addBackgrund(const cocos2d::Size& visibleSize); bool addAsteroid(const cocos2d::Size& visibleSize); bool addLaser(const cocos2d::Size& visibleSize); void onKeyPressed(cocos2d::EventKeyboard::KeyCode keyCode, cocos2d::Event* event); void onKeyReleased(cocos2d::EventKeyboard::KeyCode keyCode, cocos2d::Event* event); void onTouchesMoved(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event); virtual void update(float dt); float getTimeTick(); float randomValueBetween(float low, float high); void setInvisible(Node* node); void onFire(); typedef enum { KENDREASONWIN, KENDREASONLOSE } EndReason; void endScene(EndReason endReason); void restartTapped(Ref* pSender); //------------------------------------------ cocos2d::SpriteBatchNode* m_batchNode; cocos2d::Sprite* m_ship; ParallaxNodeExtras* m_backgroundNode; cocos2d::Sprite* m_spaceDust1; cocos2d::Sprite* m_spaceDust2; cocos2d::Sprite* m_planetSunrise; cocos2d::Sprite* m_galaxy; cocos2d::Sprite* m_spatialAnomaly1; cocos2d::Sprite* m_spatialAnomaly2; float m_shipPointsPerSecY = 0.0f; cocos2d::Vector<cocos2d::Sprite*>* m_asteroids; int m_nextAsteroid = 0; float m_nextAsteroidSpawn = 0.0f; cocos2d::Vector<cocos2d::Sprite*>* m_shipLasers; int m_nextShipLaser = 0; int m_lives = 0; double m_gameOverTime; bool m_gameOver = false; }; #endif // SPACEGAME_CSPACEGAME_SCENE_H
d4630f1012117b0875edd570d460d35a2e615a38
0cf009d18eac6f53aa61d8feaf4720606222a795
/week8/src/subsets-ii.cpp
91e4e6c79258bc7b81b9025eee0808db1905e157
[]
no_license
xujj25/leetcode-HW
49586fc12777cc0c8f26eef9a319d69f36600f8b
ad7a49d63353da4749171b75b28adb9d5eaf29eb
refs/heads/master
2021-01-23T09:46:26.329702
2018-02-03T08:08:37
2018-02-03T08:08:37
102,600,392
0
0
null
null
null
null
UTF-8
C++
false
false
1,165
cpp
subsets-ii.cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; class Solution { public: vector<vector<int> > subsetsWithDup(vector<int>& nums) { vector<vector<int> > result; if (nums.empty()) return result; result.resize(1); sort(nums.begin(), nums.end()); int lastNum = nums[0], size = 1, newResSize; int i, j; for (i = 0; i < nums.size(); i++) { if (lastNum != nums[i]) { lastNum = nums[i]; size = result.size(); } newResSize = result.size(); for (j = newResSize - size; j < newResSize; j++) { result.push_back(result[j]); result.back().push_back(nums[i]); } } return result; } }; int main(int argc, char const *argv[]) { int arr[3] = {1, 2, 2}; vector<int> nums(arr, arr + 3); vector<vector<int> > res = Solution().subsetsWithDup(nums); int i, j; for (i = 0; i < res.size(); i++) { for (j = 0; j < res[i].size(); j++) cout << res[i][j] << " "; cout << endl; } return 0; }
ab65aa2e4b0dc4513762fe57131babd15448b196
531444462e036faf977c29f2f40380f18e8e51ba
/test.cpp
5f6c0e268b33b84d7f2d28d9387ba696b52adcce
[]
no_license
RainerBlessing/Dungeon-Crawler
042e99e509652a69639c779777ca3db8c7be495f
7e39d4449f2e57e5ea20dc1de76aa0da630e26f2
refs/heads/master
2022-10-26T07:28:44.342053
2020-06-12T22:08:52
2020-06-12T22:08:52
271,898,059
0
0
null
null
null
null
UTF-8
C++
false
false
1,227
cpp
test.cpp
#include "pch.h" #include "Item.h" #include "GameCharacter.h" #include "Room.h" #include "Player.h" TEST(Item, SetupParameters) { Item i = Item("test", 1, 2, 3); EXPECT_EQ(i.name,"test"); EXPECT_EQ(i.health,1); EXPECT_EQ(i.attack,2); EXPECT_EQ(i.defence,3); } TEST(GameCharacter, SetupParameters) { GameCharacter i = GameCharacter("test", 1, 2, 3); EXPECT_EQ(i.name, "test"); EXPECT_EQ(i.health, 1); EXPECT_EQ(i.attack, 2); EXPECT_EQ(i.defence, 3); } TEST(GameCharacter, TakeDamage) { GameCharacter i = GameCharacter("test", 10, 2, 3); //Player survives EXPECT_EQ(i.takeDamage(5),2); EXPECT_EQ(i.currentHealth,8); EXPECT_EQ(i.checkIsDead(), false); //Player dies EXPECT_EQ(i.takeDamage(20),17); EXPECT_EQ(i.currentHealth, 0); EXPECT_EQ(i.checkIsDead(), true); } TEST(Room, SetupParameters) { vector<Item> items; vector<GameCharacter> enemies; Room r = Room(0, true, items , enemies); } TEST(Player, LootRoom) { vector<Item> items; Item i = Item("item", 1, 2, 3); items.push_back(i); vector<GameCharacter> enemies; Room r = Room(0, true, items, enemies); Player p = Player("player", 10, 2, 3); p.lootRoom(&r); EXPECT_EQ(p.inventory.size(), 1); EXPECT_EQ(r.items.size(), 0); }
6ebb93a44d505f3c65dc7f8645c3c5de53c1b325
5f490cb59a1f29c4c2002b57de3a1b454819082a
/Epona/sources/Analysis.cpp
6d5ed8be900cd04fd3e1815065afea9b49c90ee5
[ "MIT" ]
permissive
Godlike/Epona
9b591b0bc43beb362ec92f28b53a3154ab506e9b
99e20f55e67963e9578c18b0fe822218d982e112
refs/heads/master
2021-07-11T21:45:59.513809
2018-12-21T22:55:24
2018-12-21T23:52:51
109,888,945
0
0
MIT
2018-12-21T23:52:52
2017-11-07T20:46:41
C++
UTF-8
C++
false
false
1,546
cpp
Analysis.cpp
/* * Copyright (C) 2017-2018 by Godlike * This code is licensed under the MIT license (MIT) * (http://opensource.org/licenses/MIT) */ #include <Epona/FloatingPoint.hpp> #include <Epona/Analysis.hpp> #include <glm/glm.hpp> float epona::LineSegmentPointDistance( glm::vec3 const& lineStart, glm::vec3 const& lineEnd, glm::vec3 point ) { point = point - lineStart; glm::vec3 const lineDirection = glm::normalize(lineEnd - lineStart); glm::vec3 const pointLineProjection = glm::dot(lineDirection, point) * lineDirection; return glm::distance(point, pointLineProjection); } glm::vec3 epona::CalculateBarycentricCoordinates(glm::vec3 p, glm::vec3 a, glm::vec3 b, glm::vec3 c) { glm::vec3 const v0 = b - a; glm::vec3 const v1 = c - a; glm::vec3 const v2 = p - a; float const d00 = glm::dot(v0, v0); float const d01 = glm::dot(v0, v1); float const d11 = glm::dot(v1, v1); float const d20 = glm::dot(v2, v0); float const d21 = glm::dot(v2, v1); float const denominator = d00 * d11 - d01 * d01; glm::vec3 coordinates{ 1, 0, 0 }; if (!fp::IsZero(denominator)) { coordinates.y = (d11 * d20 - d01 * d21) / denominator; coordinates.z = (d00 * d21 - d01 * d20) / denominator; coordinates.x = 1.0f - coordinates.y - coordinates.z; } assert(!glm::isnan(coordinates.x) && !glm::isnan(coordinates.y) && !glm::isnan(coordinates.z)); assert(!glm::isinf(coordinates.x) && !glm::isinf(coordinates.y) && !glm::isinf(coordinates.z)); return coordinates; }
3b0a2d8ea5b3838f017c83505bb97db76b5d8d54
d7053573f166d0b2ccf4b939ebfe775189c8288f
/Experiments_ArDrone2/cvdrone-examples-cmake/samples/sample_camera_calibration.cpp
fd4117a0fbe8336cd13fb660a01d3fce8d234717
[]
no_license
gakarak/UAV_Projects
51812b903458111b2a0b03f23d5d48b1542529fa
bf8ce6e982f37575bfcfe6103b65d39346f9d14c
refs/heads/master
2020-05-22T07:58:47.315363
2017-05-18T15:17:21
2017-05-18T15:17:21
57,395,165
0
2
null
null
null
null
UTF-8
C++
false
false
8,602
cpp
sample_camera_calibration.cpp
#include "ardrone.h" // Execute calibration #define CALIB_MODE 1 // ON:1 OFF:0 // Parameter for calibration pattern #define PAT_ROW (7) // Rows of pattern #define PAT_COL (10) // Columns of pattern #define PAT_SIZE (PAT_ROW*PAT_COL) #define CHESS_SIZE (24.0) // Size of a pattern [mm] // -------------------------------------------------------------------------- // cvDrawText(Image, Drowing point, Messages) // Description : Draw the specified text. // Return value : NONE // -------------------------------------------------------------------------- inline void cvDrawText(IplImage *image, CvPoint point, const char *fmt, ...) { // Font static CvFont font = cvFont(1.0); // Apply format char text[256]; va_list ap; va_start(ap, fmt); vsprintf(text, fmt, ap); va_end(ap); // Draw the text cvPutText(image, text, point, &font, cvScalarAll(255)); } // -------------------------------------------------------------------------- // cvAsk(Message) // Description : Show a question. // Return value : NO:0 YES:1 // -------------------------------------------------------------------------- inline int cvAsk(const char *message, ...) { char *arg; char str[256]; // Apply format va_start(arg, message); vsprintf(str, message, arg); va_end(arg); // Show message box //TODO: fix with Qt-MessageBox dialog // return (MessageBox(NULL, str, "QUESTION", MB_YESNO|MB_ICONQUESTION|MB_TOPMOST|MB_SETFOREGROUND) == IDYES); return 0; } #if CALIB_MODE // -------------------------------------------------------------------------- // main(Number of arguments, Argument values) // Description : This is the entry point of the program. // Return value : SUCCESS:0 ERROR:-1 // -------------------------------------------------------------------------- int main(int argc, char **argv) { // AR.Drone class ARDrone ardrone; // Initialize if (!ardrone.open()) { printf("Failed to initialize.\n"); return -1; } // Images std::vector<IplImage*> images; printf("Press space key to take a sample picture !\n"); // Main loop while (1) { // Key input int key = cvWaitKey(1); if (key == 0x1b) break; // Update if (!ardrone.update()) break; // Get an image IplImage *image = ardrone.getImage(); // If you push Space key if (key == ' ') { // Convert the camera image to grayscale IplImage *gray = cvCreateImage(cvGetSize(image), IPL_DEPTH_8U, 1); cvCvtColor(image, gray, CV_BGR2GRAY); // Detect the chessboard int corner_count = 0; CvSize size = cvSize(PAT_COL, PAT_ROW); CvPoint2D32f corners[PAT_SIZE]; int found = cvFindChessboardCorners(gray, size, corners, &corner_count); // Detected if (found) { // Draw corners. cvDrawChessboardCorners(image, size, corners, corner_count, found); // Add to buffer images.push_back(gray); //Beep(3000, 100); } // Failed to detect else { // Release the image cvReleaseImage(&gray); //Beep(100, 100); } } // Display the image cvDrawText(image, cvPoint(15, 20), "NUM = %d", (int)images.size()); cvShowImage("camera", image); } // Destroy the window cvDestroyWindow("camera"); // At least one image was taken if (!images.empty()) { // Total number of images const int num = (int)images.size(); //// For debug //for (int i = 0; i < num; i++) { // char name[256]; // sprintf(name, "images[%d/%d]", i+1, num); // cvShowImage(name, images[i]); // cvWaitKey(0); // cvDestroyWindow(name); //} // Ask save parameters or not if (cvAsk("Do you save the camera parameters ?\n")) { // Detect coners int *p_count = (int*)malloc(sizeof(int) * num); CvPoint2D32f *corners = (CvPoint2D32f*)cvAlloc(sizeof(CvPoint2D32f) * num * PAT_SIZE); for (int i = 0; i < num; i++) { // Detect chessboard int corner_count = 0; CvSize size = cvSize(PAT_COL, PAT_ROW); int found = cvFindChessboardCorners(images[i], size, &corners[i * PAT_SIZE], &corner_count); // Convert the corners to sub-pixel cvFindCornerSubPix(images[i], &corners[i * PAT_SIZE], corner_count, cvSize(3, 3), cvSize(-1, -1), cvTermCriteria(CV_TERMCRIT_ITER|CV_TERMCRIT_EPS, 20, 0.03)); p_count[i] = corner_count; } // Set the 3D position of patterns CvPoint3D32f *objects = (CvPoint3D32f*)cvAlloc(sizeof(CvPoint3D32f) * num * PAT_SIZE); for (int i = 0; i < num; i++) { for (int j = 0; j < PAT_ROW; j++) { for (int k = 0; k < PAT_COL; k++) { objects[i * PAT_SIZE + j * PAT_COL + k].x = j * CHESS_SIZE; objects[i * PAT_SIZE + j * PAT_COL + k].y = k * CHESS_SIZE; objects[i * PAT_SIZE + j * PAT_COL + k].z = 0.0; } } } // Create matrices CvMat object_points, image_points, point_counts; cvInitMatHeader(&object_points, num * PAT_SIZE, 3, CV_32FC1, objects); cvInitMatHeader(&image_points, num * PAT_SIZE, 1, CV_32FC2, corners); cvInitMatHeader(&point_counts, num, 1, CV_32SC1, p_count); // Estimate intrinsic parameters and distortion coefficients printf("Calicurating parameters..."); CvMat *intrinsic = cvCreateMat(3, 3, CV_32FC1); CvMat *distortion = cvCreateMat(1, 4, CV_32FC1); cvCalibrateCamera2(&object_points, &image_points, &point_counts, cvGetSize(images[0]), intrinsic, distortion); printf("Finished !\n"); // Output a file printf("Generating a XML file..."); CvFileStorage *fs = cvOpenFileStorage("camera.xml", 0, CV_STORAGE_WRITE); cvWrite(fs, "intrinsic", intrinsic); cvWrite(fs, "distortion", distortion); cvReleaseFileStorage(&fs); printf("Finished !\n"); // Release the matrices free(p_count); cvFree(&corners); cvFree(&objects); cvReleaseMat(&intrinsic); cvReleaseMat(&distortion); } // Release the images for (int i = 0; i < num; i++) cvReleaseImage(&images[i]); } // See you ardrone.close(); return 0; } #else // -------------------------------------------------------------------------- // main(Number of arguments, Argument values) // Description : This is the entry point of the program. // Return value : SUCCESS:0 ERROR:-1 // -------------------------------------------------------------------------- int main(int argc, char **argv) { // AR.Drone class ARDrone ardrone; // Initialize if (!ardrone.open()) { printf("Failed to initialize.\n"); return -1; } // Image of AR.Drone's camera IplImage *image = ardrone.getImage(); // Read intrincis camera parameters CvFileStorage *fs = cvOpenFileStorage("camera.xml", 0, CV_STORAGE_READ); CvMat *intrinsic = (CvMat*)cvRead(fs, cvGetFileNodeByName(fs, NULL, "intrinsic")); CvMat *distortion = (CvMat*)cvRead(fs, cvGetFileNodeByName(fs, NULL, "distortion")); // Initialize undistortion maps CvMat *mapx = cvCreateMat(image->height, image->width, CV_32FC1); CvMat *mapy = cvCreateMat(image->height, image->width, CV_32FC1); cvInitUndistortMap(intrinsic, distortion, mapx, mapy); // Main loop while (1) { // Key input int key = cvWaitKey(1); if (key == 0x1b) break; // Update if (!ardrone.update()) break; // Get an image image = ardrone.getImage(); // Remap the image cvRemap(image, image, mapx, mapy); // Display the image cvShowImage("camera", image); } // Release the matrices cvReleaseMat(&mapx); cvReleaseMat(&mapy); cvReleaseFileStorage(&fs); // See you ardrone.close(); return 0; } #endif
9924e33ce8f82f6872faf7ca2e8e4ad2d0a70cfe
9ca2f63f855906695b4b587f137257a7793a75bb
/Rec/Muon/MuonID/src/component/Interpolator.cpp
ee79e8d578314d0d3ed1314c4dd20e9bc6af6bcb
[]
no_license
kidaak/lhcbsoft
a59ffb6c884e5b6e2d28740551d3c49f8338ec3d
b22a1dfea5d4d572e318d1e5d05dfb7484da5f3d
refs/heads/master
2021-01-22T16:53:18.266147
2015-12-10T14:40:48
2015-12-10T14:40:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,901
cpp
Interpolator.cpp
// $Id: Interpolator.cpp,v 1.1 2009-07-01 18:27:11 polye Exp $ // Include files // local #include "Interpolator.h" #include <iostream> //----------------------------------------------------------------------------- // Implementation file for class : Uniformer // // 2008-07-10 : Jose Angel Hernando Morata // Xabier Cid Vidal //----------------------------------------------------------------------------- //============================================================================= // Standard constructor, initializes variables //============================================================================= Uniformer::Uniformer(const std::vector<double>& xpoints_in,const std::vector<double>& ypoints_in) { //xpoint to interpolate in 2D m_xpoints=xpoints_in; //y points to interpolate in 2D m_ypoints=ypoints_in; //number of points m_npoints=m_xpoints.size(); m_nbins=m_npoints-1; for (int i=1;i<m_npoints;i++){ //build interpolator between each pair of consecutive points interpolator i1=interpolator(m_xpoints[i-1],m_xpoints[i],m_ypoints[i-1],m_ypoints[i]); m_uniformer.push_back(i1); } //std::cout <<"Uniformer correctly created"<<std::endl; } //find which bin corresponds to val int Uniformer::findBin(const double& xval) { int out_bin=-5; //loop over all bins to look up for (int i=1;i<m_npoints;i++){ if (m_xpoints[i-1]<=xval && m_xpoints[i]>xval) out_bin=i-1; } //if last bin if (out_bin==-5) { if (xval>=m_xpoints[m_npoints-1]) out_bin= m_nbins; else out_bin=-1; } //std::cout<< " bin in uniformer is "<<out_bin<<std::endl; return out_bin; } //get bin and calculate result from corresponding interpolator double Uniformer::getYvalue(const double& xval) { int dind=findBin(xval); if (dind>=0 && dind<m_nbins) return m_uniformer[dind].value(xval); if (dind==-1) return 0.; return 1.; }
3afccd595208e23a7129b7c0e82fcc6d3c113322
2b4dd17b278dee70383b866c9ed0ca8cae3ddd1e
/src/common/socket/OW_SSLCtxMgr.hpp
9a05eda0326a66de6d91fd84a6804c1d80c7cfd4
[ "BSD-3-Clause" ]
permissive
murisfurder/openwbem
165344e13f9b189be3a4b5a8ee65ace2c490d64d
5c688eefc1f8e35a4b1c58529aae5f114c25c2a8
refs/heads/master
2021-01-16T23:00:11.194124
2012-09-27T10:59:55
2012-09-27T12:36:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,640
hpp
OW_SSLCtxMgr.hpp
/******************************************************************************* * Copyright (C) 2001-2004 Vintela, Inc. All rights reserved. * Copyright (C) 2004 Novell, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * - Neither the name of Vintela, Inc. 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 Vintela, Inc. OR THE CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *******************************************************************************/ /** * @author Bart Whiteley * @author Dan Nuffer */ #ifndef OW_SSLCtxMgr_HPP_INCLUDE_GUARD_ #define OW_SSLCtxMgr_HPP_INCLUDE_GUARD_ #include "OW_config.h" #include "OW_SSLException.hpp" #include "OW_IntrusiveCountableBase.hpp" #include "OW_IntrusiveReference.hpp" #include "OW_Map.hpp" #ifdef OW_HAVE_OPENSSL #include "OW_String.hpp" #include <openssl/crypto.h> #include <openssl/ssl.h> #include <openssl/bio.h> #define OW_SSLCTX_MAX_CN_LEN 256 #define OW_SSL_RETRY_LIMIT 20 namespace OW_NAMESPACE { /** * Verify a X509 certificate. * @param cert a pointer to the certificate to verify. * @return 1 if the certificate is good, 0 if the certificate is bad. * If 0 is returned, the SSL handshake will abort. */ typedef int (*certVerifyFuncPtr_t)(X509* cert, const String& hostName); // TODO: Make this class be a singleton. class OW_COMMON_API SSLCtxMgr { public: /** * The callback for getting a passphrase on a certificate. */ static int pem_passwd_cb(char* buf, int size, int rwflag, void *userData); /** * Check a certificate based on the callback function for client cert * verification. * @param ssl A pointer to the SSL context * @param hostname the hostname of the client machine * @return True if the certificate is good, false otherwise */ static bool checkClientCert(SSL* ssl, const String& hostName); /** * Check a certificate based on the callback function for server cert * verification. * @param ssl A pointer to the SSL context * @param hostname the hostname of the server machine * @return True if the certificate is good, false otherwise */ static bool checkServerCert(SSL* ssl, const String& hostName); /** * Initialize for a client * @param certFile the path to the file containing the certificate. * @param keyFile the path to the file containing the key. If a certificate is * specified but a key is not, the certificate file will also be searched for a key. * @exception SSLException */ static void initClient(const String& certFile = String(), const String& keyFile = String()); /** * Initialize for a server * @param certFile the path to the file containing the certificate. * @param keyFile the path to the file containing the key. If a certificate is * specified but a key is not, the certificate file will also be searched for a key. * @exception SSLException */ static void initServer(const String& certFile, const String& keyFile = String()); /** * get the Server SSL Context * @return the server SSL_CTX */ static SSL_CTX* getSSLCtxServer() { return m_ctxServer; } /** * get the Client SSL Context * @return the client SSL_CTX */ static SSL_CTX* getSSLCtxClient() { return m_ctxClient; } /** * Read from a SSL connection * @param ssl a pointer to the SSL Context for the connection * @param buf a pointer to a buffer where data should be copied. * @param len the number of bytes to read. * @return the number of bytes read. * @exception SSLException */ static int sslRead(SSL* ssl, char* buf, int len); /** * Write to a SSL connection * @param ssl a pointer to a SSL Context for the connection * @param buf the buffer containing the data to write. * @param len the number of bytes to write. * @return the number of bytes written. * @exception SSLException */ static int sslWrite(SSL* ssl, const char* buf, int len); /** * Have we been initialized as a client? * @return true if initialized as a client */ static bool isClient() { return m_ctxClient != NULL; } /** * Have we been initialized as a server? * @return true if initialized as a server */ static bool isServer() { return m_ctxServer != NULL; } /** * Assign a callback function to be used to verify SSL certificates. * @param cbfunc the callback function. Signature: * typedef void (*certVerifyFuncPtr_t)(X509* cert); */ static void setClientCertVerifyCallback(certVerifyFuncPtr_t cbfunc) { m_clientCertVerifyCB = cbfunc; } /** * Assign a callback function to be used to verify SSL certificates. * @param cbfunc the callback function. Signature: * typedef void (*certVerifyFuncPtr_t)(X509* cert); */ static void setServerCertVerifyCallback(certVerifyFuncPtr_t cbfunc) { m_serverCertVerifyCB = cbfunc; } // set type to NOT_INIT and free memory. static void uninit(); /** * @throws SSLException */ static void generateEphRSAKey(SSL_CTX* ctx); static String getOpenSSLErrorDescription(); private: friend class SSLCtxBase; static SSL_CTX* m_ctxClient; static SSL_CTX* m_ctxServer; static certVerifyFuncPtr_t m_clientCertVerifyCB; static certVerifyFuncPtr_t m_serverCertVerifyCB; /** * @throws SSLException */ static SSL_CTX* initCtx(const String& certfile, const String& keyfile); /** * @throws SSLException */ static void loadDHParams(SSL_CTX* ctx, const String& file); static void uninitServer(); static void uninitClient(); // don't allow instantiation SSLCtxMgr(); SSLCtxMgr(const SSLCtxMgr&); SSLCtxMgr& operator=(const SSLCtxMgr&); /** * This probably needs to say something useful. */ static bool checkCert(SSL* ssl, const String& hostName, certVerifyFuncPtr_t cbFunc); }; ////////////////////////////////////////////////////////////////////////////// struct OW_COMMON_API SSLOpts { SSLOpts(); String certfile; String keyfile; String trustStore; enum VerifyMode_t { MODE_DISABLED, MODE_REQUIRED, MODE_OPTIONAL, MODE_AUTOUPDATE }; VerifyMode_t verifyMode; }; ////////////////////////////////////////////////////////////////////////////// class OW_COMMON_API SSLCtxBase { public: SSL_CTX* getSSLCtx() const; protected: SSLCtxBase(const SSLOpts& opts); virtual ~SSLCtxBase(); SSL_CTX* m_ctx; }; ////////////////////////////////////////////////////////////////////////////// class OW_COMMON_API SSLServerCtx : public SSLCtxBase, public IntrusiveCountableBase { public: SSLServerCtx(const SSLOpts& opts); static const int SSL_DATA_INDEX = 0; }; ////////////////////////////////////////////////////////////////////////////// class OW_COMMON_API SSLClientCtx : public SSLCtxBase, public IntrusiveCountableBase { public: SSLClientCtx(const SSLOpts& opts = SSLOpts()); }; typedef IntrusiveReference<SSLServerCtx> SSLServerCtxRef; typedef IntrusiveReference<SSLClientCtx> SSLClientCtxRef; ////////////////////////////////////////////////////////////////////////////// class OW_COMMON_API SSLTrustStore: public IntrusiveCountableBase { public: SSLTrustStore(const String& storeLocation); void addCertificate(X509* cert, const String& user, const String& uid); bool getUser(const String& certhash, String& user, String& uid); static String getCertMD5Fingerprint(X509* cert); private: String m_store; String m_mapfile; struct UserInfo { String user; String uid; }; #ifdef OW_WIN32 #pragma warning (push) #pragma warning (disable: 4251) #endif Map<String, UserInfo> m_map; #ifdef OW_WIN32 #pragma warning (pop) #endif void readMap(); void writeMap(); }; typedef IntrusiveReference<SSLTrustStore> SSLTrustStoreRef; ////////////////////////////////////////////////////////////////////////////// struct OW_COMMON_API OWSSLContext { enum CertVerifyState_t { VERIFY_NONE, VERIFY_PASS, VERIFY_FAIL }; OWSSLContext(); ~OWSSLContext(); CertVerifyState_t peerCertPassedVerify; }; ////////////////////////////////////////////////////////////////////////////// #else // ifdef OW_HAVE_OPENSSL namespace OW_NAMESPACE { class OW_COMMON_API SSLServerCtx : public IntrusiveCountableBase { }; class OW_COMMON_API SSLClientCtx : public IntrusiveCountableBase { }; #endif // ifdef OW_HAVE_OPENSSL typedef IntrusiveReference<SSLServerCtx> SSLServerCtxRef; typedef IntrusiveReference<SSLClientCtx> SSLClientCtxRef; } // end namespace OW_NAMESPACE #endif
aaede6db7ca20b44e6536f8631fc59ee871808d8
1353828b8ab4bcbb1393b04c574a86e4c38cbb2e
/Class_and_objects.cpp
5df5387e20baceef27173bc2f7b277c4dcb5b7a9
[]
no_license
rupal11/Hackerrank-Cpp
b26014e4b4489f6f8003cc69e27da04ca59683f1
2231fb85d90beead8b276cbe74c34b12f2ddd652
refs/heads/master
2022-12-05T09:17:28.023333
2020-09-05T16:50:04
2020-09-05T16:50:04
270,403,462
0
0
null
null
null
null
UTF-8
C++
false
false
306
cpp
Class_and_objects.cpp
class Student{ private : float scores[5]; public : void input(); float calculateTotalScore(); }; void Student::input() { for(int i=0;i<5;++i) cin>>scores[i]; } float Student ::calculateTotalScore() { float sum=0; for(int i=0;i<5;++i) { sum =sum + scores[i]; } return sum; }
eed501097ee0e8471c1fcbf8e70525e54487dd97
26a60318632ce59b560c6ac3b3e6f97627e46047
/coffeebot/src/cb_face_detector.cpp
83a251060bda25e8010152f47121d5c2ea7bdcb9
[]
no_license
jordanml7/coffeebot_proj
879d089b0030995ce61c995b06506929de0a1173
274ee5bfd8d1ba1d759cbe5c3c7b16c0217e8890
refs/heads/master
2020-05-06T20:22:59.109317
2019-05-10T21:41:26
2019-05-10T21:41:26
180,235,372
0
0
null
null
null
null
UTF-8
C++
false
false
3,807
cpp
cb_face_detector.cpp
#include <ros/ros.h> #include <image_transport/image_transport.h> #include <cv_bridge/cv_bridge.h> #include <sensor_msgs/image_encodings.h> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/opencv.hpp> #include <std_msgs/Float64MultiArray.h> #include <vector> using namespace cv; using namespace std; class ImageConverter { ros::NodeHandle nh_; image_transport::ImageTransport it_; image_transport::Subscriber image_sub_; image_transport::Publisher image_pub_; ros::Publisher face_loc_pub_; public: ImageConverter() : it_(nh_) { // Subscrive to input video feed and publish output video feed image_sub_ = it_.subscribe("/usb_cam/rgb/image_raw", 1, &ImageConverter::imageCb, this); image_pub_ = it_.advertise("/image_converter/output_video", 1); face_loc_pub_ = nh_.advertise<std_msgs::Float64MultiArray>("rel_yaw_frac", 1); } ~ImageConverter() { } void detectAndDraw(Mat& img, CascadeClassifier& cascade, double scale) { vector<Rect> faces, faces2; vector<double> rel_yaw_frac; std_msgs::Float64MultiArray array_msg; Mat gray, smallImg; cvtColor( img, gray, COLOR_BGR2GRAY ); // Convert to Gray Scale double fx = 1 / scale; // Resize the Grayscale Image resize( gray, smallImg, Size(), fx, fx, INTER_LINEAR ); equalizeHist( smallImg, smallImg ); // Detect faces of different sizes using cascade classifier cascade.detectMultiScale( smallImg, faces, 1.1, 2, 0|CASCADE_SCALE_IMAGE, Size(30, 30) ); rel_yaw_frac.resize(faces.size()); // Draw circles around the faces for ( size_t i = 0; i < faces.size(); i++ ) { Rect r = faces[i]; Point center; Scalar color = Scalar(255, 0, 0); center.x = cvRound((r.x + r.width*0.5)*scale); center.y = cvRound((r.y + r.height*0.5)*scale); cout << "Face centered at " << center.x << endl; rel_yaw_frac[i] = (double)center.x/((double)smallImg.cols/2) - 1; rectangle( img, cvPoint(cvRound(r.x*scale), cvRound(r.y*scale)), cvPoint(cvRound((r.x + r.width)*scale), cvRound((r.y + r.height)*scale)), color, 3, 8, 0); } array_msg.data = rel_yaw_frac; face_loc_pub_.publish(array_msg); // Show Processed Image with detected faces imshow( "Face Detection", img ); } void imageCb(const sensor_msgs::ImageConstPtr& msg) { cv_bridge::CvImagePtr cv_ptr; try { cv_ptr = cv_bridge::toCvCopy(msg, sensor_msgs::image_encodings::BGR8); } catch (cv_bridge::Exception& e) { ROS_ERROR("cv_bridge exception: %s", e.what()); return; } //declare output image Mat outImg; outImg = cv_ptr->image.clone(); // PreDefined trained XML classifiers with facial features CascadeClassifier cascade, nestedCascade; double scale=1; // Change path before execution cascade.load( "/opt/ros/kinetic/share/OpenCV-3.3.1-dev/haarcascades/haarcascade_frontalcatface.xml" ) ; detectAndDraw(outImg,cascade,scale); //pause for 3 ms waitKey(3); // Output modified video stream image_pub_.publish(cv_ptr->toImageMsg()); } }; int main(int argc, char** argv) { ros::init(argc, argv, "image_converter"); ImageConverter ic; while (ros::ok()) { ros::spinOnce(); sleep(1); } return 0; }
4bbedf5359a80904bd5c7f13eb931c025bae7197
7c5f6149b1be60bf8374689621f22e5e860eacb2
/wxAnimator_v_15/P/PTesty.cpp
fe7d10ff9e3786c6f70a0a1b138ce387116bdfda
[]
no_license
jaskmar/animator
164c69826e83d393e6a330ac38e9d33810d382d4
9806fba95d0922e92318c1e8bc79201528e3f20a
refs/heads/master
2021-01-22T23:48:43.034205
2017-04-05T20:35:03
2017-04-05T20:35:03
10,286,119
0
0
null
null
null
null
UTF-8
C++
false
false
2,534
cpp
PTesty.cpp
// Class automatically generated by Dev-C++ New Class wizard #include "PTesty.h" // class's header file #include <cstdlib> // class constructor PTesty::PTesty() { Name = "Ring"; } // class destructor PTesty::~PTesty() { // insert your code here } uchar* PTesty::generateFrame(float percent, int W, int H, uchar *Start, uchar *Stop) { uchar* res = (uchar*) malloc(3*W*H); float p = percent; float P = 1-p; float sp = sin(p*M_PI); float spp= sin(M_PI*p*0.5); float sP = sin(M_PI*P); float sPp= sin(M_PI*P*0.5); float a = percent*M_PI; float sina1 = sin(a); float cosa1 = cos(a); float cosa1P3 = cos(a+0.15); float cosa1M3 = cos(a-0.15); float sina2 = -sina1; float cosa2 = cos(a+M_PI); float cosa2P3 = cos(a+M_PI+0.15); float cosa2M3 = cos(a+M_PI-0.15); int x, y; int xp1, yp1, Hp1, Wp1, Ha1, Hb1, dx1, dy1; int xp2, yp2, Hp2, Wp2, Ha2, Hb2, dx2, dy2; const float g = 0.9; for (int i=0; i<3*W*H; i+=3) { x=(i/3)%W; y=(i/3)/W; Wp1=W*cosa1*(1-g*p); Ha1=H - g*0.5*(H-H*cosa1P3); Hb1=H - g*0.5*(H-H*cosa1M3); if (p<0.5) dx1 = -Wp1*0.1*sina1; else dx1 = (Wp1-W)*0.5*cosa1 -Wp1*0.1*sina1; xp1 = (x-dx1)*float(W)/Wp1; Hp1 = Ha1 + (Hb1-Ha1)*float(x-dx1)/Wp1; dy1 = (H-Hp1)/4; yp1 = (y-dy1)*float(H)/Hp1; Wp2=W*cosa2*(1-g*P); Ha2=H - g*0.5*(H-H*cosa2P3); Hb2=H - g*0.5*(H-H*cosa2M3); if (P<0.5) dx2 = W-Wp2 -Wp2*0.1*sina2; else dx2 = (W-Wp2)*0.5*(1+sina1) -Wp2*0.1*sina2; xp2 = (x-dx2)*float(W)/Wp2; Hp2 = Ha2 + (Hb2-Ha2)*float(x-dx2)/Wp2; dy2 = (H-Hp2)/4; yp2 = (y-dy2)*float(H)/Hp2; bool narysowane = false; if (xp1>=0 && xp1<W && yp1>=0 && yp1<H) { res[i] = Start[3*(xp1+yp1*W)]; res[i+1] = Start[3*(xp1+yp1*W)+1]; res[i+2] = Start[3*(xp1+yp1*W)+2]; narysowane = true; } if (xp2>=0 && xp2<W && yp2>=0 && yp2<H && !(p<0.5 && xp1>=0 && xp1<W && yp1>=0 && yp1<H)) { res[i] = Stop[3*(xp2+yp2*W)]; res[i+1] = Stop[3*(xp2+yp2*W)+1]; res[i+2] = Stop[3*(xp2+yp2*W)+2]; narysowane = true; } if (!narysowane) { res[i] = 0; res[i+1] = 0; res[i+2] = 0; } } return res; }
51f6366bf96061120d2f981f5ebfbc5af6037da3
504f2259c05f0aab0c9568ad7e47a0be885fce7a
/src/random_choice_map.cpp
81b679fc79f9935e06d43841100171ce2ca06b66
[]
no_license
Neels99/boost_log_univalue_test_proj
7ed34edfa2eb1e454b1af66df2bd999ab45964d1
70704243ca3b1b847754bfa63315ace987674d5c
refs/heads/master
2023-02-27T07:44:20.213943
2021-02-01T23:10:18
2021-02-01T23:10:18
290,341,161
0
0
null
null
null
null
UTF-8
C++
false
false
819
cpp
random_choice_map.cpp
#include <iostream> #include <map> #include <string> #include <memory> #include <tuple> using namespace std; template <typename T1, typename T2> T2 random_choice(map<T1, T2> dict) { int pos = 3; auto item = dict.begin(); std::advance(item, pos); return item->second; } class A { public: string a; A(string _a) { a = _a; } }; class k { public: int a; k(int _a) { a = _a; } }; int main() { map<shared_ptr<k>, shared_ptr<A>> dict; auto a = make_shared<A>("1"); dict[make_shared<k>(0)] = a; a = make_shared<A>("2"); dict[make_shared<k>(7)] = a; a = make_shared<A>("3"); dict[make_shared<k>(2)] = a; a = make_shared<A>("4"); dict[make_shared<k>(11)] = a; cout << random_choice(dict)->a << endl; return 0; }
cd0f5f3c9b6c5a87bc396da0724e4290228b2fd5
b1a616594e597517649d030c0f6ceca1d28afc7e
/apps/ncv_benchmark_dot.cpp
dab7b7a2e636653a6e9323943cf023acbd779c26
[ "MIT" ]
permissive
0x0all/nanocv
420fc4a1db5135fb3928ea885ce8b20cdcd00701
dc58dea6b4eb7be2089b168d39c2b02aa2730741
refs/heads/master
2021-01-19T07:37:36.290220
2015-05-21T20:37:44
2015-05-21T20:37:44
36,381,039
0
1
null
2015-05-27T16:42:31
2015-05-27T16:42:31
null
UTF-8
C++
false
false
2,218
cpp
ncv_benchmark_dot.cpp
#include "nanocv/tensor.h" #include "nanocv/tabulator.h" #include "nanocv/measure.hpp" #include "nanocv/math/dot.hpp" #include "nanocv/tensor/dot.hpp" #include <iostream> using namespace ncv; template < typename top, typename tvector, typename tscalar = typename tvector::Scalar > static void test_dot(tabulator_t::row_t& row, top op, const tvector& vec1, const tvector& vec2) { const size_t trials = 16; row << ncv::measure_robustly_usec([&] () { const volatile tscalar ret = op(vec1.data(), vec2.data(), vec1.size()); ret; }, trials); } static void test_dot(size_t size, tabulator_t::row_t& row) { vector_t vec1(size), vec2(size); vec1.setRandom(); vec2.setRandom(); test_dot(row, ncv::math::dot<scalar_t>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 2>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 3>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 4>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 5>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 6>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 7>, vec1, vec2); test_dot(row, ncv::math::dot_unroll<scalar_t, 8>, vec1, vec2); test_dot(row, ncv::tensor::dot<scalar_t>, vec1, vec2); } int main(int, char* []) { static const size_t min_size = 32 * 1024; static const size_t max_size = 4 * 1024 * 1024; tabulator_t table("size\\dot"); table.header() << "dot [us]" << "dotul2 [us]" << "dotul3 [us]" << "dotul4 [us]" << "dotul5 [us]" << "dotul6 [us]" << "dotul7 [us]" << "dotul8 [us]" << "doteig [us]"; for (size_t size = min_size; size <= max_size; size *= 2) { tabulator_t::row_t& row = table.append(text::to_string(size / 1024) + "K"); test_dot(size, row); } table.print(std::cout); return EXIT_SUCCESS; }
21c74b9f6bca03a5f65fa249c624c4218cb6a4e7
b496afd6c3d3ac494ab8fba91e8f270a991f3775
/trunk/src/Grafo/GrafoNome.h
ea9ef7fd7a671f87c96a7da1f04e56c8353e1149
[]
no_license
matheusbg8/RedePetri
36d9067c2b2052f42bbce0c9b4840d7b4be1d8bb
737c7d1227a043a1c2250e3940f335b1d8d0ce34
refs/heads/master
2016-09-10T22:28:50.391366
2014-02-10T04:12:39
2014-02-10T04:12:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,808
h
GrafoNome.h
#ifndef GRAFONOME_H #define GRAFONOME_H #include "Grafo.h" #include "GrafoLista.h" #include "GerenciadorNomes.h" #include <string> #include <map> using namespace std; class GrafoNome { private: // Vertices GerenciadorNomes m_nomeVertices; // Arestas GerenciadorNomes m_nomeArestas; // Grafo string m_nome; Grafo * m_grafo; public: GrafoNome(const string &nome = string(), Grafo* g = new GrafoLista()); GrafoNome(Grafo *gEstrutura , const GrafoNome *gNomes); ~GrafoNome(); const Grafo* grafo() const; void criaVertices(unsigned numVertices); pair<const string& , int> novoVertice(string nome = ""); pair<const string& , int> novaAresta(unsigned de, unsigned para, float custo, string nome = ""); pair<const string& , int> novaAresta(const string& de , const string& para, float custo, string nome = ""); bool deletaVertice(unsigned idVertice); bool deletaVertice(const string &vertice); bool deletaAresta(unsigned idAresta); bool deletaAresta(const string& aresta); bool deletaAresta(unsigned de, unsigned para); bool deletaAresta(const string& de, const string& para); bool setNome(const string& nome); const string &setNomeVertice(unsigned idVertice , const string& nome); const string &setNomeVertice(const string &vertice , const string& nome); const string &setNomeAresta(unsigned idAresta,const string& nome); const string &setNomeAresta(const string& aresta,const string& nome); const string& nome() const; const string & nomeVertice(unsigned idVertice) const; const string& nomeAresta(unsigned idAresta) const; int idVertice(const string& vertice) const; int idAresta(const string& aresta) const; unsigned idMaiorVertice() const; unsigned idMaiorAresta() const; bool existeVertice(unsigned idVertice) const; bool existeVertice(const string& vertice) const; bool existeAresta(unsigned idAresta) const; bool existeAresta(const string& aresta) const; unsigned numVertices() const; unsigned numArestas() const; int numPredecessores(unsigned idVertice) const; int predecessor(unsigned idVertice, unsigned i) const; float custoPredecessor(unsigned idVertice, unsigned i) const; unsigned idArestaPredecessor(unsigned idVertice, unsigned i) const; int numSucessor(unsigned idVertice) const; int sucessor(unsigned idVertice, unsigned i) const; float custoSucessor(unsigned idVertice, unsigned i) const; int idArestaSucessor(unsigned idVertice, unsigned i) const; list<VerticeGrafo*>::const_iterator verticeBegin() const; list<VerticeGrafo*>::const_iterator verticeEnd() const; list<ArestaGrafo*>::const_iterator arestaBegin() const; list<ArestaGrafo*>::const_iterator arestaEnd() const; const VerticeGrafo* vertice(unsigned idVertice) const; const ArestaGrafo* aresta(unsigned idAresta) const; }; // Operações nos grafos ostream & operator << (ostream &os , const GrafoNome& gn); GrafoNome * inverso(const GrafoNome *g); #endif // GRAFONOME_H // Teste GrafoNome /* #include <iostream> #include "GrafoNome.h" using namespace std; int main() { GrafoNome gn("Grafo de Teste"); gn.novoVertice("Bage"); gn.novoVertice("Santa Maria"); gn.novoVertice("Porto Alegre"); gn.novoVertice("Caçapava"); gn.novoVertice("Canguçu"); gn.novoVertice("Pelotas"); gn.novoVertice("Rio Grande"); gn.novaAresta("Bage", "Caçapava" , 2.f, "BR 153"); gn.novaAresta("Bage", "Pelotas" , 4.f, "BR 153"); gn.novaAresta("Caçapava", "Santa Maria" , 2.f); gn.novaAresta("Caçapava", "Porto Alegre" , 6.f); gn.novaAresta("Caçapava", "Canguçu" , 1.f); gn.novaAresta("Canguçu", "Pelotas" , 3.f); gn.novaAresta("Pelotas", "Rio Grande" , 1.f); GrafoNome *inv_gn = inverso(&gn); cout << gn << endl << (*inv_gn); } // Resp //Grafo Grafo de Teste: //( 0 , Bage ) -- ( 2 , 0 , BR 153 ) --> ( 3 , Caçapava ) //( 0 , Bage ) -- ( 4 , 1 , BR 153 (1) ) --> ( 5 , Pelotas ) //( 3 , Caçapava ) -- ( 2 , 2 , A2 ) --> ( 1 , Santa Maria ) //( 3 , Caçapava ) -- ( 6 , 3 , A3 ) --> ( 2 , Porto Alegre ) //( 3 , Caçapava ) -- ( 1 , 4 , A4 ) --> ( 4 , Canguçu ) //( 4 , Canguçu ) -- ( 3 , 5 , A5 ) --> ( 5 , Pelotas ) //( 5 , Pelotas ) -- ( 1 , 6 , A6 ) --> ( 6 , Rio Grande ) //Grafo : //( 3 , Caçapava ) -- ( 2 , 0 , BR 153 ) --> ( 0 , Bage ) //( 5 , Pelotas ) -- ( 4 , 1 , BR 153 (1) ) --> ( 0 , Bage ) //( 1 , Santa Maria ) -- ( 2 , 2 , A2 ) --> ( 3 , Caçapava ) //( 2 , Porto Alegre ) -- ( 6 , 3 , A3 ) --> ( 3 , Caçapava ) //( 4 , Canguçu ) -- ( 1 , 4 , A4 ) --> ( 3 , Caçapava ) //( 5 , Pelotas ) -- ( 3 , 5 , A5 ) --> ( 4 , Canguçu ) //( 6 , Rio Grande ) -- ( 1 , 6 , A6 ) --> ( 5 , Pelotas ) */
beaa73f8f3a2698cfd8aebc261d04e93e56d62cf
c4bc4a00e6c53988543102f51ad4108d4952449f
/Assignments/string.cpp
5aafeaa3a6d1ce0b5481c1877e581aaaac10c2fe
[]
no_license
pauljayanta17/C-Plus-Plus
23b0060df4172a2dd215772238b1326495cc0532
2129ca17aed18a9a45452c2ef3717feee402e75f
refs/heads/main
2023-07-05T12:42:50.533018
2021-08-07T13:33:24
2021-08-07T13:33:24
331,549,961
0
0
null
null
null
null
UTF-8
C++
false
false
527
cpp
string.cpp
//print string #include<iostream> #include<string> using namespace std; int main() { string name; int l,i; cout << "Enter a string "; getline(cin,name); cout << "The given string is " << name<<endl; cout << "The reverse string is "; l = name.length(); for(i=l-1;i>=0;i--){ cout << name[i]; } cout <<endl; cout << "The pattern is "<<endl; for(i=0;i<l;i++){ for(int j=0;j<=i;j++){ cout << name[j]; } cout << endl; } return 0; }
f2d028ada4976a2c0b63d398f1fc66e20a52009a
0d590492b180e78eaf2df5dcb4bb987ce8aa1bf9
/148.cpp
ad444a096131f97e69bcd57353a481071a9ef83b
[]
no_license
blc1996/leetcode
8911068f4766f16fe6c5ae7640908817830cfa6a
ed6f6b40008b3a42c0c0b95381416163a472c1f5
refs/heads/master
2021-06-16T02:30:59.310713
2021-02-16T07:38:36
2021-02-16T07:38:36
154,240,085
0
0
null
null
null
null
UTF-8
C++
false
false
1,551
cpp
148.cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* sortList(ListNode* head) { if(head == NULL) return NULL; ListNode* current = head; while(current->next != NULL) current = current->next; return mergesort(head, current); } ListNode* mergesort(ListNode* start, ListNode* end){ if(start == end) return start; ListNode* mid = findMid(start, end); ListNode* rstart = mid->next; mid->next = NULL; ListNode* left = mergesort(start, mid); ListNode* right = mergesort(rstart, end); ListNode* dummy = new ListNode(0), *out = dummy; while(left != NULL && right != NULL){ if(left->val < right->val){ out->next = left; out = out->next; left = left->next; }else{ out->next = right; out = out->next; right = right->next; } } if(left != NULL) out->next = left; else if(right != NULL) out->next = right; return dummy->next; } ListNode* findMid(ListNode* start, ListNode* end){ ListNode* fast = start, *slow = start; while(fast != end && fast->next != end){ fast = fast->next->next; slow = slow->next; } return slow; } };
78475d2e13b0ef928db017541b3bf0a5de31eb0b
dd6e6a06a25bc761419c3606cebcd679c4b63270
/HDU-1061/HDU-1061.cpp
0d6a9c1a5b3163af96cb701c3c4a094bcce553c5
[]
no_license
Huangyan0804/vjudge
3de25a248a142f8c266ddc022e6ef72a0668a390
30045176c7c1fd58af2038f174779e8f6e1ab965
refs/heads/master
2021-07-04T07:27:44.068251
2019-05-23T03:04:56
2019-05-23T03:04:56
157,170,762
1
0
null
null
null
null
UTF-8
C++
false
false
420
cpp
HDU-1061.cpp
#include <algorithm> #include <iostream> using namespace std; int qmi(long long a, long long b, int c) { long long t = a, res = 1; while (b) { if (b & 1) res = res * t % c; b >>= 1; t = t * t % c; } return res; } int main() { int t; cin >> t; while (t--) { long long a; cin >> a; cout << qmi(a, a, 10) << endl; } return 0; }
0063a1c1f50986562385a5d09887ff706807ce83
4f3613fed18c50f3c85d89642f5ba058de54634b
/src/pez_linux_skeleton.cpp
08a1083c6ac0fdd1693a58b363f3246c3271aa71
[ "MIT" ]
permissive
jimbo00000/OpenGLMultiSkeleton
28b3cb8360ec72dc329549e09708ee06f51610bb
270677a6b443999bd57d6f6bb43ecb97958f6141
refs/heads/master
2021-01-10T21:14:59.126865
2014-09-17T18:17:25
2014-09-17T18:17:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,322
cpp
pez_linux_skeleton.cpp
// Pez was developed by Philip Rideout and released under the MIT License. #include <sys/time.h> #include <pez.h> #include <GL/glxew.h> #include <GL/glew.h> #include <stdlib.h> #include <stdio.h> #include <stdarg.h> #include <signal.h> #include <wchar.h> /// I think we all now that including a .cpp file is ugly. ///@todo A cleaner way to separate the app details from the platform details #include "pez_app_skeleton.cpp" typedef struct PlatformContextRec { Display* MainDisplay; Window MainWindow; } PlatformContext; unsigned int GetMilliseconds() { struct timeval tp; gettimeofday(&tp, NULL); return tp.tv_sec * 1000 + tp.tv_usec / 1000; } int main(int argc, char** argv) { int attrib[] = { GLX_RENDER_TYPE, GLX_RGBA_BIT, GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT, GLX_DOUBLEBUFFER, True, GLX_RED_SIZE, 1, GLX_GREEN_SIZE, 1, GLX_BLUE_SIZE, 1, #if PEZ_ENABLE_MULTISAMPLING GLX_SAMPLE_BUFFERS, 1, GLX_SAMPLES, 4, #endif None }; PlatformContext context; context.MainDisplay = XOpenDisplay(NULL); int screen = DefaultScreen(context.MainDisplay); Window root = RootWindow(context.MainDisplay, screen); int fbcount; PFNGLXCHOOSEFBCONFIGPROC glXChooseFBConfig = (PFNGLXCHOOSEFBCONFIGPROC)glXGetProcAddress((GLubyte*)"glXChooseFBConfig"); GLXFBConfig *fbc = glXChooseFBConfig(context.MainDisplay, screen, attrib, &fbcount); if (!fbc) PezFatalError("Failed to retrieve a framebuffer config\n");; PFNGLXGETVISUALFROMFBCONFIGPROC glXGetVisualFromFBConfig = (PFNGLXGETVISUALFROMFBCONFIGPROC)glXGetProcAddress((GLubyte*)"glXGetVisualFromFBConfig"); XVisualInfo *visinfo = glXGetVisualFromFBConfig(context.MainDisplay, fbc[0]); if (!visinfo) PezFatalError("Error: couldn't create OpenGL window with this pixel format.\n"); XSetWindowAttributes attr; attr.background_pixel = 0; attr.border_pixel = 0; attr.colormap = XCreateColormap(context.MainDisplay, root, visinfo->visual, AllocNone); attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask | KeyReleaseMask | PointerMotionMask | ButtonPressMask | ButtonReleaseMask; context.MainWindow = XCreateWindow( context.MainDisplay, root, 0, 0, PEZ_VIEWPORT_WIDTH, PEZ_VIEWPORT_HEIGHT, 0, visinfo->depth, InputOutput, visinfo->visual, CWBackPixel | CWBorderPixel | CWColormap | CWEventMask, &attr ); XMapWindow(context.MainDisplay, context.MainWindow); GLXContext glcontext; if (PEZ_FORWARD_COMPATIBLE_GL) { GLXContext tempContext = glXCreateContext(context.MainDisplay, visinfo, NULL, True); PFNGLXCREATECONTEXTATTRIBSARBPROC glXCreateContextAttribs = (PFNGLXCREATECONTEXTATTRIBSARBPROC)glXGetProcAddress((GLubyte*)"glXCreateContextAttribsARB"); if (!glXCreateContextAttribs) { PezFatalError("Your platform does not support OpenGL 3.0.\n" "Try changing PEZ_FORWARD_COMPATIBLE_GL to 0.\n"); } int fbcount = 0; GLXFBConfig *framebufferConfig = glXChooseFBConfig(context.MainDisplay, screen, 0, &fbcount); if (!framebufferConfig) { PezFatalError("Can't create a framebuffer for OpenGL 3.0.\n"); } else { int attribs[] = { GLX_CONTEXT_MAJOR_VERSION_ARB, 3, GLX_CONTEXT_MINOR_VERSION_ARB, 0, GLX_CONTEXT_FLAGS_ARB, GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB, 0 }; glcontext = glXCreateContextAttribs(context.MainDisplay, framebufferConfig[0], NULL, True, attribs); glXMakeCurrent(context.MainDisplay, 0, 0); glXDestroyContext(context.MainDisplay, tempContext); } } else { glcontext = glXCreateContext(context.MainDisplay, visinfo, NULL, True); } glXMakeCurrent(context.MainDisplay, context.MainWindow, glcontext); GLenum err = glewInit(); if (GLEW_OK != err) PezFatalError("GLEW Error: %s\n", glewGetErrorString(err)); // Reset OpenGL error state: glGetError(); PezDebugString("OpenGL Version: %s\n", glGetString(GL_VERSION)); const char* windowTitle = PezInitialize(PEZ_VIEWPORT_WIDTH, PEZ_VIEWPORT_HEIGHT); XStoreName(context.MainDisplay, context.MainWindow, windowTitle); // ------------------- // Start the Game Loop // ------------------- unsigned int previousTime = GetMilliseconds(); int done = 0; while (!done) { if (glGetError() != GL_NO_ERROR) PezFatalError("OpenGL error.\n"); if (XPending(context.MainDisplay)) { XEvent event; XNextEvent(context.MainDisplay, &event); switch (event.type) { case Expose: //redraw(display, event.xany.window); break; case ConfigureNotify: //resize(event.xconfigure.width, event.xconfigure.height); break; case ButtonPress: PezHandleMouse(event.xbutton.x, event.xbutton.y, PEZ_DOWN); break; case ButtonRelease: PezHandleMouse(event.xbutton.x, event.xbutton.y, PEZ_UP); break; case MotionNotify: PezHandleMouse(event.xmotion.x, event.xmotion.y, PEZ_MOVE); break; case KeyRelease: case KeyPress: { XComposeStatus composeStatus; char asciiCode[32]; KeySym keySym; int len; len = XLookupString(&event.xkey, asciiCode, sizeof(asciiCode), &keySym, &composeStatus); switch (asciiCode[0]) { case 'x': case 'X': case 'q': case 'Q': case 0x1b: done = 1; break; } } } } unsigned int currentTime = GetMilliseconds(); unsigned int deltaTime = currentTime - previousTime; previousTime = currentTime; PezUpdate(deltaTime); PezRender(); glXSwapBuffers(context.MainDisplay, context.MainWindow); } return 0; } void PezDebugStringW(const wchar_t* pStr, ...) { va_list a; va_start(a, pStr); wchar_t msg[1024] = {0}; vswprintf(msg, countof(msg), pStr, a); fputws(msg, stderr); } void PezDebugString(const char* pStr, ...) { va_list a; va_start(a, pStr); char msg[1024] = {0}; vsnprintf(msg, countof(msg), pStr, a); fputs(msg, stderr); } void PezFatalErrorW(const wchar_t* pStr, ...) { fwide(stderr, 1); va_list a; va_start(a, pStr); wchar_t msg[1024] = {0}; vswprintf(msg, countof(msg), pStr, a); fputws(msg, stderr); exit(1); } void PezFatalError(const char* pStr, ...) { va_list a; va_start(a, pStr); char msg[1024] = {0}; vsnprintf(msg, countof(msg), pStr, a); fputs(msg, stderr); exit(1); }
717fef2e7cda0b74cfa20cd75a4e65e53a6ade06
93b611a35328b9204a8edff4675cb11a8c529684
/Export/macos/obj/src/lime/ui/Window.cpp
b2af38a51cd3927d286fbc01b55274c373d946d8
[]
no_license
dmoa/firstHaxeGame
b5db96619cb8dc3d7ce38d6ba4adf29c4b6dca3c
fbed7991277168a57b22d220c5ccc15f01e467a0
refs/heads/master
2020-06-29T11:36:20.971915
2019-08-04T17:39:57
2019-08-04T17:39:57
200,523,232
0
0
null
null
null
null
UTF-8
C++
false
true
76,017
cpp
Window.cpp
// Generated by Haxe 3.4.4 #include <hxcpp.h> #ifndef INCLUDED_Reflect #include <Reflect.h> #endif #ifndef INCLUDED_lime__internal_backend_native_NativeWindow #include <lime/_internal/backend/native/NativeWindow.h> #endif #ifndef INCLUDED_lime_app_Application #include <lime/app/Application.h> #endif #ifndef INCLUDED_lime_app_IModule #include <lime/app/IModule.h> #endif #ifndef INCLUDED_lime_app_Module #include <lime/app/Module.h> #endif #ifndef INCLUDED_lime_app__Event_Float_Float_Int_Void #include <lime/app/_Event_Float_Float_Int_Void.h> #endif #ifndef INCLUDED_lime_app__Event_Float_Float_Void #include <lime/app/_Event_Float_Float_Void.h> #endif #ifndef INCLUDED_lime_app__Event_Float_Float_lime_ui_MouseButton_Void #include <lime/app/_Event_Float_Float_lime_ui_MouseButton_Void.h> #endif #ifndef INCLUDED_lime_app__Event_Float_Float_lime_ui_MouseWheelMode_Void #include <lime/app/_Event_Float_Float_lime_ui_MouseWheelMode_Void.h> #endif #ifndef INCLUDED_lime_app__Event_Int_Int_Void #include <lime/app/_Event_Int_Int_Void.h> #endif #ifndef INCLUDED_lime_app__Event_String_Int_Int_Void #include <lime/app/_Event_String_Int_Int_Void.h> #endif #ifndef INCLUDED_lime_app__Event_String_Void #include <lime/app/_Event_String_Void.h> #endif #ifndef INCLUDED_lime_app__Event_Void_Void #include <lime/app/_Event_Void_Void.h> #endif #ifndef INCLUDED_lime_app__Event_lime_graphics_RenderContext_Void #include <lime/app/_Event_lime_graphics_RenderContext_Void.h> #endif #ifndef INCLUDED_lime_app__Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void #include <lime/app/_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void.h> #endif #ifndef INCLUDED_lime_graphics_Image #include <lime/graphics/Image.h> #endif #ifndef INCLUDED_lime_graphics_RenderContext #include <lime/graphics/RenderContext.h> #endif #ifndef INCLUDED_lime_math_Rectangle #include <lime/math/Rectangle.h> #endif #ifndef INCLUDED_lime_system_Display #include <lime/system/Display.h> #endif #ifndef INCLUDED_lime_system_DisplayMode #include <lime/system/DisplayMode.h> #endif #ifndef INCLUDED_lime_ui_Gamepad #include <lime/ui/Gamepad.h> #endif #ifndef INCLUDED_lime_ui_MouseCursor #include <lime/ui/MouseCursor.h> #endif #ifndef INCLUDED_lime_ui_Window #include <lime/ui/Window.h> #endif #ifndef INCLUDED_openfl_display_DisplayObject #include <openfl/display/DisplayObject.h> #endif #ifndef INCLUDED_openfl_display_DisplayObjectContainer #include <openfl/display/DisplayObjectContainer.h> #endif #ifndef INCLUDED_openfl_display_IBitmapDrawable #include <openfl/display/IBitmapDrawable.h> #endif #ifndef INCLUDED_openfl_display_InteractiveObject #include <openfl/display/InteractiveObject.h> #endif #ifndef INCLUDED_openfl_display_Stage #include <openfl/display/Stage.h> #endif #ifndef INCLUDED_openfl_events_EventDispatcher #include <openfl/events/EventDispatcher.h> #endif #ifndef INCLUDED_openfl_events_IEventDispatcher #include <openfl/events/IEventDispatcher.h> #endif HX_DEFINE_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_29_new,"lime.ui.Window","new",0xbff4f5c3,"lime.ui.Window.new","lime/ui/Window.hx",29,0x6ac7286d) static const ::String _hx_array_data_feb85851_1[] = { HX_("0500000047532047616d657061640000,GameStop Gamepad,a:b0,b:b1,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:,leftshoulder:b4,leftstick:b10,lefttrigger:b6,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:b7,rightx:a2,righty:a3,start:b9,x:b2,y:b3,platform:Mac OS X",ed,d4,ed,6a),HX_("6d0400000000000016c2000000000000,Logitech F310 Gamepad (DInput),a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,leftshoulder:b4,leftstick:b10,lefttrigger:b6,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:b7,rightx:a2,righty:a3,start:b9,x:b0,y:b3,platform:Mac OS X",2e,a7,34,fc),HX_("6d0400000000000018c2000000000000,Logitech F510 Gamepad (DInput),a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,leftshoulder:b4,leftstick:b10,lefttrigger:b6,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:b7,rightx:a2,righty:a3,start:b9,x:b0,y:b3,platform:Mac OS X",b2,0f,da,6f),HX_("6d040000000000001fc2000000000000,Logitech F710 Gamepad (XInput),a:b0,b:b1,back:b9,dpdown:b12,dpleft:b13,dpright:b14,dpup:b11,guide:b10,leftshoulder:b4,leftstick:b6,lefttrigger:a2,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b7,righttrigger:a5,rightx:a3,righty:a4,start:b8,x:b2,y:b3,platform:Mac OS X",66,b1,97,b2),HX_("6d0400000000000019c2000000000000,Logitech Wireless Gamepad (DInput),a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,leftshoulder:b4,leftstick:b10,lefttrigger:b6,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:b7,rightx:a2,righty:a3,start:b9,x:b0,y:b3,platform:Mac OS X",e3,45,b0,62),HX_("4c050000000000006802000000000000,PS3 Controller,a:b14,b:b13,back:b0,dpdown:b6,dpleft:b7,dpright:b5,dpup:b4,guide:b16,leftshoulder:b10,leftstick:b1,lefttrigger:b8,leftx:a0,lefty:a1,rightshoulder:b11,rightstick:b2,righttrigger:b9,rightx:a2,righty:a3,start:b3,x:b15,y:b12,platform:Mac OS X",67,9e,cc,7c),HX_("4c05000000000000c405000000000000,Sony DualShock 4,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b13,leftstick:b10,rightstick:b11,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftx:a0,lefty:a1,rightx:a2,righty:a5,lefttrigger:a3,righttrigger:a4,platform:Mac OS X",21,06,cf,44),HX_("4c05000000000000cc09000000000000,Sony DualShock 4 V2,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b13,leftstick:b10,rightstick:b11,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftx:a0,lefty:a1,rightx:a2,righty:a5,lefttrigger:a3,righttrigger:a4,platform:Mac OS X",6a,ec,d0,47),HX_("5e040000000000008e02000000000000,X360 Controller,a:b0,b:b1,back:b9,dpdown:b12,dpleft:b13,dpright:b14,dpup:b11,guide:b10,leftshoulder:b4,leftstick:b6,lefttrigger:a2,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b7,righttrigger:a5,rightx:a3,righty:a4,start:b8,x:b2,y:b3,platform:Mac OS X",37,74,8e,a7),HX_("891600000000000000fd000000000000,Razer Onza Tournament,a:b0,b:b1,y:b3,x:b2,start:b8,guide:b10,back:b9,leftstick:b6,rightstick:b7,leftshoulder:b4,rightshoulder:b5,dpup:b11,dpleft:b13,dpdown:b12,dpright:b14,leftx:a0,lefty:a1,rightx:a3,righty:a4,lefttrigger:a2,righttrigger:a5,platform:Mac OS X",48,26,d8,9b),HX_("4f0400000000000000b3000000000000,Thrustmaster Firestorm Dual Power,a:b0,b:b2,y:b3,x:b1,start:b10,guide:b8,back:b9,leftstick:b11,rightstick:,leftshoulder:b4,rightshoulder:b6,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b5,righttrigger:b7,platform:Mac OS X",f0,26,f5,c6),HX_("8f0e0000000000000300000000000000,Piranha xtreme,platform:Mac OS X,x:b3,a:b2,b:b1,y:b0,back:b8,start:b9,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,dpup:h0.1,leftshoulder:b6,lefttrigger:b4,rightshoulder:b7,righttrigger:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a3,righty:a2",63,f1,b3,29),HX_("0d0f0000000000004d00000000000000,HORI Gem Pad 3,platform:Mac OS X,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,leftstick:b10,rightstick:b11,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7",fb,bb,d9,53),HX_("79000000000000000600000000000000,G-Shark GP-702,a:b2,b:b1,x:b3,y:b0,back:b8,start:b9,leftstick:b10,rightstick:b11,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,leftx:a0,lefty:a1,rightx:a3,righty:a4,lefttrigger:b6,righttrigger:b7,platform:Mac OS X",25,32,b8,be),HX_("4f0400000000000015b3000000000000,Thrustmaster Dual Analog 3.2,platform:Mac OS X,x:b1,a:b0,b:b2,y:b3,back:b8,start:b9,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,dpup:h0.1,leftshoulder:b4,lefttrigger:b5,rightshoulder:b6,righttrigger:b7,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3",4b,1c,e4,5e),HX_("AD1B00000000000001F9000000000000,Gamestop BB-070 X360 Controller,a:b0,b:b1,back:b9,dpdown:b12,dpleft:b13,dpright:b14,dpup:b11,guide:b10,leftshoulder:b4,leftstick:b6,lefttrigger:a2,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b7,righttrigger:a5,rightx:a3,righty:a4,start:b8,x:b2,y:b3,platform:Mac OS X",2a,5e,fd,e7),HX_("050000005769696d6f74652028303000,Wii Remote,a:b4,b:b5,y:b9,x:b10,start:b6,guide:b8,back:b7,dpup:b2,dpleft:b0,dpdown:b3,dpright:b1,leftx:a0,lefty:a1,lefttrigger:b12,righttrigger:,leftshoulder:b11,platform:Mac OS X",14,b0,a8,e3),HX_("83050000000000006020000000000000,iBuffalo USB 2-axis 8-button Gamepad,a:b1,b:b0,x:b3,y:b2,back:b6,start:b7,leftshoulder:b4,rightshoulder:b5,leftx:a0,lefty:a1,platform:Mac OS X",b6,f3,d5,3b),HX_("bd1200000000000015d0000000000000,Tomee SNES USB Controller,x:b3,a:b2,b:b1,y:b0,back:b8,start:b9,leftshoulder:b4,rightshoulder:b5,leftx:a0,lefty:a1,platform:Mac OS X",34,45,2e,98),HX_("79000000000000001100000000000000,Retrolink Classic Controller,x:b3,a:b2,b:b1,y:b0,back:b8,start:b9,leftshoulder:b4,rightshoulder:b5,leftx:a3,lefty:a4,platform:Mac OS X",88,e4,1c,cd),HX_("5e04000000000000dd02000000000000,Xbox One Wired Controller,platform:Mac OS X,x:b2,a:b0,b:b1,y:b3,back:b9,guide:b10,start:b8,dpleft:b13,dpdown:b12,dpright:b14,dpup:b11,leftshoulder:b4,lefttrigger:a2,rightshoulder:b5,righttrigger:a5,leftstick:b6,rightstick:b7,leftx:a0,lefty:a1,rightx:a3,righty:a4",8f,1b,69,14),HX_("5e04000000000000ea02000000000000,Xbox Wireless Controller,platform:Mac OS X,x:b2,a:b0,b:b1,y:b3,back:b9,guide:b10,start:b8,dpleft:b13,dpdown:b12,dpright:b14,dpup:b11,leftshoulder:b4,lefttrigger:a2,rightshoulder:b5,righttrigger:a5,leftstick:b6,rightstick:b7,leftx:a0,lefty:a1,rightx:a3,righty:a4",72,9c,01,41),HX_("5e04000000000000e002000000000000,Xbox Wireless Controller,platform:Mac OS X,x:b2,a:b0,b:b1,y:b3,back:b6,guide:b10,start:b7,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,dpup:h0.1,leftshoulder:b4,lefttrigger:a2,rightshoulder:b5,righttrigger:a5,leftstick:b8,rightstick:b9,leftx:a0,lefty:a1,rightx:a3,righty:a4",a0,92,6b,03),HX_("050000005769696d6f74652028313800,Wii U Pro Controller,a:b16,b:b15,x:b18,y:b17,back:b7,guide:b8,start:b6,leftstick:b23,rightstick:b24,leftshoulder:b19,rightshoulder:b20,dpup:b11,dpdown:b12,dpleft:b13,dpright:b14,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b21,righttrigger:b22,platform:Mac OS X",3a,b1,73,f8),HX_("79000000000000000018000000000000,Mayflash WiiU Pro Game Controller Adapter (DInput),a:b4,b:b8,x:b0,y:b12,back:b32,start:b36,leftstick:b40,rightstick:b44,leftshoulder:b16,rightshoulder:b20,dpup:h0.1,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,leftx:a0,lefty:a4,rightx:a8,righty:a12,lefttrigger:b24,righttrigger:b28,platform:Mac OS X",9f,f2,ce,9d),HX_("2509000000000000e803000000000000,Mayflash Wii Classic Controller,a:b1,b:b0,x:b3,y:b2,back:b8,guide:b10,start:b9,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:b11,dpdown:b13,dpleft:b12,dpright:b14,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7,platform:Mac OS X",62,61,f9,4a),HX_("351200000000000021ab000000000000,SFC30 Joystick,a:b1,b:b0,x:b4,y:b3,back:b10,start:b11,leftshoulder:b6,rightshoulder:b7,leftx:a0,lefty:a1,platform:Mac OS X",c8,8f,6d,cc),HX_("b4040000000000000a01000000000000,Sega Saturn USB Gamepad,a:b0,b:b1,x:b3,y:b4,back:b5,guide:b2,start:b8,leftshoulder:b6,rightshoulder:b7,leftx:a0,lefty:a1,platform:Mac OS X",52,82,6a,a7),HX_("81170000000000007e05000000000000,Sega Saturn,x:b0,a:b2,b:b4,y:b6,start:b13,dpleft:b15,dpdown:b16,dpright:b14,dpup:b17,leftshoulder:b8,lefttrigger:a5,lefttrigger:b10,rightshoulder:b9,righttrigger:a4,righttrigger:b11,leftx:a0,lefty:a2,platform:Mac OS X",3e,0b,d5,22),HX_("10280000000000000900000000000000,8Bitdo SFC30 GamePad,a:b1,b:b0,x:b4,y:b3,back:b10,start:b11,leftshoulder:b6,rightshoulder:b7,leftx:a0,lefty:a1,platform:Mac OS X",bc,63,35,9c),HX_("d814000000000000cecf000000000000,MC Cthulhu,platform:Mac OS X,leftx:,lefty:,rightx:,righty:,lefttrigger:b6,a:b1,b:b2,y:b3,x:b0,start:b9,back:b8,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,righttrigger:b7",54,a7,27,44),HX_("0d0f0000000000006600000000000000,HORIPAD FPS PLUS 4,platform:Mac OS X,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,leftstick:b10,rightstick:b11,leftshoulder:b4,rightshoulder:b5,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftx:a0,lefty:a1,rightx:a2,righty:a5,lefttrigger:b6,righttrigger:a4",4a,0f,e5,08), }; HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_361_alert,"lime.ui.Window","alert",0xe7cddb7f,"lime.ui.Window.alert","lime/ui/Window.hx",361,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_366_close,"lime.ui.Window","close",0x0ea29bdb,"lime.ui.Window.close","lime/ui/Window.hx",366,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_371_focus,"lime.ui.Window","focus",0xcac8e3fb,"lime.ui.Window.focus","lime/ui/Window.hx",371,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_375_move,"lime.ui.Window","move",0x35c0744e,"lime.ui.Window.move","lime/ui/Window.hx",375,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_384_readPixels,"lime.ui.Window","readPixels",0xd5a57020,"lime.ui.Window.readPixels","lime/ui/Window.hx",384,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_388_resize,"lime.ui.Window","resize",0xb9cf7471,"lime.ui.Window.resize","lime/ui/Window.hx",388,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_396_setIcon,"lime.ui.Window","setIcon",0x837a3b1e,"lime.ui.Window.setIcon","lime/ui/Window.hx",396,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_407_toString,"lime.ui.Window","toString",0xfadc4469,"lime.ui.Window.toString","lime/ui/Window.hx",407,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_412_warpMouse,"lime.ui.Window","warpMouse",0x03c6b060,"lime.ui.Window.warpMouse","lime/ui/Window.hx",412,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_418_get_cursor,"lime.ui.Window","get_cursor",0x7eef9b9c,"lime.ui.Window.get_cursor","lime/ui/Window.hx",418,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_423_set_cursor,"lime.ui.Window","set_cursor",0x826d3a10,"lime.ui.Window.set_cursor","lime/ui/Window.hx",423,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_428_get_display,"lime.ui.Window","get_display",0x816e4abc,"lime.ui.Window.get_display","lime/ui/Window.hx",428,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_433_get_displayMode,"lime.ui.Window","get_displayMode",0xe9ea583f,"lime.ui.Window.get_displayMode","lime/ui/Window.hx",433,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_438_set_displayMode,"lime.ui.Window","set_displayMode",0xe5b5d54b,"lime.ui.Window.set_displayMode","lime/ui/Window.hx",438,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_443_get_borderless,"lime.ui.Window","get_borderless",0x37452e0b,"lime.ui.Window.get_borderless","lime/ui/Window.hx",443,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_448_set_borderless,"lime.ui.Window","set_borderless",0x5765167f,"lime.ui.Window.set_borderless","lime/ui/Window.hx",448,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_453_get_frameRate,"lime.ui.Window","get_frameRate",0xe8edc4a7,"lime.ui.Window.get_frameRate","lime/ui/Window.hx",453,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_458_set_frameRate,"lime.ui.Window","set_frameRate",0x2df3a6b3,"lime.ui.Window.set_frameRate","lime/ui/Window.hx",458,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_463_get_fullscreen,"lime.ui.Window","get_fullscreen",0x19882201,"lime.ui.Window.get_fullscreen","lime/ui/Window.hx",463,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_468_set_fullscreen,"lime.ui.Window","set_fullscreen",0x39a80a75,"lime.ui.Window.set_fullscreen","lime/ui/Window.hx",468,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_473_get_height,"lime.ui.Window","get_height",0x425314ad,"lime.ui.Window.get_height","lime/ui/Window.hx",473,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_477_set_height,"lime.ui.Window","set_height",0x45d0b321,"lime.ui.Window.set_height","lime/ui/Window.hx",477,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_484_get_hidden,"lime.ui.Window","get_hidden",0x8c9d0c30,"lime.ui.Window.get_hidden","lime/ui/Window.hx",484,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_489_get_maximized,"lime.ui.Window","get_maximized",0xaea9c112,"lime.ui.Window.get_maximized","lime/ui/Window.hx",489,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_493_set_maximized,"lime.ui.Window","set_maximized",0xf3afa31e,"lime.ui.Window.set_maximized","lime/ui/Window.hx",493,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_500_get_minimized,"lime.ui.Window","get_minimized",0xd866ae80,"lime.ui.Window.get_minimized","lime/ui/Window.hx",500,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_504_set_minimized,"lime.ui.Window","set_minimized",0x1d6c908c,"lime.ui.Window.set_minimized","lime/ui/Window.hx",504,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_511_get_mouseLock,"lime.ui.Window","get_mouseLock",0xa3d507aa,"lime.ui.Window.get_mouseLock","lime/ui/Window.hx",511,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_515_set_mouseLock,"lime.ui.Window","set_mouseLock",0xe8dae9b6,"lime.ui.Window.set_mouseLock","lime/ui/Window.hx",515,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_522_get_resizable,"lime.ui.Window","get_resizable",0x5918ea65,"lime.ui.Window.get_resizable","lime/ui/Window.hx",522,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_526_set_resizable,"lime.ui.Window","set_resizable",0x9e1ecc71,"lime.ui.Window.set_resizable","lime/ui/Window.hx",526,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_533_get_scale,"lime.ui.Window","get_scale",0x19cffc84,"lime.ui.Window.get_scale","lime/ui/Window.hx",533,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_538_get_textInputEnabled,"lime.ui.Window","get_textInputEnabled",0x0bd5462a,"lime.ui.Window.get_textInputEnabled","lime/ui/Window.hx",538,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_543_set_textInputEnabled,"lime.ui.Window","set_textInputEnabled",0xd88cfd9e,"lime.ui.Window.set_textInputEnabled","lime/ui/Window.hx",543,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_548_get_title,"lime.ui.Window","get_title",0xb13c4392,"lime.ui.Window.get_title","lime/ui/Window.hx",548,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_553_set_title,"lime.ui.Window","set_title",0x948d2f9e,"lime.ui.Window.set_title","lime/ui/Window.hx",553,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_558_get_width,"lime.ui.Window","get_width",0x6b63e400,"lime.ui.Window.get_width","lime/ui/Window.hx",558,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_562_set_width,"lime.ui.Window","set_width",0x4eb4d00c,"lime.ui.Window.set_width","lime/ui/Window.hx",562,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_569_get_x,"lime.ui.Window","get_x",0x57a02972,"lime.ui.Window.get_x","lime/ui/Window.hx",569,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_573_set_x,"lime.ui.Window","set_x",0x406f1f7e,"lime.ui.Window.set_x","lime/ui/Window.hx",573,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_580_get_y,"lime.ui.Window","get_y",0x57a02973,"lime.ui.Window.get_y","lime/ui/Window.hx",580,0x6ac7286d) HX_LOCAL_STACK_FRAME(_hx_pos_ee84c8bd7ccb9d8c_584_set_y,"lime.ui.Window","set_y",0x406f1f7f,"lime.ui.Window.set_y","lime/ui/Window.hx",584,0x6ac7286d) namespace lime{ namespace ui{ void Window_obj::__construct( ::lime::app::Application application, ::Dynamic attributes){ HX_GC_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_29_new) HXLINE( 81) this->onTextInput = ::lime::app::_Event_String_Void_obj::__alloc( HX_CTX ); HXLINE( 80) this->onTextEdit = ::lime::app::_Event_String_Int_Int_Void_obj::__alloc( HX_CTX ); HXLINE( 79) this->onRestore = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 78) this->onResize = ::lime::app::_Event_Int_Int_Void_obj::__alloc( HX_CTX ); HXLINE( 77) this->onRenderContextRestored = ::lime::app::_Event_lime_graphics_RenderContext_Void_obj::__alloc( HX_CTX ); HXLINE( 76) this->onRenderContextLost = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 75) this->onRender = ::lime::app::_Event_lime_graphics_RenderContext_Void_obj::__alloc( HX_CTX ); HXLINE( 74) this->onMove = ::lime::app::_Event_Float_Float_Void_obj::__alloc( HX_CTX ); HXLINE( 73) this->onMouseWheel = ::lime::app::_Event_Float_Float_lime_ui_MouseWheelMode_Void_obj::__alloc( HX_CTX ); HXLINE( 72) this->onMouseUp = ::lime::app::_Event_Float_Float_Int_Void_obj::__alloc( HX_CTX ); HXLINE( 71) this->onMouseMoveRelative = ::lime::app::_Event_Float_Float_Void_obj::__alloc( HX_CTX ); HXLINE( 70) this->onMouseMove = ::lime::app::_Event_Float_Float_Void_obj::__alloc( HX_CTX ); HXLINE( 69) this->onMouseDown = ::lime::app::_Event_Float_Float_lime_ui_MouseButton_Void_obj::__alloc( HX_CTX ); HXLINE( 68) this->onMinimize = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 67) this->onMaximize = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 66) this->onLeave = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 65) this->onKeyUp = ::lime::app::_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void_obj::__alloc( HX_CTX ); HXLINE( 64) this->onKeyDown = ::lime::app::_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void_obj::__alloc( HX_CTX ); HXLINE( 63) this->onFullscreen = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 62) this->onFocusOut = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 61) this->onFocusIn = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 60) this->onExpose = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 59) this->onEnter = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 58) this->onDropFile = ::lime::app::_Event_String_Void_obj::__alloc( HX_CTX ); HXLINE( 57) this->onDeactivate = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 56) this->onClose = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 55) this->onActivate = ::lime::app::_Event_Void_Void_obj::__alloc( HX_CTX ); HXLINE( 138) this->application = application; HXLINE( 139) ::Dynamic _hx_tmp; HXDLIN( 139) if (hx::IsNotNull( attributes )) { HXLINE( 139) _hx_tmp = attributes; } else { HXLINE( 139) _hx_tmp = ::Dynamic(hx::Anon_obj::Create(0)); } HXDLIN( 139) this->_hx___attributes = _hx_tmp; HXLINE( 141) if (::Reflect_obj::hasField(this->_hx___attributes,HX_("parameters",aa,be,7e,51))) { HXLINE( 141) this->parameters = ::Dynamic(this->_hx___attributes->__Field(HX_("parameters",aa,be,7e,51),hx::paccDynamic)); } HXLINE( 143) this->_hx___width = (int)0; HXLINE( 144) this->_hx___height = (int)0; HXLINE( 145) this->_hx___fullscreen = false; HXLINE( 146) this->_hx___scale = (int)1; HXLINE( 147) this->_hx___x = (int)0; HXLINE( 148) this->_hx___y = (int)0; HXLINE( 149) this->_hx___title = HX_("",00,00,00,00); HXLINE( 150) this->id = (int)-1; HXLINE( 152) this->_hx___backend = ::lime::_internal::backend::native::NativeWindow_obj::__alloc( HX_CTX ,hx::ObjectPtr<OBJ_>(this)); HXLINE( 208) ::Array< ::String > mappings = ::Array_obj< ::String >::fromData( _hx_array_data_feb85851_1,32); HXLINE( 245) ::lime::ui::Gamepad_obj::addMappings(mappings); } Dynamic Window_obj::__CreateEmpty() { return new Window_obj; } void *Window_obj::_hx_vtable = 0; Dynamic Window_obj::__Create(hx::DynamicArray inArgs) { hx::ObjectPtr< Window_obj > _hx_result = new Window_obj(); _hx_result->__construct(inArgs[0],inArgs[1]); return _hx_result; } bool Window_obj::_hx_isInstanceOf(int inClassId) { return inClassId==(int)0x00000001 || inClassId==(int)0x1abdb2dd; } void Window_obj::alert(::String message,::String title){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_361_alert) HXDLIN( 361) this->_hx___backend->alert(message,title); } HX_DEFINE_DYNAMIC_FUNC2(Window_obj,alert,(void)) void Window_obj::close(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_366_close) HXDLIN( 366) this->_hx___backend->close(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,close,(void)) void Window_obj::focus(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_371_focus) HXDLIN( 371) this->_hx___backend->focus(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,focus,(void)) void Window_obj::move(int x,int y){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_375_move) HXLINE( 376) this->_hx___backend->move(x,y); HXLINE( 378) this->_hx___x = x; HXLINE( 379) this->_hx___y = y; } HX_DEFINE_DYNAMIC_FUNC2(Window_obj,move,(void)) ::lime::graphics::Image Window_obj::readPixels( ::lime::math::Rectangle rect){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_384_readPixels) HXDLIN( 384) return this->_hx___backend->readPixels(rect); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,readPixels,return ) void Window_obj::resize(int width,int height){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_388_resize) HXLINE( 389) this->_hx___backend->resize(width,height); HXLINE( 391) this->_hx___width = width; HXLINE( 392) this->_hx___height = height; } HX_DEFINE_DYNAMIC_FUNC2(Window_obj,resize,(void)) void Window_obj::setIcon( ::lime::graphics::Image image){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_396_setIcon) HXLINE( 397) if (hx::IsNull( image )) { HXLINE( 399) return; } HXLINE( 402) this->_hx___backend->setIcon(image); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,setIcon,(void)) ::String Window_obj::toString(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_407_toString) HXDLIN( 407) return HX_("[object Window]",87,e9,90,f1); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,toString,return ) void Window_obj::warpMouse(int x,int y){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_412_warpMouse) HXDLIN( 412) this->_hx___backend->warpMouse(x,y); } HX_DEFINE_DYNAMIC_FUNC2(Window_obj,warpMouse,(void)) ::lime::ui::MouseCursor Window_obj::get_cursor(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_418_get_cursor) HXDLIN( 418) return this->_hx___backend->getCursor(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_cursor,return ) ::lime::ui::MouseCursor Window_obj::set_cursor( ::lime::ui::MouseCursor value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_423_set_cursor) HXDLIN( 423) return this->_hx___backend->setCursor(value); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_cursor,return ) ::lime::_hx_system::Display Window_obj::get_display(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_428_get_display) HXDLIN( 428) return this->_hx___backend->getDisplay(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_display,return ) ::lime::_hx_system::DisplayMode Window_obj::get_displayMode(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_433_get_displayMode) HXDLIN( 433) return this->_hx___backend->getDisplayMode(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_displayMode,return ) ::lime::_hx_system::DisplayMode Window_obj::set_displayMode( ::lime::_hx_system::DisplayMode value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_438_set_displayMode) HXDLIN( 438) return this->_hx___backend->setDisplayMode(value); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_displayMode,return ) bool Window_obj::get_borderless(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_443_get_borderless) HXDLIN( 443) return this->_hx___borderless; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_borderless,return ) bool Window_obj::set_borderless(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_448_set_borderless) HXDLIN( 448) return (this->_hx___borderless = this->_hx___backend->setBorderless(value)); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_borderless,return ) Float Window_obj::get_frameRate(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_453_get_frameRate) HXDLIN( 453) return this->_hx___backend->getFrameRate(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_frameRate,return ) Float Window_obj::set_frameRate(Float value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_458_set_frameRate) HXDLIN( 458) return this->_hx___backend->setFrameRate(value); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_frameRate,return ) bool Window_obj::get_fullscreen(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_463_get_fullscreen) HXDLIN( 463) return this->_hx___fullscreen; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_fullscreen,return ) bool Window_obj::set_fullscreen(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_468_set_fullscreen) HXDLIN( 468) return (this->_hx___fullscreen = this->_hx___backend->setFullscreen(value)); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_fullscreen,return ) int Window_obj::get_height(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_473_get_height) HXDLIN( 473) return this->_hx___height; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_height,return ) int Window_obj::set_height(int value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_477_set_height) HXLINE( 478) this->resize(this->_hx___width,value); HXLINE( 479) return this->_hx___height; } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_height,return ) bool Window_obj::get_hidden(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_484_get_hidden) HXDLIN( 484) return this->_hx___hidden; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_hidden,return ) bool Window_obj::get_maximized(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_489_get_maximized) HXDLIN( 489) return this->_hx___maximized; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_maximized,return ) bool Window_obj::set_maximized(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_493_set_maximized) HXLINE( 494) this->_hx___minimized = false; HXLINE( 495) return (this->_hx___maximized = this->_hx___backend->setMaximized(value)); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_maximized,return ) bool Window_obj::get_minimized(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_500_get_minimized) HXDLIN( 500) return this->_hx___minimized; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_minimized,return ) bool Window_obj::set_minimized(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_504_set_minimized) HXLINE( 505) this->_hx___maximized = false; HXLINE( 506) return (this->_hx___minimized = this->_hx___backend->setMinimized(value)); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_minimized,return ) bool Window_obj::get_mouseLock(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_511_get_mouseLock) HXDLIN( 511) return this->_hx___backend->getMouseLock(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_mouseLock,return ) bool Window_obj::set_mouseLock(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_515_set_mouseLock) HXLINE( 516) this->_hx___backend->setMouseLock(value); HXLINE( 517) return value; } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_mouseLock,return ) bool Window_obj::get_resizable(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_522_get_resizable) HXDLIN( 522) return this->_hx___resizable; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_resizable,return ) bool Window_obj::set_resizable(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_526_set_resizable) HXLINE( 527) this->_hx___resizable = this->_hx___backend->setResizable(value); HXLINE( 528) return this->_hx___resizable; } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_resizable,return ) Float Window_obj::get_scale(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_533_get_scale) HXDLIN( 533) return this->_hx___scale; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_scale,return ) bool Window_obj::get_textInputEnabled(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_538_get_textInputEnabled) HXDLIN( 538) return this->_hx___backend->getTextInputEnabled(); } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_textInputEnabled,return ) bool Window_obj::set_textInputEnabled(bool value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_543_set_textInputEnabled) HXDLIN( 543) return this->_hx___backend->setTextInputEnabled(value); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_textInputEnabled,return ) ::String Window_obj::get_title(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_548_get_title) HXDLIN( 548) return this->_hx___title; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_title,return ) ::String Window_obj::set_title(::String value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_553_set_title) HXDLIN( 553) return (this->_hx___title = this->_hx___backend->setTitle(value)); } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_title,return ) int Window_obj::get_width(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_558_get_width) HXDLIN( 558) return this->_hx___width; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_width,return ) int Window_obj::set_width(int value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_562_set_width) HXLINE( 563) this->resize(value,this->_hx___height); HXLINE( 564) return this->_hx___width; } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_width,return ) int Window_obj::get_x(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_569_get_x) HXDLIN( 569) return this->_hx___x; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_x,return ) int Window_obj::set_x(int value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_573_set_x) HXLINE( 574) this->move(value,this->_hx___y); HXLINE( 575) return this->_hx___x; } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_x,return ) int Window_obj::get_y(){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_580_get_y) HXDLIN( 580) return this->_hx___y; } HX_DEFINE_DYNAMIC_FUNC0(Window_obj,get_y,return ) int Window_obj::set_y(int value){ HX_STACKFRAME(&_hx_pos_ee84c8bd7ccb9d8c_584_set_y) HXLINE( 585) this->move(this->_hx___x,value); HXLINE( 586) return this->_hx___y; } HX_DEFINE_DYNAMIC_FUNC1(Window_obj,set_y,return ) hx::ObjectPtr< Window_obj > Window_obj::__new( ::lime::app::Application application, ::Dynamic attributes) { hx::ObjectPtr< Window_obj > __this = new Window_obj(); __this->__construct(application,attributes); return __this; } hx::ObjectPtr< Window_obj > Window_obj::__alloc(hx::Ctx *_hx_ctx, ::lime::app::Application application, ::Dynamic attributes) { Window_obj *__this = (Window_obj*)(hx::Ctx::alloc(_hx_ctx, sizeof(Window_obj), true, "lime.ui.Window")); *(void **)__this = Window_obj::_hx_vtable; __this->__construct(application,attributes); return __this; } Window_obj::Window_obj() { } void Window_obj::__Mark(HX_MARK_PARAMS) { HX_MARK_BEGIN_CLASS(Window); HX_MARK_MEMBER_NAME(application,"application"); HX_MARK_MEMBER_NAME(context,"context"); HX_MARK_MEMBER_NAME(display,"display"); HX_MARK_MEMBER_NAME(element,"element"); HX_MARK_MEMBER_NAME(hidden,"hidden"); HX_MARK_MEMBER_NAME(id,"id"); HX_MARK_MEMBER_NAME(onActivate,"onActivate"); HX_MARK_MEMBER_NAME(onClose,"onClose"); HX_MARK_MEMBER_NAME(onDeactivate,"onDeactivate"); HX_MARK_MEMBER_NAME(onDropFile,"onDropFile"); HX_MARK_MEMBER_NAME(onEnter,"onEnter"); HX_MARK_MEMBER_NAME(onExpose,"onExpose"); HX_MARK_MEMBER_NAME(onFocusIn,"onFocusIn"); HX_MARK_MEMBER_NAME(onFocusOut,"onFocusOut"); HX_MARK_MEMBER_NAME(onFullscreen,"onFullscreen"); HX_MARK_MEMBER_NAME(onKeyDown,"onKeyDown"); HX_MARK_MEMBER_NAME(onKeyUp,"onKeyUp"); HX_MARK_MEMBER_NAME(onLeave,"onLeave"); HX_MARK_MEMBER_NAME(onMaximize,"onMaximize"); HX_MARK_MEMBER_NAME(onMinimize,"onMinimize"); HX_MARK_MEMBER_NAME(onMouseDown,"onMouseDown"); HX_MARK_MEMBER_NAME(onMouseMove,"onMouseMove"); HX_MARK_MEMBER_NAME(onMouseMoveRelative,"onMouseMoveRelative"); HX_MARK_MEMBER_NAME(onMouseUp,"onMouseUp"); HX_MARK_MEMBER_NAME(onMouseWheel,"onMouseWheel"); HX_MARK_MEMBER_NAME(onMove,"onMove"); HX_MARK_MEMBER_NAME(onRender,"onRender"); HX_MARK_MEMBER_NAME(onRenderContextLost,"onRenderContextLost"); HX_MARK_MEMBER_NAME(onRenderContextRestored,"onRenderContextRestored"); HX_MARK_MEMBER_NAME(onResize,"onResize"); HX_MARK_MEMBER_NAME(onRestore,"onRestore"); HX_MARK_MEMBER_NAME(onTextEdit,"onTextEdit"); HX_MARK_MEMBER_NAME(onTextInput,"onTextInput"); HX_MARK_MEMBER_NAME(parameters,"parameters"); HX_MARK_MEMBER_NAME(scale,"scale"); HX_MARK_MEMBER_NAME(stage,"stage"); HX_MARK_MEMBER_NAME(_hx___attributes,"__attributes"); HX_MARK_MEMBER_NAME(_hx___backend,"__backend"); HX_MARK_MEMBER_NAME(_hx___borderless,"__borderless"); HX_MARK_MEMBER_NAME(_hx___fullscreen,"__fullscreen"); HX_MARK_MEMBER_NAME(_hx___height,"__height"); HX_MARK_MEMBER_NAME(_hx___hidden,"__hidden"); HX_MARK_MEMBER_NAME(_hx___maximized,"__maximized"); HX_MARK_MEMBER_NAME(_hx___minimized,"__minimized"); HX_MARK_MEMBER_NAME(_hx___resizable,"__resizable"); HX_MARK_MEMBER_NAME(_hx___scale,"__scale"); HX_MARK_MEMBER_NAME(_hx___title,"__title"); HX_MARK_MEMBER_NAME(_hx___width,"__width"); HX_MARK_MEMBER_NAME(_hx___x,"__x"); HX_MARK_MEMBER_NAME(_hx___y,"__y"); HX_MARK_END_CLASS(); } void Window_obj::__Visit(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(application,"application"); HX_VISIT_MEMBER_NAME(context,"context"); HX_VISIT_MEMBER_NAME(display,"display"); HX_VISIT_MEMBER_NAME(element,"element"); HX_VISIT_MEMBER_NAME(hidden,"hidden"); HX_VISIT_MEMBER_NAME(id,"id"); HX_VISIT_MEMBER_NAME(onActivate,"onActivate"); HX_VISIT_MEMBER_NAME(onClose,"onClose"); HX_VISIT_MEMBER_NAME(onDeactivate,"onDeactivate"); HX_VISIT_MEMBER_NAME(onDropFile,"onDropFile"); HX_VISIT_MEMBER_NAME(onEnter,"onEnter"); HX_VISIT_MEMBER_NAME(onExpose,"onExpose"); HX_VISIT_MEMBER_NAME(onFocusIn,"onFocusIn"); HX_VISIT_MEMBER_NAME(onFocusOut,"onFocusOut"); HX_VISIT_MEMBER_NAME(onFullscreen,"onFullscreen"); HX_VISIT_MEMBER_NAME(onKeyDown,"onKeyDown"); HX_VISIT_MEMBER_NAME(onKeyUp,"onKeyUp"); HX_VISIT_MEMBER_NAME(onLeave,"onLeave"); HX_VISIT_MEMBER_NAME(onMaximize,"onMaximize"); HX_VISIT_MEMBER_NAME(onMinimize,"onMinimize"); HX_VISIT_MEMBER_NAME(onMouseDown,"onMouseDown"); HX_VISIT_MEMBER_NAME(onMouseMove,"onMouseMove"); HX_VISIT_MEMBER_NAME(onMouseMoveRelative,"onMouseMoveRelative"); HX_VISIT_MEMBER_NAME(onMouseUp,"onMouseUp"); HX_VISIT_MEMBER_NAME(onMouseWheel,"onMouseWheel"); HX_VISIT_MEMBER_NAME(onMove,"onMove"); HX_VISIT_MEMBER_NAME(onRender,"onRender"); HX_VISIT_MEMBER_NAME(onRenderContextLost,"onRenderContextLost"); HX_VISIT_MEMBER_NAME(onRenderContextRestored,"onRenderContextRestored"); HX_VISIT_MEMBER_NAME(onResize,"onResize"); HX_VISIT_MEMBER_NAME(onRestore,"onRestore"); HX_VISIT_MEMBER_NAME(onTextEdit,"onTextEdit"); HX_VISIT_MEMBER_NAME(onTextInput,"onTextInput"); HX_VISIT_MEMBER_NAME(parameters,"parameters"); HX_VISIT_MEMBER_NAME(scale,"scale"); HX_VISIT_MEMBER_NAME(stage,"stage"); HX_VISIT_MEMBER_NAME(_hx___attributes,"__attributes"); HX_VISIT_MEMBER_NAME(_hx___backend,"__backend"); HX_VISIT_MEMBER_NAME(_hx___borderless,"__borderless"); HX_VISIT_MEMBER_NAME(_hx___fullscreen,"__fullscreen"); HX_VISIT_MEMBER_NAME(_hx___height,"__height"); HX_VISIT_MEMBER_NAME(_hx___hidden,"__hidden"); HX_VISIT_MEMBER_NAME(_hx___maximized,"__maximized"); HX_VISIT_MEMBER_NAME(_hx___minimized,"__minimized"); HX_VISIT_MEMBER_NAME(_hx___resizable,"__resizable"); HX_VISIT_MEMBER_NAME(_hx___scale,"__scale"); HX_VISIT_MEMBER_NAME(_hx___title,"__title"); HX_VISIT_MEMBER_NAME(_hx___width,"__width"); HX_VISIT_MEMBER_NAME(_hx___x,"__x"); HX_VISIT_MEMBER_NAME(_hx___y,"__y"); } hx::Val Window_obj::__Field(const ::String &inName,hx::PropertyAccess inCallProp) { switch(inName.length) { case 1: if (HX_FIELD_EQ(inName,"x") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_x() ); } if (HX_FIELD_EQ(inName,"y") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_y() ); } break; case 2: if (HX_FIELD_EQ(inName,"id") ) { return hx::Val( id ); } break; case 3: if (HX_FIELD_EQ(inName,"__x") ) { return hx::Val( _hx___x ); } if (HX_FIELD_EQ(inName,"__y") ) { return hx::Val( _hx___y ); } break; case 4: if (HX_FIELD_EQ(inName,"move") ) { return hx::Val( move_dyn() ); } break; case 5: if (HX_FIELD_EQ(inName,"scale") ) { return hx::Val( inCallProp == hx::paccAlways ? get_scale() : scale ); } if (HX_FIELD_EQ(inName,"stage") ) { return hx::Val( stage ); } if (HX_FIELD_EQ(inName,"title") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_title() ); } if (HX_FIELD_EQ(inName,"width") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_width() ); } if (HX_FIELD_EQ(inName,"alert") ) { return hx::Val( alert_dyn() ); } if (HX_FIELD_EQ(inName,"close") ) { return hx::Val( close_dyn() ); } if (HX_FIELD_EQ(inName,"focus") ) { return hx::Val( focus_dyn() ); } if (HX_FIELD_EQ(inName,"get_x") ) { return hx::Val( get_x_dyn() ); } if (HX_FIELD_EQ(inName,"set_x") ) { return hx::Val( set_x_dyn() ); } if (HX_FIELD_EQ(inName,"get_y") ) { return hx::Val( get_y_dyn() ); } if (HX_FIELD_EQ(inName,"set_y") ) { return hx::Val( set_y_dyn() ); } break; case 6: if (HX_FIELD_EQ(inName,"cursor") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_cursor() ); } if (HX_FIELD_EQ(inName,"height") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_height() ); } if (HX_FIELD_EQ(inName,"hidden") ) { return hx::Val( inCallProp == hx::paccAlways ? get_hidden() : hidden ); } if (HX_FIELD_EQ(inName,"onMove") ) { return hx::Val( onMove ); } if (HX_FIELD_EQ(inName,"resize") ) { return hx::Val( resize_dyn() ); } break; case 7: if (HX_FIELD_EQ(inName,"context") ) { return hx::Val( context ); } if (HX_FIELD_EQ(inName,"display") ) { return hx::Val( inCallProp == hx::paccAlways ? get_display() : display ); } if (HX_FIELD_EQ(inName,"element") ) { return hx::Val( element ); } if (HX_FIELD_EQ(inName,"onClose") ) { return hx::Val( onClose ); } if (HX_FIELD_EQ(inName,"onEnter") ) { return hx::Val( onEnter ); } if (HX_FIELD_EQ(inName,"onKeyUp") ) { return hx::Val( onKeyUp ); } if (HX_FIELD_EQ(inName,"onLeave") ) { return hx::Val( onLeave ); } if (HX_FIELD_EQ(inName,"__scale") ) { return hx::Val( _hx___scale ); } if (HX_FIELD_EQ(inName,"__title") ) { return hx::Val( _hx___title ); } if (HX_FIELD_EQ(inName,"__width") ) { return hx::Val( _hx___width ); } if (HX_FIELD_EQ(inName,"setIcon") ) { return hx::Val( setIcon_dyn() ); } break; case 8: if (HX_FIELD_EQ(inName,"onExpose") ) { return hx::Val( onExpose ); } if (HX_FIELD_EQ(inName,"onRender") ) { return hx::Val( onRender ); } if (HX_FIELD_EQ(inName,"onResize") ) { return hx::Val( onResize ); } if (HX_FIELD_EQ(inName,"__height") ) { return hx::Val( _hx___height ); } if (HX_FIELD_EQ(inName,"__hidden") ) { return hx::Val( _hx___hidden ); } if (HX_FIELD_EQ(inName,"toString") ) { return hx::Val( toString_dyn() ); } break; case 9: if (HX_FIELD_EQ(inName,"frameRate") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_frameRate() ); } if (HX_FIELD_EQ(inName,"maximized") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_maximized() ); } if (HX_FIELD_EQ(inName,"minimized") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_minimized() ); } if (HX_FIELD_EQ(inName,"mouseLock") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_mouseLock() ); } if (HX_FIELD_EQ(inName,"onFocusIn") ) { return hx::Val( onFocusIn ); } if (HX_FIELD_EQ(inName,"onKeyDown") ) { return hx::Val( onKeyDown ); } if (HX_FIELD_EQ(inName,"onMouseUp") ) { return hx::Val( onMouseUp ); } if (HX_FIELD_EQ(inName,"onRestore") ) { return hx::Val( onRestore ); } if (HX_FIELD_EQ(inName,"resizable") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_resizable() ); } if (HX_FIELD_EQ(inName,"__backend") ) { return hx::Val( _hx___backend ); } if (HX_FIELD_EQ(inName,"warpMouse") ) { return hx::Val( warpMouse_dyn() ); } if (HX_FIELD_EQ(inName,"get_scale") ) { return hx::Val( get_scale_dyn() ); } if (HX_FIELD_EQ(inName,"get_title") ) { return hx::Val( get_title_dyn() ); } if (HX_FIELD_EQ(inName,"set_title") ) { return hx::Val( set_title_dyn() ); } if (HX_FIELD_EQ(inName,"get_width") ) { return hx::Val( get_width_dyn() ); } if (HX_FIELD_EQ(inName,"set_width") ) { return hx::Val( set_width_dyn() ); } break; case 10: if (HX_FIELD_EQ(inName,"borderless") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_borderless() ); } if (HX_FIELD_EQ(inName,"fullscreen") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_fullscreen() ); } if (HX_FIELD_EQ(inName,"onActivate") ) { return hx::Val( onActivate ); } if (HX_FIELD_EQ(inName,"onDropFile") ) { return hx::Val( onDropFile ); } if (HX_FIELD_EQ(inName,"onFocusOut") ) { return hx::Val( onFocusOut ); } if (HX_FIELD_EQ(inName,"onMaximize") ) { return hx::Val( onMaximize ); } if (HX_FIELD_EQ(inName,"onMinimize") ) { return hx::Val( onMinimize ); } if (HX_FIELD_EQ(inName,"onTextEdit") ) { return hx::Val( onTextEdit ); } if (HX_FIELD_EQ(inName,"parameters") ) { return hx::Val( parameters ); } if (HX_FIELD_EQ(inName,"readPixels") ) { return hx::Val( readPixels_dyn() ); } if (HX_FIELD_EQ(inName,"get_cursor") ) { return hx::Val( get_cursor_dyn() ); } if (HX_FIELD_EQ(inName,"set_cursor") ) { return hx::Val( set_cursor_dyn() ); } if (HX_FIELD_EQ(inName,"get_height") ) { return hx::Val( get_height_dyn() ); } if (HX_FIELD_EQ(inName,"set_height") ) { return hx::Val( set_height_dyn() ); } if (HX_FIELD_EQ(inName,"get_hidden") ) { return hx::Val( get_hidden_dyn() ); } break; case 11: if (HX_FIELD_EQ(inName,"application") ) { return hx::Val( application ); } if (HX_FIELD_EQ(inName,"displayMode") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_displayMode() ); } if (HX_FIELD_EQ(inName,"onMouseDown") ) { return hx::Val( onMouseDown ); } if (HX_FIELD_EQ(inName,"onMouseMove") ) { return hx::Val( onMouseMove ); } if (HX_FIELD_EQ(inName,"onTextInput") ) { return hx::Val( onTextInput ); } if (HX_FIELD_EQ(inName,"__maximized") ) { return hx::Val( _hx___maximized ); } if (HX_FIELD_EQ(inName,"__minimized") ) { return hx::Val( _hx___minimized ); } if (HX_FIELD_EQ(inName,"__resizable") ) { return hx::Val( _hx___resizable ); } if (HX_FIELD_EQ(inName,"get_display") ) { return hx::Val( get_display_dyn() ); } break; case 12: if (HX_FIELD_EQ(inName,"onDeactivate") ) { return hx::Val( onDeactivate ); } if (HX_FIELD_EQ(inName,"onFullscreen") ) { return hx::Val( onFullscreen ); } if (HX_FIELD_EQ(inName,"onMouseWheel") ) { return hx::Val( onMouseWheel ); } if (HX_FIELD_EQ(inName,"__attributes") ) { return hx::Val( _hx___attributes ); } if (HX_FIELD_EQ(inName,"__borderless") ) { return hx::Val( _hx___borderless ); } if (HX_FIELD_EQ(inName,"__fullscreen") ) { return hx::Val( _hx___fullscreen ); } break; case 13: if (HX_FIELD_EQ(inName,"get_frameRate") ) { return hx::Val( get_frameRate_dyn() ); } if (HX_FIELD_EQ(inName,"set_frameRate") ) { return hx::Val( set_frameRate_dyn() ); } if (HX_FIELD_EQ(inName,"get_maximized") ) { return hx::Val( get_maximized_dyn() ); } if (HX_FIELD_EQ(inName,"set_maximized") ) { return hx::Val( set_maximized_dyn() ); } if (HX_FIELD_EQ(inName,"get_minimized") ) { return hx::Val( get_minimized_dyn() ); } if (HX_FIELD_EQ(inName,"set_minimized") ) { return hx::Val( set_minimized_dyn() ); } if (HX_FIELD_EQ(inName,"get_mouseLock") ) { return hx::Val( get_mouseLock_dyn() ); } if (HX_FIELD_EQ(inName,"set_mouseLock") ) { return hx::Val( set_mouseLock_dyn() ); } if (HX_FIELD_EQ(inName,"get_resizable") ) { return hx::Val( get_resizable_dyn() ); } if (HX_FIELD_EQ(inName,"set_resizable") ) { return hx::Val( set_resizable_dyn() ); } break; case 14: if (HX_FIELD_EQ(inName,"get_borderless") ) { return hx::Val( get_borderless_dyn() ); } if (HX_FIELD_EQ(inName,"set_borderless") ) { return hx::Val( set_borderless_dyn() ); } if (HX_FIELD_EQ(inName,"get_fullscreen") ) { return hx::Val( get_fullscreen_dyn() ); } if (HX_FIELD_EQ(inName,"set_fullscreen") ) { return hx::Val( set_fullscreen_dyn() ); } break; case 15: if (HX_FIELD_EQ(inName,"get_displayMode") ) { return hx::Val( get_displayMode_dyn() ); } if (HX_FIELD_EQ(inName,"set_displayMode") ) { return hx::Val( set_displayMode_dyn() ); } break; case 16: if (HX_FIELD_EQ(inName,"textInputEnabled") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_textInputEnabled() ); } break; case 19: if (HX_FIELD_EQ(inName,"onMouseMoveRelative") ) { return hx::Val( onMouseMoveRelative ); } if (HX_FIELD_EQ(inName,"onRenderContextLost") ) { return hx::Val( onRenderContextLost ); } break; case 20: if (HX_FIELD_EQ(inName,"get_textInputEnabled") ) { return hx::Val( get_textInputEnabled_dyn() ); } if (HX_FIELD_EQ(inName,"set_textInputEnabled") ) { return hx::Val( set_textInputEnabled_dyn() ); } break; case 23: if (HX_FIELD_EQ(inName,"onRenderContextRestored") ) { return hx::Val( onRenderContextRestored ); } } return super::__Field(inName,inCallProp); } hx::Val Window_obj::__SetField(const ::String &inName,const hx::Val &inValue,hx::PropertyAccess inCallProp) { switch(inName.length) { case 1: if (HX_FIELD_EQ(inName,"x") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_x(inValue.Cast< int >()) ); } if (HX_FIELD_EQ(inName,"y") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_y(inValue.Cast< int >()) ); } break; case 2: if (HX_FIELD_EQ(inName,"id") ) { id=inValue.Cast< int >(); return inValue; } break; case 3: if (HX_FIELD_EQ(inName,"__x") ) { _hx___x=inValue.Cast< int >(); return inValue; } if (HX_FIELD_EQ(inName,"__y") ) { _hx___y=inValue.Cast< int >(); return inValue; } break; case 5: if (HX_FIELD_EQ(inName,"scale") ) { scale=inValue.Cast< Float >(); return inValue; } if (HX_FIELD_EQ(inName,"stage") ) { stage=inValue.Cast< ::openfl::display::Stage >(); return inValue; } if (HX_FIELD_EQ(inName,"title") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_title(inValue.Cast< ::String >()) ); } if (HX_FIELD_EQ(inName,"width") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_width(inValue.Cast< int >()) ); } break; case 6: if (HX_FIELD_EQ(inName,"cursor") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_cursor(inValue.Cast< ::lime::ui::MouseCursor >()) ); } if (HX_FIELD_EQ(inName,"height") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_height(inValue.Cast< int >()) ); } if (HX_FIELD_EQ(inName,"hidden") ) { hidden=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"onMove") ) { onMove=inValue.Cast< ::lime::app::_Event_Float_Float_Void >(); return inValue; } break; case 7: if (HX_FIELD_EQ(inName,"context") ) { context=inValue.Cast< ::lime::graphics::RenderContext >(); return inValue; } if (HX_FIELD_EQ(inName,"display") ) { display=inValue.Cast< ::lime::_hx_system::Display >(); return inValue; } if (HX_FIELD_EQ(inName,"element") ) { element=inValue.Cast< ::Dynamic >(); return inValue; } if (HX_FIELD_EQ(inName,"onClose") ) { onClose=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onEnter") ) { onEnter=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onKeyUp") ) { onKeyUp=inValue.Cast< ::lime::app::_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onLeave") ) { onLeave=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"__scale") ) { _hx___scale=inValue.Cast< Float >(); return inValue; } if (HX_FIELD_EQ(inName,"__title") ) { _hx___title=inValue.Cast< ::String >(); return inValue; } if (HX_FIELD_EQ(inName,"__width") ) { _hx___width=inValue.Cast< int >(); return inValue; } break; case 8: if (HX_FIELD_EQ(inName,"onExpose") ) { onExpose=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onRender") ) { onRender=inValue.Cast< ::lime::app::_Event_lime_graphics_RenderContext_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onResize") ) { onResize=inValue.Cast< ::lime::app::_Event_Int_Int_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"__height") ) { _hx___height=inValue.Cast< int >(); return inValue; } if (HX_FIELD_EQ(inName,"__hidden") ) { _hx___hidden=inValue.Cast< bool >(); return inValue; } break; case 9: if (HX_FIELD_EQ(inName,"frameRate") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_frameRate(inValue.Cast< Float >()) ); } if (HX_FIELD_EQ(inName,"maximized") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_maximized(inValue.Cast< bool >()) ); } if (HX_FIELD_EQ(inName,"minimized") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_minimized(inValue.Cast< bool >()) ); } if (HX_FIELD_EQ(inName,"mouseLock") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_mouseLock(inValue.Cast< bool >()) ); } if (HX_FIELD_EQ(inName,"onFocusIn") ) { onFocusIn=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onKeyDown") ) { onKeyDown=inValue.Cast< ::lime::app::_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onMouseUp") ) { onMouseUp=inValue.Cast< ::lime::app::_Event_Float_Float_Int_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onRestore") ) { onRestore=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"resizable") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_resizable(inValue.Cast< bool >()) ); } if (HX_FIELD_EQ(inName,"__backend") ) { _hx___backend=inValue.Cast< ::lime::_internal::backend::native::NativeWindow >(); return inValue; } break; case 10: if (HX_FIELD_EQ(inName,"borderless") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_borderless(inValue.Cast< bool >()) ); } if (HX_FIELD_EQ(inName,"fullscreen") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_fullscreen(inValue.Cast< bool >()) ); } if (HX_FIELD_EQ(inName,"onActivate") ) { onActivate=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onDropFile") ) { onDropFile=inValue.Cast< ::lime::app::_Event_String_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onFocusOut") ) { onFocusOut=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onMaximize") ) { onMaximize=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onMinimize") ) { onMinimize=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onTextEdit") ) { onTextEdit=inValue.Cast< ::lime::app::_Event_String_Int_Int_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"parameters") ) { parameters=inValue.Cast< ::Dynamic >(); return inValue; } break; case 11: if (HX_FIELD_EQ(inName,"application") ) { application=inValue.Cast< ::lime::app::Application >(); return inValue; } if (HX_FIELD_EQ(inName,"displayMode") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_displayMode(inValue.Cast< ::lime::_hx_system::DisplayMode >()) ); } if (HX_FIELD_EQ(inName,"onMouseDown") ) { onMouseDown=inValue.Cast< ::lime::app::_Event_Float_Float_lime_ui_MouseButton_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onMouseMove") ) { onMouseMove=inValue.Cast< ::lime::app::_Event_Float_Float_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onTextInput") ) { onTextInput=inValue.Cast< ::lime::app::_Event_String_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"__maximized") ) { _hx___maximized=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"__minimized") ) { _hx___minimized=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"__resizable") ) { _hx___resizable=inValue.Cast< bool >(); return inValue; } break; case 12: if (HX_FIELD_EQ(inName,"onDeactivate") ) { onDeactivate=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onFullscreen") ) { onFullscreen=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onMouseWheel") ) { onMouseWheel=inValue.Cast< ::lime::app::_Event_Float_Float_lime_ui_MouseWheelMode_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"__attributes") ) { _hx___attributes=inValue.Cast< ::Dynamic >(); return inValue; } if (HX_FIELD_EQ(inName,"__borderless") ) { _hx___borderless=inValue.Cast< bool >(); return inValue; } if (HX_FIELD_EQ(inName,"__fullscreen") ) { _hx___fullscreen=inValue.Cast< bool >(); return inValue; } break; case 16: if (HX_FIELD_EQ(inName,"textInputEnabled") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_textInputEnabled(inValue.Cast< bool >()) ); } break; case 19: if (HX_FIELD_EQ(inName,"onMouseMoveRelative") ) { onMouseMoveRelative=inValue.Cast< ::lime::app::_Event_Float_Float_Void >(); return inValue; } if (HX_FIELD_EQ(inName,"onRenderContextLost") ) { onRenderContextLost=inValue.Cast< ::lime::app::_Event_Void_Void >(); return inValue; } break; case 23: if (HX_FIELD_EQ(inName,"onRenderContextRestored") ) { onRenderContextRestored=inValue.Cast< ::lime::app::_Event_lime_graphics_RenderContext_Void >(); return inValue; } } return super::__SetField(inName,inValue,inCallProp); } void Window_obj::__GetFields(Array< ::String> &outFields) { outFields->push(HX_HCSTRING("application","\x50","\xab","\x3e","\x2a")); outFields->push(HX_HCSTRING("borderless","\x45","\x46","\x71","\x17")); outFields->push(HX_HCSTRING("context","\xef","\x95","\x77","\x19")); outFields->push(HX_HCSTRING("cursor","\xd6","\x8e","\xe8","\x3e")); outFields->push(HX_HCSTRING("display","\x42","\x2a","\x4a","\xbb")); outFields->push(HX_HCSTRING("displayMode","\xc5","\x72","\x53","\x30")); outFields->push(HX_HCSTRING("element","\xbc","\xae","\x54","\x06")); outFields->push(HX_HCSTRING("frameRate","\xad","\x11","\x25","\x39")); outFields->push(HX_HCSTRING("fullscreen","\x3b","\x3a","\xb4","\xf9")); outFields->push(HX_HCSTRING("height","\xe7","\x07","\x4c","\x02")); outFields->push(HX_HCSTRING("hidden","\x6a","\xff","\x95","\x4c")); outFields->push(HX_HCSTRING("id","\xdb","\x5b","\x00","\x00")); outFields->push(HX_HCSTRING("maximized","\x18","\x0e","\xe1","\xfe")); outFields->push(HX_HCSTRING("minimized","\x86","\xfb","\x9d","\x28")); outFields->push(HX_HCSTRING("mouseLock","\xb0","\x54","\x0c","\xf4")); outFields->push(HX_HCSTRING("onActivate","\xf2","\xef","\x62","\xc3")); outFields->push(HX_HCSTRING("onClose","\x19","\xb6","\xa0","\xde")); outFields->push(HX_HCSTRING("onDeactivate","\x33","\xfe","\x44","\x14")); outFields->push(HX_HCSTRING("onDropFile","\x8a","\x4a","\x0d","\xc7")); outFields->push(HX_HCSTRING("onEnter","\x79","\x0b","\xc4","\x06")); outFields->push(HX_HCSTRING("onExpose","\xc3","\x88","\x2a","\xa4")); outFields->push(HX_HCSTRING("onFocusIn","\x7e","\xfe","\x2d","\x19")); outFields->push(HX_HCSTRING("onFocusOut","\xd5","\x43","\x15","\xef")); outFields->push(HX_HCSTRING("onFullscreen","\x3a","\xdc","\xf7","\xd1")); outFields->push(HX_HCSTRING("onKeyDown","\x42","\x22","\xf2","\x73")); outFields->push(HX_HCSTRING("onKeyUp","\x3b","\x58","\x3c","\x75")); outFields->push(HX_HCSTRING("onLeave","\x58","\xd3","\x90","\x08")); outFields->push(HX_HCSTRING("onMaximize","\x0b","\xf9","\x15","\xb2")); outFields->push(HX_HCSTRING("onMinimize","\x5d","\x13","\x30","\xff")); outFields->push(HX_HCSTRING("onMouseDown","\x08","\x94","\x05","\x11")); outFields->push(HX_HCSTRING("onMouseMove","\xb7","\x7e","\xf8","\x16")); outFields->push(HX_HCSTRING("onMouseMoveRelative","\xa3","\x06","\xbf","\x7a")); outFields->push(HX_HCSTRING("onMouseUp","\x81","\xac","\x1d","\x98")); outFields->push(HX_HCSTRING("onMouseWheel","\x35","\xca","\xca","\xbf")); outFields->push(HX_HCSTRING("onMove","\xd0","\xeb","\xea","\xea")); outFields->push(HX_HCSTRING("onRender","\xd5","\x61","\xd6","\xe4")); outFields->push(HX_HCSTRING("onRenderContextLost","\x9e","\x9b","\xa7","\x84")); outFields->push(HX_HCSTRING("onRenderContextRestored","\x10","\x54","\x6e","\x7a")); outFields->push(HX_HCSTRING("onResize","\x73","\x50","\x28","\xe8")); outFields->push(HX_HCSTRING("onRestore","\xef","\x1f","\x5b","\x42")); outFields->push(HX_HCSTRING("onTextEdit","\x96","\xf1","\xc0","\x23")); outFields->push(HX_HCSTRING("onTextInput","\xfe","\x36","\x4e","\x79")); outFields->push(HX_HCSTRING("parameters","\xaa","\xbe","\x7e","\x51")); outFields->push(HX_HCSTRING("resizable","\x6b","\x37","\x50","\xa9")); outFields->push(HX_HCSTRING("scale","\x8a","\xce","\xce","\x78")); outFields->push(HX_HCSTRING("stage","\xbe","\x6a","\x0b","\x84")); outFields->push(HX_HCSTRING("textInputEnabled","\xe4","\x45","\x00","\xc4")); outFields->push(HX_HCSTRING("title","\x98","\x15","\x3b","\x10")); outFields->push(HX_HCSTRING("width","\x06","\xb6","\x62","\xca")); outFields->push(HX_HCSTRING("x","\x78","\x00","\x00","\x00")); outFields->push(HX_HCSTRING("y","\x79","\x00","\x00","\x00")); outFields->push(HX_HCSTRING("__attributes","\xf7","\x23","\x05","\xd0")); outFields->push(HX_HCSTRING("__backend","\xf4","\x0c","\xd6","\x7c")); outFields->push(HX_HCSTRING("__borderless","\x65","\xc1","\x04","\x50")); outFields->push(HX_HCSTRING("__fullscreen","\x5b","\xb5","\x47","\x32")); outFields->push(HX_HCSTRING("__height","\x07","\x73","\x7b","\xaa")); outFields->push(HX_HCSTRING("__hidden","\x8a","\x6a","\xc5","\xf4")); outFields->push(HX_HCSTRING("__maximized","\xf8","\x56","\x0d","\x2d")); outFields->push(HX_HCSTRING("__minimized","\x66","\x44","\xca","\x56")); outFields->push(HX_HCSTRING("__resizable","\x4b","\x80","\x7c","\xd7")); outFields->push(HX_HCSTRING("__scale","\x6a","\x27","\x2d","\xe3")); outFields->push(HX_HCSTRING("__title","\x78","\x6e","\x99","\x7a")); outFields->push(HX_HCSTRING("__width","\xe6","\x0e","\xc1","\x34")); outFields->push(HX_HCSTRING("__x","\x58","\x69","\x48","\x00")); outFields->push(HX_HCSTRING("__y","\x59","\x69","\x48","\x00")); super::__GetFields(outFields); }; #if HXCPP_SCRIPTABLE static hx::StorageInfo Window_obj_sMemberStorageInfo[] = { {hx::fsObject /*::lime::app::Application*/ ,(int)offsetof(Window_obj,application),HX_HCSTRING("application","\x50","\xab","\x3e","\x2a")}, {hx::fsObject /*::lime::graphics::RenderContext*/ ,(int)offsetof(Window_obj,context),HX_HCSTRING("context","\xef","\x95","\x77","\x19")}, {hx::fsObject /*::lime::_hx_system::Display*/ ,(int)offsetof(Window_obj,display),HX_HCSTRING("display","\x42","\x2a","\x4a","\xbb")}, {hx::fsObject /*Dynamic*/ ,(int)offsetof(Window_obj,element),HX_HCSTRING("element","\xbc","\xae","\x54","\x06")}, {hx::fsBool,(int)offsetof(Window_obj,hidden),HX_HCSTRING("hidden","\x6a","\xff","\x95","\x4c")}, {hx::fsInt,(int)offsetof(Window_obj,id),HX_HCSTRING("id","\xdb","\x5b","\x00","\x00")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onActivate),HX_HCSTRING("onActivate","\xf2","\xef","\x62","\xc3")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onClose),HX_HCSTRING("onClose","\x19","\xb6","\xa0","\xde")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onDeactivate),HX_HCSTRING("onDeactivate","\x33","\xfe","\x44","\x14")}, {hx::fsObject /*::lime::app::_Event_String_Void*/ ,(int)offsetof(Window_obj,onDropFile),HX_HCSTRING("onDropFile","\x8a","\x4a","\x0d","\xc7")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onEnter),HX_HCSTRING("onEnter","\x79","\x0b","\xc4","\x06")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onExpose),HX_HCSTRING("onExpose","\xc3","\x88","\x2a","\xa4")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onFocusIn),HX_HCSTRING("onFocusIn","\x7e","\xfe","\x2d","\x19")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onFocusOut),HX_HCSTRING("onFocusOut","\xd5","\x43","\x15","\xef")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onFullscreen),HX_HCSTRING("onFullscreen","\x3a","\xdc","\xf7","\xd1")}, {hx::fsObject /*::lime::app::_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void*/ ,(int)offsetof(Window_obj,onKeyDown),HX_HCSTRING("onKeyDown","\x42","\x22","\xf2","\x73")}, {hx::fsObject /*::lime::app::_Event_lime_ui_KeyCode_lime_ui_KeyModifier_Void*/ ,(int)offsetof(Window_obj,onKeyUp),HX_HCSTRING("onKeyUp","\x3b","\x58","\x3c","\x75")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onLeave),HX_HCSTRING("onLeave","\x58","\xd3","\x90","\x08")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onMaximize),HX_HCSTRING("onMaximize","\x0b","\xf9","\x15","\xb2")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onMinimize),HX_HCSTRING("onMinimize","\x5d","\x13","\x30","\xff")}, {hx::fsObject /*::lime::app::_Event_Float_Float_lime_ui_MouseButton_Void*/ ,(int)offsetof(Window_obj,onMouseDown),HX_HCSTRING("onMouseDown","\x08","\x94","\x05","\x11")}, {hx::fsObject /*::lime::app::_Event_Float_Float_Void*/ ,(int)offsetof(Window_obj,onMouseMove),HX_HCSTRING("onMouseMove","\xb7","\x7e","\xf8","\x16")}, {hx::fsObject /*::lime::app::_Event_Float_Float_Void*/ ,(int)offsetof(Window_obj,onMouseMoveRelative),HX_HCSTRING("onMouseMoveRelative","\xa3","\x06","\xbf","\x7a")}, {hx::fsObject /*::lime::app::_Event_Float_Float_Int_Void*/ ,(int)offsetof(Window_obj,onMouseUp),HX_HCSTRING("onMouseUp","\x81","\xac","\x1d","\x98")}, {hx::fsObject /*::lime::app::_Event_Float_Float_lime_ui_MouseWheelMode_Void*/ ,(int)offsetof(Window_obj,onMouseWheel),HX_HCSTRING("onMouseWheel","\x35","\xca","\xca","\xbf")}, {hx::fsObject /*::lime::app::_Event_Float_Float_Void*/ ,(int)offsetof(Window_obj,onMove),HX_HCSTRING("onMove","\xd0","\xeb","\xea","\xea")}, {hx::fsObject /*::lime::app::_Event_lime_graphics_RenderContext_Void*/ ,(int)offsetof(Window_obj,onRender),HX_HCSTRING("onRender","\xd5","\x61","\xd6","\xe4")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onRenderContextLost),HX_HCSTRING("onRenderContextLost","\x9e","\x9b","\xa7","\x84")}, {hx::fsObject /*::lime::app::_Event_lime_graphics_RenderContext_Void*/ ,(int)offsetof(Window_obj,onRenderContextRestored),HX_HCSTRING("onRenderContextRestored","\x10","\x54","\x6e","\x7a")}, {hx::fsObject /*::lime::app::_Event_Int_Int_Void*/ ,(int)offsetof(Window_obj,onResize),HX_HCSTRING("onResize","\x73","\x50","\x28","\xe8")}, {hx::fsObject /*::lime::app::_Event_Void_Void*/ ,(int)offsetof(Window_obj,onRestore),HX_HCSTRING("onRestore","\xef","\x1f","\x5b","\x42")}, {hx::fsObject /*::lime::app::_Event_String_Int_Int_Void*/ ,(int)offsetof(Window_obj,onTextEdit),HX_HCSTRING("onTextEdit","\x96","\xf1","\xc0","\x23")}, {hx::fsObject /*::lime::app::_Event_String_Void*/ ,(int)offsetof(Window_obj,onTextInput),HX_HCSTRING("onTextInput","\xfe","\x36","\x4e","\x79")}, {hx::fsObject /*Dynamic*/ ,(int)offsetof(Window_obj,parameters),HX_HCSTRING("parameters","\xaa","\xbe","\x7e","\x51")}, {hx::fsFloat,(int)offsetof(Window_obj,scale),HX_HCSTRING("scale","\x8a","\xce","\xce","\x78")}, {hx::fsObject /*::openfl::display::Stage*/ ,(int)offsetof(Window_obj,stage),HX_HCSTRING("stage","\xbe","\x6a","\x0b","\x84")}, {hx::fsObject /*Dynamic*/ ,(int)offsetof(Window_obj,_hx___attributes),HX_HCSTRING("__attributes","\xf7","\x23","\x05","\xd0")}, {hx::fsObject /*::lime::_internal::backend::native::NativeWindow*/ ,(int)offsetof(Window_obj,_hx___backend),HX_HCSTRING("__backend","\xf4","\x0c","\xd6","\x7c")}, {hx::fsBool,(int)offsetof(Window_obj,_hx___borderless),HX_HCSTRING("__borderless","\x65","\xc1","\x04","\x50")}, {hx::fsBool,(int)offsetof(Window_obj,_hx___fullscreen),HX_HCSTRING("__fullscreen","\x5b","\xb5","\x47","\x32")}, {hx::fsInt,(int)offsetof(Window_obj,_hx___height),HX_HCSTRING("__height","\x07","\x73","\x7b","\xaa")}, {hx::fsBool,(int)offsetof(Window_obj,_hx___hidden),HX_HCSTRING("__hidden","\x8a","\x6a","\xc5","\xf4")}, {hx::fsBool,(int)offsetof(Window_obj,_hx___maximized),HX_HCSTRING("__maximized","\xf8","\x56","\x0d","\x2d")}, {hx::fsBool,(int)offsetof(Window_obj,_hx___minimized),HX_HCSTRING("__minimized","\x66","\x44","\xca","\x56")}, {hx::fsBool,(int)offsetof(Window_obj,_hx___resizable),HX_HCSTRING("__resizable","\x4b","\x80","\x7c","\xd7")}, {hx::fsFloat,(int)offsetof(Window_obj,_hx___scale),HX_HCSTRING("__scale","\x6a","\x27","\x2d","\xe3")}, {hx::fsString,(int)offsetof(Window_obj,_hx___title),HX_HCSTRING("__title","\x78","\x6e","\x99","\x7a")}, {hx::fsInt,(int)offsetof(Window_obj,_hx___width),HX_HCSTRING("__width","\xe6","\x0e","\xc1","\x34")}, {hx::fsInt,(int)offsetof(Window_obj,_hx___x),HX_HCSTRING("__x","\x58","\x69","\x48","\x00")}, {hx::fsInt,(int)offsetof(Window_obj,_hx___y),HX_HCSTRING("__y","\x59","\x69","\x48","\x00")}, { hx::fsUnknown, 0, null()} }; static hx::StaticInfo *Window_obj_sStaticStorageInfo = 0; #endif static ::String Window_obj_sMemberFields[] = { HX_HCSTRING("application","\x50","\xab","\x3e","\x2a"), HX_HCSTRING("context","\xef","\x95","\x77","\x19"), HX_HCSTRING("display","\x42","\x2a","\x4a","\xbb"), HX_HCSTRING("element","\xbc","\xae","\x54","\x06"), HX_HCSTRING("hidden","\x6a","\xff","\x95","\x4c"), HX_HCSTRING("id","\xdb","\x5b","\x00","\x00"), HX_HCSTRING("onActivate","\xf2","\xef","\x62","\xc3"), HX_HCSTRING("onClose","\x19","\xb6","\xa0","\xde"), HX_HCSTRING("onDeactivate","\x33","\xfe","\x44","\x14"), HX_HCSTRING("onDropFile","\x8a","\x4a","\x0d","\xc7"), HX_HCSTRING("onEnter","\x79","\x0b","\xc4","\x06"), HX_HCSTRING("onExpose","\xc3","\x88","\x2a","\xa4"), HX_HCSTRING("onFocusIn","\x7e","\xfe","\x2d","\x19"), HX_HCSTRING("onFocusOut","\xd5","\x43","\x15","\xef"), HX_HCSTRING("onFullscreen","\x3a","\xdc","\xf7","\xd1"), HX_HCSTRING("onKeyDown","\x42","\x22","\xf2","\x73"), HX_HCSTRING("onKeyUp","\x3b","\x58","\x3c","\x75"), HX_HCSTRING("onLeave","\x58","\xd3","\x90","\x08"), HX_HCSTRING("onMaximize","\x0b","\xf9","\x15","\xb2"), HX_HCSTRING("onMinimize","\x5d","\x13","\x30","\xff"), HX_HCSTRING("onMouseDown","\x08","\x94","\x05","\x11"), HX_HCSTRING("onMouseMove","\xb7","\x7e","\xf8","\x16"), HX_HCSTRING("onMouseMoveRelative","\xa3","\x06","\xbf","\x7a"), HX_HCSTRING("onMouseUp","\x81","\xac","\x1d","\x98"), HX_HCSTRING("onMouseWheel","\x35","\xca","\xca","\xbf"), HX_HCSTRING("onMove","\xd0","\xeb","\xea","\xea"), HX_HCSTRING("onRender","\xd5","\x61","\xd6","\xe4"), HX_HCSTRING("onRenderContextLost","\x9e","\x9b","\xa7","\x84"), HX_HCSTRING("onRenderContextRestored","\x10","\x54","\x6e","\x7a"), HX_HCSTRING("onResize","\x73","\x50","\x28","\xe8"), HX_HCSTRING("onRestore","\xef","\x1f","\x5b","\x42"), HX_HCSTRING("onTextEdit","\x96","\xf1","\xc0","\x23"), HX_HCSTRING("onTextInput","\xfe","\x36","\x4e","\x79"), HX_HCSTRING("parameters","\xaa","\xbe","\x7e","\x51"), HX_HCSTRING("scale","\x8a","\xce","\xce","\x78"), HX_HCSTRING("stage","\xbe","\x6a","\x0b","\x84"), HX_HCSTRING("__attributes","\xf7","\x23","\x05","\xd0"), HX_HCSTRING("__backend","\xf4","\x0c","\xd6","\x7c"), HX_HCSTRING("__borderless","\x65","\xc1","\x04","\x50"), HX_HCSTRING("__fullscreen","\x5b","\xb5","\x47","\x32"), HX_HCSTRING("__height","\x07","\x73","\x7b","\xaa"), HX_HCSTRING("__hidden","\x8a","\x6a","\xc5","\xf4"), HX_HCSTRING("__maximized","\xf8","\x56","\x0d","\x2d"), HX_HCSTRING("__minimized","\x66","\x44","\xca","\x56"), HX_HCSTRING("__resizable","\x4b","\x80","\x7c","\xd7"), HX_HCSTRING("__scale","\x6a","\x27","\x2d","\xe3"), HX_HCSTRING("__title","\x78","\x6e","\x99","\x7a"), HX_HCSTRING("__width","\xe6","\x0e","\xc1","\x34"), HX_HCSTRING("__x","\x58","\x69","\x48","\x00"), HX_HCSTRING("__y","\x59","\x69","\x48","\x00"), HX_HCSTRING("alert","\x5c","\x57","\x8e","\x21"), HX_HCSTRING("close","\xb8","\x17","\x63","\x48"), HX_HCSTRING("focus","\xd8","\x5f","\x89","\x04"), HX_HCSTRING("move","\x11","\xe3","\x60","\x48"), HX_HCSTRING("readPixels","\x23","\xd3","\x25","\x86"), HX_HCSTRING("resize","\xf4","\x59","\x7b","\x08"), HX_HCSTRING("setIcon","\x3b","\x28","\x37","\x0b"), HX_HCSTRING("toString","\xac","\xd0","\x6e","\x38"), HX_HCSTRING("warpMouse","\xbd","\xde","\x6e","\xa6"), HX_HCSTRING("get_cursor","\x9f","\xfe","\x6f","\x2f"), HX_HCSTRING("set_cursor","\x13","\x9d","\xed","\x32"), HX_HCSTRING("get_display","\x59","\x8a","\x44","\x41"), HX_HCSTRING("get_displayMode","\x5c","\x2a","\x35","\xf1"), HX_HCSTRING("set_displayMode","\x68","\xa7","\x00","\xed"), HX_HCSTRING("get_borderless","\x8e","\xce","\x66","\x8d"), HX_HCSTRING("set_borderless","\x02","\xb7","\x86","\xad"), HX_HCSTRING("get_frameRate","\x84","\xe5","\x88","\xfa"), HX_HCSTRING("set_frameRate","\x90","\xc7","\x8e","\x3f"), HX_HCSTRING("get_fullscreen","\x84","\xc2","\xa9","\x6f"), HX_HCSTRING("set_fullscreen","\xf8","\xaa","\xc9","\x8f"), HX_HCSTRING("get_height","\xb0","\x77","\xd3","\xf2"), HX_HCSTRING("set_height","\x24","\x16","\x51","\xf6"), HX_HCSTRING("get_hidden","\x33","\x6f","\x1d","\x3d"), HX_HCSTRING("get_maximized","\xef","\xe1","\x44","\xc0"), HX_HCSTRING("set_maximized","\xfb","\xc3","\x4a","\x05"), HX_HCSTRING("get_minimized","\x5d","\xcf","\x01","\xea"), HX_HCSTRING("set_minimized","\x69","\xb1","\x07","\x2f"), HX_HCSTRING("get_mouseLock","\x87","\x28","\x70","\xb5"), HX_HCSTRING("set_mouseLock","\x93","\x0a","\x76","\xfa"), HX_HCSTRING("get_resizable","\x42","\x0b","\xb4","\x6a"), HX_HCSTRING("set_resizable","\x4e","\xed","\xb9","\xaf"), HX_HCSTRING("get_scale","\xe1","\x2a","\x78","\xbc"), HX_HCSTRING("get_textInputEnabled","\xed","\xaa","\x6a","\xe2"), HX_HCSTRING("set_textInputEnabled","\x61","\x62","\x22","\xaf"), HX_HCSTRING("get_title","\xef","\x71","\xe4","\x53"), HX_HCSTRING("set_title","\xfb","\x5d","\x35","\x37"), HX_HCSTRING("get_width","\x5d","\x12","\x0c","\x0e"), HX_HCSTRING("set_width","\x69","\xfe","\x5c","\xf1"), HX_HCSTRING("get_x","\x4f","\xa5","\x60","\x91"), HX_HCSTRING("set_x","\x5b","\x9b","\x2f","\x7a"), HX_HCSTRING("get_y","\x50","\xa5","\x60","\x91"), HX_HCSTRING("set_y","\x5c","\x9b","\x2f","\x7a"), ::String(null()) }; static void Window_obj_sMarkStatics(HX_MARK_PARAMS) { HX_MARK_MEMBER_NAME(Window_obj::__mClass,"__mClass"); }; #ifdef HXCPP_VISIT_ALLOCS static void Window_obj_sVisitStatics(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(Window_obj::__mClass,"__mClass"); }; #endif hx::Class Window_obj::__mClass; void Window_obj::__register() { hx::Object *dummy = new Window_obj; Window_obj::_hx_vtable = *(void **)dummy; hx::Static(__mClass) = new hx::Class_obj(); __mClass->mName = HX_HCSTRING("lime.ui.Window","\x51","\x58","\xb8","\xfe"); __mClass->mSuper = &super::__SGetClass(); __mClass->mConstructEmpty = &__CreateEmpty; __mClass->mConstructArgs = &__Create; __mClass->mGetStaticField = &hx::Class_obj::GetNoStaticField; __mClass->mSetStaticField = &hx::Class_obj::SetNoStaticField; __mClass->mMarkFunc = Window_obj_sMarkStatics; __mClass->mStatics = hx::Class_obj::dupFunctions(0 /* sStaticFields */); __mClass->mMembers = hx::Class_obj::dupFunctions(Window_obj_sMemberFields); __mClass->mCanCast = hx::TCanCast< Window_obj >; #ifdef HXCPP_VISIT_ALLOCS __mClass->mVisitFunc = Window_obj_sVisitStatics; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mMemberStorageInfo = Window_obj_sMemberStorageInfo; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mStaticStorageInfo = Window_obj_sStaticStorageInfo; #endif hx::_hx_RegisterClass(__mClass->mName, __mClass); } } // end namespace lime } // end namespace ui
4eb71c70a3aea5896bf4c9fad3f7f722ae7b4e26
27687b68fa24a9b81d8c24bf5ecd141c000ee668
/prolog/syntacticdef.h
e948090f4a4f0b78f5b9695987d22470d1f18923
[]
no_license
barteqx/geo2015
f2c50cc89f049c6be3cbb69ed692fa3a3eb1ef0e
3ea7ae99ce7cbb8f356e6a3e4c374ecd702487b8
refs/heads/master
2020-05-18T10:19:10.236262
2015-03-31T08:18:40
2015-03-31T08:18:40
33,170,893
0
0
null
null
null
null
UTF-8
C++
false
false
3,049
h
syntacticdef.h
// A syntacticdef is a Prolog-style operator definition, see // for example in // Sterling and Shapiro, the art of Prolog. // Code written by Ravinder Indarapu and Hans de Nivelle, March 2003 // Modified in September 2006. #ifndef PROLOG_SYNTACTICDEF_INCLUDED #define PROLOG_SYNTACTICDEF_INCLUDED 1 #include <iostream> #include <string> namespace prolog { class syntacticdef { private: std::string ident; unsigned int type; unsigned int attraction; public: // Attractions should lie between 0 and supattraction: // A smaller number means stronger attraction. static const unsigned int supattraction = 1000; // Prefix, not allowing same binding strength in argument: static const unsigned int FX = 100; // Prefix, allowing same binding strength in argument: static const unsigned int FY = 200; // Infix, not allowing same binding strength in any of the // arguments. The operator is non-associative: static const unsigned int XFX = 300; // Infix, allowing same binding strength on the right, but // not on the left. The operator is right-associative: static const unsigned int XFY = 400; // Infix, allowing same binding strength on the left, but // not on the right. The operator is left-associative: static const unsigned int YFX = 500; // Postfix, not allowing same binding strength in argument: static const unsigned int XF = 600; // Postfix, allowing same binding strength in argument: static const unsigned int YF = 700; // Create a syntacticdef. Once it is created, it cannot be // changed anymore. The constructor terminates the program if // it does not like any of its arguments. The type should be one of // XFX, XFY, YFX, FX, FY, XF, YF. attraction should be an unsigned integer // between 0 and SUPATTRACTION. A smaller number means a stronger // attraction. syntacticdef( const std::string& ident, unsigned int type, unsigned int attraction ); // Return the funcpred from which this syntacticdef is built. const std::string& getstring( ) const; // Return true if the syntacticdef is of prefix-type. bool isprefix( ) const; // Return true if the syntacticdef is of infix-type. bool isinfix( ) const; // Return true if the syntacticdef is of postfix-type. bool ispostfix( ) const; // Decide how the conflict between this syntacticdef // and the other syntacticdef should be resolved. // The question is how to parse // T1 this T2 other T3. // A return value of -1 denotes ( T1 this T2 ) other T3. // A return value of 1 denotes T1 this ( T2 other T3 ). // A return value of 0 denotes that the conflict is a syntax error. int decideconflict( const syntacticdef& other ) const; // True if this and the other syntacticdef are equal. bool operator == ( const syntacticdef& other ) const; bool operator != ( const syntacticdef& other ) const; friend std::ostream& operator << ( std::ostream&, const syntacticdef& ); }; } #endif
6fabcd2e42319923a82593ad3941a71dc0c52e15
88814f8b756013a67f0f0e92a99bb38c5e911277
/main.cpp
0f8ad84b4598c221e7073b3f3cb909a7f3a4807f
[]
no_license
asLong72/OpenGL-Mine_Minecraft
55000ed9acacc8a9c64016acca653c7c74a7a03b
f596e1e249e2e435aa3d183ab626e9059561ce54
refs/heads/master
2022-12-16T12:56:25.527187
2020-09-13T15:03:48
2020-09-13T15:03:48
291,397,337
0
0
null
null
null
null
GB18030
C++
false
false
5,850
cpp
main.cpp
#include <Windows.h> extern "C" { _declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001; } #include "../glad/glad.h" #include "../GLFW/include/glfw3.h" #include "../glm/glm.hpp" #include "../glm/gtc/matrix_transform.hpp" #include "../glm/gtc/type_ptr.hpp" #include "my_hfile/Camera.h" #include "my_hfile/Shader.h" #include "my_hfile/CubeModel.h" #include "my_hfile/TextureBuffer.h" #include "my_hfile/Chunk.h" #include "my_hfile/Noise.h" void GLinti(GLFWwindow*& window); void FramebufferSize_callback(GLFWwindow*, int, int); void Key_callback(GLFWwindow*, int, int, int, int); void MouseButton_callback(GLFWwindow*, int, int, int); void MousePosition_callback(GLFWwindow*, double, double); void processInput(GLFWwindow*); #define WIN_WIDTH 1080 #define WIN_HEIGHT 720 Camera c; CubeModel m; Blocks b; float deltatime; float lastX, lastY; int main() { GLFWwindow* window; GLinti(window); //m = CubeModel("Shaders/CubeShader/CubeFS.glsl", "Shaders/CubeShader/CubeFS.glsl"); b = Blocks("Shaders/CubeShader/CubeInstancedVS.glsl", "Shaders/CubeShader/CubeInstancedFS.glsl"); short x = 0, y = 0, z = 0, chunkX = 0, chunkY = 0, height = 0; unsigned char a[16 * 16 * 16] = { 0 }; while (x < 16) { while (z < 16) { height = (short)(PerlinNoise(x, z) * 100.0) % 17; while (y < 16) { switch (y) { case 12: a[x * 16 * 16 + z * 16 + y] = 3; break; case 13: a[x * 16 * 16 + z * 16 + y] = 3; break; case 14: a[x * 16 * 16 + z * 16 + y] = 2; break; case 15: a[x * 16 * 16 + z * 16 + y] = 1; break; default: a[x * 16 * 16 + z * 16 + y] = 4; break; } y++; } z++, y = 0; } x++, z = 0; } x = 0, y = 0, z = 0; b.Init(a); c = Camera(glm::vec3(0, 0, 20)); //TextureBuffer t("textures/blocks/grass_top.png"); std::vector<std::string> path; path.push_back("textures/blocks/grass_top.png"); path.push_back("textures/blocks/dirt.png"); path.push_back("textures/blocks/gravel.png"); path.push_back("textures/blocks/stone.png"); path.push_back("textures/blocks/brick.png"); path.push_back("textures/blocks/clay.png"); TextureBuffer t2(path); glm::mat4 model(glm::translate(glm::mat4(), glm::vec3(0.0f, 0.0f, 0.0f))) , view = c.GetViewMatrix() , projection = glm::perspective(/*glm::radians(45.0f)*/45.0f, (float)WIN_WIDTH / (float)WIN_HEIGHT, 0.1f, 100.0f); float now, lastframetime; lastframetime = glfwGetTime(); while (!glfwWindowShouldClose(window)) { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); processInput(window); b.cube_shader.useShaderProg(); b.UsingModel(); t2.Enabletexture(); //m.setMat4("model", glm::value_ptr(model)); view = c.GetViewMatrix(); b.cube_shader.setMat4("view", glm::value_ptr(view)); b.cube_shader.setMat4("projection", glm::value_ptr(projection)); glDrawElementsInstanced(GL_TRIANGLES, 36, GL_UNSIGNED_INT, NULL, b.getNum()); t2.Disabletexture(); glfwSwapBuffers(window); now = glfwGetTime(); deltatime = now - lastframetime; lastframetime = now; //std::cerr << 1.0f / deltatime << std::endl; glfwPollEvents(); } glfwTerminate(); return 0; } void GLinti(GLFWwindow*& window) { glfwInit(); glfwInitHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwInitHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwInitHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); window = glfwCreateWindow(WIN_WIDTH, WIN_HEIGHT, "test", NULL, NULL); if (window == NULL) { std::cerr << "window" << std::endl; exit(-1); } glfwMakeContextCurrent(window); if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)) { std::cout << "Failed to initialize GLAD" << std::endl; exit(-1); } glPixelStorei(GL_UNPACK_ALIGNMENT, 1); glClearColor(0.2f, 0.3f, 0.3f, 1.0f); glEnable(GL_DEPTH_TEST); glEnable(GL_CULL_FACE); glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED); //glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL); glfwSetKeyCallback(window, Key_callback); glfwSetCursorPosCallback(window, MousePosition_callback); } void processInput(GLFWwindow* window) { if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS) { glfwSetWindowShouldClose(window, true); } if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS) c.ProcessKeyboard(FORWARD, deltatime); if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS) c.ProcessKeyboard(BACKWARD, deltatime); if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS) c.ProcessKeyboard(LEFT, deltatime); if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS) c.ProcessKeyboard(RIGHT, deltatime); if (glfwGetKey(window, GLFW_KEY_LEFT_SHIFT) == GLFW_PRESS) { c.ProcessKeyboard(SHIFT, deltatime); } if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS) { c.ProcessKeyboard(SPACE, deltatime); } } void FramebufferSize_callback(GLFWwindow* window, int width, int height) { glfwSetWindowSize(window, width, height); } void Key_callback(GLFWwindow* window, int key, int scancode, int action, int mods) { if (action == GLFW_PRESS || action == GLFW_REPEAT) { switch (key) { case GLFW_KEY_W: c.ProcessKeyboard(FORWARD, deltatime); break; case GLFW_KEY_S: c.ProcessKeyboard(BACKWARD, deltatime); break; case GLFW_KEY_A: c.ProcessKeyboard(LEFT, deltatime); break; case GLFW_KEY_D: c.ProcessKeyboard(RIGHT, deltatime); break; default: break; } } } void MouseButton_callback(GLFWwindow* window, int button, int action, int mods) { } void MousePosition_callback(GLFWwindow* window, double xpos, double ypos) { float xoffset = lastX - xpos; //别忘了,在窗口中,左边的坐标小于右边的坐标,而我们需要一个正的角度 float yoffset = lastY - ypos; //同样,在窗口中,下面的坐标大于上面的坐标,而我们往上抬头的时候需要一个正的角度 lastX = xpos; lastY = ypos; c.ProcessMouseMovement(xoffset, yoffset); }
4531580f1d09e0b472bbb6961d45ae5bd0a99ff0
5e6ff9e6e8427078135a7b4d3b194bcbf631e9cd
/EngineSource/dpslim/dpslim/Simulation/Source/Distribution.cpp
23e6425186e64726d02eca0d3c7f3b627f17b112
[]
no_license
karakots/dpresurrection
1a6f3fca00edd24455f1c8ae50764142bb4106e7
46725077006571cec1511f31d314ccd7f5a5eeef
refs/heads/master
2016-09-05T09:26:26.091623
2010-02-01T11:24:41
2010-02-01T11:24:41
32,189,181
0
0
null
null
null
null
UTF-8
C++
false
false
1,824
cpp
Distribution.cpp
#include "Distribution.h" Distribution::Distribution(double pre_use_dist, double post_use_dist, double awareness, double persuasion, int segment, int product, int channel, CTime& start, CTime& end) : TimeSeriesData(segment, product, channel, start, end) { this->post_use_dist = post_use_dist; this->pre_use_dist = pre_use_dist; this->awareness = awareness; this->persuasion = persuasion; } Distribution::Distribution(DistDisplayRecordset * record) { SetProduct(record->m_ProductID); SetChannel(record->m_ChannelID); SetStartDate(CTime(record->m_StartDate.GetYear(), record->m_StartDate.GetMonth(), record->m_StartDate.GetDay(), 0,0,0,0)); SetEndDate(CTime(record->m_EndDate.GetYear(), record->m_EndDate.GetMonth(), record->m_EndDate.GetDay(),0,0,0,0) + CTimeSpan(1,0,0,0)); this->pre_use_dist = record->m_FValue; this->post_use_dist = record->m_GValue; this->awareness = record->m_Awareness; this->persuasion = record->m_Persuasion; } void Distribution::ModifySegment(CMicroSegment* segment, CTime & date) { segment->UpdateDistribution(this); } bool Distribution::ActiveOnDate(CTime &date) { if(GetStartDate() == date) { return true; } else { return false; } } bool Distribution::DeactiveOnDate(CTime &date) { if(GetEndDate() == date) { return true; } else { return false; } } double Distribution::GetPreUseDistribution(CTime &date) { if(date < GetStartDate() || date >= GetEndDate()) { return 0; } return pre_use_dist; } double Distribution::GetPostUseDistribution(CTime &date) { if(date < GetStartDate() || date >= GetEndDate()) { return 0; } return post_use_dist; } double Distribution::GetAwareness() { return awareness; } double Distribution::GetPersuasion() { return persuasion; }
537d772b6a8358b5cfd1af0022bfce5578bc9fa6
f556121d8b52794c95de7c60eb00f0a34b805b3b
/src/ode_system_stiff.cpp
3d2694322e471b4e7ab1f854923cc1e7b1f1e403
[]
no_license
richfitz/rodeint
ee4b87fb4cc4b3c69cdc1b0b87189e207f9d857d
b36410e0e8bd8c92e16cd213b5ee40af3cac57e8
refs/heads/master
2016-09-06T06:56:26.719795
2014-05-18T11:29:04
2014-05-18T11:29:04
19,273,854
1
0
null
null
null
null
UTF-8
C++
false
false
3,640
cpp
ode_system_stiff.cpp
#include <rodeint/ode_system_stiff_r.hpp> #include <rodeint/ode_system_stiff_cpp.hpp> #include <rodeint/ode_system_stiff_class.hpp> #include <rodeint/ode_system.hpp> // 1: r // [[Rcpp::export]] SEXP ode_system_stiff_r__get_pars(rodeint::ode_system_stiff_r ode_system) { return rodeint::ode_system__get_pars(ode_system); } // [[Rcpp::export]] void ode_system_stiff_r__set_pars(Rcpp::XPtr<rodeint::ode_system_stiff_r> ode_system, SEXP pars) { rodeint::ode_system__set_pars(ode_system, pars); } // [[Rcpp::export]] rodeint::ode_system_stiff_r::state_type ode_system_stiff_r__derivs(rodeint::ode_system_stiff_r ode_system, rodeint::ode_system_stiff_r::state_type y, double t) { return rodeint::ode_system__derivs(ode_system, y, t); } // [[Rcpp::export]] rodeint::ode_system_stiff_r::matrix_type ode_system_stiff_r__jacobian(rodeint::ode_system_stiff_r ode_system, rodeint::ode_system_stiff_r::state_type y, double t) { return rodeint::ode_system__jacobian(ode_system, y, t); } // Also need this one for the R ode_system only. // [[Rcpp::export]] rodeint::ode_system_stiff_r ode_system_stiff_r__ctor(Rcpp::Function derivs, Rcpp::Function jacobian, SEXP pars) { return rodeint::ode_system_stiff_r(derivs, jacobian, pars); } // 2: cpp // [[Rcpp::export]] SEXP ode_system_stiff_cpp__get_pars(rodeint::ode_system_stiff_cpp ode_system) { return rodeint::ode_system__get_pars(ode_system); } // [[Rcpp::export]] void ode_system_stiff_cpp__set_pars(Rcpp::XPtr<rodeint::ode_system_stiff_cpp> ode_system, SEXP pars) { rodeint::ode_system__set_pars(ode_system, pars); } // [[Rcpp::export]] rodeint::ode_system_stiff_cpp::state_type ode_system_stiff_cpp__derivs(rodeint::ode_system_stiff_cpp ode_system, rodeint::ode_system_stiff_cpp::state_type y, double t) { return rodeint::ode_system__derivs(ode_system, y, t); } // [[Rcpp::export]] rodeint::ode_system_stiff_cpp::matrix_type ode_system_stiff_cpp__jacobian(rodeint::ode_system_stiff_cpp ode_system, rodeint::ode_system_stiff_cpp::state_type y, double t) { return rodeint::ode_system__jacobian(ode_system, y, t); } // 3: class // [[Rcpp::export]] SEXP ode_system_stiff_class__get_pars(rodeint::ode_system_stiff_class ode_system) { return rodeint::ode_system__get_pars(ode_system); } // [[Rcpp::export]] void ode_system_stiff_class__set_pars(Rcpp::XPtr<rodeint::ode_system_stiff_class> ode_system, SEXP pars) { rodeint::ode_system__set_pars(ode_system, pars); } // [[Rcpp::export]] rodeint::ode_system_stiff_class::state_type ode_system_stiff_class__derivs(rodeint::ode_system_stiff_class ode_system, rodeint::ode_system_stiff_class::state_type y, double t) { return rodeint::ode_system__derivs(ode_system, y, t); } // [[Rcpp::export]] rodeint::ode_system_stiff_class::matrix_type ode_system_stiff_class__jacobian(rodeint::ode_system_stiff_class ode_system, rodeint::ode_system_stiff_class::state_type y, double t) { return rodeint::ode_system__jacobian(ode_system, y, t); }
2d5df04cdc8188a08eb7d9b700ccb16ea4f81c9b
bff4518b3089c014e9af2e729d98f5521138073b
/good_string.cpp
533d224057fbd47d20c768f87921e71bc7f0c070
[]
no_license
Aniganesh/100daysofcode
3d5e2e6c3d8526938620cf9fac700c69175618ec
2c11d71a5374be0d845b568ef16009bd3f1718da
refs/heads/master
2021-05-16T22:58:48.915268
2020-07-17T18:18:48
2020-07-17T18:18:48
250,505,128
1
0
null
null
null
null
UTF-8
C++
false
false
419
cpp
good_string.cpp
// https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/good-string-3/ // 05-04-2020 Very-easy/easy #include<bits/stdc++.h> #define ll long long using namespace std; int main(){ string badString; set<char> unique; cin >> badString; for(char i: badString) unique.insert(i); cout << badString.length() - unique.size(); }
35ec0bb94ada8782dc31221c6696e089419a89a5
50c18b8ac504148279e531c07888c3ae4e34d90e
/include/config.h
64b9b460167ef9b6290c186f4ba24295dd84f305
[]
no_license
liuly123/d-stvo
85bee576b2cf8c2cd06c9d7338624da8a6fd7a8a
4f0faf81ab60dc62537c6e894e1decfe691624e5
refs/heads/master
2022-12-26T01:28:51.631132
2020-09-29T07:29:14
2020-09-29T07:29:14
284,026,932
0
0
null
null
null
null
UTF-8
C++
false
false
8,715
h
config.h
// 全局参数都存储在Config类中 /// 实例化函数Config();先设置默认的参数 /// 通过loadFromFile()成员函数从yaml文件加载参数(没有的就默认) #pragma once #include <string> class Config { public:///全是public Config(); ~Config(); // loadFromFile通过loadSafe尝试加载yaml中的参数,加载失败就用默认值 static void loadFromFile( const std::string &config_file ); static Config& getInstance(); // 关键帧选择参数(对于SLAM,如果有的话) static double& minEntropyRatio() { return getInstance().min_entropy_ratio; } static double& maxKFTDist() { return getInstance().max_kf_t_dist; } static double& maxKFRDist() { return getInstance().max_kf_r_dist; } // 一些标志 static bool& hasPoints() { return getInstance().has_points; } static bool& hasLines() { return getInstance().has_lines; } static bool& useFLDLines() { return getInstance().use_fld_lines; } static bool& lrInParallel() { return getInstance().lr_in_parallel; } static bool& plInParallel() { return getInstance().pl_in_parallel; } static bool& bestLRMatches() { return getInstance().best_lr_matches; } static bool& adaptativeFAST() { return getInstance().adaptative_fast; } static bool& useMotionModel() { return getInstance().use_motion_model; } // 点检测与匹配 static int& matchingStrategy() { return getInstance().matching_strategy; } static int& matchingSWs() { return getInstance().matching_s_ws; } static int& matchingF2FWs() { return getInstance().matching_f2f_ws; } static int& orbNFeatures() { return getInstance().orb_nfeatures; } static double& orbScaleFactor() { return getInstance().orb_scale_factor; } static int& orbNLevels() { return getInstance().orb_nlevels; } static int& orbEdgeTh() { return getInstance().orb_edge_th; } static int& orbWtaK() { return getInstance().orb_wta_k; } static int& orbScore() { return getInstance().orb_score; } static int& orbPatchSize() { return getInstance().orb_patch_size; } static int& orbFastTh() { return getInstance().orb_fast_th; } static int& fastMinTh() { return getInstance().fast_min_th; } static int& fastMaxTh() { return getInstance().fast_max_th; } static int& fastIncTh() { return getInstance().fast_inc_th; } static int& fastFeatTh() { return getInstance().fast_feat_th; } static double& fastErrTh() { return getInstance().fast_err_th; } static double& maxDistEpip() { return getInstance().max_dist_epip; } static double& minDisp() { return getInstance().min_disp; } static double& minRatio12P() { return getInstance().min_ratio_12_p; } static double& rgbdMinDepth() { return getInstance().rgbd_min_depth; } static double& rgbdMaxDepth() { return getInstance().rgbd_max_depth; } // 线的检测和匹配 static int& lsdNFeatures() { return getInstance().lsd_nfeatures; } static int& lsdRefine() { return getInstance().lsd_refine; } static double& lsdScale() { return getInstance().lsd_scale; } static double& lsdSigmaScale() { return getInstance().lsd_sigma_scale; } static double& lsdQuant() { return getInstance().lsd_quant; } static double& lsdAngTh() { return getInstance().lsd_ang_th; } static double& lsdLogEps() { return getInstance().lsd_log_eps; } static double& lsdDensityTh() { return getInstance().lsd_density_th; } static int& lsdNBins() { return getInstance().lsd_n_bins; } static double& lineHorizTh() { return getInstance().line_horiz_th; } static double& minLineLength() { return getInstance().min_line_length; } static double& minRatio12L() { return getInstance().min_ratio_12_l; } static double& stereoOverlapTh() { return getInstance().stereo_overlap_th; } static double& f2fOverlapTh() { return getInstance().f2f_overlap_th; } static double& lineSimTh() { return getInstance().line_sim_th; } static double& lsMinDispRatio() { return getInstance().ls_min_disp_ratio; } // 优化参数 static double& homogTh() { return getInstance().homog_th; } static int& minFeatures() { return getInstance().min_features; } static int& maxIters() { return getInstance().max_iters; } static int& maxItersRef() { return getInstance().max_iters_ref; } static double& minError() { return getInstance().min_error; } static double& minErrorChange() { return getInstance().min_error_change; } static double& inlierK() { return getInstance().inlier_k; } /// SLAM参数(关键帧选择) double min_entropy_ratio; double max_kf_t_dist; double max_kf_r_dist; /// 一些VO的标志 bool has_points; bool has_lines; bool lr_in_parallel; bool pl_in_parallel; bool best_lr_matches; bool adaptative_fast; bool use_fld_lines; bool use_motion_model; /// 点检测和匹配 int matching_strategy; int matching_s_ws; int matching_f2f_ws; int orb_nfeatures; double orb_scale_factor; int orb_nlevels; int orb_edge_th; int orb_wta_k; int orb_score; int orb_patch_size; int orb_fast_th; int fast_min_th; int fast_max_th; int fast_inc_th; int fast_feat_th; double fast_err_th; double max_dist_epip; double min_disp; double min_ratio_12_p; double stereo_overlap_th; double f2f_overlap_th; double line_sim_th; double rgbd_min_depth; double rgbd_max_depth; /// 线检测和匹配 int lsd_nfeatures; int lsd_refine; double lsd_scale; double lsd_sigma_scale; double lsd_quant; double lsd_ang_th; double lsd_log_eps; double lsd_density_th; int lsd_n_bins; double line_horiz_th; double min_line_length; double min_ratio_12_l; double ls_min_disp_ratio; // 优化参数 double homog_th; int min_features; int max_iters; int max_iters_ref; double min_error; double min_error_change; double inlier_k; // TODO: l-lk参数 //关键帧判断 int min_lines_num = 10; //关键帧中线段数量最小值 double min_total_length = 50.0; //关键帧中线段总长最小值 //Sampling int patch_size = 1; //采样间隔 //FitLine int min_samle_points = 4; //最小采样点数 double max_point_num_dec = 3.0; //采样点数下降速率阈值(用于判断跟踪质量) //FilterLine double max_drop_length_avg = 30.0; //最大垂足平均长度(用于滤除线段) double max_drop_dist_diff = 60.0; //平均垂足间距离变化的最大阈值(用于滤除线段) double max_dist_per_point = 5.0; //采样点间的间距最大值 //RefineLine int Grow_px = 10; //线段生长的变化范围 //NeedKeyframe double min_length_all = 50; //frame中所有line的最短总长 double min_lines_num_track = 0.9; //最小跟踪成功率(按照线段总长度) int max_track_count = 50; //关键帧判断 static int& minLinesNum() { return getInstance().min_lines_num; } static double& minTotalLength() { return getInstance().min_total_length; } //Sampling static int& patchSize() { return getInstance().patch_size; } //FitLine static int& minSamlePoints() { return getInstance().min_samle_points; } static double& maxPointNumDec() { return getInstance().max_point_num_dec; } //FilterLine static double& maxDropLengthAvg() { return getInstance().max_drop_length_avg; } static double& maxDropDistDiff() { return getInstance().max_drop_dist_diff; } static double& maxDistPerPoint() { return getInstance().max_dist_per_point; } //RefineLine static int& growpx() { return getInstance().Grow_px; } //NeedKeyframe static double& minLengthAll() { return getInstance().min_length_all; } static double& minLinesNumTrack() { return getInstance().min_lines_num_track; } static int& maxTrackCount() { return getInstance().max_track_count; } };
caadc991688e7223d9eaac5e89e53641d9428219
ca61b35e08459a4c304f24a9bf375601b37d5b41
/MyDriverApp/MyDriverApp.cpp
20ac58d878a75ca900b6c3173c9152fd20f8ea95
[]
no_license
wangrenyao/DriverProj
b40af2cdad54f0bb989578ad8051294042a5de18
11d1b5ba28ef27b64661a671cac5b395b20bc7bb
refs/heads/master
2020-03-10T07:50:37.038738
2018-04-12T15:44:46
2018-04-12T15:44:46
129,272,065
0
0
null
null
null
null
UTF-8
C++
false
false
1,288
cpp
MyDriverApp.cpp
// MyDriverApp.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "MyDriverApp.h" #include <winioctl.h> #include "../MyDriver/public.h" int APIENTRY WinMain(IN HINSTANCE hInstance, IN HINSTANCE hPrecInstance, IN LPSTR szCmdLine, IN int nCmdShow) { HANDLE hDev; hDev = INVALID_HANDLE_VALUE; do { hDev = CreateFile(GLOBAL_MYDRIVER_WIN32_NAME, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if (INVALID_HANDLE_VALUE == hDev) { MessageBox(NULL, TEXT("CreateFile failed"), L"", MB_OK | MB_ICONERROR); break; } char buf[1024] = { 0 }; DWORD dwBytesRetured; ReadFile(hDev, buf, sizeof(buf), &dwBytesRetured, NULL); DeviceIoControl(hDev, IOCTL_MYDRIVER_START_THREAD, NULL, 0, NULL, 0, &dwBytesRetured, NULL); MessageBoxA(NULL, "", "Start Thread", MB_OK | MB_ICONINFORMATION); DeviceIoControl(hDev, IOCTL_MYDRIVER_STOP_THREAD, NULL, 0, NULL, 0, &dwBytesRetured, NULL); MessageBoxA(NULL, "", "Stop Thread", MB_OK | MB_ICONINFORMATION); } while (FALSE); if (INVALID_HANDLE_VALUE != hDev) { CloseHandle(hDev); hDev = INVALID_HANDLE_VALUE; } MessageBox(NULL, L"Test end!", L"", MB_OK | MB_ICONINFORMATION); return 0; }
fbcfb8dc3b01832c057cacb80121b4aae790146e
b8557e6f6e79cc868be41b319dc57834c4f3cb86
/NetServer/src/Server.cpp
73e41629fc60a779232452dff0ae25cd340f4909
[]
no_license
santiago0411/Networking
a02223dc6cc938273f1924338c6b7f5d5ccd8f6a
9f888cf9f89fb56a03746a403158eda604b57934
refs/heads/main
2023-08-28T07:58:59.734090
2021-09-21T17:08:04
2021-09-21T17:08:04
408,909,658
0
0
null
null
null
null
UTF-8
C++
false
false
1,449
cpp
Server.cpp
#include <iostream> #include "Networking.h" enum class CustomMessages : uint32_t { ServerAccept, ServerDeny, ServerPing, MessageAll, ServerMessage }; class Server : public Networking::ServerInterface<CustomMessages> { public: Server(uint16_t port) : ServerInterface<CustomMessages>(port) { } ~Server() override = default; protected: bool OnClientConnected(std::shared_ptr<Networking::Connection<CustomMessages>> client) override { Networking::Message<CustomMessages> msg; msg.Header.Id = CustomMessages::ServerAccept; client->Send(msg); return true; } void OnClientDisconnected(std::shared_ptr<Networking::Connection<CustomMessages>> client) override { std::cout << "Removing client [" << client->GetId() << "]\n"; } void OnMessage(std::shared_ptr<Networking::Connection<CustomMessages>> client, Networking::Message<CustomMessages>& msg) override { switch (msg.Header.Id) { case CustomMessages::ServerPing: { std::cout << '[' << client->GetId() << "]: Server Ping\n"; client->Send(msg); break; } case CustomMessages::MessageAll: { std::cout << '[' << client->GetId() << "]: Message All\n"; Networking::Message<CustomMessages> msg; msg.Header.Id = CustomMessages::ServerMessage; msg << client->GetId(); MessageAllClients(msg, client); break; } } } }; int main() { Server server(60000); server.Start(); for (;;) { server.Update(-1, true); } }
d93bb175995530b14b3f22f23cdfb86b1c01000d
6ce07aba5e3931c313ec95a0f218ee4a54f819a6
/Api1/src/Imple1Api.h
94a098b2b1ceb6bd85048a3549fa28e6b320a05c
[]
no_license
onier/HTTP
383e1e676a8a6689f7bce2e4e2d144649d477163
d0dd28ba990591c392bc0898ef7d1f54c12b2e7e
refs/heads/master
2022-11-29T12:16:09.708892
2020-08-01T09:56:46
2020-08-01T09:56:46
285,564,806
0
0
null
null
null
null
UTF-8
C++
false
false
886
h
Imple1Api.h
// // Created by xzh on 2020/8/1. // #ifndef PUPPY_IMPLE1API_H #define PUPPY_IMPLE1API_H #include <string> #include <rttr/registration.h> #include <ostream> struct Parameter { std::string name; int age; Parameter(); friend std::ostream &operator<<(std::ostream &os, const Parameter &parameter) { os << "name: " << parameter.name << " age: " << parameter.age; return os; } RTTR_ENABLE(); }; struct Result { std::vector<Parameter> parameters; Result(); RTTR_ENABLE(); }; struct QueryPara { std::string name; RTTR_ENABLE(); }; class Imple1Api { public: bool addParameter(Parameter parameter); // std::string getParameters(); Result getParameters(); // std::string getParameter(std::string name); Parameter getParameter(QueryPara query); std::vector<Parameter> parameters; }; #endif //PUPPY_IMPLE1API_H