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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
aa16ca9cf60e1bcab86c2a0a623d8358c5a791de | debc1cbfb53e716041dab6f8ca570cbb31b4e563 | /AGSAPI/data/AGSDDSSpy/include/ndds/hpp/rti/queuing/detail/QueueConsumerImpl.hpp | c14bd52f18925a9715dafc61e81e6f598d0b9af3 | [] | no_license | DamsRoxxx/TafOutils | 019ab33337e35b979a3f0079198901b7af4ae93f | 4e9ffd665bf31fe0b3029ee6225d365fb0637f9f | refs/heads/master | 2020-03-25T23:33:45.639283 | 2018-10-05T09:17:59 | 2018-10-05T09:17:59 | 144,280,789 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,903 | hpp | QueueConsumerImpl.hpp | /*
(c) Copyright, Real-Time Innovations, 2016-2017.
All rights reserved.
No duplications, whole or partial, manual or electronic, may be made
without express written permission. Any such copies, or
revisions thereof, must display this notice unaltered.
This code contains trade secrets of Real-Time Innovations, Inc.
*/
#ifndef RTI_QUEUING_DETAIL_CONSUMERIMPL_HPP_
#define RTI_QUEUING_DETAIL_CONSUMERIMPL_HPP_
// IMPORTANT: macros.hpp must be the first RTI header included in every header
// file so that symbols are exported correctly on Windows
#include <dds/core/macros.hpp>
#include <rti/core/detail/SelfReference.hpp>
#include <rti/core/EntityLock.hpp>
#include <dds/core/QosProvider.hpp>
#include <dds/sub/LoanedSamples.hpp>
#include <dds/pub/DataWriter.hpp>
#include <dds/sub/DataReader.hpp>
#include <dds/sub/discovery.hpp>
#include <rti/request/detail/GenericReceiver.hpp>
#include <rti/request/detail/Common.hpp>
#include <rti/queuing/QueueParams.hpp>
#include <rti/queuing/QueueConsumerListener.hpp>
#include <rti/queuing/detail/QueueSupportImpl.hpp>
#include <rti/queuing/QueueSupport.hpp>
#include <sstream>
#include <dds/core/xtypes/DynamicData.hpp>
#include <dds/core/xtypes/DynamicType.hpp>
#include <dds/core/xtypes/StructType.hpp>
namespace rti { namespace queuing { namespace detail {
typedef dds::pub::DataWriter<dds::core::xtypes::DynamicData> AvailiabilityWriter;
XMQCPP2DllExport
dds::sub::qos::DataReaderQos get_consumer_datareader_qos(
const rti::queuing::QueueConsumerParams& params,
const std::string& topic_name);
XMQCPP2DllExport
AvailiabilityWriter create_availability_writer(
const rti::queuing::QueueConsumerParams& parameters,
const std::string& consumer_topic_name);
template <typename T>
dds::topic::Topic<T> get_queue_consumer_topic(
const rti::queuing::QueueConsumerParams& params);
template <typename T>
dds::topic::ContentFilteredTopic<T> create_consumer_cft(
dds::domain::DomainParticipant participant,
dds::topic::Topic<T> topic,
const rti::core::Guid& consumer_guid);
XMQCPP2DllExport
std::string create_consumer_filter_expression(
const rti::core::Guid& consumer_guid);
template <typename T>
void set_content_filter_for_receiver(
rti::request::detail::GenericReceiver<T>& receiver,
const rti::core::Guid& consumer_guid);
template <typename T>
rti::core::Guid get_data_reader_virtual_guid(const dds::sub::DataReader<T> reader)
{
dds::sub::qos::DataReaderQos reader_qos = reader.qos();
return reader_qos.policy<rti::core::policy::DataReaderProtocol>().virtual_guid();
}
template <typename T>
dds::topic::Topic<T> get_queue_consumer_topic(
const rti::queuing::QueueConsumerParams& params)
{
std::string reader_topic_name =
get_consumer_reader_topic_name(
params.request_topic_name(),
params.shared_subscriber_name());
dds::topic::TopicDescription<T> topic_desc =
rti::request::detail::get_or_create_topic<T>(
params.participant(),
reader_topic_name,
dds::core::optional<dds::core::xtypes::DynamicType>(), // TODO: support DynamicData
false);
return dds::core::polymorphic_cast<dds::topic::Topic<T> >(topic_desc);
}
template <typename T>
void set_content_filter_for_receiver(
rti::request::detail::GenericReceiver<T>& receiver,
const rti::core::Guid& consumer_guid)
{
std::string cft_expression =
create_consumer_filter_expression(
(consumer_guid != rti::core::Guid::unknown())?
consumer_guid : get_data_reader_virtual_guid(receiver.reader()));
dds::topic::TopicDescription<T> topicDesc =
receiver.reader().topic_description();
dds::topic::ContentFilteredTopic<T> cft =
dds::core::polymorphic_cast<dds::topic::ContentFilteredTopic<T> >(topicDesc);
cft->filter(dds::topic::Filter(cft_expression, cft.filter_parameters()));
}
template <typename T>
class QueueConsumerImpl
: public rti::core::detail::RetainableType<QueueConsumerImpl<T> > {
public:
typedef rti::queuing::QueueConsumerListener<T> Listener;
typedef std::map<
dds::core::InstanceHandle,
QueuingServiceMatchedInfo,
InstanceHandleComparator> ServiceInstanceMap;
explicit QueueConsumerImpl(
const rti::queuing::QueueConsumerParams& parameters,
const rti::core::Guid& consumer_guid)
: listener_(NULL),
internal_data_reader_listener_(NULL),
consumer_topic_(get_queue_consumer_topic<T>(parameters)),
receiver_(create_disabled_reader(parameters)),
consumer_guid_(
ensure_valid_guid(
consumer_guid,
parameters.participant(),
parameters.entity_name(),
parameters.request_topic_name())),
availability_writer_(
create_availability_writer(parameters, consumer_topic_.name())),
is_closed_(false)
{
/* Crate reader always disabled to:
* - avoid race condition on the listener and
* - be able to use the reader virtual GUID that is computed after reader
* creation. Since this requires creating the CFT first, to avoid the discovery
* of the reader with a different filter, we create it disabled and wait
* to enable it until the filter expression is set. */
/* The content filter expression cannot be set at the time the receiver
* is created because the expression includes the data reader virtual guid
* when the consumer_guid is provided as unknown. */
set_content_filter_for_receiver(receiver_, consumer_guid_);
}
void initialize(
dds::sub::DataReaderListener<T>* data_reader_listener,
Listener* consumer_listener,
bool is_enabled)
{
internal_data_reader_listener_ = data_reader_listener;
receiver_.reader().listener(
internal_data_reader_listener_,
dds::core::status::StatusMask::all());
if (consumer_listener) {
listener(consumer_listener, dds::core::status::StatusMask::all());
}
if (is_enabled) {
enable();
}
}
Listener* listener() {
return listener_;
}
/* event_mask is required by listener binder and has no effect */
void listener(
Listener* the_listener,
const dds::core::status::StatusMask&)
{
listener_ = the_listener;
if (listener_ == NULL) {
this->unretain();
} else {
this->retain();
}
}
bool closed() {
return is_closed_;
}
void enable()
{
receiver_.reader().enable();
}
void acknowledge_sample(
const dds::sub::SampleInfo& sample_info,
bool is_positive_acknowledgment)
{
dds::core::ByteSeq response_data;
if (is_positive_acknowledgment) {
response_data.push_back(1);
} else {
response_data.push_back(0);
}
rti::sub::AckResponseData response(response_data);
/* response.value(response_data.begin(), response_data.end()); */
receiver_.reader()->acknowledge_sample(sample_info, response);
}
void acknowledge_all(
bool is_positive_acknowledgment)
{
dds::core::ByteSeq response_data;
if (is_positive_acknowledgment) {
response_data.push_back(1);
} else {
response_data.push_back(0);
}
rti::sub::AckResponseData response(response_data);
/* response.value(response_data.begin(), response_data.end()); */
receiver_.reader()->acknowledge_all(response);
}
dds::sub::DataReader<T> reader() const
{
return receiver_.reader();
}
rti::request::detail::GenericReceiver<T> receiver() const
{
return receiver_;
}
rti::core::Guid guid()
{
return consumer_guid_;
}
dds::sub::LoanedSamples<T> receive_samples(const dds::core::Duration& max_wait)
{
return receive_samples(1, dds::core::LENGTH_UNLIMITED, max_wait);
}
dds::sub::LoanedSamples<T> receive_samples(
int min_count,
int max_count,
const dds::core::Duration& max_wait)
{
return receiver_.receive_samples(min_count, max_count, max_wait, true);
}
dds::sub::LoanedSamples<T> take_samples()
{
return receiver_.read_or_take(dds::core::LENGTH_UNLIMITED, true);
}
dds::sub::LoanedSamples<T> take_samples(int max_count)
{
return receiver_.read_or_take(max_count, true);
}
dds::sub::LoanedSamples<T> read_samples()
{
return receiver_.read_or_take(dds::core::LENGTH_UNLIMITED, false);
}
dds::sub::LoanedSamples<T> read_samples(int max_count)
{
return receiver_.read_or_take(max_count, false);
}
bool wait_for_samples(const dds::core::Duration& max_wait)
{
return receiver_.wait_for_any_sample(1, max_wait);
}
bool wait_for_samples(int min_count, const dds::core::Duration& max_wait)
{
return receiver_.wait_for_any_sample(min_count, max_wait);
}
void send_availability(
ConsumerAvailabilityParams availability_params)
{
using namespace dds::core::xtypes;
if (availability_writer_ == dds::core::null) {
throw dds::core::PreconditionNotMetError(
"availabilty not enabled in this Consumer");
}
DynamicData availability_sample(
ConsumerAvailabilitySupport::get_availability_type_code());
ConsumerAvailabilitySupport::initialize_availability_sample(
availability_sample, consumer_guid_);
ConsumerAvailabilitySupport::set_availability_params(
availability_sample, availability_params);
availability_writer_.write(availability_sample);
}
bool has_matching_reader_queue()
{
rti::core::EntityLock lock_(receiver_.reader());
return !queuing_service_instances_.empty();
}
bool process_on_subscription_matched(
const dds::core::status::SubscriptionMatchedStatus& status)
{
rti::core::EntityLock lock_(receiver_.reader());
unsigned long instances_count = queuing_service_instances_.size();
if (status.current_count_change() > 0) {
dds::topic::PublicationBuiltinTopicData publication_data =
dds::sub::matched_publication_data(
receiver_.reader(),
status.last_publication_handle());
if (publication_data->service().kind() ==
rti::core::policy::ServiceKind::QUEUING)
{
QueuingServiceMatchedInfo info;
info.epoch_ = 0;
queuing_service_instances_[status.last_publication_handle()] = info;
}
} else {
queuing_service_instances_.erase(status.last_publication_handle());
}
return (instances_count != (unsigned long) queuing_service_instances_.size());
}
void close() {
if (internal_data_reader_listener_ != NULL) {
if (!receiver_.reader()->closed()) {
receiver_.reader().listener(
NULL, dds::core::status::StatusMask::none());
}
delete internal_data_reader_listener_;
internal_data_reader_listener_ = NULL;
}
is_closed_ = true;
}
~QueueConsumerImpl()
{
close();
}
private:
/* This class makes sure the subscriber creates disabled entities.
* The participant is locked in order to avoid race condition with other
* threads using the subscriber. */
class EnforceSubscriberDisabledEntitiyCreation {
public:
EnforceSubscriberDisabledEntitiyCreation(
dds::domain::DomainParticipant& participant,
dds::sub::Subscriber& subscriber)
: subscriber_(subscriber),
lock_(participant),
subscriber_initial_qos_(subscriber_.qos())
{
/* lock the participant so there is no race condition with other
* threads using the subscriber.
* This operation takes the entity lock that is the participant tableEA,
* taken in all the operations that require access the reader group */
dds::sub::qos::SubscriberQos subscriber_qos = subscriber_.qos();
subscriber_qos.policy<dds::core::policy::EntityFactory>().autoenable_created_entities(false);
subscriber_.qos(subscriber_qos);
}
~EnforceSubscriberDisabledEntitiyCreation() {
/* Leave subscriber unaltered */
subscriber_.qos(subscriber_initial_qos_);
}
private:
dds::sub::Subscriber subscriber_;
rti::core::EntityLock lock_;
dds::sub::qos::SubscriberQos subscriber_initial_qos_;
};
rti::request::detail::GenericReceiver<T> create_disabled_reader(
const rti::queuing::QueueConsumerParams& params)
{
rti::queuing::QueueConsumerParams parameters = params;
dds::domain::DomainParticipant participant = parameters.participant();
dds::sub::Subscriber subscriber = parameters.subscriber();
if (participant == dds::core::null) {
throw dds::core::InvalidArgumentError("participant is null");
}
if (subscriber == dds::core::null) {
subscriber = rti::sub::implicit_subscriber(participant);
}
/* Prepare participant and subscriber to create data reader disabled */
EnforceSubscriberDisabledEntitiyCreation disabler(participant, subscriber);
dds::sub::qos::DataReaderQos reader_qos =
get_consumer_datareader_qos(parameters, consumer_topic_.name());
return rti::request::detail::GenericReceiver<T>(
parameters.datareader_qos(reader_qos),
create_empty_consumer_cft(consumer_topic_),
"QueueConsumer");
}
dds::topic::ContentFilteredTopic<T> create_empty_consumer_cft(
dds::topic::Topic<T> topic)
{
std::stringstream pointer_as_string;
pointer_as_string << static_cast<const void*>(this);
std::string cft_name =
"queue consumer filter on " +
topic.name() + " " +
pointer_as_string.str();
std::string cft_expression = "1 = 1";
return dds::topic::ContentFilteredTopic<T>(
topic,
cft_name,
dds::topic::Filter(cft_expression));
}
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
/* -------------------- Private variables --------------------- */
/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */
Listener* listener_;
ServiceInstanceMap queuing_service_instances_;
dds::sub::DataReaderListener<T>* internal_data_reader_listener_;
dds::topic::Topic<T> consumer_topic_;
rti::request::detail::GenericReceiver<T> receiver_;
rti::core::Guid consumer_guid_;
AvailiabilityWriter availability_writer_;
bool is_closed_;
};
} } } // namespace rti::request::detail
#endif // RTI_QUEUING_DETAIL_CONSUMERIMPL_HPP_
|
3c3b7f4954e08e824a0b4b9475bd78f3a8946963 | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/admin/admt/script/usermigration.cpp | 120996481c34f883d93844b56b590ae90f192911 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 12,882 | cpp | usermigration.cpp | #include "StdAfx.h"
#include "ADMTScript.h"
#include "UserMigration.h"
#include "Error.h"
#include "VarSetOptions.h"
#include "VarSetAccountOptions.h"
#include "VarSetSecurity.h"
//---------------------------------------------------------------------------
// CUserMigration
//---------------------------------------------------------------------------
CUserMigration::CUserMigration() :
m_lDisableOption(admtEnableTarget),
m_lSourceExpiration(-1),
m_bMigrateSids(false),
m_bTranslateRoamingProfile(false),
m_bUpdateUserRights(false),
m_bMigrateGroups(false),
m_bUpdatePreviouslyMigratedObjects(false),
m_bFixGroupMembership(true),
m_bMigrateServiceAccounts(false)
{
}
CUserMigration::~CUserMigration()
{
}
// IUserMigration Implementation --------------------------------------------
// DisableOption Property
STDMETHODIMP CUserMigration::put_DisableOption(long lOption)
{
HRESULT hr = S_OK;
if (IsDisableOptionValid(lOption))
{
m_lDisableOption = lOption;
}
else
{
hr = AdmtSetError(CLSID_Migration, IID_IUserMigration, E_INVALIDARG, IDS_E_DISABLE_OPTION_INVALID);
}
return hr;
}
STDMETHODIMP CUserMigration::get_DisableOption(long* plOption)
{
*plOption = m_lDisableOption;
return S_OK;
}
// SourceExpiration Property
STDMETHODIMP CUserMigration::put_SourceExpiration(long lExpiration)
{
HRESULT hr = S_OK;
if (IsSourceExpirationValid(lExpiration))
{
m_lSourceExpiration = lExpiration;
}
else
{
hr = AdmtSetError(CLSID_Migration, IID_IUserMigration, E_INVALIDARG, IDS_E_SOURCE_EXPIRATION_INVALID);
}
return hr;
}
STDMETHODIMP CUserMigration::get_SourceExpiration(long* plExpiration)
{
*plExpiration = m_lSourceExpiration;
return S_OK;
}
// MigrateSIDs Property
STDMETHODIMP CUserMigration::put_MigrateSIDs(VARIANT_BOOL bMigrate)
{
m_bMigrateSids = bMigrate ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_MigrateSIDs(VARIANT_BOOL* pbMigrate)
{
*pbMigrate = m_bMigrateSids ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// TranslateRoamingProfile Property
STDMETHODIMP CUserMigration::put_TranslateRoamingProfile(VARIANT_BOOL bTranslate)
{
m_bTranslateRoamingProfile = bTranslate ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_TranslateRoamingProfile(VARIANT_BOOL* pbTranslate)
{
*pbTranslate = m_bTranslateRoamingProfile ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// UpdateUserRights Property
STDMETHODIMP CUserMigration::put_UpdateUserRights(VARIANT_BOOL bUpdate)
{
m_bUpdateUserRights = bUpdate ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_UpdateUserRights(VARIANT_BOOL* pbUpdate)
{
*pbUpdate = m_bUpdateUserRights ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// MigrateGroups Property
STDMETHODIMP CUserMigration::put_MigrateGroups(VARIANT_BOOL bMigrate)
{
m_bMigrateGroups = bMigrate ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_MigrateGroups(VARIANT_BOOL* pbMigrate)
{
*pbMigrate = m_bMigrateGroups ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// UpdatePreviouslyMigratedObjects Property
STDMETHODIMP CUserMigration::put_UpdatePreviouslyMigratedObjects(VARIANT_BOOL bUpdate)
{
m_bUpdatePreviouslyMigratedObjects = bUpdate ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_UpdatePreviouslyMigratedObjects(VARIANT_BOOL* pbUpdate)
{
*pbUpdate = m_bUpdatePreviouslyMigratedObjects ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// FixGroupMembership Property
STDMETHODIMP CUserMigration::put_FixGroupMembership(VARIANT_BOOL bFix)
{
m_bFixGroupMembership = bFix ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_FixGroupMembership(VARIANT_BOOL* pbFix)
{
*pbFix = m_bFixGroupMembership ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// MigrateServiceAccounts Property
STDMETHODIMP CUserMigration::put_MigrateServiceAccounts(VARIANT_BOOL bMigrate)
{
m_bMigrateServiceAccounts = bMigrate ? true : false;
return S_OK;
}
STDMETHODIMP CUserMigration::get_MigrateServiceAccounts(VARIANT_BOOL* pbMigrate)
{
*pbMigrate = m_bMigrateServiceAccounts ? VARIANT_TRUE : VARIANT_FALSE;
return S_OK;
}
// Migrate Method
STDMETHODIMP CUserMigration::Migrate(long lOptions, VARIANT vntInclude, VARIANT vntExclude)
{
HRESULT hr = S_OK;
MutexWait();
bool bLogOpen = _Module.OpenLog();
try
{
_Module.Log(ErrI, IDS_STARTED_USER_MIGRATION);
InitSourceDomainAndContainer();
InitTargetDomainAndContainer();
SetDefaultExcludedSystemProperties();
VerifyInterIntraForest();
VerifyCallerDelegated();
ValidateMigrationParameters();
if (m_bMigrateSids)
{
VerifyCanAddSidHistory();
}
VerifyPasswordOption();
DoOption(lOptions, vntInclude, vntExclude);
}
catch (_com_error& ce)
{
_Module.Log(ErrE, IDS_E_CANT_MIGRATE_USERS, ce);
hr = AdmtSetError(CLSID_Migration, IID_IUserMigration, ce, IDS_E_CANT_MIGRATE_USERS);
}
catch (...)
{
_Module.Log(ErrE, IDS_E_CANT_MIGRATE_USERS, _com_error(E_FAIL));
hr = AdmtSetError(CLSID_Migration, IID_IUserMigration, E_FAIL, IDS_E_CANT_MIGRATE_USERS);
}
if (bLogOpen)
{
_Module.CloseLog();
}
MutexRelease();
return hr;
}
// Implementation -----------------------------------------------------------
// ValidateMigrationParameters Method
void CUserMigration::ValidateMigrationParameters()
{
bool bIntraForest = m_spInternal->IntraForest ? true : false;
if (bIntraForest)
{
// validate conflict option
long lConflictOptions = m_spInternal->ConflictOptions;
long lConflictOption = lConflictOptions & 0x0F;
if (lConflictOption == admtReplaceConflicting)
{
AdmtThrowError(GUID_NULL, GUID_NULL, E_INVALIDARG, IDS_E_INTRA_FOREST_REPLACE);
}
}
}
// DoNames Method
void CUserMigration::DoNames()
{
CDomainAccounts aUsers;
m_SourceDomain.QueryUsers(GetSourceContainer(), m_setIncludeNames, m_setExcludeNames, aUsers);
DoUsers(aUsers, GetTargetContainer());
}
// DoDomain Method
void CUserMigration::DoDomain()
{
CContainer& rSource = GetSourceContainer();
CContainer& rTarget = GetTargetContainer();
if (m_nRecurseMaintain == 2)
{
rTarget.CreateContainerHierarchy(rSource);
}
DoContainers(rSource, rTarget);
}
// DoContainers Method
void CUserMigration::DoContainers(CContainer& rSource, CContainer& rTarget)
{
DoUsers(rSource, rTarget);
if (m_nRecurseMaintain == 2)
{
ContainerVector aContainers;
rSource.QueryContainers(aContainers);
for (ContainerVector::iterator it = aContainers.begin(); it != aContainers.end(); it++)
{
DoContainers(*it, rTarget.GetContainer(it->GetName()));
}
}
}
// DoUsers Method
void CUserMigration::DoUsers(CContainer& rSource, CContainer& rTarget)
{
CDomainAccounts aUsers;
rSource.QueryUsers(m_nRecurseMaintain == 1, m_setExcludeNames, aUsers);
DoUsers(aUsers, rTarget);
}
// DoUsers Method
void CUserMigration::DoUsers(CDomainAccounts& rUsers, CContainer& rTarget)
{
if (rUsers.size() > 0)
{
if (!m_bMigrateServiceAccounts)
{
RemoveServiceAccounts(rUsers);
}
if (rUsers.size() > 0)
{
CVarSet aVarSet;
SetOptions(rTarget.GetPath(), aVarSet);
SetAccountOptions(aVarSet);
VerifyRenameConflictPrefixSuffixValid();
FillInVarSetForUsers(rUsers, aVarSet);
rUsers.clear();
#ifdef _DEBUG
aVarSet.Dump();
#endif
PerformMigration(aVarSet);
SaveSettings(aVarSet);
if ((m_nRecurseMaintain == 2) && m_bMigrateGroups)
{
FixObjectsInHierarchy(_T("group"));
}
}
}
}
// RemoveServiceAccounts Method
void CUserMigration::RemoveServiceAccounts(CDomainAccounts& rUsers)
{
try
{
CVarSet varset;
IIManageDBPtr spDatabase(__uuidof(IManageDB));
IUnknownPtr spunkVarSet(varset.GetInterface());
IUnknown* punkVarset = spunkVarSet;
spDatabase->GetServiceAccount(_bstr_t(_T("")), &punkVarset);
long lCount = varset.Get(_T("ServiceAccountEntries"));
if (lCount > 0)
{
StringSet setNames;
for (long lIndex = 0; lIndex < lCount; lIndex++)
{
setNames.insert(_bstr_t(varset.Get(_T("ServiceAccount.%ld"), lIndex)));
}
_bstr_t strDomain = m_SourceDomain.NameFlat();
for (CDomainAccounts::iterator itUser = rUsers.begin(); itUser != rUsers.end(); )
{
bool bFound = false;
_bstr_t strAccountName = strDomain + _T("\\") + itUser->GetSamAccountName();
_bstr_t strUserPrincipalName = itUser->GetUserPrincipalName();
PCTSTR pszAccountName = strAccountName;
PCTSTR pszUserPrincipalName = strUserPrincipalName;
for (StringSet::iterator itName = setNames.begin(); itName != setNames.end(); itName++)
{
PCTSTR pszName = *itName;
if (pszName)
{
if (pszAccountName && (_tcsicmp(pszName, pszAccountName) == 0))
{
bFound = true;
break;
}
if (pszUserPrincipalName && (_tcsicmp(pszName, pszUserPrincipalName) == 0))
{
bFound = true;
break;
}
}
}
if (bFound)
{
itUser = rUsers.erase(itUser);
}
else
{
++itUser;
}
}
}
}
catch (_com_error& ce)
{
AdmtThrowError(GUID_NULL, GUID_NULL, ce, IDS_E_REMOVING_SERVICE_ACCOUNTS);
}
}
// SetOptions Method
void CUserMigration::SetOptions(_bstr_t strTargetOu, CVarSet& rVarSet)
{
CVarSetOptions aOptions(rVarSet);
aOptions.SetTest(m_spInternal->TestMigration ? true : false);
aOptions.SetUndo(false);
aOptions.SetWizard(_T("user"));
aOptions.SetIntraForest(m_spInternal->IntraForest ? true : false);
aOptions.SetSourceDomain(m_SourceDomain.NameFlat(), m_SourceDomain.NameDns(), m_SourceDomain.Sid());
aOptions.SetTargetDomain(m_TargetDomain.NameFlat(), m_TargetDomain.NameDns());
aOptions.SetTargetOu(strTargetOu);
if (m_bMigrateSids || (m_spInternal->PasswordOption == admtCopyPassword))
{
aOptions.SetTargetServer(
m_TargetDomain.DomainControllerNameFlat(),
m_TargetDomain.DomainControllerNameDns()
);
}
aOptions.SetRenameOptions(m_spInternal->RenameOption, m_spInternal->RenamePrefixOrSuffix);
}
// SetAccountOptions Method
void CUserMigration::SetAccountOptions(CVarSet& rVarSet)
{
CVarSetAccountOptions aOptions(rVarSet);
aOptions.SetPasswordOption(m_spInternal->PasswordOption, m_spInternal->PasswordServer);
aOptions.SetPasswordFile(m_spInternal->PasswordFile);
aOptions.SetConflictOptions(m_spInternal->ConflictOptions, m_spInternal->ConflictPrefixOrSuffix);
aOptions.SetDisableOption(m_lDisableOption);
aOptions.SetSourceExpiration(m_lSourceExpiration);
aOptions.SetMigrateSids(m_bMigrateSids);
aOptions.SetUserMigrationOptions(m_bMigrateGroups, m_bUpdatePreviouslyMigratedObjects);
aOptions.SetFixGroupMembership(m_bFixGroupMembership);
aOptions.SetUpdateUserRights(m_bUpdateUserRights);
aOptions.SetTranslateRoamingProfile(m_bTranslateRoamingProfile);
aOptions.SetExcludedUserProps(m_spInternal->UserPropertiesToExclude);
aOptions.SetExcludedInetOrgPersonProps(m_spInternal->InetOrgPersonPropertiesToExclude);
if (m_bMigrateGroups)
{
aOptions.SetExcludedGroupProps(m_spInternal->GroupPropertiesToExclude);
}
}
|
bb7177bef99f415548573b9acb1dfa831d37f5e3 | 308d43e4058ec3b69e79b925092c095c67ccc08c | /src/x0d/Context.h | 592bf4160de18bba7aeabebc9dd17489297d37f4 | [
"MIT"
] | permissive | deniskin82/x0 | 036347a9552855e743d8e2bfc7f093921ba52c8f | 1cfe26c2b0a78e79e7c59db7ff654b6934446298 | refs/heads/master | 2022-09-24T08:20:19.430425 | 2018-06-13T05:45:15 | 2018-06-13T05:45:42 | 8,414,467 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,785 | h | Context.h | // This file is part of the "x0" project, http://github.com/christianparpart/x0>
// (c) 2009-2018 Christian Parpart <christian@parpart.family>
//
// Licensed under the MIT License (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of
// the License at: http://opensource.org/licenses/MIT
#pragma once
#include <xzero/Buffer.h>
#include <xzero/UnixTime.h>
#include <xzero/Duration.h>
#include <xzero/io/File.h>
#include <xzero/CustomDataMgr.h>
#include <xzero/net/IPAddress.h>
#include <xzero/logging.h>
#include <xzero/http/HttpStatus.h>
#include <xzero/http/HttpHandler.h>
#include <xzero/http/HttpRequest.h>
#include <flow/vm/Runner.h>
#include <string>
#include <list>
#include <vector>
#include <functional>
#include <memory>
namespace xzero {
class UnixTime;
namespace http {
class HttpRequest;
class HttpResponse;
}
}
namespace x0d {
/**
* HTTP client context.
*
* Contains all the necessary references to everything you (may) need
* during request handling.
*/
class Context {
CUSTOMDATA_API_INLINE
public:
Context(
const flow::Handler* requestHandler,
xzero::http::HttpRequest* request,
xzero::http::HttpResponse* response,
const std::unordered_map<xzero::http::HttpStatus, std::string>* globalErrorPages,
size_t maxInternalRedirectCount);
Context(Context&&) = default;
Context& operator=(Context&&) = default;
Context(const Context&);
Context& operator=(const Context&) = delete;
~Context();
void operator()();
void handleRequest();
/**
* Tries to serve a TRACE request.
*/
bool tryServeTraceProxy();
/**
* Tries to serve a TRACE request as the ORIGIN server.
*/
bool tryServeTraceOrigin();
/**
* Actually serves TRACE response without checking request method or headers.
*/
void serveTraceOrigin();
xzero::http::HttpRequest* masterRequest() const noexcept { return request_; }
xzero::http::HttpRequest* request() const noexcept {
return internalRedirects_.empty()
? masterRequest()
: internalRedirects_.front().get();
}
xzero::http::HttpResponse* response() const noexcept { return response_; }
size_t internalRedirectCount() const noexcept { return internalRedirects_.size(); }
xzero::UnixTime createdAt() const noexcept { return createdAt_; }
xzero::UnixTime now() const noexcept;
xzero::Duration age() const noexcept;
const std::string& documentRoot() const noexcept { return documentRoot_; }
void setDocumentRoot(const std::string& path) { documentRoot_ = path; }
const std::string& pathInfo() const noexcept { return pathInfo_; }
void setPathInfo(const std::string& value) { pathInfo_ = value; }
void setFile(std::shared_ptr<xzero::File> file) { file_ = file; }
std::shared_ptr<xzero::File> file() const { return file_; }
flow::Runner* runner() const noexcept { return runner_.get(); }
const xzero::IPAddress& remoteIP() const;
int remotePort() const;
const xzero::IPAddress& localIP() const;
int localPort() const;
size_t bytesReceived() const noexcept;
size_t bytesTransmitted() const noexcept;
void setErrorPage(xzero::http::HttpStatus status, const std::string& uri);
bool getErrorPage(xzero::http::HttpStatus status, std::string* uri) const;
/**
* Sends an error page via an internal redirect or by generating a basic response.
*
* @param status the HTTP status code to send to the client.
* @param internalRedirect output set to @c true if the result is an internal
* redirect, false (HTTP response fully generated)
* otherwise.
* @param overrideStatus status to actually send to the client (may differ
* from the status to match the error page)
*
* @retval true a response was generated
* @retval false no response was generated but an internal redirect was triggered.
*
* It is important to note, that this call either fully generates
* a response and no further handling has to be done, or
* an internal redirect was triggered and the request handler has to be
* resumed for execution.
*/
bool sendErrorPage(
xzero::http::HttpStatus status,
bool* internalRedirect = nullptr,
xzero::http::HttpStatus overrideStatus = xzero::http::HttpStatus::Undefined);
/**
* Sends a trivial response, with simple content if content not forbidden.
*
* A trivial response is having set the HTTP response status code with
* (if allowed) static content as descriptive content.
*
* @param status HTTP status to send
* @param reason reason associated with that status; the text version of the
* HTTP status will be used if this string is empty.
*/
void sendTrivialResponse(xzero::http::HttpStatus status, const std::string& reason = std::string());
// {{{ Logging API
template<typename... Args>
inline void logError(const std::string& fmt, Args&&... args) {
::xzero::logError(::fmt::format("{}: {}", masterRequest()->remoteAddress(), fmt), args...);
}
template<typename... Args>
inline void logWarning(const std::string& fmt, Args&&... args) {
::xzero::logWarning(::fmt::format("{}: {}", masterRequest()->remoteAddress(), fmt), args...);
}
template<typename... Args>
inline void logNotice(const std::string& fmt, Args&&... args) {
::xzero::logNotice(::fmt::format("{}: {}", masterRequest()->remoteAddress(), fmt), args...);
}
template<typename... Args>
inline void logInfo(const std::string& fmt, Args&&... args) {
::xzero::logInfo(::fmt::format("{}: {}", masterRequest()->remoteAddress(), fmt), args...);
}
template<typename... Args>
inline void logDebug(const std::string& fmt, Args&&... args) {
::xzero::logDebug(::fmt::format("{}: {}", masterRequest()->remoteAddress(), fmt), args...);
}
// }}}
private:
const flow::Handler* requestHandler_; //!< HTTP request handler as flow program
std::unique_ptr<flow::Runner> runner_; //!< Flow VM execution unit.
const xzero::UnixTime createdAt_; //!< When the request started
xzero::http::HttpRequest* request_; //!< actual HTTP request
std::list<std::unique_ptr<xzero::http::HttpRequest>> internalRedirects_;
xzero::http::HttpResponse* response_; //!< HTTP response
std::string documentRoot_; //!< associated document root
std::string pathInfo_; //!< info-part of the request-path
std::shared_ptr<xzero::File> file_; //!< local file associated with this request
std::unordered_map<xzero::http::HttpStatus, std::string> errorPages_; //!< custom error page request paths
const std::unordered_map<xzero::http::HttpStatus, std::string>* globalErrorPages_;
const size_t maxInternalRedirectCount_;
};
} // namespace x0d
|
01ab98f722e8bd58e5656fba077204f5c3a8bf82 | 4fb394b0e7c33f792b6cd241a15a8bfbcfdafb6a | /lights/point_light.cpp | bb35d6b149688d8249bec983cb32c19fe6f8a984 | [] | no_license | Valckrie/araytracer | 057fb0ebc0d21ace4e30976868c3939607966115 | f9677eb415ac396d8cb236984057e1dd4eb405e4 | refs/heads/master | 2021-03-22T01:38:53.867162 | 2015-04-14T17:43:35 | 2015-04-14T17:43:35 | 33,571,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,763 | cpp | point_light.cpp | // point light source
#include <math.h>
#include "include/point_light.h"
// specified by a position and a colour
PointLight::PointLight(Vertex &p, Colour &i)
{
point.x = p.x;
point.y = p.y;
point.z = p.z;
point.w = 1.0;
intensity.set(i.getRed(),i.getGreen(),i.getBlue(),i.getAlpha());
}
// provide the intensity and direction from which light arrives at given vertex
void PointLight::getLightProperties(Vertex &pos, Vector *ldir, Colour *i)
{
*ldir = point.subtract(pos);
ldir->normalise();
// the direction is always the same (light is infinitely far away)
// ldir->x = direction.x;
// ldir->y = direction.y;
// ldir->z = direction.z;
// the intensity is always the same (not dependent on where it's going
i->set(intensity.getRed(),intensity.getGreen(),intensity.getBlue(),intensity.getAlpha());
if(attenuation == true) {
Vector ld = point.subtract(pos);
double mag = ld.magnitude();
i->changeDivide(mag * mag);
i->scaleLuminance(lum_scale*200);
} else if(attenuation == false) {
i->scaleLuminance(lum_scale);
}
}
void PointLight::setLumScale(float ls) {
lum_scale = ls;
}
void PointLight::setAttenuation(bool option) {
attenuation = option;
}
bool PointLight::in_shadow(Ray& ray, Hit *hit) {
// float t;
// int numObjects = sr.w.objects.size();
// float d = location.distance(ray.o);
// for (int j = 0; j < num_objects; j++)
// if (sr.w.objects[j]->shadow_hit(ray, t) && t < d)
// return (true);
// return (false);
}
Vertex PointLight::getLocation() {
return point;
} |
031124e16cd1a1d470397e4455e7b829216a65f6 | a0ed4c90b79c715bd6226301e2176f8f4b3d2b8e | /LA/LA4855==Hyper Box.cpp | 9892d2bddca7868060fe8d1da401f14533db5faf | [] | no_license | marlonwc3/cp-codes | 501fdab9a173bad3c2b34dbbd188b693e1c8fc2c | dafd83e66f8ee223fae7d09cadc616952be1e799 | refs/heads/master | 2020-07-02T06:30:11.554661 | 2015-10-06T00:53:14 | 2015-10-06T00:53:14 | 28,721,298 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,645 | cpp | LA4855==Hyper Box.cpp | #include <bits/stdc++.h>
#define _ printf("\n");
#define sc1(a) scanf("%d", &a)
#define sc2(a,b) scanf("%d %d", &a, &b)
#define sc3(a,b,c) scanf("%d %d %d", &a, &b, &c)
#define sc4(a,b,c, d) scanf("%d %d %d %d", &a, &b, &c, &d)
#define iz(b) if(b==0) { break; }
#define pf(a) printf("%d ", a);
#define pfc(c,a) printf("%c -> %d ", c, a);
#define pb(a) push_back(a)
#define inf 0x3f3f3f3f
#define mst(a, b) memset(a, b, sizeof a)
#define fr(i,a,b) for(int i=a; i < b; i++)
#define mp(a,b) make_pair(a,b)
#define st first
#define pv(a, i) for(int i =0 ; i < (a.size()+0 ); i++ ) {printf("%d ",a[i]); if(i==a.size() - 1 )_ }
#define pvp(a, i) for(int i =0 ; i <(a.size()+0 ); i++ ) {printf("%d %d ~ ",a[i].st, a[i].nd); if(i==a.size() - 1 )_ }
#define nd second
using namespace std;
typedef vector<int> vi;
typedef long long int lld;
typedef pair<int,int> ii; // first==no, second==wieght
typedef vector<ii> vii;
typedef vector<lld> vlld;
typedef vector<vi> vvi;
typedef set<ii> sii;
typedef set<int> si;
typedef pair<char, int> ci;
vlld v;
int siz;
void f(){
lld k;
v.pb(1);
v.pb(1);
for(int i=2; i < 10000; i++){
k = v[i-1] + v[i-2];
if(k < 0 || k >= 2000000000) break;
v.pb(k);
}
siz = v.size();
}
lld find(lld k){
for(int i = siz-1; i >= 0; i--) if(v[i] <= k) return v[i];
return 0;
}
int main (int argc, char const* argv[]) {
f();
int t, n;
lld k, res, r, cnt;
sc1(t);
for(int j = 1; j <= t; j++){
res = 1;
sc1(n);
while(n--){
scanf("%lld", &k);
cnt = 0;
while(1){
r = find(k);
if(!r) break;
k-=r; cnt++;
}
res*=cnt;
}
printf("Case %d: %lld\n", j, res);
}
return 0;
}
|
cd5b1fe6d04a3fd67f88dcd7dff6e5be0aaafcf0 | 628b19c33ffdf469c1666272cef83e39e293361d | /client/src/main.cpp | 46166d895112ab3fac82cafec34e37d18a2f7a99 | [] | no_license | nkh-lab/aosp-cpp-binder | 1aa083d0925414c81e8dcb9822e2b81f08c0777e | ed1566cfb469cc67e04803133e1f37834a3c00b4 | refs/heads/master | 2020-04-15T11:08:33.229552 | 2019-01-10T14:37:11 | 2019-01-10T14:37:11 | 164,616,175 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 105 | cpp | main.cpp | #include "log/log.h"
int main()
{
ALOGI("Hello World!");
for (;;)
{
}
return 0;
} |
91668a5d48ec8958e668bdb0f773c7e19bb2b0ce | 7064d792d7bc34d14b5a8aaef25f9b8ff46a958d | /C Programs/NPTEL Programs/output.cpp | a961b89324f92754789069b515e9cdbb678a6e24 | [] | no_license | Ashleshk/Programming-Codes | 2e02f1b4bc269c2096b9e237a69f8d368a745194 | 8896f2124bc351aae69b697c0a040be8e6d860a0 | refs/heads/master | 2023-03-30T14:41:33.719160 | 2021-04-11T16:10:07 | 2021-04-11T16:10:07 | 258,129,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 197 | cpp | output.cpp | #include<iostream>
#include<algorithm>
using namespace std;
int main()
{int ii;
int data[]={66,35,45,39,21};
sort(data,data+5);
for(int i=0;i<5;i++)
cout<<data[i]<<" ";
cin>>ii;
return 0;
} |
bc503ab2e46c38880f1e997085247fa8288f985c | 27dfae0e5e716ca7b8b1d089d1616d7707384f3a | /code/machine/TLBManager.cc | 1962c0e412d22eca1e1bcb1700ea889c6b7a1b3e | [
"MIT-Modern-Variant"
] | permissive | llboyfy/Nachos4.1 | 0c082e7d5b07bfe2eacf3d4780b6f2411ce51e60 | 141eac5601beed2ba6a450cdcb1360b5215476e0 | refs/heads/master | 2022-03-27T10:15:02.974517 | 2019-12-20T13:11:10 | 2019-12-20T13:11:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,469 | cc | TLBManager.cc | /*
* @Author: Lollipop
* @Date: 2019-11-15 14:02:48
* @LastEditors: Lollipop
* @LastEditTime: 2019-11-15 14:14:20
* @Description:
*/
#include "translate.h"
#include "debug.h"
#include "TLBManager.h"
#include "main.h"
TLBManager::TLBManager()
{
//4路相连,16个Entry
for (int i = 0; i < 4; i++)
{
tlbPtr[i] = new TLBEntry[4];
}
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
tlbPtr[i][j].valid = false;
tlbPtr[i][j].threadId = -1;
}
}
}
TLBManager::~TLBManager()
{
for (int i = 0; i < 4; i++)
{
delete[] tlbPtr[i];
}
}
int TLBManager::translate(int virtAddr)
{
unsigned int TLBT, TLBI;
unsigned int vpn, offset;
int physAddr = -1;
vpn = (unsigned)virtAddr / PageSize;
offset = (unsigned)virtAddr % PageSize;
TLBI = vpn & 0x3;
TLBT = (vpn >> 2) & 0x3FFFFFFF;
for (int i = 0; i < 4; i++)
{
if (tlbPtr[TLBI][i].valid && (tlbPtr[TLBI][i].Tag == TLBT))
{
tlbPtr[TLBI][i].lru = 0;
physAddr = tlbPtr[TLBI][i].PPN * PageSize + offset;
break;
}
}
return physAddr;
}
void TLBManager::update(int virtAddr, int pageFrame)
{
unsigned int vpn;
unsigned int TLBT, TLBI;
vpn = (unsigned)virtAddr / PageSize;
TLBI = vpn & 0x3;
TLBT = (vpn >> 2) & 0x3FFFFFFF;
//替换的下标
int index = 0;
for (int i = 0; i < 4; i++)
{
if (tlbPtr[TLBI][i].valid)
{
tlbPtr[TLBI][i].lru++;
if (tlbPtr[TLBI][i].lru > tlbPtr[TLBI][index].lru)
index = i;
}
else
{
index = i;
break;
}
}
if (tlbPtr[TLBI][index].valid)
{
DEBUG(dbgLru, "replace tlb ");
}
else
{
DEBUG(dbgLru, "update tlb ");
}
tlbPtr[TLBI][index].PPN = pageFrame;
tlbPtr[TLBI][index].Tag = TLBT;
tlbPtr[TLBI][index].valid = true;
tlbPtr[TLBI][index].lru = 0;
tlbPtr[TLBI][index].threadId = kernel->currentThread->getPid();
}
void TLBManager::invalidEntry(int threadId, int vpn)
{
unsigned int TLBT, TLBI;
TLBI = vpn & 0x3;
TLBT = (vpn >> 2) & 0x3FFFFFFF;
for (int i = 0; i < 4; i++)
{
if (tlbPtr[TLBI][i].valid && tlbPtr[TLBI][i].Tag == TLBT && tlbPtr[TLBI][i].threadId == threadId)
{
tlbPtr[TLBI][i].valid = FALSE;
}
}
} |
890cbbe79bd3b3ea23b9cbbe79e9eb924d5e030e | a26b568d2c60f01194bd949824712f12b4a9feb5 | /test/demo15.cpp | 68107c9379b81047195e363dc0b6df8afa154511 | [] | no_license | immortalChensm/linux | 1acb957d50ec7faa8a1c15635b59fc66f1e1a0d2 | 6ac60e92900046e049f708a13d1030334eb9f9dc | refs/heads/master | 2021-01-16T16:27:27.580502 | 2020-08-26T03:30:06 | 2020-08-26T03:30:06 | 243,181,033 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,044 | cpp | demo15.cpp | //
// Created by Administrator on 2020/4/14.
//
#include <iostream>
#include <string>
using namespace std;
class Person
{
private:
int m_age;
int m_score;
//char *m_name;
public:
void setAge(int age);
void setScore(int score);
void setName(char *name);
void display();
};
void Person::setAge(int age) {
m_age = age;
}
void Person::setScore(int score) {
m_score=score;
}
void Person::setName(char *name) {
// m_name = name;
}
void Person::display() {
// cout<<m_name<<" 'is age is "<<m_age<<",score is "<<m_score<<endl;
// cout<<"hello,world"<<endl;
//cout<<age<<endl;
}
int main()
{
//在栈上定义
Person tom;
cout<< sizeof(tom)<<endl;
printf("%#Xl\n",tom);
//tom.setName((char*)"tom");
//tom.setScore(100);
//tom.setAge(18);
//tom.display();
Person *jack = new Person;
printf("%d\n", sizeof(jack));
//jack->setAge(10);
//jack->setScore(19);
//jack->setName((char*)"jack");
//jack->display();
delete jack;
return 0;
} |
19c251556205c026d39d3c4f3b4f1291114805b5 | 0ae2636a1b95f470648755e503d48f5e6bba2059 | /DP/Solution to at coder dp contest problems/e.cpp | 1cb35795efe462ef124591186214618fe1fd2e41 | [] | no_license | AparnaJuhi/DS-ALGO | 5668a2f5f64731aaae96ed1ef92847fe243a4338 | d519e5bbac728192b3636f5d8a50b20bc0c335e0 | refs/heads/master | 2022-12-20T23:17:34.354534 | 2020-10-02T06:34:52 | 2020-10-02T06:34:52 | 300,136,335 | 0 | 1 | null | 2020-10-02T06:34:53 | 2020-10-01T04:03:12 | C++ | UTF-8 | C++ | false | false | 1,118 | cpp | e.cpp | #include <bits/stdc++.h>
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
#define endl '\n'
#define int long long int
using namespace std;
#define pii pair <int, int>
#define mii map<int, int>
#define pb push_back
#define deb(x) cout << #x << " " << x << endl
#define deb2(x, y) cout << #x << " " << x << " " << #y << " " << y << endl
#define Loop(s, e, itr) for (int itr = s; itr < e; itr++)
#define loop(n) for(int i = 0; i < n; i++)
#define vin vector<int>
#define w(t) int tc; cin >> tc; for(int t = 1; t <= tc; t++)
#define vec vector
#define mod 1000000007
#define all(x) x.begin(), x.end()
int n, W;
int v[105], w[105];
// dp[i] -- min weight required value i
int32_t main(){
cin >> n >> W;
loop(n) cin >> w[i] >> v[i];
int max_val = 0;
loop(n) max_val += v[i];
vin dp(max_val+5, 1e12);
dp[0] = 0;
loop(n){
for(int j = max_val; j >= v[i]; j--){
dp[j] = min(dp[j], dp[j-v[i]]+w[i]);
}
}
for(int i = max_val; i > 0; i--){
if(dp[i] <= W) {
cout << i << endl;
break;
}
}
}
|
fb0927f38cdb7e709363596bdeb3d1622a8428ee | 9c52ad4cd861a84c9cb3a491f90dbe92cdd6c5e3 | /include/JsonIo.hpp | c4ed787ba311ff42d7e48119ef5b42b8d44c227a | [
"Apache-2.0"
] | permissive | WilliamClements/CppPlayer | a27fc28ca59a402d1b9e203b2e428edefdbedc33 | a998756998188cd85dfa941973bd8342a618b97c | refs/heads/master | 2023-02-18T04:56:42.378269 | 2023-01-26T20:28:18 | 2023-01-26T20:28:18 | 143,743,698 | 16 | 2 | NOASSERTION | 2023-01-26T20:28:19 | 2018-08-06T14:55:23 | C++ | UTF-8 | C++ | false | false | 9,211 | hpp | JsonIo.hpp | /*
Copyright 2018 William Clements, Autodesk
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.
*/
// JsonIo.hpp - concrete JSON implementation of the IIo interface
#pragma once
#include "Assertions.hpp"
#include "IIo.hpp"
#include "NamespaceAliases.hpp"
#undef min
#undef max
#define RAPIDJSON_HAS_CXX11_NOEXCEPT 1
#define RAPIDJSON_HAS_CXX11_RANGE_FOR 1
#define RAPIDJSON_HAS_CXX11_RVALUE_REFS 1
#define RAPIDJSON_HAS_CXX11_TYPETRAITS 1
#define RAPIDJSON_HAS_STDSTRING 1
#define RAPIDJSON_NOMEMBERITERATORCLASS 1
#pragma warning(push)
#pragma warning(disable: 4995)
#include <rapidjson/document.h>
#include <rapidjson/prettywriter.h>
#include <rapidjson/filereadstream.h>
#include <rapidjson/filewritestream.h>
#pragma warning(pop)
using Allocator = rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>;
using UTF8 = rapidjson::UTF8<char>;
// data extracted from JSON for one call
class PlayData
{
public:
rapidjson::Value k_Args;
int k_counter{ 0 };
PlayData(rapidjson::Value&& inArgs)
: k_Args(std::move(inArgs))
{}
void popValue(rapidjson::Value* pValue)
{
*pValue = k_Args.GetArray()[k_counter++];
}
};
// implements the IIo interface with JSON I/O
class JsonIo final : public IIo
{
rapidjson::Document m_dom;
rapidjson::Value m_jsonHeader;
rapidjson::Value m_jsonBody;
rapidjson::Value m_vCalls;
rapidjson::Value m_currentCall;
int64_t m_callCounter = 0;
std::unique_ptr<PlayData> m_oPlayData;
private:
auto& playData() const
{
return *m_oPlayData.get();
}
static auto& json_allocator()
{
static Allocator allor;
return allor;
}
public:
JsonIo()
{
m_dom.SetObject();
m_jsonHeader.SetObject();
m_jsonBody.SetArray();
m_vCalls.SetArray();
}
~JsonIo()
{}
CppFileHeader getFileHeader() override
{
time_point dummyStart = std::chrono::system_clock::now();
time_point dummyFinish = std::chrono::system_clock::now();
rapidjson::Value header = std::move(m_dom["Header"]);
rapidjson::Value body = std::move(m_dom["Body"]);
uint64_t llCalls = m_jsonHeader["Record Count"].GetInt64();
std::string mainId = m_jsonHeader["Main"].GetString();
return CppFileHeader{ dummyStart, dummyFinish, llCalls, mainId };
}
void setFileHeader(CppFileHeader header) override
{
auto [tStart, tFinish, nRecords, mainId] = header;
m_dom["Header"].AddMember(rapidjson::Value("Start Time") , rapidjson::Value(formatTime(tStart), json_allocator()), json_allocator());
m_dom["Header"].AddMember(rapidjson::Value("Finish Time") , rapidjson::Value(formatTime(tFinish), json_allocator()), json_allocator());
m_dom["Header"].AddMember(rapidjson::Value("Record Count") , rapidjson::Value().SetInt64(nRecords), json_allocator());
m_dom["Header"].AddMember(rapidjson::Value("Main") , rapidjson::Value(mainId, json_allocator()), json_allocator());
}
void startRecording() override
{
// BTW I tried Reserving a low number to make sure array relocation was not a problem
// Be aware.
m_vCalls.Reserve(8192, json_allocator());
// Use temporaries. AddMember eats both of its arguments.
{
rapidjson::Value tempHeader;
tempHeader.SetObject();
m_dom.AddMember(rapidjson::Value("Header"), tempHeader, json_allocator());
}
{
rapidjson::Value tempBody;
tempBody.SetArray();
m_dom.AddMember(rapidjson::Value("Body"), tempBody, json_allocator());
}
}
void finishRecording(fs::path outputfilepath) override
{
m_dom["Body"] = std::move(m_vCalls);
stringifyCpp(m_dom, outputfilepath);
}
void playbackAll(fs::path inputFileName, OnStartPlaying cb, PlayerOfOneCall playerOfOne) override
{
parseCpp(m_dom, inputFileName);
m_jsonHeader = std::move(m_dom["Header"]);
m_jsonBody = std::move(m_dom["Body"]);
// Notify caller we are about to get down to business
// and that m_jsonHeader can now be perused.-
cb();
// This is the playback loop!
for (rapidjson::Value& record : m_jsonBody.GetArray())
playbackOne(std::move(record), playerOfOne);
}
void playbackOne(rapidjson::Value&& vArgs, PlayerOfOneCall playerOfOne)
{
int nFields = vArgs.Size();
m_oPlayData = std::make_unique<PlayData>(std::move(vArgs));
playerOfOne(nFields);
}
void pushHeader() override
{
m_currentCall.SetArray();
}
void pushInt(int64_t nn) override
{
rapidjson::Value item;
item.SetInt64(nn);
m_currentCall.PushBack(std::move(item), json_allocator());
}
void pushString(std::string ss) override
{
rapidjson::Value item(ss, json_allocator());
m_currentCall.PushBack(std::move(item), json_allocator());
}
void pushDouble(double dd) override
{
rapidjson::Value item;
item.SetDouble(dd);
m_currentCall.PushBack(std::move(item), json_allocator());
}
void pushCurrentCall() override
{
++m_callCounter;
m_vCalls.PushBack(std::move(m_currentCall), json_allocator());
}
int64_t popInt() const override
{
rapidjson::Value target;
playData().popValue(&target);
assert(target.IsInt64());
return target.GetInt();
}
std::string popString() const override
{
rapidjson::Value target;
playData().popValue(&target);
assert(target.IsString());
std::string ret = target.GetString();
// For voluminous but nearly complete diagnostics:
// TRACE1("popString \"%hs\"\n", ret.c_str());
return ret;
}
double popDouble() const override
{
rapidjson::Value target;
playData().popValue(&target);
assert(target.IsDouble());
return target.GetDouble();
}
ReturnVariant popVariant() const override
{
ReturnVariant ret;
rapidjson::Value target;
playData().popValue(&target);
if (target.IsArray())
{
std::vector<std::string> unpack;
for (auto& member : target.GetArray())
{
Assert(member.IsString(), Assertions::UnsupportedArgumentType);
unpack.push_back(member.GetString());
}
ret = unpack;
}
else if (target.IsString())
{
ret = target.GetString();
}
else if (target.IsDouble())
{
ret = target.GetDouble();
}
else if (target.IsInt64())
{
ret = target.GetInt64();
}
Assert(!std::holds_alternative<std::monostate>(ret), Assertions::UnsupportedArgumentType);
return ret;
}
static std::string formatTime(time_point tp)
{
// Recast time_point as time_t
time_t tt = std::chrono::system_clock::to_time_t(tp);
// Create string with formatted time based on the time_t
char buffer[512];
(void)ctime_s(buffer, 512, &tt);
std::string ss = buffer;
// Trim string, return as JSON item
ss = ss.substr(0, ss.length() - 1);
return ss;
}
// Writes string representation of the JSON document to a file.
static void stringifyCpp(const rapidjson::Document& dom, fs::path filepath)
{
FILE* fp = nullptr;
std::string filename = filepath.parent_path().generic_string();
filename += "\\";
filename += filepath.filename().generic_string();
errno_t bad = fopen_s(&fp, filename.c_str(), "wb"); // non-Windows use "w"
Assert(!bad, Assertions::FileCannotBeCreated, filename);
// good open, continue
char writeBuffer[65536];
rapidjson::FileWriteStream os(fp, writeBuffer, sizeof(writeBuffer));
rapidjson::Writer<rapidjson::FileWriteStream> writer(os);
dom.Accept(writer);
fclose(fp);
}
// Reads string representation from file and populates JSON document.
static void parseCpp(rapidjson::Document& dom, fs::path filepath)
{
FILE* fp = nullptr;
std::string filename = filepath.parent_path().generic_string();
filename += "\\";
filename += filepath.filename().generic_string();
errno_t bad = fopen_s(&fp, filename.c_str(), "rb"); // non-Windows use "r"
Assert(!bad, Assertions::FileDoesNotExist, filename);
// good open, continue
char readBuffer[65536];
rapidjson::FileReadStream is(fp, readBuffer, sizeof(readBuffer));
(void)dom.ParseStream<rapidjson::ParseFlag::kParseDefaultFlags, UTF8, rapidjson::FileReadStream>(is);
fclose(fp);
}
};
std::unique_ptr<IIo> makeIo()
{
return std::make_unique<JsonIo>();
}
|
4c83648a7f6656daafb9b52ba8d8387d6b7c13a2 | 46abd3f52a0d1e6bfa7243072634ff2451c244e3 | /include/Archetypes.hpp | a8e600d721949a652845fbc798c814f3d68ad8da | [] | no_license | Troussierj13/EntitySystem | 0a3a8095317387779f52984517116eb4b9bb13ab | 52c954c7ff89f9cbe53fa54bc62baba087056d51 | refs/heads/master | 2021-01-10T15:16:10.119569 | 2016-03-14T08:49:10 | 2016-03-14T08:49:10 | 53,800,974 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 372 | hpp | Archetypes.hpp | _Pragma("once")
#include <Storm/Entity/Entity.hpp>
#include <SFML/System/Vector2.hpp>
#include <SFML/Graphics/Color.hpp>
#include <SFML/Graphics/Texture.hpp>
namespace storm {
namespace entity {
class EntityManager;
}
}
storm::entity::Entity makeProjectile(storm::entity::EntityManager &manager, const sf::Texture &texture, float power, const sf::Vector2f &pos);
|
487bde8e0315cf23c99497a6ff4b53e87b0205e0 | b30ce2bde2534904932266f67d93444360d21db2 | /Arduino/libraries/ros_lib/points_downsampler/PointsDownsamplerInfo.h | 93913ea8304dda97c8094b833e0e1732389c4b99 | [] | no_license | MaxDeSantis/pid_ball_balancer_cbs | ee987b00474ec69d09ddc5f74bf9b9a3bc08f722 | 5266c1802631bdfce0425fbba75240a5f29c1c71 | refs/heads/main | 2023-04-07T15:12:24.028858 | 2021-04-18T16:44:02 | 2021-04-18T16:44:02 | 339,237,652 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,932 | h | PointsDownsamplerInfo.h | #ifndef _ROS_points_downsampler_PointsDownsamplerInfo_h
#define _ROS_points_downsampler_PointsDownsamplerInfo_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
#include "std_msgs/Header.h"
namespace points_downsampler
{
class PointsDownsamplerInfo : public ros::Msg
{
public:
typedef std_msgs::Header _header_type;
_header_type header;
typedef const char* _filter_name_type;
_filter_name_type filter_name;
typedef float _measurement_range_type;
_measurement_range_type measurement_range;
typedef int32_t _original_points_size_type;
_original_points_size_type original_points_size;
typedef int32_t _filtered_points_size_type;
_filtered_points_size_type filtered_points_size;
typedef int32_t _original_ring_size_type;
_original_ring_size_type original_ring_size;
typedef int32_t _filtered_ring_size_type;
_filtered_ring_size_type filtered_ring_size;
typedef float _exe_time_type;
_exe_time_type exe_time;
PointsDownsamplerInfo():
header(),
filter_name(""),
measurement_range(0),
original_points_size(0),
filtered_points_size(0),
original_ring_size(0),
filtered_ring_size(0),
exe_time(0)
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
offset += this->header.serialize(outbuffer + offset);
uint32_t length_filter_name = strlen(this->filter_name);
varToArr(outbuffer + offset, length_filter_name);
offset += 4;
memcpy(outbuffer + offset, this->filter_name, length_filter_name);
offset += length_filter_name;
union {
float real;
uint32_t base;
} u_measurement_range;
u_measurement_range.real = this->measurement_range;
*(outbuffer + offset + 0) = (u_measurement_range.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_measurement_range.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_measurement_range.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_measurement_range.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->measurement_range);
union {
int32_t real;
uint32_t base;
} u_original_points_size;
u_original_points_size.real = this->original_points_size;
*(outbuffer + offset + 0) = (u_original_points_size.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_original_points_size.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_original_points_size.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_original_points_size.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->original_points_size);
union {
int32_t real;
uint32_t base;
} u_filtered_points_size;
u_filtered_points_size.real = this->filtered_points_size;
*(outbuffer + offset + 0) = (u_filtered_points_size.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_filtered_points_size.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_filtered_points_size.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_filtered_points_size.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->filtered_points_size);
union {
int32_t real;
uint32_t base;
} u_original_ring_size;
u_original_ring_size.real = this->original_ring_size;
*(outbuffer + offset + 0) = (u_original_ring_size.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_original_ring_size.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_original_ring_size.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_original_ring_size.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->original_ring_size);
union {
int32_t real;
uint32_t base;
} u_filtered_ring_size;
u_filtered_ring_size.real = this->filtered_ring_size;
*(outbuffer + offset + 0) = (u_filtered_ring_size.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_filtered_ring_size.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_filtered_ring_size.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_filtered_ring_size.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->filtered_ring_size);
union {
float real;
uint32_t base;
} u_exe_time;
u_exe_time.real = this->exe_time;
*(outbuffer + offset + 0) = (u_exe_time.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_exe_time.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_exe_time.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_exe_time.base >> (8 * 3)) & 0xFF;
offset += sizeof(this->exe_time);
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
offset += this->header.deserialize(inbuffer + offset);
uint32_t length_filter_name;
arrToVar(length_filter_name, (inbuffer + offset));
offset += 4;
for(unsigned int k= offset; k< offset+length_filter_name; ++k){
inbuffer[k-1]=inbuffer[k];
}
inbuffer[offset+length_filter_name-1]=0;
this->filter_name = (char *)(inbuffer + offset-1);
offset += length_filter_name;
union {
float real;
uint32_t base;
} u_measurement_range;
u_measurement_range.base = 0;
u_measurement_range.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_measurement_range.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_measurement_range.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_measurement_range.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->measurement_range = u_measurement_range.real;
offset += sizeof(this->measurement_range);
union {
int32_t real;
uint32_t base;
} u_original_points_size;
u_original_points_size.base = 0;
u_original_points_size.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_original_points_size.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_original_points_size.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_original_points_size.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->original_points_size = u_original_points_size.real;
offset += sizeof(this->original_points_size);
union {
int32_t real;
uint32_t base;
} u_filtered_points_size;
u_filtered_points_size.base = 0;
u_filtered_points_size.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_filtered_points_size.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_filtered_points_size.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_filtered_points_size.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->filtered_points_size = u_filtered_points_size.real;
offset += sizeof(this->filtered_points_size);
union {
int32_t real;
uint32_t base;
} u_original_ring_size;
u_original_ring_size.base = 0;
u_original_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_original_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_original_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_original_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->original_ring_size = u_original_ring_size.real;
offset += sizeof(this->original_ring_size);
union {
int32_t real;
uint32_t base;
} u_filtered_ring_size;
u_filtered_ring_size.base = 0;
u_filtered_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_filtered_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_filtered_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_filtered_ring_size.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->filtered_ring_size = u_filtered_ring_size.real;
offset += sizeof(this->filtered_ring_size);
union {
float real;
uint32_t base;
} u_exe_time;
u_exe_time.base = 0;
u_exe_time.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_exe_time.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_exe_time.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_exe_time.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
this->exe_time = u_exe_time.real;
offset += sizeof(this->exe_time);
return offset;
}
const char * getType(){ return "points_downsampler/PointsDownsamplerInfo"; };
const char * getMD5(){ return "a6fc8411fcff551ab66c7910e08a8d14"; };
};
}
#endif |
b1e5a4cfed923076f9865f21bf4414a7440fc142 | 37e5c94c023fa95ed06453c1c5688a3034e4eab5 | /solver/validate.h | 7f885ffb9956c4265a03b2346164fc49ae6bcecf | [
"MIT"
] | permissive | staffik/pace2019_vc | 84569d7dbfa6a6b0cd8719f45b6778c7c8cf8dd8 | 0c6c1ac71bbe3fbbfdbd604b0a4ab8b1c400a003 | refs/heads/master | 2020-05-15T23:59:59.035095 | 2019-04-21T18:25:15 | 2019-05-09T18:05:36 | 182,568,248 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 151 | h | validate.h | #include <vector>
#include "vc.h"
#include "graph.h"
bool validate_correctness(Graph, const VC&);
bool validate_minimality(const Graph&, const VC&);
|
c511f2fe8b9706c651de6537095774513826459b | 24715e7509aa21d97b96001b1cee789dd507fc20 | /GameFramework/Include/Resource/Texture.cpp | ac801cb621aca4cd2cb1f1e9b3947175c926760e | [] | no_license | jhoryong/baba-is-you | 9c4da5336c857f8ef155d1aff073c0dcbeb8a812 | 4c011dc0dd8fdbf7c2a6c82e4fbf6956c5df020d | refs/heads/main | 2023-08-03T15:45:47.250413 | 2021-09-10T10:17:56 | 2021-09-10T10:17:56 | 365,950,244 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 4,973 | cpp | Texture.cpp | #include "Texture.h"
#include "../PathManager.h"
#include "../GameManager.h"
CTexture::CTexture()
{
}
CTexture::~CTexture()
{
SAFE_DELETE_VECLIST(m_vecTexture);
}
bool CTexture::LoadTexture(const string& strName,
const TCHAR* pFileName, const string& strPathName)
{
SetName(strName);
const TCHAR* pPath = GET_SINGLE(CPathManager)->FindPath(strPathName);
TCHAR strFullPath[MAX_PATH] = {};
if (pPath)
lstrcpy(strFullPath, pPath);
// 경로 뒤에 파일 이름을 붙여주어서 최종 경로를 만들어낸다.
lstrcat(strFullPath, pFileName);
PTextureInfo pTexInfo = new TextureInfo;
pTexInfo->hDC = CreateCompatibleDC(GET_SINGLE(CGameManager)->GetWindowDC());
pTexInfo->hBmp = (HBITMAP)LoadImage(GET_SINGLE(CGameManager)->GetWindowInstance(),
strFullPath, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
pTexInfo->hPrevBmp = (HBITMAP)SelectObject(pTexInfo->hDC, pTexInfo->hBmp);
m_vecTexture.push_back(pTexInfo);
return true;
}
bool CTexture::LoadTexture(const string& strName,
const vector<const TCHAR*>& vecFileName,
const string& strPathName)
{
SetName(strName);
size_t iSize = vecFileName.size();
for (size_t i = 0; i < iSize; ++i)
{
const TCHAR* pPath = GET_SINGLE(CPathManager)->FindPath(strPathName);
TCHAR strFullPath[MAX_PATH] = {};
if (pPath)
lstrcpy(strFullPath, pPath);
// 경로 뒤에 파일 이름을 붙여주어서 최종 경로를 만들어낸다.
lstrcat(strFullPath, vecFileName[i]);
PTextureInfo pTexInfo = new TextureInfo;
pTexInfo->hDC = CreateCompatibleDC(GET_SINGLE(CGameManager)->GetWindowDC());
pTexInfo->hBmp = (HBITMAP)LoadImage(GET_SINGLE(CGameManager)->GetWindowInstance(),
strFullPath, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
pTexInfo->hPrevBmp = (HBITMAP)SelectObject(pTexInfo->hDC, pTexInfo->hBmp);
m_vecTexture.push_back(pTexInfo);
}
return true;
}
bool CTexture::LoadTexture(const string& strName,
const TCHAR* pFileName, int iCount, const string& strPathName)
{
SetName(strName);
for (int i = 0; i < iCount; ++i)
{
const TCHAR* pPath = GET_SINGLE(CPathManager)->FindPath(strPathName);
TCHAR strFullPath[MAX_PATH] = {};
if (pPath)
lstrcpy(strFullPath, pPath);
TCHAR strFileName[MAX_PATH] = {};
wsprintf(strFileName, pFileName, i);
// 경로 뒤에 파일 이름을 붙여주어서 최종 경로를 만들어낸다.
lstrcat(strFullPath, strFileName);
PTextureInfo pTexInfo = new TextureInfo;
pTexInfo->hDC = CreateCompatibleDC(GET_SINGLE(CGameManager)->GetWindowDC());
pTexInfo->hBmp = (HBITMAP)LoadImage(GET_SINGLE(CGameManager)->GetWindowInstance(),
strFullPath, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
pTexInfo->hPrevBmp = (HBITMAP)SelectObject(pTexInfo->hDC, pTexInfo->hBmp);
m_vecTexture.push_back(pTexInfo);
}
return true;
}
bool CTexture::LoadTextureFullPath(const string& strName,
const TCHAR* pFullPath)
{
SetName(strName);
PTextureInfo pTexInfo = new TextureInfo;
pTexInfo->hDC = CreateCompatibleDC(GET_SINGLE(CGameManager)->GetWindowDC());
pTexInfo->hBmp = (HBITMAP)LoadImage(GET_SINGLE(CGameManager)->GetWindowInstance(),
pFullPath, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
pTexInfo->hPrevBmp = (HBITMAP)SelectObject(pTexInfo->hDC, pTexInfo->hBmp);
m_vecTexture.push_back(pTexInfo);
return true;
}
void CTexture::SetColorKey(unsigned char r, unsigned char g,
unsigned char b, int iIndex)
{
m_vecTexture[iIndex]->bColorKey = true;
m_vecTexture[iIndex]->iColorKey = RGB(r, g, b);
}
void CTexture::SetColorKeyAll(unsigned char r, unsigned char g,
unsigned char b)
{
size_t iSize = m_vecTexture.size();
for (size_t i = 0; i < iSize; ++i)
{
m_vecTexture[i]->bColorKey = true;
m_vecTexture[i]->iColorKey = RGB(r, g, b);
}
}
void CTexture::Render(HDC hDC, const Vector2& vPos, const Vector2& vImagePos,
const Vector2& vSize, int iIndex)
{
if (m_vecTexture[iIndex]->bColorKey)
{
TransparentBlt(hDC, (int)vPos.x, (int)vPos.y, (int)vSize.x, (int)vSize.y,
m_vecTexture[iIndex]->hDC, (int)vImagePos.x, (int)vImagePos.y,
(int)vSize.x, (int)vSize.y, m_vecTexture[iIndex]->iColorKey);
}
else
{
BitBlt(hDC, (int)vPos.x, (int)vPos.y, (int)vSize.x, (int)vSize.y,
m_vecTexture[iIndex]->hDC, (int)vImagePos.x, (int)vImagePos.y,
SRCCOPY);
}
}
void CTexture::RenderAlphaBlend(unsigned char cAlpha, HDC hDC, const Vector2& vPos,
const Vector2& vImagePos, const Vector2& vSize, int iIndex)
{
BLENDFUNCTION tBF = {};
tBF.BlendOp = 0;
tBF.BlendFlags = 0;
tBF.SourceConstantAlpha = cAlpha;
// AC_SRC_OVER로 하면 비트맵이 32비트여야 한다. 24비트일 경우 이 변수의 값을 0으로 준다.
tBF.AlphaFormat = 0;
GdiAlphaBlend(hDC, (int)vPos.x, (int)vPos.y, (int)vSize.x, (int)vSize.y,
m_vecTexture[iIndex]->hDC, (int)vImagePos.x, (int)vImagePos.y, (int)vSize.x, (int)vSize.y, tBF);
}
void CTexture::Save(FILE* pFile)
{
size_t iLength = m_strName.length();
fwrite(&iLength, sizeof(size_t), 1, pFile);
fwrite(m_strName.c_str(), 1, iLength, pFile);
}
|
681fca2db6b85b3aac1995bea0a57b93b1efc30a | df256c2663bcd2a61fff9950759debd2760d0ce9 | /Memento/Memento/GuiComponent.h | 0c773ecfd0b5547c257265f9e87fd7ed55faa056 | [
"BSD-2-Clause"
] | permissive | jayavardhanravi/DesignPatterns | d4adbb80c2b781affd531f8887c4634e35788353 | aa6a37790f447c7caf69c6a1a9c6107074309a03 | refs/heads/master | 2021-07-25T05:21:02.690532 | 2021-01-02T14:17:54 | 2021-01-02T14:17:54 | 233,955,558 | 15 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 269 | h | GuiComponent.h | #pragma once
#include "Component.h"
class GuiComponent : public Component
{
public:
GuiComponent();
~GuiComponent();
GuiData * RestoreGuiComponent(GuiData *);
GuiData * CreateGuiData();
GuiData * SaveGuiState();
private:
std::unique_ptr<GuiData> guiData_;
};
|
f99238a7a1529ac71a5cf1e8373e790f942c3ff9 | a194511dea15e82780072fb88dad81b17e24919f | /libs/habutil/habit/HExperimentListValidator.cpp | 6f584a162902a7ab513ae3a78e61c60a17c52fff | [] | no_license | djsperka/habit2-src | 3056b07c664f2cbc1e32874cdf442b13a511b205 | a35117864de3c8cff55ff05d7b20fcc479e4ee8c | refs/heads/master | 2023-01-07T19:56:59.382117 | 2023-01-06T00:23:50 | 2023-01-06T00:23:50 | 157,589,849 | 0 | 0 | null | 2023-01-05T22:00:14 | 2018-11-14T18:03:09 | C++ | UTF-8 | C++ | false | false | 664 | cpp | HExperimentListValidator.cpp | /*
* HExperimentListValidator.cpp
*
* Created on: Nov 12, 2014
* Author: Oakeslab
*/
#include "HExperimentListValidator.h"
QValidator::State GUILib::HExperimentListValidator::validate(QString& input, int&) const
{
QValidator::State state = QValidator::Invalid;
// if input is empty we're up in the air
if (input.isEmpty())
{
state = QValidator::Intermediate;
}
else
{
// check against re
if (m_re.exactMatch(input))
{
// check if its in the list of existing experiments
if (m_list.contains(input))
{
state = QValidator::Intermediate;
}
else
{
state = QValidator::Acceptable;
}
}
}
return state;
};
|
b8d2f441f323b39f60d69bb9c4f870989836d444 | e9af0754add0f74889d2925774ef70c5c57ecf99 | /GameSkeleton/Engine2.0/Renderer/ShaderUniformParameter.h | d6c0ce5512b97d108ce806b5fad455d30ef3f584 | [] | no_license | tmgarcia/CPPGameEngine | 3b609691c07e8dfef8e634ce2620adaa45e918ad | 18161d9e89d0f9d3655a6209553ed2641c525ea2 | refs/heads/master | 2020-03-27T23:04:17.307869 | 2016-01-26T18:25:35 | 2016-01-26T18:25:35 | 40,387,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 182 | h | ShaderUniformParameter.h | #pragma once
#include "ParameterType.h"
class ShaderUniformParameter
{
friend class GeneralGLWindow;
const char* name;
ParameterType parameterType;
const float* value;
}; |
eec31e022387d2636f381d40ccd61715d9fb835f | 9ed11ec490bb690cef0c0cdf667c4c7e2a7fe59f | /include/FHeap.h | a46e7dc3e15c5b742a59aa85e5cf57a440dd4ef0 | [] | no_license | jtanderson/FHeap | ed0f39e1d0722e7291d80e02b29f5ab6b22793f0 | f53423f816f21e61a40fe4c3e574e9eae131ab82 | refs/heads/master | 2020-05-18T02:32:34.522326 | 2012-11-06T15:40:21 | 2012-11-06T15:40:21 | 6,189,975 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 761 | h | FHeap.h | /**
* File: FHeap.h
*
* The header file for the Fibonacci Heap data structure
*
* @author Joseph T. Anderson <jtanderson@ratiocaeli.com>
* @since 2012-11-04
* @version 2012-11-04
*
*/
#ifndef FHEAP_H
#define FHEAP_H
#include "FNode.h"
#include <cstddef>
#include <string>
#include <stdlib.h>
#include <sstream>
#include <vector>
class FHeap{
private:
FNode * min;
std::string printCycle(FNode * f);
public:
FHeap();
~FHeap();
FHeap * operator=(FHeap * f);
void insert(int v);
void insert(FNode * f);
FNode * find(int target);
FNode * getMin();
void deleteMin();
void deleteNode(int target);
void decreaseKey(int target, int delta);
void setKey(int target, int newValue);
void meldWith(FHeap * f);
std::string print();
};
#endif
|
a07411ddb7db94592d27c74db55bf4a9aa09842c | a3259fa72ce413de87c309bc61da606dcfe13c03 | /src/InA_query_model/DefinitionReader.cpp | f43c7c3cfecd0f0a4bf30838243b720171c3875b | [] | no_license | nhuhoang0701/wasabi | 6d4a7d7e68233268e24298f7f3218bc4d67497e5 | 2a72ff73bf245fe5ce2533f8a4dd32cf1db2cdeb | refs/heads/master | 2023-07-29T08:06:39.123199 | 2021-09-09T15:43:13 | 2021-09-09T15:43:13 | 388,215,854 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,498 | cpp | DefinitionReader.cpp | #include "Definition.h"
#include "Selection/Selection.h"
#include "Sort.h"
#include "ResultSetFeatureRequest.h"
#include "common/Log.h"
#include <json/jsonReader.h>
#include <exceptions/InA_Exception.h>
#include <iostream>
namespace ina::query_model
{
void read(Definition & definition, const JSONGenericObject& definitionNode)
{
if (definitionNode.isString("ValuehelpForVariable"))
{
throw TRACED_InA_EXCEPTION("ValuehelpForVariable NYI");
}
if (JSONGenericObject variables = definitionNode.getArray("Variables"))
{
throw TRACED_InA_EXCEPTION("Variables NYI");
}
if(const auto& dims = definitionNode.getArray("Dimensions"))
{
for(int i = 0;i < dims.size();i++)
{
query_model::Dimension dimensionObj;
read(dimensionObj, dims[i]);
definition.addDimension(dimensionObj);
}
}
if(const auto& resSetFeatJSon = definitionNode.getObject("ResultSetFeatureRequest"))
{
Read(definition.m_resultSetFeature, resSetFeatJSon);
}
if (const auto& dynamicFilterNode = definitionNode.getObject("DynamicFilter"))
{
ScopeDebug sc("Reading DynamicFilter");
if (const auto& selectionNode = dynamicFilterNode.getObject("Selection"))
{
read(definition.m_selection, selectionNode);
}
}
if (const auto& sortArray = definitionNode.getArray("Sort"))
{
for(int i=0; i < sortArray.size(); i++)
{
query_model::Sort querySort;
read(querySort, sortArray[i]);
definition.addSort(querySort);
}
}
}
} //query_model
|
0d14613e06dd891c978d57f8ff0429d4ed2fb39a | 6ccdb5faae5e4fc3d1be490790566ecb87ee0f03 | /controlCar_42_/controlCar_42_.ino | b970d0d930288a236f76da733bfe259b5d6b3cdf | [] | no_license | EmbeddedProjectInDonggukUniv/Smart-Traffic-System | 76ccdb9a237b18c11375152badbe9d54c92cfcab | ae975f14ba59af216b3b044665352829bd237ea5 | refs/heads/master | 2021-01-13T03:42:33.110648 | 2016-12-24T06:36:28 | 2016-12-24T06:36:28 | 77,269,764 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,996 | ino | controlCar_42_.ino | /*
* 전방의 사물을 인식하여 10cm 이내로 사물이 감지되면 감속되고
* 3cm 이내로 사물이 감지되면 정지하면서 LED가 점등된다.
* 사물이 멀어지면 다시 전진한다.
*/
int trigPin = 2;
int echoPin = 3;
int ledPin = 13; // LED 핀 설정
const int MOTOR_A_PINS[3]= {42, 44, 4};
const int MOTOR_B_PINS[3] = {46, 48, 5};
int motor_speed = 250;
void setup()
{
int i;
Serial.begin(9600);
pinMode(trigPin,OUTPUT); // 센서 Trig 핀
pinMode(echoPin,INPUT); // 센서 Echo 핀
pinMode(ledPin, OUTPUT); // LED 핀
for (i = 0; i < 3; ++i) {
pinMode(MOTOR_A_PINS[i], OUTPUT); // 0
pinMode(MOTOR_B_PINS[i], OUTPUT);
}
}
void loop(){
long duration, cm;
int i;
digitalWrite(trigPin,HIGH); // 센서에 Trig 신호 입력
delayMicroseconds(10); // 10us 정도 유지
digitalWrite(trigPin,LOW); // Trig 신호 off
duration = pulseIn(echoPin,HIGH); // Echo pin: HIGH->Low 간격을 측정
cm = duration/29/2; // 거리(cm)로 변환
Serial.print(cm);
Serial.print("cm");
Serial.println();
if(cm >= 10){
setForward();
runMotor(250);
motor_speed = 250;
//delay(500);
}
if(3 < cm || cm < 10){
motor_speed = 150;
while(1){
digitalWrite(ledPin, HIGH);// LED 켜짐
runMotor(motor_speed);
digitalWrite(trigPin,HIGH); // 센서에 Trig 신호 입력
delayMicroseconds(10); // 10us 정도 유지
digitalWrite(trigPin,LOW); // Trig 신호 off
duration = pulseIn(echoPin,HIGH); // Echo pin: HIGH->Low 간격을 측정
cm = duration/29/2; // 거리(cm)로 변환
Serial.print(cm);
Serial.print("cm");
if(cm > 10){
break;
}
if(cm <= 3){
motor_speed = 0;
}
}
}
if(cm <= 3){
while(1){
digitalWrite(ledPin, HIGH);// LED 켜짐
runMotor(0);
digitalWrite(trigPin,HIGH); // 센서에 Trig 신호 입력
delayMicroseconds(10); // 10us 정도 유지
digitalWrite(trigPin,LOW); // Trig 신호 off
duration = pulseIn(echoPin,HIGH); // Echo pin: HIGH->Low 간격을 측정
cm = duration/29/2; // 거리(cm)로 변환
Serial.print(cm);
Serial.print("cm");
if(cm > 10){
break;
}
}
}
digitalWrite(ledPin,LOW); // LED 꺼짐
}
void setForward() {
digitalWrite(MOTOR_A_PINS[0], 1); // HIGH
digitalWrite(MOTOR_B_PINS[0], 1); // HIGH
digitalWrite(MOTOR_A_PINS[1], 0); // LOW
digitalWrite(MOTOR_B_PINS[1], 0); // LOW
}
void setBackward() {
digitalWrite(MOTOR_A_PINS[0], 0); // LOW
digitalWrite(MOTOR_B_PINS[0], 0); // LOW
digitalWrite(MOTOR_A_PINS[1], 1); // HIGH
digitalWrite(MOTOR_B_PINS[1], 1); // HIGH
}
void runMotor(unsigned char speed) { // [0, 255]
Serial.println(speed);
analogWrite(MOTOR_A_PINS[2], speed);
analogWrite(MOTOR_B_PINS[2], speed);
}
|
a9763865c19b32259a18dc33380663d866a86685 | 1d7ea7707aa8aa68d0c3e57638eca3537a049e4f | /Controller/ResultReceiver.h | 648909c81707f63f203063dcb40d4bceb3f57f68 | [] | no_license | beastlovezxc/GardenApp | 778fc6ebd1a4db6af67215eec72aaf9af542624d | 6840271282fa4e23d5a01a7ba57522d55caa6a15 | refs/heads/master | 2022-12-09T01:37:48.697350 | 2020-09-02T09:18:08 | 2020-09-02T09:18:08 | 292,234,166 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 491 | h | ResultReceiver.h | #ifndef RESULTRECEIVER_H
#define RESULTRECEIVER_H
#include <QObject>
#include <QAndroidActivityResultReceiver>
class ResultReceiver: public QObject, public QAndroidActivityResultReceiver
{
Q_OBJECT
signals:
void sendData(QString);
public:
int requestId;
ResultReceiver(int id, QObject *parent = nullptr) : QObject(parent), requestId(id) {}
void handleActivityResult(int receiverRequestCode, int resultCode, const QAndroidJniObject &data);
};
#endif // RESULTRECEIVER_H
|
51a3662296561eeff353e29ba706360645456472 | 8b4c4546f92e1f185fc666e645a5f32926a81666 | /engine/core/editor/qt/QUiLoader.h | c00ffb345880a634a5845d3cafc5c9584073a6fa | [
"MIT"
] | permissive | johndpope/echo | a5db22b07421f9c330c219cd5b0e841629c7543c | e9ce2f4037e8a5d49b74cc7a9d9ee09f296e7fa7 | refs/heads/master | 2020-04-03T03:52:59.454520 | 2018-11-22T20:55:32 | 2018-11-22T20:55:32 | 154,997,449 | 0 | 0 | MIT | 2018-11-22T20:55:33 | 2018-10-27T18:39:23 | C++ | UTF-8 | C++ | false | false | 177 | h | QUiLoader.h | #pragma once
#include "QWidget.h"
namespace Echo
{
#ifdef ECHO_EDITOR_MODE
// load ui file by path. then return the widget
QWidget* qLoadUi(const char* uiFilePath);
#endif
} |
7d5a3db8fa47e812854087b47fbce43a0fae08f1 | 1475ab0b6c03d30740b5556ae345dea143746cf3 | /CodeForces/Round456/D.cpp | 2b8b4a0fc80e3773dbe2936fec964c22d9be0b48 | [] | no_license | AOQNRMGYXLMV/mycode | d9a882ca985456c21207d4548f3bd459662e548c | 8ff1f46ed55d965502f91fff170da1514878d836 | refs/heads/master | 2020-05-29T18:48:10.869181 | 2018-04-21T16:18:39 | 2018-04-21T16:18:39 | 52,936,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,471 | cpp | D.cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <map>
#include <set>
#include <queue>
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
#define PB push_back
#define PII pair<int, int>
#define REP(i, a, b) for(int i = a; i < b; i++)
#define PER(i, a, b) for(int i = b - 1; i >= a; i--)
#define ALL(x) x.begin(), x.end()
#define cnt(x, y) (x-y+1)
const int maxn = 100000 + 10;
int n, m, r, k;
struct Node {
PII p;
int v;
Node() {}
Node(PII p, int v = 0): p(p), v(v) {}
void calc() {
int t1 = cnt(n, r) - max(0, cnt(p.first-1, r)) - max(0, cnt(n-p.first, r));
int t2 = cnt(m, r) - max(0, cnt(p.second-1, r)) - max(0, cnt(m-p.second, r));
v = t1 * t2;
}
bool operator < (const Node& t) const {
return v < t.v;
}
};
priority_queue<Node> Q;
set<PII> vis;
int dx[] = { -1, -1, -1, 0, 0, 1, 1, 1 };
int dy[] = { -1, 0, 1, -1, 1, -1, 0, 1 };
bool in(PII x) {
return 1<=x.first&&x.first<=n&&1<=x.second&&x.second<=m;
}
int main() {
scanf("%d%d%d%d", &n, &m, &r, &k);
PII s((n+1)/2, (m+1)/2);
Node t(s);
t.calc();
vis.insert(s);
Q.push(t);
LL tot = 0;
while(k--) {
t = Q.top(); Q.pop();
tot += t.v;
REP(i, 0, 8) {
PII nxt(t.p.first+dx[i], t.p.second+dy[i]);
if(!in(nxt)) continue;
if(vis.count(nxt)) continue;
vis.insert(nxt);
Node nnxt(nxt);
nnxt.calc();
Q.push(nnxt);
}
}
printf("%.10f\n", (double)tot / (double)(n-r+1) / (double)(m-r+1));
return 0;
}
|
ea3412f5c05d211ec5255edaa6f284778beb6783 | 9c8ef0a48b7bfccd380dc3c8c848283a39e9d2ad | /WingsApplication.cpp | d28a420bc2aa09199db0cbdb95e76c14cdc95f3e | [] | no_license | bstilts/WingsApplication | ad694b3ec214b00e4f7b88cd8769983b87d06862 | 076528869fff365c72e3d61bc1b746ea160344b8 | refs/heads/master | 2023-03-11T06:42:52.175785 | 2021-02-26T23:02:41 | 2021-02-26T23:02:41 | 342,722,486 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,149 | cpp | WingsApplication.cpp | /*
Nicholas White
CEIS247C
Week 3 Lab
*/
#include <iostream>
#include <string>
#include <conio.h>
#include "Wings.h"
using namespace std;
/// Entry point to application
int main()
{
//create two wings objects
Wings w1("honey hot", 6);
Wings w2("BBQ", 6);
Wings w3 = w1 + w2;
cout << "Combined wings: " << w3.getflavor() << ", " << w3.getNumberOfPieces() << endl;
Wings w4 = w3 - w2;
cout << "Small wings: " << w4.getflavor() << ", " << w4.getNumberOfPieces() << endl;
Wings w5 = -w4;
cout << "Negated wings: " << w5.getflavor() << ", " << w5.getNumberOfPieces() << endl;
w5 = -w5;
++w5;
cout << "pre-Incremented wings:" << w5.getflavor() << ", " << w5.getNumberOfPieces() << endl;
w5++;
cout << "post-increment wings: " << w5.getflavor() << ", " << w5.getNumberOfPieces() << endl;
Wings w6 = w5;
cout << "equal wings: " << w6.getflavor() << ", " << w6.getNumberOfPieces() << endl;
Wings w7;
cin >> w7;
cout << "Input stream wings" << w6.getflavor() << ", " << w6.getNumberOfPieces() << endl;
cout << "output stream wings: " << w7 << endl;
//pause
cout << "\nPess any key to continue...";
_getch();
return 0;
};
|
034fca16e4698c2b605d9addc6fe3c19bba4c136 | 4f2abd56edec96124fc7dcdf586530bf01d2b1fb | /TriangulationRansacSample.cpp | bcbf9904fdaa9de68043bade9e4f29acc93dd5a2 | [] | no_license | xing-shuai/RANSAC-Triangulation | 2ac672e1390e31b2707931633fb310926c12b437 | b59d4aa981e7326e761d5a3e41ebddc2c0c6901f | refs/heads/master | 2022-12-02T11:26:32.534947 | 2020-08-24T10:13:56 | 2020-08-24T10:13:56 | 289,891,741 | 10 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,108 | cpp | TriangulationRansacSample.cpp | #include <cmath>
#include <iostream>
#include <opencv2/opencv.hpp>
#include "GRANSAC.hpp"
#include "TriangulationModel.hpp"
int main(int argc, char* arcv[]) {
// load projection matrix
unsigned int nCameraViews = 5;
std::vector<cv::Mat> Ps;
Ps.resize(nCameraViews);
cv::FileStorage psread("/home/shuai/Desktop/Shelf_Ps.xml",
cv::FileStorage::READ);
for (unsigned int i = 0; i < nCameraViews; i++) {
cv::Mat m;
psread["p_" + std::to_string(i)] >> m;
Ps.at(i) = m;
}
psread.release();
// prepare candidate view data
std::vector<std::shared_ptr<GRANSAC::AbstractParameter>> CandViews;
CandViews.emplace_back(
std::make_shared<SingleView>(577, 768, 0.732, Ps.at(0)));
CandViews.emplace_back(
std::make_shared<SingleView>(933, 666, 1.06, Ps.at(1)));
CandViews.emplace_back(
std::make_shared<SingleView>(828, 467, 1.072, Ps.at(2)));
CandViews.emplace_back(
std::make_shared<SingleView>(389, 475, 1.009, Ps.at(4)));
// RANSAC Triangulation
GRANSAC::RANSAC<TriangulationRansacModel, 2> Estimator;
Estimator.Initialize(15, 10); // Threshold, iterations
int64_t start = cv::getTickCount();
Estimator.Estimate(CandViews);
int64_t end = cv::getTickCount();
std::cout << "RANSAC Took: "
<< GRANSAC::VPFloat(end - start) /
GRANSAC::VPFloat(cv::getTickFrequency()) * 1000.0
<< " ms." << std::endl;
// other informations to output
auto& BestInliers = Estimator.GetBestInliers();
std::cout << std::endl;
std::cout << "Best Inliers: " << std::endl;
for (auto& Inlier : BestInliers) {
auto sv = std::dynamic_pointer_cast<SingleView>(Inlier);
std::cout << sv->m_Point2D << std::endl;
}
auto bestModel = Estimator.GetBestModel();
auto reconstruct3DPoint =
std::dynamic_pointer_cast<TriangulationRansacModel>(bestModel)
->GetBestReconstructed3DPoint(BestInliers);
std::cout << std::endl;
std::cout << "Reconstructed 3D Point: " << std::endl
<< reconstruct3DPoint << std::endl;
std::cout << std::endl;
return 0;
}
|
74f3b6895b8a68905547dd2a5212528ce45d91e1 | 4470ba838776da2ae2ca41912a73158ddd4a0943 | /source code/Button.hpp | 2d28199e08a8d569058df2441607360db3473a4c | [] | no_license | AndyLinGitHub/SDL2-Game-Programming | 87554003b14c893b5a0e553d2d0b1fc071e4be0c | 02cd47929911b1c79171b6c4fadc30c49a8eead4 | refs/heads/master | 2023-02-20T21:57:15.992510 | 2021-01-25T12:00:56 | 2021-01-25T12:00:56 | 177,055,840 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 950 | hpp | Button.hpp | #ifndef Button_hpp
#define Button_hpp
#include <stdio.h>
#include <SDL.h>
#include <SDL_image.h>
#include <string>
#include "LTexture.hpp"
enum buttonSprite
{
BUTTON_SPRITE_MOUSE_OUT = 0,
BUTTON_SPRITE_MOUSE_OVER_MOTION = 1,
BUTTON_SPRITE_MOUSE_DOWN = 1,
BUTTON_SPRITE_MOUSE_UP = 0,
BUTTON_SPRITE_TOTAL = 4
};
class Button
{
public:
int state = 0;
//Initializes internal variables
Button(std::string path1, std::string path2, int st);
~Button();
//Sets top left position
void setPosition( int x, int y );
//Handles mouse event
void handleEvent( SDL_Event* e, int ¤t_state);
//Shows button sprite
void render();
int getCurrentsprite() {return mcurrentsprite;}
private:
//Top left position
SDL_Point mPosition;
LTexture button_texture[2];
//Currently used global sprite
buttonSprite mcurrentsprite;
};
#endif /* Button_hpp */
|
312e8c5ed9023d38b4e419d210bf3b4e4138097f | 2a435f7841615cf1f7eb954ee4b50e7b47be6299 | /12.13/test.cpp | 4d5ddcc7f69a9fbf31e4ae68c604e9b28321cf57 | [] | no_license | Lonedaa/Lonedaa-my-first-land | f96ce8de1392ffb03aee44f0dac279bb9b0d1226 | 4057c9050cb205cdf539285a73cdb685258adb1e | refs/heads/master | 2023-02-23T18:54:39.176799 | 2021-01-30T06:09:52 | 2021-01-30T06:09:52 | 317,726,770 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,136 | cpp | test.cpp | #include"test.h"
void test()
{
ofstream ofs;//创建输出流对象
ofs.open("test.txt", ios::out);
//输出流时如果指定文件未创建会自动创建该文件
if (!ofs.is_open())//根据上一句注释,这里的判断可以省略
{
cout << "打开失败" << endl;
return;
}
ofs << "张三 " << "17 " << "男";
ofs.close();
//读取文件
ifstream ifs;
ifs.open("test.txt", ios::in);
//读取文件时没有指定文件时就会返回空指针NULL
if (!ifs.is_open())
{
cout << "打开文件失败" << endl;
return;
}
//读取文件时要有一个容器出存储数据
/*char buf[1024] = { 0 };
while (ifs.getline(buf, sizeof(buf)))
{
cout << buf << endl;
}*/
string buf_;
while(getline(ifs, buf_))
{
cout << buf_ << endl;
}
ifs.close();
//二进制文件输出
ofs.open("test.txt", ios::out | ios::binary);
int p = 10;
ofs.write((const char*)&p, sizeof(int));
ofs.close();
//二进制文件写入
ifs.open("test.txt", ios::in | ios::binary);
int q;
ifs.read((char*)&q, sizeof(int));
cout << q << endl;
ifs.close();
}
int main()
{
test();
system("PAUSE");
return 0;
} |
b8493fee04632fb28a7b0c8ce6e5dbba73405b30 | 04fef889f804ac61211af46db18dfab59010ef6a | /Maximum_Sum_Combinations.cpp | 37e18f06dc91e730daf8ae19b5e380550c5c5010 | [] | no_license | shivangigoel1302/Interviewbit | 1091d6855607bb6679a8297c26ffab5901722c5c | 6bde32607a5b44d89eedc1412bc23ca3e88ac416 | refs/heads/master | 2023-07-18T12:13:05.479994 | 2021-09-05T18:04:29 | 2021-09-05T18:04:29 | 403,378,723 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 277 | cpp | Maximum_Sum_Combinations.cpp | vector<int> Solution::solve(vector<int> &A, vector<int> &B, int C) {
sort(A.begin(),A.end());
sort(B.begin(),B.end());
int n = A.size(),m = B.size();
if(C == 1){
return {A[n-1] + B[m-1]};
}
vector<int>ans;
ans.push_back({A[n-1]+B[m-1]});
}
|
a6746848a2f135728babf05fcbfcfee7689bd2dd | 82d45ea2bd81e536dd56852e377e82f0eac3f54a | /未归类/模拟赛2/data/cyberpunk/1.cpp | 27f5d6a7147debdbfe973597e70378081c724f8b | [] | no_license | jagatstu/NOIP_tutorial | d270a50b4b002087f12abeeedbd88214396791d7 | 10abe2108757126865cc806a7d4a0a972e6104bb | refs/heads/master | 2023-08-31T07:18:30.593773 | 2020-11-27T03:44:08 | 2020-11-27T03:44:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | cpp | 1.cpp | #include <iostream>
using namespace std;
int main()
{
freopen("live.in","r",stdin);
freopen("live.out","w",stdout);
int n,a,last=0,ans=0;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a;
if(a>last)ans+=(a-last);
last=a;
}
cout<<ans<<endl;
}
|
7eda5b519db4209ee51832978275b00d8761105f | 5bd3fa92c0ef7bd03334422dc36d615167fe553d | /Day Code/Day 32 - Libraries/aligned_bounding_box.cpp | 9285d66e0a31257cf7e052a821530939be4d9ab9 | [] | no_license | Bl00per/AIE-Programming | c42c5766dc81a8d99abe636a8444068ab76ac2fa | 1e0fbee6ccc958c3bb56917aa685866548baf04c | refs/heads/master | 2020-05-01T13:07:09.278007 | 2019-08-21T05:17:54 | 2019-08-21T05:17:54 | 177,482,113 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,039 | cpp | aligned_bounding_box.cpp | #include "aligned_bounding_box.h"
const Vector2 aligned_bounding_box::DEFAULT_EXTENTS = { 5.0f, 5.0f };
aligned_bounding_box::aligned_bounding_box(const Vector2& a_position /*= Vector2()*/,
const Vector2& a_extents /*= DEFAULT_EXTENTS*/) :
m_position(a_position),
m_extents(a_extents),
collider(shape::aabb)
{}
const Vector2 aligned_bounding_box::get_position() const
{
return m_position;
}
void aligned_bounding_box::set_position(const Vector2& a_position)
{
m_position = a_position;
}
const Vector2 aligned_bounding_box::get_extents() const
{
return m_extents;
}
void aligned_bounding_box::set_extents(const Vector2& a_extents)
{
m_extents = { abs(a_extents.x), abs(a_extents.y) };
}
const float aligned_bounding_box::get_width()
{
return width;
}
const float aligned_bounding_box::get_height()
{
return height;
}
const Vector2 aligned_bounding_box::get_min() const
{
return m_position - 0.5f * m_extents;
}
const Vector2 aligned_bounding_box::get_max() const
{
return m_position + 0.5f * m_extents;
}
|
8882cd4f1a7e6c0e6d634851dbc4672ba22f849c | 285d8108e2d5ac604382e82fac64941ff527dea9 | /src/section 4/allocating_memory/main.cpp | 46b091622963ebea4f2e5dc43a243e870c2c8758 | [] | no_license | Castigere/mekk | df30c8393ac6874640335053fdd6a4314679873d | b4cab7b61b6c788e577a0a04219658eef4bb01b1 | refs/heads/master | 2020-03-28T19:05:05.310763 | 2018-09-23T19:53:56 | 2018-09-23T19:53:56 | 148,942,701 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,372 | cpp | main.cpp | #include <iostream>
using namespace std;
class Animal {
private:
string name;
public:
Animal() {
cout << "Animal created." << endl;
}
// Copy constructor, can call !const methods
Animal(const Animal &other) : name(other.name) {
cout << "Animal created by copying." << endl;
}
~Animal() {
cout << "Destructor called." << endl;
}
void setName(string name) {
this->name = name;
}
void speak() const {
cout << "My name is: " << name << endl;
}
};
void createAnimals(int number) {
Animal *pAnimal = new Animal[number];
char c = 'a'; // char er en int som kan inkrementeres
for (int i = 0; i < number; i++, c++) {
string name(1, c);
pAnimal[i].setName(name);
pAnimal[i].speak();
};
delete[] pAnimal;
};
int main() {
createAnimals(26);
// int *pInt = new int;
// *pInt = 8;
// cout << *pInt << endl;
// delete pInt;
// Animal *pAnimal = new Animal[10]; // Creatubg array of objects
// pAnimal[0].setName("Even");
// pAnimal[9].setName("Preben");
// pAnimal[1].speak();
// pAnimal[9].speak();
// pAnimal->speak();
// delete[] pAnimal; // "[] Specifies you want to delete all objects in array allocated earlier"
// char *pMem = new char[1000];
// delete[] pMem;
return 0;
} |
f40f8c3c151e91b3367980f1939d5e13d92acd6f | f162f665645fdfcedf826b0a346e351aaeb8cde7 | /07/EPAM Титков 07-21+.cpp | cc6878314df494cc26641ccfef30688b44b87fd0 | [] | no_license | idtitkov/Introduction-to-Cpp | 536bdaf8bac3ad5e8b83344784a41e7419f77c9f | bdee9a89ce6a5a14ead2a15ae8554a010a38dd1a | refs/heads/master | 2020-04-30T11:51:40.816190 | 2019-04-08T23:38:13 | 2019-04-08T23:38:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,932 | cpp | EPAM Титков 07-21+.cpp | /**
*
* Титков Иван
* 21. *В массиве А(N,М) расположить строки в порядке возрастания их максимальных элементов.
*
*/
#include <iostream>
#include <iomanip>
#include <ctime>
using namespace std;
int main()
{
setlocale(LC_ALL, "ru");
const int N = 5; // Константа - количество строк массива.
const int M = 10; // Константа - длина строки массива.
int arr[N][M]; // Оъявление массива.
int maxNum; // Максимальный найденный элемент в масиве.
int maxNumRow; // Номер строки с найденным максимальным элементом.
int choice;
srand(time(NULL)); // Инициализация ГСЧ.
cout << "1) Сгенерировать двумерный массив случайных чисел." << endl
<< "2) Ввести двумерный массив вручную." << endl
<< "3) Выход." << endl
<< "Выберите вариант: ";
cin >> choice;
switch (choice)
{
case 1: // Заполнение массива случайными значениями от -99 до 99 и вывод массива на экран.
cout << "Первоначальный массив:" << endl;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
arr[i][j] = rand() % 198 - 99;
cout << setw(3) << arr[i][j] << ' ';
}
cout << endl;
}
cout << endl;
break;
case 2:
cout << endl << "Первоначальный массив:" << endl;
for (int i = 0; i < N; i++)
{
cout << "Введите строку " << i + 1 << ": ";
for (int j = 0; j < M; j++)
{
cin >> arr[i][j];
}
}
cout << endl;
break;
case 3:
system("cls");
cout << "До свидания!" << endl;
exit(0);
default:
exit(1);
}
// Просмотр строк массива и перемещение строки с максимальным элементом в конец массива.
// На каждой итерации уменьшается количество просматриваемых строк на 1, т.к. в последних
// строках уже будут нужные значения.
// int k; - индексы анализируемых строк.
for (int i, k = N - 1; k > 0; k--) // Перебираем N-1 строк т.к. последнняя окажется на своем месте.
{
maxNum = arr[0][0]; // На каждой итерации начинается поиск макс. элемента с начала,
for (i = 0; i <= k; i++) // за исключением обработанных строк.
{
for (int j = 0; j < M; j++)// Поиск максимального числа в текущем массиве.
{
if (arr[i][j] > maxNum)
{
maxNum = arr[i][j];
maxNumRow = i; // Сохранение номера строки с максимальным числом.
}
}
// Вывод на экран промежуточной информации для проверки/отладки.
//cout << "Найденный максимальный элемент в " << i << "-й строке " << maxNum << endl;
}
//cout << endl;
for (int j = 0; j < M; j++) // Обмен строки с макисмальным элементом с последней строкой.
{
swap(arr[k][j], arr[maxNumRow][j]);
}
}
// Вывод обработанного массива на экран.
cout << "Итоговый массив:" << endl;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
cout << setw(3) << arr[i][j] << ' ';
}
cout << endl;
}
cout << endl;
system("pause");
}
|
9584a429555e672b59d6201f891bf8648a49aa95 | 39fe085377f3c7327e82d92dcb38083d039d8447 | /core/sql/common/NAType.h | 35722f47274baeee07209ee9c9c79bcbf388b6b3 | [
"Apache-2.0"
] | permissive | naveenmahadevuni/incubator-trafodion | 0da8d4c7d13a47d3247f260b4e67618c0fae1539 | ed24b19436530b2c214e4bf73280bc8e3f419669 | refs/heads/master | 2021-01-22T04:40:52.402291 | 2015-07-16T00:02:50 | 2015-07-16T00:02:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,573 | h | NAType.h | /**********************************************************************
// @@@ START COPYRIGHT @@@
//
// (C) Copyright 1994-2015 Hewlett-Packard Development Company, L.P.
//
// 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.
//
// @@@ END COPYRIGHT @@@
**********************************************************************/
#ifndef NATYPE_H
#define NATYPE_H
/* -*-C++-*-
**************************************************************************
*
* File: NAType.h
* Description: The base class for all (abstract) data types
* Created: 4/27/94
* Language: C++
*
*
*
*
**************************************************************************
*/
#include "BaseTypes.h"
#include "Collections.h"
#include "NAStringDef.h"
#include "SQLTypeDefs.h"
#include "dfs2rec.h"
#include "charinfo.h"
#include "ComSmallDefs.h"
// forward ref for methods implemented in ../optimizer/SynthType.cpp
class ItemExpr;
#define ALIGN(offset, alignment) \
((offset > 0) ? (((offset - 1)/alignment) + 1) * alignment : offset)
// -----------------------------------------------------------------------
// contents of this file
// -----------------------------------------------------------------------
class NAType;
// ***********************************************************************
// Literals for the maximum and minimum data values for numeric data types
// with precision. These values are used to supply low and high values for
// keys in determining partition ranges etc.
// ***********************************************************************
#define recBin16sMax 077777
#define recBin16sMin 0100000
#define recBin16uMax 0177777
#define recBin16uMin 00
#define recBin32sMax 017777777777
#define recBin32sMin 020000000000
#define recBin32uMax 037777777777
#define recBin32uMin 00
#define recBin64sMax 0777777777777777777777LL
#define recBin64sMin 01000000000000000000000LL
#define recFloat32Min 037777777777
#define recFloat32Max 017777777777
#define recFloat64Min 01777777777777777777777LL
#define recFloat64Max 0777777777777777777777LL
// ***********************************************************************
//
// Enumerated lists for built-in data types that are supported.
//
// ***********************************************************************
enum NABuiltInTypeEnum
{
NA_BOOLEAN_TYPE
, NA_CHARACTER_TYPE
, NA_DATETIME_TYPE
, NA_INTERVAL_TYPE
, NA_NUMERIC_TYPE
, NA_UNKNOWN_TYPE
, NA_USER_SUPPLIED_TYPE
, NA_RECORD_TYPE
, NA_ROWSET_TYPE
, NA_LOB_TYPE
};
// ***********************************************************************
//
// Enumeration of different type synthesis methods that are supported.
// Each item in the list corresponds to some operation that is defined
// for the datatype.
//
// ***********************************************************************
enum NATypeSynthRuleEnum
{
SYNTH_RULE_UNION
, SYNTH_RULE_PASS_THRU_NUM
, SYNTH_RULE_ADD
, SYNTH_RULE_SUB
, SYNTH_RULE_MUL
, SYNTH_RULE_DIV
, SYNTH_RULE_EXP
, SYNTH_RULE_CONCAT
};
// ***********************************************************************
// Minimum and maximum constants
// ***********************************************************************
enum NATypeExtrema
{
MAX_NUMERIC_PRECISION = MAX_HARDWARE_SUPPORTED_SIGNED_NUMERIC_PRECISION
};
enum NATypeDefaultVals
{
DEFAULT_CHARACTER_LENGTH = 32
};
// ***********************************************************************
//
// NAType : An abstract data type (ADT)
//
// ***********************************************************************
class NAType : public NABasicObject
{
public:
// copy ctor
NAType (const NAType & rhs, NAMemory * h=0) ;
// ---------------------------------------------------------------------
// Constructor function (storage size and alignment needs to be
// specified for data field only, null indicator and variable len
// field are handled automatically)
// ---------------------------------------------------------------------
NAType (const NAString & adtName,
NABuiltInTypeEnum ev,
Lng32 dataStorageSize,
NABoolean nullable = FALSE,
Lng32 SQLnullHdrSize = 0,
NABoolean variableLength = FALSE,
Lng32 lengthHeaderSize = 0,
Lng32 dataAlignment = 1,
NAMemory * h=0
);
// ---------------------------------------------------------------------
// Methods for comparing if two ADT definitions are equal.
// ---------------------------------------------------------------------
virtual NABoolean operator==(const NAType& other) const;
// Identical as NAType::operator==() except null attribute is not compared.
virtual NABoolean equalIgnoreNull(const NAType& other) const;
// Checks NATypes to see if they are equal just like the operator==
// except for the SQLnullFlag_ flags. For the SQLnullFlag_ it
// checks to see if it's physical.
NABoolean equalPhysical(const NAType& other) const;
// ---------------------------------------------------------------------
// Are the two types compatible?
// ---------------------------------------------------------------------
virtual NABoolean isCompatible(const NAType& other, UInt32 * flags = NULL) const
{ return qualifier_ == other.qualifier_; }
// ---------------------------------------------------------------------
// Are the two types comparable (a more stringent test)?
// ---------------------------------------------------------------------
enum { EmitErrNever = FALSE, EmitErrAlways = TRUE, EmitErrIfAnyChar = 991 };
#ifndef CLI_SRL
virtual NABoolean isComparable(const NAType &other,
ItemExpr *parentOp,
Int32 emitErr = EmitErrAlways) const;
#endif
// ---------------------------------------------------------------------
// Can a conversion error occur when converting from this datatype
// to a given target datatype?
// ---------------------------------------------------------------------
virtual NABoolean errorsCanOccur(const NAType& target,
NABoolean lax=TRUE) const = 0;
// ---------------------------------------------------------------------
// Get the enum of the type.
// ---------------------------------------------------------------------
NABuiltInTypeEnum getTypeQualifier() const { return qualifier_; }
// ---------------------------------------------------------------------
// Get the textual description of the type.
// ---------------------------------------------------------------------
const NAString& getTypeName() const { return typeName_; }
void getTypeSQLnull(NAString& ns, NABoolean ignore = FALSE) const;
virtual NAString getTypeSQLname(NABoolean terse = FALSE) const;
// For data type like BYTEINT, getTypeName() returns "SMALLINT"
// and getDisplayDataType() returns "BYTEINT"
const NAString& getDisplayDataType() const { return displayDataType_; }
void setDisplayDataType(const NAString& dt) { displayDataType_ = dt; }
// ---------------------------------------------------------------------
// Get a simpler textual description of the type.
// ---------------------------------------------------------------------
virtual NAString getSimpleTypeName() const { return getTypeSQLname(); }
// ---------------------------------------------------------------------
// Get the filesystem datatype value (from DFS2REC) for this type.
// Used by expressions, filesystem and dp2.
// ---------------------------------------------------------------------
virtual short getFSDatatype() const;
virtual Lng32 getPrecision() const;
virtual Lng32 getMagnitude() const;
virtual Lng32 getScale() const;
// the expressions code overlays precision and max chars, ...
virtual Lng32 getPrecisionOrMaxNumChars() const;
// ...as well as scale and charset
virtual Lng32 getScaleOrCharset() const;
virtual CharInfo::CharSet getCharSet() const;
// { return CharInfo::UnknownCharSet; };
// The following method is redefined for the SQLMPDatetime and SQLInterval classes.
virtual NABoolean isSupportedType() const {return TRUE;};
virtual NABoolean isSkewBusterSupportedType() const;
// ---------------------------------------------------------------------
// The nominal size is number of BYTES required for storing the
// actual bit pattern that represents the data.
// The total size includes any overheads that may be associated
// for representing certain kinds of data, e.g., null values or
// variable length data (total size >= nominal size).
// ---------------------------------------------------------------------
Lng32 getNominalSize() const { return dataStorageSize_; }
void setNominalSize(Int32 newSize) { dataStorageSize_ = newSize; }
NABoolean isValid() const { return dataStorageSize_ > 0; }
void makeInvalid() { dataStorageSize_ = 0; }
virtual Lng32 getTotalSize() const;
virtual Lng32 getTotalAlignedSize() const;
// ---------------------------------------------------------------------
// Check if this ADT allows SQL null values.
// If physical nulls are not supported, then logical nulls are not either
// (if physicalNulls is False, then logicalNulls is ignored).
// ---------------------------------------------------------------------
enum SupportsSQLnull
{ ALLOWS_NULLS, NOT_NULL_DROPPABLE, NOT_NULL_NOT_DROPPABLE };
NABoolean supportsSQLnullLogical() const
{ return SQLnullFlag_ == ALLOWS_NULLS; }
NABoolean supportsSQLnullPhysical() const
{ return SQLnullFlag_ != NOT_NULL_NOT_DROPPABLE; }
NABoolean supportsSQLnull() const
{ return supportsSQLnullPhysical(); } // for historical reasons
void setNullable(NABoolean physicalNulls, NABoolean logicalNulls = TRUE);
void setNullable(const NAType &src)
{ setNullable(src.supportsSQLnullPhysical(), src.supportsSQLnullLogical()); }
// temporarily set SQLnullFlag_ to ALLOWS_NULLS
void setSQLnullFlag() { SQLnullFlag_ = ALLOWS_NULLS; }
// reset SQLnullFlag_ to NOT_NULL_NOT_DROPPABLE
void resetSQLnullFlag() { SQLnullFlag_ = NOT_NULL_NOT_DROPPABLE; }
Lng32 getSQLnullHdrSize() const { return SQLnullHdrSize_; }
void resetSQLnullHdrSize() { SQLnullHdrSize_= 0; }
// ---------------------------------------------------------------------
// Check if this ADT allows values to be of variable length.
// ---------------------------------------------------------------------
NABoolean isVaryingLen() const { return varLenFlag_; }
Lng32 getVarLenHdrSize() const { return lengthHdrSize_; }
// ---------------------------------------------------------------------
// Get the alignments, the total size of the prefix (null indicator +
// variable length field) including filler bytes, and the size of the
// type if it is an array element
// ---------------------------------------------------------------------
Lng32 getTotalAlignment() const { return totalAlignment_; }
Lng32 getDataAlignment() const { return dataAlignment_; }
Lng32 getPrefixSize() const;
Lng32 getPrefixSizeWithAlignment() const ;
Lng32 getArrayElementSize() const;
// ---------------------------------------------------------------------
// Methods that return the binary form of the minimum and the maximum
// representable values.
// ---------------------------------------------------------------------
virtual void minRepresentableValue(void*, Lng32*,
NAString ** stringLiteral = NULL,
CollHeap* h=0) const;
virtual void maxRepresentableValue(void*, Lng32*,
NAString ** stringLiteral = NULL,
CollHeap * h=0) const;
virtual double getMinValue() const { return 0; };
virtual double getMaxValue() const { return 0; };
// ---------------------------------------------------------------------
// create an SQL literal (in UTF-8) from a binary buffer
// returns whether it was able to create a valid SQL literal
// This assumes "buf" to be in the format of an already decoded
// key value. That's similar to SQL/ARK exploded format, except
// that there are no fillers for alignment, NULL indicator. Var
// len indicator and value appear adjacent to each other, unaligned.
// ---------------------------------------------------------------------
virtual NABoolean createSQLLiteral(const char * buf, // in
NAString *&sqlLiteral, // out
NABoolean &isNull, // out
CollHeap *h) const; // in/out
// compute the largest smaller value than v
virtual double computeLSV(double v) const
{ return (roundTripConversionToDouble())? v-1 : v; }
virtual NAString* convertToString(double v, NAMemory * h=0) const;
virtual NABoolean computeNextKeyValue(NAString &stringLiteral) const;
// ---------------------------------------------------------------------
// Method that returns the encoded form (in floating point) for a
// given value. This value will then be used by the optimizer
// for estimations and selectivity computation. NOTE: this is
// NOT the key encoding used in DP2 to access rows in key-sequenced
// tables.
// ---------------------------------------------------------------------
virtual double encode (void*) const { return -1; }
// --------------------------------------------------------------------
// Compute the length of the key encoding for this type.
//
// NOTE: don't confuse the encoding of types into floating point
// values (approximate, used for histogram statistics and other
// heuristical decisions in the optimizer) and the key encoding
// (an order-preserving, non-reducing encoding into an unsigned
// array of bytes).
// --------------------------------------------------------------------
virtual Lng32 getEncodedKeyLength() const;
// --------------------------------------------------------------------
// Methods that returns TRUE if encoding for comparison is needed.
// Datatypes are encoded as a string of chars so they could be
// compared using string comparison (memcmp). Used to compare keys
// and other places where the caller doesn't want to be concerned
// about the datatype.
// Note that this function has nothing to do with the 'encode'
// method.
// --------------------------------------------------------------------
virtual NABoolean isEncodingNeeded() const { return FALSE; }
// ---------------------------------------------------------------------
// A function for synthesizing a nullable type from this type.
// ---------------------------------------------------------------------
const NAType* synthesizeNullableType(NAMemory * h) const;
// enums for the 'flags' parameter to synthesizeType method.
enum SynthesizeTypeFlags
{
// indicates that the max precision of an exact numeric bi arith
// operation is to be limited to MAX_NUMERIC_PRECISION.
LIMIT_MAX_NUMERIC_PRECISION = 0x0001,
// indicates that special1 mode is on. Special handling of
// syntax, expressions is done in some cases.
// See other parts of code for what all is done in this case.
MODE_SPECIAL_1 = 0x0002,
// indicates that special2 mode is on. Special handling of
// syntax, expressions is done in some cases.
// See other parts of code for what all is done in this case.
MODE_SPECIAL_2 = 0x0004,
// result with scale is requested to be rounded.
ROUND_RESULT = 0x0008,
// if result of arith operation is actually rounded.
RESULT_ROUNDED = 0x0010,
// if the result of union synthesis should always be binary
MAKE_UNION_RESULT_BINARY = 0x0020,
// if the result of IfThenElse or Union synthesis should be a varchar
MAKE_RESULT_VARCHAR = 0x0040,
// indicates that special4 mode is on. Special handling of
// syntax, expressions is done in some cases.
// See other parts of code for what all is done in this case.
MODE_SPECIAL_4 = 0x0080
};
// ---------------------------------------------------------------------
// A virtual function for synthesizing the type of a binary operator.
// ---------------------------------------------------------------------
virtual const NAType* synthesizeType(enum NATypeSynthRuleEnum synthRule,
const NAType& operand1,
const NAType& operand2,
NAMemory * h,
UInt32 *flags = NULL) const;
// ---------------------------------------------------------------------
// A virtual function for synthesizing the type of a ternary operator.
// ---------------------------------------------------------------------
virtual const NAType* synthesizeTernary(enum NATypeSynthRuleEnum synthRule,
const NAType& operand1,
const NAType& operand2,
const NAType& operand3,
NAMemory * h=0) const;
// ---------------------------------------------------------------------
// The following table contains the order of precedence for the type
// synthesis rules. Precedence is listed from lowest to highest. For
// example, if a binary operator has operands of type SQLNumeric
// and SQLFloat, the result type will be computed by
// SQLFloat::synthesizeType, because SQLFloat has higher precedence.
// ---------------------------------------------------------------------
enum SynthesisPrecedence {
SYNTH_PREC_DEFAULT
, SYNTH_PREC_BIG_NUM
, SYNTH_PREC_FLOAT
, SYNTH_PREC_INTERVAL // > Numeric (ANSI 6.15, multiplication)
, SYNTH_PREC_DATETIME // > Interval (ANSI 6.14, addition)
};
virtual NAType::SynthesisPrecedence getSynthesisPrecedence() const
{
return SYNTH_PREC_DEFAULT;
}
//is this type numeric or non-numeric
virtual NABoolean isNumeric() const;
// -------------------------------------------------------------------------
// Operations on 'simple' type can usually be supported by the
// underlying hardware (like, smallint, long, etc).
// Operations on 'complex' type are done in software as they involve
// more complicated operations (like datetime, large decimal, etc).
// Used by expression generator to decide which of the two methods to
// use to generate code.
// -------------------------------------------------------------------------
virtual NABoolean isSimpleType() const {return TRUE;};
virtual NABoolean isComplexType() const {return FALSE;};
// --------------------------------------------------------------------
// If this datatype is supported externally only, then this function
// returns TRUE. External datatypes are the one that could be declared
// in an application, but they are not supported internally (that is,
// it cannot be used in a CREATE TABLE statement to create a column).
// An example is the ANSI VARCHAR datatype, which is a null terminated
// string and supported in programs only. Such datatype values are
// converted to an equivalent internal datatype when inputing the
// value into the executor. ANSI VARCHAR is converted to SQL VARCHAR
// (which is length bytes followed by data). Similarly, at output
// time, the internal datatype value is converted to the external
// datatype.
// ---------------------------------------------------------------------
virtual NABoolean isExternalType() const {return FALSE;};
//is this type a blob/clob
virtual NABoolean isLob() const {return FALSE;};
// returns the equivalent internal datatype
virtual NAType * equivalentType(NAMemory * h=0) const {return NULL;};
// --------------------------------------------------------------------
// If this is a software datatype like Large Decimal or Big Num, this
// routine returns TRUE. Currently (Jan '03) an exact numeric literal
// that is greater than 18 digits is not supported in both R2 And R 1.8.X.
// Internally we make these numeric values to be software datatypes
// (large decimal or big num)but that is only done for temporary results.
// User entered numeric values, either as literals or params or hostvars
// should not exceed 18 digits. Internally if a user defined variable is
// converted to these software datatypes, the optimizer converts it to
// its closest equivalent type. The routine closestEquivalentExternalType()
// returns this type. For example, if a parameter is coerced to either
// big num or large decimal, then the optimizer actually sets it to a
// SQLNumeric with maximum precision.
//
// --------------------------------------------------------------------
virtual NAType * closestEquivalentExternalType (NAMemory* heap=0) const
{return this->newCopy(heap);}
// ---------------------------------------------------------------------
// Print function for debugging
// ---------------------------------------------------------------------
virtual void print(FILE* ofd = stdout, const char* indent = DEFAULT_INDENT);
// ---------------------------------------------------------------------
// A method for generating the hash key.
// SQL builtin types should return getTypeSQLName()
// ---------------------------------------------------------------------
virtual NAString *getKey(NAMemory * h=0) const;
// ---------------------------------------------------------------------
// A pure virtual function to return a copy of the type.
// ---------------------------------------------------------------------
virtual NAType *newCopy(NAMemory * h=0) const = 0;
// Gets the length that a given data type would use in the display tool
virtual Lng32 getDisplayLength(Lng32 datatype,
Lng32 length,
Lng32 precision,
Lng32 scale,
Lng32 heading_len) const;
virtual Lng32 getDisplayLength() const;
// A helper function.
// This method returns a text representation of the datatype
// based on the datatype information input to this method/
static short convertTypeToText(char * text, /* OUTPUT */
Lng32 fs_datatype, // all other vars: INPUT
Lng32 length,
Lng32 precision,
Lng32 scale,
rec_datetime_field datetimestart,
rec_datetime_field datetimeend,
short datetimefractprec,
short intervalleadingprec,
short upshift,
short caseinsensitive,
CharInfo::CharSet charSet,
CharInfo::Collation collation,
const char * displaydatatype,
short displayCaseSpecific = 0);
short getMyTypeAsText(NAString * outputStr,
NABoolean addNullability = TRUE); // output
// used for query caching
Lng32 getSize() const;
Lng32 hashKey() const;
NABoolean amSafeToHash() const;
//
// used for skew buster. For SQLNumeric data type, we do not want to
// compute hash in FrequentValue objects, since 200.00 and 200.000 will have different
// hash values. Yet they are equal. Since hash values are used to determine the
// equal-ness of two FrequentValues, we cannot compute hash for SQLNumeric when the
// intended use of the hash is to store in FrequentValue objects.
//
NABoolean useHashInFrequentValue() const;
NABoolean useHashRepresentation() const;
virtual NABoolean roundTripConversionToDouble() const { return FALSE; };
protected:
// ---------------------------------------------------------------------
// Each data type has a characteristic size, expressed in bytes, for
// representing a value. It does not include any extra headers that
// may be required for indicating that a value is null or of a
// variable length.
// ---------------------------------------------------------------------
Lng32 dataStorageSize_;
// ---------------------------------------------------------------------
// A flag that indicates whether the ADT supports SQL null values.
// ---------------------------------------------------------------------
SupportsSQLnull SQLnullFlag_;
Lng32 SQLnullHdrSize_; // physical attribute
// ---------------------------------------------------------------------
// A flag that indicates that dataStorageSize_ is the maximum number of
// bytes of storage required for representing an instance of this type.
// The actual size of the storage used is stored together with each
// value instance.
// ---------------------------------------------------------------------
NABoolean varLenFlag_;
Lng32 lengthHdrSize_;
// ---------------------------------------------------------------------
// A number that indicates how the data needs to be aligned. The
// data alignment shows how the actual data needs to be aligned, the
// total alignment is the combination of the alignments of null
// indicator, var length, and data field. It has one of the values of
// 1, 2, 4, or 8. A value of 1 means the field needs no alignment.
// ---------------------------------------------------------------------
Lng32 totalAlignment_;
Lng32 dataAlignment_;
private:
NAType(); // default ctor, not implemented, not callable
// ---------------------------------------------------------------------
// Each ADT has a name.
// ---------------------------------------------------------------------
NAString typeName_;
// ---------------------------------------------------------------------
// The generic class to which the data type belongs.
// ---------------------------------------------------------------------
NABuiltInTypeEnum qualifier_;
// ---------------------------------------------------------------------
// For data type like BYTEINT which maps to SMALLINT
// ---------------------------------------------------------------------
NAString displayDataType_;
}; // class NAType
#endif /* NATYPE_H */
|
3dbf1e3bdd22228e24a8bb8ed84c09fb036be5eb | 7c688d303d65288a46da61b2b2f8aac23cc1610d | /test/mock_http_client.cpp | 84cfe5d8cbeeef83c33c21adcca9099275baeb67 | [
"MIT"
] | permissive | minecraft-linux/cll-telemetry | 5963e1508e31134f7fc894622ce8080fdb201639 | b31d77d3320e57f68e94f9d23071936e5831aa64 | refs/heads/master | 2021-06-02T17:16:16.969848 | 2020-04-10T18:11:50 | 2020-04-10T18:12:04 | 136,203,048 | 0 | 5 | MIT | 2019-08-26T19:51:40 | 2018-06-05T16:08:54 | C++ | UTF-8 | C++ | false | false | 752 | cpp | mock_http_client.cpp | #include <cll/http/mock_http_client.h>
#include <gtest/gtest.h>
using namespace cll::http;
TEST(MockHttpClientTest, BasicTest) {
MockHttpClient client;
HttpResponse resp = {200, {{"Header", "Value"}}, "This is an example request body"};
client.addMockedResponse("http://example.com/", resp);
auto req = client.createRequest();
req->setUrl("http://example.com/");
auto resp2 = req->send();
ASSERT_EQ(resp2.status, resp.status);
ASSERT_EQ(resp2.headers, resp.headers);
ASSERT_EQ(resp2.body, resp.body);
}
TEST(MockHttpClientTest, NotFoundTest) {
MockHttpClient client;
auto req = client.createRequest();
req->setUrl("http://example.com/");
auto resp = req->send();
ASSERT_EQ(resp.status, 404);
} |
a4d47cfa8ea81279873ad818c2092a93e609afc8 | 30e1dc84fe8c54d26ef4a1aff000a83af6f612be | /test/capi/capi_flexible_type.cxx | c47e255798ca80803f77f686bcf6cac5c7d4909b | [
"BSD-3-Clause"
] | permissive | Sitispeaks/turicreate | 0bda7c21ee97f5ae7dc09502f6a72abcb729536d | d42280b16cb466a608e7e723d8edfbe5977253b6 | refs/heads/main | 2023-05-19T17:55:21.938724 | 2021-06-14T17:53:17 | 2021-06-14T17:53:17 | 385,034,849 | 1 | 0 | BSD-3-Clause | 2021-07-11T19:23:21 | 2021-07-11T19:23:20 | null | UTF-8 | C++ | false | false | 1,629 | cxx | capi_flexible_type.cxx | /* Copyright © 2018 Apple Inc. All rights reserved.
*
* Use of this source code is governed by a BSD-3-clause license that can
* be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
*/
#define BOOST_TEST_MODULE capi_flexible_types
#include <boost/test/unit_test.hpp>
#include <core/util/test_macros.hpp>
#include <capi/TuriCreate.h>
#include <vector>
#include "capi_utils.hpp"
BOOST_AUTO_TEST_CASE(test_tc_ft_create_empty) {
tc_error* error = nullptr;
tc_flexible_type* ft = tc_ft_create_empty(&error);
CAPI_CHECK_ERROR(error);
TS_ASSERT(ft != nullptr);
TS_ASSERT(tc_ft_is_undefined(ft));
TS_ASSERT(!tc_ft_is_int64(ft));
}
BOOST_AUTO_TEST_CASE(test_flex_list_double) {
std::vector<double> v = {1, 2, 4.5, 9, 10000000};
tc_error* error = NULL;
tc_flex_list* fl = tc_flex_list_create(&error);
CAPI_CHECK_ERROR(error);
size_t pos = 0;
for (double t : v) {
tc_flexible_type* ft = tc_ft_create_from_double(t, &error);
CAPI_CHECK_ERROR(error);
size_t idx = tc_flex_list_add_element(fl, ft, &error);
CAPI_CHECK_ERROR(error);
TS_ASSERT_EQUALS(idx, pos);
++pos;
size_t actual_size = tc_flex_list_size(fl);
TS_ASSERT_EQUALS(pos, actual_size);
tc_release(ft);
}
// Go through and make sure things are equal
for (size_t i = 0; i < v.size(); ++i) {
tc_flexible_type* ft = tc_flex_list_extract_element(fl, i, &error);
CAPI_CHECK_ERROR(error);
TS_ASSERT(tc_ft_is_double(ft) != 0);
double val = tc_ft_double(ft, &error);
CAPI_CHECK_ERROR(error);
TS_ASSERT(v[i] == val);
tc_release(ft);
}
}
|
dffcfc6368ace32fd3a78ee18bc2db68486e6dd9 | 4eb4242f67eb54c601885461bac58b648d91d561 | /algorithm/poj/1698/code.cc | f47794a30204154ca3b2ca34ab27202792e7029e | [] | no_license | biebipan/coding | 630c873ecedc43a9a8698c0f51e26efb536dabd1 | 7709df7e979f2deb5401d835d0e3b119a7cd88d8 | refs/heads/master | 2022-01-06T18:52:00.969411 | 2018-07-18T04:30:02 | 2018-07-18T04:30:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,551 | cc | code.cc | // Copyright 2013 Jike Inc. All Rights Reserved.
// Author: Liqiang Guo(guoliqiang@jike.com)
// I just want to GH to hss~
// Date : 2013-11-10 22:28:15
// File : code.cc
// Brief :
#include "base/public/common_ojhead.h"
namespace NB {
/*
* Accepted 688K 719MS C++
* */
const int MAXN = 372;
int N = 0;
int flow[MAXN][MAXN];
int visited[MAXN];
int pre[MAXN];
int MaxFlow(int s, int t) {
int rs = 0;
while (true) {
memset(visited, 0, sizeof(visited));
memset(pre, -1, sizeof(pre));
std::queue<int> queue;
queue.push(s);
visited[s] = 1;
while (!queue.empty()) {
int cur = queue.front();
queue.pop();
if (cur == t) break;
for (int i = 0; i < N; i++) {
if (flow[cur][i] > 0 && visited[i] == 0) {
queue.push(i);
visited[i] = 1;
pre[i] = cur;
}
}
}
if (visited[t] == 0) break;
int min = INF;
for (int i = t; i != s; i = pre[i]) {
min = std::min(min, flow[pre[i]][i]);
}
for (int i = t; i != s; i = pre[i]) {
flow[pre[i]][i] -= min;
flow[i][pre[i]] += min;
}
rs += min;
}
return rs;
}
void Read() {
int k = 0;
int temp[9];
scanf("%d", &k);
getchar();
for (int i = 0; i < k; i++) {
memset(flow, 0, sizeof(flow));
int n = 0;
int maxw = 0;
int f = 0;
scanf("%d", &n);
getchar();
for (int j = 0; j < n; j++) {
for (int l = 0; l < 9; l++) {
scanf("%d", &(temp[l]));
}
getchar();
f += temp[7];
flow[0][j + 2] = temp[7]; // source --> film
for (int p = 0; p < temp[8]; p++) {
int offset = 2 + n;
for (int l = 0; l < 7; l++) {
if (temp[l] == 0) continue;
int idx = p * 7 + offset + l;
flow[j + 2][idx] = 1; // film -- > day
flow[idx][1] = 1; // day --> target
}
}
maxw = std::max(maxw, temp[8]);
}
N = 2 + n + 7 * maxw;
int flow = MaxFlow(0, 1);
if (flow == f) printf("Yes\n");
else printf("No\n");
}
}
} // namespace NB
namespace algorithm {
// TLE
const int MAXM = 15000;
const int MAXN = 500;
int N = 0;
struct Node {
int u;
int v;
int c;
int next;
} edge[MAXM];
int head[MAXN];
int visited[MAXN];
int pre[MAXN];
int num = 0;
int MaxFlow(int source, int target) {
int rs = 0;
while (true) {
memset(visited, 0, sizeof(visited));
memset(pre, 0, sizeof(pre));
std::queue<int> queue;
queue.push(source);
visited[source] = 1;
while (!queue.empty()) {
int t = queue.front();
if (t == target) break;
queue.pop();
for (int i = head[t]; i != -1; i = edge[i].next) {
if (edge[i].c > 0 && visited[edge[i].v] == 0) {
visited[edge[i].v] = 1;
queue.push(edge[i].v);
pre[edge[i].v] = t;
}
}
}
if (visited[target] == 0) break;
int min = INF;
for (int i = target; i != source; i = pre[i]) {
int t = pre[i];
for (int j = head[t]; j != -1; j = edge[j].next) {
if (edge[j].v == i) {
min = std::min(min, edge[j].c);
continue;
}
}
}
/*
std::cout << min << " :";
for (int i = target; i != source; i = pre[i]) {
std::cout << i << "<--";
}
std::cout << source << std::endl;
*/
for (int i = target; i != source; i = pre[i]) {
int t = pre[i];
for (int j = head[t]; j != -1; j = edge[j].next) {
if (edge[j].v == i) {
edge[j].c -= min;
continue;
}
}
for (int j = head[i]; j != -1; j = edge[j].next) {
if (edge[j].v == t) {
edge[j].c += min;
continue;
}
}
}
rs += min;
}
return rs;
}
void Add(int u, int v, int c) {
int idx = -1;
for (int i = head[u]; i != -1; i = edge[i].next) {
if (edge[i].v == v) idx = i;
}
if (idx != -1 && v != 1) {
// LOG(INFO) << idx << " " << u << " " << v << " " << edge[idx].u << " " << edge[idx].v;
edge[idx].c += c;
} else {
edge[num].u = u;
edge[num].v = v;
edge[num].c = c;
edge[num].next = head[u];
head[u] = num++;
}
idx = -1;
for (int i = head[v]; i != -1; i = edge[i].next) {
if (edge[i].v == u) idx = i;
}
if (idx == -1) {
edge[num].u = v;
edge[num].v = u;
edge[num].c = 0;
edge[num].next = head[v];
head[v] = num++;
}
}
void Read() {
int k = 0;
int temp[9];
scanf("%d", &k);
getchar();
for (int i = 0; i < k; i++) {
memset(edge, 0, sizeof(edge));
memset(head, -1, sizeof(head));
num = 0;
int n = 0;
int maxw = 0;
int f = 0;
scanf("%d", &n);
getchar();
for (int j = 0; j < n; j++) {
for (int l = 0; l < 9; l++) {
scanf("%d", &(temp[l]));
}
getchar();
f += temp[7];
Add(0, j + 2, temp[7]); // source --> film
for (int p = 0; p < temp[8]; p++) {
int offset = 2 + n;
for (int l = 0; l < 7; l++) {
if (temp[l] == 0) continue;
int idx = p * 7 + offset + l;
Add(j + 2, idx, 1); // film -- > day
Add(idx, 1, 1); // day --> target
}
}
maxw = std::max(maxw, temp[8]);
}
N = 2 + n + 7 * maxw;
int flow = MaxFlow(0, 1);
if (flow == f) printf("Yes\n");
else printf("No\n");
// LOG(INFO) << "max flow:" << flow;
// LOG(INFO) << "maxw :" << maxw << " N:" << N;
}
}
} // namespace algorithm
using namespace algorithm;
int main(int argc, char** argv) {
FROMFILE;
NB::Read();
return 0;
}
|
b6d42b28984324b0284251e8b44fe2000cce6abd | 0e5442e46e1e48118f0d3914de12e7a0b6a05e4d | /inc/Input_scene/Scene_data.hpp | fbf6bfdaad7dc37099fec6747d1004f5a19a3430 | [] | no_license | kyawakyawa/path_tracing | 5f7bf283c3e6665384b0ba8acca5d604184d7070 | 98a0b30f5b308af60afbb739e9a6ae45bcc439b5 | refs/heads/master | 2023-01-05T15:34:48.693435 | 2020-11-01T13:17:01 | 2020-11-01T13:17:01 | 110,186,886 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 22,764 | hpp | Scene_data.hpp | #pragma once
#include <cmath>
#include <vector>
#include "../Vec3/Vec3.hpp"
#include "../Color/FColor.hpp"
#include "../ext_libs/toml.h"//https://github.com/mayah/tinytoml
namespace Scene_data{
enum Transform_type {
TRANSLATE,
SCALE,
AXIS_ANGLE,
LOOK_AT
};
struct Transform{
Transform_type type = TRANSLATE;
Vec3 vec3[3] = { Vec3(0,0,0) , Vec3(0,0,0) ,Vec3(0,0,0) };
float f = 0.0;
Transform() = default;
Transform(const toml::Value& transform){
if(transform.type() != 7) {//テーブルじゃない
std::cerr << "error transform1" << std::endl;
return;
}
const toml::Value* ty = transform.find("type");
if(ty == nullptr || !ty->is<std::string>()) {
std::cerr << "error transform2" << std::endl;
//delete ty;
return;
}
if(ty->as<std::string>() == "axis-angle") {
const toml::Value* axi = transform.find("axis");
if(axi != nullptr && axi->is<toml::Array>()){
float ax[3] = {0.0 , 1.0 , 0.0};int p = 0;
for(const auto &a : axi->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(a.is<double>()) {
ax[p] = a.as<double>();
}
if(a.is<int>()) {
ax[p] = a.as<int>();
}
p++;
}
vec3[0] = Vec3(ax[0],ax[1],ax[2]);
}
//delete axi;
const toml::Value* ang = transform.find("angle");
if(ang != nullptr && ang->is<double>()) {
f = ang->as<double>();
}
if(ang != nullptr && ang->is<int>()) {
f = ang->as<int>();
}
type = AXIS_ANGLE;
//delete ang;
}
if(ty->as<std::string>() == "scale") {
const toml::Value* vec = transform.find("vector");
if(vec != nullptr && vec->is<toml::Array>()){
float ve[3] = {0.0 , 1.0 , 0.0};int p = 0;
for(const auto &v : vec->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
vec3[0] = Vec3(ve[0],ve[1],ve[2]);
}
type = SCALE;
//delete vec;
}
if(ty->as<std::string>() == "translate") {
const toml::Value* vec = transform.find("vector");
if(vec != nullptr && vec->is<toml::Array>()){
float ve[3] = {0.0 , 1.0 , 0.0};int p = 0;
for(const auto &v : vec->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
vec3[0] = Vec3(ve[0],ve[1],ve[2]);
}
//delete vec;
type = TRANSLATE;
}
if(ty->as<std::string>() == "look-at") {
const toml::Value* vec_o = transform.find("origin");
if(vec_o != nullptr && vec_o->is<toml::Array>()){
float ve[3] = {0.0 , 1.0 , 0.0};int p = 0;
for(const auto &v : vec_o->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
vec3[0] = Vec3(ve[0],ve[1],ve[2]);
}
//delete vec_o;
const toml::Value* vec_ta = transform.find("target");
if(vec_ta != nullptr && vec_ta->is<toml::Array>()){
float ve[3] = {0.0 , 1.0 , 0.0};int p = 0;
for(const auto &v : vec_ta->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
vec3[1] = Vec3(ve[0],ve[1],ve[2]);
}
//delete vec_ta;
const toml::Value* vec_u = transform.find("up");
if(vec_u != nullptr && vec_u->is<toml::Array>()){
float ve[3] = {0.0 , 1.0 , 0.0};int p = 0;
for(const auto &v : vec_u->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
vec3[2] = Vec3(ve[0],ve[1],ve[2]);
}
//delete vec_u;
type = LOOK_AT;
}
//delete ty;
}
};
enum Mesh_type{
SPHERE,
TIRANGLE,
OBJ
};
struct Mesh {
Mesh_type type = SPHERE;
std::string name = "";
float radius = 0;
std::string path = "";
std::string normal = "strict";
Mesh() = default;
Mesh(const toml::Value &mesh) {
if(mesh.type() != 7) {//テーブルじゃない
std::cerr << "error mesh" << std::endl;
return;
}
const toml::Value* na = mesh.find("name");
if(na == nullptr || !na->is<std::string>()) {
std::cerr << "error mesh" << std::endl;
//delete na;
return;
}
name = na->as<std::string>();
//delete na;
const toml::Value* ty = mesh.find("type");
if(ty == nullptr || !ty->is<std::string>()) {
std::cerr << "error mesh" << std::endl;
//delete ty;
return;
}
if(ty->as<std::string>() == "sphere") {
const toml::Value* rad = mesh.find("radius");
if(rad != nullptr && rad->is<double>()){
radius = rad->as<double>();
}
if(rad != nullptr && rad->is<int>()){
radius = rad->as<int>();
}
type = SPHERE;
//delete rad;
type = SPHERE;
}
if(ty->as<std::string>() == "triangle") {
type = TIRANGLE;
}
if(ty->as<std::string>() == "obj") {
const toml::Value* pt = mesh.find("path");
if(pt != nullptr && pt->is<std::string>()) {
path = pt->as<std::string>();
}
//delete pt;
const toml::Value* no = mesh.find("normal");
if(no != nullptr && no->is<std::string>()) {
normal = no->as<std::string>();
}
//delete no;
type = OBJ;
}
//delete ty;
}
};
enum Material_type{
LAMBERT,
PHONG,
};
struct Material {
Material_type type = LAMBERT;
std::string name = "";
FColor albedo = FColor(0.0,0.0,0.0);
FColor reflectance = FColor(0,0,0);
float alpha = 1;
FColor emission = FColor(0,0,0);
Material() = default;
Material(const toml::Value& material) {
if(material.type() != 7){//テーブルじゃない
std::cerr << "error material" << std::endl;
}
const toml::Value* na = material.find("name");
if(na == nullptr || !na->is<std::string>()) {
std::cerr << "error material" << std::endl;
//delete na;
return;
}
name = na->as<std::string>();
//delete na;
const toml::Value* ty = material.find("type");
if(ty == nullptr || !ty->is<std::string>()) {
std::cerr << "error material" << std::endl;
//delete ty;
return;
}
if(ty->as<std::string>() == "lambert"){
const toml::Value* vec_a = material.find("albedo");
if(vec_a != nullptr && vec_a->is<toml::Array>()){
float ve[3] = {0.0 , 0.0 , 0.0};int p = 0;
for(const auto &v : vec_a->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
albedo = FColor(ve[0],ve[1],ve[2]);
}
//delete vec_a;
const toml::Value* vec_e = material.find("emission");
if(vec_e != nullptr && vec_e->is<toml::Array>()){
float ve[3] = {0.0 , 0.0 , 0.0};int p = 0;
for(const auto &v : vec_e->as<toml::Array>()) {
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
emission = FColor(ve[0],ve[1],ve[2]);
}
//delete vec_e;
type = LAMBERT;
}
if(ty->as<std::string>() == "phong"){
const toml::Value* vec_r = material.find("reflectance");
if(vec_r != nullptr && vec_r->is<toml::Array>()){
float ve[3] = {0.0 , 0.0 , 0.0};int p = 0;
for(const auto &v : vec_r->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}
if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
reflectance = FColor(ve[0],ve[1],ve[2]);
}
const toml::Value* al = material.find("alpha");
if(al != nullptr && al->is<double>()) {
alpha = al->as<double>();
}
if(al != nullptr && al->is<int>()) {
alpha = al->as<int>();
}
//delete vec_r;
type = PHONG;
}
//delete ty;
}
};
enum Camera_type {
IDEAL_PINHOLE,
PINHOLE,
THIN_LENS
};
struct Camera {
Camera_type type = IDEAL_PINHOLE;
float fov = 30;
float focus_distance = 100;
float f_number = 1.8;
std::vector<Transform> transform;
Camera() {
//Transformのデフォルトを入力;
transform.push_back(Transform());
}
Camera(const toml::Value& camera) :Camera(){
if(camera.type() != 7) {//テーブルじゃない
std::cerr << "error camera" << std::endl;
return;
}
const toml::Value* ty = camera.find("type");
if(ty == nullptr || !ty->is<std::string>()) {
std::cerr << "error camera" << std::endl;
//delete ty;
return;
}
if(ty->as<std::string>() == "ideal-pinhole"){
const toml::Value* fo = camera.find("fov");
if(fo != nullptr && fo->is<double>()){
fov = fo->as<double>();
}
if(fo != nullptr && fo->is<int>()){
fov = fo->as<int>();
}
//delete fo;
/*const toml::Value* trans = camera.find("transform");
if(trans != nullptr && trans->is<toml::Array>()) {
transform.clear();
for(const auto &tran : trans->as<toml::Array>()) {
transform.push_back(Transform(tran));
}
}*/
type = IDEAL_PINHOLE;
//delete trans;
}
if(ty->as<std::string>() == "thin-lens") {
const toml::Value* fo = camera.find("fov");
if(fo != nullptr && fo->is<double>()){
fov = fo->as<double>();
}
if(fo != nullptr && fo->is<int>()){
fov = fo->as<int>();
}
const toml::Value* focus_distanc = camera.find("focus_distance");
if(focus_distanc != nullptr && focus_distanc->is<double>()){
focus_distance = focus_distanc->as<double>();
}
if(focus_distanc != nullptr && focus_distanc->is<int>()){
focus_distance = focus_distanc->as<int>();
}
const toml::Value* f_numbe = camera.find("f_number");
if(f_numbe != nullptr && f_numbe->is<double>()) {
f_number = f_numbe->as<double>();
}
if(f_numbe != nullptr && f_numbe->is<int>()) {
f_number = f_numbe->as<int>();
}
type = THIN_LENS;
}
const toml::Value* trans = camera.find("transform");
if(trans != nullptr && trans->is<toml::Array>()) {
transform.clear();
for(const auto &tran : trans->as<toml::Array>()) {
transform.push_back(Transform(tran));
}
}
//delete ty;
}
};
struct Object{
std::string name = "";
std::string mesh = "";
std::string material = "";
std::vector<Transform> transform;
Object() {
}
Object(const toml::Value& object) : Object() {
if(object.type() != 7) {//デーブルじゃない
std::cerr << "error object " << std::endl;
return;
}
const toml::Value* na = object.find("name");
if(na != nullptr && na->is<std::string>()){
name = na->as<std::string>();
}
//delete na;
const toml::Value* me = object.find("mesh");
if(me == nullptr || !me->is<std::string>()){
std::cerr << "error object" << std::endl;
//delete me;
return;
}
mesh = me->as<std::string>();
//delete me;
const toml::Value* ma = object.find("material");
if(ma != nullptr && ma->is<std::string>()) {
material = ma->as<std::string>();
}
//delete ma;
const toml::Value* trans = object.find("transform");
if(trans != nullptr && trans->is<toml::Array>()) {
for(const auto &tran : trans->as<toml::Array>()) {
transform.push_back(Transform(tran));
}
}
//delete trans;
}
};
enum Light_type {
AREA,
DIRECTIONAL,
POINT
};
struct Light {
Light_type type = AREA;
FColor emission = FColor(0,0,0);
std::string object = "";
Light() = default;
Light(const toml::Value& light) {
if(light.type() != 7) {//デーブルじゃない
std::cerr << "error light" << std::endl;
return;
}
const toml::Value* vec_e = light.find("emission");
if(vec_e == nullptr || !vec_e->is<toml::Array>()){
std::cerr << "error light" << std::endl;
//delete vec_e;
return ;
}
float ve[3] = {0.0 , 0.0 , 0.0};int p = 0;
for(const auto &v : vec_e->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}else if(v.is<int>()) {
ve[p] = v.as<int>();
}else{
std::cerr << "error light" << std::endl;
//delete vec_e;
return;
}
p++;
}
emission = FColor(ve[0],ve[1],ve[2]);
//delete vec_e;
const toml::Value* ty = light.find("type");
if(ty == nullptr || !ty->is<std::string>()){
std::cerr << "error light" << std::endl;
//delete ty;
return;
}
if(ty->as<std::string>() == "area") {
const toml::Value* ob = light.find("object");
if(ob == nullptr || !ob->is<std::string>()){
std::cerr << "error area light" << std::endl;
//delete ty;
//delete ob;
return;
}
object = ob->as<std::string>();
type = AREA;
}
//delete ty;
}
};
enum Sky_type {
UNIFORM,
IBL
};
struct Sky {
Sky_type type = UNIFORM;
FColor color = FColor(0.75,0.75,0.75);
std::string path = "";
float theta_offset = 0;
float phi_offset = 0;
Sky() = default;
Sky(const toml::Value& sky) {
if(sky.type() != 7) {//デーブルじゃない
std::cerr << "error light" << std::endl;
return;
}
const toml::Value* ty = sky.find("type");
if(ty == nullptr || !ty->is<std::string>()){
std::cerr << "error light" << std::endl;
//delete ty;
return;
}
if(ty->as<std::string>() == "uniform") {
const toml::Value* vec_c = sky.find("color");
if(vec_c == nullptr || !vec_c->is<toml::Array>()){
std::cerr << "error uniform sky" << std::endl;
//delete vec_c;
//delete ty;
return ;
}
float ve[3] = {0.0 , 0.0 , 0.0};int p = 0;
for(const auto &v : vec_c->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}else if(v.is<int>()) {
ve[p] = v.as<int>();
}else{
std::cerr << "error uniform sky" << std::endl;
//delete vec_c;
//delete ty;
return;
}
p++;
}
color = FColor(ve[0],ve[1],ve[2]);
type = UNIFORM;
//delete vec_c;
}
if(ty->as<std::string>() == "ibl") {
const toml::Value* pt = sky.find("path");
if(pt == nullptr || !pt->is<std::string>()) {
std::cerr << "error ibl sky" << std::endl;
//delete pt;
//delete ty;
return;
}
path = pt->as<std::string>();
//delete pt;
const toml::Value* to = sky.find("theta-offset");
if(to != nullptr && to->is<double>()) {
theta_offset = to->as<double>();
}
if(to != nullptr && to->is<int>()) {
theta_offset = to->as<int>();
}
//delete to;
const toml::Value* po = sky.find("phi-offset");
if(po != nullptr && po->is<double>()) {
phi_offset = po->as<double>();
}
if(po != nullptr && po->is<int>()) {
phi_offset = po->as<int>();
}
//delete po;
type = IBL;
}
//delete ty;
}
};
struct Film {
float resolution[2] = {480,480};
std::string output = "ppm";
float gamma = 2.2;
FColor sensitivity = FColor(1.0,1.0,1.0);
Film() = default;
Film(const toml::Value& film) {
if(film.type() != 7) {//デーブルじゃない
std::cerr << "error film " << std::endl;
return;
}
const toml::Value* re = film.find("resolution");
if(re == nullptr || !re->is<toml::Array>()) {
std::cerr << "error film" << std::endl;
//delete re;
return ;
}
{
int p = 0;
for(const auto &v : re->as<toml::Array>()) {
if(p >= 2) {
break;
}
if(v.is<double>()) {
resolution[p] = v.as<double>();
}else if(v.is<int>()) {
resolution[p] = v.as<int>();
}else{
std::cerr << "error film" << std::endl;
//delete re;
return;
}
p++;
}
//delete re;
if(p < 2) {
std::cerr << "error film" << std::endl;
return;
}
}
const toml::Value* ou = film.find("output");
if(ou == nullptr || !ou->is<std::string>()) {
std::cerr << "error film" << std::endl;
//delete ou;
return;
}
output = ou->as<std::string>();
const toml::Value* ga = film.find("gamma");
if(ga != nullptr && ga->is<double>()) {
gamma = ga->as<double>();
}
if(ga != nullptr && ga->is<int>()) {
gamma = ga->as<int>();
}
//delete ga;
const toml::Value* vec_s = film.find("sensitivity");
if(vec_s != nullptr || vec_s->is<toml::Array>()){
float ve[3] = {1.0 , 1.0 , 1.0};int p = 0;
for(const auto &v : vec_s->as<toml::Array>()) {
if(p >= 3) {
break;
}
if(v.is<double>()) {
ve[p] = v.as<double>();
}else if(v.is<int>()) {
ve[p] = v.as<int>();
}
p++;
}
sensitivity = FColor(ve[0],ve[1],ve[2]);
}
//delete vec_s;
}
};
struct Renderer {
int samples = 64;
int depth = 4;
int depth_limit = 8;
bool no_direct_emitter = false;
int threads = 8;
std::string integrator = "pt";
Renderer() = default;
Renderer(const toml::Value& renderer) {
if(renderer.type() != 7) {//デーブルじゃない
std::cerr << "error renderer " << std::endl;
return;
}
const toml::Value* sa = renderer.find("samples");
if(sa == nullptr || !sa->is<int>()) {
std::cerr << "error renderer" << std::endl;
//delete sa;
return;
}
samples = sa->as<int>();
//delete sa;
const toml::Value* de = renderer.find("depth");
if(de != nullptr && de->is<int>()) {
depth = de->as<int> ();
}
//delete de;
const toml::Value* dl = renderer.find("depth-limit");
if(dl != nullptr && dl->is<int>()) {
depth_limit = dl->as<int> ();
}
//delete dl;
const toml::Value* nd = renderer.find("no-direct-emitter");
if(nd != nullptr && nd->is<bool>()) {
no_direct_emitter = nd->as<bool> ();
}
//delete nd;
const toml::Value* th = renderer.find("threads");
if(th != nullptr && th->is<int>()) {
threads = th->as<int> ();
}
//delete th;
const toml::Value* it = renderer.find("integrator");
if(it != nullptr && it->is<std::string>()) {
integrator = it->as<std::string> ();
}
//delete it;
}
};
struct Root {
Renderer renderer;
Sky sky;
Film film;
Camera camera;
std::vector<Light> light;
std::vector<Object> object;
std::vector<Material> material;
std::vector<Mesh> mesh;
Root() = default;
Root(const toml::Value& root) {
const toml::Value* re = root.find("renderer");
if(re == nullptr){
std::cerr << "error renderer" << std::endl;
return;
}
renderer = Renderer(*re);
//delete re;
const toml::Value* sk = root.find("sky");
if(sk == nullptr){
std::cerr << "error sky" << std::endl;
return;
}
sky = Sky(*sk);
//delete sk;
const toml::Value* fi = root.find("film");
if(fi == nullptr){
std::cerr << "error film" << std::endl;
return;
}
film = Film(*fi);
//delete fi;
const toml::Value* ca =root.find("camera");
if(ca == nullptr){
std::cerr << "error camera" << std::endl;
return;
}
camera = Camera(*ca);
//delete ca;
const toml::Value* li = root.find("light");
if(li != nullptr && li->is<toml::Array>()) {
for(const auto & l : li->as<toml::Array>()) {
light.push_back(Light(l));
}
}
//delete li;
const toml::Value* ob = root.find("object");
if(ob != nullptr && ob->is<toml::Array>()) {
for(const auto & o : ob->as<toml::Array>()) {
object.push_back(Object(o));
}
}
//delete ob;
const toml::Value* ma = root.find("material");
if(ma != nullptr && ma->is<toml::Array>()) {
for(const auto &m : ma->as<toml::Array>()) {
material.push_back(Material(m));
}
}
//delete ma;
const toml::Value* me = root.find("mesh");
if(me != nullptr && me->is<toml::Array>()) {
for(const auto & m : me->as<toml::Array>()) {
mesh.push_back(Mesh(m));
}
}
//delete me;
}
void out() {
std::cout << "[renderer]\n" << std::endl;
std::cout << renderer.samples << std::endl;
std::cout << renderer.depth << std::endl;
std::cout << renderer.depth_limit << std::endl;
std::cout << renderer.no_direct_emitter << std::endl;
std::cout << renderer.threads << std::endl;
std::cout << renderer.integrator << "\n\n" << std::endl;
std::cout << "[sky]\n" << std::endl;
std::cout << sky.type << std::endl;
std::cout << sky.color << std::endl;
std::cout << sky.path << std::endl;
std::cout << sky.theta_offset << std::endl;
std::cout << sky.phi_offset << "\n\n" << std::endl;
std::cout << "[film]\n" << std::endl;
std::cout << film.resolution[0] << " " << film.resolution[1] << std::endl;
std::cout << film.output << std::endl;
std::cout << film.gamma << std::endl;
std::cout << film.sensitivity << "\n\n" << std::endl;
std::cout << "[camera]\n" << std::endl;
std::cout << camera.type << std::endl;
std::cout << camera.fov << std::endl;
for(const auto &transform : camera.transform){
std::cout << transform.type << std::endl;
for(int i = 0;i < 3;i++){
std::cout << transform.vec3[i] << std::endl;
}
std::cout << transform.f << std::endl;
}
std::cout << "\n\n" << std::endl;
std::cout << "[[light]]\n" << std::endl;
for(const auto &li : light){
std::cout << li.emission << std::endl;
std::cout << li.type << std::endl;
std::cout << li.object << std::endl;
}
std::cout << "\n\n" << std::endl;
std::cout << "[[object]]\n" << std::endl;
for(const auto &ob : object){
std::cout << ob.name << std::endl;
std::cout << ob.mesh << std::endl;
std::cout << ob.material << std::endl;
for(const auto &transform : ob.transform){
std::cout << transform.type << std::endl;
for(int i = 0;i < 3;i++){
std::cout << transform.vec3[i] << std::endl;
}
std::cout << transform.f << std::endl;
}
}
std::cout << "\n\n" << std::endl;
std::cout << "[[material]]\n" << std::endl;
for(const auto &ma : material){
std::cout << ma.name<< std::endl;
std::cout << ma.type << std::endl;
std::cout << ma.albedo<< std::endl;
std::cout << ma.reflectance << std::endl;
std::cout << ma.alpha << std::endl;
std::cout << ma.emission << std::endl;
}
std::cout << "\n\n" << std::endl;
std::cout << "[[mesh]]\n" << std::endl;
for(const auto &me : mesh){
std::cout << me.name<< std::endl;
std::cout << me.type << std::endl;
std::cout << me.radius << std::endl;
std::cout << me.path << std::endl;
std::cout << me.normal << std::endl;
}
}
};
}
|
853fc256100a61a1ba6746a32c46dccd4ee5f896 | 102beccb4a386876dfeaea493209537c9a0db742 | /RexLogicModule/Avatar/Avatar.cpp | dbb643d98f8b1c3134905090c51c4a9fb6181bfc | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | Chiru/naali | cc4150241d37849dde1b9a1df983e41a53bfdab1 | b0fb756f6802ac09a7cd9733e24e4db37d5c1b7e | refs/heads/master | 2020-12-25T05:03:47.606650 | 2010-09-16T14:08:42 | 2010-09-17T08:34:19 | 1,290,932 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 31,579 | cpp | Avatar.cpp | /**
* For conditions of distribution and use, see copyright notice in license.txt
*
* @file Avatar.cpp
* @brief Logic handler for avatar entities.
*/
#include "StableHeaders.h"
#include "Avatar/Avatar.h"
#include "Avatar/AvatarAppearance.h"
#include "Avatar/AvatarEditor.h"
#include "RexLogicModule.h"
#include "EntityComponent/EC_OpenSimAvatar.h"
#include "EntityComponent/EC_NetworkPosition.h"
#include "EntityComponent/EC_AvatarAppearance.h"
#include "EntityComponent/EC_Controllable.h"
#include "EntityComponent/EC_HoveringWidget.h"
#include "SceneManager.h"
#include "SceneEvents.h"
#include "EventManager.h"
#include "WorldStream.h"
#include "RexNetworkUtils.h"
#include "GenericMessageUtils.h"
#include "NetworkEvents.h"
#include "EC_OgreMesh.h"
#include "EC_OgrePlaceable.h"
#include "EC_OgreMovableTextOverlay.h"
#include "EC_OgreAnimationController.h"
#include "EC_HoveringText.h"
#include "EC_OpenSimPresence.h"
#include "EC_SoundListener.h"
#include <QPushButton>
namespace RexLogic
{
Avatar::Avatar(RexLogicModule *owner) : avatar_appearance_(owner), owner_(owner)
{
avatar_states_[RexUUID("6ed24bd8-91aa-4b12-ccc7-c97c857ab4e0")] = EC_OpenSimAvatar::Walk;
avatar_states_[RexUUID("47f5f6fb-22e5-ae44-f871-73aaaf4a6022")] = EC_OpenSimAvatar::Walk;
avatar_states_[RexUUID("2408fe9e-df1d-1d7d-f4ff-1384fa7b350f")] = EC_OpenSimAvatar::Stand;
avatar_states_[RexUUID("aec4610c-757f-bc4e-c092-c6e9caf18daf")] = EC_OpenSimAvatar::Fly;
avatar_states_[RexUUID("1a5fe8ac-a804-8a5d-7cbd-56bd83184568")] = EC_OpenSimAvatar::Sit;
avatar_states_[RexUUID("1c7600d6-661f-b87b-efe2-d7421eb93c86")] = EC_OpenSimAvatar::Sit;
avatar_states_[RexUUID("4ae8016b-31b9-03bb-c401-b1ea941db41d")] = EC_OpenSimAvatar::Hover;
avatar_states_[RexUUID("20f063ea-8306-2562-0b07-5c853b37b31e")] = EC_OpenSimAvatar::Hover;
avatar_states_[RexUUID("62c5de58-cb33-5743-3d07-9e4cd4352864")] = EC_OpenSimAvatar::Hover;
}
Avatar::~Avatar()
{
}
Scene::EntityPtr Avatar::GetOrCreateAvatarEntity(entity_id_t entityid, const RexUUID &fullid, bool *existing)
{
// Make sure scene exists
Scene::ScenePtr scene = owner_->GetCurrentActiveScene();
if (!scene)
return Scene::EntityPtr();
Scene::EntityPtr entity = owner_->GetAvatarEntity(entityid);
if (entity)
{
*existing = true;
return entity;
}
*existing = false;
entity = CreateNewAvatarEntity(entityid);
assert(entity.get());
if (!entity)
return entity;
owner_->RegisterFullId(fullid,entityid);
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
presence->localId = entityid; ///\note In current design it holds that localid == entityid, but I'm not sure if this will always be so?
presence->agentId = fullid;
// If we do have a pending appearance, apply it here
if (pending_appearances_.find(fullid) != pending_appearances_.end())
{
std::string appearance = pending_appearances_[fullid];
pending_appearances_.erase(pending_appearances_.find(fullid));
EC_OpenSimAvatar* avatar = entity->GetComponent<EC_OpenSimAvatar>().get();
avatar->SetAppearanceAddress(appearance,false);
avatar_appearance_.DownloadAppearance(entity);
RexLogicModule::LogDebug("Used pending appearance " + appearance + " for new avatar");
}
return entity;
}
Scene::EntityPtr Avatar::CreateNewAvatarEntity(entity_id_t entityid)
{
Scene::ScenePtr scene = owner_->GetCurrentActiveScene();
if (!scene || !owner_->GetFramework()->GetComponentManager()->CanCreate(OgreRenderer::EC_OgrePlaceable::TypeNameStatic()))
return Scene::EntityPtr();
QStringList defaultcomponents;
defaultcomponents.append(EC_OpenSimPresence::TypeNameStatic());
defaultcomponents.append(EC_OpenSimAvatar::TypeNameStatic());
defaultcomponents.append(EC_NetworkPosition::TypeNameStatic());
defaultcomponents.append(EC_AvatarAppearance::TypeNameStatic());
defaultcomponents.append(OgreRenderer::EC_OgrePlaceable::TypeNameStatic());
//defaultcomponents.push_back(EC_HoveringText::TypeNameStatic());
defaultcomponents.append(EC_HoveringWidget::TypeNameStatic());
defaultcomponents.append(OgreRenderer::EC_OgreMesh::TypeNameStatic());
defaultcomponents.append(OgreRenderer::EC_OgreAnimationController::TypeNameStatic());
// Note: we assume the avatar is created because of a message from network
Scene::EntityPtr entity = scene->CreateEntity(entityid, defaultcomponents);
scene->EmitEntityCreated(entity, AttributeChange::Network);
Foundation::ComponentPtr placeable = entity->GetComponent(OgreRenderer::EC_OgrePlaceable::TypeNameStatic());
if (placeable)
{
//CreateNameOverlay(placeable, entityid);
//ShowAvatarNameOverlay(entityid);
CreateWidgetOverlay(placeable, entityid);
CreateAvatarMesh(entityid);
}
return entity;
}
bool Avatar::HandleOSNE_ObjectUpdate(ProtocolUtilities::NetworkEventInboundData* data)
{
ProtocolUtilities::NetInMessage &msg = *data->message;
msg.ResetReading();
uint64_t regionhandle = msg.ReadU64();
msg.SkipToNextVariable(); ///\todo Unhandled inbound variable 'TimeDilation'.U16
// Variable block: Object Data
size_t instance_count = msg.ReadCurrentBlockInstanceCount();
for(size_t i = 0; i < instance_count; ++i)
{
uint32_t localid = msg.ReadU32();
msg.SkipToNextVariable(); ///\todo Unhandled inbound variable 'State' U8
RexUUID fullid = msg.ReadUUID();
msg.SkipToNextVariable(); ///\todo Unhandled inbound variable 'CRC' U#"
uint8_t pcode = msg.ReadU8();
bool existing_avatar = false;
Scene::EntityPtr entity = GetOrCreateAvatarEntity(localid, fullid, &existing_avatar);
if (!entity)
return false;
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
EC_NetworkPosition* netpos = entity->GetComponent<EC_NetworkPosition>().get();
presence->regionHandle = regionhandle;
// Get position from objectdata
msg.SkipToFirstVariableByName("ObjectData");
size_t bytes_read = 0;
const uint8_t *objectdatabytes = msg.ReadBuffer(&bytes_read);
if (bytes_read >= 28)
{
// The data contents:
// ofs 16 - pos xyz - 3 x float (3x4 bytes)
netpos->position_ = *reinterpret_cast<const Vector3df*>(&objectdatabytes[16]);
netpos->Updated();
}
msg.SkipToFirstVariableByName("ParentID");
presence->parentId = msg.ReadU32();
msg.SkipToFirstVariableByName("NameValue");
QString namevalue = QString::fromUtf8(msg.ReadString().c_str());
NameValueMap map = ParseNameValueMap(namevalue.toStdString());
presence->SetFirstName(map["FirstName"]);
presence->SetLastName(map["LastName"]);
///@note If using reX auth map["RexAuth"] contains the username and authentication address.
// Hide own name overlay
EC_HoveringWidget *overlay= entity->GetComponent<EC_HoveringWidget>().get();
if(overlay)
{
overlay->SetText(presence->GetFullName().c_str());
if (presence->agentId == owner_->GetServerConnection()->GetInfo().agentID)
overlay->SetDisabled(true);
}
// If the server sent an ObjectUpdate on a prim that is actually the client's avatar, and if the Entity that
// corresponds to this prim doesn't yet have a Controllable component, add it to the Entity.
// This also causes a EVENT_CONTROLLABLE_ENTITY to be passed which will register this Entity as the currently
// controlled avatar entity. -jj.
///\todo Perhaps this logic could be done beforehand when creating the avatar Entity instead of doing it here? -jj.
if (presence->agentId == owner_->GetServerConnection()->GetInfo().agentID &&
!entity->GetComponent(EC_Controllable::TypeNameStatic()))
{
Foundation::Framework *fw = owner_->GetFramework();
assert (fw->GetComponentManager()->CanCreate(EC_Controllable::TypeNameStatic()));
entity->AddComponent(fw->GetComponentManager()->CreateComponent(EC_Controllable::TypeNameStatic()));
// Add sound listener EC for our own avatar.
entity->AddComponent(fw->GetComponentManager()->CreateComponent(EC_SoundListener::TypeNameStatic()));
Scene::Events::EntityEventData event_data;
event_data.entity = entity;
fw->GetEventManager()->SendEvent(fw->GetEventManager()->QueryEventCategory("Scene"), Scene::Events::EVENT_CONTROLLABLE_ENTITY, &event_data);
// If avatar does not have appearance address yet, and the connection info has, then use it
EC_OpenSimAvatar* avatar = entity->GetComponent<EC_OpenSimAvatar>().get();
if (avatar->GetAppearanceAddress().empty())
{
std::string avataraddress = owner_->GetServerConnection()->GetInfo().avatarStorageUrl;
if (!avataraddress.empty())
{
avatar->SetAppearanceAddress(avataraddress,false);
avatar_appearance_.DownloadAppearance(entity);
}
}
// For some reason the avatar/connection ID might not be in sync before (when setting the appearance for first time),
// which causes the edit view to not be initially rebuilt. Force build now
owner_->GetAvatarEditor()->RebuildEditView();
}
// Send event notifying about new user in the world
if (!existing_avatar && presence->agentId != owner_->GetServerConnection()->GetInfo().agentID)
{
Foundation::EventManagerPtr eventMgr = owner_->GetFramework()->GetEventManager();
ProtocolUtilities::UserConnectivityEvent event_data(presence->agentId);
event_data.fullName = presence->GetFullName();
event_data.localId = presence->localId;
eventMgr->SendEvent("NetworkState", ProtocolUtilities::Events::EVENT_USER_CONNECTED, &event_data);
}
// Handle setting the avatar as child of another object, or possibly being parent itself
owner_->HandleMissingParent(localid);
owner_->HandleObjectParent(localid);
msg.SkipToNextInstanceStart();
}
return false;
}
void Avatar::HandleTerseObjectUpdate_30bytes(const uint8_t* bytes)
{
if (!owner_ || !owner_->GetCurrentActiveScene().get())
return;
// The data contents:
// ofs 0 - localid - packed to 4 bytes
// ofs 4 - position xyz - 3 x float (3x4 bytes)
// ofs 16 - velocity xyz - packed to 6 bytes
// ofs 22 - rotation - packed to 8 bytes
//! \todo handle endians
int i = 0;
uint32_t localid = *reinterpret_cast<uint32_t*>((uint32_t*)&bytes[i]);
i += 4;
Scene::EntityPtr entity = owner_->GetAvatarEntity(localid);
if(!entity) return;
EC_NetworkPosition* netpos = entity->GetComponent<EC_NetworkPosition>().get();
Vector3df position = GetProcessedVector(&bytes[i]);
i += sizeof(Vector3df);
if (!IsValidPositionVector(position))
return;
netpos->velocity_ = GetProcessedScaledVectorFromUint16(&bytes[i],128);
i += 6;
Quaternion rotation = GetProcessedQuaternion(&bytes[i]);
netpos->position_ = position;
if (!entity->GetComponent(EC_Controllable::TypeNameStatic()))
{
// Do not update rotation for entities controlled by this client,
// client handles the rotation for itself (jitters during turning may result otherwise).
netpos->orientation_ = rotation;
}
//! \todo what to do with acceleration & rotation velocity? zero them currently
netpos->accel_ = Vector3df::ZERO;
netpos->rotvel_ = Vector3df::ZERO;
netpos->Updated();
assert(i <= 30);
}
void Avatar::HandleTerseObjectUpdateForAvatar_60bytes(const uint8_t* bytes)
{
// The data contents:
// ofs 0 - localid - packed to 4 bytes
// ofs 4 - 0
// ofs 5 - 1
// ofs 6 - empty 14 bytes
// ofs 20 - 128
// ofs 21 - 63
// ofs 22 - position xyz - 3 x float (3x4 bytes)
// ofs 34 - velocity xyz - packed to 6 bytes
// ofs 40 - acceleration xyz - packed to 6 bytes
// ofs 46 - rotation - packed to 8 bytes
// ofs 54 - rotational vel - packed to 6 bytes
//! \todo handle endians
int i = 0;
uint32_t localid = *reinterpret_cast<uint32_t*>((uint32_t*)&bytes[i]);
i += 22;
// set values
Scene::EntityPtr entity = owner_->GetAvatarEntity(localid);
if(!entity)
return;
EC_NetworkPosition* netpos = entity->GetComponent<EC_NetworkPosition>().get();
Vector3df position = GetProcessedVector(&bytes[i]);
i += sizeof(Vector3df);
if (!IsValidPositionVector(position))
return;
netpos->velocity_ = GetProcessedScaledVectorFromUint16(&bytes[i],128);
i += 6;
netpos->accel_ = GetProcessedVectorFromUint16(&bytes[i]);
i += 6;
Quaternion rotation = GetProcessedQuaternion(&bytes[i]);
i += 8;
netpos->rotvel_ = GetProcessedScaledVectorFromUint16(&bytes[i],128);
netpos->position_ = position;
if (!entity->GetComponent(EC_Controllable::TypeNameStatic()))
{
// Do not update rotation for entities controlled by this client, client handles the rotation for itself (jitters during turning may result otherwise).
netpos->orientation_ = rotation;
}
netpos->Updated();
assert(i <= 60);
}
bool Avatar::HandleRexGM_RexAppearance(ProtocolUtilities::NetworkEventInboundData* data)
{
StringVector params = ProtocolUtilities::ParseGenericMessageParameters(*data->message);
bool overrideappearance = false;
if (params.size() >= 2)
{
std::string avataraddress = params[0];
RexUUID avatarid(params[1]);
if (params.size() >= 3)
overrideappearance = ParseBool(params[2]);
Scene::EntityPtr entity = owner_->GetAvatarEntity(avatarid);
if (entity)
{
EC_OpenSimAvatar* avatar = entity->GetComponent<EC_OpenSimAvatar>().get();
avatar->SetAppearanceAddress(avataraddress,overrideappearance);
avatar_appearance_.DownloadAppearance(entity);
}
else
{
pending_appearances_[avatarid] = avataraddress;
}
}
return false;
}
bool Avatar::HandleRexGM_RexAnim(ProtocolUtilities::NetworkEventInboundData* data)
{
StringVector params = ProtocolUtilities::ParseGenericMessageParameters(*data->message);
if (params.size() < 7)
return false;
// Convert any ',' to '.'
for (uint i = 0; i < params.size(); ++i)
ReplaceCharInplace(params[i], ',', '.');
RexUUID avatarid(params[0]);
float rate = ParseString<float>(params[2], 1.0f);
float fadein = ParseString<float>(params[3], 0.0f);
float fadeout = ParseString<float>(params[4], 0.0f);
int repeats = ParseString<int>(params[5], 1);
bool stopflag = ParseBool(params[6]);
if (repeats < 0)
repeats = 0;
Scene::EntityPtr entity = owner_->GetAvatarEntity(avatarid);
if (!entity)
return false;
OgreRenderer::EC_OgreAnimationController* anim = entity->GetComponent<OgreRenderer::EC_OgreAnimationController>().get();
if (!anim)
return false;
if (!stopflag)
{
anim->EnableAnimation(params[1], false, fadein, true);
anim->SetAnimationSpeed(params[1], rate);
anim->SetAnimationAutoStop(params[1], true);
anim->SetAnimationNumLoops(params[1], repeats);
}
else
{
anim->DisableAnimation(params[1], fadeout);
}
return false;
}
bool Avatar::HandleOSNE_KillObject(uint32_t objectid)
{
Scene::ScenePtr scene = owner_->GetCurrentActiveScene();
if (!scene)
return false;
Scene::EntityPtr entity = scene->GetEntity(objectid);
if(!entity)
return false;
RexUUID fullid;
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
if (presence)
{
fullid = presence->agentId;
if (fullid != owner_->GetServerConnection()->GetInfo().agentID)
{
// Send event notifying about user leaving the world
Foundation::EventManagerPtr eventMgr = owner_->GetFramework()->GetEventManager();
ProtocolUtilities::UserConnectivityEvent event_data(presence->agentId);
event_data.fullName = presence->GetFullName();
event_data.localId = presence->localId;
eventMgr->SendEvent("NetworkState", ProtocolUtilities::Events::EVENT_USER_DISCONNECTED, &event_data);
}
}
scene->RemoveEntity(objectid);
owner_->UnregisterFullId(fullid);
return false;
}
bool Avatar::HandleOSNE_AvatarAnimation(ProtocolUtilities::NetworkEventInboundData* data)
{
ProtocolUtilities::NetInMessage &msg = *data->message;
msg.ResetReading();
RexUUID avatarid = msg.ReadUUID();
std::vector<RexUUID> animations_to_start;
size_t animlistcount = msg.ReadCurrentBlockInstanceCount();
for(size_t i = 0; i < animlistcount; i++)
{
RexUUID animid = msg.ReadUUID();
s32 animsequence = msg.ReadS32();
animations_to_start.push_back(animid);
if(avatar_states_.find(animid) != avatar_states_.end())
{
// Set avatar state based on animation: not probably best way, but possibly acceptable for now
SetAvatarState(avatarid, avatar_states_[animid]);
}
}
size_t animsourcelistcount = msg.ReadCurrentBlockInstanceCount();
for(size_t i = 0; i < animsourcelistcount; i++)
RexUUID objectid = msg.ReadUUID();
// PhysicalAvatarEventList not used
StartAvatarAnimations(avatarid, animations_to_start);
return false;
}
void Avatar::Update(f64 frametime)
{
avatar_appearance_.Update(frametime);
}
void Avatar::CreateWidgetOverlay(Foundation::ComponentPtr placeable, entity_id_t entity_id)
{
Scene::ScenePtr scene = owner_->GetCurrentActiveScene();
if (!scene)
return;
Scene::EntityPtr entity = scene->GetEntity(entity_id);
if (!entity)
return;
EC_HoveringWidget* overlay = entity->GetComponent<EC_HoveringWidget>().get();
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
if (overlay && presence)
{
overlay->InitializeBillboards();
overlay->SetText(presence->GetFullName().c_str());
/*overlay->AddButton(*(new QPushButton("Poke")));
overlay->AddButton(*(new QPushButton("Chat")));
overlay->AddButton(*(new QPushButton("Mute")));
overlay->AddButton(*(new QPushButton("Follow")));*/
}
}
/*
void Avatar::CreateNameOverlay(Foundation::ComponentPtr placeable, entity_id_t entity_id)
{
Scene::ScenePtr scene = owner_->GetCurrentActiveScene();
if (!scene)
return;
Scene::EntityPtr entity = scene->GetEntity(entity_id);
if (!entity)
return;
// Ali: testing EC_HoveringText instead of EC_OgreMovableTextOverlay
EC_HoveringText* overlay = entity->GetComponent<EC_HoveringText>().get();
//OgreRenderer::EC_OgreMovableTextOverlay* overlay = entity->GetComponent<OgreRenderer::EC_OgreMovableTextOverlay>().get();
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
if (overlay && presence)
{
// overlay->CreateOverlay(Vector3df(0.0f, 0.0f, 1.5f));
// overlay->SetText(presence->GetFullName());
// overlay->SetPlaceable(placeable);
//overlay->SetTextColor(QColor(255,255,255,255));
//overlay->SetBackgroundColor(QColor(0,0,0,200));
overlay->ShowMessage(presence->GetFullName().c_str());
}
}
*/
void Avatar::ShowAvatarNameOverlay(entity_id_t entity_id, bool visible)
{
Scene::ScenePtr scene = owner_->GetCurrentActiveScene();
if (!scene)
return;
Scene::EntityPtr entity = scene->GetEntity(entity_id);
if (!entity)
return;
// Ali: testing EC_HoveringText instead of EC_OgreMovableTextOverlay
/*
OgreRenderer::EC_OgreMovableTextOverlay* overlay = entity->GetComponent<OgreRenderer::EC_OgreMovableTextOverlay>().get();
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
if (overlay && presence)
{
overlay->SetText(presence->GetFullName());
overlay->SetVisible(true);
}
*/
EC_HoveringText* overlay = entity->GetComponent<EC_HoveringText>().get();
EC_OpenSimPresence* presence = entity->GetComponent<EC_OpenSimPresence>().get();
if (overlay && presence)
{
overlay->SetTextColor(QColor(255,255,255,230));
overlay->SetBackgroundGradient(QColor(0,0,0,230), QColor(50,50,50,230));
overlay->ShowMessage(presence->GetFullName().c_str());
if (!visible)
overlay->Hide();
}
}
void Avatar::CreateAvatarMesh(entity_id_t entity_id)
{
using namespace OgreRenderer;
Scene::EntityPtr entity = owner_->GetAvatarEntity(entity_id);
if (!entity)
return;
Foundation::ComponentPtr placeableptr = entity->GetComponent(EC_OgrePlaceable::TypeNameStatic());
Foundation::ComponentPtr meshptr = entity->GetComponent(EC_OgreMesh::TypeNameStatic());
Foundation::ComponentPtr animctrlptr = entity->GetComponent(EC_OgreAnimationController::TypeNameStatic());
if (placeableptr && meshptr)
{
EC_OgreMesh* mesh = checked_static_cast<EC_OgreMesh*>(meshptr.get());
mesh->SetPlaceable(placeableptr);
avatar_appearance_.SetupDefaultAppearance(entity);
}
if (animctrlptr && meshptr)
{
EC_OgreAnimationController* animctrl = checked_static_cast<EC_OgreAnimationController*>(animctrlptr.get());
animctrl->SetMeshEntity(dynamic_cast<EC_OgreMesh*>(meshptr.get()));
}
}
void Avatar::StartAvatarAnimations(const RexUUID& avatarid, const std::vector<RexUUID>& anim_ids)
{
using namespace OgreRenderer;
Scene::EntityPtr entity = owner_->GetAvatarEntity(avatarid);
if (!entity)
return;
EC_OgreAnimationController* animctrl = entity->GetComponent<EC_OgreAnimationController>().get();
EC_AvatarAppearance* appearance = entity->GetComponent<EC_AvatarAppearance>().get();
if (!animctrl || !appearance)
return;
const AnimationDefinitionMap& anim_defs = appearance->GetAnimations();
// Convert uuid's to actual animation names
std::vector<std::string> anims_to_start;
for (unsigned i = 0; i < anim_ids.size(); ++i)
{
AnimationDefinitionMap::const_iterator def = anim_defs.find(anim_ids[i]);
if (def != anim_defs.end())
anims_to_start.push_back(def->second.animation_name_);
}
// Other animations that are going on have to be stopped
std::vector<std::string> anims_to_stop;
const EC_OgreAnimationController::AnimationMap& running_anims = animctrl->GetRunningAnimations();
EC_OgreAnimationController::AnimationMap::const_iterator anim = running_anims.begin();
while (anim != running_anims.end())
{
if (std::find(anims_to_start.begin(), anims_to_start.end(), anim->first) == anims_to_start.end())
anims_to_stop.push_back(anim->first);
++anim;
}
for (unsigned i = 0; i < anims_to_start.size(); ++i)
{
const AnimationDefinition& def = GetAnimationByName(anim_defs, anims_to_start[i]);
animctrl->EnableAnimation(def.animation_name_, def.looped_, def.fadein_);
animctrl->SetAnimationSpeed(def.animation_name_, def.speedfactor_);
animctrl->SetAnimationWeight(def.animation_name_, def.weightfactor_);
if (def.always_restart_)
animctrl->SetAnimationTimePosition(def.animation_name_, 0.0);
}
for (unsigned i = 0; i < anims_to_stop.size(); ++i)
{
const AnimationDefinition& def = GetAnimationByName(anim_defs, anims_to_stop[i]);
animctrl->DisableAnimation(def.animation_name_, def.fadeout_);
}
}
void Avatar::UpdateAvatarAnimations(entity_id_t avatarid, f64 frametime)
{
using namespace OgreRenderer;
Scene::EntityPtr entity = owner_->GetAvatarEntity(avatarid);
if (!entity)
return;
EC_OgreAnimationController* animctrl = entity->GetComponent<EC_OgreAnimationController>().get();
EC_AvatarAppearance* appearance = entity->GetComponent<EC_AvatarAppearance>().get();
EC_NetworkPosition* netpos = entity->GetComponent<EC_NetworkPosition>().get();
if (!animctrl || !netpos || !appearance)
return;
const AnimationDefinitionMap& anim_defs = appearance->GetAnimations();
const EC_OgreAnimationController::AnimationMap& running_anims = animctrl->GetRunningAnimations();
EC_OgreAnimationController::AnimationMap::const_iterator anim = running_anims.begin();
while (anim != running_anims.end())
{
const AnimationDefinition& def = GetAnimationByName(anim_defs, anim->first);
// If animation is velocity-adjusted, adjust animation speed by network position speed (horizontal plane movement only)
if (def.use_velocity_)
{
float speed = Vector3df(netpos->velocity_.x, netpos->velocity_.y, 0).getLength() * 0.5;
animctrl->SetAnimationSpeed(anim->first, def.speedfactor_ * speed);
}
++anim;
}
}
void Avatar::SetAvatarState(const RexUUID& avatarid, EC_OpenSimAvatar::State state)
{
Scene::EntityPtr entity = owner_->GetAvatarEntity(avatarid);
if (!entity)
return;
EC_OpenSimAvatar* avatar = entity->GetComponent<EC_OpenSimAvatar>().get();
if (!avatar)
return;
avatar->SetState(state);
}
bool Avatar::HandleResourceEvent(event_id_t event_id, Foundation::EventDataInterface* data)
{
return avatar_appearance_.HandleResourceEvent(event_id, data);
}
bool Avatar::HandleInventoryEvent(event_id_t event_id, Foundation::EventDataInterface* data)
{
return avatar_appearance_.HandleInventoryEvent(event_id, data);
}
bool Avatar::HandleAssetEvent(event_id_t event_id, Foundation::EventDataInterface* data)
{
return avatar_appearance_.HandleAssetEvent(event_id, data);
}
Scene::EntityPtr Avatar::GetUserAvatar() const
{
return owner_->GetUserAvatarEntity();
}
bool Avatar::AvatarExportSupported()
{
Scene::EntityPtr entity = GetUserAvatar();
if (!entity)
return false;
WorldStreamPtr conn = owner_->GetServerConnection();
if (!conn)
return false;
// Support anything that has the appearance url set, webdav or legacy
EC_OpenSimAvatar *os_avatar = entity->GetComponent<EC_OpenSimAvatar>().get();
if (os_avatar)
if (os_avatar->GetAppearanceAddress().length() > 0)
return true;
// For now, support only legacy storage export
return (conn->GetConnectionType() == ProtocolUtilities::AuthenticationConnection);
}
void Avatar::ExportUserAvatar()
{
Scene::EntityPtr entity = GetUserAvatar();
if (!entity)
{
RexLogicModule::LogError("User avatar not in scene, cannot export");
return;
}
// See whether to use legacy storage or inventory
WorldStreamPtr conn = owner_->GetServerConnection();
if (!conn)
{
RexLogicModule::LogError("Not connected to server, cannot export avatar");
return;
}
if (!AvatarExportSupported())
{
RexLogicModule::LogError("Avatar export supported to legacy storage only for now");
return;
}
// Legacy avatar
if (conn->GetAuthenticationType() == ProtocolUtilities::AT_RealXtend)
avatar_appearance_.ExportAvatar(entity, conn->GetUsername(), conn->GetAuthAddress(), conn->GetPassword());
// Webdav avatar
else if (conn->GetAuthenticationType() == ProtocolUtilities::AT_Taiga)
avatar_appearance_.WebDavExportAvatar(entity);
// Inventory avatar
else
avatar_appearance_.InventoryExportAvatar(entity);
}
void Avatar::ExportUserAvatarLocal(const std::string& filename)
{
Scene::EntityPtr entity = GetUserAvatar();
if (!entity)
{
RexLogicModule::LogError("User avatar not in scene, cannot export locally");
return;
}
avatar_appearance_.ExportAvatarLocal(entity, filename);
}
void Avatar::ReloadUserAvatar()
{
Scene::EntityPtr entity = GetUserAvatar();
if (!entity)
{
RexLogicModule::LogError("User avatar not in scene, cannot reload appearance");
return;
}
// Revert to default if no storage url
avatar_appearance_.DownloadAppearance(entity, true);
}
void Avatar::HandleLogout()
{
avatar_appearance_.InventoryExportReset();
pending_appearances_.clear();
}
}
|
673027e811302303a8d0c5335376388dc275cd31 | cf47ecf683746c38be14e52df30829ed02b7d0c1 | /include/Intriman/Settings.hpp | a37701c9a3d2feeffc0bc79c7ec7cbd7e419bcf0 | [
"MIT"
] | permissive | dendisuhubdy/Intriman | 59aa21cb2afe8a2230c3fecdbbe5c61a43a986fd | 15c326b62784dd30e67365790bf33d600055a773 | refs/heads/master | 2022-09-18T12:26:14.381106 | 2020-01-16T02:52:46 | 2020-01-16T02:52:46 | 270,543,714 | 0 | 0 | MIT | 2020-06-08T05:39:57 | 2020-06-08T05:39:26 | null | UTF-8 | C++ | false | false | 157 | hpp | Settings.hpp | #pragma once
#include <experimental/filesystem>
namespace Intriman
{
struct Settings
{
Settings();
std::experimental::filesystem::path OutputFolder;
};
}
|
fedb92b18d6d9fc55b27a66d76264ae0e63c107d | 6db695715a1edd02c20705137af171a1fd94a625 | /cses/twosets.cpp | 150448c089ef6c30776a0c42bd21b9d02590c862 | [] | no_license | arora-ansh/CP-Repository | 0991190507fef779e196193635248be8fb85e5de | 3629a0c0ea92e47bd419b011be518b5feb9781ea | refs/heads/master | 2023-06-19T02:53:26.018511 | 2021-07-08T19:02:00 | 2021-07-08T19:02:00 | 282,615,965 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 958 | cpp | twosets.cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <stdio.h>
#include <math.h>
#include <iomanip>
#include <queue>
#include <string.h>
#include <string>
using namespace std;
#define MOD 1000000007
inline void fastio(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
}
typedef long long int ll;
typedef long double ld;
int main(){
fastio();
int n;
cin>>n;
ll x = n*(n+1)/2;
if(x%2!=0){
cout<<0<<endl;
return 0;
}
x/=2;
ll **dp = new ll*[n+1];
for(int i=0;i<=n;i++){
dp[i] = new ll[x+1];
}
dp[0][0] = 1;
for(int i=1;i<n;i++){
for(int j=0;j<=x;j++){
dp[i][j] = dp[i-1][j];
if(j>=i){
dp[i][j]+=dp[i-1][j-i];
dp[i][j]%=MOD;
}
}
}
cout<<dp[n-1][x]<<endl;
return 0;
}
|
48276b974342110df00498f772c654034138e035 | 73a29d192f1f5ba7e9130c9995c5e6497dd9d84f | /maxMinProductLeetcode_1856.cpp | 877dc5d007d7b24db9eee0c3f4a3668f3eded302 | [] | no_license | shristi945/DSA-CPP | 9c7c96bf505011784c6effdc861daf763f257436 | 7d5edbb6c249c849baa86ace91855d116a0a50da | refs/heads/master | 2023-07-13T08:57:29.181581 | 2021-08-10T09:25:13 | 2021-08-10T09:25:13 | 394,594,092 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,174 | cpp | maxMinProductLeetcode_1856.cpp | #include <bits/stdc++.h>
using namespace std;
int maxSumMinProduct(vector<int>& nums) {
long long MOD = 1e9+7;
long long prefixSum[nums.size()+1];
int n = nums.size();
prefixSum[0] = 0;
for(int i=1;i<=n;i++){
prefixSum[i] = prefixSum[i-1]+nums[i-1];
}
int left [n], right[n];
stack<int> s1,s2;
for(int i=0;i<n;i++){
while(!s1.empty() && nums[i]<=nums[s1.top()])
{
s1.pop();
}
if(s1.empty()){
left[i]=-1;
}
else{
left[i]=s1.top();
}
s1.push(i);
}
for(int i=n-1;i>=0;i--){
while(!s2.empty() && nums[i]<=nums[s2.top()]){
s2.pop();
}
if(s2.empty()){
right[i]=n;
}
else{
right[i]=s2.top();
}
s2.push(i);
}
long long maxi=0;
for(int i=0;i<n;i++){
long long sum = (prefixSum[right[i]]-prefixSum[left[i]+1]);
long long prod = (sum * nums[i]);
maxi = max(maxi, prod);
}
return (int)maxi%MOD;
}
int main()
{
vector<int> nums{2,3,3,1,2};
cout<<maxSumMinProduct(nums);
return 0;
} |
65f3d3cecef9475d9f201c0d7eb14d5e14f6d58e | f5efdf3a3a7ad831cc9ff91e9dd8039b7b21dac5 | /src/gui/widget/LoggingWidget/LoggingWidget.hpp | 9bd3dc2bfd1b0f8ae1ca95c8af3db79be6fefe1f | [
"MIT"
] | permissive | bartkessels/Backing | c9a8b8417a9f002adab2ce40f9b16b14791fab94 | f2ece4252a00585369b915ae179b69f3d388d41b | refs/heads/master | 2022-12-08T09:20:40.897393 | 2020-06-10T16:48:44 | 2020-06-10T16:48:44 | 270,683,806 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 476 | hpp | LoggingWidget.hpp | #pragma once
#include <string>
#include <QString>
#include <QWidget>
#include "domain/QtLogger.hpp"
QT_BEGIN_NAMESPACE
namespace Ui { class LoggingWidget; }
QT_END_NAMESPACE
namespace backing::gui::widget
{
class LoggingWidget: public QWidget
{
public:
explicit LoggingWidget(domain::QtLogger* logger, QWidget* parent = nullptr);
~LoggingWidget() override;
private:
Ui::LoggingWidget* ui;
domain::QtLogger* logger;
};
} |
9a089bc7978179304b0f4ee6b02ab73843b98aa2 | ef48a6265e2da66404fcd4cf6df9a55a80f8ddb4 | /ABC 054/D/D/main.cpp | 05b88549315bf504c87d4749d0464331309d6496 | [] | no_license | mashi6/Atcoder | 1f48f99612c64e05db1a1c7fc47ed96b1c82980c | 528a2e56f029474159f532473c9ae0bd98144ea8 | refs/heads/master | 2021-07-17T01:26:35.243379 | 2017-10-23T14:02:08 | 2017-10-23T14:02:08 | 107,987,458 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,374 | cpp | main.cpp |
#include <iostream>
using namespace std;
const int INF = 10000000;
int main(){
int N,Ma,Mb;
int a[41],b[41],c[41];
int dp[41][411][411];
for(int i=0;i<41;i++){
for(int j=0;j<411;j++){
for(int k=0;k<411;k++){
dp[i][j][k] = INF;
}
}
}
dp[0][0][0] = 0;
cin >> N >> Ma >> Mb;
for(int i=0;i<N;i++){
cin >> a[i] >> b[i] >> c[i];
}
for(int i=0;i<N;i++){
for(int ca=0;ca<=410;ca++){
for(int cb=0;cb<=410;cb++){
if(dp[i][ca][cb]==INF)continue;//まだ更新されていない
dp[i+1][ca][cb] = min(dp[i+1][ca][cb],dp[i][ca][cb]);//i番目の薬品を買わない場合。
//次の場所(i+1)に、次の場所で必要な金と今の場所で必要な金の最小値を入れる。
dp[i+1][ca+a[i]][cb+b[i]] = min(dp[i+1][ca+a[i]][cb+b[i]],dp[i][ca][cb]+c[i]);//i番目の薬品を買う場合
//i番目を買うと、Maにa[i]追加 Mbにb[i]追加 今の場所で必要な金と薬品iの値段(c[i]) との最小値
}
}
}
int answer = INF;
for(int ca=1;ca<=410;ca++){//比が0対
for(int cb=1;cb<=410;cb++){//0だとif文が通ってしまう。
if(ca*Mb == cb*Ma){
answer = min(answer,dp[N][ca][cb]);//dp後はdp[N](dp[i+1]の終着点)を参照すれば良い
}
}
}
if(answer == INF){//目的の比率にならなかった
answer = -1;
}
cout << answer << endl;
return 0;
}
|
b8d5842dc4c4d5519ed1130fc468f6dbd919988b | c88c6f0bdc4c4e83f808d99a00719da73c440ef5 | /sketches/mastermind/config.ino | ef3f22d12eb29b11fe97912fe11888a0650e7816 | [] | no_license | claudiosousa/mastermind | 34aa008289ae271cf0e6dcdc4dfe6e020fa637e4 | bd827f9edee3b383449a4ed3a262cdfc1534f8e5 | refs/heads/master | 2021-01-20T17:57:25.197067 | 2016-07-21T12:33:12 | 2016-07-21T12:33:12 | 59,988,159 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 645 | ino | config.ino | #include <EEPROM.h>
int address = 200;
byte config = 0;
void initializeConfig() {
config = EEPROM.read(address);
}
bool setSoundConfig(bool sound) {
if (sound)
sbi(config, 7);
else
cbi(config, 7);
EEPROM.write(address, config);
}
bool setColorsConfig(byte nbColors, bool repeatColors) {
config &= 0b11111000;
config |= nbColors;
if (repeatColors)
sbi(config, 6);
else
cbi(config, 6);
EEPROM.write(address, config);
}
bool getSoundConfig() {
return config & 0b10000000;
}
byte getNbColorsConfig() {
return config & 0b00000111;
}
bool getRepeatColorsConfig() {
return config & 0b01000000;
}
|
3361dcd551d7e71ec2f6934af3951c46e15c39f5 | 1774efda7d763ee9a3559f8195d21d1b066f7e3e | /GLSL_front_end_compiler/irgen.h | b58c7f1d55c52bcef59e6d2c6be886cfb67c8e9a | [] | no_license | josevaldes/front_end_compiler | 0f70c0cd84291b1418e7b4636b7bc55f94fd5c4f | f9671321199fa369a85b81cc02b3356e3bf8b5ea | refs/heads/master | 2021-01-01T06:48:57.713842 | 2017-07-17T21:33:42 | 2017-07-17T21:33:42 | 97,524,436 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,299 | h | irgen.h | /**
* File: irgen.h
* -----------
* This file defines a class for LLVM IR Generation.
*
* All LLVM instruction related functions or utilities can be implemented
* here. You'll need to customize this class heavily to provide any helpers
* or untility as you need.
*/
#ifndef _H_IRGen
#define _H_IRGen
#include <stack>
// LLVM headers
#include "llvm/IR/Module.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Constants.h"
class Type;
class ArrayType;
class Expr;
using namespace std;
class IRGenerator {
public:
IRGenerator();
~IRGenerator();
llvm::Module *GetOrCreateModule(const char *moduleID);
llvm::LLVMContext *GetContext() const { return context; }
// Add your helper functions here
llvm::Function *GetFunction() const;
void SetFunction(llvm::Function *func);
llvm::BasicBlock *GetBasicBlock() const;
void SetBasicBlock(llvm::BasicBlock *bb);
llvm::BasicBlock *GetDefaultBB() const;
void SetDefaultBB(llvm::BasicBlock *bb);
llvm::BasicBlock *GetFooterBB() const;
void SetFooterBB(llvm::BasicBlock *bb);
void popFooterBB();
llvm::BasicBlock *GetContinueBB() const;
void SetContinueBB(llvm::BasicBlock *bb);
void popContinueBB();
llvm::SwitchInst* GetSwitchInst();
void SetSwitchInst(llvm::SwitchInst* switchInst);
void popSwitchInst();
llvm::Type *GetIntType() const;
llvm::Type *GetBoolType() const;
llvm::Type *GetFloatType() const;
llvm::Type *GetVoidType() const;
llvm::Type *GetVecType(unsigned int coor) const;
llvm::Type *getAstType(Type *t);
llvm::Constant *isInit(Expr *e, Type *t);
llvm::Type *GetArrayType(ArrayType *t);
void setUnreachFlag(bool flag);
bool getUnreachFlag();
private:
llvm::LLVMContext *context;
llvm::Module *module;
// track which function or basic block is active
llvm::Function *currentFunc;
llvm::BasicBlock *currentBB;
llvm::BasicBlock *defaultBB;
stack<llvm::BasicBlock*> footerBB;
stack<llvm::BasicBlock*> continueBB;
stack<llvm::SwitchInst*> switchStack;
bool unreachable_flag;
static const char *TargetTriple;
static const char *TargetLayout;
};
#endif
|
d9352dbcceaea7c347086f40480113b347caff5b | fcdea24e6466d4ec8d7798555358a9af8acf9b35 | /Projects/JetFighterClassic/JFRocketBase.h | 4f3d03b7b4afb4b0c54a61d859bbdebbe2646b11 | [] | no_license | yingzhang536/mrayy-Game-Engine | 6634afecefcb79c2117cecf3e4e635d3089c9590 | 6b6fcbab8674a6169e26f0f20356d0708620b828 | refs/heads/master | 2021-01-17T07:59:30.135446 | 2014-11-30T16:10:54 | 2014-11-30T16:10:54 | 27,630,181 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 863 | h | JFRocketBase.h |
/********************************************************************
created: 2012/05/15
created: 15:5:2012 15:56
filename: d:\Development\mrayEngine\Projects\JetFighterClassic\JFRocketBase.h
file path: d:\Development\mrayEngine\Projects\JetFighterClassic
file base: JFRocketBase
file ext: h
author: MHD Yamen Saraiji
purpose:
*********************************************************************/
#ifndef __JFRocketBase__
#define __JFRocketBase__
#include "JFIBullet.h"
namespace mray
{
namespace game
{
class JFRocketBase:public JFIBullet
{
private:
protected:
math::vector3d m_position;
math::vector3d m_speed;
public:
JFRocketBase();
virtual~JFRocketBase();
virtual void OnCreate(const math::vector3d& pos,const math::vector3d& dir);
virtual void Update(float dt);
};
}
#endif
|
7a2779480032e24027f41d71541096eb05b5cf50 | 20b49a6ef1fa417d67abef2d29a598c9e41c478e | /CodeForces/800 - 1000/dreamoonAndStairs.cpp | 4ae7ea854ebcd6a861574868e8b270c4e33c1986 | [] | no_license | switchpiggy/Competitive_Programming | 956dac4a71fdf65de2959dd142a2032e2f0710e1 | beaaae4ece70889b0af1494d68c630a6e053558a | refs/heads/master | 2023-04-15T19:13:12.348433 | 2021-04-04T06:12:29 | 2021-04-04T06:12:29 | 290,905,106 | 1 | 3 | null | 2020-10-05T20:16:53 | 2020-08-27T23:38:48 | C++ | UTF-8 | C++ | false | false | 372 | cpp | dreamoonAndStairs.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
ll n, m;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
ll ans = INT_MAX;
for(ll i = 0; i <= n; ++i) {
if((n - i)%2 == 0 && ((n - i)/2 + i)%m == 0) ans = min(ans, (n - i)/2 + i);
}
if(ans == INT_MAX) ans = -1;
cout << ans << '\n';
} |
3629168460d6d906725e854aa10978d4a5f8461b | d6370638707745153989568694fd0abfee78078a | /chap7/exec7_24.cpp | 70c2349a046e8f763ad8ed86cd6ae89d6e83815a | [] | no_license | kuangtu/cplusplus | 087c6ef9af95962b44ff6377702f4a1c6ac71725 | 01d24df9f52da05bb3afbb786632ba09856b01a8 | refs/heads/master | 2021-06-13T02:47:19.913034 | 2020-04-02T14:12:00 | 2020-04-02T14:12:00 | 134,506,725 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 832 | cpp | exec7_24.cpp | #include <iostream>
#include <string>
using std::cout;
using std::endl;
using std::initializer_list;
using std::istream;
using std::ostream;
using std::string;
class MyScreen {
public:
int pos;
//默认构造函数
MyScreen() = default;
MyScreen(int ht, int wd): height(ht), width(wd), contents(ht * wd, ' ') {
}
MyScreen(int ht, int wd, char c): height(ht), width(wd), contents(ht * wd , c) {
}
char getposchar() const
{
return contents[cursor];
}
private:
int cursor = 0;
int height = 24, width = 80;
std::string contents;
};
int
main(int argc, char *argv[])
{
MyScreen myscreen;
cout << (int)myscreen.getposchar() << endl;
MyScreen screen1(20, 60, 'd');
cout << (int)screen1.getposchar() << endl;
MyScreen screen2(30, 90);
cout << (int)screen2.getposchar() << endl;
return 0;
}
|
cc987f753743762b1b684bef40e3e0a6cea5fdbf | 57a09cee4b88474c1ea5413cdde78c029547965a | /Controle_acesso/def_inc.h | c9c64fc9889bed7842082db67ad5e721486bb41b | [] | no_license | rcmschiavi/Controle-de-acesso | 87ea581fa0ee1c4febb8bfb9856776ce7105cd4c | dbe81d772134da1d5e1fb8060cc295ca5878ccf3 | refs/heads/master | 2020-03-18T17:17:01.006877 | 2018-06-04T03:18:04 | 2018-06-04T03:18:04 | 135,018,510 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 1,118 | h | def_inc.h | /*
* portas.h
*
*Arquivo com os includes e macros necessários no projeto
*
* Created: 26/05/2018 01:04:17
* Author: RodolfoSchiavi
*/
#ifndef def_inc_H_
#define def_inc_H_
#define F_CPU 8000000UL
#include <avr/io.h>
#include <util/delay.h>
#include <avr/pgmspace.h>
#include <stdlib.h>
#include <avr/interrupt.h>
using namespace std;
#define USART_BAUDRATE 9600
#define BAUD_PRESCALE (((F_CPU/(USART_BAUDRATE*16UL)))-1)
#define set_bit(adress,bit) (adress|=(1<<bit))
#define clr_bit(adress,bit) (adress&=~(1<<bit))
#define clp_bit(adress,bit) (adress^=(1<<bit))
#define tst_bit(adress,bit) (adress&(1<<bit))
#define LED PC3
#define DADOS_LCD PORTB //8 bits de dados do LCD na porta D
#define CONTR_LCD PORTD //os pinos de controle est?o no PORTB
#define RS PORTD2 //pino de instru??o ou dado para o LCD
#define E PORTD3 //pino de enable do LCD
#define pulso_enable() _delay_us(10); set_bit(CONTR_LCD,E); _delay_us(10); clr_bit(CONTR_LCD,E); _delay_us(450);
#define linha_inf lcd.cmd_LCD(0x80|0x40,0) //Macro para setar o cursor na linha debaixo do display fora da classe LCD
#endif /* PORTAS_H_ */ |
32b5f4150c45eacfea867fe99e6c4ee3f44f95a6 | 6dbb54be5e8e7f66447a464f7e3b42527168d015 | /Guilherme2/V6 - Jogo_Super_Mario/Super Mario V6/src/Cenario.cpp | 9e9746e193cb3f67ff5f4a24a2310f4c4485cc96 | [] | no_license | guilhermeogiboski/Curupira | f44ee6718ffe5b8019a8367ed251e8f702e70d51 | ee734169c1d5b6f95f8c6a607a5d4135c712df61 | refs/heads/master | 2020-04-05T22:41:56.460202 | 2016-11-18T19:07:07 | 2016-11-18T19:07:07 | 71,824,287 | 1 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 808 | cpp | Cenario.cpp | #include "Cenario.h"
Cenario::Cenario(): Entidade()
{
imgEsquerda = NULL;
imgCentro = NULL;
imgDireita = NULL;
}
Cenario::~Cenario()
{
destroy_bitmap(imgEsquerda); // Destrói a imagem;
destroy_bitmap(imgCentro);
destroy_bitmap(imgDireita);
buffer = NULL;
}
/*SETS*/
void Cenario::setImgEsq(BITMAP* imgEsq)
{
imgEsquerda = imgEsq;
}
void Cenario::setImgCen(BITMAP* imgCen)
{
imgCentro = imgCen;
}
void Cenario::setImgDir(BITMAP* imgDir)
{
imgDireita = imgDir;
}
void Cenario::setBuffer( BITMAP* BUF)
{
buffer = BUF;
}
/*GETS*/
BITMAP* Cenario::getImgEsq()
{
return imgEsquerda;
}
BITMAP* Cenario::getImgCen()
{
return imgCentro;
}
BITMAP* Cenario::getImgDir()
{
return imgDireita;
}
/*MOVIMENTO DO CENÁRIO*/
void Cenario::Movimento()
{
}
|
5ebb70cc018a4f4c383be04ee0224e16bf1ebfd7 | 64cec58ce34c257acc366f85c06be32d75267d80 | /main.cpp | d8d9b79e79b06e3fbd555a6b95475837e9a43c78 | [] | no_license | JFergen/Library-Database | e729c319cf595c1ad8b95460bab3656c2b8b3a1e | 81ac351b405ed0cba495b02444a4d82afcef3a72 | refs/heads/master | 2020-03-17T07:54:41.554585 | 2018-05-14T20:26:56 | 2018-05-14T20:26:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | cpp | main.cpp | int number_of_students()
{
string line;int count=0;
ifstream fin;fin.open("students.txt");
while(getline(fin, line))
{
++count;
}
return count;
}
int number_of_books()
{
string line;int count=0;
ifstream fin;fin.open("books.txt");
while(getline(fin, line))
{
++count;
}
return count;
}
void search_book()
{
cout<<"What do you want to search with?"<<endl;
cout<<"1. Author"<<endl;
cout<<"2. Title"<<endl;
cout<<"3. Student"<<endl;
cout<<"Enter your choice:";
int choice;
cin>>choice;
cin.ignore();
bool success=false;
do
{
switch(choice)
{
case 1:
search_by_author();
success=true;
break;
case 2:
search_by_title();
success=true;
break;
case 3:
search_by_student();
success=true;
break;
default:
cout<<"Wrong choice. Enter again.";
success=false;
break;
}
}while(!success);
}
int main()
{
// display student information
cout << "+----------------------------------------------+" << endl;
cout << "| Computer Science and Engineering |" << endl;
cout << "| CSCE 1030 - Computer Science I |" << endl;
cout << "| Student Name EUID euid@my.unt.edu |" << endl;
cout << "+----------------------------------------------+" << endl;
cout << endl;
int choice;
bool success;
do
{
cout<<"1. Add"<<endl;
cout<<"2. Check Out"<<endl;
cout<<"3. Return"<<endl;
cout<<"4. Search"<<endl;
cout<<"Enter your choice, 0 to Quit:";
cin>>choice;
cin.ignore();
do
{
switch(choice)
{
case 1:
enter_book();
success=true;
break;
case 2:
check_out();
success=true;
break;
case 3:
return_book();
success=true;
break;
case 4:
search_book();
success=true;
break;
default:
cout<<"Wrong Choice. Enter again";
success=false;
break;
}
}while(!success);
}while(choice!=0);
return 0;
}
|
8649144a36c5dc6a67e2cc35fc26b114b64e0986 | 9e6610734fd40b664c9103737ff2c0a43821cfd7 | /BubbleSort.h | 388f45dd7743f3c41d5606683f95df671f782e51 | [] | no_license | utec-computer-science/cs2100-sorting-JRebosio | a50cc2954bb3bd2623f53e55f90bb85eb8199172 | 62b62bb3a50c3c79a951206d605e9f41b28a0e0a | refs/heads/master | 2021-05-18T19:54:20.584861 | 2020-04-08T03:51:28 | 2020-04-08T03:51:28 | 251,389,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 301 | h | BubbleSort.h | class BubbleSort {
public:
template<typename container>
void sort(container &cnt)
{
int n=cnt.end()-cnt.begin()-1;
for (int i = 0; i < n; i++)
for (int j = 0; j < n-i; j++)
if (cnt[j] > cnt[j+1])
swap(cnt[j], cnt[j+1]);
}
};
|
3d15684308df61ff68e0fc3a67a9fd486f3fb84a | 41168098af2b3040d85615166edd9b22fc6bf304 | /sorting/quick_sort/quick_sort.cpp | a04fdc9e795040250b4a0ee5bf97a76225f72dc0 | [] | no_license | lokesh-org/datastructure | 034015107693de3eb2d6d64a941647c0ff176480 | 0be0a94ea4b207cf0e8c882700f138828592d525 | refs/heads/master | 2021-01-10T07:35:28.446790 | 2015-11-12T22:53:08 | 2015-11-12T22:53:08 | 46,084,882 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 856 | cpp | quick_sort.cpp | #include<iostream>
#include<cstdlib>
using namespace std;
void randm(int arr[], int l)
{
for(int i=0;i<l;i++)
{
int temp = rand()%l;
int m = arr[i];
arr[i] = arr[temp];
arr[temp] = m;
}
}
void quick_sort(int arr[], int l, int h)
{
if(l<h)
{
int s = l-1;
int t = l;
while(t<h)
{
if(arr[t]<arr[h])
{
int temp = arr[t];
arr[t] = arr[s+1];
arr[s+1] = temp;
s++;
}
t++;
}
int temp = arr[s+1];
arr[s+1] = arr[h];
arr[h] = temp;
s++;
quick_sort(arr,l,s-1);
quick_sort(arr,s+1,h);
}
}
int main()
{
int l;
cout<<"Enter number of elements = ";
cin>>l;
int arr[l];
for(int i=0;i<l;i++)arr[i]=i;
randm(arr,l);
cout<<"Elements before sort"<<endl;
for(int i=0;i<l;i++)cout<<arr[i]<<endl;
cout<<"Elements after sort"<<endl;
quick_sort(arr,0,l-1);
for(int i=0;i<l;i++)cout<<arr[i]<<endl;
}
|
582ee6fee2d672eb607e7746811c76fe85e83f7e | 883887c3c84bd3ac4a11ac76414129137a1b643b | /Cscl3DWS/RenderManager/Classes/nrmFlash.cpp | 504d2ad3a992459f2f7374f471889935d07e9fff | [] | no_license | 15831944/vAcademia | 4dbb36d9d772041e2716506602a602d516e77c1f | 447f9a93defb493ab3b6f6c83cbceb623a770c5c | refs/heads/master | 2022-03-01T05:28:24.639195 | 2016-08-18T12:32:22 | 2016-08-18T12:32:22 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,083 | cpp | nrmFlash.cpp |
#include "stdafx.h"
#include <locale>
#include <stdlib.h>
#include "nrmFlash.h"
#include "FlashPlugin.h"
#include "IDynamicTexture.h"
#include "HelperFunctions.h"
#include "GlobalSingletonStorage.h"
#include "RMContext.h"
nrmFlash::nrmFlash(mlMedia* apMLMedia) :
nrmObject(apMLMedia),
m_flash(NULL),
m_sprite(NULL)
{
}
nrmFlash::~nrmFlash()
{
if (m_sprite){
m_sprite->RemoveDynamicTextures();
}
recreate_sprite(false);
}
// изменилось абсолютное положение
void nrmFlash::AbsXYChanged()
{
if (!m_sprite)
{
return;
}
mlPoint pnt = mpMLMedia->GetIVisible()->GetAbsXY();
m_sprite->SetCoords(pnt.x, pnt.y);
}
void nrmFlash::SizeChanged()
{
if(!m_flash)
return;
mlSize sz=mpMLMedia->GetIVisible()->GetSize();
m_flash->SetSize(sz.width, sz.height);
if(sz.width <= 0)
sz.width = 1;
if(sz.height <= 0)
sz.height = 1;
//recreate_sprite();
if(m_sprite){
m_sprite->SetSize(sz.width, sz.height);
m_sprite->SetWorkRect(0, 0, sz.width, sz.height);
}
AbsDepthChanged();
AbsXYChanged();
AbsVisibleChanged();
}
// изменилась абсолютная глубина
void nrmFlash::AbsDepthChanged()
{
if(m_sprite)
m_sprite->SetDepth(GetMLMedia()->GetIVisible()->GetAbsDepth());
}
mlSize nrmFlash::GetMediaSize(){
mlSize size; ML_INIT_SIZE(size);
return size;
}
bool nrmFlash::recreate_sprite(bool create){
if (m_sprite)
return true;
if (m_sprite)
{
m_sprite->DeleteChangesListener(this);
gRM->scene2d->DeleteSprite(m_sprite->GetName());
g->sprm.DeleteObject(m_sprite->GetID());
m_sprite = NULL;
}
if(!create)
return true;
CComString name;
name = "flash_";
name += IntToStr(g->sprm.GetCount()).c_str();
int spriteID = g->sprm.AddObject(name.GetBuffer(0));
m_sprite = g->sprm.GetObjectPointer(spriteID);
gRM->scene2d->AddSprite(spriteID, 0, 0);
// m_sprite->SetVisibilityProvider(this);
// IDynamicTexture* dynamicTexture = NULL;
m_sprite->LoadFromDynamicTexture(m_flash->GetDynamicTexture());
return true;
}
// загрузка нового ресурса
bool nrmFlash::SrcChanged()
{
/*const wchar_t* pwcSrc = mpMLMedia->GetILoadable()->GetSrc();
USES_CONVERSION;
if(m_flash == NULL)
m_flash = CreateFlashObject(this, m_pRenderManager->GetMainWindow(), gRM->resLib);
if(m_flash == NULL)
return false;
// m_flash->SetParentWindow(m_pRenderManager->GetMainWindow());
mlSize sz = mpMLMedia->GetIVisible()->GetSize();
//m_sprite->SetSize(sz.width, sz.height);
m_flash->SetSize(sz.width, sz.height);
recreate_sprite();
AbsDepthChanged();
AbsXYChanged();
AbsVisibleChanged();
if (pwcSrc != NULL && *pwcSrc != L'\0'){
m_flash->LoadMovie(pwcSrc);
}else{
// ValueChanged();
}*/
return true;
}
__forceinline omsresult HResult2OMSResult(HRESULT hr){
if(FAILED(hr)){
switch(hr){
case E_NOINTERFACE: return OMS_ERROR_NOT_INITIALIZED;
case E_INVALIDARG: return OMS_ERROR_INVALID_ARG;
}
return OMS_ERROR_FAILURE;
}
return OMS_OK;
}
void nrmFlash::onSetFocus(){
if(!m_flash) return;
m_flash->SetFocus();
}
void nrmFlash::onKillFocus(){
if(!m_flash) return;
m_flash->KillFocus();
}
void nrmFlash::onKeyDown(){
if(!m_flash) return;
}
void nrmFlash::onKeyUp(){
if(!m_flash) return;
}
void nrmFlash::AbsEnabledChanged(){
/*BOOL bEnabled = */GetMLMedia()->GetIButton()->GetAbsEnabled();
// ??
}
void nrmFlash::AbsVisibleChanged()
{
bool isVisible = GetMLMedia()->GetIVisible()->GetAbsVisible();
if (m_sprite)
{
#ifndef USE_VISIBLE_DESTINATION
m_sprite->SetVisible(isVisible);
#else
m_sprite->SetVisible(isVisible, 4);
#endif
}
}
IDynamicTexture* nrmFlash::GetDynamicTexture(){
if(!m_flash)
return NULL;
return m_flash->GetDynamicTexture();
}
void nrmFlash::setVariable(const wchar_t *var, const wchar_t *value){
/*bool bRet = */m_flash->SetVariable(var, value);
// ??
}
int nrmFlash::getScaleMode(){
// ??
return -1;
}
void nrmFlash::setScaleMode(int){
// ??
}
int nrmFlash::getWMode(){
// ??
return -1;
}
void nrmFlash::setWMode(int){
// ??
}
// возвращает длину данных
long nrmFlash::getVariable(const wchar_t *var, mlOutString &sRetVal){
const wchar_t* pwcRetVal = m_flash->GetVariable(var);
if(pwcRetVal != NULL)
sRetVal = pwcRetVal;
return 0;
}
long nrmFlash::callFunction(const wchar_t *request, mlOutString &sRetVal){
const wchar_t* pwcRetVal = m_flash->CallFunction(request);
if(pwcRetVal != NULL)
sRetVal = pwcRetVal;
return 0;
}
void nrmFlash::OnAdjustSize(int& aiWidth, int& aiHeight){
// получены родные размеры флэшки, уточнить размеры текстуры, на которую она будет отрисовываться
mlSize sz = mpMLMedia->GetIVisible()->GetSize();
if(sz.width != 0 && sz.height != 0) // если заданы в скрипте,
return; // то не меняем
sz.width = aiWidth;
sz.height = aiHeight;
mpMLMedia->GetIVisible()->SetSize(sz);
SizeChanged(); // ?
}
void nrmFlash::onFSCommand(const wchar_t *command, const wchar_t *args){
mpMLMedia->GetIFlash()->onFSCommand(command, args);
} |
f4e972b85b460e2c25b1bda02ed7d6f5a5fbf9e1 | e91291f43149171ed8b927c3b9b980b38c4eec92 | /keye-1.1/keye/utility/utility_pch.hpp | 8823f6f89cd36047a6bb78f7044840888a6ad0c6 | [] | no_license | mengtest/private | f4153cde5ba9cebdf1ed6152dc7501d9cf689a19 | e3cd3e7929dd427746aee6769728e5ed8526e7c6 | refs/heads/master | 2021-06-11T14:15:12.267675 | 2016-12-13T11:46:23 | 2016-12-13T11:46:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 221 | hpp | utility_pch.hpp | #ifndef _utility_pch_h_
#define _utility_pch_h_
// --------------------------------------------------------
#include <time.h>
#include <sys/timeb.h>
// --------------------------------------------------------
#endif |
1cf91b72903d027277fb52cd0078920fc2f34f7e | e00deac602e9505900cc87e146d165267f7a098a | /master-jsoknit-test/master-jsoknit-test.ino | ebfcbf92c754f379ce8917dad0794c2d543d2aa7 | [] | no_license | dsikar/arduino | 41894d72f4f5e3da676f3e3057992a62651bdc3d | 1b49a3bf2e119ac673469aa2f41ffc1483573ccc | refs/heads/master | 2023-06-23T03:24:59.880794 | 2022-11-12T20:45:09 | 2022-11-12T20:45:09 | 54,924,320 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,834 | ino | master-jsoknit-test.ino | #include <Wire.h>
#include <ArduinoJson.h>
// MASTER
// The Slave node we will be talking to
int iWireNode = 2;
/*
Parse json content.
@param content Json content.
*/
void Parse(String content) {
int str_len = content.length() + 1;
char char_array[str_len];
content.toCharArray(char_array, str_len);
StaticJsonBuffer<200> jsonBuffer;
JsonObject& root = jsonBuffer.parseObject(char_array);
int id = root["id"];
// Requesting oven temperature
if(id == 4) {
int iTemp = root["retval"];
Serial.print("\n*** Requested oven temperature, received string: ");
Serial.print(content);
Serial.print(" extracted temperature: ");
Serial.print(iTemp);
Serial.println(" ***");
}
// Requesting injector temperature
if(id == 5) {
int iTemp = root["retval"];
Serial.print("\n*** Requested injector temperature, received string: ");
Serial.print(content);
Serial.print(" extracted temperature: ");
Serial.print(iTemp);
Serial.println(" ***");
}
// Requesting column temperature
if(id == 6) {
int iTemp = root["retval"];
Serial.print("\n*** Requested column temperature, received string: ");
Serial.print(content);
Serial.print(" extracted temperature: ");
Serial.print(iTemp);
Serial.println(" ***");
}
}
/*
Receives a value from node.
@param iNodeNumber The node number we want the value from.
@param iBytes The number of expected bytes.
*/
void receiveNodeVal(int iNodeNumber, int iBytes)
{
String strRetVal;
Wire.requestFrom(iNodeNumber, iBytes);
while(Wire.available())
{
char c = Wire.read();
Serial.print(c);
strRetVal += c;
}
Parse(strRetVal);
Serial.print(" *** here.\n");
Serial.println(strRetVal);
}
/*
void sendNodeVal(int iVal)
Send Jsoknit string to node.
*/
void sendNodeVal(int iVal, int iNodeNumber)
{
StaticJsonBuffer<200> jsonBuffer;
JsonObject& root = jsonBuffer.createObject();
char c;
root["id"] = iNodeNumber;
if(iVal != NULL){
root["arg"] = iVal;
}
char cJson[200];
root.printTo(cJson, sizeof(cJson));
String strSend = cJson;
Wire.beginTransmission(iWireNode); // transmit to device #2
for(int i = 0; i < strSend.length(); i++) {
c = strSend[i];
Wire.write(c);
}
Wire.endTransmission(); // stop transmitting
Serial.print("\n*** Sending request ");
Serial.print(strSend);
Serial.println(" ***");
}
void setup() {
// put your setup code here, to run once:
Wire.begin();
Serial.begin(9600);
}
void loop() {
delay(3000);
// call function id 1 passing argument value of 150;
sendNodeVal(150, 1);
sendNodeVal(250, 2);
sendNodeVal(350, 3);
sendNodeVal(NULL, 4);
receiveNodeVal(2, 21);
sendNodeVal(NULL, 5);
receiveNodeVal(2, 21);
sendNodeVal(NULL, 6);
receiveNodeVal(2, 21);
}
|
c3d5748c0e16c931046abfbca260bb004aac65bf | a3c25817ed3e1ec96201eacf17b9af6c5ff13464 | /inc/Imagen.h | 5d8a6200e6edd0962855623f77b404e6452a1ded | [] | no_license | ferluque/TDAImagen | debb3677ac2eeb565d1b5ed822e619745c25a021 | 925e9e76d1e8c16e9aa6ee1dd09be97b794085ad | refs/heads/main | 2023-01-07T06:09:35.776408 | 2020-11-10T11:09:35 | 2020-11-10T11:09:35 | 311,446,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,577 | h | Imagen.h | /**
* @file Imagen.h
* @brief Fichero de cabecera para la clase Imagen
* @author Fernando Luque (fl1562001@correo.ugr.es)
*
* Declara un TDA Imagen que nos permite representar imágenes en formato PGM
*/
#ifndef IMAGEN_H
#define IMAGEN_H
typedef unsigned char byte;
/**
* @brief T.D.A Imagen
*
* Una instancia @e i del tipo de dato abstracto @c Imagen es un objeto que representa una matriz de un tamaño nf x nc, donde se
* reflejan los valores de luminosidad de una imagen en escala de grises (valores entre 0 y 255)
*
* @author Fernando Luque (fl1562001@correo.ugr.es)
* @date Octubre 2020
*/
class Imagen {
private:
/**
* @page repConjunto Rep del TDA Imagen
* @section invConjunto Invariante de la representación
*
* El invariante es \e nf>0 \e nc>0
*/
int nf; /**< filas */
int nc; /**< columnas */
byte** casillas; /**< matriz */
public:
/**
* @brief Constructor sin parámetros
*
* Inicializa una imagen de 0filasx0columnas
*/
Imagen();
/**
* @brief Constructor de copia
* @param J La imagen a copiar
*
* Hace su respectiva reserva de memoria en función del tamaño del parámetro, y copia todos los elementos uno a uno
*/
Imagen(const Imagen& J);
/**
* @brief Constructor con parámetros
* @param filas El número de filas
* @param cols El número de columnas
* @pre filas > 0 && cols > 0
* @post Los valores de las casillas no se inicializan
* @warning NO se inicializan los valores de las casillas
*
* Se hace la reserva dinámica de una matriz de tamaño filas x columnas
*/
Imagen (int filas, int cols);
/**
* @brief Constructor a partir de los datos leídos por la función E/S
* @param filas El número de filas de la imagen
* @param cols El número de columnas de la imagen
* @param array El vector con los datos
* @post La imagen queda inicializada
*
* Se inicializa una matriz a partir de los datos que recibimos de la función del módulo imagenES, filas, columnas y un array
* unidimensional con los valores de luminosidad
*/
Imagen (int filas, int cols, byte* array);
/**
* @brief Destructor
*
* Se libera la memoria dinámica ocupada por la imagen
*/
~Imagen();
/**
* @brief Operador de asignación
* @param otra La imagen a asignar
* @return La imagen asignada por referencia para asignaciones encadenadas
*
* Se libera previamente la memoria que tuviera ocupada la imagen y se hace una copia en memoria de la imagen pasada como parámetro
*/
Imagen& operator=(const Imagen& otra);
/**
* @brief Método consultor número de filas
* @return nf
*/
inline int num_filas () const {return nf;};
/**
* @brief Método consultor número de columnas
* @return nc
*/
inline int num_columnas () const {return nc;};
/**
* @brief Set casillas[fila][col] = valor
* @param fila La fila del elemento
* @param col La columna del elemento
* @param valor El valor a establecer
* @pre 0<=fila<num_filas() && 0<=col<num_columnas() && 0<=valor<=255
*/
inline void asigna_pixel (int fila, int col, byte valor) {casillas[fila][col] = valor;};
/**
* @brief Consultor casillas[fila][col]
* @param fila La fila del elemento a consultar
* @param col La columna del elemento a consultar
* @return casillas[fila][col]
* @pre 0<=fila<num_filas() && 0<=col<num_columnas()
*/
inline byte valor_pixel (int fila, int col) const {return casillas[fila][col];};
/**
* @brief Función que introduce la imagen que invoca el método en el array
* @param array El array donde se introducirán los datos
* @pre Se espera un puntero nulo
*/
void convertir_a_Array (byte* array);
private:
/**
* @brief Método auxiliar de copia (no libera memoria)
* @param J La imagen a copiar
* @warning NO hace la reserva y liberación de memoria del objeto llamante
*/
void copiar (const Imagen& J);
/**
* @brief Método de reserva de memoria para una matriz
* @param filas El número de filas
* @param columnas El número de columnas
* @pre filas > 0 && columnas > 0
* @warning NO libera la memoria previamente ocupada
*/
void allocate (int filas, int columnas);
/**
* @brief Método auxiliar de liberación de memoria
*/
void deallocate ();
};
#endif /* IMAGEN_H */
|
505f2af9c22c299d47cd8ca0da68c8c9ea29d85c | 9c1ebb542635a56807c4f11a66b161514ed90228 | /16.3sum_closest.cpp | 64ae29a7a21be69d84ce88636a5d40512ea72924 | [] | no_license | yzia2000/leetcode | 5a2b0e5855c90cea0e5c872c246e0ad96306dfa5 | f5fa1e0bf03933e6dc7a004edb90df1d13d25cd8 | refs/heads/main | 2023-02-13T10:23:58.500435 | 2020-12-20T16:57:47 | 2020-12-20T16:57:47 | 323,121,184 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 727 | cpp | 16.3sum_closest.cpp | #include <iostream>
#include <vector>
#include <string>
using namespace::std;
class Solution {
public:
int threeSumClosest(vector<int>& nums, int target) {
int res = INT_MAX / 2;
for (int i = 0; i < nums.size(); i++) {
for (int j = i + 1; j < nums.size(); ++j) {
for (int k = j + 1; k < nums.size(); ++k) {
if (nums[i] + nums[j] + nums[k] == target) {
return target;
}
if (abs(nums[i] + nums[j] + nums[k] - target) < abs(res - target)) {
res = nums[i] + nums[j] + nums[k];
}
}
}
}
return res;
}
};
|
121a2cd47d0d3bf98031de222a9187fa07ea571e | 72d2c618a5d2df322f6e00fa7ec10e687ef2c50a | /I_Schedule/I_Schedule/Storage.h | 992a9eef6eb343cf88066bac43451dce420c5ac4 | [] | no_license | cs2103jan2015-t11-4c/main | dbee41271c2f0a87e83d5265bf337b3b5f233fea | c7f13353f7d6e1dc5cbf5d03ff2d9a87a8077c3e | refs/heads/master | 2020-05-15T14:33:35.215328 | 2015-04-18T09:23:42 | 2015-04-18T09:23:42 | 30,142,386 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,025 | h | Storage.h | #pragma once
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include "Task.h"
#include "Smartstring.h"
#include "Logger.h";
using namespace std;
using namespace logging;
class Storage
{
private:
enum FILETYPE { TXT, INVALID };
string _filename;
const string _archivefile = "archive.txt";
//DATA STORAGE VARIABLES
vector<string> _filecontent;
vector<string> _archivecontent;
public:
//INFORMATION STREAMS
ostringstream status;
//DATA STORAGE VARIABLES
vector<Task*> taskList;
vector<Task*> floatingList;
vector<Task*> timedList;
vector<Task*> deadlineList;
vector<Task*> lastList;
vector<Task*> archiveList;
vector<Task*> lastArchiveList;
//
DateTime* dateTime;
vector<Task*> daytask;
string daycalendar[48];
vector<string> emptyslots;
//CONSTRUCTORS
Storage();
Storage(string filename);
~Storage();
//METHODS
//Core Functionality
void Add(Task* task);
void DeleteFromList(int position, Smartstring::LIST list);
void Delete(int position);
void Edit(int position, vector<string> newinfo);
void Complete(int position);
void Load();
void Load(string filename);
void Save();
void SaveAs(string newFileName);
void Rewrite();
void Reset();
void Clear();
void Undo();
//Power Search Method
string Search(string input);
vector<Task*> PowerSearch(string input);
string SearchEmptySlots(string input);
void InitializeDayTask(string input);
void SetDayCalendar();
void InitializeDayCalendar();
void SetSleepingTime();
void SetOccupiedSlots();
string GetEmptySlots();
int GetSlotIndex(string);
void SetBusySlots(int, int);
//STATS
int Size();
string GetTask(int index);
string GetFileName();
string GetTimedList();
string GetFloatingList();
string GetDeadlineList();
//Formatted display methods
string DayView();
//ToString methods
string Help();
string GetArchive();
string ToString();
string ToString(vector<Task*> V, int firstIdx);
string ToString(vector<string> v);
private:
//Feedback Variables
static const string _FEEDBACK_ADD_SUCCESS;
static const string _FEEDBACK_GENERIC_SUCCESS;
static const string _FEEDBACK_GENERIC_FAILURE;
static const string _FEEDBACK_LOAD_SUCCESS;
static const string _FEEDBACK_LOAD_FAILURE;
static const string _FEEDBACK_WRITE_SUCCESS;
static const string _FEEDBACK_WRITE_FAILURE;
static const string _FEEDBACK_CLEAR_SUCCESS;
static const string _FEEDBACK_CLEAR_FAILURE;
static const string _FEEDBACK_DELETE_SUCCESS;
static const string _FEEDBACK_DELETE_FAILURE;
static const string _FEEDBACK_UNDO_SUCCESS;
static const string _FEEDBACK_UNDO_FAILURE;
static const string _FEEDBACK_SEARCH_FAILURE;
static const string _FEEDBACK_FILE_EMPTY;
static const string _FEEDBACK_FILE_NOT_EMPTY;
static const string _FEEDBACK_INVALID_FILE_FORMAT;
static const string _EMPTY_STRING;
static const string _FEEDBACK_SESSION_LOAD_SUCCESS;
static const string _FEEDBACK_SESSION_LOAD_FAILURE;
static const string _FEEDBACK_SESSION_SAVE_SUCCESS;
static const string _FEEDBACK_SESSION_SAVE_FAILURE;
static const string _FEEDBACK_RESET;
static const string _FEEDBACK_INVALID_INDEX;
static const string _FEEDBACK_INVALID_LIST;
static const string _FEEDBACK_UPDATE_SUCCESS;
static const string _FEEDBACK_EDIT_SUCCESS;
static const string _FEEDBACK_DATA_CORRUPTED;
static const string _FEEDBACK_FILETYPE_INVALID;
static const string _FEEDBACK_DEFAULT_SESSION_STARTED;
static const string _FEEDBACK_STARTUP;
static const string _FEEDBACK_ARCHIVE_EMPTY;
static const string _FEEDBACK_VIEW_ARCHIVE;
static const string _FEEDBACK_DAYVIEW;
static const string _FEEDBACK__SORT_FAILURE;
static const string _FEEDBACK_SORT_SUCCESS;
static const string _FEEDBACK_UNDO_COMPLETE;
static const string _FEEDBACK_NO_UNDO;
static const string _LOG_MESSAGE_FILENAME_CHANGED;
static const string _MESSAGE_HELP_ADD;
static const string _MESSAGE_HELP_DELETE;
static const string _MESSAGE_HELP_COMPLETE;
static const string _MESSAGE_HELP_DISPLAY;
static const string _MESSAGE_HELP_EDIT;
static const string _MESSAGE_HELP_UNDO;
static const string _MESSAGE_HELP_LOAD;
static const string _MESSAGE_HELP_SAVEAS;
static const string _MESSAGE_HELP_ARCHIVE;
//formatting variables
static const string _rtfboldtagstart;
static const string _rtfboldtagend;
static const string _rtffontsizeprefix;
static const string _rtffontsizesuffix;
static const string _rtftab;
static const string _rtfcolorblueprefix;
static const string _rtfcolorbluesuffix;
//File Details
const string _FILE_EXTENSION_TXT = ".txt";
const string _FILENAME_DEFAULT = "default.txt";
const string _FILENAME_SESSION_DATA = "data.sys";
//METHODS
//Session methods
string DefaultSession();
//Update methods
void Update(); //Updates all the vectors with the new information
void UpdateStatus(string status_m);
//Undo methods
void UpdateUndoVectors();
void RestoreFromUndoVectors();
//Filter methods
string FilterTask();
void SortListsByTime(vector<Task*> &V);
void InitializeLists();
string SortAllLists();
void SortTaskList();
//Add methods
string AddToTaskVector(Task* tasptr);
//Clear methods
void ClearFile();
void ClearFilteredLists();
void ClearVectors();
void ClearUndoVectors();
string Remove(int position);
string Erase(Task* taskptr);
//Edit methods
Task* EditToNewTask(Task task, vector<string> newinfo);
//Save methods
void UpdateFileName(string newFileName);
string SaveSessionData();
string WriteToFile();
string WriteToTXT(); //writes tasks to TXT readable format
string WriteToArchive(); //writes archive vector to archive
//Load methods
string LoadSessionData();
string LoadRawFileContent(); //reads from a file and stores all the content into _filecontent vector
string LoadRawArchiveContent();
string LoadTaskList(); //Loads Tasklist from FileContent vector
string LoadArchiveList();
string LoadTXTContent(); //loads _filecontent vector into taskList vector assuming TXT format
string LoadTXTArchiveContent();
//Complete methods
string MarkComplete(Task* taskptr);
void Archive(Task* taskptr);
//File analysis methods
FILETYPE IdentifyFileType(string input);
bool FileEmpty(string input);
//Get Task* methods
Task* GetTaskPtr(int position, Smartstring::LIST list);
Task* GetTaskPtr(int position);
Task* GetTimedTask(int position);
Task* GetFloatingTask(int position);
Task* GetDeadlineTask(int position);
//Get methods
string ArchiveToString();
string GetFormattedTaskList();
//Replace methods
void ReplaceTask(Task* existing, Task* replacer);
//Indentification of list methods
Smartstring::LIST IdentifyListFromIndex(int index);
//@author A0099303A
//exceptions
class InvalidIndex : public exception{
} invalid_index;
class InvalidList : public exception{
} invalid_list;
class InvalidInput : public exception{
} invalid_input;
class LoadFailure : public exception{
} load_failure;
class FirstRun : public LoadFailure{
} first_run;
class CorruptedData : public LoadFailure{
} corrupted_data;
};
|
b9a088b7bbcf01e1d4b4ce3cd7fed587ca740aff | 1e5c488081e59040b484a2a56b93a2ea1d91ddf8 | /src/src/ACE/src/linearsystem.h | 6b1af241c04a69adcf94bd119df75af240738a48 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | siconos/acef | 54c38737f93d34e35c1f7d4b0d3fe7f39b71b260 | 200d1c4e0b2ba7e10c3393d93f60e156c3646154 | refs/heads/master | 2023-01-14T16:40:05.973224 | 2020-11-24T12:51:27 | 2020-11-24T12:51:27 | 315,632,330 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,959 | h | linearsystem.h | /* Siconos is a program dedicated to modeling, simulation and control
* of non smooth dynamical systems.
*
* Copyright 2019 INRIA.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*! \file linearsystem.h
*/
/************************************************************************
linearsystem.h
**************************************************************************/
#ifndef LINEARSYSTEM_H
#define LINEARSYSTEM_H
#include "unknown.h"
#include "ace.h"
#include "equationkcl.h"
#include "equationcap.h"
#include "equationind.h"
#include "equationvd.h"
#include "equationten.h"
#include "equation_nl.h"
#include "aceMatrix.h"
#include "aceVector.h"
#include "mlcp.h"
#include "node.h"
using namespace std;
// Class linearSystem
//
// Ax'=Bx+CZs+DZns+s
class linearSystem {
public:
linearSystem();
virtual ~linearSystem();
void preparForStamp();
virtual void allocMemory();
void initKCL();
virtual void addVUnknowns();
bool isUnknown (int type, component* c,unknown **uout);
void addKCLinDyn(int j);
nodes mNodes;
unknown* addinx(int type, component* c);
unknown* addinZs(int type, component* c);
unknown* addinZns(int type, component* c);
equationKCL* KCL(int i);
equationCAP* addCapEquation();
equationIND* addIndEquation();
equationVD* addVdEquation(char* name =0);
equationTEN* addTenEquation();
equation_NL* addNonLinearEquation();
virtual int getIndexUnknown (int type,int node);
virtual int getDynIndexUnknown (int type,int node){;};
//write x'=A1x * mx + A1zs * mZs + A1zns * mZns;
void computedxdt();
void getlinefromdxdt(int line, ACE_DOUBLE * coefs);
//0 = B1x*x + B1zs*Zs + B1zns*Zns + B1s
void buildLinearSystem();
void buildABCDs();
//
//R=A1zns*C1l
//x'=A2x*x + A2zs*Zs + R*lambda+A2s
//0=B2x*x + B2zs*Zs + B2l*lambda + B2s
//Y=D2x*x + D2zs*Zs + D2l*lambda + D2s
//
virtual void alloc2Matrix();
virtual void set2matrix();
//DISCRETISATION simulation
void readInitialValue();
virtual double getCurrentTime();
virtual void initSimu(ofstream* pstream);
virtual void preparStep();
/*compute the right side of the mlcp*/
virtual void preparMLCP();
virtual bool step();
void stopSimu();
void printLog();
virtual void computeZnstiFromX_Zs();
/*build the mlcp:
*
*IF ADAPTIVE TIME STEPPING
* If PRE_COMPUTE_MLCP
* call only one time, and precompute system for each possible step (see ace.h)
* ELSE
* call at each step when the step change.
* END
*ELSE
* call only on time
*END
*/
virtual void buildMLCP();
/*
*Fill the MLCP matrix with current step
*
*/
virtual void fillMLCP();
/*compute the largest time stepping that respect the ACE_MAX_LOCAL_ERROR*/
virtual void computeAndAcceptStep();
virtual void computeAndAcceptStep_2();
/**
These fucntions are called at each step to update de terme source (Voltage source and Current source)
*/
virtual void ExtractAndCompute2Sources();
void extractSources();
virtual void extractDynamicSystemSource();
virtual void extractInteractionSource();
virtual void updateDynamicSystemSource();
virtual void updateInteractionSource();
long mLogFrequency;
long mLogPrint;
long mPourMille;
char mFile[ACE_CHAR_LENGTH];
int mNbNodes;
int mNbUnknowns;
int mNbEquations;
int mNbDynEquations;
int mNbNonDynEquations;
int mDimLambda;
int mDimx;
int mDimzs;
int mDimzns;
/*mV0x = 1 if V0 is in x else mV0x=0*/
int mV0x;
/*mV0zs = 1 if V0 is in zs else mV0zs=0*/
int mV0zs;
int mRS;
bool mReAlloc;
int mDynIndex;
unknowns mx;
unknowns mZs;
unknowns mZns;
equations mKCL;
equations mVD;
equations mIND;
equations mCAP;
equations mTEN;
equations mNL;
//siconos obj
// Ax'=Bx+CZs+DZns+s
aceMatrix *mA;
aceMatrix *mB;
aceMatrix *mC;
aceMatrix *mD;
aceVector *ms;
aceMatrix *mMatBuf1;
aceMatrix *mMatBuf2;
//x'=A1x*x + A1zs*Zs + A1zns*Zns + A1s
aceMatrix *mA1x;
aceMatrix *mA1zs;
aceMatrix *mA1zns;
aceVector *mA1s;
//0 = B1x*x + B1zs*Zs + B1zns*Zns + B1s
aceMatrix *mB1x;
aceMatrix *mB1zs;
aceMatrix *mB1zns;
aceVector *mB1s;
//Zns = C1x*x + C1s*Zs + C1l*lamdba + C1s
aceMatrix *mC1x;
aceMatrix *mC1zs;
aceMatrix *mC1l;
aceVector *mC1s;
//Y = D1x*x + D1s*Zs + D1ns*Zns + D1l*lambda +D1s
aceMatrix *mD1x;
aceMatrix *mD1zs;
aceMatrix *mD1zns;
aceMatrix *mD1l;
aceVector *mD1s;
aceMatrix *mR;
aceMatrix *mhR[ACE_NB_ADAPT_STEP+1];
aceMatrix *mA2x;
aceMatrix *mA2zs;
aceMatrix *mHThetaA2zs[ACE_NB_ADAPT_STEP+1];
aceVector *mA2s;
aceVector *mA2sti;
aceMatrix *mB2x;
aceMatrix *mB2zs;
aceMatrix *mB2l;
aceVector *mB2s;
aceMatrix *mD2x;
aceMatrix *mD2zs;
aceMatrix *mD2l;
aceVector *mD2s;
aceMatrix *mD2xW[ACE_NB_ADAPT_STEP+1];
aceMatrix *mB2xW[ACE_NB_ADAPT_STEP+1];
aceMatrix *mHThetaWA2zs[ACE_NB_ADAPT_STEP+1];
aceMatrix *mHWR[ACE_NB_ADAPT_STEP+1];
//Simulation
ofstream* mSimuStream;
//DISCRETISATION
aceVector *mxti;
aceVector *mzsti;
aceVector *mznsti;
aceVector *mlti;
aceVector *mxfree;
aceMatrix *mW[ACE_NB_ADAPT_STEP+1];
aceMatrix *mD3l[ACE_NB_ADAPT_STEP+1];
aceMatrix *mD3zs[ACE_NB_ADAPT_STEP+1];
aceMatrix *mB3l[ACE_NB_ADAPT_STEP+1];
aceMatrix *mB3zs[ACE_NB_ADAPT_STEP+1];
aceVector *mPfree;
aceVector *mQfree;
aceVector *mPAux;
aceMatrix *mPxAux;
ACE_DOUBLE mTheta;
ACE_DOUBLE mThetazs;
ACE_DOUBLE mThetap;
ACE_DOUBLE mH;
ACE_DOUBLE mHori;
ACE_DOUBLE mMaxHori;
//for adaptive time stepping
bool mUseAdaptiveTimeStepping;
ACE_DOUBLE mAlpha;
ACE_DOUBLE mAlphaMax;
ACE_DOUBLE mAlphaMin;
ACE_DOUBLE mNormX0;
ACE_DOUBLE mNormZ0;
int mAdaptCmp;
int mAllStepCmp;
ACE_DOUBLE mTstart;
ACE_DOUBLE mTstop;
ACE_DOUBLE mTcurrent;
aceVector *mxtiprev;
aceVector *mzstiprev;
aceVector *mxticurrent;
aceVector *mzsticurrent;
aceVector *mzst_inter;
aceVector *mxt_inter;
aceVector *mzst1;
aceVector *mxt1;
aceVector *mxbuf;
aceVector *mzsbuf;
mlcp* mMLCP;
long mStepCmp;
long mStepNumber;
void printEquations(ostream& os = cout);
void printABCDs(ostream& os = cout);
virtual void printA1(ostream& os = cout);
void printB1(ostream& os = cout);
void printC1(ostream& os = cout);
void printD1(ostream& os = cout);
void printSystemInTabFile(char * file);
virtual void printSystem2(ostream& os = cout);
virtual void printStep(ostream& os,aceVector *pVx,aceVector *pVzs);
ACE_DOUBLE computeAnalyticSolution(ACE_DOUBLE t);
ACE_DOUBLE mSommeError;
ACE_DOUBLE mCoef;
void printDiscretisation(ostream& os = cout);
virtual void allocForInitialValue();
protected:
virtual void setStep(ACE_DOUBLE newH);
bool mAdaptiveStepEvaluation;
ACE_DOUBLE mSerrorX;
ACE_DOUBLE mSerrorZs;
ACE_DOUBLE mMaxError;
int mNbToSmall;
int mNbToBig;
int mNbBacktrack;
void extractDynBockInMat(aceMatrix * m, int IndexBegin, int IndexEnd);
void extractDynBockInVect(aceVector * V);
void extractNonDynBockInMat(aceMatrix * m, int IndexBegin, int IndexEnd);
void extractNonDynBockInVect(aceVector * V);
void allocA1Matrix();
void freeA1Matrix();
void allocB1Matrix();
void freeB1Matrix();
void allocC1Matrix();
void freeC1Matrix();
void allocD1Matrix();
void freeD1Matrix();
virtual void allocDiscretisation();
void freeDiscretisation();
void freeForInitialValue();
};
#endif //LINEARSYSTEM_H
|
b3d71e8f9fd56821e365e26a92e4cc97e82b6b9b | f81124e4a52878ceeb3e4b85afca44431ce68af2 | /re20_1/processor54/constant/polyMesh/faceProcAddressing | e2eb2d2079756e565697fa6ffa3ac81f26af22b2 | [] | no_license | chaseguy15/coe-of2 | 7f47a72987638e60fd7491ee1310ee6a153a5c10 | dc09e8d5f172489eaa32610e08e1ee7fc665068c | refs/heads/master | 2023-03-29T16:59:14.421456 | 2021-04-06T23:26:52 | 2021-04-06T23:26:52 | 355,040,336 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,667 | faceProcAddressing | /*--------------------------------*- 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 labelList;
location "constant/polyMesh";
object faceProcAddressing;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
182
(
1430
1477
1524
1571
1618
1665
1713
1761
1809
1857
1905
1953
2001
2049
2097
2145
2193
3933
3935
3936
3938
3940
3942
3944
3946
3948
3950
3952
3954
4168
4215
4262
4309
4356
4672
4720
6131
6132
6133
6134
6135
6136
6323
6324
6325
6326
6327
6328
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
8392
8416
8440
8464
8488
8512
8536
8560
8584
8608
8632
8656
8680
8704
8728
8752
8776
8800
8824
8848
8872
8896
8920
8944
9073
9074
9075
9076
9077
9078
9265
9266
9267
9268
9269
9270
-2094
-2142
-2190
-2224
-1427
-1474
-1521
-1568
-1615
-1662
-1710
-1758
-1806
-1854
-1902
-1950
-1998
-2046
-3910
-3913
-3915
-3917
-3919
-3921
-3923
-3925
-3927
-3929
-3931
-3932
-4165
-4212
-4259
-4306
-4353
-4400
-1383
1523
1570
1617
1664
1712
1760
1808
1856
1904
1952
2000
2048
2096
2144
2192
2225
3934
3937
3939
3941
3943
3945
3947
3949
3951
3953
3955
3956
4167
4214
4261
4308
4403
1429
1476
4355
4402
)
// ************************************************************************* //
| |
96e97819c5b2bb4223113bd7719ef290b1f48e69 | b34e84cafbfcd449ccd665701aa1d0b134184454 | /llvm/lib/Transforms/phase1-gth773s/Integer.cpp | 4c8d002a6f6d677751d39200e4cd49bbf0ea3df5 | [
"NCSA"
] | permissive | chris-martin/cs6241 | c2946bde3a5163d1cd366bf1c63f2e503a34bbee | 49096936548477a1034280c729233f9b4806b3a1 | refs/heads/master | 2021-01-10T22:12:35.684957 | 2013-05-21T05:38:55 | 2013-05-21T05:38:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 504 | cpp | Integer.cpp | #include "PhaseOne.h"
using namespace llvm;
using namespace std;
namespace phaseone {
Integer Integer::none() {
Integer i;
i._hasValue = false;
return i;
}
Integer Integer::some(APInt v) {
Integer i;
i._hasValue = true;
i._value = v;
return i;
}
void Integer::print(raw_ostream &o) {
if (hasValue()) {
o << value();
} else {
o << "nil";
}
}
raw_ostream &operator<<(raw_ostream &o, Integer &i) {
i.print(o);
return o;
}
}
|
2506b6f7a86793d4995b8790c0a5fbdf0d0d7c92 | b60776fe3c35b48485b3e9fd85c38e2954e0186b | /String/strtok.cpp | a6c53a64020a761b45c843958ae86dc900ce9aae | [] | no_license | aniket-gore/practice-codes | 88994ef1719f21f1b1ae4c21b6fd7ad80d581e6b | 4b3fbfb73da8cd1f2786717e4e8927bac69eefb2 | refs/heads/master | 2021-01-17T21:24:00.879741 | 2017-08-17T01:37:32 | 2017-08-17T01:37:32 | 36,997,219 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,391 | cpp | strtok.cpp | #include<iostream>
using namespace std;
char * strtok(char *str, const char *delim){
// copy of string to be used for future calls
static char *store_str;
// if string is passed
if(str != NULL){
store_str = (char *)malloc(sizeof(str));
strcpy(store_str,str);
}
// if string is NULL and static pointer is NULL
else if(store_str == NULL){
return NULL;
}
// if string is NULL, and static pointer contains string
else{
str = store_str;
}
int output_index = 0;
bool flag = false;
// str is the output string
while(*store_str){
// for all the delimiters
for(int i=0; i<strlen(delim); i++){
if(*store_str == delim[i]){
// if delim is found at the 1st position, shift the start of output token ahead by 1 i.e. ignore this delim
if(output_index == 0){
flag = true;
str++;
}
else{
// if delim is found elsewhere, return the token
store_str++;
str[output_index] = '\0';
return str;
}
}
}
if(!flag){
// if delim is not found, increment output_index which will mark the end of output token
output_index++;
}
store_str++;
flag = false;
}
// end of input string
store_str = NULL;
str[output_index] = '\0';
return str;
}
/*
int main(){
char str[] = ",ab,,c,d";
cout<<strtok(str,",")<<endl;
cout<<strtok(NULL,",")<<endl;
return 1;
}*/ |
2e494ee3f5f91af81c98323d3ef4c0c6eb726606 | e995b9d23b3972ee59435d394c8c2af7a571010b | /Camera/Camera3D.cpp | fa1a6cac84308854ec9bc14dc35dadee2bcc40bf | [] | no_license | pmeneguzzi/SharedGameCode | 1b3216a0a6321da5a6fff29c85f0971c91bb0f4e | 2ddf2134714f9ff911ec2842b908fb2ef125cf20 | refs/heads/master | 2021-01-24T23:25:57.390010 | 2014-11-02T15:11:28 | 2014-11-02T15:11:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,936 | cpp | Camera3D.cpp | //
// Copyright (c) 2012-2014 Jimmy Lord http://www.flatheadgames.com
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
#include "GameCommonHeader.h"
#include "Camera3D.h"
Camera3D::Camera3D()
: m_Eye(0,0,10)
, m_Up(0,1,0)
, m_LookAtPos(0,0,0)
, m_Width(0)
, m_Height(0)
{
m_matView.SetIdentity();
m_matProj.SetIdentity();
m_matViewProj.SetIdentity();
}
Camera3D::~Camera3D()
{
}
void Camera3D::LookAt(Vector3& eye, Vector3& up, Vector3& lookatpos)
{
m_Eye = eye;
m_Up = up;
m_LookAtPos = lookatpos;
}
void Camera3D::ResetMatrix(bool calculateinverse)
{
m_matView.SetLookAtRH( m_Eye, m_Up, m_LookAtPos );
m_matViewProj = m_matView;
m_matViewProj.Multiply( &m_matProj );
// Calculate the inverse of the camera matrix
if( calculateinverse )
{
m_matViewProjInverse = m_matViewProj;
m_matViewProjInverse.Inverse();
// Calculate the x and y values of the frustum at Z=0
Vector3 sspos( 1, 1, 0 );
Vector3 pos3d = m_matViewProjInverse.TransformVector3( sspos );
m_FrustumRightEdgeZ0 = pos3d.x;
m_FrustumTopEdgeZ0 = pos3d.y;
}
}
|
e02e72d0dafba763ab38f3275228990cf15db7f1 | ec89e41ca41970c0704a80544f5f579f3fc42cb3 | /connections/payload_test.cc | 7a3aad025da24295e983a22390b624194395932d | [
"Apache-2.0"
] | permissive | google/nearby | 0feeea41a96dd73d9d1b8c06e101622411e770c5 | 55194622a7b7e9066f80f90675b06eb639612161 | refs/heads/main | 2023-08-17T01:36:13.900851 | 2023-08-17T01:11:43 | 2023-08-17T01:13:11 | 258,325,401 | 425 | 94 | Apache-2.0 | 2023-09-14T16:40:13 | 2020-04-23T20:41:37 | C++ | UTF-8 | C++ | false | false | 4,199 | cc | payload_test.cc | // Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://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 "connections/payload.h"
#include <memory>
#include <type_traits>
#include <utility>
#include "gmock/gmock.h"
#include "protobuf-matchers/protocol-buffer-matchers.h"
#include "gtest/gtest.h"
#include "internal/platform/byte_array.h"
#include "internal/platform/file.h"
#include "internal/platform/input_stream.h"
#include "internal/platform/pipe.h"
namespace nearby {
namespace connections {
TEST(PayloadTest, DefaultPayloadHasUnknownType) {
Payload payload;
EXPECT_EQ(payload.GetType(), PayloadType::kUnknown);
}
TEST(PayloadTest, SupportsByteArrayType) {
const ByteArray bytes("bytes");
Payload payload(bytes);
EXPECT_EQ(payload.GetType(), PayloadType::kBytes);
EXPECT_EQ(payload.AsStream(), nullptr);
EXPECT_EQ(payload.AsFile(), nullptr);
EXPECT_EQ(payload.AsBytes(), bytes);
}
TEST(PayloadTest, SupportsFileType) {
constexpr size_t kOffset = 99;
const auto payload_id = Payload::GenerateId();
char test_file_data[100];
memcpy(test_file_data,
"012345678901234567890123456789012345678901234567890123456789012345678"
"901234567890123456789012345678\0",
100);
OutputFile outputFile(payload_id);
ByteArray test_data(test_file_data, 100);
outputFile.Write(test_data);
outputFile.Close();
InputFile file(payload_id, 100);
InputStream& stream = file.GetInputStream();
Payload payload(payload_id, std::move(file));
payload.SetOffset(kOffset);
EXPECT_EQ(payload.GetFileName(), std::to_string(payload_id));
EXPECT_EQ(payload.GetType(), PayloadType::kFile);
EXPECT_EQ(payload.AsStream(), nullptr);
EXPECT_EQ(&payload.AsFile()->GetInputStream(), &stream);
EXPECT_EQ(payload.AsBytes(), ByteArray{});
EXPECT_EQ(payload.GetOffset(), kOffset);
}
TEST(PayloadTest, SupportsMultiDotNamedFileType) {
constexpr char expected[] = "this.is.a.multidot.file";
InputFile file(expected, 0);
Payload payload(std::move(file));
EXPECT_EQ(payload.GetFileName(), expected);
}
TEST(PayloadTest,
SupportsBackSlashFolderSeparatorsByExtractingFileNameBeforeStoring) {
constexpr char file_name[] =
"test_folder.here\\this.is.a.multidot.backslash.folder.separated.file";
constexpr char expected[] =
"this.is.a.multidot.backslash.folder.separated.file";
InputFile file(file_name, 0);
Payload payload(std::move(file));
EXPECT_EQ(payload.GetFileName(), expected);
}
TEST(PayloadTest, SupportsStreamType) {
constexpr size_t kOffset = 1234456;
auto [input, output] = CreatePipe();
InputStream* input_stream = input.get();
Payload payload(std::move(input));
payload.SetOffset(kOffset);
EXPECT_EQ(payload.GetType(), PayloadType::kStream);
EXPECT_EQ(payload.AsStream(), input_stream);
EXPECT_EQ(payload.AsFile(), nullptr);
EXPECT_EQ(payload.AsBytes(), ByteArray{});
EXPECT_EQ(payload.GetOffset(), kOffset);
}
TEST(PayloadTest, PayloadIsMoveable) {
Payload payload1;
Payload payload2(ByteArray("bytes"));
auto id = payload2.GetId();
ByteArray bytes = payload2.AsBytes();
EXPECT_EQ(payload1.GetType(), PayloadType::kUnknown);
EXPECT_EQ(payload2.GetType(), PayloadType::kBytes);
payload1 = std::move(payload2);
EXPECT_EQ(payload1.GetType(), PayloadType::kBytes);
EXPECT_EQ(payload1.AsBytes(), bytes);
EXPECT_EQ(payload1.GetId(), id);
}
TEST(PayloadTest, PayloadHasUniqueId) {
Payload payload1;
Payload payload2;
EXPECT_NE(payload1.GetId(), payload2.GetId());
}
TEST(PayloadTest, PayloadIsNotCopyable) {
EXPECT_FALSE(std::is_copy_constructible_v<Payload>);
EXPECT_FALSE(std::is_copy_assignable_v<Payload>);
}
} // namespace connections
} // namespace nearby
|
397aedd7d3c320b5baaa2ec26e8d3c05144f4067 | d93fc4deef72b4a5c6484834f45be568504aa682 | /solution237.cpp | 895d061119987a9d53b8160e25788a2f9113b4b5 | [] | no_license | zhangxiaoya/LeetCodeCPP | 55701a80c760f07103244eb21d17c3c43539db81 | 47388a5bcacd4d8e113c591a02828f6983e8b338 | refs/heads/master | 2021-09-11T08:56:59.725220 | 2021-08-29T13:24:18 | 2021-08-29T13:24:18 | 37,762,197 | 1 | 0 | null | 2021-05-05T08:52:31 | 2015-06-20T07:43:27 | C++ | UTF-8 | C++ | false | false | 215 | cpp | solution237.cpp | #include "solution237.h"
Solution237::Solution237()
{
}
void Solution237::deleteNode(ListNode *node)
{
if(node == nullptr)
return;
node->val = node->next->val;
node->next = node->next->next;
}
|
8553cb90efc8628f41618d9e9fa832b8d772f7d8 | 29fe9f765b73160df6ee293bc737e2719c24f8b3 | /cplusplus/lcd_stm32f446re.cpp | 288d013a109aebd1e245fb5b6bc15b03f40e0018 | [] | no_license | ssaulrj/programmable-devices-cplusplus-c-matlab | 3efe20f4b3a11072530e68ebbc2568e6ccdc034c | cc45cf3c5ed6d9c476c49025a481cdb413c6850a | refs/heads/master | 2021-05-27T10:45:43.694330 | 2020-04-09T04:39:13 | 2020-04-09T04:39:13 | 254,258,910 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | cpp | lcd_stm32f446re.cpp | // LCD module connections
sbit LCD_RS at GPIOC_ODR.B0;
sbit LCD_EN at GPIOC_ODR.B1;
sbit LCD_D4 at GPIOC_ODR.B2;
sbit LCD_D5 at GPIOC_ODR.B3;
sbit LCD_D6 at GPIOC_ODR.B4;
sbit LCD_D7 at GPIOC_ODR.B5;
char txt1[] = "EQUIPO 8 ";
char limpiar[] = " ";
void lectura();
void main() {
//inicializacion del lcd
Lcd_Init(); // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_Out(1,1,"hola");
while(1) //Bucle principal
Lectura();
}
void lectura()
{
//char txt1[7];
Lcd_Out(2,1,limpiar);
Lcd_Out(2,1,txt1); // Write text in second row
}
|
b67c3d2c2acc792ba2a44aa6349f8b9e418a77cb | 56c22711cfe618ebb43b3d5ee2a6e01311177a89 | /Uncategorized/rgss4.cpp | b83eea60ced2e7422f6862c93d3a007322cc272d | [
"MIT"
] | permissive | crackersamdjam/DMOJ-Solutions | f6f5709eb6648a01570b4c8992d26a664fd019c6 | 97992566595e2c7bf41b5da9217d8ef61bdd1d71 | refs/heads/master | 2023-07-09T07:14:12.105762 | 2021-08-09T03:05:01 | 2021-08-09T03:05:01 | 394,041,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 539 | cpp | rgss4.cpp | #include <bits/stdc++.h>
using namespace std;
#define MM 1002
int arr[MM], dp[MM];
int main() {
int n; scanf("%d",&n);
for(int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
dp[i] = arr[i];
}
for(int i = 1; i < n; i++){
for(int j = 0; j < i; j++){
if(arr[i] > arr[j]){
dp[i] = max(dp[i], dp[j] + arr[i]);
}
}
}
int ans = 0;
for(int i = 0; i < n; i++)
ans = max(ans, dp[i]);
printf("%d\n",ans);
return 0;
} |
34e20ce1c348bead1c228b4215022dbe51c4e8e9 | eb52bc62e4515728632752bbdee8a6c618b8620d | /main.cpp | 71c4c1c84dd66a60e304a0252927a4f8e4b62748 | [] | no_license | Dav3xor/ymf262 | cda36f01ef76d56efa74c3886e2677699cc5c494 | 4510e79b3785da75a24be08a1894b22ecea8bf69 | refs/heads/master | 2021-07-17T15:14:04.895649 | 2018-11-30T05:44:34 | 2018-11-30T05:44:34 | 135,862,482 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,551 | cpp | main.cpp | #include "stdint.h"
#include "synth.h"
int main(void) {
Synth synth;
synth.reset();
// TODO convert these to tests
/*
o.set_level(5);
o.send_levels();
o.set_keyscale(1);
o.send_levels();
o.set_level(4);
o.send_levels();
o.set_keyscale(255);
o.send_levels();
o.set_keyscale(2);
o.set_level(255);
o.send_levels();
*/
/*
o.set_flag(OP_TREMOLO);
o.send_flags();
o.set_multiplier(13);
o.send_flags();
o.set_flag(OP_VIBRATO);
o.send_flags();
*/
/*
o.set_attack(2);
o.send_ad();
o.set_decay(3);
o.send_ad();
o.set_attack(255);
o.send_ad();
*/
/*
o.set_sustain(2);
o.send_sr();
o.set_release(3);
o.send_sr();
o.set_sustain(255);
o.send_sr();
*/
/*
c.set_frequency(255);
c.send_frequency();
c.set_frequency(256);
c.send_frequency();
c.set_frequency(1023);
c.send_frequency();
c.set_frequency(1024);
c.send_frequency();
c.set_frequency(550);
c.set_note_on();
c.send_frequency();
c.set_note_off();
c.send_frequency();
c.set_block_number(1);
c.send_frequency();
c.set_block_number(7);
c.send_frequency();
c.set_block_number(100);
c.send_frequency();
*/
/*
c.set_flag(CH_RIGHT);
c.send_flags();
c.set_feedback(3);
c.send_flags();
c.set_feedback(255);
c.send_flags();
c.unset_flag(CH_RIGHT);
c.send_flags();
*/
}
constexpr uint8_t Operator::operator_map[6][4];
constexpr uint8_t Operator::register_map[36];
constexpr uint8_t Channel::channel_ids [];
constexpr uint8_t Channel::register_ids [];
|
cd39dd920c2ba462bf54f4e2549189b312ff4e3b | 1d12960943f12badaf8414b91a470891327a260c | /code/other/ABC 171D.cpp | 1e006a6e9dfc467e3d4cd189dbbc7cf32f6e6dcb | [] | no_license | andrewnyu/competitive-programming | fed658748eb628375633d515443d3736d71a0c48 | 2dd87e576e9a0d0a3e1cf7dc9a4774509515d147 | refs/heads/master | 2022-01-19T06:09:05.446913 | 2021-12-31T07:57:03 | 2021-12-31T07:57:03 | 247,249,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 403 | cpp | ABC 171D.cpp | //ABC 171D: Replacing
#include <iostream>
#include <map>
#include <vector>
using namespace std;
int main(){
long long int cs=0;
map <int,int> mp;
int n;
cin>>n;
for(int i=0; i<n; i++){
int a;
cin>>a;
cs+=a;
mp[a]+=1;
}
int q;
cin>>q;
for(int i=0; i<q; i++){
int b,c;
cin>>b>>c;
cs+=((c-b)*mp[b]);
mp[c] += mp[b];
mp[b] = 0;
cout<<cs<<endl;
}
} |
c316a8792132a71b3f6d9fa3a4b053ea0e02c6f2 | 1164e110181e49c66f1e09fef6a27b5ac8e8621c | /libs/python/include/python/crypto/ecdsa.hpp | 5be93e9614a39ce4b9bd4964b4828b677f53cf53 | [
"Apache-2.0"
] | permissive | fetchai/ledger | 3d560d7f75282bc4c4f08c97a9954100bf6e7257 | c49fb154ec148518d72d4a8f3d2e9b020160d5dd | refs/heads/master | 2021-11-25T06:44:22.761854 | 2021-11-18T09:21:19 | 2021-11-18T09:21:19 | 117,567,381 | 82 | 55 | Apache-2.0 | 2021-11-18T09:28:30 | 2018-01-15T16:15:05 | C++ | UTF-8 | C++ | false | false | 1,590 | hpp | ecdsa.hpp | #pragma once
//------------------------------------------------------------------------------
//
// Copyright 2018-2020 Fetch.AI Limited
//
// 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 "fetch_pybind.hpp"
#include "crypto/ecdsa.hpp"
namespace fetch {
namespace crypto {
void BuildECDSASigner(pybind11::module &module)
{
namespace py = pybind11;
py::class_<ECDSASigner, fetch::crypto::Prover>(module, "ECDSASigner")
.def(py::init<>()) /* No constructors found */
.def("Load", &ECDSASigner::Load)
.def("public_key", &ECDSASigner::public_key)
.def("private_key", &ECDSASigner::private_key)
.def("GenerateKeys", &ECDSASigner::GenerateKeys)
.def("SetPrivateKey", &ECDSASigner::SetPrivateKey)
.def("Sign", &ECDSASigner::Sign)
.def("Verify", &ECDSASigner::Verify)
.def("signature", &ECDSASigner::signature)
.def("document_hash", &ECDSASigner::document_hash);
}
} // namespace crypto
} // namespace fetch
|
828a24f379363f89d2a9c23f7e0b8f6206c5a02e | fb55c8b719966e825849e1f962de7047b0093f03 | /chapter07-challenge3.cpp | 840485a5db40deadeaecf3c280bf12a0149fb05f | [] | no_license | evenbrenden/ct4p-challenges | e059c90194f928140d1e3fa8eb41dc97eac2d334 | d48eb1b6dfb9c24ffcb626714445c61b82cd51fa | refs/heads/master | 2023-08-14T04:12:10.047916 | 2021-10-17T09:52:13 | 2021-10-17T09:52:13 | 243,935,982 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 212 | cpp | chapter07-challenge3.cpp | #include <functional>
template <class A, class B, class R>
std::function<R (B)> fmap(std::function<A (B)> f, std::function<R (A)> g)
{
return [f, g](R r) { return f(g(r)); };
}
int main()
{
return 0;
}
|
59d70ff3cd0da2f8acdf22108c59ddb50b365e77 | a78ad1040cd9757437c591bb5dad4fb8347bc8fc | /nik/sources/kernel/lib/extension/devices/monitoringDevice.h | 84206828153f0d2d2938d3dbd0d46d71e4e3ba96 | [] | no_license | imptz/Uso | 4e1488f94997c71cbc1a006ddc974e356767be8a | 55caaf5af59c6e1872e91c8d3b16d999ffbe25c9 | refs/heads/master | 2020-03-26T15:30:23.469236 | 2014-08-13T05:16:41 | 2014-08-13T05:16:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,955 | h | monitoringDevice.h | #pragma once
#include "../subsystems/monitoring/monitoringSubsystem.h"
#include "../subsystems/monitoring/iMonitoringDevice.h"
class MonitoringDevice : public IMonitoringDevice, public MessageReceiver, public MessageSender
{
public:
static const unsigned int ID = 1;
#pragma region static methods
public:
static bool registered;
static void registerDevice()
{
if (!registered)
MonitoringSubsystem::getSingleton().regDevice(ID, createDevice);
registered = true;
}
static IMonitoringDevice* createDevice(unsigned char address, unsigned int _type)
{
return new MonitoringDevice(address, _type);
}
#pragma endregion
MonitoringDevice(unsigned char _address, unsigned int _type);
~MonitoringDevice();
virtual void onMessage(Message message);
virtual void action();
virtual bool putFrame(unsigned char* _pArea, bool isNotTransfer = false);
virtual void init();
virtual bool isReady();
virtual void timerHandler();
virtual unsigned int getId();
private:
void createInitFrame();
void createGetInitializeFrame();
void createSetTimeFrame();
void createGetEventsFrame();
static const unsigned int SET_TIME_TIME_OUT = 20 * 60;
unsigned int setTimeTimeOut;
bool isSetTimeTimeOut;
unsigned short eventId;
void commandGetEvent(unsigned char* _pArea);
void setFault(unsigned char value);
void redirectToPc(unsigned char* _pArea);
void toLog(unsigned char* pMsg);
void setOutputs(unsigned char* pMsg);
unsigned int firstMessage(unsigned char** _ppArea);
void nextMessage(unsigned char** _ppArea);
bool isEventMessage(unsigned char* _pArea);
bool isControlMessage(unsigned char* _pArea);
void controlMessage(unsigned char* _pArea);
unsigned int getMessageType(unsigned char* _pArea);
bool isLogingMessage(unsigned char* pMsg);
bool getMessageInfo(unsigned char* pMsg, char** text, unsigned char* parameter1, unsigned char*parameter2);
private:
#pragma region message texts
static char* MESSAGE_TEXT_SVAZ_S_PLATOY_PRIVODA_NET;
static char* MESSAGE_TEXT_SVAZ_S_PLATOY_PRIVODA_EST;
static char* MESSAGE_TEXT_PONIZHENNOE_NAPRAZHENIE_NA_KONDENSATORAH;
static char* MESSAGE_TEXT_NAPRAZHENIE_NA_KONDENSATORAH_V_NORME;
static char* MESSAGE_TEXT_NEISPRAVNOST_SILIVOGO_MOSTA;
static char* MESSAGE_TEXT_VOSSTANOVLENIE_SILOVOGO_MOSTA;
static char* MESSAGE_TEXT_NIZKOE_NAPRAZHENIE_PITANIA_CP;
static char* MESSAGE_TEXT_NAPRAZHENIE_PITANIA_CP_V_NORME;
static char* MESSAGE_TEXT_NIZKOE_NAPRAZHENIE_PITANIA_DRAIVERA;
static char* MESSAGE_TEXT_NIZKOE_NAPRAZHENIE_PITANIA_DRAIVERA_V_NORME;
static char* MESSAGE_TEXT_VISOKOE_NAPRAZHENIE_PITANIA_DRAIVERA;
static char* MESSAGE_TEXT_VISOKOE_NAPRAZHENIE_PITANIA_DRAIVERA_V_NORME;
static char* MESSAGE_TEXT_NIZKOE_NAPRAZHENIE_PITANIA_PLATI;
static char* MESSAGE_TEXT_NIZKOE_NAPRAZHENIE_PITANIA_PLATI_V_NORME;
static char* MESSAGE_TEXT_VISOKOE_NAPRAZHENIE_PITANIA_PLATI;
static char* MESSAGE_TEXT_VISOKOE_NAPRAZHENIE_PITANIA_PLATI_V_NORME;
static char* MESSAGE_TEXT_OSHIBKA_TESTA_FLESH_PAMATI;
static char* MESSAGE_TEXT_TEST_FLASH_PAMATI_VIPOLNEN_USPESHNO;
static char* MESSAGE_TEXT_UROVNI_SIGNALOV_ENKODERA_NE_V_NORME;
static char* MESSAGE_TEXT_UROVNI_SIGNALOV_ENKODERA_V_NORME;
static char* MESSAGE_TEXT_NEISPRAVNOST_KANALA_ENKODERA;
static char* MESSAGE_TEXT_VOSSTANOVLENIE_KANALA_ENKODERA;
static char* MESSAGE_TEXT_OSHIBKA_OPREDELENIA_NAPRAVLENIA;
static char* MESSAGE_TEXT_VERNOE_OPREDELENIE_NAPRAVLENIA;
static char* MESSAGE_TEXT_PRI_DVIZHENII_NE_MENAETSA_KOORDINATA;
static char* MESSAGE_TEXT_PRI_DVIZHENII_MENAETSA_KOORDINATA;
static char* MESSAGE_TEXT_OTSUTSTVIE_TOKA_MOTORA;
static char* MESSAGE_TEXT_TOK_MOTORA_V_PREDELAH_NORMI;
static char* MESSAGE_TEXT_AVARIYNAYA_AMPLITUDE_TOKA_MOTORA;
static char* MESSAGE_TEXT_AMPLITUDA_TOKA_MOTORA_V_NORME;
static char* MESSAGE_TEXT_NAPRAZHENIE_PITANIA_NIZHE_NORMI;
static char* MESSAGE_TEXT_NAPRAZHENIE_PITANIA_NIZHE_NORMI_V_NORME;
static char* MESSAGE_TEXT_NAPRAZHENIE_PITANIA_VISHE_NORMI;
static char* MESSAGE_TEXT_NAPRAZHENIE_PITANIA_VISHE_NORMI_V_NORME;
static char* MESSAGE_TEXT_PR_OSHIBKA_TESTA_FLESH_PAMATI;
static char* MESSAGE_TEXT_PR_TEST_FLASH_PAMATI_VIPOLNEN_USPESHNO;
static char* MESSAGE_TEXT_PR_NIZROE_NAPRAZHENIE_PITENIA_PROCESSORA;
static char* MESSAGE_TEXT_PR_NIZROE_NAPRAZHENIE_PITENIA_PROCESSORA_V_NORME;
static char* MESSAGE_TEXT_OBRIV_DATCHIKA_DAVLENIA;
static char* MESSAGE_TEXT_OBRIV_DATCHIKA_DAVLENIA_V_NORME;
static char* MESSAGE_TEXT_KZ_DATCHIKA_DAVLENIA;
static char* MESSAGE_TEXT_KZ_DATCHIKA_DAVLENIA_V_NORME;
static char* MESSAGE_TEXT_PEREZAGRUZKA_CP;
static char* MESSAGE_TEXT_SVAZ_S_PR_VOSSTANOVLENA;
static char* MESSAGE_TEXT_OTSUTSTVUET_SVAZ_S_PR;
static char* MESSAGE_TEXT_OBRIV_MAGISTRALI_RPK;
static char* MESSAGE_TEXT_MAGISTRAL_RPK_VOSSTANOVLENA;
static char* MESSAGE_TEXT_OTSUTSTVUET_SVAZ_S_SK;
static char* MESSAGE_TEXT_SVAZ_S_SK_VOSSTANOVLENA;
static char* MESSAGE_TEXT_OBRIV_SVAZI_S_ZATVOROM;
static char* MESSAGE_TEXT_SVAZ_S_ZATVOROM_VOSSTANOVLENA;
static char* MESSAGE_TEXT_OBRIV_DATCHIKA_TEMPERATURI;
static char* MESSAGE_TEXT_OBRIV_DATCHIKA_TEMPERATURI_ISPRAVEN;
static char* MESSAGE_TEXT_KZ_DATCHIKA_TEMPERATURI;
static char* MESSAGE_TEXT_KZ_DATCHIKA_TEMPERATURI_ISPRAVEN;
static char* MESSAGE_TEXT_OBRIV_DATCHIKA_VLAGNOSTI;
static char* MESSAGE_TEXT_OBRIV_DATCHIKA_VLAGNOSTI_ISPRAVEN;
static char* MESSAGE_TEXT_KZ_KNOPOK_VNESHNEGO_POSTA;
static char* MESSAGE_TEXT_KZ_KNOPOK_VNESHNEGO_POSTA_VOSST;
static char* MESSAGE_TEXT_OBRIV_KNOPOK_VNESHNEGO_POSTA;
static char* MESSAGE_TEXT_OBRIV_KNOPOK_VNESHNEGO_POSTA_VOSST;
static char* MESSAGE_TEXT_VOSSTANOVLENIE_SOEDINITELNIH_LINIY;
static char* MESSAGE_TEXT_KZ_SOEDINITELNOY_LINII;
static char* MESSAGE_TEXT_OBRIV_SOEDINITELNOY_LINII;
static char* MESSAGE_TEXT_OSHIBKA_OPREDELENIA_SOSTOYANIA_SL;
static char* MESSAGE_TEXT_SVAZ_VOSSTANOVLENA;
static char* MESSAGE_TEXT_OTSUTSTVUET_SVAZ;
static char* MESSAGE_TEXT_IZVECHATEL_V_NORME;
static char* MESSAGE_TEXT_NET_SVAZI_S_IZVECHATELEM;
static char* MESSAGE_TEXT_VNUTRENNAYA_OSHIBKA_IZVECHATELA;
static char* MESSAGE_TEXT_ZATVOR_OSHIBKA;
static char* MESSAGE_TEXT_ZATVOR_OTKRIT;
static char* MESSAGE_TEXT_ZATVOR_ZAKRIT;
static char* MESSAGE_TEXT_TEMPERATURA_SHU_VISHE_NORMI;
static char* MESSAGE_TEXT_TEMPERATURA_SHU_VISHE_NORMI_V_NORME;
static char* MESSAGE_TEXT_TEMPERATURA_SHU_NIZHE_NORMI;
static char* MESSAGE_TEXT_TEMPERATURA_SHU_NIZHE_NORMI_V_NORME;
static char* MESSAGE_TEXT_VISOKAJA_VLAZHNOST_VNUTRI_SHU;
static char* MESSAGE_TEXT_VISOKAJA_VLAZHNOST_VNUTRI_SHU_V_NORME;
static char* MESSAGE_TEXT_SREDNIY_TOK_MOTORA_VISHE_NORMI;
static char* MESSAGE_TEXT_SREDNIY_TOK_MOTORA_VISHE_NORMI_V_NORME;
static char* MESSAGE_TEXT_NEISPRAVNOST_DATCHIKA_TEMPERATURI_NA_PLATE;
static char* MESSAGE_TEXT_NEISPRAVNOST_DATCHIKA_TEMPERATURI_NA_PLATE_V_NORME;
static char* MESSAGE_TEXT_NEISPRAVNOST_DATCHIKA_TEMPERATURI_PRIVODA;
static char* MESSAGE_TEXT_NEISPRAVNOST_DATCHIKA_TEMPERATURI_PRIVODA_V_NORME;
static char* MESSAGE_TEXT_PEREZAPUSK_CP;
static char* MESSAGE_TEXT_ZATVOR_NEISPRAVNOST;
static char* MESSAGE_TEXT_PR_DAVLENIE_EST;
static char* MESSAGE_TEXT_PR_DAVLENIE_NET;
static char* MESSAGE_TEXT_VOSSTANOVLENIE_DATCHIKOV_ZATVORA;
static char* MESSAGE_TEXT_ZATVOR_V_NORME;
static char* MESSAGE_TEXT_START_SEARCH;
static char* MESSAGE_TEXT_START_OROSHENIA;
static char* MESSAGE_TEXT_STOP_POISKA_OROSHENIA;
static char* MESSAGE_TEXT_SIGNAL_O_VOZGORANII;
static char* MESSAGE_TEXT_OTMENA_SIGNALA_O_VOZGORANII;
static char* MESSAGE_TEXT_PEREGORELA_LAMPA;
static char* MESSAGE_TEXT_KZ_V_CEPI_LAMPI;
static char* MESSAGE_TEXT_OTKAZ_POZICIONIROVANIJA;
static char* MESSAGE_TEXT_OTKAZ_OTKRITIJA;
static char* MESSAGE_TEXT_TEMPERATURA_V_NORME;
static char* MESSAGE_TEXT_TEMPERATURA_NIZHE_NORMI;
static char* MESSAGE_TEXT_TEMPERATURA_VISHE_NORMI;
static char* MESSAGE_TEXT_PENABAK_SVAZ_OFF;
static char* MESSAGE_TEXT_PENABAK_SVAZ_ON;
static char* MESSAGE_TEXT_PENABAK_PERELIV;
static char* MESSAGE_TEXT_PENABAK_NORMA;
static char* MESSAGE_TEXT_PENABAK_UTECHKA;
static char* MESSAGE_TEXT_PENABAK_50_IZRASHODOVANO;
static char* MESSAGE_TEXT_PENABAK_NAPOLOVINU_ZAPOLNEN;
static char* MESSAGE_TEXT_PENABAK_MIN_UROVEN;
static char* MESSAGE_TEXT_PENABAK_DATCHIK_NEISPRAVEN;
static char* MESSAGE_TEXT_PENABAK_DATCHIK_ISPRAVEN;
static char* MESSAGE_TEXT_SCANER_MEHANIZM_GUT;
static char* MESSAGE_TEXT_ZATVOR_VREMA_OTKRITIA_V_NORME;
static char* MESSAGE_TEXT_BLOKIROVKA_ZATVORA_ON;
static char* MESSAGE_TEXT_BLOKIROVKA_ZATVORA_OFF;
#pragma endregion
public:
virtual void createAndSendMessage(MESSAGE_NUMBER messageNumber, unsigned char parameter1 = 0, unsigned char parameter2 = 0, unsigned char parameter3 = 0, unsigned char parameter4 = 0);
private:
bool *zatvorOpen;
unsigned int zatvorOpenSize;
void zatvorAction();
};
|
8f8d858593e141b97aa7f85854e0f56bbea5321b | 96d134e8bb874e01c454e7c678b1ba76199af489 | /contarpalabras.cpp | ca5b0854196280399d2b02078d6cfdc8d76d4b41 | [] | no_license | alanalcaraz/ContarPalabras | 925601c0a720f0f623e22f5a2da782bde3fefc40 | 8b9639c96973e5124e96deed4416a5936d533442 | refs/heads/master | 2021-08-26T06:40:00.698731 | 2017-11-21T22:43:07 | 2017-11-21T22:43:07 | 111,609,351 | 0 | 0 | null | null | null | null | ISO-8859-10 | C++ | false | false | 1,019 | cpp | contarpalabras.cpp | //Programa que cuenta las palabras de un texto introducido;
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
int contarPalabras ();
int main()
{
contarPalabras();
}
int contarPalabras () //funcion que cuenta palabras;
{
char oracion[100];//definimos el tamaņo del vector tipo char a 100 caracteres;
int i, contPalabras = 1;
cout<<"Ingrese una oracion: ";
cin.getline(oracion, 100); //se reciben los caracteres dentro del vector tipo char;
for(i = 0; i < strlen(oracion); i++)//se emplea la funcion "strlen" la cual cuenta el numero de palabras en base a los espacios o caracteres terminaodres;
if(oracion[i] == ' ' && i > 0 && oracion[i - 1] != ' ')//mediante comparaciones encuentra un espacio en blanco o caracter terminador;
contPalabras++; //contador que aumenta despues de encontrar un espacio;
cout<<"Numero de palabras: "<<contPalabras;
return 0;
}
|
b906c8614f8356e5f6e03af56e41c04f47f9b607 | bab538e9cb1613a7b11b8600f3433df49ab13e89 | /tlb_include/sc_obj_list_ctrl_type_lib.h | 3424a0fc39ed1efa93a7a8a4358683b58a600e3e | [] | no_license | H0RIA/KoLaser | ba1af6cd25e56db7c6fe771bdc17c9e1235959f1 | 71f99d25396a1f36b66cb57cbe01564eb41d471c | refs/heads/master | 2018-12-23T00:37:34.076721 | 2018-10-12T10:27:02 | 2018-10-12T10:27:02 | 115,859,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,044 | h | sc_obj_list_ctrl_type_lib.h |
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 7.00.0500 */
/* at Mon Jul 10 13:50:41 2017
*/
/* Compiler settings for d:\scaps\ctrl_projects\obj_list\sc_obj_list_ctrl_type_lib.idl:
Oicf, W1, Zp1, env=Win32 (32b run)
protocol : dce , ms_ext, c_ext, robust
error checks: allocation ref bounds_check enum stub_data
VC __declspec() decoration level:
__declspec(uuid()), __declspec(selectany), __declspec(novtable)
DECLSPEC_UUID(), MIDL_INTERFACE()
*/
//@@MIDL_FILE_HEADING( )
#pragma warning( disable: 4049 ) /* more than 64k source lines */
/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include "rpc.h"
#include "rpcndr.h"
#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif // __RPCNDR_H_VERSION__
#ifndef __sc_obj_list_ctrl_type_lib_h__
#define __sc_obj_list_ctrl_type_lib_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef ___DEntity_list_FWD_DEFINED__
#define ___DEntity_list_FWD_DEFINED__
typedef interface _DEntity_list _DEntity_list;
#endif /* ___DEntity_list_FWD_DEFINED__ */
#ifndef ___DEntity_listEvents_FWD_DEFINED__
#define ___DEntity_listEvents_FWD_DEFINED__
typedef interface _DEntity_listEvents _DEntity_listEvents;
#endif /* ___DEntity_listEvents_FWD_DEFINED__ */
#ifndef __SC_IEntityListCtrl_FWD_DEFINED__
#define __SC_IEntityListCtrl_FWD_DEFINED__
typedef interface SC_IEntityListCtrl SC_IEntityListCtrl;
#endif /* __SC_IEntityListCtrl_FWD_DEFINED__ */
#ifndef __ScEntityListCtrl_FWD_DEFINED__
#define __ScEntityListCtrl_FWD_DEFINED__
#ifdef __cplusplus
typedef class ScEntityListCtrl ScEntityListCtrl;
#else
typedef struct ScEntityListCtrl ScEntityListCtrl;
#endif /* __cplusplus */
#endif /* __ScEntityListCtrl_FWD_DEFINED__ */
#ifdef __cplusplus
extern "C"{
#endif
/* interface __MIDL_itf_sc_obj_list_ctrl_type_lib_0000_0000 */
/* [local] */
// SCAPS SAM Header File
// Version 2.5
#include "sc_kernel_type_lib.h"
#include "sc_gui_type_lib.h"
#include "sc_view2d_ctrl_type_lib.h"
extern RPC_IF_HANDLE __MIDL_itf_sc_obj_list_ctrl_type_lib_0000_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_sc_obj_list_ctrl_type_lib_0000_0000_v0_0_s_ifspec;
#ifndef __ScapsSamEntityListCtrl_LIBRARY_DEFINED__
#define __ScapsSamEntityListCtrl_LIBRARY_DEFINED__
/* library ScapsSamEntityListCtrl */
/* [control][helpstring][version][uuid] */
EXTERN_C const IID LIBID_ScapsSamEntityListCtrl;
#ifndef __ScConstantsEntityListCtrl_MODULE_DEFINED__
#define __ScConstantsEntityListCtrl_MODULE_DEFINED__
/* module ScConstantsEntityListCtrl */
/* [helpstring][uuid] */
/* [helpstring] */ const long scEntityListDisplayModeEntities = 0x1;
/* [helpstring] */ const long scEntityListDisplayModeItems = 0x2;
/* [helpstring] */ const long scEntityListDisplayModeHideWayUp = 0x4;
/* [helpstring] */ const long scEntityListDisplayModeShowWayUp = 0x8;
/* [helpstring] */ const long scEntityListDisplayModeShowReferencePoints = 0x10;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideSortByName = 0x20;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideBackgroundEntity = 0x40;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideHiddenEntity = 0x80;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideStartStopIndexing = 0x100;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideNumberEntities = 0x200;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideNumberEntitiesWithPostPrefix = 0x400;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideNonMarkableEntity = 0x800;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideNonEditableEntity = 0x1000;
/* [helpstring] */ const long scEntityListDisplayModeContextMenuHideShowOnlySelectedEntities = 0x2000;
/* [helpstring] */ const long scEntityListItemSelectFirst = 0x1;
/* [helpstring] */ const long scEntityListItemSelectLast = 0x2;
/* [helpstring] */ const long scEntityListItemSelectNext = 0x3;
/* [helpstring] */ const long scEntityListItemSelectPrevious = 0x4;
/* [helpstring] */ const long scEntityListItemEditSelected = 0x5;
/* [helpstring] */ const long scEntityListItemUpdate = 0x6;
/* [helpstring] */ const long scEntityListItemDeleteSelected = 0x7;
/* [helpstring] */ const long scEntityListItemInsertBeforeSelected = 0x8;
/* [helpstring] */ const long scEntityListItemSetStartPoint = 0x9;
/* [helpstring] */ const long scEntityListSortByName = 0x10;
/* [helpstring] */ const long scEntityListRebuildCurrentEntity = 0x11;
/* [helpstring] */ const long scEntityListRebuildTopEntity = 0x12;
/* [helpstring] */ const long scEntityListSplitPolyline = 0x13;
/* [helpstring] */ const long scEntityListSplitPolylineAtPoint = 0x14;
/* [helpstring] */ const long scEntityListMergePolylinePoints = 0x15;
/* [helpstring] */ const long scEntityListNumberEntities = 0x16;
/* [helpstring] */ const long scEntityListMoveToPrevious = 0x17;
/* [helpstring] */ const long scEntityListMoveToNext = 0x18;
/* [helpstring] */ const long scEntityListMoveToTop = 0x19;
/* [helpstring] */ const long scEntityListMoveToBottom = 0x20;
/* [helpstring] */ const long scComEntityListEventUnselect = 1;
/* [helpstring] */ const long scComEntityListEventSelect = 2;
/* [helpstring] */ const long scComEntityListEventLevelDown = 3;
/* [helpstring] */ const long scComEntityListEventLevelUp = 4;
/* [helpstring] */ const long scComEntityListEventItemMode = 5;
/* [helpstring] */ const long scComEntityListEventEntityMode = 6;
#endif /* __ScConstantsEntityListCtrl_MODULE_DEFINED__ */
#ifndef ___DEntity_list_DISPINTERFACE_DEFINED__
#define ___DEntity_list_DISPINTERFACE_DEFINED__
/* dispinterface _DEntity_list */
/* [hidden][helpstring][uuid] */
EXTERN_C const IID DIID__DEntity_list;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B6F97134-7206-11D1-9736-008048EEE00C")
_DEntity_list : public IDispatch
{
};
#else /* C style interface */
typedef struct _DEntity_listVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
_DEntity_list * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */
__RPC__deref_out void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
_DEntity_list * This);
ULONG ( STDMETHODCALLTYPE *Release )(
_DEntity_list * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
_DEntity_list * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
_DEntity_list * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
_DEntity_list * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [range][in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
_DEntity_list * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
END_INTERFACE
} _DEntity_listVtbl;
interface _DEntity_list
{
CONST_VTBL struct _DEntity_listVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define _DEntity_list_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define _DEntity_list_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define _DEntity_list_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define _DEntity_list_GetTypeInfoCount(This,pctinfo) \
( (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo) )
#define _DEntity_list_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
( (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo) )
#define _DEntity_list_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
( (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) )
#define _DEntity_list_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
( (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* ___DEntity_list_DISPINTERFACE_DEFINED__ */
#ifndef ___DEntity_listEvents_DISPINTERFACE_DEFINED__
#define ___DEntity_listEvents_DISPINTERFACE_DEFINED__
/* dispinterface _DEntity_listEvents */
/* [helpstring][uuid] */
EXTERN_C const IID DIID__DEntity_listEvents;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B6F97135-7206-11D1-9736-008048EEE00C")
_DEntity_listEvents : public IDispatch
{
};
#else /* C style interface */
typedef struct _DEntity_listEventsVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
_DEntity_listEvents * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */
__RPC__deref_out void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
_DEntity_listEvents * This);
ULONG ( STDMETHODCALLTYPE *Release )(
_DEntity_listEvents * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
_DEntity_listEvents * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
_DEntity_listEvents * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
_DEntity_listEvents * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [range][in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
_DEntity_listEvents * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
END_INTERFACE
} _DEntity_listEventsVtbl;
interface _DEntity_listEvents
{
CONST_VTBL struct _DEntity_listEventsVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define _DEntity_listEvents_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define _DEntity_listEvents_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define _DEntity_listEvents_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define _DEntity_listEvents_GetTypeInfoCount(This,pctinfo) \
( (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo) )
#define _DEntity_listEvents_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
( (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo) )
#define _DEntity_listEvents_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
( (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) )
#define _DEntity_listEvents_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
( (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* ___DEntity_listEvents_DISPINTERFACE_DEFINED__ */
#ifndef __SC_IEntityListCtrl_INTERFACE_DEFINED__
#define __SC_IEntityListCtrl_INTERFACE_DEFINED__
/* interface SC_IEntityListCtrl */
/* [unique][dual][hidden][oleautomation][helpstring][uuid][object] */
EXTERN_C const IID IID_SC_IEntityListCtrl;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("E4F15A61-4196-11d5-9D4C-000000000000")
SC_IEntityListCtrl : public IDispatch
{
public:
virtual /* [helpstring][propget][id] */ HRESULT STDMETHODCALLTYPE get_ScDisplayMode(
/* [retval][out] */ long *Mode) = 0;
virtual /* [helpstring][propput][id] */ HRESULT STDMETHODCALLTYPE put_ScDisplayMode(
/* [in] */ long Mode) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScSetEntityGroup(
/* [in] */ LPDISPATCH Entity) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScUpdate( void) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScSetView(
/* [in] */ LPDISPATCH View) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScLoadFromArchive(
/* [in] */ LPDISPATCH Archive,
/* [in] */ BSTR Name,
long Flags,
/* [retval][out] */ long *Error) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScSaveToArchive(
/* [in] */ LPDISPATCH Archive,
/* [in] */ BSTR Name,
long Flags,
/* [retval][out] */ long *Error) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScSetView2DCtrl(
/* [in] */ LPDISPATCH ViewCtrl) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScCheckCommand(
/* [in] */ long CmdId,
/* [in] */ long Flags,
/* [retval][out] */ long *Active) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScExecCommand(
/* [in] */ long CmdId,
/* [in] */ long Param) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScSetFontSize(
/* [in] */ long Size) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScItemGetCount(
/* [in] */ long OnlySelected,
/* [retval][out] */ long *Count) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScItemIsSelected(
/* [in] */ long Index,
/* [retval][out] */ long *IsSel) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScItemGetCoor(
/* [in] */ long Index,
/* [in] */ long Coor,
/* [retval][out] */ double *Value) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScItemSetCoor(
/* [in] */ long Index,
/* [in] */ double X,
/* [in] */ double Y,
/* [in] */ double Z) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScItemSetSelected(
/* [in] */ long Index,
/* [in] */ long Selected) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScGetCurrentFatherEntity(
/* [retval][out] */ LPDISPATCH *fatherEntity) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE ScSetColumnWidth(
/* [in] */ long Index,
/* [in] */ long Width) = 0;
};
#else /* C style interface */
typedef struct SC_IEntityListCtrlVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
SC_IEntityListCtrl * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */
__RPC__deref_out void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
SC_IEntityListCtrl * This);
ULONG ( STDMETHODCALLTYPE *Release )(
SC_IEntityListCtrl * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
SC_IEntityListCtrl * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
SC_IEntityListCtrl * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
SC_IEntityListCtrl * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [range][in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
SC_IEntityListCtrl * This,
/* [in] */ DISPID dispIdMember,
/* [in] */ REFIID riid,
/* [in] */ LCID lcid,
/* [in] */ WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr);
/* [helpstring][propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_ScDisplayMode )(
SC_IEntityListCtrl * This,
/* [retval][out] */ long *Mode);
/* [helpstring][propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_ScDisplayMode )(
SC_IEntityListCtrl * This,
/* [in] */ long Mode);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScSetEntityGroup )(
SC_IEntityListCtrl * This,
/* [in] */ LPDISPATCH Entity);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScUpdate )(
SC_IEntityListCtrl * This);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScSetView )(
SC_IEntityListCtrl * This,
/* [in] */ LPDISPATCH View);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScLoadFromArchive )(
SC_IEntityListCtrl * This,
/* [in] */ LPDISPATCH Archive,
/* [in] */ BSTR Name,
long Flags,
/* [retval][out] */ long *Error);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScSaveToArchive )(
SC_IEntityListCtrl * This,
/* [in] */ LPDISPATCH Archive,
/* [in] */ BSTR Name,
long Flags,
/* [retval][out] */ long *Error);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScSetView2DCtrl )(
SC_IEntityListCtrl * This,
/* [in] */ LPDISPATCH ViewCtrl);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScCheckCommand )(
SC_IEntityListCtrl * This,
/* [in] */ long CmdId,
/* [in] */ long Flags,
/* [retval][out] */ long *Active);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScExecCommand )(
SC_IEntityListCtrl * This,
/* [in] */ long CmdId,
/* [in] */ long Param);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScSetFontSize )(
SC_IEntityListCtrl * This,
/* [in] */ long Size);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScItemGetCount )(
SC_IEntityListCtrl * This,
/* [in] */ long OnlySelected,
/* [retval][out] */ long *Count);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScItemIsSelected )(
SC_IEntityListCtrl * This,
/* [in] */ long Index,
/* [retval][out] */ long *IsSel);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScItemGetCoor )(
SC_IEntityListCtrl * This,
/* [in] */ long Index,
/* [in] */ long Coor,
/* [retval][out] */ double *Value);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScItemSetCoor )(
SC_IEntityListCtrl * This,
/* [in] */ long Index,
/* [in] */ double X,
/* [in] */ double Y,
/* [in] */ double Z);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScItemSetSelected )(
SC_IEntityListCtrl * This,
/* [in] */ long Index,
/* [in] */ long Selected);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScGetCurrentFatherEntity )(
SC_IEntityListCtrl * This,
/* [retval][out] */ LPDISPATCH *fatherEntity);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *ScSetColumnWidth )(
SC_IEntityListCtrl * This,
/* [in] */ long Index,
/* [in] */ long Width);
END_INTERFACE
} SC_IEntityListCtrlVtbl;
interface SC_IEntityListCtrl
{
CONST_VTBL struct SC_IEntityListCtrlVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define SC_IEntityListCtrl_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define SC_IEntityListCtrl_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define SC_IEntityListCtrl_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define SC_IEntityListCtrl_GetTypeInfoCount(This,pctinfo) \
( (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo) )
#define SC_IEntityListCtrl_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
( (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo) )
#define SC_IEntityListCtrl_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
( (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) )
#define SC_IEntityListCtrl_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
( (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) )
#define SC_IEntityListCtrl_get_ScDisplayMode(This,Mode) \
( (This)->lpVtbl -> get_ScDisplayMode(This,Mode) )
#define SC_IEntityListCtrl_put_ScDisplayMode(This,Mode) \
( (This)->lpVtbl -> put_ScDisplayMode(This,Mode) )
#define SC_IEntityListCtrl_ScSetEntityGroup(This,Entity) \
( (This)->lpVtbl -> ScSetEntityGroup(This,Entity) )
#define SC_IEntityListCtrl_ScUpdate(This) \
( (This)->lpVtbl -> ScUpdate(This) )
#define SC_IEntityListCtrl_ScSetView(This,View) \
( (This)->lpVtbl -> ScSetView(This,View) )
#define SC_IEntityListCtrl_ScLoadFromArchive(This,Archive,Name,Flags,Error) \
( (This)->lpVtbl -> ScLoadFromArchive(This,Archive,Name,Flags,Error) )
#define SC_IEntityListCtrl_ScSaveToArchive(This,Archive,Name,Flags,Error) \
( (This)->lpVtbl -> ScSaveToArchive(This,Archive,Name,Flags,Error) )
#define SC_IEntityListCtrl_ScSetView2DCtrl(This,ViewCtrl) \
( (This)->lpVtbl -> ScSetView2DCtrl(This,ViewCtrl) )
#define SC_IEntityListCtrl_ScCheckCommand(This,CmdId,Flags,Active) \
( (This)->lpVtbl -> ScCheckCommand(This,CmdId,Flags,Active) )
#define SC_IEntityListCtrl_ScExecCommand(This,CmdId,Param) \
( (This)->lpVtbl -> ScExecCommand(This,CmdId,Param) )
#define SC_IEntityListCtrl_ScSetFontSize(This,Size) \
( (This)->lpVtbl -> ScSetFontSize(This,Size) )
#define SC_IEntityListCtrl_ScItemGetCount(This,OnlySelected,Count) \
( (This)->lpVtbl -> ScItemGetCount(This,OnlySelected,Count) )
#define SC_IEntityListCtrl_ScItemIsSelected(This,Index,IsSel) \
( (This)->lpVtbl -> ScItemIsSelected(This,Index,IsSel) )
#define SC_IEntityListCtrl_ScItemGetCoor(This,Index,Coor,Value) \
( (This)->lpVtbl -> ScItemGetCoor(This,Index,Coor,Value) )
#define SC_IEntityListCtrl_ScItemSetCoor(This,Index,X,Y,Z) \
( (This)->lpVtbl -> ScItemSetCoor(This,Index,X,Y,Z) )
#define SC_IEntityListCtrl_ScItemSetSelected(This,Index,Selected) \
( (This)->lpVtbl -> ScItemSetSelected(This,Index,Selected) )
#define SC_IEntityListCtrl_ScGetCurrentFatherEntity(This,fatherEntity) \
( (This)->lpVtbl -> ScGetCurrentFatherEntity(This,fatherEntity) )
#define SC_IEntityListCtrl_ScSetColumnWidth(This,Index,Width) \
( (This)->lpVtbl -> ScSetColumnWidth(This,Index,Width) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __SC_IEntityListCtrl_INTERFACE_DEFINED__ */
EXTERN_C const CLSID CLSID_ScEntityListCtrl;
#ifdef __cplusplus
class DECLSPEC_UUID("B6F97136-7206-11D1-9736-008048EEE00C")
ScEntityListCtrl;
#endif
#endif /* __ScapsSamEntityListCtrl_LIBRARY_DEFINED__ */
/* Additional Prototypes for ALL interfaces */
/* end of Additional Prototypes */
#ifdef __cplusplus
}
#endif
#endif
|
f3881d61bffa1d6375904a9e6dd48c553da8956e | 65ceb6530f3105924296fdd1f7a546cba22da101 | /Tests/tests-main.cpp | 136c2e70194a49a9c6160d2534de6e2f344892e9 | [] | no_license | wbu2/TypingSurfer | 4fee826e62a24e59dc0acdb98ef8ded3218ceef2 | 8d37d98e7015d91645999d223bc6f0a960757802 | refs/heads/master | 2022-03-31T04:25:03.653656 | 2019-12-12T05:07:06 | 2019-12-12T05:07:06 | 228,935,962 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 81 | cpp | tests-main.cpp | #define CATCH_CONFIG_MAIN
#define CATCH_CONFIG_COMPILE_FAST
#include "catch.hpp"
|
5e64d1695137682e74da995d59ccfd65e78ec53c | 43121b704a46a67e8e28195ee867460fb877f8ad | /L10_Project_Gamepad_and_Fullscreen_handout/Source/Enemy_Cargol.cpp | 0dfe962cd85b92364e531156de293afe4faea715 | [
"MIT"
] | permissive | Zeta115/Comodines | f6c491c138d796ec9a545189a1813fe87eeafa88 | 1b49f655e312aa1cb78da32827c56f1346641f12 | refs/heads/main | 2023-05-15T13:31:33.632882 | 2021-06-15T15:56:54 | 2021-06-15T15:56:54 | 339,491,855 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,777 | cpp | Enemy_Cargol.cpp | #include "Enemy_Cargol.h"
#include "Application.h"
#include "ModuleCollisions.h"
#include "ModuleEnemies.h"
#include <iostream>
using namespace std;
Enemy_Cargol::~Enemy_Cargol()
{
/*if (collider != nullptr)
collider->pendingToDelete = true;*/
}
Enemy_Cargol::Enemy_Cargol(int x, int y) : Enemy(x, y)
{
// idle animation - just one sprite
idleAnim.PushBack({ 3, 55, 22, 28 });
// Up
upAnim.PushBack({ 200, 66, 22, 32 });
upAnim.PushBack({ 233, 67, 22, 31 });
upAnim.PushBack({ 2, 107, 22, 30 });
upAnim.loop = true;
upAnim.speed = 0.05f;
// Down
//downAnim.PushBack({ 110, 172, 23, 30 });
downAnim.PushBack({ 2, 68, 22, 28 });
downAnim.PushBack({ 35, 69, 22, 28 });
downAnim.PushBack({ 68, 69, 22, 28 });
downAnim.loop = true;
downAnim.speed = 0.05f;
// Right
rightAnim.PushBack({ 100, 105, 26, 30 });
rightAnim.PushBack({ 135, 107, 28, 28 });
rightAnim.PushBack({ 166, 106, 27, 39 });
rightAnim.loop = true;
rightAnim.speed = 0.05f;
// Left
leftAnim.PushBack({ 99, 67, 27, 29 });
leftAnim.PushBack({ 129, 68, 28, 28 });
leftAnim.PushBack({ 166, 66, 26, 30 });
leftAnim.loop = true;
leftAnim.speed = 0.05f;
collider = App->collisions->AddCollider({ 0, 0, 21, 24 }, Collider::Type::ENEMY, (Module*)App->enemies);
}
void Enemy_Cargol::OnCollision(Collider* c1, Collider* c2)
{
cout << "c1 es:" << c1 << " || c2 es:" << c2;
if ((c1 == collider) && (destroyed == false))
{
if (c1 == collider && destroyed == false) {
switch (c2->type) {
case Collider::Type::WALL:
cout << "SNAIL HITS WALL";
if (c1->rect.y < c2->rect.y) // up
{
position.y -= speed;
}
else if (c1->rect.y + 2 > c2->rect.y + c2->rect.h) // down
{
position.y += speed;
}
if (c1->rect.x < c2->rect.x) // left
{
position.x -= speed;
}
else if (c1->rect.x + 2 > c2->rect.x + c2->rect.w) // right
{
position.x += speed;
}; break;
case Collider::Type::FLOWER:
cout << "SNAIL HITS FLOWER";
if (c1->rect.y < c2->rect.y) // up
{
position.y -= speed;
}
else if (c1->rect.y + 2 > c2->rect.y + c2->rect.h) // down
{
position.y += speed;
}
if (c1->rect.x < c2->rect.x) // left
{
position.x -= speed;
}
else if (c1->rect.x + 2 > c2->rect.x + c2->rect.w) // right
{
position.x += speed;
}; break;
case Collider::Type::ENEMY:
cout << "SNAIL HITS ANOTHER ENEMY";
if (c1->rect.y < c2->rect.y) // up
{
position.y -= speed;
}
else if (c1->rect.y + 2 > c2->rect.y + c2->rect.h) // down
{
position.y += speed;
}
if (c1->rect.x < c2->rect.x) // left
{
position.x -= speed;
}
else if (c1->rect.x + 2 > c2->rect.x + c2->rect.w) // right
{
position.x += speed;
}; break;
case Collider::Type::PLAYER:
cout << "SNAIL HITS PLAYER";
death = true;
SetToDelete();
if (c1->rect.y < c2->rect.y) // up
{
position.y = position.y;
}
else if (c1->rect.y + 2 > c2->rect.y + c2->rect.h) // down
{
position.y = position.y;
}
if (c1->rect.x < c2->rect.x) // left
{
position.x = position.x;
}
else if (c1->rect.x + 2 > c2->rect.x + c2->rect.w) // right
{
position.x += position.x;
}; break;
}
/* if (c1->type == Collider::Type::PLAYER != c2->type == Collider::Type::POWERUP)
{
powerActive = false;
}*/
//player and enemies
if (c1 == collider && destroyed == false && (c1->type == Collider::Type::ENEMY && c2->type == Collider::Type::PLAYER))
{
death = true;
SetToDelete();
cout << "SNAIL HITS PLAYER v2";
}
}
/*if (c1->type == Collider::Type::PLAYER && c2->type == Collider::Type::MACHINE)
{
App->audio->PlayFx(winFx);
win = true;
}
if (c1->type == Collider::Type::PLAYER && c2->type == Collider::Type::POWERUP) {
powerActive = false;
powerTouch = true;
}*/
}
}
void Enemy_Cargol::SetToDelete()
{
pendingToDelete = true;
if (collider != nullptr)
collider->pendingToDelete = true;
}
void Enemy_Cargol::Update()
{
if (death == true)
{
destroyed = true;
death = false;
cout << "Cargol eliminat";
}
if (down == true) {
currentAnim = &downAnim;
if (position.y >= 30) {
position.y += speed;
if (position.y == 215) {
down = false;
up = true;
}
}
}
if (up == true) {
currentAnim = &upAnim;
if (position.y < 300) {
position.y -= speed;
if (position.y == 50) {
down = true;
up = false;
}
}
}
collider->SetPos(position.x, position.y);
// Call to the base class. It must be called at the end
// It will update the collider depending on the position
Enemy::Update();
}
|
b4c0f9306676b888fbb1d720c4719c932848948f | 5c7ab506d11d3365b87e7c9523697888ed87ceb3 | /hittable_list.h | 0dd2204b69428ac7b4b1be706bf29f130c8b77c7 | [] | no_license | AIxiaodi4Ever/ray-tracing-rest-life | 6bd57b8d75478806556c1a5f6a4fc81dcc0e8f12 | d0f033b65d3bb858fb495b9f864818fd04b7fecc | refs/heads/master | 2023-06-08T01:14:00.239247 | 2021-06-23T11:02:18 | 2021-06-23T11:02:18 | 348,640,172 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,475 | h | hittable_list.h | /*
* this file define a list that contain all the hittable object.
* Define function hit() to iteratively call the hit() function of those
* hittable object to get the closest hitted object and record the hit point in hit_record
*/
#ifndef HITTABLE_LIST_H
#define HITTABLE_LIST_H
#include "hittable.h"
class hittable_list : public hittable {
public:
__device__ hittable_list() { };
__device__ hittable_list(hittable **l, int n) {list = l; list_size = n;}
__device__ virtual bool hit(const ray &r, float t_min, float t_max, hit_record &rec) const;
__device__ virtual bool bounding_box(float t0, float t1, aabb &output_box) const;
__device__ virtual float pdf_value(const vec3& o, const vec3& v) const;
__device__ virtual vec3 random(const vec3& o, curandState *local_rand_state) const;
public:
hittable **list;
int list_size;
};
__device__ bool hittable_list::hit(const ray& r, float t_min, float t_max, hit_record &rec) const
{
hit_record temp_rec;
bool hit_anything = false;
float closest_so_far = t_max;
for (int i = 0; i < list_size; ++i)
{
if (list[i]->hit(r, t_min, closest_so_far, temp_rec))
{
hit_anything = true;
closest_so_far = temp_rec.t;
rec = temp_rec;
}
}
return hit_anything;
}
// 返回列表内所有物体边界的并集
// ***还不知道应不应该是__device__***
__device__ bool hittable_list::bounding_box(float t0, float t1, aabb &output_box) const
{
int nums = sizeof(list) / sizeof(hittable *);
if (sizeof(list) == 0)
return false;
aabb temp_box;
bool first_box = true;
for (int i = 0; i < nums; ++i)
{
// 如果某一个物体没有边界,直接false?
if (!list[i]->bounding_box(t0, t1, temp_box))
return false;
output_box = first_box ? temp_box : surrounding_box(output_box, temp_box);
first_box = false;
}
return true;
}
__device__ float hittable_list::pdf_value(const vec3& o, const vec3& v) const
{
float weight = 1.0 / list_size;
float sum = 0.0;
for (int i = 0; i < list_size; ++i)
{
sum += weight * list[i]->pdf_value(o, v);
}
return sum;
}
__device__ vec3 hittable_list::random(const vec3& o, curandState *local_rand_state) const
{
int random_index = (int)(random_float(local_rand_state) * (list_size - 1));
return list[random_index]->random(o, local_rand_state);
}
#endif |
171e811bce7fb1ac262bbea6edec98d832c64c96 | 9d1886cd5fab52eaf88dc0a8e688d30cd34b6105 | /labex12-tombom66/prob02/main.cpp | a7770f076afcec59296f5619fb04755e2d6d0ca6 | [
"MIT"
] | permissive | tombom66/Computer-science | 13f700abdfeabfbe548017ebefb774a19a71778f | 1ee3c7826a6321db5b4bcb5c93b60670df72e24e | refs/heads/master | 2020-08-03T11:37:38.893227 | 2019-10-13T02:09:51 | 2019-10-13T02:09:51 | 211,738,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 142 | cpp | main.cpp | #include "dsa.hpp"
#include <iostream>
int main() {
Classroom cpsc121;
cpsc121.populate("students.txt");
cpsc121.list();
return 0;
}
|
3e6e499f6854c234e6eee8ba9e772067619efb00 | e24fc305aa4bcd515138b9b4aa9dd7a1365733cc | /cs161/wk2/fireslaw.cpp | 43e47e38f0055cb18b0789956094253dcde916d1 | [] | no_license | jspolsdoff/osu_cs | 5271b4ba7c751153ae6fd1e6b7d43a71565e02e0 | 1917ff246b108c2e41faac6d713475a930cca7ca | refs/heads/master | 2021-01-13T13:58:39.557904 | 2015-06-08T04:36:36 | 2015-06-08T04:36:36 | 27,233,011 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,341 | cpp | fireslaw.cpp | /******************************************************************************
*Author: James Spolsdoff
*Date Created: 10/7/14
*Last Modified Date: 10/8/14
*Filename: fireslaw.cpp
*
*Overview:
*This program tests to see if a meeting room is in violation of the fire
*regulations regarding the maximum room capcity. It will tell you how many
*more people can attend if you are under the limit. If you are over the limit
*it will tell you how many people must leave the meeting.
******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
int room_capacity, // the capacity of the meeting room
attendees, // how many people will be attending the meeting
exclude, // how many people to exclude if room is over limit
include; // how many people to include if room in under limit
// tell the user about the program and the needed inputs
cout << "Before you can host your meeting we need to make sure that" << endl;
cout << "you are in compliance with the fire laws." << endl;
cout << "If you are in compliance I will tell you how many more people" << endl;
cout << "you can invite to your meeting." << endl;
cout << "If you are not in compliance I will tell you how many people you" << endl;
cout << "need to ask to leave." << endl;
// ask what their meeting room capacity is
cout << "First tell me what the capacity of the room is: ";
// store in variable
cin >> room_capacity;
// ask how many people will attend the meeting
cout << "How people will attend the meeting: ";
// store in variable
cin >> attendees;
// test if the meeting is in compliance, if not tell user how many people must leave
if (attendees > room_capacity)
{
exclude = (attendees - room_capacity);
cout << "You are in violation of the fire law and you must ask " << exclude << endl;
cout << "people to leave the meeting." << endl;
}
// the room is in compliance with the law and tell user how many more people can attend
else
{
include = (room_capacity - attendees);
cout << "You are in compliance with the fire law and you can invite " << include << endl;
cout << "more people to your meeting." << endl;
}
return 0;
}
|
0de9a083c97d7477c169d2e42be05d4cd58baa58 | 6b01f24e25105643066989031fa763e303c6436d | /maya/Workshop2017/src/BBoxCubeCmd.cpp | 30d4c2054b988f10e08e7936105ba79a20ce2dfd | [
"MIT"
] | permissive | smoi23/sandbox | 0d38a5a7b6d98f8ff29d32faf8ca7dd4cf459f9b | 4d02a509c82b2ec3712f91bbc86cc5df37174396 | refs/heads/master | 2019-07-28T19:24:14.162881 | 2018-02-06T14:37:20 | 2018-02-06T14:37:20 | 29,189,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,263 | cpp | BBoxCubeCmd.cpp | /*
* WorkshopCmd3.cpp
*
* Created on: May 15, 2017
* Author: Andreas Schuster
*
*/
#include <stdio.h>
#include <iostream>
#include <maya/MPxCommand.h>
#include <maya/MArgList.h>
#include <maya/MStatus.h>
#include <maya/MSyntax.h>
#include <maya/MStringArray.h>
#include <maya/MGlobal.h>
#include <maya/MArgDatabase.h>
#include <maya/MItSelectionList.h>
#include <maya/MDagPath.h>
#include <maya/MItMeshVertex.h>
#include <maya/MPoint.h>
#include <maya/MPointArray.h>
#include <maya/MMatrix.h>
#include <maya/MFnDagNode.h>
#include <maya/MFnMesh.h>
#include <maya/MItMeshPolygon.h>
#include <maya/MItMeshEdge.h>
#include <maya/MFnTransform.h>
#include <maya/MFnMeshData.h>
#include <maya/MFnTypedAttribute.h>
#include <maya/MPlug.h>
#include <maya/MBoundingBox.h>
#include <maya/MFnSet.h>
#include "BBoxCubeCmd.h"
//
#define kHelpFlag "-h"
#define kHelpFlagLong "-help"
// //
#define kSizeFlag "s"
#define kSizeFlagLong "size"
MObject BBoxCubeCmd::m_meshTransform;
MString BBoxCubeCmd::s_name("BBoxCube");
BBoxCubeCmd::BBoxCubeCmd():
m_doHelp(false),
m_size(1.0),
m_isQuery(false)
{
std::cout << "In BBoxCubeCmd::BBoxCubeCmd()" << std::endl;
}
BBoxCubeCmd::~BBoxCubeCmd()
{
std::cout << "In BBoxCubeCmd::~BBoxCubeCmd()" << std::endl;
}
MSyntax BBoxCubeCmd::newSyntax()
{
MSyntax syntax;
std::cout << "In BBoxCubeCmd::BBoxCubeCmd()" << std::endl;
// //
syntax.enableQuery(true);
syntax.enableEdit(false);
syntax.useSelectionAsDefault(true);
syntax.setObjectType(MSyntax::kSelectionList, 1);
syntax.addFlag(kHelpFlag, kHelpFlagLong, MSyntax::kNoArg);
syntax.addFlag(kSizeFlag, kSizeFlagLong, MSyntax::kDouble);
return syntax;
}
MStatus BBoxCubeCmd::doIt(const MArgList &args)
{
MStatus stat = MS::kSuccess;
std::cout << "In BBoxCubeCmd::doIt()" << std::endl;
stat = parseArgs(args);
if (m_doHelp)
{
MGlobal::displayInfo("Show help");
}
else if (m_isQuery)
{
MString selectionString("");
MItSelectionList iter(m_selection);
for (iter.reset(); !iter.isDone(); iter.next())
{
MDagPath dagpath;
iter.getDagPath(dagpath);
selectionString += dagpath.fullPathName();
}
MGlobal::displayInfo(selectionString);
}
else
{
if (m_selection.length() > 0)
{
stat = redoIt();
}
else
{
MGlobal::displayError("Pass or select at least one polygon object.");
}
}
return stat;
}
MStatus BBoxCubeCmd::redoIt()
{
std::cout << "In BBoxCubeCmd::redoIt()" << std::endl;
MStatus stat;
// start new buffers
MPointArray vertexBuffer;
MIntArray faceCount;
MIntArray vertexIndex;
MItSelectionList iter(m_selection, MFn::kTransform);
for (iter.reset(); !iter.isDone(); iter.next())
{
MDagPath dagpath;
iter.getDagPath(dagpath);
MGlobal::displayInfo(dagpath.fullPathName());
MMatrix dagMatrix = dagpath.inclusiveMatrix();
stat = dagpath.extendToShape();
if (stat == MS::kSuccess)
{
MFnDagNode fnDagNode(dagpath);
MBoundingBox bbox = fnDagNode.boundingBox();
bbox.transformUsing(dagMatrix);
addCubeFromBbox(vertexBuffer, faceCount, vertexIndex, bbox);
}
}
MGlobal::displayInfo(MString("VertexBufferlength: ") + vertexBuffer.length());
// create place for the data
MFnMeshData dataFn;
MObject dataWrapper = dataFn.create();
// create the mesh from the mesh function set
MFnMesh fnMesh;
fnMesh.create(vertexBuffer.length(), faceCount.length(), vertexBuffer, faceCount, vertexIndex, dataWrapper, &stat);
if (stat != MS::kSuccess)
{
MGlobal::displayError("Failed to create mesh: " + stat.errorString());
return stat;
}
// set normals to make the cube hard edged
int numFaceVertices = faceCount.length() * 4; // assuming quads!
MVectorArray normals(numFaceVertices);
MIntArray faces(numFaceVertices);
MIntArray vertices(numFaceVertices);
MItMeshPolygon iterFace(dataWrapper);
int idx = 0;
for (iterFace.reset(); !iterFace.isDone(); iterFace.next())
{
MIntArray vertexIds;
iterFace.getVertices(vertexIds);
//std::cout << "faceVertices count " << vertexIds.length() << std::endl;
//std::cout << vertexIds[0] << " " << vertexIds[1] << " " << vertexIds[2] << " " << vertexIds[3] << std::endl;
MVector faceNormal;
iterFace.getNormal(faceNormal);
//std::cout << "Face normal: " << faceNormal.x << " " << faceNormal.y << " " << faceNormal.z << std::endl;
for (int i = 0; i < 4; i++) // assuming quads!
{
faces.set(iterFace.index(), idx * 4+i);
vertices.set(vertexIds[i], idx * 4 + i);
normals.set(faceNormal, idx * 4 + i);
// fnMesh.setFaceVertexNormal(faceNormal, iterFace.index(), vertexIds[i]); // set normal for every face vertex separately
}
idx++;
}
fnMesh.setFaceVertexNormals(normals, faces, vertices);
fnMesh.updateSurface();
MObject transformNode = dagModifier.createNode("mesh", MObject::kNullObj, &stat);
if (stat != MS::kSuccess)
{
MGlobal::displayError("Failed to create transform: " + stat.errorString());
return stat;
}
dagModifier.doIt();
// Set the mesh node to use the geometry we created for it.
setMeshData(transformNode, dataWrapper);
// assign to shading group
MSelectionList selectionList;
stat = selectionList.add("initialShadingGroup");
if (stat == MS::kSuccess)
{
MObject shaderNode;
selectionList.getDependNode(0, shaderNode);
MFnSet setFn(shaderNode);
MFnDagNode dagFn(transformNode);
MObject mesh = dagFn.child(0);
setFn.addMember(mesh);
}
return MS::kSuccess;
}
void BBoxCubeCmd::addCubeFromBbox(MPointArray &o_vertexBuffer, MIntArray &o_vertexCount, MIntArray &o_vertexIndex, MBoundingBox &i_bbox)
{
int offset = o_vertexBuffer.length();
// 8 vertices
o_vertexBuffer.append(i_bbox.max());
o_vertexBuffer.append(MPoint(i_bbox.max().x, i_bbox.max().y, i_bbox.min().z));
o_vertexBuffer.append(MPoint(i_bbox.min().x, i_bbox.max().y, i_bbox.min().z));
o_vertexBuffer.append(MPoint(i_bbox.min().x, i_bbox.max().y, i_bbox.max().z));
o_vertexBuffer.append(i_bbox.min());
o_vertexBuffer.append(MPoint(i_bbox.max().x, i_bbox.min().y, i_bbox.min().z));
o_vertexBuffer.append(MPoint(i_bbox.max().x, i_bbox.min().y, i_bbox.max().z));
o_vertexBuffer.append(MPoint(i_bbox.min().x, i_bbox.min().y, i_bbox.max().z));
// every face has 4 vertices
for (int i = 0; i < 6; i++)
{
o_vertexCount.append(4);
}
// face top
o_vertexIndex.append(offset + 0);
o_vertexIndex.append(offset + 1);
o_vertexIndex.append(offset + 2);
o_vertexIndex.append(offset + 3);
// face front
o_vertexIndex.append(offset + 0);
o_vertexIndex.append(offset + 3);
o_vertexIndex.append(offset + 7);
o_vertexIndex.append(offset + 6);
// face right
o_vertexIndex.append(offset + 1);
o_vertexIndex.append(offset + 0);
o_vertexIndex.append(offset + 6);
o_vertexIndex.append(offset + 5);
// face left
o_vertexIndex.append(offset + 3);
o_vertexIndex.append(offset + 2);
o_vertexIndex.append(offset + 4);
o_vertexIndex.append(offset + 7);
// face back
o_vertexIndex.append(offset + 2);
o_vertexIndex.append(offset + 1);
o_vertexIndex.append(offset + 5);
o_vertexIndex.append(offset + 4);
// face bottom
o_vertexIndex.append(offset + 4);
o_vertexIndex.append(offset + 5);
o_vertexIndex.append(offset + 6);
o_vertexIndex.append(offset + 7);
}
MStatus BBoxCubeCmd::setMeshData(MObject transform, MObject dataWrapper)
{
MStatus st;
// Get the mesh node.
MFnDagNode dagFn(transform);
MObject mesh = dagFn.child(0);
// The mesh node has two geometry inputs: 'inMesh' and 'cachedInMesh'.
// 'inMesh' is only used when it has an incoming connection, otherwise
// 'cachedInMesh' is used. Unfortunately, the docs say that 'cachedInMesh'
// is for internal use only and that changing it may render Maya
// unstable.
//
// To get around that, we do the little dance below...
// Use a temporary MDagModifier to create a temporary mesh attribute on
// the node.
MFnTypedAttribute tAttr;
MObject tempAttr = tAttr.create("tempMesh", "tmpm", MFnData::kMesh);
MDagModifier tempMod;
st = tempMod.addAttribute(mesh, tempAttr);
st = tempMod.doIt();
// Set the geometry data onto the temp attribute.
dagFn.setObject(mesh);
MPlug tempPlug = dagFn.findPlug(tempAttr);
st = tempPlug.setValue(dataWrapper);
// Use the temporary MDagModifier to connect the temp attribute to the
// node's 'inMesh'.
MPlug inMeshPlug = dagFn.findPlug("inMesh");
st = tempMod.connect(tempPlug, inMeshPlug);
st = tempMod.doIt();
// Force the mesh to update by grabbing its output geometry.
dagFn.findPlug("outMesh").asMObject();
// Undo the temporary modifier.
st = tempMod.undoIt();
return st;
}
MStatus BBoxCubeCmd::undoIt()
{
std::cout << "In BBoxCubeCmd::undoIt()" << std::endl;
dagModifier.undoIt();
return MS::kSuccess;
}
bool BBoxCubeCmd::isUndoable() const
{
std::cout << "In BBoxCubeCmd::isUndoable()" << std::endl;
return !m_isQuery;
}
void* BBoxCubeCmd::creator()
{
std::cout << "In BBoxCubeCmd::creator()" << std::endl;
return new BBoxCubeCmd();
}
MStatus BBoxCubeCmd::parseArgs(const MArgList &args)
{
MStatus stat = MS::kSuccess;
MArgDatabase argData(syntax(), args);
m_doHelp = argData.isFlagSet(kHelpFlag);
m_isQuery = argData.isQuery();
if (!m_isQuery) // only update selection if not in query mode
{
argData.getObjects(m_selection);
}
return stat;
}
|
316f153e61a0ee1b1b3462f760b0a8ac9975d1e6 | d9962bfbfd3356e60d84970bfdc91a64f1eb0cb5 | /src/screens/navmesh/Astar.hpp | bad11a4023285d067f11a7ef9fe1ce310db50d5a | [] | no_license | aljazk/navigation_mesh | 276b13c651ade0ff8e0edb24572d47bd8dcd6701 | 11d9a51f784163130980e2eb2d8748164caa2537 | refs/heads/master | 2021-01-20T00:29:14.827627 | 2017-07-25T13:44:31 | 2017-07-25T13:44:31 | 89,141,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | hpp | Astar.hpp | #ifndef ASTAR_H
#define ASTAR_H
#include "Path.hpp"
#include "Node.hpp"
#include <vector>
#include <SFML/Graphics.hpp>
namespace nm{
class Astar{
public:
Astar();
static std::vector<unsigned int> run(std::vector<Node> &, unsigned int, unsigned int);
static std::vector<unsigned int> run(std::vector<Node> &, unsigned int, unsigned int, sf::RenderWindow &);
};
}
#endif |
e93f326de39c520ea35d3edcc35440bb63e087b2 | d55add22ef6bc242d7f67e610c73469a2d01133d | /ChainOfResponsibility/JINGLI.cpp | 61e71084f25e5aa2b3ef058e09508de67008a5b4 | [] | no_license | Chengp5/Design-Pattern | 4cf0d40be44f656fbf54a6cb4556731cb117e39c | 0e4e6a67a7ff52878915d301a1b66aada55a28d0 | refs/heads/main | 2023-06-03T14:11:52.474207 | 2021-06-23T11:39:41 | 2021-06-23T11:39:41 | 368,556,103 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20 | cpp | JINGLI.cpp | #include "JINGLI.h"
|
370ff1ebd864e2fffe193bd3f654a6bea2bb5e95 | 14635b76a0ca31e41cd2389e16888eaac70d46fd | /src/roscpp_nodewrap/src/TimerManager.cpp | 6908fb310919761ad5db644d03135118cb796769 | [] | no_license | Kalmend/thesis | 1801f5eee041dcb8b096db1b51f61496e63b4d7a | 6871cd5561558d1620868dcda6ea06ec44e63087 | refs/heads/master | 2020-03-17T11:51:34.687318 | 2018-05-15T19:44:31 | 2018-05-15T19:44:31 | 133,566,390 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,067 | cpp | TimerManager.cpp | /******************************************************************************
* Copyright (C) 2014 by Ralf Kaestner *
* ralf.kaestner@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the Lesser GNU General Public License as published by*
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* Lesser GNU General Public License for more details. *
* *
* You should have received a copy of the Lesser GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
******************************************************************************/
#include <limits>
#include <boost/thread.hpp>
#include <boost/thread/locks.hpp>
#include <ros/callback_queue_interface.h>
#include "roscpp_nodewrap/NodeImpl.h"
#include "roscpp_nodewrap/timer/TimerInfo.h"
#include "roscpp_nodewrap/timer/TimerQueueCallback.h"
#include "roscpp_nodewrap/timer/TimerManager.h"
namespace nodewrap {
/*****************************************************************************/
/* Constructors and Destructor */
/*****************************************************************************/
TimerManager::TimerManager() {
}
TimerManager::TimerManager(const TimerManager& src) :
Manager<Timer, int>(src) {
}
TimerManager::TimerManager(const NodeImplPtr& node) {
impl.reset(new Impl(node));
}
TimerManager::~TimerManager() {
}
TimerManager::Impl::Impl(const NodeImplPtr& node) :
numTimers(0),
newTimer(false),
started(false),
canceled(false),
node(node) {
}
TimerManager::Impl::~Impl() {
shutdown();
}
/*****************************************************************************/
/* Accessors */
/*****************************************************************************/
const NodeImplPtr& TimerManager::Impl::getNode() const {
return node;
}
void TimerManager::Impl::setTimerPeriod(int handle, const ros::Duration&
period) {
boost::mutex::scoped_lock lock(timerMutex);
TimerInfoPtr timerInfo = findTimer(handle);
if (timerInfo) {
{
boost::mutex::scoped_lock lock(waitingQueueMutex);
timerInfo->period = period;
timerInfo->expectedTimeOfNextCallback = ros::Time::now()+period;
waitingQueue.sort(boost::bind(
&TimerManager::Impl::compareWaitingTimers, this, _1, _2));
}
newTimer = true;
timerCondition.notify_one();
}
}
bool TimerManager::Impl::timerHasPending(int handle) {
boost::mutex::scoped_lock lock(timerMutex);
TimerInfoPtr timerInfo = findTimer(handle);
if (timerInfo) {
if (timerInfo->hasTrackedObject) {
ros::VoidConstPtr trackedObject = timerInfo->trackedObject.lock();
if (!trackedObject)
return false;
}
boost::mutex::scoped_lock lock(timerInfo->mutex);
return (timerInfo->expectedTimeOfNextCallback <= ros::Time::now()) ||
timerInfo->numWaitingCallbacks;
}
else
return false;
}
/*****************************************************************************/
/* Methods */
/*****************************************************************************/
Timer TimerManager::addTimer(const ros::TimerOptions& options) {
Timer timer;
if (impl) {
{
boost::mutex::scoped_lock lock(impl->mutex);
int handle = ++impl->as<TimerManager::Impl>().numTimers;
timer.impl.reset(new Timer::Impl(options, handle, impl));
impl->instances.insert(std::make_pair(handle, timer.impl));
}
if (timer.impl->as<Timer::Impl>().autostart)
timer.impl->as<Timer::Impl>().start();
}
return timer;
}
void TimerManager::Impl::startTimer(int handle) {
Timer::ImplPtr timerImpl = find(handle);
if (timerImpl) {
TimerInfoPtr timerInfo(new TimerInfo);
timerInfo->handle = handle;
timerInfo->period = timerImpl->as<Timer::Impl>().period;
timerInfo->callback = timerImpl->as<Timer::Impl>().callback;
timerInfo->callbackQueue = timerImpl->as<Timer::Impl>().callbackQueue;
timerInfo->expectedTimeOfLastCallback = ros::Time::now();
timerInfo->expectedTimeOfNextCallback =
timerInfo->expectedTimeOfLastCallback+timerInfo->period;
timerInfo->oneshot = timerImpl->as<Timer::Impl>().oneshot;
ros::VoidConstPtr trackedObject =
timerImpl->as<Timer::Impl>().trackedObject.lock();
if (trackedObject) {
timerInfo->trackedObject = timerImpl->as<Timer::Impl>().trackedObject;
timerInfo->hasTrackedObject = true;
}
{
boost::mutex::scoped_lock lock(timerMutex);
timers.push_back(timerInfo);
if (!started) {
spinner = boost::thread(boost::bind(&TimerManager::Impl::spin, this));
started = true;
}
{
boost::mutex::scoped_lock lock(waitingQueueMutex);
waitingQueue.push_back(timerInfo->handle);
waitingQueue.sort(boost::bind(
&TimerManager::Impl::compareWaitingTimers, this, _1, _2));
}
newTimer = true;
timerCondition.notify_all();
}
}
}
void TimerManager::Impl::stopTimer(int handle) {
ros::CallbackQueueInterface* callbackQueue = 0;
uint64_t id = 0;
{
boost::mutex::scoped_lock lock(timerMutex);
for (std::list<TimerInfoPtr>::iterator it = timers.begin();
it != timers.end(); ++it) {
const TimerInfoPtr& timerInfo = *it;
if (timerInfo->handle == handle) {
timerInfo->removed = true;
callbackQueue = timerInfo->callbackQueue;
id = (uint64_t)timerInfo.get();
timers.erase(it);
break;
}
}
{
boost::mutex::scoped_lock lock(waitingQueueMutex);
std::list<int>::iterator it = std::find(waitingQueue.begin(),
waitingQueue.end(), handle);
if (it != waitingQueue.end())
waitingQueue.erase(it);
}
}
if (callbackQueue)
callbackQueue->removeByID(id);
}
void TimerManager::Impl::shutdown() {
canceled = true;
{
boost::mutex::scoped_lock lock(timerMutex);
timerCondition.notify_all();
}
if (started)
spinner.join();
}
bool TimerManager::Impl::compareWaitingTimers(int leftHandle, int
rightHandle) {
TimerInfoPtr leftTimerInfo = findTimer(leftHandle);
TimerInfoPtr rightTimerInfo = findTimer(rightHandle);
if (!leftTimerInfo || !rightTimerInfo)
return leftTimerInfo < rightTimerInfo;
return (leftTimerInfo->expectedTimeOfNextCallback <
rightTimerInfo->expectedTimeOfNextCallback);
}
TimerInfoPtr TimerManager::Impl::findTimer(int handle) {
for (std::list<TimerInfoPtr>::iterator it = timers.begin();
it != timers.end(); ++it)
if ((*it)->handle == handle)
return *it;
return TimerInfoPtr();
}
void TimerManager::Impl::scheduleTimerCallback(const TimerInfoPtr&
timerInfo) {
boost::mutex::scoped_lock lock(timerMutex);
if (!timerInfo->removed) {
updateNextTimerCallback(timerInfo, ros::Time::now());
{
boost::mutex::scoped_lock lock(waitingQueueMutex);
waitingQueue.push_back(timerInfo->handle);
waitingQueue.sort(boost::bind(
&TimerManager::Impl::compareWaitingTimers, this, _1, _2));
}
newTimer = true;
timerCondition.notify_one();
}
}
void TimerManager::Impl::updateNextTimerCallback(const TimerInfoPtr&
timerInfo, const ros::Time& now) {
if (!timerInfo->oneshot) {
if (timerInfo->expectedTimeOfNextCallback <= now) {
timerInfo->expectedTimeOfLastCallback =
timerInfo->expectedTimeOfNextCallback;
timerInfo->expectedTimeOfNextCallback += timerInfo->period;
}
if (timerInfo->expectedTimeOfNextCallback+timerInfo->period < now)
timerInfo->expectedTimeOfNextCallback = now;
}
else
timerInfo->expectedTimeOfNextCallback = ros::Time(
std::numeric_limits<int>::max(), 999999999);
}
void TimerManager::Impl::spin() {
ros::Time now;
while (!canceled) {
ros::Time sleepEnd;
boost::mutex::scoped_lock lock(timerMutex);
if (ros::Time::now() < now) {
now = ros::Time::now();
for (std::list<TimerInfoPtr>::iterator it = timers.begin();
it != timers.end(); ++it) {
const TimerInfoPtr& timerInfo = *it;
if (now < timerInfo->expectedTimeOfLastCallback) {
timerInfo->expectedTimeOfLastCallback = now;
timerInfo->expectedTimeOfNextCallback = now+timerInfo->period;
}
}
}
now = ros::Time::now();
{
boost::mutex::scoped_lock lock(waitingQueueMutex);
if (!waitingQueue.empty()) {
TimerInfoPtr timerInfo = findTimer(waitingQueue.front());
while (!waitingQueue.empty() && timerInfo &&
(timerInfo->expectedTimeOfNextCallback <= now)) {
now = ros::Time::now();
ros::CallbackInterfacePtr callback(
new TimerQueueCallback(shared_from_this(), timerInfo,
timerInfo->expectedTimeOfLastCallback,
timerInfo->actualTimeOfLastCallback,
timerInfo->expectedTimeOfNextCallback)
);
ros::CallbackQueueInterface* callbackQueue =
timerInfo->callbackQueue ? timerInfo->callbackQueue :
node->getNodeHandle().getCallbackQueue();
callbackQueue->addCallback(callback, (uint64_t)timerInfo.get());
waitingQueue.pop_front();
if (waitingQueue.empty())
break;
timerInfo = findTimer(waitingQueue.front());
}
if (timerInfo)
sleepEnd = timerInfo->expectedTimeOfNextCallback;
}
else
sleepEnd = now+ros::Duration(0.1);
}
while (!newTimer && (ros::Time::now() < sleepEnd) && !canceled) {
if (ros::Time::now() < now)
break;
now = ros::Time::now();
if (now >= sleepEnd)
break;
if (ros::Time::isSystemTime()) {
int remainingUsecs = std::max((int)((sleepEnd-now).toSec()*1e6), 1);
timerCondition.timed_wait(lock,
boost::posix_time::microseconds(remainingUsecs));
}
else
timerCondition.timed_wait(lock,
boost::posix_time::milliseconds(1));
}
newTimer = false;
}
}
}
|
f399315756e882823e34ec4a4cfad77832d3779d | f704fac222814ae1c46144ff41758268fa89ced7 | /CoinExchangeProblem.cpp | e8fdc12883d187c9b05cd5bd31e9977a14fdf543 | [] | no_license | ibrahimertanylmz/AlgorithmQuestions | 0fd13ab9a7ad55cdec4446f7f5379457198b734f | ee7567772436e0e2e496be466753b9ff5a85edff | refs/heads/master | 2022-11-02T15:48:46.936215 | 2020-06-19T22:51:05 | 2020-06-19T22:51:05 | 273,599,770 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | cpp | CoinExchangeProblem.cpp | #include <stdio.h>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
///------------------------------------------------------
/// Design a greedy algorithm that given a set of coins that includes 1
/// returns the minimum number of coins necessary to represent the amount
/// Pre-requisites: coins are NOT given in sorted order
/// Requirement: If you have "n" coins, your algorithm must run in O(nlogn)
///
int MinCoinExchange(vector<int>& coins, int amount) {
sort(coins.begin(), coins.end());
int size = coins.size();
int coinsNumber = 0;
for (int i = size - 1; i >= 0; i--)
{
while (amount >= coins[i])
{
amount -= coins[i];
coinsNumber++;
}
}
return coinsNumber;
} |
3d403d2460d18df2079d4539004c233857a065d0 | 36386e2061926bb152b8021b19149482fbcaada7 | /cppCourse/lab5z2/main.cpp | 84015c4d3516e2dc6a62a21e2994bed7edaed36b | [] | no_license | pierug/programs | 897b091fb2f0c9670d9d0a579e885ca5d6de19b9 | 65398d7e2fe3db93a0d844d1946a5296b65dde3a | refs/heads/master | 2021-01-11T08:17:27.609374 | 2017-07-05T20:25:59 | 2017-07-05T20:25:59 | 76,392,551 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 602 | cpp | main.cpp | #include <iostream>
using namespace std;
class Zwierze{
private:
string mImie;
public:
Zwierze(string imie){
mImie = imie;
}
void setImie(string imie){
mImie = imie;
}
const string& naLancuch()const{
return mImie;
}
};
class Pies: public Zwierze{
private:
public:
Pies(string imie): Zwierze(imie){
}
void szczekaj(){
cout<<"HOW!!!"<<endl;
}
void dajLape(){
cout<<"DajeLape!!!"<<endl;
}
};
int main()
{
Pies p("AZOR");
cout<<p.naLancuch()<<endl;
p.dajLape();
p.szczekaj();
return 0;
}
|
c36d6e5150e296f32647988715d817b885b681f9 | 86908a017b44cd07963eedd4325c99d410f02395 | /GUICraft/headers/amyAdvDICOMCanvas.h | 74ec3d5f32b50829cb5c8baa15637630b6fd5453 | [] | no_license | laoniu2020/MedicalTile | a8ebf9604f2f76cef7740d07e6d20419127950dd | 6d0f172ae863c9d1a3176d2933ff0a5440888f50 | refs/heads/master | 2021-05-29T06:03:36.556875 | 2015-10-04T15:10:05 | 2015-10-04T15:10:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 686 | h | amyAdvDICOMCanvas.h | #pragma once
#include"amyDICOMCanvas.h"
class amySelectionLing;
class amyAdvDICOMCanvas:public amyDICOMCanvas
{
Q_OBJECT
public:
amyAdvDICOMCanvas(QWidget *parent=0);
void UpdateViewSelectionLing();
void HideViewSelectionLing();
void ShowViewSelectionLing();
void SetViewSelectionLing(amyUtil::ePlane p);
void resizeEvent(QResizeEvent*);
virtual bool OnAcceptSeries(amyKeeper<amySeries> k);
virtual bool OnAcceptCube(amyKeeper<amyCube> k);
private:
amySelectionLing* m_AxialViewSelection;
amySelectionLing* m_CoronalViewSelection;
amySelectionLing* m_SagittalViewSelection;
public slots:
void SelectView();
//void UpdateAnnotation();
//void SliceChanged(int s);
}; |
9c3d0490b165642cf278805017740b35463b525e | 1a7e9320129984b8ee59912fa4c7782e6429e56a | /Bridge.h | ffde0ca1e8628f850cce5d475de541380e1fd174 | [] | no_license | go2sea/DesignPattern | de64843c6086e90fc9b783d874a90feca16fe300 | 0c3a5e6b965a579613246bb117f0bd746070c21f | refs/heads/master | 2021-01-10T10:50:10.388053 | 2016-01-04T14:38:47 | 2016-01-04T14:38:47 | 49,001,993 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 855 | h | Bridge.h | /*
桥梁模式(Bridge)
区分:Builder封装了不同的生成组成部分的方式,而Bridge封装了不同的实现方式
*/
#ifndef BRIDGE_H
#define BRIDGE_H
class Music;
//手机基类(接口,有纯虚函数)
class Phone {
public:
Phone() {};
virtual ~Phone();
virtual void ring() = 0;
protected:
Music* m_pMusic;
};
//派生类:锤子手机T1
class T1 : public Phone {
public:
T1(Music* pMusic);
virtual ~T1();
virtual void ring();
};
//派生类:小米手机Mi
class T2 : public Phone {
public:
T2(Music* pMusic);
virtual ~T2();
virtual void ring();
};
//音乐基类
class Music {
public:
virtual void ring() = 0;
};
//派生类:《米店》
class MiDian : public Music {
public:
virtual void ring();
};
//派生类:《秀水街》
class XiuShuiJie : public Music {
public:
virtual void ring();
};
#endif |
ec0f27827494cb5aeaaefb2b22c86d9ceedd27af | 619d44dc8f3ea3c70a4e235eced058d40da91cbc | /src/marker.cpp | 06cf3dbf02dc80cf61142d9467f664056de96543 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | paroj/aruco | f9ce81a52467376a678c3654c8faf57e1b6dcb55 | a4a664daa0cb6fb93c4cba8b307fada95b4d1603 | refs/heads/master | 2021-01-22T00:29:47.124337 | 2015-09-21T12:05:47 | 2015-09-21T12:05:47 | 36,502,108 | 4 | 4 | null | 2015-08-12T13:02:16 | 2015-05-29T12:08:30 | C++ | UTF-8 | C++ | false | false | 5,402 | cpp | marker.cpp | /*****************************
Copyright 2011 Rafael Muñoz Salinas. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY Rafael Muñoz Salinas ''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 Rafael Muñoz Salinas OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those of the
authors and should not be interpreted as representing official policies, either expressed
or implied, of Rafael Muñoz Salinas.
********************************/
#include "marker.h"
#include <cstdio>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/imgproc/imgproc.hpp>
using namespace cv;
using namespace std;
namespace aruco {
/**
*
*/
Marker::Marker() {
id = -1;
ssize = -1;
}
/**
*
*/
Marker::Marker(const std::vector<cv::Point2f>& corners, int _id) : std::vector<cv::Point2f>(corners) {
id = _id;
ssize = -1;
}
void Marker::draw(Mat& in, Scalar color, int lineWidth, bool writeId) const {
if (size() != 4)
return;
cv::line(in, (*this)[0], (*this)[1], color, lineWidth, CV_AA);
cv::line(in, (*this)[1], (*this)[2], color, lineWidth, CV_AA);
cv::line(in, (*this)[2], (*this)[3], color, lineWidth, CV_AA);
cv::line(in, (*this)[3], (*this)[0], color, lineWidth, CV_AA);
cv::rectangle(in, (*this)[0] - Point2f(2, 2), (*this)[0] + Point2f(2, 2), Scalar(0, 0, 255, 255),
lineWidth, CV_AA);
cv::rectangle(in, (*this)[1] - Point2f(2, 2), (*this)[1] + Point2f(2, 2), Scalar(0, 255, 0, 255),
lineWidth, CV_AA);
cv::rectangle(in, (*this)[2] - Point2f(2, 2), (*this)[2] + Point2f(2, 2), Scalar(255, 0, 0, 255),
lineWidth, CV_AA);
if (writeId) {
char cad[100];
sprintf(cad, "id=%d", id);
// determine the centroid
Point cent(0, 0);
for (int i = 0; i < 4; i++) {
cent.x += (*this)[i].x;
cent.y += (*this)[i].y;
}
cent.x /= 4.;
cent.y /= 4.;
putText(in, cad, cent, FONT_HERSHEY_SIMPLEX, 0.5,
Scalar(255 - color[0], 255 - color[1], 255 - color[2], 255), 2);
}
}
/**
*/
void Marker::calculateExtrinsics(float markerSize, const CameraParameters& CP, bool setYPerpendicular){
CV_Assert( CP.isValid() && "invalid camera parameters. It is not possible to calculate extrinsics" );
calculateExtrinsics(markerSize, CP.CameraMatrix, CP.Distorsion, setYPerpendicular);
}
cv::Matx<float, 4, 3> getObjectPoints(float markerSizeMeters) {
float halfSize = markerSizeMeters / 2.;
cv::Matx<float, 4, 3> ObjPoints;
ObjPoints(1, 0) = -halfSize;
ObjPoints(1, 1) = halfSize;
ObjPoints(1, 2) = 0;
ObjPoints(2, 0) = halfSize;
ObjPoints(2, 1) = halfSize;
ObjPoints(2, 2) = 0;
ObjPoints(3, 0) = halfSize;
ObjPoints(3, 1) = -halfSize;
ObjPoints(3, 2) = 0;
ObjPoints(0, 0) = -halfSize;
ObjPoints(0, 1) = -halfSize;
ObjPoints(0, 2) = 0;
return ObjPoints;
}
/**
*/
void Marker::calculateExtrinsics(float markerSizeMeters, cv::Mat camMatrix, cv::Mat distCoeff, bool setYPerpendicular) {
CV_Assert( markerSizeMeters > 0 && isValid() && "invalid marker. It is not possible to calculate extrinsics");
CV_Assert( !camMatrix.empty() && "CameraMatrix is empty" );
cv::Matx<float, 4, 3> ObjPoints = getObjectPoints(markerSizeMeters);
cv::solvePnP(ObjPoints, *this, camMatrix, distCoeff, Rvec, Tvec);
// rotate the X axis so that Y is perpendicular to the marker plane
if (setYPerpendicular)
rotateXAxis(Rvec);
ssize = markerSizeMeters;
// cout<<(*this)<<endl;
}
/**
*/
cv::Point2f Marker::getCenter() const {
cv::Point2f cent(0, 0);
for (size_t i = 0; i < size(); i++) {
cent.x += (*this)[i].x;
cent.y += (*this)[i].y;
}
cent.x /= float(size());
cent.y /= float(size());
return cent;
}
/**
*/
float Marker::getArea() const {
CV_Assert(size() == 4);
// use the cross products
cv::Point2f v01 = (*this)[1] - (*this)[0];
cv::Point2f v03 = (*this)[3] - (*this)[0];
float area1 = fabs(v01.x * v03.y - v01.y * v03.x);
cv::Point2f v21 = (*this)[1] - (*this)[2];
cv::Point2f v23 = (*this)[3] - (*this)[2];
float area2 = fabs(v21.x * v23.y - v21.y * v23.x);
return (area2 + area1) / 2.;
}
}
|
68f15ef9a14db11c3e258a1c2fe870e9d3b7258b | fc2608f392eef17abff5fbcf17516d9cead3afee | /include/IO/jpeg.h | 29f99067f1e66cce080bc61f36de14b57c704e1d | [] | no_license | Lyarvo4ka/libio | 670426c0979460d7a50e8595396e21706dcc1b5a | 9753883333329e5203e6a8f514ea20e95f256c28 | refs/heads/master | 2021-01-03T13:00:04.448488 | 2019-07-03T15:42:05 | 2019-07-03T15:42:05 | 124,251,871 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,545 | h | jpeg.h | #pragma once
#include "jpeglib.h"
#include "AbstractRaw.h"
#include <exception>
#include <Wingdi.h>
#include "Finder.h"
#include <experimental/filesystem>
namespace fs = std::experimental::filesystem;
namespace IO
{
class my_exception
: public std::exception
{
public:
my_exception(std::string && expection_text) noexcept
: text_(std::move(expection_text))
{}
my_exception(const std::string & expection_text) noexcept
: text_(expection_text)
{}
~my_exception() {}
private:
std::string text_;
};
class ImageData
{
private:
int width_ = 0;
int height_= 0;
int numComponets_ = 0;
IO::DataArray::Ptr pixelsArray_;
int scanline_count_ = 0;
public:
ImageData(int width, int height, int output_components)
: width_(width)
, height_(height)
, numComponets_(output_components)
{
int pixels_size = width * height * output_components;
pixelsArray_ = std::move(IO::makeDataArray(pixels_size));
}
ImageData() {}
IO::ByteArray getData()
{
return pixelsArray_->data();
}
IO::ByteArray getData() const
{
return pixelsArray_->data();
}
uint32_t getSize() const
{
return pixelsArray_->size();
}
void setScanlineCount(const int scanline_count)
{
scanline_count_ = scanline_count;
}
int getScanlineCount() const
{
return scanline_count_;
}
int getWidth() const
{
return width_;
}
int getHeight() const
{
return height_;
}
int getOutputComponents() const
{
return numComponets_;
}
};
double calcPercentages(int val, int max)
{
if (max == 0)
return 0.0;
double percent = (double)val / (double)max;
return percent * 100.00;
}
void jpegErrorExit_throw(j_common_ptr cinfo)
{
char jpegLastErrorMsg[JMSG_LENGTH_MAX];
/* Create the message */
(*(cinfo->err->format_message)) (cinfo, jpegLastErrorMsg);
/* Jump to the setjmp point */
//throw std::runtime_error(jpegLastErrorMsg); // or your preffered exception ...
throw my_exception(jpegLastErrorMsg);
}
void jpegErrorExit_nothrow(j_common_ptr cinfo)
{
char jpegLastErrorMsg[JMSG_LENGTH_MAX];
/* Create the message */
(*(cinfo->err->format_message)) (cinfo, jpegLastErrorMsg);
/* Jump to the setjmp point */
//throw std::runtime_error(jpegLastErrorMsg); // or your preffered exception ...
//throw my_exception(jpegLastErrorMsg);
}
bool isVaidMSGCode(const int msg_code)
{
if (msg_code >= 73/*JMSG_COPYRIGHT*/
&& msg_code <= 113/*JTRC_XMS_OPEN*/)
return true;
return false;
}
void jpegOutputMessage(j_common_ptr cinfo)
{
char jpegLastErrorMsg[JMSG_LENGTH_MAX];
/* Create the message */
(*(cinfo->err->format_message)) (cinfo, jpegLastErrorMsg);
printf("%s (error_code [%d])\n", jpegLastErrorMsg, cinfo->err->msg_code);
//printf("Error code [%d]\n", cinfo->err->msg_code);
//if (!isVaidMSGCode(cinfo->err->msg_code))
// printf("Not Valid error code");
/* Jump to the setjmp point */
//if (!isVaidMSGCode(cinfo->err->msg_code))
// throw std::runtime_error(jpegLastErrorMsg); // or your preffered exception ...
}
void saveBMP_file(const IO::path_string & path , const ImageData & image_data)
{
IO::File bmp_file(path);
bmp_file.Open(IO::OpenMode::Create);
ImageData img_new(image_data.getWidth(), image_data.getHeight(), image_data.getOutputComponents());
auto src_data = (ByteArray) image_data.getData();
auto byteArray = img_new.getData();
for (auto i = 0; i < image_data.getSize(); i = i + image_data.getOutputComponents())
{
for (auto j = 0; j < image_data.getOutputComponents(); ++j)
byteArray[i + j] = src_data[image_data.getSize() - 1 - i - j];
}
BITMAPINFOHEADER bfh = BITMAPINFOHEADER();
//BITMAPINFO bi;
bfh.biSize = sizeof(BITMAPINFOHEADER);
bfh.biHeight = image_data.getHeight();
bfh.biWidth = image_data.getWidth();
bfh.biBitCount = 24;
bfh.biPlanes = 1;
bfh.biCompression = BI_RGB;
const char BM_TEXT[] = "BM";
BITMAPFILEHEADER bm_header = BITMAPFILEHEADER();
memcpy(&bm_header.bfType, BM_TEXT, 2);
bm_header.bfSize = sizeof(BITMAPFILEHEADER) + bfh.biSize + image_data.getSize();
auto bytes_written = bmp_file.WriteData((ByteArray)&bm_header, sizeof(BITMAPFILEHEADER));
bytes_written += bmp_file.WriteData((ByteArray)&bfh, bfh.biSize);
bytes_written += bmp_file.WriteData(img_new.getData(), img_new.getSize());
//bytes_written += bmp_file.WriteData(byteArray, image_data.getSize());
bmp_file.Close();
}
class Jpegdata
{
private:
//std::unique_ptr<jpeg_decompress_struct> jpg_struct_ptr_;
jpeg_error_mgr err = jpeg_error_mgr();
jpeg_decompress_struct cinfo = jpeg_decompress_struct();
public:
Jpegdata()
{
createDecompressor();
}
~Jpegdata()
{
destroyDecompressor();
}
void Init()
{
ZeroMemory(&err, sizeof(jpeg_error_mgr));
ZeroMemory(&cinfo, sizeof(jpeg_decompress_struct));
}
void createDecompressor()
{
Init();
jpeg_create_decompress(&cinfo);
cinfo.err = jpeg_std_error(&err);
cinfo.do_fancy_upsampling = FALSE;
err.error_exit = jpegErrorExit_throw;
err.output_message = jpegOutputMessage;
//err.trace_level = 1;
}
jpeg_decompress_struct * getDecompressStruct()
{
return &cinfo;
}
void destroyDecompressor()
{
err.error_exit = jpegErrorExit_nothrow;
jpeg_destroy_decompress(&cinfo);
}
};
class JpegDecoder
{
private:
//using jpg_struct_ptr = std::unique_ptr<jpeg_decompress_struct> ;
//jpeg_error_mgr err = jpeg_error_mgr();
//jpeg_decompress_struct cinfo = jpeg_decompress_struct();
std::unique_ptr<Jpegdata> jpgPtr_ = std::make_unique<Jpegdata>();
public:
//JpegDecoder(const IO::path_string & jpeg_filename)
// : jpeg_filename_(jpeg_filename)
//{
//}
IO::DataArray ReadJpegFile(const IO::path_string & jpeg_filename)
{
IO::File jpg_file(jpeg_filename);
if (!jpg_file.Open(IO::OpenMode::OpenRead))
return IO::DataArray(0);
IO::DataArray data_array(jpg_file.Size());
if (data_array.size() == 0)
return data_array;
auto bytes_read = jpg_file.ReadData(data_array);
if (bytes_read != data_array.size())
return IO::DataArray(0);
return data_array;
}
ImageData decompress(const IO::path_string & jpeg_filename)
{
//createDecompressor();
auto data_array = ReadJpegFile(jpeg_filename);
if (data_array.size() == 0)
return ImageData();
auto cinfo_ptr = jpgPtr_->getDecompressStruct();
auto err_ptr = cinfo_ptr->err;
err_ptr->trace_level = 3;
/* set source buffer */
jpeg_mem_src(cinfo_ptr, data_array.data(), data_array.size());
/* read jpeg header */
jpeg_read_header(cinfo_ptr, 1);
auto bRes = jpeg_start_decompress(jpgPtr_->getDecompressStruct());
if (err_ptr->num_warnings > 1)
{
return ImageData();
}
//err_ptr->num_warnings = 0;
JSAMPROW output_data;
auto scanline_len = cinfo_ptr->output_width * cinfo_ptr->output_components;
auto scanline_count = 0;
ImageData image_data(cinfo_ptr->output_width, cinfo_ptr->output_height, cinfo_ptr->output_components);
//err_ptr->msg_code = 85;
while (cinfo_ptr->output_scanline < cinfo_ptr->output_height)
{
output_data = (image_data.getData() + (scanline_count * scanline_len));
jpeg_read_scanlines(cinfo_ptr, &output_data, 1);
if (err_ptr->num_warnings > 1)
break;
if (!isVaidMSGCode(err_ptr->msg_code))
{
//int k = cinfo.next_scanline;
//cinfo.output_scanline = cinfo.output_height;
int k = 0;
k = 1;
break;
}
scanline_count++;
}
cinfo_ptr->output_scanline = cinfo_ptr->output_height; // to prevent exception
jpeg_finish_decompress(cinfo_ptr);
image_data.setScanlineCount(scanline_count);
// saveBMP_file(L"d:\\Photo\\jpg_test\\not_bad\\bitmap.bmp" , image_data);
return image_data;
}
};
class JpegTester
{
public:
void test_jpeg_files(const path_string & src_folder , const double border_percenteges)
{
IO::Finder finder;
finder.add_extension(L".jpg");
finder.add_extension(L".jpeg");
finder.FindFiles(src_folder);
auto fileList = finder.getFiles();
for (auto & theFile : fileList)
{
fs::path src_path(theFile);
auto folder_path = src_path.parent_path().generic_wstring();
auto only_name_path = src_path.stem().generic_wstring();
auto ext = src_path.extension().generic_wstring();
IO::path_string new_file_name = theFile + L".bad_file";//bad_folder + only_name_path + ext;
try
{
IO::JpegDecoder jpeg_decoder;
auto img_data = jpeg_decoder.decompress(theFile);
auto percenteges = IO::calcPercentages(img_data.getScanlineCount(), img_data.getHeight());
auto perc = std::lround(percenteges);
auto name_percenteges = std::to_wstring(perc);
std::replace(name_percenteges.begin(), name_percenteges.end(), '.', '-');
if (percenteges > border_percenteges)
{
wprintf(L"%s - GOOD\n", theFile.c_str());
new_file_name = theFile;
//new_file_name = dst_folder + only_name_path + L" [" + name_percenteges + L"]" + ext;
continue;
}
//else
// new_file_name = bad_folder + only_name_path + L" [" + name_percenteges + L"]" + ext;
}
catch (IO::my_exception & ex)
{
printf("%s\n", ex.what());
}
catch (...)
{
printf("FATAL ERROR\n");
}
wprintf(L"%s - FAILED\n", theFile.c_str());
try
{
fs::rename(theFile, new_file_name);
}
catch (const fs::filesystem_error& e)
{
std::cout << "Error: " << e.what() << std::endl;
}
}
}
};
} |
cdf1a3a42382ecd0b523cb15687e3b4b9bd3e7ee | ac130225538ee70baa3d7eaaf186db044a851af2 | /cuckoo_local_test/cuckoo_local_test.cpp | 384b1789e39f533af9f1d76c4f4d61c23e21a583 | [] | no_license | 0crab/multiport_network | cd4e5b6b8db94ead14860adbfbca626b2bfb10f8 | 87f2fe5fa45cefe4fee4dea6887e15d0385f67aa | refs/heads/master | 2022-11-28T08:58:31.272673 | 2020-07-31T09:46:43 | 2020-07-31T09:46:43 | 267,567,612 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,554 | cpp | cuckoo_local_test.cpp | #include <stdio.h>
#include <stdlib.h>
#include <string>
#include <vector>
#include <string.h>
#include <iostream>
#include <netinet/in.h>
#include <sys/socket.h>
#include <thread>
#include <unistd.h>
#include <chrono>
#include <sys/stat.h>
#include <assert.h>
#include <mutex>
#include "settings.h"
#include "tracer.h"
#include "hash.h"
#include "generator.h"
#include <vector>
#include <random>
#include <string>
#include <list>
#include "../libcuckoo/cuckoohash_map.hh"
using namespace std;
const char *existingFilePath = "./testfile.dat";
static libcuckoo::cuckoohash_map<std::string, std::string> hashTable;
typedef struct KVOBJ{
string key;
string value;
uint8_t prehash;
}kvobj;
enum instructs {
GET,
SET,
GETB,
SETB,
};
vector<vector<kvobj>> mydatabase;
typedef struct Send_info{
int thread_index;
int fd;
uint64_t send_bytes;
} send_info;
send_info ** info_matrix;
uint64_t g_offset = 0;
uint64_t g_count = 0;
int myround = ROUND_SET;
bool stop = false;
bool clean = false;
mutex g_mutex ;
void con_database();
unsigned char get_opcode(instructs inst);
void data_dispatch(int tid);
void pre_insert();
void show_send_info();
instructs inst;
int thread_num = 1;
//int batch_num = 1;
const string server_ip = "127.0.0.1";
long * timelist;
int main(int argc, char **argv) {
string in_inst;
if (argc == 3) {
thread_num = atol(argv[1]);
in_inst = string(argv[2]);
// batch_num = atol(argv[3]); //not used
} else {
printf("./micro_test <thread_num> <instruct> \n");
return 0;
}
timelist = (long *)calloc(thread_num, sizeof(long));
double kv_n = KV_NUM;
double p_l = PACKAGE_LEN;
double data_size = (kv_n * p_l * ROUND_SET) / 1000000000 ;
cout << "worker : " << thread_num << endl
<< "kv_num : " << KV_NUM << endl
<< "round : " << ROUND_SET<< endl;
if (in_inst == "get") inst = GET;
else if (in_inst == "getb") inst = GETB;
else if (in_inst == "set") inst = SET;
else if (in_inst == "setb") inst = SETB;
else {
perror("please input correct instruction");
return -1;
}
hash_init();
con_database();
pre_insert();
vector<thread> threads;
for(int i = 0;i < thread_num; i ++){
//printf("creating thread %d\n",i);
threads.push_back(thread(data_dispatch,i));
}
for(int i = 0; i < thread_num; i++){
threads[i].join();
//printf("thread %d stoped \n",i);
}
// show_send_info();
long avg_runtime = 0;
for(int i = 0; i < thread_num; i++){
avg_runtime += timelist[i];
}
avg_runtime /= thread_num;
cout << "\n ** average runtime : " << avg_runtime << endl;
}
void con_database() {
double skew = SKEW;
uint64_t range = KEY_RANGE;
uint64_t count = KV_NUM;
uint64_t *array =( uint64_t * ) calloc(count, sizeof(uint64_t));
struct stat buffer;
if (stat(existingFilePath, &buffer) == 0) {
cout << "read generation" << endl;
FILE *fp = fopen(existingFilePath, "rb+");
fread(array, sizeof(uint64_t), count, fp);
fclose(fp);
}else{
if (skew < zipf_distribution<uint64_t>::epsilon) {
std::default_random_engine engine(
static_cast<uint64_t>(chrono::steady_clock::now().time_since_epoch().count()));
std::uniform_int_distribution<size_t> dis(0, range + 0);
for (size_t i = 0; i < count; i++) {
array[i] = static_cast<uint64_t >(dis(engine));
}
} else {
zipf_distribution<uint64_t> engine(range, skew);
mt19937 mt;
for (size_t i = 0; i < count; i++) {
array[i] = engine(mt);
}
}
FILE *fp = fopen(existingFilePath, "wb+");
fwrite(array, sizeof(uint64_t), count, fp);
fclose(fp);
cout << "write generation" << endl;
}
for(int i = 0;i<thread_num;i++){
vector<kvobj> a;
mydatabase.push_back(a);
}
unsigned long offset = 0;
char package_buf[100];
char key_buf[KEY_LEN + 1];
char value_buf[VALUE_LEN + 1];
for(size_t i = 0; i < KV_NUM; i++){
uint64_t n = array[i] / 26;
uint8_t c = array[i] % 26;
memset(package_buf, 0, sizeof(package_buf));
memset(key_buf, 0, sizeof(key_buf));
memset(value_buf, 0, sizeof(value_buf));
sprintf(key_buf, "%d", n);
sprintf(value_buf, "%d", n);
memset(key_buf + strlen(key_buf), 'a'+c, VALUE_LEN - strlen(key_buf));
memset(value_buf + strlen(value_buf), 'a'+c+1 , VALUE_LEN - strlen(value_buf));
uint8_t Pre_hash = static_cast<uint8_t > ((hash_func(key_buf, KEY_LEN)) % thread_num);
kvobj tmpkv;
tmpkv.key = string(key_buf,KEY_LEN);
tmpkv.value = string(value_buf,VALUE_LEN);
tmpkv.prehash = Pre_hash;
mydatabase[Pre_hash].push_back(tmpkv);
}
}
unsigned char get_opcode(instructs inst){
switch (inst){
case GET :
return 0x01;
case SET :
return 0x04;
case GETB :
return 0x03;
case SETB :
return 0x06;
default:
perror("invalid instruct");
return 0;
}
}
void pre_insert(){
for(int i = 0 ;i< thread_num ;i++){
auto it = mydatabase[i].begin();
while(it != mydatabase[i].end()){
kvobj kv = *it;
hashTable.insert_or_assign(kv.key,kv.value);
it ++;
}
}
}
void data_dispatch(int tid){
Tracer t;
t.startTime();
uint64_t total_len =0;
for(int i = 0;i<myround;i++){
auto it = mydatabase[tid].begin();
while(it != mydatabase[tid].end()){
kvobj kv = *it;
if(inst == GET){
string v = hashTable.find(kv.key);
total_len += v.length();
}else if(inst == SET){
hashTable.insert_or_assign(kv.key,kv.value);
}else{
perror("error inst");
exit(-1);
}
it ++;
}
}
timelist[tid] += t.getRunTime();
//if(inst == GET ) printf("find v len %lu\n",total_len);
}
void show_send_info(){
for(int i = 0; i < thread_num; i++){
printf("thread %d :\n",i);
for(int j = 0; j < CONNECTION_NUM; j++){
printf("[%d,%d] : %lu\n",i,info_matrix[i][j].fd,info_matrix[i][j].send_bytes);
}
}
} |
fd1acc73c695bf5239beb9571f6f73619b770e27 | 189f52bf5454e724d5acc97a2fa000ea54d0e102 | /ras/floatingObject/6/ddt0(U) | ee73214bd97ffcfe301fdd7d7b2c900596a49357 | [] | no_license | pyotr777/openfoam_samples | 5399721dd2ef57545ffce68215d09c49ebfe749d | 79c70ac5795decff086dd16637d2d063fde6ed0d | refs/heads/master | 2021-01-12T16:52:18.126648 | 2016-11-05T08:30:29 | 2016-11-05T08:30:29 | 71,456,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 639,456 | ddt0(U) | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1606+ |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "6";
object ddt0(U);
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -2 0 0 0 0];
internalField nonuniform List<vector>
11640
(
(0.00259263175562 -0.00123900156179 -0.000813219233157)
(0.00763803789563 -0.00117566243788 -0.000780964160114)
(0.0124688818234 -0.001169786608 -0.000714809024098)
(0.0170814596077 -0.00123855067553 -0.000594834652313)
(0.0214344058819 -0.00136102162027 -0.000429313109845)
(0.0254505000557 -0.00152061521417 -0.00021013885571)
(0.0291059248185 -0.00174319321294 7.29399913301e-05)
(0.0323367527928 -0.00202745479158 0.000416622773136)
(0.0350462917751 -0.00232383901296 0.000811692873697)
(0.0370473778318 -0.00259787534915 0.00126148275013)
(0.0381714696917 -0.00286752840675 0.00176723042818)
(0.0382756848816 -0.00311832946935 0.00228298559816)
(0.0372677709553 -0.0033449663511 0.0028143375981)
(0.0351531298118 -0.00355184078533 0.00334335069734)
(0.0319689728992 -0.00376957916779 0.00383718341219)
(0.0277856465594 -0.0039729159505 0.00427803103405)
(0.022703978875 -0.004149856783 0.00466727111728)
(0.0168567970081 -0.00430758190478 0.00499884683351)
(0.0104212834218 -0.00446192665703 0.00527595868125)
(0.00348580219841 -0.00457072545654 0.00547467002409)
(0.00265029874181 -0.00370105740279 -0.000896904207621)
(0.00769512576682 -0.00362232214369 -0.000619954380101)
(0.0123988751429 -0.00366698576262 -0.000486208741029)
(0.0168711970641 -0.00386546611157 -0.000355371818069)
(0.0210958904179 -0.00420797699641 -0.000168774293388)
(0.0249922933453 -0.00471519859851 8.30667298093e-05)
(0.0285424536892 -0.00542462958492 0.000358138376264)
(0.0317361113278 -0.00631401488468 0.000684629945683)
(0.0344676763495 -0.00719683021595 0.00109501009584)
(0.036503726872 -0.00803535672778 0.00157828111892)
(0.0376680241518 -0.00884279566312 0.00210340602783)
(0.0378232069136 -0.00958271575007 0.00264402598446)
(0.0368741603003 -0.0102852124639 0.00319207271429)
(0.0347806132744 -0.0109367302771 0.00373723694094)
(0.0315982169678 -0.0116022370186 0.0042404040281)
(0.0274484170623 -0.0122038507323 0.00469023337189)
(0.0223997929999 -0.0127047670611 0.0050782805306)
(0.0165517754985 -0.0131397523673 0.00538099726788)
(0.0101298516491 -0.0135147317133 0.00555258379299)
(0.00335172890604 -0.0137281002739 0.0054153528066)
(0.00265488288502 -0.00592148137467 -0.00102545629985)
(0.00763545178555 -0.00593582217934 -0.000681747732994)
(0.0121786276233 -0.00611702587346 -0.000523281786732)
(0.016461935573 -0.00653785019152 -0.000364801754748)
(0.0204684462274 -0.00721711035122 -0.000137788039938)
(0.0241748220232 -0.00814865420627 4.19661373041e-05)
(0.0275271675736 -0.00937001880275 0.000339833330486)
(0.0306117661901 -0.0109871468054 0.000684817748848)
(0.0333917248059 -0.0126113228109 0.00114127129759)
(0.0355010774718 -0.0140995483149 0.00166220834494)
(0.0367543745529 -0.015503938573 0.00221875673682)
(0.0369778730827 -0.0165949906365 0.00270152585866)
(0.0360748900859 -0.0177892996049 0.00325154456826)
(0.0340255032658 -0.0188291605815 0.00384643049595)
(0.0308967791588 -0.0198972766446 0.00433536018559)
(0.0268355692026 -0.0208382326905 0.00474078285153)
(0.0218702110373 -0.0216190776438 0.00504822206772)
(0.0161211359416 -0.0222339579977 0.00528963102424)
(0.00982337846468 -0.0226702446417 0.00543832113237)
(0.00322284221953 -0.0228626670479 0.00522302569613)
(0.00260173178263 -0.00766433901239 -0.00117004777326)
(0.00746636769062 -0.00774998421216 -0.000803923211318)
(0.0117680541553 -0.00809871204832 -0.00063393266452)
(0.0157627237076 -0.00881183253882 -0.000403486735353)
(0.0195374653316 -0.00981167401069 -0.000291388379509)
(0.0230429372191 -0.0109671487204 6.43945728925e-05)
(0.0259913660615 -0.0125840939992 0.000512960407815)
(0.0288413862978 -0.0150794801151 0.000833472255542)
(0.0316886386692 -0.0175878128335 0.00138375607759)
(0.0339376273981 -0.0198790526572 0.00196225901322)
(0.0354985387826 -0.0218777081053 0.00266697682889)
(0.0358529320621 -0.0236570860955 0.0026822697847)
(0.0349638152338 -0.0253527959002 0.00313843128842)
(0.0330251221844 -0.0264897010876 0.00380063385271)
(0.0299190318968 -0.0279310212271 0.00425101872458)
(0.0259717054536 -0.0291707200942 0.00462321728415)
(0.0211624114693 -0.0301088211542 0.00487579891035)
(0.0156181833508 -0.0308527891719 0.00501934120802)
(0.00953911637045 -0.0313431245024 0.00512399507216)
(0.00312841917559 -0.0314961820353 0.00494026564001)
(0.00250933903322 -0.00876968745842 -0.0013325234541)
(0.00718928830622 -0.0089430243733 -0.000942219297466)
(0.0111769396332 -0.00947212074308 -0.000734330846291)
(0.0148811257108 -0.0105129383859 -0.000392398347438)
(0.0184648298087 -0.0115750157562 -0.000232086364284)
(0.0218852076617 -0.0129271940831 0.000249804115803)
(0.0242298354464 -0.0145586130375 0.00062086243333)
(0.0266032739138 -0.017695071551 0.000685220920373)
(0.0294959753737 -0.0215035162534 0.0011829645118)
(0.031957054347 -0.0244287530009 0.00164676613925)
(0.0334879242782 -0.0268098607243 0.00204413683917)
(0.0338808316673 -0.0291770484352 0.00244334854437)
(0.0336172634804 -0.0309282882865 0.00246134195772)
(0.0318479513311 -0.0335660077047 0.00364750001253)
(0.0285489742559 -0.0356909177641 0.00401998700314)
(0.0248486450636 -0.0371170700115 0.00441828952897)
(0.0203042236408 -0.0378613836998 0.00457265127697)
(0.0149898129172 -0.0386366493511 0.00463870141277)
(0.00919300470631 -0.0391864494089 0.00469257146412)
(0.00304753091731 -0.0393268260627 0.00455842560362)
(0.00239637090411 -0.00920784232277 -0.0014891379859)
(0.00680928607067 -0.00947189790544 -0.00106290499474)
(0.0104575154095 -0.010161345081 -0.000847501570325)
(0.0138780789566 -0.0115203945384 -0.000458061333912)
(0.0173152711467 -0.0131348255743 -1.53498579134e-05)
(0.0209357150852 -0.0149569858951 0.000505940137659)
(0.022763859708 -0.0172720751974 0.000665250685497)
(0.0237547016152 -0.0243320349768 -0.000383401193516)
(0.0264289478548 -0.0275105451105 0.00152626793662)
(0.0296516418743 -0.0326241960098 0.00208589167199)
(0.0312138721054 -0.0376974844438 0.00213531534358)
(0.0318251827807 -0.0422464927298 0.00245245376643)
(0.0307096834833 -0.0416805442126 0.00227182491764)
(0.0285495181226 -0.0419219822524 0.00362361842261)
(0.0265025878853 -0.0430852137778 0.00409085875969)
(0.023715774535 -0.0439217173751 0.00455877321182)
(0.0194869575918 -0.0446866344947 0.00412087000078)
(0.014259103782 -0.0454353842622 0.00415214099724)
(0.00880437308239 -0.0459959374739 0.00417714725282)
(0.00294740698169 -0.0460794813843 0.00410558186066)
(0.00225334867919 -0.00901502783283 -0.00161364145436)
(0.00634106088452 -0.00934204032374 -0.00116020712803)
(0.00964386991779 -0.0101537782096 -0.000990593156348)
(0.0126705580159 -0.0116191385976 -0.000724337802951)
(0.0156089775968 -0.0137013763905 -0.000387871099805)
(0.0185555928269 -0.0158353195227 -7.03922459749e-05)
(0.0171333493773 -0.0157629263808 0.00011730343988)
(0.0195649317148 -0.0238615702925 -0.00189149556055)
(0.0235672175524 -0.0231182299633 -0.00248911520797)
(0.0230141033557 -0.0272903322856 -0.00171368535653)
(0.0238970416247 -0.0305854923094 -0.000692651854642)
(0.0294811297848 -0.0372819564147 0.00130921363472)
(0.033134795198 -0.0413457031086 -0.00252817849334)
(0.0298358147797 -0.0468629362925 0.0018294538914)
(0.0260320274925 -0.0477016426917 0.00213038073583)
(0.0224581002776 -0.0489898131127 0.00320708588675)
(0.0180654209343 -0.0501754654408 0.00351069219211)
(0.0133506028289 -0.0508773541978 0.0038028953468)
(0.0083847288577 -0.0514574940832 0.00371679679817)
(0.00285713920223 -0.0515925670977 0.00358280639788)
(0.00208209163091 -0.00827894622496 -0.00167554913375)
(0.00578608425831 -0.00865380429288 -0.00127095259277)
(0.00877153106312 -0.00960682784914 -0.00108288552123)
(0.0115232433029 -0.011192955237 -0.000917741961129)
(0.0145449789657 -0.013442637198 -0.000589540631619)
(0.018768346182 -0.0154974179329 0.000633325151128)
(0.0174954111708 -0.0146715717589 0.00310341742387)
(0.0200684235928 -0.0189403904352 0.00109197386349)
(0.0236760334375 -0.0214411260472 0.0020616060824)
(0.0223204161768 -0.0273558171929 -0.00033174423578)
(0.0203744650181 -0.0338904745324 -0.00677254797775)
(0.0184610269668 -0.0395157081857 -0.00630242038976)
(0.0202917907398 -0.0451587789007 -0.000726368785663)
(0.0241074810588 -0.0513727489061 -0.0002509885861)
(0.0246764979037 -0.0519513484706 0.0015037902954)
(0.0205254748429 -0.0533696688126 0.00233322070902)
(0.0165644072409 -0.0543036455597 0.00253115641953)
(0.0122945096494 -0.0549351257042 0.00267074052425)
(0.00776102256978 -0.0555211028873 0.00281996285871)
(0.00264675387844 -0.0557081210897 0.00299147898609)
(0.0018572339722 -0.00710037328856 -0.00166057740403)
(0.00507282707339 -0.00753992000167 -0.00134643101327)
(0.00764781616439 -0.00867023366423 -0.00111039111977)
(0.010006179781 -0.0105355587856 -0.00107124971198)
(0.0126094803963 -0.0132205265755 -0.000882760905943)
(0.0168132397834 -0.0161567370352 0.000406614621495)
(0.0149809412424 -0.0185214791504 0.00226752755287)
(0.0165034525426 -0.0214655945127 0.00145306112539)
(0.015919043116 -0.0268514271937 0.00205369861987)
(0.00938436370597 -0.0337011011976 -0.000234056220412)
(0.0107172984314 -0.044451048519 -0.00097560365792)
(0.0184553953768 -0.0493786137887 -0.00377847405651)
(0.022313775857 -0.0498468219346 -0.00309590766148)
(0.0238515284785 -0.0527598674664 -0.00228983626341)
(0.0237415834035 -0.0546218354196 8.22481534239e-05)
(0.0188758952055 -0.0560532641584 0.00112068777398)
(0.01503824578 -0.0570027850515 0.00140518522295)
(0.0111664975019 -0.0576312030802 0.0016498334712)
(0.00716677115974 -0.0581790344863 0.00194284793404)
(0.00248567892318 -0.0583159957101 0.00226240987338)
(0.00157570351654 -0.00557505553838 -0.00157315787367)
(0.00421294959796 -0.00609391907029 -0.00129637784291)
(0.00621434524088 -0.0073641680634 -0.00105837294865)
(0.00803397726459 -0.00946957491224 -0.00110288664158)
(0.0101633866443 -0.0126379725087 -0.00107613284599)
(0.0136668468337 -0.0168751255517 0.000132765727939)
(0.0119101392032 -0.0228518132659 0.00242286940035)
(0.0128999202121 -0.0293952751001 0.00294384135872)
(0.0117063712934 -0.0353883043696 0.00258468144828)
(0.00525153003986 -0.038360753394 -0.000249723271314)
(0.00560409058681 -0.0369524229457 -0.00130990730935)
(0.0125433709216 -0.0407121430635 -0.00383050566856)
(0.0170036582263 -0.0462998968269 -0.0032022164373)
(0.0195740996834 -0.0509616684423 -0.0032222257809)
(0.0209928985342 -0.0546144212478 -0.00107631619451)
(0.0166115159269 -0.0567195454596 -7.71346457303e-05)
(0.0132898377444 -0.0579407125746 0.000256825436008)
(0.0099450527881 -0.0586175960626 0.000617656121164)
(0.00651428553477 -0.059194402676 0.00103894638987)
(0.00231058309776 -0.0593129051828 0.00155055588756)
(0.00124399986889 -0.00385898733416 -0.00139793524091)
(0.0032220653461 -0.00444058569901 -0.00114318045422)
(0.00454565445254 -0.00575438187084 -0.00103760376087)
(0.00564092023207 -0.00796074323763 -0.00112298611425)
(0.0065468847939 -0.0110665260546 -0.00126004005699)
(0.00769156319222 -0.0144556961216 -0.000848767582704)
(0.00347484682166 -0.0187539260472 -0.000350514105878)
(0.00463033524975 -0.0167917150566 0.000478714959903)
(0.00715329375658 -0.0215088142982 0.00177011273093)
(0.00796947900267 -0.0279723723455 0.00404249255357)
(0.0091921424088 -0.0325019396664 -0.00141649121571)
(0.0094279862507 -0.0373336342147 -0.00333968874331)
(0.011914038995 -0.0443533857164 -0.0028441969489)
(0.0148444200824 -0.048131797107 -0.00346013840313)
(0.0173807629691 -0.0532872953376 -0.00195472254902)
(0.0139056337886 -0.0557584573409 -0.00116106850025)
(0.0112526191511 -0.057184166319 -0.000829068891373)
(0.00855051105607 -0.0580097014282 -0.000410452562457)
(0.00576374160623 -0.0586410806341 0.000177265917468)
(0.00209506430626 -0.0588048966763 0.00087971663934)
(0.000868681133693 -0.00208098047722 -0.00114400382758)
(0.00212816468172 -0.00274219087161 -0.000884159981413)
(0.00281444060001 -0.00416778857094 -0.00090570423134)
(0.00352164203482 -0.00660265931658 -0.0010489840674)
(0.00481054038267 -0.00992276631398 -0.00114658037503)
(0.00696236499584 -0.0140690098593 -0.000288770017201)
(0.00976259661816 -0.0191475830827 -0.000219735876862)
(0.00876380223052 -0.0199263720994 0.00271387749828)
(0.00103458680619 -0.026123259893 0.00203797713765)
(-0.00477376763978 -0.0275236850069 0.00101749002515)
(-0.00236255355393 -0.0355596255436 0.00139079694942)
(0.00290820012993 -0.0395800698385 5.95947944372e-05)
(0.00663525271575 -0.044436827352 -0.00100448992797)
(0.0101162797786 -0.0467891269382 -0.00253136713447)
(0.0124396306653 -0.0512386543144 -0.00227992621387)
(0.0109003119814 -0.0535709304068 -0.00207872155391)
(0.00902417659794 -0.0550087540212 -0.00182680015821)
(0.00699305294779 -0.0559131191248 -0.00137156469689)
(0.00491899621392 -0.056543121797 -0.000686741079599)
(0.00185335136078 -0.0566912238254 0.000142376805503)
(0.000455148576076 -0.000354861862675 -0.000821310920468)
(0.000881473029847 -0.0010805504077 -0.00053080243854)
(0.000633596411218 -0.00258026194546 -0.000736002811335)
(0.000395937682941 -0.00515845487356 -0.000951672856678)
(0.000101857076332 -0.00877099701125 -0.00147381951761)
(-0.000664020428781 -0.0138406872402 -0.00150284892628)
(-0.00242662271111 -0.0204577943873 -0.00134747676244)
(-0.00293687781012 -0.0286763194982 0.000131076431841)
(-0.000523366417544 -0.03532047987 -0.000214693537045)
(1.73419970896e-05 -0.0354936243092 -0.00262168406937)
(-0.00029131198684 -0.0360802586748 -0.00301740350438)
(0.00209577033722 -0.0380767499434 -0.00355164813214)
(0.0045661527528 -0.0413866686533 -0.00325390658773)
(0.00715051697091 -0.0439610379711 -0.00343585751919)
(0.00855321247258 -0.047493673609 -0.00325258936171)
(0.00793224715094 -0.0498320102572 -0.00304377291525)
(0.00675889000843 -0.0513469023177 -0.00272736263824)
(0.00545166378932 -0.0522876318876 -0.00223033128858)
(0.00402628981298 -0.052982912411 -0.00148357009861)
(0.00165737522327 -0.0531969434478 -0.000494675982031)
(3.59707467124e-05 0.0012090597521 -0.00044538734699)
(-0.000376584568694 0.000479741010014 -5.32166058632e-05)
(-0.00143899607893 -0.000980754151987 -0.000294675369106)
(-0.00247585836539 -0.00331991825462 -0.000528809256872)
(-0.00325761150037 -0.00646879485815 -0.00107283900337)
(-0.00372684233578 -0.0102545550922 -0.00141918933722)
(-0.00412269424485 -0.0138090222414 -0.00151512298932)
(-0.00530382620194 -0.016329076518 -0.00124425711531)
(-0.00610460331327 -0.0196358105878 -0.00115358408114)
(-0.00550891862118 -0.0247862235242 -0.00197280443976)
(-0.00417556278829 -0.0285717124562 -0.00247405389021)
(-0.00188780199876 -0.0320694477912 -0.00303388718712)
(0.00057533484243 -0.0356720300356 -0.00313610808748)
(0.00306857742753 -0.0389794531048 -0.00359437113898)
(0.00455504845298 -0.0422225219221 -0.00378187110216)
(0.00474574488086 -0.0445859371904 -0.00368357412544)
(0.00438987481415 -0.0461822612055 -0.0033759483192)
(0.00389418225007 -0.0472944462539 -0.00281325586673)
(0.00316272174089 -0.0481308474424 -0.00212986474606)
(0.00142532807761 -0.0484401581445 -0.00107007525467)
(-0.000333493226075 0.00242901704474 -4.6920184027e-05)
(-0.00152071393257 0.00175741651864 0.000452881151876)
(-0.00330583651337 0.000420239109419 0.000288690159684)
(-0.00505808088204 -0.00155664035861 -0.000220460125742)
(-0.0064909360565 -0.00418554901709 -0.00073498180761)
(-0.00764365941084 -0.0074461825629 -0.00115016258346)
(-0.00829067218974 -0.0109971812869 -0.00141548835451)
(-0.00892507872914 -0.0148577876686 -0.00178044071458)
(-0.00927325103588 -0.0178685198808 -0.00196009175541)
(-0.00859830702357 -0.0212265502774 -0.00242994294882)
(-0.00733326899385 -0.0242246712637 -0.00291833254129)
(-0.00536006049445 -0.0271446787022 -0.00309403739187)
(-0.00295695746042 -0.0301763010942 -0.00343595988882)
(-0.000692413548677 -0.0332400426318 -0.00383167019971)
(0.000934637468673 -0.0361173967258 -0.0040255544362)
(0.00179370870589 -0.0383842351504 -0.00398250014457)
(0.00221862398599 -0.0400261763287 -0.00368253165834)
(0.00241810622302 -0.041278245314 -0.00322703842208)
(0.00234080803309 -0.0422051458863 -0.00265975146498)
(0.00116419258991 -0.0426174271863 -0.00157969070612)
(-0.000657632882474 0.00316351792001 0.000366898402298)
(-0.00249858944349 0.00256572255 0.000916503803462)
(-0.00494139938902 0.00140073595266 0.000859958563816)
(-0.00726560690436 -0.00030279065592 0.000418973957062)
(-0.00915767642682 -0.00248800359248 -0.000145160628224)
(-0.0106042173755 -0.00501116276691 -0.000665564766887)
(-0.0115900129233 -0.00777571778445 -0.00104905616097)
(-0.0121728277954 -0.0109640270901 -0.00139898949431)
(-0.0122446035006 -0.0137334561247 -0.00184385869325)
(-0.0116678899533 -0.0165293916775 -0.00238083544996)
(-0.010322624793 -0.0191926504248 -0.00269045118227)
(-0.00831818213342 -0.021679709884 -0.0030762625729)
(-0.00607343806979 -0.0243810177207 -0.00346022549879)
(-0.00390302083123 -0.0270402797945 -0.00381057667212)
(-0.0021061850547 -0.0294868639304 -0.00398219836115)
(-0.000728521400181 -0.0315403427524 -0.00395247446383)
(0.000293493295589 -0.0331859426471 -0.00379682236648)
(0.00111954322725 -0.034450078718 -0.00352181677603)
(0.00157179898997 -0.0353950638324 -0.00310149615741)
(0.000871190303751 -0.03590465261 -0.00203187441312)
(-0.00094192981354 0.00334226097466 0.000768842222214)
(-0.00331628841111 0.0028076691088 0.00128478727489)
(-0.00627039285395 0.00182916786148 0.00126958696563)
(-0.00906590406759 0.000477685356495 0.000954435793153)
(-0.011342553643 -0.00121956650607 0.000481949053089)
(-0.0130744650816 -0.00320149418247 -4.48226191312e-05)
(-0.0142424902346 -0.0053560953073 -0.000552029898349)
(-0.0148309540059 -0.00763105013013 -0.00106948530557)
(-0.014880580835 -0.00979276436517 -0.00166810411218)
(-0.014200781857 -0.0120502008815 -0.00205273248782)
(-0.0127876319767 -0.0140825416856 -0.00252092630737)
(-0.0109072716146 -0.0162112884918 -0.00298211255581)
(-0.00872916212886 -0.018399523874 -0.00334488388983)
(-0.00651057416908 -0.0205595091152 -0.00367716374503)
(-0.00451966785386 -0.0225375234456 -0.00388335703343)
(-0.00282568240152 -0.0242556474964 -0.00395264060348)
(-0.00132072263466 -0.025730260319 -0.00390102198285)
(-9.46335617604e-06 -0.026917167592 -0.00379360520114)
(0.00083045240981 -0.02788347949 -0.00348421359349)
(0.000574226104807 -0.0284599724842 -0.00243680915148)
(-0.00120266622254 0.00293889608617 0.0011236583314)
(-0.00401959926144 0.00245224142352 0.00157062278511)
(-0.00730300057926 0.0016796538675 0.00153930164527)
(-0.0103759481097 0.000709693439175 0.00124101834551)
(-0.0129413673415 -0.000473629908027 0.000820157256621)
(-0.0148880920542 -0.00183766315058 0.000310763714191)
(-0.0161710706353 -0.00330808907934 -0.000265843317096)
(-0.0167534128332 -0.00486349166285 -0.000876086837178)
(-0.0168223121899 -0.00642088243011 -0.00160353355087)
(-0.0161522685797 -0.00788896144817 -0.001913832225)
(-0.0147110560182 -0.00936716518335 -0.0023862937751)
(-0.0128634948562 -0.0109135846165 -0.00286051297313)
(-0.0107140265299 -0.0124652472129 -0.00326912732376)
(-0.00850026994093 -0.0139870690422 -0.00357770444509)
(-0.00634824961928 -0.0154461556823 -0.0037938684839)
(-0.00439339492389 -0.0167467590514 -0.00394903178612)
(-0.00262175157726 -0.0179259186082 -0.00400196355697)
(-0.00105041805493 -0.0189726280045 -0.00401488634113)
(0.000100374457326 -0.019897101089 -0.00374666282076)
(0.000284748519781 -0.0205106057783 -0.0027682497028)
(-0.00144035911564 0.00204277680917 0.00143083707674)
(-0.00459113263116 0.00161132419623 0.00175095629578)
(-0.00803794337082 0.00108541423848 0.0016632646336)
(-0.0112391805491 0.000505118556405 0.00136382953943)
(-0.0139336196077 -0.000151825147028 0.000957625943937)
(-0.0159819666114 -0.000885897263409 0.000476166260276)
(-0.0173548321972 -0.00168759284236 -8.37331807459e-05)
(-0.0180328876838 -0.00252576095085 -0.000673881588633)
(-0.0180018907106 -0.00340839180399 -0.00121340994076)
(-0.017245910089 -0.0041522818018 -0.00171083135481)
(-0.0159223195405 -0.00496684133438 -0.0021766636738)
(-0.0141021732505 -0.0058596697344 -0.00265209594535)
(-0.0119741471663 -0.00675405359813 -0.00303908331046)
(-0.00974352716169 -0.00764921429702 -0.00335783225168)
(-0.00754971977323 -0.00849947476614 -0.0035843704452)
(-0.00549979431977 -0.00932403654973 -0.00376365957644)
(-0.0036285966604 -0.0100961306384 -0.0038540648218)
(-0.00195733692299 -0.0108556569812 -0.00389917853952)
(-0.000626002592779 -0.0116149886547 -0.00373519388077)
(-1.1702827654e-05 -0.0122826347874 -0.00301737446022)
(-0.00162023198362 0.00068225918617 0.00165356304951)
(-0.00493252067803 0.00047883163481 0.00160301335289)
(-0.00835913193448 0.000266315599826 0.00142382497982)
(-0.0115255995407 7.31319295615e-05 0.00115612005219)
(-0.0142077704568 -0.000120267331603 0.000812189867043)
(-0.0162668959649 -0.000328414943421 0.000432888127261)
(-0.0176373885005 -0.000557807607166 1.43787393363e-05)
(-0.0182940896942 -0.000789978723717 -0.000424726294567)
(-0.0182690722961 -0.00101867160489 -0.000862280071706)
(-0.017475578104 -0.00118468142751 -0.00122598682593)
(-0.0162455138191 -0.00140596884329 -0.0015951598057)
(-0.0144571659241 -0.00164437939135 -0.0019452902525)
(-0.0124161835728 -0.00190784636043 -0.00221584031922)
(-0.0102169433791 -0.00220292545711 -0.00243525060501)
(-0.00802917973036 -0.00249233062571 -0.00262063943517)
(-0.0060102023831 -0.00279030352753 -0.0027823937743)
(-0.0041914424633 -0.00307610216725 -0.00291547249624)
(-0.00259049467417 -0.00338219299552 -0.00302019130641)
(-0.00130049942046 -0.00370034324492 -0.00309800362131)
(-0.000343524477215 -0.00404170219632 -0.00314420868858)
(0.00255512546963 -0.00134427654223 -0.00263821163014)
(0.0076546729085 -0.00137897776908 -0.00251001109944)
(0.01253034512 -0.00141884905049 -0.00229811555432)
(0.0171949721912 -0.00150975183621 -0.00193871583395)
(0.0215984465246 -0.00164269315634 -0.00141798415502)
(0.025685972892 -0.00181784430036 -0.000718959981135)
(0.0294126292193 -0.00204879702939 0.000165225302763)
(0.0327274156806 -0.00233834580756 0.00121291072308)
(0.035521321743 -0.00265481047299 0.00242323549673)
(0.0376028240366 -0.00294747996823 0.00378927926372)
(0.0387796191108 -0.00323060124789 0.0052968828652)
(0.0389141188934 -0.00348640200901 0.00684739683422)
(0.0379254544704 -0.0037301796475 0.00844196012583)
(0.035785666582 -0.0039722521847 0.0100189306709)
(0.0325439934764 -0.00424366710253 0.0114699834227)
(0.0283042119639 -0.00449968302953 0.0127834535442)
(0.0231633312329 -0.00470723427105 0.013954822685)
(0.0172562710328 -0.00485206773077 0.0149562784323)
(0.0107461297229 -0.00491210731161 0.0157566668276)
(0.00363174042417 -0.00472049300722 0.0162569795525)
(0.00248646794348 -0.00388502600174 -0.00284235188357)
(0.00751474862535 -0.00395656997861 -0.00232831378953)
(0.0123021007717 -0.00408224402944 -0.00201289400219)
(0.0168286593161 -0.00434912469726 -0.00164084068043)
(0.021131421103 -0.00472893412029 -0.00109664747383)
(0.0251308521121 -0.00519009518753 -0.000340550098784)
(0.0287791042736 -0.00580070245464 0.000605764352404)
(0.0320618331687 -0.00664591079028 0.00171065430366)
(0.0348913237836 -0.00751693218848 0.00297996348971)
(0.0370101404413 -0.00832806408004 0.00440895162265)
(0.038252073698 -0.00912126784886 0.00597526580913)
(0.0384529859226 -0.00988486837606 0.00759219823406)
(0.0375076898301 -0.0106058869524 0.00923695209747)
(0.0353959514715 -0.0112992515802 0.0108639824824)
(0.0321774517656 -0.012094124634 0.0123142446015)
(0.0279810828594 -0.0128542016751 0.0135881214868)
(0.0228639949099 -0.0134971784112 0.0146680563806)
(0.0169405107474 -0.0139754207122 0.0155257893042)
(0.0104084820716 -0.0142097879465 0.0161403197439)
(0.00345143085385 -0.0139558195904 0.0160905664965)
(0.00243345953875 -0.0061498918278 -0.00320659929432)
(0.00735392229553 -0.00627070470923 -0.00259265666526)
(0.0119904043744 -0.00652912876567 -0.00223745368632)
(0.0163548464816 -0.00697477686696 -0.00185213314814)
(0.0205317992812 -0.00751784217259 -0.0012913718076)
(0.0243994350501 -0.00817235339461 -0.00039121616172)
(0.0278193567053 -0.00915695045247 0.000632581805716)
(0.0310091616718 -0.0106987859735 0.00171520433373)
(0.0339077560789 -0.0121680131272 0.0030566441266)
(0.0360857278676 -0.0135357341329 0.00454901559684)
(0.0373325382771 -0.0147672453154 0.00614527768248)
(0.0375639735577 -0.0161963938856 0.00775587349787)
(0.0367298447412 -0.0174946362257 0.0094083781009)
(0.0346550666033 -0.0185709689677 0.0111244581801)
(0.0314556560026 -0.0198870812267 0.012506886751)
(0.0273597811805 -0.0210734813105 0.0136909811542)
(0.0223308614515 -0.0220956275776 0.0146060635248)
(0.0165101599585 -0.0228967178421 0.015286122398)
(0.0100901901717 -0.0233428392269 0.0157433993043)
(0.00329997549403 -0.023232330751 0.015553628963)
(0.00233776434874 -0.00791970891579 -0.00365111489194)
(0.00706666497224 -0.00812051962405 -0.00303535614677)
(0.0114950005433 -0.00851767861424 -0.00273417925473)
(0.0156831259807 -0.00905859857404 -0.00237306137015)
(0.019762386699 -0.00971601620486 -0.00159754326765)
(0.0234057623496 -0.0106185290428 -0.000688221275918)
(0.0264161952681 -0.0119477731423 0.000413437798816)
(0.0294490921766 -0.0144488321236 0.00141758438123)
(0.0324906613965 -0.0166721891518 0.00299978839454)
(0.034786019465 -0.0188848987636 0.00464409036346)
(0.0359335004992 -0.0209611538608 0.00638940014969)
(0.0360740198133 -0.0229193484656 0.00774753625618)
(0.035549475537 -0.0251204069028 0.00929086420909)
(0.0336058100432 -0.0259518824473 0.0110594383887)
(0.030425363613 -0.027713976762 0.0121786230292)
(0.0265222969895 -0.0291756308567 0.0132593313741)
(0.0216416202931 -0.0304477948809 0.0140791670625)
(0.0159889292769 -0.0314666358459 0.0145974490179)
(0.00978499477116 -0.0320803537343 0.0148893934111)
(0.00319024433059 -0.032004006782 0.0147201696834)
(0.00220632220063 -0.00905434657119 -0.00413839590779)
(0.00667722824326 -0.00932354429881 -0.00356994916838)
(0.0108500908237 -0.00978610718141 -0.00333320608607)
(0.0148309688425 -0.0102579775097 -0.00298868676911)
(0.0187956407065 -0.0110807460887 -0.00204283640201)
(0.02222909578 -0.0120116564941 -0.00119747967169)
(0.0245101494166 -0.0132824502497 -0.000253691644266)
(0.0271393988787 -0.0165921098898 1.92263057519e-06)
(0.0302571233309 -0.0192116488128 0.001956880237)
(0.0324396276692 -0.0221388323513 0.0038307391988)
(0.0338762903819 -0.0250982044819 0.00562778679001)
(0.0339610657835 -0.0274917796699 0.00764770329055)
(0.0342830753591 -0.0301385737145 0.00920510453922)
(0.0328862746695 -0.0324306150612 0.0107420087846)
(0.0291615971803 -0.0349330151641 0.0112931890316)
(0.0254633628172 -0.036626552091 0.012471485616)
(0.0207457210115 -0.0381859682488 0.0131528413896)
(0.0153429134749 -0.039283595701 0.0135302775264)
(0.00941571344557 -0.0399874910008 0.0137375692494)
(0.00306581812709 -0.0399435968533 0.0135988888486)
(0.00204040078422 -0.00947539073083 -0.00460449348158)
(0.00618305688879 -0.00978959614971 -0.00412157265492)
(0.0100411394343 -0.0102214539589 -0.00399676217181)
(0.0138560209162 -0.0105784055764 -0.00368014486505)
(0.017771030481 -0.011449806961 -0.00276844726745)
(0.021386957942 -0.0130636514547 -0.00154169765202)
(0.0227647056737 -0.0153793852821 -0.000484090263394)
(0.0250124125921 -0.0225060628454 -0.000788537343324)
(0.0280552806122 -0.0259821100857 0.00349919291319)
(0.029787433038 -0.0308761821977 0.00524918834214)
(0.0312800910464 -0.0354931070967 0.00721760364422)
(0.0316592336516 -0.0389764589343 0.00915752874605)
(0.0313128626928 -0.0416667134092 0.00896167617376)
(0.0297520255159 -0.0408733318924 0.0115916690527)
(0.0271711269377 -0.043354374859 0.0105252691511)
(0.0239689522004 -0.0440779068317 0.011673875556)
(0.0195059765679 -0.0451376895582 0.0117682731833)
(0.0145789732067 -0.0460048428475 0.0120670647816)
(0.00897143495118 -0.0468065078785 0.0122682434591)
(0.00291722580442 -0.0467914719851 0.0122306259119)
(0.00183346479983 -0.00920283626885 -0.00495608234821)
(0.00560325111225 -0.00950938249461 -0.00457734243725)
(0.00905725753576 -0.00982068357111 -0.00460791041676)
(0.0123740131302 -0.00996644949139 -0.00443679285211)
(0.0155824974734 -0.010296422342 -0.00388890637627)
(0.0189688590181 -0.0109709825445 -0.0026268301039)
(0.0175955891482 -0.0128108721407 -0.00125545384194)
(0.0195312072868 -0.0160416310798 -0.00354935651044)
(0.024002847161 -0.0187594243338 -0.00210386169616)
(0.0248731738004 -0.0274707408245 -9.47436578474e-05)
(0.0272269966325 -0.0361543386868 0.00310719831161)
(0.0291631038206 -0.0439900020759 0.00693539963536)
(0.033580772509 -0.0452686396448 -0.0014637058209)
(0.0324431270135 -0.0482994545914 0.00884416511836)
(0.0268553597876 -0.0486971128479 0.0068303002008)
(0.0238960892809 -0.0499045240765 0.00935743040153)
(0.0188371099543 -0.050858289307 0.00978903738799)
(0.0137484023179 -0.0518261307932 0.0101296008942)
(0.00830392222483 -0.0525314403081 0.0105460881624)
(0.0026727242734 -0.052403249277 0.0106255485531)
(0.00162459279434 -0.00835561099572 -0.00510833164018)
(0.00506012359326 -0.00867633722538 -0.00472931652542)
(0.00813294922188 -0.00895276399984 -0.00491575046517)
(0.0111652309393 -0.00903595544575 -0.00478227326979)
(0.0145999330778 -0.00932907288283 -0.00431099901797)
(0.0190667787007 -0.00982517526766 -0.00200272771244)
(0.0208344439629 -0.0106200552949 0.000171220443298)
(0.022977144478 -0.0104817381431 0.00826213813405)
(0.0200588053121 -0.0142188806324 0.00960638456766)
(0.0133992453882 -0.02427820187 0.00127278940536)
(0.0137843619209 -0.0339088543777 -0.00762518413194)
(0.0203313514251 -0.0439425461137 -0.0106088300282)
(0.0264785290989 -0.0459540245184 -0.00233064144822)
(0.0291590036771 -0.0511213318359 0.00757356355275)
(0.0269907022561 -0.0517328383107 0.00688445396316)
(0.0217203429841 -0.0539263539416 0.0076872080134)
(0.0171433054127 -0.0552580636762 0.00767398567121)
(0.0126502459242 -0.0563248331836 0.00800925022307)
(0.00783776710692 -0.0568971851568 0.00844208988383)
(0.00252959640451 -0.0566589358451 0.00883804556727)
(0.00138219596404 -0.0070602766962 -0.00504954398178)
(0.00436807172208 -0.00746533637438 -0.0046343353725)
(0.00694373642168 -0.00782940154162 -0.00499399382268)
(0.00944919059703 -0.00805538408966 -0.0050592020947)
(0.0124315897865 -0.00881560925328 -0.00493760430064)
(0.0165652015654 -0.0105514996988 -0.00285929632289)
(0.0189730321656 -0.0120520447892 -0.000855372953301)
(0.0192802690491 -0.0143334188329 0.00730573609741)
(0.0136685657518 -0.0211671262605 0.00798760668192)
(0.00633255692308 -0.0286672965765 -3.17821934529e-05)
(0.00714811769579 -0.0354912331642 -0.0017663934129)
(0.0155274660238 -0.0428239669333 -0.00878276664391)
(0.0240126552207 -0.0469552525892 -0.00900591569385)
(0.0280900038123 -0.0528964700598 0.0030218141153)
(0.0257239346833 -0.054791138406 0.00369378072836)
(0.0199887233587 -0.0567815615707 0.00489856021933)
(0.0156240346495 -0.0580503619232 0.00501741593996)
(0.0115212148292 -0.0589625498196 0.0055313073622)
(0.00718701791956 -0.0595997052623 0.00613637671643)
(0.00230458627036 -0.0593619081669 0.00682743023156)
(0.00107833922242 -0.0054320265067 -0.00476575604449)
(0.00348958367227 -0.00592840019888 -0.00434056449982)
(0.00550075013956 -0.00641737157885 -0.00486943539823)
(0.00736484684752 -0.00685266816748 -0.00507134026496)
(0.00981475166153 -0.00813696884891 -0.00504589523497)
(0.013803542103 -0.0117470057879 -0.0027335671504)
(0.0169406201321 -0.0173557417636 -0.000422022569178)
(0.0159378360993 -0.0243578150215 0.0103610968425)
(0.00816463356098 -0.0305298929224 0.0112899495977)
(0.000989985750496 -0.0320466827775 0.0010546804353)
(0.00175259733343 -0.0349118334239 -0.00129302694841)
(0.0098284298259 -0.0383064412145 -0.00925558133284)
(0.01824461146 -0.0430632686869 -0.0101533258495)
(0.0237139110666 -0.0509103440361 -0.00092216538236)
(0.0229327646243 -0.0549218825516 0.000417715709829)
(0.0176006704524 -0.0574770641644 0.00199885407249)
(0.0138261356696 -0.0589905953198 0.0023130634979)
(0.0102634598636 -0.0599980356039 0.00296323355162)
(0.00645864894702 -0.0606698208552 0.00375204992672)
(0.00206479569464 -0.0604087732793 0.00477611021318)
(0.000723785378998 -0.00360811392092 -0.00424042021797)
(0.00245366474377 -0.00417334660725 -0.00383206497639)
(0.00378071985987 -0.00483997807403 -0.00444347233968)
(0.00472289254701 -0.00529633584994 -0.00498044651291)
(0.00558023633414 -0.00642013320839 -0.00524134460652)
(0.00637303519592 -0.00905381024209 -0.00391988225297)
(0.00606704540203 -0.0144365824885 -0.00425074397408)
(0.00782585055214 -0.0197299445746 0.00185907403373)
(0.00889064679363 -0.0253977424652 0.00492907469113)
(0.0043930916398 -0.0286161463727 0.00441622473726)
(0.0023372064756 -0.0302820706458 -0.00364660423989)
(0.00713064627119 -0.0324778968143 -0.00886026470601)
(0.0129577697453 -0.0387056860652 -0.00891923986986)
(0.0182606005482 -0.0474263703296 -0.00451686318242)
(0.0189229199496 -0.053192886969 -0.00287424085343)
(0.0146478452545 -0.0563952987484 -0.00103024817099)
(0.0116618597455 -0.0582203236955 -0.000383557176224)
(0.00875621163302 -0.0593929580805 0.00040034079479)
(0.00560701954233 -0.0601084147503 0.00138208675617)
(0.0017845203126 -0.0598694343784 0.00270834631178)
(0.00032813430043 -0.0017431045686 -0.00347991753727)
(0.00132783298003 -0.00241115797575 -0.00304050743222)
(0.00202349528018 -0.00335570981741 -0.00368432380939)
(0.00253618133338 -0.00415095713883 -0.00443254131992)
(0.00394746835041 -0.00563933317699 -0.00455276813473)
(0.00523853202042 -0.00855747249316 -0.00352889017928)
(0.00698493195464 -0.0130591793895 -0.00470504769677)
(0.00580533136215 -0.0154252231395 0.000453086557653)
(-5.36618460828e-05 -0.0235298849279 -0.00176058384441)
(-0.0031902233266 -0.0283977881871 -0.00166663136489)
(-0.00111302722686 -0.0323854007 8.60174968019e-05)
(0.00229628832913 -0.0358335723408 -0.00124875571394)
(0.00530982753414 -0.0415741543427 -0.00116977513687)
(0.00887652276201 -0.0452378906053 -0.00430900684441)
(0.0125520813939 -0.0511943589758 -0.00398416716297)
(0.0109055184841 -0.054275788109 -0.00332314962685)
(0.0090798235205 -0.0560940587754 -0.00287075453084)
(0.00706586935379 -0.0572706654844 -0.00199984584052)
(0.00465320461819 -0.0579916975569 -0.000921200543969)
(0.00145941460713 -0.057746125342 0.000651234554344)
(-0.000130064231869 5.11477242989e-05 -0.00251393311558)
(5.40944576991e-06 -0.000710191059426 -0.00201507011214)
(-0.000216960464021 -0.00195035744838 -0.00264605023406)
(-0.000776627810764 -0.00328012222312 -0.00379087690535)
(-0.000852694684955 -0.00535551147632 -0.00459658760366)
(-0.00111277847723 -0.00927032557983 -0.00475127023549)
(-0.00115462098333 -0.0150314508895 -0.00519404163288)
(-0.00217247827831 -0.0235134252356 -0.0023832107429)
(-0.00319694990574 -0.0306931949013 -0.00376214674202)
(-0.00279176972486 -0.0335339630118 -0.00701925362438)
(-0.00149926296599 -0.0363747401526 -0.007658236879)
(0.0015816259941 -0.0390105768166 -0.00838750139852)
(0.00427180340692 -0.0425120760503 -0.00850364956733)
(0.00651544485447 -0.0439118128333 -0.00749428645878)
(0.00826915056665 -0.0481122618905 -0.00667569871455)
(0.00774668926426 -0.0507129317563 -0.00590504080505)
(0.00668401777766 -0.0524348742098 -0.0052186950783)
(0.00537664666996 -0.0536126152061 -0.00426088943201)
(0.00359710325889 -0.0543441129439 -0.00304016410922)
(0.0011849416448 -0.0541583942166 -0.0012395065069)
(-0.000582500924992 0.00165912855747 -0.00137741804818)
(-0.00127021906985 0.000901269712656 -0.00072413867519)
(-0.00227239187913 -0.000453399212535 -0.0011909919366)
(-0.00349520945025 -0.00206420475976 -0.0024369428313)
(-0.00417114610083 -0.00419177707853 -0.00328626793575)
(-0.00453768723987 -0.00736391335488 -0.00370015187643)
(-0.00462881293446 -0.0111562775449 -0.00404218930017)
(-0.00542737013926 -0.015951710696 -0.00379872267468)
(-0.00645183954619 -0.0202431249313 -0.0039536948933)
(-0.00614907209714 -0.0245870905581 -0.00501651300242)
(-0.00507532818364 -0.0278888125674 -0.00561371191563)
(-0.00280137351158 -0.0313399552121 -0.00656180772118)
(-0.000400557054827 -0.0357080984753 -0.00720363727972)
(0.00199478912703 -0.0393429913273 -0.00772407441856)
(0.0038574337372 -0.0429280225343 -0.00770906602425)
(0.00430995434001 -0.0454588236855 -0.00747406037813)
(0.00412877713839 -0.0472353638149 -0.00684152228382)
(0.00365930328475 -0.0485132539908 -0.00600018445593)
(0.00254233324462 -0.0493243660349 -0.00478104955545)
(0.000818716950873 -0.0492895977133 -0.0029400724455)
(-0.000984426229821 0.0029175377112 -0.000165082005321)
(-0.00244886259459 0.00220737272326 0.000667904507776)
(-0.00411499253669 0.000860873366857 0.000366404202856)
(-0.00595449299587 -0.00101288914812 -0.000595907136215)
(-0.00738484815486 -0.00342384201515 -0.00167022518862)
(-0.00837392931815 -0.00650046920354 -0.00246661653342)
(-0.00893520188779 -0.0104362686548 -0.00303059252598)
(-0.009574339491 -0.0150836221881 -0.00361543044183)
(-0.0100495650767 -0.0186362357432 -0.00438713095052)
(-0.00949258707818 -0.0218173350055 -0.00559213795722)
(-0.00812277268251 -0.0247541413629 -0.00655986706166)
(-0.00619654996388 -0.027835368306 -0.00721942691287)
(-0.00402365473806 -0.0311910746496 -0.00786496602882)
(-0.00174161526799 -0.0341842563646 -0.00843156938355)
(0.000166190392316 -0.0370486410641 -0.00869791567412)
(0.00125842111908 -0.0393319562127 -0.00854999767827)
(0.00179898755741 -0.041047836054 -0.00812396492823)
(0.00200593187519 -0.0423654691495 -0.00737795872557)
(0.00148743620594 -0.0432690967037 -0.00625633793648)
(0.000440673101672 -0.0433683496971 -0.00446347391479)
(-0.00133458550966 0.0036699200676 0.00108129240742)
(-0.0034760496436 0.00301620178932 0.00196861421829)
(-0.00578386570485 0.00179954142577 0.00180413219026)
(-0.00816795797331 6.55220801532e-05 0.0009689787659)
(-0.0101191666995 -0.00214976659766 -8.54515807099e-05)
(-0.0115969824602 -0.00480114335862 -0.00114062358278)
(-0.0125442972567 -0.00784352374484 -0.00216450532658)
(-0.0131586145204 -0.0111756890158 -0.00312349394551)
(-0.0133277783475 -0.0141755636208 -0.00426309275879)
(-0.01265981753 -0.0169373833511 -0.00544176457407)
(-0.0113234974857 -0.0197479467195 -0.00637772774628)
(-0.00945509492553 -0.0225729907152 -0.00738170432772)
(-0.00723149260142 -0.025345485023 -0.00817314525703)
(-0.0049813646175 -0.0279698548269 -0.00883413451401)
(-0.00297566274245 -0.030397595599 -0.00916177116484)
(-0.00141865662026 -0.0324687377562 -0.00916945814537)
(-0.000281849390688 -0.034141710243 -0.00889255753527)
(0.000499980055935 -0.0354714291797 -0.00834470602615)
(0.000558773021253 -0.0364275265775 -0.00749020354594)
(0.000106346204662 -0.0366034091133 -0.00578853262443)
(-0.00162446402668 0.00382384375758 0.00226999970157)
(-0.00433095335591 0.0032283825824 0.00310979281316)
(-0.00713663323111 0.00220425455501 0.00297032542125)
(-0.00999270638666 0.000790255008162 0.0021897514941)
(-0.0123636067952 -0.00100057671687 0.00110348587599)
(-0.0141859716283 -0.00310054241553 -0.000124050358875)
(-0.0154108306299 -0.00543363946247 -0.00138804701093)
(-0.0160617733188 -0.00791537887986 -0.00266864757513)
(-0.0160059107721 -0.0103091397705 -0.00396386198122)
(-0.0152946506012 -0.012528648173 -0.00519995012799)
(-0.0140254475596 -0.0148023001049 -0.00633771310459)
(-0.0120917180232 -0.0170397630141 -0.00738128301205)
(-0.00988422583444 -0.019301973134 -0.00826009562264)
(-0.00765467419279 -0.0214377649552 -0.00891386807093)
(-0.00549028843539 -0.0234186340299 -0.00938375236747)
(-0.00361016472953 -0.0251901695812 -0.00949503637998)
(-0.0020473039428 -0.0267050260068 -0.00938376481714)
(-0.000815401134674 -0.0279743021568 -0.00917910389318)
(-0.000255525841675 -0.0288770263362 -0.00859273832881)
(-0.000169096634899 -0.0291155517804 -0.00695216243291)
(-0.00184235915806 0.00337693150937 0.00334497920952)
(-0.00497614015163 0.0028413797369 0.00402823683249)
(-0.008155117038 0.00203024047357 0.00382401761779)
(-0.0112989733922 0.000993162497114 0.00302234673697)
(-0.0139479787025 -0.0002671961272 0.00190763994539)
(-0.0160098674805 -0.00174703347504 0.000595831803462)
(-0.0173722401996 -0.00336467703822 -0.000835762902242)
(-0.0180647844976 -0.00507828698995 -0.00229245554406)
(-0.017975954916 -0.00670427725785 -0.00381323378619)
(-0.0172079523509 -0.00842452848 -0.00500523341391)
(-0.015914669809 -0.0100597114791 -0.00623403879724)
(-0.0140486160807 -0.0116773181761 -0.00734026771073)
(-0.0118286669764 -0.0133608862002 -0.00827406153143)
(-0.00952135738005 -0.0149199738722 -0.00896283610194)
(-0.00729888289855 -0.0163854060602 -0.00942931767017)
(-0.00522707839385 -0.0177493819376 -0.00972361928627)
(-0.00342157578588 -0.0189646468657 -0.0098323405762)
(-0.00186756062339 -0.0200053551567 -0.00984468859622)
(-0.00090071456892 -0.0208083864374 -0.00939361136111)
(-0.000381929675117 -0.0210762915958 -0.00789976462314)
(-0.00195508930499 0.00241551685639 0.00423096055639)
(-0.00536727228565 0.00192028858662 0.00468162407061)
(-0.00877345522212 0.00134469649623 0.00433816593165)
(-0.0120637952969 0.000723258997676 0.00350206753339)
(-0.0148430551743 -2.03861539399e-05 0.00238640143479)
(-0.0170004809315 -0.000867991777039 0.00107507473656)
(-0.0184515804445 -0.00180221222137 -0.000360263200587)
(-0.0190980956339 -0.00280192810157 -0.00183845477711)
(-0.01903890493 -0.00375685387223 -0.00325110613799)
(-0.0183385673734 -0.00480525542671 -0.00457705894513)
(-0.0169839521855 -0.00579958645201 -0.00582809874104)
(-0.0151163268744 -0.00680944142666 -0.00695072558762)
(-0.0129319557988 -0.00782687355875 -0.00786767238231)
(-0.0106063626341 -0.0088312375047 -0.00861526391184)
(-0.00834419418271 -0.00973757945983 -0.00910618974917)
(-0.00622204808332 -0.0105974026718 -0.00950863512804)
(-0.00431223745399 -0.0113761923269 -0.00973484011032)
(-0.00265110037071 -0.0120246469697 -0.00986911668545)
(-0.0014576017798 -0.0126000894479 -0.00969153833454)
(-0.000566725171253 -0.0127248758865 -0.00862490849385)
(-0.00177453524434 0.000862404842572 0.00478990501329)
(-0.00516066758615 0.000618561853803 0.00466386661326)
(-0.00873104279593 0.00038389904192 0.00414966620818)
(-0.0120198008256 0.000171522054933 0.00335551622437)
(-0.0147832627182 -7.4772448462e-05 0.0023432157786)
(-0.016895415461 -0.000352381549373 0.00119759264841)
(-0.0183053923127 -0.000663120446534 -4.59589154691e-05)
(-0.0189556159314 -0.00098777767693 -0.00131742558648)
(-0.0188774959355 -0.00134592620397 -0.00256357450145)
(-0.0181281636445 -0.00169158296955 -0.00370070628766)
(-0.0168037943051 -0.00203643572958 -0.00476634009753)
(-0.0149834539201 -0.00237065341433 -0.00572845479868)
(-0.0128718044646 -0.00269765307898 -0.00651980226567)
(-0.0106077082292 -0.00303794672434 -0.00715129019674)
(-0.0083883484934 -0.00335377923791 -0.00765221696288)
(-0.0063488000907 -0.00364398381064 -0.00805337833796)
(-0.00450403994514 -0.00390626804236 -0.00836376570712)
(-0.00288567665096 -0.00412156189081 -0.00863225779391)
(-0.00157386231026 -0.00431153662596 -0.00887098347869)
(-0.000535703206643 -0.00428482675805 -0.00896315920145)
(0.00258395784165 -0.00145199494731 -0.00430642709754)
(0.00780366981985 -0.00152940984392 -0.00405828205559)
(0.0127995987864 -0.00158907275272 -0.00365849069304)
(0.0175963030164 -0.00170103893916 -0.00301727159629)
(0.0221324191072 -0.00185209593806 -0.00211710645545)
(0.0263540310242 -0.00202585788247 -0.000940484047983)
(0.0302212442709 -0.00228174909846 0.000513039865346)
(0.0336858587511 -0.00259331873164 0.00225183679975)
(0.036635342972 -0.00291800837561 0.00428284042172)
(0.038848945894 -0.00321168029203 0.00658763281857)
(0.0401162526588 -0.00349807040735 0.00909066631495)
(0.0403006265026 -0.00376860421806 0.0117185939581)
(0.0393238475903 -0.00402960899386 0.014412747525)
(0.0371313657491 -0.00428698836456 0.0170740718392)
(0.0337933592813 -0.00459037172682 0.0195607037647)
(0.0294307023636 -0.00487455555772 0.0218211658884)
(0.0241356415623 -0.00508611146859 0.0238240877132)
(0.0180453482939 -0.00520999984449 0.0255052914799)
(0.0113051543264 -0.00520052766321 0.0267842624206)
(0.00385926374206 -0.00484650293479 0.0275027036528)
(0.00245697733374 -0.00413167696606 -0.00458388488012)
(0.00756641411844 -0.00427869399247 -0.00402168690685)
(0.0124858936586 -0.00443851948267 -0.0034804198444)
(0.0171474456494 -0.00472843917319 -0.00279266319537)
(0.0216078493639 -0.00510388628878 -0.00187938584301)
(0.0257275238439 -0.00555714087124 -0.000677205743172)
(0.0294832415642 -0.00618713264567 0.000816371389689)
(0.0329381561065 -0.00707946109513 0.00255166142517)
(0.035943213567 -0.00796189828463 0.00461871201879)
(0.0382163856806 -0.00877785107412 0.00698940482837)
(0.039560453057 -0.00959927091651 0.00958616163406)
(0.0398143517822 -0.0103659564604 0.0122512743143)
(0.0389098703172 -0.0111380742821 0.0149919582981)
(0.0367412646326 -0.011853749188 0.0177698076702)
(0.0334029283619 -0.0127550345837 0.0202201177194)
(0.0290976298076 -0.0135743741751 0.022379357087)
(0.023831585305 -0.0142381476556 0.0242547875374)
(0.0177172328581 -0.0146813977626 0.0257762220807)
(0.0109288624529 -0.014801275521 0.0268647135454)
(0.00364430725653 -0.0142859159735 0.0271957524994)
(0.00236566623493 -0.00650199917142 -0.00515481834198)
(0.00734073042963 -0.00666154386536 -0.00445285323027)
(0.0121437790503 -0.00694038980009 -0.00385568525646)
(0.0166702556542 -0.00736823000055 -0.00317505551597)
(0.0209921048385 -0.00789987679584 -0.00224061515887)
(0.0249645131927 -0.00854295310906 -0.000950521254273)
(0.028498995615 -0.00945638285195 0.000604425717295)
(0.0318647780208 -0.0110715583702 0.00233759152493)
(0.0349488510225 -0.012497836017 0.00448398712352)
(0.0372565546449 -0.0138761325967 0.00692293132361)
(0.0386400649696 -0.0151556293998 0.00958826067347)
(0.0389391462253 -0.0164857051559 0.0123490479973)
(0.0381294751534 -0.0178658858609 0.0150966953538)
(0.0359686078663 -0.0190046132869 0.0180163899642)
(0.0326294709921 -0.0205694546111 0.0203135417454)
(0.0284492487707 -0.0218599921757 0.0223826288251)
(0.0232708493631 -0.0229607692941 0.0240303915788)
(0.017254638123 -0.023752215625 0.0252803662258)
(0.0105836356332 -0.0241092888461 0.0261289601924)
(0.00347514490551 -0.0238212897156 0.0262871248499)
(0.00225259729372 -0.00832897521302 -0.00588344128941)
(0.0070244123249 -0.0085394528886 -0.00515234504188)
(0.0116549024192 -0.00892454204351 -0.00458446306657)
(0.0160193667213 -0.00944829974688 -0.00394338393522)
(0.0202223091412 -0.010094921876 -0.00300929153692)
(0.0240528166464 -0.0109593786714 -0.00163596186384)
(0.0271279080566 -0.0122328629661 -2.10021093353e-05)
(0.0303306092388 -0.0151309079854 0.00149338668324)
(0.033583452513 -0.0170894779102 0.00379958168342)
(0.0359370385964 -0.0191477089804 0.00628236046696)
(0.0373109226755 -0.0211330223369 0.0088899882166)
(0.0374814273226 -0.0228839545849 0.0120112541415)
(0.0368647464219 -0.0248832797905 0.014807364432)
(0.0347319707672 -0.0262033587107 0.0178725210692)
(0.0314079397083 -0.0285117926195 0.0197565197652)
(0.0275366356129 -0.0300694227643 0.0216879367258)
(0.0225323616199 -0.0314534132503 0.0231368001133)
(0.0167135309534 -0.0325088265707 0.0241113229505)
(0.0102674989242 -0.0330542933773 0.024746446795)
(0.00335974261195 -0.0328404621265 0.0248762685865)
(0.00210616777526 -0.0094568596681 -0.00667256763593)
(0.00665588043584 -0.00972385504631 -0.00597708380587)
(0.0110753025414 -0.0101732028333 -0.00549555588918)
(0.015227127389 -0.0107189644581 -0.00493893162711)
(0.0192193656886 -0.01137018014 -0.00404057594483)
(0.0228270480149 -0.0121202446654 -0.00271237012945)
(0.0249021137372 -0.0130730889412 -0.00133810363516)
(0.0279544896903 -0.016327833193 -0.000920976272521)
(0.0317824370046 -0.0182928022363 0.00151525462303)
(0.0339353233818 -0.0213541679772 0.00420035126775)
(0.035577710964 -0.0241924348901 0.00708316272439)
(0.0358732782662 -0.0267556606408 0.0103962692729)
(0.0355222973033 -0.0302557192687 0.013947645648)
(0.0332899162497 -0.0317260006788 0.0171678397456)
(0.029824095218 -0.0358033867059 0.0182230229675)
(0.0264744314419 -0.0376183307046 0.0202450907529)
(0.0215845780341 -0.0393373139987 0.021553958274)
(0.0160185762561 -0.0405207322522 0.0223976486244)
(0.00986671101863 -0.0411778777924 0.0228767554954)
(0.00321108324538 -0.0410125869587 0.0229830663039)
(0.00193797944584 -0.00981193932192 -0.00741810644723)
(0.00620879480577 -0.0101394579705 -0.00678160694737)
(0.0103593128617 -0.0106551162256 -0.00640230793924)
(0.0143103133705 -0.0113061825436 -0.00592152050093)
(0.0183245210211 -0.0122771337871 -0.0051144049414)
(0.0223647494446 -0.0136140364116 -0.00345271489746)
(0.0238734769203 -0.0153018197067 -0.0015355778522)
(0.0267284118499 -0.0232287858586 -0.00213908555904)
(0.0301669537777 -0.0261715446218 0.00169088103498)
(0.031433356418 -0.0310465189148 0.00489411127649)
(0.0330318394488 -0.0349706162958 0.00844462332423)
(0.0324369509873 -0.0380992471698 0.0123188160732)
(0.0325937664983 -0.0448012370268 0.0127455663848)
(0.0303260577385 -0.0408602772068 0.0158485628537)
(0.0265525408498 -0.0446363320969 0.0156059433602)
(0.024877496615 -0.0450846445039 0.0180157318376)
(0.02027108069 -0.0466052988046 0.0192483686672)
(0.0151901898048 -0.0477358195346 0.0200004829377)
(0.00937882333152 -0.0482882220277 0.0204757825289)
(0.00303541421067 -0.0480835019057 0.0206399045154)
(0.00173231977951 -0.00941929379883 -0.00798527805073)
(0.00565280096226 -0.0097747818655 -0.00741406146022)
(0.00940367636535 -0.0102681335766 -0.0071637399279)
(0.0127354382977 -0.0108447043755 -0.00690477450121)
(0.0160368561194 -0.0117884631325 -0.00664192345149)
(0.0199244911649 -0.0123738040984 -0.005879696883)
(0.0187821304366 -0.012627117619 -0.00568015041614)
(0.0212965309421 -0.00986390630307 -0.0210927659996)
(0.0283058034918 -0.013978338536 -0.014492106456)
(0.0282072693537 -0.0285059104922 -0.00938412171791)
(0.0308665884791 -0.0430383562837 -0.0027408651944)
(0.0282047507369 -0.0560893470617 0.00723772325174)
(0.0338178567679 -0.0570087277906 0.00391433600635)
(0.0358834910202 -0.0482175910841 0.0129804869379)
(0.0265443748187 -0.0486637459125 0.0101730527506)
(0.0249915524597 -0.0504530387517 0.0145767511107)
(0.0191694077316 -0.05222467213 0.0157098993375)
(0.0143528438697 -0.0534543556329 0.0165495309063)
(0.00889018923398 -0.0541238198533 0.017399926648)
(0.00282202917078 -0.0538774722904 0.0178621686277)
(0.0015130259501 -0.00841289309307 -0.00823325971392)
(0.00510343940308 -0.00880182552622 -0.0076719337622)
(0.00857002982739 -0.00935139459962 -0.00746180141827)
(0.011595345424 -0.00994989218371 -0.00712255514357)
(0.0156147174114 -0.0108981411798 -0.00655733582914)
(0.0216236131873 -0.0113955622861 -0.00455968876596)
(0.0356728761767 -0.0121903844519 -0.00802952199036)
(0.0295849210827 -0.00987059804837 -0.00434484969285)
(0.0209339782051 -0.0133190341389 -0.000584539614939)
(0.00951695653443 -0.0265644549219 -0.00311411370117)
(0.0106488757542 -0.0384107117335 -0.00331091927957)
(0.0226047921604 -0.052847027825 -0.00430678124226)
(0.033168115048 -0.052179278396 0.00106529103719)
(0.0385086511378 -0.0514291232176 0.0170282655782)
(0.0251438651061 -0.0514934141175 0.0102953521945)
(0.0215159122303 -0.0547204831698 0.0122191151765)
(0.0171182730112 -0.0566335936288 0.0125902137125)
(0.01299535793 -0.057836350452 0.0134001584815)
(0.00805818927526 -0.0585791170031 0.0141393088583)
(0.00255122664268 -0.0582628956691 0.0147542059227)
(0.00124485421862 -0.00692939253267 -0.0081404965759)
(0.00436820013307 -0.00740416615137 -0.00758976015122)
(0.00736791020848 -0.00814457318356 -0.00743987710822)
(0.0097875227588 -0.00900593908669 -0.00718369450079)
(0.0131319758923 -0.0103152384129 -0.00680713868393)
(0.0177495018792 -0.0123063273058 -0.00487533291232)
(0.032542617933 -0.0148318756778 -0.010091483875)
(0.025433670193 -0.0174717796141 -0.00275603001813)
(0.0140946158342 -0.0225165085065 0.00304613665062)
(0.00261311122818 -0.0301817770706 -0.000735828226969)
(0.00396881400887 -0.0369404449281 -0.000275122225635)
(0.0159731122444 -0.0461405782934 -0.00299552005212)
(0.0311934341892 -0.0522799737293 -0.000876120595884)
(0.0416517367957 -0.0546027034371 0.0118782171025)
(0.0244243345426 -0.0558688150687 0.00668195733961)
(0.019877718287 -0.0581998342503 0.00810305273928)
(0.0156477763589 -0.0597833747271 0.00858520816347)
(0.0118158533604 -0.0608894824126 0.00952932253642)
(0.00731125684981 -0.0614721593421 0.0104889290806)
(0.00227489212795 -0.0610720080259 0.0114132482147)
(0.000908447807672 -0.00509227512734 -0.00765762570074)
(0.0034430721712 -0.00566725316212 -0.00711553199666)
(0.00588230885699 -0.00659387178538 -0.00705794411823)
(0.00780257081111 -0.00774837170527 -0.0069275602902)
(0.0108175001802 -0.00961160085477 -0.0065381857453)
(0.0147758895965 -0.0135363684235 -0.00447197577815)
(0.0308111284977 -0.0205180039121 -0.00988567869052)
(0.0229042108916 -0.0320801091205 -0.000791800395028)
(0.00828818336655 -0.0375243993059 0.00539062619258)
(-0.00286929170843 -0.0354299565712 0.000417092272058)
(-0.00138754653309 -0.0371694032177 0.000544152896021)
(0.0109711124192 -0.0388050694475 -0.00342165304531)
(0.0246000159806 -0.0431968444178 -0.00214218414436)
(0.0394725567455 -0.052728366595 0.00511107360314)
(0.022357174207 -0.0562914635432 0.00244493415922)
(0.0175557919433 -0.0589582440225 0.00377320608869)
(0.0138238740142 -0.0607663926939 0.00445802735943)
(0.0104713846494 -0.0619931353118 0.0054850871704)
(0.00649775058316 -0.0626018948905 0.00668559700886)
(0.00197976589448 -0.0621868859932 0.00791829345304)
(0.000512155672402 -0.00306163917889 -0.0067716318128)
(0.00232746193132 -0.00371716718629 -0.00624510925984)
(0.00403605272017 -0.00475606278438 -0.00634376301093)
(0.00504332515139 -0.00594640320641 -0.00639882580145)
(0.00639058588748 -0.00752254473333 -0.00615166042438)
(0.0071299700846 -0.010813315531 -0.00371832146183)
(0.0175516793397 -0.0166446241367 -0.00848908933528)
(0.0113661711578 -0.0294828729383 -0.000892497623679)
(0.00976933788958 -0.0359650325703 0.00223304108567)
(0.00214438357809 -0.0329401160516 0.00139016389808)
(-0.000628853058626 -0.0325910311958 0.000155036620742)
(0.0095517403899 -0.0312742615815 -0.00167103891538)
(0.0186881321566 -0.0371662014714 -0.00143965312034)
(0.034740986357 -0.0478078284455 -0.0011758198385)
(0.019810258325 -0.0538412047145 -0.00165282456074)
(0.014761153768 -0.0575279253016 -0.000600046863108)
(0.0117419325922 -0.0598724477289 0.000276385017337)
(0.00890819927157 -0.0613254528937 0.0014401680117)
(0.00553500943266 -0.0620161029572 0.00286112068352)
(0.00162945296671 -0.0616238222809 0.00436364964838)
(7.21289672792e-05 -0.00101668309747 -0.00546760177032)
(0.00111870023027 -0.00178279350897 -0.00496424401323)
(0.00222421029408 -0.0030824186206 -0.00514665191567)
(0.00308369186707 -0.00467499479728 -0.00531381917477)
(0.00451145916008 -0.00670178697826 -0.00502501516506)
(0.00441272903416 -0.0104285644368 -0.00297317565286)
(0.00825236237838 -0.0160967258336 -0.0046114240927)
(0.00395599152972 -0.0293097180042 0.00388716711402)
(-0.00194557064833 -0.0355102943445 -0.00187626023598)
(-0.00342736256705 -0.0361942592733 0.00306255907776)
(-0.00231413519574 -0.0339558649449 0.00518151448972)
(0.00189955634915 -0.0301372721681 0.00572182399567)
(0.00508393877132 -0.0311421015466 0.00405353984114)
(0.00957399759981 -0.045194342433 -0.00517970253317)
(0.0120222336162 -0.0515979621253 -0.00530281326103)
(0.0105401302291 -0.0553444850621 -0.00441595768473)
(0.00896249042973 -0.0576899919338 -0.00361090887988)
(0.00706395901806 -0.0591408818177 -0.00241832607718)
(0.00441314873065 -0.0598199467693 -0.000860441664616)
(0.00127817434358 -0.0594434175317 0.000894754614322)
(-0.000449231767457 0.000934988332416 -0.00382228738508)
(-0.000385016713477 7.804567128e-05 -0.00332105664644)
(-0.000324657058135 -0.00144506646187 -0.00368601464953)
(-0.000663749503108 -0.00351711281023 -0.00433140470447)
(-0.000653682563966 -0.00619595494528 -0.004993453461)
(-0.0013961153319 -0.0107408322426 -0.00506964844236)
(-0.000493831104037 -0.0159879225224 -0.00657849343857)
(-0.00235644739361 -0.0256300928072 -0.00391401850954)
(-0.00481455846464 -0.0313593662725 -0.00589794290887)
(-0.00395177814187 -0.034027527943 -0.00745000151737)
(-0.00225990991611 -0.0368137746672 -0.00919913826601)
(0.000753975556721 -0.0389292233332 -0.0106588809951)
(0.00461728484014 -0.0421993438804 -0.0114082195957)
(0.00712569855702 -0.044335919738 -0.0103334898093)
(0.00831825322552 -0.0487009223738 -0.0093008209894)
(0.00764814137011 -0.0517890284779 -0.00831487278049)
(0.00662253543074 -0.0539007163049 -0.0073315893974)
(0.00533352341456 -0.0553089370029 -0.00600494516944)
(0.00328781127339 -0.0560386461929 -0.00429059357891)
(0.000900500824913 -0.0557301803101 -0.00240417485429)
(-0.000963844176003 0.00267195864879 -0.00187803669089)
(-0.00181504313556 0.00183893746147 -0.00129966923012)
(-0.00260455851125 0.000306599920426 -0.00170027567459)
(-0.00362657959123 -0.00180581236503 -0.00256939902384)
(-0.00419890203502 -0.0043318814683 -0.00347000820578)
(-0.00470630289672 -0.00773763094666 -0.00402718941736)
(-0.00457176490562 -0.0112295112544 -0.00491044313605)
(-0.00552640898635 -0.0175758690922 -0.00408266087693)
(-0.00728684807844 -0.020885277108 -0.00546445526589)
(-0.00693715240903 -0.0241959522242 -0.00692441660822)
(-0.00578704501176 -0.0273925041888 -0.00884777165009)
(-0.00376615587002 -0.0305063299018 -0.0103408438916)
(-0.00113244342235 -0.0346062126513 -0.0114765768272)
(0.00156781718685 -0.0391614831244 -0.0116765084614)
(0.00354257209658 -0.0433653869572 -0.0115668812661)
(0.00404433486168 -0.0464400365438 -0.0110178381465)
(0.00395124359145 -0.0485750690768 -0.0101095733415)
(0.00341484708107 -0.0500330052367 -0.00882632240481)
(0.00207530322029 -0.0508506746686 -0.00719558539269)
(0.000471022181323 -0.0507016812365 -0.0053853930686)
(-0.00140233595789 0.00400242603317 0.00022449614524)
(-0.00312718747554 0.00322575414433 0.000887467939821)
(-0.00473328658504 0.00175005968155 0.000516477941305)
(-0.00649368004095 -0.000345439474754 -0.000567383500941)
(-0.00783841081864 -0.0029815553898 -0.00182246492907)
(-0.00888736484047 -0.00634026452641 -0.00295130049734)
(-0.00942853025143 -0.0102478430845 -0.00422730575992)
(-0.0101870706357 -0.0151924071288 -0.00497804141136)
(-0.0109404633066 -0.0186433446822 -0.00653221042967)
(-0.0104327703517 -0.0218526619789 -0.00811633590613)
(-0.00900253444075 -0.0250142832198 -0.0100472281488)
(-0.00695312791088 -0.0280211594299 -0.0115377076847)
(-0.00461823796034 -0.0313585841306 -0.0125104928294)
(-0.00224431165661 -0.0345637468958 -0.0130680647547)
(-0.000268414411891 -0.0378022726411 -0.0132565959389)
(0.000922649618442 -0.0403981388653 -0.0129804895906)
(0.00153536849246 -0.042355202892 -0.0122719601849)
(0.00166379756957 -0.0437653739441 -0.011142674959)
(0.000937946273837 -0.044615104883 -0.00973995885014)
(4.77388038668e-05 -0.0446268956726 -0.00803022692105)
(-0.00177762630114 0.00475013799827 0.00235188020924)
(-0.00424311617717 0.00404035550694 0.00301653693631)
(-0.00655040637784 0.00273397863173 0.00269156991651)
(-0.00894113780923 0.000872511290962 0.00154923709701)
(-0.0108675995878 -0.0014880996251 3.93328831045e-05)
(-0.0123529541605 -0.00430799570441 -0.00154098668142)
(-0.0132802072603 -0.00742526577401 -0.00323173732641)
(-0.0139548239449 -0.0109483658088 -0.0048082171641)
(-0.014278496276 -0.0140127035041 -0.00666341222337)
(-0.0136445715511 -0.0169363997153 -0.00856634316933)
(-0.0122422637872 -0.0198359334359 -0.0103640505464)
(-0.0102413741876 -0.02275901095 -0.0118210789277)
(-0.00790892858489 -0.0257662238761 -0.0130002896411)
(-0.00558371928102 -0.0285719512623 -0.013799517736)
(-0.0034688873586 -0.0312193620975 -0.0141992407211)
(-0.00182786967714 -0.0334740158328 -0.0141364923026)
(-0.000667359529297 -0.0352864499086 -0.0136605134481)
(5.609005465e-05 -0.0366843400647 -0.0129115995933)
(-6.8387855646e-05 -0.0376065244301 -0.0118743704697)
(-0.0003071488864 -0.0377084391952 -0.0103653840338)
(-0.00206303102811 0.00483519592517 0.00437254057705)
(-0.00511175974889 0.00418012490324 0.00496351467267)
(-0.00798711877142 0.00308000381863 0.00460532616553)
(-0.0109012135479 0.0015649008678 0.00339842704702)
(-0.0133016754904 -0.000352552868918 0.00174374045508)
(-0.0151517939763 -0.0026073741077 -0.000166302771671)
(-0.0163712483308 -0.00508593144177 -0.00218106761327)
(-0.0170074827531 -0.00777519699653 -0.00420919012329)
(-0.0170988256647 -0.0103042399931 -0.00632414086956)
(-0.0163964081929 -0.012676118284 -0.00849418090993)
(-0.0149380435122 -0.0150791134765 -0.0103374121001)
(-0.0129512018827 -0.0174469952699 -0.0119021084355)
(-0.01061602627 -0.0198921721241 -0.0132558819989)
(-0.00823310606915 -0.0221844407856 -0.0141621262765)
(-0.00600678846216 -0.0242944743952 -0.0146872520892)
(-0.00405989640305 -0.0261798941897 -0.0148472795174)
(-0.00249697687777 -0.0277786728625 -0.014713023442)
(-0.00132296103725 -0.0290692766568 -0.0143757646933)
(-0.000917640553588 -0.0299410016407 -0.0136395928946)
(-0.00058510168405 -0.0300666368252 -0.0123078705479)
(-0.00225971041806 0.00425002909358 0.00617067359034)
(-0.00574405559732 0.00364578300304 0.00658964052837)
(-0.00899759952237 0.00276664417257 0.00607635649882)
(-0.0122540538039 0.00165565958001 0.00481063987202)
(-0.0149804223655 0.000279842679186 0.00304086672219)
(-0.0170909950406 -0.00133499517665 0.000972192876327)
(-0.0184784576429 -0.00310648365169 -0.00127239055549)
(-0.0191624119061 -0.0050028724158 -0.00359485295413)
(-0.0191072082078 -0.00685326711502 -0.00585317131451)
(-0.0183089141552 -0.008622561872 -0.00812587439843)
(-0.0168725945673 -0.0104181644996 -0.010117968604)
(-0.0148872749925 -0.0122031029423 -0.0118169185885)
(-0.0125623483532 -0.0139868494998 -0.0131996219734)
(-0.0101237282547 -0.0157214396154 -0.0142906019681)
(-0.00779368165138 -0.0172737720951 -0.0149339294641)
(-0.00568462288261 -0.0187288908641 -0.0153219145103)
(-0.00387994874002 -0.0199939109625 -0.0155044995653)
(-0.00236895828332 -0.0210160864353 -0.0154656501086)
(-0.00152971898492 -0.0217393940081 -0.0149993374274)
(-0.000765815773 -0.0218334875989 -0.0138520791202)
(-0.00228799347168 0.00305292650526 0.00758454947397)
(-0.0059992640562 0.00249865281732 0.00775165027493)
(-0.00952520746339 0.00186198765995 0.00705589478899)
(-0.0129687713429 0.00118724809705 0.00569275821434)
(-0.0158602292369 0.000367839832042 0.00388390655948)
(-0.0180871326694 -0.000597497714727 0.00176275688192)
(-0.0195651543484 -0.00166799304893 -0.000533028838092)
(-0.0202302163356 -0.00281941324248 -0.00290041528068)
(-0.0201413569562 -0.00396843695508 -0.00531454266486)
(-0.0193547911962 -0.0051303238508 -0.00750763265139)
(-0.0179045103275 -0.00626357785005 -0.00952748491926)
(-0.0159187809775 -0.0073882550606 -0.0112967848753)
(-0.0136095245062 -0.00853812411401 -0.0127447371607)
(-0.0111472215189 -0.00966976008095 -0.0138907099854)
(-0.00878719787065 -0.0106757699497 -0.0146676066705)
(-0.0066383340572 -0.0115977335473 -0.0152391071099)
(-0.00470948901777 -0.012382937286 -0.0156210075544)
(-0.00306445172302 -0.0129895924913 -0.0158225188376)
(-0.00196621012579 -0.0134433617227 -0.0157083884605)
(-0.000874141242034 -0.0132691947988 -0.0149668488207)
(-0.00190090142424 0.00112689228054 0.00840540089887)
(-0.00548669653994 0.000853235836216 0.00811256240966)
(-0.00930282362939 0.0005914084367 0.00721238902612)
(-0.0127871778341 0.000352882319905 0.00583570134121)
(-0.015693893268 7.1053412494e-05 0.00408988022884)
(-0.0179010992801 -0.000260577136343 0.0020685127494)
(-0.019347209974 -0.00064756255906 -0.000109960103983)
(-0.0199950123577 -0.00105748688372 -0.0023301372029)
(-0.019873345114 -0.00149595183553 -0.00453206206353)
(-0.0190311298688 -0.00193362148799 -0.00658710549057)
(-0.0175697345351 -0.00236055151807 -0.00848282325184)
(-0.0156316628569 -0.00278071372168 -0.0101579289431)
(-0.0134011644379 -0.00317743303291 -0.0115545169198)
(-0.0110238912007 -0.00355731629962 -0.012670607017)
(-0.00870575495127 -0.00390293045117 -0.0135333730168)
(-0.00661249122872 -0.00420360596598 -0.014165265998)
(-0.0047464950697 -0.00444641815876 -0.0146462078852)
(-0.00311794117996 -0.00462596858869 -0.0150382937317)
(-0.0017903315339 -0.00473710766043 -0.0153591574515)
(-0.000656368824879 -0.00451541123731 -0.0154278677996)
(0.00266011278111 -0.00158232830173 -0.0058940833897)
(0.00805765498319 -0.00166229308666 -0.00551004055048)
(0.013228393193 -0.00172529584606 -0.00491779648166)
(0.018214855814 -0.00184832090235 -0.00399774572983)
(0.0229575036498 -0.00200792199104 -0.00273155725671)
(0.0273858501856 -0.002200592842 -0.00108286147976)
(0.0314780700963 -0.00245476792404 0.000957069472358)
(0.0351781464208 -0.00279866092043 0.00340326593035)
(0.0383585671339 -0.00313556815059 0.0062785977455)
(0.0407565297027 -0.00343044709276 0.00955432924925)
(0.0421540665767 -0.00370740817492 0.0131049441975)
(0.0424269843649 -0.00398915720029 0.0168568810796)
(0.041471277892 -0.0042655901693 0.0206989784595)
(0.0392059874106 -0.00452576442432 0.0245034430842)
(0.0357129058413 -0.00486121005874 0.0280698456103)
(0.0311568111787 -0.00517419951084 0.0313299755339)
(0.0256217140102 -0.00539434656277 0.0342023637166)
(0.0192190393272 -0.00551567144688 0.0365825414021)
(0.0120886828537 -0.00546703273417 0.0383533876885)
(0.00415033831505 -0.00501948078124 0.0392954712226)
(0.00252073073188 -0.0044772409928 -0.00625359356932)
(0.00779616161801 -0.00462662796851 -0.00559387475211)
(0.0128883993976 -0.00480307775253 -0.00486559562571)
(0.0177375265606 -0.00510414066734 -0.00389602393083)
(0.0223823865439 -0.00547526297487 -0.00261404886814)
(0.0267156478728 -0.00590816288989 -0.000952050843049)
(0.0306777951287 -0.00654403756195 0.00112433796627)
(0.0343561338141 -0.0075233261102 0.00359131749467)
(0.0376323533347 -0.00842836529972 0.00650107182175)
(0.0401275547145 -0.00924099097899 0.0098412958204)
(0.0415907281612 -0.0100259944592 0.0134778822515)
(0.0419030368732 -0.0108340684566 0.0172943789531)
(0.041056800163 -0.0116919903866 0.0212156615697)
(0.0388162647474 -0.012365992662 0.0250966744116)
(0.0352871917538 -0.0134063747298 0.0286093004612)
(0.030798985167 -0.0142733921768 0.0317864122374)
(0.0252862604205 -0.0149666735433 0.0344810535384)
(0.0188429595926 -0.0154146213732 0.0366804690739)
(0.011644389056 -0.0154646365423 0.0382463990588)
(0.00389620804289 -0.0148029467559 0.0388536274283)
(0.00241956478428 -0.00701795047785 -0.00705876625602)
(0.00754549337574 -0.0071921008671 -0.00625250347675)
(0.0125158816679 -0.00746808743979 -0.00547271402862)
(0.0172567526779 -0.00789103012975 -0.00451073188673)
(0.0218024733629 -0.00839647457653 -0.00320308132027)
(0.0259690221961 -0.00898357486275 -0.00143949410495)
(0.0296317187632 -0.00993420778293 0.000711027700143)
(0.0332277152772 -0.0117698955874 0.00317879294067)
(0.0366317059877 -0.0131973375908 0.00619936131777)
(0.0391818459408 -0.0146070736584 0.0096036841353)
(0.0406663331922 -0.0159580292223 0.0133720379508)
(0.040959020966 -0.0172206913389 0.017270684085)
(0.0402700750832 -0.0186563654556 0.0210826438868)
(0.038003005792 -0.0196654932258 0.0251423969078)
(0.0344263095127 -0.0215430866791 0.0284768177221)
(0.030126200933 -0.0229091806523 0.031459173031)
(0.0246820083069 -0.0240595074269 0.0339219838394)
(0.0183320395404 -0.0248670674759 0.0358337127808)
(0.0112533600537 -0.0251598908516 0.0371478287866)
(0.0037043740612 -0.0247519702572 0.0375733154017)
(0.00228797959772 -0.00893781602417 -0.00809373840809)
(0.0072182395981 -0.00916848597216 -0.00727383688051)
(0.0120492236757 -0.00953823765699 -0.00651360664377)
(0.0166386199813 -0.010054600744 -0.00558873462483)
(0.0210709540261 -0.0107074984123 -0.00425782643717)
(0.0250563942927 -0.0115705873525 -0.00241628700237)
(0.0281082148239 -0.0129758585958 -0.000234230999724)
(0.0315962321317 -0.0165087347201 0.00203900065214)
(0.0352820748936 -0.0185750715131 0.00515523758475)
(0.0377737361583 -0.0207342736697 0.00876455478455)
(0.0393601355268 -0.0227733410312 0.0125442121239)
(0.0396061166378 -0.0245025436932 0.0166688469272)
(0.0390679429814 -0.0263770418457 0.0204043672126)
(0.036668148432 -0.027169066916 0.0247379170093)
(0.0330107794467 -0.0299474623737 0.0274984689429)
(0.0291707114869 -0.0315017624439 0.0303316874231)
(0.0238857645308 -0.0329711255411 0.032552394626)
(0.0177344964949 -0.0340174678871 0.03416346049)
(0.0109245279746 -0.0345054129176 0.0351944085261)
(0.00358083470238 -0.0341774112914 0.0355618666436)
(0.00212712081317 -0.0100780099983 -0.00923086546236)
(0.0068434637488 -0.0103514695578 -0.00846133056142)
(0.0114884301703 -0.0108059074615 -0.00779012574735)
(0.0158745834866 -0.0113883358897 -0.00693597266143)
(0.0200578574965 -0.0120715718106 -0.00563122668488)
(0.0237189676512 -0.0127641191846 -0.0037949056713)
(0.0253729724675 -0.0136628984592 -0.00189295049187)
(0.028648993651 -0.0186426004039 -0.000375959220421)
(0.0332504900613 -0.0204461314713 0.00280997832148)
(0.0357086609946 -0.0231295602495 0.00651465335365)
(0.0375371827746 -0.0257536991139 0.0106158522495)
(0.0380157644793 -0.027771940682 0.0151409973033)
(0.0381974100115 -0.0321195151895 0.018480817732)
(0.0354298401853 -0.0336471918734 0.0235701699125)
(0.0313030732198 -0.0377583122669 0.025310697385)
(0.0281657413463 -0.0393214877035 0.0282183973398)
(0.0229147427791 -0.041205554188 0.0302277819729)
(0.0170377071934 -0.0423965732468 0.0316680583463)
(0.010501382317 -0.0429822436827 0.0325469336255)
(0.0034243679004 -0.0427324946347 0.0328551365603)
(0.00194657037793 -0.0103513674037 -0.0103251650653)
(0.00640482308517 -0.0106949945561 -0.00961980421125)
(0.0108268652776 -0.0112804701421 -0.0090325562017)
(0.0150491259068 -0.0121346148357 -0.00821936065892)
(0.0192868956606 -0.0134816822411 -0.00686889209673)
(0.0233482553026 -0.0154524206162 -0.00472507888393)
(0.0234830799574 -0.0172823768667 -0.00222966219772)
(0.0270412467987 -0.0294596955809 -0.00211714629549)
(0.0324289606531 -0.0306777765375 0.00222544020272)
(0.0336601994617 -0.0357931971429 0.00718014197716)
(0.0354495600262 -0.0394066718674 0.0119904664735)
(0.0338505141063 -0.0387494013529 0.0180720674128)
(0.033410072758 -0.0457647110599 0.0202986564989)
(0.0322924181895 -0.0435227202647 0.0223211465774)
(0.0284920234696 -0.0477112384198 0.022098801569)
(0.0267207872649 -0.047404529181 0.0254101021421)
(0.0214813840397 -0.0489764833966 0.027067570867)
(0.0161596208965 -0.0499762030373 0.0283318403704)
(0.00997861019553 -0.050466461974 0.0291664823926)
(0.00322730018483 -0.0501532136867 0.0294838124847)
(0.00172922826378 -0.00976918699238 -0.0111658879004)
(0.00582732947325 -0.0101450456244 -0.0105099474752)
(0.00983359632224 -0.010755252179 -0.0100528848822)
(0.0132796634999 -0.0115526555561 -0.00945710618187)
(0.0162875486626 -0.0127496192777 -0.00864742366392)
(0.0204272478786 -0.0141635238469 -0.00788996950093)
(0.0161256897256 -0.0181509593805 -0.00705381236744)
(0.015227242618 -0.0376486817855 -0.0237336404804)
(0.0314819459591 -0.0371370435902 -0.0153188145353)
(0.0301071535278 -0.0400127713559 -0.00894049234301)
(0.0357723639532 -0.0411462769355 -0.00169690777292)
(0.0305287912996 -0.0382524809023 0.0132483670259)
(0.0396887788469 -0.0429910900237 0.0135831486275)
(0.0350443378824 -0.0467544833191 0.0191559742407)
(0.0281720618863 -0.0505145971785 0.0158312690347)
(0.027501241867 -0.0526245417398 0.0209429746576)
(0.0206356416041 -0.0547062256332 0.0225142101599)
(0.01543335542 -0.0559808032213 0.024078969119)
(0.00945031399138 -0.056610181748 0.0249567415838)
(0.00300311731905 -0.0562444804038 0.0254910587935)
(0.00151419260989 -0.00849711742422 -0.0115552781353)
(0.00530704856584 -0.00892730640491 -0.0109275709036)
(0.00917062253598 -0.00963640244947 -0.0104745154778)
(0.0126024406496 -0.0104859142513 -0.00973774687179)
(0.0160878470406 -0.0116429138664 -0.00866411083683)
(0.0186749255867 -0.0125281224918 -0.00776099010258)
(-0.0069824394597 -0.0167275120189 -0.00810901933743)
(0.00602588466301 -0.0530718276404 0.021071901569)
(0.0220283977545 -0.052668116122 0.0141355726398)
(0.0225840410784 -0.0568812151619 0.0170651417044)
(0.0180056432324 -0.0591717496118 0.0178870925388)
(0.0138128744926 -0.0606223966264 0.0191865376452)
(0.00853287918288 -0.0612899315679 0.0202472509358)
(0.0026919936816 -0.0608565068836 0.0210227108674)
(0.00122212568426 -0.00671070037216 -0.0114390723722)
(0.00455083744759 -0.00726480982592 -0.0108084588705)
(0.007987801993 -0.00823851277705 -0.0104267904509)
(0.0108780217314 -0.00954952250478 -0.00977020668211)
(0.0138876573443 -0.0112101961181 -0.00874469919851)
(0.0151528475819 -0.013003762301 -0.00728713249492)
(-0.00530066437187 -0.0165302746924 -0.0103473704968)
(0.0017563552172 -0.0584151647668 0.0149640755735)
(0.0208571063108 -0.0580464292025 0.00901391291584)
(0.0203291700263 -0.0609545331395 0.0113942182238)
(0.0164445723864 -0.0626675527863 0.0123133867417)
(0.0125648328362 -0.0638725279192 0.0137546335492)
(0.0077419966475 -0.0643562725041 0.0150857013576)
(0.00238957099005 -0.063828141969 0.016188176754)
(0.000862449802444 -0.00454954522961 -0.0107308811375)
(0.00357745955784 -0.00521383302133 -0.0101494257294)
(0.00646921156285 -0.00644749228963 -0.00986551737136)
(0.00891729944555 -0.00819951612228 -0.00933691053448)
(0.011809270782 -0.0104766147282 -0.00837949220685)
(0.0130845088933 -0.0134261615425 -0.00689147063834)
(-0.0071809829055 -0.0184226478277 -0.00977111495116)
(0.00120566273146 -0.0582807114348 0.00902304838919)
(0.0194115371852 -0.058207063089 0.00349334480304)
(0.0178104399641 -0.0617106727399 0.0055334801329)
(0.0145445863855 -0.0636584880051 0.00659819039664)
(0.0111273126128 -0.065011038322 0.0081497294727)
(0.00685079911328 -0.0655497227578 0.0097144292067)
(0.00206280891019 -0.0650227489476 0.0111234883954)
(0.000443766673454 -0.00218827027467 -0.00940669493315)
(0.00237765428657 -0.00293751082382 -0.00889201305113)
(0.00448660772053 -0.00431215575321 -0.00879598715619)
(0.00609216348699 -0.00617953519684 -0.00853654198672)
(0.00818524923672 -0.00835977543103 -0.00775407591626)
(0.00831744943736 -0.0112079298545 -0.00561572901739)
(-0.0087285239069 -0.0200045857979 -0.00665232012294)
(-0.00364617478102 -0.0523678606667 0.00109474478902)
(0.0171481424891 -0.0565073145367 -0.00159077084989)
(0.0146289529489 -0.0601436266203 -0.000321852340625)
(0.012323247 -0.0626108640768 0.00093196988169)
(0.00941184720319 -0.0642531356983 0.00255996653015)
(0.00578487682593 -0.0649208234192 0.00432650993986)
(0.00167086427333 -0.0644246385582 0.00598556447965)
(-4.02340262732e-05 0.000156406272791 -0.00747945492129)
(0.0010727490709 -0.000730490205112 -0.00701717791109)
(0.00253691907051 -0.0023960205179 -0.00707865584562)
(0.00393931082998 -0.00477700100804 -0.00705546409258)
(0.0065318142192 -0.0077305864189 -0.00670709262366)
(0.00578478797858 -0.0120298618428 -0.00432244629763)
(0.0143224868403 -0.0193514704678 -0.00731497532505)
(0.0116991133601 -0.0297805502609 0.00598079143507)
(-0.0100340835246 -0.0338093822316 -0.00348651627491)
(-0.00752478667689 -0.0396032382284 0.000812357615688)
(-0.00637182591867 -0.0420680671619 0.0014279169231)
(-0.00118434706161 -0.0427202011849 0.002634304251)
(-0.000625552008982 -0.0466864302419 0.00164384598187)
(0.010731035384 -0.0496969109655 -0.00792486401368)
(0.0118515280963 -0.0543743628779 -0.00728605871695)
(0.0106837914482 -0.0576911326141 -0.00562265224307)
(0.0092497085185 -0.0602961883158 -0.00438483547933)
(0.00732582160107 -0.0619351505976 -0.00276655294623)
(0.00451573422224 -0.0626113703113 -0.000914616295696)
(0.00129095471284 -0.0621405841082 0.00097100449589)
(-0.000626302501321 0.00235465512801 -0.00503939477654)
(-0.000642882996832 0.00138681157827 -0.00462905015027)
(-0.000428980732096 -0.000467786723673 -0.00498505517223)
(-0.000529801817845 -0.00324370854575 -0.00562544811289)
(-6.88943430907e-05 -0.00685924383235 -0.00627192320728)
(-0.00103188158955 -0.0126152192844 -0.0061685724563)
(0.00118908163358 -0.0181949353699 -0.00849114487484)
(-0.00258330204435 -0.0326140881722 -0.00816042818374)
(-0.00633468929449 -0.0347248672535 -0.010752316378)
(-0.00546714843239 -0.037962487127 -0.0120180246583)
(-0.0035525902858 -0.0390481972514 -0.0136102088318)
(0.00049771565635 -0.0397371531814 -0.0144555206139)
(0.00445021989687 -0.0423527832985 -0.0142433152483)
(0.00721052638359 -0.0465024299478 -0.0131146389532)
(0.00851112478128 -0.0507112614354 -0.0120436213895)
(0.00785919160217 -0.0540032873752 -0.0106666204377)
(0.0068131798868 -0.0563722575795 -0.00930786043801)
(0.00546104625923 -0.0579075712963 -0.00769359461213)
(0.00330190707089 -0.0586153690279 -0.00578749226259)
(0.000856484216974 -0.0582619851911 -0.0038104210003)
(-0.00119441259315 0.00427900582088 -0.00216807147273)
(-0.00224469437638 0.00336397378142 -0.00171971719818)
(-0.00301671432711 0.00161992304846 -0.0022398298221)
(-0.00389461149874 -0.000923988923733 -0.00324686418809)
(-0.00428236297223 -0.0039913155593 -0.00432921049752)
(-0.00485691345602 -0.00801701192346 -0.0051234367539)
(-0.00436360167126 -0.0115308984365 -0.00670461641129)
(-0.00573941560126 -0.0188174640874 -0.00664190069658)
(-0.00835140272289 -0.0218494717832 -0.00876789702842)
(-0.00846793478463 -0.0252370842074 -0.010732092398)
(-0.00719022987713 -0.028320312491 -0.0129492855171)
(-0.00438338227767 -0.031694969597 -0.0144373267857)
(-0.00136647046347 -0.035954011326 -0.0154412999471)
(0.00145332801972 -0.0404011725345 -0.0153539792)
(0.00342672606745 -0.0449379877853 -0.015273284148)
(0.00406787746404 -0.0483764923555 -0.0145497544947)
(0.00399940290522 -0.0507940468149 -0.0134304428649)
(0.00343172882624 -0.0523624653083 -0.0118842646153)
(0.00198551682393 -0.0531791131654 -0.0100084183748)
(0.000379891463187 -0.0529817067139 -0.00815964737572)
(-0.00168266570806 0.005703573242 0.000933608259828)
(-0.00369276003458 0.00484727719841 0.00143368802722)
(-0.00542919178692 0.00322762456837 0.0008465872811)
(-0.00721579838554 0.000856219566884 -0.000493308567404)
(-0.00853650494982 -0.00216151605708 -0.00212415245456)
(-0.00966518162654 -0.00598226156546 -0.00375620367457)
(-0.0101136310377 -0.0100720032319 -0.00573150292468)
(-0.0110310961345 -0.0156189028312 -0.00709449622133)
(-0.0120195905155 -0.0190564725813 -0.00946886603284)
(-0.0116851193043 -0.0224484134479 -0.0116858937875)
(-0.0102922114152 -0.0253284819969 -0.0139153701544)
(-0.00783266567801 -0.0285650697131 -0.0157278953437)
(-0.00518443313186 -0.0321250387278 -0.0169852180458)
(-0.00262876081344 -0.0356736625297 -0.0175870022325)
(-0.000522554424836 -0.0391928348653 -0.0177912897181)
(0.000765492196825 -0.0421127970675 -0.017407731832)
(0.00141884565289 -0.0442913820119 -0.0165553980716)
(0.0015470643761 -0.0458134980679 -0.0152679075242)
(0.000810398827523 -0.0466916368244 -0.0137144849745)
(-6.1978412362e-05 -0.0466375575948 -0.0120220714668)
(-0.00209111196088 0.00643230687303 0.00403874321975)
(-0.0049101065501 0.00564549026616 0.00455281895331)
(-0.00744875026841 0.00422189279589 0.00394041973892)
(-0.00997963009187 0.00217769506581 0.00239319457953)
(-0.0119667084536 -0.0004065454979 0.000346460586247)
(-0.0135206857164 -0.00350057818589 -0.00188547578906)
(-0.0144603917495 -0.00682256270287 -0.00435261092592)
(-0.0152001076654 -0.0107735937508 -0.00673630887967)
(-0.0156407631773 -0.0140356357946 -0.00944813427359)
(-0.0150063131221 -0.0172033445285 -0.0119874285382)
(-0.0134491592646 -0.0201074065965 -0.0143783385821)
(-0.0112283681393 -0.0231743402121 -0.0163241797029)
(-0.00868289310279 -0.0264339432612 -0.0179111533204)
(-0.00613759586718 -0.0295444264293 -0.0188921656429)
(-0.00388469907086 -0.0324508889731 -0.0194091340037)
(-0.00212823195334 -0.0349501585938 -0.0193595702655)
(-0.000908808008253 -0.0369214584664 -0.0188234438411)
(-0.000174999313002 -0.0384114361972 -0.0179551981596)
(-0.000269691195679 -0.0393501686511 -0.0168464594606)
(-0.000449204772537 -0.039431335607 -0.0153814219554)
(-0.00239517825598 0.00637605665878 0.00700406761324)
(-0.00583968710148 0.00564419080634 0.00737981892193)
(-0.00900827702125 0.00442984103351 0.00669868733189)
(-0.0121464076136 0.00277836828168 0.00501586589704)
(-0.0146850100246 0.000688167316558 0.0026913075846)
(-0.0166313125997 -0.00178086351115 -1.35176076085e-06)
(-0.0178844116702 -0.004467086838 -0.00291986307776)
(-0.0185912757309 -0.00745101585693 -0.00588914434668)
(-0.018670949827 -0.010159498031 -0.00895570703276)
(-0.0178500599125 -0.0127329006045 -0.011808683052)
(-0.0162492583338 -0.0152805435573 -0.0144145883583)
(-0.0140530421138 -0.0178703398479 -0.0166212842656)
(-0.0115212787984 -0.0205086825744 -0.0183898736893)
(-0.00892108454425 -0.0230681478596 -0.0196890177793)
(-0.00650846927189 -0.0253679012102 -0.0204021171174)
(-0.00445225521886 -0.0274277978902 -0.0206628276188)
(-0.00282601203818 -0.0291473573875 -0.0205334592661)
(-0.00161089937206 -0.0305062092769 -0.0201423616325)
(-0.00114749042502 -0.0313734075478 -0.0193922621052)
(-0.000752441527799 -0.031459922665 -0.0181238337117)
(-0.00258990164931 0.00552369395279 0.0095558833438)
(-0.00649276881815 0.00483419302613 0.00976231776322)
(-0.0100655154429 0.00385237054083 0.00889438704737)
(-0.0135936299326 0.00263988806849 0.00706591964057)
(-0.0165153334251 0.00113376140063 0.00455871922864)
(-0.0187550723289 -0.000641791432001 0.0016064729463)
(-0.0202138351237 -0.00259174015117 -0.00161152029347)
(-0.020891089221 -0.00470601690548 -0.0049361751597)
(-0.0208021383663 -0.00672407481972 -0.00824202712967)
(-0.0199017416841 -0.00867281996299 -0.0113437675767)
(-0.0182707958545 -0.0106235853932 -0.0141569309072)
(-0.0160707223126 -0.0125852786873 -0.0165680684811)
(-0.0135480533534 -0.0145538510601 -0.0185258771219)
(-0.0108821574476 -0.0164541333844 -0.0200090480194)
(-0.00835148058892 -0.0181671992759 -0.0209808959097)
(-0.00613633197983 -0.0197484805159 -0.0215267426922)
(-0.00425785345825 -0.0210983577576 -0.0217752722486)
(-0.00268709798957 -0.0221588913014 -0.0217498252174)
(-0.00176396126366 -0.0228524383699 -0.0213281034797)
(-0.000933764484892 -0.0228831754387 -0.0202715366223)
(-0.00257731931762 0.00394121967219 0.0115354347586)
(-0.00668559476696 0.00328279374931 0.0114817956934)
(-0.0105532546448 0.00256622281337 0.0103806111669)
(-0.0143055358844 0.00182476170606 0.00840840336397)
(-0.0174311797813 0.000920925016682 0.00580138042762)
(-0.0198168246765 -0.000153099337922 0.00274369253354)
(-0.0213689549711 -0.00134574739763 -0.000582061438397)
(-0.0220627693925 -0.00262468062881 -0.00401309904377)
(-0.0218933582422 -0.00392160957606 -0.0074392688117)
(-0.020943905361 -0.00518687076598 -0.010645220636)
(-0.0193177897861 -0.00645131372949 -0.0135295260711)
(-0.0171325643371 -0.00770812423265 -0.0160474569359)
(-0.014610650483 -0.00897656989158 -0.018126156167)
(-0.011921158092 -0.0102052126898 -0.0197452360802)
(-0.00937286513306 -0.0113422915668 -0.0209500160135)
(-0.00710522182803 -0.0123208836453 -0.0217101459186)
(-0.00509329724533 -0.0131478507433 -0.0222158730754)
(-0.00335726870699 -0.0137637757424 -0.0224874220924)
(-0.00218637430674 -0.0142022464345 -0.0224297128958)
(-0.00101871769899 -0.0139561836369 -0.0218058990787)
(-0.00208502152349 0.00146607120992 0.0126296633479)
(-0.0060193409543 0.00113814991108 0.012156253307)
(-0.0102313868983 0.000837013238845 0.010830209505)
(-0.0140552121467 0.000569760286196 0.00880428045451)
(-0.017221252745 0.000250714240306 0.00622118646353)
(-0.0195978543319 -0.000124571624349 0.00322156133963)
(-0.0211159744435 -0.00056534419331 -2.57973843795e-05)
(-0.021760991116 -0.00103030922464 -0.00334753509606)
(-0.0215628192475 -0.00151567896513 -0.00662207376939)
(-0.0205831212678 -0.00200685552568 -0.00971361796037)
(-0.0189397266121 -0.00249268656475 -0.0125428468129)
(-0.0167893629903 -0.00296557666691 -0.0150312228103)
(-0.0143325171959 -0.00342226272186 -0.017101026961)
(-0.0117519408611 -0.003830548138 -0.0187258755067)
(-0.00924679321869 -0.00422204416781 -0.0199804470152)
(-0.00700963857261 -0.00454432684408 -0.0208684752475)
(-0.00504849090259 -0.00479461314843 -0.0215138040624)
(-0.00334541472159 -0.00496327726976 -0.0219889295247)
(-0.00197096303344 -0.00505431828277 -0.0223476264791)
(-0.000739936812605 -0.00475512423082 -0.0223694818736)
(0.0027720091151 -0.00175236223328 -0.00743860526517)
(0.00841028339138 -0.00182499503727 -0.00691793850195)
(0.0138127328103 -0.00189045064317 -0.00614337970676)
(0.0190524344905 -0.00202209704517 -0.00494971760102)
(0.024064463668 -0.00218679144253 -0.00331813537631)
(0.0287778206844 -0.0023810070224 -0.00121297281177)
(0.0331702878717 -0.00265310570611 0.00140960240852)
(0.0371861925897 -0.00301603500357 0.004571993279)
(0.0406848057956 -0.0033598185206 0.00830387788982)
(0.0433525550087 -0.00365214401746 0.0125431889227)
(0.0449426517403 -0.00393362743678 0.0172392899366)
(0.045328124864 -0.00422421895125 0.022177023726)
(0.0443942522431 -0.00451005715113 0.0272276888003)
(0.0420324595707 -0.0047798107444 0.0322363219205)
(0.0383499391155 -0.00516249671067 0.0369668915502)
(0.0335308052835 -0.00550260732814 0.0413106130419)
(0.0276388972587 -0.00574617215892 0.0451227323672)
(0.0207940325063 -0.00586588291999 0.0482425766776)
(0.0131221410481 -0.00579142329421 0.0505550712352)
(0.00452288879855 -0.00525463694132 0.0517528641801)
(0.00262997290323 -0.00494477955385 -0.00790903973275)
(0.00814605132338 -0.00507979141762 -0.00713329403033)
(0.0134610372258 -0.00524810921336 -0.00622051598858)
(0.0185589540311 -0.00554481837158 -0.00499784326376)
(0.0234800113554 -0.00590552051247 -0.00335326757719)
(0.0280791938898 -0.0063192625591 -0.00120030991999)
(0.0323229193208 -0.00697398765148 0.00145292525247)
(0.0363268730755 -0.00799717665934 0.00466749926365)
(0.0399266503265 -0.00890184401825 0.00845421600696)
(0.0427011461616 -0.00975023922015 0.0127567477783)
(0.0443775377319 -0.0105314295198 0.017478919659)
(0.0448299322976 -0.011335499183 0.0225059939149)
(0.0439901288957 -0.0122846771134 0.0276436674846)
(0.041610195402 -0.0129448699174 0.0327178179863)
(0.0379029166006 -0.0141023146261 0.0373687445396)
(0.033138848388 -0.0150715245902 0.0416139357966)
(0.0272414669011 -0.0158177032787 0.0452224522328)
(0.0203593009515 -0.0162754137289 0.0481722040105)
(0.0126068643696 -0.0162965670225 0.0502721385961)
(0.00424048858991 -0.015513856998 0.051177506983)
(0.00252538181302 -0.00773068454788 -0.00899243547251)
(0.00790195466694 -0.00789334313118 -0.00808245595279)
(0.0130979144817 -0.00815507930234 -0.00711186191107)
(0.0181036422857 -0.00855578278242 -0.0058580651321)
(0.022929928695 -0.00902563619941 -0.00416605113802)
(0.0273530769988 -0.00958327687768 -0.00192406016889)
(0.0312505220923 -0.0105333999533 0.000832200855228)
(0.0351753050353 -0.0124805072315 0.00411132045983)
(0.0389114528815 -0.0139390882709 0.00801252192536)
(0.0417364703902 -0.0153055593858 0.0123916150486)
(0.0434673856927 -0.0166458904235 0.0172012533904)
(0.0437983598307 -0.0179349605954 0.0223369314717)
(0.0431341009207 -0.0196196720999 0.0273889984217)
(0.0407760929376 -0.0205182878227 0.0325205615584)
(0.0369205587069 -0.0227371367631 0.0369683848426)
(0.0323787395109 -0.0242503957291 0.0409711239024)
(0.0265998322802 -0.0254695607936 0.0443141942203)
(0.0197904504311 -0.0262735888491 0.0469467195506)
(0.0121640480392 -0.0265418644164 0.0487907753407)
(0.00402310009772 -0.0260286734043 0.0495081203177)
(0.0023866151391 -0.00978203610182 -0.0103903623618)
(0.00757401808514 -0.0100088944009 -0.00944361916619)
(0.012648123611 -0.0103603314033 -0.00851322919512)
(0.0175277044311 -0.0108644162396 -0.00728131025131)
(0.0222495041444 -0.0115161593569 -0.00553896018718)
(0.0264764717263 -0.012386148041 -0.0031702005061)
(0.0296847639808 -0.0139003758714 -0.000299364856862)
(0.0334763020545 -0.0176396625296 0.00300936097714)
(0.0376095931472 -0.0195829751415 0.00695758395211)
(0.0404015133496 -0.0215894326338 0.0115666042151)
(0.0421332173106 -0.0235091963763 0.0165287578179)
(0.0422730581761 -0.0250022041238 0.0217009162437)
(0.0418375041275 -0.0275451896271 0.026396410124)
(0.039281889742 -0.0282266095988 0.0317692173058)
(0.035262288137 -0.0317110036286 0.035598695986)
(0.0313527656511 -0.0333456379919 0.0393894625734)
(0.0257473776974 -0.034925325458 0.0424116098706)
(0.0191448632902 -0.035991798683 0.0447294608462)
(0.0117960241556 -0.0364314684893 0.0462896571649)
(0.00389108894392 -0.0360137107674 0.0468877583478)
(0.00222181543338 -0.0109365603009 -0.0119458308287)
(0.00720364772676 -0.0112128558157 -0.0110562257561)
(0.0121066546233 -0.0116594757102 -0.0101860287074)
(0.0167804605162 -0.012250306113 -0.00898951247264)
(0.0212355717851 -0.0129432659577 -0.00723251178489)
(0.025032111951 -0.0136006587828 -0.00478041793503)
(0.0267280318515 -0.0144089890442 -0.00210165058679)
(0.0305506247131 -0.0197212778161 0.000917879445586)
(0.03573936829 -0.0212250072803 0.0051347378675)
(0.0384712667157 -0.0237194981247 0.010027031902)
(0.0406174584396 -0.0261310141863 0.0153330509701)
(0.0403635045987 -0.0274638743082 0.0211402721568)
(0.0403879079116 -0.0320363188891 0.0248715663903)
(0.0376188064658 -0.0341752726336 0.0303091797693)
(0.0331907342735 -0.0399013998182 0.0329214410844)
(0.0303138394611 -0.0415226761597 0.0366656168478)
(0.0246911081531 -0.0436293747801 0.039410961392)
(0.0184156574118 -0.0448981209241 0.0414853430054)
(0.0113630943962 -0.0454246771662 0.0428203199156)
(0.00372110760888 -0.045100023808 0.0433273605554)
(0.00203187697756 -0.0110938909362 -0.0134220488142)
(0.00676219443526 -0.0114511641733 -0.0126206003196)
(0.0114714630995 -0.012085692752 -0.0118262441502)
(0.0160204898725 -0.0130410575223 -0.0106505268741)
(0.0205591075108 -0.0145590730862 -0.00880865035036)
(0.0248429209929 -0.0168208145225 -0.0060698442742)
(0.024955338338 -0.0187386827726 -0.00271890105885)
(0.0291997833777 -0.0313377853594 0.000567840595201)
(0.035136759805 -0.031195686961 0.00527379850163)
(0.0365729197774 -0.035525248685 0.0105886848144)
(0.0389529828219 -0.0390645690556 0.0159156716328)
(0.0366983540759 -0.0365300079883 0.022449067003)
(0.0349558393205 -0.0442204564377 0.0266974107092)
(0.032420201155 -0.0450425629347 0.0302504549214)
(0.0292461902907 -0.0504198273204 0.0292831275456)
(0.0287221841648 -0.049958861139 0.0330930503723)
(0.0230227682959 -0.0519295690642 0.0353804999973)
(0.01742923769 -0.0529802013447 0.0371895274005)
(0.0107872519053 -0.0534410104047 0.0383620430406)
(0.00350610952446 -0.0530156757097 0.0388790187678)
(0.00180074398318 -0.0102552079919 -0.0145811843091)
(0.00615078456916 -0.0106766664787 -0.0138439051101)
(0.0104151606623 -0.0113514943012 -0.0131651652086)
(0.0141087821746 -0.0122379773791 -0.0121425924074)
(0.0172416467456 -0.0134854729434 -0.0105434603131)
(0.0215853715273 -0.0151943477552 -0.00854592079915)
(0.0168741938886 -0.0189214028367 -0.00678173524867)
(0.0167613690419 -0.039307021327 -0.00855780863017)
(0.0350820676278 -0.0382426524323 -0.000768864765335)
(0.0328768241204 -0.0409694266838 0.00660398787086)
(0.0407930191192 -0.0429292755162 0.0124910323177)
(0.0329307607501 -0.0391716365027 0.0218333096202)
(0.0370849803408 -0.0460561563351 0.0293206709572)
(0.031690755387 -0.0521249634197 0.0270862493199)
(0.0288317104254 -0.0530127224753 0.0228410600284)
(0.0294088584726 -0.055559540795 0.0279493554194)
(0.0219184229115 -0.0580684990051 0.0297994100426)
(0.016632909339 -0.0594166306362 0.0316726870311)
(0.0102079810605 -0.0599994864975 0.0329074796091)
(0.00326034095319 -0.0595081745727 0.0336129358951)
(0.00155703837123 -0.00862952720914 -0.0151778415004)
(0.00561963020471 -0.00910720258492 -0.0144920282211)
(0.00984870552959 -0.00990908983794 -0.0138294722621)
(0.0136707786476 -0.0108770199619 -0.0127065538123)
(0.0175361513355 -0.0122093947262 -0.0106142424007)
(0.0221085524596 -0.0129816184098 -0.00716375663085)
(-0.00184700164142 -0.0178156559558 -0.00374317485143)
(0.00995508152155 -0.0574964031646 0.0203565182049)
(0.0241881725101 -0.056428752023 0.0164394073462)
(0.0239768259144 -0.0605513139806 0.0220407237126)
(0.0189146248113 -0.0629437127748 0.0235918789595)
(0.0148255846877 -0.0644268734582 0.0253601912034)
(0.00921674542295 -0.0649965698639 0.0267781062366)
(0.00291818643316 -0.064434884311 0.0277291286523)
(0.0012650346101 -0.00641704032635 -0.0150453093522)
(0.00484002529577 -0.00702711168433 -0.0143879730982)
(0.00862094418033 -0.0081678637946 -0.0138334519881)
(0.0119117138188 -0.00972719152759 -0.0128137345267)
(0.0155385598013 -0.0117178025183 -0.0108307086122)
(0.0184251482916 -0.0131983373316 -0.00673392810409)
(0.0028298770389 -0.0187329504048 -0.00771229602157)
(0.00516550323084 -0.0626657786276 0.011638201828)
(0.0229794051458 -0.062397606814 0.00854124743228)
(0.0219033146302 -0.0651675940504 0.0144217273593)
(0.0174337470127 -0.0667716162779 0.0163157310044)
(0.0135649365832 -0.0679358734628 0.0183305296343)
(0.0083955993428 -0.0683162634909 0.0200336540482)
(0.00259678953292 -0.0676434856045 0.0213272703532)
(0.000879503189544 -0.00377393583246 -0.0141063695405)
(0.00380019399231 -0.00454249827892 -0.01352161808)
(0.0070458883562 -0.00599790089156 -0.0131278758288)
(0.00994243157986 -0.0081207932583 -0.0122707385421)
(0.0135760384636 -0.0108977752656 -0.0104256646837)
(0.0167457556147 -0.013733815388 -0.00633178683291)
(0.00197089440851 -0.0198654240154 -0.0077562406691)
(0.00366762421521 -0.062673054564 0.00475937494604)
(0.0202391185501 -0.0625032464906 0.00145156989219)
(0.0192734691015 -0.0659298327124 0.00693101707657)
(0.0155252043026 -0.0677668339982 0.00895577757079)
(0.0120417308634 -0.0691337135685 0.0110654333628)
(0.00745408344175 -0.0695914230304 0.0130167939607)
(0.00224966574064 -0.068947735007 0.0146023411638)
(0.000421248106481 -0.000939240625873 -0.0123114047643)
(0.00249052286823 -0.00179922422764 -0.0118310562731)
(0.00488022707038 -0.00342164737708 -0.0117103048568)
(0.00686919368307 -0.00573805387587 -0.0112863422047)
(0.00980457232933 -0.00866681207369 -0.010002830926)
(0.0124085589333 -0.0121226008825 -0.00632576178742)
(0.00118592478913 -0.0225464479228 -0.00881152724528)
(-0.00125561140371 -0.057880763027 -0.00390917654499)
(0.0189062973228 -0.0602487849728 -0.00506261836605)
(0.015973585438 -0.0640433972987 -0.000450686857827)
(0.0132385447728 -0.0665572273637 0.00165911809123)
(0.0102051658323 -0.0682623038704 0.0038289373028)
(0.00627178777144 -0.0689058121397 0.00593795253815)
(0.00185812843081 -0.0683184807439 0.00780279646467)
(-0.000103556908774 0.00182104766169 -0.00967486435214)
(0.00108073746679 0.000816405423 -0.00927119681648)
(0.00277401158164 -0.00113993027136 -0.00939322397235)
(0.00440798372858 -0.00403043228329 -0.00934359138243)
(0.0074250689594 -0.00771970067488 -0.00900695905581)
(0.00530182819526 -0.0129423140589 -0.00700851811121)
(0.0121269367683 -0.0230235602887 -0.00947473461926)
(0.0116334099553 -0.0398783945365 -0.00918651971707)
(-0.0108496863282 -0.0401092428799 -0.0157089017281)
(-0.00581358513506 -0.0427100497908 -0.014522159304)
(-0.00439243786618 -0.0425168515325 -0.0132714158268)
(0.00184024467853 -0.0431920684628 -0.0138262081951)
(0.00167397874365 -0.0470675883143 -0.0133979117625)
(0.0117807714684 -0.0531714139568 -0.0114202393341)
(0.0122732646537 -0.0574544267712 -0.00976498694333)
(0.0114175202022 -0.0612243637611 -0.00701029555328)
(0.00988908777623 -0.0639717139612 -0.00517268410049)
(0.00790110502191 -0.0657433639888 -0.00311960454645)
(0.00489225775341 -0.0664410032556 -0.000932693645938)
(0.00140610234552 -0.0658909597222 0.0010964892416)
(-0.000762062306965 0.0043739705363 -0.00633170628369)
(-0.000858215255545 0.00328335601008 -0.00604062233473)
(-0.000635677214384 0.00114265467294 -0.00652737283892)
(-0.000646912176108 -0.00212326093033 -0.00729765692794)
(7.29133628055e-05 -0.00629037412365 -0.00808843411874)
(-0.00137279068143 -0.0128522977751 -0.00821802632871)
(0.0013517935694 -0.0181800344741 -0.0105482531379)
(-0.00375360941566 -0.0315702135881 -0.0112594369527)
(-0.00789437908439 -0.0322645677616 -0.0147214136058)
(-0.00633806634643 -0.036199064079 -0.0167643658456)
(-0.00428197480822 -0.03729114877 -0.018243451843)
(0.000160210254901 -0.0395185006626 -0.0195666865173)
(0.00541461523897 -0.0436150348198 -0.0196915199303)
(0.00844188325133 -0.0493015680349 -0.0169485016056)
(0.00913821904789 -0.0535438413943 -0.0153597983766)
(0.00852164748913 -0.0571900083744 -0.0133285603773)
(0.00734649287961 -0.0597713811088 -0.0115223252332)
(0.00586741208366 -0.0614465178302 -0.00948874035789)
(0.0035802061933 -0.0621627002068 -0.00732908907928)
(0.000938429931957 -0.0617599114328 -0.0052542309102)
(-0.00140196693315 0.00656260130635 -0.00240938959702)
(-0.00265858712264 0.00554344687147 -0.00209893833698)
(-0.00354804953893 0.0035796007772 -0.00281533331432)
(-0.00442735808764 0.000701191318541 -0.0040733491521)
(-0.00471826266137 -0.00275887707584 -0.00548414025566)
(-0.00554702676424 -0.00734766293651 -0.00666107214512)
(-0.00505305949693 -0.0110105088316 -0.00877836267076)
(-0.00678074700029 -0.0188350074626 -0.00988465995253)
(-0.00979363632203 -0.0215470407838 -0.012730038744)
(-0.0095048191312 -0.0251042812832 -0.0152121367755)
(-0.00804743051859 -0.0282920069863 -0.0170127058073)
(-0.00509686547139 -0.0318470351686 -0.0188735928645)
(-0.00143783484865 -0.0365564580828 -0.0199181943114)
(0.00158113350243 -0.0421039163779 -0.0195620051278)
(0.00352643104989 -0.0470977910303 -0.0192732930999)
(0.00431869330209 -0.0510489846241 -0.0182575923921)
(0.00427543558813 -0.0537904869088 -0.0168725337934)
(0.00370721792404 -0.055516098761 -0.01506216509)
(0.00220751840451 -0.0563660738281 -0.0130029665766)
(0.000423640233994 -0.056159648754 -0.011015694819)
(-0.00195212700331 0.00809490144026 0.00183484458507)
(-0.00429282590454 0.00716285090134 0.00216242041847)
(-0.00628651700126 0.00535021142187 0.00130286636113)
(-0.00821929422196 0.00270185217069 -0.000407690491233)
(-0.00959941470912 -0.000670659770753 -0.00251222117544)
(-0.0108853132186 -0.00494416618671 -0.00469969651135)
(-0.0113467846526 -0.0092499470237 -0.00739260934249)
(-0.0124410578639 -0.0152801355804 -0.00970850388381)
(-0.013704270837 -0.0188066530476 -0.0128980076873)
(-0.0131391231363 -0.0223617292346 -0.0158759138018)
(-0.0114762697012 -0.0256668176603 -0.0182658833424)
(-0.00879546694087 -0.0291188153608 -0.0203331901575)
(-0.00576383807033 -0.0330687551591 -0.0218497894025)
(-0.00292594934134 -0.0372011289718 -0.022422767468)
(-0.000669637249971 -0.041098869763 -0.0225878103861)
(0.000769805390776 -0.044398128411 -0.0220813529233)
(0.00149474374642 -0.0468378487794 -0.0210500721158)
(0.00165685846633 -0.0485124996666 -0.0195796033362)
(0.000929279743066 -0.0494778208007 -0.0179053007875)
(-6.49678929603e-05 -0.0494206942514 -0.0161849643126)
(-0.00239817244144 0.00878388022549 0.00608383528332)
(-0.00563635555351 0.00790611751798 0.00639841326045)
(-0.00856370962217 0.00633119092257 0.0054642234189)
(-0.0113621627307 0.00406760073844 0.00343658327002)
(-0.0135100172773 0.00121169817444 0.000770555638203)
(-0.0152070902222 -0.00221858777334 -0.00219594063986)
(-0.0162116063675 -0.00580407692911 -0.00550385744587)
(-0.0170603995332 -0.0102079601845 -0.00879245960794)
(-0.0175220056369 -0.0136487551059 -0.0124010929759)
(-0.0167188765606 -0.017018750505 -0.0157054164192)
(-0.0149628001934 -0.0202583974111 -0.0186652590816)
(-0.0124796180552 -0.0236340758186 -0.0211458668583)
(-0.00960530789284 -0.0272328926079 -0.0230391368729)
(-0.00676493887061 -0.0307844193123 -0.0242606938649)
(-0.00428772169322 -0.0340288579021 -0.0248774351305)
(-0.00234272976949 -0.0368409787176 -0.0248277819728)
(-0.00100122163031 -0.0390333830537 -0.0242161070505)
(-0.000197369840816 -0.0406630989755 -0.0232232930579)
(-0.000217738389857 -0.0416839749967 -0.0220418468582)
(-0.00051697224021 -0.0417627619616 -0.0205980957282)
(-0.00274851880117 0.00850845085301 0.0100933876795)
(-0.00667447397099 0.00766658490318 0.0102508944097)
(-0.0102869577896 0.00632764327183 0.00917942084822)
(-0.0137956836475 0.00448957964559 0.00694775039943)
(-0.0165938495433 0.00217668790901 0.00387801888658)
(-0.0187192307469 -0.000560250929888 0.000317315051719)
(-0.0200640299375 -0.00350559912966 -0.00357202488868)
(-0.0207851579767 -0.00681742304237 -0.00755202671329)
(-0.0208234687446 -0.00976852577354 -0.011591842362)
(-0.0198464406814 -0.0125916736466 -0.0153305887316)
(-0.0180037808817 -0.0154092221961 -0.0186959396485)
(-0.0155177342845 -0.0182788012696 -0.0215569317319)
(-0.0126779770785 -0.0212087178685 -0.0238179608344)
(-0.00975740062243 -0.0240784138115 -0.0254386171319)
(-0.00707405929348 -0.0266625316584 -0.0263979676544)
(-0.00482438775935 -0.0289423735785 -0.0267459665612)
(-0.0030545775539 -0.0308374217 -0.0266172200194)
(-0.00174362295189 -0.0323105516286 -0.0261690955444)
(-0.00111329188662 -0.0332520120524 -0.0254608393529)
(-0.000902538961776 -0.0333156982835 -0.0241870067184)
(-0.0029561027354 0.00725710761211 0.0135229823184)
(-0.0073686383513 0.00646220639587 0.013492857161)
(-0.0114356297035 0.00535131458791 0.0121897288592)
(-0.0154037425248 0.00399415006702 0.0097318839205)
(-0.018637587879 0.00231866716339 0.00639548618769)
(-0.0210886544476 0.000347668259819 0.00246717639131)
(-0.0226517401225 -0.00180144056476 -0.00181145222367)
(-0.0233643097767 -0.00414450653444 -0.00621959270759)
(-0.023161434725 -0.00638595016747 -0.0106169045565)
(-0.0220515101909 -0.0085496712846 -0.0147235133168)
(-0.0201916097844 -0.0107037376408 -0.01838899948)
(-0.0177012358364 -0.0128835668517 -0.0215460461488)
(-0.0148459332706 -0.01507736638 -0.0241086668247)
(-0.0118674600478 -0.0171948842593 -0.0260090808609)
(-0.00905364154699 -0.0191601262766 -0.0273438003678)
(-0.00660697709714 -0.0208776025148 -0.0280363461499)
(-0.00457955961642 -0.0223545836705 -0.028354150539)
(-0.00289742034925 -0.02349657008 -0.0283301620435)
(-0.00178198700796 -0.0242412112337 -0.0279874858718)
(-0.00110701078142 -0.0242544984113 -0.0269791419545)
(-0.00292952444606 0.00511553668758 0.016161359243)
(-0.00756098550603 0.00434150992036 0.0158669239398)
(-0.01193625607 0.00350858289561 0.0142877630333)
(-0.0161589379147 0.00268394833372 0.0116189087491)
(-0.019636286354 0.00167782612471 0.00811214476553)
(-0.0222530436317 0.000488300906282 0.00401308970133)
(-0.02391848179 -0.000836315653825 -0.000449177772009)
(-0.0246183171123 -0.00226216524765 -0.005036071683)
(-0.0243614508727 -0.0036702317734 -0.00957503782486)
(-0.0232082866984 -0.0051081510467 -0.0138983272313)
(-0.0213105705377 -0.00650194717517 -0.0177126865513)
(-0.0188344657853 -0.00790418705745 -0.0210630144227)
(-0.0159934578168 -0.00929054431593 -0.0238219240757)
(-0.0130201965822 -0.0106475770711 -0.0259587451501)
(-0.0101591947449 -0.011906663596 -0.027595389373)
(-0.00762863327668 -0.0129804815571 -0.028537760552)
(-0.0054702026086 -0.0138904546007 -0.0291729105438)
(-0.00360573014051 -0.014575508454 -0.0294818371261)
(-0.00229679265743 -0.0150528034269 -0.0295299152124)
(-0.00115230240844 -0.0148121656885 -0.0289563866618)
(-0.00234990636369 0.00189771710379 0.017604404336)
(-0.00678818618224 0.00151473474761 0.0169179015186)
(-0.0115501261234 0.00115984594153 0.0150921162281)
(-0.0158552935465 0.000856157947398 0.0123304636344)
(-0.0193913193463 0.000503502450204 0.00880386060489)
(-0.0220191086532 7.94220639911e-05 0.0047162396665)
(-0.0236559542844 -0.000416625939656 0.000287608515595)
(-0.02430316322 -0.000937505183901 -0.00425622129981)
(-0.0240022096058 -0.00147975616103 -0.00870686818115)
(-0.0228232671511 -0.00201687891491 -0.0129387560563)
(-0.0209176494562 -0.00255541277064 -0.0167740290049)
(-0.0184660396248 -0.00308264812944 -0.0201369059462)
(-0.0156798360698 -0.00359662406081 -0.0229268379487)
(-0.0127891882882 -0.004064350732 -0.0251086050981)
(-0.0100010066092 -0.00450199949326 -0.0267674265063)
(-0.00753004825763 -0.00487081580401 -0.0279222783215)
(-0.00539648498886 -0.00515206741632 -0.0287204532634)
(-0.00356098321457 -0.00532985419179 -0.0292807689944)
(-0.00210685154091 -0.00540094788474 -0.0296944245078)
(-0.000811129270587 -0.00503257800878 -0.0297004055602)
(0.00291514154902 -0.00197487585252 -0.00890175485145)
(0.00885418774018 -0.00203806853555 -0.00826405203423)
(0.0145384397146 -0.00209942903045 -0.00731397272272)
(0.0200951525385 -0.00223502816501 -0.00586587647538)
(0.0254415016788 -0.0024064269286 -0.00389373055678)
(0.0305119229016 -0.00260046099035 -0.00134459690858)
(0.0352954399417 -0.00287313892014 0.00183781867587)
(0.0397316794417 -0.00325410490692 0.00571926633313)
(0.0436211939688 -0.00359893874586 0.0103234649757)
(0.0466634546521 -0.00389031027767 0.0155949663726)
(0.0485315644849 -0.00418673550036 0.0214467850941)
(0.0490484955922 -0.00448713267469 0.0276753888548)
(0.0481481604262 -0.00480481217503 0.034046357)
(0.0456849399655 -0.0050819388411 0.0403803289973)
(0.0417673267203 -0.00552056993172 0.0463791630062)
(0.0366066543416 -0.00590316405302 0.0519040556735)
(0.0302441671658 -0.00617461945678 0.056750664883)
(0.0228145101156 -0.00629873617737 0.0607003702717)
(0.0144377984617 -0.00619487526584 0.0636101764451)
(0.00499238504322 -0.00555641677507 0.0651007398065)
(0.00277360833907 -0.00557080494947 -0.00952197152864)
(0.00860644385525 -0.0056782690893 -0.00863337302617)
(0.0141906624377 -0.00582868940738 -0.00755129216198)
(0.0195948004594 -0.00610371921019 -0.00607149744144)
(0.0248631648303 -0.00644597052114 -0.00406510988004)
(0.0298158904749 -0.00683451348325 -0.00146686521164)
(0.0344305030184 -0.0074915359727 0.00177869874912)
(0.0388512900928 -0.00853903959333 0.0057631783699)
(0.0428630950815 -0.00944735517119 0.0104187498252)
(0.0459928536271 -0.0102851296626 0.0157642302874)
(0.0479469141403 -0.0111224413179 0.0216667671395)
(0.0485405357805 -0.0119373506485 0.0279591049128)
(0.0477467689382 -0.0129467557736 0.0343404344209)
(0.0452459665568 -0.0136457308258 0.0407478472319)
(0.0412657310239 -0.0149868719342 0.0466479940898)
(0.0361695211588 -0.0160422313087 0.0520261464131)
(0.0298092003587 -0.0168505724183 0.056687176637)
(0.0223237434248 -0.0173196068257 0.0604679780668)
(0.0138563059743 -0.0173288383967 0.0631723381125)
(0.00468953641813 -0.0164241298857 0.0644005269241)
(0.00267167041311 -0.00867952661246 -0.0109526025795)
(0.00837402016854 -0.00881227330428 -0.00993552751074)
(0.0138622834448 -0.00905124857631 -0.00877803697084)
(0.0191987357643 -0.00940209804031 -0.00724594538815)
(0.0243657157141 -0.00982657515139 -0.005167079871)
(0.0291187255499 -0.0103322101248 -0.00243605774437)
(0.0333544478832 -0.0112795433527 0.000938708297453)
(0.0376860678733 -0.0132528922852 0.00504682365454)
(0.0418497914649 -0.0147564622905 0.00982936014723)
(0.04502223751 -0.0161320728836 0.0152870704614)
(0.04701829138 -0.0174742958403 0.0212268660708)
(0.0474676876077 -0.0188052578285 0.0275557249676)
(0.046817351016 -0.0207262514514 0.033919575042)
(0.0442783513372 -0.0216211282573 0.0402946767518)
(0.0401597740433 -0.0241981541612 0.0459008202111)
(0.0353477643607 -0.0258571503049 0.0510834773339)
(0.0290942349821 -0.027185539348 0.0554059040959)
(0.021691843211 -0.0280352397417 0.0588491596259)
(0.0133614861426 -0.0282459767233 0.0612918818399)
(0.00444996642102 -0.0276545161291 0.0623288118043)
(0.00253268976497 -0.0109128763644 -0.0128050967662)
(0.00805948702578 -0.0111199459119 -0.0117482595565)
(0.0134448219285 -0.0114348521304 -0.0106129047699)
(0.0186781315957 -0.0118954672769 -0.00906362415658)
(0.0237594266428 -0.0125157147291 -0.00689575947027)
(0.0283051582778 -0.0133446252554 -0.00396597948761)
(0.0318059032698 -0.0149206235964 -0.000442686419859)
(0.0359665533573 -0.0187654694329 0.00385117808825)
(0.0405235969547 -0.0207426563327 0.00870259192391)
(0.0436942210782 -0.0227256906717 0.0142854665304)
(0.0456642610543 -0.0246040441704 0.0203743788287)
(0.0457291449736 -0.0260505013617 0.0267067683766)
(0.0453720519898 -0.0290494709692 0.0326880602674)
(0.0426428410926 -0.0297893387373 0.039076966735)
(0.038273244183 -0.0338354658084 0.0441610720393)
(0.0342071848321 -0.0356176691069 0.0490325577226)
(0.0281532979759 -0.0373598327605 0.0530143624163)
(0.0210226001997 -0.0384517156135 0.0560679648926)
(0.0129810757379 -0.0388570170366 0.0582210188802)
(0.00430373655761 -0.038362081524 0.0590820674968)
(0.00236304679564 -0.0120880240778 -0.0148631276612)
(0.00770471756437 -0.0123695830345 -0.0138454000546)
(0.0129479314941 -0.0127848350119 -0.0127641820054)
(0.0179805950285 -0.0133374365345 -0.011196464761)
(0.0227904854685 -0.013988786807 -0.00893976069871)
(0.0268247297583 -0.014577498236 -0.00582524141035)
(0.0287034956478 -0.0153224271378 -0.00233453641689)
(0.0329926975069 -0.0210321066368 0.0018845876293)
(0.0386723353469 -0.0226201446612 0.00678587101638)
(0.041788673063 -0.0250975091765 0.0125570664674)
(0.0442010935033 -0.027692822399 0.0187769115107)
(0.0435775854867 -0.0289738266791 0.0253702681226)
(0.0435021168876 -0.0336578025794 0.0308118996265)
(0.0405259127268 -0.035924843939 0.0368891245336)
(0.0359292166302 -0.0425629458091 0.0408507113928)
(0.033095489314 -0.0443359301175 0.0456395855294)
(0.0270082553436 -0.0466798015149 0.0493151619215)
(0.0202321656692 -0.0480302898982 0.0520651335653)
(0.012502524821 -0.0485788616383 0.0538706308582)
(0.00411641869721 -0.0481511802497 0.0546209469448)
(0.00215707899258 -0.0120953018896 -0.0168461731988)
(0.00725747105986 -0.012476817729 -0.0159197716753)
(0.0123528861282 -0.0131265011394 -0.0148805114109)
(0.017304083351 -0.0141011458147 -0.0132872660925)
(0.0222384035086 -0.0156179930298 -0.0109048625984)
(0.0268339958045 -0.0179412538117 -0.00747136860657)
(0.0267280475557 -0.0198405515845 -0.00357041758234)
(0.031456322357 -0.0337067431994 0.000911367631294)
(0.0380611507974 -0.0337549933771 0.00598095331141)
(0.0396359124475 -0.0381773730822 0.0119800126225)
(0.0421901710927 -0.0421409927039 0.0178531060564)
(0.0397439004007 -0.0403786145562 0.0244465048596)
(0.0380557253635 -0.0439290124657 0.0297441496083)
(0.0345748956278 -0.0479647980062 0.0349959608621)
(0.0314001481761 -0.0540157822847 0.0364084403745)
(0.031347591204 -0.0534441604543 0.0410255699067)
(0.0251018535402 -0.0557031242642 0.0442019214134)
(0.0190825197086 -0.0568113916319 0.0466783579462)
(0.0118502070355 -0.057250987528 0.0482836935303)
(0.00388220389416 -0.0566976608154 0.0490400143513)
(0.00191362141042 -0.0109499425402 -0.0184102717445)
(0.00661472595232 -0.0113999465741 -0.0175691184322)
(0.0112669917352 -0.0121164465307 -0.0166030621295)
(0.0153806330503 -0.0130493891155 -0.0150642802131)
(0.0188454222211 -0.0142345476256 -0.0126487496752)
(0.0235102766841 -0.0158612559478 -0.00930096550342)
(0.0167771269427 -0.0176107527633 -0.00688507973106)
(0.0167586419015 -0.0422455642229 -0.0058707583418)
(0.0374255180157 -0.0414099166069 -0.000602059416514)
(0.0351762850108 -0.0441731215935 0.0059745070809)
(0.0426387207011 -0.0465242888078 0.0115078262907)
(0.0380457131556 -0.0436140939261 0.0175776913984)
(0.0407426712585 -0.0467521226353 0.0296616449461)
(0.0297155809389 -0.0602088114892 0.0306495936322)
(0.0306628495223 -0.0574145064271 0.0288933748247)
(0.0320573851493 -0.0597512574736 0.0343796042428)
(0.0238368137948 -0.0624354173319 0.0372986573883)
(0.0182484679695 -0.0638189667292 0.0398075305574)
(0.011235027938 -0.0643316129567 0.0415193529538)
(0.00361444913484 -0.0637104183445 0.0424441129507)
(0.00165334343686 -0.00883948090389 -0.0192860038187)
(0.00607957806246 -0.00936997098261 -0.018479850097)
(0.0107262666987 -0.0102506836927 -0.0175886800401)
(0.0150852265416 -0.0112943174506 -0.0160485478856)
(0.0196666307476 -0.0126032455288 -0.0131278666134)
(0.0270687318927 -0.012832005915 -0.00826744730883)
(0.000490783492984 -0.0166546053758 -0.00212549017903)
(0.0103532867467 -0.0654978958886 0.0180821619827)
(0.0287139283896 -0.0617939705441 0.0189431908203)
(0.0267125826216 -0.0654924116216 0.0265164184043)
(0.0206102391836 -0.0678287932106 0.0295054531392)
(0.016260625054 -0.0692935126597 0.0320149264844)
(0.0101524682907 -0.0697663216461 0.0338679470552)
(0.00323067875541 -0.0690583362452 0.0350398701366)
(0.0013321435242 -0.00603401770293 -0.0191544058879)
(0.00523646545118 -0.00673088064332 -0.0184562229913)
(0.0094506017325 -0.00802170826494 -0.017686523517)
(0.0133015160677 -0.00974844709701 -0.0162680985628)
(0.0179622953468 -0.0118328995474 -0.0134513624095)
(0.0233741844563 -0.0133086009065 -0.00779723842152)
(0.00554362260017 -0.0183816048793 -0.00372855298813)
(0.00608589941753 -0.0699288582088 0.00743398768683)
(0.0280347607958 -0.0676679385467 0.00935563257152)
(0.0247172141953 -0.0704826368546 0.0172422086007)
(0.0192520755915 -0.0720130526339 0.0205342035101)
(0.0149978166569 -0.0731430124156 0.0232871906531)
(0.009306232783 -0.0734026723738 0.025447874164)
(0.00288983837284 -0.0725871514924 0.026970386348)
(0.000914102468487 -0.0027622593821 -0.0179787412732)
(0.00411347865274 -0.00363108175569 -0.0173641036463)
(0.00777719030253 -0.00532236525019 -0.0168200479293)
(0.0112667197776 -0.00777684273975 -0.0156732160961)
(0.0160379535768 -0.0109277470297 -0.013065299522)
(0.0216774864198 -0.0143902953466 -0.0075956784433)
(0.00501690917085 -0.0214995414759 -0.00390439567584)
(0.00535888043426 -0.0671080526736 -0.00191098241751)
(0.025419612118 -0.0670057878334 0.000886165203842)
(0.0218979979165 -0.0709977434357 0.00825536200716)
(0.0172156948249 -0.0729787118771 0.0114629094201)
(0.0133785062761 -0.0744074917779 0.0142788808923)
(0.00827972383026 -0.0748101026342 0.0166669289792)
(0.00254480387542 -0.0740287963977 0.0184879222664)
(0.00041234331771 0.000725000698817 -0.0156456693186)
(0.00265895940643 -0.000241832298721 -0.0151910510587)
(0.00534597914916 -0.00214197440405 -0.0150336191686)
(0.00777363062193 -0.00488992426944 -0.014482422957)
(0.0118818089993 -0.00854498563668 -0.0127876691796)
(0.0168365077233 -0.0133352224123 -0.00857375454608)
(0.00355389348039 -0.0265258692756 -0.00822881307722)
(-0.00023163244099 -0.0600415613006 -0.00981284434244)
(0.0229508183499 -0.0641319597335 -0.00665162696596)
(0.0180321201501 -0.0687721194343 -0.000562462877366)
(0.0146947983738 -0.0715586171922 0.00247659958179)
(0.0113615321423 -0.0734368175276 0.00526834473782)
(0.00702506623348 -0.0740745597487 0.00777560080462)
(0.0021165786037 -0.0733869364766 0.00987324366693)
(-0.000154073583747 0.0040728073943 -0.0121785532658)
(0.00111180118005 0.00291375413263 -0.0118469537855)
(0.003019813895 0.000654838659962 -0.0120124912652)
(0.00486294648158 -0.00272325730638 -0.0119790553551)
(0.00831423946364 -0.00704385848019 -0.0115081468231)
(0.00614221662112 -0.0136265532869 -0.00941494114008)
(0.0104568185403 -0.027463818305 -0.00791238954665)
(0.0108108332094 -0.0429457565645 -0.00782269796871)
(-0.011938918114 -0.0434777248277 -0.013856544684)
(-0.00419333973272 -0.0461713750735 -0.0148995082805)
(-0.00428719970443 -0.0472997396927 -0.0144937006142)
(2.87187788275e-05 -0.0468866425698 -0.0166390102772)
(0.00133928184047 -0.050642334457 -0.0187502282415)
(0.0118636427358 -0.0543762448606 -0.0157421331412)
(0.0135831234741 -0.0612326838568 -0.0125926065793)
(0.0127564410126 -0.0656791367494 -0.0086581902974)
(0.0109581490724 -0.0687183707698 -0.00599890269195)
(0.00879563296153 -0.0706449903635 -0.00344089342767)
(0.00551028146234 -0.0713816189862 -0.000880166836146)
(0.00160518412751 -0.0707845425775 0.00134692853715)
(-0.000914543378159 0.00709426631852 -0.00778029663436)
(-0.00110656917308 0.00585363096135 -0.0075872646465)
(-0.000890200099142 0.00340308827564 -0.00825594261364)
(-0.000862288956384 -0.000340939729281 -0.00916641384433)
(0.000130227580621 -0.00499975303416 -0.0100972241602)
(-0.00141532518145 -0.0123320956176 -0.0103569212504)
(0.0010939032925 -0.0183202461069 -0.0118791714957)
(-0.00505272348919 -0.0325300206273 -0.013436578747)
(-0.00938168137907 -0.0331680818899 -0.0171889972004)
(-0.00721076541671 -0.0380070450394 -0.0197688826745)
(-0.0049010690991 -0.0406813375303 -0.0216825172445)
(-0.000127749742961 -0.0420417476752 -0.0229464887341)
(0.00589229268062 -0.0457386717657 -0.0232839851934)
(0.00936745392986 -0.0522423839959 -0.0208762562383)
(0.0101050444987 -0.0570536747348 -0.0187712585837)
(0.00954800478576 -0.0612333936622 -0.0161406066533)
(0.00822391707059 -0.0641211620531 -0.013870228611)
(0.00659080878177 -0.0659658176439 -0.0113826255318)
(0.00406968268547 -0.0667494949562 -0.00892471041172)
(0.00109423264801 -0.0663051681257 -0.00670198160747)
(-0.00163210860536 0.00962621309167 -0.00260450029473)
(-0.00313748984309 0.00849219283987 -0.00245167839086)
(-0.00420053194685 0.00626761479282 -0.00341113003721)
(-0.0051644540169 0.00300817069121 -0.00494714077729)
(-0.00543082577251 -0.000865378481651 -0.00671721803853)
(-0.00644679834278 -0.00606805587093 -0.00830062732989)
(-0.00607182911656 -0.0103433905845 -0.0106416820602)
(-0.00824379814925 -0.0187616313338 -0.0127580570501)
(-0.0114236051738 -0.0216204850471 -0.0161993364657)
(-0.0108281601398 -0.0255205282645 -0.0191411308518)
(-0.00914147887408 -0.0291050263305 -0.0216251532575)
(-0.00582538785543 -0.0329575932452 -0.0235731974536)
(-0.00154107906638 -0.0380712142963 -0.0247066172739)
(0.00178511863567 -0.0442996492825 -0.0241115896025)
(0.0038416640306 -0.0498879113577 -0.0235567117951)
(0.00481870606599 -0.0544484015094 -0.0222073556531)
(0.00479882862752 -0.0575676717903 -0.0204978290871)
(0.00420628468647 -0.0595265437567 -0.0183798020167)
(0.00262406655712 -0.0604703676184 -0.0161419515401)
(0.000545363935267 -0.0602622533959 -0.0140135972266)
(-0.0022633625181 0.011309247477 0.00296274222979)
(-0.00500129925725 0.0102597510867 0.00312489038601)
(-0.00735007927889 0.00822519688529 0.00194474647318)
(-0.00952404735753 0.00522957411078 -0.00018193581795)
(-0.0110328453786 0.00145315145837 -0.00283411702915)
(-0.0125215126749 -0.00333798822653 -0.00563656767876)
(-0.0130839419419 -0.00805493027375 -0.00898817100046)
(-0.014387954129 -0.0146195227424 -0.0122737553616)
(-0.0157404735446 -0.0184190397963 -0.016252207809)
(-0.01491361461 -0.0223711991056 -0.0198208326024)
(-0.0129644864426 -0.026100315957 -0.0228216517291)
(-0.00997369275666 -0.0299598299274 -0.0252606401159)
(-0.00643887651541 -0.0343599723914 -0.0270001127268)
(-0.00320527105501 -0.0391530567248 -0.0275827390225)
(-0.000727571758339 -0.0435141647128 -0.0276910608181)
(0.000923088533888 -0.0472779898741 -0.0270439346057)
(0.00175731569569 -0.05003989234 -0.0258102750349)
(0.00195691110856 -0.0519258932027 -0.024130537426)
(0.00121468196964 -0.0530182537672 -0.0223345279275)
(-2.02399170097e-05 -0.0530132113763 -0.0205407326066)
(-0.00277969671457 0.0119165215964 0.00858261632448)
(-0.00651954057352 0.0109304094623 0.00865354239315)
(-0.00994979059412 0.00915668486843 0.00734225565781)
(-0.0131426620723 0.00661461768751 0.00476753683056)
(-0.0155452976303 0.00341246722523 0.00140553707834)
(-0.0174459808337 -0.000433730888342 -0.00238145902866)
(-0.0185614765517 -0.00438461848292 -0.00659469038909)
(-0.0195048810609 -0.00926611898426 -0.0108785925031)
(-0.019964497818 -0.0130401021607 -0.0154080543859)
(-0.0189373641949 -0.0167557165862 -0.0195663471751)
(-0.0168858116554 -0.020413655063 -0.0232464230617)
(-0.0140045539167 -0.0242003377897 -0.0262882999055)
(-0.0107115453978 -0.0282183637957 -0.0285563200948)
(-0.0074947933347 -0.0323062233956 -0.0299760629151)
(-0.00468942109708 -0.0359904760611 -0.0306903768795)
(-0.00248402846011 -0.0391813334095 -0.0306276141553)
(-0.000968114431568 -0.0416605394115 -0.0299258074487)
(-7.62262159975e-05 -0.0434874410253 -0.0288048386685)
(-1.88718184872e-05 -0.0446550279078 -0.02757357188)
(-0.000552819281497 -0.0447434085179 -0.0260898487927)
(-0.00317253132267 0.0113185669842 0.0138073896281)
(-0.00770035295247 0.0103728127004 0.0137581369747)
(-0.0119060587159 0.0088406101932 0.0122060446838)
(-0.0159246836002 0.00677571066122 0.00931758861446)
(-0.0190887018474 0.00417952078841 0.00540699652875)
(-0.0214621967644 0.00110790777946 0.000869849005839)
(-0.0229306734169 -0.00216498766743 -0.00408829378893)
(-0.0237136678081 -0.00586990506933 -0.00916715173455)
(-0.0236409518441 -0.009126762249 -0.0142936456789)
(-0.0223944034297 -0.0123106463567 -0.0190403522651)
(-0.0202473126974 -0.015458641519 -0.0232393413929)
(-0.0173738587859 -0.0186828699673 -0.0267973120197)
(-0.0141036161113 -0.0220035355882 -0.0295901627896)
(-0.0107802153174 -0.0252571564725 -0.0315480966342)
(-0.00773294840608 -0.0282077326686 -0.0327755968908)
(-0.00518582536994 -0.0307693392435 -0.0332038908668)
(-0.00321522760546 -0.0328998106795 -0.033068585972)
(-0.00179690717338 -0.034542697654 -0.0325694520286)
(-0.001079284482 -0.0356047989961 -0.0318849804473)
(-0.000910270564664 -0.0356630103401 -0.0306003883815)
(-0.00340613367366 0.00953247832544 0.018290486277)
(-0.00847932159694 0.00862300041257 0.0180255557283)
(-0.0132008307507 0.00734453126634 0.0161792148335)
(-0.0177440067116 0.00580071073165 0.012992410101)
(-0.0214173154768 0.00391602433849 0.00870717525011)
(-0.0241537146281 0.00170118706155 0.00367496887149)
(-0.0258571713166 -0.000704066120262 -0.00180446592112)
(-0.0265753389094 -0.00333036667636 -0.00742748383397)
(-0.0262751766917 -0.00580738532865 -0.012971718342)
(-0.024895835557 -0.00828198091866 -0.0182230280357)
(-0.0226642195754 -0.0106915365003 -0.0228797796209)
(-0.019785688149 -0.0131453657694 -0.0268340142173)
(-0.0165019565214 -0.0156298727271 -0.0300456207475)
(-0.0131179970707 -0.0180413863874 -0.0324365983671)
(-0.00990477512585 -0.0202871147479 -0.0341043197237)
(-0.00712819010445 -0.0221952851926 -0.0349665583826)
(-0.00488822759016 -0.0238498517809 -0.0353640387428)
(-0.0030625512304 -0.0251157014872 -0.0353651034666)
(-0.0018314972434 -0.0259395280341 -0.0350813236085)
(-0.00115153144683 -0.0259392889594 -0.0340847905972)
(-0.00337280287489 0.00665493448309 0.021717037839)
(-0.00869180669239 0.00575641948231 0.0211663808468)
(-0.0137538274353 0.00479627530366 0.0190264435381)
(-0.0185896205217 0.00385087635211 0.0155483497852)
(-0.0225405060173 0.00271404135769 0.0110157054108)
(-0.0254768493693 0.00137383034064 0.00572393650722)
(-0.0272939567864 -0.000117163327404 -3.29144877948e-05)
(-0.0280036053505 -0.0017211262965 -0.00593213356452)
(-0.0276331147398 -0.00329450597706 -0.0117495926891)
(-0.0261890075497 -0.00487946521403 -0.0172264140283)
(-0.0239227200091 -0.00646317113303 -0.0221786664098)
(-0.0210714200793 -0.00804380960006 -0.0264114806643)
(-0.0177972736994 -0.00961296427325 -0.0299245512217)
(-0.0144183660274 -0.0111299797912 -0.0326319682913)
(-0.0111314151205 -0.0125386256377 -0.0346342266636)
(-0.00825187650396 -0.0137244471832 -0.0358545256099)
(-0.00587947842673 -0.0147293464676 -0.0366087762272)
(-0.00384179851822 -0.0154778545442 -0.0369744902453)
(-0.00231074418821 -0.0160676817157 -0.0370859724373)
(-0.00130838046819 -0.0158591385429 -0.0365341058521)
(-0.00270898738582 0.00246865398609 0.0236104598545)
(-0.00783158957851 0.00202513514028 0.0226655885819)
(-0.0133190281601 0.00160485788438 0.0202543793496)
(-0.0182633981426 0.00125742988511 0.0166419308114)
(-0.0222939781636 0.000851251414254 0.0120336405398)
(-0.0252512060832 0.000365157855111 0.0066979812683)
(-0.0270495439202 -0.000189292870164 0.000928960991431)
(-0.0276872826568 -0.000783475893294 -0.00498716506623)
(-0.0272483352554 -0.0013789110744 -0.0107664276832)
(-0.0258156902611 -0.00196803093223 -0.0162378246512)
(-0.0235604085093 -0.00257815594206 -0.0212050926815)
(-0.0207048087313 -0.0031720486191 -0.0255288276556)
(-0.017476926936 -0.00374420221518 -0.0291161887019)
(-0.0141600115311 -0.00429515787924 -0.0319121192839)
(-0.0109699319188 -0.0047928449879 -0.0340251915129)
(-0.00815824009153 -0.0052319253096 -0.0354350502384)
(-0.00577910790518 -0.00557796385034 -0.0363733026159)
(-0.00375830724004 -0.00581815670565 -0.0370205558129)
(-0.00219849946066 -0.00584254778321 -0.0375087564965)
(-0.000879497686001 -0.00538592727108 -0.0375162711499)
(0.00307993663107 -0.00226422123202 -0.0102429981211)
(0.00937533917159 -0.00231358268542 -0.00948622463788)
(0.0153977970149 -0.00237074203727 -0.00840384595113)
(0.0213225579653 -0.00250495289652 -0.00672943318718)
(0.0270704193378 -0.00267204069426 -0.00445622523846)
(0.0325861136167 -0.00286054912665 -0.00149785815429)
(0.0378377502386 -0.00314557502675 0.00222437681014)
(0.0427960335132 -0.00349901442676 0.00681055895566)
(0.0472133441547 -0.00386026297606 0.0123015453825)
(0.0507175497437 -0.00416376491982 0.0186566336604)
(0.0529499584082 -0.00446067668079 0.0257315286441)
(0.0536876355122 -0.00479201809494 0.0333804916547)
(0.0528322030548 -0.0051501128351 0.0412257225951)
(0.0502391687915 -0.00544817253646 0.0490314881886)
(0.0460404129072 -0.00595031081206 0.0564347027405)
(0.0404640115144 -0.00638043327307 0.0632708506559)
(0.0335068989282 -0.00667575759165 0.0692789405423)
(0.0253351104473 -0.00681311641269 0.0741672161265)
(0.0160697572067 -0.00669159830836 0.0777321800472)
(0.00556829434336 -0.00592376626916 0.0795737431325)
(0.00294047793551 -0.00639488328154 -0.0110504840436)
(0.0091388845467 -0.00646786009695 -0.0100795884925)
(0.0150621498874 -0.00657992693724 -0.00884314017592)
(0.0208501003715 -0.00682776785907 -0.00709942443046)
(0.026524423646 -0.00712885252768 -0.00477487486792)
(0.0318979545238 -0.00747541030201 -0.00174591422458)
(0.0370054337124 -0.00811353289783 0.00206577060773)
(0.0419299280106 -0.00913438043858 0.00679704894697)
(0.0464428604276 -0.0100435732997 0.0123444081456)
(0.0500546859356 -0.0108919855749 0.0187795888604)
(0.0523687114416 -0.0117537757073 0.0259457700316)
(0.0531419840951 -0.0126480983211 0.0336032700203)
(0.0523978990305 -0.0137674188357 0.0414398244985)
(0.0497641118186 -0.0145276923293 0.0492899847691)
(0.0454797063098 -0.0160634125841 0.0565640594087)
(0.0399796819358 -0.0172271677287 0.063264596402)
(0.0330279895415 -0.0181130358564 0.0691224096468)
(0.0247891356525 -0.0185833200273 0.0737787854801)
(0.0154375325203 -0.0185636666049 0.0771644855407)
(0.00526153034256 -0.0175284879145 0.0787545298341)
(0.00284382321016 -0.00993370142086 -0.0129427009392)
(0.00894956756252 -0.0100298040082 -0.011810620067)
(0.0147956542527 -0.0102058726187 -0.0104784263668)
(0.0205296071057 -0.0104860332673 -0.00867423896746)
(0.0261134088736 -0.0108365551169 -0.00621818892002)
(0.0312718609505 -0.0112479392496 -0.00299396108764)
(0.0359647504207 -0.012176866492 0.000998218210131)
(0.0407926152919 -0.0141044228137 0.00595950584253)
(0.0454478789761 -0.0156272452509 0.011637664367)
(0.0490562709902 -0.0170254602323 0.0181925173247)
(0.051372162473 -0.0184051946294 0.0253738194504)
(0.0519776722227 -0.0198486904782 0.0330394087479)
(0.0513791405806 -0.0220054823463 0.0407515897169)
(0.0486621864216 -0.0230469304008 0.0485044446378)
(0.0442411293338 -0.0259482772098 0.0555334635813)
(0.0390733688003 -0.027798938175 0.0619913865957)
(0.0322404190717 -0.0292543475199 0.0674231882057)
(0.0240992114211 -0.0301389457659 0.0717935920468)
(0.0148919985775 -0.0303194514645 0.0749118470359)
(0.0049925753519 -0.0296422710121 0.0762785150565)
(0.00270778821921 -0.0123974519164 -0.0153720529644)
(0.00866355123375 -0.0125610162179 -0.0142070478888)
(0.0144454920313 -0.0128244067929 -0.0128494228177)
(0.0201017699437 -0.0132072499859 -0.0109760162436)
(0.0256249961186 -0.013747204475 -0.00836347956251)
(0.030552018579 -0.0144678806716 -0.00486860925941)
(0.0344838969139 -0.0160359520046 -0.000685854672939)
(0.0391006967262 -0.0198206060821 0.00456697639262)
(0.0440971918429 -0.0218743557461 0.010384272253)
(0.0477156757417 -0.0238795973563 0.0170380019606)
(0.0499565072451 -0.0258012210287 0.0243165048314)
(0.0500207614168 -0.0273066807347 0.0319138881804)
(0.0496789073879 -0.030712304687 0.0393103153718)
(0.0467954941641 -0.0318110601989 0.0468059113413)
(0.0421572656852 -0.0363656313513 0.0532702762492)
(0.0378057587175 -0.038365037 0.0593942629238)
(0.0312210085401 -0.0402373314928 0.0645038989605)
(0.0233844078512 -0.0414152597132 0.0684442201997)
(0.0144890622131 -0.0418140387306 0.0711647057261)
(0.00483386154296 -0.0412430664742 0.0723606681379)
(0.00254913314543 -0.0136165281371 -0.0180586261971)
(0.00833215991767 -0.0138697964026 -0.016925055405)
(0.0140064416601 -0.0142378051699 -0.015590246505)
(0.0194942773933 -0.0147116790182 -0.013642789008)
(0.0247723593371 -0.0152648317005 -0.0108562451533)
(0.0291487557551 -0.0156988783791 -0.00703790434513)
(0.0314109833799 -0.0163793884233 -0.00271807785335)
(0.0361360777214 -0.0221270365445 0.00279868951626)
(0.0422010025831 -0.0238584445958 0.00854121871326)
(0.0457371415563 -0.0263364688082 0.0153055168403)
(0.0484069779483 -0.0290862236123 0.0225780090079)
(0.0475790631887 -0.0303699688369 0.0302293357211)
(0.0473009685582 -0.0353663051713 0.0371344683528)
(0.0441118832949 -0.0384807960013 0.0439214365594)
(0.039536363514 -0.0457414979324 0.049371764468)
(0.0366314591495 -0.0478315232999 0.05526789921)
(0.0299659279703 -0.0504448388471 0.0600002051727)
(0.022482842537 -0.0518930801486 0.0635394852479)
(0.013945633312 -0.0524437060952 0.0659165607568)
(0.00462378728669 -0.0519092537957 0.0669719656015)
(0.00233455750297 -0.0134410225491 -0.0206858548901)
(0.00791011312255 -0.0138330784792 -0.0196238978615)
(0.0134807401228 -0.0144563472152 -0.0183039271931)
(0.0189368061824 -0.0153760469611 -0.0162741300273)
(0.0244228335251 -0.0167771016105 -0.013300138339)
(0.0293798961771 -0.0189661221403 -0.00905714063733)
(0.0293519319428 -0.0208749843017 -0.00451067217423)
(0.034490670125 -0.0345487421199 0.00148795909434)
(0.0415870013579 -0.0350868964635 0.00737325917878)
(0.0434255952075 -0.0394450821434 0.0142872408575)
(0.0461655591811 -0.0438185509417 0.0213891455562)
(0.0433831826278 -0.0421744012472 0.0290742363354)
(0.0412302321075 -0.0446025177022 0.0353255220839)
(0.0372271579478 -0.0515921822139 0.0406427372938)
(0.0345489706503 -0.0580459288746 0.0440797337449)
(0.0345823004294 -0.0577899529453 0.0495393947683)
(0.027817705947 -0.0603664615916 0.0537428870667)
(0.0212200472182 -0.0615509124535 0.0569924486535)
(0.0132346621081 -0.0619314742216 0.0591707017825)
(0.00436677498519 -0.0612378072593 0.0601986088462)
(0.00206712059898 -0.0118891057707 -0.0227895006932)
(0.00724715413582 -0.0123685491646 -0.0217871493058)
(0.0124122070253 -0.0131208762227 -0.0205289010317)
(0.0171002729401 -0.0140564837806 -0.0184702146255)
(0.0211378359433 -0.0151873291967 -0.015234979132)
(0.0262912628595 -0.0165657791463 -0.0104764305172)
(0.0182496076179 -0.0163847172894 -0.00729955803113)
(0.0187765337419 -0.0438654184863 -0.00253695200864)
(0.0402477241069 -0.043133231272 0.00277434575684)
(0.0384246289306 -0.0457691413079 0.0105639985305)
(0.0458847619651 -0.0484233766055 0.0173397734965)
(0.0420193628789 -0.0455341617571 0.0252438428913)
(0.0418412748135 -0.0473557507263 0.0330620861306)
(0.0292866185006 -0.0690666576763 0.0349938930231)
(0.0332361283209 -0.0626410779402 0.0359172310878)
(0.0350681675857 -0.0649812379115 0.0415153511835)
(0.0263579581817 -0.06778738431 0.0455035836882)
(0.0203081523313 -0.0692134771367 0.0487400084418)
(0.0125766006087 -0.0696715425935 0.0509919164334)
(0.00407153999909 -0.0689096593612 0.052180265566)
(0.00179049634382 -0.00915697964658 -0.0239984421855)
(0.00667105294125 -0.00975726248566 -0.0230725983571)
(0.0118348905062 -0.0107246416939 -0.0219558087457)
(0.0168540043383 -0.0118346404365 -0.0199895220925)
(0.0223013983448 -0.0130330052496 -0.0164069515378)
(0.0321906524299 -0.0128086694514 -0.0107568200224)
(0.00155429553022 -0.0162789785638 -0.00433864295999)
(0.0105280325486 -0.0738791132597 0.0198764685275)
(0.0339177686878 -0.0683074078278 0.0234195438423)
(0.0299759217556 -0.071473290444 0.031874348111)
(0.0230018187381 -0.0738243773144 0.036090840174)
(0.0181313939604 -0.075273180436 0.0393478861697)
(0.0113636158839 -0.075660325688 0.0417018883913)
(0.00363347975853 -0.0747983902363 0.0431408976122)
(0.00141968004223 -0.00558281983319 -0.0239327884281)
(0.00574533590923 -0.00637395026594 -0.0231424728142)
(0.0104994489687 -0.00781919623736 -0.0221727740949)
(0.0150556676464 -0.00973592690952 -0.020368557005)
(0.0208105047916 -0.0119350022601 -0.0168507646707)
(0.0289035429246 -0.0133094172682 -0.0106283910996)
(0.00618327801334 -0.0182424123425 -0.00558459532018)
(0.00626767813113 -0.076971285969 0.00888179754794)
(0.033299137683 -0.0739146252564 0.0119106945601)
(0.0279665168229 -0.0767569467182 0.0209487129064)
(0.021653322302 -0.0784391861432 0.0253437115386)
(0.016838374339 -0.0795526387595 0.0288250959824)
(0.0104652239301 -0.0797088866529 0.0314915405141)
(0.00328734807391 -0.0787215556202 0.0332844918784)
(0.000970325871562 -0.00146735796618 -0.0224894284076)
(0.00451972373865 -0.00246261287448 -0.0218081291901)
(0.00866410425306 -0.00442502528422 -0.0211377420697)
(0.0128830143414 -0.00728180215182 -0.0197127048618)
(0.0187876840535 -0.0109609320338 -0.0164249479295)
(0.0268606335262 -0.0151192778938 -0.0103760216638)
(0.00555419262941 -0.0245340862911 -0.00482241163745)
(0.00543029397465 -0.0718553383236 -0.00085668371442)
(0.0304069061072 -0.0725671909809 0.00175828614739)
(0.0248865168243 -0.0771212976776 0.0102200260942)
(0.0194260755364 -0.0794160761514 0.0144100491329)
(0.0150877007539 -0.080937905675 0.0179237752432)
(0.0093717294045 -0.0812931668721 0.0207699817483)
(0.00290295025152 -0.0803705340464 0.0229125619359)
(0.000394854305221 0.00289125438265 -0.0195242724479)
(0.00285602838522 0.00176815397153 -0.019099234652)
(0.00588579422313 -0.000447037935633 -0.01890042089)
(0.0088073717022 -0.00370827593882 -0.0182290426565)
(0.0138004708439 -0.00824738941825 -0.0161012092927)
(0.0203869725378 -0.0143153159692 -0.0119943943271)
(0.0023288854822 -0.028794521081 -0.012206920417)
(-0.000465220336308 -0.0644260866172 -0.0110145337799)
(0.0273791329439 -0.0691589941869 -0.00770235614054)
(0.0205697314991 -0.0746605027252 -0.000394994599234)
(0.0166183650746 -0.0778156384127 0.00352569036995)
(0.0128797363266 -0.079875911589 0.0069599022824)
(0.00800533021296 -0.0805194246435 0.00993095212509)
(0.00244363833394 -0.0797367904142 0.0122940374275)
(-0.000239005825663 0.00699814099135 -0.0150902386183)
(0.00114024119302 0.00568933756745 -0.0148323013492)
(0.00326046930118 0.00305474083028 -0.0150545740837)
(0.0053385976183 -0.000881980134178 -0.0150908123287)
(0.00911900794092 -0.00602856282318 -0.0144475072211)
(0.00779016729999 -0.0138741785569 -0.0127019711361)
(0.00779896773075 -0.030671438959 -0.0101545075463)
(0.00700093003778 -0.0432514553764 -0.011743834437)
(-0.0137703914435 -0.0448249732613 -0.0185004365096)
(-0.00558172960757 -0.0476327305351 -0.0221138060182)
(-0.00448669319746 -0.0485989040662 -0.0245697999154)
(0.000480899177363 -0.0488031888133 -0.0245671032043)
(0.00274171548624 -0.0527814633353 -0.0254232725943)
(0.0133435592401 -0.0565485395113 -0.0198987455446)
(0.015583267955 -0.0659300337243 -0.0154219164382)
(0.0147356168342 -0.0712122219572 -0.0103716873118)
(0.0125405562565 -0.0746191025938 -0.00683277135099)
(0.0100441321717 -0.0767491759064 -0.00365611200647)
(0.0063609939637 -0.0775483817493 -0.000709129328543)
(0.00187214261935 -0.0769090160243 0.00180107612058)
(-0.0010875699523 0.0106510146343 -0.00942559788507)
(-0.00141888404476 0.00923589821209 -0.00934290993239)
(-0.00123816851411 0.00641250893902 -0.0101829855277)
(-0.00116884096453 0.00214127598881 -0.011332789325)
(2.8877707738e-05 -0.00315060706653 -0.0123858060979)
(-0.00145634054572 -0.0112860994196 -0.0128908953498)
(0.000132001689876 -0.0193194928851 -0.0140531200464)
(-0.00695653481173 -0.0319780658079 -0.0169319070088)
(-0.0111140222111 -0.0330070947567 -0.0211081630065)
(-0.00853332136789 -0.0382089076884 -0.0244148604543)
(-0.00569942380759 -0.0409958253412 -0.0268889561056)
(-0.000327863358043 -0.0432193865967 -0.0281428791956)
(0.00660714988325 -0.0472155403851 -0.028327626572)
(0.0108822238289 -0.055431986634 -0.0250475977043)
(0.0114991131713 -0.0611930163058 -0.0223612026924)
(0.0109554200634 -0.0661237197217 -0.0191253020827)
(0.00944491430743 -0.0694694367612 -0.0163128322676)
(0.0076109784476 -0.0715458078568 -0.0133779527222)
(0.00475770817956 -0.0724537563055 -0.0105345726545)
(0.00132034795747 -0.071994221157 -0.00811750334419)
(-0.00192788751722 0.0136239596727 -0.0027633371604)
(-0.00373358571297 0.0123357988018 -0.00275411117282)
(-0.00501815419311 0.00980896347515 -0.00401064796204)
(-0.00613797198165 0.00610143280088 -0.00591413786075)
(-0.00644339003652 0.0016903396948 -0.00806353680334)
(-0.00764386506819 -0.00423656271577 -0.0101093047831)
(-0.00759935139897 -0.00949338205859 -0.0127668077206)
(-0.0102437843692 -0.0180774040379 -0.0159975410132)
(-0.0134357937471 -0.0213223342911 -0.0201346520049)
(-0.0125551822958 -0.0256204080066 -0.0237970145227)
(-0.0104909289266 -0.0295988048634 -0.0268336160892)
(-0.00665158526379 -0.0339982270301 -0.0290008899291)
(-0.00152967639606 -0.0396658017487 -0.0301716928902)
(0.0022566137505 -0.0469233767319 -0.0291455406061)
(0.00439800446713 -0.0533341142794 -0.0282022745503)
(0.00557535986456 -0.0586301477893 -0.0264853079251)
(0.00559012403602 -0.0622001039539 -0.0243892305315)
(0.00493510218107 -0.0644644820047 -0.0219159206647)
(0.00318270733025 -0.0655557699959 -0.0194200605586)
(0.000720504958259 -0.0653801098742 -0.0171701307296)
(-0.00264238793122 0.0154904676027 0.00441340837424)
(-0.00586543497946 0.0143033597722 0.00438865914423)
(-0.00865979693576 0.011981478969 0.00282661221875)
(-0.0111776593972 0.00856855462105 0.00018907431278)
(-0.0129130148092 0.00429819163569 -0.00307721744818)
(-0.014627598467 -0.00111449745625 -0.00657772337359)
(-0.0153977383678 -0.00645869409621 -0.0106508977018)
(-0.0169304875217 -0.0135352830652 -0.0149572041102)
(-0.01828528969 -0.0177720457852 -0.019800026201)
(-0.0171380812724 -0.0222010684533 -0.024188510152)
(-0.0148034397148 -0.0264277199455 -0.027856029231)
(-0.0113397026634 -0.0308352595785 -0.0307014421796)
(-0.00718058184842 -0.0358402868871 -0.0326309158059)
(-0.00345704404558 -0.0415016635972 -0.0331841468743)
(-0.000696718707901 -0.0464639854111 -0.0332224547941)
(0.0012285357797 -0.0507862505341 -0.0324105110453)
(0.0022070584996 -0.0539536698876 -0.0309391450005)
(0.00243351750857 -0.0561175340629 -0.0290117715595)
(0.00167279545895 -0.0573877686783 -0.0270606664262)
(1.59534094174e-05 -0.057455514954 -0.0251418336808)
(-0.00325129104417 0.0159846591165 0.0116394529069)
(-0.00763233337482 0.0148795289559 0.0115060838425)
(-0.011675884022 0.0128389198578 0.00971696408258)
(-0.0153784452985 0.00993189309979 0.00649965604321)
(-0.0181419213649 0.00630887760194 0.00232732910859)
(-0.0203255357595 0.00195223004127 -0.00238735487124)
(-0.0216059323468 -0.00250173049002 -0.00762020485483)
(-0.0226530919952 -0.00791398234535 -0.0130309765062)
(-0.0230240981521 -0.0121019953374 -0.0186079946775)
(-0.0216979080281 -0.0163174127225 -0.0237294634836)
(-0.019254477403 -0.0204784261866 -0.0281864244592)
(-0.0158853235749 -0.0248025381148 -0.0318461439294)
(-0.0120198186693 -0.0293780053296 -0.0345580809533)
(-0.00830375618064 -0.0341294664984 -0.0361628291711)
(-0.00510158615128 -0.0383616673545 -0.0369820732773)
(-0.00255867642979 -0.0420134540877 -0.0368980753099)
(-0.000816490896117 -0.0448521351699 -0.0360784019663)
(0.00017149393608 -0.0469373005317 -0.0348048290567)
(0.000217700074727 -0.0482879259573 -0.0334962940383)
(-0.000499413707824 -0.0484095173921 -0.031942673235)
(-0.00368956867508 0.0149521864764 0.0183564226463)
(-0.0089755375563 0.0139007383755 0.0180644851151)
(-0.0139553969919 0.0121287211443 0.0159802861095)
(-0.0186126696392 0.00976320801724 0.0123131804362)
(-0.022258664482 0.00680503027269 0.00742926892868)
(-0.0249584419218 0.00332162112815 0.0017653686716)
(-0.0265928469608 -0.00037310188371 -0.0044247961048)
(-0.0273926525657 -0.00453117245663 -0.010770258498)
(-0.0272059732623 -0.00818138445176 -0.0170630507256)
(-0.0256277556094 -0.0118129877302 -0.0229510435088)
(-0.0230340740137 -0.0154150826503 -0.0281310864217)
(-0.0196687973215 -0.0190813843735 -0.0324443469565)
(-0.0158422713181 -0.0228807131361 -0.0358389363142)
(-0.0120047001242 -0.0266412558233 -0.038182316181)
(-0.00849537207406 -0.03003943265 -0.0396602158598)
(-0.00554600788166 -0.0329558883775 -0.0401825333038)
(-0.0033154463478 -0.0353865671461 -0.040026814629)
(-0.0017614525001 -0.0372560267702 -0.0394616503866)
(-0.000986563793841 -0.0384774092966 -0.0387439543525)
(-0.000893110827544 -0.0385346584726 -0.0374481749793)
(-0.00396098335219 0.0124706874192 0.0241176494801)
(-0.00986619500393 0.0114150862415 0.0235682472937)
(-0.0154381917487 0.00994818258934 0.0211363503446)
(-0.0207145351307 0.00817077534865 0.0170770472073)
(-0.0249534275886 0.00601608349849 0.0116828185583)
(-0.0280679948014 0.00349406643446 0.00536767158224)
(-0.0299447147334 0.000768394840947 -0.00150383183991)
(-0.0306574025712 -0.00220585939983 -0.00853325512992)
(-0.0301895573614 -0.00501280832044 -0.0154263057137)
(-0.0284910578633 -0.0077958710595 -0.0218910950355)
(-0.0257937538349 -0.0105966812747 -0.0276797757282)
(-0.0223919122597 -0.0133830732209 -0.0325240750421)
(-0.0185637194438 -0.0162335366892 -0.0364853647997)
(-0.0146428575934 -0.0190198885131 -0.0394120988753)
(-0.0109152012431 -0.0215777417055 -0.0414103865325)
(-0.00771428518656 -0.023762852835 -0.0424865531121)
(-0.0051963097541 -0.0256345415649 -0.0429453038077)
(-0.00318694542729 -0.0270654054237 -0.0429601389727)
(-0.00184478474607 -0.0279882950379 -0.042692419255)
(-0.00117438097948 -0.0280083574198 -0.0416883493561)
(-0.00393645722248 0.00863324986207 0.0284940199293)
(-0.0101281067941 0.00758935234939 0.0276356795405)
(-0.0160734946954 0.00647998056682 0.0248646281661)
(-0.0216966563396 0.00538502698644 0.0204468081671)
(-0.0262566329142 0.00408274070051 0.0147091855773)
(-0.0296035202517 0.00255004772201 0.00802198709175)
(-0.0316129174579 0.000858586122837 0.000765956235893)
(-0.032313603055 -0.000970171718515 -0.0066498449155)
(-0.0317496711874 -0.00276031206649 -0.0138922191135)
(-0.0300033736202 -0.00454757826532 -0.0206871048658)
(-0.0272786030248 -0.00635087451245 -0.0269032415184)
(-0.0238742666701 -0.00815955444727 -0.0321323175699)
(-0.0200652324015 -0.00994751090211 -0.0365125410035)
(-0.0161282135674 -0.0117020478624 -0.0398515864983)
(-0.012319457599 -0.0133031606928 -0.0422371706259)
(-0.00898813269832 -0.0146629095729 -0.0438035628469)
(-0.00629565180594 -0.0158154876585 -0.0446481829767)
(-0.00404776953904 -0.0166627460031 -0.0450441697153)
(-0.00238763543657 -0.0172502605271 -0.0451744749804)
(-0.00133512106916 -0.0171235173482 -0.0446706056918)
(-0.00318258831434 0.00319983344047 0.0309581948575)
(-0.00919173277364 0.00269048587132 0.0297123652081)
(-0.015603713803 0.00218969014048 0.0265787523795)
(-0.0213615915456 0.0017890780946 0.0219744217182)
(-0.0260270273947 0.0013175392165 0.0161103776097)
(-0.0294088392982 0.000755845240701 0.00933165946732)
(-0.0314094238341 0.000129493000256 0.00202063942515)
(-0.0320367998708 -0.000551062743977 -0.0054619618647)
(-0.03140789008 -0.0012204770017 -0.0127704491233)
(-0.0296432436841 -0.00189733183358 -0.019622889803)
(-0.0269378247601 -0.00256454773049 -0.0258840744513)
(-0.0235573862708 -0.00323269873313 -0.0313077723396)
(-0.0197649432147 -0.00389862031422 -0.0357908271401)
(-0.0158915532357 -0.00453310847524 -0.039272654817)
(-0.0121689075495 -0.00510271567698 -0.0418614996522)
(-0.00888000231634 -0.00560593868831 -0.0435457468806)
(-0.00618992237999 -0.00600303325215 -0.0446293220364)
(-0.00394660346325 -0.00628945245763 -0.0453535977231)
(-0.00221653789031 -0.00640624476931 -0.0458877898925)
(-0.000954343662521 -0.00580998709115 -0.0458888017854)
(0.00327606684642 -0.00263650670179 -0.0114023176686)
(0.00995761746556 -0.00268879457766 -0.0105349516324)
(0.0163531001002 -0.00271455296354 -0.0093243199047)
(0.0227136175816 -0.00283489234936 -0.00750069571702)
(0.0289242473472 -0.00299617523404 -0.00497203319199)
(0.0349634797026 -0.00315942452577 -0.00166720613464)
(0.040794820677 -0.00344563964896 0.00254235206195)
(0.0463980987355 -0.00379326264776 0.00781529440079)
(0.0514629573862 -0.00414940908918 0.0142067151964)
(0.0555658934213 -0.00446352666435 0.0216810380848)
(0.0582999679011 -0.00477842623394 0.0301533276989)
(0.0593315116669 -0.00515885906884 0.0393111933382)
(0.0585480712233 -0.00556578116897 0.0488143378762)
(0.0558086014182 -0.00589893360839 0.0582617985437)
(0.0512732164833 -0.00647745635592 0.0672594206646)
(0.045197229716 -0.00695190230899 0.0755860614757)
(0.0375215746979 -0.00726103944513 0.0829167372235)
(0.0284181812577 -0.00740880044474 0.0888973991163)
(0.0180631063707 -0.00726209250017 0.0931724560494)
(0.00627404621635 -0.0063683730062 0.0953990042784)
(0.00311754393941 -0.0074745733944 -0.0124805119193)
(0.00973808383848 -0.00750612299162 -0.0113733633037)
(0.0160793553788 -0.00755335586722 -0.0100360145347)
(0.0222940854474 -0.00773714168201 -0.0080941024463)
(0.0284327422188 -0.00795967136898 -0.0054838207436)
(0.0343229159544 -0.00823569707186 -0.00205333659898)
(0.0400073356826 -0.00884754349949 0.00228655736192)
(0.0455594392575 -0.0097953207861 0.0077089283141)
(0.050708825592 -0.0107243200254 0.0142087310155)
(0.0549191780619 -0.0115707698235 0.0217699443151)
(0.0576865477511 -0.0124777458959 0.0303107866645)
(0.0587255802736 -0.0134688056192 0.0394615398798)
(0.0580846236539 -0.0147638643519 0.0489178206904)
(0.055279661817 -0.0156538309889 0.0583679184784)
(0.0506506693634 -0.017362888887 0.067255045976)
(0.044710292446 -0.0186328391765 0.075447911328)
(0.0369937021694 -0.0196034846871 0.0826288176223)
(0.0277912135981 -0.020067764457 0.0883486531434)
(0.0173961612994 -0.0199971539363 0.0924971245465)
(0.00597229018658 -0.0188190521062 0.0944729160867)
(0.00305359126992 -0.011575098745 -0.0149085574185)
(0.00961671278058 -0.0116031083316 -0.0136814855163)
(0.0158939808453 -0.0116856181449 -0.0121974515492)
(0.02209550613 -0.0118625060107 -0.0101290129033)
(0.0281631778239 -0.0120863005824 -0.00732195216801)
(0.033804650883 -0.0123699986503 -0.00362957620134)
(0.0390700640244 -0.0132557476857 0.00095379860132)
(0.0444820898152 -0.0150666544856 0.00671630457708)
(0.049718613967 -0.0165934773081 0.0133421921871)
(0.0538959979529 -0.0180267249926 0.021020883085)
(0.0566324035114 -0.0194764586666 0.0295616257188)
(0.0574268481128 -0.0210516235282 0.0386978319193)
(0.0568734153746 -0.0234907678194 0.0479657259878)
(0.0540338061397 -0.024815366232 0.0572484333734)
(0.0493066392412 -0.0280691622749 0.0658594420071)
(0.0436783666924 -0.0301335742074 0.0737981987916)
(0.0361432365245 -0.0317325309628 0.080631379991)
(0.0270937294954 -0.0326053433549 0.0859859334392)
(0.0167896754245 -0.0327624115233 0.0898788765307)
(0.00566631603901 -0.0319968142554 0.0916235320787)
(0.00292551089161 -0.0143303711865 -0.018137904763)
(0.00939779704219 -0.0144446726625 -0.0168040677935)
(0.015655293817 -0.0145996970063 -0.0152360772832)
(0.0218052006996 -0.0148649289909 -0.0130254104196)
(0.0278380990029 -0.0152717925337 -0.00997514410621)
(0.0332142175952 -0.0158129621174 -0.0059296165954)
(0.0376976558013 -0.0173170377561 -0.00106423889744)
(0.0428703449026 -0.0209088338034 0.00507612346692)
(0.0483610828797 -0.023056569117 0.0118670887612)
(0.0525040685148 -0.025121560778 0.0196602516219)
(0.0551036983481 -0.0271429137321 0.0282441970965)
(0.055243432479 -0.0288017547574 0.0372733520125)
(0.0548792584539 -0.032621449073 0.0462010499153)
(0.0518220466196 -0.0343008536002 0.0550667991323)
(0.0469918784706 -0.0393557501545 0.0630411750714)
(0.0423167604984 -0.0416658215172 0.0706675245682)
(0.0350702987204 -0.0437311547001 0.0770185457478)
(0.0263114666557 -0.0449817739884 0.0819654726943)
(0.016348774802 -0.0453525613852 0.0854404069339)
(0.00549779920312 -0.0446736553748 0.0870327035514)
(0.00277150872372 -0.0156085189622 -0.021637594796)
(0.00911790782007 -0.0158228219533 -0.0203328781048)
(0.0153187339226 -0.0161042788437 -0.0187209165706)
(0.0213333133174 -0.0164567372936 -0.0163613973826)
(0.0271783479744 -0.0168612825809 -0.0130383407409)
(0.0319801219731 -0.0170508307687 -0.00854144850361)
(0.0348018114219 -0.0176080019839 -0.00341568825004)
(0.0399736714111 -0.0232287481845 0.00327001289792)
(0.0463608064743 -0.0251655736394 0.00995588195297)
(0.0504086277525 -0.0277136661368 0.0178263054183)
(0.0533824505328 -0.0306206126251 0.0263418659334)
(0.0524468321252 -0.0319683935703 0.0352419624558)
(0.051863025907 -0.037440636161 0.0436600269172)
(0.0485236231816 -0.0417443380162 0.0514818124701)
(0.0440878577343 -0.0494198648248 0.0585444408798)
(0.040940426445 -0.0520309743413 0.0657246657307)
(0.0336489222574 -0.0549623498434 0.0716051174255)
(0.0253430033213 -0.0565378296114 0.0761339787689)
(0.01579023861 -0.0570480583861 0.0792538747471)
(0.00526661088984 -0.0563960026581 0.0806843455833)
(0.00256483395677 -0.0152184036224 -0.0250358700146)
(0.00872582231525 -0.0155841015248 -0.0237917112584)
(0.0148814058136 -0.0161744870525 -0.0221838961903)
(0.0209227282214 -0.0169884504031 -0.0196928389319)
(0.0270797699476 -0.0181931419127 -0.0161219823541)
(0.0324413971042 -0.0200649151659 -0.0110678700488)
(0.0326802739764 -0.0216974258737 -0.00576143544558)
(0.0381898067418 -0.0350834597099 0.00152530473242)
(0.0456658553555 -0.0363897036696 0.00831380695846)
(0.0479281984281 -0.0408268119601 0.0162642206147)
(0.050935424164 -0.0454998808457 0.0246346187549)
(0.0478217933603 -0.0439345561997 0.0335580670545)
(0.0448912087721 -0.046345199713 0.0412438274066)
(0.0406913846277 -0.0561697406934 0.0470342733383)
(0.0387264834393 -0.0627037376813 0.0523917745521)
(0.0385409506625 -0.0629665906224 0.0588743317117)
(0.0312453626526 -0.065886569597 0.0642534624835)
(0.0239307843282 -0.0671744218781 0.0684079039083)
(0.015003623198 -0.067530119615 0.0712664257693)
(0.00498153626759 -0.0666887098518 0.0726222661816)
(0.00228603919963 -0.0131575627968 -0.0278526126778)
(0.00806821605397 -0.0136556716513 -0.0266492980587)
(0.0138450160831 -0.0144557690972 -0.0250872200958)
(0.0192215726562 -0.0153744549813 -0.0225189595011)
(0.0240509601555 -0.016366182995 -0.0185651209153)
(0.0296586388912 -0.0173739417709 -0.0126001888448)
(0.0207500495829 -0.0150651119485 -0.00836018616749)
(0.0215663242899 -0.0449588314362 -0.00114204728114)
(0.0431542973578 -0.0443783518542 0.00419247388115)
(0.0424650677097 -0.0469782136078 0.0130548063854)
(0.0500655023054 -0.0498061545624 0.0212158729685)
(0.0459921050066 -0.0468709605284 0.0301930757513)
(0.0426996175001 -0.0481740739035 0.0378471287992)
(0.0304054160106 -0.0790331899063 0.0400309959242)
(0.0369254579121 -0.0687437391964 0.043283381896)
(0.0386529734747 -0.0711727009964 0.0494760039002)
(0.029570743364 -0.0741424153927 0.054583650483)
(0.0228952209961 -0.0756603643088 0.0586790812747)
(0.0142621841287 -0.0760945758309 0.0615407734846)
(0.00464893322464 -0.0751793920423 0.0630591499895)
(0.00196633601822 -0.00962549909529 -0.0295050942394)
(0.00740026337309 -0.0103059558048 -0.0284321109004)
(0.013168687958 -0.0113790896186 -0.0270703182173)
(0.0189446597931 -0.0125712773606 -0.0246818902475)
(0.0252574839862 -0.0136723804192 -0.0205008120432)
(0.0375913983558 -0.0131995282276 -0.0142238203249)
(0.00256031918383 -0.0155794607772 -0.0073001360037)
(0.0112480394676 -0.0832464747307 0.0226619222588)
(0.0404868721827 -0.0760139585865 0.0286541368212)
(0.0338736078335 -0.0785414967208 0.0381818745115)
(0.0260399491742 -0.080974083917 0.0435046802608)
(0.0204755712175 -0.0824457150399 0.04754245087)
(0.0128797032379 -0.0827656081529 0.050476897935)
(0.00414853020616 -0.0817378315357 0.0522364390779)
(0.00154815352264 -0.00505794345665 -0.0295658021081)
(0.00637382426624 -0.0059526111146 -0.0286383342163)
(0.0117406074732 -0.00757910014815 -0.0274713043129)
(0.0171112359355 -0.00970445278139 -0.0253090295106)
(0.0239117177197 -0.012033629868 -0.0211465813402)
(0.0350256296758 -0.013290746774 -0.0143540729109)
(0.00637017961673 -0.0172483790676 -0.00812980021505)
(0.00677995827622 -0.0849830585565 0.0103510269946)
(0.0398824145261 -0.0813243433115 0.0151299707484)
(0.031838240619 -0.0842500910026 0.0253906259425)
(0.0246767201106 -0.0861367470923 0.0308481389655)
(0.0191241564664 -0.0872646279274 0.0350948965468)
(0.0119244013751 -0.0873353679864 0.0383139797472)
(0.00375544861339 -0.0861561718152 0.0404712341597)
(0.00103881321761 0.000152279687441 -0.0278128144064)
(0.0050002288583 -0.0010050065278 -0.0270697580682)
(0.00968869480567 -0.00327476557336 -0.0262717983468)
(0.0147372509036 -0.00658997021297 -0.0245743763203)
(0.0217227851876 -0.0108596927929 -0.0207132171629)
(0.0331428705866 -0.015809851559 -0.0140847553822)
(0.00623612250119 -0.0273572345737 -0.00615699416968)
(0.00575355282917 -0.0779549496718 -0.000857851208727)
(0.0366195192121 -0.0793405176668 0.00317117530175)
(0.0284510946858 -0.084500212432 0.0127072786094)
(0.02221598806 -0.0872035967665 0.0178740889463)
(0.0172117072806 -0.0888326279176 0.0221176459308)
(0.0107325084042 -0.0891614241516 0.0255101362521)
(0.00335106578401 -0.0880904576343 0.028003868591)
(0.000373796245383 0.00563137497228 -0.0241254889112)
(0.00308665607658 0.00432344039195 -0.0236862552423)
(0.00648509300498 0.00173822598016 -0.0234682859082)
(0.00996087738463 -0.00213014680137 -0.0226635933589)
(0.0156891791764 -0.00764818630149 -0.0201328056011)
(0.0242593858837 -0.0152417169717 -0.0158764732106)
(0.000861218962322 -0.0329443830097 -0.0146517176615)
(-3.87564905924e-05 -0.0694734062705 -0.0127734233369)
(0.033080021147 -0.0753861221865 -0.00816769912716)
(0.0236727667335 -0.0818384396048 5.23699451301e-05)
(0.0190878988859 -0.0854309193496 0.00487485496064)
(0.0147918032265 -0.0876956284679 0.00898304638238)
(0.00924253067319 -0.0883653771362 0.012476896775)
(0.00283786205251 -0.0874917284651 0.0152053309496)
(-0.000338645734494 0.0107461395274 -0.0185507863585)
(0.00114657090896 0.0092387618671 -0.0183115275357)
(0.00345499872976 0.00618554967406 -0.0186385049505)
(0.00576955857959 0.00157855732864 -0.0187609007315)
(0.00963426803225 -0.00453663791243 -0.018012472328)
(0.0084303947814 -0.0137174584088 -0.0166591887709)
(0.0051869868266 -0.0338209142585 -0.0151487675882)
(0.00362902157193 -0.042988361209 -0.0160168277715)
(-0.016119742824 -0.0458266629656 -0.0229957255969)
(-0.00734739756613 -0.0485810897221 -0.0279127918261)
(-0.00503815562183 -0.0496506652661 -0.0303252441881)
(0.000577513653771 -0.0501442912481 -0.0309757529553)
(0.00516295344457 -0.0541312365771 -0.0310510028004)
(0.0158972973984 -0.0584282059706 -0.0238679673623)
(0.0183543814754 -0.0715737457126 -0.0182075957965)
(0.0172679184664 -0.0778889053675 -0.0119769403982)
(0.0146605126188 -0.0817872595943 -0.00764965412067)
(0.0116811780941 -0.0841691497462 -0.00374357064656)
(0.00744798150216 -0.0850470917442 -0.000336732471188)
(0.00222591631944 -0.0843958937586 0.00250683837708)
(-0.00132469679762 0.0152108985345 -0.011338917236)
(-0.00179436182183 0.0135932417839 -0.0113725777377)
(-0.00170318949254 0.0103215713651 -0.0124137376357)
(-0.00164777852919 0.00545026096839 -0.0138418227182)
(-0.000347009288895 -0.00061290571525 -0.0150976138645)
(-0.00179896069296 -0.00950549466074 -0.0159036318742)
(-0.00136366665275 -0.0191214979407 -0.0171358741195)
(-0.00928450074991 -0.031176569746 -0.020835370785)
(-0.0131776585691 -0.0328759028809 -0.0255685794441)
(-0.0102176105672 -0.0382762067877 -0.0295743238353)
(-0.00668478459675 -0.0414224237688 -0.0324147400691)
(-0.00055296067586 -0.0443176736231 -0.0338214371483)
(0.00775541704975 -0.0487485357644 -0.0337464054439)
(0.012937130529 -0.0588965678669 -0.0295825764942)
(0.0132861338855 -0.0661192335242 -0.0262170222245)
(0.0127443837735 -0.0719872267291 -0.0223366038143)
(0.0110507890612 -0.0759101130453 -0.018924878322)
(0.00897118422397 -0.0783173944687 -0.0154844211853)
(0.0056813723956 -0.0793631508098 -0.0121882268616)
(0.00159995780256 -0.0789577396817 -0.00949052806514)
(-0.00227153720845 0.0187504101645 -0.0028910840419)
(-0.00447331861347 0.0172832956229 -0.00299979472283)
(-0.00607083816862 0.0143561276068 -0.00458578633716)
(-0.00740068712207 0.0101303158133 -0.00694814276803)
(-0.00783091187029 0.00505997107295 -0.00954370926815)
(-0.00924982018112 -0.00167664448199 -0.0121377688373)
(-0.00970705594853 -0.00811851442401 -0.0152469054294)
(-0.0128178800036 -0.0168598364498 -0.0195297313461)
(-0.0159383594284 -0.0206879759817 -0.0244929923196)
(-0.0147092829065 -0.0254754893282 -0.0289390126537)
(-0.0121104670661 -0.0299815996109 -0.0325073560473)
(-0.00757819257027 -0.035048980614 -0.0349443450937)
(-0.00141249531884 -0.041450111937 -0.0361273508402)
(0.00301426328866 -0.0501396674352 -0.0346806416096)
(0.00523266220647 -0.057518167984 -0.0333175389121)
(0.00663215103137 -0.0636572519891 -0.0311757926894)
(0.00669547027212 -0.0677796186959 -0.0286344655366)
(0.00594469779353 -0.070404981463 -0.0257223836612)
(0.00391017552592 -0.0717375374019 -0.0228855917678)
(0.000943907220454 -0.0716044255038 -0.0204681033782)
(-0.00310929999615 0.0208498573935 0.00626657472482)
(-0.00695471480164 0.0194906430936 0.0060490714935)
(-0.0102987837248 0.0168147598326 0.00403887774597)
(-0.0132577049853 0.0129055433114 0.000789378125859)
(-0.0152900876057 0.00802378788604 -0.00317660320558)
(-0.0172999987323 0.00187551162451 -0.00750447975539)
(-0.0183578668281 -0.00428752717086 -0.0124479974494)
(-0.0201353470729 -0.011928698297 -0.0178370117172)
(-0.0214259879223 -0.0167510625899 -0.0236728284166)
(-0.0199050150554 -0.0217795392704 -0.0289678009961)
(-0.0170199841689 -0.0266148442535 -0.0333651882504)
(-0.0129341325737 -0.0317256894481 -0.036687490405)
(-0.00798144304377 -0.0374960279452 -0.0388361275439)
(-0.00366690293886 -0.0442588814032 -0.0393676374685)
(-0.000555586042354 -0.0499774528432 -0.0393205050979)
(0.00171566800722 -0.054968195725 -0.0383054318334)
(0.00287954494233 -0.0586363748809 -0.0365479029184)
(0.00311750575112 -0.0611555653247 -0.0343077969027)
(0.0022178237005 -0.0626710210038 -0.0321293973911)
(0.000169620156655 -0.0628253833125 -0.0300569422564)
(-0.00380964582968 0.0211791066433 0.0154236155023)
(-0.00900266934338 0.0199267604961 0.0150848010541)
(-0.0138220730219 0.0175748349227 0.0127561213764)
(-0.0181646163657 0.0142252717926 0.00876182262214)
(-0.0213995992991 0.0100714993139 0.00364351449581)
(-0.0239315007746 0.00508921820778 -0.00216341327325)
(-0.0254423378313 -2.05883548226e-05 -0.00858331730754)
(-0.0265777253845 -0.00605574761042 -0.0152721558718)
(-0.0268201667418 -0.0108009123737 -0.022034805949)
(-0.0250920818922 -0.0155994578912 -0.0282644037335)
(-0.0221255711427 -0.0204114667762 -0.0335801168497)
(-0.0181430009365 -0.0254045185343 -0.0379295782467)
(-0.013562235872 -0.0306964797262 -0.0411264750086)
(-0.00921424741861 -0.0362685466788 -0.0429686730762)
(-0.0055229594261 -0.0411600556754 -0.0439097895985)
(-0.00254530683814 -0.0453700708486 -0.0437775301341)
(-0.00052108114773 -0.0486535608925 -0.0427986529962)
(0.000569027215373 -0.0510651958065 -0.0413183694274)
(0.000552109768776 -0.052643742012 -0.0398918858655)
(-0.000422388654969 -0.0528324871741 -0.0382303331701)
(-0.00433143478447 0.0195996772119 0.0239786282587)
(-0.0105491307257 0.0183897292824 0.0233849900863)
(-0.0164839748383 0.0163455779101 0.0207045437537)
(-0.0219623013595 0.0136103554412 0.016132689754)
(-0.0262127835425 0.0102042449444 0.0100890383597)
(-0.0293364168936 0.00620589759541 0.00309962431722)
(-0.0311763177467 0.00197975107364 -0.00452718516038)
(-0.031983305891 -0.00272925550929 -0.0123518560597)
(-0.0315890583598 -0.00688445873825 -0.0200349775237)
(-0.029616534049 -0.0110534198863 -0.0271475738567)
(-0.0264622866212 -0.015231399509 -0.0334217260025)
(-0.0224553915781 -0.0194537948229 -0.0386127471776)
(-0.0179398403036 -0.0238472534557 -0.0426893632634)
(-0.0134483112878 -0.0282399638151 -0.0454905640902)
(-0.00935538860207 -0.0321672022337 -0.0472103391207)
(-0.00590601748416 -0.0355380187462 -0.0478264373154)
(-0.00334159105393 -0.0383338691334 -0.0476204104029)
(-0.0016222099941 -0.0404903910667 -0.0469594856932)
(-0.000818901695961 -0.0418972099168 -0.0461732115032)
(-0.000864542868716 -0.0419876041141 -0.044825405137)
(-0.00465220325442 0.016207140184 0.0312860748075)
(-0.0115885725247 0.0149870454891 0.0304071424665)
(-0.0182085871982 0.0132816026174 0.0272717545617)
(-0.024420538024 0.0112211673821 0.0222092887081)
(-0.0293765311799 0.0087305917315 0.0155002673991)
(-0.0329638332507 0.00582232596251 0.00767461623532)
(-0.0350604625003 0.00269759511818 -0.000819143860708)
(-0.0357440769387 -0.000699280964826 -0.00948637519838)
(-0.0350454170392 -0.0039040358113 -0.0179210246876)
(-0.0329286221918 -0.00710939038096 -0.0257656456676)
(-0.0296445063128 -0.0103452404953 -0.0327972692404)
(-0.0255914244315 -0.0135764118889 -0.038778740891)
(-0.0210887578705 -0.0168825755119 -0.0435405316084)
(-0.0164678844093 -0.0201258983754 -0.0470660807061)
(-0.0121086524245 -0.0230603817591 -0.0494199382006)
(-0.00837584419543 -0.0256092071449 -0.0507310092997)
(-0.00548146598376 -0.0277368767423 -0.0512206775312)
(-0.00324245796232 -0.0293666616036 -0.0512063029012)
(-0.00180167080481 -0.0304133865863 -0.0509028050778)
(-0.00117055693494 -0.0304602274589 -0.0498739715095)
(-0.0046369748971 0.0111673549557 0.0367970795343)
(-0.0119172268836 0.0099764010978 0.0356197682157)
(-0.0189600001797 0.00864425459628 0.0320825525117)
(-0.0255829384089 0.00736781672301 0.0265586871759)
(-0.0309200990329 0.00585559163225 0.0194157899912)
(-0.0347830791949 0.00408514378694 0.0110810628838)
(-0.0370248478215 0.00214363589362 0.00207114357586)
(-0.037684577393 4.55936987621e-05 -0.00710762006503)
(-0.0368742706856 -0.0020016159108 -0.0160004913476)
(-0.0347244282661 -0.00406492202142 -0.024321822663)
(-0.0314124325559 -0.00616769203408 -0.0318736161963)
(-0.0273571003331 -0.00828347480086 -0.0384262052916)
(-0.0228699271556 -0.0103133138136 -0.0437009651616)
(-0.0181900039208 -0.0123507392963 -0.0477724710677)
(-0.0137484256534 -0.0141911675149 -0.050614306925)
(-0.00984930595024 -0.0157736522616 -0.0524903270617)
(-0.00670730283048 -0.0170947234467 -0.0534187612198)
(-0.00419581978496 -0.0180783990322 -0.0538314411711)
(-0.00241685234073 -0.0186903824337 -0.053946747308)
(-0.0013534749459 -0.0186103341003 -0.0534139277161)
(-0.00378651134825 0.00415227529701 0.0400876679987)
(-0.0109357494555 0.00357185224363 0.038409466218)
(-0.018511436771 0.00294838493049 0.034439670353)
(-0.0252654617422 0.00248233997283 0.0286252524392)
(-0.0307276061971 0.00192828656174 0.0212836557835)
(-0.0346306237878 0.00128454091906 0.0128021640784)
(-0.036877599653 0.000565668884876 0.0036783270487)
(-0.0374856951458 -0.000216302873105 -0.00561456139023)
(-0.0365940914663 -0.000991341755567 -0.0146461192405)
(-0.0344213034123 -0.00174027345045 -0.023097600318)
(-0.0311766771527 -0.00247910073443 -0.0308017076672)
(-0.0271158042792 -0.00328231012973 -0.037537282975)
(-0.0226057653718 -0.00407206797527 -0.0430636539067)
(-0.0180011375587 -0.00480408235583 -0.0473316308388)
(-0.0136017847198 -0.00548110618525 -0.0503960653762)
(-0.00971574058592 -0.00604441559299 -0.0524146411276)
(-0.00662221346894 -0.00650961924314 -0.0536410378447)
(-0.00409237783056 -0.0068372784545 -0.0543874462696)
(-0.00212152708142 -0.00701821593209 -0.0549163522614)
(-0.00103589565986 -0.00632202079889 -0.0548862872908)
(0.00348221650148 -0.00313222763834 -0.0122055677228)
(0.0106030048571 -0.00313515940413 -0.011316089526)
(0.0173948005794 -0.00316746160215 -0.0100303876631)
(0.0242162408086 -0.00324620872266 -0.0081192369398)
(0.0309666814352 -0.00337514861495 -0.00539226637305)
(0.0375948431417 -0.00350947426388 -0.00182837153018)
(0.0441252140338 -0.00378483003952 0.00278376361098)
(0.0505205420723 -0.00411500582654 0.00866368009521)
(0.0564039272615 -0.00447385901751 0.0159272865933)
(0.0612972264448 -0.00480766286648 0.0246271965837)
(0.0646580696628 -0.00515314075225 0.034625599573)
(0.0660855615939 -0.00557391234438 0.0455069616425)
(0.0654309315888 -0.00606638023353 0.0568741765924)
(0.0625220887445 -0.00646339752442 0.0681663474743)
(0.0576112966192 -0.00710884312142 0.0789875569755)
(0.0509414927394 -0.00761609483595 0.0890217891111)
(0.0424046037427 -0.00794430444665 0.0978640595231)
(0.0321475443215 -0.00807706350555 0.10505883511)
(0.0204513789621 -0.00790362497891 0.110205762311)
(0.00710560612324 -0.00688623809759 0.112818763513)
(0.00335278263116 -0.00885872732045 -0.013699299817)
(0.0104078614126 -0.00883814142994 -0.0124987507595)
(0.0171760734075 -0.00881762232484 -0.0110830529343)
(0.0239029180404 -0.00887168449068 -0.00901239637338)
(0.0305833169268 -0.00897989534715 -0.00613852686358)
(0.0370509830573 -0.00915247489798 -0.00238001365702)
(0.043414942228 -0.00971002515726 0.00239365548949)
(0.0497471314029 -0.0105689662774 0.00846667831277)
(0.0556805978556 -0.0114995127827 0.0158873593537)
(0.0606459684029 -0.0123831851425 0.0246729077389)
(0.0640115301056 -0.0133659021947 0.0347290270057)
(0.0653938765457 -0.0144802611017 0.0455964291398)
(0.0648789195411 -0.015975996341 0.0568481758552)
(0.0619429560726 -0.0170514913687 0.0680823990644)
(0.0569523665563 -0.018952137728 0.0787795865086)
(0.050428294345 -0.020334687739 0.0886991330775)
(0.0418273647459 -0.0213067780808 0.0973744567907)
(0.0314777297743 -0.0218234812382 0.104513536829)
(0.0197597006514 -0.0216220624209 0.109431737293)
(0.00682125655439 -0.0202607195652 0.111812606084)
(0.00328237000293 -0.0137104382862 -0.0168805064081)
(0.0103585633669 -0.0136460947317 -0.0155364288283)
(0.0171522901006 -0.0135718686956 -0.0138925318862)
(0.0238816163536 -0.0135747590844 -0.0115930257209)
(0.0304947451225 -0.0136312467091 -0.0084556405345)
(0.0366918108739 -0.0137392639579 -0.00434280222571)
(0.0426275531754 -0.0145236091969 0.000761470242456)
(0.0487598371725 -0.0161714977573 0.00724045591803)
(0.0546910995763 -0.017715379859 0.0148202018556)
(0.0595667366389 -0.0191817372103 0.0237113412615)
(0.0628480706788 -0.0207338720293 0.0337439431431)
(0.0639356495699 -0.0224765900569 0.0445095052698)
(0.0634822423306 -0.025244143151 0.0555718725068)
(0.0604965873259 -0.0269492738189 0.0666041992765)
(0.0554671853265 -0.0305951929183 0.07698826045)
(0.0493876911083 -0.0328662284075 0.0866190564896)
(0.0409512958572 -0.0346221801802 0.0949980182999)
(0.0307131059896 -0.0354978167811 0.101587016028)
(0.0191250429071 -0.0355670960986 0.106422391504)
(0.00649623681774 -0.0346721797474 0.108655086677)
(0.00321670190167 -0.0168735180087 -0.0210808694631)
(0.010281653174 -0.0168660559529 -0.0195845069804)
(0.0170853260411 -0.0168669243945 -0.0177856821128)
(0.0237893992163 -0.0169525538314 -0.0152286361481)
(0.0303897168155 -0.0171634882756 -0.0117408427778)
(0.0362979351422 -0.0174702094177 -0.00715670351877)
(0.0414300537686 -0.0188386708631 -0.00164175529642)
(0.0472433731912 -0.0221419141596 0.00533169520135)
(0.053330214611 -0.0243804183741 0.0130737133252)
(0.058128310185 -0.0264928009208 0.0220932673192)
(0.0611926221199 -0.028643147011 0.0321299964654)
(0.0614891355178 -0.0305212058386 0.0427514830084)
(0.0610914000549 -0.0348154359691 0.0533834939791)
(0.0579089543904 -0.0372928198709 0.0638928079378)
(0.0529666554428 -0.0427987640931 0.073617695569)
(0.0478297032486 -0.0455306791495 0.0829032953552)
(0.0397630721121 -0.0478805364361 0.0907415508718)
(0.0299554665711 -0.0491524951313 0.0969414991132)
(0.0187016799255 -0.0494504955131 0.101379205366)
(0.00632867232451 -0.0486368393893 0.103454090919)
(0.00307949690961 -0.0181809796917 -0.0256668084067)
(0.0101008111224 -0.0183232299206 -0.024126422956)
(0.0168999238943 -0.0184890679085 -0.022207441031)
(0.0235088855657 -0.0186785913223 -0.0194043749099)
(0.0299820063016 -0.0188826366779 -0.0155398355572)
(0.0352894959137 -0.0187469774057 -0.0103960893474)
(0.0388156715464 -0.0191249265043 -0.00450607383)
(0.044514549992 -0.0244786767951 0.00323728813575)
(0.0512704693419 -0.0266048577197 0.0109714228783)
(0.0559131671382 -0.0292168622091 0.0200758914775)
(0.0592376672822 -0.0323063317368 0.0299899398374)
(0.0582811474914 -0.0337922000181 0.0403204330341)
(0.0573450121658 -0.0397811783188 0.0504266888565)
(0.0539288976385 -0.0456084056719 0.0596043688808)
(0.0497301622287 -0.0536774849864 0.0684437828958)
(0.0462085948686 -0.0569890806363 0.0771487703278)
(0.0381989475242 -0.0602490850181 0.0844795690736)
(0.0289112085342 -0.0619482175348 0.0901738533276)
(0.0181178242929 -0.0624359106184 0.0942041430506)
(0.0060817237095 -0.0616540597007 0.0961235672466)
(0.0028855638935 -0.0175352988351 -0.0301162195083)
(0.00975449347145 -0.0178649524222 -0.0285611372416)
(0.0165663465816 -0.0183908102012 -0.0266136792886)
(0.023257904309 -0.0190686926623 -0.0236278078763)
(0.0301819619671 -0.0200318606711 -0.0194390900071)
(0.0360055586631 -0.0214006947925 -0.0136076717858)
(0.0367162221903 -0.0225402130979 -0.00743438454765)
(0.0426831764556 -0.0354119042061 0.00108578500719)
(0.0505085466082 -0.0376084427004 0.00890477937651)
(0.0532648923534 -0.0420236020147 0.0181081343269)
(0.0565611847743 -0.0471055908469 0.0278654378)
(0.0532858920945 -0.0456382277728 0.0381078896108)
(0.0492882900875 -0.0483347743507 0.0475752440213)
(0.0450144281576 -0.0614001389411 0.054189794569)
(0.0439340331445 -0.0679832869085 0.0614017945967)
(0.0434169175459 -0.0690322196659 0.0691662652216)
(0.0355277871037 -0.0723185557408 0.0759266887739)
(0.0273237641213 -0.073774467525 0.0811726201087)
(0.0172264325627 -0.0741313167094 0.0848256985812)
(0.00575531098868 -0.0731290750558 0.0866277968786)
(0.00259557481301 -0.0148448791006 -0.0337827298726)
(0.00910355231045 -0.0153810209515 -0.0323139867508)
(0.0155748560186 -0.0162180282333 -0.0303925054292)
(0.0217004279858 -0.0171170411753 -0.0273045568119)
(0.027508876495 -0.0179331765532 -0.0227014787488)
(0.0335578580505 -0.0185641704025 -0.0157737574452)
(0.0242155760168 -0.0137807725355 -0.0102166274746)
(0.025395702647 -0.0459429678725 -0.000744858107938)
(0.046824403666 -0.0453913156844 0.00507066986219)
(0.0472847296533 -0.0478942278382 0.0152384624965)
(0.054986231749 -0.0509684299346 0.0245025464472)
(0.05071937169 -0.0480289125083 0.0346873669073)
(0.0440047620417 -0.0491589186744 0.0434657295736)
(0.0324921062848 -0.0893321796095 0.0461889739979)
(0.0415675770444 -0.0755447024713 0.051089603469)
(0.0429745908968 -0.078286559333 0.0584148071398)
(0.0335424032705 -0.0815548306514 0.0647546871198)
(0.0260861106399 -0.0832409730122 0.0698049159359)
(0.0163646097137 -0.0836915107123 0.0733836935385)
(0.00537384113319 -0.0826186851108 0.0753358959307)
(0.00221045853191 -0.0103081764621 -0.0360220837244)
(0.00830728597064 -0.0110821000015 -0.0347343269741)
(0.0147443777618 -0.0122838265781 -0.0330735097201)
(0.0213160785123 -0.0135891270301 -0.0302562436292)
(0.0284739452985 -0.0146144532825 -0.0255267394513)
(0.0434759932745 -0.0140081785221 -0.0187845207249)
(0.00358964489983 -0.0146233389792 -0.0114898314729)
(0.0121682671805 -0.0933392537268 0.0276899665885)
(0.0477708160866 -0.0847900283172 0.0349254520225)
(0.0383179397933 -0.0867345874213 0.0454761594464)
(0.0297484626235 -0.0893348634866 0.0519029678627)
(0.0233593746836 -0.0908937402545 0.056786165273)
(0.0147688034546 -0.0911820030126 0.0603941829462)
(0.00477654686499 -0.089974189474 0.0625716115683)
(0.00172644758664 -0.00447346040907 -0.0362921446224)
(0.0071545155847 -0.00550072710423 -0.0351634420456)
(0.0131756670315 -0.00733615457805 -0.0337694918385)
(0.0194140154432 -0.00970614083825 -0.0312505280969)
(0.027243176812 -0.0121868898839 -0.026520765593)
(0.0415785482661 -0.0132688809203 -0.019315701405)
(0.00673773959415 -0.0162378793079 -0.0119182975238)
(0.00746237859624 -0.0942205815804 0.013668472075)
(0.0472307915635 -0.0899416563863 0.0194758409816)
(0.0362830316815 -0.0930274796147 0.0307618102877)
(0.0283315294164 -0.0951917366946 0.0372079690189)
(0.0219131870571 -0.0963633092008 0.0422757169594)
(0.0137335105533 -0.0963755497848 0.0461308183616)
(0.00434669472371 -0.0950119395251 0.0487413338839)
(0.00112847204072 0.00214968460878 -0.0341911197972)
(0.00558136908558 0.000797581803335 -0.0333483231654)
(0.0108525685482 -0.00183878348157 -0.03240660965)
(0.0167539248179 -0.00566759181784 -0.0304482497755)
(0.0248268745798 -0.0105958846229 -0.0261390100717)
(0.0400880241619 -0.0164580951739 -0.0191614532857)
(0.00709890415741 -0.030409763707 -0.0110522512589)
(0.00624273080431 -0.0848356389396 0.000802784027626)
(0.0434257257558 -0.0873297149087 0.00549456332162)
(0.0325139589341 -0.0932706868251 0.0158909578088)
(0.0256058572061 -0.0964381428049 0.0219854569677)
(0.0198191165465 -0.0982272583978 0.0269976649035)
(0.0124200266633 -0.0985446754314 0.0310436092004)
(0.00388070632119 -0.0973430434667 0.0339848242358)
(0.000356269319251 0.00905463570263 -0.0296706082414)
(0.00335616846843 0.00754675706635 -0.0291453217462)
(0.00713860404397 0.00450544812433 -0.0289177570984)
(0.0112026229075 -5.29761280311e-05 -0.0279787907753)
(0.0176026659718 -0.00665394475336 -0.0251058039508)
(0.0281279634588 -0.015998661763 -0.0205026675654)
(-0.000715461493496 -0.0376132318064 -0.0172605470422)
(-0.000195720484781 -0.0757527964847 -0.0127611283328)
(0.0389002586352 -0.0832527816374 -0.00805563023861)
(0.0271937683436 -0.0904966387782 0.000898478260353)
(0.0221187366975 -0.0945974479405 0.00658284817809)
(0.0171715859501 -0.0970290441132 0.0114403913502)
(0.0108013742256 -0.0977759436795 0.0155547021634)
(0.0033402526198 -0.0968172203648 0.0187173266427)
(-0.000443170358447 0.0154753109167 -0.022679444881)
(0.00113281092778 0.0137270432806 -0.0224418146525)
(0.00360420332332 0.0101667079915 -0.0228853024146)
(0.00611601027313 0.0047959065299 -0.0230708734373)
(0.00991367816691 -0.00244645656836 -0.0222986966483)
(0.00855851165667 -0.0130983961625 -0.0210311191471)
(0.00271859782547 -0.0366116051605 -0.0196360197773)
(0.000141127216011 -0.0423655706879 -0.020701837752)
(-0.0189041147156 -0.0466029200302 -0.0281502378773)
(-0.00957540587918 -0.0493035290754 -0.0339314881391)
(-0.00590260022769 -0.0504917669881 -0.0367123069554)
(0.000652744598379 -0.0512474449579 -0.0375157519085)
(0.00862297501934 -0.0564438144356 -0.0365175248984)
(0.019693749444 -0.0604588355861 -0.0276083589244)
(0.0218894852482 -0.078612132456 -0.0210070417941)
(0.0204397161477 -0.085926255982 -0.0135755882544)
(0.0173833489644 -0.0903707598869 -0.00840961635276)
(0.0138327588888 -0.0930542305933 -0.00372676584417)
(0.00884118196336 -0.0940526645519 0.00030344400857)
(0.00265776266382 -0.0934214226783 0.00356380134696)
(-0.00159398161618 0.0209969222078 -0.0136230183711)
(-0.00226805826807 0.0191189758637 -0.0137060513385)
(-0.0023057783265 0.0153338063203 -0.0150222665644)
(-0.00232627508465 0.00976120708967 -0.0167427489162)
(-0.00104440317568 0.00279599250961 -0.0182545158587)
(-0.00245359945059 -0.006916108725 -0.019419275973)
(-0.00334299451314 -0.017998290548 -0.0209666764593)
(-0.0120978038834 -0.0299553072058 -0.0252370942772)
(-0.0156469653459 -0.0324885485986 -0.0307456084727)
(-0.0122713225399 -0.038099923037 -0.0354425928296)
(-0.00787772928995 -0.0417133343597 -0.0386540218549)
(-0.000736265989759 -0.0453547550632 -0.0401400859607)
(0.00924709822549 -0.0505152288323 -0.0397006893006)
(0.0154637389903 -0.0629713689719 -0.0347658279721)
(0.0156098577305 -0.0719351099485 -0.0304985179411)
(0.0150158082096 -0.0789368946371 -0.0258750430801)
(0.0131447612137 -0.0835465047463 -0.0218009104286)
(0.0107567121032 -0.0863780645289 -0.0177128340113)
(0.00689745247037 -0.0876371869622 -0.0139010280453)
(0.00199384090679 -0.0873240811783 -0.0108085039269)
(-0.00268316447687 0.0252614502078 -0.00295678220129)
(-0.00535736143032 0.0235660122829 -0.00320859909121)
(-0.00736488175218 0.0201623254554 -0.00516679771402)
(-0.00902179886112 0.0153111629016 -0.00802517371771)
(-0.00965406859607 0.00946480509506 -0.011172394011)
(-0.0113624365869 0.00179191404828 -0.01438827171)
(-0.0124111507659 -0.00609511916012 -0.0181366769523)
(-0.0160300178718 -0.0150078797217 -0.0233882022184)
(-0.0190019233048 -0.0196317901993 -0.0293587765007)
(-0.0173346998254 -0.025022503584 -0.0346541585988)
(-0.014027220699 -0.0302121127875 -0.0387604977217)
(-0.00863020285133 -0.036108978145 -0.0414953281827)
(-0.00118624100627 -0.0434799549618 -0.0426664793932)
(0.00405200181944 -0.0539291673642 -0.0408282731574)
(0.00640940648711 -0.0624915232552 -0.0390418842294)
(0.0080626243804 -0.0695943048079 -0.0364135127201)
(0.00820824652094 -0.0743720123977 -0.0333342887058)
(0.00732809502816 -0.0774472577039 -0.0298689583049)
(0.00488947797968 -0.0790849774584 -0.0266131057427)
(0.00123460657758 -0.079081917652 -0.023903325908)
(-0.00366825708943 0.0276434183846 0.00857672207209)
(-0.00828888183391 0.0260712705373 0.00818268516041)
(-0.0123049303288 0.0229545328695 0.00571183516032)
(-0.0158203167252 0.0184568067257 0.00173295049664)
(-0.0182811950403 0.0128427700889 -0.00305421909695)
(-0.0206492439697 0.00581758357245 -0.00837663354243)
(-0.0220668829729 -0.00137687415151 -0.0143758187572)
(-0.0240936498345 -0.00970635199496 -0.020972365348)
(-0.0252514352661 -0.0152746242523 -0.0279908433335)
(-0.0232417364623 -0.0210325367865 -0.0342981260478)
(-0.0196939617027 -0.0266289939134 -0.039465698333)
(-0.0147943789532 -0.0326059084716 -0.0433204716909)
(-0.00887646722363 -0.0393398290307 -0.0457596283058)
(-0.00382660378681 -0.0474276394985 -0.0463035744613)
(-0.000265651236403 -0.0540853207245 -0.0461626920119)
(0.00244904785268 -0.0598640983673 -0.0448758832432)
(0.00384917247292 -0.0641400788814 -0.042757569994)
(0.0040974146313 -0.0671069749641 -0.0400945422877)
(0.00296034018302 -0.0689552773113 -0.0375987433183)
(0.000380853023258 -0.069225615369 -0.0353259108664)
(-0.00448259033098 0.0277655992041 0.020142720144)
(-0.0106777964546 0.0263136736557 0.0195716941385)
(-0.0164474019423 0.0235826708303 0.0166113811338)
(-0.0215980022945 0.0196997254271 0.0117197899277)
(-0.0254328050433 0.0148877328312 0.0054873720018)
(-0.0284205966113 0.00915333086283 -0.00160668072062)
(-0.0302024005167 0.00322616018044 -0.00944336179354)
(-0.0314189810166 -0.0035766168751 -0.0176259165377)
(-0.0314424716238 -0.00902029126117 -0.0257781560072)
(-0.0292009943936 -0.0145559907432 -0.0332142865124)
(-0.0255666128828 -0.0201479143082 -0.0395300394776)
(-0.0208420738025 -0.0259806212615 -0.0446729510723)
(-0.0153712773697 -0.0321570660458 -0.0484323375702)
(-0.0102506680193 -0.038728132535 -0.0505815586566)
(-0.00592624011672 -0.0443922810479 -0.051637963394)
(-0.00239799872424 -0.0492776425244 -0.0514194026707)
(-1.96811782014e-05 -0.0530937432658 -0.0502081109781)
(0.00117715826164 -0.0559236810216 -0.0484538083834)
(0.0010224953554 -0.057796427201 -0.0468393837008)
(-0.000302141216883 -0.0580854316991 -0.0450644849319)
(-0.00510485521675 0.0254859531501 0.0309539525417)
(-0.012495150106 0.0240837961831 0.0300393519034)
(-0.0195807592255 0.0216859377534 0.0266260950959)
(-0.026082242144 0.018509630368 0.0209684497447)
(-0.0311101568511 0.0145460667451 0.0135697481383)
(-0.0347476239891 0.00992386451719 0.00499149776292)
(-0.0368491443103 0.00504066372817 -0.00432629968064)
(-0.0376270758429 -0.000328389963697 -0.0138809937668)
(-0.0369410997553 -0.0051129627184 -0.0231732103342)
(-0.034443926639 -0.00992154581234 -0.0316722321651)
(-0.0306123888079 -0.0148274158026 -0.0391647311953)
(-0.0258268780223 -0.0198002768747 -0.0454182925293)
(-0.0204609828086 -0.0248986205785 -0.0502896134073)
(-0.0151298196377 -0.0300465480167 -0.0536150771998)
(-0.0103022693893 -0.0345975330424 -0.055603602346)
(-0.00623139499645 -0.0385254389166 -0.0562825414033)
(-0.00325173217218 -0.0417623334346 -0.055982033651)
(-0.00133960269644 -0.0442744114913 -0.0551702581051)
(-0.0005407822817 -0.0459080597244 -0.0542722805871)
(-0.000821272828331 -0.0460616558133 -0.0527417251543)
(-0.00548062450447 0.0209124262954 0.0401424392859)
(-0.0137268945453 0.0195230316097 0.0389128617554)
(-0.0216185940182 0.0175113059214 0.0349541505886)
(-0.0289883222827 0.0150960104705 0.0286462628794)
(-0.0348457079612 0.0121999589188 0.0203782868586)
(-0.0390193491876 0.00881599961807 0.010751514517)
(-0.0413688729979 0.00520120662522 0.000337935545525)
(-0.0419909392612 0.00129889977407 -0.0102492368112)
(-0.0409545655695 -0.00239521493491 -0.0204534874532)
(-0.0383186782037 -0.00610815137598 -0.0298523917921)
(-0.0344022028216 -0.00989834722772 -0.0383023542946)
(-0.0295225279029 -0.0137531097241 -0.0455996573634)
(-0.0241016102592 -0.0175623368801 -0.051331984123)
(-0.0186262300354 -0.0213568384182 -0.0555543289925)
(-0.0134870345464 -0.0247563780561 -0.0583180960376)
(-0.0090902096771 -0.0277345223895 -0.0598228822122)
(-0.00571224443679 -0.030170588771 -0.0603209050885)
(-0.00319965870396 -0.0320565634584 -0.0602414166966)
(-0.00166155408639 -0.0332609095832 -0.0598818112846)
(-0.0011549340027 -0.0333373773339 -0.0586880200986)
(-0.00546508396086 0.0144358042951 0.0469977355425)
(-0.0141186619709 0.0130177472337 0.0454858104341)
(-0.0225397357731 0.011447432818 0.0410850039141)
(-0.0303834661859 0.00989895955904 0.0342238941397)
(-0.0366908647336 0.00813288783772 0.0253708381654)
(-0.0411982579988 0.00606443378783 0.0150816564186)
(-0.0437103536328 0.00381019718608 0.00400606554615)
(-0.0442962618553 0.00138556221182 -0.00722424662312)
(-0.0431363433189 -0.000977339177317 -0.0180359340851)
(-0.040470983235 -0.00340350206016 -0.0280807820642)
(-0.0365619928065 -0.00585131229936 -0.0372016767577)
(-0.0316518698515 -0.00832301571051 -0.0452652366623)
(-0.0262250433584 -0.0106966991646 -0.0516081605892)
(-0.0206817499113 -0.0130623820557 -0.0565394901531)
(-0.0154189060333 -0.0152005834623 -0.0599177578367)
(-0.0108005226553 -0.0170613945716 -0.0620574908556)
(-0.00712066343686 -0.0185630856734 -0.0630642304586)
(-0.0042927424511 -0.0197074371244 -0.0634759267145)
(-0.00236659297455 -0.0204356072904 -0.0635539603781)
(-0.00135983442559 -0.0203130806147 -0.0627863532883)
(-0.00459427754117 0.00543171387877 0.0514436446516)
(-0.0131436638232 0.00469273231855 0.0491967777331)
(-0.0221384219718 0.00395292953727 0.0442161319106)
(-0.0301370682571 0.00337588834406 0.0369857446007)
(-0.0365645404405 0.00272749683135 0.0278501697885)
(-0.0411189508232 0.00197397246826 0.017328613743)
(-0.0436460705753 0.00113714908741 0.00602785994801)
(-0.0441892612108 0.000237907552768 -0.00537013992081)
(-0.0429660621489 -0.000658414965 -0.0163675378527)
(-0.0402787969833 -0.00151350881305 -0.0266431767133)
(-0.0363849502702 -0.00237340415324 -0.0360248007742)
(-0.0315191361211 -0.00328242262398 -0.0443054980368)
(-0.0260907209357 -0.00424414444682 -0.05102343591)
(-0.0205410202659 -0.00510944183314 -0.0562348949546)
(-0.0152938393349 -0.00589966853969 -0.0598236216386)
(-0.010683101366 -0.00655107908356 -0.0622130393424)
(-0.00704762150843 -0.00707979982654 -0.0635147065727)
(-0.00416945069269 -0.00745870026581 -0.0642516441567)
(-0.00194761668409 -0.00765142221452 -0.0647010822891)
(-0.00106997736256 -0.00692717208771 -0.0645432621953)
(0.00367857121875 -0.0037858718571 -0.0125648707316)
(0.0112282358383 -0.00373524211453 -0.0115972147522)
(0.0184652937688 -0.00370840619938 -0.010385614397)
(0.0258077480052 -0.00373608772282 -0.00848171407739)
(0.0331499450699 -0.00380472120221 -0.00570910772519)
(0.0404228097168 -0.00390074686349 -0.0020002295429)
(0.0477662230587 -0.00416189268929 0.00289164918824)
(0.0551185372659 -0.00447641854121 0.00927534184232)
(0.0620608879927 -0.00483518395179 0.017368783272)
(0.0679871399387 -0.0052074001869 0.0274136776012)
(0.072178106908 -0.00559282388449 0.0391144618195)
(0.0741270664443 -0.00608724166307 0.0520266059013)
(0.073626747216 -0.00667088452856 0.0655108126194)
(0.070550125749 -0.00714967939003 0.0789307293602)
(0.0652122518325 -0.0078802815414 0.0917810998303)
(0.0578406582831 -0.00841967034308 0.103763313215)
(0.0482541662077 -0.00872892586527 0.114331479182)
(0.0366283854294 -0.00880611515597 0.122903180654)
(0.023314934744 -0.00858515493843 0.129006575362)
(0.00809747155353 -0.00745279559149 0.13209866458)
(0.00357683073349 -0.0107269620762 -0.014505783991)
(0.0111293595046 -0.0105577623532 -0.0133417052829)
(0.0183744279872 -0.0103916163062 -0.0119046263935)
(0.0256579747596 -0.0102833479163 -0.00973123710073)
(0.0329282028608 -0.0102269827234 -0.00669419558095)
(0.0400187856099 -0.0102433724528 -0.00270044376181)
(0.0471666637079 -0.0107176250628 0.00239666731922)
(0.0544397636237 -0.0114670535354 0.00901758241877)
(0.0613767960526 -0.0124061047298 0.0172989990196)
(0.0673186349018 -0.0133447016388 0.0274036820242)
(0.0714552450087 -0.0144441026891 0.0391645453451)
(0.0732987587377 -0.015725578846 0.0519837163075)
(0.0729504744911 -0.0174602335511 0.0653129713425)
(0.0698742637878 -0.0187529575491 0.0786145025472)
(0.0645179556224 -0.0208812070099 0.0913235453785)
(0.0573525821184 -0.0223760900635 0.103217624775)
(0.0477781805709 -0.0233604144187 0.11368483)
(0.0359445269695 -0.023787814971 0.122237979076)
(0.0225434766216 -0.0234523348106 0.128264903949)
(0.00782719601302 -0.0218029263167 0.131108411499)
(0.00357226903727 -0.0164846086311 -0.0187870060559)
(0.0112441737045 -0.0162561620546 -0.0173450370031)
(0.0185788618813 -0.0159605663074 -0.0155606009415)
(0.0258791950671 -0.0157226012888 -0.0130151161159)
(0.03308398788 -0.0155489281878 -0.00957599774607)
(0.0398830600605 -0.015412258902 -0.00511203321776)
(0.0465749154688 -0.0160359029013 0.000408539623517)
(0.0535616213719 -0.0174660333943 0.00750029433125)
(0.0603786755788 -0.0190238348776 0.0159913914242)
(0.0661609681194 -0.0205530592469 0.0261933946112)
(0.0701377050789 -0.0222314674256 0.0378970968503)
(0.0716356477078 -0.0241974561178 0.0505477826881)
(0.0713273289261 -0.0273263452592 0.0635914543734)
(0.0682298767991 -0.0295121564595 0.0766469009985)
(0.0628957979171 -0.0335366888677 0.089072712713)
(0.0562340272274 -0.0361027956828 0.100714471942)
(0.046801003912 -0.0379659166454 0.110829034943)
(0.0352112185733 -0.0388744095137 0.119106872358)
(0.022016001999 -0.0386798056041 0.124941160171)
(0.00751914098886 -0.0375824442201 0.127712825119)
(0.00356992348876 -0.0201496523171 -0.0243192591543)
(0.0113231805931 -0.0199738205398 -0.0225980510996)
(0.0187489912589 -0.0197564448104 -0.0205015934908)
(0.0260489034995 -0.0195969084377 -0.0175642859018)
(0.0332648773319 -0.0195528450881 -0.0136375053435)
(0.0397576620753 -0.0195526801704 -0.00856564467965)
(0.0456261526515 -0.020711284186 -0.00249629052244)
(0.0521860312737 -0.0236171444443 0.00521877348757)
(0.0590071891287 -0.0259080052989 0.0139166002306)
(0.0646444845386 -0.0280768327618 0.0242515685701)
(0.0683214583309 -0.0303880851511 0.0358871139188)
(0.06889371198 -0.0325505987216 0.0483028462591)
(0.0684923496349 -0.0373783631751 0.0608735732711)
(0.0652320745202 -0.0407453268769 0.0733041428522)
(0.0601563653345 -0.0468384526509 0.0850843696851)
(0.0545290411071 -0.0500007290661 0.096272929991)
(0.0455917981874 -0.0525969839386 0.105971142547)
(0.0344928863539 -0.053919568598 0.113751575735)
(0.0216376446772 -0.0540955492545 0.119353528681)
(0.00736241328979 -0.0530807731309 0.122062938603)
(0.00350878386319 -0.0215627170294 -0.030302628841)
(0.0113288131801 -0.0215380667007 -0.0283871484077)
(0.0187705157891 -0.0215361808958 -0.0260784356673)
(0.026002859892 -0.0215185534844 -0.0227884638001)
(0.0331556287555 -0.0214656764457 -0.0183725679474)
(0.0390386157573 -0.0209476356542 -0.0126270552195)
(0.0433979174686 -0.0210440291065 -0.00600825836137)
(0.0497587446128 -0.025997918653 0.00267911979089)
(0.056958957174 -0.0282754219254 0.0115102506255)
(0.0623131327735 -0.0309211527957 0.0219438983616)
(0.0660888777907 -0.0341820811559 0.0334212248283)
(0.0652276327163 -0.0359035681139 0.0453810686765)
(0.06393207311 -0.0424749977067 0.057384454691)
(0.0605240166764 -0.0500757817207 0.0682894462213)
(0.0566071073548 -0.0585506129182 0.0790962037788)
(0.052627086736 -0.0626683805817 0.0896650207176)
(0.0438201292081 -0.0663332698912 0.0987635775931)
(0.0333675584181 -0.0682218078249 0.106021704711)
(0.0210654888344 -0.0686943252105 0.111132807796)
(0.00712852468179 -0.0677208275344 0.113740217537)
(0.00336046230226 -0.0205516004869 -0.0360595943801)
(0.011084422406 -0.0208062625419 -0.0340614293035)
(0.0185641990742 -0.021245938631 -0.0316725851462)
(0.0259344522901 -0.0217617881692 -0.0281374580402)
(0.0336806815923 -0.0224500768382 -0.0233218488615)
(0.0400564881281 -0.0232615265212 -0.0167711093373)
(0.0414530275946 -0.0235772617728 -0.00961671598573)
(0.0480185356661 -0.0358054777759 8.93581273891e-05)
(0.0561785336671 -0.0389711582466 0.00900428322432)
(0.0595518247197 -0.0433143691202 0.0196237737478)
(0.0631535145776 -0.0487648067799 0.0310059492102)
(0.0598504521772 -0.0474843880917 0.0426790148678)
(0.0546708360654 -0.0507507177975 0.0539723945595)
(0.0504264792131 -0.0672396382408 0.0619820475476)
(0.050317783573 -0.0739472206785 0.0711239399808)
(0.0493968040415 -0.0759840653266 0.0805761546081)
(0.0408125072596 -0.0797268248989 0.0889377315751)
(0.0315472018517 -0.0814325301118 0.0955226197393)
(0.020034542266 -0.0818584595079 0.100173435575)
(0.00674640384766 -0.0806754395368 0.102597361129)
(0.00304055078915 -0.0170466483235 -0.0408540724853)
(0.0104233017059 -0.0176419830422 -0.0389080933926)
(0.0176101588669 -0.0185258695887 -0.0365651713613)
(0.024498554949 -0.0194177683149 -0.032916074338)
(0.0313438544128 -0.0200748272318 -0.0276848761384)
(0.0379921495576 -0.0204308773951 -0.0200729189297)
(0.0287428868468 -0.0129631350509 -0.0128991339853)
(0.0298183360346 -0.0470013384409 -0.00161495598577)
(0.0513612641251 -0.0464321772602 0.00508166459453)
(0.0529757659864 -0.0487758594729 0.0165932117982)
(0.0608215054632 -0.0520775861057 0.0273392288524)
(0.0562625207504 -0.0491130012902 0.039146907166)
(0.0462083882001 -0.0503987687031 0.048623732228)
(0.0358142980706 -0.0994729320551 0.0531102195368)
(0.0473033357156 -0.0829265755147 0.0594092907197)
(0.048243933638 -0.0863528551005 0.0683551576855)
(0.0384032734348 -0.0900698443465 0.0761555785221)
(0.0299942612384 -0.0920575095505 0.082350964095)
(0.0189864457479 -0.0925731961375 0.0867691864313)
(0.0062832615649 -0.0913451874914 0.0891930816539)
(0.0025695368054 -0.0112791563083 -0.0438518640371)
(0.00945021155104 -0.012167399434 -0.0421745248628)
(0.0165650790733 -0.0135323677611 -0.040148961069)
(0.0239179624701 -0.014986171799 -0.036872605207)
(0.031873431515 -0.0159772330619 -0.0316304482369)
(0.0496679998307 -0.0153798036883 -0.02460352297)
(0.00413661368796 -0.014386212805 -0.017225163889)
(0.0131707662901 -0.103797359636 0.034372321921)
(0.0555166343931 -0.0943946487013 0.0423655932565)
(0.0434898599459 -0.0960466406939 0.0538736844659)
(0.0342047089396 -0.0989755244642 0.0614275850465)
(0.0268988147824 -0.100689584903 0.0672862043043)
(0.0171377715334 -0.100993917749 0.071684177403)
(0.00556122747404 -0.099623757499 0.0744180040428)
(0.00200670783988 -0.00383468014276 -0.0444016618448)
(0.00813600817775 -0.00503535093031 -0.0429296196)
(0.0148068086311 -0.00713206628376 -0.041270102594)
(0.0219085867053 -0.00978850397548 -0.0383678994491)
(0.03066940093 -0.0124565278849 -0.0331652206346)
(0.0483322083542 -0.0134474405691 -0.0257460080064)
(0.00702670577713 -0.015948992811 -0.0176217609634)
(0.007880650273 -0.104825075284 0.0183297624282)
(0.0553998761108 -0.0997224507013 0.025212134446)
(0.0413074900626 -0.103185091851 0.0371400507418)
(0.0326997066219 -0.105687549611 0.0445599575228)
(0.0253358131177 -0.106965527413 0.0505575758219)
(0.0159963669248 -0.106948153516 0.0552054739517)
(0.00508224265534 -0.105423291561 0.0583671114805)
(0.00128210402771 0.00457347767964 -0.0419589181288)
(0.00629673592911 0.00299064624884 -0.040839364503)
(0.0121435715004 -8.24885788264e-05 -0.0397581258762)
(0.0188818504084 -0.00449136468765 -0.0375042524645)
(0.0279173190578 -0.0101384832457 -0.0328342380756)
(0.0464724758381 -0.0168091460826 -0.0257772976305)
(0.00717791475393 -0.0324825169915 -0.0182454522603)
(0.00659201410605 -0.093133055967 0.00369780594037)
(0.0508322357618 -0.0968568245801 0.00870583820568)
(0.0371104093077 -0.103598354977 0.0197901638369)
(0.0296837655646 -0.107273485254 0.0267978967282)
(0.023056303024 -0.109245528546 0.0327388739888)
(0.0145783882787 -0.109599673337 0.0375784447897)
(0.00457065388879 -0.108322751338 0.0411014165922)
(0.000381369886967 0.0133121237414 -0.0364049864397)
(0.00371203082544 0.0115460388851 -0.035706458263)
(0.00784475949429 0.0079685024758 -0.0354651615759)
(0.0124964693989 0.00263887537317 -0.0343702974704)
(0.019603955298 -0.0051601630447 -0.0311908235998)
(0.0328708237037 -0.0162293245558 -0.0262810260898)
(-0.00178883461846 -0.0412825475333 -0.0211510392523)
(-0.000727477278364 -0.0832148457661 -0.012180516743)
(0.0456361886888 -0.093342265959 -0.00744097970968)
(0.0313035727403 -0.100844835422 0.0020728671998)
(0.0258509846181 -0.105420667432 0.00863708475038)
(0.0201967685301 -0.108057327669 0.0143795952219)
(0.0128321349876 -0.108910243604 0.019312083188)
(0.00395768370362 -0.107937249393 0.0230421626376)
(-0.000553713581457 0.0214098807848 -0.027674361311)
(0.00113054504317 0.0193461351742 -0.0273916681787)
(0.00372382474662 0.0151786511038 -0.0279159007424)
(0.00635284997109 0.00893278377184 -0.0281678676068)
(0.0100128672981 0.000411973415502 -0.0273729448695)
(0.00855102962537 -0.0119463384218 -0.0259784872859)
(0.00046417648211 -0.0397515374524 -0.0245416862972)
(-0.00360856748141 -0.0415668597691 -0.0257892411287)
(-0.0222225255489 -0.0472244196417 -0.0340780835887)
(-0.0121573166697 -0.0499106633549 -0.0405977744079)
(-0.00700759077252 -0.051233156939 -0.04370943751)
(0.000924700131295 -0.0522747810705 -0.0444880432162)
(0.0130036677511 -0.059400842938 -0.0427801617787)
(0.0244602834948 -0.0631309883624 -0.0311219407048)
(0.026269279656 -0.087161097083 -0.0236792534966)
(0.024296255447 -0.0954800312889 -0.0152591969727)
(0.0208194931666 -0.100540019384 -0.00916810098127)
(0.0166520634429 -0.103536245621 -0.00354909228808)
(0.0107356544307 -0.104746339641 0.00127878196265)
(0.003265716203 -0.104181912698 0.00506953867938)
(-0.00188587379863 0.0282680367835 -0.016370067531)
(-0.00279888587963 0.0260526144929 -0.0164618369066)
(-0.00306022686956 0.0216527296388 -0.0180569583552)
(-0.00326051057467 0.015264226395 -0.0201232206814)
(-0.00210158331144 0.00726764263184 -0.0219759323852)
(-0.00357611719804 -0.00343184887026 -0.0235243807583)
(-0.00573765455903 -0.0161363951428 -0.0253753346749)
(-0.0153717709866 -0.0283527770649 -0.0302554396794)
(-0.0186121854684 -0.0317562672637 -0.0367961209529)
(-0.014705668278 -0.0377524424085 -0.0422336492079)
(-0.00924143032932 -0.0419399681599 -0.0457760430392)
(-0.000857001604974 -0.0464264303843 -0.047212557302)
(0.0110892803808 -0.0525312375647 -0.0464402805123)
(0.0185083176606 -0.0677649064868 -0.0405449384311)
(0.018582220946 -0.078848473698 -0.0353261994535)
(0.0178671912358 -0.0871270601052 -0.0299234863736)
(0.0158680254362 -0.0925130343499 -0.0250439848816)
(0.0131389777265 -0.0958442937874 -0.0200993809127)
(0.00857456311646 -0.0974241575513 -0.01562584993)
(0.00250922231536 -0.097303183333 -0.0120276707194)
(-0.00316913223004 0.0334572457374 -0.00298852770668)
(-0.00641084179246 0.0314542498526 -0.00335671480448)
(-0.00893511932327 0.0275163887071 -0.00572742292054)
(-0.0110501962524 0.0219088863872 -0.00918245855777)
(-0.0120234449472 0.0151390877454 -0.0129700209272)
(-0.0140658420604 0.00639461695275 -0.0169121325421)
(-0.0157741319522 -0.00309632030669 -0.0214231072104)
(-0.0199365596966 -0.012456563642 -0.0276893526601)
(-0.0227289281508 -0.0180398932042 -0.0348661809694)
(-0.0204581950283 -0.0242140859555 -0.0411282548387)
(-0.0162668940956 -0.0302667503938 -0.0457558643441)
(-0.00981610367614 -0.0371922089347 -0.0487865094528)
(-0.000877717812535 -0.0458018101555 -0.0500131652623)
(0.00534164640669 -0.0583382286801 -0.0477343251587)
(0.00794316046991 -0.0683493126893 -0.0456050373848)
(0.00995010087902 -0.0765256880664 -0.0424101967454)
(0.0102466912797 -0.0820643179874 -0.0386507597511)
(0.00922786630893 -0.0856670684264 -0.0344567093858)
(0.00627772647113 -0.0877213270284 -0.0306536496431)
(0.00165119170769 -0.0879229486336 -0.0275002072442)
(-0.00433622283606 0.0362003243277 0.0114383773797)
(-0.00983785708898 0.0343769568413 0.0109034248083)
(-0.0147125164047 0.030722753839 0.00787999306611)
(-0.018982921279 0.0255194264404 0.0030776729498)
(-0.0220051746755 0.0190350741311 -0.00270978278798)
(-0.0248428546434 0.0109649581747 -0.00916474370639)
(-0.0266523685882 0.00251705395353 -0.0164345646877)
(-0.0289514487547 -0.00671547517925 -0.0244284118671)
(-0.0298906022902 -0.0131991559965 -0.0328574072462)
(-0.0272556221977 -0.0198620162804 -0.040343799109)
(-0.0228462267002 -0.0264306556909 -0.046269361226)
(-0.017003690819 -0.0334968956025 -0.0507564736114)
(-0.00992108671365 -0.0414135950787 -0.053587553785)
(-0.00397164242538 -0.0510857939517 -0.0542094156205)
(0.000207754104543 -0.0588402246061 -0.0539665282042)
(0.00349178226851 -0.065536922629 -0.0523469749357)
(0.00522269703407 -0.0705185541298 -0.049718429541)
(0.00550094141091 -0.0740384699037 -0.0464891098624)
(0.00401106275736 -0.0763121906631 -0.0435316146399)
(0.000699361223758 -0.0768070734089 -0.0410276533087)
(-0.00529340125814 0.0360817615682 0.0259780432914)
(-0.0127121323287 0.0343802887249 0.0251660925587)
(-0.0196378615012 0.0311535126893 0.0215169354169)
(-0.0257878070815 0.0266323190246 0.0155439599651)
(-0.0304085338987 0.0210269026276 0.00799026395291)
(-0.033958193887 0.0143841921603 -0.0006303493465)
(-0.0360870575563 0.00745021372818 -0.0101677721598)
(-0.0373424962059 -0.000296276400018 -0.0201286234354)
(-0.037040975365 -0.00661469918557 -0.0299626760854)
(-0.0341447344342 -0.0130290096599 -0.0387214664854)
(-0.0297185683331 -0.0196223080685 -0.0461535595677)
(-0.0240733898568 -0.0265092065177 -0.0522151156008)
(-0.0175354082398 -0.0337639589507 -0.056672813746)
(-0.0114352120399 -0.0415114936102 -0.059199743327)
(-0.00629830155752 -0.0480908885973 -0.060386508387)
(-0.00205551137741 -0.0537654928528 -0.0600160598556)
(0.000767668737139 -0.0582131002476 -0.0584703895991)
(0.00209687984387 -0.0615588118535 -0.0563425211364)
(0.00172117060196 -0.0638227142853 -0.0544372561279)
(-0.000109486524317 -0.0642331047512 -0.0524469704823)
(-0.00603555765262 0.0328984294713 0.0395899521658)
(-0.0148734366475 0.0312556876403 0.0383430702799)
(-0.0233638302423 0.0284515340537 0.0340367327783)
(-0.0311275046918 0.0247050523994 0.027096916872)
(-0.0371201326096 0.0200579324874 0.0180700761314)
(-0.0414200294663 0.0146640530826 0.0075963285028)
(-0.043806363578 0.00897898790114 -0.00375141493302)
(-0.0445271963838 0.00280603217656 -0.0153634596288)
(-0.0434081945959 -0.00274549477914 -0.0265189379265)
(-0.0402592555278 -0.00834617660942 -0.0365711755436)
(-0.0356419411655 -0.0141315027205 -0.0454550298593)
(-0.0299211592021 -0.020027340382 -0.0529890909925)
(-0.0234756934726 -0.0260016144149 -0.0588052823821)
(-0.0170917043686 -0.0320525393493 -0.062753354806)
(-0.0113250125582 -0.0373391788355 -0.0650371154214)
(-0.00647570751533 -0.0419223526303 -0.0657404430411)
(-0.00297867654733 -0.0456881848914 -0.0652700734968)
(-0.000838476565939 -0.0486444413774 -0.0642352383388)
(-6.87595308839e-05 -0.0505867855114 -0.0631482181079)
(-0.000672826218137 -0.0507754023484 -0.0613883614657)
(-0.00647447667421 0.0267887930702 0.0511064727191)
(-0.0163114229417 0.0252089595535 0.0494907037626)
(-0.0258086161267 0.0228652497896 0.0445764968277)
(-0.0346140620677 0.0200147024971 0.0367768131242)
(-0.0415710439414 0.0165879841261 0.0266325516725)
(-0.0464612903523 0.0126249818744 0.0147863960998)
(-0.0491083964951 0.00840813034716 0.00208783650871)
(-0.049608076708 0.00390114542224 -0.0107618365346)
(-0.0481023567629 -0.000382287919756 -0.0230028392784)
(-0.0448140406593 -0.00473399301125 -0.0341959711452)
(-0.0401464459326 -0.00920549931221 -0.0442959292308)
(-0.034299153807 -0.0137869181125 -0.0530557751735)
(-0.0277600811398 -0.0182382492501 -0.0600112251276)
(-0.021177760991 -0.0226894785813 -0.0650593200796)
(-0.0150380015189 -0.0266442248807 -0.0682819465669)
(-0.00981057366083 -0.0301261838611 -0.0699349366704)
(-0.00585378772994 -0.032941335393 -0.0704057039637)
(-0.00303853063193 -0.035153462647 -0.0702237301801)
(-0.00141079391441 -0.0365741637376 -0.0697482035662)
(-0.00108287707898 -0.0366502400232 -0.0682469660352)
(-0.00644227311593 0.0186277080832 0.0595416837697)
(-0.0167450651041 0.0168988189956 0.0577153452707)
(-0.0268961953822 0.0149829566362 0.0522666856703)
(-0.0363131609312 0.0131617621939 0.0438493207504)
(-0.0438125955164 0.0110498799803 0.0329416239476)
(-0.0490779650826 0.00859519793274 0.020290027048)
(-0.0518917469847 0.00595109673324 0.0067070393639)
(-0.0523484089115 0.0031467209627 -0.00691786274215)
(-0.0507287161443 0.000398264833024 -0.019911472918)
(-0.0474304559141 -0.00246091916906 -0.0319591407649)
(-0.0427905070955 -0.00537149799222 -0.0429651382444)
(-0.0368864392325 -0.00829837287051 -0.0526361480595)
(-0.0303149588223 -0.011102550401 -0.0604279405025)
(-0.0236613403948 -0.0138173071187 -0.0663185431955)
(-0.017347477054 -0.0163006086564 -0.070272430696)
(-0.0118402217532 -0.0185028359715 -0.0726747621556)
(-0.00751691888817 -0.0202098133086 -0.073767287766)
(-0.00432476335897 -0.0215483230928 -0.0740983582665)
(-0.00221367764805 -0.0224039416912 -0.0740160777718)
(-0.00130529535595 -0.0222724188844 -0.0729028727755)
(-0.00561718374974 0.00714608447862 0.065539185871)
(-0.0159181406279 0.0061926544143 0.0625649745945)
(-0.0266124234399 0.00523729004395 0.0563785111281)
(-0.0361365635844 0.00454037999895 0.0474905588305)
(-0.0437851749515 0.00376344880615 0.0361921435715)
(-0.0491255383304 0.00287221095593 0.0231917338523)
(-0.0519501678922 0.00188029373775 0.00928978874812)
(-0.0523446849294 0.000837606173551 -0.00461085363246)
(-0.0506768614654 -0.000199518306282 -0.0178691650443)
(-0.0473935531295 -0.00119058175167 -0.0302158138695)
(-0.0427573795477 -0.00221424139104 -0.0415862785351)
(-0.0368957259669 -0.00327099927962 -0.0516454876038)
(-0.0303199022643 -0.00436831143871 -0.0598685400138)
(-0.023610992736 -0.00543753369344 -0.0661303890247)
(-0.0172831168244 -0.00634057737112 -0.0703476921815)
(-0.0117807714197 -0.00710680913934 -0.0730522184443)
(-0.00744828308251 -0.00772511309553 -0.0744158305597)
(-0.00416916956767 -0.00818008541635 -0.0750976253464)
(-0.00177046925746 -0.00838357501422 -0.0754069153438)
(-0.000930186053491 -0.00765009941548 -0.0749736330104)
(0.00390846803054 -0.00459284727101 -0.0122346312458)
(0.0118752090024 -0.00451491271239 -0.0112708823256)
(0.0194888456367 -0.00441201617193 -0.0101795759366)
(0.0273869728907 -0.00432679219932 -0.00849987864184)
(0.035368856927 -0.00428427265307 -0.00584270566142)
(0.0433642993895 -0.00431922416073 -0.00215424760215)
(0.0516436190495 -0.00455563519606 0.00281867671272)
(0.0601610701292 -0.00485893280769 0.00954566699069)
(0.0684771136565 -0.0052485308704 0.0184967052657)
(0.0757569533707 -0.00569975263015 0.029917823213)
(0.0810233621832 -0.00613783653656 0.0436531232744)
(0.0836448780887 -0.00673657468695 0.0589367645855)
(0.0833582241448 -0.00744355051137 0.0749254348765)
(0.0800727675481 -0.00801713634052 0.0907626726976)
(0.0742429398122 -0.00883328798456 0.105945978316)
(0.0660608503153 -0.00938142110087 0.120044037316)
(0.0552319337457 -0.00963605237458 0.132572916429)
(0.0419292093373 -0.00963798953252 0.14272410309)
(0.0267136836667 -0.00926648401402 0.14985912473)
(0.00931929641007 -0.00800132706303 0.153361326211)
(0.00380118541533 -0.0131192559165 -0.0148438698709)
(0.0118189236587 -0.0128466208767 -0.0136906664712)
(0.0196211039262 -0.0124281525072 -0.0123412048267)
(0.0275116519289 -0.0120301255547 -0.0101781665534)
(0.0354000309861 -0.0117233084014 -0.00705296843498)
(0.043166349962 -0.0115298174236 -0.00293727254481)
(0.0511955774204 -0.0118851544786 0.00231595255745)
(0.0595883395943 -0.0125096110678 0.00931032717136)
(0.0677898484368 -0.0134600903533 0.0184094010801)
(0.0750038909197 -0.0145236292247 0.0299203270513)
(0.080136282622 -0.0157777056661 0.0435925425806)
(0.0825940655718 -0.0172761592511 0.0586637858366)
(0.0825029404558 -0.0193046792475 0.0743468049643)
(0.0792973225508 -0.0208714103306 0.0901007286656)
(0.0735368889158 -0.0232022313243 0.105223338881)
(0.0656412233716 -0.0247864981091 0.119333645044)
(0.0548047563948 -0.0257013931608 0.131877900048)
(0.0413443595448 -0.0258605566913 0.141970860115)
(0.0259921708989 -0.0253012337401 0.149204532151)
(0.00906463931046 -0.0233092889465 0.152625085023)
(0.00389130678389 -0.0201743430395 -0.0203341742809)
(0.0122170416558 -0.0196517860731 -0.0189605812334)
(0.0201638229555 -0.0190065526218 -0.0171154068507)
(0.0280597417245 -0.0184456982799 -0.0143181193993)
(0.0358617420846 -0.0179625328661 -0.0106021371514)
(0.043298906412 -0.0175120893352 -0.00587672500878)
(0.0508318398726 -0.0179059734492 -8.83902792047e-05)
(0.0588396564262 -0.0190678860462 0.00745787790531)
(0.0667734637485 -0.0206193329889 0.0168162591435)
(0.073718714834 -0.0222103618387 0.0283881205069)
(0.0786216974508 -0.0240654264019 0.0419756514966)
(0.080664758675 -0.0262787760614 0.0567482888465)
(0.0805936693328 -0.0298231189815 0.0720437634127)
(0.0774235999271 -0.0325559858971 0.0874374697004)
(0.0718032466607 -0.0369662839923 0.10223379502)
(0.0644983900964 -0.0398022911839 0.116273794857)
(0.0539770906059 -0.0417585549492 0.128625326232)
(0.0406689796519 -0.0424853869963 0.13868162801)
(0.0254419323734 -0.0420485056531 0.145803191586)
(0.00875906433834 -0.040559588238 0.149222957168)
(0.00406092680293 -0.0244487865239 -0.028018181068)
(0.0126238707207 -0.0239398823291 -0.0258401194637)
(0.0206508499192 -0.0234321657013 -0.023359480338)
(0.0285352439537 -0.022983323708 -0.0199777160714)
(0.0363759251843 -0.0226135950128 -0.0156222239794)
(0.0435020392169 -0.0222373309032 -0.0101395807522)
(0.0501884463642 -0.023069523095 -0.00364312210438)
(0.0576409340241 -0.0254872509423 0.00467683892285)
(0.0654066614605 -0.0277730462761 0.0143055886852)
(0.0721061757704 -0.0299812028208 0.0260107856609)
(0.0766016971989 -0.0324599641335 0.0394053612064)
(0.0776214812884 -0.0349679072266 0.053875105977)
(0.0772808082783 -0.0403461283041 0.0686227082959)
(0.0739969803647 -0.0447185134013 0.0833643269429)
(0.0687915261269 -0.0513969080279 0.0974785737612)
(0.0625911650733 -0.0550845768217 0.111084061871)
(0.0526736803913 -0.0579577631855 0.122977881054)
(0.040091387938 -0.0593527119953 0.132701400555)
(0.025315991501 -0.0592876584242 0.139839845096)
(0.00869766555667 -0.0578850320831 0.143437838321)
(0.00413916548242 -0.0258827595353 -0.0356164333873)
(0.0128823100882 -0.0256241510974 -0.0331458994731)
(0.0209076781222 -0.0254354211375 -0.0303479938378)
(0.028750774026 -0.0251828345831 -0.0265028882086)
(0.0366050115402 -0.0248291854394 -0.0215367378474)
(0.0431523160232 -0.023861398215 -0.0152346476005)
(0.0484611855157 -0.023531466394 -0.00792152239254)
(0.0556138354025 -0.0279073196052 0.00152453396766)
(0.0634359613169 -0.0302786698302 0.0114400090267)
(0.0696802637588 -0.0329035817972 0.0232964583202)
(0.0740749287444 -0.0362617477298 0.0365279798825)
(0.0734462202805 -0.0382985568587 0.0503114021557)
(0.0718448488803 -0.0456241001446 0.0644757255061)
(0.0685233604362 -0.0551028883604 0.077486003855)
(0.0648827607552 -0.0640557314953 0.0905963995418)
(0.0603395069194 -0.0690621328862 0.103438968153)
(0.0506959442352 -0.0732375540686 0.114687445936)
(0.0388825763971 -0.075404236889 0.123846034568)
(0.0247841451776 -0.0758958655958 0.130534937444)
(0.00850047937575 -0.0746541899622 0.134148332161)
(0.00405440844043 -0.0244448339509 -0.0431128026974)
(0.0127822332321 -0.0245711463403 -0.0403361232886)
(0.0208333378107 -0.0249249402119 -0.0374181704639)
(0.0288598902316 -0.0252695518608 -0.0332602628125)
(0.0374662577969 -0.0256643869726 -0.0278190717663)
(0.0445590110646 -0.0259095678048 -0.0205997580187)
(0.0468209974932 -0.0250423223238 -0.0124767138117)
(0.0541138271535 -0.0364197078427 -0.00169989773455)
(0.0627288197351 -0.0405336959726 0.0085110467135)
(0.0668936844735 -0.0447571850537 0.0207221533066)
(0.0708651591073 -0.0505219804662 0.0339585486876)
(0.0675843465905 -0.0493512502838 0.0472786376579)
(0.0612251462245 -0.0539613894899 0.0603233444377)
(0.0572067994135 -0.0735928035394 0.0703289672401)
(0.0580601187404 -0.0806439636864 0.0816475363665)
(0.0565541633641 -0.0838008372087 0.0931813911536)
(0.0471783266918 -0.0881309559655 0.103465767438)
(0.036723005829 -0.0903069229433 0.111736251721)
(0.0235939476359 -0.090876475967 0.117719847853)
(0.00802770579648 -0.0895834430105 0.121035502765)
(0.00374283289782 -0.019951262698 -0.0493612484538)
(0.0121167472549 -0.0205956971033 -0.0465835530369)
(0.019891713613 -0.0215389192925 -0.0437348482799)
(0.0275121352453 -0.0224509481131 -0.0394539134959)
(0.0353893578899 -0.0229773686109 -0.0335882005245)
(0.0429542920621 -0.0231925726655 -0.0254141346326)
(0.0343101793741 -0.0128092537539 -0.0167301237728)
(0.0353105760273 -0.0485676096178 -0.00381056632514)
(0.0571788060379 -0.0476148091033 0.0044944550997)
(0.0595913577922 -0.0497013830968 0.017341945152)
(0.0678046293003 -0.0532465373185 0.0299631943072)
(0.0625013995199 -0.0500609442648 0.043560585935)
(0.0495573175127 -0.0522598032061 0.0530457905079)
(0.0408423666273 -0.109110804794 0.0604981763341)
(0.0542000470137 -0.0907272684094 0.0684419510017)
(0.0545886258011 -0.095365247287 0.0794474017648)
(0.0441930212713 -0.0997803034986 0.0889593016332)
(0.0347035532781 -0.102215042862 0.0965665811162)
(0.0222017492228 -0.102904375009 0.101964639204)
(0.00737985190157 -0.101527297322 0.105105619963)
(0.00313470163628 -0.0126155181788 -0.0533863906599)
(0.0109204653851 -0.013682474492 -0.0509610509044)
(0.0185726922247 -0.0152387590736 -0.0484916100337)
(0.0266362224512 -0.0168844125827 -0.0446842828898)
(0.035325628818 -0.0179110810189 -0.0389470911526)
(0.0561055438789 -0.0174150356049 -0.0317333110186)
(0.00437042180788 -0.0148377425404 -0.0240324820696)
(0.014275005231 -0.114506622724 0.0427864456553)
(0.0637735741982 -0.10468121854 0.0514071657022)
(0.0492529771231 -0.106502586022 0.0635265804366)
(0.0394117805154 -0.109989320618 0.072210755192)
(0.0311817389606 -0.11196128183 0.0792068181027)
(0.0201644633605 -0.112291763481 0.084600991442)
(0.0065535885621 -0.110727472431 0.0880995999193)
(0.00245916326389 -0.0031768840461 -0.054339682432)
(0.00939577752689 -0.00459393590198 -0.0521939885388)
(0.0165756553433 -0.00702139055143 -0.0501905392287)
(0.0244672731633 -0.00999480373591 -0.0468595252767)
(0.0340744785388 -0.0129089767448 -0.0412321137588)
(0.0552740807738 -0.0138695541986 -0.0336701787894)
(0.00725940025279 -0.0159196258088 -0.0246608979258)
(0.00856762696164 -0.116572702761 0.0245646123987)
(0.0639173126754 -0.110985141763 0.0319931889868)
(0.0468633121922 -0.114861876282 0.0446254247381)
(0.0377777152276 -0.117797693375 0.0530369752136)
(0.0295265591563 -0.119186250344 0.0601266773965)
(0.0189350289818 -0.119153317891 0.065821074356)
(0.00604343691779 -0.117531591295 0.069787526067)
(0.00158447355204 0.0075084486833 -0.0514863297849)
(0.00721232177735 0.00560152559005 -0.0498206551941)
(0.0135160399134 0.00201199520606 -0.0485324130465)
(0.0210149849777 -0.00303803437765 -0.0459350498175)
(0.0308759644259 -0.00944425832646 -0.0409736920033)
(0.0527893666498 -0.0169394457006 -0.0339448998239)
(0.00708426149723 -0.0343029217842 -0.0259721249599)
(0.00645055500881 -0.103242142733 0.00728744664295)
(0.0589536274173 -0.108171484128 0.0129275119396)
(0.0422136693502 -0.115710139097 0.0244620057614)
(0.0345053874681 -0.119922468909 0.0324125216758)
(0.0271102313517 -0.122105125104 0.039501876378)
(0.0174647193654 -0.122500888314 0.0454127658199)
(0.00548057846413 -0.121241859081 0.0497398352216)
(0.000498241832989 0.0185923489598 -0.0446490878388)
(0.00419192997551 0.0164360187313 -0.0436066083004)
(0.00855188311407 0.0122651551001 -0.0433496783242)
(0.0137398504724 0.00606166459198 -0.0420445924231)
(0.021490681479 -0.00301228899648 -0.0386184128538)
(0.0377121243352 -0.0157216935937 -0.0335328173682)
(-0.0029824589271 -0.0443248663679 -0.0268938401979)
(-0.000886850026707 -0.0925691527827 -0.0104315034968)
(0.0522672833931 -0.105211928129 -0.00677004848404)
(0.0359604670728 -0.113131473527 0.00352918278945)
(0.0302989706799 -0.118161751999 0.0109987035836)
(0.0240576581339 -0.120954588507 0.0179516451386)
(0.015654318943 -0.121966198491 0.0239489303737)
(0.00485642228703 -0.121116009186 0.028526427364)
(-0.000620875002129 0.0287882814226 -0.0338552235685)
(0.00120459387783 0.0262995579281 -0.0333094532135)
(0.00376827984692 0.0214390670217 -0.0338695960345)
(0.0064082794422 0.0141727501107 -0.0342069320763)
(0.00991035560125 0.00419513196789 -0.0333380427274)
(0.00826643485005 -0.0100062424178 -0.0316431870816)
(-0.00163696497685 -0.0421748607557 -0.0290636700771)
(-0.007583770195 -0.0406594618352 -0.0314595724611)
(-0.0260852925383 -0.0477528267448 -0.0408252301168)
(-0.015082473534 -0.0505143107829 -0.0483291760927)
(-0.00824932337361 -0.0519840821294 -0.0517935051384)
(0.00121754624141 -0.0533751341307 -0.0520035687963)
(0.0187807093518 -0.0625320669114 -0.0501516119923)
(0.0309815533557 -0.0669560562642 -0.0345575790291)
(0.031198931747 -0.09748135745 -0.0265871464935)
(0.0287037003066 -0.106872735654 -0.0171347553848)
(0.0250351422736 -0.112499696259 -0.0100491144133)
(0.0203219178214 -0.115787802641 -0.00326606303999)
(0.0133952834788 -0.117288252103 0.00269195945141)
(0.00413958493021 -0.116955260515 0.00718814914577)
(-0.00217156605982 0.037345471577 -0.0197174460083)
(-0.00335174014258 0.0346839905656 -0.0197754108516)
(-0.00404678987729 0.0295649244345 -0.0215968945063)
(-0.00460214236003 0.0222069375242 -0.0240971120789)
(-0.00367861874054 0.0130065842102 -0.0264026402807)
(-0.00506260426726 0.00111069949259 -0.0285038731182)
(-0.0085459192856 -0.0132789151127 -0.0318590721501)
(-0.0193182754775 -0.0262417794233 -0.0361784473858)
(-0.0221833400429 -0.0306267669956 -0.043856286758)
(-0.0175257233114 -0.0372153010989 -0.0502117323079)
(-0.0107389197239 -0.0421003161949 -0.0539774495309)
(-0.000915888888805 -0.0476647826779 -0.0551998676605)
(0.0133632167153 -0.0547871800516 -0.0541112677226)
(0.0221092671966 -0.0738646322515 -0.0469504189655)
(0.0220677753628 -0.0871843046062 -0.0409461017382)
(0.0212659410476 -0.0968302647227 -0.0346661740473)
(0.0192690866356 -0.103048263683 -0.0288379445301)
(0.0162794691455 -0.106886928216 -0.0227398444968)
(0.0109781413292 -0.108890356099 -0.0172829817371)
(0.00330123626215 -0.109053659919 -0.0129503894509)
(-0.00369805248476 0.0437035133173 -0.00307384898584)
(-0.00758617272481 0.0413265720392 -0.00342516706696)
(-0.0108881900553 0.0367410750388 -0.00621894283412)
(-0.0136843563103 0.0302647788567 -0.0103667192499)
(-0.0151002594583 0.0224109057856 -0.0149853739149)
(-0.0175391641256 0.0124103104761 -0.0198111190568)
(-0.0198673648295 0.000981265756956 -0.025367607159)
(-0.0246967681636 -0.00903337515277 -0.032435941896)
(-0.0272492407266 -0.0157591135478 -0.0411744053116)
(-0.0241570405681 -0.0229524619212 -0.048588564307)
(-0.018857447405 -0.0300915921432 -0.0536578209631)
(-0.0112553955907 -0.0383851106918 -0.0569647975859)
(-0.000567312909747 -0.0485299082998 -0.0583326286909)
(0.00676574233341 -0.0636535318424 -0.0556866163231)
(0.00971859490636 -0.0753460891439 -0.0532219801599)
(0.0122417993819 -0.0847077621662 -0.0494121627098)
(0.0128443496437 -0.09104565175 -0.0447895288649)
(0.011774648698 -0.095221824303 -0.039585965532)
(0.00830414950944 -0.0977190673067 -0.0349080686434)
(0.00229678296131 -0.0983246850226 -0.0311854481501)
(-0.00508642245611 0.0469219959208 0.0149464632015)
(-0.0116535353218 0.0447855133492 0.0143375023512)
(-0.0176664336394 0.0405265313496 0.0106983878143)
(-0.0229335346848 0.0345012543605 0.00495816801487)
(-0.026717556206 0.0269715573074 -0.00204881719008)
(-0.0300811126327 0.0176609762323 -0.00985703231789)
(-0.0323541066127 0.00765886280881 -0.018664806024)
(-0.0349029591514 -0.00276262526383 -0.0282872101038)
(-0.0355457329084 -0.0104135005034 -0.0384506282492)
(-0.0320283118981 -0.0181815556068 -0.0472061864049)
(-0.0266308763898 -0.0260309847953 -0.0539222361058)
(-0.0197376915357 -0.034470394181 -0.0591282293237)
(-0.0113138118912 -0.0438480067651 -0.0625160909687)
(-0.00423596195916 -0.055423628951 -0.0632766123777)
(0.000737387224767 -0.0644584982001 -0.0629796930398)
(0.00480812158406 -0.0721783016152 -0.0609588540611)
(0.00703288645234 -0.0779356721782 -0.0576508624637)
(0.00744427838006 -0.0820585575246 -0.0536115246759)
(0.00555177603017 -0.0848152166425 -0.0500338321993)
(0.0012068393572 -0.0856348646096 -0.0470185346053)
(-0.00626169956802 0.0465431134129 0.0331962382791)
(-0.0150908781958 0.0445214520091 0.0321123293247)
(-0.0235006040418 0.0407192736618 0.0276495384705)
(-0.0309846901558 0.0354470884157 0.0205076700564)
(-0.0365920263532 0.0288913039461 0.0113221857108)
(-0.0408685094323 0.0211278905141 0.00087538422741)
(-0.0433753093287 0.0129504051579 -0.0107292215202)
(-0.0446665472764 0.00400135040307 -0.0228435994372)
(-0.0438444143302 -0.00339851851828 -0.0346411257473)
(-0.0400951891775 -0.0109212300497 -0.0448616797853)
(-0.0347353023638 -0.0188109937897 -0.0535186966306)
(-0.0280630910729 -0.0270424126704 -0.060686719865)
(-0.020240085781 -0.0356055069456 -0.0660359452411)
(-0.0129259731472 -0.0447630031691 -0.0690674036147)
(-0.00672554818171 -0.0524021539133 -0.0703986663784)
(-0.00154976091463 -0.0589802793721 -0.0698240213484)
(0.00188176641392 -0.0641279599795 -0.0677828804569)
(0.00342041005672 -0.068061100317 -0.0651349185772)
(0.00284523483235 -0.0707956768445 -0.062811745735)
(0.000269100479022 -0.0714144908307 -0.0603359582163)
(-0.00715311780412 0.042219502584 0.0503137627311)
(-0.017747897404 0.0402958521592 0.0486820208947)
(-0.0279708503957 0.0369758575886 0.0433296591029)
(-0.037310730494 0.0325785779929 0.034879539225)
(-0.0445588126831 0.0271037756719 0.0238556700812)
(-0.0496579722936 0.0207372021195 0.0110924249797)
(-0.0523992980051 0.0140630072153 -0.00273608995037)
(-0.0529705101594 0.0069136542939 -0.016816681627)
(-0.0512473362248 0.000451396832877 -0.0301311598439)
(-0.047261149301 -0.00616655849803 -0.0419186483066)
(-0.0417841231468 -0.0131004091999 -0.0523911663165)
(-0.0349556780162 -0.0201479232747 -0.0613791608189)
(-0.0271752122722 -0.0272094319616 -0.0684303401062)
(-0.0194519666976 -0.0343339486276 -0.0731450650467)
(-0.0124812620595 -0.0404761915475 -0.0757557065749)
(-0.00662735262305 -0.0458007749715 -0.0764125759305)
(-0.00247503674637 -0.0501857473812 -0.0756847889865)
(-4.25967815809e-05 -0.0536460741979 -0.0743313574065)
(0.000654880264779 -0.0559784450347 -0.072963865969)
(-0.000399390771691 -0.056270511402 -0.0707618066401)
(-0.00763725617116 0.0340933038876 0.0647616055189)
(-0.0194286112547 0.0323468092355 0.0626922363628)
(-0.0308841268544 0.029589250137 0.0565794183809)
(-0.0414924714236 0.0262383690877 0.0470369749051)
(-0.0498733023531 0.0221760567672 0.0345704925879)
(-0.055644796612 0.0174939841305 0.0200777775563)
(-0.0585856146869 0.0125185113703 0.00453888837832)
(-0.0588695824743 0.00729906243152 -0.0109907086636)
(-0.0567311165054 0.00231553515923 -0.0255411850603)
(-0.0526664053947 -0.00285194562852 -0.0387627791069)
(-0.0471273038406 -0.0082175587722 -0.0508166072592)
(-0.0401340518153 -0.0136501648707 -0.0613651182936)
(-0.032201140941 -0.0189323128445 -0.0697846651281)
(-0.0241992972457 -0.0241443176675 -0.0758224642986)
(-0.0167652671381 -0.0287312353095 -0.0795258902879)
(-0.0105075220661 -0.03278890965 -0.0813058540248)
(-0.00586061554996 -0.0360705963472 -0.0817153767589)
(-0.00268009978713 -0.0386595958952 -0.0813410515951)
(-0.000980282021467 -0.0403502827302 -0.0806256858637)
(-0.000907692779101 -0.0404786063369 -0.0785633248595)
(-0.00752149551748 0.0239995052643 0.0752184360802)
(-0.0198805629334 0.0217910903045 0.0729520546501)
(-0.0321946668504 0.0194536576807 0.0661917938934)
(-0.043524118229 0.017280051646 0.0559159671909)
(-0.0525497077901 0.0147525748245 0.0425526956819)
(-0.0587753790943 0.0118525178291 0.0270211630924)
(-0.061893959127 0.00870047567828 0.0103821064907)
(-0.0620852930971 0.00543819932722 -0.00615039532687)
(-0.0598704342106 0.00223357633776 -0.0216135023849)
(-0.055855670011 -0.00114405175219 -0.0359177154169)
(-0.0503469609703 -0.00463804134058 -0.0491363461723)
(-0.0432701249634 -0.00810298614506 -0.0607965697284)
(-0.035278219971 -0.011447100016 -0.0703727820361)
(-0.027141740626 -0.0145884282032 -0.0773660015241)
(-0.0195127136115 -0.0174417136853 -0.0819170550903)
(-0.0129467795301 -0.020030972189 -0.0845847476375)
(-0.00785622086467 -0.0220182041047 -0.0857374777527)
(-0.00420900253672 -0.0235866767478 -0.0859152445743)
(-0.00195177412117 -0.0246181670392 -0.0855093074514)
(-0.00118958423596 -0.0245491134292 -0.0837944724257)
(-0.00693404632213 0.00947990009806 0.0828232015258)
(-0.0193438067267 0.00810312726374 0.0791001730107)
(-0.0320409606606 0.00692162254672 0.0715293037874)
(-0.043468786239 0.006056418755 0.0606713248375)
(-0.052647776204 0.00510917759854 0.0467994738212)
(-0.0589478176617 0.00403031611817 0.0307632043542)
(-0.0620868627522 0.0028584545473 0.0137136930364)
(-0.0622155071429 0.00162756250104 -0.00320995339924)
(-0.0599413664737 0.000417042992185 -0.0190507012656)
(-0.0559512658607 -0.000759458486768 -0.0337771148828)
(-0.0504699609306 -0.00195352188096 -0.0475031235665)
(-0.0434679858826 -0.00319336034794 -0.0596849562951)
(-0.035451804965 -0.00448211272483 -0.0697868019268)
(-0.0272337587566 -0.00572870071631 -0.0772227182939)
(-0.0195746293684 -0.00675678574615 -0.0820500910445)
(-0.0130050600488 -0.00766151203206 -0.0849728636916)
(-0.0078735766279 -0.00839831245289 -0.0864782370702)
(-0.00409813263954 -0.00892427702472 -0.0869342589621)
(-0.00148473746328 -0.00918989795467 -0.0868635093029)
(-0.000776122131108 -0.00845196949795 -0.0860112826266)
(0.00406688119537 -0.00569539542372 -0.0107044476339)
(0.0123620720203 -0.00551533104554 -0.00986086887848)
(0.020358876688 -0.00529117292285 -0.00914473998739)
(0.0288275987831 -0.0050117101849 -0.0078397879598)
(0.0375084405856 -0.00480505879589 -0.00550171933382)
(0.0462815192925 -0.00475114940301 -0.00210267301957)
(0.0556289002139 -0.00494636729811 0.00260164814493)
(0.065630044177 -0.00525969879786 0.00931016947745)
(0.0756694595394 -0.00573297063483 0.0189813777452)
(0.0847113520042 -0.00625640753043 0.0318718785506)
(0.0914177622132 -0.0068558910278 0.0479970636563)
(0.0949056081584 -0.00760903019536 0.0661479503448)
(0.0949013596263 -0.00852544919035 0.0851703360281)
(0.091370962731 -0.00918018580038 0.103723738628)
(0.0849238967822 -0.0100697136249 0.121437135258)
(0.0757673708037 -0.0105546455856 0.137973624725)
(0.0634841549298 -0.0106715131674 0.152712645478)
(0.0481923559671 -0.0104995628545 0.164462880228)
(0.030673101078 -0.0099639309625 0.172618318306)
(0.0107510824575 -0.00835865031291 0.176475129977)
(0.00401960098182 -0.0162437434452 -0.0142813199422)
(0.0125057978313 -0.0158013792907 -0.0133145818716)
(0.0208337370617 -0.0150701651408 -0.0122527973384)
(0.0293588583741 -0.014258892227 -0.0101616024866)
(0.0379016253092 -0.0136099249709 -0.00703984696752)
(0.0463640410206 -0.0131240778904 -0.00296308122264)
(0.0553675966429 -0.0132965833374 0.00215983071705)
(0.0651134355193 -0.0137608029333 0.00922148676064)
(0.0749357165612 -0.0147667148229 0.0190203925726)
(0.0837671670144 -0.0159762217119 0.032129930029)
(0.0901843180232 -0.0174321856906 0.0479497042452)
(0.0934465232444 -0.0192237034245 0.0655504789519)
(0.0937749118422 -0.0216170778417 0.083954178018)
(0.0905327660803 -0.0234656412718 0.10238838592)
(0.0842465343719 -0.0260752695235 0.120220862123)
(0.0754568872647 -0.0275205319845 0.137077680551)
(0.0631778368879 -0.0282693909997 0.152230638884)
(0.0476532976541 -0.0281145834898 0.164316922977)
(0.0300734647611 -0.0271294727028 0.172633283197)
(0.0105860251518 -0.0245179930608 0.176177061767)
(0.00419051659727 -0.0251049425468 -0.021212666437)
(0.0131673602254 -0.0240885307909 -0.020311949256)
(0.0217645291611 -0.0229987189446 -0.0184368021993)
(0.0302679737424 -0.0220316427791 -0.0153590631837)
(0.0386817070947 -0.0211705296511 -0.0113803450321)
(0.0467965915598 -0.0203132437035 -0.0064926033971)
(0.0552619254509 -0.0203681216621 -0.000649651123995)
(0.064502357656 -0.0211657496497 0.00710618054012)
(0.0738648835381 -0.0226592302098 0.0171651003172)
(0.0823427300944 -0.024325299143 0.0301888005211)
(0.0884551688494 -0.0263356305492 0.0458195645532)
(0.0912384304095 -0.0287739568379 0.0630086641003)
(0.0915339249389 -0.0326904642962 0.0807856888282)
(0.0883313872423 -0.0359995766271 0.0989151172558)
(0.0823795309612 -0.0408323063228 0.116495872858)
(0.0743398279566 -0.04386633609 0.133376718507)
(0.0624043035206 -0.0458893615311 0.148420240848)
(0.0471421969994 -0.0463786581919 0.160619429366)
(0.0296535137766 -0.0454292315328 0.169676910921)
(0.010307079529 -0.0433585301289 0.173499306983)
(0.00476601003653 -0.0301361074945 -0.0323741410196)
(0.0142128067799 -0.0290871465898 -0.0293383673753)
(0.0226504294849 -0.0282331658204 -0.0262956551276)
(0.0310689284184 -0.0274505374835 -0.0223987740154)
(0.0395575154537 -0.0266894682703 -0.0176111748584)
(0.047380149749 -0.0258307500139 -0.0117981796292)
(0.0549892353972 -0.0261913828708 -0.00503869522125)
(0.0635181594102 -0.0280146490249 0.00366822702831)
(0.0725019104799 -0.0302174737996 0.0140852525741)
(0.0805937757008 -0.032401400523 0.0271335863373)
(0.0862596161169 -0.0349938899038 0.0425267672207)
(0.0879446786885 -0.0377887358918 0.0593379509786)
(0.0877654961871 -0.0436918559024 0.07656115143)
(0.0844547642743 -0.0490636192373 0.0939218818747)
(0.0790514157966 -0.0563078205724 0.110830770376)
(0.0721297095225 -0.0605902371889 0.127287026133)
(0.0610328911464 -0.063830656614 0.141936784579)
(0.0468126317994 -0.0652575518991 0.154096559523)
(0.0299163168163 -0.0648645804359 0.16342514962)
(0.0104378740919 -0.0628615116072 0.167928762175)
(0.00500653691847 -0.0314252556596 -0.0419768912189)
(0.0147341197173 -0.0308298475144 -0.0384809192484)
(0.023118164245 -0.0304927224929 -0.0349975039116)
(0.0315522138383 -0.0299848084298 -0.0305269358239)
(0.0401651544544 -0.0292757241791 -0.025011355127)
(0.0475044757643 -0.0277981862961 -0.0182059485895)
(0.0538451658494 -0.0268836315915 -0.0103074714747)
(0.0619278066729 -0.0305204811862 -0.000344589478785)
(0.0706749645423 -0.0328147819569 0.0105386033556)
(0.0781389244835 -0.0352992070575 0.0238641925881)
(0.0834427008214 -0.0385663541834 0.0390174095914)
(0.0832443798738 -0.0409203921084 0.0549594676092)
(0.0814084302384 -0.0491666331192 0.0715926728583)
(0.0783032730853 -0.0603580160641 0.0871089900297)
(0.0745685075307 -0.0701326983688 0.10295509632)
(0.0693120089053 -0.0760144902063 0.118556936735)
(0.0586270739626 -0.0808368398501 0.132360323094)
(0.0454441936802 -0.0834292061364 0.143869043128)
(0.0295578625129 -0.0840725459767 0.152975207623)
(0.0103285511476 -0.0825365139695 0.158020271765)
(0.00513128376881 -0.0295157499747 -0.0514997008234)
(0.0148473564605 -0.0293978015715 -0.0474778497079)
(0.0231530229821 -0.0296939998935 -0.0438848962996)
(0.0318283341792 -0.0298594168628 -0.0390134641511)
(0.041351404102 -0.029945302414 -0.0329401684848)
(0.0493491633492 -0.0296489897412 -0.0251642749471)
(0.0526037128485 -0.0274206034392 -0.0161583702028)
(0.0609243784109 -0.0375438776423 -0.00443276992067)
(0.0702381980921 -0.0423775071276 0.00716077392002)
(0.0753965526436 -0.0465088429648 0.0211051023431)
(0.0799853121497 -0.0523384570341 0.0365169349553)
(0.0767015081039 -0.0512199575575 0.0517889235079)
(0.069183280284 -0.0580358802986 0.0663942939676)
(0.0656557335821 -0.0804124746617 0.0792543843568)
(0.0672256048013 -0.087916395529 0.09320210877)
(0.0647575211869 -0.0923185227943 0.107127648867)
(0.0543885257323 -0.0974819364466 0.119662602023)
(0.042694985241 -0.100289334726 0.130038417501)
(0.0280092304116 -0.101383563078 0.137857272225)
(0.00973022991857 -0.100070913969 0.142445732683)
(0.00480185986866 -0.0237399273136 -0.0597755114313)
(0.0141332067592 -0.0244532038332 -0.0555236391242)
(0.0221862750125 -0.0254676801414 -0.051996445151)
(0.0305081444483 -0.0264245865187 -0.0469881459269)
(0.0394221267486 -0.0268723417222 -0.0405077707674)
(0.0481883641878 -0.0271041424101 -0.0318961061213)
(0.0407860138292 -0.0135283405855 -0.0219255212564)
(0.0420656976075 -0.051041720497 -0.00746943840869)
(0.0643396006512 -0.0489295190503 0.00281266868041)
(0.0671797951236 -0.0508872150949 0.0173729387847)
(0.0761304943287 -0.0544470688878 0.0323223788643)
(0.0693525995858 -0.0510414490742 0.0482948478055)
(0.0542465906001 -0.0549550391501 0.0548737997965)
(0.04786159836 -0.117701237686 0.0678281195321)
(0.0623593274435 -0.0985542261764 0.0786036406655)
(0.0618529718994 -0.105308730798 0.0919381845973)
(0.0505470046826 -0.110800622601 0.103405404359)
(0.0398967647241 -0.113884411713 0.112750409582)
(0.0260830991139 -0.114872172579 0.118881895569)
(0.00886109059409 -0.113424002206 0.122545860746)
(0.00403761612657 -0.0144894095742 -0.0651504201602)
(0.0126887752366 -0.0157747004815 -0.0613365786467)
(0.0205292679748 -0.017535593012 -0.0582534914305)
(0.0292158799586 -0.0194234121492 -0.053808372173)
(0.0385512104522 -0.0205770730678 -0.0476208660664)
(0.0626203728872 -0.0203588041115 -0.0404990733082)
(0.00420728029754 -0.0160672582805 -0.0323518409239)
(0.0154798694552 -0.125120048452 0.0540383160244)
(0.0720950696007 -0.115530551951 0.0628818614183)
(0.0549075064769 -0.118337177858 0.074508105382)
(0.0448703098841 -0.122676231973 0.0842986465961)
(0.0359328788094 -0.124942783247 0.0925283760452)
(0.0239335535928 -0.125190145447 0.0991967547731)
(0.00790694068606 -0.12343293619 0.104001491887)
(0.00320383667425 -0.00250729040941 -0.066763474082)
(0.01092127462 -0.00425185717021 -0.0632458279276)
(0.0182500615146 -0.00703607663265 -0.0607339695692)
(0.0268213056449 -0.0103784351511 -0.0568882402926)
(0.0371321994264 -0.0136380156693 -0.0509216957645)
(0.0622233408318 -0.0147152202067 -0.0436114767351)
(0.00739061587532 -0.0161821081573 -0.0337169255428)
(0.00934785282268 -0.129732242877 0.0324550276145)
(0.0726219377354 -0.124178137706 0.0400970000066)
(0.052435657249 -0.12847403842 0.053375160142)
(0.0430858708651 -0.1319393681 0.0627773380799)
(0.0342514904053 -0.133349179209 0.0711162456434)
(0.0228299915001 -0.133155630403 0.0783106214646)
(0.00732810636848 -0.13140747007 0.0838326406319)
(0.00211894426058 0.0110470021716 -0.0633063611489)
(0.00832092808557 0.0086603842958 -0.0605783354999)
(0.0147518428884 0.00446652487906 -0.0589182310802)
(0.0228704281688 -0.0012722090474 -0.0559349316693)
(0.0333532099873 -0.00853735912853 -0.050783460632)
(0.0588673600483 -0.0168123155301 -0.0440835273577)
(0.00676537353447 -0.0354184258179 -0.0355872880354)
(0.00626453962006 -0.115528955419 0.0117099856735)
(0.067004358121 -0.121708028275 0.01797762491)
(0.0473558245037 -0.13019441258 0.0301485532397)
(0.0395731635705 -0.135028316756 0.039001800702)
(0.0317729644101 -0.137217543416 0.0474379859099)
(0.0212908081278 -0.137541284388 0.0549254537677)
(0.00686457331608 -0.136312705826 0.0607254743358)
(0.000774460670405 0.0250077486733 -0.0550437342618)
(0.00473965358897 0.0223644672863 -0.0531090670883)
(0.00904365132685 0.0175474409691 -0.0528484953998)
(0.0146528337297 0.0103574511602 -0.0511844699764)
(0.0229754649087 -1.85517514711e-05 -0.0477057322624)
(0.0428287534731 -0.0141996049608 -0.0426554727005)
(-0.00398169439029 -0.0457277166117 -0.0346134333983)
(-0.00116347537553 -0.10366937784 -0.00814238993004)
(0.0588360256731 -0.119582961613 -0.00557220961289)
(0.0406064820812 -0.128076852749 0.00544626188093)
(0.0350263798254 -0.133505170375 0.0138072695735)
(0.0285501873217 -0.13633261043 0.0222448737098)
(0.0194557325133 -0.137297391099 0.0298261598361)
(0.00629513084931 -0.13672749102 0.0356503111822)
(-0.000519680339083 0.0378575162239 -0.0417253239126)
(0.00134380548664 0.0347930224612 -0.0404026125931)
(0.00350580863242 0.0292296182058 -0.0407737251798)
(0.00609024827222 0.0207628194512 -0.0412387347676)
(0.00946013358023 0.0091362546702 -0.0404299559591)
(0.00845314477195 -0.00713037993965 -0.0385346274857)
(-0.00365980046084 -0.0450236379666 -0.0346374906221)
(-0.0125433043444 -0.0398365006134 -0.0374564878754)
(-0.0307071583125 -0.0482748435801 -0.0485028215981)
(-0.0184825879484 -0.0510932796204 -0.0572222121538)
(-0.00939052044657 -0.0526871618181 -0.061022941533)
(0.00166202911379 -0.0546232275821 -0.0600127535242)
(0.0262587496208 -0.0659466807266 -0.0579987093925)
(0.0391804162677 -0.0722198121888 -0.0384389767198)
(0.036287106821 -0.110215333456 -0.0295938730224)
(0.0334351337984 -0.120862295005 -0.0191086948044)
(0.0295058945561 -0.126998104206 -0.0109851169092)
(0.0245969826493 -0.13040800294 -0.00284085825815)
(0.0170466059551 -0.131996067815 0.00471479087245)
(0.00552360966075 -0.132084848912 0.0104884861292)
(-0.00239824534321 0.0485682628431 -0.0241409098956)
(-0.00401049882266 0.0453444048689 -0.0237253406456)
(-0.00548392310127 0.0394172761929 -0.0257029067191)
(-0.00665696671153 0.0309380304252 -0.0287325744093)
(-0.00611115967811 0.0202693183879 -0.0317050413635)
(-0.00820373735597 0.0068293785564 -0.0344094970117)
(-0.0117869386157 -0.0102626865629 -0.0397902760685)
(-0.0230413574182 -0.0235143661059 -0.0429502864173)
(-0.0263922320816 -0.0290814750707 -0.0520969452112)
(-0.0207446127619 -0.036428949179 -0.0596432109549)
(-0.0122804295895 -0.0420751274054 -0.0633546817899)
(-0.000951866574664 -0.0492216251424 -0.0641215257411)
(0.0159406708425 -0.0575891856389 -0.0626941635093)
(0.026030892866 -0.0816955269025 -0.0540441697848)
(0.0256174683468 -0.0976134774328 -0.0471740387793)
(0.0247325260977 -0.108842921027 -0.0399500099286)
(0.0229131036688 -0.115859646514 -0.033107345791)
(0.0199824100475 -0.120010894132 -0.0256242287069)
(0.0143232016807 -0.122224553933 -0.0187193786501)
(0.0045987048913 -0.12289082933 -0.013487882411)
(-0.00420072541058 0.0564420521116 -0.00338931300831)
(-0.00894866080168 0.0536515678307 -0.00344808294075)
(-0.0134859778224 0.0483254257269 -0.00657615057175)
(-0.0172400263212 0.0408388021921 -0.011560594057)
(-0.0192862680616 0.031700771408 -0.0172202394368)
(-0.0221465920114 0.0203090176191 -0.0231656408611)
(-0.0248561419023 0.00741022339592 -0.0300549058593)
(-0.0303095129381 -0.00440361466564 -0.0380894302241)
(-0.0327950568178 -0.0126270802494 -0.0485654278078)
(-0.0284664818298 -0.0210785223983 -0.0572032295102)
(-0.0218842641661 -0.0297316347389 -0.0625722434254)
(-0.0131474947668 -0.0398980760849 -0.0660112959246)
(-0.00063423107092 -0.0520850758064 -0.0676067388767)
(0.00792620369919 -0.0704218275521 -0.0646509591463)
(0.0112966933962 -0.0841526422981 -0.0618087596955)
(0.0145046675345 -0.0948450819072 -0.0573058476464)
(0.0156570391276 -0.101963544978 -0.0516934085285)
(0.0148437041533 -0.106546893936 -0.0451438266142)
(0.0112013294277 -0.109359065207 -0.0392633204709)
(0.00340485783949 -0.110459425512 -0.0348401633452)
(-0.00591052883312 0.0603801498689 0.0190057528102)
(-0.0138016815458 0.0578389416929 0.0185767990394)
(-0.021423049042 0.0528679690419 0.0143957004587)
(-0.0280773007537 0.0459243444084 0.0075726927947)
(-0.0327996397951 0.0371414492765 -0.000970424408161)
(-0.0368135540809 0.0263645495241 -0.0104201991544)
(-0.0394638404097 0.0145871079028 -0.0211160059234)
(-0.0422572686518 0.00238937679524 -0.0327139146389)
(-0.0423950624154 -0.00662030071756 -0.0449471607153)
(-0.0377735282228 -0.0158278587167 -0.0550147689169)
(-0.0312974174441 -0.0254604532404 -0.0625169032475)
(-0.0233996560918 -0.0357705058718 -0.0685252359895)
(-0.0134653460033 -0.0470238272012 -0.0726178939158)
(-0.00508716742604 -0.0609306121341 -0.0735807066408)
(0.000906428136653 -0.0714970716039 -0.073169380074)
(0.00602297095155 -0.0803804551816 -0.0706735366462)
(0.00903706255244 -0.0869034724214 -0.0664672460663)
(0.00980294169733 -0.0915734527373 -0.0613594589138)
(0.00778146399811 -0.0947039114988 -0.0569283176422)
(0.00219843886334 -0.0959763751078 -0.0534457334701)
(-0.00741901229383 0.0597369999003 0.0419375363953)
(-0.0179995480199 0.0573102769063 0.0406665179101)
(-0.0283015928172 0.0528446610046 0.0353267068749)
(-0.0375314872842 0.0466892226866 0.0268342745852)
(-0.044477787881 0.0389949683101 0.0157459748037)
(-0.0495667738137 0.0298768748672 0.0030760983692)
(-0.0525220603403 0.0201594292905 -0.0110774131962)
(-0.0536963538801 0.00967566000639 -0.0258495431671)
(-0.0521410206528 0.000913109891738 -0.0399111847559)
(-0.0473532101263 -0.00808616350509 -0.0516740798402)
(-0.0410732596925 -0.0177515066061 -0.06167836413)
(-0.0332783163923 -0.0277049340965 -0.070153560118)
(-0.0239872519644 -0.0379724144258 -0.0766651880287)
(-0.0151443353564 -0.0488605615855 -0.0802973893346)
(-0.00758607056123 -0.0577671853528 -0.0817522369534)
(-0.00115045679384 -0.0653376036109 -0.0808016905017)
(0.00312443132747 -0.0712475261029 -0.078115950406)
(0.00506835463055 -0.0757398785799 -0.0746969537662)
(0.00452065139451 -0.078848436075 -0.0718839494594)
(0.00103650133198 -0.0798728620428 -0.0691925363152)
(-0.00852858106181 0.0539682639807 0.0634921735502)
(-0.0212275078948 0.0517180325202 0.0614634350272)
(-0.0336406492538 0.0478234949646 0.0549440806345)
(-0.0450497052262 0.0426196116406 0.0447406036814)
(-0.0538766860683 0.0361629042442 0.031324986338)
(-0.059982525973 0.028622295275 0.0157899324099)
(-0.0630753136074 0.0206841207073 -0.00115254168845)
(-0.0633784653182 0.0123148593681 -0.0182396518001)
(-0.0607910114591 0.00470578758724 -0.0339947003614)
(-0.0558575550241 -0.00329167198324 -0.047690218309)
(-0.0494341670468 -0.0117462396552 -0.0599929367951)
(-0.0414222364165 -0.0202979848545 -0.0707466080573)
(-0.032049861149 -0.0287254355928 -0.0793258894543)
(-0.0225997014852 -0.0371661183804 -0.0849707095352)
(-0.0140484854756 -0.0443052228632 -0.0878466710439)
(-0.00690426172141 -0.050473679937 -0.088325635871)
(-0.00187231387222 -0.0555386931467 -0.0871626854649)
(0.00101051035621 -0.059496217443 -0.0853208475968)
(0.00181744312584 -0.0621554157652 -0.0836641807905)
(0.000148868879752 -0.0627794330503 -0.0813291634499)
(-0.00907446196688 0.0432831197523 0.0817329411702)
(-0.0232010578857 0.0413056182992 0.0791464807828)
(-0.0371061949901 0.0380685560836 0.0715968783566)
(-0.0500021566806 0.0341366543368 0.0599029589096)
(-0.0601659332975 0.0293533256447 0.0446416565054)
(-0.067044510842 0.0237915074596 0.0269531162917)
(-0.0703145566275 0.0178725130657 0.00795637823437)
(-0.0701558525821 0.0117407009956 -0.0109045503802)
(-0.0671849251494 0.00589452132976 -0.0279713026393)
(-0.0622547803332 -0.000352334796258 -0.0434592450395)
(-0.0558034058408 -0.00690647439663 -0.0578605677917)
(-0.0474655170014 -0.0134774915253 -0.070587208059)
(-0.0378100146535 -0.0197882874238 -0.0808265092635)
(-0.0279490062209 -0.0258979242392 -0.0880205236914)
(-0.0188435627348 -0.0312016136274 -0.0921584472979)
(-0.0112857516411 -0.0358965711439 -0.0939703280991)
(-0.00576273436931 -0.0396989777613 -0.0941590693925)
(-0.00209034017719 -0.0426807983876 -0.0934730095412)
(-0.000203775377291 -0.0446348652268 -0.0925474426349)
(-0.000507297999176 -0.0450261283604 -0.0904269696983)
(-0.00882990331517 0.0306864776388 0.0947316559874)
(-0.0236887791476 0.0279184841194 0.0918926963042)
(-0.038642897505 0.0250813106859 0.0836359229094)
(-0.0523592490471 0.0225211695169 0.0710480113778)
(-0.0633030145933 0.0195225087754 0.0546844815164)
(-0.070722258988 0.0160298248248 0.0356168815432)
(-0.0741878289644 0.012313348145 0.0152710238483)
(-0.0739161584863 0.00845673923832 -0.00480875812123)
(-0.0708547834178 0.00470085523196 -0.0229204065434)
(-0.0660229335923 0.000651015193271 -0.0397720237178)
(-0.059587810036 -0.00362617073315 -0.0556722750926)
(-0.0511674352336 -0.00777662774264 -0.0698466134775)
(-0.0413539138673 -0.0117708299825 -0.08153473013)
(-0.0312263439756 -0.0153785830706 -0.0898924632717)
(-0.0219090473374 -0.0186002175852 -0.0949967665174)
(-0.01406189769 -0.0215539955525 -0.0978502919701)
(-0.00806699089962 -0.0239221358192 -0.0989353576929)
(-0.00388020500911 -0.0257566720647 -0.0989428182529)
(-0.00145174294852 -0.0270103989437 -0.0984058030744)
(-0.000957472223566 -0.027254407266 -0.0964262365629)
(-0.00842864720191 0.0123883231021 0.103323000601)
(-0.023416096121 0.0105544426798 0.0992395386283)
(-0.0386030271833 0.00905465144553 0.0902346269572)
(-0.0523656635958 0.00802916602819 0.0770674424235)
(-0.0635004384087 0.00688539433345 0.0601014298048)
(-0.0709986839332 0.00555861005727 0.0404097347936)
(-0.0744558425557 0.00414065552072 0.0195218778463)
(-0.0741084665955 0.00269869281868 -0.00104125443848)
(-0.0709731728508 0.00128702147691 -0.019618253855)
(-0.0661827085818 -0.000172967191829 -0.0369527528492)
(-0.0598101077544 -0.00157849036202 -0.053434486264)
(-0.0514816125721 -0.00303354262913 -0.0683019579649)
(-0.041732252486 -0.00451648356443 -0.0807596740901)
(-0.0315649610317 -0.00593782492634 -0.0897337616226)
(-0.0222257838424 -0.00705590888989 -0.0950322452587)
(-0.0144975536685 -0.00808931440923 -0.0984696859461)
(-0.00842744908533 -0.00896242021703 -0.100129382882)
(-0.00396612267492 -0.00957761802987 -0.10047082199)
(-0.00108134778787 -0.0100018424264 -0.099946769281)
(-0.000561482259915 -0.00925895418186 -0.0985930253706)
(0.00412761105568 -0.00720044928469 -0.00847543399094)
(0.0125601468878 -0.00693798830187 -0.00778642921802)
(0.0208375345901 -0.00653838044447 -0.00772489331755)
(0.0299275680497 -0.00594227227115 -0.00726315869515)
(0.0393376478595 -0.00554325979766 -0.00552081643409)
(0.0488554996652 -0.00529071236248 -0.00262156581123)
(0.0593464390988 -0.00539149595255 0.00147896229665)
(0.0711679384325 -0.00567980634163 0.00790529427424)
(0.0834751040623 -0.00628718909606 0.0185376767682)
(0.0947768594365 -0.00686060247618 0.0334418058574)
(0.103300619478 -0.00766238628365 0.0524638179494)
(0.107925499471 -0.00862148218899 0.0737211788393)
(0.108393168425 -0.00970234955723 0.096440936897)
(0.104665725736 -0.0104356186841 0.118177258079)
(0.0975643066201 -0.0113285838157 0.138820797487)
(0.0873096582458 -0.0116284073914 0.158310820414)
(0.0731301582893 -0.0115077128313 0.175545777594)
(0.0552757092826 -0.0109778673616 0.188954177722)
(0.0350797801244 -0.0100281255558 0.197922131877)
(0.0127415202619 -0.0081368893862 0.202658646213)
(0.00412413943191 -0.0203331769603 -0.0134224188964)
(0.0128863665126 -0.0198919500161 -0.0124659170011)
(0.0217682235312 -0.0187642703135 -0.0118202706272)
(0.0309313475769 -0.017458018262 -0.00959277927223)
(0.0401317156773 -0.0163660330526 -0.00645701849412)
(0.0493631748526 -0.0154418437749 -0.00255395881726)
(0.0594587526547 -0.0152722963658 0.00210843236739)
(0.0708607214067 -0.0154446533389 0.00883313311674)
(0.0828320038953 -0.0164419901348 0.0190473461271)
(0.0937512815014 -0.0177365000111 0.0340275266268)
(0.101750840684 -0.0193808012687 0.052222184574)
(0.106144195023 -0.0214309025011 0.0723748772579)
(0.107039166339 -0.0242265813235 0.0935773994114)
(0.103739112162 -0.0262555909805 0.115173148582)
(0.0969731320919 -0.028886575415 0.135752312019)
(0.0872371014799 -0.0302228482508 0.156476547145)
(0.0730666295201 -0.0306451248855 0.174728463457)
(0.0548776777935 -0.0299061574433 0.188921422919)
(0.0342104714994 -0.0279371396475 0.198392206886)
(0.0121168427259 -0.0244189692551 0.20352607546)
(0.00423398746511 -0.0320332738585 -0.0230700791969)
(0.0136980031342 -0.0301004983361 -0.0218226265871)
(0.0230673410912 -0.0284487194941 -0.0194545440971)
(0.032239319194 -0.0270275283091 -0.0159001262655)
(0.0413462407638 -0.0256485229529 -0.0116651809927)
(0.0502282047579 -0.0242391087106 -0.00673083898464)
(0.0597364177884 -0.0238147459756 -0.00105502277674)
(0.0704272931425 -0.0240962808496 0.00654027858816)
(0.0816371364182 -0.0254378412611 0.017035706602)
(0.0921311069205 -0.0271828623201 0.0315060313796)
(0.0999237429542 -0.029209816856 0.0493694080268)
(0.103744183811 -0.03166647078 0.0693008602702)
(0.104610223969 -0.0358984382439 0.0897970229708)
(0.101466037291 -0.0397218226977 0.110974034437)
(0.0950749116824 -0.0449096524501 0.131678554317)
(0.0860842313409 -0.0482631160659 0.15220559559)
(0.0724277384948 -0.0503794085361 0.170391921695)
(0.0548914838481 -0.0504029412462 0.185077957622)
(0.0344013711643 -0.0484072208803 0.196717583963)
(0.0119396189279 -0.0449604675076 0.202590968809)
(0.00582373322363 -0.0380654233016 -0.0375052702421)
(0.0159715947429 -0.035923336454 -0.0331356836216)
(0.024451522146 -0.0346399090302 -0.0291302631707)
(0.0334835860369 -0.0334092196042 -0.0247029246648)
(0.0427509796772 -0.0321060332286 -0.019480918962)
(0.0513465916457 -0.0306704132192 -0.013413625527)
(0.0599331643023 -0.0304618936546 -0.00653166121576)
(0.0697195827633 -0.0316454433003 0.00224396764013)
(0.0802720284983 -0.0336367780272 0.0131913148081)
(0.0903266366589 -0.0357032923592 0.0275709285841)
(0.0977373402268 -0.0382035415508 0.0451828539056)
(0.100407793557 -0.0410806936708 0.0647379072079)
(0.100481540009 -0.0473249524619 0.0848178927329)
(0.0971880906302 -0.0537032252206 0.105201357116)
(0.0914633134234 -0.0615603604443 0.125443073142)
(0.0835805689107 -0.0665906864221 0.145237227058)
(0.0709682717437 -0.0702956402208 0.163187970269)
(0.0547928384173 -0.07167614913 0.178399726761)
(0.0351966087596 -0.07071854929 0.190526458924)
(0.0123637347803 -0.0674851320252 0.197952540492)
(0.00622990081515 -0.0384626318053 -0.0495595836654)
(0.0166179747676 -0.0375562290264 -0.0441769512452)
(0.0251527579593 -0.0370917066514 -0.0399409898388)
(0.0343632645092 -0.0361840250915 -0.0348486679771)
(0.0438696827234 -0.0350232502278 -0.0287644844107)
(0.0520645281893 -0.0330444539127 -0.0215360499054)
(0.0594149464128 -0.031475792274 -0.0131511852934)
(0.0685620231433 -0.0342693128606 -0.00306200474564)
(0.0786790730258 -0.0362891675749 0.00856001864478)
(0.08792484167 -0.0383790151505 0.0232458572379)
(0.0947758330888 -0.041227028448 0.0405483907875)
(0.0953316453048 -0.0436329052669 0.0592157524088)
(0.0934770065378 -0.0529875682331 0.0786722217224)
(0.0902444928194 -0.065608039208 0.0975734231138)
(0.0862715022848 -0.0764657427055 0.116641188563)
(0.0798695589052 -0.083425938381 0.135538909699)
(0.067768348663 -0.0891794846858 0.152140789298)
(0.0530348639406 -0.0922615148582 0.1665102965)
(0.0351818191627 -0.0931631364527 0.179019755346)
(0.0125953840634 -0.0913233542115 0.188302388175)
(0.00649526143165 -0.0361664099171 -0.0616675069617)
(0.0167518784328 -0.0356228153097 -0.0553675495252)
(0.0253176966589 -0.0358375918006 -0.0510760214658)
(0.0348711379139 -0.0357274254076 -0.0454657042131)
(0.0453340682005 -0.0355010629514 -0.0387406507817)
(0.0543159629006 -0.0348159743451 -0.0305845345401)
(0.0586206135323 -0.0311661605818 -0.0207059356225)
(0.0682502547839 -0.0396254683761 -0.00847277978192)
(0.078654474359 -0.0448379156855 0.0043490024826)
(0.0854459311658 -0.0487649211908 0.0201911166131)
(0.0912838492655 -0.0540436778117 0.0381470405183)
(0.0877862281034 -0.0523685355348 0.0558528484109)
(0.0791756805751 -0.0640466898001 0.0723220992383)
(0.0764963357394 -0.0876121757007 0.0895022958461)
(0.0781112553426 -0.0953726646407 0.10623159209)
(0.0740886896885 -0.10137809717 0.123040618412)
(0.0623011539182 -0.107642142544 0.137713229041)
(0.0490169667358 -0.111299584297 0.150514128083)
(0.0327946312342 -0.113669882433 0.160794255551)
(0.0118289256495 -0.113240837246 0.170009202002)
(0.00626167775445 -0.0289911638356 -0.0721665065294)
(0.0161550545421 -0.0295021428251 -0.0656689611311)
(0.0243222477343 -0.0305221628986 -0.0614110724801)
(0.0334906122713 -0.0315000363307 -0.0556191565647)
(0.043311629671 -0.0319504431282 -0.0485743021367)
(0.0534429703954 -0.0324956553135 -0.0398477727435)
(0.0478533297323 -0.0154101437849 -0.028639486634)
(0.0499948732304 -0.0545851135882 -0.0125707712534)
(0.0724852622557 -0.050736579164 -0.000602696516153)
(0.0760202341037 -0.0524386555279 0.016538038714)
(0.0865699969211 -0.0556055204702 0.0341043189317)
(0.0757001734343 -0.0515573622481 0.0518783806764)
(0.0598633387849 -0.0598100786062 0.0518271554331)
(0.0586433888155 -0.12408085646 0.0779169589015)
(0.0712562131982 -0.105888406866 0.0902742736194)
(0.0697285948283 -0.116233767359 0.106470704481)
(0.057057230195 -0.123312078347 0.119951082008)
(0.044579485517 -0.127294642713 0.131330821529)
(0.0293131888989 -0.128682205868 0.136745236191)
(0.0103654949313 -0.127330754977 0.142214917322)
(0.00530808186368 -0.0173337089213 -0.0793434246492)
(0.0144187318944 -0.0186427000899 -0.0733244907557)
(0.0222798034984 -0.0205634563341 -0.0694972583502)
(0.0316194490651 -0.022718700007 -0.064385937338)
(0.0412368625379 -0.0241328740683 -0.0578068117979)
(0.0688891851763 -0.0246163833369 -0.0514419482836)
(0.00373367803177 -0.0185250786664 -0.0418518184976)
(0.0164290892422 -0.135310846329 0.0684383675497)
(0.0799802598533 -0.127021759826 0.0754474209488)
(0.0592792228115 -0.131940720297 0.0866128825828)
(0.049775575185 -0.137524857502 0.0978185236477)
(0.0402909359859 -0.140100865821 0.107030130175)
(0.0280046598142 -0.139519226565 0.115265858069)
(0.00994429194355 -0.137027394855 0.122482794592)
(0.00439113304443 -0.00213147214271 -0.0814533154884)
(0.0124686743515 -0.00410193804338 -0.0761183402462)
(0.0196965255353 -0.00721704400784 -0.0731040480716)
(0.0289022468694 -0.0109773959275 -0.0686516519168)
(0.0393881842161 -0.0147212179442 -0.0625177264298)
(0.0686955548165 -0.0161283652551 -0.0562840817686)
(0.00723881077558 -0.0170550998926 -0.0449511840093)
(0.00966443089572 -0.145120969249 0.0417274167038)
(0.0804079729933 -0.140394426431 0.0495361146693)
(0.0571081479622 -0.14471550648 0.0637038874908)
(0.04768445121 -0.148846376547 0.0740835857369)
(0.0387166406425 -0.149981107075 0.0836385968912)
(0.0272600058602 -0.149169156848 0.0928752208187)
(0.00954413039738 -0.14706419582 0.101047758418)
(0.00298051620313 0.0149532071937 -0.0778875160006)
(0.00941401028965 0.0121534412845 -0.0731832646075)
(0.0157735606352 0.0072677558931 -0.07116398573)
(0.0244086514331 0.000870494170876 -0.0676446542156)
(0.0349683704891 -0.00744376560485 -0.0624943808314)
(0.0644308470214 -0.0164656525666 -0.0569199938355)
(0.0060550982219 -0.0362331282283 -0.04731494511)
(0.00586774761271 -0.130627569069 0.0174255899415)
(0.0739772608186 -0.138417598693 0.0243410355187)
(0.0515031562269 -0.148239802033 0.0370764959597)
(0.0438418244297 -0.153765888497 0.0466157023137)
(0.0361485902277 -0.155630502704 0.0563649274604)
(0.0258317986451 -0.155457014531 0.0660277877122)
(0.00907064766016 -0.154025318726 0.0742842595148)
(0.00134471040783 0.0323610925642 -0.0679065756797)
(0.00517015945934 0.0294358896166 -0.0641510938678)
(0.00932615878814 0.0240708166801 -0.0643729971603)
(0.0153017991541 0.0157649886133 -0.0620026223395)
(0.0236845698233 0.00396676335146 -0.0585565157029)
(0.0475040899547 -0.0115236499093 -0.054425011194)
(-0.00532954998832 -0.0461234601291 -0.0444422292932)
(-0.00183042698037 -0.116792466179 -0.00462623647782)
(0.0643630762899 -0.137763437012 -0.00347254866511)
(0.0441753466101 -0.147232291174 0.00787142098012)
(0.0389248491076 -0.153019145567 0.0167935099863)
(0.032707526322 -0.155535446732 0.0266671836352)
(0.0237857259825 -0.155985379893 0.0364747539617)
(0.00855131541796 -0.155069557791 0.0445607528899)
(-0.000112258569009 0.0485098755363 -0.0516003018449)
(0.0015706124583 0.0451010643922 -0.0488060042481)
(0.00311123275103 0.0388939297185 -0.0485380827251)
(0.00542131983323 0.0289515285324 -0.0493846666196)
(0.00844179206474 0.0154788267586 -0.0490782632167)
(0.00819743962736 -0.00282748289409 -0.0474459424486)
(-0.00542711468115 -0.0467518460101 -0.0447125668407)
(-0.0177051002567 -0.0391606307822 -0.0433533780361)
(-0.0364045015717 -0.0488954640586 -0.0575227216257)
(-0.0226821164107 -0.0518610062025 -0.0678141955544)
(-0.0107550978545 -0.0534590558974 -0.0713310815579)
(0.00200385471078 -0.0562196922076 -0.0686177419798)
(0.0352482022137 -0.0701711139236 -0.0661352896774)
(0.0484457973843 -0.0799616877698 -0.0420222937476)
(0.040899957072 -0.126894473882 -0.0323164289333)
(0.0373792430524 -0.13922584605 -0.0212937548555)
(0.0332096013299 -0.145769984763 -0.0125552243899)
(0.0284282739011 -0.148971045384 -0.00297319928804)
(0.0211471031272 -0.150093355214 0.00677861831059)
(0.00785712262571 -0.149713749783 0.0145255890568)
(-0.00237884573824 0.0620279324327 -0.0298111514038)
(-0.00483934411073 0.0584355124379 -0.0280365134869)
(-0.00740217927405 0.0514931126623 -0.0304062642844)
(-0.0092836215314 0.0416438614748 -0.0342173284504)
(-0.00930494958325 0.0293008260089 -0.038124882745)
(-0.0123633184154 0.014111190185 -0.0412346735367)
(-0.0155811625111 -0.00626008288274 -0.0455948187166)
(-0.027288197302 -0.0204400694598 -0.0501210028875)
(-0.0312974908886 -0.0270592265333 -0.0620651940585)
(-0.0240883591467 -0.0352669584722 -0.0709545270601)
(-0.0136955819879 -0.0420278289828 -0.0739681790969)
(-0.00122445195923 -0.0514916852714 -0.0740488858312)
(0.0183228044688 -0.0615998425579 -0.0720722701092)
(0.0296855368875 -0.0923652168095 -0.0615929890603)
(0.0284006117997 -0.111722942636 -0.0542244264384)
(0.0274993476277 -0.124939788218 -0.0462210566801)
(0.0259582437272 -0.132718713915 -0.0385906477909)
(0.0233097203894 -0.136781441319 -0.0295366311316)
(0.0179370867009 -0.138633358104 -0.0205510597381)
(0.00678310138117 -0.138665130976 -0.0134220986188)
(-0.00455956721793 0.0719863124805 -0.00427043245766)
(-0.0107791493388 0.0689875280304 -0.00304351489764)
(-0.0168458766646 0.0627050424777 -0.00661754083123)
(-0.0216902078996 0.0539433627482 -0.0126794013635)
(-0.0244662604663 0.043273440246 -0.0197697491168)
(-0.0279583842772 0.0302561260206 -0.0270758290048)
(-0.0309382131849 0.0158740225599 -0.0352019808927)
(-0.0369132593844 0.0015054821403 -0.0446332602364)
(-0.0390086788462 -0.00831849365056 -0.0575758742399)
(-0.0332620442311 -0.0183636059886 -0.0675055498427)
(-0.0254684769732 -0.0292978531174 -0.0726398275897)
(-0.015969450719 -0.0421365068264 -0.0759883495904)
(-0.00165822504797 -0.0571464165542 -0.0779096075808)
(0.00814622272805 -0.0796838211874 -0.0748112519503)
(0.0120402850462 -0.096037934043 -0.0718720288847)
(0.0161561480511 -0.108388752166 -0.0668144004421)
(0.0180880727973 -0.116295353781 -0.0600714925807)
(0.0176417528477 -0.121075876285 -0.0518148460086)
(0.0141242551404 -0.123614793218 -0.0440615895785)
(0.00544301093628 -0.123962935968 -0.0376153970682)
(-0.00665759996231 0.077087331392 0.0235609170446)
(-0.0165339712752 0.0742240408616 0.0241222762862)
(-0.0262911090284 0.0682909957209 0.0194387947092)
(-0.0345108087272 0.060123906684 0.0111439112189)
(-0.0403750173362 0.0498195495778 0.00065583715777)
(-0.0450576130847 0.0373579633797 -0.0108963926417)
(-0.0481401134247 0.0235806450039 -0.0238443094575)
(-0.0510104475097 0.00926793947469 -0.0377585771265)
(-0.0504213636341 -0.00143751466233 -0.0528334639178)
(-0.0445624617197 -0.0125817530203 -0.0640798144037)
(-0.0373124493261 -0.0247688023807 -0.0722633335019)
(-0.0285547896482 -0.0376331456158 -0.0791564556053)
(-0.0170155961565 -0.0513982881107 -0.0843857713285)
(-0.007063565178 -0.0682528965374 -0.0856842556274)
(0.000171352884048 -0.0808448451827 -0.0852471083603)
(0.00669974708095 -0.0911448790207 -0.0821559091194)
(0.0107300428951 -0.0985979300525 -0.0768260850894)
(0.0119640127956 -0.103744734833 -0.0701576895704)
(0.010133363997 -0.106849327765 -0.0642220311743)
(0.00380982800736 -0.107454315162 -0.0587680812466)
(-0.00863034012877 0.0763639149275 0.0523533150803)
(-0.0216661010996 0.0734749523274 0.0513884999288)
(-0.0344734747931 0.068155676115 0.0451362407859)
(-0.0457837422803 0.0608616267767 0.0350831524658)
(-0.0542245294471 0.0517796293551 0.0216629012397)
(-0.0603270083285 0.0410529805313 0.00622076259805)
(-0.0636856868219 0.0295083869664 -0.0111891562741)
(-0.0646037093214 0.0171622892393 -0.0294373166158)
(-0.0620142139205 0.00676987048124 -0.0462417931098)
(-0.0562836241139 -0.00431809539345 -0.0595149631718)
(-0.0492666097321 -0.0163755840868 -0.0708169880566)
(-0.0404453200644 -0.0286324177232 -0.0809766378276)
(-0.0294060148944 -0.0410690400495 -0.089011786218)
(-0.018685974453 -0.0542222893689 -0.0934873555188)
(-0.00936670113937 -0.064742381813 -0.0951029326077)
(-0.00134490314311 -0.0735774586428 -0.0936579182413)
(0.00404203911488 -0.0804170112072 -0.090010103619)
(0.00645298023271 -0.0855325264715 -0.0854393783049)
(0.00618047912358 -0.0887296545366 -0.0814630346957)
(0.00211666349805 -0.0891813360022 -0.0767768887724)
(-0.0100549797428 0.0688886359873 0.0797589205715)
(-0.0254981501344 0.066248820276 0.0773896705943)
(-0.0407981184401 0.0616842004292 0.0696910321316)
(-0.0547269078628 0.0554615424792 0.0573616013939)
(-0.0654752838517 0.0477886333824 0.0410784964943)
(-0.072744801225 0.0388155081567 0.0220391808477)
(-0.0762252855972 0.0293600425696 0.00119803340122)
(-0.075941330757 0.0194778009722 -0.0197687936314)
(-0.0723711074361 0.0104426635606 -0.038342412275)
(-0.066582631553 0.000511812449685 -0.054000240525)
(-0.0594038656527 -0.0100497256045 -0.0684529130379)
(-0.0500922361369 -0.0205448148248 -0.0814958232424)
(-0.0388191710828 -0.0307412551509 -0.0919765985706)
(-0.0271479241223 -0.0408676382252 -0.0987639701449)
(-0.0165828879807 -0.049274656894 -0.101923161608)
(-0.00780013995997 -0.0565145889831 -0.101959397534)
(-0.00167052588296 -0.0624336462681 -0.100088209535)
(0.00173988928316 -0.0669451526549 -0.0973267221325)
(0.00288152100398 -0.0697187834347 -0.0945849402219)
(0.000798994846977 -0.0699647759492 -0.0901943725398)
(-0.010639972188 0.0548509331253 0.102844943184)
(-0.0277943507479 0.0526167860132 0.0996778152843)
(-0.0449015466543 0.0488929550137 0.0907122950379)
(-0.0606429655505 0.0442859901558 0.0765059001976)
(-0.0729219874694 0.0386290486902 0.0577113357057)
(-0.0811003121299 0.0319748326494 0.0359056113369)
(-0.0847102044136 0.0249292581645 0.012592400913)
(-0.0838309009247 0.0176265598579 -0.0104097128869)
(-0.0798406648725 0.0107015985155 -0.0303546161805)
(-0.0742981318532 0.00291337994606 -0.0484111982317)
(-0.0670073423668 -0.00529921308685 -0.0655722876984)
(-0.057150732364 -0.0133855497583 -0.0810323272206)
(-0.0453692851661 -0.0210343658536 -0.0935509301869)
(-0.0330965315745 -0.0283297903816 -0.102154356787)
(-0.0218458056889 -0.0345331032639 -0.10661617593)
(-0.0126855672975 -0.0400289132577 -0.108209882915)
(-0.00605263509832 -0.0444767138704 -0.107847425399)
(-0.00181213314069 -0.0479038864319 -0.106331579277)
(0.000428647148463 -0.04996703632 -0.104357464814)
(-0.000180693659587 -0.050173962333 -0.100479077908)
(-0.0102561939139 0.0385483512219 0.119571769534)
(-0.0282018024929 0.035264153111 0.115377492251)
(-0.0465730769108 0.0320993102281 0.105203253645)
(-0.0632929122617 0.0292184320067 0.090088385828)
(-0.0765975575696 0.0257171881822 0.0700991257825)
(-0.0854531913886 0.0215202771591 0.0466325423287)
(-0.0892478825268 0.0170546735722 0.0217973060658)
(-0.0881430969415 0.012510419914 -0.00259600293818)
(-0.0840626086257 0.00799479653832 -0.0237175797542)
(-0.0786417407635 0.00299179363341 -0.0434912122301)
(-0.0713584951742 -0.00228381514156 -0.0627851193407)
(-0.0613070895704 -0.00737727121286 -0.0801319904575)
(-0.0492050523576 -0.0122240194917 -0.0943236419064)
(-0.0364375599827 -0.0164706437668 -0.104249353035)
(-0.0248843061132 -0.0201307725955 -0.109553893138)
(-0.0154583698298 -0.0235473722435 -0.11211186321)
(-0.00843165123584 -0.0264220604837 -0.112705537093)
(-0.00373413442584 -0.0285990457056 -0.112053627661)
(-0.000956613672753 -0.0299042098508 -0.110756924832)
(-0.000765559638709 -0.0303300853506 -0.107405545822)
(-0.00978670525528 0.0156879579816 0.127847402679)
(-0.0275799109147 0.0134023821056 0.124224883579)
(-0.0460546722939 0.0117163906147 0.113633732248)
(-0.0629872619222 0.0105322827392 0.097782252698)
(-0.0767237416748 0.00917466183228 0.0768763768632)
(-0.0857841781662 0.00757322139263 0.0524328318469)
(-0.0895586601743 0.00586525116603 0.0268715124033)
(-0.0883206276806 0.00419233844733 0.00198339254152)
(-0.0839577433878 0.00253991220459 -0.0194131327118)
(-0.0784356540173 0.000790819301757 -0.0398849202337)
(-0.0712916745754 -0.000891559851828 -0.0602317822349)
(-0.0613251230396 -0.00262622407963 -0.0786771657837)
(-0.049070183434 -0.00437203834932 -0.0937354490563)
(-0.0359816872707 -0.00600435755879 -0.103985051836)
(-0.0245607344944 -0.00715218605005 -0.109397450776)
(-0.0156009712328 -0.00842470437009 -0.111977511811)
(-0.00860563000794 -0.00955050401919 -0.113055828153)
(-0.00362419564858 -0.0104078293357 -0.113017537746)
(-0.000582563847362 -0.0108874565819 -0.112152713455)
(-0.000337740732427 -0.0101546243949 -0.109904027057)
(0.00400559778351 -0.00941160013606 -0.000448477117986)
(0.0124119540851 -0.00895234105225 -0.00010359441256)
(0.0207139034317 -0.00847178942666 -0.000971387671852)
(0.0304565162379 -0.00722285659575 -0.00261147603304)
(0.0408516904759 -0.00626868137177 -0.00209711257717)
(0.0515076747361 -0.00573776982317 -0.000315858535383)
(0.0633763410894 -0.00577103092314 0.00226045824372)
(0.0775799705002 -0.00605067986058 0.00701656411324)
(0.092683384805 -0.00704889860527 0.0178741548104)
(0.106574524445 -0.00776619363079 0.0343914214526)
(0.11734465788 -0.00903853220823 0.0578548336947)
(0.124039776487 -0.0104087119615 0.0841333495656)
(0.125642833086 -0.0122601535174 0.110966038566)
(0.121335068218 -0.013283459768 0.137793326941)
(0.113134324332 -0.0143834041717 0.16185189957)
(0.101186483124 -0.0143837897747 0.184751210158)
(0.0843313819791 -0.0138243510156 0.20362184571)
(0.0630239240165 -0.0127493659072 0.218146538682)
(0.0396936742037 -0.0112653407547 0.228230011849)
(0.0142587537541 -0.00855828589336 0.231740687216)
(0.00410096509279 -0.0262289672281 -0.00828661943429)
(0.0130567575407 -0.025394742558 -0.00831727509444)
(0.0222784751148 -0.0237836047987 -0.00900175409316)
(0.0322394201026 -0.0217669632032 -0.00673287344092)
(0.0420739385714 -0.0200388076785 -0.00380373369815)
(0.0520884180283 -0.0184397523328 -0.000396698089334)
(0.0632584439409 -0.0176711590451 0.00335733707165)
(0.0763845410869 -0.0173891462112 0.00907388742652)
(0.0910458413982 -0.0184848564563 0.0191352682588)
(0.104704631052 -0.0199486267201 0.037330632679)
(0.114729631773 -0.0219011672146 0.0587067618632)
(0.12085094838 -0.0240632470817 0.082758485521)
(0.123112469244 -0.0277390340842 0.108558221278)
(0.119892259899 -0.0304424938843 0.134492819353)
(0.112950933919 -0.0336124122857 0.160328686746)
(0.102249428713 -0.0349268217682 0.185216092097)
(0.0851926371649 -0.0350410761711 0.207486438289)
(0.0633462703968 -0.0335611146877 0.225517052034)
(0.0395399255503 -0.0301163548692 0.236901760824)
(0.0141509452727 -0.0257961127941 0.236382330031)
(0.00432662953028 -0.0409572470389 -0.0228739193214)
(0.0142800804883 -0.0381513558877 -0.0215878434972)
(0.0243712836561 -0.0354798291701 -0.0192806172576)
(0.0343758737539 -0.033284146789 -0.0156385705354)
(0.0442974992062 -0.030900044293 -0.0112426699734)
(0.0539037797772 -0.0286571081432 -0.00632134707358)
(0.0642364392237 -0.027659128605 -0.000886376920579)
(0.0762700515735 -0.0274768715007 0.00621300568213)
(0.0895838612743 -0.0287046417362 0.016986640002)
(0.102734486479 -0.0308344897019 0.0333298249751)
(0.113029977034 -0.0330010535249 0.0540971695517)
(0.118544910233 -0.0354828546678 0.0782236815135)
(0.120403587239 -0.0402550867771 0.102635202706)
(0.117685088297 -0.0452034929161 0.127777990562)
(0.111439104305 -0.0510226784186 0.153558778764)
(0.101678148776 -0.0553019298128 0.178935560634)
(0.0855792476359 -0.0573091373106 0.20240477691)
(0.0651052803847 -0.0560278330665 0.222588165299)
(0.0411715941797 -0.0521535546727 0.235672493998)
(0.0145409018816 -0.0479711087652 0.236195804448)
(0.00679919771382 -0.0475083134517 -0.0386844328672)
(0.0175605413552 -0.0445058484965 -0.0354228697373)
(0.0266710888662 -0.0425725721017 -0.0318542774227)
(0.0368298260506 -0.0403184673972 -0.027165150224)
(0.0470161057063 -0.0379723697152 -0.0215270212693)
(0.0561355264533 -0.0358131710165 -0.0151330426498)
(0.0652813288431 -0.035105726598 -0.00800733394927)
(0.0760378522991 -0.0359641543525 0.000586376762155)
(0.0883549943445 -0.0379197465504 0.0118979699409)
(0.101002344854 -0.0400758373868 0.0277188858545)
(0.111093212546 -0.042606566719 0.0482910250763)
(0.115470207893 -0.0455680298213 0.0715798252635)
(0.116220249197 -0.0523274755803 0.0958799305771)
(0.11342752932 -0.0600990614925 0.120090440884)
(0.107996896563 -0.0690029369196 0.144568850816)
(0.0995628144723 -0.0752932141996 0.169494792801)
(0.0853344369243 -0.0794798748725 0.19312348761)
(0.0661680564093 -0.0800656681404 0.213102692859)
(0.0429683487223 -0.0776786254516 0.228378327665)
(0.0156021090398 -0.0731068685351 0.233436679948)
(0.00760273078297 -0.0471954000581 -0.0558187571513)
(0.0184053129412 -0.0459857687901 -0.0496230462363)
(0.0281772530104 -0.0450674854282 -0.0455802761903)
(0.0388940197003 -0.0431855035841 -0.039998170008)
(0.0491866778386 -0.0412165661301 -0.0332390494766)
(0.0578066008425 -0.0388103075635 -0.0254999645574)
(0.0654800128207 -0.0367181000219 -0.0164185499005)
(0.0753564530526 -0.0391479480405 -0.00655683454689)
(0.0870871958171 -0.0409077760836 0.00560522983537)
(0.0988915192545 -0.0425871113902 0.0217071722651)
(0.108493494264 -0.0448337791144 0.0418134281804)
(0.110532400823 -0.0470770537332 0.0641026596436)
(0.10905983615 -0.0578537017625 0.0872447766184)
(0.105947777945 -0.0717999946272 0.110397299166)
(0.10247459424 -0.084205072271 0.133666147045)
(0.0953565618795 -0.0927216020858 0.156949284086)
(0.0818459610475 -0.0997781843711 0.178882979145)
(0.0646710837223 -0.103264458064 0.198659584075)
(0.0438345218508 -0.104013732402 0.215296640011)
(0.0166250301767 -0.101267481358 0.225575954851)
(0.00825610764783 -0.0441035620606 -0.0717090553287)
(0.0190031237068 -0.0435423153856 -0.0638221003879)
(0.0291352605862 -0.0432791798491 -0.0595409456857)
(0.040105007945 -0.0424748084822 -0.0532042365508)
(0.0510871579516 -0.0417915624068 -0.045718568067)
(0.0604974890808 -0.0410410770364 -0.0372000408657)
(0.0649667421221 -0.0360745123369 -0.0259706291208)
(0.0756534524855 -0.0430484357971 -0.0136520702208)
(0.0878258454977 -0.0481824628162 0.000200267037884)
(0.0973036814027 -0.0515996285248 0.0181984445895)
(0.105825508494 -0.0559048646012 0.0390674668878)
(0.102094969263 -0.0533299135367 0.059634945594)
(0.0931110418369 -0.0732838215529 0.0806425404455)
(0.0915397580337 -0.0934120973801 0.102107839148)
(0.0927719393925 -0.103365250036 0.122110303474)
(0.0877701805972 -0.111467943587 0.143243494326)
(0.0746325222188 -0.119205551688 0.16268067945)
(0.0587371097786 -0.123609490591 0.177353164557)
(0.0400516240368 -0.128611544506 0.193976569329)
(0.015751414177 -0.130178160713 0.207389748167)
(0.00804376305357 -0.0351246580034 -0.0851829021229)
(0.018619389593 -0.0360314588457 -0.0768414604092)
(0.0285128943333 -0.0368004502822 -0.0726310453466)
(0.0388040328343 -0.0375733646625 -0.0659623957574)
(0.0487074294789 -0.0378957862357 -0.058390529423)
(0.059665718843 -0.0393300010208 -0.0497040737117)
(0.0551153200093 -0.0184201083691 -0.036185515528)
(0.0584180948733 -0.0595706461324 -0.0182435734347)
(0.0811506656283 -0.0527843207565 -0.00410679202495)
(0.0860993537309 -0.0543617474459 0.0160803877232)
(0.100341841984 -0.0570265012254 0.0340124416206)
(0.081536116518 -0.0520609854467 0.0464932977629)
(0.0694334580897 -0.0684442910702 0.0592092806533)
(0.076634771085 -0.126599114283 0.0868533771955)
(0.0813526874193 -0.114158867949 0.103740224726)
(0.0812810508212 -0.128233544831 0.125667765567)
(0.0675383347814 -0.136845196603 0.142320842265)
(0.0508214469907 -0.142188910517 0.13915590973)
(0.0321523346403 -0.14411454761 0.146952941206)
(0.0123696542357 -0.144639244783 0.158802192567)
(0.00695202717547 -0.020611298983 -0.0946261183918)
(0.0169806629582 -0.022601613414 -0.0866055966511)
(0.0262829565911 -0.0246450244659 -0.0826270550934)
(0.0363526617588 -0.026929197379 -0.0769427470261)
(0.0449707505762 -0.0285457172417 -0.0699279091453)
(0.0757431229358 -0.0304130474519 -0.0648969770089)
(0.0030687736964 -0.022708747723 -0.0482720801912)
(0.0156929349465 -0.147160503567 0.0870125597114)
(0.0870480914245 -0.139161165212 0.0847897875057)
(0.066209771743 -0.146285430458 0.0998836083298)
(0.0579520443639 -0.153060427 0.113808380901)
(0.0467881356737 -0.156371121018 0.122985696014)
(0.0327162462158 -0.15372396228 0.1334607609)
(0.0124126948432 -0.150829866291 0.146260677165)
(0.00578363734091 -0.00173835824659 -0.097615515098)
(0.0148264808733 -0.00444086562677 -0.0906030738005)
(0.0234833124714 -0.0079406827506 -0.0879712656505)
(0.0332976999652 -0.0119800235949 -0.0827820507217)
(0.0423021085684 -0.016236656764 -0.076428836918)
(0.0750556721819 -0.0183306476976 -0.0717802938816)
(0.00630943080322 -0.0193159237752 -0.0462206084582)
(0.0091144178962 -0.162310609827 0.0538668178209)
(0.0885337749217 -0.158119425627 0.0606423456789)
(0.0639103512285 -0.161902411076 0.0766757738193)
(0.055059762878 -0.166704912013 0.0884384164568)
(0.0453589838418 -0.167656724354 0.0992176679918)
(0.0326031796909 -0.166313568411 0.110978796765)
(0.0125189031604 -0.164222897607 0.123819900957)
(0.00438870096143 0.0195528637408 -0.0939357495121)
(0.011859597629 0.0159205117 -0.0875994599359)
(0.0193952604713 0.0100209654419 -0.0856348423148)
(0.0283817853 0.00321448595192 -0.0813717981091)
(0.0371583700858 -0.00608270913685 -0.0764642392031)
(0.0696309190707 -0.0159130004204 -0.0724101875417)
(0.00466311052391 -0.036650810332 -0.0472543423875)
(0.00397129908582 -0.148585226263 0.0241856695074)
(0.0808074624078 -0.158196331096 0.0320763705234)
(0.0572507674617 -0.168843778387 0.04546174527)
(0.0505160729508 -0.174818894781 0.0557783287802)
(0.042556591161 -0.176450763454 0.0669691909316)
(0.0309440363051 -0.17615826764 0.0794117166416)
(0.0122552285899 -0.174689642457 0.0918515872502)
(0.00247839023007 0.0414855598797 -0.0825101567777)
(0.00684760058524 0.0374647342229 -0.0768500102443)
(0.0122937517308 0.0318570834603 -0.0762381141276)
(0.0187456703779 0.0221305788691 -0.0740007386803)
(0.0252525586173 0.00883827058318 -0.0706364711047)
(0.052505293088 -0.00746618228404 -0.0691435644481)
(-0.00676200780059 -0.0466714341689 -0.0509187933169)
(-0.00439200420523 -0.134009758286 -0.00158680273425)
(0.0695147276513 -0.160388783479 -0.00170405893458)
(0.0490936276788 -0.17004717092 0.00956359464841)
(0.0451174696069 -0.175728810094 0.0190000825772)
(0.0386918795008 -0.177928232025 0.0307277525762)
(0.0281173126227 -0.178297340262 0.0434953537283)
(0.011609815701 -0.177317816129 0.0563180950932)
(0.000706624232171 0.0617230820257 -0.0631308791213)
(0.00373488028084 0.0572006549196 -0.0582676379403)
(0.00567582939013 0.0503926129058 -0.0595746256935)
(0.00703443341705 0.0384991273944 -0.0598152826628)
(0.00861045554944 0.0230156427347 -0.0600843599123)
(0.00734131744897 0.00338005513888 -0.059210443514)
(-0.00673300392416 -0.0460652981745 -0.0554677621729)
(-0.0222855389968 -0.0385937913498 -0.0495071147339)
(-0.0434005360823 -0.0494129571076 -0.0669347105136)
(-0.026887567842 -0.0526541103727 -0.0815208832019)
(-0.0125005646849 -0.0551417269635 -0.0881663873531)
(0.00130201371384 -0.0591711126501 -0.0816361899357)
(0.0450834635519 -0.0765013417024 -0.0759981676366)
(0.057915606263 -0.0921006226105 -0.0464846614088)
(0.0458653419571 -0.148319852836 -0.0369468665459)
(0.042959051271 -0.161555276543 -0.0266911188497)
(0.0393023788052 -0.168086618257 -0.0173444550451)
(0.034043319506 -0.171123874989 -0.00525324252722)
(0.0247050386813 -0.17227966237 0.00742232399615)
(0.0104926377579 -0.172108652652 0.020405562894)
(-0.00215894681245 0.0788387824031 -0.0367137905195)
(-0.00446808203334 0.0740878281053 -0.032362908996)
(-0.00708818558334 0.0652163669179 -0.0361560621695)
(-0.00970268543342 0.0538124228134 -0.0409699233768)
(-0.0107452309743 0.0397265782582 -0.0462228853091)
(-0.0144676849376 0.0229180237256 -0.0499611321461)
(-0.0187963708534 6.54640129035e-05 -0.0525457296341)
(-0.0332776129375 -0.0168055615708 -0.0586150920727)
(-0.0363924698094 -0.0239405994537 -0.075723047911)
(-0.0264036785039 -0.0334999160105 -0.0864555286986)
(-0.0146141660143 -0.0426380384729 -0.0870507145397)
(-0.0020647223162 -0.0550332600105 -0.0859182621109)
(0.0202756390557 -0.0677010767393 -0.0833866996178)
(0.0332325249492 -0.106797337728 -0.0720262205407)
(0.0320764343582 -0.129807946502 -0.0660012767449)
(0.0323944512347 -0.144688152436 -0.0581172012954)
(0.031681010905 -0.152936867007 -0.0492528456854)
(0.0284753636278 -0.157179669019 -0.0375616223957)
(0.0209201882023 -0.159309485065 -0.0255351051297)
(0.0089120257243 -0.159345768719 -0.0120386606925)
(-0.00510856938959 0.0918407989874 -0.00486038270473)
(-0.0120078716853 0.0873529274115 -0.000842455066743)
(-0.018673878094 0.0793430353613 -0.00614188123215)
(-0.0243477099798 0.0687450977142 -0.0138845110844)
(-0.0283770580383 0.0563595364051 -0.0229128041833)
(-0.032874680649 0.0415368498582 -0.0321789460523)
(-0.0366704424705 0.0244538444217 -0.0415519568279)
(-0.0438261916193 0.00834616702042 -0.0526228970075)
(-0.0453806028435 -0.00263440587915 -0.0700999936793)
(-0.0377887136331 -0.0147080012502 -0.0809500021625)
(-0.0294060538182 -0.0288988027888 -0.0844554656737)
(-0.0195567345334 -0.0450210994914 -0.0877633816)
(-0.00329119432268 -0.0636352848979 -0.0912865468224)
(0.00866671779084 -0.091184702364 -0.0899200664792)
(0.0141026613534 -0.11033400878 -0.088547779898)
(0.0201850026215 -0.124396075465 -0.0833286669897)
(0.0231748629239 -0.133358765389 -0.0747453818877)
(0.0221590229756 -0.138911408153 -0.0635790497599)
(0.016632577678 -0.141999744306 -0.0531847578951)
(0.00700030076498 -0.141984251038 -0.0398269613354)
(-0.00807968573899 0.0988672485916 0.0305355277547)
(-0.0195208414818 0.0941846698412 0.0336150108801)
(-0.030696174524 0.0861694661744 0.026559359226)
(-0.0401939176783 0.0760999989941 0.0158522915783)
(-0.0472909144 0.0639578897032 0.0026231798931)
(-0.053066003237 0.0497440949023 -0.0116123279418)
(-0.0567332919619 0.0338945823592 -0.027271892324)
(-0.0601291625829 0.017342555493 -0.0454812583154)
(-0.0587540598545 0.00536234370242 -0.0635446774096)
(-0.0518061379503 -0.00817949364467 -0.0751677364775)
(-0.044286180125 -0.0234092996231 -0.0836732303853)
(-0.0347347589721 -0.039301266252 -0.0922385934981)
(-0.0209582446348 -0.0559413486674 -0.100103417081)
(-0.00844404803614 -0.0761964202734 -0.1034341935)
(0.000923247567445 -0.0910905214891 -0.103893865444)
(0.00942172636739 -0.103236876956 -0.100532291763)
(0.0145868727909 -0.112297123912 -0.0934601746408)
(0.0154258981602 -0.118857014242 -0.0845265817345)
(0.012249612972 -0.122720661321 -0.0764425094097)
(0.00458649124884 -0.122842247984 -0.0634758890654)
(-0.0110061067795 0.0980926198212 0.0668510360285)
(-0.0264434812588 0.0935821391412 0.0674492034327)
(-0.0412927746136 0.0864303222923 0.0581869876176)
(-0.054244506245 0.0771566624896 0.0459015229691)
(-0.0643332208905 0.066294907272 0.029297324732)
(-0.071566797058 0.0538665596057 0.010310537724)
(-0.075649483572 0.0405127403551 -0.0112728791682)
(-0.0762143328199 0.0262539290133 -0.0347262877722)
(-0.0726315719807 0.0144843762073 -0.0545323532142)
(-0.0662468769309 0.000877837366744 -0.0686341295293)
(-0.0589281086998 -0.0139039869052 -0.0815347282052)
(-0.0488509686501 -0.0286676651463 -0.0943609602094)
(-0.0355085929316 -0.0434650021978 -0.105325764224)
(-0.0220616779707 -0.0592454526682 -0.111903722275)
(-0.0102587824388 -0.071817931668 -0.114615469302)
(-0.000206119172348 -0.0824003542252 -0.112953992135)
(0.00628560144716 -0.0909784770334 -0.108182522811)
(0.00864163034731 -0.0975836480745 -0.102125202846)
(0.00744395366521 -0.101640218347 -0.097168865534)
(0.00222207983924 -0.101170170194 -0.0856391483175)
(-0.0129396258466 0.0881678456087 0.100818937994)
(-0.031241922413 0.084693499118 0.0995677349838)
(-0.0493993407595 0.0789497422039 0.0895059104713)
(-0.065815392268 0.0709187755785 0.0739517809042)
(-0.0783688342101 0.061482769939 0.0538014087141)
(-0.0869313233448 0.0508724997543 0.0302593453607)
(-0.0907992762101 0.0398724399885 0.00437145211725)
(-0.0898717541331 0.0285642105746 -0.0219667757823)
(-0.0853950564407 0.0181109801581 -0.0435778951326)
(-0.0793331477012 0.00571796705712 -0.0610465063972)
(-0.0715496500789 -0.00725610182475 -0.0782092982897)
(-0.0606403449473 -0.0198530925323 -0.094684269731)
(-0.0468947117874 -0.032007427713 -0.10820915196)
(-0.0323797660634 -0.0441484134486 -0.117369449774)
(-0.0190528844174 -0.0541037404816 -0.121585161394)
(-0.00828468282226 -0.0628930678323 -0.121508179639)
(-0.000987793803001 -0.0702954118738 -0.11908276854)
(0.00266516710768 -0.0761058345302 -0.115459868752)
(0.00326316254384 -0.0797031137406 -0.111440893753)
(0.000301610063294 -0.0788673940983 -0.10095805633)
(-0.0136503441524 0.0698896417274 0.129147095877)
(-0.0339970703551 0.0670371972848 0.127714366192)
(-0.0545404887202 0.0623549247112 0.116790886368)
(-0.073483391596 0.0567923040314 0.0984003171661)
(-0.0879168137163 0.0499515955641 0.0748475705185)
(-0.0973428988317 0.0419963492709 0.0476421712366)
(-0.101226104173 0.0337413934892 0.0186519067795)
(-0.0993784491603 0.0252419815239 -0.00970755893654)
(-0.094758259795 0.017175360834 -0.0327766444307)
(-0.0891868059734 0.00731828196182 -0.0536529939373)
(-0.0811440192018 -0.00293731723788 -0.0744079413356)
(-0.0695042634259 -0.0127688138663 -0.0937619841211)
(-0.0551865553296 -0.0220335367106 -0.109708108806)
(-0.0398170478603 -0.0307701349135 -0.120899412367)
(-0.0257841800804 -0.0380186142047 -0.126472649529)
(-0.0146809667187 -0.0446360302717 -0.128405228596)
(-0.006739682394 -0.0502231734192 -0.127827969683)
(-0.00205258652806 -0.0547059057486 -0.125199636353)
(-0.00020203467292 -0.0575260421467 -0.122558108159)
(-0.0011502763467 -0.0565474041954 -0.112878823663)
(-0.0134803122173 0.0474589093969 0.149627464201)
(-0.0353008950141 0.0447280213585 0.147385288322)
(-0.0568849975165 0.0410488529254 0.13444374576)
(-0.0767512479933 0.0377865824707 0.115826920181)
(-0.0925809828648 0.0336483071228 0.0908743872272)
(-0.102793973077 0.0285088214952 0.0614247146154)
(-0.106788312736 0.023179360857 0.0303627354712)
(-0.104582274451 0.0176908372944 0.000195312809737)
(-0.0997719241352 0.0124857187411 -0.0241538445241)
(-0.0945985985282 0.00601964078268 -0.0472266850239)
(-0.0867366196158 -0.000833699183702 -0.070829946997)
(-0.0748267703761 -0.00732830648694 -0.0925873656945)
(-0.0600402931171 -0.0134341168158 -0.110712904697)
(-0.0438948987728 -0.0187938800352 -0.12365713905)
(-0.0295155299382 -0.0229353089999 -0.129813450718)
(-0.0182021629225 -0.0268091799017 -0.132512291258)
(-0.00996380874607 -0.0303895298015 -0.133088759579)
(-0.00489388644406 -0.0333846079457 -0.131993327549)
(-0.00215753744237 -0.0351266609101 -0.129682143238)
(-0.00183651400541 -0.0342865392218 -0.120447891678)
(-0.0116089489384 0.0182431169036 0.156276529977)
(-0.0339702980771 0.016976296619 0.153128317158)
(-0.0571053194654 0.0154139100537 0.1404458547)
(-0.0774544947625 0.0140528988384 0.121957380526)
(-0.0937301550437 0.012340981175 0.0970801324054)
(-0.104114411398 0.0102126338272 0.0674144482653)
(-0.107957047164 0.0080835991857 0.0364240977083)
(-0.105363786988 0.00604101352514 0.00582933750643)
(-0.0998457790271 0.00415064126582 -0.0186333955747)
(-0.0942917556485 0.00190525060579 -0.0415794715134)
(-0.0870127568331 -0.000555836964843 -0.0655002634044)
(-0.075415829949 -0.00287938980004 -0.087633044086)
(-0.0602444354265 -0.00499247311541 -0.105616583174)
(-0.042993430636 -0.00683650826665 -0.11794311965)
(-0.0281390827498 -0.00868725919984 -0.12229743413)
(-0.0170769597881 -0.0100370623048 -0.126023404978)
(-0.00919708979039 -0.0115438806277 -0.128530550821)
(-0.00384324265084 -0.0128026137003 -0.128377495866)
(-0.00064256261042 -0.0132351445323 -0.125920411724)
(-0.00074963904564 -0.0119429900634 -0.12126138333)
(0.0035447594239 -0.0130838357906 0.000210879728334)
(0.0120908262218 -0.0133257655286 -0.000322614555451)
(0.0197880392479 -0.0133942658096 -0.00263273110722)
(0.0294689327608 -0.0109518479938 -0.00464978475849)
(0.040659122241 -0.00926930572491 -0.00513471810451)
(0.0517191480341 -0.00779465082465 -0.00404797685711)
(0.0641396857341 -0.00714885930402 -0.00246863629722)
(0.0805781726783 -0.0067046373365 0.00244802937417)
(0.099346901095 -0.0078218212226 0.0117688937147)
(0.117810213049 -0.00732490984988 0.0318449224813)
(0.133014733313 -0.00973678419648 0.0625526344859)
(0.141711280525 -0.0123727828615 0.094161718881)
(0.145373683676 -0.014628930578 0.124964664268)
(0.141681098592 -0.0168354645105 0.155869978223)
(0.1321343562 -0.0178442910831 0.184618155536)
(0.11773166467 -0.0176554870391 0.211744049566)
(0.0970185181968 -0.0155073700825 0.234141978787)
(0.0722898534398 -0.0129010088718 0.25019575475)
(0.0443030000874 -0.0108061225682 0.261333627201)
(0.0159480751455 -0.00799634555263 0.264134534)
(0.00294396360061 -0.0351423211209 -0.0109998028499)
(0.0120784184277 -0.0339145379693 -0.00912241303131)
(0.0227587719538 -0.0309781177821 -0.00766388637102)
(0.034039349871 -0.0266846828208 -0.0055232153783)
(0.0442002599319 -0.0228735392265 -0.00247087756067)
(0.0542391060688 -0.0195232207872 0.000356558343391)
(0.0652022322248 -0.0177038270533 0.00281822390818)
(0.0789064600892 -0.0167757355657 0.00684882811219)
(0.0970700496179 -0.018248176119 0.0169838101919)
(0.114967908608 -0.0208010216735 0.0346953086528)
(0.127691482962 -0.0248618441461 0.0589613796506)
(0.137131275876 -0.0293545113996 0.0856455339454)
(0.141393063023 -0.0356942819495 0.112791445968)
(0.139800502602 -0.0414382011963 0.141339553704)
(0.133703732543 -0.0455447742818 0.172780451184)
(0.12246751641 -0.046502432183 0.202376591741)
(0.103470264078 -0.0431500158863 0.230749076516)
(0.0767031120291 -0.0364342886358 0.2527749587)
(0.0447945212734 -0.0303314782041 0.266825270606)
(0.0152593798378 -0.0246256237472 0.272538071627)
(0.00325983626731 -0.0513885808024 -0.0294719362397)
(0.0147779002939 -0.0470545898695 -0.0242400795927)
(0.0272274592623 -0.0421317358303 -0.0205934680775)
(0.0391356495977 -0.0375026720398 -0.016515458785)
(0.0496474980051 -0.0326005964738 -0.0117369994337)
(0.0586817566371 -0.0285645488555 -0.00653144927648)
(0.0680756802193 -0.0269221141671 -0.00146303115261)
(0.0801373723631 -0.0270096741458 0.0042142123992)
(0.0952954875542 -0.0291384960257 0.0140225222102)
(0.111497544342 -0.0340692189925 0.0307498913328)
(0.125663559822 -0.0385443648679 0.0536332013565)
(0.134265764462 -0.0439606947187 0.0795016796132)
(0.137610099331 -0.0519299329027 0.107085844816)
(0.137384106251 -0.0603703396559 0.136086297252)
(0.133755999434 -0.0693256104866 0.165737899086)
(0.125872750537 -0.0740187722801 0.196018656981)
(0.109676921218 -0.0737196422228 0.224363492973)
(0.0830431827229 -0.0686220609372 0.248643797897)
(0.048461498346 -0.0598740581306 0.26575040178)
(0.0158271064429 -0.0501298147577 0.274816595112)
(0.00530549338645 -0.0594408637994 -0.0491283182404)
(0.0187647025585 -0.0534843453896 -0.0408869849529)
(0.0324472149803 -0.0491388370109 -0.0366853826619)
(0.0450334030496 -0.0443609863881 -0.0312083670712)
(0.0555074068124 -0.0399328244217 -0.0241674855916)
(0.0634841306085 -0.0365461937115 -0.0170662292604)
(0.0706357517947 -0.035065302574 -0.00985756802087)
(0.0807695329932 -0.0366126500369 -0.00267559391384)
(0.0941645363019 -0.0399226749062 0.0074217286138)
(0.109714757077 -0.0441980321059 0.0229308588779)
(0.123494750808 -0.0488350448372 0.0456089198741)
(0.130815362751 -0.0545200372138 0.0719595510369)
(0.133232834396 -0.0641656643013 0.101123696198)
(0.132519754815 -0.0754591415778 0.129040623407)
(0.130865037864 -0.0876201299782 0.157028456682)
(0.12656871741 -0.0960334701442 0.185910712857)
(0.113524671456 -0.099924866587 0.213592432216)
(0.0898218888868 -0.0980337851939 0.237899572238)
(0.0564394711384 -0.0898042757049 0.258655865477)
(0.0186763979776 -0.0768811242287 0.277469778325)
(0.00746759766353 -0.0600488522126 -0.0717460727174)
(0.0226640364205 -0.0548679311777 -0.0593686710778)
(0.0374230529394 -0.0516485122673 -0.0539942405754)
(0.0501756919528 -0.0481984186741 -0.0466460067545)
(0.0598483499374 -0.0446386670425 -0.038151498544)
(0.0670943007131 -0.0414235612417 -0.0301015131971)
(0.0725042234692 -0.0383035640248 -0.0210078654887)
(0.0806620129853 -0.0412484785627 -0.0125916993361)
(0.0932680038309 -0.0439249726409 -0.00142966421483)
(0.107852321271 -0.0467896332548 0.0148300417447)
(0.121178724696 -0.0504572166372 0.0372992708147)
(0.126015455622 -0.0546979768371 0.0636820249304)
(0.12602956398 -0.0680322841534 0.0916610332491)
(0.124907915225 -0.0852684207384 0.11876536837)
(0.125248615449 -0.100287193736 0.145922500661)
(0.12308831141 -0.111391952984 0.172489563996)
(0.112978800773 -0.119432409415 0.198709395748)
(0.0936794524238 -0.123683024725 0.222499771896)
(0.0633428082867 -0.119785175242 0.2454900913)
(0.0219096526114 -0.109808946172 0.273773810227)
(0.0096620251582 -0.0552315123305 -0.0919328241975)
(0.0260265576916 -0.0518216402398 -0.0779605308994)
(0.0412207980958 -0.0505043464336 -0.071545742102)
(0.0531276671431 -0.0491184883652 -0.0622095668865)
(0.0628372809264 -0.0470228606212 -0.053341315819)
(0.0711573606899 -0.0457974029658 -0.0455833598728)
(0.0727446042937 -0.0382807518803 -0.0344565456161)
(0.0811483162367 -0.0439463189065 -0.0243611329018)
(0.0947196233256 -0.0486752843846 -0.0110615188747)
(0.107505258671 -0.0523600070081 0.00801197474203)
(0.119700574449 -0.0580420280373 0.0333056181455)
(0.118308765389 -0.0588976319275 0.0583446672228)
(0.110293827741 -0.0789938159799 0.0854571400586)
(0.110861562399 -0.104215716637 0.109693405642)
(0.115058684141 -0.116413853997 0.133483452431)
(0.116161159745 -0.125476518475 0.158079855764)
(0.105967220083 -0.135513525744 0.181708277195)
(0.0902600582272 -0.15321200384 0.20274532645)
(0.0647831932736 -0.159359014795 0.22655124452)
(0.0224843529704 -0.157674765291 0.255960488162)
(0.0109897008084 -0.0446158807628 -0.109624959195)
(0.0275024712991 -0.0434919524027 -0.0948919158306)
(0.0420659064733 -0.0440732862198 -0.0880003541054)
(0.0524773550094 -0.0450873631448 -0.0782902602645)
(0.0605698248393 -0.0438237498282 -0.0700481669697)
(0.0717819623912 -0.045734192174 -0.064050181221)
(0.0646410609106 -0.0169944017946 -0.0512537871629)
(0.0657184571188 -0.0649857971068 -0.0324236675992)
(0.0877116772512 -0.0554527682389 -0.0160692353996)
(0.0981930566964 -0.0564254813852 0.00807554881524)
(0.115520214665 -0.0592978557789 0.0319823662946)
(0.0991314382195 -0.0560700830316 0.0354139725715)
(0.0849899378699 -0.0729092030388 0.067561133768)
(0.093113806611 -0.127780295592 0.0884250955597)
(0.102991131779 -0.124833666421 0.114439270329)
(0.108675210366 -0.141452261921 0.141430640577)
(0.0872454318554 -0.152829600843 0.163015586827)
(0.0685580997124 -0.160673721536 0.177248727491)
(0.0528535697846 -0.165724014666 0.193862233821)
(0.0181560429789 -0.166435582133 0.218735854394)
(0.0111194107615 -0.0273421720147 -0.122260997516)
(0.0269968260021 -0.0280950580694 -0.108280741991)
(0.0402327195777 -0.0305513619939 -0.101719702226)
(0.0500393378971 -0.0332229914997 -0.092749281284)
(0.0558190156336 -0.034383162843 -0.0855686228521)
(0.0925101416641 -0.0365234228312 -0.0860467649609)
(0.00573470219611 -0.0210363876239 -0.080117887606)
(0.0114034314168 -0.154921088593 0.117402817572)
(0.0991694216362 -0.149396602321 0.10548489199)
(0.089887190488 -0.157761640814 0.121889953735)
(0.085149910823 -0.165509538829 0.135051779422)
(0.0720580832953 -0.159845188722 0.146564533761)
(0.0508452378509 -0.157977762873 0.161511980261)
(0.0161322220802 -0.15754148809 0.18029691075)
(0.0108672872763 -0.00431361715255 -0.12771333484)
(0.0252756565277 -0.0064600522184 -0.114732358851)
(0.0376298399392 -0.0102580020293 -0.108853134492)
(0.047212150347 -0.0144910863125 -0.101640978976)
(0.0528069739125 -0.0191402429397 -0.0958918144876)
(0.0958571930586 -0.0215458108444 -0.0987822354167)
(0.0135284524074 -0.0164003826595 -0.0914534958505)
(0.00789888831734 -0.181349646327 0.0718424303854)
(0.106368733231 -0.169658262487 0.0728108098458)
(0.0862266841718 -0.171666319605 0.0921628679536)
(0.0814393095511 -0.176744033855 0.10480352436)
(0.07075031303 -0.178660685141 0.11747485298)
(0.0505212986497 -0.179151936793 0.134608150462)
(0.0169623799718 -0.179346897661 0.155762910457)
(0.0101431720031 0.0217726244327 -0.124180484895)
(0.0235529512843 0.018381268109 -0.112282576345)
(0.034193033796 0.0129788773608 -0.106860156542)
(0.0419506393769 0.00532379787512 -0.101215646231)
(0.0469909206548 -0.00479437835567 -0.0969601625714)
(0.09020033027 -0.0157415891649 -0.100644702469)
(0.0121267682363 -0.0411571677341 -0.0917808701728)
(0.00134324319023 -0.169239573882 0.0361608335457)
(0.0986657522434 -0.174496185942 0.0382038741931)
(0.0783718736926 -0.182788896341 0.0555930704005)
(0.0753754746564 -0.18835675075 0.0673509896751)
(0.0669925359844 -0.191512832962 0.0802192990328)
(0.0481426448664 -0.193903684037 0.0981962888438)
(0.0162103603756 -0.195728797117 0.118087260865)
(0.00917851909343 0.0489427345685 -0.110799280394)
(0.0202705483393 0.0447471516738 -0.0999942494579)
(0.0273455150588 0.0380008663543 -0.0947808607349)
(0.0315172561571 0.0275925412101 -0.0913976171467)
(0.0336279860363 0.0131581369285 -0.0893312197832)
(0.0676603905646 -0.00341452650115 -0.095457353451)
(-0.00456018802783 -0.0546376838959 -0.0856013859529)
(-0.00758664337883 -0.153052054929 0.00260096306833)
(0.0860833583325 -0.179051124893 -0.00209886988924)
(0.0688459036831 -0.185657391776 0.0127790754273)
(0.0687855074161 -0.190307958972 0.0238511758932)
(0.0623826796905 -0.193635011755 0.0382370579857)
(0.0444119202587 -0.19703833323 0.0557997683759)
(0.0150010497358 -0.200877331762 0.0726641187044)
(0.00775660751999 0.0741910765518 -0.086972717627)
(0.0163970159871 0.0687187258612 -0.0776891961593)
(0.0198774846525 0.0600304101969 -0.0759748872104)
(0.019239271845 0.0468536538123 -0.0736244286823)
(0.0166496647454 0.0295344754189 -0.0741970761804)
(0.0137241435826 0.00981717684672 -0.0769122348875)
(-0.00782345114995 -0.049980862754 -0.0714105450969)
(-0.0272614159521 -0.0390996837332 -0.058911248649)
(-0.0480082168627 -0.0514627598237 -0.0822030258873)
(-0.0203420799716 -0.0542409989553 -0.0999547008999)
(-0.00395015177602 -0.0566747950896 -0.101220788852)
(0.00481052614071 -0.0640822311828 -0.0923815053129)
(0.0553252066415 -0.0872259501643 -0.085706094231)
(0.0694928118124 -0.102487488861 -0.0519387915651)
(0.0601964546462 -0.163756996786 -0.0423931914998)
(0.0623208267702 -0.1743838717 -0.0293489368857)
(0.0626925311847 -0.180425362056 -0.0175041331916)
(0.0569450512546 -0.185270700854 -0.00189958469511)
(0.0404852063447 -0.189425456694 0.0143951866413)
(0.0136337604359 -0.193739367024 0.0266234135631)
(0.00349901537591 0.0961549137173 -0.0545261102828)
(0.00705643124314 0.0888728438853 -0.0458057042211)
(0.00474574395058 0.0785803539966 -0.046075913287)
(-0.000383534223418 0.0650772508672 -0.0493707197944)
(-0.00443301119627 0.0494221871932 -0.0564025665481)
(-0.0103296223238 0.0314225118262 -0.0622157396075)
(-0.0189252629603 0.00401577569499 -0.065059278933)
(-0.0396767197683 -0.0134615356736 -0.0741754146076)
(-0.0417550914785 -0.0219308160868 -0.0913893662313)
(-0.0268528563747 -0.0322786309562 -0.0987846311782)
(-0.0161672990308 -0.0434994529016 -0.0951171109928)
(-0.0034409253826 -0.0577639877509 -0.0949569783424)
(0.0237711245574 -0.0732323475028 -0.0955834765369)
(0.0425491015662 -0.11768518349 -0.0844080396582)
(0.0464834475133 -0.13998216768 -0.07782846729)
(0.0511013956909 -0.153367569812 -0.0660967853234)
(0.0535364260745 -0.16190531594 -0.0543150226656)
(0.0497901559002 -0.168539459123 -0.0386201141527)
(0.0362564512723 -0.174653573469 -0.0244998699015)
(0.0132663112498 -0.17908089501 -0.0174984600381)
(-0.00405624442387 0.115156462319 -0.0138204277518)
(-0.00385782415221 0.105021488555 -0.00608873320149)
(-0.0105454596847 0.094066289295 -0.00945571778335)
(-0.0181686592914 0.0814339664766 -0.0170505231534)
(-0.0250422824801 0.0675624398102 -0.0275752866985)
(-0.0322031194026 0.0512650596943 -0.0394565482455)
(-0.0387975031783 0.0312126343924 -0.0503714664641)
(-0.0498350663155 0.0131099413324 -0.0653212786125)
(-0.0507275283846 0.00294349563393 -0.0828753284949)
(-0.0408154848979 -0.0108345763281 -0.0911350263317)
(-0.0324492057471 -0.0272327855484 -0.0946837152724)
(-0.0206960534685 -0.0451924156042 -0.100802724409)
(7.98122502311e-06 -0.0660117950284 -0.108050525751)
(0.0180193042832 -0.0957749462028 -0.10820204434)
(0.0280583149102 -0.114490148803 -0.104011884086)
(0.0374994412795 -0.128969485369 -0.095997463651)
(0.0429654825111 -0.139064422387 -0.082954817819)
(0.0410051552329 -0.147796433548 -0.0678289067158)
(0.0314084603481 -0.155466750168 -0.05741076478)
(0.011642349245 -0.160171498211 -0.0517839298112)
(-0.00847223987074 0.124624111161 0.0327442781033)
(-0.0159324572555 0.11364317393 0.0389040253082)
(-0.0281545713359 0.101616911555 0.0320618114805)
(-0.0386662585141 0.0891139499782 0.0198528618295)
(-0.0479100686762 0.0751852605207 0.00386845935808)
(-0.0558106669848 0.0597600235942 -0.0133351200907)
(-0.0624870722806 0.0422366298718 -0.0315177007424)
(-0.0669574146987 0.0239202718214 -0.0513360066338)
(-0.0640144755047 0.0127049722584 -0.0732380263466)
(-0.0567257963542 -0.00240396293716 -0.0838624770279)
(-0.0485137356534 -0.0190879020219 -0.0954474319798)
(-0.0361021333946 -0.0362214350339 -0.107725546179)
(-0.0180008858387 -0.054069179372 -0.119467876321)
(3.21234687417e-05 -0.0755611973235 -0.122884426479)
(0.0132516723929 -0.0911920881541 -0.120717413626)
(0.0240938479266 -0.104696984882 -0.114585760423)
(0.0305862044559 -0.116172448618 -0.104456320452)
(0.0303876689046 -0.126533832819 -0.0928231667022)
(0.0255611934184 -0.135290433164 -0.0863226051161)
(0.00966873293195 -0.139672936746 -0.0837961065882)
(-0.0124065328809 0.123514185613 0.0825012943384)
(-0.0296198206063 0.11495594981 0.0827833818037)
(-0.0438158787248 0.103364663503 0.0730252238809)
(-0.057539192602 0.0908812311269 0.0573071855326)
(-0.0694713209723 0.0779833502126 0.037047482344)
(-0.0784921992715 0.0642408034255 0.0145779865006)
(-0.0844804495101 0.0498013714668 -0.0110552107085)
(-0.0852610030074 0.0354810269728 -0.0390053871853)
(-0.0804315803519 0.0232504065746 -0.060483675722)
(-0.0737355040986 0.00803782638194 -0.0756599135197)
(-0.0648908463475 -0.00767369961593 -0.0927421536709)
(-0.0518320978088 -0.0232907354111 -0.109680945547)
(-0.0346638216507 -0.0389119370323 -0.124328344547)
(-0.0167830163329 -0.0560601325647 -0.130737926625)
(-0.00120979392136 -0.0701378033621 -0.132600800253)
(0.0108581923976 -0.0825233454339 -0.129241650821)
(0.0179874609248 -0.0939633858874 -0.122416784659)
(0.0194866299762 -0.104178323263 -0.115292739425)
(0.0181901242017 -0.112345269428 -0.113247087659)
(0.00698637711254 -0.116277937139 -0.115109454727)
(-0.0144739191558 0.110641558249 0.129528299325)
(-0.0356732642959 0.104957236844 0.123432252565)
(-0.0561877689199 0.0967887882525 0.110823956492)
(-0.0743367261457 0.0849197143736 0.092271594576)
(-0.08828065235 0.0731808767175 0.0682365241963)
(-0.0981646451294 0.0610964871644 0.0399923501376)
(-0.103182439428 0.0492360118951 0.00894459641147)
(-0.101971794305 0.0379897611943 -0.02223757378)
(-0.0971216470609 0.0269933691913 -0.0454420296689)
(-0.0905582622881 0.0129163292744 -0.0661578298257)
(-0.0806769957516 -0.00101788456926 -0.0879710340384)
(-0.0666023046945 -0.0143082712362 -0.108910007392)
(-0.04960600904 -0.027269398671 -0.12637276302)
(-0.0313258066955 -0.0405960938998 -0.137071696799)
(-0.0140271652127 -0.0518473848259 -0.140190147136)
(-0.00105910001254 -0.0625145697297 -0.138515155043)
(0.00681967236638 -0.0724101832533 -0.135363856881)
(0.0106488977141 -0.0809527138865 -0.132036142216)
(0.0118147842045 -0.0887441382084 -0.130895499285)
(0.00426997508225 -0.0922604259956 -0.13275003494)
(-0.014862135883 0.0874209224701 0.167735144405)
(-0.0383017439852 0.0832178506647 0.158879498342)
(-0.0654934243069 0.0767084848633 0.142418278602)
(-0.0862811455065 0.0687382871491 0.122375395904)
(-0.101938679122 0.0601607347057 0.0944706157061)
(-0.112598565217 0.0509072578314 0.0619705725331)
(-0.117057500008 0.0417982232574 0.0269913474193)
(-0.114763271702 0.0331412199801 -0.00626604650839)
(-0.110628716637 0.0248233418263 -0.0305159803814)
(-0.104900488558 0.013356206488 -0.0565424713333)
(-0.0944468237599 0.00213359709126 -0.0832723049559)
(-0.0797286340978 -0.00837795494847 -0.107529540845)
(-0.0622535441129 -0.0184715346058 -0.128089842405)
(-0.0431864972462 -0.0280965890178 -0.141549574189)
(-0.0253016229276 -0.0357713650643 -0.146492978124)
(-0.0117505710178 -0.0437002341114 -0.148324115936)
(-0.00230053794526 -0.051304489866 -0.147511002231)
(0.00242356589923 -0.0584396830049 -0.145200686551)
(0.00562152147204 -0.064625735634 -0.145690150468)
(0.0018890302804 -0.0677232859328 -0.149561880989)
(-0.0150138752737 0.0567721554727 0.192766108393)
(-0.0406359503301 0.0524083972263 0.184841535047)
(-0.0690394091275 0.0474167097163 0.16759491162)
(-0.0928852259162 0.0441865702307 0.145025199408)
(-0.109603727992 0.039397108723 0.115366855304)
(-0.120940691416 0.0338283242015 0.0792145749815)
(-0.125202901758 0.0285271292477 0.0412257011097)
(-0.122053159792 0.0231991884593 0.00546200295364)
(-0.118402287416 0.0185360455897 -0.0186214787827)
(-0.11440486045 0.0111010480524 -0.0478141782113)
(-0.104742933576 0.00334886155215 -0.0790185877337)
(-0.0898914941205 -0.00351264671981 -0.107248906007)
(-0.0717559106992 -0.00963476677597 -0.131858784476)
(-0.0507556247906 -0.0151798725107 -0.147821012094)
(-0.0321940591521 -0.0187202812973 -0.153549141857)
(-0.0198722240611 -0.0235219573692 -0.158221160942)
(-0.0102461837368 -0.0285376270195 -0.158522388626)
(-0.00408974203875 -0.0335850112367 -0.157606731625)
(0.000727379168772 -0.0374049342261 -0.160349938915)
(0.000896143120834 -0.0398765073049 -0.162016944788)
(-0.01367320391 0.0208762034408 0.20052647541)
(-0.0400135171236 0.018845001133 0.199077002172)
(-0.0690700307824 0.0173579586906 0.182676181201)
(-0.0940067041684 0.0161567080443 0.160962049849)
(-0.113975486617 0.0145550620093 0.129500274021)
(-0.125777981733 0.012414199657 0.0892890781558)
(-0.128242502299 0.010420291899 0.0478790679822)
(-0.122780701034 0.00873242960818 0.00818522065951)
(-0.117313569524 0.00727043014113 -0.0137837410514)
(-0.115238337396 0.00423940199578 -0.0406709705012)
(-0.107778626867 0.00175869542252 -0.074262642918)
(-0.0934262182478 -0.000172443445596 -0.107854242293)
(-0.0764830455432 -0.00177288451243 -0.13833845108)
(-0.0531856930275 -0.00347159469741 -0.157599968371)
(-0.0331111474509 -0.00434467805133 -0.160948916098)
(-0.0205161498419 -0.00653970385443 -0.165550015186)
(-0.011814591733 -0.00935671457552 -0.16741471329)
(-0.00606591232338 -0.0107395538418 -0.167503201275)
(-0.0015395896845 -0.0113508582071 -0.166864355206)
(0.000483837314802 -0.012323143091 -0.163409479406)
(0.00452783793604 -0.0131125677319 0.0171002066737)
(0.015004995304 -0.0124192398744 0.0170026691109)
(0.0220340202331 -0.0117740462487 0.0137463176813)
(0.0310678737359 -0.00915921092616 0.010492463284)
(0.0405803574788 -0.0057283963655 0.00892561464809)
(0.0489472689292 -0.00310449630931 0.0106240427942)
(0.057439839175 -0.00277896972785 0.0145145440877)
(0.0686334307604 -0.0045124167795 0.0207867141752)
(0.0860904722111 -0.0056640708553 0.0300419211858)
(0.109841122878 -0.00809141340794 0.0535121804024)
(0.130188591659 -0.0135208923902 0.0913571152526)
(0.143180692425 -0.0189389219267 0.130273859063)
(0.148509445928 -0.0234390522236 0.167529708795)
(0.146018673635 -0.0260107379379 0.20403950055)
(0.137909540798 -0.0251035464929 0.240148859182)
(0.125159481997 -0.0220815868456 0.269709368212)
(0.10384556626 -0.016560601679 0.292075864409)
(0.0754450510239 -0.0121165740272 0.305333929337)
(0.0440012522574 -0.0101210300752 0.313675237028)
(0.0197642649281 -0.0103730214691 0.313138449626)
(0.00441180802491 -0.0337265121412 0.00779808281953)
(0.0165147476843 -0.0325531346804 0.00140020367683)
(0.0281287396131 -0.028420924666 -0.00266618848765)
(0.0410955416913 -0.0198813905591 -0.00306816901555)
(0.0513498651173 -0.0120428754318 0.00148736049567)
(0.0579535843079 -0.00713211222592 0.00769751085953)
(0.0644662054979 -0.0063898516543 0.0135556829819)
(0.0764609466701 -0.00897657157265 0.0207895582858)
(0.0941482058445 -0.0128410232226 0.0358001990795)
(0.114020473839 -0.018332182312 0.0595597310387)
(0.131655087328 -0.0277465188217 0.0914786143463)
(0.143059375334 -0.0352157298745 0.12502944663)
(0.148744245459 -0.0420010997308 0.157424712005)
(0.1500533385 -0.0449604765582 0.192056775389)
(0.145165603403 -0.0448847413674 0.229457805488)
(0.13357767554 -0.0390900147866 0.268288266886)
(0.112069841302 -0.031672663848 0.304193451566)
(0.0790173223062 -0.0235230954119 0.323444310554)
(0.0385586131736 -0.019739901892 0.326991258355)
(0.0154509984982 -0.0205468240606 0.313486448498)
(0.00426151011737 -0.050243464479 -0.0087521581661)
(0.0209515945448 -0.0462903512072 -0.0186280051167)
(0.0381493513048 -0.0385804592941 -0.020932770627)
(0.0520451171172 -0.0290502476377 -0.0143498253327)
(0.0593299623891 -0.0223097217003 -0.0047939770959)
(0.0626642753486 -0.0182957954593 0.00399281919796)
(0.0669999795694 -0.0172144730402 0.0111865310288)
(0.0765358001967 -0.0199381268608 0.0174592716114)
(0.0921513599389 -0.0263426705957 0.0285082264853)
(0.111054621924 -0.0361112019097 0.0484232022949)
(0.128103393373 -0.0453862115847 0.0758834373139)
(0.138903706166 -0.0529197958078 0.106497418596)
(0.144786263365 -0.0605080321117 0.13881925995)
(0.146086946555 -0.0679040478643 0.171118159297)
(0.144457086319 -0.0748866171382 0.204903659462)
(0.137777339409 -0.0746541085945 0.24565633813)
(0.119012870948 -0.0698266584473 0.2819843702)
(0.0869473640184 -0.0615908666271 0.30959428305)
(0.0433499116483 -0.0560246468778 0.32252139674)
(0.0158331712583 -0.0498724806345 0.306050040001)
(0.00771887727068 -0.0573687309449 -0.0301859998692)
(0.0312569863871 -0.0507446553916 -0.0373844133425)
(0.0498479034824 -0.0434929529177 -0.0332419492497)
(0.0607527027045 -0.0376312652472 -0.0230251085886)
(0.0638325222852 -0.0340249483886 -0.0125314914477)
(0.0651612008666 -0.0308256133013 -0.0027759954313)
(0.0680152644205 -0.0290637665846 0.00452204450135)
(0.075513071049 -0.0320676978184 0.00949474874088)
(0.0890215003258 -0.0381702826401 0.017665616523)
(0.107133114083 -0.0473340272437 0.0339442686928)
(0.124980251273 -0.0573864783825 0.0579188996832)
(0.136506614224 -0.0658249920088 0.0873534013278)
(0.14131416397 -0.0772962732296 0.118721118745)
(0.142400887047 -0.0896052833032 0.147282504659)
(0.14458258104 -0.0992404826934 0.177690789693)
(0.143227490602 -0.103735416379 0.210778864528)
(0.130342302719 -0.10235149366 0.247070319023)
(0.10265687627 -0.0974257385551 0.282553887289)
(0.0594782005215 -0.0916528319304 0.305833680838)
(0.0217963217326 -0.0793444814903 0.300090089558)
(0.013201314221 -0.0572653700801 -0.0520676765624)
(0.0429322869082 -0.0518991904856 -0.0524166831987)
(0.0585981710991 -0.0487656953297 -0.0442792732003)
(0.0644423659055 -0.0465434189331 -0.0330797402947)
(0.066147326233 -0.0448753347533 -0.0217227341665)
(0.0674188795636 -0.0418828542102 -0.0127932050147)
(0.0676906225608 -0.0365767485823 -0.00525872958147)
(0.0735913833884 -0.0403854257778 -0.00205173235068)
(0.0864613440849 -0.0448364996634 0.00465585593011)
(0.103039010082 -0.0518943704245 0.0190661438084)
(0.120908350346 -0.0610588045789 0.0418808193014)
(0.130638082468 -0.0700685244095 0.0683086603952)
(0.133233313991 -0.0869173057075 0.099084031132)
(0.136533249028 -0.105434172287 0.124895090753)
(0.143213963019 -0.117090618016 0.15158278565)
(0.147826979419 -0.125503436104 0.179279040076)
(0.142136909253 -0.130097778545 0.210356342578)
(0.120978039603 -0.131368338786 0.243785813836)
(0.0814175042718 -0.129509941703 0.273418915529)
(0.0300699883301 -0.117095963103 0.282530228313)
(0.0189397461586 -0.0528505390122 -0.0701541340322)
(0.0512554381898 -0.0509898551976 -0.0656216130402)
(0.0628558950159 -0.0527013367028 -0.0560344567299)
(0.0653638060025 -0.0529804533314 -0.0437184470399)
(0.0667747318256 -0.0530209822141 -0.0333740579829)
(0.0707765156658 -0.0510780877586 -0.02704134515)
(0.066299621072 -0.0401951394424 -0.0195436415069)
(0.0696933543738 -0.0411617507053 -0.0176132956405)
(0.0828952792886 -0.0429785699872 -0.0113574348764)
(0.0983386646219 -0.0467328952689 0.00586569516171)
(0.114844827567 -0.0557391860271 0.0292078852914)
(0.120489708685 -0.0663773359315 0.0544517271395)
(0.117742234293 -0.0852282537184 0.084638231612)
(0.123282283452 -0.120970784523 0.109971822953)
(0.135998701097 -0.13189933154 0.131496675522)
(0.147040464379 -0.139301214219 0.153482912319)
(0.146749210386 -0.148013683403 0.17816957455)
(0.131341405151 -0.156374470047 0.206944206634)
(0.0974919130599 -0.169721772467 0.232964541132)
(0.0334977324602 -0.164315965818 0.245118822934)
(0.0226480121482 -0.0444317608773 -0.0853496346481)
(0.0546590673851 -0.0458556248589 -0.0774833129863)
(0.0625195208297 -0.0503166755904 -0.0682591618996)
(0.0632579461376 -0.0523735267545 -0.0574486873931)
(0.0638536731201 -0.0525915658968 -0.0502881489137)
(0.0724445038957 -0.0539909990461 -0.0477704831142)
(0.0575749534537 -0.0237945911209 -0.0408376087533)
(0.0429863753527 -0.0645067092462 -0.0303283280121)
(0.0667740523632 -0.0521583896637 -0.0219134494984)
(0.0830057260168 -0.0489151913419 0.000144558643828)
(0.0989288631026 -0.0533296712937 0.024732929054)
(0.102477712516 -0.0539175725763 0.0322705728454)
(0.0804539860756 -0.0726396353274 0.0610415079219)
(0.0929280040897 -0.138361130652 0.0811306373404)
(0.122804063405 -0.132293304263 0.107181247777)
(0.143410988423 -0.150300479519 0.130853620105)
(0.145711302145 -0.166641394254 0.151338770061)
(0.131612393937 -0.181251501677 0.189511819752)
(0.0968638570776 -0.192129819421 0.215458510705)
(0.033135630359 -0.190772639014 0.221931777218)
(0.022542620491 -0.0286244110622 -0.0952891206945)
(0.0535467537327 -0.0308905222313 -0.0876905919885)
(0.0602871323879 -0.0361643648826 -0.0808469676916)
(0.0609099373641 -0.0396097529923 -0.0715172959791)
(0.0588226969481 -0.0401733758291 -0.0673073387341)
(0.0913742213426 -0.0454031354342 -0.0730921952765)
(-0.0145653407751 -0.0363271590948 -0.0795791194181)
(0.0162905309627 -0.169935274334 0.119003140579)
(0.119947684719 -0.161210431566 0.104537707249)
(0.121767067033 -0.169809135736 0.113052702154)
(0.134637361691 -0.181584045284 0.12322139499)
(0.131208243584 -0.19068334516 0.138649064137)
(0.101449298987 -0.19488937832 0.158039658435)
(0.0368505380923 -0.191966460887 0.167797590218)
(0.0222831989046 -0.00535972780412 -0.0965290243119)
(0.0515336163075 -0.00620326614518 -0.0902863480052)
(0.0565609424198 -0.0115298029772 -0.0844522193629)
(0.056989069176 -0.0167838285671 -0.0786942997587)
(0.0536316146577 -0.0208939563045 -0.0778372153664)
(0.0900984737695 -0.0236301032989 -0.0892378673763)
(-0.0141132935032 -0.0242059681632 -0.0998287149033)
(0.0130328766349 -0.205896894554 0.0662497371236)
(0.128103350741 -0.187819801887 0.0603561054951)
(0.121232019515 -0.186380035513 0.0780150548417)
(0.134717115628 -0.192927986479 0.0853101921557)
(0.134972809232 -0.199744912692 0.0972680475628)
(0.108428676989 -0.206131035207 0.116109381631)
(0.0420469616371 -0.203548675407 0.12812823125)
(0.0215984365743 0.0226319970016 -0.089314681521)
(0.0484875323828 0.0228500138202 -0.0823755557324)
(0.0513895108198 0.0170239894394 -0.0777791737445)
(0.0504385559917 0.00908115782819 -0.0749480846536)
(0.0463514950814 -0.00114325782096 -0.0765344730603)
(0.0834681886026 -0.0127385071836 -0.0904748790458)
(-0.0153750922568 -0.0338517052421 -0.100058168101)
(0.00618892972387 -0.192246709536 0.0247602909414)
(0.125221295764 -0.186987849296 0.0232732413711)
(0.113437521385 -0.19364911897 0.0389470488914)
(0.127366771421 -0.202692493903 0.0439448807483)
(0.132541682808 -0.210572850655 0.0542762828249)
(0.1108946087 -0.220055484984 0.0741811237743)
(0.0449994282408 -0.220698688605 0.0899088999427)
(0.0205610463884 0.051976439402 -0.0732686633483)
(0.043797285794 0.053043933303 -0.0648436584145)
(0.0429553633206 0.0468589523302 -0.0609898608999)
(0.0379982083664 0.0364280127497 -0.0609115268136)
(0.0309830777964 0.0211711692717 -0.0672327363575)
(0.0653003354787 0.00512473191035 -0.0833035708838)
(-0.0259049740963 -0.0419955973181 -0.084817793266)
(0.00278204873132 -0.159344754632 -0.0151716303034)
(0.11130118159 -0.184942071041 -0.019751252625)
(0.103397819772 -0.190461389235 -0.00435659850448)
(0.119512226239 -0.199992113347 -0.00127072976674)
(0.127817271948 -0.206942867166 0.0109479849103)
(0.105750139749 -0.217912642836 0.0302466604069)
(0.0410881658343 -0.218674325884 0.0507781075951)
(0.0182045694195 0.0785957245603 -0.0449067103274)
(0.037830786716 0.0796063537221 -0.0363150089258)
(0.0337960023463 0.0716967208945 -0.033719892506)
(0.0243909345991 0.0583078681446 -0.0361400997038)
(0.0139141114626 0.0394511961599 -0.0459690889379)
(0.0103517478082 0.0207178126546 -0.0594180384647)
(-0.0294168282553 -0.0443505668364 -0.0582236704024)
(-0.0722490432432 -0.0376891037388 -0.0508134421487)
(-0.0749091288895 -0.046350292554 -0.0833620757666)
(-0.0563948384792 -0.0528833314258 -0.104013158853)
(-0.0474962032638 -0.0611593187934 -0.101031536715)
(-0.0286687186736 -0.0668127373199 -0.0982292653299)
(0.0449174241199 -0.090988841094 -0.093695906277)
(0.0835845183368 -0.0958700009663 -0.0638577450821)
(0.0789076057866 -0.161664701895 -0.0608074775671)
(0.0963649650895 -0.174777469876 -0.0527970455547)
(0.112900532391 -0.182338356253 -0.0448933168803)
(0.115206379762 -0.189581582917 -0.0278879116565)
(0.0988034700511 -0.202786264786 -0.00802109239107)
(0.0371617313169 -0.200967005247 0.00990691635397)
(0.0118566944949 0.102106105466 -0.00889931679733)
(0.0262856399813 0.101318547286 0.000112408947039)
(0.0182300476866 0.0907404334537 -0.00010792818682)
(0.00476717671957 0.076154635948 -0.00718812050703)
(-0.00476339602521 0.0594332254912 -0.022435637021)
(-0.0116478388117 0.0407329961424 -0.0414947873058)
(-0.0309717082261 0.00662856074163 -0.053459994335)
(-0.0590285021272 -0.0083020899042 -0.0737233848504)
(-0.0587856546433 -0.0141820877036 -0.102152484502)
(-0.049024388798 -0.027622665818 -0.115273683341)
(-0.0334449257726 -0.0378671129502 -0.113453748312)
(-0.00842276078812 -0.0485725029441 -0.113063013981)
(0.0298218841177 -0.0640337505546 -0.111584820622)
(0.058422951804 -0.110766524315 -0.0987338160086)
(0.0643032927084 -0.132743722566 -0.094316443314)
(0.0825025673399 -0.143944508432 -0.0849422138818)
(0.0960441759177 -0.152868607653 -0.0756755125087)
(0.0987393121637 -0.165326902432 -0.0609723908853)
(0.0828239312488 -0.17892897568 -0.0404492761232)
(0.0276162622044 -0.175035461541 -0.0194100389139)
(0.00341704921651 0.120547257725 0.0376902211818)
(0.01002164062 0.120347639578 0.0429151613405)
(0.00139776004724 0.10645934673 0.0386330045386)
(-0.0112600158555 0.0913023608149 0.0245677791696)
(-0.0221786370248 0.0763512856328 0.00358147241561)
(-0.0319401485417 0.057653416586 -0.0192161565846)
(-0.0450113415957 0.0330092233847 -0.0415203447047)
(-0.0597996312188 0.0171092948595 -0.0729962049369)
(-0.0589135376948 0.00466887193558 -0.100990937712)
(-0.0487723981334 -0.00934877484994 -0.113182414166)
(-0.0359137906203 -0.0232122792896 -0.121352947647)
(-0.0138046256878 -0.0365388752534 -0.124526407802)
(0.0135091004708 -0.0549191389952 -0.129308821822)
(0.0372561354704 -0.081742603656 -0.124450542474)
(0.047160049921 -0.100408897915 -0.124535823212)
(0.0625778451024 -0.113884900552 -0.118110458394)
(0.077545061086 -0.125390770449 -0.108513960485)
(0.0806551136031 -0.140098354137 -0.0907657972841)
(0.0658905524599 -0.155129234677 -0.0696670257303)
(0.0185381725411 -0.155283652625 -0.0447521682276)
(-0.00681577805039 0.133281708963 0.0914758303945)
(-0.00881497558192 0.132086690228 0.0916832634281)
(-0.0210018858801 0.114828209054 0.0780368558172)
(-0.0323629314985 0.0975321124503 0.0590570503989)
(-0.0433266845388 0.0807246981086 0.0349797748098)
(-0.0539807865146 0.0630994821965 0.00700249119081)
(-0.0633839676647 0.0434594118414 -0.0245859448381)
(-0.0722458620599 0.0263711996482 -0.0629014533513)
(-0.0706519042959 0.0158969577099 -0.0929037541808)
(-0.059484521894 0.00223479626349 -0.107727934033)
(-0.041629675449 -0.00852243313158 -0.120569054698)
(-0.0244437656855 -0.0231294501515 -0.132599381907)
(-5.02920769631e-05 -0.0377900489976 -0.141694715093)
(0.0187652983561 -0.0575615031239 -0.140645844254)
(0.0342864817741 -0.0717412896056 -0.134104766162)
(0.0467913158054 -0.0870003210671 -0.128900355693)
(0.0575737944742 -0.10134263053 -0.11925440376)
(0.0587807000812 -0.118454435908 -0.106842787557)
(0.0460803328808 -0.135286386026 -0.0923385598856)
(0.010943933968 -0.141869779289 -0.0613306988147)
(-0.0149858271162 0.134425012706 0.148154321029)
(-0.0241305347816 0.131568731184 0.144918621594)
(-0.0439479280733 0.116984403221 0.122009288311)
(-0.0558037455166 0.0990629430619 0.09663118965)
(-0.0670752811298 0.0825847850985 0.0675589745633)
(-0.0777217710043 0.0667256161975 0.0338253327359)
(-0.086893271499 0.051364215794 -0.0054313498197)
(-0.0897942890782 0.0366682588306 -0.0483345145149)
(-0.0851223895277 0.027690327721 -0.07843714185)
(-0.0748628332422 0.0149455924248 -0.0982805515334)
(-0.0575866960015 0.00404574208228 -0.116874024161)
(-0.0388034090767 -0.00858644242443 -0.133056380974)
(-0.015590771999 -0.020887207227 -0.143741217675)
(-0.00175150487958 -0.0400957828505 -0.147997615856)
(0.0170824860734 -0.0527182116229 -0.143054092715)
(0.030723063002 -0.0663734546254 -0.136829837588)
(0.0370020795218 -0.0820750577932 -0.129115608539)
(0.034485849453 -0.0987220563262 -0.11993263058)
(0.0287447686198 -0.111411700228 -0.111687138547)
(0.00293178366127 -0.122546077489 -0.0870201644723)
(-0.0187505507289 0.120201674751 0.200215463834)
(-0.0355655337415 0.118724631287 0.195743306438)
(-0.062366865305 0.108610106148 0.165739060356)
(-0.0787459033019 0.0936840371288 0.134930433428)
(-0.0915250306492 0.0788148249385 0.0990937984884)
(-0.102292243234 0.0646450407131 0.0582670208264)
(-0.109639222056 0.0519072857412 0.0136617215931)
(-0.111054202955 0.0413978848809 -0.0305821254385)
(-0.105825565077 0.0317619538436 -0.0617397973831)
(-0.0929176676643 0.0202928887583 -0.0869796815306)
(-0.0753660209933 0.0091970761636 -0.1108190668)
(-0.0557380033345 -0.00195201735 -0.130800302927)
(-0.0340635809733 -0.0127437227751 -0.144537760504)
(-0.0167959451399 -0.0282729555268 -0.151639359164)
(0.000172890083217 -0.0401829179588 -0.152629072189)
(0.0138412638498 -0.052097210288 -0.145500346738)
(0.0199957108536 -0.0655885661443 -0.138764262603)
(0.021967689984 -0.0761261724566 -0.132723922522)
(0.0197210168214 -0.0888517070099 -0.124434957281)
(-0.00153943189246 -0.0979867826746 -0.10299146324)
(-0.0199336233751 0.0928675805287 0.240939516407)
(-0.0416101207461 0.0911038279059 0.237530475947)
(-0.073070815765 0.0842784511423 0.207614435487)
(-0.096040624953 0.075378516023 0.17125371851)
(-0.112293178667 0.0647526390044 0.129698488263)
(-0.12475951604 0.054186785559 0.0823961536116)
(-0.131773187345 0.044131120363 0.0327839232068)
(-0.132292315369 0.0357370353988 -0.0128810902879)
(-0.12813731931 0.0289019337733 -0.0445201686575)
(-0.113439295419 0.0199241039421 -0.0757884652993)
(-0.0923278604621 0.0103902642042 -0.103375492489)
(-0.0752460219747 -0.000350291267764 -0.128815419761)
(-0.0513253680185 -0.00955606119345 -0.144272319232)
(-0.033016703493 -0.0205530461946 -0.155691812818)
(-0.0150885334603 -0.0294797699533 -0.159446990988)
(0.00023464775915 -0.0386785976085 -0.155037486586)
(0.010151095741 -0.0475106039172 -0.150329442703)
(0.0105285548651 -0.0570302692928 -0.145863744567)
(0.00914048237435 -0.0676767239297 -0.142061434087)
(-0.00451475770934 -0.0734319718207 -0.121477607633)
(-0.0198968212826 0.0575061844685 0.264818126397)
(-0.0455556546468 0.0530161315498 0.263524678151)
(-0.0813922608553 0.0481490663314 0.237326345915)
(-0.107774036445 0.0445354953573 0.201111273681)
(-0.128234047661 0.0404961789735 0.153504500497)
(-0.143153961015 0.034499955173 0.102222260269)
(-0.151455819542 0.0284801665541 0.0497987771899)
(-0.151698043855 0.0227771516599 0.0018711479834)
(-0.149978568016 0.0206501972594 -0.0287467672937)
(-0.138614152663 0.0157173928828 -0.0656904907991)
(-0.115919665369 0.00935079831786 -0.0982733428044)
(-0.0951767036995 0.00168364740937 -0.124534240191)
(-0.0708431793527 -0.00491651059761 -0.144402953629)
(-0.0508715053172 -0.0117983272965 -0.160363610212)
(-0.0285137997947 -0.0136964963849 -0.163676448121)
(-0.0128265873442 -0.0192690052331 -0.159424782322)
(-0.00385239361771 -0.0260351514535 -0.157203280512)
(-0.0010137552555 -0.0332705501504 -0.156412488511)
(0.00227154174006 -0.0380299983762 -0.153520233406)
(-0.00429490359756 -0.0412684193273 -0.137963173825)
(-0.0177046506633 0.0231564880889 0.271779141718)
(-0.0469540201598 0.0209636921219 0.267758141524)
(-0.0846981710615 0.0189708739342 0.239541321289)
(-0.111947586784 0.0180635977107 0.204496660361)
(-0.132610756859 0.0165515250448 0.158495202773)
(-0.146560042415 0.0134920925122 0.105381356768)
(-0.1525829428 0.0106675933008 0.0556597073946)
(-0.152747864689 0.00725508560779 0.0103885138711)
(-0.157811710389 0.00641901302007 -0.0157398922009)
(-0.154099281241 0.0041517334899 -0.0502066242544)
(-0.133359230332 0.000977092077105 -0.087691091811)
(-0.108023847604 -0.00265065254581 -0.113209770223)
(-0.0809097347442 -0.00636694211938 -0.131018758443)
(-0.0573912059627 -0.0102665167156 -0.145997813415)
(-0.0342557908906 -0.010382788501 -0.13958048976)
(-0.0234246578007 -0.0133581998929 -0.139627571825)
(-0.0149191214681 -0.0163805996455 -0.140485225939)
(-0.00819117774075 -0.0179343984188 -0.141763653583)
(-0.00109512529706 -0.0166022520478 -0.141629650242)
(-0.00233619254361 -0.015256032059 -0.138280226928)
(0.00700207476112 -0.0218089664909 0.0036468070033)
(0.0314003225829 -0.0252490979106 0.00445147965887)
(0.0303149042933 -0.0368495340354 0.000495063056082)
(0.0374566975167 -0.0587012287898 -0.00624373744205)
(0.0348946361862 -0.0832490301701 -0.00850214933437)
(0.0478824152277 -0.0941327321026 -0.00674103212522)
(0.0635536991092 -0.0896646850693 -0.00377088523212)
(0.0788583541904 -0.0705669338364 -0.004260772282)
(0.0984622866549 -0.0400421464801 0.000329675776015)
(0.128756688607 -0.00919368439593 0.0214100708187)
(0.151505592222 0.0184908780064 0.0646705523793)
(0.152571344225 0.0565497101878 0.106657676543)
(0.135679630158 0.10835359882 0.140984187368)
(0.0996650094505 0.163917765084 0.168127130247)
(0.0408546278493 0.195895041409 0.18557202638)
(-0.00325803194879 0.19404843089 0.223194078926)
(-0.00522783398781 0.160271521559 0.229182063339)
(-0.0151739584718 0.107489811636 0.23230963999)
(-0.0236932972513 0.0744808053688 0.259587406311)
(0.0248359046636 0.0583362730757 0.259407025768)
(0.00280111606372 -0.0493440986944 -0.00681634248056)
(0.00892486320968 -0.0689422219803 -0.00395239142484)
(-0.00364183822034 -0.0994293876361 -0.00927028003677)
(-0.00607200831585 -0.131477581214 -0.00803292521146)
(-0.00508895031642 -0.158154894966 -0.00388309329916)
(0.0145354523472 -0.162879782022 0.00172571396985)
(0.0395296410175 -0.144179190349 0.0040528832918)
(0.0661728393561 -0.105466029713 0.00499270099264)
(0.0925402283966 -0.052280935028 0.0150217711192)
(0.114481888512 0.00299693195938 0.0377811297375)
(0.131279381748 0.0566920905229 0.0660565194901)
(0.137177904041 0.120676202984 0.0980463744312)
(0.124121720223 0.195574694592 0.128537727281)
(0.0874096596394 0.268746400723 0.157707619187)
(0.036262574684 0.311791832412 0.187859159867)
(-0.00665020990984 0.341503663486 0.234527595525)
(-0.0364978018634 0.317705650625 0.259599382969)
(-0.0546258254469 0.264352642967 0.284914312272)
(-0.0584966328198 0.216777047059 0.300660200172)
(0.00609082214559 0.209687024333 0.276070418774)
(-0.00914835288007 -0.0887394957649 -0.0270600319786)
(-0.0254376954369 -0.118914104882 -0.0281236067863)
(-0.0423513859737 -0.154141123759 -0.0285181563849)
(-0.0413866678223 -0.184800848757 -0.0195107791914)
(-0.0265150801718 -0.202676224923 -0.00956189209864)
(0.00729139715255 -0.197324032428 -0.000361385353694)
(0.0437992649418 -0.166804632867 0.00438505729855)
(0.0770254958613 -0.119798188792 0.00683550036431)
(0.103588534598 -0.0688491148679 0.0135832000221)
(0.124744501502 -0.0136882468407 0.030569720881)
(0.142325882558 0.0457656428732 0.0564766017595)
(0.150565033543 0.114825190546 0.08815100802)
(0.14150657535 0.194073760173 0.121728824896)
(0.0955371664797 0.270958629846 0.145441001895)
(0.0379151680664 0.326877062293 0.191600046932)
(-0.0318695261469 0.358958254336 0.214525576702)
(-0.0953750085915 0.337389319837 0.256656653859)
(-0.112540690258 0.303014803885 0.292057788872)
(-0.116770892513 0.27456687903 0.300498134884)
(-0.0196553926783 0.272195680495 0.270536437122)
(-0.0345145667285 -0.115594607308 -0.057492302451)
(-0.0651226229061 -0.149723073287 -0.0517543318371)
(-0.0830938530814 -0.183831740337 -0.0435902701181)
(-0.0729215041603 -0.20654277524 -0.029689503261)
(-0.0398277658925 -0.207308962292 -0.0144279999116)
(0.00837650504466 -0.191883306349 -0.00498478898709)
(0.0566894230771 -0.158417124314 -0.000406587660256)
(0.0953827621628 -0.116534263062 0.000917043095466)
(0.121915110893 -0.0710447840526 0.00573240550447)
(0.143044543079 -0.0201414292739 0.0205736601168)
(0.162492761143 0.0335255872178 0.0423993643886)
(0.174361351072 0.0939260465839 0.0751881318127)
(0.16681598655 0.161709484985 0.107377651331)
(0.12531197327 0.226251821515 0.140209666822)
(0.0417380466894 0.299602732114 0.168946435394)
(-0.0601763050832 0.322823253966 0.220834526471)
(-0.14362329627 0.33318534633 0.262796020231)
(-0.185373497591 0.31887729283 0.292351021572)
(-0.193703126706 0.302674292537 0.30993902671)
(-0.0593844220481 0.270998238271 0.304445923537)
(-0.0667146760283 -0.135687786931 -0.0886052153812)
(-0.111344467565 -0.167062300826 -0.0738764816523)
(-0.120376343314 -0.188725858243 -0.0547579032437)
(-0.0895290900356 -0.191555022772 -0.0362789146199)
(-0.0410894201505 -0.184984681114 -0.0243385801249)
(0.0186359653993 -0.165094896859 -0.0165820116876)
(0.0724595940004 -0.126638596106 -0.00924775803491)
(0.115266601859 -0.0962598762808 -0.00956582530476)
(0.144653331874 -0.064152772729 -0.00747125988556)
(0.166385369975 -0.0241645893097 0.00434027662293)
(0.186337809634 0.0136793885255 0.0288550268603)
(0.199740350284 0.0527877039859 0.0535579255766)
(0.194620282463 0.0889333125563 0.0932002317341)
(0.157788928604 0.127028018749 0.129892646003)
(0.0800996075184 0.1823237084 0.159509906184)
(-0.0349401152321 0.237530358347 0.196154767044)
(-0.157679438439 0.27666909312 0.228415256093)
(-0.249748402969 0.27313598021 0.273228077481)
(-0.271240942535 0.25014042883 0.308289169954)
(-0.109731305138 0.162879573204 0.349032082457)
(-0.0904800944605 -0.135253646921 -0.114165161541)
(-0.144029273058 -0.153723376186 -0.0875656772379)
(-0.138887283474 -0.161227160344 -0.066274388774)
(-0.0997283728101 -0.158398387804 -0.0521090749574)
(-0.0390968548271 -0.149605768781 -0.0425045947073)
(0.0400176789853 -0.126393590494 -0.0369204685195)
(0.100016293574 -0.0803238825117 -0.025818897533)
(0.142870005867 -0.0465342517916 -0.0298440021414)
(0.177012519037 -0.00949013830959 -0.0315674122523)
(0.198241434728 0.0275697754306 -0.0131449537693)
(0.218170188705 0.0461756887031 0.00436098471881)
(0.229210139058 0.0528879501148 0.0297531827703)
(0.221982732897 0.0341012619298 0.0736029216193)
(0.192779436414 0.0138874659089 0.108961260609)
(0.125798494837 0.0490171182568 0.143344342995)
(0.00991732962795 0.0979536380252 0.177133538058)
(-0.126215581069 0.13039620675 0.205058812248)
(-0.241440396429 0.126987120369 0.255828918052)
(-0.296540155174 0.103921626906 0.298382668076)
(-0.110273684766 -0.0406414655942 0.339099261034)
(-0.10232192142 -0.109967287882 -0.136303873083)
(-0.15803474875 -0.120369476137 -0.102835739853)
(-0.155270167468 -0.121415568069 -0.0861155258483)
(-0.103708101037 -0.119762291647 -0.0709628368003)
(-0.0270794172767 -0.105816202795 -0.0629294224783)
(0.0729837548482 -0.0884884597564 -0.0619306104749)
(0.157779698327 -0.0196312333724 -0.0489066910966)
(0.227561527944 -0.0568088152196 -0.0555623719423)
(0.242440893606 -0.0270671488203 -0.0556589501834)
(0.230773338323 -0.014944986344 -0.0273215119176)
(0.224902164031 -0.0210167859603 -0.00188686175679)
(0.21119433029 -0.0345326556034 0.0272441376581)
(0.168409597754 -0.0644971542574 0.0496051249078)
(0.159406001073 -0.132035178747 0.0740478792227)
(0.142326191694 -0.0489341502514 0.110310769589)
(0.0437144546999 -0.0178850895632 0.144681050333)
(-0.099348397249 -0.012359105234 0.170045343101)
(-0.21462508598 -0.0049505686591 0.207948568971)
(-0.272006072947 -0.0461586719522 0.293522313877)
(-0.102054538975 -0.186772301401 0.339279619153)
(-0.107152789278 -0.0745617787242 -0.149151746415)
(-0.164552298841 -0.0815643940969 -0.121562392367)
(-0.152639060759 -0.0819934803363 -0.104497553746)
(-0.0901853337796 -0.0782233614901 -0.0878243549027)
(-0.0155055766735 -0.0663797458941 -0.083936036524)
(0.120261575298 -0.0578225389757 -0.0858809789405)
(0.0654687304892 -0.0108631711255 -0.083173085608)
(0.0696754825455 -0.239114710714 0.150569464412)
(0.17326951122 -0.143552662867 0.104864825226)
(0.051965424442 -0.0983754280831 0.114625571233)
(-0.0750623040109 -0.0875232196753 0.14132681856)
(-0.182994101634 -0.109120597308 0.182518590901)
(-0.229090727513 -0.124968919338 0.253788252753)
(-0.0883019219085 -0.215726439376 0.305846867253)
(-0.111717529286 -0.0338383832622 -0.157622486317)
(-0.161239426723 -0.0414529269942 -0.127036386031)
(-0.147832179229 -0.0379255248146 -0.111627814229)
(-0.0870171057494 -0.0361035205163 -0.09944204441)
(-0.0103402479081 -0.0355830209788 -0.0973072739099)
(0.133689058527 -0.0329786963175 -0.105286465438)
(0.0723946367314 -0.0112021647795 -0.0952188691657)
(0.0770206314556 -0.273591575362 0.0752772544168)
(0.177191217184 -0.194839692422 0.0584363992369)
(0.0658431006892 -0.165263088972 0.082432651977)
(-0.0503255196521 -0.150676418718 0.102393619337)
(-0.127565534864 -0.139458888104 0.133645757162)
(-0.175266956842 -0.178285709995 0.192342248453)
(-0.074126841034 -0.245019957057 0.240458242552)
(-0.11610447255 0.00501146736388 -0.156960437924)
(-0.163933115672 -0.00292257720017 -0.127012569974)
(-0.152743831833 -0.000599594668525 -0.111306709974)
(-0.0917411809387 -0.00185680625752 -0.10098650854)
(-0.0141105060847 -0.00904960506655 -0.0975648912205)
(0.131149080495 -0.0172878326385 -0.108072409617)
(0.0745531234498 -0.0256937730295 -0.0952309734917)
(0.0697704848708 -0.242678711667 0.0122311771215)
(0.156892043561 -0.209338871504 0.00744128502576)
(0.0730689498556 -0.182890252879 0.0284059653071)
(-0.0273161872389 -0.186212569329 0.0409921679515)
(-0.0977682425646 -0.184638022395 0.0729437737514)
(-0.111314182272 -0.192711082271 0.13294482653)
(-0.0600321644207 -0.270588178495 0.167490753772)
(-0.12186286077 0.0539561907693 -0.138824415148)
(-0.163697248188 0.040157386422 -0.110255848439)
(-0.151809038617 0.0376670610657 -0.0949632513115)
(-0.0942362009159 0.0347998308512 -0.0880722120136)
(-0.0235285462673 0.022289455536 -0.0948937221318)
(0.117995132954 0.010079385726 -0.101027303512)
(0.0614929967669 -0.0576756060679 -0.0894454905637)
(0.0621585858955 -0.189087733714 -0.0541726350804)
(0.137603498492 -0.208192219181 -0.0634157748757)
(0.068123857601 -0.219555072657 -0.0569714441922)
(-0.0118924443876 -0.21655851539 -0.047703948655)
(-0.0653594547506 -0.203227345343 -0.000980598605853)
(-0.0576104410273 -0.204440204074 0.0704219200107)
(-0.0500309318568 -0.280843841529 0.0870492711925)
(-0.126577698071 0.118413863696 -0.1160293836)
(-0.168689352959 0.102131667788 -0.0849455921934)
(-0.151765950726 0.0914723651056 -0.0673503181835)
(-0.098614535522 0.0818821398768 -0.0610776317245)
(-0.0362506139049 0.0671302892958 -0.0682427381121)
(0.044191343163 0.0491068221311 -0.075602805843)
(0.0493040364088 -0.02705423668 -0.0593025768317)
(0.0483783601477 0.0203373064397 -0.0731913983788)
(0.027351741083 -0.00563249562536 -0.117571837697)
(0.0433547122281 -0.0244810643646 -0.136623675532)
(0.0303599410826 -0.0446233122961 -0.140916262048)
(0.0314590864091 -0.0496419055101 -0.149210142687)
(0.129689675586 -0.0735178470975 -0.14388380665)
(0.148488074613 -0.111546370986 -0.104945480493)
(0.0972117064501 -0.173179511806 -0.109064798556)
(0.0541865159869 -0.196318489482 -0.112175715312)
(0.019317283772 -0.198402943967 -0.0927334887697)
(-0.00311500133035 -0.198133252363 -0.0546152664918)
(-0.0392963649634 -0.219352706712 -0.00398007080651)
(-0.0295696371084 -0.254209246537 0.0253465751164)
(-0.120804259051 0.17512510319 -0.0825771043057)
(-0.154710327539 0.161054422563 -0.0486181474079)
(-0.146895309013 0.155097286899 -0.0338608561769)
(-0.102883077486 0.140199796041 -0.0288118365182)
(-0.0456079491553 0.127974827407 -0.0400263451447)
(0.0162999028508 0.104642971088 -0.0529271417968)
(0.0408287873226 0.065054793021 -0.0554045524745)
(0.0383007248965 0.072499464202 -0.0769628364795)
(0.0512819843304 0.059324862529 -0.115696035706)
(0.0576374550987 0.0239389686873 -0.133808141852)
(0.0443035275371 -0.0181176187634 -0.141553975679)
(0.0553943902925 -0.0442311065528 -0.159035228453)
(0.0905102744676 -0.0752558916438 -0.181889504976)
(0.0952825451927 -0.156020298071 -0.185692866536)
(0.0798647481471 -0.181528299806 -0.187380349169)
(0.0544074718003 -0.201244462271 -0.180968299358)
(0.0220907538753 -0.212388203983 -0.166598984847)
(-0.00527601216618 -0.217729709057 -0.127316490887)
(-0.00905193265523 -0.219099984021 -0.0681425413134)
(-0.033699147262 -0.239674762564 -0.0495207929457)
(-0.0967157193043 0.210164841566 -0.0263326444356)
(-0.116568819581 0.203299084824 -0.00718265665247)
(-0.123780573327 0.203217586445 0.0022449761005)
(-0.0962151933142 0.193737993932 0.00171347619336)
(-0.0498418148942 0.179452027959 -0.0111500149378)
(-0.00339454253934 0.156266592056 -0.0288706718669)
(0.0238280744225 0.119299219943 -0.0448249588384)
(0.0332482004894 0.0953259677887 -0.0781364172939)
(0.0443722179023 0.0693297796916 -0.115389517623)
(0.0409192706439 0.0261152341766 -0.130184830812)
(0.0367154882452 -0.00953174264118 -0.148629899298)
(0.0412325552465 -0.0451896698812 -0.176367912471)
(0.0524038749753 -0.0817288032815 -0.192781940902)
(0.053919832314 -0.125863645615 -0.200335812383)
(0.0614432051433 -0.133425049669 -0.193754732214)
(0.0607594977846 -0.149600156513 -0.185881588027)
(0.0487857403245 -0.161624626836 -0.165594327308)
(0.0302495466771 -0.176053590634 -0.136408155887)
(0.027452330063 -0.188343332055 -0.10669148966)
(-0.00498620769501 -0.196701605258 -0.0820081851238)
(-0.0568058420798 0.21763798774 0.028442212652)
(-0.0670682699252 0.211606434782 0.0519581843628)
(-0.0899823496995 0.217280841239 0.0520640199642)
(-0.0809058897138 0.220765586053 0.040407337236)
(-0.0509453374495 0.210154577109 0.0218544754467)
(-0.0147830494745 0.189817487734 -0.00059447505124)
(0.00778046955757 0.155606854758 -0.0279827211839)
(0.0204351102878 0.121935664967 -0.0781702684141)
(0.0256958355866 0.0849083756311 -0.105585152631)
(0.0176351151219 0.0371939062069 -0.122797328113)
(0.00970193520853 -0.00184929781162 -0.153120824752)
(0.0215127634504 -0.0343943198263 -0.177840716532)
(0.0325755086138 -0.0626781406758 -0.192387372943)
(0.0462540232287 -0.0872739739394 -0.207757628796)
(0.0456884525357 -0.108864087573 -0.220229494821)
(0.043599778418 -0.124208021231 -0.213879623835)
(0.0336420540623 -0.140703025006 -0.197515806156)
(0.0257420115464 -0.152122966142 -0.170031052419)
(0.0350272171231 -0.161899698299 -0.145596997374)
(-0.0115085687661 -0.183046461147 -0.128817497974)
(-0.019986016207 0.192059448543 0.0962404502352)
(-0.0169037573756 0.182190876848 0.107421164732)
(-0.0532993404433 0.197897161373 0.097508460748)
(-0.0564619662823 0.213146471392 0.0783185389802)
(-0.0412490975844 0.215147243389 0.0556167810394)
(-0.0179809048928 0.200831030704 0.0284856135067)
(-0.00249074345632 0.171832017116 -0.0064720253069)
(0.00284557443879 0.136607071346 -0.0540878016995)
(-0.00152455596935 0.0926852738227 -0.0859914032389)
(-0.0092771227619 0.0482169016213 -0.111856769328)
(-0.007197167528 0.0132553001372 -0.143025169117)
(0.00310066446691 -0.0178982890216 -0.171148683473)
(0.0151942636882 -0.045281788979 -0.192582224343)
(0.0325915931317 -0.0654711107535 -0.212074739465)
(0.0277593721803 -0.0907663845641 -0.234338742865)
(0.0277478642748 -0.110052742885 -0.23167299394)
(0.032375790052 -0.118910706582 -0.214087807515)
(0.0323751952808 -0.130730449938 -0.201415695331)
(0.0300052943905 -0.145332410007 -0.194020067006)
(-0.0173155228781 -0.160832912137 -0.193070960755)
(-0.00216943083713 0.151839902678 0.159384199085)
(0.0194916786629 0.133888615914 0.167057166619)
(-0.0105492683264 0.148389638651 0.14334352463)
(-0.0222334730492 0.168917655603 0.117427092399)
(-0.0208235699573 0.181895986283 0.0895296627688)
(-0.0148366349872 0.17699373034 0.0568745528814)
(-0.0139694460336 0.154847821767 0.0171349545249)
(-0.0209099056042 0.123047102206 -0.0294995859884)
(-0.033281534819 0.0835629095364 -0.065945935426)
(-0.0402435485053 0.0468464246361 -0.10152212563)
(-0.0279965878167 0.0184951991577 -0.132950146271)
(-0.0152888901933 -0.00709702175741 -0.164549802244)
(-0.00141050472257 -0.032570886405 -0.191504936885)
(0.0124170137882 -0.051015384223 -0.220206416795)
(0.0160139828907 -0.0677301677039 -0.226504385954)
(0.0200150299919 -0.0815026221946 -0.222907817427)
(0.0215072551705 -0.0924091685586 -0.217309654486)
(0.0206066392645 -0.109005788795 -0.212820958701)
(0.0390555797221 -0.0947999188767 -0.217772687228)
(0.00145893404641 -0.0347371483864 -0.214671752681)
(0.00449920744645 0.106882501172 0.203325300906)
(0.0369396528861 0.0877890852281 0.210389569352)
(0.0164303087056 0.0900153355239 0.188619029137)
(0.00724521647206 0.104612500916 0.161650403873)
(-0.0010655738565 0.117881989263 0.128602494491)
(-0.0127485764928 0.120266069847 0.0887505506099)
(-0.0291480480516 0.108047841811 0.042453091216)
(-0.0498625864663 0.0873148174627 -0.00622552478594)
(-0.0673950291948 0.0635852434439 -0.0459693134158)
(-0.073013198147 0.0395086847891 -0.0903112886522)
(-0.0582420866199 0.0181518942654 -0.129091853916)
(-0.0349253507685 0.00138985623112 -0.162477634271)
(-0.0216105968818 -0.0209493675201 -0.196220957316)
(-0.0034296717669 -0.0358290591516 -0.226851915571)
(0.00701202378056 -0.0448551815331 -0.225101028648)
(0.00724628238837 -0.0568745527431 -0.229848221836)
(0.00640995059997 -0.0685684916379 -0.231313208804)
(0.0330151053434 -0.0540472756417 -0.235759072501)
(-0.0322255184746 -0.154530551661 -0.235933442557)
(-0.0352826133166 -0.0880488997643 -0.247124375515)
(0.0100398208025 0.0495148842377 0.224533025359)
(0.0515620979473 0.036121981441 0.231803967797)
(0.0328622855843 0.0367116868541 0.21565425561)
(0.0256054037026 0.0440875223001 0.191951077813)
(0.00809982887383 0.0528103962343 0.159422192111)
(-0.0204504351524 0.0561224217592 0.115046421755)
(-0.0567409609617 0.0541564446353 0.0653549896258)
(-0.0906941678562 0.0478609246565 0.0122935560538)
(-0.109957768089 0.0416637785162 -0.0267796579736)
(-0.1075952972 0.0348864799666 -0.0772433411367)
(-0.0881955811704 0.0215529096716 -0.124578033493)
(-0.0669025776023 0.00854573919687 -0.169036912198)
(-0.0445166383915 -0.00701673903762 -0.205513410812)
(-0.017608395859 -0.0165032054844 -0.24232794089)
(-0.00426589001976 -0.0125178551073 -0.244003945628)
(-0.00182216263773 -0.0225184589326 -0.252990932548)
(0.00764398068373 -0.0348673027296 -0.256824390416)
(-0.0666926389883 -0.0769524753197 -0.25294932588)
(0.0622847181231 0.0166418491009 -0.275047912703)
(-0.022027821726 0.0522823920905 -0.256388383847)
(0.00684406277887 0.0377161365651 0.237010215747)
(0.0587930823827 0.0324653104342 0.240734960819)
(0.0485269326974 0.0314895415284 0.219046209754)
(0.0355094414896 0.0330912258604 0.19652228911)
(-0.00572827999343 0.0315751178362 0.162572038594)
(-0.0682677096472 0.0256696001456 0.117646700993)
(-0.14228726421 0.0192039990929 0.0688534436618)
(-0.189031878796 0.0115640938044 0.0179740203363)
(-0.198079753093 0.00717956518145 -0.0175770506234)
(-0.181843948264 0.00315268521795 -0.0702993330829)
(-0.143815916732 -0.00549739296164 -0.124351517164)
(-0.115424321415 -0.0161044315556 -0.175734111619)
(-0.0811033804116 -0.0237914301328 -0.211430290768)
(-0.0355645327402 -0.0291165365209 -0.245516167822)
(-0.0177890104542 -0.0259985035194 -0.241311238308)
(-0.0239722966809 -0.0285928261817 -0.254002746033)
(0.046666989722 -0.0128130925022 -0.264720948725)
(-0.0519789727945 -0.0468579229992 -0.269545497529)
(0.112434091692 -0.0359634366263 -0.262923972774)
(-0.0268760067548 -0.039191991962 -0.244755220837)
(-0.0240623629446 -0.0434212129397 0.214390711686)
(-0.100336134443 -0.0261821455157 0.192080679544)
(-0.134079853221 -0.0881331123897 0.190531710042)
(-0.224453217796 -0.304212205872 0.147355122808)
(-0.160632011242 -0.632780484725 0.0926209958436)
(0.118846369914 -1.01989942943 0.0637748552334)
(0.507611793942 -1.08197157701 0.105567892584)
(0.326545742389 -0.486207745172 0.106600492271)
(0.25284928859 -0.365098256795 -0.0261055733659)
(0.367647916497 -0.216276882865 -0.0871783782727)
(0.222731760679 0.0303844021195 -0.111991827309)
(0.352803989845 0.132734842477 -0.0644054419203)
(0.325301041945 0.363081090271 -0.132190070957)
(-0.447219787722 0.902214355338 -0.5172748167)
(1.63832708227 -0.25166752449 0.478990865173)
(-1.98277890921 0.896170254262 -0.93239182746)
(1.43841917402 -0.275985518883 0.356244369639)
(0.456873971045 -0.50597966836 0.521712258301)
(-0.861583294012 -0.159629359726 -0.629020070315)
(-0.0652455104368 0.656661558881 -1.05563701224)
(0.00209546063109 -0.151979891133 0.139539765828)
(-0.0681747379072 -0.142935106509 0.0832291780556)
(-0.0857537102384 -0.222964024211 0.0299409786148)
(-0.107218198807 -0.511903810706 -0.0328718826664)
(-0.0744562111016 -0.952010212031 -0.0871202044945)
(0.0203621412233 -1.03460409251 -0.089709532701)
(0.110674358479 -0.806248432968 -0.053505265729)
(0.0893784523375 -0.362896522073 -0.0473065412305)
(0.0386711588119 -0.189553628112 0.0244857512156)
(0.0877285901945 -0.0488622628773 0.0148449570499)
(0.102315910397 0.0916289843784 0.0517495720773)
(0.109736622293 0.259815173568 0.0931100626777)
(0.0493381138217 0.202514908966 0.174447596587)
(0.121536465949 1.24329438892 0.106765488742)
(0.0651535148594 0.466884144299 0.126290815165)
(-0.577310953633 1.77845197361 -0.00744622720084)
(0.488194377503 -0.716225896634 0.746307930965)
(-0.118362245445 -0.358829554718 0.560324387775)
(-0.584082245698 0.517966903031 0.0348000480775)
(0.0453385844877 1.38544874409 -0.328804134134)
(-0.0668123566148 -0.197133719681 0.0695645876333)
(-0.184395496072 -0.185496230281 -0.0273116508128)
(-0.404684431963 -0.550537480761 -0.10002440041)
(-0.371498094889 -0.747199049772 -0.0670473513131)
(-0.190520972581 -0.316745497805 0.00890014232286)
(-0.18632903804 -0.101269729264 0.0296139410266)
(-0.13274673294 -0.291112034082 0.00774986948554)
(-0.0489963107349 -0.237187035923 0.00214093472579)
(0.032100308397 -0.197283474781 0.0119466330457)
(0.0982964963007 -0.0789049848191 0.0213270805168)
(0.104066847072 0.0703564951521 0.0531666374276)
(0.136499208954 0.272972446516 0.0841781895711)
(-0.0756030130173 -0.0450076450685 0.143638776142)
(0.221213063835 0.411290774206 0.383995918757)
(-0.307849792371 1.68766766353 -0.168269020487)
(0.54358803313 -0.682456243569 0.622042275889)
(0.097178726708 -0.834615189883 0.352309709843)
(-0.282211344218 -0.610257692503 0.344759985668)
(-0.475005047462 -0.512950833736 0.66540580825)
(-0.0613056389948 -0.74883347017 0.627910025838)
(-0.513339751357 -0.262458583437 -0.0662323145089)
(-0.689837201062 -0.399752920886 -0.148357226291)
(-0.19582410451 -0.286394312304 -0.0395417969524)
(-0.0916073560048 -0.11466335634 0.0417582733878)
(-0.363158342699 -0.588913158749 -0.0354869339905)
(-0.203946687491 -0.820081699697 -0.050360895429)
(-0.021279046511 -0.428336621799 -0.00633726315948)
(-0.00206895445441 -0.205277996391 0.012664987418)
(0.122760061261 -0.220235455935 0.00180702957231)
(0.120161593786 -0.084251073968 0.0257685882482)
(0.0600860815651 0.0713640235056 0.0393777210851)
(0.21166384588 0.277689024504 0.0582105251801)
(0.0410461613613 -0.0891517982424 0.165599995168)
(0.0793085498945 0.340490218581 0.206009720877)
(0.0938849046687 -0.198236368425 0.572244778464)
(-0.244193104386 1.74703440313 -0.319127632361)
(-0.55128388208 2.39093855089 -0.362535738872)
(-0.310918954464 0.782333713614 -0.0615949556485)
(-0.0659745557644 -1.39277001348 0.55738409768)
(0.00245634297375 -3.72676498465 0.620986074267)
(-0.850684241368 -0.229438997696 -0.0799837944688)
(-0.200419789374 -0.21457909635 -0.0376435568569)
(-0.392688432893 -0.32952464234 -0.0176045080377)
(-1.14457518256 -0.897676079421 -0.154127437752)
(-0.373697309892 -0.574490256976 -0.118570582591)
(-0.176256256628 -0.431461649765 -0.100947118296)
(0.0864229220289 -0.698569951905 -0.0908354110497)
(0.262814181415 -0.447979010241 -0.0478970063428)
(0.23249746798 -0.14301810944 -0.0151550340364)
(0.155914764424 -0.0571517687007 0.0171055833046)
(0.187475916626 0.0309570185022 0.0330571327706)
(0.300248809629 0.22310734861 0.0538052351912)
(0.152668029328 0.00499726974731 0.155770192965)
(0.0446589139627 0.565724135895 0.0755816743314)
(-0.159495498459 0.230597169909 0.309008608004)
(-0.161907966363 0.685841839695 0.0889242799905)
(-0.650768121689 0.128271128467 0.490639665434)
(-0.238858273173 0.801731610466 0.11526484069)
(-0.653557070994 -1.24829579401 0.371216657329)
(-0.513424419864 -0.570385813499 -0.116036308142)
(-0.90691624402 -0.430227513538 -0.077009820167)
(-0.838158902005 -0.296642171198 -0.107916652839)
(-1.49351892644 -0.446104190565 -0.192379981917)
(0.167068509877 -0.0960306179957 -0.0714408941251)
(0.145213686196 -0.00598591554917 0.00864700049569)
(0.00816834199547 0.0433946517697 -0.00434743387925)
(0.0578409543281 -0.153978701972 -0.0836254125022)
(0.207679341902 -0.112490478268 -0.0816566520035)
(0.298368308498 -0.190730230353 -0.042766160167)
(0.151493937501 0.0158885242056 -0.0216528623525)
(0.271576389738 0.0908865272667 -0.0167961007444)
(0.189461447891 0.00403214165486 0.019315887005)
(0.197261079836 0.155073191161 0.0404078420965)
(0.0946045540611 -0.131071784429 0.246979291659)
(-0.0883844868274 0.184089479719 0.240058811953)
(0.51207279625 1.44301369183 -0.112233259514)
(-0.628735799671 0.0962237701863 0.330391599845)
(0.584561233039 1.33681532148 0.0814678331311)
(0.0986536878432 0.839491580658 0.232247651415)
(-0.649029081547 -0.27108828176 0.125594849727)
(-1.18550555949 -0.129833290102 -0.0703022200284)
(-1.5570783714 -0.160498936011 -0.217276612965)
(0.288099033209 -0.25274371368 -0.0917157219028)
(-0.248472929303 -0.288714738357 -0.051262260342)
(-0.291979568246 -0.156872536213 -0.0988337052179)
(0.0110193909946 -0.0459246431489 -0.0443276222423)
(0.135789312503 -0.0927787217596 -0.131803013161)
(0.319819816174 -0.286391322142 -0.086592118196)
(0.246122663515 -0.198261939585 0.0332855553363)
(0.19937746176 -0.146200614784 0.1287202846)
(0.198727576807 -0.0910568695994 0.143140959065)
(0.181253007766 -0.0409086899022 0.137569555302)
(0.084859359525 -0.0182922520473 0.130347570228)
(0.0148780583806 -0.29801417942 0.37614946077)
(-0.406454902577 -0.646335124401 0.496601565117)
(-0.334312506292 0.503697829415 0.287299732378)
(1.79406288448 2.42381935989 0.168546477298)
(-1.07853704156 -0.249809885645 0.513251079806)
(-0.728696304881 -0.210404765657 0.318550488398)
(-0.663536685435 -0.181897568357 -0.0639177273403)
(-2.71635862754 -0.124121406798 -0.049590233838)
(-0.135156249171 -0.167685442643 -0.173829982768)
(-1.29680845301 -0.146256699342 -0.139597306891)
(-1.49747496559 -0.0219180152555 -0.187758149757)
(-0.714231952545 0.00186795449538 -0.226233044122)
(-0.0702728989053 -0.0893852256985 -0.107459926453)
(0.0958118130492 0.183060202789 -0.152297520492)
(-0.220810653829 0.0908299061245 0.118063506118)
(-1.11361446359 -0.71725536585 0.268637901569)
(-2.56970063476 -1.68129181541 0.196932265215)
(-3.91919824242 -2.6191581607 0.1355407785)
(0.920064694182 1.03471897003 0.350929461398)
(-1.46876802165 -0.520618389902 0.293930544546)
(-3.00324700719 -1.45617710916 -0.437224338639)
(-1.3635276178 -0.0478559902453 -0.0873104456219)
(-1.71105573714 0.0584408217235 -0.235778486524)
(-1.31206866446 0.136061178072 -0.208043437135)
(-0.930739738824 0.00317682194729 -0.163209701023)
(-1.06031557943 0.0126776057324 -0.208201566496)
(-0.0815497260968 -0.105730633471 -0.192212132111)
(-0.128166500615 0.0866304456111 -0.123305654888)
(0.0769801047219 0.344277368554 -0.0108253363667)
(0.777890987467 0.88095639562 -0.309618621203)
(2.95076365212 3.20891902778 -0.0908148950062)
(2.14153742905 1.27804337066 0.514644730124)
(-6.1062659726 -3.92667819996 0.0309784840955)
(2.89932464634 1.83479779628 0.399006265504)
(-1.46111269887 -1.11813806141 0.413961489242)
(-0.587022774938 -0.0365733432141 -0.109992365619)
(-0.721089796408 0.0128164893714 -0.175709074171)
(0.464122718758 -0.0250223333387 -0.119238692476)
(0.057946417873 -0.00268539244389 -0.0660652132346)
(-0.321291760717 -0.0210138645754 -0.109022172312)
(-0.15835711886 -0.0561883511274 -0.180483655005)
(-0.301934570591 -0.104086173107 -0.129598787257)
(0.164810582459 -1.07602964753 -0.193734415635)
(1.94024064957 1.70660369444 -0.147379258502)
(1.99347922912 1.41145173816 0.0833534518685)
(6.03021087055 1.66259814795 0.867563204524)
(0.141550651809 -0.83776351502 0.733414433913)
(-6.45401349499 -1.57810068188 -0.361309967273)
(3.4180882873 -0.725009318152 0.650687632036)
(-1.66792264357 0.0905528755096 -0.117924929422)
(-2.51680326479 0.23927541862 -0.230278246291)
(-0.78027251003 0.0136305793602 -0.250195879626)
(-0.263293701604 0.121460300843 -0.159825465778)
(0.24308967506 -0.0104015331726 -0.0950686535146)
(-0.00300224106098 0.0380726906503 -0.126648251182)
(-0.0892002817115 -0.0661986593198 -0.102347064268)
(1.6160795549 0.482769503336 -0.448224765507)
(1.49896794713 -0.023002851073 -0.00446337287103)
(6.22161272274 1.28650472928 0.675899196657)
(8.73103436479 1.5189692132 1.38981791631)
(-0.780464149658 0.678496584976 0.736528977016)
(-8.83827232523 -0.705983934251 -1.19794812578)
(11.3144075536 -7.08842049999 0.563262005548)
(-1.23178336049 0.502133622888 -0.00359932726134)
(-0.89645073001 0.148644552797 -0.0784671560367)
(-2.0539415102 0.457751554085 -0.174033370474)
(-0.910849885751 0.243062688718 -0.193616905318)
(-0.0502389104832 -0.0475671799615 -0.123381870153)
(0.239663146428 -0.050347557492 -0.0894477314756)
(0.0689075111706 0.00836647325298 -0.0581460601471)
(0.0261137382839 0.0410373096597 -0.121026862482)
(0.0667560287914 0.0859837203894 -0.213521732145)
(0.171003211719 -0.008585528028 -0.329480799445)
(0.226868224075 -0.138513763409 -0.277078458643)
(2.65947209024 0.342554356113 -0.813647817289)
(4.13716892888 3.00701907237 -0.797737441216)
(0.525439886461 -0.334690311217 -0.18390672857)
(-1.15581227226 -0.71917378338 -0.151474473586)
(-2.99549751338 -0.0316708542258 0.0797221228502)
(-7.4228609463 0.215645845262 -0.159963575479)
(-11.8710086428 -0.856236820438 -0.943335599546)
(0.873844971383 -0.866611637002 -0.216675081667)
(-9.89015177944 3.09170353218 -0.904879012261)
(-1.09719697586 0.383578591339 0.0397861241047)
(-0.829608849735 0.387600150147 -0.1356139204)
(-0.749493227236 0.383598472237 -0.0972773592107)
(-0.535690972394 0.300716730953 -0.135966021919)
(0.158830927524 -0.213338641821 -0.0644521705848)
(-0.106844319428 0.316543828905 -0.114025214683)
(0.21334203173 -5.70334508627e-05 -0.0504791821606)
(0.0352010178852 0.107069040656 -0.0744192669769)
(0.1097072577 0.0587256484832 -0.128616227394)
(0.107781187012 -0.0588325893497 -0.0944369881669)
(-0.103082614812 -0.593607443963 -0.230418565459)
(0.0886340407776 -0.186953038845 -0.0591490137098)
(-0.516453607845 0.410225936981 0.515936705158)
(0.223290232289 1.18669831162 0.87865123826)
(1.16414078883 0.0614790193911 0.301441421204)
(3.23828655302 0.469931803676 0.13316186803)
(8.0228556866 1.7223757257 0.282072506049)
(13.6737576065 1.37414097786 0.818383273084)
(5.02740951354 -1.86218703304 0.284282742217)
(9.69518770458 -4.32969519795 0.190226408106)
(-1.28163399186 1.23041035348 -0.0275793257728)
(-0.592512700995 0.375043374716 -0.100748439373)
(-0.12917674805 0.0278005788698 -0.0111466915519)
(-0.432049523318 0.520932431822 -0.0835614705703)
(0.049287517535 -0.053788286964 -0.0517516104858)
(-0.240950967777 0.513687894075 -0.0665694098764)
(0.0306901498974 0.303908342122 -0.0764213391462)
(0.04023147243 0.204691578165 -0.0875766583755)
(0.0563267906789 0.0979158652791 -0.120549071164)
(0.0493904106251 -0.00423177719522 -0.104649642162)
(-0.0478751787254 -0.24752542126 -0.211044932886)
(-0.200129353038 0.803590719598 0.296290849532)
(-0.664090691955 -0.211070488533 0.077857327606)
(-0.73278693966 -1.06582856683 -0.124469458124)
(-3.11591104886 -3.26655578306 -0.485652677698)
(-6.47408505961 -3.78243236172 -0.48617544635)
(-10.0685029967 -3.88229386999 -0.71261311382)
(-8.62360316121 -1.14563655595 -0.516659656716)
(-4.44021563288 0.815722949525 -0.0487169844833)
(-11.7525909812 12.3921219817 0.0637593011833)
(-0.503250634242 0.444553127829 0.134646064993)
(-0.400419371374 0.514939649231 -0.00316776035141)
(-0.35856797383 0.427583745547 -0.00687186786774)
(-0.356421145634 0.465951323052 0.00594475330099)
(-0.257759623782 0.364616040374 -0.0148472437434)
(-0.179549990433 0.345450126171 -0.0183927127369)
(-0.025853752648 0.286003118649 -0.0423059321134)
(0.0224638118432 0.226399879446 -0.0777328977251)
(0.0267926225743 0.132138737552 -0.0953955028311)
(-0.0532027084784 0.0233122674269 -0.117651146195)
(0.057180505529 -0.0526459298688 -0.121936524956)
(-0.272037489676 0.333144453887 0.053821761336)
(0.485812873877 -1.61232033433 -0.588033471176)
(0.781640661098 -1.24898827521 -0.447319781045)
(0.529057254896 -0.435224467245 -0.455129027013)
(0.793864895177 0.0403676695759 -0.445763079077)
(0.731100733663 -0.479255105398 -0.369102886906)
(-0.10780855023 -1.08473640994 -0.190186649168)
(-2.39394416531 -0.765321624809 0.180079633811)
(-1.41296918944 -6.59352043591 0.760212735108)
(-0.315470520608 0.260218294363 0.048173757615)
(-0.144228747204 0.0407787020662 0.141388903238)
(-0.128142380309 0.39329201138 0.0398737915779)
(-0.173705480015 0.431108648049 0.0585576871033)
(-0.165531954567 0.411361238979 0.0338259807663)
(-0.0920253329656 0.389872147422 0.0111657767979)
(-0.0262135333705 0.32037596363 -0.0139111551172)
(0.00376890856029 0.232585951791 -0.0543619601763)
(0.0023527146258 0.142547743991 -0.069183864356)
(0.0249857200376 0.041455978662 -0.0771788064358)
(0.0966896149802 -0.016857371489 -0.116548277088)
(-0.150367720453 -0.0395460566147 -0.117457237888)
(0.839380485757 -1.24235072346 -0.525613974587)
(0.411785149634 -0.0241513621941 -0.27553236659)
(0.663173472489 1.87611534599 -0.0197415884699)
(1.65220387409 2.02106851822 -0.028834827251)
(2.07799543359 1.01007906129 -0.0919719736629)
(2.24495425864 -0.00698581248858 -0.067293784403)
(1.82115364625 -1.88245498547 0.0120964159874)
(1.11345343768 -13.7251490089 -1.35175707773)
(-0.14409433663 0.349071522761 -0.0822289678707)
(0.105042728406 0.164024759561 0.0733362072005)
(-0.100917761722 0.157586164718 0.162803651054)
(-0.0616724950376 0.269976367353 0.0970435621061)
(-0.0835179640234 0.30612369677 0.0866584669619)
(-0.0596874906186 0.312879648614 0.0564630265218)
(-0.0292796395374 0.264845593603 0.0257290688681)
(-0.0165550050989 0.18952498152 -0.010520336057)
(-0.0323462268572 0.0961189635973 -0.044585526186)
(0.129703391109 0.0263875915452 -0.0272978677108)
(0.00991195592999 -0.0457830420553 -0.150257096049)
(-0.20096502259 -0.201397997821 -0.171808819577)
(0.650877665987 -0.890287746155 -0.338642488674)
(-0.578335041177 0.767048486388 0.126409030522)
(-0.44099274561 1.12042827253 0.0266942180384)
(-0.16598020974 0.773059066937 -0.0584307870543)
(-0.037239258837 0.708706203293 -0.0279629357637)
(0.215089118152 0.835797409121 -0.110943512402)
(0.573407303366 0.74105029074 -0.383980054559)
(1.82119019685 -2.28471706083 -1.56385253583)
(-0.189986381558 0.148187174491 0.105073486616)
(0.033783424895 0.11608610424 0.179093463369)
(0.129951472324 0.134422562079 0.121331215693)
(-0.00393462886115 0.132514720435 0.153396229564)
(-0.0186248014794 0.168063183805 0.127228929216)
(-0.0309175403258 0.181895592149 0.0986528186761)
(-0.0407888477048 0.162441515291 0.0606987360591)
(-0.0696867451723 0.119974768874 0.0293769215778)
(-0.0817623103553 0.0510359475856 8.75308434975e-05)
(-0.347971147838 0.055534759953 -0.0892524316518)
(-0.220089323078 -0.107419281472 -0.233316305034)
(-0.43211699913 -0.197541085485 -0.132042985326)
(0.663286291008 -0.891210295577 -0.21220877433)
(-0.935324114748 0.542906602648 0.31339350133)
(-0.259555302415 1.02420017948 -0.101519320733)
(-0.0335465237014 0.800627665015 -0.0310943900244)
(-0.106661213731 0.783598459164 0.0188219643611)
(-0.188536291301 1.08126665276 0.155895094019)
(-0.213508710022 1.40537996877 0.124938628005)
(0.69107025349 2.76615351331 0.0844000400373)
(-0.349083227633 0.119250053019 0.126731456582)
(-0.118574348895 0.0477692340581 0.239987936798)
(-0.0146140744687 0.0632168376259 0.157937856073)
(-0.00786447249622 0.0632088724602 0.154684335045)
(-0.0225976681826 0.0645512206929 0.140222444377)
(-0.044982842703 0.071885501053 0.118395435157)
(-0.0782497118658 0.0686977384366 0.0880424023089)
(-0.133467925618 0.0671653680426 0.0484337419268)
(-0.126612563133 0.0828929011851 0.0371122315329)
(-0.835065312174 0.299265796836 -0.163502335603)
(-0.391867889451 0.15443373846 -0.353999121099)
(-1.39085325313 -0.333366039034 0.0081987826692)
(1.44143665749 -1.66380289938 0.0324681607586)
(-2.10776823265 -0.262519771377 0.403068570518)
(-0.38465053442 1.79048155447 -0.45084021192)
(-0.0323493250241 1.31474092961 -0.236828444345)
(0.38584511575 0.892504049715 0.149828843274)
(0.232504106638 0.980678327246 0.458618129264)
(-0.236122041726 1.21494827624 0.71351468742)
(0.602733278141 2.48374729127 1.49659393472)
(-0.368287698936 0.339400450133 0.120574989166)
(-0.223097194836 0.275535397081 0.180759363206)
(-0.376877941779 0.278854509585 0.160965470636)
(-0.289164018014 0.231030182149 0.130946263935)
(-0.311311844531 0.177771493428 0.149313932686)
(-0.330092481419 0.129719412637 0.148365725885)
(-0.369423492219 0.0695687515412 0.14471196834)
(-0.360121232749 0.0337885381519 0.058051805637)
(-0.14760041387 0.0346383471049 0.0467573299782)
(-0.56978274453 0.0649478300371 -0.120118689121)
(2.46134461853 -0.250119396281 -0.238640315774)
(-0.382922291115 0.312913399126 0.245289852128)
(4.72821411166 -2.41945859813 1.39505606531)
(-25.0836747662 -1.35502457734 -0.800734111582)
(-2.26200286903 2.74625334826 -1.92628348697)
(5.00584026265 1.95944500168 0.0515214244136)
(6.34161366469 1.68976606799 1.50064829129)
(4.86338227457 1.9526492574 2.32969313383)
(2.83952742474 2.11915526996 2.84910235161)
(2.0940564258 2.92822002946 3.7209640723)
(-0.00664822352377 0.0101658096059 -0.00350329151707)
(-0.0145483618884 0.0212459407772 0.0331873791368)
(-0.0338024686635 0.041446678137 0.177237571165)
(-0.0415748070874 0.0974112816116 0.429208431738)
(-0.0298952188194 0.171142662606 0.692497577394)
(0.00650246201623 0.212705041632 0.700340700512)
(0.0242229805058 0.184604643745 0.654841960743)
(0.0509198350891 0.13535363772 0.559800692227)
(0.0692543966636 0.0537523088103 0.381708444924)
(0.0470890924364 -0.0107054406528 0.217562261871)
(0.0274154395353 -0.0843972905172 0.0740918983444)
(0.0274271773489 -0.135982740618 -0.0695962183222)
(0.0787662750996 -0.184506945782 -0.169411505906)
(-0.0436878415684 -0.27489997974 -0.336693457353)
(-0.000322505479924 -0.180124059483 -0.212592668858)
(-0.0603331957456 -0.271449941315 -0.143490348188)
(-0.302655398166 -0.184105381552 -0.172634424046)
(-0.0442884580388 -0.121786935753 0.570301702317)
(0.146824806823 -0.218642528391 0.792176588934)
(0.0816215762639 -0.280460975261 1.03044684998)
(0.00554953772006 0.029878353409 0.0219574885793)
(0.0213366429132 0.0691637316631 0.156019509385)
(0.0267284381649 0.100856247505 0.32902392791)
(0.0434271771212 0.114373692134 0.295757047195)
(0.0364743255287 0.111411664672 0.0883919732315)
(0.0137333292697 0.0979528061531 -0.129347390957)
(-0.00365080909203 0.0811030836487 -0.146233700313)
(-0.00213517932273 0.0647001416985 -0.0686093865411)
(0.00826265453282 0.00492027991903 -0.0437528813904)
(0.00100241300659 -0.0495317434812 -0.0230261254583)
(-0.0229933409766 -0.0975190360259 0.00272343505647)
(-0.0368642420116 -0.15321568249 0.0433632933253)
(-0.0363622723881 -0.231780839231 0.150707843952)
(-0.0126903472302 -0.343090580064 0.209409334004)
(0.0259927962131 -0.194791124707 0.0751863677012)
(-0.0391849197737 -0.291843532119 0.062767260943)
(-0.157897229955 -0.129546352533 -0.229145806985)
(-0.0917038855867 -0.0787549816902 0.120382730539)
(-0.0312581746657 -0.337503188562 0.534342152915)
(-0.00667799418593 -0.486371670735 1.16877206745)
(0.0294983416504 0.0163790318165 0.185593566212)
(0.0573569190125 0.095751627192 0.304081387341)
(0.0237864164096 0.0786718469596 0.306193046895)
(-0.0122639094933 0.0222638589413 0.0706460725562)
(-0.0314591821409 -0.0301190270477 -0.159643658898)
(-0.0272929819887 -0.0658059378248 -0.277911499921)
(-0.0255732857411 -0.0779136857839 -0.27524749568)
(-0.0249310607412 -0.0738548843735 -0.154264383901)
(-0.0214513741665 -0.0689389881105 -0.0577284756783)
(-0.0313930693613 -0.0845780786698 0.0019463658984)
(-0.0531320178263 -0.0944731370831 0.0660456224139)
(-0.0763516004337 -0.113246540752 0.17659327744)
(-0.0831496397265 -0.147865808479 0.356586987132)
(-0.0147179802743 -0.186387648201 0.585389788452)
(0.00687096796227 -0.245274139638 0.655023983966)
(-0.0263070703869 -0.19584481255 0.344884422992)
(-0.0835483182129 -0.119411453959 -0.0388193714216)
(-0.184894072741 -0.0733836977317 -0.00771163201142)
(-0.199108596014 -0.203823780196 0.32018473603)
(-0.0489048254036 -0.196990400514 1.0722870106)
(0.110420694281 -0.0152756332333 0.512245441051)
(0.0728171420321 0.0793834910015 0.19088895016)
(-0.0534102961423 0.022831062783 0.015756174126)
(-0.0908380678384 -0.0146624621333 -0.153904331322)
(-0.0830735148979 -0.050572978541 -0.308205732705)
(-0.0768753473421 -0.0711361120877 -0.37824954913)
(-0.0630709906478 -0.0840603601846 -0.320732786923)
(-0.0449324216361 -0.083122146001 -0.194008321009)
(-0.0434988612886 -0.080861912527 -0.101851339188)
(-0.0546490796206 -0.0795098804418 -0.027607820594)
(-0.0712452045926 -0.079021139546 0.0506124156909)
(-0.0941144201758 -0.08827614028 0.190765944173)
(-0.106072113603 -0.104507196201 0.378230750428)
(-0.115079812047 -0.128324678036 0.610493017697)
(-0.00710359422053 -0.212163759471 0.847384568104)
(0.0498129158559 -0.22000672794 0.766268324574)
(-0.049423958778 -0.268140022938 0.596042402613)
(-0.142676534651 -0.177061305879 0.165029510058)
(-0.0809399937609 -0.0820894778419 -0.0550943671952)
(0.0575843916377 0.150235731699 0.0487024457016)
(0.206250302939 -0.0285267518078 0.762767757128)
(0.0687214185483 0.0528275132927 -0.0611818824671)
(-0.087309219378 0.0426402115736 -0.184322121432)
(-0.126015820984 -0.00221239585708 -0.435231643241)
(-0.143637037178 -0.0701806706575 -0.642498446574)
(-0.134589077679 -0.0841507949922 -0.636400423145)
(-0.111707773356 -0.0586480536404 -0.479062837089)
(-0.0936646923347 -0.0533193507025 -0.293688306027)
(-0.0828629552126 -0.0669779472453 -0.150306971937)
(-0.0834261976911 -0.0719651326874 -0.0808073668236)
(-0.100613455967 -0.0726469441801 0.0261852643807)
(-0.129875563846 -0.0808131593684 0.204534471818)
(-0.151732311651 -0.0913498950003 0.416297904002)
(-0.15301827972 -0.143207913093 0.709916727057)
(-0.111721030283 -0.149060648086 0.791762027651)
(-0.0941375326714 -0.247656920407 0.978715464057)
(-0.0228973019607 -0.309090923506 0.94605155883)
(0.0543514380541 -0.329349130825 0.614829001509)
(0.186814448935 -0.285895542197 -0.0488411120999)
(0.131579842976 -0.0817178988138 -0.698506294407)
(0.304312892102 0.00651333568997 0.905706410575)
(0.103991715575 0.0859788956452 -0.318616620462)
(-0.15241712356 0.0565227149837 -0.628004638736)
(-0.249476581685 -0.0413010459695 -0.81971564777)
(-0.238905729897 -0.0767352560261 -0.740511745687)
(-0.155741950044 -0.0779782924023 -0.684448632827)
(-0.123826963284 -0.0417945546856 -0.578024372472)
(-0.127573726545 -0.0236695102649 -0.342345939089)
(-0.134690163847 -0.0341385489918 -0.173526476793)
(-0.132990132441 -0.0533405128068 -0.0735022702284)
(-0.145552211545 -0.0676072542449 0.023551415569)
(-0.17812259922 -0.0515224420887 0.157760901749)
(-0.237028221041 -0.0417183693392 0.335334039216)
(-0.226997706472 -0.0692018636745 0.667495926901)
(-0.137232051704 -0.11674251452 0.933597271027)
(-0.109039796076 -0.180905308049 1.17214233789)
(-0.10375515987 -0.255761787617 1.07917788087)
(-0.0385722617054 -0.392897849458 1.01207819747)
(0.172726913243 -0.394645476999 0.6153818797)
(0.0350199114642 -0.286798347513 -0.482866958546)
(0.365959311874 0.021699857631 1.04039707063)
(0.0719268541275 0.072142373361 -0.617972859589)
(-0.274604538751 0.00781981971343 -0.804981144616)
(-0.307672943968 -0.0245102412846 -0.704531446876)
(-0.259827596009 0.0059789434574 -0.743207768222)
(-0.178141407458 -0.0162922624538 -0.717453600812)
(-0.156501771222 -0.0070064273732 -0.510732806526)
(-0.183029798753 -0.0390532931431 -0.254288133599)
(-0.226811206986 -0.0281283412099 -0.0691380677348)
(-0.227568851782 0.0113809883679 0.00824340341923)
(-0.219425398744 0.032736406298 0.0811054689831)
(-0.226921257728 0.0712717478526 0.176061044152)
(-0.271005002435 0.101424979288 0.293934294922)
(-0.270310184312 0.0591350824017 0.527626813831)
(-0.236704217125 0.0413849737402 0.841810936228)
(-0.257141867099 -0.070741724555 1.06238794145)
(-0.251915063935 -0.203538074315 1.29405938136)
(-0.104647918109 -0.299871994013 1.16366405771)
(0.21135369153 -0.264934098766 0.688057053944)
(0.0287610302357 -0.0880687270622 -0.633504304578)
(0.376177426425 0.00181337381272 1.15680375591)
(0.041124340397 0.0401885475799 -0.575938682159)
(-0.296196469349 0.037236999083 -0.597498821281)
(-0.2921344377 0.0253015513118 -0.663681281082)
(-0.291986722498 0.0232637115919 -0.816172884373)
(-0.225184110796 0.00846923677405 -0.629092110852)
(-0.279325544978 -0.00445009034252 -0.254541810949)
(-0.295431518856 -0.00816134536788 -0.047249662063)
(-0.243841189411 0.0206345932565 -0.0116679668314)
(-0.188989815786 0.0672381047774 -0.0258167295002)
(-0.182605938465 0.109185686974 -0.0183520680799)
(-0.201023499065 0.161080934752 -0.0121138142919)
(-0.299856339139 0.21765089928 0.0115907760225)
(-0.279628848767 0.23895406823 0.346263760293)
(-0.234498437241 0.256078662205 0.318168493728)
(-0.357199178271 0.0887820851663 0.468530106952)
(-0.386957056285 -0.233723149902 0.575488243686)
(-0.225653745279 -0.2255233419 0.824418357147)
(0.16199742185 -0.093074821832 0.608751258203)
(0.0627504220941 -0.00854323765112 -0.995372950669)
(0.371225357614 -0.0214051612638 1.22727340987)
(0.0488761696181 0.0588588477878 -0.45817695172)
(-0.316966386023 0.0855309594265 -0.659188042837)
(-0.3451473446 0.0245596278042 -0.612413892472)
(-0.313729764365 -0.0220920427174 -0.712852529501)
(-0.230661700864 -0.0147721211057 -0.596778627792)
(-0.303144396372 -0.0109361053398 -0.218205638923)
(-0.257491398539 0.0105554218366 -0.0291375886423)
(-0.183992461832 0.0474889315035 -0.0125705157106)
(-0.139026102474 0.0667006474214 -0.0165545353308)
(-0.12836523335 0.10261670647 -0.00139810732525)
(-0.137305846995 0.14114693557 0.0111159558044)
(-0.130021751338 0.182045586927 0.0175039259616)
(-0.07161032885 0.284877240967 -0.0656679810582)
(-0.237469441705 0.152009776553 -0.506754270227)
(-0.698601348669 -0.0499691248099 -0.105933984655)
(-0.619920588545 -0.418558848156 0.982732367461)
(-0.15842515562 -0.455989955997 0.895885474719)
(0.0454571885406 -0.00897707339645 0.312804556219)
(-0.0805955749271 0.181058627326 -0.68945710037)
(0.391315689691 -0.0781336799008 1.22295449595)
(0.06880468362 0.0462374717036 -0.544640441113)
(-0.358366140265 0.0968311866152 -0.750316368611)
(-0.413253917812 0.0779946908791 -0.582121467219)
(-0.352269377418 0.00671699618539 -0.609368233231)
(-0.216434986415 -0.0349947014237 -0.501145396423)
(-0.282491607318 -0.0330355318541 -0.228082299474)
(-0.238364384544 0.0138180102231 -0.0249801535183)
(-0.156388001113 0.0615317774628 -0.0190218489025)
(-0.110567500953 0.0739770522962 -0.0229267497552)
(-0.102240578495 0.10700065636 -0.0126486905276)
(-0.117417908904 0.124990891122 -0.00302346707184)
(-0.0437860326771 0.103252251358 -0.000204518371979)
(-0.0850577279987 0.0957044997781 -0.492733598281)
(-0.359293323062 -0.158738620556 -0.483096587652)
(-0.823427280798 -0.29629976366 -0.169431535562)
(-0.790252101253 -0.440109364184 1.06937221315)
(-0.00706514436661 -0.340367119532 1.73734577334)
(0.190473753388 0.319388852816 0.500330258265)
(-0.0980368458525 0.566615310511 -0.567965815669)
(0.407050658411 -0.0796424599661 1.42265772018)
(0.125265887677 -0.00750475219157 -0.539114917339)
(-0.326483878743 0.0352634961561 -0.928913969915)
(-0.446663768799 0.111584496689 -0.822877599684)
(-0.429051288175 0.0654681510284 -0.714797204121)
(-0.254377118743 0.00858707439768 -0.497633064775)
(-0.280097583267 -0.040653023595 -0.22428984708)
(-0.228281791214 0.0418858538936 -0.0353263057356)
(-0.127034147075 0.116496144831 -0.0211217230808)
(-0.0827095967099 0.154527321728 -0.0330752059317)
(-0.0799056813557 0.217400084624 -0.0436125158366)
(-0.140214098219 0.242324497296 -0.0509040650457)
(-0.101005407231 0.0852565911192 -0.0476383102565)
(-0.174702170662 -0.241730732151 -0.423972482257)
(-0.448014113761 -0.355631791962 -0.330934897663)
(-0.855007716326 -0.338075950771 -0.115427312852)
(-0.637160375283 0.0480706454854 1.83867811089)
(0.477714052097 0.514982965166 2.29533692662)
(0.474913252793 0.382015187007 -0.586556140581)
(-0.108232167594 0.666927471629 -1.56311837817)
(0.345005531602 -0.0288422984744 1.22183820205)
(0.0583171247246 0.00157822355702 -0.462897253574)
(-0.282037248791 -0.00311033723472 -0.766989941196)
(-0.392269209446 0.0450179781466 -0.908669418976)
(-0.428848605253 0.0583994847472 -0.793612423489)
(-0.298879160387 0.0485197721505 -0.604095220679)
(-0.199904495602 -0.0290409581724 -0.262190698567)
(-0.152655393998 -0.00171048310223 -0.26230805578)
(-0.126886801258 0.0153560373987 -0.238787824248)
(-0.0454065070864 0.031765687538 -0.298825204025)
(0.0388385225989 0.073297558964 -0.581656771962)
(-0.102519113316 0.0234462888628 -0.626349571158)
(-0.31717203992 -0.175874450555 -0.0880088699216)
(-0.288126102575 -0.32721622693 0.50700841604)
(-0.332134112402 -0.2438676644 0.759112568777)
(-0.352637984519 0.0485326413793 1.27519205094)
(0.0687726234936 0.625700671924 1.52513212036)
(0.307587028669 0.528415993921 0.0435783925777)
(0.169024207278 -0.121627967146 -0.377320989717)
(0.0350273536778 -0.0292249158892 -1.91899954468)
(0.283958019579 -0.0340205364792 1.02607756093)
(0.0249169941104 0.0232049061006 -0.393147932667)
(-0.287362639274 0.0475984271161 -0.57360934532)
(-0.3472122146 0.0287122095852 -0.711682865877)
(-0.372460241077 0.0503767857937 -0.686509684502)
(-0.284812952403 0.0467922498521 -0.595052016486)
(-0.210408009603 0.0113055706232 -0.396987377697)
(-0.165321103174 -0.0377092670012 -0.213204986742)
(-0.143102795318 -0.0803063557298 -0.17981504393)
(-0.111591539781 -0.110569021456 -0.129716042886)
(-0.114862311515 -0.139547115599 -0.174638784051)
(-0.213671349529 -0.222465808294 -0.196614800104)
(-0.21871138796 -0.207385816812 0.0940234121666)
(-0.0700987331187 -0.128661301384 0.0863090792364)
(0.0303573460309 0.0117506330806 0.346696586487)
(0.0500797468474 0.23264232025 0.166811586607)
(-0.0946413769364 0.431608398162 -0.390115302172)
(-0.199881166712 0.107886726866 0.0114863127055)
(-0.0904269666506 -0.21952128468 0.189423342232)
(-0.0627867140034 -0.355441597347 -0.52372719378)
(0.198207899887 -0.0735815593117 1.02827801445)
(0.0341411367786 -0.0336684037055 -0.09412595996)
(-0.251446087367 0.0523835400635 -0.299395795782)
(-0.291533678031 0.060009712189 -0.432024924095)
(-0.319424055247 0.0602866753221 -0.512846887989)
(-0.262860417429 0.0431882109643 -0.445689392564)
(-0.202174669329 0.0166857195317 -0.372624561983)
(-0.174782478116 -0.0235001149202 -0.221221632099)
(-0.162850005464 -0.0676785699065 -0.191231208382)
(-0.140030739068 -0.0829100868461 -0.123585033579)
(-0.161702174624 -0.0992046627304 -0.178074142792)
(-0.184122834965 -0.0674277671996 -0.178033715796)
(-0.11744910035 0.140105450135 0.408449125595)
(0.0014320455868 0.308097026276 0.899301201223)
(0.0780462090902 0.460923452855 1.19741756229)
(0.114426851457 0.473466451014 1.11356589689)
(0.0190866010504 0.32575976771 0.535493442836)
(-0.284912636745 0.150507209508 0.000386150057955)
(-0.200978592168 -0.11930234869 0.135165797916)
(-0.0331181119344 -0.536156069143 -1.05639085233)
(0.0795336811561 -0.0375424571289 0.876066574046)
(0.034718170346 -0.0566997695062 0.290395395476)
(-0.179496217487 0.0138678492086 0.0799653961823)
(-0.242226258795 0.0509537607542 -0.112568832764)
(-0.260153143193 0.0473894327943 -0.276204488123)
(-0.244295355569 0.0363377332269 -0.271963477342)
(-0.201664765238 0.0029378258424 -0.226472449466)
(-0.180322084081 -0.0350952841494 -0.150967462871)
(-0.165019965895 -0.0720365503689 -0.122924554954)
(-0.132572583722 -0.078905347661 -0.114720262171)
(-0.0865816511408 -0.0687852130123 -0.158269146139)
(0.0514963521088 0.0482048557368 -0.133832339917)
(0.206002110445 0.242626716306 0.0616635615887)
(0.314669037944 0.403406600856 -0.175841563639)
(0.250290125974 0.50081237604 -0.814959210655)
(-0.0433325919194 0.47795982961 -1.01654520714)
(-0.378937296573 0.32669659383 -0.717959078883)
(-0.609848116242 0.257554474982 0.00797807052917)
(-0.65932309608 0.365804251003 0.798121220237)
(-0.316272042022 0.235686089503 2.15827226035)
(-0.0321068983649 0.00341087671157 0.583396741533)
(-0.0211415907268 -0.0214494731864 0.392164119189)
(-0.143996090923 -0.0128904986575 0.430849500842)
(-0.195573559005 0.0217229598536 0.241158606416)
(-0.21688524872 0.0180093657119 0.039804820315)
(-0.217526785701 0.0116727724564 -0.0530836764846)
(-0.198904023049 -0.017168102416 -0.054569639257)
(-0.175037313574 -0.0546764555467 -0.0544664215613)
(-0.157802241129 -0.0753487051253 -0.0485868753826)
(-0.112469258898 -0.0868181550979 -0.0961186575303)
(-0.00286289568606 -0.0690516538745 -0.117431365215)
(0.180188596762 -0.00909475810498 -0.205180692066)
(0.299044195731 -0.0232515782261 -0.29475307496)
(0.315528600272 -0.0550976663654 -0.636956959707)
(0.213781141792 -0.0786833219073 -1.03570144865)
(0.0197682162543 -0.0736867086552 -1.00565617556)
(-0.136201754956 0.0589027335837 -0.843964180872)
(-0.188682716518 0.382027562667 -0.653776247722)
(-0.12513144864 0.849254266206 -0.183032847645)
(0.0174447072378 1.36478025123 0.535540821484)
(-0.0714085825278 -0.048673695075 0.538102635133)
(-0.0616262780329 -0.0185758464194 0.351438155585)
(-0.143614089581 -0.00680717673377 0.507184786679)
(-0.168063234397 0.00243653110716 0.456950182305)
(-0.198109275783 -0.0048112269581 0.340401653154)
(-0.204389690901 -0.0165854488772 0.219621594566)
(-0.193619538833 -0.0281635775219 0.153625829033)
(-0.16635344329 -0.0697535136503 0.101695905638)
(-0.146635046293 -0.090016695997 0.0229176577456)
(-0.0979244180073 -0.0895473585643 -0.0627214884098)
(0.0214437406514 -0.0835755850423 -0.0723229073799)
(0.143988019822 -0.127278137257 -0.231842658345)
(0.213127366123 -0.265586415905 -0.195989662482)
(0.304429672135 -0.260104391687 -0.351404744424)
(0.290704125275 -0.048413455558 -0.404690304457)
(0.163042158692 0.00507526653961 -0.363627840293)
(0.138907193259 0.0225172240783 -0.534952814793)
(0.223877315847 0.113882303597 -0.831583245538)
(0.376653300806 0.287557133106 -1.25513742297)
(0.311048716456 0.395488075382 -2.10083131878)
(-0.0615602130486 -0.0616660627227 0.597892088635)
(-0.0411654433464 -0.0171338529864 0.297129680661)
(-0.135993098653 0.0118791565351 0.44216915602)
(-0.166725008564 0.005223433606 0.479460503332)
(-0.186864545379 -0.00742202832395 0.463801567933)
(-0.177958232411 -0.0249157251384 0.382530749081)
(-0.179903461242 -0.0339882480701 0.247507073898)
(-0.165008216112 -0.0671388260732 0.209979466458)
(-0.124237340957 -0.0893526319735 0.118705284259)
(-0.0764406915864 -0.077392661362 -0.00302313618509)
(-0.0120818372635 -0.110598654362 -0.0755814439799)
(0.0431452694838 -0.253032795816 -0.217771330404)
(0.219439870097 -0.45024751919 0.0764488737905)
(0.577974775892 -0.170416282877 -0.118856463671)
(0.531617149653 0.391803186045 -0.633828222015)
(0.133211791411 0.369130894362 -0.662956808962)
(-0.000602321037788 0.0402620852259 -0.552897008719)
(0.0878895828409 -0.268125197319 -0.663993213966)
(0.161779049273 -0.535066348937 -1.1314057841)
(0.152630872218 -0.90463063053 -1.94494569632)
(-0.0537507547187 -0.0919432100825 0.519285579789)
(-0.0240455564885 -0.0618568801865 0.211908659426)
(-0.117219046653 -0.0314746471707 0.294104004974)
(-0.153369081598 -0.0159722638367 0.33096793349)
(-0.168745888695 -0.019797947714 0.344206920439)
(-0.148980896105 -0.0305339237779 0.329646008827)
(-0.134918713949 -0.0568574916652 0.236961342678)
(-0.119954010334 -0.0462915564196 0.214069480147)
(-0.0769006304185 -0.0461859260246 0.177021172648)
(-0.0662287286089 -0.0326491121603 0.0448288848829)
(-0.117354874733 -0.118056885326 0.0335048717664)
(-0.133867093902 -0.354002541853 -0.0164905902445)
(0.378378273492 -0.698145763366 0.845528119539)
(1.2252763696 0.0350156608835 0.222478150588)
(0.890111800387 0.816856314056 -1.45746089384)
(-0.150307594002 0.500207808947 -1.34749258798)
(-0.476580361076 -0.119431570517 -0.74499993872)
(-0.342872633223 -0.600491296206 -0.46034714751)
(-0.245184801988 -0.975631160495 -0.603175775131)
(-0.0622963253093 -1.25603032084 -0.998657622301)
(-0.0427088507009 -0.0175676692368 0.791936181076)
(-0.0185154870005 -0.00759426595137 0.581011148777)
(-0.0841231338917 0.00171465724026 0.583958577543)
(-0.0825418783991 0.00320328330314 0.54074046951)
(-0.0595233683324 -0.00635805301332 0.474159277356)
(-0.00332116732659 -0.016824055275 0.374759763025)
(0.0909478204057 -0.0355899403999 0.230634153398)
(0.138260807455 -0.0132472049194 0.0589305137238)
(0.165033883533 0.00620173073296 -0.130097813786)
(0.0893901637969 0.0106920410822 -0.540876695565)
(-0.282747581591 -0.0638915572892 -0.33167335516)
(-0.566236252298 -0.215022094809 0.254418291703)
(0.569131451986 -0.429472605569 2.51248900115)
(2.09588472674 0.0990063357467 0.573622740789)
(0.997143286397 0.527207825902 -3.51110376923)
(-0.781782709962 0.279633935682 -2.60865051464)
(-1.0757849706 -0.0637451053581 -1.08140946073)
(-0.752333267314 -0.312610398162 -0.318619640549)
(-0.473868564162 -0.486547509377 -0.157514467651)
(-0.138394964326 -0.561856779478 -0.0377713204732)
(0.0146759081461 0.0242126032278 0.10879716325)
(-0.00966404412094 0.0169740276103 0.109816524544)
(-0.0431745091015 0.0451124861345 0.115159412993)
(-0.0147348079933 0.0927168732887 0.12436006285)
(0.00707562232245 0.122911137086 0.16109210202)
(-0.0140363465073 0.152084289292 0.171263515513)
(0.0020410988757 0.161723837725 0.143657527333)
(0.0186855323607 0.128095615416 0.13917782998)
(-0.00105331555042 0.0891802485154 0.0939074974132)
(-0.0245386076534 0.0521910453605 0.0807031005963)
(-0.0529615248571 0.00725631707827 0.0770370655614)
(-0.0811014992005 -0.0517050816383 0.0926844857107)
(-0.102307740221 -0.121417340304 0.0908478333993)
(-0.156198956141 -0.173718235411 0.0455774512302)
(-0.140298797272 -0.151273462063 0.228961080342)
(-0.174571531838 -0.133704835668 0.130488814437)
(-0.24530901734 -0.0235522190442 0.359004244672)
(-0.113276872736 0.0460533641082 0.503210705855)
(-0.019482907972 0.022537150407 0.320354088393)
(-0.0233109243601 -0.0276389927362 0.190164033189)
(0.00706032691174 0.0146713390692 0.0957142756874)
(0.00687917915763 0.0363916471749 0.0760781404821)
(0.0276787601959 0.0976767320223 0.109723778312)
(0.0592126565493 0.200112917022 0.104547930788)
(0.0636751197722 0.257633454093 0.0630439997096)
(0.0159932755091 0.284435354864 0.0207529186156)
(-0.031902239772 0.278060149277 0.0195868552498)
(-0.0631470773811 0.210989644154 0.042596446676)
(-0.0803232994939 0.133977628562 0.0533004624772)
(-0.0934677434687 0.0602241419672 0.0497267780819)
(-0.114630434387 -0.0161812750826 0.0555734504161)
(-0.136660040636 -0.0907985287515 0.0713157328369)
(-0.144710091124 -0.182987051711 0.0934283180335)
(-0.128709417969 -0.263331928278 0.117047088207)
(-0.0847295416808 -0.251014107429 0.116818899769)
(-0.0898767762874 -0.250496913591 0.101306122747)
(-0.123844912231 -0.122960337692 0.178273572316)
(-0.0959793020496 -0.0222477484887 0.34403218037)
(-0.107525008861 -0.0239238564449 0.394454670678)
(-0.0762359267828 -0.0348769644004 0.429581778858)
(0.0424570234827 -0.0174877855228 0.0833805213294)
(0.0743560757592 0.0826126307291 0.0883369193033)
(0.096239756376 0.154779411153 0.0907465482126)
(0.101304437294 0.206809228737 0.0455966279444)
(0.059655936722 0.210403062653 -0.0242046702864)
(0.00128967912777 0.194135072013 -0.0674937931315)
(-0.0553717488321 0.17188113452 -0.0568295684732)
(-0.0976814617421 0.136338821403 -0.0082266604163)
(-0.119071608226 0.09071295826 0.0306978517499)
(-0.138153899868 0.0365063732807 0.0519931844887)
(-0.167656662113 -0.0205161128988 0.080421222487)
(-0.201439827996 -0.0844307376468 0.122618815915)
(-0.210018051466 -0.159149098489 0.187175137438)
(-0.159195286823 -0.233309709837 0.252041287429)
(-0.0803575926318 -0.285376109238 0.222686287327)
(-0.0129964402164 -0.282328094444 0.231116199666)
(0.0141708032073 -0.212673608883 0.199923462084)
(-0.0266572024571 -0.0832027237461 0.2532076095)
(-0.102877607637 -0.000204340075284 0.40744768619)
(-0.0844947843105 0.155879218166 0.610611746233)
(0.115814175499 0.00138826863253 0.0840012080208)
(0.206211849067 0.128701939244 0.0576488770291)
(0.147633339354 0.19229246644 0.0355403702701)
(0.0989959214539 0.205218625042 -0.0468126113134)
(0.0352347839925 0.185920746113 -0.146107971895)
(-0.0280285668518 0.163185180791 -0.182663794851)
(-0.0869140275685 0.142233204493 -0.141080072062)
(-0.127670134043 0.120386192858 -0.0679553184247)
(-0.152491371302 0.0854242563459 -0.0146673527427)
(-0.174682968743 0.0462073423278 0.0239116069658)
(-0.204785270095 0.00644842713389 0.059977058574)
(-0.239882541533 -0.0359499523356 0.111711348788)
(-0.253750423993 -0.0790924024179 0.184217909594)
(-0.216172153414 -0.126026208415 0.262143593255)
(-0.102791845682 -0.185191875765 0.340431904842)
(0.00684487319067 -0.217891739859 0.223414245585)
(0.075108984537 -0.233706167044 0.167372434696)
(0.0942555277145 -0.132611469905 0.134620725311)
(0.0280604174369 0.0608281757593 0.220005642941)
(0.00515149722833 0.34311944752 0.347439282094)
(0.178203595407 0.0209502582237 0.146296014779)
(0.318123132516 0.155830980199 0.0543255234264)
(0.170252576764 0.191906909213 -0.0569562066777)
(0.0763914198886 0.178063221164 -0.218106878704)
(-0.00919591001474 0.141273927381 -0.323966753087)
(-0.0670984763198 0.118931981076 -0.324913812264)
(-0.122810383564 0.108878689222 -0.254565122055)
(-0.164403814195 0.0936564780014 -0.140856706455)
(-0.187685261219 0.0680159793928 -0.0523214540599)
(-0.205428751667 0.0438938506639 -0.00350389037975)
(-0.235263918485 0.021249084223 0.0417285486583)
(-0.268140221915 0.00286316237665 0.0993377591509)
(-0.279298153285 -0.0119033752999 0.174385841139)
(-0.248499501016 -0.0446321606458 0.265817632549)
(-0.164980250496 -0.0709407379253 0.335426404228)
(-0.063053263454 -0.123224236482 0.325033411927)
(0.0847124325903 -0.143718296352 0.326123085726)
(0.224893525569 -0.12228315993 0.188608955187)
(0.242299766763 0.0162268288576 0.0999993011999)
(0.16313686139 0.226458434883 -0.0387809288456)
(0.258303816557 -0.0060984041625 0.192184061074)
(0.418403310745 0.139284160759 -0.0153649889285)
(0.15883456172 0.151418519401 -0.228813638567)
(0.0165854378431 0.11942311723 -0.366990167446)
(-0.060550153708 0.0901699122704 -0.398074273207)
(-0.0935216052207 0.0826102377841 -0.359443554663)
(-0.146714738852 0.0772861981708 -0.288968721029)
(-0.204062612181 0.0726037724368 -0.164185391726)
(-0.22217963827 0.0571519910362 -0.057908477161)
(-0.226901743761 0.0477703835111 -0.00449050149656)
(-0.24474474571 0.0464500151656 0.0254494329897)
(-0.266875917406 0.0626799298927 0.0635033306137)
(-0.289586652181 0.0850915043369 0.121594381369)
(-0.258570782234 0.0762054582902 0.257400738466)
(-0.171310414224 0.0422257869153 0.318374665337)
(-0.0806277045356 -0.00505754304653 0.325924381617)
(0.0334379087535 -0.0395613132736 0.32201414017)
(0.175896204879 -0.0812096253818 0.261491487718)
(0.296028609319 -0.031331343258 0.167430842565)
(0.158296296197 0.0829934286464 -0.127544099515)
(0.335439845633 -0.0360420385433 0.174697588879)
(0.487003194498 0.0773363711848 -0.0945352512263)
(0.139306351094 0.0816120935399 -0.280402568388)
(-0.013535704077 0.0704086678776 -0.369884635395)
(-0.0738879052975 0.0630308115952 -0.41244772971)
(-0.116286661382 0.0560820703066 -0.368616421655)
(-0.176527598134 0.0343528242035 -0.259645399637)
(-0.224745257287 0.0267061073218 -0.12332846924)
(-0.226629406607 0.0360334021768 -0.0427274623791)
(-0.207119167258 0.0579154635367 -0.00862688731602)
(-0.208391405113 0.0867972083575 0.0129985764434)
(-0.220271556346 0.126316079657 0.0301184587076)
(-0.243490605731 0.166566778922 0.0647623176661)
(-0.253526180425 0.186592034097 0.135319096263)
(-0.222362008013 0.158652480769 0.261695579302)
(-0.158446386283 0.0881845061936 0.343529544354)
(-0.0467365036712 0.0191283705367 0.41355730594)
(0.113733680907 0.0124963969005 0.42750043176)
(0.345910198056 0.0258484567868 0.303722553892)
(0.153670775 0.122314041494 -0.221438342926)
(0.382369056784 -0.039067541889 0.160319086993)
(0.536188764167 0.0285620042004 -0.0643316256536)
(0.158030006596 0.0449901251702 -0.221815551632)
(-0.00244457277561 0.0439732894781 -0.353525828387)
(-0.0802966515971 0.0347915139165 -0.428122875522)
(-0.13712523263 0.0258197890905 -0.332177259352)
(-0.205225119444 0.00779727579428 -0.169686737315)
(-0.194066053561 0.00595379176453 -0.0396187722628)
(-0.155726013005 0.0298985112379 -0.0101021532075)
(-0.135160662238 0.0562310578271 -0.0157439192464)
(-0.138442884289 0.0890073603095 -0.00501176562546)
(-0.155668735062 0.127937167646 0.00433728875826)
(-0.18074465271 0.174946306119 0.0232318195296)
(-0.202874527764 0.2314393195 0.108745407577)
(-0.220492596973 0.236903772095 0.114755277374)
(-0.231451505968 0.154026652704 0.193801135732)
(-0.122638767234 0.0364656128081 0.300288867049)
(0.0330811473688 0.0595460549231 0.360005108662)
(0.337917107982 0.121043712386 0.27816480768)
(0.193642090322 0.147202650275 -0.368255165134)
(0.411434520031 0.000738457272752 0.150245970894)
(0.56282568442 0.0219066398939 -0.032373384806)
(0.169912048784 0.0379431790137 -0.217727389642)
(-0.008121455105 0.0265507872724 -0.320778523818)
(-0.0786193502884 -0.00267122039451 -0.393755506558)
(-0.134022383805 -0.0034449045613 -0.311207669925)
(-0.200450769942 0.000906860580198 -0.149996308727)
(-0.160787831536 0.0240787739671 -0.0443886689415)
(-0.117223004036 0.0452305913548 -0.0247349816007)
(-0.106503805428 0.067047348653 -0.020889244938)
(-0.110350697564 0.092484871457 -0.00774025018969)
(-0.116625012805 0.121240105563 -0.00223211945908)
(-0.108192875544 0.158938673729 -0.00423540023941)
(-0.127784550366 0.203209887433 -0.0662775999465)
(-0.237150666951 0.166603548741 -0.17893566742)
(-0.362298495109 0.0715034177422 0.011892571164)
(-0.224906728857 -0.046051107618 0.418103352986)
(0.036350492129 -0.00955827885299 0.413189849525)
(0.325033939464 0.191529339941 0.197947017113)
(0.169709872431 0.191826561804 -0.357964226606)
(0.405972699194 -0.0152017012864 0.184249530072)
(0.547602684711 0.00368465285853 -0.0331980427206)
(0.157017848615 0.025129616639 -0.242462493331)
(-0.0375399433927 0.0346243252274 -0.317109986128)
(-0.0898179487787 -0.0160739990114 -0.352587074934)
(-0.132368394574 -0.0262791241949 -0.281761557465)
(-0.18167615011 -0.0110110914397 -0.144058521352)
(-0.137561397931 0.0222372323224 -0.0574432989443)
(-0.0937082103996 0.0448521437517 -0.0368677184378)
(-0.0800085182863 0.0720955126533 -0.0359267792534)
(-0.0830279672315 0.101036284029 -0.032009753096)
(-0.0891328983094 0.121403671517 -0.0343087052257)
(-0.0821863398847 0.114617381581 -0.0413973872788)
(-0.144420775522 0.0835893994779 -0.200508091842)
(-0.293391626336 0.00583365141579 -0.169937957067)
(-0.43283977426 -0.0508921784243 0.0767831866561)
(-0.275215917403 -0.0639196363781 0.607092493609)
(0.122323223293 0.0503950167402 0.704792785197)
(0.386267960566 0.325643617803 0.0924064509364)
(0.169713746679 0.34431163396 -0.333164321323)
(0.424106759936 -0.0720550945613 0.256022797022)
(0.558358654053 -0.0497918838609 -0.0211278947473)
(0.15306219209 -0.0292655254049 -0.315159303164)
(-0.0590007063213 0.0049934045064 -0.421842996191)
(-0.115474674467 -0.0206056748496 -0.388580453531)
(-0.15028051171 -0.0328958285792 -0.28348355583)
(-0.179603947924 -0.0203874480892 -0.144684654069)
(-0.126442292163 0.0273048534103 -0.0407104931306)
(-0.0700008375715 0.0641812159641 -0.0372315840067)
(-0.0529939025116 0.105849488604 -0.0480345770704)
(-0.0643050176786 0.141420650317 -0.0621200993777)
(-0.101771951136 0.146583457195 -0.0703808707224)
(-0.127680536684 0.0703024696062 -0.058456454018)
(-0.196797724111 -0.0647668477745 -0.167031988547)
(-0.323052800515 -0.102375380661 -0.0301025281992)
(-0.41798707992 -0.0527294740493 0.292406383554)
(-0.189995428369 0.126569165905 0.899797872387)
(0.300599441506 0.313246615483 0.782114310051)
(0.48541043484 0.347306534863 -0.3201557231)
(0.147095347868 0.445375395664 -0.654455416428)
(0.415989604019 -0.0967823985255 0.264102928097)
(0.521880773524 -0.115775217015 0.00865542461835)
(0.148940748618 -0.111003138945 -0.280912997073)
(-0.0347447114351 -0.0659436923385 -0.4549432612)
(-0.109522464995 -0.0658305942032 -0.422018643999)
(-0.152508261475 -0.063397641256 -0.330868236123)
(-0.162731180099 -0.0557319235434 -0.195784233255)
(-0.132298707954 -0.0137632819525 -0.131202400225)
(-0.0739735832259 0.0186704816468 -0.128229821783)
(-0.0323037781823 0.0445923306229 -0.183341106384)
(-0.0591358546731 0.0603619293722 -0.287743264949)
(-0.158477374977 0.0335381422364 -0.325627458777)
(-0.255762545849 -0.0436775852172 -0.14170970654)
(-0.258162227828 -0.106180957456 0.120660828667)
(-0.247701548386 -0.0479341500532 0.310480867679)
(-0.198792352079 0.113059518105 0.543812897087)
(0.0268396611529 0.332601280016 0.605450983885)
(0.251048080855 0.320465239398 0.112424641665)
(0.413759223456 0.124102623924 -0.310631476475)
(0.195797422871 0.0847279097933 -0.880973757402)
(0.369663166123 -0.127257088357 0.247085663769)
(0.464856881466 -0.19879056444 0.0457281601881)
(0.142481711461 -0.185457025413 -0.179613585888)
(-0.0124779681564 -0.136905504144 -0.360161140826)
(-0.0823529529899 -0.124997055283 -0.366228429901)
(-0.131315234449 -0.118392379352 -0.321497909026)
(-0.15574635526 -0.108575569124 -0.220048310404)
(-0.142211295894 -0.0957593830889 -0.132797673132)
(-0.107081110825 -0.0685648435265 -0.110534357401)
(-0.0900634576341 -0.0640812081688 -0.138676794053)
(-0.124157159901 -0.0607448990175 -0.201372373631)
(-0.202468560935 -0.0749474493988 -0.144979951563)
(-0.225382195074 -0.05264829403 0.105337517578)
(-0.158950263261 0.00204127467054 0.284418076489)
(-0.0842819262305 0.103610548977 0.34552133682)
(-0.0366958619042 0.227482071045 0.303775693262)
(-0.0164923631955 0.298679038072 0.16524067642)
(0.0259049431363 0.178410736889 0.175898073464)
(0.148021060273 -0.00827408246684 -0.0192261425332)
(0.119337468648 -0.226801016255 -0.453634907721)
(0.28134312152 -0.134030866933 0.254540451611)
(0.384199329506 -0.271802337041 0.135577090681)
(0.15524966614 -0.255486800246 -0.0192990092288)
(0.0328900017389 -0.21874949011 -0.176868795306)
(-0.0389099271516 -0.177289845956 -0.248883509001)
(-0.088633538708 -0.173299677599 -0.231469363576)
(-0.122983324217 -0.161392081397 -0.189906220491)
(-0.124847383603 -0.138172770143 -0.133075721621)
(-0.105705500021 -0.103637428657 -0.12637615551)
(-0.10106742213 -0.0731280341905 -0.147519509798)
(-0.12920870101 -0.0477547519775 -0.190780182132)
(-0.159718565978 0.000950654038582 -0.0922558481859)
(-0.144497641805 0.111248664494 0.109827619817)
(-0.0823841895017 0.212311478285 0.291857712452)
(-0.0235044796231 0.300048005733 0.344396241545)
(-0.000577004808412 0.330644887067 0.294802901635)
(-0.035754511309 0.276062385979 0.093926644931)
(-0.0996814916107 0.170642097636 -0.00874120592259)
(-0.0480714902855 -0.005071199324 -0.00421201234966)
(0.0324080598072 -0.216538489445 -0.336176362075)
(0.158021359342 -0.100454228326 0.292870698436)
(0.251880139274 -0.244045428985 0.224838781553)
(0.153408303257 -0.278498531891 0.14417937389)
(0.0720611997543 -0.266262813797 0.0188847756506)
(0.00535324142775 -0.232485608935 -0.0949041368268)
(-0.0435602237199 -0.214693015859 -0.11477219663)
(-0.0799175176281 -0.20067145789 -0.1070257633)
(-0.086282796898 -0.167610544432 -0.0911826210384)
(-0.0759462831263 -0.129584350352 -0.104103737177)
(-0.0713315739164 -0.0890184660452 -0.147396140973)
(-0.0668692970449 -0.0460622702457 -0.188873976553)
(-0.0332800619804 0.032875888884 -0.157364354626)
(0.00908106102331 0.139099277165 -0.153083397134)
(0.0477150798664 0.22649227512 -0.154142180164)
(0.0414815830367 0.283647789142 -0.27765389854)
(-0.052758255387 0.287837918226 -0.344021109362)
(-0.175656417772 0.233513030854 -0.292396098821)
(-0.268490374346 0.191624033041 -0.103249080335)
(-0.225200746623 0.182159743306 0.171002574268)
(-0.0748299779368 0.123867059074 0.49050488162)
(0.0747215053269 -0.0842999491746 0.30284177842)
(0.123871654742 -0.154948219511 0.249250400427)
(0.0930054487845 -0.224246439399 0.260192071247)
(0.077847784338 -0.251122014357 0.1760942647)
(0.0413614700145 -0.247598963088 0.0662437293043)
(0.000968911812864 -0.232960589888 0.00495803786939)
(-0.0270239551716 -0.211577259728 -0.020039951439)
(-0.034459719505 -0.17370392683 -0.0402614086303)
(-0.0344743037086 -0.137225253053 -0.0775360337574)
(-0.0276434425218 -0.101413136663 -0.139414651076)
(-0.00332961469358 -0.0643186373986 -0.191140581497)
(0.0455790515413 -0.0231225058365 -0.230467944603)
(0.0791735588758 -0.0041327050912 -0.292450865752)
(0.0896589422695 0.0154755320052 -0.324004816206)
(0.0561390978164 0.0397739396589 -0.39137070636)
(-0.0331703545891 0.0481394799566 -0.418041253873)
(-0.110653711034 0.0791003029863 -0.411147567704)
(-0.13805261829 0.176237360804 -0.366403220508)
(-0.0829894372151 0.331166800009 -0.269114052325)
(-0.0247298137551 0.470456144283 -0.213074007348)
(0.0452773017246 -0.0952405909161 0.302235207945)
(0.0530694577733 -0.09991894571 0.229659934532)
(0.0302312848838 -0.13317138017 0.296817638285)
(0.0524727641249 -0.172538723679 0.264244053766)
(0.0542229630686 -0.198250965617 0.186591593043)
(0.040715246674 -0.202340892739 0.110753608452)
(0.0277726853453 -0.192270859785 0.0579239002833)
(0.0216159961884 -0.155667767077 0.0117002056538)
(0.0152398080235 -0.126562699836 -0.0489760327944)
(0.0128691510281 -0.0992202816001 -0.1207128851)
(0.0229715020336 -0.0883074695581 -0.182904118341)
(0.0479150137579 -0.106181599709 -0.235158800952)
(0.0782977826911 -0.144385409643 -0.228146404527)
(0.12200181685 -0.105670809425 -0.198863165051)
(0.10050487705 -0.00416128072571 -0.277015776811)
(0.0125689154111 0.015412269894 -0.314882306798)
(-0.0261262944297 -0.00756969842621 -0.363817302323)
(-0.000111797133732 -0.00446658957653 -0.446661067561)
(0.084788162154 0.0410099820739 -0.577681420181)
(0.053604448881 0.0894791464772 -0.871094577556)
(0.0509632480451 -0.0864401211833 0.349830290876)
(0.0558200090334 -0.0658965104145 0.247590497208)
(0.0161790412419 -0.0556349212888 0.277902894092)
(0.0406282093458 -0.0747302813494 0.268921998102)
(0.062281219608 -0.099606751206 0.218069324421)
(0.0666318198435 -0.115463029956 0.150172540919)
(0.0846313758871 -0.125484388906 0.0671932382687)
(0.089498610279 -0.106183968537 0.0413617655652)
(0.0719469830276 -0.0940003543594 -0.0152119821196)
(0.0482637035132 -0.0798637242762 -0.105862668631)
(0.013880996772 -0.104839752843 -0.173843248923)
(0.00941287777721 -0.183242265617 -0.171001721877)
(0.104909917899 -0.246094834304 -0.0647333049154)
(0.257952870246 -0.0930740520558 -0.0851068172384)
(0.195885641656 0.134386380213 -0.382521608286)
(-0.0283105062714 0.115403564128 -0.406715559009)
(-0.126080956676 -0.0599153497164 -0.329323643172)
(-0.0943117068454 -0.235021367553 -0.290729488935)
(-0.0110867914539 -0.378963392828 -0.371223378836)
(0.00101581063436 -0.510747349167 -0.492487498979)
(0.052725063839 -0.10285508311 0.350086167629)
(0.0751621411074 -0.0874216747246 0.253056777422)
(0.0496778298776 -0.0638340407873 0.244835002161)
(0.0760489440579 -0.0495188372489 0.206607685219)
(0.0968403233712 -0.0479447794781 0.163197396201)
(0.113387769154 -0.0490717027229 0.119705346434)
(0.145678219784 -0.034335105883 0.0520207719212)
(0.158393169117 -0.0335202105056 0.0422984818496)
(0.138947679035 -0.0146658284397 0.00612294107702)
(0.0795304969561 -0.00388246927796 -0.0885191449963)
(-0.0306835095595 -0.0720282450338 -0.10625066945)
(-0.0695514519279 -0.20297147107 0.0191470314628)
(0.182283738155 -0.30733268273 0.296806903654)
(0.517673739072 -0.0227056879221 0.0148482542051)
(0.313792980794 0.269905286616 -0.716439194977)
(-0.186140033118 0.167399660212 -0.654146758168)
(-0.382286357977 -0.109164011316 -0.264985825706)
(-0.327453058394 -0.358877447389 0.00508203653373)
(-0.206740392184 -0.550861547667 0.130128919563)
(-0.0879451828276 -0.679388888875 0.248203030207)
(0.0543193515295 -0.0608555390722 0.388099319858)
(0.0988234546289 -0.0572932593189 0.346202670429)
(0.11015705576 -0.0473178574058 0.318820993263)
(0.150586446835 -0.0362283450568 0.261965443889)
(0.189268610923 -0.0264917694725 0.198666712338)
(0.229481876771 -0.0158897956287 0.124946602991)
(0.252291848017 0.00692532085469 0.069858944036)
(0.254464281907 0.0068311937067 0.0293786978835)
(0.23030885442 0.0216581887005 -0.0279951689952)
(0.100942973686 0.0218386033551 -0.120939788796)
(-0.100453530238 -0.0275289095635 -0.0339246192086)
(-0.17398666589 -0.105295643824 0.273901620075)
(0.30249264811 -0.167806466873 0.866640217863)
(0.824079469974 0.00106220663849 -0.0776014745262)
(0.357828211188 0.145508600428 -1.36164780619)
(-0.444183914757 0.0671974382657 -0.941332507971)
(-0.666442227858 -0.0790919358547 -0.111322215387)
(-0.541950857874 -0.201750850654 0.43850634481)
(-0.335014801911 -0.288439667567 0.736515049495)
(-0.13147659551 -0.332923592089 0.919288211602)
(0.00286180405972 0.0138535246569 0.083696392096)
(0.00483506137551 0.0182172592122 0.0810478881298)
(0.00331218747595 0.0265293160108 0.111256745347)
(0.00932388457376 0.0408472104958 0.154860812287)
(0.00849301609642 0.0503913442581 0.151512138992)
(-0.00997423760542 0.0597321787086 0.16143054713)
(-0.0173429533329 0.0617548604419 0.173941642473)
(-0.0225507730968 0.0491730721841 0.14053698)
(-0.0449788355979 0.0329221997367 0.112751970442)
(-0.0698770414793 0.0258619847478 0.0926612800896)
(-0.0887094622119 0.0200533881756 0.0806507561284)
(-0.102711457788 0.0153505198584 0.0819386585748)
(-0.113359800359 0.00797471475472 0.0853679176095)
(-0.130778095682 0.00473748456974 0.0842448899416)
(-0.129309914867 0.0178012893804 0.152545336254)
(-0.134571087156 0.0234129097262 0.145549495489)
(-0.131440358508 0.0393476919303 0.255883403041)
(-0.0619225417701 0.0346211703968 0.32718261842)
(-0.00852445247167 0.0128302459189 0.278888296326)
(0.00980311669389 -0.00854953698928 0.275453993105)
(0.00993402635441 0.0281258935058 0.0743629286843)
(0.0195773038816 0.0419098725116 0.0846303250906)
(0.0261569059864 0.0651575315731 0.0901745929373)
(0.036752725178 0.111969968143 0.0916475264288)
(0.0295878077132 0.144843475666 0.0628501353787)
(-0.00136268062797 0.165496585209 0.0413748552879)
(-0.0367916600234 0.162535390214 0.038937664427)
(-0.063304184938 0.129439897538 0.0412468701492)
(-0.0823291902228 0.088716071756 0.050486032471)
(-0.0977253465176 0.0538362159483 0.0544859559327)
(-0.11370652528 0.0202165513413 0.0639424047033)
(-0.125518807432 -0.0144387529465 0.078131661415)
(-0.131988551049 -0.0481561489061 0.0980499873247)
(-0.125742546623 -0.072267497366 0.118611560448)
(-0.108841550916 -0.0677875287746 0.135190511044)
(-0.0996444477112 -0.0595255221359 0.1323180353)
(-0.104689447675 -0.00146375984667 0.199649486309)
(-0.0794495281811 0.0474482102783 0.282317325366)
(-0.0525809931742 0.0424927888632 0.298375653031)
(-0.0176923358281 0.0104415445297 0.342389985687)
(0.0228585617471 0.0319890642626 0.100876181788)
(0.0477747148258 0.0578425823616 0.0787381203256)
(0.0688876615026 0.109822836844 0.0746896889038)
(0.0839377940119 0.16184250085 0.0422920585755)
(0.0555554383667 0.197686888714 0.00320166123375)
(-0.0008210698823 0.206323262443 -0.018579065806)
(-0.0608102227881 0.188178094172 -0.0153849998736)
(-0.101256871654 0.148885049208 0.00672834522036)
(-0.121224585699 0.105829219637 0.027753642753)
(-0.134974890042 0.0654300871106 0.0467172009385)
(-0.150904481827 0.0277110121062 0.0720095376315)
(-0.164617918243 -0.00877200198819 0.107050236064)
(-0.165479774291 -0.0444830852425 0.155123202739)
(-0.140427146496 -0.0753336647578 0.203461114883)
(-0.098489886913 -0.0907493759373 0.215613322984)
(-0.059860451638 -0.0806779787048 0.217114666183)
(-0.0393240614076 -0.0380095076354 0.208403213461)
(-0.0393918253437 0.0318804256927 0.235329550981)
(-0.0551226811429 0.0933906534092 0.308886113149)
(-0.0295140881948 0.111296946743 0.384172626202)
(0.0403010130236 0.0415741662603 0.149194543194)
(0.110704937567 0.0926349349561 0.0639291896009)
(0.133135815407 0.161090763516 0.0319333799049)
(0.12506781836 0.210327279641 -0.0218165685003)
(0.0720757685284 0.234901709011 -0.081086226351)
(-0.0105314079086 0.230139319713 -0.106456807136)
(-0.0877794758519 0.203980888313 -0.0853641821777)
(-0.135494300768 0.164185394651 -0.0417403801593)
(-0.155472136402 0.120089956876 -0.00656359344537)
(-0.167261347765 0.081876937398 0.0232640953585)
(-0.182037944593 0.0500327275795 0.0583452191648)
(-0.194558557643 0.023445444453 0.105115614987)
(-0.19478900563 0.00140745845352 0.167666700882)
(-0.169225663221 -0.0203476641854 0.23825872883)
(-0.109281348111 -0.0433310612825 0.283613834726)
(-0.0415480680391 -0.0597522496636 0.258355810779)
(0.00896349144596 -0.0392486580163 0.23232709099)
(0.0320836772572 0.0310356185503 0.201579617617)
(0.00849656206087 0.135937704494 0.213798982886)
(-0.0139271427681 0.213043964387 0.246716276547)
(0.0691650462922 0.0435781993345 0.167065436988)
(0.179203645764 0.11456105643 0.0436268648508)
(0.190373119333 0.178136452252 -0.0215586911231)
(0.158883594252 0.215072460131 -0.119906321048)
(0.0735551266511 0.222703327647 -0.196923651113)
(-0.0300709889643 0.206910089458 -0.20971135461)
(-0.113388087778 0.177943685896 -0.163656405121)
(-0.164156716944 0.140755667748 -0.0935303460714)
(-0.180523131695 0.104133731223 -0.0389955098322)
(-0.186472803793 0.0784457776084 -0.00065220325049)
(-0.197465677886 0.0625028805293 0.0419343519855)
(-0.20748355731 0.0548910657376 0.097250521607)
(-0.206763879204 0.0493362769843 0.168081197006)
(-0.18474572239 0.0339292772895 0.246470393509)
(-0.138757782966 0.00355004100233 0.305737293455)
(-0.0590431305114 -0.0107202607823 0.325108566825)
(0.0407636654306 -0.00604057993849 0.330263966462)
(0.105720763745 0.0303953545864 0.239889620385)
(0.100401247187 0.127265611694 0.146060017513)
(0.0421129130057 0.245037782467 0.0901985260106)
(0.0991972653799 0.0258456191108 0.198141670721)
(0.255139397333 0.0954677301098 0.0120643334544)
(0.238751788097 0.147320014675 -0.0961631412528)
(0.173282051886 0.167261903884 -0.210645635982)
(0.0630329061858 0.16865988793 -0.27773477304)
(-0.0478713589871 0.148838717829 -0.264970489065)
(-0.132314400326 0.120294753018 -0.194302964738)
(-0.178719077661 0.0971152417398 -0.107863633335)
(-0.184409848579 0.0771063762454 -0.0507058286614)
(-0.180983991439 0.069250751551 -0.0147256842977)
(-0.185968374752 0.0730502675448 0.0263626142501)
(-0.195326398736 0.0835850898579 0.0789002984411)
(-0.204641431084 0.0935656650624 0.145877982686)
(-0.204001097186 0.0815785472964 0.241128439623)
(-0.149854405322 0.0745823302272 0.287930136023)
(-0.0594182445405 0.0672086762323 0.306967280428)
(0.029403553633 0.0537981873115 0.308622476626)
(0.116874656746 0.051628892234 0.271465022227)
(0.163150922695 0.112741870608 0.186336392218)
(0.131738496205 0.238137495207 0.078195871609)
(0.122925845961 0.00436396173661 0.233505422738)
(0.308448243917 0.0493072146959 -0.0118991054168)
(0.268054997977 0.0814240589677 -0.125770775726)
(0.189289625914 0.0943324709153 -0.236555353025)
(0.0606425327696 0.0994234251073 -0.314962311042)
(-0.0556121971035 0.0739401575668 -0.278827998154)
(-0.136155339083 0.0505858173786 -0.178546601128)
(-0.164970386459 0.0438605471869 -0.0927294374158)
(-0.160020443877 0.0469024575885 -0.047619971463)
(-0.152596791441 0.0588867390445 -0.0222552344773)
(-0.156467372469 0.0780012354052 0.00920701954716)
(-0.169564664337 0.101240209438 0.0445251773813)
(-0.192116099532 0.124828375703 0.0892008629832)
(-0.186042683629 0.138002020076 0.169357282126)
(-0.14704981349 0.155467240301 0.236583036566)
(-0.0918286728074 0.130229120944 0.291007752159)
(-0.00450785723836 0.103692340114 0.331781353785)
(0.107004059264 0.10048514449 0.325985808247)
(0.204296822546 0.142399619663 0.242949202347)
(0.204000506125 0.244352568709 0.0551944125774)
(0.135211989518 -0.00635970011198 0.261160153936)
(0.332563050303 0.0102259651549 -0.000268158058419)
(0.288555968943 0.0287867679229 -0.109888893606)
(0.208728139777 0.0347496199597 -0.224200693622)
(0.056081441395 0.0395450335944 -0.309685659805)
(-0.062069944052 0.0241467795801 -0.248215658396)
(-0.141258118668 0.0128383729214 -0.132156756499)
(-0.136053389537 0.0237793319927 -0.0573046902521)
(-0.121430706369 0.0357035260412 -0.0297330761103)
(-0.115360558429 0.0536972479151 -0.0191040507679)
(-0.118836720895 0.075502476485 -0.000411873509627)
(-0.13149707521 0.102594194093 0.0226408684431)
(-0.148814290687 0.135369430933 0.0559970127576)
(-0.154799564829 0.1793715498 0.103078788789)
(-0.149955843854 0.185034194146 0.139157026839)
(-0.126060534108 0.153695103623 0.211211604644)
(-0.0395418365253 0.111671025535 0.288961529706)
(0.0876656125929 0.128365612273 0.287757320046)
(0.220954694205 0.172269683733 0.243583164818)
(0.223021219349 0.243264689066 -0.00257999634413)
(0.139424366711 -3.01883500441e-07 0.260422984331)
(0.342113445046 -0.00414561929733 0.00417253561698)
(0.298317401467 0.00404090491772 -0.103757808045)
(0.215638121514 0.00225683502301 -0.204584277318)
(0.0613154537716 0.00162411947519 -0.288569793192)
(-0.0551395023914 -0.00368186895053 -0.231008325748)
(-0.125320205254 0.0061750841623 -0.123461278411)
(-0.113122930971 0.0238568559638 -0.0611908892849)
(-0.102304046457 0.0413989143379 -0.0406267990008)
(-0.0953105934036 0.0608565896815 -0.0254330465714)
(-0.0980656535948 0.0809687131114 -0.00917968594683)
(-0.106780764707 0.103120437408 0.00571771632799)
(-0.109650830688 0.126836265713 0.0167207548801)
(-0.12596203319 0.157225834277 0.00486118203885)
(-0.167279141815 0.146815623298 0.0111351250473)
(-0.179664202448 0.110543647589 0.133882851997)
(-0.0709209416713 0.0771605211622 0.313147098664)
(0.0994929279849 0.113872773059 0.300835562335)
(0.243434839455 0.201533492421 0.19855140591)
(0.208882101384 0.232838658444 -0.0471862163568)
(0.132581457005 -0.0187429913338 0.216020088723)
(0.340991912575 -0.0247221980251 -0.00151869447694)
(0.303693612835 -0.0184797019654 -0.109473693233)
(0.213584197887 -0.0167028192009 -0.200976816744)
(0.0576485508381 -0.0206162299359 -0.276379857009)
(-0.0502576646668 -0.0244566912079 -0.217405497085)
(-0.11367007109 -0.00260622999822 -0.121488452011)
(-0.09307118467 0.017296365408 -0.0721184998559)
(-0.0766193279842 0.0379654635812 -0.052468363399)
(-0.0721202588216 0.0610997213214 -0.041528148882)
(-0.07658131351 0.0829472237322 -0.0327176390752)
(-0.0890000211994 0.0983587033717 -0.0271994443523)
(-0.0959440504479 0.100336236668 -0.0281500625885)
(-0.1334340732 0.0892024227034 -0.0561992449356)
(-0.196001114018 0.0659940216473 -0.00493220072751)
(-0.208381207377 0.0510066991853 0.158979114854)
(-0.0768938694658 0.0697175971463 0.389192068266)
(0.149210268945 0.138548752547 0.374361816529)
(0.291236674372 0.253050455514 0.109482358121)
(0.172654537765 0.266827894279 -0.123848981402)
(0.131679378194 -0.0602710637234 0.228430865967)
(0.355758428985 -0.0641704689577 0.00887145567036)
(0.316338532712 -0.0692080336534 -0.125552972894)
(0.21188668122 -0.0605538546469 -0.234320842329)
(0.0483016899207 -0.0543553091225 -0.295331276006)
(-0.0501863473642 -0.0468647758059 -0.221392181952)
(-0.10513061761 -0.014113095779 -0.122352460122)
(-0.0815307021991 0.0208284678569 -0.0633793458348)
(-0.0580603880972 0.0492770357691 -0.0527417958609)
(-0.0489197276887 0.0757749605201 -0.056249811511)
(-0.0609899252412 0.100752008759 -0.0600810934182)
(-0.0903016103651 0.104330663066 -0.0588166886372)
(-0.115460377663 0.0749550750434 -0.0397485943672)
(-0.158564103225 0.0206152671841 -0.0361689236844)
(-0.208133857541 0.0120774627613 0.063241712431)
(-0.193153713061 0.0488705809388 0.249252745427)
(-0.029741896654 0.141158677599 0.46215813751)
(0.223786798991 0.224642915137 0.344702059058)
(0.343753811972 0.258382594452 -0.0989862256918)
(0.151081368911 0.292858180523 -0.398042174738)
(0.124911484405 -0.0909072898164 0.243909448693)
(0.354383182786 -0.125308795488 0.0332913381395)
(0.316174859727 -0.1537535228 -0.105152806965)
(0.211319481523 -0.150468464879 -0.241314449023)
(0.057828675974 -0.128323578161 -0.300786813594)
(-0.0418142668993 -0.104143192588 -0.243511466963)
(-0.0831664474966 -0.0569812772501 -0.151567265117)
(-0.0683909724477 -0.0125371061721 -0.103313439751)
(-0.045734868579 0.0244133977159 -0.0990364823491)
(-0.0320125932039 0.0484981561902 -0.1312773315)
(-0.0592287461289 0.0646848656916 -0.162445595512)
(-0.125315908548 0.0582737659331 -0.155677478216)
(-0.180733789902 0.0317956587792 -0.0607917746084)
(-0.192827275194 0.00648071029633 0.0699617711141)
(-0.175513681845 0.039255357828 0.19019492407)
(-0.105355863762 0.123207867217 0.305814692586)
(0.0458096386515 0.226262980964 0.32194398001)
(0.210727959255 0.236151453022 0.101526306854)
(0.308114553309 0.168648783885 -0.19853320545)
(0.127092427795 0.12714062938 -0.609632560646)
(0.101961420429 -0.112902681964 0.251273221609)
(0.311446430278 -0.188225020801 0.0605261634265)
(0.29164319841 -0.240085923275 -0.0444283807206)
(0.213395919697 -0.25385890021 -0.169819813465)
(0.0814443702225 -0.223753449061 -0.241444506114)
(-0.0139690408575 -0.18659837672 -0.21794471059)
(-0.0646703234166 -0.125146616643 -0.157588493788)
(-0.0649882784559 -0.0767404694371 -0.111113094122)
(-0.0465331589814 -0.0368414797021 -0.102100246497)
(-0.0412160002177 -0.00873463902396 -0.111979425943)
(-0.0766860394444 0.00549174325431 -0.127857856076)
(-0.141669982148 0.013910142408 -0.0834887225058)
(-0.173037237677 0.0339439883082 0.0398705234924)
(-0.150169172657 0.0673400748188 0.151974969264)
(-0.101712248995 0.128124384903 0.201179774099)
(-0.0375678191546 0.199914704525 0.196838671936)
(0.0309769831166 0.245139400545 0.130341539273)
(0.108665634849 0.204581434756 0.0458557858511)
(0.186078583079 0.110508933878 -0.121293420282)
(0.0345851546607 0.0158287794789 -0.40193515304)
(0.0712906544081 -0.125639756295 0.270505141888)
(0.236203955469 -0.214591265341 0.103985294369)
(0.250187859192 -0.28437560809 0.0366736650439)
(0.204682784357 -0.310431666899 -0.0607041948003)
(0.11085834213 -0.293207373383 -0.137520624372)
(0.0240899594605 -0.246419384794 -0.148541449058)
(-0.0245167567474 -0.183727224883 -0.13050874757)
(-0.0348274955072 -0.123273720676 -0.106697258308)
(-0.025166794391 -0.0707012073929 -0.104973291027)
(-0.0294352826673 -0.0290301978189 -0.115195829819)
(-0.0665881583444 0.00344167498075 -0.126673705192)
(-0.115895077245 0.0430353422128 -0.0767713457091)
(-0.13004657168 0.104892109879 0.015685805662)
(-0.102490712076 0.167714007205 0.098616093562)
(-0.0579848171501 0.229130303984 0.116270919753)
(-0.0185162864804 0.262786567484 0.0824108029322)
(0.00258895350797 0.254351021287 -0.00111364427765)
(0.016234806917 0.208767069129 -0.0642549034405)
(0.0745267412153 0.115633139256 -0.108413293114)
(-0.00158332706932 0.0270370623603 -0.241729268234)
(0.0470340891849 -0.129163062892 0.277691037546)
(0.157065522437 -0.191275500167 0.170343078167)
(0.197822969985 -0.264925186825 0.120672571595)
(0.190767314225 -0.308554188212 0.0464012404912)
(0.132263397237 -0.303872432255 -0.0277769467336)
(0.0672228468755 -0.265084904968 -0.0642719649346)
(0.0249358402082 -0.209527103377 -0.0750286459572)
(0.0110501363798 -0.149230459177 -0.0751927774065)
(0.0130498181461 -0.0962420417049 -0.0898814804456)
(0.0062048290809 -0.0509556206381 -0.114617852545)
(-0.0205433101746 -0.0110140743493 -0.13806911889)
(-0.0449117114447 0.0409188237462 -0.129982072582)
(-0.0469442805898 0.107152761694 -0.125220187625)
(-0.0303465206832 0.170948838928 -0.123402642592)
(-0.0175885528129 0.221523582638 -0.170959582654)
(-0.0337925688434 0.23983343976 -0.214212018944)
(-0.0640208847786 0.226831119465 -0.217838004207)
(-0.0856919733588 0.204495201522 -0.169307091364)
(-0.045086877579 0.171614435252 -0.065253447499)
(-0.0408953455062 0.122130602109 -0.0162330245875)
(0.0414396545814 -0.116348788748 0.264979822465)
(0.0968157849088 -0.142624221917 0.198313906016)
(0.13397116761 -0.198536071413 0.181528749351)
(0.164084314693 -0.246776248152 0.13254696045)
(0.14857288112 -0.260145544989 0.0675729652053)
(0.107778674932 -0.23893576757 0.0162647652329)
(0.0762762707422 -0.196031777767 -0.0136014945211)
(0.0627416177405 -0.147335467051 -0.037508142955)
(0.0593586409672 -0.102319354531 -0.0668736772361)
(0.0498301172348 -0.0639589271704 -0.106257092022)
(0.0274957368558 -0.0347224305832 -0.145701290461)
(0.0121173009647 -0.00323064998307 -0.174170933167)
(0.00987130150024 0.0282971056539 -0.209194917007)
(0.0169495361624 0.0682559035418 -0.237622741681)
(0.00955478560095 0.107740748868 -0.291435398965)
(-0.0246462486527 0.122556337237 -0.329156628961)
(-0.0579671251085 0.126090733865 -0.340306073256)
(-0.0773826552582 0.142084979692 -0.322435652974)
(-0.0446863259317 0.180622587788 -0.26612846132)
(-0.0325440002259 0.198721755558 -0.270204668862)
(0.0366488063182 -0.0972484045948 0.261413189209)
(0.0668082098136 -0.101219901073 0.206651680403)
(0.0924757315406 -0.123052498069 0.214419664647)
(0.133552702714 -0.154184989394 0.186884664791)
(0.146707980731 -0.178081706474 0.140064125952)
(0.137110489994 -0.176773058089 0.0873353263009)
(0.121109140936 -0.157166880654 0.043878514543)
(0.10988857192 -0.122242254493 0.00247144946142)
(0.103402060356 -0.0912798310989 -0.0411878130248)
(0.0864085243464 -0.067381882227 -0.0908865479252)
(0.0573734892649 -0.0595374481228 -0.136872026633)
(0.0374047252149 -0.0614703197506 -0.169303991704)
(0.0420150333483 -0.0580660467726 -0.189747973702)
(0.0618933310512 -0.0137248054189 -0.218742804769)
(0.0444678605364 0.0484826032419 -0.295952469243)
(-0.0118215769142 0.057172228761 -0.341201083665)
(-0.0479925139211 0.0266066892019 -0.361460869585)
(-0.0504971540985 0.00151415551105 -0.37982989869)
(-0.00851411597955 0.00443458435799 -0.412528110737)
(-0.00196462417598 0.00284297539235 -0.527415713601)
(0.0347095932965 -0.0751270503907 0.282878489508)
(0.0644209041944 -0.0685817282296 0.225625353883)
(0.0832327971583 -0.0624056809342 0.221250476643)
(0.120796762297 -0.0707517788681 0.203679584533)
(0.14607224823 -0.0868053686899 0.172193512443)
(0.153214961507 -0.0939093627644 0.129587393703)
(0.155611413479 -0.0938704835322 0.0929566274469)
(0.153957687666 -0.0784364608085 0.0313411785389)
(0.142105907627 -0.0662986668988 -0.0192789546205)
(0.112818816123 -0.0598626803509 -0.0769348041938)
(0.0683010978912 -0.0765931680671 -0.113373282825)
(0.0453943682696 -0.111339137544 -0.114933277714)
(0.0877192479598 -0.122696024179 -0.103176583454)
(0.147135784024 -0.0395021731757 -0.180243093947)
(0.0944219696999 0.0612577270643 -0.355534797656)
(-0.0389360847618 0.0483398013532 -0.394373172915)
(-0.113337679564 -0.047664065086 -0.344830063575)
(-0.112372348645 -0.149510261714 -0.299637771137)
(-0.0550116699792 -0.226404314197 -0.296716970314)
(-0.0178781388028 -0.289865585344 -0.351232424968)
(0.0343658094958 -0.0611694618658 0.285866842406)
(0.0725887366233 -0.0540938610023 0.236846131952)
(0.0981474488136 -0.041323470359 0.219206445687)
(0.132537794739 -0.0356726706018 0.19283229556)
(0.162205451392 -0.0356987296784 0.16436741057)
(0.172415369474 -0.0344086727204 0.127491256334)
(0.181014585794 -0.0269607312633 0.100222637642)
(0.185213791436 -0.0265285785427 0.0393230782963)
(0.172491933606 -0.0216726511514 -0.00723210662879)
(0.129162408931 -0.0251253956622 -0.0643188576471)
(0.0611563306713 -0.0612395340623 -0.0687766930505)
(0.0461967514417 -0.115336152185 0.00114504013595)
(0.163697044883 -0.134948481537 0.0688604808902)
(0.286481426882 -0.0196499968666 -0.143965590017)
(0.159392920845 0.0970337834182 -0.494534982713)
(-0.105749813769 0.058147589202 -0.49611396793)
(-0.238402175456 -0.0716202459854 -0.295314710971)
(-0.232044078404 -0.199039394205 -0.115146399769)
(-0.147101484024 -0.296960982772 0.00586535353142)
(-0.0547140878483 -0.362701220134 0.0571820318333)
(0.0349670001379 -0.0249977416023 0.340422396161)
(0.0788055412091 -0.02417481938 0.293722604177)
(0.111360575279 -0.0211497960988 0.268025564569)
(0.145728063885 -0.0182061291312 0.231753595244)
(0.175849964112 -0.0149265051822 0.18970247676)
(0.195241976939 -0.0109276245137 0.13857489395)
(0.205033896861 -0.00178390787954 0.0793100201315)
(0.206415690724 -7.6204248888e-05 0.0170176235567)
(0.190751074877 0.00469643357232 -0.0536793216623)
(0.130307627321 0.0021640191061 -0.119273331806)
(0.0445978394626 -0.0175521714725 -0.0635916488356)
(0.0402092978793 -0.0459408557682 0.097630089004)
(0.247178757628 -0.0608667468245 0.244763062579)
(0.428831262275 -0.00151490395436 -0.188443971039)
(0.194719146376 0.0496016305562 -0.72760062666)
(-0.208908827048 0.0213167610527 -0.625836590438)
(-0.377486184992 -0.0425214122962 -0.245874126473)
(-0.346951417382 -0.101621328418 0.0826547389338)
(-0.219489962693 -0.145332510595 0.303727979343)
(-0.0869170864019 -0.177665682878 0.422554436727)
(-3.56848576539e-05 0.0106014710636 0.0644078233574)
(0.00253585750391 0.0123894488064 0.0666732073823)
(0.00076290936172 0.0180602404467 0.0700544346368)
(0.0037837469286 0.0248486979197 0.0775669769482)
(-0.000949653022344 0.0290959193652 0.0711416958732)
(-0.0161160081723 0.0333448152402 0.0729030962295)
(-0.0278551190268 0.0348336494558 0.0807478870012)
(-0.038309882834 0.0311992486155 0.0747199984692)
(-0.052844973785 0.0260429638251 0.0710956649119)
(-0.0662739556714 0.0190787348369 0.0766203187389)
(-0.0808054187484 0.0155991399984 0.0862320246702)
(-0.0907441346381 0.0142230138221 0.10143913683)
(-0.0964888113009 0.0133162979958 0.117449143799)
(-0.102987576313 0.0135883547596 0.135956707425)
(-0.104004837926 0.0189638178012 0.173271160518)
(-0.103608094713 0.0221540395725 0.191974318335)
(-0.0925702825504 0.025011945434 0.243453660475)
(-0.0555125888416 0.0217318038505 0.277861209945)
(-0.0247852963253 0.0136504827295 0.266954302063)
(-0.00445575533166 0.0094297824976 0.263723261683)
(0.00357521919031 0.023456017546 0.061872554453)
(0.0125943119985 0.0323004120395 0.0546588743605)
(0.0181246533163 0.0476039467611 0.0500641550421)
(0.0218294125337 0.0697866110476 0.042632113834)
(0.0138649576108 0.0869417384642 0.0315299564506)
(-0.00738119103632 0.0968389037351 0.0252008702495)
(-0.0307655559065 0.0938788878468 0.0278250629991)
(-0.0500087801351 0.0781406563468 0.0327001997946)
(-0.0677649185 0.0586808797132 0.0437508529955)
(-0.0827080535972 0.0403787971852 0.0559987789188)
(-0.0940466003397 0.024472578803 0.0718776833168)
(-0.103372480689 0.0109988299489 0.0919920975911)
(-0.107195331404 -0.00159055858596 0.114187816722)
(-0.104818988536 -0.00871292809691 0.137070493941)
(-0.0977292339036 -0.00259018619995 0.160715210803)
(-0.0929261569092 0.00929516198176 0.182407784352)
(-0.084928864922 0.0296155358378 0.221449242309)
(-0.0632454219174 0.0432740237075 0.265533008105)
(-0.0394359743106 0.0381902917288 0.280828063555)
(-0.0134223430314 0.0307379291413 0.296217148329)
(0.0133382155161 0.0304997769023 0.0615255234972)
(0.0311996971877 0.0479361468676 0.0431073829497)
(0.0441954339892 0.0764406753979 0.0381250176286)
(0.0495922477371 0.105621945291 0.0155161260231)
(0.0299540269858 0.12681076225 -0.0067895622399)
(-0.00764292701943 0.132494003642 -0.0188549958766)
(-0.047265145825 0.121378223814 -0.0143681405129)
(-0.0760075790518 0.0986290281543 0.0024366314481)
(-0.0925560183384 0.0741131183567 0.0219780656518)
(-0.104738931007 0.0538394107973 0.0431163233964)
(-0.116015112778 0.0352649168312 0.0680076730742)
(-0.125438074287 0.0183577927909 0.098653842345)
(-0.12690980495 0.00362051697896 0.134057422355)
(-0.1147444285 -0.00751529408605 0.167671635559)
(-0.0930615286242 -0.0101090984484 0.189297986436)
(-0.071715870125 0.00117923177305 0.203355463905)
(-0.0557317421298 0.0267115639508 0.217941902725)
(-0.0452731399286 0.0577350488215 0.24226811355)
(-0.0378384896506 0.08018745605 0.275482989789)
(-0.0158366240669 0.0859164125554 0.304081066896)
(0.0234945470215 0.0411097579724 0.0667792865439)
(0.0619598401463 0.0670467207699 0.0347311101203)
(0.080060873876 0.105207161434 0.00622856574982)
(0.0778781606882 0.137628186141 -0.0296927873542)
(0.0442993382449 0.158768282603 -0.0634613405877)
(-0.0117588246188 0.159103364059 -0.0742869264144)
(-0.0657582721927 0.141598378637 -0.061347215769)
(-0.0994255138495 0.114568181653 -0.0332046117685)
(-0.11567237734 0.0886838753284 -0.00514149622463)
(-0.126127460934 0.0676465335106 0.0228391890923)
(-0.136458530663 0.0511826133539 0.0550907140064)
(-0.144210830939 0.0378412957165 0.0929864318658)
(-0.143884172122 0.0275595007571 0.135017938112)
(-0.128311362307 0.0179213143933 0.176509238306)
(-0.095772310014 0.0101037327833 0.207169349622)
(-0.0576730814068 0.0109960918015 0.214224836937)
(-0.0261125443031 0.0285265222941 0.215763521489)
(-0.00866149093136 0.0641030985215 0.213765778708)
(-0.00938413534803 0.108414186927 0.224395600276)
(-0.00802937743507 0.13623275464 0.238901841738)
(0.0346306410464 0.0443295014743 0.0624083540176)
(0.095646501905 0.0759908516306 0.00640635793372)
(0.115984960847 0.113845838727 -0.0332729789398)
(0.107592731508 0.144368417211 -0.085594947414)
(0.0561038394262 0.161611364652 -0.130283765332)
(-0.0195305749654 0.154668875512 -0.136966267273)
(-0.0840678252036 0.131096616641 -0.109890069147)
(-0.11853868371 0.103409211999 -0.0679508734961)
(-0.130976996279 0.0811675768098 -0.0295512655375)
(-0.137938850447 0.0675180140937 0.00363913991711)
(-0.146195436555 0.0603813920205 0.0403563065441)
(-0.152564019531 0.0567124342473 0.0820556041584)
(-0.151795951449 0.0539399962867 0.127878405335)
(-0.137583754828 0.0495728506997 0.173380136079)
(-0.10501351865 0.0420942389147 0.21233900656)
(-0.0568591087927 0.0371855660943 0.246028922251)
(-0.00527444389449 0.043587718782 0.246514801596)
(0.0299996675135 0.0649014205233 0.214765998056)
(0.0347981888283 0.106092753529 0.178097454866)
(0.00811034029379 0.144537938905 0.144135707881)
(0.0438547184395 0.0321791628975 0.0679485962003)
(0.130312505052 0.0618695442437 -0.013115167921)
(0.149130595041 0.0942139263338 -0.0750619073017)
(0.131683692349 0.117901302303 -0.138639533701)
(0.0622322165369 0.128532953017 -0.181028910849)
(-0.0278277219561 0.117789609694 -0.175233350796)
(-0.0967764229689 0.0930146329599 -0.132050663586)
(-0.126355849891 0.072857273035 -0.078892536329)
(-0.130941656513 0.062855825723 -0.0390879560353)
(-0.1331996862 0.061311847171 -0.00786826813372)
(-0.139945434586 0.0655395822274 0.0263438581374)
(-0.147160627753 0.0719701972109 0.0644579562005)
(-0.149053435427 0.0785660765874 0.109508716358)
(-0.139537049012 0.0883651549353 0.163840703676)
(-0.110021538363 0.0817089329009 0.227757156581)
(-0.0604307794853 0.0771458939959 0.249702433721)
(-0.00307682736612 0.0741349801715 0.25448767656)
(0.0483762784893 0.0764870125687 0.232505070882)
(0.0655276504076 0.10068580715 0.181579314924)
(0.0226252993146 0.141117438698 0.093187522386)
(0.0517690863241 0.0136134680325 0.07872324011)
(0.15543169547 0.0329587854307 -0.0265498413198)
(0.170063728501 0.0534973341409 -0.0961880226213)
(0.148240153248 0.0667676405589 -0.160604704974)
(0.0693533696842 0.0759614319881 -0.204911823233)
(-0.0307131518363 0.0639409376959 -0.189268156182)
(-0.0962881805744 0.0464127537105 -0.130418084058)
(-0.115710206586 0.0410689271163 -0.0776557569972)
(-0.115604910261 0.0435810201356 -0.0432610260201)
(-0.117337901267 0.0524436356982 -0.0162365200565)
(-0.124412628153 0.0653595293349 0.012526290296)
(-0.133140167285 0.0823041051548 0.0452792718211)
(-0.132211030567 0.0991248774609 0.0877125076215)
(-0.132441908215 0.110115637653 0.154952695596)
(-0.117539657288 0.114860360078 0.195464908941)
(-0.0703263068947 0.11088466393 0.232010517164)
(-0.011986502767 0.102829144176 0.253720460899)
(0.0521051040499 0.1013319465 0.244242519812)
(0.0890870387411 0.11602209474 0.183714346467)
(0.0441285067835 0.156838759116 0.0682882505891)
(0.057232856726 0.0019445495454 0.0909717019105)
(0.167891995484 0.010265277333 -0.0255254807033)
(0.178545050277 0.0182470786529 -0.0959618885008)
(0.155917064448 0.0215575515358 -0.158517448231)
(0.0720657447052 0.0287987724992 -0.203862553789)
(-0.0338910503316 0.0227470012938 -0.17530862263)
(-0.0895564843562 0.0206274243928 -0.109529971638)
(-0.0960483202874 0.0276653691114 -0.0661273937368)
(-0.0959343374906 0.0358066439393 -0.0389577852898)
(-0.0974150098205 0.0488363792447 -0.0183357656753)
(-0.100950462901 0.0645755230236 0.00275804583577)
(-0.108816571038 0.0834250189229 0.0263463040426)
(-0.120006864114 0.103690001853 0.0586986487746)
(-0.123271437899 0.118993856955 0.105078305787)
(-0.112318627308 0.132672928577 0.139465330609)
(-0.0813546172518 0.126094082958 0.188326113145)
(-0.0215042967366 0.115146102478 0.229710752849)
(0.0562121813265 0.123797549477 0.225434070637)
(0.104689124861 0.147987236539 0.169598813469)
(0.0560276215798 0.191687471759 0.0550446394576)
(0.0574052501681 -0.00225924502688 0.0904162033035)
(0.170777936287 -0.00383159611703 -0.0245071920963)
(0.180902026612 -0.00295431785435 -0.0956526981093)
(0.158224037645 -0.00479264991622 -0.153266484014)
(0.0763787742778 -0.00106573262909 -0.197109094871)
(-0.0278246039024 0.00111708433746 -0.170165583579)
(-0.0747646363634 0.0124803264533 -0.111534305697)
(-0.0815152355157 0.0244630313932 -0.0765167583231)
(-0.0824398849963 0.0373425643057 -0.0476300375531)
(-0.0827373595511 0.0526955827623 -0.0277802966495)
(-0.086950143201 0.0683724923815 -0.00955672591297)
(-0.0945742640442 0.0827702699737 0.00830113827306)
(-0.0993463235106 0.0973055321785 0.0283623492795)
(-0.107885011382 0.116726725066 0.0445342813761)
(-0.118177148915 0.119265870476 0.0757358547436)
(-0.0993618463305 0.110972685362 0.149938330168)
(-0.0270969851235 0.10789210577 0.231168710306)
(0.0734349211408 0.132733093008 0.215680067926)
(0.12653884618 0.181776355947 0.139972728676)
(0.0734854233725 0.231516935476 0.0355142428276)
(0.0521678279522 -0.0203843382686 0.0775535000825)
(0.169378929358 -0.0229763902168 -0.029341439436)
(0.184608074896 -0.0233770450485 -0.0971529453999)
(0.161880431874 -0.0255941249152 -0.151093845697)
(0.0804861094462 -0.0235535130194 -0.191208871903)
(-0.0192555159824 -0.0168555224362 -0.165024164402)
(-0.0624070246254 0.00164285565284 -0.110653928152)
(-0.0653021708704 0.0165169475884 -0.0763110239652)
(-0.0633672019773 0.0341604765944 -0.0573011210871)
(-0.0639039491812 0.0512502104916 -0.0427874844732)
(-0.0699995555181 0.0679988982535 -0.0306778978336)
(-0.0813316959352 0.0802866450341 -0.018480601918)
(-0.0893112157936 0.0862551400903 -0.00315506365691)
(-0.107705441521 0.0869372433534 0.00766082810598)
(-0.127802088216 0.0846129292483 0.0580482622018)
(-0.106199438976 0.0885165998464 0.153951797703)
(-0.0180591340164 0.110063308 0.250886043227)
(0.107390558812 0.153712262684 0.222714359149)
(0.157639583917 0.216342890622 0.0810623395021)
(0.0708729486087 0.26448903419 -0.0402379060616)
(0.0494985512629 -0.0510881502526 0.0839747688895)
(0.174863188642 -0.051828447087 -0.0204102482907)
(0.193344365496 -0.0592983587359 -0.0933101088916)
(0.170464583787 -0.0607476648675 -0.155898720546)
(0.0866042864603 -0.05587818442 -0.191687225847)
(-0.00763602419758 -0.0391517185628 -0.162734565619)
(-0.0485189869688 -0.0105995728319 -0.109100063361)
(-0.0489124673575 0.0143870490998 -0.0770849273706)
(-0.0442861928622 0.0371100981919 -0.0600475462002)
(-0.0454271553942 0.0574083031352 -0.0542093478272)
(-0.0557530092986 0.0758037589917 -0.0493198910761)
(-0.0761189469328 0.0821321143464 -0.0387803599168)
(-0.0933685218755 0.0751345324382 -0.0134951692943)
(-0.114371532087 0.0590233487274 0.014103641351)
(-0.126706026179 0.0645736789788 0.0842227354075)
(-0.0904183921051 0.0934463762967 0.183819899808)
(0.01254160626 0.143989715309 0.260828147535)
(0.14748530074 0.190591054415 0.185932111325)
(0.190541290528 0.2230402082 -0.0194597679193)
(0.0744111623019 0.25927829881 -0.182104191371)
(0.0470636355289 -0.0774530014481 0.0996489340723)
(0.176025569669 -0.0860962728332 -0.000978037750455)
(0.197945770696 -0.110460403866 -0.0733536458257)
(0.178137035135 -0.12078694947 -0.145025132894)
(0.0990690132391 -0.112813904548 -0.183653079456)
(0.00937960078639 -0.0833898488634 -0.166906003152)
(-0.032612458536 -0.0405037070189 -0.120358583758)
(-0.0322442824168 -0.00503633941828 -0.0941991550289)
(-0.0241571904007 0.0217144880664 -0.0891412651647)
(-0.0249916437143 0.0431288438916 -0.0929407336652)
(-0.0472165367672 0.0591486211027 -0.101403494775)
(-0.0865788090249 0.063783899709 -0.0839114317244)
(-0.116707787723 0.0612050383239 -0.0236435711297)
(-0.123835684408 0.0593634892364 0.0526901952268)
(-0.105643808673 0.0858292242843 0.128995331886)
(-0.0479644968574 0.135438056665 0.190253262341)
(0.0475664789956 0.18769335558 0.192075647329)
(0.148866034109 0.202621299158 0.0825398073624)
(0.183649444829 0.183077368986 -0.0926448210683)
(0.0679618118676 0.170415139432 -0.27552624541)
(0.0457285628598 -0.0939239473301 0.120723856049)
(0.160234468113 -0.122399737083 0.0299616725692)
(0.185030952181 -0.160035429294 -0.0340873230237)
(0.174978322042 -0.181176643454 -0.103221539887)
(0.111306548608 -0.17525613019 -0.144842377)
(0.033884277456 -0.139965639708 -0.145495021028)
(-0.00940264243616 -0.0889904501914 -0.119559684838)
(-0.0181747701939 -0.0461480802581 -0.0961046162749)
(-0.0123324745315 -0.0122467842947 -0.0904124243173)
(-0.0157905546345 0.0133416275328 -0.0923353210627)
(-0.0423259969336 0.0315341183062 -0.0941760896865)
(-0.0831969740554 0.0475474354595 -0.0627516400406)
(-0.1064002959 0.069643023115 0.0072373359795)
(-0.0981144014882 0.0977767692636 0.0753248286998)
(-0.0653531329532 0.140451041637 0.116957841669)
(-0.0129492753552 0.185978537475 0.125037844005)
(0.0459764776593 0.212316573034 0.0913438899779)
(0.102833843303 0.199760311467 0.0238812620423)
(0.123469794412 0.14893614684 -0.0922101945782)
(0.0396146758521 0.103605292688 -0.195275462442)
(0.0373307702877 -0.104677204253 0.144378883961)
(0.128539486271 -0.140225122233 0.0737680213464)
(0.161383096977 -0.18139654648 0.0218492521122)
(0.164986654246 -0.209010489509 -0.039411979757)
(0.122215382698 -0.207763745343 -0.085644535871)
(0.0636789439625 -0.174991655035 -0.102948965316)
(0.0251056281884 -0.12572300152 -0.0992115732621)
(0.0130519267625 -0.0778607009891 -0.0902984031416)
(0.0131457049633 -0.0362995447841 -0.0911045506683)
(0.00558437084843 -0.00199197316207 -0.0977517041447)
(-0.0217219180148 0.027090669945 -0.101524140407)
(-0.0575851763985 0.0599833585295 -0.0742928780639)
(-0.0745211031128 0.103618083418 -0.0220970882331)
(-0.0624717743036 0.149061973142 0.0244506122293)
(-0.032694126209 0.194013126945 0.0401332904153)
(0.000157603099592 0.223314806481 0.0258674105591)
(0.0278842903983 0.225951320718 -0.013547829154)
(0.0476300821153 0.202527773124 -0.0573914494459)
(0.0616181081108 0.145091262928 -0.108579676945)
(0.017090074572 0.0927146834687 -0.175740092548)
(0.0344910337206 -0.107629686176 0.169213585007)
(0.0976390106514 -0.133666865107 0.123701110782)
(0.133706327738 -0.171983789642 0.0829170508351)
(0.150194716428 -0.200230396134 0.027932731635)
(0.130735964855 -0.204475787248 -0.0183373274972)
(0.0930870092386 -0.180586400932 -0.0481567090363)
(0.0633240180087 -0.140092594456 -0.0616255424313)
(0.0505169003113 -0.0957248921109 -0.0683852180984)
(0.0472068378559 -0.054999318433 -0.0805202407367)
(0.0381835119059 -0.0191026216677 -0.0981414704685)
(0.0155123358078 0.0131047785933 -0.113563499585)
(-0.00924378448867 0.0513589425634 -0.11051020958)
(-0.0197472435069 0.0995299865243 -0.102252410625)
(-0.0130793581612 0.148420395255 -0.0993568730009)
(-0.00182889571435 0.189416041433 -0.117993598774)
(0.00010030515649 0.209674720966 -0.14137418535)
(-0.00463357077609 0.207447696474 -0.154413303371)
(-0.0117774650619 0.189545524412 -0.151997368975)
(-0.00203616691162 0.154337417544 -0.128810058095)
(-0.0052851162253 0.111466116978 -0.136995500382)
(0.0307317385303 -0.0970351666046 0.19492343996)
(0.0711687692819 -0.11111478748 0.158485315552)
(0.105522908982 -0.137405599978 0.131766559282)
(0.13606844469 -0.161972496925 0.0949440604611)
(0.136261325142 -0.17102723045 0.0462348271764)
(0.117632415092 -0.158279792086 0.00777070460257)
(0.0984706153953 -0.12961313113 -0.0187406891583)
(0.0879476643485 -0.09505845112 -0.0398581803232)
(0.0830294711049 -0.0617477530155 -0.0636489944844)
(0.0727833684992 -0.032328621316 -0.0930204478314)
(0.0532730734433 -0.00771643742755 -0.120563429739)
(0.0352518617164 0.0193692733614 -0.138824165798)
(0.0283535298034 0.0525929199561 -0.157652178599)
(0.0296208145462 0.0921447071297 -0.180878637348)
(0.0247437215223 0.127514730806 -0.215975688354)
(0.0062305492872 0.142135471173 -0.244017194604)
(-0.0135333414881 0.13900109075 -0.257532536777)
(-0.0299917673443 0.130259219771 -0.257058584)
(-0.0211557617023 0.124426416095 -0.2351197641)
(-0.00750522462234 0.107259027023 -0.255771354378)
(0.0277821051356 -0.0809511759609 0.213689035588)
(0.0594244084907 -0.0855714427186 0.182239936614)
(0.0870444941539 -0.0938020617442 0.166580091544)
(0.119603153646 -0.109567506584 0.137922043217)
(0.134723487388 -0.120056496205 0.0978131632247)
(0.133454821432 -0.117021935124 0.0575604196574)
(0.12550446545 -0.10191088865 0.0207409337127)
(0.118812366328 -0.0790359282058 -0.0104032772785)
(0.113467595703 -0.0569840760881 -0.0440879539155)
(0.100527579868 -0.0391276760316 -0.0818727724958)
(0.0798111368856 -0.0295182866407 -0.114234122801)
(0.0650781749218 -0.0214049566879 -0.136671252805)
(0.0659591106318 -0.00404255221315 -0.158645836393)
(0.070950256971 0.033937859577 -0.19604530848)
(0.0522210273124 0.0732482670368 -0.252235836183)
(0.00979429363492 0.078973659985 -0.286643167782)
(-0.0243636766643 0.0550549680708 -0.296944961888)
(-0.0394009360656 0.0262550063227 -0.298823709717)
(-0.0205411574691 0.0105251156187 -0.300120366884)
(-0.00214692323303 -0.01015030742 -0.352610379945)
(0.0259227482015 -0.0620921577867 0.231766350283)
(0.0569468160785 -0.0612773154902 0.2056868849)
(0.0828605946383 -0.058252549313 0.188473031761)
(0.113435064097 -0.0607747046195 0.162714841576)
(0.13384223098 -0.0662944998026 0.128391116769)
(0.14198361091 -0.0673954728525 0.0902561374793)
(0.144047807673 -0.0625325696623 0.0551692404648)
(0.14263675756 -0.052359126985 0.0124675112808)
(0.135957658666 -0.0429021668795 -0.0275608313786)
(0.117896947049 -0.0379197351875 -0.0692579727399)
(0.092860908596 -0.0444735714432 -0.0956242729972)
(0.084212060759 -0.055130716468 -0.103854509377)
(0.106272900463 -0.0490840845822 -0.118881989916)
(0.125631797088 -0.00243587190326 -0.187596719093)
(0.0827805645276 0.0453191581314 -0.290763710618)
(-0.00500092480253 0.0379765520016 -0.322475755282)
(-0.0655962055408 -0.0146696074301 -0.292226291873)
(-0.0803519717407 -0.0749219079409 -0.252229918884)
(-0.0485942930846 -0.121525299816 -0.228188565381)
(-0.0129556862951 -0.164531571915 -0.253601853836)
(0.0250381291236 -0.047407526963 0.244093991983)
(0.0584840220573 -0.0434448138746 0.222581115979)
(0.0871601405211 -0.0377787886784 0.201012643654)
(0.116237331437 -0.0346091264384 0.172397605336)
(0.137616501279 -0.033544190045 0.13803139735)
(0.149823251509 -0.0312109922274 0.0993495788809)
(0.155932690994 -0.026457209321 0.0662953725894)
(0.156517418472 -0.0215331522085 0.0227289978077)
(0.148796642962 -0.0174927164494 -0.0170347441122)
(0.124726139523 -0.0195336775169 -0.0568131421689)
(0.0942134302643 -0.0371202626942 -0.0659233634247)
(0.0962347285391 -0.0574228498214 -0.043078816024)
(0.154412604918 -0.0575026108268 -0.0418774233282)
(0.196854138249 -0.00656062392239 -0.172042437836)
(0.117245597541 0.0413077867555 -0.346491742481)
(-0.0342178572805 0.0252290751192 -0.362221234877)
(-0.129411678967 -0.0361861073176 -0.259059267198)
(-0.145101793273 -0.102596862434 -0.142914949321)
(-0.0971001785444 -0.156395405418 -0.0534858995408)
(-0.0305464808223 -0.198031111622 -0.0285232185231)
(0.0245772820791 -0.0201515251893 0.26732547378)
(0.0602154039437 -0.0173521381209 0.250352706697)
(0.0906639053702 -0.0158156879242 0.227310148574)
(0.11943930134 -0.0144722644718 0.198286276437)
(0.144146310494 -0.0131292772473 0.158810479235)
(0.160989965321 -0.0105088274966 0.113700784177)
(0.168378614015 -0.00632466198815 0.0651520343571)
(0.16744881317 -0.00302085265037 0.0172644578941)
(0.154798965733 -0.000274034761998 -0.0322177317284)
(0.12153931828 -0.00158114727134 -0.0729606077514)
(0.0861880159152 -0.0104791777911 -0.0612958209261)
(0.10004704765 -0.0203832673932 -0.00512138881493)
(0.194216563345 -0.021441812914 0.0157766322847)
(0.257619836731 0.00313502367778 -0.192915851969)
(0.139599111313 0.0246423687918 -0.442350866456)
(-0.0726197534502 0.0146436475729 -0.433821711066)
(-0.198576907522 -0.0157422632362 -0.255590990581)
(-0.211736616343 -0.0474629864093 -0.0603163697761)
(-0.141342551925 -0.0697938760472 0.0872452083124)
(-0.051707707372 -0.0925201764291 0.158405695337)
(0.000141641171609 0.00678431320921 0.0541309566146)
(0.00258553677377 0.00893867105675 0.0530638579571)
(0.00189822408932 0.0127371264356 0.0541139039383)
(0.000773452687732 0.0159625108239 0.0578335834569)
(-0.00518107371124 0.0179270310396 0.0549838563998)
(-0.0175393627381 0.0195166068345 0.055243539351)
(-0.0287390875076 0.0204669783784 0.0598094107773)
(-0.0389993409981 0.0194552344445 0.0619000824257)
(-0.051350344231 0.0164711714234 0.0663963743076)
(-0.0634479731401 0.0137031845864 0.0724963689593)
(-0.0733394815607 0.0116680914982 0.0834889021924)
(-0.0801954160266 0.0104566481556 0.098454805051)
(-0.0837128069373 0.00984032580183 0.116150738587)
(-0.0854422852094 0.00992875191228 0.135934389246)
(-0.0837057371772 0.0118937070435 0.162897613137)
(-0.0789913747886 0.0139809489485 0.187647783221)
(-0.0675725487512 0.0155010116498 0.222170506104)
(-0.0453430819599 0.0146666069938 0.244895265919)
(-0.0242679011564 0.0126945847974 0.250773578378)
(-0.00710495371035 0.0124901095506 0.256261553669)
(0.00290895436737 0.0195467598099 0.0507039667259)
(0.00976609455 0.0260447251879 0.046502920147)
(0.0118208987309 0.0351474000985 0.0405481856221)
(0.0108240522169 0.0451159325678 0.0318335538646)
(0.00246149387599 0.0525953504735 0.0224120445492)
(-0.0131739070293 0.0562524698962 0.017720339655)
(-0.0302374680278 0.0549595052553 0.0212018072001)
(-0.0453091926009 0.0487175925964 0.028720021306)
(-0.0591546411413 0.0391809343604 0.0386601358989)
(-0.0713050065593 0.030561807026 0.05391665897)
(-0.0806234057125 0.0222522132443 0.0714441797572)
(-0.0871518543763 0.0154414805789 0.0910737081663)
(-0.0898010456956 0.00939508592913 0.113187690919)
(-0.0882703468517 0.00636235368183 0.135523854284)
(-0.0831615855608 0.00919867570721 0.157802279644)
(-0.0768128764964 0.0158617961131 0.179185793183)
(-0.0665281507956 0.0256028084707 0.207731692162)
(-0.0491917576072 0.0315239389832 0.234680459637)
(-0.0299696135912 0.0315536263261 0.252572331405)
(-0.00997604481368 0.033079242127 0.266075441626)
(0.00711229171383 0.0277640738638 0.0486193348969)
(0.0202509442176 0.0383945552341 0.0353867425457)
(0.0253917195387 0.0529068278971 0.0224328397048)
(0.0252246536604 0.0672518565552 0.00321681599386)
(0.012086557041 0.078201994604 -0.0113024658142)
(-0.0119921092337 0.0814647709373 -0.017581616442)
(-0.0379301652175 0.0762419574977 -0.0124778428854)
(-0.0575509923251 0.065000726561 0.00152074428477)
(-0.0722933268184 0.0527274930888 0.0195646338239)
(-0.0837785598951 0.0423696413289 0.039967459633)
(-0.0928295297991 0.0329283659228 0.0636737885956)
(-0.0987676403415 0.0242402874672 0.0897287272568)
(-0.0997304348001 0.016851236497 0.119142855431)
(-0.0931373468882 0.0118197167966 0.147078771732)
(-0.0809651996679 0.0118472709451 0.169294278725)
(-0.0671676620955 0.0185221764849 0.185990766905)
(-0.0536681055604 0.0321054016826 0.202159134923)
(-0.0406240075744 0.0470507526546 0.220363309869)
(-0.0262776298823 0.0586653815312 0.240743685391)
(-0.00842198486061 0.067051464013 0.257934621354)
(0.0131101979226 0.0355475488718 0.0465476110235)
(0.0348867667306 0.0486673125901 0.0215103310063)
(0.0428363510681 0.0680888800638 -0.00567518049973)
(0.0411543597125 0.0859453416457 -0.0310920520006)
(0.0201636679967 0.098867306516 -0.0523137108548)
(-0.0152086064761 0.0987570026255 -0.059121308082)
(-0.0492560932549 0.0888834687973 -0.048144747814)
(-0.0727741676362 0.0746955572457 -0.0271422331552)
(-0.0861291078336 0.0620508724623 -0.00224363030384)
(-0.0964897776125 0.0519004368936 0.0232019860223)
(-0.105000613634 0.0441665689435 0.051903380551)
(-0.110207199133 0.0373018031332 0.083472459221)
(-0.109610524561 0.0320760607345 0.117152638759)
(-0.100283490876 0.0279567461644 0.149996739059)
(-0.0820230748677 0.0259536845191 0.176091511869)
(-0.0595209800884 0.0290013524927 0.191105729226)
(-0.0383940330056 0.0397532947795 0.199950616659)
(-0.0225552020787 0.0574026973774 0.204219098423)
(-0.0129503107881 0.0783073399037 0.209794844108)
(-0.00374339137539 0.0959125448113 0.216032240597)
(0.0192404308447 0.0359371096388 0.0369152271837)
(0.0502901261871 0.050944431053 -0.00168535528109)
(0.0615007464089 0.0717957294656 -0.0358022767776)
(0.0574684407539 0.0909123366292 -0.0718020007261)
(0.0247530186956 0.0987514007299 -0.096083096589)
(-0.0207115517075 0.0955496083527 -0.0968596694529)
(-0.0606067999102 0.0834060015475 -0.0783759722865)
(-0.0840074565776 0.0694005804067 -0.0502434907777)
(-0.0955407332724 0.0589556284159 -0.0209069041869)
(-0.104134088889 0.0533739875474 0.00795163812187)
(-0.111583194468 0.05073436091 0.0394623776268)
(-0.116090619703 0.0492383641348 0.0737731695965)
(-0.115035604926 0.0483574662426 0.110310341236)
(-0.105526130081 0.0476723814047 0.146651889054)
(-0.0854338653772 0.0457244351813 0.178388663735)
(-0.0567728757984 0.045790510492 0.200377268171)
(-0.0262149655529 0.0515149676619 0.207747899737)
(-0.00242168366621 0.0636070503248 0.198923277297)
(0.00867640789327 0.0845805259429 0.18229780699)
(0.00384598934843 0.108785796634 0.162663009476)
(0.0241666066154 0.0265526329726 0.0299421348475)
(0.0647271169808 0.0415401924312 -0.02167324054)
(0.0791942113311 0.0599848201099 -0.0641829625563)
(0.0677420897829 0.0730974725948 -0.105516217767)
(0.0281975852093 0.0796487703255 -0.127504037365)
(-0.0250898873227 0.0750515707299 -0.120143881264)
(-0.0671357208666 0.0632729888909 -0.0929132221209)
(-0.0881322873418 0.0541801786174 -0.0595769128234)
(-0.0964082820329 0.049777361881 -0.0299545854747)
(-0.102408910259 0.050692868489 -0.00231701514059)
(-0.109260859615 0.054427318625 0.0277034504853)
(-0.11423776092 0.0590592236655 0.0608997959482)
(-0.11415439409 0.0638999867675 0.0977325836727)
(-0.106905134449 0.0691876770284 0.136032526677)
(-0.088124409875 0.0683774144786 0.171954636081)
(-0.0568865149009 0.0679600259117 0.197803015858)
(-0.0213183482161 0.0689100202684 0.207904636484)
(0.0105226726592 0.0729655310475 0.19882302757)
(0.027107470668 0.0879866304857 0.166945607876)
(0.00839575670298 0.1103441445 0.128075073238)
(0.0290854288787 0.0142643192737 0.0318642934602)
(0.0760556822131 0.0249600940315 -0.032759703244)
(0.0908019239158 0.0366755604593 -0.0808203714833)
(0.0749198713092 0.0437281189388 -0.122784611371)
(0.031308117061 0.0487835106124 -0.142846447513)
(-0.0263895222417 0.0450228400058 -0.129288642221)
(-0.0656830494232 0.0380750444226 -0.0952818705092)
(-0.0815043666548 0.0366491697596 -0.0635911509357)
(-0.0884479123654 0.0393333720531 -0.0372652709012)
(-0.094251866954 0.045788063863 -0.0120097621226)
(-0.100869114846 0.0546017540251 0.0150897614098)
(-0.106348443197 0.0645445793872 0.0455263249304)
(-0.106847568833 0.0748175203972 0.0807974335018)
(-0.103910344292 0.0829217552974 0.110706424821)
(-0.0901986523344 0.0875810529641 0.154123244224)
(-0.0596582269987 0.0882280708227 0.184908629131)
(-0.0218672440136 0.087024786212 0.201870988762)
(0.0173215463528 0.0886912257974 0.197779369758)
(0.0402576401804 0.0996743133735 0.160300825643)
(0.0100389513413 0.117986962495 0.100794895332)
(0.0327740407693 0.00391090650098 0.0426644499288)
(0.0829169948596 0.00971654108002 -0.0336066581752)
(0.0954123424892 0.0145514345405 -0.0844345879112)
(0.0778132922376 0.0169735216127 -0.125622729532)
(0.0319314183514 0.0212004888377 -0.14661422077)
(-0.0276557168432 0.0212834327613 -0.127134090149)
(-0.0611304224298 0.0231961083367 -0.0907639445031)
(-0.0724030428305 0.0279510464532 -0.0619599983285)
(-0.0781898968131 0.0343357706317 -0.0379869477581)
(-0.0827517214405 0.0438087902874 -0.0168684251671)
(-0.0881906716434 0.0550404720244 0.00437986663974)
(-0.0934305196473 0.0673833378064 0.0251558949074)
(-0.0972441786625 0.079530569248 0.0523208379024)
(-0.0972243913128 0.091187864225 0.0885151252093)
(-0.0871281866005 0.0991831104909 0.122908960272)
(-0.0618167533921 0.100051978927 0.158442167083)
(-0.022505001004 0.0993449504517 0.183994558979)
(0.0232799254426 0.105585958512 0.182304190653)
(0.0495819584644 0.120073731449 0.1396237202)
(0.0106801691042 0.137658259988 0.069329686671)
(0.033547406399 -0.00249540934073 0.0520728109798)
(0.0860892244421 -0.00574247968141 -0.0353034484125)
(0.0965384343783 -0.0025324160174 -0.0854066567193)
(0.0800032741023 -0.00162843367065 -0.125269872376)
(0.0352869477628 0.0018830427966 -0.146593087012)
(-0.0228671304398 0.00656821745196 -0.128361348314)
(-0.0524382387043 0.0153031214476 -0.0952004473077)
(-0.0629448761068 0.0239039253246 -0.0697576825444)
(-0.0681605393194 0.0337760250797 -0.0462496443368)
(-0.0714093283237 0.0454549822138 -0.0275824240509)
(-0.0760123483577 0.057588244807 -0.00926526372553)
(-0.0818577888426 0.0694726959706 0.00923958213436)
(-0.0852708190626 0.0796319617566 0.0314554157812)
(-0.0882053136068 0.0916359937085 0.0544157705616)
(-0.0867172156982 0.0970044992013 0.0869348575005)
(-0.0651601555844 0.0987915711672 0.133139603317)
(-0.0199307880491 0.103760052941 0.171870177303)
(0.0355506547689 0.119743514146 0.165178697621)
(0.0621119989138 0.14411551903 0.108344550057)
(0.0140590853622 0.168398443497 0.0324618232788)
(0.027900361568 -0.0188043746116 0.0562561483359)
(0.0835010302655 -0.0230814518686 -0.0348977857837)
(0.100767120733 -0.020161036915 -0.0841747346234)
(0.0838767370178 -0.018836319244 -0.122792329136)
(0.0412064491965 -0.0157883469578 -0.143124963163)
(-0.0142336062647 -0.0076991222204 -0.125893294031)
(-0.0414719941734 0.00468387370382 -0.0954815829251)
(-0.049833333482 0.0161069733006 -0.072365686213)
(-0.0533809377094 0.0296164188105 -0.0546204360003)
(-0.0564757539055 0.0432401004578 -0.0407446027923)
(-0.0622579366081 0.056427006942 -0.0271304917777)
(-0.0707046807053 0.0669914909038 -0.0118253000249)
(-0.0764959809091 0.0741917605733 0.00848258123956)
(-0.0837298757232 0.0796387940711 0.0295002770917)
(-0.0860754791542 0.0848331933854 0.069843301695)
(-0.0620905272625 0.0939891243782 0.124742890181)
(-0.00845232344016 0.111145547263 0.166587800272)
(0.0567484540592 0.137252392039 0.148096032247)
(0.0802533276743 0.166813047894 0.0621492561525)
(0.0236923694892 0.194703979222 -0.0189175253151)
(0.0272041545445 -0.0428663510847 0.0669607145327)
(0.0839163577433 -0.0437701098122 -0.0266235831389)
(0.10674804307 -0.0423267601216 -0.0796670622696)
(0.0910753520047 -0.0425636489347 -0.118997618713)
(0.0507810728978 -0.037996444039 -0.137319671061)
(-0.00153795238635 -0.0244795528734 -0.120985699511)
(-0.0276444139371 -0.00581726223786 -0.0930130560528)
(-0.0341519581604 0.0110024500487 -0.0728930079237)
(-0.0365159655056 0.028039003533 -0.0606563855504)
(-0.0404391615417 0.0442422707665 -0.0512185057585)
(-0.0489281113337 0.0589989984365 -0.0418394766567)
(-0.0622926881408 0.0672848716565 -0.0276060102345)
(-0.0726534450401 0.0699230039042 -0.0028871422511)
(-0.0808302731608 0.0699519781602 0.0259053285708)
(-0.0788893993375 0.0802969061605 0.0730246902783)
(-0.0478416393066 0.101528199041 0.125647488041)
(0.0123154402774 0.130411767218 0.153416138227)
(0.0798139432943 0.15648749217 0.111060306858)
(0.0990269916963 0.172551150373 -0.00360379977673)
(0.035991079566 0.187284761154 -0.0978550085565)
(0.0271960389319 -0.0640073900324 0.08278224451)
(0.0830197674495 -0.0681098722578 -0.0104276341474)
(0.109079212242 -0.0733992316954 -0.063800797588)
(0.0994500276361 -0.0764650950532 -0.105063244109)
(0.0634626698252 -0.0706156699106 -0.126194427973)
(0.0156954699971 -0.0505212554777 -0.11826718323)
(-0.00945313311836 -0.0236977076471 -0.0952660237928)
(-0.0152482517139 -0.0010402729428 -0.0816623645643)
(-0.0162448800668 0.0181678731921 -0.0767679623371)
(-0.0211993012537 0.0351896401645 -0.0749792870637)
(-0.0365475489372 0.0499524130959 -0.072086110723)
(-0.0594222651283 0.0592994851481 -0.0540166486121)
(-0.0753079118728 0.0662796728987 -0.014097404428)
(-0.0774995462203 0.0745806024545 0.0333393145272)
(-0.0623388645289 0.0961247150759 0.0802517046712)
(-0.0234270398928 0.12660020839 0.112743312715)
(0.0321928835007 0.154895159291 0.108737825568)
(0.0846973956432 0.165680305724 0.0500815086407)
(0.0933833886639 0.156772072615 -0.0602039393388)
(0.0360169456553 0.149617677455 -0.154225074631)
(0.0299036665665 -0.0805115520624 0.104478461246)
(0.0794516251518 -0.0905321178157 0.0165832094141)
(0.105182780761 -0.102018365494 -0.0332006981556)
(0.10365723801 -0.109166652493 -0.0750226025937)
(0.076436219898 -0.104483660128 -0.100120694336)
(0.03693985272 -0.0819304696113 -0.102789861613)
(0.0117245171306 -0.0511138271971 -0.0917467134013)
(0.0030184918888 -0.0237749106166 -0.0815055595477)
(0.000453484774337 -0.000716160694666 -0.078196154588)
(-0.006213622531 0.0189731512081 -0.0777144781369)
(-0.0234451137583 0.0363204887239 -0.0739066586618)
(-0.0469206599588 0.0533380987323 -0.0523755973733)
(-0.0604889212684 0.0738403547029 -0.0111416863841)
(-0.056396714928 0.0975951223352 0.0301790989862)
(-0.0359089880475 0.128015061381 0.0586014452983)
(-0.00187550871417 0.157200986417 0.0652792844842)
(0.0359354330914 0.173588765957 0.0444722793001)
(0.0670874228484 0.168682433987 -0.00158773717591)
(0.0690897430116 0.142833883306 -0.0796307564686)
(0.0276902794497 0.12305231467 -0.147369620678)
(0.0292961415076 -0.0902120053202 0.1260383735)
(0.0721884343183 -0.104081193597 0.0556260267679)
(0.0983702875716 -0.116807473856 0.0105278452875)
(0.103806025391 -0.126243632588 -0.0318024118205)
(0.0873681211285 -0.123652187133 -0.0620781709194)
(0.0591709787296 -0.103671584952 -0.0753651918967)
(0.0377509856682 -0.073989140593 -0.0774511047403)
(0.0280758360081 -0.0439608863842 -0.0765189993349)
(0.023735551252 -0.0167745220722 -0.0790410360694)
(0.0158904973652 0.00817723007153 -0.0831512580904)
(-0.00124098114811 0.0320143023993 -0.0836688217405)
(-0.0225194572706 0.0582081298106 -0.0684140490498)
(-0.033620506361 0.0899071720729 -0.0391234192133)
(-0.0283354638084 0.123087392537 -0.0124527805389)
(-0.0112644823714 0.155382710892 -0.00161760847029)
(0.00987440623164 0.177612906249 -0.00893894515627)
(0.0283314930521 0.182508336506 -0.0307764281065)
(0.0397087584881 0.169725130443 -0.063315740119)
(0.0382088204641 0.138168222034 -0.104363129726)
(0.0159421442197 0.11414668244 -0.151083550514)
(0.0281167211466 -0.0915105120825 0.15047291583)
(0.0641813530157 -0.102699646417 0.0954372291776)
(0.0880374504269 -0.116858762131 0.0551756022082)
(0.10116873578 -0.125436678916 0.0168303619716)
(0.0962149548761 -0.124534636385 -0.0163231410892)
(0.0795671577254 -0.109337733192 -0.0387662747259)
(0.0638471210415 -0.0846109372362 -0.0520331142844)
(0.0549273390801 -0.0570230634791 -0.0612760190493)
(0.0502020927708 -0.0302919021604 -0.0717944962479)
(0.0427423128362 -0.00454898089314 -0.084172532628)
(0.028505313334 0.0206722211704 -0.0941928373994)
(0.0127343382607 0.0495162124568 -0.0942987993083)
(0.00476086670625 0.0841826158636 -0.0892882817944)
(0.00662528145236 0.11983921885 -0.0875456246828)
(0.0122984452033 0.150521479384 -0.0964733324485)
(0.0148057293208 0.167466768334 -0.110705475938)
(0.0139244516121 0.167836441464 -0.122836918557)
(0.00929864331686 0.155152674371 -0.132917822485)
(0.00707532868073 0.131280239666 -0.136891428919)
(0.00415690932525 0.11332838647 -0.157501424999)
(0.0250300360073 -0.0832839256502 0.170599730947)
(0.0534274384294 -0.090479529159 0.129450992214)
(0.0781809810263 -0.0999501256728 0.0999201531309)
(0.098654554112 -0.107842382151 0.0651661938092)
(0.102616932039 -0.108879376736 0.0298319330135)
(0.0960173147823 -0.0992716546832 0.000631385995681)
(0.0866588416779 -0.0811741783688 -0.0217247004997)
(0.0801276726032 -0.0592073261908 -0.0403662872835)
(0.0759955721785 -0.0369255796286 -0.0594572626007)
(0.0690750561238 -0.0154383405668 -0.0806555691583)
(0.0573968728698 0.0046760306976 -0.0999276060923)
(0.0463010002636 0.0272761378296 -0.113873789271)
(0.0410074946838 0.0548732506339 -0.127216765667)
(0.0392619478503 0.0859206374614 -0.144488029858)
(0.0334217996428 0.112790782323 -0.167422750415)
(0.0200418136908 0.124823006005 -0.186740236538)
(0.00551990989055 0.121442181246 -0.197587828109)
(-0.00750437661066 0.109798618752 -0.202670905281)
(-0.00758269907895 0.0967587474432 -0.198515160975)
(0.000441583808344 0.0871936847983 -0.218698234396)
(0.0226150344026 -0.0694550389663 0.187391686518)
(0.0490146994762 -0.0727357785882 0.15521773776)
(0.0716736251802 -0.0748893042357 0.130138603551)
(0.0932301225913 -0.0803654172052 0.101446212258)
(0.10483948145 -0.0822825785874 0.0688580144158)
(0.106785786155 -0.0775572544702 0.0371063012858)
(0.10384425221 -0.0665770253999 0.00809593959742)
(0.100405151031 -0.0514208478809 -0.018120266568)
(0.0968458115031 -0.0360597405124 -0.0445549012173)
(0.0893449536903 -0.0222724042907 -0.0721622638518)
(0.0785787504664 -0.0117311695483 -0.0955874349489)
(0.0715549358038 -0.000159701253948 -0.114393007065)
(0.0714532584049 0.0180774053978 -0.135435787089)
(0.0698189977757 0.045669877605 -0.166801294409)
(0.0527752603158 0.0707855558443 -0.205004754281)
(0.0215999408271 0.0757500822442 -0.228718215841)
(-0.00594540598191 0.060816405428 -0.234387738885)
(-0.0217738951064 0.0389611787083 -0.23303561388)
(-0.0154242564143 0.0218654347609 -0.231118024205)
(-0.00130889635236 0.00746626146645 -0.261212560993)
(0.0209344551911 -0.0529701863374 0.202743963658)
(0.0472499602988 -0.0534270956115 0.177257381317)
(0.0703930228841 -0.0516387805009 0.154193417188)
(0.0921254357718 -0.0515672425578 0.127571172435)
(0.106929697674 -0.0519581631545 0.0970250408963)
(0.114045693376 -0.0499350130281 0.0647553714522)
(0.116351466576 -0.0447650201124 0.0331480886202)
(0.115670731811 -0.0365068154841 0.000278426903848)
(0.111543856321 -0.0287020202659 -0.0312700532581)
(0.10177304243 -0.0233464053548 -0.0619049003397)
(0.0903738691107 -0.0230565028284 -0.0827504906052)
(0.0888561279674 -0.022648486316 -0.0969301581973)
(0.0995803959556 -0.0126057047928 -0.120074114942)
(0.102374151172 0.0142733905245 -0.171602388201)
(0.0703772124739 0.0386222337409 -0.233408008884)
(0.0133929400499 0.0355406794792 -0.256014893299)
(-0.0313054192266 0.00728002074742 -0.239114489522)
(-0.0491108863246 -0.0281081886602 -0.211796154893)
(-0.0348122335022 -0.0573947434958 -0.191897473967)
(-0.00868030675515 -0.0816943887328 -0.208948949097)
(0.0192758282407 -0.0373126551894 0.214924729148)
(0.0477532534239 -0.0352468239325 0.19561388453)
(0.0726978401731 -0.0324009491649 0.173160997321)
(0.0949503365136 -0.030790842382 0.146104666885)
(0.111371528373 -0.0293587961258 0.114669673214)
(0.121018974683 -0.0269784208321 0.0806970409269)
(0.125968856966 -0.023150987744 0.0464011872672)
(0.126263781569 -0.0184143355028 0.0113206541096)
(0.120352339271 -0.0144418766547 -0.0222216731121)
(0.106915555159 -0.0136656313445 -0.052250253098)
(0.0939596612092 -0.020081207239 -0.0650949773848)
(0.0992738928789 -0.0259087552845 -0.0667427624185)
(0.126427065758 -0.0212784311217 -0.0877662530444)
(0.137432325784 0.00289838983323 -0.168999516874)
(0.0871020943377 0.0239897391573 -0.261965745811)
(-0.00101932056941 0.0172775243445 -0.278278233028)
(-0.065692232029 -0.0126713286442 -0.225076732312)
(-0.0861899811564 -0.0490286493758 -0.155599166693)
(-0.0623080285617 -0.0796179266634 -0.0980414161592)
(-0.0195753456144 -0.103716119734 -0.0861948058232)
(0.0160885718353 -0.0129639241955 0.23255173581)
(0.0457658558985 -0.012985508274 0.219240225109)
(0.0739425622379 -0.0121471714359 0.197391762908)
(0.0981743880145 -0.0115296210209 0.16987181451)
(0.11823010644 -0.0105452829744 0.135640155073)
(0.130901998766 -0.0090209598355 0.0959199839328)
(0.137338302412 -0.00662035139165 0.0536210021256)
(0.137135850978 -0.00435849581884 0.0123113714757)
(0.128253200061 -0.00236726452322 -0.0267962179719)
(0.109716472614 -0.00215211814679 -0.0572716253308)
(0.0940988586087 -0.00538869885339 -0.0608806747813)
(0.105117606905 -0.00861330604569 -0.0521973776357)
(0.146146768083 -0.00710117377689 -0.0724905442054)
(0.164086205826 0.00372952324517 -0.185474607554)
(0.0984814978652 0.0133166098139 -0.308230892976)
(-0.0150653109609 0.0101915090731 -0.317334593741)
(-0.0977399573419 -0.00372646377521 -0.233790323363)
(-0.121266250046 -0.020546316132 -0.12548493954)
(-0.0872835428106 -0.0341649209496 -0.0330157516317)
(-0.0324596313948 -0.0488464784807 0.00993791414713)
(-0.000678048350543 0.00379688406524 0.0430796568968)
(0.00169426290052 0.00615094139749 0.0412191951832)
(0.000774625629254 0.00933696088155 0.0403158976042)
(-0.00143627144136 0.0112643900248 0.0399250060916)
(-0.00677121918032 0.0128399643731 0.0383561176947)
(-0.0154400567099 0.0140002930844 0.0391637148844)
(-0.0252017519621 0.014686417055 0.0426711405986)
(-0.0345323665941 0.0142364731172 0.0472993488441)
(-0.0447875032191 0.0121648660668 0.0540386386398)
(-0.0550564270202 0.0105089155371 0.0640736736581)
(-0.0630126451363 0.00918365413378 0.0777376411165)
(-0.0683043397362 0.00823700727073 0.0943811180521)
(-0.0706576014709 0.00766108975586 0.113225062082)
(-0.0707477631916 0.00756622140078 0.133108517553)
(-0.0681682386813 0.0084139493834 0.155126552362)
(-0.0626981044205 0.00962719289776 0.175936956542)
(-0.0528068735963 0.0108342731392 0.198861471148)
(-0.0374769711856 0.0109694936913 0.216100070972)
(-0.0227611635368 0.00957019756248 0.225693992397)
(-0.00765342347213 0.00843854114575 0.231118668154)
(0.00158916843298 0.014363897876 0.0393799019431)
(0.00674274641331 0.0199677824413 0.0344474876096)
(0.00751154558586 0.0264455248895 0.0285074445356)
(0.00475653165454 0.031976894604 0.021511965335)
(-0.00278886369931 0.0359541802419 0.0154548253253)
(-0.0146753724992 0.037867659774 0.0135151727012)
(-0.0278302686415 0.0373400789921 0.0173840276254)
(-0.0406041012863 0.0343841289733 0.0253700528616)
(-0.052149047886 0.029084783362 0.036376844388)
(-0.0616685587969 0.0242545718435 0.051200597037)
(-0.0691314820125 0.0196093926422 0.0687878088325)
(-0.0739639663843 0.0152952488363 0.0881229366656)
(-0.0756439276042 0.0118521596565 0.109420354687)
(-0.0741228919506 0.0101429141443 0.130558148242)
(-0.0695221525698 0.0115601181652 0.151420323117)
(-0.0627974991662 0.0153195877799 0.1712832569)
(-0.0527886815589 0.0206233076186 0.192594967364)
(-0.0388169929324 0.0244927734968 0.211098400463)
(-0.0237747032573 0.0255177186917 0.225659467408)
(-0.00836674244541 0.0244241971751 0.234440378796)
(0.00436737938383 0.0213740963987 0.0347559832407)
(0.0134467162751 0.0302010146432 0.0241487670063)
(0.0154428984365 0.0386405634239 0.0120365911307)
(0.0123443022483 0.0460796341977 -0.00198770362487)
(0.00184433143263 0.0508929826736 -0.0122370465237)
(-0.0144328568681 0.0521909255344 -0.0151497021113)
(-0.032038879685 0.0500727640306 -0.00976852771829)
(-0.0474985379846 0.0455155248668 0.0021606966746)
(-0.0593587710015 0.0400534285226 0.0188295509215)
(-0.0689104589013 0.0344436681985 0.0377289251454)
(-0.0763803915463 0.0289991184421 0.0600774236946)
(-0.0809160267942 0.0240003949997 0.0836124280866)
(-0.0812929057277 0.0198592253761 0.108856595729)
(-0.0770008843052 0.0174992202422 0.13308143146)
(-0.0688429969898 0.0180889742685 0.153987956692)
(-0.0585323438501 0.0221927034251 0.171428513859)
(-0.046598089706 0.0296682211387 0.18708386664)
(-0.0337174362716 0.0379554735926 0.201218369019)
(-0.0197634745643 0.0450698807876 0.21479236568)
(-0.00654340957024 0.0484074289958 0.223206793139)
(0.00866840771061 0.0266164363377 0.0287385760508)
(0.0221295269905 0.0364649260254 0.0101045201389)
(0.0239043267206 0.04681191588 -0.0104364148062)
(0.0194945381231 0.0550724121543 -0.0293937525905)
(0.00501388473672 0.0602999116758 -0.0418011055318)
(-0.0164664920035 0.0608732039927 -0.0432634060373)
(-0.0381176099523 0.0573154662437 -0.0349186578306)
(-0.0552336658115 0.0516311523727 -0.0192494919742)
(-0.0675945700457 0.0464012630375 0.00089963292892)
(-0.076832768566 0.0414292099275 0.0237773589148)
(-0.0838966132149 0.037077376663 0.0493202930424)
(-0.0877394770056 0.0334261077269 0.0766466160917)
(-0.0872149933091 0.0305881757728 0.104856964943)
(-0.0811966401656 0.0287661586184 0.131817139366)
(-0.0696836067105 0.0286360619345 0.15451181008)
(-0.0546660253819 0.0315046788745 0.171115767959)
(-0.0387603820123 0.0383988493458 0.182729256488)
(-0.0243670289242 0.0484609710728 0.189804671652)
(-0.0121524327817 0.0605317480769 0.195280326911)
(-0.00319326941573 0.0695033028532 0.197244251481)
(0.0119949893745 0.0277511367192 0.0200308754125)
(0.0300399969342 0.0364047606619 -0.00684066662781)
(0.03234292246 0.0469737628664 -0.034008476233)
(0.0260074725952 0.0553720352685 -0.0562179880427)
(0.00696932368064 0.0606008935823 -0.0699565378957)
(-0.0201784067654 0.0595518240581 -0.0694168431015)
(-0.0446637159539 0.0547977861414 -0.0566601671285)
(-0.0618437359172 0.0495116258107 -0.0369398610111)
(-0.0732108846782 0.0455252874296 -0.0142116804059)
(-0.0818945770328 0.0432818633891 0.0109721886999)
(-0.0883749217378 0.0422411550099 0.0384750480102)
(-0.0917862685446 0.0416670319986 0.0676197035156)
(-0.0909116057327 0.0413756799171 0.0975518465789)
(-0.0844135303283 0.0414913158538 0.12652578095)
(-0.0713078196442 0.0416663688716 0.151815935248)
(-0.0525542962752 0.0433218139091 0.170705032444)
(-0.0317714134057 0.0480292314692 0.180960454893)
(-0.013547456168 0.0562120255675 0.181158476028)
(-0.00125206557043 0.0693032442477 0.17467396814)
(0.00118147577853 0.0827456393586 0.162531723259)
(0.0159551803187 0.0211618984154 0.0133400517886)
(0.0376579569896 0.0295551480651 -0.0219036116531)
(0.0395721156604 0.0386650357624 -0.0540492182964)
(0.0315327910924 0.0460699141164 -0.078510364395)
(0.00763801661092 0.0497447838178 -0.0920936377263)
(-0.0233516571117 0.0482321748708 -0.0869637798797)
(-0.0485841256655 0.0442396386014 -0.0695451453531)
(-0.0644190355182 0.0415470254541 -0.0471657208961)
(-0.0743037378731 0.0408581172571 -0.0234358267306)
(-0.0816447930707 0.0424049666869 0.00123108339891)
(-0.0876670131663 0.045245677901 0.0278634027546)
(-0.0912688891977 0.0484137807873 0.0563850477599)
(-0.0908762981472 0.0514754059467 0.0862908162491)
(-0.0852453740605 0.0546481394149 0.11584957284)
(-0.0723083229031 0.0561904924288 0.143400628033)
(-0.0516330266262 0.0573152414896 0.164915534808)
(-0.0276855747008 0.0598346068045 0.175756896754)
(-0.00526308819659 0.0649103209381 0.173951892835)
(0.00924511580986 0.076312035385 0.157550099876)
(0.00479377757795 0.0902684690284 0.13207788688)
(0.0199076651251 0.0104584053561 0.0115130506615)
(0.0441935505981 0.0181728011944 -0.0311168518894)
(0.0448404545002 0.0247160909453 -0.0666076864356)
(0.0352231298024 0.0300291448038 -0.0926895148484)
(0.00832025589257 0.0330421269172 -0.105137025384)
(-0.0244960948398 0.0324772243056 -0.0963712631831)
(-0.0482169788897 0.0310050693597 -0.0757614040135)
(-0.0617350136186 0.0319370603424 -0.0539280425013)
(-0.0703823795138 0.0349666184962 -0.0315850327811)
(-0.0770508194284 0.0399366549098 -0.00856936257295)
(-0.0827043353128 0.0460547115203 0.0159796510239)
(-0.0865372167968 0.0524241478946 0.0423088051424)
(-0.0867853788591 0.058810342653 0.0704856244972)
(-0.0827560772077 0.0645279093019 0.0977950684869)
(-0.0719812535376 0.0682525672326 0.127429169791)
(-0.0515710937485 0.0704928299995 0.15226540077)
(-0.0255724824253 0.072480888528 0.166253993643)
(0.000733682058374 0.0767165838297 0.165172039672)
(0.0173380056102 0.0867773463643 0.142314397427)
(0.00681128037634 0.0995126739822 0.106466161546)
(0.0241591293844 0.000288586899951 0.0161340982931)
(0.0496740323001 0.00508036051043 -0.0349455732271)
(0.0486013984768 0.0103756769189 -0.0716719941692)
(0.0377878033205 0.0139551096788 -0.097959373933)
(0.00942685401516 0.0172752401145 -0.110643358329)
(-0.0242017511554 0.0193144685693 -0.0993186856063)
(-0.0454549790447 0.0221491719926 -0.0776018153038)
(-0.0566222078328 0.02617882091 -0.0565533572042)
(-0.0639522250896 0.0315430008043 -0.0357459888804)
(-0.0693671122038 0.0387471299927 -0.0156124791606)
(-0.0743778646074 0.0469426139015 0.00503375908574)
(-0.0781618907539 0.0554791520244 0.0269987605013)
(-0.07961156789 0.0634439187986 0.0509275208828)
(-0.0777679949147 0.0713576779846 0.0783736467563)
(-0.0689088156923 0.0766087215595 0.106344677792)
(-0.0498031296932 0.0800043765927 0.132679837082)
(-0.022996307922 0.0831172272083 0.149944763322)
(0.00633576920261 0.0896807892395 0.148986966149)
(0.0238984426426 0.101205012519 0.120825081505)
(0.00806860192935 0.113070666432 0.0792925950891)
(0.0246474173296 -0.00948929243984 0.0218393950339)
(0.0523748499702 -0.00761477806993 -0.0368416701592)
(0.0523138378931 -0.00313636489342 -0.0728595342701)
(0.0408720436409 -5.03713833453e-05 -0.0990154221314)
(0.0129810419898 0.00384922101154 -0.113084399362)
(-0.0195255271715 0.00864805965678 -0.102330527163)
(-0.0390766423827 0.015260821018 -0.0826277662479)
(-0.0494844639962 0.0219606149986 -0.0634859505194)
(-0.0558552210864 0.0298528837475 -0.0440840807805)
(-0.0601898104809 0.038935297973 -0.0264164486612)
(-0.0645483794976 0.0483676825118 -0.00865455594869)
(-0.0689001087819 0.0575096197596 0.00991940763212)
(-0.0709565539815 0.0652121438364 0.0313803735923)
(-0.0708852815065 0.0734629007252 0.0539424938328)
(-0.0655918391246 0.0790380216664 0.0816042298127)
(-0.0475966787153 0.0837651716342 0.111994492402)
(-0.0181949611882 0.0904187286599 0.133164197737)
(0.014927721686 0.102063153502 0.128991246538)
(0.0317674548496 0.117675462919 0.0920295232196)
(0.0106012278332 0.130762982052 0.0458018204095)
(0.0240872993487 -0.0224024769745 0.0229687684539)
(0.0535129121101 -0.0202369147281 -0.0307519886106)
(0.0553069330311 -0.0179047550532 -0.0713325750714)
(0.044854563451 -0.0144533217983 -0.0973438904014)
(0.0186777476075 -0.00987677384313 -0.110857160678)
(-0.0119635612526 -0.00281063264062 -0.101257105075)
(-0.0299298196816 0.00606409280145 -0.0837446364381)
(-0.0389138442907 0.0150939831259 -0.0673659661599)
(-0.0442215363377 0.0256033362272 -0.0520234826097)
(-0.0483230637288 0.0364928801034 -0.0383710413992)
(-0.053342270943 0.0470296087772 -0.0241861172539)
(-0.0593236345689 0.0559870022369 -0.00813114691085)
(-0.0629205815197 0.0630365833823 0.0121669787256)
(-0.0647582433424 0.0695206419621 0.0339100533465)
(-0.0608753769454 0.0763761780959 0.0643356759828)
(-0.0414996216483 0.0854920022909 0.0972214676831)
(-0.00838511224459 0.0982144627719 0.117276941413)
(0.0280416378847 0.114646721453 0.104772866461)
(0.0421439498913 0.132281784228 0.0524491001978)
(0.0160737204754 0.145796139299 0.00295007449999)
(0.0253115775418 -0.0390327497537 0.0322518616394)
(0.0543598763692 -0.0365996109048 -0.0232722831816)
(0.0579273901752 -0.0347111322715 -0.0638504420054)
(0.0504733327526 -0.0310392004014 -0.0911638945985)
(0.027165320888 -0.0252429545916 -0.104425933585)
(-0.00128233359142 -0.0152935827546 -0.0966774294552)
(-0.0179898015263 -0.00306695783319 -0.0817196918791)
(-0.0257146660548 0.00896995351355 -0.068684062029)
(-0.0303208710304 0.0220241419568 -0.0580056304699)
(-0.0349330638726 0.0349071664898 -0.0482670741933)
(-0.0415971294473 0.0468524074199 -0.0373253720813)
(-0.0502317203076 0.0554851272586 -0.0225513835522)
(-0.0560926627942 0.0615124400956 -0.000837571518934)
(-0.0582479665214 0.0669799292517 0.0237769340386)
(-0.0522477800292 0.0773051951406 0.0556109383455)
(-0.0298687761074 0.0924075849149 0.0851164208661)
(0.00553740980568 0.110000732069 0.0962850595545)
(0.0416617563161 0.125787131907 0.0707984118433)
(0.052086465803 0.137215886831 0.00502699042995)
(0.0218981757081 0.145622026888 -0.0529765886785)
(0.0256161758438 -0.0551293330485 0.0469622548297)
(0.0547751614868 -0.0548066512839 -0.00828486559693)
(0.061979621388 -0.0530185997049 -0.0491316382065)
(0.0573626981217 -0.0508036602814 -0.0781418206463)
(0.037648042789 -0.0442729367434 -0.0935367170729)
(0.0127034839102 -0.0309669681198 -0.0905674763577)
(-0.00251490922548 -0.0147902108426 -0.0805100342283)
(-0.00920678140753 0.000148463775393 -0.072930003378)
(-0.0132742588725 0.0144203260713 -0.0682222163787)
(-0.0188406402449 0.0280770595912 -0.0640212697654)
(-0.0289775319383 0.0408633050845 -0.0573808964142)
(-0.0421939170579 0.0512178395986 -0.0416108531982)
(-0.0505336511715 0.0607504094503 -0.0142128480094)
(-0.0502310825769 0.0713392332394 0.0167052138066)
(-0.038901106282 0.0877776902646 0.046314009167)
(-0.0141911361391 0.107162718778 0.0648976689104)
(0.0180411221795 0.12389048015 0.0613641872193)
(0.046648597608 0.132020893365 0.0276733242463)
(0.0509540230256 0.131526576367 -0.0357367399455)
(0.0220458248993 0.131285786551 -0.0907592339573)
(0.0258531522735 -0.0683221709466 0.0663827885415)
(0.0543843941189 -0.0700310626319 0.0127523074298)
(0.0640477146851 -0.070300504349 -0.0248118504942)
(0.0634279973577 -0.0699519704896 -0.0549420239175)
(0.0495423499185 -0.0636430964819 -0.0738600417958)
(0.0295260421088 -0.0489623516123 -0.0782640651051)
(0.0150001123291 -0.030690671457 -0.0754262298713)
(0.00741774536923 -0.0135234974072 -0.0718648145399)
(0.00259523432824 0.0025446100866 -0.0701069005805)
(-0.00383042235811 0.017859250265 -0.0682756969962)
(-0.0147032437168 0.032839168605 -0.0630660778356)
(-0.0279815393154 0.0480687291445 -0.0481241813393)
(-0.0354404130706 0.0651720362383 -0.0229087623874)
(-0.0329372775351 0.0839012679602 0.0026240510103)
(-0.0204732900402 0.105162977905 0.0213140688968)
(0.000177532093911 0.124184466707 0.0265679921885)
(0.0228091911271 0.135075207512 0.014526214761)
(0.0403407112927 0.134563774676 -0.0152247065273)
(0.0405180613898 0.124410777153 -0.0641118471099)
(0.017681281999 0.11885115331 -0.108241034911)
(0.0245763149906 -0.0760494550462 0.087824621881)
(0.0516659177292 -0.07992916731 0.0437819299532)
(0.0642766281367 -0.0825772545251 0.0066734780048)
(0.0680089351724 -0.082430969929 -0.0243057793837)
(0.0605036467458 -0.076788175449 -0.046919614429)
(0.0463960949846 -0.0633410370454 -0.0588136115961)
(0.0342689557785 -0.0453598307278 -0.0641284047955)
(0.0268345220368 -0.0267767388064 -0.0670595784813)
(0.0217872014835 -0.00858898572432 -0.0704355314319)
(0.015286454115 0.00966649438646 -0.0731349203558)
(0.00482095612721 0.0283505542437 -0.0727441071468)
(-0.00725141763745 0.0486149481832 -0.0639818423991)
(-0.0138011016264 0.0716560647204 -0.0476266669499)
(-0.0115980480527 0.0954183059521 -0.0323654033983)
(-0.00240249810168 0.117953673409 -0.0250864507498)
(0.009842108197 0.133813271084 -0.02844486413)
(0.0209564885312 0.13895836111 -0.0414590906939)
(0.0275854812008 0.133162736344 -0.0632676570593)
(0.0255519581524 0.118531285752 -0.0936276503442)
(0.0119072750972 0.110475153544 -0.125455067318)
(0.0223526520528 -0.0767011484629 0.11143539564)
(0.0472436609805 -0.0812888630996 0.0760766090935)
(0.0627465003387 -0.0849593755342 0.0408920060961)
(0.0715597641604 -0.085214750283 0.0112061394123)
(0.0696285545699 -0.0807630383606 -0.0144507764835)
(0.0614499832318 -0.0696554721962 -0.0328176948833)
(0.0526388124718 -0.0539345272888 -0.0455818162384)
(0.0463680264509 -0.0363990388155 -0.0554950228831)
(0.0419738635842 -0.0183918355108 -0.0650362679955)
(0.0363462350358 0.000201729159486 -0.0743700610354)
(0.0277269834636 0.0194691587308 -0.0815120230775)
(0.0185241040075 0.041028464155 -0.0832571204113)
(0.0133233131307 0.0657261304638 -0.0816276550429)
(0.013038178655 0.090854623033 -0.0815569136384)
(0.0149550092567 0.112604150714 -0.0865417068707)
(0.0159723846943 0.125443659094 -0.0950874383471)
(0.0154205804684 0.127363708374 -0.104316474911)
(0.0126998291161 0.120353505022 -0.115609409906)
(0.00953912574483 0.107061480011 -0.12783755118)
(0.00582567302627 0.100531354237 -0.147571604814)
(0.0199044588082 -0.0703527479775 0.133905619471)
(0.0429488528395 -0.0738581959026 0.105426068387)
(0.0602229098289 -0.0761708734257 0.0775080802074)
(0.0725757658661 -0.0776902179537 0.0474329662996)
(0.0762158633108 -0.0748089888376 0.0197176284269)
(0.0735993407929 -0.0666429793876 -0.00370007282664)
(0.0685661950651 -0.0542541949437 -0.0229248375004)
(0.0642766399091 -0.0395309383477 -0.0396011558616)
(0.0609210811099 -0.0239909750222 -0.0556873151406)
(0.0562075823658 -0.00810309172459 -0.0718494589828)
(0.0494423508432 0.00789069265362 -0.0861726025398)
(0.0431342059684 0.0258291609396 -0.0975047984646)
(0.0393959964384 0.046852122558 -0.10838129231)
(0.0364882616197 0.0693501649793 -0.121490755956)
(0.0306663703556 0.0884661782586 -0.136740458332)
(0.0207659197305 0.0978462129387 -0.149401757914)
(0.0105703099917 0.096271431949 -0.156962954497)
(0.00171112364247 0.0878174389851 -0.163347906741)
(-0.000614800408473 0.0778071832031 -0.167929937142)
(0.00302106880363 0.0741488448311 -0.186308367419)
(0.0181036046226 -0.0596299233756 0.152904175457)
(0.0404178565628 -0.060999141254 0.129340583258)
(0.0583153949747 -0.0614762929613 0.104427286613)
(0.072654302748 -0.0622566322181 0.0779605635738)
(0.080668959571 -0.0606005195559 0.050748186195)
(0.0825991652496 -0.0553075675346 0.0245884263479)
(0.081251434198 -0.0466973678323 0.000361572851735)
(0.0790762351566 -0.0358497506009 -0.0221587036105)
(0.0764207576174 -0.0244569336614 -0.0439735715748)
(0.0717992675462 -0.0134701801124 -0.0653104354476)
(0.0660977190971 -0.00342413403686 -0.0836490836325)
(0.0626281927457 0.007996022364 -0.0998085633641)
(0.0617076407244 0.0233567458701 -0.118188029405)
(0.0577732178272 0.0426233678938 -0.142268270154)
(0.0441100961489 0.0590136929532 -0.167778264958)
(0.0223426557323 0.0635301056249 -0.183376870964)
(0.00252339636227 0.0553077439738 -0.187224568808)
(-0.00967428812979 0.0411832329369 -0.186815082484)
(-0.00880876161139 0.0288082807577 -0.187675059934)
(0.000375937638206 0.0222539924105 -0.207764517163)
(0.0167989361724 -0.0460614766435 0.168398937742)
(0.0390185121412 -0.0453705723637 0.148742018555)
(0.0583457633248 -0.0441847305039 0.126715227387)
(0.074317735649 -0.0431760139094 0.102413648261)
(0.0849804259949 -0.0418613413529 0.075668294953)
(0.0902292331485 -0.0388040660661 0.0480772871047)
(0.0917589464982 -0.0336211291708 0.0205294431071)
(0.0910586640775 -0.0268826375215 -0.0069730765976)
(0.0881340415947 -0.0201856408726 -0.0331352531422)
(0.0824057548598 -0.0146802688966 -0.0574435324328)
(0.0768183188666 -0.0110986396609 -0.0759518187568)
(0.0766452052829 -0.00649330942 -0.0921233044604)
(0.080798796318 0.00324452631963 -0.114991358054)
(0.0776304403765 0.0196578162531 -0.151669506309)
(0.0549628254838 0.0333254947075 -0.189805875389)
(0.0183856904121 0.0325848439722 -0.205381785235)
(-0.012339614279 0.0180215393192 -0.197070011168)
(-0.027013573793 -0.0021739527385 -0.180950653624)
(-0.0215088342967 -0.0199179003382 -0.168722142386)
(-0.00441483916818 -0.0323237508272 -0.181603139702)
(0.0152387781326 -0.0311981353335 0.181347001682)
(0.038733701917 -0.0291862670244 0.165956006414)
(0.0598480160484 -0.027365806586 0.145818741364)
(0.0774016929073 -0.0261718875318 0.122193688624)
(0.090142442984 -0.024714981126 0.0946896158906)
(0.0978812987092 -0.0225032699964 0.0647199442332)
(0.101436424996 -0.0191431260157 0.0346978909727)
(0.101200662106 -0.0151323939477 0.00365447779489)
(0.0969715434896 -0.0114768589731 -0.0254448286319)
(0.0890563630569 -0.00949825114692 -0.0506645222371)
(0.0829011564816 -0.0102365057653 -0.0663746966326)
(0.0862670792211 -0.0100407805379 -0.0789023010733)
(0.0972750578989 -0.00469413938577 -0.103935231314)
(0.0962685162417 0.00798989570478 -0.155898809031)
(0.0636532145545 0.0181263415073 -0.208856012099)
(0.0114060064973 0.0155996503582 -0.222565546822)
(-0.0305500852925 0.00070508709625 -0.19583034665)
(-0.0482522014429 -0.0189149077681 -0.155483273459)
(-0.0381521463746 -0.0369445015089 -0.121192261258)
(-0.0120543090969 -0.0510164649507 -0.117199077145)
(0.0114117170896 -0.0107258569773 0.195209066684)
(0.0353882858881 -0.0109293627241 0.184894998309)
(0.059371580945 -0.010287933939 0.165481637973)
(0.0794133927001 -0.0096982902803 0.142131849077)
(0.0953784389713 -0.00884084206773 0.112898819553)
(0.105874634921 -0.00755931856864 0.0795232134611)
(0.111202821733 -0.00595298396875 0.0441604751219)
(0.111295088063 -0.00417483776456 0.00816213257315)
(0.10569164945 -0.00257864887353 -0.0251526270183)
(0.095566417609 -0.00177352800159 -0.052077618445)
(0.0884001454837 -0.00215860092265 -0.064824369524)
(0.0942782083854 -0.00240041527447 -0.074746985197)
(0.110675817486 -0.000458137287986 -0.102732876883)
(0.111379722313 0.00491431901839 -0.169308102955)
(0.0718501392643 0.00948586996583 -0.235931529945)
(0.00752324257002 0.00901165174297 -0.24849123711)
(-0.0445603587719 0.00246013654266 -0.208928594942)
(-0.0666701753417 -0.00616003511857 -0.148966499007)
(-0.0534243853598 -0.0152805162535 -0.0937952888123)
(-0.0198136991336 -0.0244644809229 -0.072823044511)
(-0.000189269550464 0.00200604038322 0.0371708854574)
(0.00164761053738 0.00490791564927 0.0331391691833)
(0.000907451261459 0.00649464076066 0.0318246050321)
(-0.00160902086097 0.00794677870751 0.030184498808)
(-0.00636339501478 0.00903978351509 0.0292418419427)
(-0.0134893046404 0.00990200052626 0.0304058890549)
(-0.0216041232246 0.0104951256454 0.0340896101895)
(-0.0295965509524 0.0104679117249 0.0397500667096)
(-0.0381420645554 0.00907134223487 0.0477794680065)
(-0.0463940866932 0.00818401795534 0.0591689722364)
(-0.0526136541108 0.0074223650339 0.0734777181492)
(-0.0566768609631 0.00682146358858 0.0899412073398)
(-0.0583958445758 0.00640022453489 0.107977731363)
(-0.0578065965276 0.00636630716246 0.126392602965)
(-0.0548715432478 0.00685034533428 0.145634873113)
(-0.0495521646739 0.00773795701157 0.164340904968)
(-0.0414657266429 0.00857546722122 0.182912190777)
(-0.0302978898561 0.00883380773911 0.197491269612)
(-0.0193097546399 0.00728954774026 0.207516260129)
(-0.00631420794011 0.00487186712119 0.21312752107)
(0.00112757665916 0.0107473573902 0.0313591632522)
(0.00432709275343 0.0151487770506 0.0260280916553)
(0.00483273532464 0.019460009657 0.020376132783)
(0.00187135136625 0.0232330342952 0.0149565235776)
(-0.00478874225869 0.025861279639 0.0110953138348)
(-0.0142168390039 0.0272626229879 0.0107937744456)
(-0.0245305705525 0.0271508393826 0.0150539267279)
(-0.0350474689176 0.0255465934927 0.0230859004744)
(-0.0444606462291 0.0222321495376 0.0343832352042)
(-0.0517828174577 0.0192762563922 0.0487747101615)
(-0.0576278751505 0.0164204199858 0.0655549061855)
(-0.0612037597816 0.013745768094 0.084281560911)
(-0.0622410037349 0.0115589521707 0.104104863633)
(-0.0607099406805 0.0107247859481 0.123928297349)
(-0.0564296581868 0.0115473751257 0.143135907705)
(-0.0501813510408 0.0138044533868 0.161159944748)
(-0.0415487676807 0.016862910728 0.178422580365)
(-0.0304472257071 0.0195597707634 0.193094308896)
(-0.0183914036183 0.020203513982 0.205296640906)
(-0.00673715811606 0.0172415778313 0.213483731355)
(0.00292731928082 0.0171707371611 0.0258458054938)
(0.00879818246907 0.0230396124221 0.0168099012349)
(0.00971857624174 0.0288953343549 0.00638189039403)
(0.0059971689356 0.0335081422923 -0.00405687305905)
(-0.00247313860865 0.0363354179954 -0.0109390924379)
(-0.0143355835186 0.0371956846203 -0.0118690693627)
(-0.0271583109809 0.0363401187721 -0.0064477823679)
(-0.0391880665437 0.0340667104376 0.00430189131997)
(-0.0491126564377 0.0313425886557 0.0192880822379)
(-0.0567994873156 0.0280708674169 0.0368076898652)
(-0.0625664611595 0.0245997719984 0.056796460248)
(-0.0659293881268 0.0215783230898 0.07853580154)
(-0.0660449431061 0.0190335667758 0.100999620041)
(-0.0627625406656 0.0179263707735 0.122685154203)
(-0.0565464276707 0.018604806741 0.141955042561)
(-0.0482270056148 0.021210591255 0.158568918836)
(-0.0381673271249 0.0256540215101 0.172975652292)
(-0.0269590360327 0.0307880268722 0.184752725512)
(-0.0150313704604 0.0353624481478 0.19521336943)
(-0.00520677583791 0.0355059694237 0.201690885206)
(0.00516243715304 0.0207823269032 0.0201233911866)
(0.014190551969 0.0273841854782 0.0038524815323)
(0.0149300450062 0.0339393824935 -0.0119468488384)
(0.0099463868911 0.0386967556918 -0.0256972560484)
(-0.000742723981539 0.0414399530728 -0.0340472384699)
(-0.0154431530527 0.0419110112866 -0.0343930618864)
(-0.030445500086 0.0406604918805 -0.0269760992667)
(-0.0435460653438 0.0384137071366 -0.013635826974)
(-0.0539870427968 0.0360976975584 0.00409227574781)
(-0.0618572035431 0.0334291986152 0.0245926718616)
(-0.0674735447939 0.0308455175474 0.0473232837844)
(-0.0703298980426 0.0286168630532 0.0714907874228)
(-0.0698296819684 0.0270155609628 0.0960214901512)
(-0.0654809232252 0.0261959221561 0.119319107239)
(-0.0573390621682 0.0267253177658 0.139542322157)
(-0.0463948654408 0.0290620790192 0.155653424114)
(-0.0339658370443 0.0335767304946 0.167589609566)
(-0.0215645491067 0.0398583472249 0.175410076943)
(-0.0102583422751 0.0476232936895 0.180842462821)
(-0.00304445695324 0.0519946663645 0.182279552142)
(0.00773751034173 0.021137728049 0.0117632418322)
(0.0194951289754 0.0270960521036 -0.00972160485486)
(0.0196298053755 0.033376399171 -0.0300111042283)
(0.0131677772029 0.0379560161014 -0.0464161190515)
(-6.86963461619e-05 0.0405660116017 -0.0552691220709)
(-0.017527108565 0.0407327386094 -0.0537541248063)
(-0.0341018766662 0.0393727252178 -0.0439552321911)
(-0.047346103835 0.0377427430311 -0.0284309483376)
(-0.0574635948949 0.0363394148155 -0.00893250030037)
(-0.065149248616 0.0354260531129 0.0132486882484)
(-0.0704943573236 0.034954944994 0.037473961221)
(-0.0730955332888 0.0347162548936 0.0628496433914)
(-0.0723231088964 0.0346533760089 0.0884646305509)
(-0.0675278182845 0.0350113877981 0.112852289589)
(-0.0582318392746 0.0358021618504 0.134294045745)
(-0.0450875298464 0.0378420385279 0.151093160818)
(-0.0300212687236 0.0415421737555 0.161799558259)
(-0.0154606494608 0.0475229302311 0.165425282335)
(-0.00359971619362 0.0563467233154 0.163934543265)
(-3.11727681122e-05 0.0641569964048 0.157695752602)
(0.0102872169491 0.0163606294108 0.00511972880662)
(0.0244384101956 0.0216425080007 -0.0216142322172)
(0.0238214247856 0.0273095134565 -0.0453575748912)
(0.0158451593915 0.0315597047588 -0.063147020177)
(9.07507186726e-05 0.0339981307035 -0.0715138119826)
(-0.0194141173241 0.0341380061006 -0.0680311140034)
(-0.0362577361999 0.0335395831312 -0.055758498621)
(-0.0489995294474 0.0334040816001 -0.0385224909164)
(-0.0584200944386 0.0339384097765 -0.0184357959118)
(-0.0652965036786 0.035411601103 0.0036562006307)
(-0.0702756292125 0.0374587800647 0.0273803278696)
(-0.0729152316956 0.0396411545588 0.0522872219634)
(-0.0723787753878 0.0416804027593 0.0777139412152)
(-0.0679328359374 0.0437305065158 0.102308819395)
(-0.0583806901277 0.0449729786714 0.124694864558)
(-0.0439440192012 0.047266024762 0.142604449957)
(-0.0269199069763 0.0503471237329 0.153216378074)
(-0.0100928210387 0.0554399817239 0.154915803042)
(0.00239708295251 0.0640911780713 0.147083274264)
(0.00241467955651 0.0729485097252 0.132978231016)
(0.0130685690785 0.00887120292487 0.0019568241708)
(0.0289506200758 0.0124572855095 -0.0293376780475)
(0.0274129374423 0.0178883487933 -0.0555208432725)
(0.0181831250359 0.0216194287765 -0.0741896330689)
(0.000694071190192 0.0242150921144 -0.082268044013)
(-0.0198012068219 0.0251704235524 -0.0770836456001)
(-0.0360258542362 0.0258609322046 -0.0633751764152)
(-0.0475706912676 0.0275603316138 -0.0463146123617)
(-0.0559937145391 0.0303716239907 -0.0269471610017)
(-0.0622336739847 0.0341532228985 -0.0060766055317)
(-0.0668977475152 0.0385143802965 0.0160838070892)
(-0.0696571809846 0.0429490257827 0.0393371854349)
(-0.0696016731146 0.0471146745518 0.0634465674608)
(-0.0663625165134 0.0510250777111 0.0870182108474)
(-0.0572103261352 0.0540076500349 0.109689237347)
(-0.0420118048563 0.0566091402279 0.129437480815)
(-0.0240450489576 0.059812021174 0.141178202269)
(-0.00537183496747 0.0647930830262 0.142088672613)
(0.00740277401482 0.0733446131303 0.129179676212)
(0.00426021080628 0.0822052769817 0.108648595847)
(0.0147051586581 -0.000487884336668 0.00269980529552)
(0.0324495048702 0.00205886340826 -0.033042572761)
(0.0314697868352 0.00766695112234 -0.0600147484666)
(0.0208303294443 0.0109483471406 -0.0796244303303)
(0.0024344992776 0.0140686483036 -0.0880749049619)
(-0.0185895889452 0.0166807141778 -0.081964342999)
(-0.0337654161771 0.0196415016607 -0.0676259112687)
(-0.0439028579053 0.0232524054434 -0.0511963669078)
(-0.0512449347489 0.0277399583721 -0.0331223433383)
(-0.0565706478607 0.033283901956 -0.0144977002818)
(-0.0607698199843 0.0393885878239 0.00488932865536)
(-0.0636144713546 0.0455438841506 0.0254127698693)
(-0.0641475905884 0.051140228686 0.0469275404306)
(-0.0616428618291 0.0566838341865 0.0695345782128)
(-0.053997922791 0.0612950465214 0.092172628159)
(-0.039593452494 0.0644823789311 0.112204156063)
(-0.0206295404953 0.0685797634853 0.124805837182)
(-0.000554829662258 0.0749249472549 0.124708548646)
(0.0118949667076 0.0843395107896 0.107355260516)
(0.00574802795456 0.0931803631926 0.0825235776619)
(0.0159782996698 -0.0105894410235 0.00425930371983)
(0.0356691352394 -0.00697060056491 -0.0312636982744)
(0.0351824737553 -0.00382958167822 -0.0617222215731)
(0.0238917783575 -0.000115275891416 -0.0815132648363)
(0.00590411666243 0.00392608294901 -0.0907708250729)
(-0.0143550080098 0.00833856559577 -0.0853186985053)
(-0.0286405194489 0.013655242631 -0.0725096997356)
(-0.0381335754581 0.0191948862979 -0.0576495372458)
(-0.0446374328691 0.0255547792226 -0.0413345972291)
(-0.0491966806356 0.0326906899867 -0.0250857187074)
(-0.0530562963631 0.0400779085451 -0.0083203580325)
(-0.0562527158015 0.0471192915236 0.00938166429343)
(-0.0572934244779 0.053238411588 0.0291218657735)
(-0.0558475901597 0.0593438776517 0.0495339815649)
(-0.0498635725228 0.0643725681928 0.0720134608469)
(-0.0358499001821 0.0693051326341 0.093217536522)
(-0.015727709143 0.0756231680099 0.106375446794)
(0.00574741371876 0.0846433951071 0.10344004633)
(0.0169472030374 0.0960152627112 0.0798979116547)
(0.00774245406553 0.105054915523 0.0525553373271)
(0.0176343406612 -0.0215820349664 0.00828040289087)
(0.0365734635237 -0.0177043997041 -0.0273202224994)
(0.0370723489707 -0.0157081392715 -0.0592618268663)
(0.0282835090403 -0.0117083083089 -0.0795022642923)
(0.0111156555984 -0.00681335745272 -0.0892554301586)
(-0.00807923664226 -0.00087060042034 -0.0850404941201)
(-0.0212806454294 0.00603426055041 -0.07422213523)
(-0.0298085197737 0.0133786827029 -0.0619734397704)
(-0.0355701505415 0.0216684962185 -0.0489637442132)
(-0.0398487807119 0.0303373483672 -0.0360764190678)
(-0.0440543829568 0.0388280228687 -0.0222214072343)
(-0.0482382395782 0.0463331210201 -0.00665773647311)
(-0.0502755797139 0.0526538430092 0.0119036907417)
(-0.0497924531564 0.0586710043852 0.0314923356823)
(-0.0443933750961 0.0650359454333 0.0544427092303)
(-0.0297441275209 0.0726728864431 0.0756154088344)
(-0.00816043807607 0.0821549637006 0.0866579476771)
(0.0142173977392 0.0934997705219 0.0780443627296)
(0.023158126706 0.105585587519 0.0465613533808)
(0.0106334204699 0.114407291102 0.0158830722839)
(0.0186609840198 -0.0342117511343 0.0170972409524)
(0.0378691971321 -0.0311637854079 -0.020708819146)
(0.0397086939377 -0.0278144417795 -0.051736883789)
(0.0329327827625 -0.023820980927 -0.0726077996471)
(0.0177163730958 -0.0183266744923 -0.0835504550427)
(0.000217246973431 -0.010682814938 -0.0813466855752)
(-0.0118587744171 -0.00181793189191 -0.0731333921566)
(-0.0194226729507 0.00745462354252 -0.0640886191003)
(-0.0246621961326 0.0175692982886 -0.0549893313428)
(-0.0291271800089 0.0278171327223 -0.0455832483801)
(-0.0342581252434 0.0374761598055 -0.0345349893262)
(-0.0399263196871 0.0454172647734 -0.0206060005581)
(-0.0431781592696 0.0520275875689 -0.00227509234151)
(-0.0428889268739 0.0584971789221 0.0176980344723)
(-0.0366027280044 0.0671884561352 0.0399601174664)
(-0.020876506321 0.0779456164271 0.0580490386165)
(0.00118521999165 0.0895887512536 0.0634335308297)
(0.0226065702922 0.100471514026 0.0474230334339)
(0.028875823661 0.109417782031 0.00911543133226)
(0.013414964395 0.115980505258 -0.0257744462503)
(0.0191047671323 -0.0461215217531 0.0302245826107)
(0.0387460453336 -0.0443423988009 -0.00740302200418)
(0.0426838230114 -0.04115144995 -0.0388592339675)
(0.0382902367487 -0.0370927070028 -0.0611372069252)
(0.0257530948486 -0.0309184155083 -0.0739968593567)
(0.0107819804128 -0.0215392514171 -0.0749655175101)
(8.98392535147e-05 -0.0106934873954 -0.0708071796349)
(-0.00656988140225 0.000115557052985 -0.066304516848)
(-0.0113903797286 0.0112288201538 -0.062111265742)
(-0.016401788451 0.0223240727563 -0.0570835152742)
(-0.0232542407917 0.0329691611551 -0.0495282665539)
(-0.0311006637459 0.0425095583614 -0.0364459484149)
(-0.035578358772 0.0516838677642 -0.0169351619817)
(-0.0344434032971 0.0613819821523 0.00423094382854)
(-0.0262973831137 0.073519048577 0.023799225815)
(-0.0103777472944 0.0864322926164 0.0355157146376)
(0.00940444374351 0.0974748141497 0.03335325052)
(0.0266304720918 0.104528270724 0.0126322257131)
(0.0294522143621 0.107624588629 -0.0257211239122)
(0.0135489728612 0.110429455146 -0.0591023365769)
(0.0190017894712 -0.0558133036756 0.0477202449681)
(0.0389958007993 -0.05582830291 0.0118867013346)
(0.0452395922129 -0.0532668079531 -0.0198636251959)
(0.0438803793077 -0.0497260652831 -0.0430177867349)
(0.0350102109773 -0.0432976431613 -0.0584316712045)
(0.0230537251182 -0.0331345147055 -0.0644581345523)
(0.0133431903929 -0.0211966644515 -0.0654391702179)
(0.00676085975024 -0.00927778484205 -0.0649677040684)
(0.00182971662767 0.00274949383552 -0.064305434299)
(-0.0035198008569 0.0149981985954 -0.0621095140223)
(-0.0106635465827 0.0273163685486 -0.057132899961)
(-0.0184917903569 0.0399083928492 -0.0465271708787)
(-0.022728020945 0.0534132716202 -0.0302972935425)
(-0.0210984807155 0.0675693886306 -0.0137902536779)
(-0.0133449389883 0.0824368239218 -0.00116931773325)
(-0.000509453104714 0.0953587622826 0.00308980475467)
(0.0137724461247 0.103557340269 -0.00382176547915)
(0.0250401392356 0.105848936417 -0.0234924090559)
(0.0252978924429 0.103671708149 -0.055465027103)
(0.011815951785 0.10339570198 -0.0839643406448)
(0.0182363538892 -0.0618271307485 0.0679253630932)
(0.0384619458002 -0.0630918850722 0.0363105777867)
(0.0469585611504 -0.0620723178338 0.00493204609299)
(0.0486501347858 -0.0590042420763 -0.019432823499)
(0.0438605437961 -0.0529415336672 -0.0376540927082)
(0.0353803164989 -0.0431960988507 -0.0489282313177)
(0.0273674324737 -0.0312317114159 -0.0556364213212)
(0.0213694378596 -0.0185491471441 -0.0603277989267)
(0.0168396597333 -0.00535332521092 -0.064217968525)
(0.0117881745719 0.00843865579167 -0.0664922233308)
(0.00498871851286 0.0228405168604 -0.066213907574)
(-0.00217301529415 0.0382429244381 -0.061089569857)
(-0.00617859681088 0.0550096205442 -0.0516777887969)
(-0.00536820846164 0.0719618897433 -0.0425745891063)
(-0.000332741013892 0.0877160563781 -0.0375295039055)
(0.00709032081025 0.0991616977013 -0.0388304706285)
(0.0144584109423 0.104303598809 -0.046716762757)
(0.0194556948486 0.103100001665 -0.0622929665583)
(0.0178543326466 0.0977030572736 -0.0849741312683)
(0.00897474098985 0.0956900405909 -0.108153540216)
(0.0169929867761 -0.0627967988029 0.0900465417985)
(0.0363381217862 -0.064295635824 0.0625863659712)
(0.0476498430952 -0.0646274004947 0.0343735753363)
(0.0526417213308 -0.0624548449988 0.00841216565634)
(0.051469202989 -0.0573576871613 -0.0125872772558)
(0.0464902087633 -0.0487756261952 -0.0286095470817)
(0.0406799207921 -0.0378081539661 -0.0408668391561)
(0.0359386181725 -0.0255430434136 -0.0510166630083)
(0.0321844870073 -0.012422112998 -0.0600220277466)
(0.0278596306691 0.00138064312834 -0.0678235852365)
(0.022241994286 0.015993854955 -0.0736446361196)
(0.0165743920701 0.032022787294 -0.0761482534897)
(0.0130381191264 0.0496751553159 -0.0764134523217)
(0.0120137815305 0.0673385937859 -0.0772048967367)
(0.0123530816012 0.0826390284276 -0.0802563856762)
(0.0128166009896 0.0922982728552 -0.0854863797698)
(0.0129037067607 0.0950204345815 -0.0921735200607)
(0.0121326425013 0.0922443435639 -0.102314596176)
(0.00946322265298 0.086244667657 -0.115742473859)
(0.00598422590109 0.0846053384871 -0.133324163409)
(0.0156999850223 -0.0583547271935 0.110493787728)
(0.0342378580643 -0.0593224378736 0.0870896344094)
(0.0473704162255 -0.0597136679064 0.0620405422955)
(0.0551183488565 -0.0588826121708 0.0367814689376)
(0.0574269429904 -0.0550741063773 0.0141511400723)
(0.0557931075229 -0.0482236869491 -0.00572939023232)
(0.0524652959014 -0.0390413065542 -0.0229693069857)
(0.0493068805246 -0.0283027913686 -0.038367580482)
(0.0465003780657 -0.0167356809226 -0.0526105842626)
(0.0429695849289 -0.00464266296229 -0.0659411416306)
(0.0385710377419 0.00791167003631 -0.0775428063272)
(0.0345462340454 0.0217962430256 -0.0871317282116)
(0.0316529405143 0.0374115290704 -0.0961980770924)
(0.0286855301396 0.0534530721896 -0.106137058104)
(0.0238921063123 0.0669226775847 -0.116479682392)
(0.0171333336964 0.0742681595543 -0.12494384083)
(0.0107212379443 0.0742409367279 -0.130603743149)
(0.00568077931827 0.0695722635047 -0.137153538061)
(0.00283206533435 0.0637657169122 -0.145136619169)
(0.00401806453641 0.0628529171746 -0.161285512377)
(0.0145269046922 -0.049969263876 0.128373913377)
(0.0325546579099 -0.0498653759156 0.107811902109)
(0.0469664517732 -0.0496690143608 0.085372745155)
(0.0570098888185 -0.0489700858477 0.0624969387674)
(0.0623400865358 -0.046453659249 0.0392922516126)
(0.0635319529331 -0.0414419897449 0.016907517532)
(0.0625314130058 -0.0345935156244 -0.00433225539431)
(0.0608601736212 -0.0262329666766 -0.0243333493795)
(0.0586954914233 -0.0172968930356 -0.0431727174506)
(0.0554198112272 -0.00834869866987 -0.0608523872567)
(0.0517997287384 0.000514723219841 -0.0763190979083)
(0.0494049847882 0.0104770546736 -0.0904569525635)
(0.0477612499308 0.0225782792625 -0.105857212761)
(0.0434956536321 0.0360814323575 -0.123806464204)
(0.0335049398295 0.047226122621 -0.140903991649)
(0.0189617270969 0.0513255147024 -0.151855606332)
(0.00574039036098 0.0473034088618 -0.155141496387)
(-0.00218435813446 0.0387870549114 -0.156534509971)
(-0.00368055441817 0.0313910427007 -0.159741068955)
(0.00207858698768 0.0287440939343 -0.174956081702)
(0.0136422634106 -0.0389273772979 0.143100381464)
(0.0315048613671 -0.0376574214429 0.125395542804)
(0.0473065800861 -0.0365985527058 0.105283830152)
(0.0592686958169 -0.0353811619709 0.0838559585254)
(0.0671080478219 -0.0336020530193 0.060598515811)
(0.0707552495377 -0.0305955742636 0.0366887798328)
(0.071578741625 -0.0258433372376 0.0122054349253)
(0.0709757362218 -0.0201500765325 -0.0117164981546)
(0.0688066274918 -0.0143233803309 -0.0342875970912)
(0.0650628176406 -0.00901693914316 -0.0549270783584)
(0.0616537253838 -0.00429232572352 -0.072102714426)
(0.0609329268485 0.00137427508687 -0.0883059288484)
(0.0613583895877 0.00966663316441 -0.108405946565)
(0.0565624717483 0.0203860174037 -0.134651372022)
(0.0409996799423 0.0287378003633 -0.159654812992)
(0.017683984914 0.0291548169032 -0.170968150223)
(-0.00270520135991 0.0220786965265 -0.167552052443)
(-0.0127894204955 0.0110787582661 -0.158836303573)
(-0.0118240281544 0.000964267367131 -0.152898260536)
(-0.000855920269349 -0.00483043580211 -0.163417090825)
(0.0125150861649 -0.0259747591817 0.155145198189)
(0.0308406630084 -0.0239549452118 0.141110761536)
(0.0481680812896 -0.022483775531 0.123154067867)
(0.0620277279204 -0.0214612341371 0.102366398293)
(0.0717805291883 -0.0201142468294 0.0784756649597)
(0.0778103859446 -0.0182788560315 0.0520992298275)
(0.0805994905508 -0.0153151326615 0.0252103258272)
(0.0804084191041 -0.0118694606857 -0.00210651527287)
(0.0776760600705 -0.00854149238704 -0.0277236926689)
(0.072897225713 -0.00605978193725 -0.0501543391389)
(0.0693792757958 -0.00448635752782 -0.0673950789716)
(0.0703988647607 -0.00217495094342 -0.0838501451054)
(0.0734553758912 0.00258865651405 -0.107277353187)
(0.0683963388623 0.010087184862 -0.14208632697)
(0.0467947379668 0.0156321613734 -0.174503921407)
(0.0152840952857 0.0146605465556 -0.185017901197)
(-0.0111339372491 0.00734426618137 -0.172577517874)
(-0.0241187170096 -0.00313742377775 -0.1502493812)
(-0.0216244083899 -0.0132059071905 -0.130680857444)
(-0.00512531613193 -0.0203450957005 -0.130899264528)
(0.00975860180092 -0.00981314492415 0.166946485986)
(0.0281729257327 -0.00954045298947 0.157205890858)
(0.0475365651659 -0.00881007447749 0.140786174827)
(0.0634747265958 -0.00815217955583 0.120491162283)
(0.0758622937455 -0.00733184508615 0.0952179428106)
(0.0840873146994 -0.00613092415347 0.0661876762952)
(0.0883864634939 -0.00487777652291 0.0351435864607)
(0.0889193727682 -0.00337418367554 0.00386187816007)
(0.0857197811757 -0.00197305530814 -0.0251955354069)
(0.0800620285803 -0.000916019734866 -0.049738304939)
(0.0762967460964 -0.000252901416606 -0.0674666034562)
(0.0785034579735 0.000599162242309 -0.0847112193534)
(0.0837089582033 0.00247515915514 -0.111719048475)
(0.0787980817567 0.00572076702305 -0.154282464835)
(0.0534059211481 0.00830326200704 -0.193453456851)
(0.0153641931488 0.00858921762154 -0.204943197532)
(-0.0168762369271 0.00555410515018 -0.186548339437)
(-0.0326048400777 0.0011884213249 -0.153580060948)
(-0.0291749123785 -0.00372607865226 -0.121179664031)
(-0.00900503387563 -0.00834563068801 -0.11495835212)
(0.00164466962983 0.00298602628434 0.0321774939239)
(0.00115804783443 0.00391269978 0.0268232816627)
(0.000847875160473 0.00490838063086 0.0243312466738)
(-0.00167732957406 0.00600851274678 0.0229263513485)
(-0.00574321511781 0.00692260680836 0.02217893805)
(-0.0114029266159 0.00747559641849 0.0238848152593)
(-0.0180071151883 0.00789731483749 0.0279541608529)
(-0.0244967620688 0.00804777708956 0.0342884856289)
(-0.0311876738407 0.00721907154526 0.0430405896004)
(-0.0375858153229 0.00668084320881 0.0550037984579)
(-0.042445730786 0.0062502476964 0.0693200952615)
(-0.0455379789588 0.00596761512664 0.0854545842224)
(-0.0467136766874 0.00570256095764 0.102659436698)
(-0.0459770148948 0.00577276608076 0.120381217408)
(-0.0432391733701 0.00610936800519 0.137837601074)
(-0.0387407491332 0.00679304809632 0.154625164093)
(-0.0325441175318 0.00755058229855 0.170076753817)
(-0.0243191134779 0.00791842686255 0.183038146821)
(-0.0154524248242 0.0063343939642 0.192879278593)
(-0.00541710673204 0.00199331649084 0.200702925771)
(0.0013288672369 0.00915207740775 0.0246458368275)
(0.00271611418595 0.0116913152159 0.0197539618261)
(0.00320828625315 0.0144967525192 0.0145513829078)
(0.000504582423026 0.0169482937026 0.0102690399501)
(-0.00495470546278 0.0188047628918 0.007940835845)
(-0.0124415463148 0.0197595215364 0.0086627514631)
(-0.0205262025989 0.0198063040452 0.0131931781515)
(-0.028748582071 0.0188924383594 0.0211463688485)
(-0.0361079878752 0.0168453532697 0.0325269493425)
(-0.0418336098835 0.014971276901 0.0464417403637)
(-0.0461611963457 0.0131431459632 0.0623542024086)
(-0.0487103696988 0.0114999878519 0.0801994366967)
(-0.0492631706596 0.010069677773 0.0986584417157)
(-0.0477162154903 0.00971487630605 0.117316826389)
(-0.0440652977137 0.010211332162 0.135122278241)
(-0.0388552434825 0.0116013212152 0.151427080256)
(-0.0320132366513 0.0134604689043 0.166187996384)
(-0.0235565560154 0.0152510361966 0.178446241963)
(-0.0139428175735 0.0155733898197 0.188661849649)
(-0.00580678941474 0.012312462784 0.197049217771)
(0.00269648127292 0.0140935370228 0.0187128437807)
(0.00594319083472 0.0177819214341 0.0108066512584)
(0.00622127185445 0.0214418500851 0.00279009856223)
(0.00264773417614 0.0245550705262 -0.00515362845636)
(-0.00400948375031 0.0264568859947 -0.00962721922601)
(-0.0128917324267 0.0271855969218 -0.00925249674522)
(-0.0225022855697 0.0268201681749 -0.00381107621589)
(-0.0316222198482 0.0255699814301 0.00612652617456)
(-0.0393560978139 0.0239878929697 0.0197727200043)
(-0.0453597462497 0.0220139120462 0.0360374210725)
(-0.049675566661 0.0198741123869 0.0544029399099)
(-0.0520266384286 0.0179377300219 0.0741841711924)
(-0.0518153914531 0.0164221304407 0.0947205978208)
(-0.0491561808274 0.0158584531702 0.114394680486)
(-0.0443387357854 0.0163989617842 0.132329634752)
(-0.0377854448783 0.0180391269125 0.14785971671)
(-0.0298729858046 0.0207357587921 0.160997689538)
(-0.0210185490683 0.0239567813326 0.171302201733)
(-0.011379191211 0.0268336405496 0.179769812259)
(-0.00468675590713 0.0265292658677 0.185254551063)
(0.00378760898028 0.0163421375713 0.0121567709035)
(0.00920558714056 0.0201618457704 -2.31874866494e-05)
(0.00958640865967 0.0246079272593 -0.0122295430909)
(0.00527370064937 0.0279194367784 -0.0224560586796)
(-0.00282802000533 0.0298762152451 -0.0280465989192)
(-0.0133285576684 0.0304167530814 -0.0272884845055)
(-0.024233143856 0.0300268126172 -0.0205122302333)
(-0.0341551682392 0.0289633388544 -0.00876087441458)
(-0.0424187873907 0.0277478475659 0.00688481648954)
(-0.048687786381 0.0261854298185 0.0253082153661)
(-0.0529412111998 0.0245770263728 0.0457455991034)
(-0.0549532845971 0.0231992335018 0.067377791694)
(-0.0543751760551 0.0222425167529 0.0892516995111)
(-0.0510137253699 0.0218153267346 0.110015392204)
(-0.0449521849816 0.0224031674495 0.128345341367)
(-0.0367961962364 0.024053758783 0.143497531779)
(-0.0273163782306 0.0269458717411 0.155113609345)
(-0.0176529857871 0.0309293851312 0.162988960203)
(-0.008427439755 0.0360578763233 0.167978910219)
(-0.00314064679371 0.0387530109909 0.169812650271)
(0.00508049326815 0.0163075103541 0.0049265370413)
(0.0128160343043 0.0196550270222 -0.0114383927723)
(0.0129503586876 0.0242225305328 -0.0269295158008)
(0.00741143532223 0.0272732988584 -0.0387511213188)
(-0.00212846366897 0.0290313651838 -0.044845611618)
(-0.0141653678326 0.0295832081402 -0.0432531996146)
(-0.026068255281 0.029447563492 -0.0349592616862)
(-0.0362462654309 0.0291130186063 -0.0216184743227)
(-0.0444477320769 0.0285005715561 -0.00469450294671)
(-0.0507370921846 0.0281056320455 0.0149781884665)
(-0.0549195952622 0.0278712950402 0.0365015465553)
(-0.0568317567058 0.0277635834123 0.0589934647669)
(-0.0560980781902 0.0277640842975 0.0815407603964)
(-0.052384543817 0.0281042173987 0.102843010253)
(-0.045517784229 0.0289141297972 0.121645025292)
(-0.0359619687133 0.0305498459836 0.136734228091)
(-0.024914121225 0.0332553725696 0.147329971644)
(-0.0139003584126 0.0373589718713 0.15263424515)
(-0.00439327841595 0.043633138304 0.153394483881)
(-0.00112390902563 0.048717148182 0.149835461827)
(0.00655939194981 0.0130102282951 -0.00135202803616)
(0.0161043897239 0.0156453104938 -0.0214711953961)
(0.0161078265479 0.0196929194165 -0.0387648488574)
(0.00937553764348 0.0226584411556 -0.0520237413392)
(-0.00159886956338 0.0245662044207 -0.0581520757919)
(-0.0147703368562 0.0254333691014 -0.0555037010717)
(-0.0268540414274 0.0259682256083 -0.0459728956736)
(-0.0370625706642 0.0265973019427 -0.0318810999243)
(-0.045084125021 0.0273110095411 -0.0143043148493)
(-0.0508307067148 0.0284985664487 0.00543529983339)
(-0.0548025566653 0.0299600958498 0.0266737318612)
(-0.0567503459776 0.0314695474563 0.0487604599021)
(-0.0561608905972 0.0328391011025 0.0709983854684)
(-0.0525664448255 0.0342214777837 0.0921893175538)
(-0.0454164705311 0.0354891243535 0.111283756603)
(-0.034941297891 0.0374208518146 0.126484992145)
(-0.0225917966835 0.0400638684835 0.136649209279)
(-0.0101937979049 0.0442269889897 0.14012415749)
(-0.000531682627435 0.0508223536979 0.136969776588)
(0.000760822916279 0.0569342966717 0.128523713231)
(0.00811883129951 0.00713775712668 -0.00500691628288)
(0.0190900774864 0.0089050525502 -0.0277218806182)
(0.019018936613 0.0130228218225 -0.0472605573487)
(0.0114057522816 0.0157890070921 -0.061360461223)
(-0.000594191335744 0.0180818599463 -0.0674027667594)
(-0.0144096238031 0.0196128897729 -0.0640179504232)
(-0.0263732107927 0.0209507279988 -0.0539168398675)
(-0.0359372472754 0.0226651461786 -0.039887781128)
(-0.0432492471843 0.0250436254255 -0.0229682635897)
(-0.0485991035914 0.0278714546284 -0.00422939208216)
(-0.0523818906719 0.0310158766992 0.0157445485489)
(-0.0544381978826 0.0341577845998 0.0364744111518)
(-0.0541836293337 0.0370192027786 0.0575682224838)
(-0.0511098189765 0.0397315711546 0.0779756146853)
(-0.0440245194923 0.042102455708 0.0976245115068)
(-0.0330434606286 0.0444849471614 0.112921661976)
(-0.0199350633873 0.0474822835972 0.123065540835)
(-0.00648724142437 0.0518938006299 0.125381315606)
(0.00295056955377 0.0587071276365 0.118740972972)
(0.00222642370076 0.0652316667457 0.10598880396)
(0.00930898144821 -0.00018721499581 -0.00674446998255)
(0.0221392708923 0.00165564821817 -0.0297118415738)
(0.0222657218891 0.00473073773851 -0.0516694686672)
(0.0136502735493 0.00788758414251 -0.0664822518336)
(0.00128726674675 0.0108325173867 -0.0729393759276)
(-0.0128733047173 0.0134720413226 -0.069359540775)
(-0.024335620133 0.0162117118821 -0.0591669618945)
(-0.0330179484411 0.0193307983033 -0.0458806249291)
(-0.0396208168863 0.0229580860399 -0.0302586883605)
(-0.0443907308968 0.0271763567073 -0.0133964159173)
(-0.0478841828877 0.0317548828657 0.00440571332013)
(-0.0500218510214 0.0363080134556 0.0229866533482)
(-0.0500798296396 0.0404413091545 0.04234325999)
(-0.047453812925 0.0444841027478 0.0616577884077)
(-0.0410912269823 0.0479447608735 0.0805345935179)
(-0.0303162812711 0.0509848299324 0.096361984924)
(-0.0166319744486 0.0547112455535 0.106405623558)
(-0.00247692819766 0.0599054520788 0.107498625653)
(0.00635557019612 0.0672799251886 0.0972674425235)
(0.0036047760444 0.0738354040641 0.0821692281708)
(0.0110048109873 -0.0084279063514 -0.00524275031231)
(0.024084329896 -0.00612837844679 -0.0285609565268)
(0.0245682941936 -0.00412439274941 -0.0530566881696)
(0.0168945808539 -0.000586995634552 -0.0683530165516)
(0.00446912891964 0.00305873196575 -0.07546237884)
(-0.00934150453394 0.00689511164921 -0.0726857877481)
(-0.0202847966691 0.0112279636527 -0.0638426622836)
(-0.0284858047863 0.0157485824144 -0.0520906847168)
(-0.0344697376885 0.0207729066231 -0.0383314147872)
(-0.0387042185663 0.0263091725688 -0.0237443015744)
(-0.0419900314665 0.0321063862411 -0.00827688494286)
(-0.0443254708234 0.0376818532055 0.00813880021563)
(-0.0446824518064 0.042592103024 0.0259495000841)
(-0.0427190607766 0.0473168093579 0.0440240649821)
(-0.0372274880236 0.0514714385655 0.0623848076397)
(-0.0265949780393 0.0557005121495 0.0781928213555)
(-0.0123852242604 0.0607701750937 0.0876171991165)
(0.00228184744544 0.0673089866907 0.0862988349833)
(0.00981416666046 0.0754582240107 0.0718479075832)
(0.00494788587946 0.0822028070381 0.0545642599761)
(0.012301998114 -0.0175021544704 -0.00164581755476)
(0.0256035467261 -0.0155271145641 -0.0261739635804)
(0.0268063313307 -0.0128738948389 -0.0494988525615)
(0.0202783039769 -0.00940714075631 -0.0660773081795)
(0.00857513807807 -0.00522480125176 -0.0743265830112)
(-0.00445520459179 -0.000373566786274 -0.0728943328136)
(-0.0146550535639 0.00513104571115 -0.0659567831505)
(-0.0221998158787 0.0110192305991 -0.0566083533393)
(-0.0276353714963 0.0174724195837 -0.0457428504423)
(-0.0315452616527 0.0243163551409 -0.0341009592361)
(-0.034965885396 0.0311439739511 -0.0210137661529)
(-0.0378789095638 0.0374023458755 -0.00643940926436)
(-0.0389256775912 0.0428219306484 0.00999995819933)
(-0.0375334725403 0.0479413147152 0.0269609945114)
(-0.0323503451288 0.0532100699781 0.0447272286572)
(-0.0214574820968 0.0591136321828 0.0595734613974)
(-0.00672811780723 0.0658962291735 0.066877376586)
(0.00797376671843 0.0735677035228 0.061621650012)
(0.013653089911 0.0819152859099 0.0422752855205)
(0.00661728661185 0.0886409252114 0.0227087267522)
(0.0131352761715 -0.0272717327085 0.00630528952628)
(0.0269209716699 -0.0254791274385 -0.0191260626714)
(0.0291037269242 -0.0224963658087 -0.0427709998131)
(0.0239372779962 -0.0187710796363 -0.0601270733028)
(0.013563000632 -0.0141065706515 -0.0695690500383)
(0.00171158707677 -0.00812686545852 -0.0700740642114)
(-0.00758780283061 -0.00134966901802 -0.0655844827989)
(-0.0144331549522 0.00586932957258 -0.0592162217126)
(-0.0193768342401 0.0136829544817 -0.0518311733056)
(-0.0232363650666 0.021806635011 -0.0432167867595)
(-0.0272158224987 0.0295664546313 -0.0325973960282)
(-0.0310234700754 0.0364056997863 -0.0199873336433)
(-0.0327690985741 0.042508229586 -0.00468490369452)
(-0.0315646454979 0.0484525029793 0.0114300765284)
(-0.0260905816508 0.0553012183369 0.0277540561746)
(-0.0149232159436 0.0629599565905 0.0400006752066)
(-0.000322534427257 0.0708133992768 0.0435069249475)
(0.0134399808088 0.078211427827 0.0337060266891)
(0.0170655938773 0.084947190165 0.0103917403599)
(0.00821902496936 0.0905713237795 -0.0116296447273)
(0.0137249537087 -0.0365332944663 0.018613387098)
(0.0279839567504 -0.0352202097768 -0.00724333284195)
(0.0314432072841 -0.0323789465657 -0.0314672913541)
(0.0279014572581 -0.0284612609437 -0.0499164051139)
(0.0194207447238 -0.0232380511712 -0.0610502587833)
(0.00936724012089 -0.0162512349063 -0.0642316497928)
(0.00112037979536 -0.00834877975067 -0.063146272775)
(-0.00497285499635 -0.000150688979393 -0.0606600927615)
(-0.00947467886141 0.00852492389713 -0.0573957090825)
(-0.0135837516526 0.0174837212931 -0.0524281281231)
(-0.0184101374986 0.0260813994968 -0.0449780379945)
(-0.0233018842643 0.0341858786978 -0.0341972316754)
(-0.0257284847363 0.0420905285826 -0.0197757869639)
(-0.0243818167024 0.0501152697843 -0.00458572402812)
(-0.0184415203775 0.0590207825907 0.00907709722378)
(-0.00770226470243 0.0679000484317 0.0172359244373)
(0.00531400887724 0.0754885667364 0.0163803646581)
(0.0166305917199 0.0809442884705 0.00353544230069)
(0.0181170365641 0.0846958668392 -0.0202899790501)
(0.00884299341658 0.0881777285656 -0.042468328471)
(0.0139027754013 -0.0439846649966 0.0343677425374)
(0.0284883977748 -0.0434468924793 0.00920773388459)
(0.0336932651564 -0.0412299280562 -0.0152165293626)
(0.0321440483424 -0.0374758957346 -0.0348662163351)
(0.0260187822619 -0.0319371247228 -0.048167687609)
(0.0179261344639 -0.0244831785451 -0.0550110151697)
(0.010667076609 -0.0159455924056 -0.0580092635228)
(0.00504895964372 -0.00707175184408 -0.0594155983231)
(0.000868039213642 0.00232267147722 -0.0596422659336)
(-0.00331889448673 0.01204361035 -0.0576507393227)
(-0.00832825063237 0.0218142608293 -0.053355824833)
(-0.0132353369166 0.0318303507271 -0.0456299063539)
(-0.015702589891 0.0422821972514 -0.0346209381087)
(-0.0144715706571 0.0528756904389 -0.0233660125465)
(-0.00928848317929 0.0634276049569 -0.0144879085977)
(-0.000731928443946 0.0724675502685 -0.0109801452916)
(0.00897655629731 0.0786869117697 -0.0148510990136)
(0.0168933336643 0.0815211447332 -0.0278820805397)
(0.0164857890285 0.082336773354 -0.049037373915)
(0.0085082494102 0.0838043104451 -0.069849325003)
(0.0137877055254 -0.0486846568349 0.0528606747596)
(0.0284574801462 -0.0486978262308 0.0293385679232)
(0.0354687855757 -0.0474390377409 0.00517255282558)
(0.0360574233227 -0.0442383816016 -0.0153316262886)
(0.032407041499 -0.0390503875539 -0.0310885566133)
(0.0265715667673 -0.0317239493993 -0.0418580510003)
(0.0206696133249 -0.0231002490465 -0.0493345533096)
(0.0159083094011 -0.0137775937355 -0.0551340965088)
(0.0122078041678 -0.00369030709807 -0.059368505696)
(0.00829947577086 0.00681806165508 -0.061615295733)
(0.00360529933288 0.0178159391873 -0.0617387088218)
(-0.000917579124327 0.0294689682924 -0.0587864480006)
(-0.0034193715891 0.0417968427422 -0.0531896036436)
(-0.00304259384498 0.0540091060038 -0.0474849494703)
(8.18052557651e-05 0.0651789336761 -0.0439230264615)
(0.00516164068468 0.0735253560698 -0.0442424862825)
(0.0105947691652 0.0780275215423 -0.0492538615452)
(0.0147486310554 0.0786307664114 -0.0605486636099)
(0.0128520216136 0.077321911286 -0.0771980569192)
(0.0074728246784 0.07753581702 -0.0954570526628)
(0.0132265373795 -0.0495783306342 0.0726402240325)
(0.0276525067629 -0.049727104408 0.0510803191846)
(0.0364211699696 -0.0493049421597 0.0285237411726)
(0.0392523997175 -0.0471679669429 0.00726530628164)
(0.0380544239607 -0.0426204172744 -0.0107223200613)
(0.0345101909716 -0.0359978719512 -0.0251734714854)
(0.0302497029796 -0.0279131483853 -0.0370987459779)
(0.0266815416462 -0.018786863555 -0.0473698972018)
(0.0237024477245 -0.00886149095218 -0.0560045681357)
(0.0203585170362 0.00158247967052 -0.0629746718192)
(0.0164052239546 0.0126694109039 -0.0681856392834)
(0.0126705143865 0.0246470465526 -0.0710903527794)
(0.0102291931484 0.0374549690429 -0.072344618511)
(0.00926061527467 0.0500457056619 -0.07350261712)
(0.00931299494571 0.0609403522252 -0.0756263866802)
(0.00993505274152 0.0681552471915 -0.0790438914684)
(0.0106561175653 0.0709122971458 -0.0838970201314)
(0.0111718690977 0.0700742679115 -0.092709716405)
(0.00837092338564 0.0677836153219 -0.104307403876)
(0.00616590811284 0.0675461836194 -0.120365787624)
(0.0125927372379 -0.0465406879034 0.0917469900362)
(0.0265297785006 -0.0463666550219 0.0719611894559)
(0.0366362517086 -0.0461423392222 0.0509997860204)
(0.0417604231284 -0.0448526452882 0.0301773932351)
(0.0429931688961 -0.0414011883859 0.0109104079073)
(0.0414971047846 -0.0359349777507 -0.00657926308742)
(0.0390015318183 -0.0289714615104 -0.0225261428673)
(0.0366816772094 -0.0208110845475 -0.0370570844651)
(0.034436559092 -0.0119376594669 -0.0499362952529)
(0.0316848193519 -0.00263550137188 -0.0615264654685)
(0.0285203626865 0.0071579701291 -0.0715408445172)
(0.0256532859864 0.0178345256593 -0.0799610917634)
(0.0233846695648 0.0294408097344 -0.0876891182587)
(0.0209561536318 0.0410202851356 -0.0954177793127)
(0.0175161278195 0.0507832466766 -0.102821662964)
(0.0133139462718 0.0562114424569 -0.108874504799)
(0.00962310038294 0.0569196359916 -0.113525347987)
(0.00731413355659 0.0543587459001 -0.11990135183)
(0.00416037035285 0.0514616593609 -0.127791006039)
(0.00491803695953 0.0511836085477 -0.143179734107)
(0.011997594818 -0.0402514572567 0.108545981966)
(0.0254956264588 -0.0395137140584 0.0903061747578)
(0.0367035242439 -0.0389528764249 0.0708889302845)
(0.0437376023927 -0.0378253344194 0.0513574624911)
(0.0471781623606 -0.0355226804169 0.0313883878972)
(0.0477099149794 -0.0312573563486 0.011785288565)
(0.0468154177175 -0.0259286493703 -0.007402437689)
(0.0455575194154 -0.0194173584312 -0.0256570045672)
(0.0438606778257 -0.0123271760212 -0.0423160232684)
(0.041342585307 -0.00508105141511 -0.0576550894473)
(0.0386657278143 0.00236668316178 -0.071280694322)
(0.0366184140334 0.0105861438719 -0.0838307158206)
(0.0347300061704 0.01992087364 -0.0967553881862)
(0.0311944900986 0.0295648554782 -0.110348133419)
(0.0240926308495 0.0371734067179 -0.122657521623)
(0.0147331434807 0.0406470311293 -0.130857584585)
(0.00663215801624 0.0389325395712 -0.134101445642)
(0.00230215954024 0.0341166609104 -0.137040763847)
(-0.000408969348816 0.029855607814 -0.140478422231)
(0.00356021340366 0.0285316239889 -0.154992015513)
(0.0114994937644 -0.0316918553984 0.122602107661)
(0.0246835960324 -0.0302238470224 0.106212783471)
(0.0369212231321 -0.0292085058115 0.0884139884403)
(0.0455696226638 -0.0280960780766 0.0696656157455)
(0.0511724700908 -0.0263684789195 0.0494251614063)
(0.0535834190627 -0.0237936149734 0.028101117876)
(0.0539996974893 -0.0196705584969 0.00623316050473)
(0.0536451353155 -0.0149710726768 -0.015248362136)
(0.0521702118652 -0.0100295168032 -0.0351357358915)
(0.0495396793507 -0.00526269273685 -0.0533491074359)
(0.0470146440776 -0.000546262994228 -0.0693672956449)
(0.0456954771444 0.0048766462088 -0.0847714225199)
(0.0443973545147 0.0116299092911 -0.101974864723)
(0.0395913465608 0.0190490281204 -0.12141602635)
(0.0291638362457 0.0245164427504 -0.138597076296)
(0.0148554878343 0.0258457340657 -0.147631098672)
(0.00208130523073 0.0223953549901 -0.14722891105)
(-0.00408254310476 0.0162277696727 -0.143387950659)
(-0.00603640157374 0.0106699706403 -0.141050650948)
(0.00172813129232 0.00834398648822 -0.152935348213)
(0.0108334783606 -0.0209075648234 0.133834613416)
(0.0241063184794 -0.0190374719364 0.120578136874)
(0.03744372488 -0.0178511624066 0.104701071608)
(0.0477757665123 -0.017091682905 0.0864700565712)
(0.0548795594115 -0.015951278914 0.0654630024746)
(0.0594686205626 -0.0144662161478 0.0423681057411)
(0.0617793358851 -0.0118720621152 0.0178375187806)
(0.0617664473371 -0.00891967305671 -0.00666970429638)
(0.0602840223298 -0.00607121915436 -0.029440588704)
(0.0573350883756 -0.00359898192454 -0.0498368579011)
(0.0549245016003 -0.00137513198974 -0.0672746973356)
(0.0544296737272 0.00136599391005 -0.0843788912263)
(0.0539283873351 0.00524976316415 -0.104667850837)
(0.0482770329892 0.0100406193887 -0.129428764009)
(0.0340700078812 0.0136085536482 -0.150943515472)
(0.0147281461634 0.0134957096023 -0.159517262841)
(-0.00201876207464 0.00975531627415 -0.15474402544)
(-0.00999754089981 0.00376229101175 -0.143425102823)
(-0.0110418031536 -0.00124084367605 -0.132000962477)
(0.000416444695999 -0.00349245639394 -0.137072603791)
(0.00908694609254 -0.00873910300543 0.144003227364)
(0.022298238959 -0.00835932492858 0.134933353769)
(0.0372997861452 -0.0076128599715 0.121035010449)
(0.0493587183641 -0.00693362020596 0.103196426721)
(0.0585856226226 -0.00609078845154 0.0809615113501)
(0.0647282620458 -0.00486808322995 0.0553933269862)
(0.0681365662568 -0.00379030266514 0.0277993207189)
(0.0690828170911 -0.00239203576521 -3.60769945647e-05)
(0.067566686171 -0.00118136893084 -0.0258909755889)
(0.0643454521795 -9.18444137928e-05 -0.0486498313159)
(0.0619513243589 0.000903258739174 -0.0679566246933)
(0.0619780765924 0.00206811619346 -0.087201698622)
(0.0621859440703 0.00368238381484 -0.111332898377)
(0.0561456001488 0.00585168251241 -0.141082030318)
(0.0396371326261 0.00761330844146 -0.166734758993)
(0.0165705319926 0.00820802397857 -0.176601228384)
(-0.00371932653952 0.00701848403934 -0.169155568096)
(-0.0129761244071 0.00479012175988 -0.15272325165)
(-0.0131353958691 0.00311968740831 -0.132833191535)
(-0.000248324673398 0.00204628764713 -0.132557320722)
(0.00409464203995 0.00558360633025 0.0258825965865)
(0.00115417440076 0.00456734169177 0.0218731772174)
(0.000916941134978 0.00463078786612 0.019373350595)
(-0.00184048901055 0.005081653013 0.0179764507817)
(-0.00491526032044 0.00586952655575 0.0178843243452)
(-0.00925487814469 0.00617009926758 0.0196946973055)
(-0.0144421092421 0.00645541802715 0.0239265453698)
(-0.0194466538704 0.00666345146763 0.0305979384358)
(-0.0244597653181 0.00624488208487 0.0393129062197)
(-0.0292087527664 0.00596968018427 0.0514514444281)
(-0.0327652537077 0.00579872069743 0.0654910342548)
(-0.0349380958507 0.00569944362926 0.0811338349057)
(-0.0355977828914 0.0056374550675 0.0975976220684)
(-0.0348477180743 0.00571826153322 0.114379418252)
(-0.0326451981072 0.00612880205878 0.130725782051)
(-0.029090223658 0.00673496125105 0.146039744391)
(-0.024669670068 0.00750091718734 0.159859013382)
(-0.0191676055145 0.00814570674625 0.171727208759)
(-0.012194232913 0.00777138514375 0.180993017459)
(-0.00732344290826 0.00395570689142 0.190371327571)
(0.00252213498537 0.00738890504106 0.0194237453724)
(0.00192281837129 0.00892576342942 0.0154079027626)
(0.00223079078774 0.0110234970274 0.0107302555834)
(0.000175330912769 0.012426720459 0.00729979685633)
(-0.00412761891155 0.0136396959221 0.00574608819839)
(-0.00978214925104 0.014149052558 0.00726927200311)
(-0.0157342029344 0.0141659163341 0.0120414127401)
(-0.0218594903492 0.0136616847919 0.0199371803024)
(-0.0273683219196 0.0124136143101 0.0311866884456)
(-0.0317151767722 0.0112455071342 0.0443667640983)
(-0.0348505184472 0.0101477004734 0.0596874102307)
(-0.0366046775282 0.0090714094743 0.0765651556418)
(-0.0368336637912 0.00821873495893 0.0940543573949)
(-0.0354516214585 0.00790601815956 0.111660438801)
(-0.0326111828516 0.00822608071432 0.128245618124)
(-0.0286495058502 0.00909122702181 0.143301355426)
(-0.023649291682 0.0102414856843 0.156615009656)
(-0.0177490559041 0.0114271017328 0.167396244193)
(-0.0104729996769 0.0117557549864 0.175798899581)
(-0.0064953240746 0.0100851619464 0.183092395443)
(0.0027610206249 0.0112924018645 0.0134805695445)
(0.00435495391321 0.0134109913185 0.00661424007745)
(0.00431425092022 0.0158555729284 0.000275857254033)
(0.00119453740576 0.0176336214439 -0.00564849025725)
(-0.00372995329104 0.0187637389761 -0.00841873380465)
(-0.0102720746236 0.019320277017 -0.00719386675292)
(-0.017201666741 0.0191387547044 -0.00167699351726)
(-0.0238408873856 0.0184291201992 0.00758812428306)
(-0.0295786173623 0.0175435785344 0.0202488067922)
(-0.0339288308561 0.016312022052 0.0354964950417)
(-0.037040853298 0.015040294598 0.0526116758578)
(-0.038595762048 0.0138178623656 0.0709156457722)
(-0.0382998335289 0.0128933466917 0.0898774906569)
(-0.0362801629437 0.0125198796626 0.108096204977)
(-0.0326750197084 0.0128060836577 0.124948173211)
(-0.0279007093322 0.0137571558754 0.139667280569)
(-0.0221830165335 0.0152972297167 0.151959948491)
(-0.0158497738063 0.017153056208 0.161366871061)
(-0.0087047827629 0.0189292254786 0.168344223721)
(-0.005133913957 0.0198953005408 0.172942570505)
(0.00347283912594 0.0126136876343 0.00701328104953)
(0.00636669387629 0.0149890346753 -0.00280664801616)
(0.00645969560023 0.0173032520585 -0.0119275926453)
(0.00288256598462 0.0197479809272 -0.0197644941229)
(-0.0031207774628 0.0210647895619 -0.0235145450699)
(-0.0106050084721 0.0215822333564 -0.0220887191712)
(-0.018334072083 0.0214920218861 -0.0156625729541)
(-0.0254581137249 0.0209649363616 -0.00497066994414)
(-0.0314812325958 0.0201936295171 0.00913395482215)
(-0.0361036698614 0.019258163954 0.0259268938838)
(-0.0391514463883 0.0182522650914 0.0445762058047)
(-0.0405031894026 0.017407620962 0.0642660311742)
(-0.0399363468879 0.0167334419605 0.0841489056511)
(-0.0374090937025 0.0164603628381 0.103082381383)
(-0.0330089160299 0.0167862785749 0.120128996588)
(-0.0271923822377 0.0177044460369 0.134493891482)
(-0.0204941942494 0.01933346424 0.145722764828)
(-0.0136872569771 0.0216211374695 0.153344812482)
(-0.00679943362177 0.0248010793905 0.157978148384)
(-0.0036569381611 0.0283345051383 0.16016519785)
(0.00430746928821 0.0122795444319 4.72365250909e-05)
(0.008486617206 0.0141849434466 -0.012254339886)
(0.00866347938482 0.017187189108 -0.0240926961139)
(0.00446614375727 0.0192842320095 -0.0331997455556)
(-0.00252289811003 0.0205281349477 -0.037405124527)
(-0.0107772469989 0.0211291730407 -0.0355636505836)
(-0.0190634125658 0.0213067858205 -0.028219509364)
(-0.0265188687413 0.0212545371535 -0.0164154878003)
(-0.0326670321443 0.0210305629759 -0.00138818759762)
(-0.0372847461879 0.0208732538734 0.0162956984778)
(-0.0403477468266 0.0207602337814 0.035695136484)
(-0.0416941784221 0.0206888498927 0.0559781156305)
(-0.0410499844492 0.0206331845817 0.0762488484549)
(-0.0382404875382 0.0207600356716 0.0954143297663)
(-0.0332639529819 0.0212440869127 0.112449027235)
(-0.0265112412158 0.0221693367981 0.126455037223)
(-0.0187833001452 0.0236874539017 0.136771553094)
(-0.0111809544799 0.0260878982914 0.142664309861)
(-0.00419851931488 0.0303244123355 0.144503051777)
(-0.001872222069 0.035639495652 0.143439994336)
(0.00502327900675 0.00979173526317 -0.00613262969099)
(0.0109165392338 0.0113578634256 -0.0203451205107)
(0.0111210834242 0.0139971840319 -0.0341199029345)
(0.00581169596393 0.0159169241172 -0.0442325785474)
(-0.00176097250588 0.0174635219086 -0.0486541182852)
(-0.0106099202459 0.0184174858448 -0.0463865302184)
(-0.0191746709778 0.0191501610604 -0.0384722005314)
(-0.0266913137291 0.0197949067563 -0.0264631420103)
(-0.0327470008428 0.0205254404544 -0.0108758060568)
(-0.0372008578193 0.0214215371824 0.00685862219914)
(-0.0402097768282 0.0224473231531 0.0260465305814)
(-0.0416461899456 0.0234311162334 0.0459270114127)
(-0.0411506471826 0.0242337016315 0.0657780343713)
(-0.0383690112958 0.0249561335172 0.084506638167)
(-0.033106526271 0.0257771636987 0.101340460226)
(-0.0256748208246 0.0269972275936 0.115019481)
(-0.0170589844085 0.0286326142457 0.124646349387)
(-0.00852677330189 0.0312097419964 0.128970782419)
(-0.00146753697994 0.0360024614776 0.128230852958)
(-0.000181555739355 0.0421815885705 0.124083715547)
(0.00625214695456 0.0055392060141 -0.0105560924509)
(0.0128417777774 0.00691081798723 -0.0258467796681)
(0.0129802004497 0.0088148708443 -0.0411688492354)
(0.00760548787008 0.0109872168285 -0.052073586146)
(-0.000518566416941 0.0129461437435 -0.0567584769801)
(-0.00983689402984 0.0144648592824 -0.0543457760472)
(-0.0184032009795 0.0158205984266 -0.0463468780995)
(-0.0256653302594 0.0173468522757 -0.0344534415831)
(-0.0313803125236 0.0191202153366 -0.019568073998)
(-0.0355978156406 0.0211493076133 -0.00272545932322)
(-0.0385556365691 0.0233584086335 0.0153699573774)
(-0.0401553481706 0.0254918653076 0.0340308872715)
(-0.0399743340488 0.027365143132 0.0527348615668)
(-0.0374050928404 0.0290398038448 0.0703437303311)
(-0.0319681168499 0.0306135910531 0.0869713775839)
(-0.0240503630275 0.0322947420266 0.100406580939)
(-0.014831696036 0.0343912762282 0.1099680136)
(-0.00564038888307 0.037415737141 0.113133131596)
(0.000970424855398 0.0425824258473 0.11004476958)
(0.00113322126218 0.0489428455199 0.10257745974)
(0.00733586633003 5.52047355435e-05 -0.0123560800068)
(0.014809178775 0.0010939080171 -0.0281259147777)
(0.0151592822123 0.00296771119502 -0.0453534998196)
(0.00963255432396 0.00533963654854 -0.0567239444252)
(0.00122131476668 0.00770872065288 -0.0618707258785)
(-0.00832629180477 0.00998467117725 -0.0596592138591)
(-0.0166665444984 0.0122892817045 -0.0519770756174)
(-0.0234440290494 0.0147858287526 -0.0409833638672)
(-0.0287602762424 0.0175239816109 -0.0274078084486)
(-0.0326534977278 0.0205876650489 -0.0122335649552)
(-0.0354936627401 0.0239088536382 0.00400543818078)
(-0.0372004960848 0.0271682921792 0.0208307740165)
(-0.0372136197707 0.0301143416466 0.0382179953525)
(-0.0348267428412 0.0330725710127 0.0546696792012)
(-0.0296161453188 0.0356223148827 0.0708275786316)
(-0.0217031986504 0.0379395880094 0.0841798081128)
(-0.0120230259343 0.0405550352272 0.0930028412072)
(-0.00234187678255 0.0440531787843 0.0953226800552)
(0.00355258923257 0.0494235250498 0.0899898575408)
(0.00236315661974 0.0555744412853 0.0801507937667)
(0.00837450011015 -0.00624736520945 -0.0117030434173)
(0.0164116754573 -0.00522955138413 -0.0284200487492)
(0.0171421561649 -0.00344680326109 -0.045552019363)
(0.0120063280096 -0.000904959113274 -0.0581155221779)
(0.00368663232017 0.00194190566847 -0.0641792712258)
(-0.00562057366693 0.00501150092181 -0.062907144199)
(-0.0136477108622 0.0083945473555 -0.0565303676036)
(-0.020118583005 0.0118879759794 -0.0470596896887)
(-0.0250580292288 0.0156307894282 -0.0353758483249)
(-0.0286140718297 0.0197325975943 -0.0224243953715)
(-0.0313677631137 0.024205299312 -0.0082852106495)
(-0.0331637946631 0.0285149725037 0.00664760252012)
(-0.0331446375489 0.0323227427485 0.0225622472433)
(-0.0310659894293 0.0360596373095 0.0386554722872)
(-0.0264581212269 0.0392697206743 0.0541107719116)
(-0.0186123461691 0.0424164191699 0.0668131198011)
(-0.00865220865002 0.0458478916338 0.074571951533)
(0.00127913023801 0.0498740172949 0.0749139349427)
(0.00617177537867 0.055271142143 0.066609875359)
(0.00359756367511 0.0612453653702 0.0548724963869)
(0.00930865292008 -0.0133294458302 -0.00800238560817)
(0.0178355856191 -0.0122196609784 -0.0253647808662)
(0.0190773750254 -0.0101994958704 -0.0427266484316)
(0.0145655813979 -0.00751892902628 -0.056171492865)
(0.0067596722984 -0.00423864093102 -0.0633246334282)
(-0.0020407886978 -0.000446644908459 -0.0634393115029)
(-0.00960356331618 0.00378424823158 -0.0588885336357)
(-0.0156793991511 0.00824991193348 -0.0516671287767)
(-0.0202312852475 0.0130062183377 -0.0427187324226)
(-0.0234093811808 0.0182709296518 -0.0325091966903)
(-0.0262469845117 0.0237393273278 -0.0202547543333)
(-0.0282720671862 0.0288566898832 -0.00673848123573)
(-0.0287044089574 0.0332962747511 0.00766367611713)
(-0.0269719395268 0.0373888115119 0.0223007280385)
(-0.0225348700718 0.0414369913554 0.0366000330092)
(-0.0145746788358 0.0456543160304 0.0480015275259)
(-0.00444601061274 0.0500393210148 0.0538777106886)
(0.00536094533864 0.0544837627143 0.0514179465867)
(0.00882458097264 0.0596018779406 0.0399084206311)
(0.00495755028982 0.0652664661983 0.0262791189401)
(0.0100374857714 -0.0206601106429 -0.000894122019998)
(0.0190490116509 -0.0195440410301 -0.0185920925178)
(0.0209894668586 -0.0174023885581 -0.0364801387243)
(0.0172986498895 -0.0144606769989 -0.0508056707729)
(0.0103706689467 -0.0108300448157 -0.0592735880362)
(0.00234419586958 -0.0062946383575 -0.0611960333298)
(-0.00461350613144 -0.00120922733567 -0.0589613856501)
(-0.0102398203896 0.00418394859857 -0.0545780261065)
(-0.0142711094134 0.0100089448481 -0.0490001077586)
(-0.0172644048607 0.0163534469268 -0.0413595085507)
(-0.0203858131629 0.0225233915968 -0.0310151851554)
(-0.0230173294576 0.028161128922 -0.0198327508302)
(-0.0237806715559 0.0333677243845 -0.00707079876308)
(-0.0222028928769 0.0383074133438 0.00608875560303)
(-0.017708957615 0.0434864804232 0.0186774994762)
(-0.00974948420264 0.0487859617661 0.0278640132756)
(0.000120452547197 0.0537461254885 0.0310484695049)
(0.00923469673645 0.0578828719218 0.0255375300201)
(0.0109918652102 0.0619682800565 0.011551758518)
(0.00628562549419 0.0667578868436 -0.00403096853755)
(0.0105386514655 -0.027540693506 0.0103396208719)
(0.0199427605253 -0.0265936585548 -0.007962423386)
(0.0228911142288 -0.0245602663877 -0.0263562281406)
(0.0201879735032 -0.0214818916122 -0.0416766773409)
(0.0144516069317 -0.0174674378683 -0.0516440218577)
(0.00760482861145 -0.0123140370297 -0.05597821713)
(0.00139517183633 -0.00653623885477 -0.0567180518999)
(-0.00360928406863 -0.0004766930075 -0.05581125273)
(-0.00717232720246 0.00622290313934 -0.0537531465775)
(-0.0103920707492 0.0132661390475 -0.0491600187741)
(-0.0137969568912 0.0199817044928 -0.0420500994825)
(-0.0168966364063 0.026629181457 -0.0331358062385)
(-0.0180321043679 0.0331395903512 -0.0221237723922)
(-0.0165707429582 0.0395010141576 -0.01073413887)
(-0.0120886267009 0.0459912422076 -0.00063199299761)
(-0.00461401609378 0.0520553098893 0.00560727550785)
(0.00418169701684 0.0569590105769 0.00591059545691)
(0.0119080039332 0.0600463791534 -0.00182618909526)
(0.0119900197401 0.0624958853336 -0.0162387005828)
(0.00731959346589 0.0657498275752 -0.0330543927681)
(0.0108585573558 -0.0330930582364 0.0245484794369)
(0.0205208854764 -0.0324131471916 0.00636923989934)
(0.0246200689853 -0.030760150636 -0.0123239513115)
(0.0232337723432 -0.0278686169449 -0.0286723193402)
(0.0189125507993 -0.0236709799665 -0.0405448059012)
(0.0133298045962 -0.0182293890306 -0.0477959959156)
(0.00790200128024 -0.0120532913792 -0.0520363849994)
(0.0035946290166 -0.00548840223826 -0.0549759923033)
(0.000507214486743 0.00179775464527 -0.056017139595)
(-0.00269943576375 0.00936205430801 -0.0541104541719)
(-0.00623070881206 0.0168994710265 -0.0505702091139)
(-0.00926407235073 0.0247825458875 -0.0448541095851)
(-0.0104879750055 0.0328676968979 -0.0370681004254)
(-0.00930235238969 0.0408105443985 -0.0290503926833)
(-0.00555081471253 0.0483578885855 -0.0225524125236)
(0.000430187103711 0.0546554354359 -0.0195467270827)
(0.00711746151825 0.058900574181 -0.0214894152654)
(0.0128431167082 0.0605722358156 -0.0300822861971)
(0.0115252880309 0.0613542731178 -0.0435009905844)
(0.00786693290739 0.0630320440991 -0.059716416934)
(0.0109742848786 -0.0365640764317 0.0414183413549)
(0.0207234435382 -0.0361434821996 0.0236462049696)
(0.0259793717822 -0.0350052528125 0.00506190446166)
(0.0260417461505 -0.0326172487207 -0.0120983635025)
(0.0232598150932 -0.028677044523 -0.0260050367934)
(0.0191094647156 -0.0233359629842 -0.0363768929523)
(0.0147640211515 -0.0171110249182 -0.0443533358103)
(0.0113410782274 -0.0101645055473 -0.0511143891607)
(0.0085976702083 -0.00253382931126 -0.0557051557606)
(0.0057777928607 0.00537956404057 -0.0577457966175)
(0.00253647481938 0.0137361753102 -0.0583105924742)
(-0.000217446774171 0.0226279213535 -0.0567626163339)
(-0.00153862508882 0.0318450341956 -0.05340357426)
(-0.00105633048901 0.0407836661599 -0.04972281334)
(0.00122337752781 0.0487841134322 -0.0471851545162)
(0.00491577579672 0.0547743120248 -0.0470423796197)
(0.00880219507485 0.0581230187702 -0.0502301655533)
(0.0122570201401 0.0584227051114 -0.0585043567828)
(0.00984495001283 0.0579321923658 -0.0698228187403)
(0.00800346987898 0.0584445438744 -0.0852856583241)
(0.0108163296769 -0.0372951829662 0.0592669535494)
(0.0204227607928 -0.0369754912826 0.0422564095566)
(0.0268336146427 -0.0362206452812 0.0241847799154)
(0.0284711496489 -0.0345668374578 0.00658592117493)
(0.0272786302569 -0.0311525453138 -0.00895870653185)
(0.0245437165986 -0.0263159561983 -0.0222602604847)
(0.0214605093369 -0.0204870554638 -0.0340161461864)
(0.0190709415013 -0.01367857387 -0.0441894995502)
(0.0168453833436 -0.00618694087027 -0.0525949686787)
(0.0144360742134 0.00161759966101 -0.0590449000906)
(0.0117443732942 0.0100510764789 -0.0639809479202)
(0.00942401551251 0.0191227885242 -0.0671488217812)
(0.0079912376242 0.0286017232059 -0.0689811525221)
(0.00748570164046 0.0377609711711 -0.0703595556155)
(0.00767034169789 0.0455633848828 -0.072067450459)
(0.0084894371571 0.0507893926558 -0.0745193562937)
(0.0091965766909 0.052890440787 -0.0782288566203)
(0.0104954187143 0.0523502480093 -0.0858109765376)
(0.00738544434398 0.0511216914968 -0.0942778534989)
(0.00770382124504 0.0508924698131 -0.109146552213)
(0.0106061633981 -0.0351974801607 0.0768386014949)
(0.0198492569736 -0.0347407232563 0.0604840120601)
(0.0271061425476 -0.0340893315587 0.0432123128215)
(0.0303792927977 -0.032858199906 0.0257548853172)
(0.0309136041559 -0.0302588988144 0.0089339999352)
(0.02952098553 -0.0262279200454 -0.00681140448198)
(0.0276872940837 -0.0211789147721 -0.0219743625835)
(0.0261354577054 -0.0151514757335 -0.0359382909411)
(0.024553697579 -0.0083927228908 -0.0475587244284)
(0.0224770170893 -0.00130366175749 -0.0580056068066)
(0.0202623659731 0.00630304077096 -0.0670394945376)
(0.0183390991978 0.0145416425959 -0.0746787720898)
(0.0167949529785 0.0232446705696 -0.0814833331031)
(0.0151718770949 0.0317601598498 -0.0878273927872)
(0.0130201761942 0.0387403380555 -0.0936062889908)
(0.0106431174946 0.0427700033369 -0.0983750130697)
(0.00859393988677 0.0433979283418 -0.10245973325)
(0.00836989861518 0.0416801368606 -0.108627963055)
(0.00471483083773 0.0401337722306 -0.114153081291)
(0.00723014726724 0.0394781724883 -0.129780216536)
(0.0104550938216 -0.030736428741 0.0926372364463)
(0.0192119701572 -0.0299413609574 0.0768861101402)
(0.0271640448039 -0.0291643861031 0.0603943624919)
(0.0317304047968 -0.0280413411119 0.0434042135383)
(0.0338410617271 -0.0261641768227 0.0258987513541)
(0.0339527479248 -0.0229644952075 0.00830889486305)
(0.0332314884113 -0.0190077304625 -0.00955903464898)
(0.0323113079863 -0.0141856999725 -0.0266416320091)
(0.0311873892914 -0.00872068537595 -0.0415085860591)
(0.0292415034935 -0.00299015085575 -0.0552502479741)
(0.0272809203208 0.00306656274644 -0.06760908071)
(0.0256829326479 0.00963098905464 -0.0789033251296)
(0.0241294815673 0.0167820222629 -0.0899368116713)
(0.0214994478367 0.0238069307881 -0.10085968394)
(0.0169683942913 0.0294813134986 -0.110559562972)
(0.0114394026021 0.0322644242206 -0.116932603472)
(0.00645997109916 0.0315747800873 -0.12047733777)
(0.00544268696639 0.0284555257755 -0.124035115294)
(0.00187770431919 0.0257223555491 -0.126096870913)
(0.00656937170018 0.0240669241697 -0.141414770404)
(0.0103694655663 -0.0245306758667 0.105963063682)
(0.0185975655829 -0.0232694033027 0.0912884393613)
(0.0271705541524 -0.0222995304843 0.0758888174352)
(0.0328712763126 -0.0213362089755 0.0592918598268)
(0.0365104708293 -0.0198170718836 0.0413086344762)
(0.0379915345667 -0.0176756294833 0.021866882212)
(0.038278426312 -0.0145288603231 0.00175660833049)
(0.0379228291898 -0.0109181335279 -0.0180566947144)
(0.036979311643 -0.00695941950169 -0.0357324508312)
(0.0349727252552 -0.00294804914876 -0.0521671589049)
(0.0329958658642 0.00126118246548 -0.0670717416307)
(0.0316340782145 0.00599553768927 -0.0814837769158)
(0.0300568045253 0.0116051111499 -0.0968784112391)
(0.0265835260876 0.0170733370049 -0.111532369783)
(0.0200073473135 0.0212056600054 -0.123948775741)
(0.0113965525651 0.0227109118565 -0.131535024187)
(0.00370215729325 0.0211901445874 -0.133200703018)
(0.00113192386129 0.0178217953037 -0.132601168631)
(-0.00265546711931 0.0142396044716 -0.131549135778)
(0.00557986916569 0.012196364963 -0.146089861492)
(0.0101324605001 -0.0160058722817 0.11642338217)
(0.0180671075976 -0.01462825845 0.104259761942)
(0.0275335455198 -0.0138168512446 0.0905442672468)
(0.0345219786855 -0.0132395667996 0.0743693015097)
(0.039414142705 -0.0122429957279 0.0556252026155)
(0.0425033209063 -0.0108880506352 0.0350120796744)
(0.044284672386 -0.008694277987 0.0120628733122)
(0.0442239705454 -0.00642277423099 -0.0103533478647)
(0.0433140231255 -0.00430136553648 -0.0305907474169)
(0.0412206204966 -0.00225808307314 -0.0492795957619)
(0.0393464621291 -0.000178217542198 -0.066105027241)
(0.0383973666562 0.00241778772055 -0.0823710534468)
(0.0368080931408 0.00546306807639 -0.0991184698042)
(0.0320134375339 0.00887785002399 -0.11807951283)
(0.0230010185964 0.0112871672969 -0.13370686739)
(0.0115015683194 0.0116971153601 -0.141394500301)
(0.00137226952248 0.00978710374432 -0.140337040364)
(-0.00194539050198 0.00610293487266 -0.134857581202)
(-0.00501876623166 0.0039169908185 -0.127678289336)
(0.00634600153858 0.00286377736924 -0.13759718455)
(0.009126438821 -0.00861175195387 0.125027427301)
(0.0169256857195 -0.00786622368081 0.117459598399)
(0.0280874494106 -0.00700791541347 0.105601137548)
(0.03661309503 -0.00621139985663 0.0896740784416)
(0.0430967172851 -0.00525198801621 0.0699076047404)
(0.0473979939093 -0.00401914862112 0.0470254314057)
(0.0498952511692 -0.00263869163144 0.0219877613223)
(0.0509571926204 -0.00126168055262 -0.00331341153468)
(0.0506076887626 -0.000264175555237 -0.0267103432707)
(0.0487024778533 0.000750286440123 -0.0479220952612)
(0.0469367152574 0.00188833848562 -0.0672791567559)
(0.0458462775012 0.00326008140206 -0.0864112559546)
(0.0442441284107 0.0047181190132 -0.107531583619)
(0.0389780166368 0.00676470879963 -0.129862932619)
(0.0280848295971 0.00852050921801 -0.148313155259)
(0.0139744568023 0.00950091817796 -0.157438456814)
(0.00119601276829 0.00941453804521 -0.155776457084)
(-0.0027843908347 0.00848201990603 -0.148011801516)
(-0.00493215958825 0.0094378848604 -0.137298253758)
(0.00850057702892 0.0110637878762 -0.136618991104)
(0.00579789380768 0.0072489432614 0.018586524212)
(0.00153824284618 0.00540238888784 0.0181068096031)
(0.00118693270773 0.00511062111947 0.0156424568047)
(-0.00113963403341 0.00540616546548 0.0143065512374)
(-0.00382404335423 0.00559441011819 0.0146060008072)
(-0.00714259004596 0.0056706434145 0.0165778556075)
(-0.0108530726068 0.00577541184003 0.0210243023665)
(-0.014585020414 0.00594771553361 0.0277800032597)
(-0.0178705562727 0.00614428151803 0.0366436827434)
(-0.0208854254115 0.0058369561538 0.0483031370301)
(-0.0234371970255 0.00591732616161 0.0619552998004)
(-0.0247854577086 0.00604542385089 0.0770223028618)
(-0.025073345804 0.00616725062246 0.0930908427994)
(-0.0243292445322 0.00646227878745 0.108936160085)
(-0.0226357055432 0.00678054267981 0.124474678884)
(-0.0202233573486 0.00736626801244 0.138757288809)
(-0.0173674493587 0.00821211177507 0.151585590234)
(-0.0142312271602 0.00916737219296 0.162790510237)
(-0.00923398815143 0.00979622292854 0.171549280256)
(-0.010574666529 0.00913955166237 0.178480921433)
(0.00409751073437 0.00609552543847 0.0157001085298)
(0.00197003717987 0.00688957118171 0.0131852084606)
(0.00202605047295 0.00829283741785 0.00909156596356)
(0.000330871367678 0.00898329081815 0.00582134749272)
(-0.00269763051365 0.009537384943 0.00474521457927)
(-0.00649747040605 0.00980848476336 0.00678849879129)
(-0.0106077145956 0.00978978335759 0.0116774455388)
(-0.0146599899291 0.00952181494747 0.0195047690007)
(-0.0185807144097 0.00899316401159 0.0303446157198)
(-0.02173753435 0.00819639205536 0.0432729263084)
(-0.0237682537307 0.00765747114847 0.0581568720115)
(-0.025007630307 0.00703161214158 0.0743353575043)
(-0.0251687333364 0.00657571725049 0.0909533870913)
(-0.0242971778579 0.00647594840429 0.107779451084)
(-0.0224911249739 0.00668891343791 0.123602727927)
(-0.0198253676337 0.00730373493866 0.137990281635)
(-0.0165901478106 0.00815937728757 0.150571567838)
(-0.0130316082363 0.00900930078787 0.160705255825)
(-0.00837951562273 0.00920897676378 0.168200214412)
(-0.00818456306992 0.00767840149299 0.172636627164)
(0.00402288748178 0.00868577219026 0.00970853876827)
(0.00361927338187 0.00975863570074 0.00475104108268)
(0.00324845174997 0.0111428163772 -0.00105576119404)
(0.00087571015802 0.0120257469658 -0.00548049273619)
(-0.00238516522648 0.0126839434886 -0.00721997214282)
(-0.0067271498344 0.0129939029696 -0.0053873358936)
(-0.0114263531163 0.0129119078276 -0.000133540435932)
(-0.0157593911702 0.0124456091829 0.00881418032865)
(-0.0195655407406 0.0118762982533 0.0208962329661)
(-0.0225897295881 0.0113903110701 0.0353589059879)
(-0.0247581940837 0.0107360753032 0.0515280121138)
(-0.0258703954166 0.0100505971793 0.0689020214688)
(-0.0257062203538 0.00956733253002 0.0866680732965)
(-0.02446779812 0.00932535800372 0.10403248368)
(-0.0221863562567 0.00952962341417 0.120172571545)
(-0.0191206335348 0.0101253875894 0.134424525782)
(-0.0154942576694 0.0109815548493 0.146310819683)
(-0.0116695151986 0.011913304462 0.155316682362)
(-0.00733918594564 0.0127501827639 0.161558702219)
(-0.00662200313164 0.0138707993732 0.164144348902)
(0.00416600524222 0.00908930896103 0.00299141534083)
(0.0047467486277 0.0105869368047 -0.00404614041314)
(0.00455296005937 0.0117388181806 -0.0114439602629)
(0.00199486962308 0.0131107371196 -0.0175057396769)
(-0.00205187446973 0.0139611480405 -0.0201297903394)
(-0.00706486068089 0.0143522103347 -0.0183022309193)
(-0.0121678326358 0.0143491213986 -0.0121561319792)
(-0.0168678149747 0.0140694052415 -0.00222285807258)
(-0.0208607145598 0.0136422092684 0.0108787474441)
(-0.0239221114975 0.0131809647055 0.0264992710176)
(-0.0259476280408 0.0126365280777 0.043856665529)
(-0.0268577930394 0.0122293962718 0.0621948187373)
(-0.0265207339008 0.0118292451646 0.0807112084006)
(-0.0248794456708 0.0116447503963 0.0984757828499)
(-0.0220673998111 0.0117924052705 0.114763473421)
(-0.0184361337402 0.0121983772692 0.128684961985)
(-0.0142691417967 0.0129681676684 0.139700696811)
(-0.0101596252173 0.0139344944822 0.147263887035)
(-0.00587620047147 0.0154479310104 0.151683545403)
(-0.0050312293459 0.0184719866255 0.15262246567)
(0.00454755267345 0.00870758701219 -0.00390080176719)
(0.00599278203144 0.0100335040491 -0.012553720824)
(0.00600181356982 0.0114182309313 -0.0215491415978)
(0.00300201692549 0.0126842214695 -0.0290831470994)
(-0.00168764632742 0.0135476758494 -0.0321638921603)
(-0.00716132363097 0.0140505455226 -0.0301664579944)
(-0.0125643058398 0.0142918177227 -0.0234348282119)
(-0.0174380791453 0.0143510047424 -0.0127876840558)
(-0.0214899577366 0.0143703422832 0.00106017592173)
(-0.0245297647874 0.0143868504405 0.0173195185652)
(-0.0265310941224 0.0144027229521 0.0351951848486)
(-0.027418941569 0.0144125801558 0.05391540355)
(-0.0269659536403 0.0143573124862 0.0726261892876)
(-0.0251061233423 0.0143150204626 0.0904190712799)
(-0.0219156570908 0.01444787338 0.106438452987)
(-0.017673726919 0.0147810442145 0.11986243942)
(-0.012940389404 0.0153026793511 0.130015859605)
(-0.00838760356329 0.0161790298882 0.136068647448)
(-0.00385811278852 0.0182602423284 0.138342719034)
(-0.00307434516397 0.0229238119007 0.137747235572)
(0.00515877227778 0.00685845719902 -0.00968522126252)
(0.00737996553283 0.00806780742211 -0.0193036037991)
(0.00750302910714 0.00932458482211 -0.0304953295692)
(0.00404471132522 0.0104926439646 -0.0386927463871)
(-0.00102974524903 0.0115268154857 -0.0420532774933)
(-0.00675561262833 0.012315853688 -0.0399656435761)
(-0.0122934489011 0.0129941326318 -0.033015426257)
(-0.0172217052358 0.013596741527 -0.0222067159843)
(-0.0212450404009 0.0142350410356 -0.00820548314016)
(-0.0242418465462 0.0149299520834 0.00802047089502)
(-0.0262764494378 0.0156709154002 0.0256898793055)
(-0.0272729737693 0.0162823530508 0.0439957861585)
(-0.0269760100145 0.016662668689 0.0621992985614)
(-0.025075411967 0.0167013835043 0.0792733657486)
(-0.0215984290478 0.0169098550704 0.0948058854682)
(-0.0168976448004 0.0173208731469 0.107711066732)
(-0.0116704653616 0.018015923242 0.117009356373)
(-0.00653789830691 0.0188711395686 0.121466225622)
(-0.00165885559841 0.0213102605916 0.121679965505)
(-0.00112506183323 0.027345882908 0.119907933096)
(0.0059989153764 0.00392604298762 -0.0143698956951)
(0.00873952046996 0.00488080305368 -0.0246773733986)
(0.00887971813457 0.00597747939404 -0.0365109169313)
(0.00527430577344 0.00720763712756 -0.0454531659989)
(-8.56646820444e-06 0.00852361810819 -0.049330953836)
(-0.00588043564656 0.00975781344284 -0.0474085727963)
(-0.0113994668283 0.0108976949034 -0.0406788353534)
(-0.0162410259306 0.0121231828634 -0.0302279627171)
(-0.0201408312131 0.013429071933 -0.0168548628258)
(-0.0230690186543 0.0148371908202 -0.00144887638367)
(-0.0251963031529 0.0163085672831 0.0152399399413)
(-0.026445117767 0.0175774681125 0.0324037269717)
(-0.0265691757571 0.0186790949937 0.0493833875844)
(-0.024762070691 0.0192639268115 0.0646017808287)
(-0.0208461805912 0.0198771997836 0.079310269502)
(-0.0154823925295 0.020379296185 0.0917406263674)
(-0.00977845235202 0.0211776637216 0.101267303262)
(-0.00442573946144 0.022484019565 0.104337080837)
(0.00019782072679 0.0254510094844 0.103112224196)
(0.000295616468169 0.0328532273682 0.0995511699561)
(0.00664896391306 5.17143522314e-05 -0.0165726589233)
(0.00998963589055 0.000878478095155 -0.0273428923134)
(0.0104486583476 0.00193632889877 -0.0399347325423)
(0.00678984448242 0.00331599840009 -0.0495977560855)
(0.00143236090142 0.00495476129392 -0.0540671602622)
(-0.00454203470557 0.00670777302132 -0.0526629718289)
(-0.00998331611703 0.00848830101275 -0.0464676840587)
(-0.0145884296693 0.0103582258882 -0.0369794561653)
(-0.0183272651928 0.0122952827503 -0.024877207061)
(-0.0211693522379 0.0143619282512 -0.0110313006719)
(-0.0234324298043 0.016586906415 0.00393981533697)
(-0.024887426071 0.018424572973 0.0193709686846)
(-0.0251326989135 0.0201998887243 0.0354509681478)
(-0.0235533812365 0.0219984648802 0.0488981823212)
(-0.0192712379772 0.0236598528883 0.0633086852854)
(-0.0138122811965 0.025046359253 0.0752090350758)
(-0.00750915759525 0.0262165206374 0.0833897367049)
(-0.00152213052827 0.0280296325967 0.0865682065412)
(0.00216356052689 0.0312441283774 0.0842122276243)
(0.00190209098267 0.0380380794088 0.0789906835469)
(0.00742147001687 -0.00451589393378 -0.0162327284225)
(0.011219115321 -0.00353761303433 -0.0273045227507)
(0.011921635323 -0.0025072021203 -0.0403588640132)
(0.00851208792411 -0.000980929923001 -0.0508532479348)
(0.00326074067545 0.000989487945898 -0.056209768388)
(-0.00255346291532 0.00324641462178 -0.055780312825)
(-0.00781403213494 0.00573139953842 -0.0508875340325)
(-0.0122961771549 0.00824885635889 -0.0429209871812)
(-0.0159030909827 0.0107952027213 -0.0327320290146)
(-0.0186267420533 0.0136073670606 -0.0211424287373)
(-0.0212375408195 0.0168128657655 -0.00813589113782)
(-0.0228636647398 0.0194733880016 0.00539217958388)
(-0.0224744495701 0.0219474939731 0.0194491674951)
(-0.0204369965419 0.0249950891071 0.0342548633424)
(-0.0168789226828 0.0272443508055 0.0479348417095)
(-0.0114991636802 0.029237894972 0.0589401151409)
(-0.00503881841423 0.0310666007117 0.0658752418238)
(0.00119023568898 0.032928087133 0.0672501710315)
(0.00423824897327 0.035935108314 0.0628397331316)
(0.00359329760021 0.041190085148 0.0551206981088)
(0.00802812187444 -0.00949349854291 -0.0129381073476)
(0.0123413679588 -0.00843471562813 -0.0242791448635)
(0.0133741291822 -0.00721672124198 -0.0377900851473)
(0.0103753178608 -0.0055388818645 -0.0490734310424)
(0.00545135502847 -0.00325673373298 -0.0555145793409)
(-5.69924229801e-05 -0.00050851137387 -0.0564693845913)
(-0.00507686943232 0.00252766792716 -0.0533353116204)
(-0.00942629552628 0.00564336347738 -0.0475345917539)
(-0.012821957353 0.00878604396377 -0.0401397830546)
(-0.0153236888302 0.0127005317371 -0.0312552152242)
(-0.0182779456236 0.0168947338008 -0.0194559206758)
(-0.0194971015653 0.0205834493156 -0.00691698500767)
(-0.0193775002431 0.023842815041 0.00567092638047)
(-0.0174675866441 0.0267408925826 0.0185662694506)
(-0.0139250234333 0.0295314340461 0.0307038075069)
(-0.00844079285288 0.0322456436873 0.0402756909884)
(-0.00191980912522 0.0347091630473 0.0455367501361)
(0.00432850628117 0.0367934850941 0.0447362694648)
(0.00649031657106 0.0395745062344 0.0383519972297)
(0.00539755135415 0.0432390429468 0.0282263420826)
(0.00862746902077 -0.0145886486292 -0.00623114238469)
(0.0132954064442 -0.0135357180446 -0.0178537009299)
(0.0147714426494 -0.0121355639909 -0.0320039907198)
(0.0123036585329 -0.0102875653912 -0.0441235118522)
(0.00791741326102 -0.00774845367226 -0.051873118493)
(0.00288906295236 -0.00454151509157 -0.0545653567394)
(-0.001818015747 -0.000963855562554 -0.0536399769625)
(-0.00601189390207 0.00275644654025 -0.050655651162)
(-0.00885657167072 0.00684384289351 -0.0468817253767)
(-0.0115313647973 0.0115730859468 -0.0398896969512)
(-0.0138690415421 0.0164151432053 -0.0290987350097)
(-0.0157561747988 0.0205321716378 -0.0195219534784)
(-0.0156188209509 0.0245178272718 -0.00884287294929)
(-0.0137995711107 0.0281899469528 0.00221075536208)
(-0.010250633694 0.0318486657519 0.0125439075895)
(-0.00481585652639 0.0353013928779 0.020164143763)
(0.00148484009778 0.0381512274875 0.0233599263621)
(0.00744169810649 0.0399688880107 0.0202736009434)
(0.00834764623176 0.0420592532279 0.0123053971527)
(0.00723665576244 0.0443697075231 5.38436777985e-05)
(0.00887442812356 -0.0193464987451 0.00403371209639)
(0.0139228630792 -0.0183843117231 -0.00839077401325)
(0.0161634079822 -0.0169626617967 -0.0227867732127)
(0.0143286703984 -0.0149979010809 -0.0358695013932)
(0.0106327130393 -0.0122344725819 -0.0449809739616)
(0.00629308991609 -0.00867457539752 -0.0498301609879)
(0.00203418866152 -0.00470558808657 -0.0516023110132)
(-0.00160585396694 -0.000615433084267 -0.0519059557027)
(-0.00408063765697 0.00448676038704 -0.0510995758403)
(-0.00698802020579 0.00995396607815 -0.0465392121774)
(-0.00922171172962 0.0147718637706 -0.0396564795679)
(-0.010996081357 0.0199513601256 -0.0323297727911)
(-0.0110818993342 0.0249520820211 -0.0236445181535)
(-0.00948190233368 0.0296548507966 -0.0146437307581)
(-0.00609836772601 0.0341925217689 -0.00662073998031)
(-0.00106009840221 0.0381712435457 -0.00137762391506)
(0.00454770997933 0.0410852582606 -0.00035522085375)
(0.00992599376623 0.042267451338 -0.00523193511161)
(0.0094690836281 0.0433014706688 -0.0135408923644)
(0.00876530192669 0.044845890717 -0.0279593974223)
(0.00917984863429 -0.0232498400933 0.0172337731229)
(0.0143968619047 -0.022262187532 0.00444895642303)
(0.0173871771192 -0.0210189691483 -0.0103007804311)
(0.0163672929699 -0.0191541074213 -0.0242160616925)
(0.0135126994384 -0.0163468881827 -0.0350423458567)
(0.00986871366125 -0.0126452216658 -0.0423771697206)
(0.0060180193375 -0.00844038136506 -0.0473607113478)
(0.00316790925667 -0.00390004774233 -0.0517732377809)
(0.00080447141525 0.00148026119942 -0.0534757702959)
(-0.00138055820662 0.00738674698892 -0.0507691482771)
(-0.0038456433491 0.0129547370405 -0.0480828986407)
(-0.00530557324555 0.0190336713108 -0.0438752078195)
(-0.00547027563035 0.0250934493098 -0.038132183631)
(-0.00418944364067 0.0308418714288 -0.0321117818626)
(-0.00142014300941 0.036080597628 -0.0270301689329)
(0.0025924619889 0.0403003462856 -0.0243215347037)
(0.00679228419331 0.0429313853166 -0.0252510174464)
(0.0111876663864 0.0433098830308 -0.0313788953452)
(0.0101578103106 0.0434000576855 -0.0402329505077)
(0.010515829488 0.0439818103805 -0.0530436391759)
(0.00932065354245 -0.025586594248 0.0324887895383)
(0.0146588823164 -0.0247948253033 0.0197837045704)
(0.0183423947087 -0.0237613776968 0.00492151281692)
(0.0182709846964 -0.0221890359056 -0.00978250434861)
(0.0163650396872 -0.0195750817635 -0.0222556624962)
(0.0135454857492 -0.0159887162877 -0.0321608228069)
(0.0105025203778 -0.0118114362663 -0.0404161374701)
(0.00841280759415 -0.00659796398284 -0.0482298267969)
(0.00609445058077 -0.00121475833932 -0.0527362487428)
(0.0044918158826 0.00450291057091 -0.0542775963783)
(0.00245871214781 0.0108555358029 -0.0553418788713)
(0.00119768491583 0.0176264120916 -0.0547532806326)
(0.000896559781681 0.0244309922541 -0.052734518112)
(0.00161738231298 0.0308726170924 -0.0502640108533)
(0.00331779524896 0.0364889959538 -0.048369377812)
(0.00585746993594 0.0406304282702 -0.0481050078862)
(0.00831400320325 0.0428845852959 -0.0503664094026)
(0.0116468850975 0.0425065403578 -0.0567825961737)
(0.00988117814059 0.042091615215 -0.0650387281546)
(0.0115056766647 0.041126602497 -0.0780866432582)
(0.00943417491319 -0.0261000307903 0.0491197408926)
(0.0146065202104 -0.0254124268169 0.0364637426772)
(0.0189236932981 -0.0245477080932 0.0215486406064)
(0.0199192165166 -0.0233726963284 0.00638526188158)
(0.0190553533438 -0.0211001530852 -0.00755822544917)
(0.0170171923184 -0.0178922098437 -0.0199330506205)
(0.0151549932094 -0.0140833262888 -0.0318819670365)
(0.0138298998896 -0.00917910104384 -0.042080119753)
(0.0118648017657 -0.0036364445924 -0.0496061899369)
(0.0104165832001 0.00199294603153 -0.0557499591495)
(0.00891176883584 0.0084432113578 -0.0605908409418)
(0.00782337221527 0.0153269191289 -0.0639272985932)
(0.00728370925573 0.0223051681159 -0.0660768280371)
(0.00728149559147 0.0289388115945 -0.0675959889199)
(0.00756938975809 0.0344340038979 -0.0691960049206)
(0.00832558616321 0.0380761927383 -0.0712927077672)
(0.00879568016729 0.0395169728986 -0.0744648686112)
(0.0111908778396 0.0388687637474 -0.0807026750819)
(0.0088469295287 0.0382013231798 -0.087813332852)
(0.0119456788276 0.0359704885993 -0.101152089794)
(0.00949553873327 -0.0246713619473 0.0655097186298)
(0.0144052109059 -0.024062108645 0.0529189677488)
(0.0191001309151 -0.023247815347 0.0381565202217)
(0.0210447155667 -0.0222330987427 0.0227454490425)
(0.0213003138502 -0.020446242459 0.00769912411398)
(0.0200985506279 -0.0177529287744 -0.00676560415615)
(0.0188777079844 -0.0144534256048 -0.0216543758766)
(0.0176200731316 -0.0106175939097 -0.0352440838693)
(0.0171940605651 -0.00532228918903 -0.045578645375)
(0.01579536591 3.4437121292e-05 -0.055333724827)
(0.0145996531248 0.00591486368633 -0.0637733858729)
(0.0136883522802 0.0122723817479 -0.0708772471337)
(0.012920002114 0.0187764932105 -0.0770670331215)
(0.01213192446 0.024999580592 -0.0825478646942)
(0.0109790983987 0.0300488695179 -0.0874185700626)
(0.00967493649788 0.0329644319021 -0.091594782634)
(0.00858924443443 0.0334331826806 -0.0951037057285)
(0.010454626535 0.0321297472252 -0.100373482061)
(0.00692674602235 0.0318707073317 -0.106590350021)
(0.0119968171086 0.0289976855967 -0.120244591119)
(0.0096384463027 -0.0217089201663 0.0804480821403)
(0.0140933777846 -0.0209936800359 0.0681061056982)
(0.0190888273771 -0.0201743812896 0.0535775982502)
(0.0217521653994 -0.019195217428 0.0382289339968)
(0.0229241265573 -0.0177911456261 0.022364811766)
(0.022648393752 -0.0156259062365 0.00615897560176)
(0.0220588202738 -0.0129629162399 -0.0111589709417)
(0.0211490734276 -0.00978261448923 -0.0275611607867)
(0.021128943709 -0.0056730314524 -0.0408769757836)
(0.0199933058422 -0.00113932598615 -0.0535685827318)
(0.0189996664261 0.00372878281499 -0.0651073476395)
(0.0182280794445 0.00880324531965 -0.075365662561)
(0.0173445647537 0.013849228006 -0.0850826109604)
(0.0158444870952 0.0193714589218 -0.0943373604761)
(0.0133455703365 0.0237559182553 -0.102158999098)
(0.0102420096915 0.0260660989377 -0.107803902487)
(0.00724269864118 0.0259581891867 -0.111728666535)
(0.00890770510863 0.0242529045836 -0.11520094518)
(0.00560721185941 0.0220660535575 -0.119803312924)
(0.0123599866611 0.0184115047507 -0.132531632862)
(0.00989966625117 -0.01768695936 0.0932750088227)
(0.0136844453164 -0.0167331267241 0.081488589472)
(0.0189775685042 -0.0158722235954 0.0677604510346)
(0.0222850132804 -0.0150300357425 0.0525802270019)
(0.0243068314947 -0.013792954942 0.0359840154279)
(0.0248439132749 -0.0121149096164 0.018059115973)
(0.0248542567606 -0.00998139135992 -0.00145109401645)
(0.0241851547729 -0.00745819520016 -0.0203460432589)
(0.0241904988296 -0.0043895485172 -0.0361132600042)
(0.0230137775064 -0.00105174130389 -0.0512099493169)
(0.0219064373953 0.00260576734317 -0.0650037147148)
(0.0207933677026 0.00666985697094 -0.0787721387825)
(0.0202855530368 0.0116955152081 -0.0920458244384)
(0.0188177039392 0.0158986483044 -0.104309212354)
(0.0148730022104 0.0192714899661 -0.114562079639)
(0.00998857825942 0.0209376032556 -0.121243480596)
(0.00562888028198 0.0206306005696 -0.124434546377)
(0.00585211296516 0.0190818161842 -0.12527523605)
(0.00154619910086 0.0157689746101 -0.127979814233)
(0.012208982293 0.013137521591 -0.138652839605)
(0.0100994269357 -0.0114804369499 0.103179536744)
(0.0130882563388 -0.0110646503977 0.0936027560926)
(0.0190154989173 -0.0105875660074 0.0813800363774)
(0.0231826481459 -0.00998997120895 0.0664259563287)
(0.0261532331998 -0.00896627609762 0.0491498920054)
(0.0277047654717 -0.0076661425947 0.0297990328073)
(0.0287023030873 -0.00582005729074 0.00778279355233)
(0.0279315961117 -0.00414230477214 -0.0133300993327)
(0.0277625898873 -0.00275917854764 -0.031192596236)
(0.0263675031639 -0.0010679184098 -0.0485998511158)
(0.0254442091189 0.000842094511987 -0.0649378016588)
(0.0255286058084 0.00340330763337 -0.0800671408006)
(0.0242883555234 0.00652472870023 -0.0954004683904)
(0.0208878878288 0.00911425458469 -0.110493614432)
(0.0160520593177 0.0112725391273 -0.123033179922)
(0.00992427464981 0.0121403589681 -0.130332063144)
(0.00454732784837 0.0113869519882 -0.132065687094)
(0.00396991678263 0.00948831470784 -0.129476763345)
(-0.000911644405295 0.00567636623931 -0.127329217252)
(0.0138806801915 0.00656111889635 -0.136472217149)
(0.00983208116532 -0.0094465181552 0.10956493672)
(0.0117515664044 -0.00821700437545 0.104324367039)
(0.0194690954158 -0.00719986492141 0.0937013713943)
(0.0246969943633 -0.00620056669938 0.0794756567434)
(0.0286486082198 -0.00502213552929 0.0616363097164)
(0.0312298329832 -0.00361225393887 0.0408998996009)
(0.0331396856755 -0.00186993763818 0.017719159706)
(0.033786767552 -8.26192361006e-05 -0.00593881161397)
(0.0338881932919 0.0011225556003 -0.0272660085813)
(0.0325400270499 0.00256209309891 -0.0473538102127)
(0.0311844269545 0.00422051765347 -0.066343553732)
(0.0300935287621 0.00610106988399 -0.0849379777792)
(0.0285568266364 0.00763463080236 -0.103574242835)
(0.0250878289744 0.0102987832279 -0.121828576005)
(0.0185251583176 0.0125863674005 -0.136599617264)
(0.0102529367322 0.0142079429917 -0.145052068041)
(0.00295267190323 0.0152492686408 -0.146732820821)
(0.00189508199414 0.0159792251694 -0.142555009411)
(-0.000393972641725 0.0158931401343 -0.138342806977)
(0.0181331863803 0.0194217134676 -0.135874055367)
(0.00588618137984 0.00687739593735 0.01285377969)
(0.00200077807897 0.00544444905291 0.0159945455404)
(0.00131811940025 0.00529851640141 0.0130888388452)
(1.7304200704e-05 0.00536266079848 0.0118455005466)
(-0.00169340923372 0.0054195007778 0.0122471741083)
(-0.00368303733013 0.00545498793929 0.0144501764466)
(-0.00593820434059 0.00553353575502 0.0188760709371)
(-0.00825352810069 0.00566590100879 0.0256933814944)
(-0.0103198864419 0.00581509621237 0.0347631844508)
(-0.0121963363363 0.00593394279693 0.0458961686248)
(-0.0136671868315 0.00627121391097 0.0590860819114)
(-0.014447827405 0.0068214913417 0.0737036864349)
(-0.0148756017674 0.00703675977382 0.0889749586669)
(-0.0148314860494 0.00769592103741 0.104261561664)
(-0.0140154425602 0.00832511615289 0.119194298595)
(-0.0127849161695 0.00915392114564 0.133015666442)
(-0.0112418831215 0.0100549567985 0.14529311191)
(-0.00984002670374 0.0109842703617 0.156026675419)
(-0.00741896731659 0.0118193117107 0.16542511484)
(-0.0128335317831 0.0128261771798 0.167248158862)
(0.00471422907437 0.00488611972431 0.0137746549412)
(0.00209182700651 0.00475704044198 0.0127109490203)
(0.00176114819897 0.00540961340247 0.00869341786269)
(0.000630164022926 0.00580662485513 0.00554851528952)
(-0.00107141822068 0.0060930800054 0.00488222149617)
(-0.00324686084446 0.0062734834685 0.00703000653683)
(-0.00565941664411 0.00636144628336 0.0119445267743)
(-0.00804101326706 0.00627903569992 0.0197230036274)
(-0.0102301583052 0.00605894800964 0.0300723301152)
(-0.0121580688236 0.00586473152763 0.0431013685331)
(-0.0135749619054 0.00579514363062 0.0577164891633)
(-0.0146735263595 0.00570592801479 0.0734296018032)
(-0.0150595262098 0.00559341753903 0.0898573840205)
(-0.0148001857778 0.00597846380131 0.106159744169)
(-0.0140855717349 0.00646473660286 0.121718277842)
(-0.0127477206068 0.00721858622723 0.1358608499)
(-0.0110728638628 0.00805493789141 0.148240988627)
(-0.00941028559837 0.00867666123491 0.158493944408)
(-0.00729708332257 0.00853574876577 0.16685101938)
(-0.0107190470397 0.00630487723731 0.167007531394)
(0.00475096289526 0.00569899313057 0.0069993433802)
(0.002891170293 0.00612122989104 0.00438064624329)
(0.00252836764896 0.00675157777664 -0.000982708098875)
(0.00107083278111 0.0072178460526 -0.00482674144388)
(-0.000880718110059 0.00761346689494 -0.00617055940842)
(-0.0033453794569 0.00787185386268 -0.00411311933469)
(-0.00598043430029 0.00796676971814 0.00114066208727)
(-0.00856448415032 0.00795103849383 0.00994510167901)
(-0.0107855704218 0.00779133603067 0.0214839190523)
(-0.0126409102872 0.00776457503757 0.0353479948862)
(-0.0140296843994 0.00764203122234 0.0508907297294)
(-0.014880039119 0.0075307028168 0.0678632354085)
(-0.0150460732833 0.00765848372265 0.0849089090641)
(-0.0145966185895 0.00779053868723 0.101745576559)
(-0.013590115453 0.0082272237914 0.117516261671)
(-0.0120956768193 0.00890531614756 0.131554569111)
(-0.0102676241824 0.00960940230251 0.143389460885)
(-0.0084670741303 0.010157956934 0.152631749961)
(-0.00694238472158 0.0102753754224 0.159432957621)
(-0.00962735422853 0.00816170200005 0.158657344694)
(0.00501276876818 0.00590469164566 0.000225823959682)
(0.00366755296155 0.00645083671444 -0.00430686121993)
(0.00330820911843 0.00694355926266 -0.0107270035864)
(0.00175992435582 0.00764255036283 -0.0160192985824)
(-0.000516176538244 0.00821239596983 -0.0178734139091)
(-0.00339647050233 0.00858671620492 -0.0158317015729)
(-0.00634346346906 0.00877609391993 -0.00991075123894)
(-0.00905100779251 0.00887765379733 -0.000501256791785)
(-0.0113815568417 0.0089323318927 0.01196182284)
(-0.0132232811454 0.00895443967041 0.0267975665506)
(-0.0144285295103 0.00891856680595 0.0432988909871)
(-0.0150305639725 0.0089691629314 0.0608071046276)
(-0.0150028908053 0.00905633121174 0.0784855523806)
(-0.0142576105132 0.00925533672434 0.0956768374354)
(-0.0128887413465 0.00966708133294 0.111499599942)
(-0.0111517402592 0.010137653436 0.125254230196)
(-0.00913084836514 0.010671874536 0.136331250107)
(-0.00728579171867 0.0110812483752 0.144287406432)
(-0.0056710295423 0.0115084256893 0.149584780164)
(-0.00785450891549 0.00918967029535 0.148186572975)
(0.00538014312423 0.00582892060206 -0.00653524014583)
(0.004445987079 0.00609738546247 -0.012219218376)
(0.00427994625786 0.00656588975751 -0.0199828937545)
(0.00259158711124 0.00724290694073 -0.0262172963289)
(-4.83665424291e-05 0.00785475370804 -0.0287191865754)
(-0.00319805460596 0.00838433002035 -0.0266666069635)
(-0.00630834871779 0.00883080352213 -0.0203455526739)
(-0.00912406419346 0.0092130107276 -0.0103968242108)
(-0.011472334526 0.00957205510228 0.00262836050308)
(-0.0132204087442 0.00990806329155 0.0179310319013)
(-0.0143598791272 0.010210560948 0.0348116078406)
(-0.0149031330207 0.0105042611512 0.0525584205584)
(-0.0146696280549 0.0107480567678 0.0703556559584)
(-0.0137224449433 0.010920149628 0.0874544217388)
(-0.0121337868957 0.0112896656175 0.102988164489)
(-0.0100414946604 0.0117961732065 0.116121079641)
(-0.00785057160271 0.0120073784562 0.126383797665)
(-0.00589968954861 0.0119687714815 0.132940129773)
(-0.00389842985744 0.0120765331621 0.136338154277)
(-0.00554618624345 0.0103380786434 0.134871425696)
(0.00568620944425 0.00461566090003 -0.012478363675)
(0.00523328445993 0.00489761103607 -0.018854304619)
(0.0052654820389 0.00526795860315 -0.0278274721326)
(0.00348327498924 0.00589422776418 -0.0348897760217)
(0.000645155713612 0.00662957803578 -0.0377854341493)
(-0.00262497093703 0.00739843148075 -0.035803926907)
(-0.00579475740769 0.0081722589385 -0.0294078786713)
(-0.00861034301084 0.00893284057993 -0.0193548269834)
(-0.0109257105247 0.00970980734686 -0.00633094803425)
(-0.0126563628406 0.0104487337116 0.0089207153213)
(-0.0138437197173 0.0111598612808 0.0256125266115)
(-0.014432113923 0.011704624849 0.0429825036042)
(-0.014264348293 0.0121004217275 0.0602890858416)
(-0.0131230048002 0.0118101424248 0.0766396995941)
(-0.0112749054323 0.0118891090202 0.0916167709133)
(-0.00909070702551 0.0122910311722 0.104417814815)
(-0.00692773374124 0.0133220518374 0.113315494372)
(-0.00476903343804 0.0127160581057 0.118206079367)
(-0.0021842657086 0.0131071615298 0.119742391491)
(-0.00327601911889 0.0115671010771 0.118719288523)
(0.00619243727747 0.00267968690898 -0.0170067726393)
(0.00617700988896 0.00298634823273 -0.0238541849294)
(0.00628638270716 0.00331737304462 -0.0335495453538)
(0.004492417402 0.00394258904179 -0.0412446054728)
(0.00160870559684 0.00484494379087 -0.0446035103845)
(-0.00168204008623 0.00590112331992 -0.0428960753406)
(-0.00480659608946 0.00702975094193 -0.0368157872607)
(-0.00755933786408 0.00819937119968 -0.0271899893651)
(-0.0098519880099 0.00935812238607 -0.0147269147091)
(-0.0116335623298 0.0104626444348 -0.000198760853855)
(-0.0130271968603 0.011478064615 0.0156533402965)
(-0.0138806586359 0.0121464829428 0.032015856779)
(-0.0141131244936 0.0133081708774 0.0477785948172)
(-0.0132200709113 0.0128698915421 0.0620942917682)
(-0.010375832597 0.0139431730755 0.0759583649155)
(-0.0074031093174 0.0133232893718 0.087372109942)
(-0.00531869811919 0.0138114493605 0.0948756260131)
(-0.00345519409241 0.0111283494532 0.100617450529)
(-0.000565624827443 0.0106874025715 0.101019495768)
(-0.00164174911532 0.0152174886399 0.0985772341737)
(0.00670278890422 0.000494368901016 -0.0194851310136)
(0.00706054237108 0.000630340245109 -0.0264387850455)
(0.00742686864631 0.000919126672851 -0.0368232939855)
(0.00569844645758 0.00160979019498 -0.0451688141587)
(0.0028480984026 0.00271537218643 -0.0491336897171)
(-0.000403609001107 0.00409505017495 -0.0480438521591)
(-0.00343853962765 0.00561324799195 -0.0425862526981)
(-0.00612518097049 0.0071610293195 -0.0338784708783)
(-0.00844263137158 0.0086323495642 -0.0225642464158)
(-0.0103918274998 0.0100205132316 -0.00943455947191)
(-0.0123077959014 0.0113207037182 0.00484704198728)
(-0.013192988695 0.0117277639182 0.0193086545819)
(-0.0126132068311 0.01344487002 0.0307267725376)
(-0.0138825197018 0.0123275234693 0.045008465843)
(-0.0104427083526 0.0131830933197 0.0591904723371)
(-0.00728174391909 0.0136459340588 0.0700953487373)
(-0.00373201978153 0.013442604819 0.0776266940872)
(-0.000622349069708 0.0139741156291 0.0815650672016)
(0.00138908477585 0.0141140381872 0.0807554770752)
(0.00077919874453 0.0177261063025 0.0800718339072)
(0.00714316406914 -0.00228704338021 -0.0193614509027)
(0.0078478835622 -0.00202342781901 -0.0264401607129)
(0.00850522929355 -0.00172852150071 -0.037393748965)
(0.00700613725759 -0.000950961454098 -0.046437524487)
(0.00431470392254 0.000349760666731 -0.0512180671233)
(0.00120500570251 0.00203920276967 -0.0510721454632)
(-0.00173457791098 0.00392739799906 -0.0468434310112)
(-0.00443475892753 0.00580319083034 -0.0395655812047)
(-0.00686807888456 0.00746791457886 -0.0300525615552)
(-0.00909050680136 0.0092952926177 -0.019165225095)
(-0.0121917124228 0.011239946381 -0.00694027754964)
(-0.01357023935 0.0110126358228 0.00470957975697)
(-0.0125200195678 0.0117847733865 0.0168858203872)
(-0.0108551801519 0.014484601062 0.0316292412637)
(-0.0087218777314 0.0159002678363 0.0444736300961)
(-0.00575438566678 0.0169765730656 0.0544668416638)
(-0.00226661634893 0.0176311411047 0.0606917706749)
(0.00109088302667 0.0176260243148 0.0623703712613)
(0.00296154976099 0.0176371666132 0.0593097072495)
(0.00417812035167 0.0192955324512 0.0582390818601)
(0.00765994791642 -0.00528323749134 -0.0163574132966)
(0.00866737029658 -0.00492074366361 -0.0236486568595)
(0.0095890050894 -0.00454936284815 -0.0350242709972)
(0.00837015053419 -0.00365945397781 -0.0448383475261)
(0.00593284207062 -0.0021853125309 -0.0506491498968)
(0.00303339252595 -0.000228152289943 -0.0518202658046)
(0.000178703906855 0.00196279317236 -0.0492303098061)
(-0.00266203991743 0.00406745795819 -0.0439590039001)
(-0.00514832223281 0.00582648310272 -0.0372166335723)
(-0.00788407653121 0.00866316063623 -0.0291413320397)
(-0.0116153675379 0.0111340771916 -0.0181047615877)
(-0.0116169762938 0.012518115706 -0.00701530532648)
(-0.0108533972972 0.014390965609 0.00423819347114)
(-0.00908409187808 0.0159028523812 0.0161351263166)
(-0.00679582952637 0.0174155866917 0.0270579656242)
(-0.00372448126809 0.018848960077 0.0355184566747)
(-0.00024310384793 0.0199694237779 0.0401059301564)
(0.00337323234513 0.020324253887 0.0398891135919)
(0.00502455333693 0.020704635247 0.03473831206)
(0.00796360575519 0.0203851179268 0.0326291453)
(0.00812806399621 -0.00822449678521 -0.0101026373997)
(0.00930176190389 -0.00811139473784 -0.0176254930217)
(0.0105380652178 -0.007449423122 -0.0295521159586)
(0.00970582468736 -0.00645817382712 -0.0402396122712)
(0.007630304439 -0.00482977968934 -0.0472885306258)
(0.00501845176378 -0.00263456787798 -0.0500938602488)
(0.0022189199253 -0.000161043491056 -0.0495474700313)
(-0.000875775314097 0.00226279796805 -0.0469785102627)
(-0.00312056135777 0.00496073886082 -0.0440149378605)
(-0.009991204359 0.00712460204682 -0.036663106343)
(-0.00830664172278 0.0108977768574 -0.0267975674714)
(-0.00930323512561 0.0129425458779 -0.019371966277)
(-0.00828610561511 0.0152917399699 -0.0101216651188)
(-0.00658589294177 0.0174161262696 -0.000329331932525)
(-0.00429725154708 0.0195185735856 0.00873050624051)
(-0.00126751800208 0.021414594813 0.0153587882652)
(0.00206754276566 0.0228405588574 0.0181410208909)
(0.00586748687071 0.0232084203724 0.0159798422262)
(0.00702878837095 0.0236573273467 0.00899295224706)
(0.0116319413748 0.0214952116771 0.00615445509675)
(0.00815140119509 -0.0110643301579 -0.000808630497389)
(0.00970563548821 -0.0110778354749 -0.00854411670995)
(0.0116868900376 -0.0102857501616 -0.0209056761983)
(0.011083247103 -0.00918239123753 -0.0325333128691)
(0.0094477953461 -0.00743634072421 -0.0409215875247)
(0.00720576979185 -0.00509157364618 -0.0456663122937)
(0.00459016621596 -0.00251037753178 -0.0475618141253)
(0.00207540148135 -0.00012239043885 -0.0481203642595)
(-2.61925547435e-06 0.00394080892505 -0.0481116771676)
(-0.00410018348088 0.00774172225936 -0.04377276273)
(-0.00498333889946 0.00986390619744 -0.0378479538881)
(-0.00558470324657 0.0131870505125 -0.0319202970081)
(-0.00496704073097 0.0162733960197 -0.0246478404095)
(-0.003598291124 0.0190609480649 -0.0170242172172)
(-0.00151836597913 0.0216800507403 -0.0101919028779)
(0.00124764384108 0.0239021896989 -0.00570276685148)
(0.00420471560006 0.025418958013 -0.00481988111927)
(0.00817094809538 0.0254172593455 -0.00839497754158)
(0.00848863079737 0.0248076615413 -0.0170128351421)
(0.0147721707874 0.0236244695102 -0.0199778856346)
(0.0083093661772 -0.0137174624632 0.0114269761247)
(0.0099576756533 -0.0131410354569 0.00351960939049)
(0.0125230187053 -0.0125423311622 -0.00935211118433)
(0.0124136821473 -0.0114966136648 -0.0218491411621)
(0.0112534213305 -0.00977177992168 -0.0317640075311)
(0.0093319700503 -0.00739308468819 -0.038685166272)
(0.00661091285764 -0.00473053648434 -0.0435180901159)
(0.00465356622466 -0.00202242847834 -0.0483709438595)
(-0.0013129014236 0.000791642303926 -0.0507123819314)
(8.20764401227e-05 0.00591593520702 -0.0475711369742)
(-0.00149913249472 0.00929005814204 -0.0462930689593)
(-0.00163386327757 0.0132299878305 -0.043157178306)
(-0.00118879949609 0.0169682154501 -0.0385980516651)
(-0.000161770877448 0.0203731640827 -0.0337451138177)
(0.00148142127274 0.0233953407253 -0.0295762085617)
(0.00364874642291 0.0257857162921 -0.027376771925)
(0.0057109612345 0.0272021339538 -0.0283401327503)
(0.0089584500732 0.026810356535 -0.0328655986003)
(0.0108146871134 0.0254734000899 -0.0423370057446)
(0.0197267918413 0.0248840405614 -0.0451180308918)
(0.0085860031346 -0.0153075580939 0.0257263462693)
(0.0103405655669 -0.0146169737049 0.0177376847771)
(0.0131255675359 -0.0140759801612 0.00446023496703)
(0.0135616509179 -0.013154246232 -0.00880193881729)
(0.0130168604368 -0.0115850456131 -0.0201662997488)
(0.0115614637794 -0.00934979305411 -0.0292881703094)
(0.0095148879851 -0.00698367981308 -0.0370489235254)
(0.00848387430761 -0.00294698028752 -0.0453522567728)
(0.00427621503053 0.00041739504889 -0.0500805662295)
(0.0040265473909 0.00380529065444 -0.0516326799071)
(0.00294470474808 0.00820617146102 -0.0533862634053)
(0.00270077453437 0.0126621478598 -0.0533857345665)
(0.00286592055537 0.0168822191625 -0.0521083604533)
(0.003453481655 0.0207736731156 -0.0503710171727)
(0.00442585637562 0.0240599361973 -0.0490028915113)
(0.00585090275373 0.0264622996356 -0.0490567724802)
(0.00701855068733 0.0278035101836 -0.0515634408343)
(0.0101153034872 0.0269174320167 -0.0559715870231)
(0.0117392243094 0.0262737704555 -0.0662182618114)
(0.0229543044798 0.0232409324497 -0.0689977011418)
(0.00878032875893 -0.0156567949826 0.0413378827381)
(0.0104487534758 -0.0150260430371 0.0332860845861)
(0.0135553863651 -0.0146113561432 0.0196744397779)
(0.0145331518812 -0.0139064447072 0.00576403369137)
(0.0144617384519 -0.0124556850616 -0.00697510440498)
(0.0131640810914 -0.0104752279339 -0.0182882716922)
(0.012551795231 -0.00834541483549 -0.0301121794643)
(0.0113263867195 -0.00510582856743 -0.0423879463447)
(0.00908571394757 -0.000981131317738 -0.0473500496356)
(0.00784604421121 0.00251611503324 -0.0537125413561)
(0.00728266592615 0.00692801895383 -0.0585643170757)
(0.00695107513563 0.0114548575763 -0.0619683772763)
(0.00680286584529 0.0158126326005 -0.0642772695045)
(0.00687920977665 0.0199077013557 -0.0658988062585)
(0.00701459970395 0.0231720885805 -0.0675641281625)
(0.00752925751173 0.0252743741625 -0.069772690497)
(0.00765749943082 0.026112508595 -0.0733176642737)
(0.0105697908603 0.0253281068916 -0.0777700490225)
(0.0115810419393 0.0246658998093 -0.0882561011108)
(0.0250889270226 0.0211949672359 -0.0902464501086)
(0.00900832944875 -0.0150136827645 0.0569083982405)
(0.0105290066449 -0.0143724491656 0.048704666631)
(0.0136214891931 -0.0139324253412 0.0348937079831)
(0.0151088698178 -0.0132685508457 0.020623202104)
(0.0156019783217 -0.0120743870794 0.00674317027902)
(0.01465853224 -0.0103560766002 -0.00652037296642)
(0.0139281616848 -0.00833972826847 -0.0208151060344)
(0.0107658827356 -0.00670202916879 -0.0350046808928)
(0.0121310416776 -0.00245629887005 -0.0444243513844)
(0.0112842041631 0.00143157808789 -0.0539527094291)
(0.0108770554663 0.00543580350394 -0.0619959156105)
(0.0105904155106 0.00975099431589 -0.0687747914018)
(0.0102359500722 0.0138999061206 -0.0745873174631)
(0.00986605936528 0.0178108453961 -0.0795168518114)
(0.00921705345687 0.0209701599648 -0.0839040436765)
(0.00863778405914 0.0227016688786 -0.0879408008892)
(0.00793130533656 0.0227271466151 -0.0919493024578)
(0.0106174839644 0.0228028096789 -0.0963902805977)
(0.0109009391623 0.020904855494 -0.106888633954)
(0.0264011290048 0.0184546138791 -0.107304034378)
(0.00942821112331 -0.0132984121395 0.0711614135821)
(0.0105843568618 -0.0127458041326 0.0632291816322)
(0.0136858132674 -0.0122842140199 0.0493877343486)
(0.0153881709943 -0.0115409795965 0.03492263871)
(0.0161916371835 -0.0106191732762 0.0201399075062)
(0.015696852987 -0.00917658327295 0.00511900633514)
(0.0152699628593 -0.00749211038385 -0.0116829025965)
(0.0130617642306 -0.0055889556884 -0.0284335174487)
(0.0142139941976 -0.00252860106077 -0.0407722706661)
(0.0138275756589 0.000894173643977 -0.0529217109512)
(0.0136528387889 0.00442768993128 -0.0639442876478)
(0.0133905322954 0.00753377403674 -0.0739198371629)
(0.0128498902926 0.0108581787616 -0.0828394029088)
(0.0121049731591 0.0143426111793 -0.0907012553308)
(0.0107971058884 0.0172521554382 -0.0973944426179)
(0.00896497745984 0.0188233229283 -0.10264938036)
(0.00834606362757 0.0184904400626 -0.106959945789)
(0.010401116765 0.0181089176346 -0.110810143484)
(0.00971698843913 0.0149014891258 -0.121061909874)
(0.0280910769178 0.0132010240793 -0.119923480536)
(0.00965242305605 -0.0110232782145 0.0837199714515)
(0.01036759866 -0.0106302805441 0.0762068904419)
(0.0135103641183 -0.0100559386412 0.063023233954)
(0.0153841967875 -0.00941598294204 0.0486037080587)
(0.0164686977332 -0.0084427088679 0.0330037803495)
(0.0162029599863 -0.00725590964304 0.0162291282155)
(0.0158631846905 -0.00584194271267 -0.00302970356577)
(0.0138080042082 -0.00389832515818 -0.0222399877921)
(0.0152553985253 -0.00146183040413 -0.0368551477519)
(0.0152990169349 0.00120265371853 -0.0512180458703)
(0.0148532830241 0.00392389039528 -0.064548108355)
(0.0142620002336 0.00693887455139 -0.0771402227083)
(0.0143281088824 0.0104242510458 -0.0884348659088)
(0.0136939683285 0.0136502350596 -0.0996557913273)
(0.0117713563659 0.0160804525294 -0.108734972469)
(0.00881029301828 0.0176267558197 -0.11474711773)
(0.00741026986463 0.0178894760799 -0.118641741428)
(0.00850659953887 0.0171594605669 -0.121234331363)
(0.008078649659 0.014316575062 -0.129010964959)
(0.0294907519176 0.0110357010504 -0.124454579798)
(0.00995671072642 -0.0078712240942 0.0941039879613)
(0.0096862709172 -0.00787161434669 0.0884478180164)
(0.0130253249858 -0.00781674483385 0.0764935254644)
(0.0151386932278 -0.00709977728669 0.0620909959873)
(0.0165413888651 -0.00599067015419 0.0457241200361)
(0.0165779503862 -0.00475035426089 0.0272541252613)
(0.0164923867057 -0.00317439760209 0.00540353245165)
(0.0136507068124 -0.00162684618992 -0.0160480805174)
(0.0155337803372 -0.000441514543031 -0.0327969361184)
(0.0153986140745 0.00135787639712 -0.049832369171)
(0.0158354723856 0.00327688470678 -0.0659268412577)
(0.0165218489067 0.00591710507061 -0.0812227713182)
(0.0161664330024 0.00863710061671 -0.0967939767153)
(0.0144405126454 0.0112049049883 -0.110165074087)
(0.0117019275205 0.0134069278291 -0.121206039658)
(0.00848441553365 0.0147392995471 -0.128592240593)
(0.00658376763729 0.0147291471864 -0.13247482623)
(0.00702737052753 0.0137626807153 -0.133529866385)
(0.00294596139458 0.00911280371699 -0.139625882425)
(0.02816217214 0.00530543360522 -0.132862917145)
(0.00996918385819 -0.00995966737521 0.0973533471342)
(0.00728381987709 -0.00894974731395 0.095951086428)
(0.0112559571651 -0.00824744514222 0.0857630944548)
(0.013632329981 -0.00677845578754 0.0725958642059)
(0.0148638563491 -0.00521612220016 0.056150957081)
(0.0154565238772 -0.0034067434706 0.0371644088234)
(0.016751916085 -0.00149150128872 0.0150562081858)
(0.0152209460451 0.00109999248734 -0.00700888890005)
(0.0158435782565 0.0039015727084 -0.0263377303544)
(0.0149941884769 0.00726021580929 -0.0459439193458)
(0.0142559448301 0.01093366894 -0.0641164526168)
(0.0139703049494 0.0143694061753 -0.0812737140803)
(0.013565712092 0.0178729351409 -0.0974513167124)
(0.012202531172 0.021656580087 -0.112435187738)
(0.00945187221196 0.0252971447856 -0.124418675623)
(0.00577209668458 0.028186799714 -0.131545786665)
(0.00347496742416 0.02986778797 -0.133998528406)
(0.00405896332139 0.030986478062 -0.132250848473)
(0.000699287517393 0.0298043188283 -0.134238456445)
(0.0305776555329 0.0313430988745 -0.121177333726)
(0.00298767730884 0.00336549778313 0.00591159467456)
(0.00142025713161 0.00231997745226 0.0137793996364)
(0.000754020859175 0.00232022726126 0.0100868275574)
(0.000902263025996 0.00270697473947 0.00852948434823)
(0.00061560468481 0.00272046933784 0.00917114661901)
(0.000206720825361 0.00221319853896 0.011537517222)
(-0.000352927168023 0.00269428274861 0.0160296651152)
(-0.000942319107372 0.00270439085962 0.0226602066419)
(-0.00158377089609 0.00298856180878 0.0316182639645)
(-0.00239653759658 0.0035713924471 0.0427040996118)
(-0.00321125460627 0.00330814338361 0.0555757042043)
(-0.00425339002497 0.00478853200416 0.0696536045218)
(-0.00520350914603 0.00507940013253 0.0838926703068)
(-0.00592560883148 0.00497580969022 0.0980697483342)
(-0.0060659578214 0.00624219974336 0.111923598901)
(-0.00600399820113 0.00736099844667 0.124783711691)
(-0.0056624117847 0.00837087793216 0.136172008222)
(-0.00481163054742 0.00935472371502 0.146705506203)
(-0.0049747620283 0.00988610095886 0.158656085724)
(-0.00742979076862 0.00842436091396 0.151835506052)
(0.00215951405126 0.00255145034455 0.0116447365999)
(0.00148401987862 0.00219395156168 0.0121846766076)
(0.00126818664132 0.00248865805593 0.00799317779071)
(0.00073274783728 0.00275313097791 0.00516695547342)
(-9.88400742921e-06 0.00299934351083 0.00473364383872)
(-0.00102394589883 0.00322343221421 0.00694583273524)
(-0.00221251639129 0.00355721800441 0.0118964096278)
(-0.00338180390979 0.0037424771686 0.0195526618774)
(-0.00436475778304 0.0038674516166 0.0297976688887)
(-0.00542066685445 0.00411590188706 0.0425546498484)
(-0.00646870691282 0.00435452020123 0.0570026680758)
(-0.00729124227433 0.00479872799684 0.0730071432554)
(-0.00778061535502 0.00511420749322 0.0892082604952)
(-0.00810063174758 0.00572642157461 0.105038815017)
(-0.00810933961659 0.00647252606463 0.120253292392)
(-0.00771767720769 0.00731532622337 0.13413998994)
(-0.00698026382011 0.00818674352536 0.146270125133)
(-0.00617448424288 0.0087875620947 0.156680751765)
(-0.00540890920945 0.00851189837031 0.165952478162)
(-0.00716171924892 0.00731556046365 0.161187476034)
(0.00259681161649 0.00200435733871 0.00401515627796)
(0.00199920012938 0.00254516479556 0.00400806877771)
(0.00181782401785 0.00300982672439 -0.000831240773726)
(0.00108484303423 0.00347714299033 -0.00444479133417)
(7.86566574581e-05 0.00395314955021 -0.00560885669625)
(-0.00124493080681 0.00440053591518 -0.00345670948537)
(-0.00272020937933 0.00487552318771 0.0018770100836)
(-0.00414181618412 0.00522492298989 0.0103627853758)
(-0.00537190996697 0.00556814507984 0.0215614908347)
(-0.00647146814898 0.0059714440408 0.035063820649)
(-0.00717857858874 0.00628414249206 0.050270020886)
(-0.00780844220065 0.00678111654089 0.0667429518336)
(-0.0081899934143 0.00720808446673 0.0835959906389)
(-0.00816525878457 0.00778542557206 0.100104255709)
(-0.00796070280616 0.00854446580118 0.115613085455)
(-0.00742573630932 0.0094689755813 0.129513808333)
(-0.00662308765547 0.0102550870996 0.141361350905)
(-0.00585810440862 0.0106304584009 0.150906093719)
(-0.00523829563048 0.0104461613604 0.158264703415)
(-0.00747686129437 0.00725891742237 0.151270851809)
(0.00256635749463 0.00248347370783 -0.00323986831256)
(0.00242995832032 0.00254466989708 -0.00458406848879)
(0.00247042664056 0.00295983951358 -0.0103226800172)
(0.00178167317378 0.0035355064847 -0.0150364930996)
(0.000589876555374 0.00416494993305 -0.0165309931372)
(-0.00090332967448 0.00483308191806 -0.0144073132217)
(-0.0024988377085 0.00550274779613 -0.00867289132372)
(-0.00403417514732 0.00615275281689 0.000380775192848)
(-0.00540299459058 0.00678177055536 0.0123456025078)
(-0.00651128404254 0.00735200770784 0.0266750775398)
(-0.0071621160468 0.00781443265857 0.0426559935883)
(-0.00749058043936 0.00826074441256 0.0596612191891)
(-0.0075315110715 0.0089020195789 0.0768878366219)
(-0.00728008842967 0.0096222008893 0.0937910454683)
(-0.00679580333756 0.010556042306 0.109323884049)
(-0.00621754720236 0.011419414258 0.122927287181)
(-0.00552150011193 0.0120954005323 0.134181029674)
(-0.00475326918272 0.0123233335937 0.142781787515)
(-0.00401699446433 0.0126629247513 0.14816338271)
(-0.00543284297379 0.00926244975879 0.14119876345)
(0.0028572110652 0.00251232942814 -0.0097430448524)
(0.00299493974505 0.00221238032843 -0.0123193381526)
(0.00325828463309 0.00255664503359 -0.0191658395148)
(0.00261873744108 0.00316208958245 -0.0246341036123)
(0.00140731951011 0.00392569573521 -0.0267390518612)
(-0.000156416480582 0.00479174069508 -0.0246513071413)
(-0.00180293425932 0.00571797722046 -0.0185943042282)
(-0.00336488015083 0.00665527607417 -0.00908793833698)
(-0.00475295383045 0.0075516014143 0.00337119081772)
(-0.00580464548719 0.00837458825614 0.0180936139252)
(-0.00641249763554 0.00910619380954 0.0343690821005)
(-0.00667642481413 0.0098382467174 0.0515513057919)
(-0.0064531285154 0.0106114692686 0.0688535083064)
(-0.00597280625653 0.0113315335368 0.0857038554411)
(-0.00534820099459 0.0124364427031 0.100869660488)
(-0.00458685118798 0.0138533690653 0.113675046448)
(-0.00406890138438 0.0142910693941 0.124139958541)
(-0.0036048737283 0.0139818397067 0.131555383105)
(-0.00270492369848 0.0131750146727 0.136220857537)
(-0.00540259049353 0.00902249651357 0.129546943139)
(0.00330311245606 0.00221975061523 -0.0158688550205)
(0.00361329310089 0.00156456241823 -0.0189315826684)
(0.00414117367269 0.00178244325476 -0.0266134747982)
(0.00363797243639 0.00237592326641 -0.0328372237413)
(0.00247148094338 0.00324727320473 -0.0353466544794)
(0.00093861903782 0.00432182897139 -0.0333750401491)
(-0.000681026572708 0.00551688522558 -0.0272638822675)
(-0.00225437288961 0.0067512576382 -0.0176480124331)
(-0.00363559855453 0.00794377226029 -0.00512208539087)
(-0.00468094450847 0.00904263881668 0.00953886489416)
(-0.00537791760977 0.0100320072966 0.0256532288218)
(-0.00562239388664 0.0108820116211 0.0424642018021)
(-0.00527368788458 0.0115934524977 0.0593067193738)
(-0.0044221989367 0.0119086764497 0.0756980777677)
(-0.00335904840591 0.0131016876274 0.0905970709435)
(-0.00305891044377 0.0142071984053 0.102739196646)
(-0.00304074166953 0.0159545488479 0.111420627994)
(-0.00269907171424 0.0156618446796 0.11854722778)
(-0.00144253036372 0.0152356332135 0.120815115045)
(-0.00252023621066 0.0101765420801 0.114499643061)
(0.00300722007416 0.00176985625666 -0.020491443348)
(0.00420547147479 0.000700551029836 -0.0239258455472)
(0.00505305067947 0.00073845350982 -0.0322123612037)
(0.00476600954462 0.00131136725697 -0.0390123928658)
(0.00372961991729 0.00229252702052 -0.0419405982078)
(0.00230136544482 0.00357465902711 -0.0402652439232)
(0.000762720559375 0.0050198431029 -0.0344252176553)
(-0.000766907991608 0.00651452361962 -0.0251582999271)
(-0.00219465794976 0.00795714574468 -0.0130826300174)
(-0.00338996569762 0.00920100861051 0.00107407505713)
(-0.00435368054616 0.0102128824183 0.0165345565317)
(-0.00491119709314 0.0107661724662 0.0324250971874)
(-0.00405256313048 0.0108193030475 0.048273018726)
(-0.00359950502877 0.0119093563752 0.0624699282112)
(-0.00114791683105 0.0176849744936 0.0760457721383)
(-0.000863356472326 0.0236694351841 0.0875488698804)
(-0.000664414686575 0.0228005864161 0.0955584652868)
(0.000132343490694 0.0275808221137 0.0993566485104)
(0.000938137697401 0.0197264908993 0.100998352289)
(-0.00338488143723 0.0149976375674 0.0970300306202)
(0.00371235775303 0.00106753184727 -0.0230504411392)
(0.0049338160164 -0.000361519636093 -0.0266022157413)
(0.00608431985459 -0.000520076534565 -0.0355110157771)
(0.00603022069575 5.2562462601e-05 -0.0429120612051)
(0.00516840159753 0.00114534596918 -0.0463949483438)
(0.00388092683964 0.00262035436895 -0.0452691413065)
(0.00243349544453 0.00429725890606 -0.0400497899102)
(0.000909809121101 0.00600613052144 -0.0315393170267)
(-0.000663476673369 0.00754440696663 -0.0203232885157)
(-0.00224915997387 0.0087920048758 -0.00716387805008)
(-0.00416546242218 0.00963592665331 0.00703617131002)
(-0.00605771778227 0.00955620938837 0.0207925255565)
(0.00120823683559 0.0153091334751 0.0318351862225)
(-0.00305016575505 0.00488206666205 0.0450177046495)
(-0.00320008547022 0.00492156296875 0.059243889736)
(-0.0025129857885 0.00545786056091 0.0709435228503)
(-0.000929043043928 0.00619881107686 0.0787112146709)
(-0.000176709685513 0.00402610140026 0.0814543656432)
(8.69491597983e-05 0.0011637215657 0.0832086267291)
(-0.0104364853324 -0.00737248100073 0.0819650458765)
(0.00383718250892 6.46280269762e-05 -0.0230888302631)
(0.00549603855 -0.00157647430254 -0.026792368465)
(0.00702069288849 -0.00184994471978 -0.0361956638687)
(0.00730852064209 -0.001306312056 -0.0442774258941)
(0.00668634256304 -0.000130126197891 -0.048517236579)
(0.00558821452895 0.00149774385996 -0.0482641040975)
(0.00422917528842 0.00336132307145 -0.0440831895414)
(0.0025980703193 0.00518374030741 -0.0367106593269)
(0.000682807499072 0.00658691859694 -0.0267840317221)
(-0.00173877919407 0.00796695297954 -0.0154584814087)
(-0.00524550268616 0.00894620108021 -0.00423885098819)
(-0.00471025502768 0.00391184995721 0.00466788928807)
(-0.00313532146402 0.00535767291789 0.0159100457071)
(-0.00264802398094 0.0051506532064 0.0300740040406)
(-0.0024873450597 0.00555290156811 0.0425088999389)
(-0.00174936832012 0.00622074664425 0.0523539633392)
(-0.000620210096023 0.00630358173305 0.0584058144168)
(0.000218343703018 0.00539593275918 0.0598856727072)
(0.00103974176129 0.00251720460568 0.0574785306297)
(-0.00274671171772 -0.00681140190195 0.0576421453574)
(0.00434011355159 -0.000894752830156 -0.0202931846214)
(0.00617906284279 -0.00293139464557 -0.02408622553)
(0.00801139029561 -0.0032437527163 -0.0340708085932)
(0.00856128801811 -0.00272594431574 -0.0428857748574)
(0.00822383707376 -0.0014822825836 -0.0480894250143)
(0.00732794994411 0.000266833796914 -0.0490251592743)
(0.00598797995476 0.00224692267769 -0.0462153040292)
(0.00398732310175 0.0040131672373 -0.0403164332322)
(0.00157175757143 0.00517861884792 -0.0324337883727)
(-0.00308245400269 0.00773277742845 -0.0251710615257)
(-0.00403653093646 0.00525056125978 -0.0169788878422)
(-0.00375451905296 0.00442142951028 -0.00869598680651)
(-0.00323455373194 0.00506909645677 0.00209318961398)
(-0.00250444193945 0.00506099473666 0.0134359608522)
(-0.00187843145868 0.00541374733976 0.0238759769011)
(-0.00102727420722 0.00583606184411 0.0319489845019)
(9.75399758807e-05 0.00604104931822 0.036262898731)
(0.00110076073397 0.00551150485358 0.03562876171)
(0.00211830141859 0.00311331973843 0.0302805135635)
(0.00445647316944 -0.00603637539774 0.0353499562176)
(0.00440619418029 -0.00206251246617 -0.0143191815498)
(0.0066777511505 -0.00430100437288 -0.0184379669489)
(0.00882900122162 -0.00462063795227 -0.0289583420804)
(0.00970554396549 -0.00412360826116 -0.038615819254)
(0.00970582588667 -0.00284065441069 -0.0449738165157)
(0.00902671874357 -0.00100818161103 -0.0473642223849)
(0.00757857658771 0.00106963354213 -0.046208693993)
(0.00503108684772 0.00292476177183 -0.0422848244189)
(0.00193794786964 0.00442237082718 -0.0388587457723)
(-0.0123484098823 0.0022196954639 -0.0358076553099)
(-0.00405851412728 0.00414386058816 -0.0280077586495)
(-0.00331935085185 0.00430359718603 -0.0215619542913)
(-0.00239843309464 0.00494727966809 -0.0127229179873)
(-0.00168945027233 0.00548045505559 -0.00339596525444)
(-0.0010151803511 0.00607739231234 0.00519690433799)
(-0.000152115411475 0.00662063948627 0.0114683438303)
(0.000941801191937 0.0069334688476 0.013898430721)
(0.00218367533807 0.00658447929482 0.0113732309819)
(0.00321751595513 0.00440350317085 0.00295168828824)
(0.0108723848105 -0.00444333384188 0.0133338582538)
(0.00474015293284 -0.00290994774496 -0.00584468922356)
(0.00721740191293 -0.00558815464273 -0.0092677700002)
(0.0097400973009 -0.00598216504622 -0.0208119368256)
(0.0108123510341 -0.00544539164387 -0.031338164622)
(0.0111655465215 -0.00414047623235 -0.0389994293423)
(0.0107436711309 -0.00229578100986 -0.0430996431767)
(0.00933939724578 -0.000324986216801 -0.0439617032654)
(0.00711242357154 0.00122327811927 -0.0426472547685)
(0.00370354025172 0.00442967226701 -0.0428334536037)
(-0.00139928505967 0.00340842953924 -0.0419583548566)
(-0.00121966017245 0.00327681032539 -0.0386192648452)
(-0.0013888782848 0.00438551148504 -0.0335201167763)
(-0.00103609344542 0.00534247404254 -0.0268786908134)
(-0.000602054363686 0.00615559975692 -0.0198147689322)
(-3.67256600408e-05 0.00692178708832 -0.0134191178815)
(0.000726078312201 0.00755809444146 -0.00921315385017)
(0.00184574380518 0.00787645534527 -0.00862466447599)
(0.00323676288465 0.00756296627365 -0.0129286354054)
(0.00401193713656 0.00541233475524 -0.024197463515)
(0.0165153373766 -0.0026591155991 -0.00909374410174)
(0.00554216010766 -0.00392264520169 0.00534156368309)
(0.00754986929014 -0.00645463052214 0.00231761771829)
(0.0103757849726 -0.00703084823926 -0.0097856687037)
(0.0117892553391 -0.00651917272754 -0.0212945283397)
(0.0124762592081 -0.0052651757305 -0.0303692453689)
(0.0121658308877 -0.00344821387951 -0.0363109775436)
(0.0103226775571 -0.0015187339276 -0.0394199456719)
(0.00747755094853 -0.000351114334552 -0.0429129248505)
(-0.00667894329304 -0.000776872871909 -0.0472789501485)
(0.000343575069041 0.00258636226105 -0.046911367215)
(-9.11658387734e-05 0.0034092631942 -0.0468543636601)
(0.000110059314397 0.00462647842978 -0.0442498285601)
(0.000330933399632 0.00574766987082 -0.0401883388664)
(0.000606867473223 0.00675950747756 -0.0358398626391)
(0.00100620856331 0.00765384452846 -0.0320372173611)
(0.0015558134969 0.00832578493405 -0.0300032249254)
(0.00253690460882 0.00858760472945 -0.0311962398285)
(0.00407212834704 0.00821273376536 -0.0364889561304)
(0.00497437156533 0.00634472942762 -0.0488759685088)
(0.0218631997405 -0.00101705580839 -0.0327408780517)
(0.0053034716168 -0.0044729094016 0.019171723248)
(0.0078727520948 -0.00714037049672 0.0158083337355)
(0.0108547932888 -0.00769956891702 0.00323098996609)
(0.0126292998606 -0.00729249847186 -0.00906167332991)
(0.0136878832447 -0.00616755666994 -0.0194945832342)
(0.0136569813219 -0.00451918779041 -0.0273764671984)
(0.0123175073513 -0.00328866906067 -0.0329570640303)
(0.0109435230712 -0.00116816411869 -0.040811373393)
(0.00250604048491 0.00118655417017 -0.0472180773059)
(0.00256833170159 0.00154753175124 -0.0508186204943)
(0.00181900452657 0.00308970299129 -0.0532564047767)
(0.00175616493952 0.00454742066738 -0.0537089740949)
(0.00176977666826 0.0058536092065 -0.0528292592683)
(0.00187342004475 0.0070487199563 -0.0514700430582)
(0.00205076869767 0.00804834073132 -0.0503430610758)
(0.00232314510816 0.00873508570943 -0.0504446979214)
(0.00318729357534 0.00894763217505 -0.0531811724047)
(0.0047488802171 0.00880437746087 -0.0589948743089)
(0.00540907056202 0.0070901039395 -0.0726452782739)
(0.0259136953969 -0.000288159629236 -0.0537745725163)
(0.0062224047722 -0.00484288725806 0.0336443558315)
(0.00814182451513 -0.00731804181556 0.0307611053553)
(0.0112791688468 -0.00796256137673 0.0176351508461)
(0.0132754990299 -0.00765095980805 0.00454745059785)
(0.0145017048696 -0.00664644370215 -0.00708181246383)
(0.013946890199 -0.00522175898156 -0.0166714475975)
(0.0127530782859 -0.00412412348052 -0.0278179771284)
(-0.0107733769997 -0.00863430035832 -0.0427048399855)
(0.00579713342817 0.000373965384108 -0.0441215628739)
(0.00354180608677 0.001326775586 -0.0529943514482)
(0.00338534319546 0.00280062203653 -0.0580339331023)
(0.00324744273448 0.0042399332442 -0.0616384672951)
(0.00313788665756 0.00560910511654 -0.0641685521796)
(0.00308093814334 0.00690600789514 -0.0659464123728)
(0.00300578868561 0.00792036147169 -0.0676887000627)
(0.00297607738456 0.00853750554239 -0.0700206625136)
(0.00359714248851 0.00873340099556 -0.0741510781935)
(0.00530973219688 0.00823149335307 -0.0800888338308)
(0.00562502706863 0.006880134215 -0.0950372849548)
(0.0291779291443 0.000288185715098 -0.0721514212493)
(0.005965155684 -0.00472179542677 0.0488034406715)
(0.00835538332674 -0.00708593203194 0.0454149684318)
(0.0114345976777 -0.00766498637622 0.0323059233973)
(0.0136319914457 -0.00733667836559 0.0188085287065)
(0.0149805369063 -0.0064768283083 0.00592382258978)
(0.0147928668306 -0.0052181248591 -0.00560364707259)
(0.014051684032 -0.00380628779346 -0.0185696400513)
(0.00509479645936 -0.0017057225548 -0.0333483292412)
(0.00562055822851 -0.000619541490389 -0.0436179859868)
(0.0048026287852 0.00100676036529 -0.0533464578546)
(0.00456592442041 0.00232619970838 -0.0614230089001)
(0.00443697109363 0.00369697202215 -0.0681819344149)
(0.004320647211 0.00506147291446 -0.0740042262988)
(0.00416714408055 0.00643315820179 -0.0788764642044)
(0.00386647720667 0.00748672377539 -0.0832191053166)
(0.00353159474311 0.00799769228952 -0.0874590461698)
(0.00371633865567 0.00792857502645 -0.0924107447985)
(0.00561818902985 0.00751556037935 -0.0984186323443)
(0.00578553488722 0.00610272075815 -0.114435931127)
(0.0317185614307 0.000506902555172 -0.0873682269134)
(0.00703060544417 -0.00417519778513 0.0622539882169)
(0.00863109221887 -0.0065039278041 0.0595272832618)
(0.0115355143657 -0.00692609753292 0.0464120791136)
(0.0136991193843 -0.00650639273101 0.0325684718246)
(0.0150501437225 -0.00576116406478 0.0187710737781)
(0.0149567187859 -0.00470275104696 0.00539233967484)
(0.0146464357112 -0.0036247032044 -0.0100674206754)
(0.00603293779947 -0.00158350390162 -0.0275406199063)
(0.0060667751052 -0.000232893018657 -0.0405647461037)
(0.00547841964868 0.00109232636085 -0.0527706909662)
(0.0053565503993 0.00232097124185 -0.0637017636393)
(0.00531798232158 0.00340391865705 -0.0738878889064)
(0.00529790449778 0.00452136920905 -0.0828388773621)
(0.0051038376771 0.00559529710811 -0.0906653176376)
(0.00455943433022 0.00651665714281 -0.097335015349)
(0.00382604636189 0.006992716387 -0.102774581824)
(0.00380592160089 0.00689430592766 -0.107502831465)
(0.00560257574058 0.00653200775075 -0.114819390844)
(0.00543741351651 0.00480467957509 -0.129568977751)
(0.0337487800917 0.000376234773445 -0.0999585272099)
(0.00634263100113 -0.00315482592775 0.0744402919166)
(0.00833731846009 -0.00584698934026 0.0728515182131)
(0.0112797962468 -0.00582378957867 0.0602350076308)
(0.0133057443273 -0.00539281068237 0.0462437794778)
(0.0144568837602 -0.00467637623602 0.031577194282)
(0.0140601043953 -0.0038167682855 0.0163425942438)
(0.0134751451587 -0.00295859588566 -0.00163290852928)
(0.00482784911863 -0.000740029775207 -0.0217674307532)
(0.00556145852317 0.000510453634277 -0.0378634065109)
(0.00546414299156 0.00164321153272 -0.0528014930175)
(0.00544473374374 0.002730257309 -0.0667038574717)
(0.00532267034671 0.00384362645479 -0.0788559479477)
(0.0053124466005 0.00501294899245 -0.0900198431366)
(0.00514058481047 0.00606367338209 -0.100271924695)
(0.00461272136267 0.00695994472102 -0.108895392516)
(0.00392790576212 0.00744870262539 -0.115052704456)
(0.0037195194541 0.00753734294514 -0.119601366926)
(0.00520524469002 0.00721572556099 -0.126318712837)
(0.00503492264706 0.00537130874098 -0.13886437711)
(0.0356170020097 -0.000486719284931 -0.105850310974)
(0.00699497428733 -0.00363653120299 0.0869471743156)
(0.00764850611281 -0.00450451713214 0.0867208805159)
(0.0103741808714 -0.00461635670367 0.0737926846392)
(0.0118672370166 -0.00409242679193 0.0596435971051)
(0.0127444029296 -0.0032983322382 0.0442670638468)
(0.011894523617 -0.0024218393277 0.0274953086598)
(0.0108247052214 -0.00181203969495 0.00699135675353)
(0.00149056671545 0.000188959313066 -0.0168154187927)
(0.00288448588329 0.00107388195511 -0.0366909414503)
(0.0030631728602 0.00193874665534 -0.0548003352919)
(0.00370022161968 0.00279930942565 -0.0713916807157)
(0.00434100608156 0.00380722088197 -0.0876450124715)
(0.00469942568181 0.00483991613674 -0.103118301267)
(0.00461306432835 0.00586698594744 -0.116535255271)
(0.00405763417551 0.00663186130838 -0.126986589188)
(0.00310707978273 0.00703993720182 -0.13424225015)
(0.00284632381605 0.00704890424423 -0.139083672944)
(0.00394938397294 0.00646420814211 -0.145679791005)
(0.00260243648948 0.0039910988174 -0.160753834571)
(0.0382807117727 0.0022527210402 -0.129699763154)
(0.00668849399652 -0.00612314563574 0.08426498761)
(0.00534226904918 -0.00628936705825 0.0901779732289)
(0.00624317921456 -0.00589387467274 0.0788682653484)
(0.00778459861597 -0.00403973599024 0.0671345672496)
(0.00777487631768 -0.00268181984352 0.0526757259072)
(0.00562445685925 -0.0014558468258 0.0361492632159)
(0.00520342032975 0.000240184181226 0.0191563680711)
(-0.00874527125092 0.00471216049333 -0.00225041588956)
(-0.00601932377431 0.0112086480066 -0.0227041941903)
(-0.00445342783845 0.0168906429897 -0.0381803955207)
(-0.00289517086737 0.0217559339629 -0.0529481291184)
(-0.0013218125047 0.0257264389078 -0.0671965020281)
(2.90213377965e-05 0.0289078335202 -0.0808884918204)
(0.000792421152984 0.0314402371191 -0.0935021914821)
(0.000742356244761 0.0333913264135 -0.103568108026)
(4.40999759275e-05 0.0348334652283 -0.109670050934)
(-0.000212293380124 0.0359408142426 -0.111742267742)
(-0.00103358429203 0.0364652321908 -0.113763086026)
(0.00166012214688 0.0388438573315 -0.131965254182)
(0.0360843918043 0.0363364253933 -0.0817029265598)
)
;
boundaryField
{
stationaryWalls
{
type calculated;
value uniform (0 0 0);
}
atmosphere
{
type calculated;
value nonuniform List<vector>
400
(
(-0.0409977519266 -0.0415256852992 0.00591159467456)
(-0.0283074052097 -0.0154167068596 0.0116447365999)
(0.0351808232261 -0.00294774333031 0.00401515627796)
(0.0350721346938 0.00439463428476 -0.00323986831256)
(0.0387825037544 0.00720023273365 -0.0097430448524)
(0.0440120728838 0.00408278983418 -0.0158688550205)
(-0.035268775368 -0.00448634302254 -0.020491443348)
(-0.0417270751961 -0.0019763697105 -0.0230504411392)
(-0.0498123484576 -0.0053432322104 -0.0230888302631)
(0.0572618234768 0.00442973522084 -0.0202931846214)
(0.0654318879174 0.00105394026878 -0.0143191815498)
(-0.0542712704261 -0.00480833902774 -0.00584468922356)
(-0.0619049827138 -0.00775979280021 0.00534156368309)
(0.0692488566661 0.00189771172218 0.019171723248)
(0.0787713348301 -0.00646726699462 0.0336443558315)
(-0.0639645962234 -0.0170960778878 0.0488034406715)
(-0.070334886651 -0.0151331730217 0.0622539882169)
(0.0767609413195 0.0105296411663 0.0744402919166)
(0.0891942976429 -0.0241778988586 0.0869471743156)
(-0.0808432065099 0.0844469807142 0.08426498761)
(0.0133299106022 0.0399059761586 0.0137793996364)
(-0.00253484054063 -0.0042039402528 0.0121846766076)
(0.00662760753257 -0.000800013317698 0.00400806877771)
(0.0126503014843 0.000756664309415 -0.00458406848879)
(0.0156899315984 0.00035044100246 -0.0123193381526)
(0.0183244813522 -0.00107691264991 -0.0189315826684)
(-0.012775073695 0.00362464648628 -0.0239258455472)
(-0.0107221619232 0.00810108451038 -0.0266022157413)
(0.0226531268343 -0.0097526671513 -0.026792368465)
(0.0274718279325 -0.010539075328 -0.02408622553)
(-0.0154056117217 0.00456963626658 -0.0184379669489)
(-0.0121371984449 0.00407826478917 -0.0092677700002)
(0.0267424625657 -0.0155213150025 0.00231761771829)
(0.0270851972071 -0.014104183859 0.0158083337355)
(-0.00944702517746 -0.0039577691564 0.0307611053553)
(-0.0112360384138 0.00689079702274 0.0454149684318)
(0.0244054635546 -0.0167416429672 0.0595272832618)
(0.0179815086607 -0.00538807250339 0.0728515182131)
(0.00635480283612 0.000496425433456 0.0867208805159)
(0.0173104980153 -0.0957379838135 0.0901779732289)
(-0.0086152809531 0.0310827349364 0.0100868275574)
(-0.00539865290004 0.00854479930774 0.00799317779071)
(7.13282654254e-05 0.000266204553631 -0.000831240773726)
(-0.0024748681693 0.00340864289107 -0.0103226800172)
(-0.000580286475801 0.00860311287786 -0.0191658395148)
(-0.00263732924108 0.00928417829905 -0.0266134747982)
(0.0146914679368 -0.00799149346102 -0.0322123612037)
(0.0182489894363 -0.010534728894 -0.0355110157771)
(0.0247071376353 -0.00943221370341 -0.0361956638687)
(-0.0117545756011 0.00645507079557 -0.0340708085932)
(0.0297559600478 -0.0166661815555 -0.0289583420804)
(0.0270781650746 -0.0185082690532 -0.0208119368256)
(-0.0068493326229 0.00626127289342 -0.0097856687037)
(-0.00665676822905 0.00364945351827 0.00323098996609)
(0.0269335534955 -0.017754342068 0.0176351508461)
(-0.00479673173537 0.0116131111649 0.0323059233973)
(0.00187607287253 -0.00345761201012 0.0464120791136)
(0.0117560455358 -0.00926353074738 0.0602350076308)
(0.00507813556751 -0.0225985788799 0.0737926846392)
(-0.0152556863865 -0.0850409857234 0.0788682653484)
(0.00745582519712 -0.0299113612608 0.00852948434823)
(-0.00457554814311 0.01283456093 0.00516695547342)
(0.00818736019334 0.00152936319392 -0.00444479133417)
(0.00216948072083 0.00492951043985 -0.0150364930996)
(0.00581016181687 0.00298400850499 -0.0246341036123)
(0.0094536162648 0.000708568861475 -0.0328372237413)
(-0.00386309583835 0.00451559023036 -0.0390123928658)
(-0.00488367166543 0.00485156413919 -0.0429120612051)
(-0.00111789039488 0.00795394618547 -0.0442774258941)
(0.0241120337468 -0.0108864156218 -0.0428857748574)
(-0.00767763702031 0.00676240990741 -0.038615819254)
(-0.00343770839363 0.00616733281594 -0.031338164622)
(0.0321791914213 -0.0225523754332 -0.0212945283397)
(-0.00845433610387 0.0128274588368 -0.00906167332991)
(-0.00767719551335 0.0123283468921 0.00454745059785)
(0.0322334714247 -0.0286071421346 0.0188085287065)
(0.00596239117879 3.77883071156e-05 0.0325684718246)
(0.00991099529348 -0.0117382771675 0.0462437794778)
(0.000123057481075 -0.0218278825445 0.0596435971051)
(-0.02227507606 -0.0726712557569 0.0671345672496)
(0.00493974563795 -0.0302075958329 0.00917114661901)
(0.01047674697 -0.00579902215974 0.00473364383872)
(0.010104052733 -0.000545165108227 -0.00560885669625)
(-0.00222938424235 0.00827024920266 -0.0165309931372)
(0.00101948940276 0.00655344664934 -0.0267390518612)
(0.00456926134174 0.00431443386382 -0.0353466544794)
(0.00399487293906 -0.00236950082363 -0.0419405982078)
(0.00794944326635 -0.00480655002961 -0.0463949483438)
(0.00172715806232 0.00698177393628 -0.048517236579)
(0.000683170383874 0.00623986531643 -0.0480894250143)
(0.0198402679945 -0.0117542978008 -0.0449738165157)
(0.0290822738541 -0.0129919388116 -0.0389994293423)
(-0.00858118965933 0.00744408152094 -0.0303692453689)
(-0.00482064772459 0.00406234409463 -0.0194945832342)
(0.0399440672229 -0.0244019857135 -0.00708181246383)
(-0.00588987353934 0.00398812041938 0.00592382258978)
(0.0321839878599 -0.0150878135597 0.0187710737781)
(0.00669694965921 0.0160221550089 0.031577194282)
(1.18437425845e-05 -0.0202542715134 0.0442670638468)
(0.0452261583173 0.0396569621246 0.0526757259072)
(-0.00248527399979 0.0310984179732 0.011537517222)
(-0.0130861000533 0.0146956116587 0.00694583273524)
(0.00754638934479 -0.00605383036049 -0.00345670948537)
(-0.0110344088015 0.00828806851956 -0.0144073132217)
(-0.00873275426527 0.00648273093201 -0.0246513071413)
(-0.00542438030081 0.0044227882902 -0.0333750401491)
(-0.00161955635574 0.00194965316268 -0.0402652439232)
(0.00262498286493 -0.000405276916902 -0.0452691413065)
(0.0115202057413 0.00111554004807 -0.0482641040975)
(0.0164528395387 -0.00085223472117 -0.0490251592743)
(-0.00306266515431 0.00217080838168 -0.0473642223849)
(-0.00568322713029 0.00147554472535 -0.0430996431767)
(-0.00439943088265 0.000733781140496 -0.0363109775436)
(0.0356684380405 -0.0102494665689 -0.0273764671984)
(-0.0175330409051 0.00603778155201 -0.0166714475975)
(0.0455803436493 -0.0120909204255 -0.00560364707259)
(-0.0174702378234 0.0129584423439 0.00539233967484)
(0.0339059713434 -0.0250465671573 0.0163425942438)
(0.0141812806823 -0.0145737673613 0.0274953086598)
(0.0412432061064 0.0283094852243 0.0361492632159)
(0.00290624466979 0.0373471712412 0.0160296651152)
(-0.0121030426317 0.018548705449 0.0118964096278)
(0.00935715234436 -0.00735234733837 0.0018770100836)
(0.00986380180039 -0.00496396033979 -0.00867289132372)
(-0.0142186125031 0.0103789152806 -0.0185943042282)
(-0.00794327683238 0.0124104183246 -0.0272638822675)
(0.00730184888416 0.0038259248746 -0.0344252176553)
(0.00621068762523 0.00416282104176 -0.0400497899102)
(0.00480845124193 0.00381837748039 -0.0440831895414)
(0.0122608761553 0.00482888415752 -0.0462153040292)
(0.0147250005499 0.00104246029424 -0.046208693993)
(0.0221530798828 0.000345161294705 -0.0439617032654)
(0.0289856741292 -0.000152564992441 -0.0394199456719)
(0.0405253829626 -0.00113276035989 -0.0329570640303)
(0.0425033331892 -0.000940448674695 -0.0278179771284)
(0.0509397987587 -0.00363320939208 -0.0185696400513)
(0.0629129928335 -0.0119399556992 -0.0100674206754)
(0.0305708946575 -0.0176161308912 -0.00163290852928)
(-0.0142799112725 -0.0250945736045 0.00699135675353)
(0.0182641212101 -0.0193128442486 0.0191563680711)
(-0.00379232254557 -0.0341694052051 0.0226602066419)
(0.00991888657888 -0.0135275465258 0.0195526618774)
(-0.0226823295044 0.0177958981906 0.0103627853758)
(0.0140583573761 -0.00329582827133 0.000380775192848)
(0.0146312062038 -0.00178285396838 -0.00908793833698)
(-0.0133559715888 0.0161138430014 -0.0176480124331)
(-0.0121868653998 0.0111073318268 -0.0251582999271)
(0.00418141162484 -0.00121861452018 -0.0315393170267)
(0.00178786552283 -0.00179048462692 -0.0367106593269)
(-0.00177895109904 -0.00330887862778 -0.0403164332322)
(0.0169565845288 0.0108170969101 -0.0422848244189)
(0.0243293717123 0.00992424282859 -0.0426472547685)
(-0.0107116685334 -0.00818934502679 -0.0429129248505)
(0.0324266015529 0.00771117285278 -0.040811373393)
(-0.254168937167 -0.0845931418965 -0.0427048399855)
(0.0640261284573 0.0399425533465 -0.0333483292412)
(-0.0135145544552 0.0176544650164 -0.0275406199063)
(0.07406018529 -0.00735581758697 -0.0217674307532)
(0.101792446456 -0.00458140309678 -0.0168154187927)
(0.0917486137079 -0.00704666771278 -0.00225041588956)
(0.00620770500384 0.0455747526901 0.0316182639645)
(0.011825325203 -0.0151836407252 0.0297976688887)
(-0.0300514608466 0.0236224934025 0.0215614908347)
(0.0192472404802 -0.00678824888934 0.0123456025078)
(-0.0275534743042 0.021887799116 0.00337119081772)
(0.0144571584874 -0.00115455298349 -0.00512208539087)
(-0.0141556984463 0.019183858251 -0.0130826300174)
(-0.00893196433719 0.0187731659455 -0.0203232885157)
(0.00105447107322 -0.0048817464535 -0.0267840317221)
(0.00577626997585 0.0132317046179 -0.0324337883727)
(-0.00848673344131 -0.00505858687763 -0.0388587457723)
(-0.0133349393668 -0.00806147384369 -0.0428334536037)
(-0.190314028638 -0.0385301856409 -0.0472789501485)
(-0.0758780246289 -0.0157197048242 -0.0472180773059)
(0.0126582236711 -0.00427377552787 -0.0441215628739)
(-0.0719964900494 -0.00969779731877 -0.0436179859868)
(0.0932109395304 0.0129413230653 -0.0405647461037)
(0.141009421524 0.0168907466128 -0.0378634065109)
(-0.135660657271 -0.00582679617313 -0.0366909414503)
(0.100227851984 -0.00885509374537 -0.0227041941903)
(-0.0127258884741 -0.0476030494258 0.0427040996118)
(-0.0228235546868 0.0247941700473 0.0425546498484)
(0.0173358566597 -0.0115731713366 0.035063820649)
(-0.0376972564588 0.023587449531 0.0266750775398)
(-0.0402563881613 0.0247362905212 0.0180936139252)
(0.0214909431652 -0.0031816927448 0.00953886489416)
(-0.0237957791273 0.0202285083922 0.00107407505713)
(0.0109707379448 -0.00721795758871 -0.00716387805008)
(-0.00066878684448 -0.00833709517682 -0.0154584814087)
(-0.0110420375857 -0.00445174437061 -0.0251710615257)
(-0.241869815934 -0.0259310656319 -0.0358076553099)
(0.112112099219 -0.0228181145334 -0.0419583548566)
(-0.0589856120882 0.0272785018935 -0.046911367215)
(-0.0100931932161 -0.0389168573287 -0.0508186204943)
(0.0693812317928 0.0450952171286 -0.0529943514482)
(-0.119740492463 -0.0489315727251 -0.0533464578546)
(-0.137567206052 -0.0412956563693 -0.0527706909662)
(0.156012179941 0.0307366632265 -0.0528014930175)
(-0.155368135554 -0.0148189815201 -0.0548003352919)
(-0.107870367322 0.00238350929943 -0.0381803955207)
(-0.0159871277978 -0.0491294520329 0.0555757042043)
(0.00118905102479 -0.0173171292951 0.0570026680758)
(0.0146064750532 -0.0105677739966 0.050270020886)
(-0.0463305116417 0.021967287232 0.0426559935883)
(-0.0511164067804 0.0229543652623 0.0343690821005)
(0.0278149469661 -0.00243379295304 0.0256532288218)
(-0.0398692723763 0.0277062119487 0.0165345565317)
(0.0149167339326 -0.00723915334844 0.00703617131002)
(-0.00461352710726 0.0265506722697 -0.00423885098819)
(0.175781839365 0.0105084563195 -0.0169788878422)
(0.0775032710295 -0.0523769883526 -0.0280077586495)
(-0.0274233630387 0.074044349014 -0.0386192648452)
(-0.0333831850845 -0.089676772436 -0.0468543636601)
(-0.0619870105785 -0.0892445895433 -0.0532564047767)
(-0.0943787783946 -0.0855860424001 -0.0580339331023)
(0.136377420605 0.0796126909966 -0.0614230089001)
(0.156430526113 0.0663799765824 -0.0637017636393)
(0.163109168042 0.049031405596 -0.0667038574717)
(-0.163088767961 -0.0242258048811 -0.0713916807157)
(-0.112669876353 0.00107260788441 -0.0529481291184)
(-0.0146915995642 -0.0674702628956 0.0696536045218)
(-0.0232843455838 0.0245921543695 0.0730071432554)
(-0.0387539828079 0.0190015838543 0.0667429518336)
(-0.0494382678797 0.0148120564982 0.0596612191891)
(0.0244352638797 0.00238760427801 0.0515513057919)
(0.0471925593385 0.00340165817983 0.0424642018021)
(0.0504276402938 0.00231461167061 0.0324250971874)
(-0.0848608871577 0.0178593714243 0.0207925255565)
(0.0129661898322 0.00535503232428 0.00466788928807)
(-0.00480237320617 0.0749881088416 -0.00869598680651)
(-0.0117359827607 -0.0959024591087 -0.0215619542913)
(-0.0407712822471 -0.113345880292 -0.0335201167763)
(0.0566564872871 0.123574575746 -0.0442498285601)
(0.0892138372231 0.128461667387 -0.0537089740949)
(0.117856403085 0.123541556562 -0.0616384672951)
(0.141716839436 0.110725521251 -0.0681819344149)
(-0.157973225183 -0.0867214479375 -0.0738878889064)
(-0.164558253144 -0.0630716158956 -0.0788559479477)
(-0.162410292831 -0.0341198877818 -0.0876450124715)
(-0.111053348169 -0.00052843465936 -0.0671965020281)
(0.00485049328693 0.0852553882787 0.0838926703068)
(-0.0184018176867 -0.0169364198587 0.0892082604952)
(0.0183512500566 0.00105245620535 0.0835959906389)
(0.00962717315028 0.00774062752756 0.0768878366219)
(0.0212223043712 0.0149185888878 0.0688535083064)
(0.0505561855321 0.0218465855374 0.0593067193738)
(0.0751611545786 0.0454522291062 0.048273018726)
(-0.144173085481 -0.148374314536 0.0318351862225)
(0.0214671397095 0.0447043720207 0.0159100457071)
(0.0243380015566 0.0892985413425 0.00209318961398)
(-0.0447182764124 -0.113513576192 -0.0127229179873)
(0.0636650638508 0.136952061891 -0.0268786908134)
(-0.0795244746609 -0.153015748016 -0.0401883388664)
(-0.106748432856 -0.157306988456 -0.0528292592683)
(-0.129101169405 -0.152296256547 -0.0641685521796)
(-0.14299849467 -0.133805194889 -0.0740042262988)
(-0.156500973537 -0.110578935174 -0.0828388773621)
(-0.162088458123 -0.0812985802974 -0.0900198431366)
(-0.159137470997 -0.0450999901365 -0.103118301267)
(-0.108781687094 -0.00293854420536 -0.0808884918204)
(-0.014125027498 -0.0748282325359 0.0980697483342)
(0.0124122191093 0.0278851256567 0.105038815017)
(-0.00331551750038 0.0119071391729 0.100104255709)
(-0.0159599789633 0.00157582181864 0.0937910454683)
(-0.0474886670219 -0.0110099560786 0.0857038554411)
(0.04906899048 0.0509704211846 0.0756980777677)
(0.0684650811821 0.0913137004522 0.0624699282112)
(0.0180936934264 0.026283884655 0.0450177046495)
(-0.0254438887794 -0.060882367622 0.0300740040406)
(-0.0372614926518 -0.0998676104151 0.0134359608522)
(0.0590029483668 0.128516226954 -0.00339596525444)
(-0.0772102760997 -0.152136145617 -0.0198147689322)
(0.0965703571612 0.174164809287 -0.0358398626391)
(0.111872711127 0.175693835478 -0.0514700430582)
(-0.132387421506 -0.181689945363 -0.0659464123728)
(-0.147473919738 -0.163012956691 -0.0788764642044)
(-0.153893346727 -0.134032884877 -0.0906653176376)
(-0.158261171596 -0.0998305360724 -0.100271924695)
(-0.154480361408 -0.0568111460856 -0.116535255271)
(-0.104742334257 -0.00635529217082 -0.0935021914821)
(-0.0414925649606 -0.0922830665905 0.111923598901)
(-0.012105850367 0.0229717070785 0.120253292392)
(-0.0231604144802 0.00279134232753 0.115613085455)
(-0.00687440733257 0.0280732721732 0.109323884049)
(0.0272647459191 0.051160842701 0.100869660488)
(-0.0221524664081 -0.0290481373884 0.0905970709435)
(0.0566224454514 0.157058559178 0.0760457721383)
(0.0154829989745 0.0357933877945 0.059243889736)
(0.0230687303144 0.0647627645903 0.0425088999389)
(0.0451577326434 0.11149218781 0.0238759769011)
(0.0654551199092 0.146630484483 0.00519690433799)
(-0.0838207790265 -0.172422793599 -0.0134191178815)
(-0.0986103473867 -0.186316437644 -0.0320372173611)
(0.116568792672 0.200892626875 -0.0503430610758)
(0.128341657982 0.191966507801 -0.0676887000627)
(-0.145766902504 -0.187345721586 -0.0832191053166)
(-0.150506474112 -0.154841725622 -0.097335015349)
(-0.151139276968 -0.115770785922 -0.108895392516)
(-0.141828795304 -0.0705296085774 -0.126986589188)
(-0.10003019665 -0.0097935536119 -0.103568108026)
(-0.0122462752779 -0.0991610690901 0.124783711691)
(-0.00780941995726 0.0235618516983 0.13413998994)
(-0.0240076155474 0.0157496095947 0.129513808333)
(0.0101607381489 0.0447005829891 0.122927287181)
(-0.0255842287994 -0.0459631475511 0.113675046448)
(0.00852470724262 0.0743135395241 0.102739196646)
(-0.0370399663224 -0.151927758059 0.0875488698804)
(0.0180006576658 0.0490136940668 0.0709435228503)
(0.0301244353651 0.0895930869852 0.0523539633392)
(0.0482223970114 0.126040544598 0.0319489845019)
(0.0688600528519 0.160798249798 0.0114683438303)
(0.0840962603906 0.179875842719 -0.00921315385017)
(-0.1000325571 -0.204194552907 -0.0300032249254)
(0.116014952182 0.216560635815 -0.0504446979214)
(0.125673557005 0.209131444925 -0.0700206625136)
(0.131176556867 0.187493244401 -0.0874590461698)
(-0.141954844956 -0.169592925979 -0.102774581824)
(-0.140919450807 -0.126798988988 -0.115052704456)
(-0.13056052808 -0.0786669842565 -0.13424225015)
(-0.092536681178 -0.0131519910109 -0.109670050934)
(-0.0103896393732 -0.106602552358 0.136172008222)
(0.019357312026 0.0245873187747 0.146270125133)
(-0.002131707798 0.0279145846095 0.141361350905)
(0.00542128567354 0.0491820998823 0.134181029674)
(-0.0174320101228 -0.0500656953048 0.124139958541)
(-0.0191584651089 -0.101233681933 0.111420627994)
(0.00114112853375 -0.0908094797128 0.0955584652868)
(-0.017219334439 -0.0619875112572 0.0787112146709)
(0.0300200761635 0.100469907719 0.0584058144168)
(0.0463687718307 0.133866013246 0.036262898731)
(0.067016386973 0.174694183778 0.013898430721)
(-0.0865481442523 -0.202947694489 -0.00862466447599)
(-0.0964782733666 -0.216162247567 -0.0311962398285)
(0.110523444223 0.228694035308 -0.0531811724047)
(0.116647697081 0.217635453553 -0.0741510781935)
(0.11872288403 0.194263557155 -0.0924107447985)
(-0.107700659133 -0.149314654262 -0.107502831465)
(-0.123675644773 -0.131393778131 -0.119601366926)
(-0.112639867085 -0.0805442614228 -0.139083672944)
(-0.0820407150702 -0.0141751416898 -0.111742267742)
(-0.0297039409 -0.110377695751 0.146705506203)
(-0.00945573742769 0.0195384934231 0.156680751765)
(0.00335025417809 0.0323762063947 0.150906093719)
(-0.00509622340758 0.0443733968507 0.142781787515)
(-0.00620026544118 -0.0349618423827 0.131555383105)
(-0.00262198697373 -0.0629304378949 0.11854722778)
(0.0146152195439 0.231104814174 0.0993566485104)
(0.015402636668 0.0733661789742 0.0814543656432)
(-0.0262661095054 -0.111563512873 0.0598856727072)
(-0.041895127942 -0.148656052324 0.03562876171)
(0.0586717537383 0.178890782034 0.0113732309819)
(-0.0745062813094 -0.204620156666 -0.0129286354054)
(-0.082032422475 -0.216190268486 -0.0364889561304)
(0.0938985931942 0.226228283185 -0.0589948743089)
(0.096176079859 0.216035940504 -0.0800888338308)
(0.096506986613 0.193257071629 -0.0984186323443)
(0.09441366835 0.159504813598 -0.114819390844)
(-0.0964245567948 -0.125780362246 -0.126318712837)
(-0.0862784407096 -0.0777284202063 -0.145679791005)
(-0.056743721324 -0.0105545714348 -0.113763086026)
(0.016880893428 -0.109613708506 0.158656085724)
(-0.0238117903655 0.0119080236079 0.165952478162)
(0.00791397213854 0.0386636331567 0.158264703415)
(-0.0281884700791 -0.0424146387849 0.14816338271)
(-0.0177004563215 -0.0383740759984 0.136220857537)
(-0.0140090656413 -0.0565162411825 0.120815115045)
(0.0122032690733 0.114950285422 0.100998352289)
(-0.00950192745518 -0.075963456601 0.0832086267291)
(0.0166036750193 0.114615998655 0.0574785306297)
(0.0281121081403 0.150254393454 0.0302805135635)
(-0.0388138180173 -0.159453262561 0.00295168828824)
(-0.0492941565775 -0.192521741252 -0.024197463515)
(-0.0560224079057 -0.194846489351 -0.0488759685088)
(0.0602013978088 0.209452796386 -0.0726452782739)
(0.061725284086 0.196110494896 -0.0950372849548)
(0.0610308715712 0.175002780007 -0.114435931127)
(0.0590860239737 0.145308562253 -0.129568977751)
(-0.0629712251592 -0.110348380256 -0.13886437711)
(-0.0521837777054 -0.0627706239996 -0.160753834571)
(-0.0238231030108 0.00769238567961 -0.131965254182)
(-0.126439963088 0.127539712184 0.151835506052)
(-0.119179160527 0.0374352868082 0.161187476034)
(-0.127973186614 -0.0139076861431 0.151270851809)
(0.0963068011145 0.0425748407556 0.14119876345)
(0.101309244648 0.0422148321347 0.129546943139)
(0.076789754343 0.0709554826141 0.114499643061)
(0.0853573944849 -0.00274042021209 0.0970300306202)
(0.00223186307381 -0.0625702067247 0.0819650458765)
(-0.000609536205558 -0.0912922369962 0.0576421453574)
(0.00215008808627 0.118145052084 0.0353499562176)
(-0.0106665855221 -0.130105802555 0.0133338582538)
(-0.00236433683934 -0.142580717291 -0.00909374410174)
(0.0106381931261 0.146440645027 -0.0327408780517)
(0.000390446079533 0.146065473019 -0.0537745725163)
(-0.00121210058397 0.13740446625 -0.0721514212493)
(-0.00317220316679 0.123310457373 -0.0873682269134)
(-0.00594068867646 0.102817221827 -0.0999585272099)
(-0.00740287143832 -0.0682086793146 -0.105850310974)
(0.0088048537249 -0.0274114775703 -0.129699763154)
(0.0721186096574 0.0739724002996 -0.0817029265598)
)
;
}
floatingObject
{
type calculated;
value nonuniform List<vector>
348
(
(0.00337929533097 -0.0550784617942 0.036204441968)
(0.00202757719958 -0.0550784617925 0.0217226651781)
(0.000675859066852 -0.0550784617928 0.00724088839387)
(-0.000675859062727 -0.0550784617949 -0.00724088838654)
(-0.00202757719164 -0.0550784617956 -0.0217226651691)
(-0.00337929532164 -0.0550784617927 -0.0362044419569)
(0.0033792953287 -0.0550784617929 0.0362044419582)
(0.00202757720108 -0.0550784617908 0.0217226651779)
(0.000675859069273 -0.0550784617901 0.00724088839746)
(-0.000675859060515 -0.0550784617894 -0.00724088838527)
(-0.00202757718966 -0.0550784617916 -0.0217226651664)
(-0.00337929532343 -0.0550784617902 -0.0362044419547)
(0.00337929532936 -0.0550784617966 0.0362044419606)
(0.00202757719965 -0.0550784617929 0.0217226651779)
(0.000675859068511 -0.0550784617945 0.00724088839767)
(-0.000675859061656 -0.0550784617934 -0.00724088838604)
(-0.00202757719017 -0.0550784617953 -0.0217226651631)
(-0.00337929532344 -0.0550784617955 -0.0362044419549)
(0.00337929532808 -0.0550784617953 0.0362044419652)
(0.00202757719956 -0.0550784617954 0.0217226651795)
(0.000675859068248 -0.0550784617942 0.00724088839593)
(-0.00067585906383 -0.0550784617942 -0.00724088838608)
(-0.00202757719426 -0.055078461795 -0.0217226651686)
(-0.00337929532511 -0.0550784617936 -0.0362044419552)
(0.00748606556262 -0.0447479778716 0.0298333205661)
(0.00610726183507 -0.0447479778772 0.017716151843)
(0.0047284581105 -0.0447479778807 0.00559898312132)
(0.00334965437782 -0.0447479778776 -0.0065181856031)
(0.00197085065201 -0.0447479778761 -0.0186353543253)
(0.000592046924375 -0.0447479778789 -0.0307525230476)
(0.00884166846569 -0.0550784617952 0.0359074380151)
(0.0008128493857 -0.0550784617956 -0.0368085834335)
(0.00884166846406 -0.0550784617938 0.0359074380156)
(0.000812849397956 -0.0550784617918 -0.0368085834339)
(0.00884166845648 -0.0550784617957 0.0359074380159)
(0.000812849399688 -0.0550784617925 -0.0368085834336)
(0.00884166845988 -0.0550784617952 0.0359074380157)
(0.00748606556239 -0.0447479778299 0.0298333205662)
(0.00610726183511 -0.0447479778507 0.0177161518428)
(0.00472845810961 -0.0447479778591 0.00559898312065)
(0.0033496543783 -0.0447479778718 -0.0065181856035)
(0.00197085064941 -0.0447479778307 -0.0186353543254)
(0.000812849403955 -0.0550784617939 -0.0368085834341)
(0.000592046920007 -0.0447479778815 -0.0307525230481)
(0.0155641780429 -0.0447479778733 0.0289141180817)
(0.014185374316 -0.0447479778798 0.0167969493576)
(0.0128065705875 -0.0447479778837 0.00467978063578)
(0.0114277668622 -0.0447479778829 -0.00743738808623)
(0.010048963136 -0.0447479778807 -0.0195545568099)
(0.0086701594063 -0.0447479778823 -0.0316717255324)
(0.0184961863131 -0.0550784617935 0.0350062925978)
(0.0104673672832 -0.0550784617949 -0.0377097288535)
(0.0184961863232 -0.0550784617919 0.0350062925958)
(0.0104673672799 -0.0550784617917 -0.0377097288532)
(0.0184961863133 -0.0550784617972 0.0350062925966)
(0.010467367285 -0.0550784617961 -0.0377097288531)
(0.0184961863122 -0.0550784617945 0.0350062925972)
(0.0155641780431 -0.0447479778701 0.0289141180814)
(0.0141853743123 -0.0447479778632 0.0167969493578)
(0.0128065705886 -0.0447479778867 0.00467978063587)
(0.0114277668598 -0.0447479778853 -0.00743738808784)
(0.0100489631413 -0.0447479778469 -0.0195545568092)
(0.0104673672846 -0.0550784617904 -0.0377097288528)
(0.0086701594087 -0.0447479778634 -0.0316717255309)
(0.0236422905238 -0.0447479778755 0.0279949155951)
(0.0222634867958 -0.0447479778744 0.0158777468742)
(0.0208846830696 -0.0447479778833 0.00376057815151)
(0.0195058793422 -0.0447479778789 -0.00835659057168)
(0.0181270756219 -0.0447479778831 -0.0204737592949)
(0.0167482718931 -0.0447479778804 -0.0325909280175)
(0.0281507041847 -0.0550784617935 0.0341051471766)
(0.0201218851929 -0.0550784617912 -0.0386108742741)
(0.0281507041861 -0.0550784617926 0.0341051471769)
(0.0201218851765 -0.0550784617952 -0.0386108742741)
(0.0281507041796 -0.0550784617978 0.0341051471755)
(0.0201218851728 -0.0550784617963 -0.0386108742733)
(0.0281507041831 -0.0550784617921 0.0341051471767)
(0.023642290525 -0.0447479778532 0.0279949155967)
(0.022263486796 -0.044747977875 0.0158777468741)
(0.0208846830751 -0.0447479778412 0.0037605781517)
(0.0195058793416 -0.0447479778577 -0.00835659057223)
(0.0181270756193 -0.0447479778608 -0.0204737592944)
(0.0201218851921 -0.0550784617919 -0.0386108742736)
(0.0167482718928 -0.0447479778714 -0.0325909280173)
(0.031720403003 -0.0447479778841 0.0270757131132)
(0.0303415992828 -0.0447479778766 0.0149585443897)
(0.0289627955538 -0.0447479778785 0.0028413756683)
(0.0275839918255 -0.0447479778786 -0.0092757930568)
(0.0262051880958 -0.0447479778817 -0.0213929617796)
(0.024826384371 -0.0447479778871 -0.0335101305012)
(0.0378052220324 -0.0550784617921 0.0332040017569)
(0.0297764029887 -0.0550784617943 -0.0395120196915)
(0.0378052220303 -0.0550784617924 0.0332040017567)
(0.0297764030108 -0.0550784617924 -0.0395120196919)
(0.037805222039 -0.0550784617955 0.0332040017575)
(0.0297764029987 -0.0550784617955 -0.0395120196932)
(0.0378052220329 -0.0550784617947 0.0332040017564)
(0.0317204030048 -0.044747977877 0.0270757131127)
(0.0303415992836 -0.0447479778548 0.01495854439)
(0.0289627955514 -0.0447479778553 0.00284137566768)
(0.0275839918224 -0.0447479778695 -0.0092757930554)
(0.0262051881023 -0.0447479778566 -0.0213929617791)
(0.0297764029762 -0.0550784617931 -0.0395120196911)
(0.0248263843691 -0.0447479778814 -0.0335101305027)
(0.0397985154886 -0.0447479778809 0.0261565106254)
(0.0384197117646 -0.0447479778802 0.0140393419051)
(0.0370409080337 -0.0447479778689 0.00192217318141)
(0.0356621043073 -0.0447479778701 -0.0101949955401)
(0.0342833005816 -0.0447479778812 -0.0223121642633)
(0.0329044968546 -0.0447479778701 -0.0344293329841)
(0.0474597398711 -0.0550784617979 0.0323028563376)
(0.0394309208605 -0.055078461794 -0.0404131651114)
(0.0474597398903 -0.0550784617935 0.032302856338)
(0.0394309208471 -0.0550784617925 -0.0404131651122)
(0.0474597398929 -0.0550784617961 0.0323028563381)
(0.0394309208538 -0.0550784617961 -0.0404131651115)
(0.0474597398738 -0.0550784617933 0.0323028563374)
(0.0397985154881 -0.0447479778627 0.0261565106265)
(0.0384197117625 -0.044747977853 0.014039341906)
(0.0370409080355 -0.0447479778632 0.00192217318142)
(0.0356621043065 -0.0447479778531 -0.0101949955403)
(0.0342833005815 -0.0447479778622 -0.0223121642624)
(0.0394309208464 -0.0550784617942 -0.0404131651112)
(0.0329044968493 -0.0447479778734 -0.0344293329867)
(0.0478766279704 -0.0447479778847 0.0252373081419)
(0.0464978242423 -0.0447479778814 0.0131201394184)
(0.0451190205142 -0.0447479778727 0.00100297069639)
(0.0437402167919 -0.0447479778795 -0.011114198024)
(0.0423614130624 -0.0447479778824 -0.0232313667492)
(0.040982609334 -0.0447479778756 -0.0353485354719)
(0.0571142577467 -0.0550784617942 0.0314017109169)
(0.0490854387505 -0.0550784617942 -0.0413143105298)
(0.0571142577527 -0.0550784617926 0.0314017109178)
(0.0490854387637 -0.0550784617927 -0.0413143105321)
(0.05711425775 -0.0550784617958 0.0314017109166)
(0.0490854387493 -0.0550784617972 -0.0413143105326)
(0.0571142577418 -0.0550784617956 0.0314017109184)
(0.0478766279727 -0.0447479778789 0.0252373081413)
(0.0464978242408 -0.0447479778691 0.0131201394169)
(0.0451190205168 -0.0447479778509 0.00100297069621)
(0.0437402167855 -0.0447479778734 -0.0111141980256)
(0.0423614130577 -0.0447479778657 -0.0232313667498)
(0.0490854387516 -0.0550784617934 -0.0413143105309)
(0.0409826093405 -0.0447479778775 -0.0353485354714)
(0.0559547404526 -0.0447479778744 0.0243181056591)
(0.0545759367231 -0.0447479778874 0.0122009369347)
(0.0531971329996 -0.0447479778834 8.37682115577e-05)
(0.0518183292711 -0.0447479778725 -0.0120334005101)
(0.0504395255406 -0.0447479778844 -0.0241505692339)
(0.0490607218145 -0.0447479778899 -0.0362677379568)
(0.0667687756034 -0.0550784617936 0.0305005654985)
(0.0587399565839 -0.0550784617943 -0.0422154559508)
(0.0667687756014 -0.0550784617965 0.0305005654961)
(0.0587399565715 -0.055078461794 -0.0422154559515)
(0.0667687756011 -0.0550784617953 0.0305005654959)
(0.0587399565632 -0.0550784617992 -0.0422154559522)
(0.0667687756024 -0.0550784617907 0.030500565499)
(0.0559547404526 -0.0447479778603 0.0243181056572)
(0.0545759367287 -0.0447479778516 0.0122009369324)
(0.0531971329983 -0.0447479778566 8.37682110076e-05)
(0.0518183292692 -0.0447479778621 -0.0120334005118)
(0.0504395255403 -0.0447479778622 -0.0241505692333)
(0.0587399565882 -0.055078461795 -0.0422154559512)
(0.0490607218167 -0.0447479778559 -0.0362677379555)
(0.0640328529369 -0.0447479778677 0.0233989031769)
(0.0626540492055 -0.04474797788 0.0112817344515)
(0.0612752454799 -0.0447479778766 -0.00083543427099)
(0.059896441754 -0.0447479778799 -0.0129526029949)
(0.0585176380268 -0.0447479778745 -0.0250697717163)
(0.0571388343005 -0.0447479778744 -0.0371869404377)
(0.0764232934538 -0.0550784617934 0.0295994200791)
(0.068394474424 -0.0550784617957 -0.043116601374)
(0.0764232934668 -0.0550784617919 0.0295994200767)
(0.0683944743963 -0.0550784617937 -0.0431166013727)
(0.0764232934691 -0.0550784617922 0.0295994200795)
(0.0683944744166 -0.0550784617938 -0.0431166013717)
(0.0764232934553 -0.0550784617932 0.0295994200766)
(0.0640328529366 -0.0447479778659 0.0233989031757)
(0.0626540492058 -0.0447479778743 0.0112817344474)
(0.0612752454796 -0.0447479778611 -0.000835434275044)
(0.0598964417532 -0.0447479778483 -0.0129526029955)
(0.0585176380221 -0.044747977863 -0.0250697717183)
(0.0683944744294 -0.0550784617958 -0.0431166013727)
(0.0571388342945 -0.0447479778535 -0.0371869404402)
(0.0721109654178 -0.0447479778852 0.0224797006871)
(0.070732161688 -0.0447479778798 0.0103625319628)
(0.0693533579633 -0.0447479778831 -0.00175463675951)
(0.0679745542329 -0.044747977881 -0.0138718054809)
(0.0665957505094 -0.0447479778752 -0.0259889742009)
(0.0652169467804 -0.0447479778691 -0.0381061429253)
(0.0860778113346 -0.0550784617932 0.028698274658)
(0.0780489922908 -0.0550784617962 -0.0440177467926)
(0.0860778113178 -0.0550784617916 0.0286982746585)
(0.0780489922787 -0.055078461796 -0.0440177467924)
(0.0860778113168 -0.0550784617943 0.0286982746552)
(0.0780489922783 -0.0550784617958 -0.0440177467931)
(0.0860778113218 -0.0550784617919 0.0286982746575)
(0.0721109654175 -0.0447479778666 0.0224797006883)
(0.0707321616874 -0.0447479778493 0.0103625319656)
(0.0693533579606 -0.0447479778645 -0.0017546367605)
(0.0679745542406 -0.0447479778658 -0.0138718054798)
(0.066595750507 -0.0447479778624 -0.0259889742046)
(0.0780489922774 -0.0550784617966 -0.0440177467917)
(0.0652169467796 -0.0447479778605 -0.0381061429237)
(0.0801890778989 -0.0447479778674 0.0215604982059)
(0.0788102741726 -0.0447479778735 0.00944332948142)
(0.0774314704427 -0.044747977886 -0.00267383924608)
(0.0760526667217 -0.0447479778823 -0.0147910079663)
(0.0746738629902 -0.0447479778938 -0.0269081766877)
(0.0732950592636 -0.0447479778877 -0.0390253454091)
(0.0957323291828 -0.0550784617926 0.0277971292407)
(0.0877035101348 -0.0550784617931 -0.0449188922097)
(0.0957323291923 -0.055078461792 0.0277971292391)
(0.0877035101437 -0.0550784617947 -0.0449188922094)
(0.0957323291784 -0.0550784617953 0.02779712924)
(0.0877035101387 -0.0550784617922 -0.0449188922083)
(0.0957323291643 -0.055078461793 0.0277971292424)
(0.0801890778977 -0.0447479778683 0.0215604982036)
(0.0788102741681 -0.0447479778452 0.00944332947866)
(0.0774314704456 -0.044747977877 -0.00267383924457)
(0.0760526667183 -0.0447479778716 -0.0147910079659)
(0.0746738629874 -0.0447479778586 -0.0269081766869)
(0.0877035101383 -0.0550784617929 -0.0449188922086)
(0.0732950592679 -0.044747977841 -0.0390253454073)
(0.0882671903775 -0.0447479778739 0.0206412957169)
(0.0868883866505 -0.0447479778741 0.00852412699839)
(0.0855095829276 -0.0447479778858 -0.00359304172845)
(0.0841307792025 -0.0447479778793 -0.0157102104481)
(0.0827519754731 -0.0447479778751 -0.0278273791717)
(0.0813731717447 -0.0447479778678 -0.0399445478888)
(0.105386847037 -0.0550784617944 0.0268959838206)
(0.0973580279757 -0.0550784617962 -0.0458200376308)
(0.105386847036 -0.0550784617913 0.0268959838211)
(0.0973580279847 -0.0550784617939 -0.0458200376296)
(0.105386847031 -0.0550784617972 0.0268959838194)
(0.0973580279999 -0.055078461796 -0.0458200376279)
(0.105386847042 -0.0550784617915 0.0268959838221)
(0.0882671903816 -0.0447479778439 0.0206412957176)
(0.0868883866517 -0.0447479778634 0.00852412699723)
(0.0855095829269 -0.0447479778514 -0.00359304172747)
(0.0841307792021 -0.0447479778673 -0.015710210448)
(0.0827519754748 -0.0447479778423 -0.0278273791714)
(0.0973580279766 -0.0550784617961 -0.0458200376314)
(0.0813731717463 -0.0447479778774 -0.039944547894)
(0.0963453028622 -0.0447479778738 0.0197220932349)
(0.094966499137 -0.0447479778849 0.00760492450834)
(0.0935876954088 -0.0447479778786 -0.0045122442144)
(0.0922088916787 -0.044747977875 -0.0166294129323)
(0.0908300879534 -0.0447479778768 -0.0287465816582)
(0.0894512842286 -0.0447479778809 -0.0408637503772)
(0.11504136491 -0.0550784617944 0.0259948384002)
(0.107012545844 -0.0550784617932 -0.0467211830515)
(0.115041364895 -0.0550784617936 0.0259948384009)
(0.107012545841 -0.055078461793 -0.0467211830488)
(0.115041364902 -0.0550784617947 0.0259948383998)
(0.107012545847 -0.0550784617934 -0.0467211830488)
(0.115041364899 -0.0550784617929 0.0259948384005)
(0.0963453028599 -0.0447479778633 0.0197220932344)
(0.0949664991375 -0.0447479778897 0.00760492450832)
(0.0935876954082 -0.0447479778533 -0.00451224420548)
(0.0922088916769 -0.0447479778602 -0.0166294129315)
(0.0908300879506 -0.0447479778743 -0.0287465816585)
(0.107012545837 -0.0550784617928 -0.0467211830516)
(0.0894512842279 -0.0447479778494 -0.0408637503742)
(0.104423415345 -0.0447479778787 0.018802890752)
(0.103044611614 -0.0447479778829 0.00668572202541)
(0.101665807888 -0.0447479778843 -0.00543144669386)
(0.100287004164 -0.0447479778838 -0.0175486154152)
(0.0989082004343 -0.0447479778736 -0.0296657841352)
(0.0975293967086 -0.0447479778815 -0.0417829528586)
(0.124695882723 -0.0550784617925 0.0250936929851)
(0.116667063681 -0.0550784617948 -0.0476223284707)
(0.124695882741 -0.0550784617914 0.0250936929823)
(0.116667063688 -0.0550784617941 -0.0476223284711)
(0.124695882728 -0.0550784617969 0.0250936929828)
(0.116667063694 -0.0550784617988 -0.047622328471)
(0.124695882731 -0.0550784617909 0.0250936929859)
(0.104423415345 -0.0447479778686 0.0188028907477)
(0.103044611615 -0.0447479778475 0.00668572202523)
(0.101665807889 -0.044747977872 -0.00543144669426)
(0.100287004165 -0.0447479778301 -0.0175486154139)
(0.0989082004322 -0.0447479778698 -0.0296657841408)
(0.11666706368 -0.0550784617948 -0.0476223284703)
(0.0975293967055 -0.0447479778758 -0.0417829528639)
(0.112501527824 -0.0447479778732 0.0178836882636)
(0.111122724096 -0.0447479778868 0.00576651954386)
(0.10974392037 -0.0447479778872 -0.00635064917592)
(0.108365116644 -0.0447479778841 -0.0184678178987)
(0.106986312915 -0.0447479778821 -0.0305849866251)
(0.105607509189 -0.044747977874 -0.0427021553479)
(0.134350400591 -0.0550784617944 0.0241925475634)
(0.126321581557 -0.0550784617948 -0.0485234738874)
(0.134350400598 -0.055078461794 0.0241925475652)
(0.126321581546 -0.0550784617933 -0.0485234738868)
(0.134350400584 -0.0550784617966 0.0241925475606)
(0.126321581555 -0.0550784617974 -0.0485234738903)
(0.134350400584 -0.0550784617882 0.0241925475641)
(0.112501527824 -0.0447479778692 0.0178836882649)
(0.111122724095 -0.0447479778632 0.00576651954348)
(0.10974392037 -0.0447479778639 -0.00635064917704)
(0.108365116645 -0.0447479778797 -0.0184678179011)
(0.106986312918 -0.0447479778549 -0.0305849866242)
(0.126321581568 -0.0550784617919 -0.0485234738845)
(0.105607509192 -0.0447479778303 -0.0427021553506)
(0.120579640305 -0.0447479778933 0.0169644857794)
(0.119200836577 -0.0447479778852 0.00484731706162)
(0.117822032854 -0.0447479778813 -0.00726985166222)
(0.116443229124 -0.0447479778862 -0.0193870203841)
(0.1150644254 -0.044747977884 -0.0315041891072)
(0.113685621669 -0.0447479778749 -0.0436213578354)
(0.144004918435 -0.055078461796 0.0232914021409)
(0.124572664406 -0.0550784617938 0.022823076907)
(0.123220946279 -0.0550784617928 0.0083413001545)
(0.121869228151 -0.0550784617956 -0.00614047665029)
(0.120517510019 -0.0550784617926 -0.0206222534008)
(0.11916579189 -0.055078461797 -0.0351040301953)
(0.135976099398 -0.0550784617961 -0.0494246193104)
(0.117814073763 -0.055078461795 -0.0495858069867)
(0.144004918443 -0.0550784617929 0.023291402144)
(0.124572664407 -0.0550784617933 0.0228230769118)
(0.123220946281 -0.0550784617917 0.00834130017168)
(0.121869228149 -0.0550784617922 -0.00614047665493)
(0.120517510017 -0.0550784617897 -0.0206222534113)
(0.119165791891 -0.0550784617925 -0.0351040302157)
(0.135976099412 -0.0550784617921 -0.0494246193077)
(0.11781407376 -0.055078461793 -0.0495858069874)
(0.14400491845 -0.0550784617952 0.0232914021425)
(0.124572664405 -0.0550784617973 0.0228230769023)
(0.123220946279 -0.0550784617963 0.00834130013759)
(0.12186922815 -0.0550784617974 -0.00614047663596)
(0.120517510019 -0.0550784617955 -0.0206222534121)
(0.119165791894 -0.055078461796 -0.0351040302009)
(0.135976099396 -0.0550784617973 -0.049424619308)
(0.11781407376 -0.0550784617962 -0.0495858069987)
(0.144004918437 -0.0550784617955 0.0232914021404)
(0.120579640308 -0.0447479778423 0.0169644857842)
(0.124572664406 -0.0550784617946 0.0228230769002)
(0.119200836579 -0.0447479778551 0.00484731706018)
(0.123220946279 -0.0550784617946 0.00834130016368)
(0.117822032851 -0.0447479778679 -0.0072698516636)
(0.121869228153 -0.055078461795 -0.0061404766666)
(0.116443229124 -0.0447479778682 -0.0193870203832)
(0.120517510016 -0.0550784617936 -0.0206222534144)
(0.1150644254 -0.0447479778614 -0.0315041891079)
(0.119165791889 -0.0550784617936 -0.0351040301878)
(0.135976099403 -0.0550784617955 -0.0494246193101)
(0.113685621674 -0.0447479778499 -0.0436213578322)
(0.117814073762 -0.0550784617951 -0.0495858069816)
)
;
}
}
// ************************************************************************* //
| |
404dbced88bc79d7fa7a175143f7e2e13e5cee0c | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/24/84df35719085c9/main.cpp | 3eac8d379376a3dc0c522f2f7ef988cfeef3f67c | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 911 | cpp | main.cpp | #include <chrono>
#include <iostream>
#include <mutex> // std::mutex
#include <thread> // std::thread
void print_block(int n, char c)
{
while( n-- )
{
std::cout << c;
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
std::cout << '\n';
}
std::mutex mtx; // mutex for critical section
void print_critial_block(int n, char c)
{
// entering critical section
mtx.lock();
while( n-- )
{
std::cout << c;
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
std::cout << '\n';
mtx.unlock();
// leaving critical section
}
int main()
{
{
std::thread th1(print_block, 40, '*');
std::thread th2(print_block, 40, '$');
th1.join();
th2.join();
}
std::cout << "=== next run ===========================+\n";
{
std::thread th1(print_critial_block, 40, '*');
std::thread th2(print_critial_block, 40, '$');
th1.join();
th2.join();
}
return 0;
}
|
4f31aa398eb5412558b3e7aa698cc15ae35cb37b | 18904ac4e30a87b7c9d5ae569502b60589ed47b0 | /source/gameplay/Stage.hpp | 5319a395fc24aac90bf9408dbff06a05b48af467 | [
"MIT",
"Zlib",
"Apache-2.0",
"BSD-2-Clause",
"CC0-1.0"
] | permissive | JoaoBaptMG/gba-modern | a51bce4464e3347cbea216808bafb440347f8e0d | dfb5757d25cbfa7ee795fa8be521f010661b2293 | refs/heads/master | 2023-07-19T18:32:12.849729 | 2023-06-26T14:17:27 | 2023-06-26T14:41:45 | 201,576,240 | 83 | 5 | MIT | 2020-12-01T11:07:13 | 2019-08-10T03:52:52 | C++ | UTF-8 | C++ | false | false | 1,529 | hpp | Stage.hpp | //--------------------------------------------------------------------------------
// Stage.hpp
//--------------------------------------------------------------------------------
// Provides a class for managing a stage script and waiting for commands
//--------------------------------------------------------------------------------
#pragma once
#include <tonc.h>
#include "util/context.h"
#include "Enemy.hpp"
class GameScene;
class Stage;
// The StageContext is a class to avoid that the coroutines call unsafe functions of Stage
class StageContext
{
Stage& stage();
public:
void stageLengthFrames(u16 length);
void atFrames(u16 time);
void afterFrames(u16 offset);
void atEndOfStage();
void addEnemy(EnemyScript script);
void showMessage(const char* msg);
void showMessage(const char* msg, int period);
void closeMessage();
inline void stageLength(double secs) { stageLengthFrames(60 * secs); }
inline void at(double secs) { atFrames(60 * secs); }
inline void after(double secs) { afterFrames(60 * secs); }
friend class Stage;
};
using StageScript = void(*)(StageContext&);
class Stage final : public StageContext
{
GameScene& gameScene();
context_t curCtx;
public:
Stage() : curCtx(nullptr), curStageCounter(0), nextSwitch(-1), stageLength(0) {}
void playStage(StageScript stage);
void update();
u16 curStageCounter, nextSwitch, stageLength;
friend class StageContext;
friend context_t stageContext(context_t ctx, void* arg);
};
|
b015a259ed09c6dd99c6f046e6b79b48fcd20a4b | 42ab733e143d02091d13424fb4df16379d5bba0d | /samples/frame_generator.cpp | a6a2164fbc7b74e71f1c61a701b4df433d6afaac | [
"Apache-2.0",
"CC0-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | google/filament | 11cd37ac68790fcf8b33416b7d8d8870e48181f0 | 0aa0efe1599798d887fa6e33c412c09e81bea1bf | refs/heads/main | 2023-08-29T17:58:22.496956 | 2023-08-28T17:27:38 | 2023-08-28T17:27:38 | 143,455,116 | 16,631 | 1,961 | Apache-2.0 | 2023-09-14T16:23:39 | 2018-08-03T17:26:00 | C++ | UTF-8 | C++ | false | false | 15,202 | cpp | frame_generator.cpp | /*
* Copyright (C) 2018 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.
*/
#include <atomic>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <map>
#include <memory>
#include <string>
#include <sstream>
#include <utility>
#include <vector>
#include <getopt/getopt.h>
#include <utils/Path.h>
#include <backend/PixelBufferDescriptor.h>
#include <filament/Color.h>
#include <filament/Engine.h>
#include <filament/LightManager.h>
#include <filament/Material.h>
#include <filament/MaterialInstance.h>
#include <filament/Renderer.h>
#include <filament/RenderableManager.h>
#include <filament/Scene.h>
#include <filament/Skybox.h>
#include <filament/TransformManager.h>
#include <filament/View.h>
#include <image/ColorTransform.h>
#include <imageio/ImageEncoder.h>
#include <math/mat3.h>
#include <math/mat4.h>
#include <math/vec4.h>
#include <math/norm.h>
#include <filamentapp/Config.h>
#include <filamentapp/IBL.h>
#include <filamentapp/FilamentApp.h>
#include <filamentapp/MeshAssimp.h>
using namespace filament::math;
using namespace filament;
using namespace filamat;
using namespace utils;
using namespace image;
struct Param {
std::string name;
float start = 0.0f;
float end = 0.0f;
};
const int FRAME_TO_SKIP = 10;
static std::vector<Path> g_filenames;
static std::vector<char> g_materialBuffer;
static Path g_materialPath;
static Path g_paramsPath;
static bool g_lightOn = false;
static bool g_skyboxOn = true;
static Skybox* g_skybox = nullptr;
static int g_materialVariantCount = 1;
static int g_currentFrame = 0;
static std::atomic_int g_savedFrames(0);
static std::vector<Param> g_parameters;
static std::string g_prefix;
static uint32_t g_clearColor = 0x000000;
std::unique_ptr<MeshAssimp> g_meshSet;
static std::map<std::string, MaterialInstance*> g_meshMaterialInstances;
static const Material* g_material = nullptr;
static MaterialInstance* g_materialInstance = nullptr;
static Entity g_light;
static Config g_config;
static void printUsage(char* name) {
std::string exec_name(Path(name).getName());
std::string usage(
"SAMPLE_FRAME_GENERATOR tests a material by varying float parameters\n"
"Usage:\n"
" SAMPLE_FRAME_GENERATOR [options] <mesh files (.obj, .fbx)>\n"
"\n"
"This tool loads an object, applies the specified material and renders N\n"
"frames as specified by the -c flag. For each frame rendered, the material\n"
"parameters are recomputed based on the start and end values specified in the\n"
"params file (see -p). Each frame is finally saved as a PNG.\n\n"
"The --params and --material parameters are mandatory.\n\n"
"Example of a parameters file that varies only the roughness:\n\n"
"roughness 0.0 1.0\n"
"metallic 1.0 1.0\n"
"\n"
"Options:\n"
" --help, -h\n"
" Prints this message\n\n"
" --api, -a\n"
" Specify the backend API: opengl (default) or vulkan\n\n"
" --ibl=<path to cmgen IBL>, -i <path>\n"
" Applies an IBL generated by cmgen's deploy option\n\n"
" --scale=[number], -s [number]\n"
" Applies uniform scale\n\n"
" --material=<path>, -m <path>\n"
" Path to a compiled material file (see matc)\n\n"
" --params=<path>, -p <path>\n"
" Path to a parameters file\n"
" Each line: param_name start end\n\n"
" --count=[integer > 0 && <= 256], -c [integer > 0 && <= 256]\n"
" Number of material variants to render\n\n"
" --light-on, -l\n"
" Turn on the directional light\n\n"
" --prefix=[prefix], -x [prefix]\n"
" Prefix of the output files\n\n"
" --skybox-off, -y\n"
" Hide the skybox, showing the clear color\n\n"
" --clear-color=0xRRGGBB, -b 0xRRGGBB\n"
" Set the clear color\n\n"
);
const std::string from("SAMPLE_FRAME_GENERATOR");
for (size_t pos = usage.find(from); pos != std::string::npos; pos = usage.find(from, pos)) {
usage.replace(pos, from.length(), exec_name);
}
std::cout << usage;
}
static int handleCommandLineArgments(int argc, char* argv[], Config* config) {
static constexpr const char* OPTSTR = "ha:s:li:m:c:p:x:yb:";
static const struct option OPTIONS[] = {
{ "help", no_argument, nullptr, 'h' },
{ "api", required_argument, nullptr, 'a' },
{ "ibl", required_argument, nullptr, 'i' },
{ "scale", required_argument, nullptr, 's' },
{ "material", required_argument, nullptr, 'm' },
{ "params", required_argument, nullptr, 'p' },
{ "count", required_argument, nullptr, 'c' },
{ "light-on", no_argument, nullptr, 'l' },
{ "skybox-off", no_argument, nullptr, 'y' },
{ "prefix", required_argument, nullptr, 'x' },
{ "clear-color", required_argument, nullptr, 'b' },
{ nullptr, 0, nullptr, 0 } // termination of the option list
};
int opt;
int option_index = 0;
while ((opt = getopt_long(argc, argv, OPTSTR, OPTIONS, &option_index)) >= 0) {
std::string arg(optarg ? optarg : "");
switch (opt) {
default:
case 'h':
printUsage(argv[0]);
exit(0);
case 'a':
if (arg == "opengl") {
config->backend = Engine::Backend::OPENGL;
} else if (arg == "vulkan") {
config->backend = Engine::Backend::VULKAN;
} else {
std::cerr << "Unrecognized backend. Must be 'opengl'|'vulkan'." << std::endl;
}
break;
case 'i':
config->iblDirectory = arg;
break;
case 's':
try {
config->scale = std::stof(arg);
} catch (std::invalid_argument& e) {
// keep scale of 1.0
} catch (std::out_of_range& e) {
// keep scale of 1.0
}
break;
case 'b':
try {
g_clearColor = (uint32_t) std::stoul(arg, nullptr, 16);
} catch (std::invalid_argument& e) {
// keep default color
} catch (std::out_of_range& e) {
// keep default color
}
break;
case 'm':
g_materialPath = arg;
break;
case 'p':
g_paramsPath = arg;
break;
case 'x':
g_prefix = arg;
break;
case 'l':
g_lightOn = true;
break;
case 'y':
g_skyboxOn = false;
case 'c':
try {
g_materialVariantCount = std::min(std::max(1, std::stoi(arg)), 256);
} catch (std::invalid_argument& e) {
// keep count of 1
} catch (std::out_of_range& e) {
// keep count of 1
}
break;
}
}
return optind;
}
static void cleanup(Engine* engine, View*, Scene*) {
for (auto material : g_meshMaterialInstances) {
engine->destroy(material.second);
}
if (g_skybox) {
engine->destroy(g_skybox);
}
engine->destroy(g_materialInstance);
engine->destroy(g_material);
g_meshSet.reset(nullptr);
engine->destroy(g_light);
EntityManager& em = EntityManager::get();
em.destroy(g_light);
}
static std::ifstream::pos_type getFileSize(const char* filename) {
std::ifstream in(filename, std::ifstream::ate | std::ifstream::binary);
return in.tellg();
}
static void readMaterial(Engine* engine) {
long fileSize = static_cast<long>(getFileSize(g_materialPath.c_str()));
if (fileSize <= 0) {
return;
}
std::ifstream in(g_materialPath.c_str(), std::ifstream::in);
if (in.is_open()) {
g_materialBuffer.reserve(static_cast<unsigned long>(fileSize));
if (in.read(g_materialBuffer.data(), fileSize)) {
g_material = Material::Builder()
.package((void*) g_materialBuffer.data(), (size_t) fileSize)
.build(*engine);
g_materialInstance = g_material->createInstance();
}
}
}
static void readParameters() {
std::ifstream in(g_paramsPath.c_str(), std::ifstream::in);
if (in.is_open()) {
std::string line;
while (std::getline(in, line)) {
std::istringstream lineStream(line);
Param param;
lineStream >> param.name;
lineStream >> param.start;
lineStream >> param.end;
g_parameters.push_back(param);
}
}
}
static void setup(Engine* engine, View* view, Scene* scene) {
g_meshSet = std::make_unique<MeshAssimp>(*engine);
readMaterial(engine);
readParameters();
if (!g_materialInstance) {
std::cerr << "The source material " << g_materialPath << " is invalid." << std::endl;
return;
}
for (auto& filename : g_filenames) {
g_meshSet->addFromFile(filename, g_meshMaterialInstances);
}
auto& tcm = engine->getTransformManager();
auto ei = tcm.getInstance(g_meshSet->getRenderables()[0]);
tcm.setTransform(ei, mat4f{ mat3f(g_config.scale), float3(0.0f, 0.0f, -4.0f) } *
tcm.getWorldTransform(ei));
auto& rcm = engine->getRenderableManager();
for (auto renderable : g_meshSet->getRenderables()) {
auto instance = rcm.getInstance(renderable);
if (!instance) continue;
rcm.setCastShadows(instance, true);
for (size_t i = 0; i < rcm.getPrimitiveCount(instance); i++) {
rcm.setMaterialInstanceAt(instance, i, g_materialInstance);
}
scene->addEntity(renderable);
}
g_light = EntityManager::get().create();
LightManager::Builder(LightManager::Type::SUN)
.color(Color::toLinear<ACCURATE>(sRGBColor{0.98f, 0.92f, 0.89f}))
.intensity(110000.0f)
.direction({0.6f, -1.0f, -0.8f})
//.castShadows(true)
.build(*engine, g_light);
if (g_lightOn) {
scene->addEntity(g_light);
}
for (const auto& p : g_parameters) {
g_materialInstance->setParameter(p.name.c_str(), p.start);
}
if (!g_skyboxOn) {
auto ibl = FilamentApp::get().getIBL();
if (ibl) ibl->getSkybox()->setLayerMask(0xff, 0x00);
} else {
g_skybox = Skybox::Builder().color({
((g_clearColor >> 16) & 0xFF) / 255.0f,
((g_clearColor >> 8) & 0xFF) / 255.0f,
((g_clearColor ) & 0xFF) / 255.0f,
1.0f
}).build(*engine);
scene->setSkybox(g_skybox);
}
}
static void render(Engine*, View*, Scene*, Renderer*) {
int frame = g_currentFrame - FRAME_TO_SKIP - 1;
if (frame >= 0 && frame < g_materialVariantCount) {
for (const auto& p : g_parameters) {
g_materialInstance->setParameter(p.name.c_str(),
p.start + frame * ((p.end - p.start) / float(g_materialVariantCount - 1)));
}
}
}
static void postRender(Engine*, View* view, Scene*, Renderer* renderer) {
int frame = g_currentFrame - FRAME_TO_SKIP - 1;
// Account for the back buffer
if (frame >= 1 && frame < g_materialVariantCount + 1) {
frame -= 1;
const Viewport& vp = view->getViewport();
uint8_t* pixels = new uint8_t[vp.width * vp.height * 3];
struct CaptureState {
View* view = nullptr;
int currentFrame = 0;
};
backend::PixelBufferDescriptor buffer(pixels, vp.width * vp.height * 3,
backend::PixelBufferDescriptor::PixelDataFormat::RGB,
backend::PixelBufferDescriptor::PixelDataType::UBYTE,
[](void* buffer, size_t size, void* user) {
CaptureState* state = static_cast<CaptureState*>(user);
const Viewport& v = state->view->getViewport();
LinearImage image(toLinear<uint8_t>(v.width, v.height, v.width * 3,
static_cast<uint8_t*>(buffer)));
int digits = (int) log10 ((double) g_materialVariantCount) + 1;
std::ostringstream stringStream;
stringStream << "./" << g_prefix;
stringStream << std::setfill('0') << std::setw(digits);
stringStream << std::to_string(state->currentFrame);
stringStream << ".png";
std::string name = stringStream.str();
Path out(name);
std::ofstream outputStream(out, std::ios::binary | std::ios::trunc);
ImageEncoder::encode(outputStream, ImageEncoder::Format::PNG, image, "", name);
delete[] static_cast<uint8_t*>(buffer);
delete state;
g_savedFrames++;
},
new CaptureState { view, frame }
);
renderer->readPixels(
(uint32_t) vp.left, (uint32_t) vp.bottom, vp.width, vp.height, std::move(buffer));
}
if (g_savedFrames.load() == g_materialVariantCount) {
FilamentApp::get().close();
}
g_currentFrame++;
}
int main(int argc, char* argv[]) {
int option_index = handleCommandLineArgments(argc, argv, &g_config);
int num_args = argc - option_index;
if (num_args < 1 || g_materialPath.isEmpty() || g_paramsPath.isEmpty()) {
printUsage(argv[0]);
return 1;
}
for (int i = option_index; i < argc; i++) {
utils::Path filename = argv[i];
if (!filename.exists()) {
std::cerr << "file " << argv[i] << " not found!" << std::endl;
return 1;
}
g_filenames.push_back(filename);
}
g_config.title = "Frame Generator";
g_config.headless = true;
FilamentApp& filamentApp = FilamentApp::get();
filamentApp.run(g_config,
setup, cleanup, FilamentApp::ImGuiCallback(), render, postRender, 512, 512);
return 0;
}
|
f528cf1a7e36632e94e1b17a92bab8b4b668e3b0 | 490c57eb767d2c5260539964657bef02e34ab44a | /Space Invaders Client/GameObject.cpp | 9960d2ed7904bdbdd5ea69ed81c470e1e40ea7de | [] | no_license | SunTzuBean/space-invaders-client | af5b121fefb586530b1e6e9ec1dd2c94b96dcb43 | 6198ec937ffe21ffe4c75276276ece936344aff8 | refs/heads/main | 2023-04-01T01:42:18.853917 | 2021-04-07T03:01:51 | 2021-04-07T03:01:51 | 355,395,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,231 | cpp | GameObject.cpp | #include "GameObject.h"
GameObject::GameObject() {
this->bullet = NULL;
this->enemy = NULL;
this->player = NULL;
this->handler = NULL;
}
GameObject::GameObject(std::string type) {
if (type == ENEMY_BULLET) {
this->bullet = new EnemyBullet(sf::Vector2f(10, 30));
this->enemy = NULL;
this->player = NULL;
this->handler = new BulletHandler(this);
}
else if (type == PLAYER_BULLET) {
this->bullet = new PlayerBullet(sf::Vector2f(10, 30));
this->enemy = NULL;
this->player = NULL;
this->handler = new BulletHandler(this);
}
else if (type == ENEMY) {
this->bullet = NULL;
this->enemy = new Enemy(sf::Vector2f(ENEMY_WIDTH, ENEMY_HEIGHT));
this->player = NULL;
this->handler = new EnemyHandler(this);
}
else if (type == PLAYER) {
this->bullet = NULL;
this->enemy = NULL;
this->player = new Player();
this->handler = new PlayerHandler(this);
}
else {
// We should NEVER EVER get here, if we got here we initialized an object incorrectly.
this->bullet = NULL;
this->enemy = NULL;
this->player = NULL;
this->handler = NULL;
}
this->type = type;
isAlive = true;
guid = 0;
}
GameObject::~GameObject() {
if (type == ENEMY_BULLET || type == PLAYER_BULLET) {
delete bullet;
}
else if (type == ENEMY) {
delete enemy;
}
else if (type == PLAYER) {
delete player;
}
delete handler;
}
GameObject::GameObject(const GameObject& g2) {
this->type = g2.type;
this->bullet = g2.bullet;
this->enemy = g2.enemy;
this->player = g2.player;
this->handler = g2.handler;
this->isAlive = g2.isAlive;
this->guid = g2.guid;
}
GameObject& GameObject::operator=(const GameObject& g2)
{
this->type = g2.type;
this->bullet = g2.bullet;
this->enemy = g2.enemy;
this->player = g2.player;
this->handler = g2.handler;
this->isAlive = g2.isAlive;
this->guid = g2.guid;
return *this;
}
void GameObject::setGUID(int guid) {
this->guid = guid;
}
int GameObject::getGUID() {
return this->guid;
}
std::string GameObject::getType() {
return this->type;
}
EventHandler* GameObject::getHandler() {
return handler;
}
void GameObject::draw(sf::RenderWindow* window) {
if (type == PLAYER_BULLET || type == ENEMY_BULLET) {
window->draw(*bullet);
}
else if (type == ENEMY) {
window->draw(*enemy);
}
else if (type == PLAYER) {
window->draw(*player);
}
}
void GameObject::move(float x, float y) {
if (type == PLAYER_BULLET || type == ENEMY_BULLET) {
bullet->move(x, y);
}
else if (type == ENEMY) {
enemy->move(x, y);
}
else if (type == PLAYER) {
player->move(x, y);
}
}
bool GameObject::collidesWith(GameObject other) {
std::string oType = other.getType();
if (type == PLAYER_BULLET) {
if (oType == PLAYER_BULLET) {
return this->bullet->getGlobalBounds().intersects(other.getBullet()->getGlobalBounds());
}
else if (oType == ENEMY) {
return this->bullet->getGlobalBounds().intersects(other.getEnemy()->getGlobalBounds());
}
else if (oType == PLAYER) {
return this->bullet->getGlobalBounds().intersects(other.getPlayer()->getGlobalBounds());
}
}
else if (type == ENEMY) {
if (oType == PLAYER_BULLET) {
return this->enemy->getGlobalBounds().intersects(other.getBullet()->getGlobalBounds());
} // remember, enemies can't intersect each other.
else if (oType == PLAYER) {
return this->enemy->getGlobalBounds().intersects(other.getPlayer()->getGlobalBounds());
}
}
else if (type == PLAYER) {
if (oType == PLAYER_BULLET) {
return this->player->getGlobalBounds().intersects(other.getBullet()->getGlobalBounds());
} // remember, no more than 1 player so no intersection between players.
else if (oType == ENEMY) {
return this->player->getGlobalBounds().intersects(other.getEnemy()->getGlobalBounds());
}
}
return false; // You should not EVER get here.
}
void GameObject::setAlive(bool isAlive) {
this->isAlive = isAlive;
}
void GameObject::kill() {
this->isAlive = false;
}
bool GameObject::cleanUp() {
if (!isAlive) { // if it's dead,
if (type == PLAYER_BULLET || type == ENEMY_BULLET) { // clean the memory allocated for the object.
delete this->bullet;
}
else if (type == ENEMY) {
delete this->enemy;
}
else if (type == PLAYER) {
delete this->player;
}
delete this->handler; // free the handler for the object.
return true;
}
return false;
// nothing happens if it's called and it's still alive.
// I assume you would call delete from outside to free this object, but then I'm worried you can't
// remove it from a vector?
}
void GameObject::setPosition(sf::Vector2f pos) {
if (type == PLAYER_BULLET || type == ENEMY_BULLET) {
bullet->setPosition(pos);
}
else if (type == ENEMY) {
enemy->setPosition(pos);
}
else if (type == PLAYER) {
player->setPosition(pos);
}
}
void GameObject::setTexture(std::string texture) {
sf::Texture t;
if (!t.loadFromFile(texture)) {}
t.setRepeated(true);
if (type == PLAYER_BULLET || type == ENEMY_BULLET) {
bullet->setTexture(&t);
}
else if (type == ENEMY) {
enemy->setTexture(&t);
}
else if (type == PLAYER) {
player->setTexture(&t);
}
}
Bullet* GameObject::getBullet() {
return this->bullet;
}
Enemy* GameObject::getEnemy() {
return this->enemy;
}
Player* GameObject::getPlayer() {
return this->player;
} |
359e184dd63d00352e6b13212c9a2fe25969dcf6 | 6b9aa33bd575464f944ec9d0645ef7055f78a5f4 | /src/jwt.cpp | 4a752d5b06e32e17605403443bcfdff8c5112557 | [] | no_license | 0x003e/jwtcpp | fede4fea641b2e49b38ac92f2eecf3c2e80aa95f | d5fc63ee5ea418376aa07fa2a657d9e89514f6e7 | refs/heads/master | 2020-12-26T01:38:48.306556 | 2016-07-24T14:50:57 | 2016-07-24T14:50:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,338 | cpp | jwt.cpp | #include "string.h"
#include "jwt.h"
#include "utils.h"
#include "exceptions.h"
#include "cryptopp/dsa.h"
#include "cryptopp/osrng.h"
using namespace std;
using namespace jwtcpp;
using namespace CryptoPP;
namespace jwtcpp {
JWT::JWT(const string& algorithm, json_t* payload, const string& signature,
const string& signed_data)
{
this->algorithm = algorithm;
this->payload = payload;
this->signature = signature;
this->signed_data = signed_data;
}
bool JWT::checkSignature(const string& key)
{
DSA::PublicKey publicKey;
publicKey.Load(StringStore(key).Ref());
DSA::Verifier verifier(publicKey);
SignatureVerificationFilter svf(verifier);
StringSource(this->signature +this->signed_data, true,
new Redirector(svf));
return svf.GetLastResult();
}
JWT* parse(const string& jwt)
{
// extracting the algorithm, payload, signature and data
char* tok = strtok((char*) jwt.c_str(), ".");
string raw_algorithm = (string) tok;
tok = strtok(NULL, ".");
string raw_payload = (string) tok;
tok = strtok(NULL, ".");
string signature = (string) tok;
string signed_data = raw_algorithm + "." + raw_payload;
// decode json values for the algorithm and the payload
json_t* algorithm_json = decodeJSONBytes(raw_algorithm);
// check that the "alg" parameter is present. If not, throw an
// exception
json_t* algorithm_ = json_object_get(algorithm_json, "alg");
if (algorithm_ == NULL){
ParsingError e;
throw e;
}
string algorithm = json_string_value(algorithm_);
json_t* payload = decodeJSONBytes(raw_payload);
JWT* obj = new JWT(algorithm, payload, signature, signed_data);
return obj;
}
string generate(const string& algorithm, const string& key,
map<string, string>* payloadMap)
{
// encode the algorithm in bytes
json_t* jsonAlg = json_object();
json_object_set(jsonAlg, "alg", json_string(algorithm.c_str()));
string alg = encodeJSONBytes(jsonAlg);
// loop on the payload map to create a json_object from it
json_t* jsonPayload = json_object();
if (payloadMap->size() > 0){
map<string, string>::iterator iter;
for(iter = payloadMap->begin(); iter != payloadMap->end(); iter++){
json_object_set(jsonPayload, (*iter).first.c_str(),
json_string((*iter).second.c_str()));
}
}
// encode the payload in bytes
string payload = encodeJSONBytes(jsonPayload);
// get a random number generator
AutoSeededRandomPool rng;
// sign the data with the key and the algorithm name.
// XXX handle different algos
DSA::PrivateKey privateKey;
privateKey.Load(StringStore(key).Ref());
DSA::Signer signer(privateKey);
cout << alg + "." + payload << endl;
string signature;
StringSource(alg + "." + payload, true,
new SignerFilter(rng, signer, new StringSink(signature)));
return alg + "." + payload + "." + signature;
}
}
|
c77459e77f32c5147cdfc25245343986f401753c | ac79c92accabbb264cec61dd1cd084d31cfc1159 | /src/circle_predict.cpp | 26e7547af4344115fa3e90018add002b63619a53 | [] | no_license | chris1129/Ego-network-Community-Prediction | bccd8bd3e20de6f8fdaf4f7f84f54c4ae026d239 | 0a829f9a1fad9ffb5ee42947e98b67801f56c91f | refs/heads/master | 2020-03-15T23:06:49.257982 | 2018-05-07T00:35:24 | 2018-05-07T00:35:24 | 132,387,258 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,115 | cpp | circle_predict.cpp | #include <iostream>
#include <fstream>
#include <sstream>
#include <unordered_map>
#include <unordered_set>
using namespace std;
struct simplehash{
template <class T1, class T2>
bool operator()(const pair<T1,T2>& p)const{
auto h1 = hash<T1>();
auto h2 = hash<T2>();
return h1(p.first)^h2(p.second);
}
};
int main(int argc, const char * argv[]) {
string file_dir="./";
string file_name=argv[1];
//string file_name="110701307803962595019.edges";
ifstream edge_file(file_dir+file_name+".edges");
if(edge_file.good())cout<<file_name<<" file open success"<<endl;
else {
cout<<"file open fail"<<endl;
return 0;
}
int num_vertex;
int num_edge;
string edg_str;
getline(edge_file,edg_str);
int counter=1;
cout<<"Reorganizing edges....."<<endl;
unordered_set<string>vertices;//mapping original id to a new id starting from 1
unordered_set<pair<string,string>,simplehash>edges;
string outputFileName=file_name+"_edgeNormalized.mtx";
ofstream p_file(file_dir+outputFileName);
while(getline(edge_file,edg_str)){
stringstream ss(edg_str);
string u;
string v;
ss>>u>>v;
//cout<<u<<","<<v<<endl;
vertices.insert(u);
vertices.insert(v);
if(edges.count({u,v})==0&&edges.count({v,u})==0){
edges.insert({u,v});
}
}
num_vertex=int(vertices.size());
num_edge=int(edges.size());
//cout<<"V="<<num_vertex<<", E="<<num_edge<<endl;
p_file<<num_vertex<<" "<<num_edge<<"\n";
for(auto e:edges){
p_file<<e.first<<" "<<e.second<<"\n";
}
p_file.close();
cout<<"Running Ktruss...."<<endl;
string cmd="./../../..//backup/nd_ori/nucleus ./"+outputFileName+" 23 YES";
//string cmd="./..//nd/nucleus ..//data/temp/ego_"+to_string(i)+"_minus_ego.mtx 12 YES";
system(cmd.c_str());
//output predict circle:
ifstream nucleusFile(outputFileName+"_23_Hierarchy");
string line;
cout<<"Outputing Circle Prediction file....."<<endl;
ofstream c_file(file_dir+file_name+".Predict");
while(getline(nucleusFile,line)){
if(line.substr(0,2)=="id"){
stringstream ss(line);
string dummy;
for(int i=0;i<15;i++){
ss>>dummy;
}
string id;
while(ss>>id){
if(id=="-1")break;
//cout<<id<<" ";
c_file<<id<<" ";
}
//cout<<endl;
c_file<<'\n';
}
}
c_file.close();
ifstream c_file_origin(file_dir+file_name+".circles");
cout<<"Outputing Circle GroundTrue File....."<<endl;
ofstream groundTrueCircle(file_dir+file_name+".GroundTrue");
while(getline(c_file_origin,line)){
stringstream ss(line);
string dummy;
ss>>dummy;
int id;
while(ss>>id){
groundTrueCircle<<id<<" ";
}
groundTrueCircle<<"\n";
}
c_file_origin.close();
groundTrueCircle.close();
} |
4006abf33c2484b222d3248184a84fbd10d5e7a9 | e9018c0e6a9f3e11407d84834fa5c6111d477a98 | /Networking/Proxy/Proxy-Client/main.cpp | f2bf3a27f2b4baecd11ca1f6df31abaeb300be36 | [] | no_license | asqapro/WinAPI | 455f586a33e0ebccabf4052393686475c832bbe1 | bab6d4f6ef05ede1dc9f500773e925f2ddf013e0 | refs/heads/master | 2020-05-03T22:12:08.539220 | 2015-04-14T19:14:23 | 2015-04-14T19:14:23 | 33,947,813 | 0 | 0 | null | null | null | null | IBM852 | C++ | false | false | 7,142 | cpp | main.cpp | #include <iostream>
#include <winsock.h>
#include <fstream>
using namespace std;
WSADATA wsadata;
bool init(){
int error = WSAStartup(0x0202, &wsadata);
if(error){
return false;
}
if(wsadata.wVersion != 0x0202)
{
WSACleanup(); //Clean up Winsock
return false;
}
return true;
}
string MESSAGE;
string file_piece;
ofstream file_full;
int TCP_PORT = 5721;
string TCP_IP;
bool CloseConnection (SOCKET s)
{
//Close the socket if it exists
if(s)
closesocket(s);
return true;
}
char acReadBuffer[5000];
bool exit_server_1;
bool exit_server_2;
bool password_entered = false;
int password_try_count = 3;
bool request_done = false;
int read_sock(SOCKET sd)
{
// Read data from client
int nReadBytes = 1;
while(nReadBytes != 0){
memset(acReadBuffer,0,5000);
nReadBytes = recv(sd, acReadBuffer, 5000, 0);
if(nReadBytes == SOCKET_ERROR){
return -1;
}
if((string)acReadBuffer == "got"){
cout << "Access granted." << endl;
password_entered = true;
return 1;
}
else if((string)acReadBuffer == "password"){
password_entered = false;
cout << "Password incorrect." << endl;
cout << "You have " << password_try_count << " attempts left." << endl;
password_try_count--;
if(password_try_count <= 0){
return 0;
}
return -2;
}
else if((string)acReadBuffer == "none"){
return -4;
}
else if(strlen(acReadBuffer) > 0){
file_piece += acReadBuffer;
return 2;
}
else{
return 3;
}
}
return -3;
}
string url_request;
int handshake(const char* IPAddress, int PortNo){
//Fill out the information needed to initialize a socketů
SOCKADDR_IN target; //Socket address information
target.sin_family = AF_INET; // address family Internet
target.sin_port = htons (PortNo); //Port to connect on
target.sin_addr.s_addr = inet_addr (IPAddress); //Target IP
SOCKET s = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP); //Create socket
if (s == INVALID_SOCKET)
{
return -1; //Couldn't create the socket
}
//Try connecting...
if (connect(s, (SOCKADDR *)&target, sizeof(target)) == SOCKET_ERROR)
{
return -1; //Couldn't connect
}
else
send(s, MESSAGE.c_str(), MESSAGE.length(), 0);
while(true){
int ret_code = read_sock(s);
if(ret_code == -4){ //no data recieved from server
cout << "No data recieved from " << url_request << "." << endl;
return -1;
}
if(ret_code == -3){ //no data recieved from socket
continue;
}
if(ret_code == -1){ //error with the socket
return -1;
}
else if(ret_code == 0){ //password incorrect, no attempts left, kill server
cout << "Server shutting down." << endl;
MESSAGE = "kill";
send(s, MESSAGE.c_str(), MESSAGE.length(), 0);
exit(-1);
}
else if(ret_code == 1){ //password entered, grant access
break;
}
else if(ret_code == -2){ //wrong password, but x amount of attempts left
if(CloseConnection(s)){
}
else{
cout << "Error disconnecting" << endl;
cout << WSAGetLastError();
return -1;
}
return 0;
}
else if(ret_code == 2){ //recieving file, keep reading
continue;
}
else if(ret_code == 3){ //done recieving file
request_done = true;
cout << file_piece.length() << endl;
cout << file_piece.size() << endl;
file_full.open("Requested.html", ios::binary);
file_full << file_piece;
file_full.close();
if(CloseConnection(s)){
return 1;
}
else{
cout << "Error disconnecting" << endl;
cout << WSAGetLastError();
return -1;
}
break;
}
}
if(CloseConnection(s)){
return 1;
}
else{
cout << "Error disconnecting" << endl;
cout << WSAGetLastError();
return -1;
}
}
string password;
void client(){
cout << "Setting up client." << endl;
cout << "IP of server? ";
cin >> TCP_IP;
while(true){
if(!password_entered){
cout << "Enter password: ";
cin >> password;
MESSAGE = password;
int handshake_ret_code = handshake(TCP_IP.c_str(), TCP_PORT);
if(handshake_ret_code == -1){
cout << "Error occurred, restarting client." << endl;
return;
}
else if(handshake_ret_code == 0){
continue;
}
}
else{
cout << "URL: ";
cin >> url_request;
if(url_request.find("www.") == string::npos){
url_request = "www." + url_request;
}
if(url_request.find(".com") == string::npos
&& url_request.find(".org") == string::npos
&& url_request.find(".gov") == string::npos
&& url_request.find(".net") == string::npos){
string response;
cout << "Either you skipped the domain suffix, or you entered one not recognized. Do you wish to add the typical .com suffix? (y/n) ";
cin >> response;
if(response == "y" || response == "Y" || response == "yes" || response == "Yes" || response == "YES"){
url_request += ".com";
cout << url_request << endl;
}
}
MESSAGE = url_request;
int handshake_ret_code = handshake(TCP_IP.c_str(), TCP_PORT);
if(handshake_ret_code == -1){
cout << "Error occurred, restarting client.";
for(int iter = 0; iter < 10; iter++){
cout << ".";
Sleep(1000);
}
return;
}
}
if(request_done){
cout << "Requested URL \'" << url_request << "\' fetched." << endl;
cout << "You will find the HTML file to your URL in your current directory." << endl;
cout << "Resetting client.";
for(int iter = 0; iter < 10; iter++){
cout << ".";
Sleep(1000);
}
break;
}
}
}
int main()
{
if(!init()){
cout << "Something went wrong. Please restart the program." << endl;
return 0;
}
while(true){
client();
exit_server_1 = false;
exit_server_2 = false;
password_entered = false;
request_done = false;
system("cls");
}
WSACleanup(); //Clean up Winsock
return 0;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.