blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
264
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 5
140
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 905
values | visit_date
timestamp[us]date 2015-08-09 11:21:18
2023-09-06 10:45:07
| revision_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-17 19:19:19
| committer_date
timestamp[us]date 1997-09-14 05:04:47
2023-09-06 06:22:19
| github_id
int64 3.89k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us]date 2012-06-07 00:51:45
2023-09-14 21:58:39
⌀ | gha_created_at
timestamp[us]date 2008-03-27 23:40:48
2023-08-21 23:17:38
⌀ | gha_language
stringclasses 141
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
10.4M
| extension
stringclasses 115
values | content
stringlengths 3
10.4M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
158
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
fe7468326c38d8b051e5da82fb25a76283024143 | 5c34abe10630b23da8ba7d1cbce38bda53a4b6fa | /Overlay/src/Tasks/SkimOverlayEventsAlg.cxx | e145fc5aeaf5db127e46f6b048a8700befccd26a | [] | no_license | fermi-lat/GlastRelease-scons-old | cde76202f706b1c8edbf47b52ff46fe6204ee608 | 95f1daa22299272314025a350f0c6ef66eceda08 | refs/heads/master | 2021-07-23T02:41:48.198247 | 2017-05-09T17:27:58 | 2017-05-09T17:27:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,063 | cxx | /** @file SkimOverlayEventsAlg.cxx
@brief declartion, implementaion of the class SkimOverlayEventsAlg
$Header$
*/
// Gaudi system includes
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/AlgFactory.h"
#include "GaudiKernel/IDataProviderSvc.h"
#include "GaudiKernel/SmartDataPtr.h"
#include "GaudiKernel/Algorithm.h"
#include "GaudiKernel/IService.h"
#include "GaudiKernel/SmartIF.h"
// if using the gui
//#include "GuiSvc/IGuiSvc.h"
//#include "gui/GuiMgr.h"
//#include "gui/DisplayControl.h"
// TDS class declarations: input data, and McParticle tree
//#include "Event/MonteCarlo/McParticle.h"
//#include "Event/MonteCarlo/McIntegratingHit.h"
//#include "Event/MonteCarlo/McPositionHit.h"
#include "Event/TopLevel/Event.h"
#include "Event/TopLevel/EventModel.h"
//#include "Event/TopLevel/MCEvent.h"
//#include "Event/Recon/TkrRecon/TkrVertex.h"
//#include "Event/Recon/CalRecon/CalCluster.h"
//#include "Event/Recon/CalRecon/CalXtalRecData.h"
//#include "Event/Recon/AcdRecon/AcdRecon.h"
#include "LdfEvent/Gem.h"
#include "enums/TriggerBits.h"
#include "Overlay/IOverlayDataSvc.h"
//#include "ntupleWriterSvc/INTupleWriterSvc.h"
// for access to geometry perhaps
#include "GlastSvc/GlastDetSvc/IGlastDetSvc.h"
// for the propagator
//#include "GlastSvc/Reco/IPropagator.h"
#include <cassert>
#include <sstream>
/** @class SkimOverlayEventsAlg
@brief A simple algorithm.
*/
class SkimOverlayEventsAlg : public Algorithm {
public:
SkimOverlayEventsAlg(const std::string& name, ISvcLocator* pSvcLocator);
/// set parameters and attach to various perhaps useful services.
StatusCode initialize();
/// process one event
StatusCode execute();
/// clean up
StatusCode finalize();
private:
/// number of times called
double m_count;
/// the GlastDetSvc used for access to detector info
IGlastDetSvc* m_detSvc;
/// access to the Gui Service for display of 3-d objects
//IGuiSvc* m_guiSvc;
/// access to the overlay data Service for display of 3-d objects
IOverlayDataSvc* m_overlayOutputSvc;
};
//static const AlgFactory<SkimOverlayEventsAlg> Factory;
//const IAlgFactory& SkimOverlayEventsAlgFactory = Factory;
DECLARE_ALGORITHM_FACTORY(SkimOverlayEventsAlg);
SkimOverlayEventsAlg::SkimOverlayEventsAlg(const std::string& name, ISvcLocator* pSvcLocator)
:Algorithm(name, pSvcLocator)
,m_count(0)
{
// declare properties with setProperties calls
//declareProperty("treeName", m_treeName="");
}
StatusCode SkimOverlayEventsAlg::initialize(){
StatusCode sc = StatusCode::SUCCESS;
MsgStream log(msgSvc(), name());
log << MSG::INFO << "initialize" << endreq;
// Use the Job options service to set the Algorithm's parameters
setProperties();
//if( m_treeName.empty()) {
// log << MSG::INFO << "tupleName property not set! No ntuple output"<<endreq;
//}
// now try to find the GlastDevSvc service
if (service("GlastDetSvc", m_detSvc).isFailure()){
log << MSG::ERROR << "Couldn't find the GlastDetSvc!" << endreq;
return StatusCode::FAILURE;
}
IService* tmpService = 0;
// Now look up the output data service
if (service("OverlayOutputSvc", tmpService, false).isFailure())
{
log << MSG::INFO << "No OverlayOutputSvc available, no input conversion will be performed" << endreq;
m_overlayOutputSvc = 0;
}
else m_overlayOutputSvc = SmartIF<IOverlayDataSvc>(tmpService);
return sc;
}
StatusCode SkimOverlayEventsAlg::execute()
{
StatusCode sc = StatusCode::SUCCESS;
MsgStream log( msgSvc(), name() );
log << MSG::DEBUG << "executing " << ++m_count << " time" << endreq;
// Retrieving pointers from the TDS
SmartDataPtr<Event::EventHeader> header(eventSvc(), EventModel::EventHeader);
//SmartDataPtr<Event::MCEvent> mcheader(eventSvc(), EventModel::MC::Event);
//SmartDataPtr<Event::McParticleCol> particles(eventSvc(), EventModel::MC::McParticleCol);
//SmartDataPtr<Event::TkrVertexCol> vertices(eventSvc(), EventModel::TkrRecon::TkrVertexCol);
//SmartDataPtr<Event::CalClusterCol> clusters(eventSvc(), EventModel::CalRecon::CalClusterCol);
//SmartDataPtr<Event::CalXtalRecCol> xtalrecs(eventSvc(), EventModel::CalRecon::CalXtalRecCol);
//SmartDataPtr<Event::AcdRecon> acdrec(eventSvc(), EventModel::AcdRecon::Event);
// Now recover the hit collection
//SmartDataPtr<LdfEvent::Gem> gem(eventSvc(), "/Event/Gem");
int WordTwo = header->triggerWordTwo();
int gemEngine = ((WordTwo >> enums::ENGINE_offset) & enums::ENGINE_mask);
if (gemEngine!=3) {
setFilterPassed( false );
m_overlayOutputSvc->storeEvent(false);
return sc;
}
return sc;
}
StatusCode SkimOverlayEventsAlg::finalize(){
StatusCode sc = StatusCode::SUCCESS;
MsgStream log(msgSvc(), name());
log << MSG::INFO << "finalize after " << m_count << " calls." << endreq;
return sc;
}
| [
""
] | |
f45b41577e43005fedacf6ebd707615766424300 | 743368bc7344f74a261a554bd794ae492b2f4398 | /CUDA/include/cooperative_groups/details/functional.h | 5daa5308f8ea7b9f1d4b847393f1f5b1edd3f7a7 | [] | no_license | 3SigmaTech/CUDA-DDP | d2b7644c3bc80c99410919f3bd68d1da69e599aa | 0d581297b0db4dedac9865b5f6e366a6fa2d8e02 | refs/heads/main | 2023-07-01T20:59:02.163435 | 2021-08-11T14:57:35 | 2021-08-11T14:57:35 | 393,486,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,200 | h | /* Copyright 1993-2016 NVIDIA Corporation. All rights reserved.
*
* NOTICE TO LICENSEE:
*
* The source code and/or documentation ("Licensed Deliverables") are
* subject to NVIDIA intellectual property rights under U.S. and
* international Copyright laws.
*
* The Licensed Deliverables contained herein are PROPRIETARY and
* CONFIDENTIAL to NVIDIA and are being provided under the terms and
* conditions of a form of NVIDIA software license agreement by and
* between NVIDIA and Licensee ("License Agreement") or electronically
* accepted by Licensee. Notwithstanding any terms or conditions to
* the contrary in the License Agreement, reproduction or disclosure
* of the Licensed Deliverables to any third party without the express
* written consent of NVIDIA is prohibited.
*
* NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
* LICENSE AGREEMENT, NVIDIA MAKES NO REPRESENTATION ABOUT THE
* SUITABILITY OF THESE LICENSED DELIVERABLES FOR ANY PURPOSE. THEY ARE
* PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND.
* NVIDIA DISCLAIMS ALL WARRANTIES WITH REGARD TO THESE LICENSED
* DELIVERABLES, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY,
* NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE.
* NOTWITHSTANDING ANY TERMS OR CONDITIONS TO THE CONTRARY IN THE
* LICENSE AGREEMENT, IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY
* SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, OR ANY
* DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THESE LICENSED DELIVERABLES.
*
* U.S. Government End Users. These Licensed Deliverables are a
* "commercial item" as that term is defined at 48 C.F.R. 2.101 (OCT
* 1995), consisting of "commercial computer software" and "commercial
* computer software documentation" as such terms are used in 48
* C.F.R. 12.212 (SEPT 1995) and are provided to the U.S. Government
* only as a commercial end item. Consistent with 48 C.F.R.12.212 and
* 48 C.F.R. 227.7202-1 through 227.7202-4 (JUNE 1995), all
* U.S. Government End Users acquire the Licensed Deliverables with
* only those rights set forth herein.
*
* Any use of the Licensed Deliverables in individual and commercial
* software must include, in the user documentation and internal
* comments to the code, the above Disclaimer and U.S. Government End
* Users Notice.
*/
#ifndef _CG_FUNCTIONAL_H
#define _CG_FUNCTIONAL_H
#include "info.h"
#ifdef _CG_USE_CUDA_STL
# include <cuda/std/functional>
#endif
_CG_BEGIN_NAMESPACE
namespace details {
#ifdef _CG_USE_CUDA_STL
using cuda::std::plus;
using cuda::std::bit_and;
using cuda::std::bit_xor;
using cuda::std::bit_or;
#else
template <typename Ty> struct plus {__device__ __forceinline__ Ty operator()(Ty arg1, Ty arg2) const {return arg1 + arg2;}};
template <typename Ty> struct bit_and {__device__ __forceinline__ Ty operator()(Ty arg1, Ty arg2) const {return arg1 & arg2;}};
template <typename Ty> struct bit_xor {__device__ __forceinline__ Ty operator()(Ty arg1, Ty arg2) const {return arg1 ^ arg2;}};
template <typename Ty> struct bit_or {__device__ __forceinline__ Ty operator()(Ty arg1, Ty arg2) const {return arg1 | arg2;}};
#endif // _CG_USE_PLATFORM_STL
} // details
template <typename Ty>
struct plus : public details::plus<Ty> {};
template <typename Ty>
struct less {
__device__ __forceinline__ Ty operator()(Ty arg1, Ty arg2) const {
return (arg2 < arg1) ? arg2 : arg1;
}
};
template <typename Ty>
struct greater {
__device__ __forceinline__ Ty operator()(Ty arg1, Ty arg2) const {
return (arg1 < arg2) ? arg2 : arg1;
}
};
template <typename Ty>
struct bit_and : public details::bit_and<Ty> {};
template <typename Ty>
struct bit_xor : public details::bit_xor<Ty> {};
template <typename Ty>
struct bit_or : public details::bit_or<Ty> {};
_CG_END_NAMESPACE
#endif //_CG_FUNCTIONAL_H
| [
"[email protected]"
] | |
9958b19bbb86e318c68a8fbe460aa8479dae4dd8 | 88ca0a377a52546916405936daf037dc33a3826e | /BallGameNew/BallRenderer.h | c97226c285ef540f4e4fd9baea0cedd56a7d9e74 | [] | no_license | Hazewsky/OpenGL-graphics | a819bc16edac757267eedeb2e3ddb77f17479d2e | 234b0ead8e8fdd2aeb31dbdd88abf896e96bf659 | refs/heads/master | 2020-03-27T20:33:02.674827 | 2018-09-02T12:31:20 | 2018-09-02T12:31:20 | 147,077,173 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,323 | h | #pragma once
#include <Bengine/SpriteBatch.h>
#include <Bengine/GLSLProgram.h>
#include <vector>
#include <memory>
#include "Ball.h"
class BallRenderer {
public:
////lazy init. будет инициировать ГЛСЛ только когда оно использунется в функции
virtual void renderBalls(Bengine::SpriteBatch& spriteBatch,
const std::vector<Ball>&balls,
const glm::mat4& projectionMatrix);
protected:
std::unique_ptr<Bengine::GLSLProgram> m_program = nullptr;
};
class MomentumBallRenderer :public BallRenderer{
public:
virtual void renderBalls(Bengine::SpriteBatch& spriteBatch,
const std::vector<Ball>&balls,
const glm::mat4& projectionMatrix) override;
};
class VelocityBallRenderer :public BallRenderer{
public:
VelocityBallRenderer(int screenWidth, int screenHeight);
virtual void renderBalls(Bengine::SpriteBatch& spriteBatch,
const std::vector<Ball>&balls,
const glm::mat4& projectionMatrix) override;
private:
int m_screenWidth, m_screenHeight;
};
class WeirdRenderer :public BallRenderer{
public:
WeirdRenderer(int screenWidth, int screenHeight);
virtual void renderBalls(Bengine::SpriteBatch& spriteBatch,
const std::vector<Ball>&balls,
const glm::mat4& projectionMatrix) override;
private:
int m_screenWidth, m_screenHeight;
}; | [
"[email protected]"
] | |
25cc170efb341c9ede370c2d0f24579d787044b2 | 254cf1941d647e3518a8a592f45c75f74cf54a92 | /src/http/rfc5988.h | 135c080d6429f3f10cc90a0d226f632b59992046 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | pine/BestDocumenter | b1c0f82092a7a3f1e35c8d321b36c3c382ea4362 | ce0497c62a6147b37fbd82e8fb0222f35fd45730 | refs/heads/master | 2020-04-11T04:18:52.069783 | 2016-05-21T05:44:38 | 2016-05-21T05:44:38 | 50,799,895 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 850 | h | #pragma once
#include <iostream>
#include <memory>
#include <string>
#include <regex>
#include <utility>
#include <vector>
#include "rfc5988/model.h"
namespace http {
class RFC5988 {
public:
static std::shared_ptr<std::vector<rfc5988::Model>> parse(const std::string& header);
private:
static std::shared_ptr<std::vector<std::string>> split(
const std::string& str,
const std::regex& ex
);
static std::shared_ptr<std::vector<std::string>> splitLinkValues(const std::string& linkHeader);
static std::shared_ptr<std::vector<std::string>> splitLinkValue(const std::string& value);
static std::shared_ptr<std::pair<std::string, std::string>> splitLinkParam(const std::string& param);
static void chompUriReference(std::string& str);
};
}
| [
"[email protected]"
] | |
28e46ed55beb2fa239e7b06337a3e7687976525c | b8438b5e942e01ce446d35f8926d34f1a50646ed | /include/nimble/renderdevice/opengl/shaderprogram.h | ca05f4f75193cc61b338a8f136e8df654bd2a52c | [] | no_license | vaughamhong/nimble_renderdevice_opengl | 052198c1ec383818f02c7aa17fc3d28933dfad0b | b3237e3a43df645828ec100c65bb828fde859010 | refs/heads/master | 2016-08-03T21:14:16.459681 | 2015-02-17T00:01:29 | 2015-02-17T00:01:29 | 30,509,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,881 | h | //
// Copyright (C) 2011 Vaugham Hong ([email protected])
//
// This file is subject to the terms and conditions defined in
// file 'license.txt', which is part of this source code package.
//
#ifndef __nimble_renderdevice_opengl_shaderprogram__
#define __nimble_renderdevice_opengl_shaderprogram__
//////////////////////////////////////////////////////////////////////////
#include <nimble/renderdevice/opengl/common.h>
#include <nimble/renderdevice/opengl/shaderparam.h>
#include <nimble/renderdevice/opengl/shaderparamblock.h>
#include <nimble/renderdevice/ishaderprogram.h>
#include <nimble/resource/resource.h>
#include <map>
//////////////////////////////////////////////////////////////////////////
namespace nimble{
namespace renderdevice{
namespace opengl{
class RenderDevice;
class Shader;
//! Shader program
class ShaderProgram
: public renderdevice::IShaderProgram
, public resource::Resource{
friend class nimble::renderdevice::opengl::RenderDevice;
private:
GLuint m_programHandle;
renderdevice::opengl::ShaderParamBlock m_paramBlock;
public:
//! Constructor
ShaderProgram();
//! Destructor
virtual ~ShaderProgram();
public:
//! gets the shader program's sort index
virtual uint32_t getSortIndex() const;
public:
//! compiles this program
//! \param[in] pVertexShader the vertex shader to compile
//! \param[in] pPixelShader the pixel shader to compile
virtual void compile(renderdevice::IShader *pVertexShader, renderdevice::IShader *pPixelShader);
public:
//! Returns true if param with name exists
//! \return true if param with name exists
virtual bool existsParamWithName(const char *name) const;
//! Returns the shader parameter by name
//! \param[in] name the name of the parameter to retreive
//! \return returns the shader parameter
virtual renderdevice::IShaderParam const* getShaderParamByName(const char *name) const;
//! Returns the shader param block for this program
//! \return the shader param block for this program
virtual renderdevice::IShaderParamBlock* createShaderParamBlock(const char *names[] = 0, size_t numNames = 0);
public:
//! Sets a shader parameter by name
//! \param[in] name the name of the shader parameter to set
//! \param[in] pData the data to set the shader parameter
virtual void setShaderParamByName(const char *name, void* pData);
//! Sets a shader parameter block
//! \param[in] pBlock the shader parameter block to set
virtual void setShaderParamBlock(renderdevice::IShaderParamBlock const &block);
public:
//! Returns the shader program handle
GLuint getShaderProgramHandle() const;
private:
//! Sets a param
virtual void setGLUniformParam(renderdevice::opengl::ShaderParam const ¶m, void *pData);
};
};
};
};
//////////////////////////////////////////////////////////////////////////
#endif
////////////////////////////////////////////////////////////////////////// | [
"[email protected]"
] | |
065d5aeeca8ab8bd44455e12e80fc3e8064f1e86 | df66bcec198f969083ad87e1af61b45452425997 | /VSensors/AccGyrSensor.cpp | 7da3805d1ab0f6156ae40f45086df93122023999 | [] | no_license | lirui79/android_project | 357ccf8d68e5d7d6d5c25d80d19c06ffbb6a9fd8 | 15eb5361e391d6af71c507c1db01a85168da2a89 | refs/heads/master | 2020-03-24T10:10:55.478971 | 2019-04-01T06:19:45 | 2019-04-01T06:19:45 | 142,649,386 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,383 | cpp | /*
* Copyright (C) 2017 Iris , Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include <poll.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/select.h>
#include <dlfcn.h>
#include <cutils/log.h>
#include "AccGyrSensor.h"
/*****************************************************************************/
AccGyrSensor::AccGyrSensor()
: SensorBase("/dev/spich", NULL)
{
for (int i=0; i<numSensors; i++) {
mEnabled[i] = 1;
mDelay[i] = -1;
}
int wakeFds[2];
int result = pipe(wakeFds);
ALOGE_IF(result<0, "error creating wake pipe (%s)", strerror(errno));
fcntl(wakeFds[0], F_SETFL, O_NONBLOCK);
fcntl(wakeFds[1], F_SETFL, O_NONBLOCK);
mReadPipeFd = wakeFds[0];
mWritePipeFd = wakeFds[1];
pthread_mutex_init(&mMutex_t , NULL) ;
mExit = 0 ;
open_device();
setInitialStat();
pthread_create(&(mThread_t), NULL, &readSensorThread, this);
}
AccGyrSensor::~AccGyrSensor()
{
for (int i=0; i<numSensors; i++) {
setEnable(i, 0);
}
close() ;
close_device();
::close(mReadPipeFd);
::close(mWritePipeFd);
pthread_mutex_destroy(&mMutex_t) ;
}
int AccGyrSensor::close() {
pthread_mutex_lock(&mMutex_t) ;
mExit = 1 ;
pthread_mutex_unlock(&mMutex_t) ;
close_device();
return 0 ;
}
bool AccGyrSensor::hasPendingEvents() const {
return false ;
}
int AccGyrSensor::setEnable(int32_t handle, int enabled) {
int id = handle2id(handle);
int err = 0;
char buffer[2];
switch (id) {
case Acc:
break;
case Gyr:
break;
default:
ALOGE("AccGyrSensor: unknown handle (%d)", handle);
return -EINVAL;
}
if (mEnabled[id] <= 0) {
if(enabled) mEnabled[id] = 1 ;
} else if (mEnabled[id] == 1) {
if(!enabled) mEnabled[id] = 0 ;
}
return err;
}
int AccGyrSensor::setDelay(int32_t handle, int64_t ns)
{
int id = handle2id(handle);
int err = 0;
char buffer[32];
int bytes;
if (ns < -1 || 2147483647 < ns) {
ALOGE("AccGyrSensor: invalid delay (%lld)", ns);
return -EINVAL;
}
switch (id) {
case Acc:
break;
case Gyr:
break;
default:
ALOGE("AccGyrSensor: unknown handle (%d)", handle);
return -EINVAL;
}
if (ns != mDelay[id]) {
mDelay[id] = ns;
ALOGD("AccGyrSensor: set %d to %f ms.", id , ns/1000000.0f);
}
return err;
}
int AccGyrSensor::getFd() const {
return mReadPipeFd ;
}
int64_t AccGyrSensor::getDelay(int32_t handle)
{
int id = handle2id(handle);
if (id >= 0) {
return mDelay[id];
} else {
return 0;
}
}
int AccGyrSensor::getEnable(int32_t handle)
{
int id = handle2id(handle);
if (id >= 0) {
return mEnabled[id];
} else {
return 0;
}
}
int AccGyrSensor::readEvents(sensors_event_t* data, int count)
{
if (count < 1)
return -EINVAL;
char msg;
int result = read(mReadPipeFd , &msg, 1);
if (result < 0) {
ALOGE("error reading from wake pipe (%s)", strerror(errno));
return -EINVAL;
}
const char WAKE_MESSAGE = 'W';
if (msg != WAKE_MESSAGE) {
ALOGE("unknown message on wake queue (0x%02x)", int(msg));
return -EINVAL;
}
std::list<sensors_event_t> Events ;
pthread_mutex_lock(&mMutex_t) ;
if (count >= mEvents.size()) {
Events = mEvents ;
mEvents.clear() ;
} else {
std::list<sensors_event_t>::iterator it = mEvents.begin() ;
for ( ; count > 0 ; --count , ++it) {
Events.push_back(*it) ;
}
mEvents.erase(mEvents.begin() , it) ;
}
pthread_mutex_unlock(&mMutex_t) ;
int nCount = 0 ;
for (std::list<sensors_event_t>::iterator it = Events.begin() ; it != Events.end() ; ++it , ++nCount , ++data) {
*data = *it ;
}
return nCount ;
}
int AccGyrSensor::handle2id(int32_t handle)
{
switch (handle) {
case ID_A:
return Acc;
case ID_GY:
return Gyr;
default:
ALOGE("AccGyrSensor: unknown handle (%d)", handle);
return -EINVAL;
}
}
| [
"[email protected]"
] | |
21b09fed404c3a3f704953da09727a4c6e1093af | f31ad1e794d3cda93c32d80499b3482fab6f35b3 | /zspace_DevPack/EbonGL/libebongl/utilities/EG_TimeKeeper.cpp | e703b659d01d989259a5f92805047287db02e776 | [] | no_license | DaleHildebrandt/HoloMobile | 0e38ef8cb93692b1c1719ac763cad006800b2046 | fd395db1af37601721f080a3e37aa5fffd3144c9 | refs/heads/master | 2016-09-05T09:29:53.610759 | 2013-04-17T18:01:09 | 2013-04-17T18:01:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,481 | cpp | #include "EG_TimeKeeper.hpp"
#include "../EG_Settings.hpp"
#include "../EG_Utils.hpp"
#include "EG_String.hpp"
using namespace std;
using namespace EbonGL;
EG_TimeKeeper::EG_TimeKeeper(void)
{
createWinTimer();
seconds = 0;
milliseconds = 0;
}//constructor
EG_TimeKeeper::EG_TimeKeeper(const EG_TimeKeeper &source)
{
seconds = source.seconds;
milliseconds = source.milliseconds;
createWinTimer();
}//copy constructor
EG_TimeKeeper::~EG_TimeKeeper(void)
{
}//destructor
EG_TimeKeeper& EG_TimeKeeper::operator= (const EG_TimeKeeper &source)
{
if (this != &source)
{
seconds = source.seconds;
milliseconds = source.milliseconds;
}//if this
return *this;
}//=
void EG_TimeKeeper::createWinTimer(void)
{
#ifdef EBONGL_WINDOWS
LARGE_INTEGER performanceFreq;//extracts the frequency of the high res timer
string errMsg;//a description of any timer errors
performanceFreq.QuadPart = 0;
winTimerValue.QuadPart = 0;
winCounterDiv = 0;
if (QueryPerformanceFrequency(&performanceFreq))
{
winCounterDiv = performanceFreq.QuadPart;
if (winCounterDiv != 0)
{
winCounterDiv = winCounterDiv / 1000;
if (winCounterDiv == 0)
errMsg = "EG_TimeKeeper::createWinTimer(): high performance counter is updating less than 1000 x per sec";
}//if winCounterDiv
else
errMsg = "EG_TimeKeeper::createWinTimer(): high performance counter is updating zero times per second!";
}//if QueryPerformanceFrequency()
else
errMsg = "EG_TimeKeeper::createWinTimer(): QueryPerformanceFrequency() failed!";
if (errMsg.size() > 0)
{
EG_Utils::writeLog(EG_String(errMsg.c_str()));
EG_Utils::fatalError();
}//if size()
#endif
}//createWinTimer
void EG_TimeKeeper::updateTime(void)
{
getCurrentTime(seconds, milliseconds);
}//updateTime
uint32_t EG_TimeKeeper::timeElapsed(void)
{
uint32_t result = 0;//the number of elapsed milliseconds to return
uint32_t currentSeconds = 0;//current time, in seconds
long int timeAmount = 0;//check for negative time elapsed values
uint16_t currentMilliseconds = 0;//millisecond component of the current time
//### Get number of elapsed seconds ###
getCurrentTime(currentSeconds, currentMilliseconds);
timeAmount = currentSeconds - seconds;
//### Make sure the number of milliseconds will fit in a 32-bit signed variable ###
if (timeAmount > 2147482)
timeAmount = 2147482;
//### Convert to milliseconds ###
if (timeAmount >= 0)
{
timeAmount *= 1000;
timeAmount += currentMilliseconds - milliseconds;
if (timeAmount >= 0)
result = timeAmount;
}//if timeAmount
return result;
}//timeElapsed
void EG_TimeKeeper::getCurrentTime(uint32_t ¤tSeconds,
uint16_t ¤tMilliseconds)
{
#ifdef EBONGL_WINDOWS
if (QueryPerformanceCounter(&winTimerValue))
{
if (winTimerValue.QuadPart != 0)
winTimerValue.QuadPart = winTimerValue.QuadPart / winCounterDiv;
if (winTimerValue.QuadPart != 0)
{
currentSeconds = static_cast<uint32_t>(winTimerValue.QuadPart / 1000);
currentMilliseconds = winTimerValue.QuadPart % 1000;
}//if QuadPart
}//if QueryPerformanceCounter()
else
{
EG_Utils::writeLog(EG_String("EG_TimeKeeper::updateTime(): Couldn't access the high res timer."));
EG_Utils::fatalError();
}//else QueryPerformanceCounter()
#else
timeval currentTime;//the current time, microsecond accuracy
uint32_t microseconds = 0;//used to store the time in microseconds
if (gettimeofday(¤tTime, NULL) == 0)
{
currentSeconds = currentTime.tv_sec;
microseconds = currentTime.tv_usec;
if (microseconds != 0)
microseconds = microseconds / 1000;
currentMilliseconds = microseconds;
}//if gettimeofday()
else
{
EG_Utils::writeLog(EG_String("EG_TimeKeeper::updateTime(): gettimeofday() failed"));
EG_Utils::fatalError();
}//else gettimeofday()
#endif
}//getCurrentTime
uint32_t EG_TimeKeeper::getSeconds(void)
{
return seconds;
}//getSeconds
uint16_t EG_TimeKeeper::getMilliseconds(void)
{
return milliseconds;
}//getMilliseconds
void EG_TimeKeeper::addTime(uint32_t newTime)
{
newTime += milliseconds;
if (newTime != 0)
{
seconds += newTime / 1000;
milliseconds = newTime % 1000;
}//if newTime
}//addTime
void EG_TimeKeeper::setTime(uint32_t newSeconds,
uint16_t newMilliseconds)
{
seconds = newSeconds;
milliseconds = newMilliseconds;
}//setTime
void EG_TimeKeeper::sleep(long int milliseconds)
{
#ifdef EBONGL_WINDOWS
Sleep(milliseconds);
#else
timespec sleepTime;
if (milliseconds >= 1000)
{
sleepTime.tv_sec = milliseconds / 1000;
milliseconds = milliseconds % 1000;
}//if milliseconds
else
sleepTime.tv_sec = 0;
sleepTime.tv_nsec = milliseconds * 1000000;
nanosleep(&sleepTime, NULL);
#endif
}//sleep
| [
"[email protected]"
] | |
efd75e254cd6220c8ec5f6cde6a93987c17e355d | be341666d67bb0caae65a4f17a983d62f5e77f8f | /PA9_Darrah_Dalton/queueA.h | 7130f2b3b75478692a51289f7443fb04b0e9d13e | [] | no_license | ddarrah17/CS202 | 2a27f6f51e0e0d4218b1d5486f38f4b16ff84d82 | b232cb7e4054919733d4ce381f0ee74dab888220 | refs/heads/master | 2020-12-09T12:54:01.486194 | 2020-01-11T23:05:27 | 2020-01-11T23:05:27 | 233,309,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 672 | h | #include <iostream>
using namespace std;
class queueA{
public:
queueA(int = 10);
queueA(const queueA&);
~queueA();
queueA& operator=(const queueA&);
bool enqueue(int);
bool dequeue();
int getFront();
bool empty() const;
bool full() const;
bool clear();
bool operator==(const queueA&) const;
friend ostream& operator<<(ostream&, const queueA&);
private:
int max;
int front;
int rear;
int *data;
};
| [
"[email protected]"
] | |
dd289e83a662c298353e3433e936fd54d9e38aba | 5bef53b0dc9539a4953919f75fde1f0ebd20e9fb | /Quera/Madarabozorg.cpp | 3a51637d659e25e9d5ed74b60141ed609123a7fc | [] | no_license | atrin-hojjat/CompetetiveProgramingCodes | 54c8b94092f7acf40d379e42e1f2c0fe8dab9b32 | 6a02071c3869b8e7cd873ddf7a3a2d678aec6d91 | refs/heads/master | 2020-11-25T10:51:23.200000 | 2020-10-08T11:12:09 | 2020-10-08T11:12:09 | 228,626,397 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,454 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <cstring>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <math.h>
#include <stack>
#include <deque>
#define mp make_pair
#define F first
#define S second
#define pb push_back
#define FOR(i,j,n) for(int i=j;i<n;i++)
#define F0R(i,j,n) for(int i=j;i<=n;i++)
#define RFOR(i,j,n) for(int i=n-1;i>=j;i--)
#define RF0R(i,j,n) for(int i=n;i>=j;i--)
#define FOREACH(x,v) for(auto x:v)
#define ITFOR(it,v) for(__typeof(v.begin()) it =v.begin();it!=v.end();++it)
#define __in_arr__(a,j,n) FOR(i,j,n)cin >> a[i];
#define __out_arr__(a,j,n) FOR(i,j,n)cout << a[i];
#define LOG cout << "[ !" << __LINE__ << "L ] " << endl;
#define PLOG(x) cout << "[ !" << __LINE__ << "L ] " \<<x<<endl;
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
typedef pair<int,int> pii;
typedef pair<int,pii> piii;
typedef vector<int> vi;
typedef vector<pii> vii;
typedef vector<ll> vl;
const int MAXN = 2e5+6.66;
const ll MOD = 1e9+7;
ll arr[MAXN];
struct segment {
int idx,l,r;
ll sum,lazy_in,lazy_st;
segment() {
idx = l = r = -1;
sum = lazy_in = lazy_st = 0;
}
segment(int idx,int l) : idx(idx),l(l),r(l+1) {
sum = arr[l];
lazy_in = lazy_st = 0;
}
segment(int idx,segment s1,segment s2) : idx(idx) {
if(s1.idx == -1) {
*this = s2;
return ;
}
if(s2.idx == -1) {
*this = s1;
return ;
}
l = s1.l;
r = s2.r;
sum = ( s1.sum + s2.sum ) %MOD;
lazy_st = 0;
lazy_in = 0;
}
void shift(ll st,ll in) {
lazy_st = (lazy_st+st)%MOD;
lazy_in += in;
sum = (sum + (st*(r-l))%MOD+(1LL*(r-l)*in*(r-l-1LL)/2)%MOD)%MOD;
}
} seg[4*MAXN];
void shift(int idx) {
seg[idx*2].shift(seg[idx].lazy_st,seg[idx].lazy_in);
seg[idx*2+1].shift((seg[idx].lazy_st+(seg[idx*2].r-seg[2*idx].l)*seg[idx].lazy_in)%MOD,seg[idx].lazy_in);
seg[idx].lazy_st = seg[idx].lazy_in = 0;
}
int intersection(int l,int r,int s,int e) {
if(l>=e || r<=s) return 0;
return max(0,min(e,r)-max(l,s));
}
void process(int idx,int l,int r) {
if(l>=r)return ;
if(r-l==1) {
seg[idx] = segment(idx,l);
return;
}
int mid = l+(r-l)/2;
process(2*idx,l,mid);
process(2*idx+1,mid,r);
seg[idx] = segment(idx,seg[idx*2],seg[idx*2+1]);
}
void upd(int idx,int s,int e,int st) {
if(seg[idx].idx ==-1)return;
int l = seg[idx].l;
int r = seg[idx].r;
if(l>=e || r<= s) return ;
if(l>=s && r<= e) {
seg[idx].lazy_st = (seg[idx].lazy_st+st)%MOD;
seg[idx].lazy_in++;
seg[idx].sum = (seg[idx].sum + (1LL*st*(r-l))%MOD + (1LL*(r-l)*(r-l-1)/2)%MOD)%MOD;
return ;
}
shift(idx);
upd(idx*2,s,e,st);
upd(1+idx*2,s,e,st+intersection(l,seg[idx*2].r,s,e));
seg[idx].sum = (seg[idx*2].sum + seg[idx*2+1].sum)%MOD;
}
ll get(int idx,int s,int e) {
if(seg[idx].idx ==-1 )return 0;
int l = seg[idx].l;
int r = seg[idx].r;
if(l>=e||r<=s) return 0;
if(l>=s&&r<=e) return seg[idx].sum%MOD;
shift(idx);
return (get(idx*2,s,e)+get(idx*2+1,s,e))%MOD;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
int n,q;cin >> n >> q;
FOR(i,0,n) cin >> arr[i];
process(1,0,n);
while(q--) {
string str;
int l,r;
cin >> str >> l >> r;
l--;
if(str=="ask") {
cout << get(1,l,r)%MOD << endl;;
} else
upd(1,l,r,1);
}
return 0;
}
| [
"[email protected]"
] | |
32199fb4f6aa04a712808180b1b465b141bff35f | 94e8e98d9d54719cf38352a12b1aa34c999163b7 | /Eratosthenes/main.cpp | bbce62914495383c89a60820f778853f8532df1d | [] | no_license | VlsyV/Multi-Core-Experiment | 74bce70b4e2efa7276dedee424ebb29e69d43f4e | a97723c954d13676f579173583bb70cbc48d072c | refs/heads/master | 2016-08-12T10:07:44.033599 | 2015-12-18T05:39:38 | 2015-12-18T05:39:38 | 48,183,677 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 6,327 | cpp | #include<iostream>
#include <time.h>
#include<stdlib.h>
using namespace std;
int Power(int n,int p)
{
int result = 1;
for (int i = 0; i < p; i++)
result *= n;
return result;
}
//原始方法查找max以内的素数
void Eratos(int* isPrime,int max)
{
for (int i = 2; i < max; i++)
isPrime[i] = 1;
for (int i = 2; i * i < max; i++)
{
if (isPrime[i])
for (int j = i * i; j < max; j += i)
isPrime[j] = 0;
}
}
//利用初始素数数组和Eratos筛法查找 min和max以内的素数,素数个数存入primeNum中
void Eratos2(int prime[], int length, int min, int max, int &primeNum)
{
int pn = prime[length - 1];
int right = max;
if (pn*pn < max)
right = pn*pn;
int count = right - pn;
char* A;
A = new char[count];
for (int i = 0; i < count; i++)
A[i] = '0';
int offset = pn + 1;
for (int i = 0; i < length; i++)
{
int j = ceil((double)offset / prime[i]) * prime[i];
while (j <= right)
{
if (j - offset>=0)
A[j - offset] = '1';
j += prime[i];
}
}
int Num = 0;
for (int i = 0; i < count; i++)
{
if (A[i] == '0')
Num++;
}
int* result = new int[Num + length];
for (int i = 0; i < length; i++)
result[i] = prime[i];
for (int i = 0, j = length; i < count; i++)
{
if (A[i] == '0')
result[j++] = i + offset;
}
if (result[length]<min && result[Num + length - 1] > min)
{
for (int i = length; i < Num + length; i++)
if (result[i] >= min)
primeNum++;
}
else if (result[length] >= min && result[Num + length - 1] <= max)
{
primeNum += Num;
}
else if (result[length] < max&& result[Num + length - 1] >= max)
{
for (int i = length; i < Num + length; i++)
if (result[i] <= max)
primeNum++;
}
//for (int i = 0; i < Num+length; i++)
//{
// if (result[i] >= min&&result[i] <= max)
// primeNum++;
//}
if (right < max)
{
Eratos2(result, Num+length, min, max, primeNum);
}
else
{
cout << "区间[" << min<< "," << max << "]" << "共有"<<primeNum<<"个素数"<<endl;
}
}
//void Eratos3(int *prime, int length, int B, int *result, int &Num, int min, int max)
int* Eratos3(int *prime, int length, int B, int &Num, int min, int max)
//void Eratos3(int prime[], int length, int B,int min, int max, int &primeNum)
{
int pn = prime[length - 1];
int right = pn+B;
if (pn*pn < right)
right = pn*pn;
int count = right - pn;
char* A;
A = new char[count];
for (int i = 0; i < count; i++)
A[i] = '0';
int offset = pn + 1;
for (int i = 0; i < length; i++)
{
int j = ceil((double)offset / prime[i]) * prime[i];
while (j <= right)
{
if (j - offset >= 0)
A[j - offset] = '1';
j += prime[i];
}
}
Num = 0;
for (int i = 0; i < count; i++)
{
if (A[i] == '0')
Num++;
}
int*result = new int[Num];
//result = (int*)malloc(Num*sizeof(int*));
for (int i = 0, j = 0; i < count; i++)
{
if (A[i] == '0')
result[j++] = i + offset;
}
return result;
//cout << "区间[" << pn + 1 << "," << right << "]" << endl;
//cout << "素数个数:" << Num << endl;
//cout << "素数区间:" << "[" << result[length] << "," << result[Num + length - 1] << "]" << endl;
//if (result[length]<min && result[Num + length - 1] > min)
//{
// for (int i = length; i < Num + length; i++)
// if (result[i] >= min)
// primeNum++;
//}
//else if (result[length] >= min && result[Num + length - 1] <= max)
//{
// primeNum += Num;
//}
//else if (result[length] < max&& result[Num + length - 1] >= max)
//{
// for (int i = length; i < Num + length; i++)
// if (result[i] <= max)
// primeNum++;
//}
//for (int i = 0; i < Num+length; i++)
//{
// if (result[i] >= min&&result[i] <= max)
// primeNum++;
//}
//if (right < max)
//{
// Eratos3(result, Num + length, B, min, max, primeNum);
//}
//else
//{
// cout << "区间[" << min << "," << max << "]" << "共有" << primeNum << "个素数" << endl;
//}
}
int main()
{
int initPrime[] = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97 };
int initLength = 25;
int * initPrimeArr = new int[initLength];
for (int i = 0; i < initLength; i++)
initPrimeArr[i] = initPrime[i];
clock_t start, end;
start = clock();
int primeNum = 0;
//产生标准
//int max = Power(2, 26);
//int * isPrime = new int[max];
//Eratos(isPrime, max);
//for (int i = 9409; i < max; i++)
//{
// if (isPrime[i] == 1)
// primeNum++;
//}
//cout << "区间[" << 9409 << "," << max << "]" << "素数个数:" << primeNum << endl;
//1.1
//Eratos2(initPrimeArr, 25, Power(2, 25), Power(2, 26),primeNum);
//1.2
//primeNum = 0;
int B = 4* Power(2, 10);
//Eratos3(initPrimeArr, 25, B, Power(2, 25), Power(2, 26), primeNum);
int min = Power(2, 25);
int max = Power(2, 26);
while (1)
{
int Num = 0;
int *result = NULL;
result = Eratos3(initPrimeArr, initLength, B, Num, min, max);
cout << "初始区间[" << initPrimeArr[0] << "," << initPrimeArr[initLength - 1] << "]" << endl;
cout << "素数个数:" << Num << endl;
cout << "素数区间:" << "[" << result[0] << "," << result[Num - 1] << "]" << endl;
cout << "总素数个数:" << primeNum << endl;
//计算区间素数个数primeNum
if (result[Num - 1 ]< min)
{
//继续筛选
//合并初始数组
int *nextPrimeArr = new int[initLength + Num];
for (int i = 0; i < initLength; i++)
{
nextPrimeArr[i] = initPrimeArr[i];
}
for (int i = 0; i < Num; i++)
{
nextPrimeArr[i + initLength] = result[i];
}
delete[] initPrimeArr;
initPrimeArr = nextPrimeArr;
nextPrimeArr = NULL;
}
else if (result[0] >= min&&result[Num - 1] <= max)
{
//计算primeNum
primeNum += Num;
//继续筛选
//合并初始数组
int *nextPrimeArr = new int[initLength + Num];
for (int i = 0; i < initLength; i++)
{
nextPrimeArr[i] = initPrimeArr[i];
}
for (int i = 0; i < Num; i++)
{
nextPrimeArr[i + initLength] = result[i];
}
delete[] initPrimeArr;
initPrimeArr = nextPrimeArr;
nextPrimeArr = NULL;
}
else if (result[0] >= min && result[Num - 1] > max)
{
//计算primeNum
for (int i = 0; i < Num; i++)
{
if (result[i] <= max)
primeNum++;
}
break;
}
else if (result[0] > max)
{
break;
}
}
end = clock();
cout << "共花费" << (end - start) << "(us)" << endl;
}
| [
"[email protected]"
] | |
3f2b16bd73ce49862172371729b15f2479338039 | 631847fafbcfa07bf33eee078d9b59b464ce4b50 | /optimization/pta_maa_optimization/loose_analyses/analysis_loose_pta400_maa600/Build/SampleAnalyzer/User/Analyzer/user.cpp | c079b60a1be21dea3b0c97188368048cbf801dda | [
"MIT"
] | permissive | sheride/axion_pheno | 7b46aeb7cc562800d78edd9048504fdbc0f5fa42 | 7d3fc08f5ae5b17a3500eba19a2e43f87f076ce5 | refs/heads/master | 2021-07-01T08:47:59.981416 | 2021-02-03T23:03:50 | 2021-02-03T23:03:50 | 219,261,636 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,742 | cpp | #include "SampleAnalyzer/User/Analyzer/user.h"
using namespace MA5;
bool user::Initialize(const MA5::Configuration& cfg,
const std::map<std::string,std::string>& parameters)
{
// Initializing PhysicsService for MC
PHYSICS->mcConfig().Reset();
// definition of the multiparticle "hadronic"
PHYSICS->mcConfig().AddHadronicId(-5);
PHYSICS->mcConfig().AddHadronicId(-4);
PHYSICS->mcConfig().AddHadronicId(-3);
PHYSICS->mcConfig().AddHadronicId(-2);
PHYSICS->mcConfig().AddHadronicId(-1);
PHYSICS->mcConfig().AddHadronicId(1);
PHYSICS->mcConfig().AddHadronicId(2);
PHYSICS->mcConfig().AddHadronicId(3);
PHYSICS->mcConfig().AddHadronicId(4);
PHYSICS->mcConfig().AddHadronicId(5);
PHYSICS->mcConfig().AddHadronicId(21);
// definition of the multiparticle "invisible"
PHYSICS->mcConfig().AddInvisibleId(-16);
PHYSICS->mcConfig().AddInvisibleId(-14);
PHYSICS->mcConfig().AddInvisibleId(-12);
PHYSICS->mcConfig().AddInvisibleId(12);
PHYSICS->mcConfig().AddInvisibleId(14);
PHYSICS->mcConfig().AddInvisibleId(16);
PHYSICS->mcConfig().AddInvisibleId(1000022);
// ===== Signal region ===== //
Manager()->AddRegionSelection("myregion");
// ===== Selections ===== //
Manager()->AddCut("1_( sdETA ( jets[1] jets[2] ) > 2.6 or sdETA ( jets[1] jets[2] ) < -2.6 ) and M ( jets[1] jets[2] ) > 1250.0");
Manager()->AddCut("2_PT ( a[1] ) > 400.0 and M ( a[1] a[2] ) > 600.0");
// ===== Histograms ===== //
// No problem during initialization
return true;
}
bool user::Execute(SampleFormat& sample, const EventFormat& event)
{
MAfloat32 __event_weight__ = 1.0;
if (weighted_events_ && event.mc()!=0) __event_weight__ = event.mc()->weight();
if (sample.mc()!=0) sample.mc()->addWeightedEvents(__event_weight__);
Manager()->InitializeForNewEvent(__event_weight__);
// Clearing particle containers
{
_P_jets_I1I_PTorderingfinalstate_REG_.clear();
_P_jets_I2I_PTorderingfinalstate_REG_.clear();
_P_a_I1I_PTorderingfinalstate_REG_.clear();
_P_a_I2I_PTorderingfinalstate_REG_.clear();
_P_jetsPTorderingfinalstate_REG_.clear();
_P_aPTorderingfinalstate_REG_.clear();
}
// Filling particle containers
{
for (MAuint32 i=0;i<event.mc()->particles().size();i++)
{
if (isP__jetsPTorderingfinalstate((&(event.mc()->particles()[i])))) _P_jetsPTorderingfinalstate_REG_.push_back(&(event.mc()->particles()[i]));
if (isP__aPTorderingfinalstate((&(event.mc()->particles()[i])))) _P_aPTorderingfinalstate_REG_.push_back(&(event.mc()->particles()[i]));
}
}
// Sorting particles
// Sorting particle collection according to PTordering
// for getting 1th particle
_P_jets_I1I_PTorderingfinalstate_REG_=SORTER->rankFilter(_P_jetsPTorderingfinalstate_REG_,1,PTordering);
// Sorting particle collection according to PTordering
// for getting 2th particle
_P_jets_I2I_PTorderingfinalstate_REG_=SORTER->rankFilter(_P_jetsPTorderingfinalstate_REG_,2,PTordering);
// Sorting particle collection according to PTordering
// for getting 1th particle
_P_a_I1I_PTorderingfinalstate_REG_=SORTER->rankFilter(_P_aPTorderingfinalstate_REG_,1,PTordering);
// Sorting particle collection according to PTordering
// for getting 2th particle
_P_a_I2I_PTorderingfinalstate_REG_=SORTER->rankFilter(_P_aPTorderingfinalstate_REG_,2,PTordering);
// Event selection number 1
// * Cut: select ( sdETA ( jets[1] jets[2] ) > 2.6 or sdETA ( jets[1] jets[2] ) < -2.6 ) and M ( jets[1] jets[2] ) > 1250.0, regions = []
{
std::vector<MAbool> filter(3,false);
{
{
MAuint32 ind[2];
std::vector<std::set<const MCParticleFormat*> > combis;
for (ind[0]=0;ind[0]<_P_jets_I1I_PTorderingfinalstate_REG_.size();ind[0]++)
{
for (ind[1]=0;ind[1]<_P_jets_I2I_PTorderingfinalstate_REG_.size();ind[1]++)
{
if (_P_jets_I2I_PTorderingfinalstate_REG_[ind[1]]==_P_jets_I1I_PTorderingfinalstate_REG_[ind[0]]) continue;
// Checking if consistent combination
std::set<const MCParticleFormat*> mycombi;
for (MAuint32 i=0;i<2;i++)
{
mycombi.insert(_P_jets_I1I_PTorderingfinalstate_REG_[ind[i]]);
mycombi.insert(_P_jets_I2I_PTorderingfinalstate_REG_[ind[i]]);
}
MAbool matched=false;
for (MAuint32 i=0;i<combis.size();i++)
if (combis[i]==mycombi) {matched=true; break;}
if (matched) continue;
else combis.push_back(mycombi);
if ((_P_jets_I1I_PTorderingfinalstate_REG_[ind[0]]->eta()-_P_jets_I2I_PTorderingfinalstate_REG_[ind[1]]->eta())>2.6) {filter[0]=true; break;}
}
}
}
}
{
{
MAuint32 ind[2];
std::vector<std::set<const MCParticleFormat*> > combis;
for (ind[0]=0;ind[0]<_P_jets_I1I_PTorderingfinalstate_REG_.size();ind[0]++)
{
for (ind[1]=0;ind[1]<_P_jets_I2I_PTorderingfinalstate_REG_.size();ind[1]++)
{
if (_P_jets_I2I_PTorderingfinalstate_REG_[ind[1]]==_P_jets_I1I_PTorderingfinalstate_REG_[ind[0]]) continue;
// Checking if consistent combination
std::set<const MCParticleFormat*> mycombi;
for (MAuint32 i=0;i<2;i++)
{
mycombi.insert(_P_jets_I1I_PTorderingfinalstate_REG_[ind[i]]);
mycombi.insert(_P_jets_I2I_PTorderingfinalstate_REG_[ind[i]]);
}
MAbool matched=false;
for (MAuint32 i=0;i<combis.size();i++)
if (combis[i]==mycombi) {matched=true; break;}
if (matched) continue;
else combis.push_back(mycombi);
if ((_P_jets_I1I_PTorderingfinalstate_REG_[ind[0]]->eta()-_P_jets_I2I_PTorderingfinalstate_REG_[ind[1]]->eta())<-2.6) {filter[1]=true; break;}
}
}
}
}
{
{
MAuint32 ind[2];
std::vector<std::set<const MCParticleFormat*> > combis;
for (ind[0]=0;ind[0]<_P_jets_I1I_PTorderingfinalstate_REG_.size();ind[0]++)
{
for (ind[1]=0;ind[1]<_P_jets_I2I_PTorderingfinalstate_REG_.size();ind[1]++)
{
if (_P_jets_I2I_PTorderingfinalstate_REG_[ind[1]]==_P_jets_I1I_PTorderingfinalstate_REG_[ind[0]]) continue;
// Checking if consistent combination
std::set<const MCParticleFormat*> mycombi;
for (MAuint32 i=0;i<2;i++)
{
mycombi.insert(_P_jets_I1I_PTorderingfinalstate_REG_[ind[i]]);
mycombi.insert(_P_jets_I2I_PTorderingfinalstate_REG_[ind[i]]);
}
MAbool matched=false;
for (MAuint32 i=0;i<combis.size();i++)
if (combis[i]==mycombi) {matched=true; break;}
if (matched) continue;
else combis.push_back(mycombi);
ParticleBaseFormat q;
q+=_P_jets_I1I_PTorderingfinalstate_REG_[ind[0]]->momentum();
q+=_P_jets_I2I_PTorderingfinalstate_REG_[ind[1]]->momentum();
if (q.m()>1250.0) {filter[2]=true; break;}
}
}
}
}
MAbool filter_global = ((filter[0] || filter[1]) && filter[2]);
if(!Manager()->ApplyCut(filter_global, "1_( sdETA ( jets[1] jets[2] ) > 2.6 or sdETA ( jets[1] jets[2] ) < -2.6 ) and M ( jets[1] jets[2] ) > 1250.0")) return true;
}
// Event selection number 2
// * Cut: select PT ( a[1] ) > 400.0 and M ( a[1] a[2] ) > 600.0, regions = []
{
std::vector<MAbool> filter(2,false);
{
{
MAuint32 ind[1];
for (ind[0]=0;ind[0]<_P_a_I1I_PTorderingfinalstate_REG_.size();ind[0]++)
{
if (_P_a_I1I_PTorderingfinalstate_REG_[ind[0]]->pt()>400.0) {filter[0]=true; break;}
}
}
}
{
{
MAuint32 ind[2];
std::vector<std::set<const MCParticleFormat*> > combis;
for (ind[0]=0;ind[0]<_P_a_I1I_PTorderingfinalstate_REG_.size();ind[0]++)
{
for (ind[1]=0;ind[1]<_P_a_I2I_PTorderingfinalstate_REG_.size();ind[1]++)
{
if (_P_a_I2I_PTorderingfinalstate_REG_[ind[1]]==_P_a_I1I_PTorderingfinalstate_REG_[ind[0]]) continue;
// Checking if consistent combination
std::set<const MCParticleFormat*> mycombi;
for (MAuint32 i=0;i<2;i++)
{
mycombi.insert(_P_a_I1I_PTorderingfinalstate_REG_[ind[i]]);
mycombi.insert(_P_a_I2I_PTorderingfinalstate_REG_[ind[i]]);
}
MAbool matched=false;
for (MAuint32 i=0;i<combis.size();i++)
if (combis[i]==mycombi) {matched=true; break;}
if (matched) continue;
else combis.push_back(mycombi);
ParticleBaseFormat q;
q+=_P_a_I1I_PTorderingfinalstate_REG_[ind[0]]->momentum();
q+=_P_a_I2I_PTorderingfinalstate_REG_[ind[1]]->momentum();
if (q.m()>600.0) {filter[1]=true; break;}
}
}
}
}
MAbool filter_global = (filter[0] && filter[1]);
if(!Manager()->ApplyCut(filter_global, "2_PT ( a[1] ) > 400.0 and M ( a[1] a[2] ) > 600.0")) return true;
}
return true;
}
void user::Finalize(const SampleFormat& summary, const std::vector<SampleFormat>& files)
{
}
| [
"[email protected]"
] | |
219a32c6d0c24ad28e7e31cea3f99d68474ff5f3 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir22441/dir28005/file28106.cpp | 7399978bb99423d4c8aa6d3cecf718ed60e59cf8 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file28106
#error "macro file28106 must be defined"
#endif
static const char* file28106String = "file28106"; | [
"[email protected]"
] | |
58a2016bcd5fca03da5453f0420f500b7aecd066 | 9684d96882c9ef7b2299681f8adaccf2ea883250 | /test/range/test-fold-3-state_types.cpp | 4ca23efbfd01e1263ed60724e177ed5260bfb93b | [
"Apache-2.0"
] | permissive | rogiervd/range | ecd1a25cedbd3ab83477c754e64842effbe43bbd | 2ed4ee2063a02cadc575fe4e7a3b7dd61bbd2b5d | refs/heads/master | 2020-06-05T05:48:59.401385 | 2015-07-27T15:56:46 | 2015-07-27T15:56:46 | 33,943,159 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,399 | cpp | /*
Copyright 2014, 2015 Rogier van Dalen.
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.
*/
#define BOOST_TEST_MODULE test_range_fold_state_types
#include "utility/test/boost_unit_test.hpp"
#include "range/fold.hpp"
#include <vector>
#include <tuple>
#include <boost/mpl/assert.hpp>
#include "range/std.hpp"
using range::fold;
using range::at_c;
struct int_holder {
int i;
int_holder() : i(0) {}
int_holder (int i) : i (i) {}
};
struct add_return_const {
// "const" is only retained in return types for class types, so return
// "int_holder const" and not just "int const".
int_holder const operator() (int_holder i, int j) const
{ return int_holder (i.i + j); }
};
BOOST_AUTO_TEST_SUITE(test_range_fold_state_types)
BOOST_AUTO_TEST_CASE (test_fold_const_state) {
{
std::vector <int> v;
v.push_back (1);
v.push_back (2);
v.push_back (3);
BOOST_MPL_ASSERT ((std::is_same <
decltype (fold (int_holder(), v, add_return_const())),
int_holder const>));
BOOST_CHECK_EQUAL (fold (int_holder(), v, add_return_const()).i, 6);
}
{
std::tuple <int, short, int> v (1,2,3);
BOOST_MPL_ASSERT ((std::is_same <
decltype (fold (int_holder(), v, add_return_const())),
int_holder const>));
BOOST_CHECK_EQUAL (fold (int_holder(), v, add_return_const()).i, 6);
}
}
struct unassignable {
int value;
explicit unassignable (int value) : value (value) {}
unassignable (unassignable const &) = default;
unassignable & operator = (unassignable const &) = delete;
unassignable & operator = (unassignable &&) = delete;
unassignable operator + (unassignable const & that) const
{ return unassignable (this->value + that.value); }
unassignable operator + (int that) const
{ return unassignable (this->value + that); }
};
struct add_unassignable {
unassignable operator() (unassignable const & i, int j) const
{ return unassignable (i.value + j); }
};
BOOST_AUTO_TEST_CASE (test_fold_unassignable_state) {
{
std::vector <int> v;
v.push_back (1);
v.push_back (2);
v.push_back (3);
BOOST_CHECK (fold (unassignable (0), v, add_unassignable()).value == 6);
}
{
std::tuple <int, short, int> v (1,2,3);
BOOST_CHECK (fold (unassignable (0), v, add_unassignable()).value == 6);
}
}
struct return_right {
template <class Left, class Right>
Right && operator() (Left && left, Right && right) const
{ return static_cast <Right &&> (right); }
};
BOOST_AUTO_TEST_CASE (test_fold_lvalue_state) {
int i = 7;
{
std::vector <int> v;
v.push_back (1);
v.push_back (2);
v.push_back (3);
BOOST_MPL_ASSERT ((std::is_same <
decltype (fold (i, v, return_right())), int &>));
BOOST_CHECK_EQUAL (&fold (i, v, return_right()), &at_c <2> (v));
// Check that nothing has changed.
BOOST_CHECK_EQUAL (i, 7);
BOOST_CHECK_EQUAL (at_c <0> (v), 1);
BOOST_CHECK_EQUAL (at_c <1> (v), 2);
BOOST_CHECK_EQUAL (at_c <2> (v), 3);
}
{
std::tuple <int, short, int> v (1,2,3);
BOOST_MPL_ASSERT ((std::is_same <
decltype (fold (i, v, return_right())), int &>));
BOOST_CHECK_EQUAL (&fold (i, v, return_right()), &at_c <2> (v));
// Check that nothing has changed.
BOOST_CHECK_EQUAL (i, 7);
BOOST_CHECK_EQUAL (at_c <0> (v), 1);
BOOST_CHECK_EQUAL (at_c <1> (v), 2);
BOOST_CHECK_EQUAL (at_c <2> (v), 3);
}
}
BOOST_AUTO_TEST_CASE (test_fold_rvalue_state) {
int i = 7;
{
std::vector <int> v;
v.push_back (1);
v.push_back (2);
v.push_back (3);
// If 5.5 were an int &&, this should return an rvalue reference.
// But it doesn't, because rvalue references are (sensibly) stripped
// from the state argument.
BOOST_MPL_ASSERT ((std::is_same <
decltype (fold (5.5, std::move (v), return_right())),
rime::variant <double, int &&>>));
// BOOST_CHECK_EQUAL (
// &fold (return_right(), std::move (i), std::move (v)),
// &at_c <2> (v));
// Check that nothing has changed.
BOOST_CHECK_EQUAL (i, 7);
BOOST_CHECK_EQUAL (at_c <0> (v), 1);
BOOST_CHECK_EQUAL (at_c <1> (v), 2);
BOOST_CHECK_EQUAL (at_c <2> (v), 3);
}
{
std::tuple <int, short, int> v (1,2,3);
BOOST_MPL_ASSERT ((std::is_same <
decltype (fold (i, std::move (v), return_right())), int &&>));
auto && result = fold (i, std::move (v), return_right());
BOOST_CHECK_EQUAL (&result, &at_c <2> (v));
// Check that nothing has changed.
BOOST_CHECK_EQUAL (i, 7);
BOOST_CHECK_EQUAL (at_c <0> (v), 1);
BOOST_CHECK_EQUAL (at_c <1> (v), 2);
BOOST_CHECK_EQUAL (at_c <2> (v), 3);
}
}
struct const_or_not {
const_or_not() {}
bool operator() (int, int) const { return true; }
bool operator() (int, int) { return false; }
};
BOOST_AUTO_TEST_CASE (test_fold_function_lvalue_rvalue) {
const_or_not f;
const_or_not const f_const;
BOOST_CHECK_EQUAL (f (1, 2), false);
BOOST_CHECK_EQUAL (std::move (f) (1, 2), false);
BOOST_CHECK_EQUAL (f_const (1, 2), true);
{
std::vector <int> v;
v.push_back (1);
BOOST_CHECK_EQUAL (fold (true, v, f), false);
BOOST_CHECK_EQUAL (fold (true, v, std::move (f)), false);
BOOST_CHECK_EQUAL (fold (true, v, f_const), true);
}
{
std::tuple <int> v (1);
BOOST_CHECK_EQUAL (fold (true, v, f), false);
BOOST_CHECK_EQUAL (fold (true, v, std::move (f)), false);
BOOST_CHECK_EQUAL (fold (true, v, f_const), true);
}
}
BOOST_AUTO_TEST_SUITE_END()
| [
"[email protected]"
] | |
9f89d9805dcc2150eb9a0cddb0ffc906c0410975 | 3a78cbb46b8da97b5e161bdb6d11cf028c787584 | /12.15/src/empioyee.cpp | 0ec6ce6decfb4907b7335b1c99dbfbcae0a9f1b9 | [] | no_license | jsj1/Jiang_shijie | fc0ffc7e1d38950ab85385eeb9f02389080a1633 | 4a88c26fd898170cacc502cdc31f40fb0f516b92 | refs/heads/master | 2020-04-28T03:28:37.185839 | 2019-06-02T06:53:11 | 2019-06-02T06:53:11 | 174,939,157 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,800 | cpp |
#include <iostream>
#include "Employee.h" // Employee class definition
using namespace std;
// constructor
Employee::Employee( const string &first, const string &last,
const string &ssn, int month, int day, int year )
: firstName( first ), lastName( last ), socialSecurityNumber( ssn ),
birthDate( month, day, year )
{
// empty body
} // end Employee constructor
// set first name
void Employee::setFirstName( const string &first )
{
firstName = first;
} // end function setFirstName
// return first name
string Employee::getFirstName() const
{
return firstName;
} // end function getFirstName
// set last name
void Employee::setLastName( const string &last )
{
lastName = last;
} // end function setLastName
// return last name
string Employee::getLastName() const
{
return lastName;
} // end function getLastName
// set social security number
void Employee::setSocialSecurityNumber( const string &ssn )
{
socialSecurityNumber = ssn; // should validate
} // end function setSocialSecurityNumber
// return social security number
string Employee::getSocialSecurityNumber() const
{
return socialSecurityNumber;
} // end function getSocialSecurityNumber
// set birthday
void Employee::setBirthDate( int month, int day, int year )
{
birthDate.setDate( month, day, year );
} // end function setBirthDate
// return birthday
Date Employee::getBirthDate() const
{
return birthDate;
} // end function getBirthDate
// print Employee's information (virtual, but not pure virtual)
void Employee::print() const
{
cout << getFirstName() << ' ' << getLastName()
<< "\nbirthday: " << getBirthDate()
<< "\nsocial security number: " << getSocialSecurityNumber();
} // end function print
/**************************************************************************
* (C) Copyright 1992-2008 by Deitel & Associates, Inc. and *
* Pearson Education, Inc. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have used their *
* best efforts in preparing the book. These efforts include the *
* development, research, and testing of the theories and programs *
* to determine their effectiveness. The authors and publisher make *
* no warranty of any kind, expressed or implied, with regard to these *
* programs or to the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for incidental or *
* consequential damages in connection with, or arising out of, the *
* furnishing, performance, or use of these programs. *
**************************************************************************/
| [
"[email protected]"
] | |
b6720c5aac9acd98884c7ec4d7e9ff3d0d25eb37 | a550ff2a385e7a7498c02ac831116e4ff38f2a1c | /c++ sol/USACO/2020-2021/December/Platinum/cowmistry.cpp | 3ce53c6049a90dedd541b7a3e08d54d211cad57e | [] | no_license | TausifIqbal/CPcode | 28854eca64813bf01369ec553558a8cf87111537 | 23292111132752f4639037ebada288f338101e32 | refs/heads/master | 2023-04-07T19:38:52.373971 | 2021-04-13T23:11:36 | 2021-04-13T23:11:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,033 | cpp | /*
First realize all triplets must have all bits greater than the highest set bit of m (K + 1 in problem) set,
and we want all element pairwise xors in a triplet to be strictly less than m. Now there are two possible cases. If
all three elements of a triplet have the same set bit for the highest set bit m, that bit will always be turned off
in all xor pairs, so that triplet will always work. Otherwise we have two elements with the same bit set and one
element with a different bit set for the highest set bit position of m. We will recurse on this case holding pairs
representing sets of partial intervals given in the problem that recursed together if they have the all bits
greater than the top set bit of m the same and seperated by if the top set bit of m is set or not.
We will recurse with the function sol(vi a, vi b, int x, int y), where a and b are the two sets of
intervals seperated by the bit which is signified by x which is a power of two with 1 at the seperated bit position,
and all higher bits must be equal, and y is the number of accumulated values that could pair with numbers in set a
but have higher bits unequal at some point, ie they are not in set a nor set b. The function sol() needs to find
intervals in b that can pair with intervals and a but can not for sure be used yet based on the bits x and above.
We can first seperate a and b by their bit at the bit lower than x ie xx, and we'll call the new seperated sets
aa[0], aa[1], bb[0], and bb[1], signifying the bit set at xx. Now if the bit xx of m is not set, that means we must
recurse on the pairs of sets with the same bit at xx, as the pairs of numbers at that point have a different bit
set at xx then the pair will for sure be greater than m. However, if bit xx of m is set, we can recurse with pairs
of aa and bb such that their bit xx is different, because they still have a chance of being less than m in a lower
bit. Also, all pairs of aa and bb with the same bit set will for sure now work, so you can the the amount of values
in the bb interval with the same bit as the aa set your recursing on to the y value in the recursive call. Finally
once you reach a base case where a or b is empty or b intervals has every value less than x, you return the number
of values in set a multiplied by the number of ways to choose two values in y plus all values still in set b that
work, as all of these will now be valid sets that started off with different bits at the highest bit of m.
Now to show the recursive call works in time, realize all initial b sets will be split at most once
where they add a new interval to the set. This is because the case in the recursion when b has every value less
than x is a stopping point, so after an initial interval is split creating a new interval, the second time it is
split one of the recursive calls will stop immediately while the other one may keep going. Also, when recursing the
intervals splits the current sets into two disjoint groups. And of course empty sets stop recursing immediately.
This means there can be at most 2 * n intervals at each bit layer of recursion, and there are only lgn bits to go
down, which is why the complexity ends up as O(nlgn).
*/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <map>
using namespace std;
#define endl '\n'
#define ll long long
#define pi pair<int, int>
#define f first
#define s second
#define vi vector<pi>
const int mod = 1000000007;
int n, m, k, kk;
map<int, vi> mp;
ll f(vi &v){ ll ret = 0; for(pi i : v) ret += i.s - i.f + 1; return ret;}
ll f2(ll x){ return x * (x - 1) / 2 % mod;}
ll f3(ll x){ return f2(x) * (x - 2) % mod * (mod + 1) / 3 % mod;}
void add(vi &v, pi p, int x){
p.f = max(p.f, 0), p.s = min(p.s, x - 1);
if(p.f <= p.s) v.push_back(p);
}
ll sol(vi a, vi b, int x, int y){
if(a.empty()) return 0;
if(b.empty()) return f(a) * f2(y) % mod;
if(f(b) == x) return f(a) * f2(y + ((x - 1) & m)) % mod;
vi aa[2], bb[2];
ll xx = x / 2, ret = 0;
for(pi i : a) add(aa[0], i, xx), add(aa[1], {i.f - xx, i.s - xx}, xx);
for(pi i : b) add(bb[0], i, xx), add(bb[1], {i.f - xx, i.s - xx}, xx);
for(int i = 0; i < 2; i++){
if(m & xx) (ret += sol(aa[i], bb[!i], xx, y + f(bb[i]))) %= mod;
else (ret += sol(aa[i], bb[i], xx, y)) %= mod;
}
return ret;
}
ll ans(vi v){
vi a[2];
ll ret = 0;
for(pi i : v) add(a[0], i, kk), add(a[1], {i.f - kk, i.s - kk}, kk);
for(int i = 0; i < 2; i++){
(ret += f3(f(a[i]))) %= mod;
(ret += sol(a[i], a[!i], kk, 0)) %= mod;
}
return ret;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
kk = 1 << __lg(++m), k = 2 * kk, m -= kk;
ll ret = 0, z = k * f2(m) + 2 * f3(kk);
for(int i = 0; i < n; i++){
int x, y;
cin >> x >> y;
int l = x / k, r = y / k;
x %= k, y %= k;
if(l != r){
(ret += (r - l - 1) * z) %= mod;
mp[l].push_back({x, k - 1});
mp[r].push_back({0, y});
}else{
mp[l].push_back({x, y});
}
}
for(auto i : mp) (ret += ans(i.s)) %= mod;
cout << ret << endl;
return 0;
} | [
"[email protected]"
] | |
90d6073fdeae92447fc9ff4e49aec775fce768c6 | 475798fc8c06c1d5b1d9845b1011e4d865836d6f | /Cobalt/GPUProc/src/cuda/Kernels/UHEP_InvFIR_Kernel.h | a4f3eeba741b1b085953f929b7130f8d54af7d23 | [] | no_license | mfkiwl/Beamfomer-on-GPUs | 73b8549e26c482ffa35b292b5049991ae236af25 | a5ff7846cc5e7909c312f3ff8af64eb3c4d88e6b | refs/heads/master | 2021-06-05T19:50:15.542685 | 2016-09-13T10:04:50 | 2016-09-13T10:04:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,545 | h | //# UHEP_InvFIR_Kernel.h
//# Copyright (C) 2012-2013 ASTRON (Netherlands Institute for Radio Astronomy)
//# P.O. Box 2, 7990 AA Dwingeloo, The Netherlands
//#
//# This file is part of the LOFAR software suite.
//# The LOFAR software suite is free software: you can redistribute it and/or
//# modify it under the terms of the GNU General Public License as published
//# by the Free Software Foundation, either version 3 of the License, or
//# (at your option) any later version.
//#
//# The LOFAR software suite is distributed in the hope that it will be useful,
//# but WITHOUT ANY WARRANTY; without even the implied warranty of
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//# GNU General Public License for more details.
//#
//# You should have received a copy of the GNU General Public License along
//# with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>.
//#
//# $Id: UHEP_InvFIR_Kernel.h 24885 2013-05-13 23:37:27Z amesfoort $
#ifndef LOFAR_GPUPROC_CUDA_UHEP_INV_FIR_KERNEL_H
#define LOFAR_GPUPROC_CUDA_UHEP_INV_FIR_KERNEL_H
#include <CoInterface/Parset.h>
#include "Kernel.h"
#include <GPUProc/gpu_wrapper.h>
namespace LOFAR
{
namespace Cobalt
{
class UHEP_InvFIR_Kernel : public Kernel
{
public:
UHEP_InvFIR_Kernel(const Parset &ps, gpu::Stream &queue,
gpu::Module &program, gpu::DeviceMemory &devInvFIRfilteredData,
gpu::DeviceMemory &devFFTedData, gpu::DeviceMemory &devInvFIRfilterWeights);
};
}
}
#endif
| [
"[email protected]"
] | |
0f724778c86dd3d4876a66c0a504ddb34ae96416 | c531201956392f24b71be05d3883a76e2b9dafd7 | /SuperGame/base/baseui/uilabel.cpp | f665be75ef2567e55c3141d2b256aa6bc050860f | [] | no_license | po2656233/QtProject | 6f536769a06bb654458ef41498b9eb4777520e77 | c359ccdc0affe37a8f8a2266457d385c133dfe9a | refs/heads/master | 2020-08-03T04:01:03.824409 | 2020-02-05T14:32:04 | 2020-02-05T14:32:04 | 168,295,369 | 0 | 1 | null | 2019-08-25T18:20:10 | 2019-01-30T07:00:43 | C++ | UTF-8 | C++ | false | false | 923 | cpp | #include "uilabel.h"
#include <QDebug>
UILabel::UILabel(QWidget *parent) : QLabel(parent)
{
m_styleSheet = styleSheet();
m_bStyle = true;
connect(this,SIGNAL(clicked()),this, SLOT(onClicked()));
}
void UILabel::setNoStyle(bool haveStyle)
{
m_bStyle = haveStyle;
}
void UILabel::enterEvent(QEvent *event)
{
Q_UNUSED(event)
m_styleSheet = styleSheet();
if(m_bStyle)
{
setStyleSheet("color:#ff6600;background-color: rgb(0, 85, 255);");
}
}
void UILabel::leaveEvent(QEvent *event)
{
Q_UNUSED(event)
setStyleSheet(m_styleSheet);
}
void UILabel::mousePressEvent(QMouseEvent *ev)
{
Q_UNUSED(ev)
emit this->clicked();
}
void UILabel::mouseReleaseEvent(QMouseEvent *ev)
{
Q_UNUSED(ev)
setStyleSheet(m_styleSheet);
}
void UILabel::onClicked()
{
if (m_bStyle)
{
setStyleSheet("color:#ff6600;background-color: rgb(255, 170, 255);");
}
}
| [
"[email protected]"
] | |
1455f3cd7d568416cc730f0e891c536b541bf891 | 02a10a5244d2214e932e54399e4b56b68fe5974b | /headers/StructureFeature.h | 085865819eb7592c7b0c848f0c690f8fbdbefd36 | [] | no_license | inxomnyaa/symbols-auto | 839381c1e83f434b76b2faccadee5e413ac5f376 | 439a1399473cc765badc1b5c438fbf83d9eadf1d | refs/heads/master | 2023-06-21T23:17:07.389321 | 2019-11-16T19:13:05 | 2019-11-16T19:13:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | h | #pragma once
class StructureFeature {
virtual ~StructureFeature();
virtual ~StructureFeature();
virtual void initMobSpawnTypes(HardcodedSpawnAreaRegistry &);
virtual void postProcess(BlockSource *, Random &, int, int);
virtual void getNearestGeneratedFeature(Dimension &, BiomeSource &, BlockPos const&, BlockPos&);
virtual void isFeatureChunk(BiomeSource const&, Random &, ChunkPos const&, unsigned int);
virtual void createStructureStart(Dimension &, BiomeSource &, Random &, ChunkPos const&);
virtual void getStructureAt(int, int, int);
virtual void getGuesstimatedFeaturePositions(void);
}
| [
"[email protected]"
] | |
586ba357cdb3d69c72c987b96fb5bb1a2be1395d | 78fb0f50a8aff82c5a3e4d2475baf9723923a2e1 | /problem-00136/solution.cpp | 30f01448743a6ccaa63be6df28f513639d737ebc | [] | no_license | RathiRohit/daily-coding-problem | 300619b472fd3ee5e019f1b626861a1cbaf1a9ad | 06b43fce175eaa5cc50d93b1f47d70a11844eecf | refs/heads/master | 2021-08-10T18:14:15.043597 | 2021-07-21T14:23:03 | 2021-07-21T14:23:03 | 244,369,454 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 697 | cpp | #include <iostream>
#include <vector>
#define ll long long
#define ull unsigned long long
using namespace std;
int main() {
int t;
for (cin>>t; t; t--) {
int n;
cin>>n;
vector<int> arr(n);
for (int n_i=0; n_i<n; n_i++) {
cin>>arr[n_i];
}
vector<int> ans(n);
ans[n-1] = 1;
for (int n_i=n-2; n_i>=0; n_i--) {
ans[n_i] = 1;
if ((arr[n_i] > 0 && arr[n_i+1] < 0) || (arr[n_i] < 0 && arr[n_i+1] > 0)) {
ans[n_i] += ans[n_i+1];
}
}
for (int n_i=0; n_i<n; n_i++) {
cout<<ans[n_i]<<' ';
}
cout<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
fe6f0bc9e45248a6cba626459d6f83f49cd39a73 | 6477cf9ac119fe17d2c410ff3d8da60656179e3b | /Projects/psxanda/psx_player.cpp | c10c263956c6269eece768b468868cbffe90fc25 | [] | no_license | crutchwalkfactory/motocakerteam | 1cce9f850d2c84faebfc87d0adbfdd23472d9f08 | 0747624a575fb41db53506379692973e5998f8fe | refs/heads/master | 2021-01-10T12:41:59.321840 | 2010-12-13T18:19:27 | 2010-12-13T18:19:27 | 46,494,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,462 | cpp | /*
* Sony PlayStation Emulator for EZX Modile Phone
* Copyright (C) 2006 OopsWare. CHINA.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: psx_player.cpp,v 0.01 2006/07/29 $
*/
#include <qapplication.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <ctype.h>
#include <string.h>
#include "psx_player.h"
#include "ezxaudio.h"
#include "font.h"
#include "PsxCommon.h"
long LoadCdBios = 0;
//static unsigned int ncd_keys = ~0;
struct keymap_item PSX_KEYMAP[] = {
{"-----", 0, false },
{"START", 1, false },
{"SELECT", 2, false },
{"L-Analog", 3, false },
{"R-Analog", 4, false },
{"Triangle", 5, false },
{"Circle", 6, false },
{"Cross", 7, false },
{"Square", 8, false },
{"L2", 9, false },
{"R2", 10, false },
{"L1", 11, false },
{"R1", 12, false }
// {"LAnlaogX", 13, false },
// {"LAnlaogY", 14, false },
// {"RAnlaogX", 15, false },
// {"RAnlaogY", 16, false }
};
unsigned short EZXPSX_KEY = 0;
void do_keypad()
{
// static unsigned int turbo = 0;
// turbo ++;
unsigned short keys = 0;
if ( HKCS[EZX_KEY_UP].down ) keys |= 0x1000;
if ( HKCS[EZX_KEY_DOWN].down ) keys |= 0x4000;
if ( HKCS[EZX_KEY_LEFT].down ) keys |= 0x8000;
if ( HKCS[EZX_KEY_RIGHT].down ) keys |= 0x2000;
bool function_keys[13] = {false, false, false, false, false, false, false,
false, false, false, false, false, false };
int func_index;
for (int i=0;i<10;i++) {
func_index = GameKeymap[i];
if ( func_index && HKCS[i].down) {
function_keys[ PSX_KEYMAP[func_index].keypad ] = true;
// if (HKCS[i].down && PSX_KEYMAP[func_index].turbo)
// function_keys[ PSX_KEYMAP[func_index].keypad ] = turbo & 0x2;
}
}
if ( function_keys[ 1] ) keys |= 0x0800; // Start
if ( function_keys[ 2] ) keys |= 0x0100; // Select
if ( function_keys[ 3] ) keys |= 0x0200; // Left Analog
if ( function_keys[ 4] ) keys |= 0x0400; // Right Analog
if ( function_keys[ 5] ) keys |= 0x0010; // Triangle
if ( function_keys[ 6] ) keys |= 0x0020; // Circle
if ( function_keys[ 7] ) keys |= 0x0040; // Cross
if ( function_keys[ 8] ) keys |= 0x0080; // Square
if ( function_keys[ 9] ) keys |= 0x0001; // L2
if ( function_keys[10] ) keys |= 0x0002; // R2
if ( function_keys[11] ) keys |= 0x0004; // L1
if ( function_keys[12] ) keys |= 0x0008; // R1
EZXPSX_KEY = ~keys;
// printf("PAD : 0x%04x\n", EZXPSX_KEY);
}
//extern QString AppPath;
extern QString SavePath;
/*
void now_loading()
{
DrawString ("Now loading ...", (uint16 *)&VideoBuffer, 20, 200);
wgGame->UpdateRect(20, 200, 120, 10);
}
void now_seeking(int m, int s, int f)
{
char buf[50];
sprintf(buf, "CDR %3d:%02d:%02d", m, s, f);
DrawString (buf, (uint16 *)&VideoBuffer, 32, 200);
wgGame->UpdateRect(32, 200, 120, 10);
}
*/
extern int BiosFile; /* main.cpp */
extern char CDImageFileName[128];
extern char CDImageZFileName[128];
extern int CDImageIsCompressed;
void EZX_Flip()
{
wgGame->UpdateRect(0, 0, 320, 240);
}
void run_psx_emulator(const char *fn, int rom_type)
{
memset(CDImageFileName, 0, 128);
if (rom_type != 1) sprintf(CDImageFileName, "%s", fn);
switch (rom_type) {
case 8: // .ZNX
CDImageIsCompressed = 2;
break;
case 9: // .Z
CDImageIsCompressed = 1;
break;
default:
CDImageIsCompressed = 0;
}
if ( CDImageIsCompressed ) {
sprintf(CDImageZFileName, "%s", CDImageFileName);
sprintf(CDImageFileName, "%s.table", CDImageZFileName);
}
// printf("CD Image Type: %d\nFile Name:%s\nZ File Name: %s\n", CDImageIsCompressed, CDImageFileName, CDImageZFileName);
wgGame = new PSX_GameWidget( 0 );
wgGame->doLoadConfig();
// Config system
memset(&Config, 0, sizeof(Config));
strcpy(Config.Net, "Disabled");
// Config.PsxAuto = 1;
QString AppPath = "/mmc/mmca1/psx/";
sprintf(Config.Bios, "%s%s", (const char *)AppPath.local8Bit(), (BiosFile == 0) ? "scph1001.bin" : "scph7502.bin" );
sprintf(Config.Mcd1, "%s/%s", (const char *)SavePath.local8Bit(), "Mcd001.mcr" );
sprintf(Config.Mcd2, "%s/%s", (const char *)SavePath.local8Bit(), "Mcd002.mcr" );
// Config.PsxType = 1; // PAL
Config.Xa = 1;
// Config.Mdec = 1;
// ConfigurePlugins();
LoadPlugins();
LoadMcds(Config.Mcd1, Config.Mcd2);
// Init CPU and System Memory ...
SysMessage("Init PSX ...");
if (psxInit() < 0) {
printf("Error Init PSX ...\n");
goto finish;
}
// LoadCdBios = 1;
SysMessage("Init Plugins ...");
if (OpenPlugins() < 0) {
goto finish;
}
// reset cpu and memory, load BIOS file ...
psxReset();
switch (rom_type) {
case 1: // PSX-EXE file .psx
Load(fn);
break;
case 3: // .iso
printf("This emulator does not support ISO-9660 images.\n");
printf("If this is a binary image, rename it with a \".bin\" extension.\n");
case 4: // .img
case 2: // .bin
case 8: // .ZNX
case 9: // .Z
CheckCdrom();
if (LoadCdrom() == -1) {
goto finish;
}
break;
default: // BIOS
break;
}
wgGame->setFrameBufferDepth(16);
wgGame->showFullScreen();
wgGame->UpdateRect(0, 0, 320, 240, true);
qApp->processEvents();
SysMessage("Execute PSX ...");
GameLooping = true;
// psxCpu->Execute();
while (GameLooping) {
qApp->processEvents();
if ( GamePauseing ) {
wgGame->PauseProc();
continue;
}
do_keypad();
intExecuteCycs(1320000);
// printf("DIV: %d %d\n", my_div1_cnt, my_div2_cnt);
}
finish:
SysMessage("Shutdown PSX ...");
ClosePlugins();
psxShutdown();
ReleasePlugins();
/*if (wgGame) {
delete wgGame;
wgGame = 0;
}
*/
//SysMessage("");
wgGame->setFrameBufferDepth(24);
}
void PSX_GameWidget::doGamePause(bool pause)
{
//qWarning("pause: %d\n", pause);
if ( pause ) {
// StopTimer ();
} else {
// InitTimer ();
}
}
bool PSX_GameWidget::doGameReset()
{
psxReset();
return true;
}
bool PSX_GameWidget::doSaveGame(const char * fn)
{
return SaveState(fn) == 0;
}
bool PSX_GameWidget::doLoadGame(const char * fn)
{
return LoadState(fn) == 0;
// return false;
}
QString PSX_GameWidget::doConfigItemPerfix(const QString &s) const
{
return "PSX_" + s;
}
int PSX_GameWidget::getKeymapCount()
{
return sizeof(PSX_KEYMAP) / sizeof(struct keymap_item);
}
struct keymap_item * PSX_GameWidget::getKeymapData()
{
return &PSX_KEYMAP[0];
}
// ------------------------------------------------------------------------------
void SysPrintf(char *fmt, ...) {
va_list list;
char msg[512];
va_start(list, fmt);
vsprintf(msg, fmt, list);
va_end(list);
printf ("%s\n", msg);
}
void SysMessage(char *fmt, ...) {
va_list list;
char msg[512];
va_start(list, fmt);
vsprintf(msg, fmt, list);
va_end(list);
printf ("%s\n", msg);
}
void SysUpdate() {
// PADhandleKey(PAD1_keypressed());
// PADhandleKey(PAD2_keypressed());
}
void SysRunGui() {
// RunGui();
}
| [
"javieruro@874df678-8e7a-11de-b664-3b115b7b7a9b"
] | javieruro@874df678-8e7a-11de-b664-3b115b7b7a9b |
2656f9206a24f9bd42c2db0d40850d2e165cfa20 | f9a032b06d2cf84708e939b8798fe7b380669fc1 | /src/main.cpp | 908e6173656a6db1956da2395264a73c41293b73 | [
"MIT",
"BSL-1.0"
] | permissive | peposso/xlsx2lua | 1a80c6ce8a16d27214461dc87e2a3481be89447b | 3ade2a710a3786d9a920907c3017abd0537f01d6 | refs/heads/master | 2021-10-21T17:18:12.874083 | 2019-03-05T08:18:47 | 2019-03-05T08:18:47 | 104,644,792 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,495 | cpp | // Copyright (c) 2016 peposso All Rights Reserved.
// Released under the MIT license
#include <string>
#include <vector>
#include <utility>
#include <functional>
#include <thread>
#include <mutex>
#include "xlsx.hpp"
#include "dateutil.hpp"
std::string lua_escape(const std::string& s) {
std::string r;
r.push_back('"');
for (auto c : s) {
if (c == '\t') {
r.push_back('\\');
r.push_back('t');
} else if (c == '\r') {
r.push_back('\\');
r.push_back('r');
} else if (c == '\n') {
r.push_back('\\');
r.push_back('n');
} else if (c == '"') {
r.push_back('\\');
r.push_back('"');
} else if (c == '\\') {
r.push_back('\\');
r.push_back('\\');
} else {
r.push_back(c);
}
}
r.push_back('"');
return r;
}
int main(int argc, char** argv) {
std::string xlsx_file;
bool no_pretty = false;
bool has_arg_error = false;
bool skip_empty_row = false;
auto tz = dateutil::local_tz_seconds();
for (int i = 1; i < argc; ++i) {
std::string arg = argv[i];
if (arg[0] == '-') {
if (arg == "--no-pretty") {
no_pretty = true;
} else if (arg == "--skip-empty-row") {
skip_empty_row = true;
} else {
has_arg_error = true;
}
} else {
xlsx_file = arg;
}
}
if (has_arg_error || xlsx_file.empty()) {
std::cerr <<
"usage: xlsx2lua " <<
"[--no-pretty] " <<
"[--skip-empty-row] " <<
"[--timezone '+00:00'] " <<
"xlsx_file" <<
std::endl;
return 1;
}
auto sp = no_pretty ? "" : " ";
auto nl = no_pretty ? "" : "\n";
auto idt = no_pretty ? "" : " ";
xlsx::Workbook book(xlsx_file);
std::cout << "return" << sp << "{" << nl;
std::cout << idt << "sheets" << sp << "=" << sp << "{" << nl;
for (int i = 0; i < book.nsheets(); ++i) {
auto& sheet = book.sheet(i);
if (i != 0) {
std::cout << "," << nl;
}
std::cout <<
idt << idt << "{" << sp << "name" << sp << "=" << sp <<
lua_escape(sheet.name) << "," << nl;
std::cout <<
idt << idt << idt << "cells" << sp << "=" << sp << "{";
auto firstrow = true;
for (int y = 0; y < sheet.nrows(); ++y) {
int ncols = -1;
for (int x = sheet.ncols() - 1; x >= 0; --x) {
if (!sheet.cell(y, x).empty()) {
ncols = x + 1;
break;
}
}
if (skip_empty_row && ncols == -1) {
continue;
}
std::cout << nl;
std::cout << idt << idt << idt << idt << "{";
firstrow = false;
for (int x = 0; x < ncols; ++x) {
if (x > 0) {
std::cout << ",";
}
auto& cell = sheet.cell(y, x);
switch (cell.type) {
// kEmpty, kString, kInt, kDouble, kDateTime, kBool
case xlsx::Cell::Type::kEmpty:
std::cout << "\"\"";
break;
case xlsx::Cell::Type::kString:
std::cout << lua_escape(cell.as_str());
break;
case xlsx::Cell::Type::kInt:
std::cout << cell.as_int();
break;
case xlsx::Cell::Type::kDouble:
std::cout << cell.as_double();
break;
case xlsx::Cell::Type::kDateTime:
std::cout << lua_escape(dateutil::isoformat64(cell.as_time64(tz), tz));
break;
case xlsx::Cell::Type::kBool:
std::cout << (cell.as_bool() ? "true" : "false");
break;
}
}
if (y == sheet.nrows() - 1) {
std::cout << "}";
} else {
std::cout << "},";
}
}
std::cout << nl << idt << idt << idt << "}";
std::cout << nl << idt << idt << "}";
}
std::cout << nl << idt << "}";
std::cout << nl << "}\n";
return 0;
}
| [
"[email protected]"
] | |
bdd3ea09317cf948ba735ee0ab774eba6d2cd4d7 | 82460396bc5fb30b9e4c098acfb0e84268d1a150 | /test/Meta/TypeSet/IsSubset.cpp | cd17388b2af6455700426d188dff67da2cd95e12 | [] | no_license | dnlj/Meta | a0baba7a3ed04742a9dd62c0d54fba81fc90a549 | 864dd235e7417090e1b1f7164f98f3ab262ec64b | refs/heads/master | 2020-03-09T08:20:49.011773 | 2018-05-06T22:38:07 | 2018-05-06T22:38:07 | 128,687,071 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,477 | cpp | // STD
#include <tuple>
// Meta
#include <Meta/TypeSet/TypeSet.hpp>
#include <Meta/TypeSet/IsSubset.hpp>
// Google Test
#include <gtest/gtest.h>
// Test
#include <Test/Type.hpp>
#include <Test/Test.hpp>
namespace {
template<template<class...> class Operation, template<class...> class SetType>
void twoTest() {
{ // A.size > B.size; one empty
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<>
>::value;
ASSERT_FALSE(value);
}
{ // A.size > B.size; same types, same order
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<1>, Type<2>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size > B.size; same types, different order
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<2>, Type<1>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size > B.size; different types
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<5>, Type<6>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size > B.size; some types
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<5>, Type<3>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size == B.size; both empty
constexpr auto value = Operation<
SetType<>,
SetType<>
>::value;
ASSERT_TRUE(value);
}
{ // A.size == B.size; same types, same order
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<1>, Type<2>, Type<3>, Type<4>>
>::value;
ASSERT_TRUE(value);
}
{ // A.size == B.size; same types, different order
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<4>, Type<3>, Type<2>, Type<1>>
>::value;
ASSERT_TRUE(value);
}
{ // A.size == B.size; different types
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<5>, Type<6>, Type<7>, Type<8>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size == B.size; some types
constexpr auto value = Operation<
SetType<Type<1>, Type<2>, Type<3>, Type<4>>,
SetType<Type<5>, Type<3>, Type<2>, Type<8>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size < B.size; one empty
constexpr auto value = Operation<
SetType<>,
SetType<Type<1>, Type<2>, Type<3>, Type<4>>
>::value;
ASSERT_TRUE(value);
}
{ // A.size < B.size; same types, same order
constexpr auto value = Operation<
SetType<Type<1>, Type<2>>,
SetType<Type<1>, Type<2>, Type<3>, Type<4>>
>::value;
ASSERT_TRUE(value);
}
{ // A.size < B.size; same types, different order
constexpr auto value = Operation<
SetType<Type<2>, Type<1>>,
SetType<Type<1>, Type<2>, Type<3>, Type<4>>
>::value;
ASSERT_TRUE(value);
}
{ // A.size < B.size; different types
constexpr auto value = Operation<
SetType<Type<5>, Type<6>>,
SetType<Type<1>, Type<2>, Type<3>, Type<4>>
>::value;
ASSERT_FALSE(value);
}
{ // A.size < B.size; some types
constexpr auto value = Operation<
SetType<Type<5>, Type<6>, Type<2>, Type<3>>,
SetType<Type<1>, Type<2>, Type<3>, Type<4>>
>::value;
ASSERT_FALSE(value);
}
}
TEST(Meta_TypeSet_IsSubset, Two) {
#define X(type) twoTest<Meta::TypeSet::IsSubset, type>();
#include <Test/SetTypes.xmacro>
}
}
| [
"[email protected]"
] | |
faca91dc5adc39473dce9b739ca859f1be8ec6e9 | 4aadb120c23f44519fbd5254e56fc91c0eb3772c | /Source/opensteer/include/OpenSteer/QueryPathAlikeUtilities.h | 4bf5870d3339275c70f4dbb5453b8c54099866af | [
"MIT"
] | permissive | janfietz/edunetgames | d06cfb021d8f24cdcf3848a59cab694fbfd9c0ba | 04d787b0afca7c99b0f4c0692002b4abb8eea410 | refs/heads/master | 2016-09-10T19:24:04.051842 | 2011-04-17T11:00:09 | 2011-04-17T11:00:09 | 33,568,741 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,386 | h | /**
* OpenSteer -- Steering Behaviors for Autonomous Characters
*
* Copyright (c) 2002-2005, Sony Computer Entertainment America
* Original author: Craig Reynolds <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*
* @file
*
* @author Bjoern Knafla <[email protected]>
*
* Collection of helper classes to inherit from to create mappings as used by
* @c OpenSteer::mapDistanceToPathAlike and
* @c OpenSteer::mapPointToPathAlike.
*/
#ifndef OPENSTEER_QUERYPATHALIKEUTILITIES_H
#define OPENSTEER_QUERYPATHALIKEUTILITIES_H
namespace OpenSteer {
/**
* Inherit from it to create a mapping class used by
* @c OpenSteer::mapDistanceToPathAlike and
* @c OpenSteer::mapPointToPathAlike that calculates and extracts the
* distance along the path alike.
*/
class ExtractPathDistance {
public:
void setDistanceOnPathFlag( float distance ) {
distanceOnPathFlag_ = distance;
}
float distanceOnPathFlag() const {
return distanceOnPathFlag_;
}
protected:
ExtractPathDistance() : distanceOnPathFlag_( 0.0f ) {
//! Nothing to do.
}
explicit ExtractPathDistance( float distance ) : distanceOnPathFlag_( distance ) {
//! Nothing to do.
}
~ExtractPathDistance() {
//! Nothing to do.
}
private:
float distanceOnPathFlag_;
}; //! class ExtractPathDistance
/**
* Inherit from it to create a mapping class used by
* @c OpenSteer::mapDistanceToPathAlike and
* @c OpenSteer::mapPointToPathAlike that shouldn't calculate and extract the
* distance along the path alike.
*/
class DontExtractPathDistance {
public:
void setDistanceOnPathFlag( float ) {
//! Nothing to do.
}
float distanceOnPathFlag() const {
return 0.0f;
};
protected:
~DontExtractPathDistance() {
//! Nothing to do.
}
}; //! class DontExtractPathDistance
} //! namespace OpenSteer
#endif //! OPENSTEER_QUERYPATHALIKEUTILITIES_H
| [
"janfietz@localhost"
] | janfietz@localhost |
f16989ad896d78d85c609da0ec2d49ac71faebaa | d8116618f7ff4d61dfaf08228d037f2eb7ebb64e | /Itsa&PTC/ITSA58/A.cpp | bd0b4f3cefc15bb258ecab5af295346eebaeceb0 | [] | no_license | bobosheep/ContestCode | 1e43e5bfb81defba494583dcc9fdaab9e1ad67f3 | 7d41c239ab15578d4daf0568f8139af139a35cd8 | refs/heads/master | 2021-01-01T20:19:13.389666 | 2017-12-21T02:38:27 | 2017-12-21T02:38:27 | 98,811,240 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(a,b) for(int i=a;i<b;i++)
int main()
{
ll ncase, n, ans;
cin >> ncase;
while(ncase--)
{
ans = 0;
cin >> n;
rep(1, n + 1)
{
if(i %3 == 0)
ans += i;
}
cout << ans << endl;
}
return 0;
}
| [
"[email protected]"
] | |
2a83aee2b67414933a7ea01faf45145a638a5ce6 | 7e97b25c027161987839cdfabe53c7e052bee28d | /devel/include/easy_handeye_msgs/SelectTargetPose.h | fe1b8eb55602864939eee826683b9016e5df12fd | [] | no_license | nilshao/thesis | 155f0d306cdc76571a69ba8162a04e77d5e0f924 | 4190481456142fc6db3da056c89d9fa9e6d213fc | refs/heads/master | 2023-03-29T22:57:10.699851 | 2021-04-08T12:18:33 | 2021-04-08T12:18:33 | 355,880,841 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,106 | h | // Generated by gencpp from file easy_handeye_msgs/SelectTargetPose.msg
// DO NOT EDIT!
#ifndef EASY_HANDEYE_MSGS_MESSAGE_SELECTTARGETPOSE_H
#define EASY_HANDEYE_MSGS_MESSAGE_SELECTTARGETPOSE_H
#include <ros/service_traits.h>
#include <easy_handeye_msgs/SelectTargetPoseRequest.h>
#include <easy_handeye_msgs/SelectTargetPoseResponse.h>
namespace easy_handeye_msgs
{
struct SelectTargetPose
{
typedef SelectTargetPoseRequest Request;
typedef SelectTargetPoseResponse Response;
Request request;
Response response;
typedef Request RequestType;
typedef Response ResponseType;
}; // struct SelectTargetPose
} // namespace easy_handeye_msgs
namespace ros
{
namespace service_traits
{
template<>
struct MD5Sum< ::easy_handeye_msgs::SelectTargetPose > {
static const char* value()
{
return "7b5a90234960b4a47b29711a1572dab1";
}
static const char* value(const ::easy_handeye_msgs::SelectTargetPose&) { return value(); }
};
template<>
struct DataType< ::easy_handeye_msgs::SelectTargetPose > {
static const char* value()
{
return "easy_handeye_msgs/SelectTargetPose";
}
static const char* value(const ::easy_handeye_msgs::SelectTargetPose&) { return value(); }
};
// service_traits::MD5Sum< ::easy_handeye_msgs::SelectTargetPoseRequest> should match
// service_traits::MD5Sum< ::easy_handeye_msgs::SelectTargetPose >
template<>
struct MD5Sum< ::easy_handeye_msgs::SelectTargetPoseRequest>
{
static const char* value()
{
return MD5Sum< ::easy_handeye_msgs::SelectTargetPose >::value();
}
static const char* value(const ::easy_handeye_msgs::SelectTargetPoseRequest&)
{
return value();
}
};
// service_traits::DataType< ::easy_handeye_msgs::SelectTargetPoseRequest> should match
// service_traits::DataType< ::easy_handeye_msgs::SelectTargetPose >
template<>
struct DataType< ::easy_handeye_msgs::SelectTargetPoseRequest>
{
static const char* value()
{
return DataType< ::easy_handeye_msgs::SelectTargetPose >::value();
}
static const char* value(const ::easy_handeye_msgs::SelectTargetPoseRequest&)
{
return value();
}
};
// service_traits::MD5Sum< ::easy_handeye_msgs::SelectTargetPoseResponse> should match
// service_traits::MD5Sum< ::easy_handeye_msgs::SelectTargetPose >
template<>
struct MD5Sum< ::easy_handeye_msgs::SelectTargetPoseResponse>
{
static const char* value()
{
return MD5Sum< ::easy_handeye_msgs::SelectTargetPose >::value();
}
static const char* value(const ::easy_handeye_msgs::SelectTargetPoseResponse&)
{
return value();
}
};
// service_traits::DataType< ::easy_handeye_msgs::SelectTargetPoseResponse> should match
// service_traits::DataType< ::easy_handeye_msgs::SelectTargetPose >
template<>
struct DataType< ::easy_handeye_msgs::SelectTargetPoseResponse>
{
static const char* value()
{
return DataType< ::easy_handeye_msgs::SelectTargetPose >::value();
}
static const char* value(const ::easy_handeye_msgs::SelectTargetPoseResponse&)
{
return value();
}
};
} // namespace service_traits
} // namespace ros
#endif // EASY_HANDEYE_MSGS_MESSAGE_SELECTTARGETPOSE_H
| [
"[email protected]"
] | |
c4b6dc6afd979260c55287c70a4aa03236ec6c40 | bc4ee1878d96b2eb2e9917c9cd06f9a95a2d091d | /HW1/hwproblem1.cpp | 8577f2ad9d535ee0bf28e13e8133726aee93f4d6 | [] | no_license | likitha-l/Digital_Image_Processing_EE569 | 0cda74458596cdf3df7bdb2dd897e7b4bd079f74 | 42e550525cd4c26ad5233eeeea67a67c9be0b48d | refs/heads/master | 2022-12-13T06:50:21.580638 | 2020-09-01T05:38:50 | 2020-09-01T05:38:50 | 291,415,050 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,087 | cpp | #include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <cmath>
using namespace std;
int main(int argc, char *argv[])
{
// Define file pointer and variables
FILE *file;
int BytesPerPixel;
int Width=532;
int Height=600;
int Size=256;
// Check for proper syntax
if (argc < 3){
cout << "Syntax Error - Incorrect Parameter Usage:" << endl;
cout << "program_name input_image.raw output_image.raw [BytesPerPixel = 1] [Size = 256]" << endl;
return 0;
}
// Check if image is grayscale or color
if (argc < 4){
BytesPerPixel = 1; // default is grey image
}
else {
BytesPerPixel = atoi(argv[3]);
// Check if size is specified
if (argc >= 5){
Size = atoi(argv[4]);
}
}
// Allocate image data array
unsigned char Imagedata[Width][Height][BytesPerPixel];
// Read image (filename specified by first argument) into image data matrix
if (!(file=fopen(argv[1],"rb"))) {
cout << "Cannot open file: " << argv[1] <<endl;
exit(1);
}
fread(Imagedata, sizeof(unsigned char), Width*Height*BytesPerPixel, file);
fclose(file);
///////////////////////// INSERT YOUR PROCESSING CODE HERE /////////////////////////
float mask1[3][3]={{0.0,1/2.0,0.0},{0.0,0.0,0.0},{0.0,1/2.0,0.0}};
float mask2[3][3]={{0.0,0.0,0.0},{1/2.0,0.0,1/2.0},{0.0,0.0,0.0}};
float mask3[3][3]={{0.0,1/4.0,0.0},{1/4.0,0.0,1/4.0},{0.0,1/4.0,0.0}};
float mask4[3][3]={{1/4.0,0.0,1/4.0},{0.0,0.0,0.0},{1/4.0,0.0,1/4.0}};
float sum1,sum2,sum3,sum4;
float a;
unsigned char temp[Width][Height][3];
for (int i = 1; i < (Width-1); i++)
{
for (int j = 1; j < (Height-1); j++)
{
sum1=0.0;
sum2=0.0;
sum3=0.0;
sum4=0.0;
for (int u = -1; u <= 1; u++)
{
for (int v = -1; v <= 1; v++)
{
a=(float)Imagedata[i+u][j+v][0];
sum1= sum1 + a* (mask1[u+1][v+1]);
sum2= sum2 + a* (mask2[u+1][v+1]);
sum3= sum3 + a* (mask3[u+1][v+1]);
sum4= sum4 + a* (mask4[u+1][v+1]);
}
}
sum1=ceil(sum1);
sum2=ceil(sum2);
sum3=ceil(sum3);
sum4=ceil(sum4);
if(sum1<0)
sum1=0;
if(sum1>255)
sum1=255;
if(sum2<0)
sum2=0;
if(sum2>255)
sum2=255;
if(sum3<0)
sum3=0;
if(sum3>255)
sum3=255;
if(sum4<0)
sum4=0;
if(sum4>255)
sum4=255;
if((i%2==0)&&(j%2==0))
{
temp[i][j][0]=(unsigned char)sum2;
temp[i][j][1]=Imagedata[i][j][0];
temp[i][j][2]=(unsigned char)sum1;
}
if((i%2==0)&&(j%2!=0))
{
temp[i][j][0]=Imagedata[i][j][0];
temp[i][j][1]=(unsigned char)sum3;
temp[i][j][2]=(unsigned char)sum4;
}
if((i%2!=0)&&(j%2!=0))
{
temp[i][j][0]=(unsigned char)sum1;
temp[i][j][1]=Imagedata[i][j][0];
temp[i][j][2]=(unsigned char)sum2;
}
if((i%2!=0)&&(j%2==0))
{
temp[i][j][0]=(unsigned char)sum4;
temp[i][j][1]=(unsigned char)sum3;
temp[i][j][2]=Imagedata[i][j][0];
}
}
}
// Write image data (filename specified by second argument) from image data matrix
if (!(file=fopen(argv[2],"wb"))) {
cout << "Cannot open file: " << argv[2] << endl;
exit(1);
}
fwrite(temp, sizeof(unsigned char), Width*Height*3, file);
fclose(file);
return 0;
}
| [
"[email protected]"
] | |
86bfb9245af8d073bfccf96c845cf739438fc42f | f36f6dfde9495d4dd7e5c325028ca9011a858378 | /topology/topology.hh | 6c75b09d6fea2a40942f7c48439082b248de7d1e | [] | no_license | wqlxx/nox_topo | fc9879e1cef4abf7af31d8a480ed7d22551b9fa8 | da867d584f1e22f4032f3c7001b117c5f94153b7 | refs/heads/master | 2016-09-05T17:55:09.917233 | 2013-06-02T13:50:05 | 2013-06-02T13:50:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,209 | hh | /* Copyright 2008 (C) Nicira, Inc.
*
* This file is part of NOX.
*
* NOX is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* NOX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with NOX. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TOPOLOGY_HH
#define TOPOLOGY_HH 1
#include <list>
#include <algorithm>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <string>
#include <memory.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <stdlib.h>
#include <vector>
#include "openflow/openflow.h"
#include "openflow-pack.hh"
#include "flow.hh"
#include "fnv_hash.hh"
#include "packet-in.hh"
#include "component.hh"
#include "hash_map.hh"
#include "discovery/link-event.hh"
#include "netinet++/datapathid.hh"
#include "port.hh"
#include "netinet++/arp.hh"//for arp
#include "packets.h"
namespace vigil {
namespace applications {
/*modify by wangq 20130531 to store the details about link*/
/*struct sw_link_s{
uint64_t dpidsrc;
uint64_t dpiddst;
uint16_t src;
uint16_t dst;
};
typedef struct sw_link_s sw_link_t;
*/
/*end of modify*/
/** \ingroup noxcomponents
*
* \brief The current network topology
*/
class Topology
: public container::Component {
public:
/** \brief Structure to hold source and destination port
*/
struct LinkPorts {
uint16_t src;
uint16_t dst;
};
/*mod by wangq 20130531*/
typedef hash_map<datapathid, hash_map<datapathid, LinkPorts> > SwMap;
struct ArpPair_s{
datapathid dpidsrc;
datapathid dpiddst;
ipaddr ipsrc;
ipaddr ipdst;
ethernetaddr macsrc;
ethernetaddr macdst;
uint16_t src_in_port;
uint16_t dst_in_port;
uint16_t status;
};
typedef std::vector<struct ArpPair_s> ArpPair;
struct set_flow_s{
datapathid dpid;
uint16_t src_port;
uint16_t dst_port;
};
typedef struct set_flow_s set_flow_t;
/*end of mod*/
typedef std::vector<Port> PortVector;
typedef hash_map<uint16_t, std::pair<uint16_t, uint32_t> > PortMap;
typedef std::list<LinkPorts> LinkSet;
typedef hash_map<datapathid, LinkSet> DatapathLinkMap;
/** \brief Structure to hold information about datapath
*/
struct DpInfo {
/** \brief List of ports for datapath
*/
PortVector ports;
/** \brief Map of internal ports (indexed by port)
*/
PortMap internal;
/** \brief Map of outgoing links
* (indexed by datapath id of switch on the other end)
*/
DatapathLinkMap outlinks;
/** \brief Indicate if datapath is active
*/
bool active;
};
/** \brief Constructor
*/
Topology(const container::Context*, const json_object*);
/** \brief Get instance of component
*/
static void getInstance(const container::Context*, Topology*&);
/** \brief Configure components
*/
void configure(const container::Configuration*);
/** \brief Install components
*/
void install();
/** \brief Get information about datapath
*/
const DpInfo& get_dpinfo(const datapathid& dp) const;
/** \brief Get outgoing links of datapath
*/
const DatapathLinkMap& get_outlinks(const datapathid& dpsrc) const;
/** \brief Get links between two datapaths
*/
const LinkSet& get_outlinks(const datapathid& dpsrc, const datapathid& dpdst) const;
/** \brief Check if link is internal (i.e., between switches)
*/
bool is_internal(const datapathid& dp, uint16_t port) const;
/** \brief Get a list of datapaths in the network
*/
std::list<datapathid> get_datapaths();
private:
/**************************************************/
/** \brief Map of information index by datapath id
*/
typedef hash_map<datapathid, DpInfo> NetworkLinkMap;
NetworkLinkMap topology;
DpInfo empty_dp;
LinkSet empty_link_set;
/*mod by wangq 20130531*/
SwMap store_swmap;
ArpPair store_arppair;
std::vector<datapathid> bypass_dpid;
/*end of mod*/
//Topology() { }
/*mod by wangq 20130531*/
/* add dpid to LinkPorts
*/
void add_dpid(const Link_event&);
void set_flow_entry(const uint32_t , const uint32_t , const datapathid &);
/* handle packet in
*/
Disposition handle_packet_in(const Event&);
void sendARPReply(datapathid , uint32_t , ethernetaddr , uint32_t \
, ethernetaddr , uint32_t );
void sendARPRequest(datapathid , uint32_t , ethernetaddr , uint32_t \
, ethernetaddr , uint32_t );
Disposition road_find(ArpPair::iterator);
Disposition set_bypass(ArpPair::iterator);
/**************************************/
/** \brief Handle datapath join
*/
Disposition handle_datapath_join(const Event&);
/** \brief Handle datapath leave
*/
Disposition handle_datapath_leave(const Event&);
/** \brief Handle port status changes
*/
Disposition handle_port_status(const Event&);
/** \brief Handle link changes
*/
Disposition handle_link_event(const Event&);
/** \brief Add new port
*/
void add_port(const datapathid&, const Port&, bool);
/** \brief Delete port
*/
void delete_port(const datapathid&, const Port&);
/** \brief Add new link
*/
void add_link(const Link_event&);
/** \brief Delete link
*/
void remove_link(const Link_event&);
/** \brief Add new internal port
*/
void add_internal(const datapathid&, uint16_t);
/** \brief Remove internal port
*/
void remove_internal(const datapathid&, uint16_t);
};
} // namespace applications
} // namespace vigil
#endif
| [
"[email protected]"
] | |
d60a89040ccb3c693dde584121fabe1b0082d689 | 3f3a42f429f8bcd769644148b24c3b0e6e2589ed | /U2Lib/Src/Memory/U2Allocator.h | 2d8595df805c75e148be86aee2aec2d49ec067fd | [] | no_license | DanielNeander/my-3d-engine | d10ad3e57a205f6148357f47467b550c7e0e0f33 | 7f0babbfdf0b719ea4b114a89997d3e52bcb2b6c | refs/heads/master | 2021-01-10T17:58:25.691360 | 2013-04-24T07:37:31 | 2013-04-24T07:37:31 | 53,236,587 | 3 | 0 | null | null | null | null | UHC | C++ | false | false | 1,547 | h | /************************************************************************
module : U2Allocator
Author : yun sangyong
Desc : GameBryo 2.6 메모리 매니저
커스텀 할당자를 제공할 수 있도록 만든 인터페이스
************************************************************************/
#ifndef U2_ALLOCATOR_H
#define U2_ALLOCATOR_H
#include <U2Lib/Src/U2LibType.h>
#include "U2MemoryDefine.h"
class U2LIB U2Allocator
{
public:
inline virtual ~U2Allocator() {};
virtual void* Allocate(
size_t& sizeInBytes,
size_t& alignment,
uint32 bMemFlags,
U2MemType eMemType,
const char* szFile,
int line,
const char* szFunction) = 0;
virtual void Deallocate(
void* pvMem,
U2MemType eMemType,
size_t sizeInBytes) = 0;
virtual void* Reallocate(
void* pvMem,
size_t& sizeInBytes,
size_t& alignment,
uint32 bMemFlags,
U2MemType eMemType,
size_t sizeCurr,
const char* szFile, int line,
const char* szFunction) = 0;
// Memory Tracking
virtual bool TrackAllocate(
const void* const pvMem,
size_t sizeInBytes,
uint32 bMemFlags,
U2MemType eMemType,
const char* szFile,
int line,
const char* szFunction) = 0;
virtual bool TrackDeallocate(
const void* const pvMem,
U2MemType eMemType) = 0;
virtual bool SetMark(const char* szMarkType, const char* szClassfier,
const char* szStr) = 0;
virtual void Init() = 0;
virtual void Terminate() = 0;
virtual bool VertifyPtr(const void* pvMem) = 0;
};
#endif | [
"[email protected]"
] | |
a76cd19e89317d81929611d020a3a956bce95fe5 | 3aa9a68026ab10ced85dec559b6b4dfcb74ae251 | /leetCode/roman-to-integer/Wrong Answer/5-30-2020, 2_36_55 PM/Solution.cpp | 69b88a236e2f559711b73ee736aa6d5b40daf8f6 | [] | no_license | kushuu/competitive_programming_all | 10eee29c3ca0656a2ffa37b142df680c3a022f1b | 5edaec66d2179a012832698035bdfb0957dbd806 | refs/heads/master | 2023-08-17T15:09:48.492816 | 2021-10-04T20:09:37 | 2021-10-04T20:09:37 | 334,891,360 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,711 | cpp | // https://leetcode.com/problems/roman-to-integer
class Solution {
public:
int romanToInt(string s) {
//int num[] = {1,4,5,9,10,40,50,90,100,400,500,900,1000};
//string sym[] = {"","","","","","","","","","","D","","M"};
int ans = 0;
//map<string, int> RtoI = {"I":1,"IV":4,"V":5,"IX":9,"X":10,"XL":40,"L":50,"XC":90,"C":100,"CD":400,"D":500,"CM":900,"M":1000};
for(int i = 0; i < s.size(); i++) {
if(s[i] == 'I')
if(s[i+1] == 'V') {
ans += 4;
i++;
}
else if(s[i+1] == 'X') {
ans += 9;
i++;
}
else
ans += 1;
else if(s[i] == 'X')
if(s[i+1] == 'L') {
ans += 40;
i++;
}
else if(s[i+1] == 'C') {
ans += 90;
i++;
}
else
ans += 10;
else if(s[i] == 'L')
ans += 50;
else if(s[i] == 'C')
if(s[i+1] == 'D') {
ans += 400;
i++;
}
else if(s[i+1 == 'M']) {
ans += 900;
i++;
}
else
ans += 100;
else if(s[i] == 'D')
ans += 500;
else if(s[i] == 'M')
ans += 1000;
}
return ans;
}
}; | [
"[email protected]"
] | |
8832fe985ae4b42e58a4278689c1a87587f359dd | fd1f805ce93d9373efeb8f00192c98facc7fde59 | /UnionFind/UnionFind2.h | c0ae5bed6eb7ef8a91fd4bf541a0691347da9610 | [] | no_license | ouweibin/Data-Structure-and-Algorithm | 0c17b32eecf943e330f0f554c37c740e3e19c186 | e8dbec765307cd4d9b485434cf69499365df044f | refs/heads/master | 2020-08-03T18:57:57.123859 | 2020-03-18T07:21:25 | 2020-03-18T07:21:25 | 248,165,089 | 7 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,141 | h |
/******************************************************
* Copyright (C)2019 All rights reserved.
*
* Author : owb
* Email : [email protected]
* File Name : UnionFind2.h
* Last Modified : 2019-10-03 22:35
* Describe :
*
*******************************************************/
#ifndef _UNIONFIND2_H
#define _UNIONFIND2_H
#include <cassert>
namespace UF2 {
class UnionFind {
public:
UnionFind(int n) {
parent = new int[n];
for(int i = 0; i < n; ++i) {
parent[i] = i; // 初始化指向自己
}
count = n;
}
~UnionFind() {
delete[] parent;
}
int find(int v) {
assert(v >= 0 && v < count);
while(v != parent[v]) {
v = parent[v];
}
return v;
}
bool isConnected(int v, int w) {
return find(v) == find(w);
}
void unionElements(int v, int w) {
int vRoot = find(v);
int wRoot = find(w);
if(vRoot == wRoot)
return;
parent[vRoot] = wRoot;
}
private:
int* parent;
int count;
};
}
#endif // _UNIONFIND2_H
| [
"[email protected]"
] | |
dd4025f01ddd983452b6b49249c69a8d4a59333a | 1b75922773bf9e61f5c9c8572ffcdae73d34a158 | /include/bsNatives.h | 680905d2847b65d13301e32546c0ba5df8251b87 | [] | no_license | warvair/bulletscript | a6db7ad4caa661e830373f4953e35053852008bc | 3f499c3afba07c251fa95cb012801ef820705f7f | refs/heads/master | 2021-01-10T20:46:53.665684 | 2010-07-03T18:50:43 | 2010-07-03T18:50:43 | 35,000,416 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 671 | h | /*
BulletScript: a script for firing bullets.
See /doc/license.txt for license details.
*/
#ifndef __BS_NATIVES_H__
#define __BS_NATIVES_H__
#include "bsPrerequisites.h"
#include "bsCore.h"
namespace BS_NMSP
{
// Return random number in range
int bm_rand(ScriptState& state, void*);
bstype bm_rand_JIT(bstype range);
// Return square root
int bm_sqrt(ScriptState& state, void*);
bstype bm_sqrt_JIT(bstype value);
// Print variable
int bm_print(ScriptState& state, void*);
void bm_print_JIT(bstype value);
// Test function
int bm_test(ScriptState& state, void*);
void bm_test_JIT(bstype x, bstype y);
}
#endif | [
"[email protected]@fe84ce02-70a6-11de-8b73-c1edde54a3c7"
] | [email protected]@fe84ce02-70a6-11de-8b73-c1edde54a3c7 |
ff309c393716e890d3a281ea153ea40e3edd1a99 | 74fa584e3c18417e0c1eba84c1a7e2a07362aab3 | /Final Project/gl_common/Texture.cpp | 972654749b75405687a38f2157fccd6fa34753f2 | [] | no_license | badri999/badri999_557_2015_bb | 0845dc3c30c361dd9a1e5a6e0657ab6085e0e9df | 35ebc6e94ea326d81d8f26d18e13917b4391c09a | refs/heads/master | 2020-12-08T11:12:46.701138 | 2016-12-17T02:18:56 | 2016-12-17T02:18:56 | 67,709,159 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,385 | cpp | //
// Texture.cpp
// HCI557_Simple_Texture
//
// Created by Rafael Radkowski on 10/10/15.
//
//
#include "Texture.h"
#ifdef WIN32
string GLTexture::_glsl_names[2] = { "tex", "texture_blend"};
string GLMultiTexture::_glsl_names[4] = { "texture_background", "texture_foreground", "texture_between", "texture_blend"};
#endif
GLTexture::GLTexture()
{
_textureIdx = -1;
_texture_blend_mode = 0;
_dirty = false;
}
GLTexture::~GLTexture()
{
}
/*!
Loads a texture from a file and creates the necessary texture objects
@param path_and_file to the texture object
@return int - the texture id when the texture was sucessfully loaded.
*/
int GLTexture::loadAndCreateTexture(string path_and_file)
{
// Check whether we load a bitmap file
int idx = path_and_file.find_last_of(".");
string suffix = path_and_file.substr(idx+1, 3);
if (suffix.compare("bmp") != 0) {
cerr << "[ERROR] Filetype " << suffix << " is currently not supported. This example only support bitmap files. " << endl;
return -1;
}
string checked_path_and_file;
bool ret = SearchTexture(path_and_file, checked_path_and_file);
if(!ret)
{
cerr << "[ERROR] Cannot find the file " << path_and_file << "." << endl;
return -1;
}
//**********************************************************************************************
// Loads the file content
int channels = 3;
unsigned char * data;
unsigned char header[54]; // Each BMP file begins by a 54-bytes header
unsigned int dataPos; // Position in the file where the actual data begins
unsigned int width, height;
unsigned int imageSize;
// This opens a file
FILE * file;
file = fopen( checked_path_and_file.c_str(), "rb" );
if ( file == NULL ) return 0;
// This reads the header of the file and checks the length.
if ( fread(header, 1, 54, file)!=54 )
{
// If not 54 bytes read, this is not a bmp.
// Only a bmp has a header of length 54
printf("Not a correct BMP file\n");
return false;
}
// Read the start position of the data, the size, the width, and height.
dataPos = *(int*)&(header[0x0A]);
imageSize = *(int*)&(header[0x22]);
width = *(int*)&(header[0x12]);
height = *(int*)&(header[0x16]);
channels = imageSize / (width * height);
// Create memory for this texture
data = (unsigned char *)malloc( width * height * channels );
// Read the data from a file.
fread( data, width * height * channels, 1, file );
// Release the file.
fclose( file );
//**********************************************************************************************
// Texture generation
// Generate a texture, this function allocates the memory and
// associates the texture with a variable.
glGenTextures(1, &_texture );
// Set a texture as active texture.
glBindTexture( GL_TEXTURE_2D, _texture );
// Change the parameters of your texture units.
//glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE,GL_BLEND );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_NEAREST );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,GL_REPEAT );
// Create a texture and load it to your graphics hardware. This texture is automatically associated
// with texture 0 and the textuer variable "texture" / the active texture.
if(channels == 3)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_BGR, GL_UNSIGNED_BYTE, data);
else if(channels == 4)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_BGRA, GL_UNSIGNED_BYTE, data);
//**********************************************************************************************
// Create a midmap texture pyramid and load it to the graphics hardware.
// Note, the MIN and MAG filter must be set to one of the available midmap filters.
//gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width, height,GL_RGB, GL_UNSIGNED_BYTE, data );
// Delete your loaded data
free( data );
// Return the texture.
return _texture;
}
/*!
Adds the variables of this object to the shader program
*/
//virtual
bool GLTexture::addVariablesToProgram(GLuint program, int variable_index )
{
if(program == -1)return false; // no program exits
GLint params;
glGetProgramiv( program, GL_LINK_STATUS, ¶ms);
if(params == GL_FALSE)
{
cerr << "[GLTexture] Program " << program << " has not been linked. Textures cannot be added." << endl;
return false;
}
// enable the program
glUseProgram(program);
// get the location of a uniform variable. Note, the program must be linked at this position.
// location of the texture in the glsl program
_textureIdx = glGetUniformLocation(program, _glsl_names[0].c_str() );
checkUniform(_textureIdx, _glsl_names[0]);
_textureBlendModelIdx = glGetUniformLocation(program, _glsl_names[1].c_str() );
checkUniform(_textureBlendModelIdx, _glsl_names[1]);
//****************************************************************************************************
// Link the texture to the uniform variable and texture unit 0;
/*
glActiveTexture tells OpenGL which texture unit we want to use. GL_TEXTURE0 is the first texture unit, so we will just use that.
*/
glActiveTexture(GL_TEXTURE0);
//We use glBindTexture bind our texture into the active texture unit.
glBindTexture(GL_TEXTURE_2D, _texture);
/*
Then we set the tex uniform of the shaders to the index of the texture unit. We used texture unit zero, so we set the tex uniform to the integer value 0.
*/
glUniform1i(_textureIdx, 0);
// update the variable
dirty(program);
return true;
}
/*!
The function indicates that the variables of this object require an update
*/
//virtual
bool GLTexture::dirty(GLuint program)
{
// enable the program
glUseProgram(program);
// write the texture blend mode
glUniform1i(_textureBlendModelIdx, _texture_blend_mode);
// disable the program
glUseProgram(0);
_dirty = false;
return true;
}
/*!
This sets the texture blend model
@param mode - the values 0,1, or 2
*/
bool GLTexture::setTextureBlendMode(int mode)
{
if(mode < 0 || mode > 2)return false;
if(_texture_blend_mode == mode)return false;
// write the texture blend mode
_texture_blend_mode = mode;
_dirty = true;
return true;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// GLMultiTexture
GLMultiTexture::GLMultiTexture()
{
_texture_1 = 0;
_texture_2 = 0;
_texture_3 = 0;
_texture_blend_mode = 0;
_textureIdx1 = -1;
_textureIdx2 = -1;
_textureIdx3 = -1;
_textureBlendModelIdx = -1;
_dirty = false;
}
GLMultiTexture::~GLMultiTexture()
{
}
/*!
Load two bitmap images as textures from files.
@param path_and_file_texture_1 - path and file of the first image.
@param path_and_file_texture_1 - path and file of the second image.
@return int - the texture id when the texture was sucessfully loaded.
*/
int GLMultiTexture::loadAndCreateTextures(string path_and_file_texture_1, string path_and_file_texture_2, string path_and_file_texture_3)
{
unsigned int channels1;
unsigned int width1;
unsigned int height1;
unsigned int channels2;
unsigned int width2;
unsigned int height2;
unsigned int channels3;
unsigned int width3;
unsigned int height3;
unsigned char* data1 = loadBitmapFile(path_and_file_texture_1, channels1, width1, height1 );
unsigned char* data2 = loadBitmapFile(path_and_file_texture_2, channels2, width2, height2 );
unsigned char* data3 = loadBitmapFile(path_and_file_texture_3, channels3, width3, height3);
if(data1 == NULL || data2 == NULL ||data3==NULL )return -1;
//**********************************************************************************************
// Texture generation - background
// Activate a texture unit
glActiveTexture(GL_TEXTURE0);
// Generate a texture, this function allocates the memory and
// associates the texture with a variable.
glGenTextures(1, &_texture_1 );
// Set a texture as active texture.
glBindTexture( GL_TEXTURE_2D, _texture_1 );
// Change the parameters of your texture units.
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_NEAREST );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,GL_REPEAT );
// Create a texture and load it to your graphics hardware. This texture is automatically associated
// with texture 0 and the textuer variable "texture" / the active texture.
if(channels1 == 3)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width1, height1, 0, GL_BGR, GL_UNSIGNED_BYTE, data1);
else if(channels1 == 4)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width1, height1, 0, GL_BGRA, GL_UNSIGNED_BYTE, data1);
//**********************************************************************************************
// Create a midmap texture pyramid and load it to the graphics hardware.
// Note, the MIN and MAG filter must be set to one of the available midmap filters.
//gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width, height,GL_RGB, GL_UNSIGNED_BYTE, data );
// Delete your loaded data
free( data1 );
//**********************************************************************************************
// Texture light
// Activate a texture unit
glActiveTexture(GL_TEXTURE1);
// Generate a texture, this function allocates the memory and
// associates the texture with a variable.
glGenTextures(1, &_texture_2 );
// Set a texture as active texture.
glBindTexture( GL_TEXTURE_2D, _texture_2 );
// Change the parameters of your texture units.
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_NEAREST );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,GL_REPEAT );
// Create a texture and load it to your graphics hardware. This texture is automatically associated
// with texture 0 and the textuer variable "texture" / the active texture.
if(channels2 == 3)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width2, height2, 0, GL_BGR, GL_UNSIGNED_BYTE, data2);
else if(channels2 == 4)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width2, height2, 0, GL_BGRA, GL_UNSIGNED_BYTE, data2);
//**********************************************************************************************
// Create a midmap texture pyramid and load it to the graphics hardware.
// Note, the MIN and MAG filter must be set to one of the available midmap filters.
//gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width, height,GL_RGB, GL_UNSIGNED_BYTE, data );
// Delete your loaded data
free( data2 );
glActiveTexture(GL_TEXTURE2);
glGenTextures(1, &_texture_3);
// Set a texture as active texture.
glBindTexture(GL_TEXTURE_2D, _texture_3);
// Change the parameters of your texture units.
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
// Create a texture and load it to your graphics hardware. This texture is automatically associated
// with texture 0 and the textuer variable "texture" / the active texture.
if (channels3 == 3)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width3, height3, 0, GL_BGR, GL_UNSIGNED_BYTE, data3);
else if (channels3 == 4)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width3, height3, 0, GL_BGRA, GL_UNSIGNED_BYTE, data3);
//**********************************************************************************************
// Create a midmap texture pyramid and load it to the graphics hardware.
// Note, the MIN and MAG filter must be set to one of the available midmap filters.
//gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width, height,GL_RGB, GL_UNSIGNED_BYTE, data );
// Delete your loaded data
free(data3);
// Return the texture.
return _texture_1;
}
/*!
This sets the texture blend model
@param mode - the values 0,1, or 2
@return true, when a new mode was set, false when current and new mode are equal
*/
bool GLMultiTexture::setTextureBlendMode(int mode)
{
if(mode < 0 || mode > 2)return false;
if(_texture_blend_mode == mode)return false;
// write the texture blend mode
_texture_blend_mode = mode;
_dirty = true;
return true;
}
/*!
Adds the variables of this object to the shader program
*/
//virtual
bool GLMultiTexture::addVariablesToProgram(GLuint program, int variable_index)
{
if(program == -1)return false; // no program exits
GLint params;
glGetProgramiv( program, GL_LINK_STATUS, ¶ms);
if(params == GL_FALSE)
{
cerr << "[GLTexture] Program " << program << " has not been linked. Textures cannot be added." << endl;
return false;
}
// enable the program
glUseProgram(program);
// get the location of a uniform variable. Note, the program must be linked at this position.
// location of the texture in the glsl program
_textureIdx1 = glGetUniformLocation(program, _glsl_names[0].c_str() );
checkUniform(_textureIdx1, _glsl_names[0]);
_textureIdx2 = glGetUniformLocation(program, _glsl_names[1].c_str() );
checkUniform(_textureIdx2, _glsl_names[1]);
_textureIdx3 = glGetUniformLocation(program, _glsl_names[2].c_str());
checkUniform(_textureIdx3, _glsl_names[2]);
_textureBlendModelIdx = glGetUniformLocation(program, _glsl_names[3].c_str() );
checkUniform(_textureBlendModelIdx, _glsl_names[3]);
//****************************************************************************************************
// Link the texture to the uniform variable and texture unit 0;
/*
glActiveTexture tells OpenGL which texture unit we want to use. GL_TEXTURE0 is the first texture unit, so we will just use that.
*/
glActiveTexture(GL_TEXTURE0);
//We use glBindTexture bind our texture into the active texture unit.
glBindTexture(GL_TEXTURE_2D, _texture_1);
/*
Then we set the tex uniform of the shaders to the index of the texture unit. We used texture unit zero, so we set the tex uniform to the integer value 0.
*/
glUniform1i(_textureIdx1, 0);
/*
glActiveTexture tells OpenGL which texture unit we want to use. GL_TEXTURE0 is the first texture unit, so we will just use that.
*/
glActiveTexture(GL_TEXTURE1);
//We use glBindTexture bind our texture into the active texture unit.
glBindTexture(GL_TEXTURE_2D, _texture_2);
/*
Then we set the tex uniform of the shaders to the index of the texture unit. We used texture unit zero, so we set the tex uniform to the integer value 0.
*/
glUniform1i(_textureIdx2, 1);
glActiveTexture(GL_TEXTURE2);
//We use glBindTexture bind our texture into the active texture unit.
glBindTexture(GL_TEXTURE_2D, _texture_3);
/*
Then we set the tex uniform of the shaders to the index of the texture unit. We used texture unit zero, so we set the tex uniform to the integer value 0.
*/
glUniform1i(_textureIdx3, 2);
// update the variable
dirty(program);
return true;
}
/*!
The function indicates that the variables of this object require an update
*/
//virtual
bool GLMultiTexture::dirty(GLuint program)
{
// enable the program
glUseProgram(program);
// write the texture blend mode
glUniform1i(_textureBlendModelIdx, _texture_blend_mode);
// disable the program
glUseProgram(0);
_dirty = false;
return true;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Midmap texture
GLMipMapTexture::GLMipMapTexture()
{
_textureIdx = -1;
_texture_blend_mode = 0;
_dirty = false;
}
GLMipMapTexture::~GLMipMapTexture()
{
}
/*!
Loads a texture from a file and creates the necessary texture objects
@param path_and_file to the texture object
@return int - the texture id when the texture was sucessfully loaded.
*/
int GLMipMapTexture::loadAndCreateTexture(string path_and_file)
{
unsigned int channels;
unsigned int width;
unsigned int height;
// Load the texture from file.
unsigned char* data = loadBitmapFile(path_and_file, channels, width, height );
if(data == NULL )return -1;
//**********************************************************************************************
// Texture generation
glActiveTexture(GL_TEXTURE0);
// Generate a texture, this function allocates the memory and
// associates the texture with a variable.
glGenTextures(1, &_texture );
// Set a texture as active texture.
glBindTexture( GL_TEXTURE_2D, _texture );
//------------------------------------------------------------------------------------------------
// Change the parameters of your texture units.
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_LINEAR );
// TRY THESE TWO PARAMETERS. They change the mipmap mode from linear to nearest
// glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_NEAREST_MIPMAP_NEAREST );
// glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_NEAREST );
//------------------------------------------------------------------------------------------------
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,GL_REPEAT );
//**********************************************************************************************
// Create a midmap texture pyramid and load it to the graphics hardware.
// Note, the MIN and MAG filter must be set to one of the available midmap filters.
if(channels == 3)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_BGR, GL_UNSIGNED_BYTE, data);
else if(channels == 4)
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_BGRA, GL_UNSIGNED_BYTE, data);
// This generates the midmaps
glGenerateMipmap(GL_TEXTURE_2D);
// Delete your loaded data
free( data );
// Return the texture.
return _texture;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*!
Load a bitmap image from a file
@param path_and_file - the path and filename
@param data - a pointer to return the data. Note, the data object should be deleted once the data is not required anymore.
@param channels - reference to an integer to keep the channels.
@param width, height, - reference to integers to return the dimensions in pixels.
*/
unsigned char* loadBitmapFile(string path_and_file, unsigned int& channels, unsigned int& width, unsigned int& height )
{
// Check whether we load a bitmap file
int idx = path_and_file.find_last_of(".");
string suffix = path_and_file.substr(idx+1, 3);
if (suffix.compare("bmp") != 0) {
cerr << "[ERROR] Filetype " << suffix << " is currently not supported. This example only support bitmap files. " << endl;
return NULL;
}
string new_path_and_file;
SearchTexture(path_and_file, new_path_and_file);
//**********************************************************************************************
// Loads the file content
channels = 3;
unsigned char* data;
unsigned char header[54]; // Each BMP file begins by a 54-bytes header
unsigned int dataPos; // Position in the file where the actual data begins
//unsigned int width, height;
unsigned int imageSize;
// This opens a file
FILE * file;
file = fopen( new_path_and_file.c_str(), "rb" );
if ( file == NULL ) return 0;
// This reads the header of the file and checks the length.
if ( fread(header, 1, 54, file)!=54 )
{
// If not 54 bytes read, this is not a bmp.
// Only a bmp has a header of length 54
printf("Not a correct BMP file\n");
return NULL;
}
// Read the start position of the data, the size, the width, and height.
dataPos = *(int*)&(header[0x0A]);
imageSize = *(int*)&(header[0x22]);
width = *(int*)&(header[0x12]);
height = *(int*)&(header[0x16]);
channels = imageSize / (width * height);
// Create memory for this texture
data = (unsigned char *)malloc( width * height * channels );
// Read the data from a file.
fread( data, width * height * channels, 1, file );
// Release the file.
fclose( file );
return data;
}
/*!
Verifies wheterh a file [name] exits
@param name - the path and the name of the file.
*/
bool SearchTexture (const std::string& name, string& new_name)
{
new_name = "";
bool exits = false;
ifstream f(name.c_str());
if (f.good()) {
f.close();
new_name = name;
exits = true;
return exits;
} else {
f.close();
exits = false;
}
int idx = name.find_first_of("/");
string newstring = name.substr(idx+1, name.length() - 3);
ifstream f2(newstring.c_str());
if (f2.good()) {
f2.close();
exits = true;
} else {
f2.close();
exits = false;
}
if(exits)
{
new_name = newstring;
}
return exits;
}
| [
"[email protected]"
] | |
1c929b4d6c07e0f3393f037c59ff3a24b469de33 | 227831adac3048d228eed5f51370a89f3f3ad272 | /userspace/dijkstra/dijkstra.cpp | 89a763388ab967e082f66597818342993d277ee4 | [] | no_license | wangxiaoq/linux-code | 19b747f39d9c72edf42af243537a22fd98bff07c | 2f78f5eea705a70a326bc0842ca81e1f55c315ba | refs/heads/master | 2020-12-20T15:35:30.681857 | 2019-03-25T10:02:22 | 2019-03-25T10:02:22 | 50,154,041 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,991 | cpp | #include <iostream>
#include <fstream>
#include <map>
#include <memory>
/*
* input format: start_vertex end_vertex weight
*/
struct vertex {
vertex(int i)
: id(i) {}
int id;
/* adj vertex and weight */
std::map<int, int> adjs;
};
std::map<int, std::shared_ptr<vertex>> graph;
int load_data_from_file(char *filename)
{
int start, end, weight;
std::ifstream inf(filename);
if (!inf.is_open()) {
return -1;
}
while (1) {
inf >> start >> end >> weight;
if (!inf) {
break;
}
if (graph.find(start) == graph.end()) {
graph[start] = std::make_shared<vertex>(start);
}
graph[start]->adjs.insert(std::make_pair(end, weight));
if (graph.find(end) == graph.end()) {
graph[end] = std::make_shared<vertex>(end);
}
graph[end]->adjs.insert(std::make_pair(start, weight));
}
return 0;
}
void dijkstra(void)
{
int start;
std::cout << "start point:";
std::cin >> start;
/* id, last vertex, weight */
std::map<int, std::pair<int, int>> known;
/* id, last vertex, weight */
std::map<int, std::pair<int, int>> to_be_known;
known.insert(std::make_pair(start, std::make_pair(start, 0)));
for (const auto &p : graph[start]->adjs) {
to_be_known.insert(std::make_pair(p.first, std::make_pair(start, p.second + known[start].second)));
}
while (known.size() != graph.size()) {
std::map<int, std::pair<int, int>>::iterator min_it = to_be_known.begin();
for (auto it = to_be_known.begin(); it != to_be_known.end(); ++it) {
if (it->second.second < min_it->second.second) {
min_it = it;
}
}
known.insert(*min_it);
int last = min_it->first;
to_be_known.erase(min_it);
for (const auto &p : graph[last]->adjs) {
if (known.find(p.first) != known.end()) {
continue;
}
if (to_be_known.find(p.first) == to_be_known.end()) {
to_be_known.insert({p.first, {last, p.second + known[last].second}});
} else {
if (p.second + known[last].second < to_be_known[p.first].second) {
to_be_known[p.first] = {last, p.second + known[last].second};
}
}
}
}
for (const auto &p : known) {
std::cout << p.first << " " << p.second.first << " " << p.second.second << std::endl;
}
}
int main(int argc ,char *argv[])
{
if (argc < 2) {
std::cerr << "Usage: ./a.out filename" << std::endl;
return 0;
}
load_data_from_file(argv[1]);
for (const std::pair<int, std::shared_ptr<vertex>> &p : graph) {
std::cout << p.first << " ";
for (auto v : p.second->adjs) {
std::cout << v.first << "(" << v.second << ") ";
}
std::cout << std::endl;
}
dijkstra();
return 0;
}
| [
"[email protected]"
] | |
9654d138cb355ed740e67bd59fef812d52a6ff65 | f95975d9454984803586de7f0600f3ecf9918f60 | /lang_service/java/com/intel/daal/algorithms/low_order_moments/batch_iface.cpp | f32990d9094a4f101316de4948f58b90e16762ab | [
"Intel",
"Apache-2.0"
] | permissive | jjuribe/daal | f4e05656ca5f01e56debdbd2de51eeb2f506ca3d | 242d358db584dd4c9c65826b345fe63313ff8f2a | refs/heads/master | 2020-09-15T01:33:34.752543 | 2019-11-21T08:27:26 | 2019-11-21T08:27:26 | 223,316,648 | 0 | 0 | Apache-2.0 | 2019-11-22T03:33:41 | 2019-11-22T03:33:39 | null | UTF-8 | C++ | false | false | 3,360 | cpp | /* file: batch_iface.cpp */
/*******************************************************************************
* Copyright 2014-2019 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#include <jni.h>
#include "daal.h"
#include "com_intel_daal_algorithms_low_order_moments_BatchImpl.h"
#include "java_batch.h"
#include "common_helpers.h"
USING_COMMON_NAMESPACES()
using namespace daal::algorithms::low_order_moments;
extern "C"
{
/*
* Class: com_intel_daal_algorithms_low_order_moments_BatchImpl
* Method: cSetResult
* Signature: (JIIJ)V
*/
JNIEXPORT void JNICALL Java_com_intel_daal_algorithms_low_1order_1moments_BatchImpl_cSetResult
(JNIEnv *env, jobject thisObj, jlong algAddr, jint prec, jint method, jlong resultAddr)
{
jniBatch<low_order_moments::Method, Batch, defaultDense, singlePassDense, sumDense, fastCSR, singlePassCSR, sumCSR>::
setResult<low_order_moments::Result>(prec, method, algAddr, resultAddr);
}
/*
* Class: com_intel_daal_algorithms_low_order_moments_BatchImpl
* Method: cGetResult
* Signature: (JII)J
*/
JNIEXPORT jlong JNICALL Java_com_intel_daal_algorithms_low_1order_1moments_BatchImpl_cGetResult
(JNIEnv *env, jobject thisObj, jlong algAddr, jint prec, jint method)
{
return jniBatch<low_order_moments::Method, Batch, defaultDense, singlePassDense, sumDense, fastCSR, singlePassCSR, sumCSR>::
getResult(prec, method, algAddr);
}
/*
* Class: com_intel_daal_algorithms_low_order_moments_BatchImpl
* Method: cInitBatchImpl
* Signature: ()J
*/
JNIEXPORT jlong JNICALL Java_com_intel_daal_algorithms_low_1order_1moments_BatchImpl_cInitBatchImpl
(JNIEnv *env, jobject thisObj)
{
using namespace daal;
using namespace daal::algorithms::low_order_moments;
using namespace daal::services;
JavaVM *jvm;
// Get pointer to the Java VM interface function table
jint status = env->GetJavaVM(&jvm);
if(status != 0)
{
env->ThrowNew(env->FindClass("java/lang/Exception"), "Unable to get pointer to the Java VM interface function table");
return 0;
}
SharedPtr<JavaBatch> *batch = new SharedPtr<JavaBatch>(new JavaBatch(jvm, thisObj));
return (jlong)batch;
}
/*
* Class: com_intel_daal_algorithms_low_order_moments_BatchImpl
* Method: cDispose
* Signature: (J)V
*/
JNIEXPORT void JNICALL Java_com_intel_daal_algorithms_low_1order_1moments_BatchImpl_cDispose
(JNIEnv *env, jobject thisObj, jlong initAddr)
{
SharedPtr<BatchImpl> *batch = (SharedPtr<BatchImpl> *)initAddr;
delete batch;
}
}
| [
"[email protected]"
] | |
4437b543453ed16c7abbb392c7a551949354d7ca | 6bcdb9e8836cd60e972be865beb50fbfefdfa650 | /test/variant/dynamic_cast_types.cpp | e7ebc75103a96e2843d8549bcf58eeece75d1e4b | [
"BSL-1.0"
] | permissive | pmiddend/fcppt | 4dbba03f7386c1e0d35c21aa0e88e96ed824957f | 9f437acbb10258e6df6982a550213a05815eb2be | refs/heads/master | 2020-09-22T08:54:49.438518 | 2019-11-30T14:14:04 | 2019-11-30T14:14:04 | 225,129,546 | 0 | 0 | BSL-1.0 | 2019-12-01T08:31:12 | 2019-12-01T08:31:11 | null | UTF-8 | C++ | false | false | 910 | cpp | // Copyright Carl Philipp Reh 2009 - 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <fcppt/reference_impl.hpp>
#include <fcppt/variant/dynamic_cast_types.hpp>
#include <fcppt/config/external_begin.hpp>
#include <metal/list/at.hpp>
#include <metal/list/list.hpp>
#include <metal/number/number.hpp>
#include <type_traits>
#include <fcppt/config/external_end.hpp>
int
main()
{
typedef
fcppt::variant::dynamic_cast_types<
metal::list<
int,
char const
>
>
types;
static_assert(
std::is_same_v<
metal::at<
types,
metal::number<
0
>
>,
fcppt::reference<
int
>
>
);
static_assert(
std::is_same_v<
metal::at<
types,
metal::number<
1
>
>,
fcppt::reference<
char const
>
>
);
}
| [
"[email protected]"
] | |
56dfe28ea677fd73286135e9b38ca6379e179769 | cfca4d5453a0c3418b3e59f311de046c763b36fc | /node_modules/react-native/third-party/folly-2016.09.26.00/folly/portability/Constexpr.h | 16b6458fab1b59ac9ed118ec35eb3c2ff2131686 | [
"MIT",
"Apache-2.0",
"CC-BY-4.0",
"CC-BY-SA-4.0",
"CC-BY-NC-SA-4.0"
] | permissive | notjosh/Marzipants | e04b01328acbbfcc2ffba6fc88c729fdc6f573f0 | 4909a2502d9575469d2647a3d750a0c1a50ff9e9 | refs/heads/master | 2020-03-19T12:44:12.785247 | 2018-06-25T11:54:50 | 2018-06-25T11:54:50 | 136,536,830 | 151 | 2 | MIT | 2018-06-25T11:54:52 | 2018-06-07T22:13:24 | Objective-C | UTF-8 | C++ | false | false | 2,442 | h | /*
* Copyright 2016 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <cstdint>
#include <cstring>
#include <type_traits>
namespace folly {
template <typename T>
constexpr T constexpr_max(T a, T b) {
return a > b ? a : b;
}
template <typename T>
constexpr T constexpr_min(T a, T b) {
return a < b ? a : b;
}
namespace detail {
template <typename T, typename = void>
struct constexpr_abs_helper {};
template <typename T>
struct constexpr_abs_helper<
T,
typename std::enable_if<std::is_floating_point<T>::value>::type> {
static constexpr T go(T t) {
return t < static_cast<T>(0) ? -t : t;
}
};
template <typename T>
struct constexpr_abs_helper<
T,
typename std::enable_if<
std::is_integral<T>::value && !std::is_same<T, bool>::value &&
std::is_unsigned<T>::value>::type> {
static constexpr T go(T t) {
return t;
}
};
template <typename T>
struct constexpr_abs_helper<
T,
typename std::enable_if<
std::is_integral<T>::value && !std::is_same<T, bool>::value &&
std::is_signed<T>::value>::type> {
static constexpr typename std::make_unsigned<T>::type go(T t) {
return t < static_cast<T>(0) ? -t : t;
}
};
}
template <typename T>
constexpr auto constexpr_abs(T t)
-> decltype(detail::constexpr_abs_helper<T>::go(t)) {
return detail::constexpr_abs_helper<T>::go(t);
}
#ifdef _MSC_VER
constexpr size_t constexpr_strlen_internal(const char* s, size_t len) {
return *s == '\0' ? len : constexpr_strlen_internal(s + 1, len + 1);
}
static_assert(constexpr_strlen_internal("123456789", 0) == 9,
"Someone appears to have broken constexpr_strlen...");
#endif
constexpr size_t constexpr_strlen(const char* s) {
#if defined(__clang__)
return __builtin_strlen(s);
#elif defined(_MSC_VER)
return s == nullptr ? 0 : constexpr_strlen_internal(s, 0);
#else
return std::strlen(s);
#endif
}
}
| [
"[email protected]"
] | |
694395927e2e41b86b3838ae7f6cc3f76c609c1b | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/f5/73256c91b017fe/main.cpp | ecd99e48ff39a7d1541fd99dcc1f36c25da6d972 | [] | 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 | 726 | cpp | #include <string>
#include
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<iterator>
#include <iostream>
#include <algorithm>
#include <array>
int main()
{
// construction uses aggregate initialization
std::array<int, 3> a1{ {1, 2, 3} }; // double-braces required
std::array<int, 3> a2 = {1, 2, 3}; // except after =
std::array<std::string, 2> a3 = { std::string("a"), "b" };
// container operations are supported
std::sort(a1.begin(), a1.end());
std::reverse_copy(a2.begin(), a2.end(),
std::ostream_iterator<int>(std::cout, " "));
std::cout << '\n';
// ranged for loop is supported
for(const auto& s: a3)
std::cout << s << ' ';
} | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
a5f7b1e66575e6fdacb4295faa821bfdea5eca43 | a0423109d0dd871a0e5ae7be64c57afd062c3375 | /Aplicacion Movil/generated/bundles/login-transition/build/Android/Preview/app/src/main/include/Fuse.Animations.Skew.h | b6436d48cce0f01f190684aff37c782a0aa7651f | [
"Apache-2.0"
] | permissive | marferfer/SpinOff-LoL | 1c8a823302dac86133aa579d26ff90698bfc1ad6 | a9dba8ac9dd476ec1ef94712d9a8e76d3b45aca8 | refs/heads/master | 2020-03-29T20:09:20.322768 | 2018-10-09T10:19:33 | 2018-10-09T10:19:33 | 150,298,258 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,690 | h | // This file was generated based on C:/Users/JuanJose/AppData/Local/Fusetools/Packages/Fuse.Animations/1.9.0/TransformAnimator.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Animations.Trans-997c8373.h>
#include <Fuse.Shear.h>
namespace g{namespace Fuse{namespace Animations{struct Skew;}}}
namespace g{namespace Fuse{struct Visual;}}
namespace g{namespace Uno{struct Float2;}}
namespace g{namespace Uno{struct Float4;}}
namespace g{
namespace Fuse{
namespace Animations{
// public sealed class Skew :376
// {
::g::Fuse::Animations::TransformAnimator_type* Skew_typeof();
void Skew__ctor_4_fn(Skew* __this);
void Skew__get_DegreesX_fn(Skew* __this, float* __retval);
void Skew__set_DegreesX_fn(Skew* __this, float* value);
void Skew__get_DegreesXY_fn(Skew* __this, ::g::Uno::Float2* __retval);
void Skew__set_DegreesXY_fn(Skew* __this, ::g::Uno::Float2* value);
void Skew__get_DegreesY_fn(Skew* __this, float* __retval);
void Skew__set_DegreesY_fn(Skew* __this, float* value);
void Skew__New2_fn(Skew** __retval);
void Skew__Update_fn(Skew* __this, ::g::Fuse::Visual* elm, ::g::Fuse::Shear* t, ::g::Uno::Float4* value);
void Skew__get_XY_fn(Skew* __this, ::g::Uno::Float2* __retval);
void Skew__set_XY_fn(Skew* __this, ::g::Uno::Float2* value);
struct Skew : ::g::Fuse::Animations::TransformAnimator
{
void ctor_4();
float DegreesX();
void DegreesX(float value);
::g::Uno::Float2 DegreesXY();
void DegreesXY(::g::Uno::Float2 value);
float DegreesY();
void DegreesY(float value);
::g::Uno::Float2 XY();
void XY(::g::Uno::Float2 value);
static Skew* New2();
};
// }
}}} // ::g::Fuse::Animations
| [
"[email protected]"
] | |
e7e96632986ac67cb130d735f62cb2d0c94f24f9 | 45b8a6676a2950ae6c4e0e41366a3887cfb4708f | /010_SDI/010_SDI/010_SDI.h | 01579931110ba7341e218bf61b54625374c17675 | [] | no_license | SulfredLee/learn_mfc_21 | ba2ac10718521bfc1de0409895f145afaced38ec | 0ed38121701df9d0b5b8e65262962852027737bb | refs/heads/master | 2021-01-20T19:27:09.001507 | 2016-07-22T22:55:19 | 2016-07-22T22:55:19 | 63,988,313 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | h |
// 010_SDI.h : main header file for the 010_SDI application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CMy010_SDIApp:
// See 010_SDI.cpp for the implementation of this class
//
class CMy010_SDIApp : public CWinAppEx
{
public:
CMy010_SDIApp();
// Overrides
public:
virtual BOOL InitInstance();
// Implementation
UINT m_nAppLook;
BOOL m_bHiColorIcons;
virtual void PreLoadState();
virtual void LoadCustomState();
virtual void SaveCustomState();
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CMy010_SDIApp theApp;
| [
"[email protected]"
] | |
c12dcfc782fdf430e7677bb18eeac916ffeaa679 | 32b43958f5d3df610be353d9c01464e541833676 | /SampleLib12/include/sl12/command_list.h | 8d622440af482974c204ae7f901b4d28dc729503 | [
"MIT"
] | permissive | bingbin83/D3D12Samples | d3dcc4b161ff0722fc9f0e3a174e9643f21d3100 | 4624fd64b57c12fee1085ecfba1f770f802a236c | refs/heads/master | 2023-06-22T11:22:48.731107 | 2021-07-23T01:51:21 | 2021-07-23T01:51:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,357 | h | #pragma once
#include <sl12/util.h>
#include <vector>
#define LatestCommandList ID3D12GraphicsCommandList6
namespace sl12
{
class Device;
class CommandQueue;
class Texture;
class Buffer;
class DescriptorStackList;
class SamplerDescriptorCache;
class RootSignature;
class DescriptorSet;
class RaytracingDescriptorManager;
class CommandList
{
public:
CommandList()
{}
~CommandList()
{
Destroy();
}
bool Initialize(Device* pDev, CommandQueue* pQueue, bool forDxr = false);
void Destroy();
void Reset();
void Close();
void Execute();
// こちらのリソース遷移バリアは基本的に使わないで!
void TransitionBarrier(Texture* p, D3D12_RESOURCE_STATES nextState);
void TransitionBarrier(Buffer* p, D3D12_RESOURCE_STATES nextState);
// リソースの状態遷移バリア
void TransitionBarrier(Texture* p, D3D12_RESOURCE_STATES prevState, D3D12_RESOURCE_STATES nextState);
void TransitionBarrier(Texture* p, UINT subresource, D3D12_RESOURCE_STATES prevState, D3D12_RESOURCE_STATES nextState);
void TransitionBarrier(Buffer* p, D3D12_RESOURCE_STATES prevState, D3D12_RESOURCE_STATES nextState);
// UAVの処理完了バリア
void UAVBarrier(Texture* p);
void UAVBarrier(Buffer* p);
void SetDescriptorHeapDirty()
{
changeHeap_ = true;
}
// RootSignatureとDescriptorをコマンドリストに積み込む
void SetGraphicsRootSignatureAndDescriptorSet(RootSignature* pRS, DescriptorSet* pDSet, const std::vector<D3D12_CPU_DESCRIPTOR_HANDLE>** ppBindlessArrays = nullptr);
void SetMeshRootSignatureAndDescriptorSet(RootSignature* pRS, DescriptorSet* pDSet, const std::vector<D3D12_CPU_DESCRIPTOR_HANDLE>** ppBindlessArrays = nullptr);
void SetComputeRootSignatureAndDescriptorSet(RootSignature* pRS, DescriptorSet* pDSet, const std::vector<D3D12_CPU_DESCRIPTOR_HANDLE>** ppBindlessArrays = nullptr);
// Raytracing用のGlobal RootSignatureとDescriptorをコマンドに積み込む
void SetRaytracingGlobalRootSignatureAndDescriptorSet(
RootSignature* pRS,
DescriptorSet* pDSet,
RaytracingDescriptorManager* pRtDescMan,
D3D12_GPU_VIRTUAL_ADDRESS* asAddress,
u32 asAddressCount);
// getter
CommandQueue* GetParentQueue() { return pParentQueue_; }
DescriptorStackList* GetViewDescriptorStack() { return pViewDescStack_; }
SamplerDescriptorCache* GetSamplerDescriptorCache() { return pSamplerDescCache_; }
ID3D12CommandAllocator* GetCommandAllocator() { return pCmdAllocator_; }
LatestCommandList* GetLatestCommandList() { return pLatestCmdList_; }
ID3D12GraphicsCommandList* GetCommandList() { return pCmdList_; }
LatestCommandList* GetDxrCommandList() { return pLatestCmdList_; }
//ID3D12GraphicsCommandList4* GetDxrCommandList() { return pDxrCmdList_; }
private:
Device* pParentDevice_{ nullptr };
CommandQueue* pParentQueue_{ nullptr };
DescriptorStackList* pViewDescStack_{ nullptr };
SamplerDescriptorCache* pSamplerDescCache_{ nullptr };
ID3D12CommandAllocator* pCmdAllocator_{ nullptr };
ID3D12GraphicsCommandList* pCmdList_{ nullptr };
LatestCommandList* pLatestCmdList_{ nullptr };
ID3D12DescriptorHeap* pCurrentSamplerHeap_{ nullptr };
ID3D12DescriptorHeap* pPrevSamplerHeap_{ nullptr };
bool changeHeap_{ true };
}; // class CommandList
} // namespace sl12
// EOF
| [
"[email protected]"
] | |
a8260203d36a12c1faf8dd9e0e2205edbe4cfa43 | 25a107f9cab4ddedf457c355299f0078697506ad | /AppData/Local/Autodesk/webdeploy/production/1f559bb8ae333199306b5c4f1fe680c6eb7ab9e0/CPP/include/Fusion/Components/PinSlotJointMotion.h | 00f1e4350cb10e182a94eea1b6bc34f18fef9b08 | [] | no_license | Park-Minjoo/HCI_TeamProject_GroupNo2 | 1b6cc7887173f717ba76068472174cc3a9109124 | 5ace0f0a9d81b39d6782300a14847b223d7ed90a | refs/heads/master | 2023-01-27T11:59:36.791453 | 2023-01-13T04:26:18 | 2023-01-13T04:26:18 | 273,715,196 | 1 | 0 | null | 2023-01-13T04:26:26 | 2020-06-20T13:39:33 | null | UTF-8 | C++ | false | false | 8,567 | h | //////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this software.
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
#include "../FusionTypeDefs.h"
#include "JointMotion.h"
// THIS CLASS WILL BE VISIBLE TO AN API CLIENT.
// THIS HEADER FILE WILL BE GENERATED FROM NIDL.
#include "../../Core/OSMacros.h"
#ifdef FUSIONXINTERFACE_EXPORTS
# ifdef __COMPILING_ADSK_FUSION_PINSLOTJOINTMOTION_CPP__
# define ADSK_FUSION_PINSLOTJOINTMOTION_API XI_EXPORT
# else
# define ADSK_FUSION_PINSLOTJOINTMOTION_API
# endif
#else
# define ADSK_FUSION_PINSLOTJOINTMOTION_API XI_IMPORT
#endif
namespace adsk { namespace fusion {
class JointLimits;
}}
namespace adsk { namespace core {
class Vector3D;
}}
namespace adsk { namespace fusion {
/// Represents the set of information specific to a pin slot joint.
class PinSlotJointMotion : public JointMotion {
public:
/// Gets and sets the direction of the axis of rotation. This can be set to
/// XAxisJointDirection, YAxisJointDirection, or ZAxisJointDirection. It can
/// return those three directions and CustomJointDirection. If this returns
/// CustomJointDirection then the customRotationAxisEntity will return an entity
/// that defines the axis. If there is a custom rotation axis defined and this
/// property is set to one of the three standard axes, the custom rotation will
/// be removed and customRotationAxisEntity will return null.
JointDirections rotationAxis() const;
bool rotationAxis(JointDirections value);
/// Returns the direction of the rotation axis. This property will return null in the case
/// where the PinSlotJointMotion object was obtained from a JointInput object.
core::Ptr<core::Vector3D> rotationAxisVector() const;
/// This property can be set using various types of entities that can infer an
/// axis. For example, a linear edge, sketch line, planar face, and cylindrical face.
/// This property is only valid in the case where the rotationAxis property returns
/// CustomJointDirection. Setting this property will automatically set
/// the rotationAxis property to CustomJointDirection.
core::Ptr<core::Base> customRotationAxisEntity() const;
bool customRotationAxisEntity(const core::Ptr<core::Base>& value);
/// Gets and sets the rotation value. This is in radians. Setting this value is
/// the equivalent of using the Drive Joints command.
double rotationValue() const;
bool rotationValue(double value);
/// Returns a JointLimits object that defines the rotation limits for this joint.
/// Use the functionality of the returned JointLimits object to get, set, and modify
/// the joint limits.
core::Ptr<JointLimits> rotationLimits() const;
/// Gets and sets the direction of the slide motion in the slot. This can be set to
/// XAxisJointDirection, YAxisJointDirection, or ZAxisJointDirection. It can
/// return those three directions and CustomJointDirection. If this returns
/// CustomJointDirection then the customSlideDirectionEntity will return an entity
/// that defines the direction. If there is a custom direction defined and this
/// property is set to one of the three standard axes, the custom direction will
/// be removed and customSlideDirectionEntity will return null.
JointDirections slideDirection() const;
bool slideDirection(JointDirections value);
/// Returns the direction of the primary slide direction. This property will return null in the case
/// where the PinSlotJointMotion object was obtained from a JointInput object.
core::Ptr<core::Vector3D> slideDirectionVector() const;
/// This property can be set using various types of entities that can infer a
/// direction. For example, a linear edge, sketch line, planar face, and cylindrical face.
/// This property is only valid in the case where the slideDirection property returns
/// CustomJointDirection. Setting this property will automatically set
/// the slideDirection property to CustomJointDirection.
core::Ptr<core::Base> customSlideDirectionEntity() const;
bool customSlideDirectionEntity(const core::Ptr<core::Base>& value);
/// Gets and sets the slide value. This is in centimeters. Setting this value is
/// the equivalent of using the Drive Joints command.
double slideValue() const;
bool slideValue(double value);
/// Returns a JointLimits object that defines the slide limits for this joint.
/// Use the functionality of the returned JointLimits object to get, set, and modify
/// the joint limits.
core::Ptr<JointLimits> slideLimits() const;
ADSK_FUSION_PINSLOTJOINTMOTION_API static const char* classType();
ADSK_FUSION_PINSLOTJOINTMOTION_API const char* objectType() const override;
ADSK_FUSION_PINSLOTJOINTMOTION_API void* queryInterface(const char* id) const override;
ADSK_FUSION_PINSLOTJOINTMOTION_API static const char* interfaceId() { return classType(); }
private:
// Raw interface
virtual JointDirections rotationAxis_raw() const = 0;
virtual bool rotationAxis_raw(JointDirections value) = 0;
virtual core::Vector3D* rotationAxisVector_raw() const = 0;
virtual core::Base* customRotationAxisEntity_raw() const = 0;
virtual bool customRotationAxisEntity_raw(core::Base* value) = 0;
virtual double rotationValue_raw() const = 0;
virtual bool rotationValue_raw(double value) = 0;
virtual JointLimits* rotationLimits_raw() const = 0;
virtual JointDirections slideDirection_raw() const = 0;
virtual bool slideDirection_raw(JointDirections value) = 0;
virtual core::Vector3D* slideDirectionVector_raw() const = 0;
virtual core::Base* customSlideDirectionEntity_raw() const = 0;
virtual bool customSlideDirectionEntity_raw(core::Base* value) = 0;
virtual double slideValue_raw() const = 0;
virtual bool slideValue_raw(double value) = 0;
virtual JointLimits* slideLimits_raw() const = 0;
};
// Inline wrappers
inline JointDirections PinSlotJointMotion::rotationAxis() const
{
JointDirections res = rotationAxis_raw();
return res;
}
inline bool PinSlotJointMotion::rotationAxis(JointDirections value)
{
return rotationAxis_raw(value);
}
inline core::Ptr<core::Vector3D> PinSlotJointMotion::rotationAxisVector() const
{
core::Ptr<core::Vector3D> res = rotationAxisVector_raw();
return res;
}
inline core::Ptr<core::Base> PinSlotJointMotion::customRotationAxisEntity() const
{
core::Ptr<core::Base> res = customRotationAxisEntity_raw();
return res;
}
inline bool PinSlotJointMotion::customRotationAxisEntity(const core::Ptr<core::Base>& value)
{
return customRotationAxisEntity_raw(value.get());
}
inline double PinSlotJointMotion::rotationValue() const
{
double res = rotationValue_raw();
return res;
}
inline bool PinSlotJointMotion::rotationValue(double value)
{
return rotationValue_raw(value);
}
inline core::Ptr<JointLimits> PinSlotJointMotion::rotationLimits() const
{
core::Ptr<JointLimits> res = rotationLimits_raw();
return res;
}
inline JointDirections PinSlotJointMotion::slideDirection() const
{
JointDirections res = slideDirection_raw();
return res;
}
inline bool PinSlotJointMotion::slideDirection(JointDirections value)
{
return slideDirection_raw(value);
}
inline core::Ptr<core::Vector3D> PinSlotJointMotion::slideDirectionVector() const
{
core::Ptr<core::Vector3D> res = slideDirectionVector_raw();
return res;
}
inline core::Ptr<core::Base> PinSlotJointMotion::customSlideDirectionEntity() const
{
core::Ptr<core::Base> res = customSlideDirectionEntity_raw();
return res;
}
inline bool PinSlotJointMotion::customSlideDirectionEntity(const core::Ptr<core::Base>& value)
{
return customSlideDirectionEntity_raw(value.get());
}
inline double PinSlotJointMotion::slideValue() const
{
double res = slideValue_raw();
return res;
}
inline bool PinSlotJointMotion::slideValue(double value)
{
return slideValue_raw(value);
}
inline core::Ptr<JointLimits> PinSlotJointMotion::slideLimits() const
{
core::Ptr<JointLimits> res = slideLimits_raw();
return res;
}
}// namespace fusion
}// namespace adsk
#undef ADSK_FUSION_PINSLOTJOINTMOTION_API | [
"[email protected]"
] | |
18c7686fe525752b0b54922a9fe8ae2be4061e25 | 4833585b37b29f3f6f7b8917b8b77ab181623ee0 | /05/EchoSvrThread/EchoSvrThread.cpp | 8c3d52a132c123a0b9a2298a6c169540c1106fee | [] | no_license | DragonSky2357/IT-EXPERT-WINDOWS-SYSTEM | 11bdc00609b3b32dd97b86c096a067e3f383e315 | c4bc4fc99766fdac18bb1b7327ca707f5e1abd45 | refs/heads/master | 2023-09-03T20:28:26.611101 | 2021-10-26T16:39:02 | 2021-10-26T16:39:02 | 391,601,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,120 | cpp | #include "stdafx.h"
#include "Winsock2.h"
#include "iostream"
using namespace std;
#pragma comment(lib, "Ws2_32.lib")
SOCKET GetListenSocket(short shPortNo, int nBacklog = SOMAXCONN) {
////////////////////////////////////////////////////////////////////////////////////////////////
//SOCKET hsoListen = WSASocket
//(
// AF_INET, SOCK_STREAM, 0,
// NULL, 0,
// WSA_FLAG_OVERLAPPED
//);
////////////////////////////////////////////////////////////////////////////////////////////////
SOCKET hsoListen = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (hsoListen == INVALID_SOCKET)
{
cout << "socket failed, code : " << WSAGetLastError() << endl;
return INVALID_SOCKET;
}
SOCKADDR_IN sa;
memset(&sa, 0, sizeof(SOCKADDR_IN));
sa.sin_family = AF_INET;
sa.sin_port = htons(shPortNo);
sa.sin_addr.s_addr = htonl(INADDR_ANY);
LONG lSockRet = bind(hsoListen, (PSOCKADDR)&sa, sizeof(SOCKADDR_IN));
if (lSockRet == SOCKET_ERROR)
{
cout << "bind failed, code : " << WSAGetLastError() << endl;
closesocket(hsoListen);
return INVALID_SOCKET;
}
lSockRet = listen(hsoListen, nBacklog);
if (lSockRet == SOCKET_ERROR)
{
cout << "listen failed, code : " << WSAGetLastError() << endl;
closesocket(hsoListen);
return INVALID_SOCKET;
}
return hsoListen;
}
SOCKET g_sockMain = INVALID_SOCKET;
BOOL CtrlHandler(DWORD fdwCtrlType) {
if (g_sockMain != INVALID_SOCKET)
closesocket(g_sockMain);
return TRUE;
}
DWORD WINAPI ChildSockProc(PVOID pParam) {
SOCKET sock = (SOCKET)pParam;
char szBuff[512];
while (true)
{
int lSockRet = recv(sock, szBuff, sizeof(szBuff), 0);
if (lSockRet == SOCKET_ERROR)
{
cout << "recv failed : " << WSAGetLastError() << endl;
break;
}
if (lSockRet == 0)
{
cout << " ==> Client " << sock << " disconnected..." << endl;
break;
}
szBuff[lSockRet] = 0;
cout << " *** Client(" << sock << ") sent : " << szBuff << endl;
Sleep(10);
lSockRet = send(sock, szBuff, lSockRet, 0);
if (lSockRet == SOCKET_ERROR)
{
cout << "send failed : " << WSAGetLastError() << endl;
break;
}
}
closesocket(sock);
}
#define MAX_CLI_CNT 10
void _tmain() {
WSADATA wsd;
int nErrCode = WSAStartup(MAKEWORD(2, 2), &wsd);
if (nErrCode) {
cout << "WSAStartup failed with error : " << nErrCode << endl;
return;
}
if (!SetConsoleCtrlHandler((PHANDLER_ROUTINE)CtrlHandler, TRUE)) {
cout << "SetConsoleCtrlHandler failed, code : " << GetLastError() << endl;
return;
}
SOCKET hsoListen = GetListenSocket(9001);
if (hsoListen == INVALID_SOCKET) {
WSACleanup();
return;
}
g_sockMain = hsoListen;
cout << " ==> Waiting for client's connection......" << endl;
while (true) {
SOCKET sock = accept(hsoListen, NULL, NULL);
if (sock == INVALID_SOCKET) {
cout << "accept failed, code : " << WSAGetLastError() << endl;
break;
}
cout << " ==> New client " << sock << " connected..." << endl;
DWORD dwThrId = 0;
HANDLE hThread = CreateThread(NULL, 0, ChildSockProc, (PVOID)sock, 0, &dwThrId);
}
closesocket(hsoListen);
cout << "==== Server terminates... ==========================" << endl;
WSACleanup();
} | [
"[email protected]"
] | |
40725c91d50149af7e59bb462087136a3e731af4 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir12766/dir12767/dir20982/file20983.cpp | 5eb96367e03e89742b2efeafc68ced2a5a9ff765 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file20983
#error "macro file20983 must be defined"
#endif
static const char* file20983String = "file20983"; | [
"[email protected]"
] | |
1b5945f183638fee68c3be8056d595b6ec114d6e | f3e47531328c0778345eb59db47544b4741d10c9 | /other/f/02_phone/06/intersectionOfTwoArrays.cc | e933cba7fe32947d9bbf86e84e2fc12815c54e73 | [] | no_license | aishwarya4444/leetcode.com | fc6b5f41858057deff48c8f9e3cabeb59f67f894 | 9377d7cc0e28dc8824c9fb500a0637f35aa57801 | refs/heads/master | 2021-01-01T18:47:58.323951 | 2020-06-15T05:23:50 | 2020-06-15T05:23:50 | 7,230,655 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,231 | cc | /*
https://leetcode.com/problems/intersection-of-two-arrays/
Given two arrays, write a function to compute their intersection.
Example 1:
Input: nums1 = [1,2,2,1], nums2 = [2,2]
Output: [2]
Example 2:
Input: nums1 = [4,9,5], nums2 = [9,4,9,8,4]
Output: [9,4]
Note:
Each element in the result must be unique.
The result can be in any order.
*/
/*
comment : https://leetcode.com/problems/intersection-of-two-arrays/solution/
This is a Facebook interview question.
They ask for the intersection, which has a trivial solution using a hash or a set.
Then they ask you to solve it under these constraints:
O(n) time and O(1) space (the resulting array of intersections is not taken into consideration).
You are told the lists are sorted.
Cases to take into consideration include:
duplicates, negative values, single value lists, 0's, and empty list arguments.
Other considerations might include
sparse arrays.
https://leetcode.com/problems/intersection-of-two-arrays-ii/
https://leetcode.com/problems/intersection-of-three-sorted-arrays/
*/
// Solution 1
class Solution {
public:
vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
int n1=0, n2=0, N1=nums1.size(), N2=nums2.size();
vector<int> res;
sort(nums1.begin(), nums1.end());
sort(nums2.begin(), nums2.end());
while(n1<N1 && n2<N2) {
while(n1<N1-1 && nums1[n1]==nums1[n1+1]) {
n1++;
}
while(n2<N2-1 && nums2[n2]==nums2[n2+1]) {
n2++;
}
if(nums1[n1]==nums2[n2]) {
res.push_back(nums1[n1]);
n1++;
n2++;
} else if(nums1[n1]<nums2[n2]) {
n1++;
} else {
n2++;
}
}
return res;
}
};
// Solution 2
class Solution {
public:
vector<int> intersection(vector<int>& nums1, vector<int>& nums2) {
unordered_set<int> s1, s2;
for(auto num: nums1) {
s1.insert(num);
}
for(auto num: nums2) {
if(s1.count(num) > 0) {
s2.insert(num);
}
}
return vector<int>(s2.begin(), s2.end());
}
};
| [
"[email protected]"
] | |
0aedbff8f601fc37ed38089bf7a17925572bd3dd | 2fc28f12adceba4c1c094dd4c66f27ee85446b9e | /src/energy_bar.cpp | 95b9f6a58b5bce9ab1bdbf286b29ccef383e66ed | [] | no_license | fermcg/ld26 | 0bddd5350c430ded60476a48f117e7a11d3c15fa | f5cf6b6b953cfa81bcd3377ebcfaf703f1fa0919 | refs/heads/master | 2020-06-04T21:38:59.239513 | 2013-05-26T15:51:26 | 2013-05-26T15:51:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 925 | cpp | #include "energy_bar.h"
#include "singletons.h"
const int EnergyBar::MaxEnergy = 5000;
EnergyBar::EnergyBar() : BaseSystem("EnergyBar") {
maxEnergy = EnergyBar::MaxEnergy;
energy = maxEnergy;
}
EnergyBar::~EnergyBar() {
}
void EnergyBar::Init() {
this->BaseSystem::Init();
greenBar = Singleton::spriteMap->Get("ENERGY+G");
redBar = Singleton::spriteMap->Get("ENERGY+R");
rect.left = Singleton::screen->window->getSize().x / 2 - greenBar->rect.width / 2;
rect.top = 10;
rect.width = 80;
rect.height = 4;
}
void EnergyBar::Terminate() {
this->BaseSystem::Terminate();
}
void EnergyBar::Render() {
redBar->RenderCopy(&rect);
sf::IntRect greenRect = rect;
greenRect.width = (int)((energy * (int)rect.width) / maxEnergy);
greenBar->RenderCopy(&greenRect);
}
void EnergyBar::SetEnergy(const int energy) {
if(energy > maxEnergy) {
this->energy = maxEnergy;
} else {
this->energy = energy;
}
}
| [
"[email protected]"
] | |
f620432b1cc1109e7f06d149af460f97f8a5a51c | af96ea49a81e276db19ed150b0542862d5334791 | /43A-Football/main.cpp | 1f78d9b25d2a9637e07425b81ad643296384aab6 | [] | no_license | Rudi-proj/Coding_Challenges | d64f7f2b4c480e8859663b779cd02953708374e8 | 1270f635bb3cb7c9c74c761dfb3b88e252c5ced9 | refs/heads/main | 2023-03-07T04:21:06.040158 | 2021-02-20T09:47:01 | 2021-02-20T09:47:01 | 339,202,716 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 714 | cpp | #include <bits/stdc++.h>
int main()
{
int numberOfLines = 0;
std::cin >> numberOfLines;
std::vector<std::string> goals;
std::string teamName_1;
std::string teamName_2;
int score_1 = 0;
int score_2 = 0;
for (int i = 0; i < numberOfLines; i++)
{
std::cin >> teamName_1;
goals.push_back(teamName_1);
}
teamName_1 = goals[0];
while (numberOfLines--)
{
if (goals[numberOfLines] != teamName_1)
{
score_2++;
teamName_2 = goals[numberOfLines];
}
else
{
score_1++;
}
}
std::cout << ((score_1>score_2) ? teamName_1 : teamName_2) << std::endl;
return 0;
} | [
"[email protected]"
] | |
d9922e4a3772348f5e325d6c343e3acdebfe8f36 | 3f49537eb92cadb0dfc14eea72776d9f48b8afa6 | /src/ray_cast.cpp | df8ca1a411c95148d4a3b640c4034e3b3ae4cc57 | [
"MIT"
] | permissive | robotics-upo/light_scan_sim | 4505f4df12f0c872f489189075bfc3f4c9e93c72 | 4583c3fde5bb87545715849dcafd0c64ecb9752d | refs/heads/master | 2023-06-05T12:44:31.202288 | 2021-06-23T07:45:56 | 2021-06-23T07:45:56 | 357,912,615 | 0 | 0 | MIT | 2021-04-14T13:19:59 | 2021-04-14T13:19:58 | null | UTF-8 | C++ | false | false | 2,691 | cpp | /**
* light_scan_sim ray_cast.cpp
* @brief Cast simulated laser rays on an image.
*
* @copyright 2017 Joseph Duchesne
* @author Joseph Duchesne
*/
#include "light_scan_sim/ray_cast.h"
#include <algorithm>
/**
* @brief Return the first collision point (hit) and true, or false if no collision
*
* @param start The start point. Will be clipped to image.
* @param end The end point. Will be clipped to image.
* @param hit The collision point
*
* @return true if there was a collision or false
*/
bool RayCast::Trace(cv::Point2f &start, cv::Point2f &end, cv::Point2f &hit) {
cv::Point2i start_d = start; // Opencv casting rounds rather than truncating
cv::Point2i end_d = end;
// Ensure that the line is in the map
if (!cv::clipLine(map_.size(), start_d, end_d)) {
return false;
}
// Iterate from start to end
cv::LineIterator it(map_, start_d, end_d, 8); // 8 way connectivity, smoother than 4 way
for(int i = 0; i < it.count; i++, ++it) {
if (map_.at<uint8_t>(it.pos())>0) {
hit = it.pos();
return true;
}
}
return false;
}
/**
* @brief Create a simulated laser scan
*
* @param start The origin point. px
* @param yaw The origin angle of the scan
*
* @return a laser scan message
*/
sensor_msgs::LaserScan RayCast::Scan(cv::Point2f start, double yaw) {
sensor_msgs::LaserScan scan;
scan.angle_min = angle_min_;
scan.angle_max = angle_max_;
scan.range_min = ray_min_;
scan.range_max = ray_max_;
scan.angle_increment = angle_inc_;
std::normal_distribution<double> gaussian_dist(0.0, noise_std_dev_);
cv::Point2f hit;
double max_px = ray_max_/m_per_px_;
for (double a = angle_min_; a <= angle_max_; a+=angle_inc_) {
cv::Point2f end = cv::Point2f(start.x + max_px*cos(yaw+a),
start.y + max_px*sin(yaw+a));
if (Trace(start, end, hit)) {
double range = cv::norm(hit-start); // distance from start to hit
range *= m_per_px_; // convert back to m
// Check for collision with wall segments
double start_x_m = start.x*m_per_px_ + map_offset_.x;
double start_y_m = start.y*m_per_px_ + map_offset_.y;
if (wall_segments_) {
wall_segments_->Trace(start_x_m, start_y_m, yaw+a, range, ray_max_, range);
}
// ROS_INFO_STREAM("Outside: " << range);
// Add gaussian noise
if (range < ray_max_) {
range += gaussian_dist(random_generator_);
}
if (range < ray_min_) {
range = ray_max_ + 1.0;
}
scan.ranges.push_back(range);
} else {
scan.ranges.push_back(ray_max_+1.0); // Out of range, represented by value>max
}
}
return scan;
}
| [
"[email protected]"
] | |
0aa145aa2b44724f6ee41b03052e97e0d985cae1 | 33f10f127eb15300065fc652825fbac90d7ac69a | /cvsnt/tortoiseCVS/TortoiseCVS/wxw/include/wx/imagiff.h | 2b89807719ebe0773c5052e76f83a91a473f5cbc | [] | no_license | todace/G-CVSNT | aa4a7d075bb30303b373fda1041c486072d9c957 | d13506abb904c61e6d031d97a23fde1a14ba4ba0 | refs/heads/master | 2021-03-12T20:45:33.618315 | 2021-01-15T12:07:19 | 2021-01-15T12:19:06 | 4,526,593 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | h | /////////////////////////////////////////////////////////////////////////////
// Name: imagiff.h
// Purpose: wxImage handler for Amiga IFF images
// Author: Steffen Gutmann
// RCS-ID: $Id: imagiff.h,v 1.1 2012/03/04 01:07:25 aliot Exp $
// Copyright: (c) Steffen Gutmann, 2002
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_IMAGE_IFF_H_
#define _WX_IMAGE_IFF_H_
#include "wx/image.h"
//-----------------------------------------------------------------------------
// wxIFFHandler
//-----------------------------------------------------------------------------
#if wxUSE_IMAGE && wxUSE_IFF
class WXDLLEXPORT wxIFFHandler : public wxImageHandler
{
public:
wxIFFHandler()
{
m_name = wxT("IFF file");
m_extension = wxT("iff");
m_type = wxBITMAP_TYPE_IFF;
m_mime = wxT("image/x-iff");
}
#if wxUSE_STREAMS
virtual bool LoadFile(wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1);
virtual bool SaveFile(wxImage *image, wxOutputStream& stream, bool verbose=true);
virtual bool DoCanRead(wxInputStream& stream);
#endif
private:
DECLARE_DYNAMIC_CLASS(wxIFFHandler)
};
#endif // wxUSE_IMAGE && wxUSE_IFF
#endif // _WX_IMAGE_IFF_H_
| [
"[email protected]"
] | |
935366dbb020db1e03a4bff12d5f5c81ba3b5e7e | 16aea948f238d5be453f2bb7a489524db0ae2d59 | /AreaGameToolkit/AsdaGlobalWSAHookHandler.cpp | 221f739927a8a5b9751595950e9e8d1e29f18dbb | [] | no_license | SickSixtySix/inject-me | 683dc80c7f5d3e82a9acee62ed6a18f19dafd7ec | 3d8ea9be26e1a362deffd7270cd666dc832ef36a | refs/heads/master | 2020-04-23T23:19:09.433793 | 2019-03-16T16:28:25 | 2019-03-16T16:28:25 | 171,532,508 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,438 | cpp | // InjectMe
#include "AsdaGlobalEncryption.hpp"
#include "AsdaGlobalProxy.hpp"
#include "AsdaGlobalWSAHookHandler.hpp"
using namespace InjectMe::Network;
using namespace InjectMe::Hook::WSA;
// WinAPI
#include <Windows.h>
AsdaGlobalWSAHookHandler *AsdaGlobalWSAHookHandler::s_instance = nullptr;
AsdaGlobalWSAHookHandler::AsdaGlobalWSAHookHandler() {}
AsdaGlobalWSAHookHandler* AsdaGlobalWSAHookHandler::Instance()
{
if (s_instance == nullptr)
s_instance = new AsdaGlobalWSAHookHandler();
return s_instance;
}
void AsdaGlobalWSAHookHandler::HandleWSAConnect(WSAConnectData *data)
{
m_event = CreateEvent(NULL, FALSE, FALSE, NULL);
data->SourcePort = 4010;
auto proxy = new AsdaGlobalProxy(
sf::IpAddress(data->b1, data->b2, data->b3, data->b4), data->DestinationPort, data->SourcePort, "samprplover1", "jv^9m^bk", 0x0000BE50, 0x000D, 256, 256, this, AsdaGlobalEncryption::Instance()
);
//auto proxy = new AsdaGlobalProxy(
// sf::IpAddress(data->b1, data->b2, data->b3, data->b4), data->DestinationPort, data->SourcePort, "Samuel267", "due?_r6q", 0x0000BEF9, 0x000A, 256, 256, this, AsdaGlobalEncryption::Instance()
//);
//char msg[256];
//sprintf_s(msg, "%s:%u", sf::IpAddress(data->b1, data->b2, data->b3, data->b4).toString().c_str(), data->DestinationPort);
//MessageBoxA(NULL, msg, NULL, MB_OK);
WaitForSingleObject(m_event, INFINITE);
}
void AsdaGlobalWSAHookHandler::HandleReady()
{
SetEvent(m_event);
} | [
"[email protected]"
] | |
72c58581d0b838bc859bb04d04d1c1435e3facf6 | 455ecd26f1439cd4a44856c743b01d711e3805b6 | /java/include/android.test.SyncBaseInstrumentation.hpp | 456f0277db4b5e03c7d39a644c54a78a662cabd9 | [] | no_license | lbguilherme/duvidovc-app | 00662bf024f82a842c808673109b30fe2b70e727 | f7c86ea812d2ae8dd892918b65ea429e9906531c | refs/heads/master | 2021-03-24T09:17:17.834080 | 2015-09-08T02:32:44 | 2015-09-08T02:32:44 | 33,072,192 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,872 | hpp | #pragma once
#include "../src/java-core.hpp"
#include <jni.h>
#include <cstdint>
#include <memory>
#include <vector>
#include "java.lang.Object.hpp"
#include "android.test.InstrumentationTestCase.hpp"
namespace android {
namespace test {
class SyncBaseInstrumentation : public virtual ::java::lang::Object,
public virtual ::android::test::InstrumentationTestCase {
public:
static jclass _class;
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreorder"
explicit SyncBaseInstrumentation(jobject _obj) : ::java::lang::Object(_obj), ::android::test::InstrumentationTestCase(_obj), ::junit::framework::Assert(_obj), ::junit::framework::Test(_obj), ::junit::framework::TestCase(_obj) {}
#pragma GCC diagnostic pop
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreorder"
SyncBaseInstrumentation(const ::android::test::SyncBaseInstrumentation& x) : ::java::lang::Object((jobject)0), ::android::test::InstrumentationTestCase((jobject)0), ::junit::framework::Assert((jobject)0), ::junit::framework::Test((jobject)0), ::junit::framework::TestCase((jobject)0) {obj = x.obj;}
SyncBaseInstrumentation(::android::test::SyncBaseInstrumentation&& x) : ::java::lang::Object((jobject)0), ::android::test::InstrumentationTestCase((jobject)0), ::junit::framework::Assert((jobject)0), ::junit::framework::Test((jobject)0), ::junit::framework::TestCase((jobject)0) {obj = x.obj; x.obj = JavaObjectHolder((jobject)0);}
#pragma GCC diagnostic pop
::android::test::SyncBaseInstrumentation& operator=(const ::android::test::SyncBaseInstrumentation& x) {obj = x.obj; return *this;}
::android::test::SyncBaseInstrumentation& operator=(::android::test::SyncBaseInstrumentation&& x) {obj = std::move(x.obj); return *this;}
SyncBaseInstrumentation();
};
}
}
| [
"[email protected]"
] | |
f17943dda8f6e32cb0293455994daa9a927ea0fc | e2f226e2c13be0a7aeb982b1c45e2a9cd3af3cd7 | /learn/Trees/Reconstruction.cpp | ca0b6e6ceba9e9d97677a12669d92a2f3285351a | [] | no_license | gosour/competitive | 7732b47093c4d72ca986c2963cea1141a6e1a8c6 | 3897365c4109766c8d23ac71a365dd64f090866b | refs/heads/master | 2021-01-01T16:44:11.410885 | 2017-07-27T04:51:19 | 2017-07-27T04:51:19 | 97,905,399 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,373 | cpp | #include<cstdio>
#include<iostream>
#include<cmath>
#include<string>
#include<cstring>
#include<vector>
#include<bitset>
#include<list>
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<algorithm>
#include<functional>
#include<utility>
#include<iterator>
using namespace std;
#define PI acos(-1.0)
#define Pi 3.141592653589793
#define SQR(n) ( (n) * (n) )
const int INF = 1<<29;
#define DEBUG(x) cout << '>' << #x << ':' << x << endl;
#define REP(i,n) for(int i=0;i<(n);i++)
#define REP2(i,a,b) for(int i=(a);i<=(b);i++)
#define REPD(i,a,b) for(int i=(a);i>=(b);i--)
inline bool EQ(double a, double b) { return fabs(a-b) < 1e-9; }
#define pb push_back
typedef vector<int> vi;
struct node{
//char data;
int data;
struct node * left;
struct node * right;
};
struct node * createNode(char d){
node * n = (node *)malloc(sizeof(node));
n->data = d;
n->left = n->right = NULL;
}
int currPreorder = 0;
string inorder, preorder;
struct node * buildTree(string instring){
DEBUG(preorder[currPreorder]);
DEBUG(instring);
int len = instring.length();
if(len == 0 || currPreorder > preorder.length()) return NULL;
int idx = instring.find(preorder[currPreorder++]);
DEBUG(idx);
struct node * tree = createNode(instring[idx]);
DEBUG(instring.substr(0,idx));
DEBUG(instring.substr(idx+1));
tree->left = buildTree(instring.substr(0,idx));
tree->right = buildTree(instring.substr(idx+1));
return tree;
}
void printLevelOrder(struct node * T){
queue<node *> Q;
int level = 1;
Q.push(T);
bool lr = true;
vector<int> levelNodes;
while(!Q.empty()){
if(level == 0) {
level = Q.size();
if(!lr)
reverse(levelNodes.begin(), levelNodes.end());
// lr = !lr;
REP(i,levelNodes.size()){
cout<<levelNodes[i]<<" ";
}
cout<<endl;
levelNodes.clear();
}
struct node * temp = Q.front();
DEBUG(temp->data);
levelNodes.pb(temp->data);
if(temp->left != NULL) Q.push(temp->left);
if(temp->right != NULL) Q.push(temp->right);
Q.pop();
level--;
}
//Last level will not get printed
if(levelNodes.size()){
if(!lr)
reverse(levelNodes.begin(), levelNodes.end());
lr = !lr;
REP(i,levelNodes.size()){
cout<<levelNodes[i]<<" ";
}
cout<<endl;
}
}
void printAllRootToLeaves(){
}
int isSumProperty(struct node *T){
if(T == NULL) return 0;
int ls = isSumProperty(T->left);
int rs = isSumProperty(T->right);
if(ls == rs && ls == 0) return T->data;
if(ls + rs == T->data && ls!=-1 && rs!=-1) return T->data;
else {
DEBUG(T->data);
DEBUG(ls);
DEBUG(rs);
return -1;
}
}
int main(){
inorder = "DBEAFC";
preorder = "ABDECF";
currPreorder = 0;
// struct node* tree = buildTree(inorder);
// struct node *tree = createNode('A');
// tree->left = createNode('B');
// tree->right = createNode('C');
// tree->right->left = createNode('D');
// tree->right->right = createNode('E');
struct node *root = createNode(11);
root->left = createNode(8);
root->right = createNode(2);
root->left->left = createNode(3);
root->left->right = createNode(5);
root->right->right = createNode(2);
if(isSumProperty(root) > 0)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
} | [
"[email protected]"
] | |
f15772ed99a391ce7e947d73dd47fc39fb6390b9 | 6f7fc3cc1ba3623e02ba0d84f383f73ab18e8e83 | /Algorithms/eratosthenesSieve/eratosthenesSieve.cpp | 526843ad398b2b5f028ca132cd4a58cc126409c1 | [] | no_license | VintageWander/Data-Structures | 006dd60403ca3e0d60762f699e8a3c32c1122cd7 | d4aa5ba117789a424ee2ae6d972de79d83d19b6d | refs/heads/master | 2023-05-20T08:18:57.105453 | 2021-06-10T18:17:20 | 2021-06-10T18:17:20 | 270,605,906 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,785 | cpp | #include <iostream>
#include <algorithm>
#include <cmath>
/*
* How to use:
*
* Input:
* First input the how many times the algorithm should run
* Based on the amount of time you input, input in the start and end numbers
*
* Output:
* Number of primes within the range
*
* For example:
*
* Input:
* 3
* 2 20 range from 2 to 20
* 20 100 range from 20 to 100
* 1 100 range from 1 100
*
* Output:
* 8 2 -> 20 has 8 primes
* 17 20 -> 100 has 17 primes
* 25 1 -> 100 has 25 primes
*
* */
int main() {
// taking test cases
unsigned int cases = 0;
std::cin >> cases;
unsigned int start[cases];
unsigned int end[cases];
for (int i = 0; i != cases; ++i){
std::cin >> start[i];
std::cin >> end[i];
}
// end of taking test cases
//find max
unsigned int max = *std::max_element(end, end + cases - 1);
//length = max + 1 because then the final index will be the exact number
unsigned int length = max + 1;
//create the array to sieve
bool array[length];
//each elements are true
for(int i = 0; i != length; ++i) array[i] = true;
//make these two false so the print area won't call out 0 and 1 as primes
array[0] = false;
array[1] = false;
//square root of max stored for further use
const int sqrtMax = std::sqrt(length);
//algorithm
for(int i = 2; i != sqrtMax; ++i){
if(!array[i]) continue;
for(int j = i * i; j < length; j += i){
if(array[j]) array[j] = false;
}
}
//print
unsigned int count = 0;
for(int i = 0; i != cases; ++i){
for(unsigned int j = start[i]; j != end[i]; ++j) {
if(array[j]) ++count;
}
std::cout << count << '\n'; count = 0;
}
}
| [
"[email protected]"
] | |
36a249127d6299a8d26bd4b552fc57b9a3c283cd | 191126328427ffb1d2cebcc5d3ccb670a7f4f8be | /games.cpp | 558b276673d97aa820a5317ab57e80646c862ccd | [] | no_license | drviruses/CP | 090ca7db998f7f113d85ab96a91a73fd9d5892ac | 69294c62218fda3453daf4b69251ab98bb24cccb | refs/heads/master | 2023-03-14T06:09:15.174975 | 2021-03-01T05:04:26 | 2021-03-01T05:04:26 | 305,608,273 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 542 | cpp | #include<bits/stdc++.h>
#define ll long long
using namespace std;
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
ll team;
cin>>team;
ll host[100]={0},guest[100]={0};
while (team--)
{
ll hm_cl,out_cl;
cin>>hm_cl>>out_cl;
host[hm_cl-1]+=1;
guest[out_cl-1]+=1;
/* code */
}
//sum
ll sum=0;
for(auto i=0;i<100;i++){
sum+=(host[i]*guest[i]);
}
cout<<sum;
return 0;
} | [
"[email protected]"
] | |
b31161d96b898e76b0ade3aa5a12e7abb9e4f85d | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5639104758808576_0/C++/JuniorHsu/main.cpp | b2d5d4c04e38863a27d231369295f95bf483bbd0 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,602 | cpp | #include<iostream>
#include<cstdio>
#include<fstream>
#include<vector>
#include<set>
#include<map>
#include<algorithm>
#include<sstream>
#include<string>
#include<iterator>
#include<functional>
#include<time.h>
#include<iomanip>
using namespace std;
typedef long long int ll;
typedef long double ld;
#define INF 100000000000000000LL
ll diff(ll a,ll b)
{
return a>b ? a-b : b-a;
}
/*#define COMB_NUM 10001L
ll comb[COMB_NUM][COMB_NUM];
//need init_comb();
void init_comb()
{
comb[0][0]=1;
ll i,j;
for(i=1;i<COMB_NUM;i++)
{
comb[i][0]=comb[i][i]=1;
for(j=1;j<i;j++)
comb[i][j]=comb[i-1][j]+comb[i-1][j-1];
}
}
*/
#define print(a) for(int i=0;i<a.size();i++) cout<<a[i]<<" "; cout<<endl;
#define print2n(a,n) for(int i=0;i<=n;i++) cout<<a[i]<<" "; cout<<endl;
void llFromString(const string &s,ll &a,ll &b)
{
string replacedString = s;
replace_if(replacedString.begin(),
replacedString.end(),
bind2nd(equal_to<char>(),'.'),
' ');
istringstream buffer(replacedString);
buffer>>a;
if(buffer.good())
{
buffer>>b;
}
else
{
b=0;
}
}
template<class T>
vector<T> split(const std::string &s) {
string replacedString = s;
replace_if(replacedString.begin(),
replacedString.end(),
bind2nd(equal_to<char>(),'.'),
' ');
vector<T> ret;
istringstream buffer(replacedString);
copy(istream_iterator<T>(buffer),
istream_iterator<T>(), back_inserter(ret));
return ret;
}// vector<ll> k = split<ll>(s);
int main()
{
fstream in,out;
//in.open("test.in.txt",ios::in); out.open("test.out.txt",ios::out);
in.open("A-small-attempt0.in",ios::in); out.open("A-small-0.out",ios::out);
// in.open("A-large.in",ios::in); out.open("A-large-0.out",ios::out);
istream& input = in;
ostream& output = out;
ll case_id,total_case,temp,ans, max, acc;
string s;
input>>total_case;
ll I,H,K,L,N;
for(case_id=1;case_id<=total_case;case_id++)
{
input>>max>>s;
ans = 0;
acc = 0;
for (I = 0;I <= max; I++) {
acc += s[I] - '0';
if (acc < I+1) {
ans += I+1-acc;
acc = I+1;
}
}
output<<"Case #"<<case_id<<": ";
output<<ans;
output<<endl;
}
//system("PAUSE");
return EXIT_SUCCESS;
}
| [
"[email protected]"
] | |
6fda3b89f7a7b471b656469393564d4bc0bbefee | fc9a51350f7fed83550e7933b87f291a8b9e200b | /0042接雨水.cpp | 7808980406452f21e4a376ae15d9e9c128af879c | [] | no_license | Snowstorm0/LeetCode | 556bbdb760843097a8df2a44fec3a72fc94d718d | c15129124d2a3db3dccbb53374cd92084d79f06c | refs/heads/master | 2022-12-19T02:05:03.203926 | 2020-09-18T14:05:30 | 2020-09-18T14:05:30 | 275,363,477 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,437 | cpp |
//42. 接雨水
//给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。
//上面是由数组[0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1] 表示的高度图,
//在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。 感谢 Marcos 贡献此图。
//示例 :
//输入: [0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1]
//输出 : 6
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <queue>
#include <iostream>
#include <stack>
#include <cstdlib>
#include <string>
#include <unordered_map>
#include <algorithm>
using namespace std;
int trap(vector<int>& height)
{
int len = height.size();
if (len <= 0)
return 0;
stack<int> sta;
int res = 0;
for (int i = 0; i < len; i++)
{
while (!sta.empty() && height[sta.top()] < height[i])
{
int tmp = height[sta.top()];
sta.pop();
if (sta.empty())
break;
int left = sta.top();
int right = i;
int w = right - left - 1;
int h = min(height[left], height[right]) - tmp;
res = res + w*h;
}
sta.push(i);
}
return res;
}
int main()
{
vector<int> vec = { 0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1 };
int res = trap(vec);
cout << res << endl;
system("pause");
return 0;
}
| [
"https://github.com/Snowstorm0/CS-Notes.git"
] | https://github.com/Snowstorm0/CS-Notes.git |
2c28d50c4dbe0a95eea52abfff3724c4704a3502 | 8d85bd979c08a6313c31d00fd3f10bbe836d691d | /wpilibcExamples/src/main/cpp/commands/pidsubsystem/ReplaceMePIDSubsystem.cpp | f446f8ebacacf3a9ad37c421d8ca5de3e1723b30 | [
"BSD-3-Clause"
] | permissive | Aaquib111/allwpilib | e7c1a9eb0693867287494da2c38125354b295476 | 59507b12dc6aec05167fb9c086c3a70c9e5ed632 | refs/heads/master | 2020-09-11T20:59:51.018124 | 2019-11-16T05:51:31 | 2019-11-16T05:51:31 | 222,188,562 | 2 | 0 | NOASSERTION | 2019-11-17T02:52:19 | 2019-11-17T02:52:19 | null | UTF-8 | C++ | false | false | 1,397 | cpp | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include "ReplaceMePIDSubsystem.h"
#include <frc/livewindow/LiveWindow.h>
#include <frc/smartdashboard/SmartDashboard.h>
ReplaceMePIDSubsystem::ReplaceMePIDSubsystem()
: PIDSubsystem("ReplaceMePIDSubsystem", 1.0, 0.0, 0.0) {
// Use these to get going:
// SetSetpoint() - Sets where the PID controller should move the system
// to
// Enable() - Enables the PID controller.
}
double ReplaceMePIDSubsystem::ReturnPIDInput() {
// Return your input value for the PID loop
// e.g. a sensor, like a potentiometer:
// yourPot->SetAverageVoltage() / kYourMaxVoltage;
return 0;
}
void ReplaceMePIDSubsystem::UsePIDOutput(double output) {
// Use output to drive your system, like a motor
// e.g. yourMotor->Set(output);
}
void ReplaceMePIDSubsystem::InitDefaultCommand() {
// Set the default command for a subsystem here.
// SetDefaultCommand(new MySpecialCommand());
}
| [
"[email protected]"
] | |
1a1a351e662d0490bb881e37310ea57078238cfc | 1bbe57f87367bbb6dd4fd6ce8724e8675bc3822a | /AlgoAPI-develop/AlgoAPI-develop/Algoapi_Win64_Code/main.cpp | 950013d800ba4aa2913784526e01a08222a852c5 | [] | no_license | u5461177/test_suit | de79121ef11a5dc2c18f1bb2f5ebe635078375a0 | 1be29d675172c81bfe2b787c9b22369061d2faa1 | refs/heads/master | 2023-01-07T06:45:14.833643 | 2020-11-19T02:17:44 | 2020-11-19T02:17:44 | 290,406,045 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 10,623 | cpp | //
// Created by xtgu.
//
#include "Algospi.h"
#include "json.hpp"
#include "Algodatatype.h"
#include "AlgospiSimple.h"
#include "libalgo.h"
#include <iostream>
#include <chrono>
#include <thread>
using namespace ALGO::API;
using json = nlohmann::json;
using namespace std;
void subscribe_task_report(json task, Algoapi &myapi) {
if (task["code"].get<int>() == 0) {
int task_id = task["task_id"].get<int>();
cout << task_id << endl;
myapi.subscribe_minute_report(task_id);
}
else {
cout << task << endl;
}
}
int addtasks(Algoapi &myapi) {
//订阅
myapi.subscribe_task_report();
myapi.subscribe_order_report();
myapi.subscribe_trade_report();
//取消订阅
//myapi.unsubscribe_task_report();
//myapi.unsubscribe_order_report();
//myapi.unsubscribe_trade_report();
//订阅结果返回,true为订阅完成
cout << myapi.issubcribedtask << endl;
cout << myapi.issubcribedtrade << endl;
cout << myapi.issubcribedorder << endl;
string res;
json param;
//等待订阅完成
while (!(myapi.issubcribedtask && myapi.issubcribedtrade && myapi.issubcribedorder)) {
this_thread::sleep_for(chrono::seconds(1));
}
res = myapi.start_twap("09:40:00", "19:50:00", "131810", SIDE::SELL, MARKET::SZ, "REPO", 100, 10, 122);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
/*res = myapi.start_vwap("09:40:00", "19:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 100000, 200, 123);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_is("09:40:00", "19:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 100000, 200, 124);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_iceberg("09:40:00", "19:50:00", "000002", SIDE::BUY, MARKET::SZ, "CASH", 100000, 100, 125);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_random("09:40:00", "19:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 100000, 100, 200, 126);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_pov("09:40:00", "19:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 100000, 0.5, 200, 127);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_mstd("09:40:00", "19:50:00", "131810", SIDE::SELL, MARKET::SZ, "REPO", 100, 10, 128);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_ai("09:40:00", "19:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 100000, 200, 129);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
shared_ptr<TaskUnit> task1 = make_shared<TaskUnit>(1800, "09:40:00", "14:50:00", AlgoType::TWAP, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task1->setQuantity(10000);
task1->setMinimalTradeQuantity(200);
shared_ptr<TaskUnit> task2 = make_shared<TaskUnit>(1810, "09:40:00", "15:50:00", AlgoType::VWAP, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task2->setMinimalTradeQuantity(200);
task2->setQuantity(10000);
shared_ptr<TaskUnit> task3 = make_shared<TaskUnit>(1820, "09:40:00", "14:50:00", AlgoType::POV, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task3->setparticipationRate(0.5);
task3->setMinimalTradeQuantity(200);
task3->setQuantity(10000);
shared_ptr<TaskUnit> task4 = make_shared<TaskUnit>(1830, "09:40:00", "10:50:00", AlgoType::IS, "000002",
SIDE::SELL, MARKET::SZ, "CASH");
task4->setMinimalTradeQuantity(200);
task4->setQuantity(10000);
shared_ptr<TaskUnit> task5 = make_shared<TaskUnit>(1840, "09:40:00", "11:10:00", AlgoType::ICEBERG, "000002",
SIDE::SELL, MARKET::SZ, "CASH");
task5->setVisibleVolume(200);
task5->setMinimalTradeQuantity(200);
task5->setQuantity(10000);
shared_ptr<TaskUnit> task6 = make_shared<TaskUnit>(1850, "09:40:00", "13:50:00", AlgoType::RANDOM, "000002",
SIDE::SELL, MARKET::SZ, "CASH");
task6->setNumOfTradings(10);
task6->setMinimalTradeQuantity(200);
task6->setQuantity(10000);
shared_ptr<TaskUnit> task7 = make_shared<TaskUnit>(1860, "09:40:00", "15:50:00", AlgoType::MSTD, "131810",
SIDE::SELL, MARKET::SZ, "REPO");
task7->setQuantity(100000);
task7->setMinimalTradeQuantity(200);
shared_ptr<TaskUnit> task8 = make_shared<TaskUnit>(1870, "09:40:00", "15:50:00", AlgoType::AIVWAP, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task8->setMinimalTradeQuantity(200);
task8->setQuantity(10000);
vector<shared_ptr<TaskUnit>> task_list;
task_list.push_back(task1);
task_list.push_back(task3);
task_list.push_back(task2);
task_list.push_back(task4);
task_list.push_back(task5);
task_list.push_back(task6);
task_list.push_back(task7);
task_list.push_back(task8);
res = myapi.start_tasks(task_list);
cout << res << endl;
param = json::parse(res);
for (auto &task : param) {
subscribe_task_report(task, myapi);
}*/
////暂停
//myapi.pause_task(task_id);
////重新开始
//myapi.resume_task(task_id);
////停止
//myapi.stop_task(task_id);
this_thread::sleep_for(chrono::seconds(5));
this_thread::sleep_for(chrono::seconds(5));
this_thread::sleep_for(chrono::seconds(10000000));
return 0;
};
int addAmounttasks(Algoapi &myapi) {
//订阅
myapi.subscribe_task_report();
myapi.subscribe_order_report();
myapi.subscribe_trade_report();
//取消订阅
//myapi.unsubscribe_task_report();
//myapi.unsubscribe_order_report();
//myapi.unsubscribe_trade_report();
//订阅结果返回,true为订阅完成
cout << myapi.issubcribedtask << endl;
cout << myapi.issubcribedtrade << endl;
cout << myapi.issubcribedorder << endl;
cout << myapi.issubcribedminute << endl;
string res;
json param;
//等待订阅完成
while (!(myapi.issubcribedtask && myapi.issubcribedtrade && myapi.issubcribedorder)) {
this_thread::sleep_for(chrono::seconds(1));
}
res = myapi.start_amount_twap("09:40:00", "15:50:00", "131810", SIDE::SELL, MARKET::SZ, "REPO", 100000.0, 3000, 133);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_amount_vwap("09:40:00", "14:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 10000.0, 200, 134);
cout << res << endl;
param = json::parse(res); subscribe_task_report(param, myapi);
subscribe_task_report(param, myapi);
res = myapi.start_amount_is("09:40:00", "14:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 10000.0, 200, 135);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_amount_iceberg("09:40:00", "14:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 10000.0, 10000, 136);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_amount_random("09:40:00", "14:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 10000.0, 100, 200, 137);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_amount_pov("09:40:00", "14:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 10000.0, 0.5, 200, 138);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_amount_mstd("09:40:00", "14:50:00", "131810", SIDE::SELL, MARKET::SZ, "REPO", 100000.0, 3000, 139);
cout << res << endl;
param = json::parse(res);
subscribe_task_report(param, myapi);
res = myapi.start_amount_ai("09:40:00", "14:50:00", "600000", SIDE::BUY, MARKET::SH, "CASH", 10000.0, 200, 140);
cout << res << endl;
param = json::parse(res); subscribe_task_report(param, myapi);
subscribe_task_report(param, myapi);
shared_ptr<TaskUnit> task1 = make_shared<TaskUnit>(5000, "09:40:00", "14:50:00", AlgoType::TWAP, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task1->setAmount(10000.0);
task1->setMinimalTradeAmount(100.0);
shared_ptr<TaskUnit> task2 = make_shared<TaskUnit>(5010, "09:40:00", "14:50:00", AlgoType::VWAP, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task2->setMinimalTradeAmount(100.0);
task2->setAmount(10000.0);
shared_ptr<TaskUnit> task3 = make_shared<TaskUnit>(5020, "09:40:00", "14:50:00", AlgoType::POV, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task3->setparticipationRate(0.5);
task3->setMinimalTradeAmount(100.0);
task3->setAmount(10000.0);
shared_ptr<TaskUnit> task4 = make_shared<TaskUnit>(5030, "09:40:00", "14:50:00", AlgoType::IS, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task4->setMinimalTradeAmount(100.0);
task4->setAmount(10000.0);
shared_ptr<TaskUnit> task5 = make_shared<TaskUnit>(5040, "09:40:00", "14:50:00", AlgoType::ICEBERG, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task5->setVisibleAmount(5000.0);
task5->setAmount(100000.0);
shared_ptr<TaskUnit> task6 = make_shared<TaskUnit>(5050, "09:40:00", "14:50:00", AlgoType::RANDOM, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task6->setNumOfTradings(32);
task6->setMinimalTradeAmount(100);
task6->setAmount(100000.0);
shared_ptr<TaskUnit> task7 = make_shared<TaskUnit>(5060, "09:40:00", "14:50:00", AlgoType::MSTD, "131810",
SIDE::SELL, MARKET::SZ, "REPO");
task7->setAmount(10000.0);
task7->setMinimalTradeAmount(1000.0);
shared_ptr<TaskUnit> task8 = make_shared<TaskUnit>(5070, "09:40:00", "14:50:00", AlgoType::AIVWAP, "000002",
SIDE::BUY, MARKET::SZ, "CASH");
task2->setMinimalTradeAmount(100.0);
task2->setAmount(10000.0);
vector<shared_ptr<TaskUnit>> task_list;
task_list.push_back(task1);
task_list.push_back(task3);
task_list.push_back(task2);
task_list.push_back(task4);
task_list.push_back(task5);
task_list.push_back(task6);
task_list.push_back(task7);
task_list.push_back(task8);
res = myapi.start_amount_tasks(task_list);
//cout << res << endl;
//param = json::parse(res);
//for (auto &task : param) {
// subscribe_task_report(task, myapi);
//}
//
////暂停
//myapi.pause_task(task_id);
////重新开始
//myapi.resume_task(task_id);
////停止
//myapi.stop_task(1000000044);
this_thread::sleep_for(chrono::seconds(5));
this_thread::sleep_for(chrono::seconds(5));
this_thread::sleep_for(chrono::seconds(10000000));
return 0;
};
int main(int argc, char **argv) {
auto myapi = Algoapi::create(make_shared<AlgospiSimple>(), "10.25.24.183", 28085, "10.25.24.183", 28085);
myapi->connect("10.25.24.189", 8016, "105110003683", "123456");
//auto myapi = Algoapi::create(make_shared<AlgospiSimple>(), "smarttest.ztqft.com", 22225, "smarttest.ztqft.com", 22225);
//myapi->connect("120.27.164.69", 6001, "15003916", "gS9SYHOz");
addtasks(*myapi);
//addAmounttasks(*myapi);
this_thread::sleep_for(chrono::seconds(100));
//test->disconnect();
return 0;
}
| [
"[email protected]"
] | |
0d4c97173dbd10cf3547af03263a0907db158c11 | a391ac0b5cbaea3e4f2e99e04ee7257df2f531e6 | /exam/task_3/main.cpp | e3708283444ec6a162973920ef4ff73190940b9b | [] | no_license | ilginzburg/work | 3ef6de215b8d85cddef730826c06c5c59524079a | fdbd6fc9e737edaec6be7afbc33719a1676c925a | refs/heads/master | 2023-03-20T06:11:40.073979 | 2021-03-06T12:08:37 | 2021-03-06T12:08:37 | 334,441,481 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 595 | cpp | // Задача 3.
// Десятично-двоичное число это такое число,
// которое состоит только из единиц и нулей.
// Например 10 (десять) или 101 (сто один).
// Дано число N. Найти минимальное число
// десятично-двоичных чисел, чтобы сумма их равнялась N.
//Примеры:
//32 = 11 + 11 + 10
#include <stdio.h>
#include "findMinToSum.h"
int main()
{
int N = 8327;
printf("the number is %d\n",find(N));
return 0;
}
| [
"[email protected]"
] | |
81be5a0e898c003f224baaeed09d134a2450eda3 | b2c4f300c6c7def0fe9ea0e9b4683da78dbcb314 | /SFML-Pong/bat.cpp | 1eb31dce97169acab6115d3da56baa22b0efd00a | [] | no_license | miguelfmlopes91/SFML-Pong | b44672dfbe83393cd9d3d4d3645c259103e5aa5e | c16b55ad0846a0204752927ec85b153d2c34a1d0 | refs/heads/master | 2020-03-20T22:47:45.098462 | 2018-06-20T22:01:59 | 2018-06-20T22:01:59 | 137,815,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 533 | cpp | #include "Bat.h"
// This the constructor and it is called when we create an object
bat::bat(float startX, float startY)
{
position.x = startX;
position.y = startY;
batShape.setSize(sf::Vector2f(50, 5));
batShape.setPosition(position);
}
sf::FloatRect bat::getPosition()
{
return batShape.getGlobalBounds();
}
sf::RectangleShape bat::getShape()
{
return batShape;
}
void bat::moveLeft()
{
position.x -= batSpeed;
}
void bat::moveRight()
{
position.x += batSpeed;
}
void bat::update()
{
batShape.setPosition(position);
} | [
"[email protected]"
] | |
650c86ee30f112372d26a3b9a0c55f5bf8315ca8 | f88d8da07e0b3f15d53deb673c552ac0588b67fc | /codelite/World.h | 7dd7a1cb28e47ac84517c1e95548c1ec04ae1ebd | [] | no_license | StevenJHulshof/sdl_sdk | cf285608c74471d2aa484b4116465816fee7e43c | 5eb8c2c24ad314f9b62bc1e5f99058f015481f20 | refs/heads/master | 2021-08-30T11:05:09.973950 | 2017-12-13T22:14:29 | 2017-12-13T22:14:29 | 107,877,339 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 898 | h | #pragma once
#include <vector>
#include <deque>
#include "world_types.h"
#include "Container.h"
#include "Camera.h"
#include "Cursor.h"
#include "Sort.h"
#include "Generator.h"
#include "GameObjectUnion.h"
#include "Selection.h"
class World: public Container, public GameObjectUnionUtility
{
private:
void sortGameObjects(std::vector<GameObjectUnion<World>> &objectPool);
public:
World();
~World();
Tile<World> grassTile;
Tile<World> sandTile;
Tile<World> waterTile;
Camera<World> camera;
Cursor<World> cursor;
Generator generator;
Selection<GameObjectUnion<World>> selection;
int _tileGrid[TILE_GRID_X][TILE_GRID_Y];
int _playableGrid[TILE_GRID_X][TILE_GRID_Y];
std::vector<GameObjectUnion<World>> _playablePool;
std::vector<std::vector<GameObjectUnion<World>>> _objectPool;
void update();
void render();
};
| [
"[email protected]"
] | |
6d331c2211982881a3f4169bf13605bbc0420920 | ae20c35583a8d23e369474f27a052694fec04b20 | /ClientServer/Server.cpp | b1dd8f3aa493acca0781e25ca422a3825613e606 | [] | no_license | Autokrator/blackjack | df3cd5671e92cbf109c36817bd9663f13e4e8dc6 | 5b0172df60919e2739b2f3e75b26480250a96e51 | refs/heads/master | 2016-09-01T09:24:34.602704 | 2015-11-24T17:06:36 | 2015-11-24T17:06:36 | 46,636,924 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,319 | cpp | #include "socketserver.h"
#include "socket.h"
#include <iostream>
#include <string>
#include <thread>
#include <vector>
#include <exception>
#include <mutex>
#include <algorithm>
int PORT = 2200; // Port to listen for active connections
// Function used to respond to a specific client
void respondThread(Communication::Socket * , bool *kill);
// Function used to spawn threads that run respondThread()
void connectionThread(bool* kill);
// Function used to trigger the SocketServer to shutdown
void triggerShutdown(bool *kill, Communication::SocketServer *c);
int main(){
bool kill = false; // Used to terminate all active threads
std::string killResponse; // Used to initate termination process
// The main thread only spawns one thread that manages all connections to
// the server by dynamically spawning "response threads"
std::thread *connection = new std::thread(connectionThread, &kill);
do{
std::cout<<"Do you want to close the server?\n";
std::cin >> killResponse;
if(killResponse == "yes"){
kill = true;
break;
}
} while(true);
connection->join();
delete connection;
return 0;
}
void respondThread(Communication::Socket *socket, bool *kill) {
Communication::ByteArray message(""); // Stores received messages
do{ // Loop to respond to client while is active (does not send "done")
std::cout << "loop \n";
int readCode; // Holds the return value of Communication::Socket::Read()
std::string response; // Holds the received message as a string
try{
readCode = socket->Read(message); // Wait for response
response = message.ToString(); // Store response as string
} catch(std::exception e) { // Incase message exceeds buffer size
response = "Buffer Size Exceeded!";
socket->Write(Communication::ByteArray(response)); // Error response
continue; // Skip the rest and listen for a response from client
}
if(!response.compare("done")) // Exit condition
break;
// Change the response to upper case
std::transform(response.begin(),response.end(),
response.begin(), ::toupper);
// Send response to client
socket->Write(Communication::ByteArray(response));
} while(!(*kill));
socket->Close(); // Close the connection
delete socket; // Free allocated memory created by connectionThread
socket = NULL;
}
void connectionThread(bool* kill){
std::vector<std::thread *> rThreads; // Currently active response threads
// Start listening for incoming connections on specified port
Communication::SocketServer connectionSocket(PORT);
// Create a shutdown thread to terminate a possible block with Accept()
std::thread shutdown_thread(triggerShutdown, kill, &connectionSocket);
while(true){ // Manage incoming connections loop
// Create a temporary Communication::Socket to pass to respondThread
Communication::Socket *socket;
try{
// Blocks until a connection is attempted
socket = new Communication::Socket(connectionSocket.Accept());
} catch(int e) {
if(e == 2) // Catch TerminationException
break; // Exit loop
else
continue; // Try again without creating new response thread
}
// Create a response thread for each incoming connection and add to vector
std::thread *new_thread = new std::thread(respondThread, socket, kill);
rThreads.push_back(new_thread);
}
// Join shutdown thread
shutdown_thread.join();
// Join all response threads in rThreads
for(auto&& thread : rThreads)
thread->join();
// Clean up allocated memory
while(!rThreads.empty()){
delete rThreads.back();
rThreads.pop_back();
}
std::cout << "Closed Connection. Exiting...\n";
}
void triggerShutdown(bool *kill, Communication::SocketServer *c){
int refresh_interval = 500; // refresh interval to check for termination
while(!(*kill)) // Checks for termination
std::this_thread::sleep_for(std::chrono::milliseconds(refresh_interval));
// Shutdown SocketServer
c->Shutdown();
}
| [
"[email protected]"
] | |
9afe44a4a506940c2bbdf948f4c4484dedc66816 | 5a5239120e4022521ac140a56e22ad6f49422977 | /dmopc15c2p6.cpp | b090b0bad3ef9c4b8ad8edbcf765eb75a85fa82f | [] | no_license | sunny-lan/cpp-contest | 0b26d8b6da8c72980de1eb98c7401385f9730a41 | 3eea062297e9374a8829b618954e9db46bfb4466 | refs/heads/master | 2020-03-22T04:14:01.203252 | 2018-07-02T19:04:43 | 2018-07-02T19:04:43 | 139,483,196 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,858 | cpp | #ifdef DMOJ
#include <bits/stdc++.h>
#else
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <climits>
#include <cstring>
#include <string>
#include <vector>
#include <unordered_map>
#include <unordered_set>
#include <queue>
#include <math.h>
#endif // DMOJ
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
//NOTE: MACRO DOES NOT WORK WITH NEGATIVE NUMBERS
#define scan(x) do{while((x=getchar())<'0'); for(x-='0'; '0'<=(_=getchar()); x=(x<<3)+(x<<1)+_-'0');}while(0)
char _;
#define MAXM 10
#define MAXN 100000
int xm[MAXM];
int ym[MAXM];
struct evt {
int x, y1, y2;
bool s;
evt(int _x, int _y1, int _y2, bool _s) {
x = _x, y1 = _y1, y2 = _y2, s = _s;
}
};
bool pred(const evt &a, const evt &b) {
if (a.x == b.x)
return a.y1 < b.y1;
return a.x < b.x;
}
inline void rotate(int &x, int &y) {
int tx = x, ty = y;
x = tx + ty;
y = ty - tx + 4001;
}
vector<evt> e;
int _g[100000];
int *g = _g + 50000;
int main() {
int m; scan(m);
for (int i = 0; i < m; i++) {
scan(xm[i]); scan(ym[i]);
}
int n; scan(n);
for (int i = 0; i < n; i++) {
int x, y; scan(x); scan(y);
int d = INT_MAX;
for (int j = 0; j < m; j++)
d = min(d, abs(x - xm[j]) + abs(y - ym[j]));
d = max(d - 1, 0);
rotate(x, y);
int l = min(y + d, y - d), a = max(y + d, y - d),
w = min(x - d, x + d), q = max(x - d, x + d);
e.push_back(evt(w, l, a + 1, true));
e.push_back(evt(q + 1, l, a + 1, false));
}
sort(e.begin(), e.end(), pred);
int a = 0;
int idx = 0;
for (int j = -8000; j <= 8000; j++) {
while (idx < e.size() && e[idx].x == j)
if (e[idx].s)
g[e[idx].y1]++, g[e[idx].y2]--, idx++;
else
g[e[idx].y1]--, g[e[idx].y2]++, idx++;
int s = 0;
for (int i = -8000; i <= 8000; i++)
s += g[i], a = max(a, s);
}
printf("%d\n", a);
} | [
"[email protected]"
] | |
200fa79b78b21bce6343b42413f6e8dd9dacca1c | c46cf5b94e593cc868f4f6ce3c03268c65308177 | /IdSearchSeq3.cpp | 41ba3cad9ab8c23037ca19116e9849008b1a5212 | [] | no_license | soyoon3292/cpp | 5c53490687fa5a4c61b53254c57a4985cfacf598 | d3037fe94f63f77a368885fbdec04b9a1ec0fd27 | refs/heads/master | 2020-04-14T16:51:10.678357 | 2019-03-05T11:53:41 | 2019-03-05T11:53:41 | 163,962,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 237 | cpp | #include <iostream>
using namespace std;
int nData = 200;
namespace TEST {
int nData = 100;
void testFunc(void) {
cout << nData << endl;
}
}
int main(int argc, char *argv[]) {
TEST::testFunc();
return 0;
} | [
"[email protected]"
] | |
bc2aa69bd8f768a071b0beb22e0599dca4b8311f | cccfb7be281ca89f8682c144eac0d5d5559b2deb | /ui/accessibility/platform/inspect/ax_script_instruction_unittest.cc | d2ccdd485f595d9e7b7bfc9f826ef4111332a0c3 | [
"BSD-3-Clause"
] | permissive | SREERAGI18/chromium | 172b23d07568a4e3873983bf49b37adc92453dd0 | fd8a8914ca0183f0add65ae55f04e287543c7d4a | refs/heads/master | 2023-08-27T17:45:48.928019 | 2021-11-11T22:24:28 | 2021-11-11T22:24:28 | 428,659,250 | 1 | 0 | BSD-3-Clause | 2021-11-16T13:08:14 | 2021-11-16T13:08:14 | null | UTF-8 | C++ | false | false | 1,306 | cc | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/accessibility/platform/inspect/ax_script_instruction.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/accessibility/platform/inspect/ax_property_node.h"
namespace ui {
TEST(AXScriptInstructionTest, Parse) {
AXScriptInstruction script("textbox.AXRole");
EXPECT_TRUE(script.IsScript());
EXPECT_FALSE(script.IsEvent());
EXPECT_FALSE(script.IsComment());
EXPECT_EQ(script.AsScript().ToString(), "textbox.AXRole");
AXScriptInstruction event("wait for AXTitleChange");
EXPECT_TRUE(event.IsEvent());
EXPECT_FALSE(event.IsScript());
EXPECT_FALSE(event.IsComment());
EXPECT_EQ(event.AsEvent(), "AXTitleChange");
AXScriptInstruction event2("wait for AXTitleChange on AXButton");
EXPECT_TRUE(event2.IsEvent());
EXPECT_FALSE(event2.IsScript());
EXPECT_FALSE(event2.IsComment());
EXPECT_EQ(event2.AsEvent(), "AXTitleChange on AXButton");
AXScriptInstruction comment("// wait for AXTitleChange");
EXPECT_TRUE(comment.IsComment());
EXPECT_FALSE(comment.IsEvent());
EXPECT_FALSE(comment.IsScript());
EXPECT_EQ(comment.AsComment(), "// wait for AXTitleChange");
}
} // namespace ui
| [
"[email protected]"
] | |
23f323022ebc8ae7e62e12dc8ac8e58e955b631a | 8d626a348212e10513468a86e75ab8ce4a07cd4b | /WebRTC_AEC3/aec3lib/aec3/include/push_sinc_resampler.h | 823c881f4c6330f051af959c171e56dc8861b6b5 | [
"BSD-3-Clause"
] | permissive | FragrantRookie/RNNAec | 615934f70943b765d0d696a7d07ce54a80394b6f | e6e6fcb853158b8efd609daad3fb8555350e3119 | refs/heads/master | 2023-06-02T17:42:49.092103 | 2021-06-12T07:36:56 | 2021-06-12T07:36:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,013 | h | /*
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
#define COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include "sinc_resampler.h"
#include "constructor_magic.h"
namespace webrtc {
// A thin wrapper over SincResampler to provide a push-based interface as
// required by WebRTC. SincResampler uses a pull-based interface, and will
// use SincResamplerCallback::Run() to request data upon a call to Resample().
// These Run() calls will happen on the same thread Resample() is called on.
class PushSincResampler : public SincResamplerCallback {
public:
// Provide the size of the source and destination blocks in samples. These
// must correspond to the same time duration (typically 10 ms) as the sample
// ratio is inferred from them.
PushSincResampler(size_t source_frames, size_t destination_frames);
~PushSincResampler() override;
// Perform the resampling. |source_frames| must always equal the
// |source_frames| provided at construction. |destination_capacity| must be
// at least as large as |destination_frames|. Returns the number of samples
// provided in destination (for convenience, since this will always be equal
// to |destination_frames|).
size_t Resample(const int16_t* source,
size_t source_frames,
int16_t* destination,
size_t destination_capacity);
size_t Resample(const float* source,
size_t source_frames,
float* destination,
size_t destination_capacity);
// Delay due to the filter kernel. Essentially, the time after which an input
// sample will appear in the resampled output.
static float AlgorithmicDelaySeconds(int source_rate_hz) {
return 1.f / source_rate_hz * SincResampler::kKernelSize / 2;
}
protected:
// Implements SincResamplerCallback.
void Run(size_t frames, float* destination) override;
private:
friend class PushSincResamplerTest;
SincResampler* get_resampler_for_testing() { return resampler_.get(); }
std::unique_ptr<SincResampler> resampler_;
std::unique_ptr<float[]> float_buffer_;
const float* source_ptr_;
const int16_t* source_ptr_int_;
const size_t destination_frames_;
// True on the first call to Resample(), to prime the SincResampler buffer.
bool first_pass_;
// Used to assert we are only requested for as much data as is available.
size_t source_available_;
RTC_DISALLOW_COPY_AND_ASSIGN(PushSincResampler);
};
} // namespace webrtc
#endif // COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
| [
"[email protected]"
] | |
ab5e25c53f84d5aa87226cd30903c0a2f8e443e5 | 28489d6125e3db274db1336f02288c69fa392d61 | /src/main.cpp | 1ed9236df67732257e21c3b6339dd069d9e0be3b | [] | no_license | Patys/Snake | 6910b233631822144d98540a51fbc7ae1645f1cd | 69463d49b96fb6a379d530bde39fa3790f0fc422 | refs/heads/master | 2021-01-19T09:44:03.778526 | 2014-10-17T16:15:37 | 2014-10-17T16:15:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,880 | cpp | #include <SFML/Graphics.hpp>
#include <vector>
#include <ctime>
#include <sstream>
#include <iostream>
enum GAME_STATE {PLAYING, MENU};
enum DIRECTION {NORTH, SOUTH, EAST, WEST};
struct snake_segment {
int x, y; //position
snake_segment(int x, int y): x(x), y(y) {}
};
struct food{
int x, y; //position
int points; //points for player
food(int x, int y, int points): x(x), y(y), points(points) {}
};
std::vector<snake_segment> snake_segments;
int main(){
// Creating window
sf::RenderWindow window(sf::VideoMode(320,320),"Snake", sf::Style::Close);
window.setFramerateLimit(60);
srand(time(0));
// graphics for snake and food
sf::Texture tileset;
tileset.loadFromFile("data/graphic.png");
sf::Sprite spr_snake_seg(tileset);
spr_snake_seg.setTextureRect(sf::IntRect(0,0,16,16));
sf::Sprite spr_food(tileset);
spr_food.setTextureRect(sf::IntRect(32,0,16,16));
// game font
sf::Font font;
font.loadFromFile("data/Russo_One.ttf");
sf::Text txt_score;
txt_score.setFont(font);
txt_score.setCharacterSize(40);
sf::Text txt_menu;
txt_menu.setFont(font);
txt_menu.setString("To play type e.\nControls: WSAD");
GAME_STATE game_state;
game_state = GAME_STATE::MENU;
DIRECTION dir = DIRECTION::SOUTH;
food foods(1,1,5);
sf::Clock game_clock;
int score = 0;
// main loop
while(window.isOpen()){
sf::Event event;
while (window.pollEvent(event)){
//Close window : exit
if (event.type == sf::Event::Closed)
window.close();
}
// let's play
if(game_state == GAME_STATE::PLAYING){
if(sf::Keyboard::isKeyPressed(sf::Keyboard::W)){
if(dir != DIRECTION::SOUTH)
dir = DIRECTION::NORTH;
}
if(sf::Keyboard::isKeyPressed(sf::Keyboard::S)){
if(dir != DIRECTION::NORTH)
dir = DIRECTION::SOUTH;
}
if(sf::Keyboard::isKeyPressed(sf::Keyboard::A)){
if(dir != DIRECTION::EAST)
dir = DIRECTION::WEST;
}
if(sf::Keyboard::isKeyPressed(sf::Keyboard::D)){
if(dir != DIRECTION::WEST)
dir = DIRECTION::EAST;
}
// collision with borders
if(snake_segments.front().x < 0 || snake_segments.front().x > 20 ||
snake_segments.front().y < 0 || snake_segments.front().y > 20){
game_state = GAME_STATE::MENU;
}
// update snake one per 0.4 second
if(game_clock.getElapsedTime() > sf::milliseconds(400)){
// collision with food
if(foods.x == snake_segments.front().x &&
foods.y == snake_segments.front().y){
score += foods.points;
snake_segments.push_back(snake_segment(0,0));
foods.x = rand()%19+1;
foods.y = rand()%19+1;
foods.points = rand()%20+1;
}
// move rest segments of snake
for(size_t i = snake_segments.size(); i-- > 1;){
snake_segments[i].x = snake_segments[i-1].x;
snake_segments[i].y = snake_segments[i-1].y;
}
// move head of snake
switch(dir){
case DIRECTION::NORTH:
snake_segments.front().y -= 1;
break;
case DIRECTION::SOUTH:
snake_segments.front().y += 1;
break;
case DIRECTION::WEST:
snake_segments.front().x -= 1;
break;
case DIRECTION::EAST:
snake_segments.front().x += 1;
}
game_clock.restart();
}
// check collision head with another segments
for(size_t i = 1; i < snake_segments.size(); i++){
if(snake_segments.front().x == snake_segments[i].x &&
snake_segments.front().y == snake_segments[i].y){
game_state = GAME_STATE::MENU;
}
}
// shownig score
std::ostringstream _score_string;
_score_string << score;
txt_score.setString( _score_string.str());
sf::FloatRect textRect = txt_score.getLocalBounds();
txt_score.setOrigin(textRect.left + textRect.width/2.0f,
textRect.top + textRect.height/2.0f);
txt_score.setPosition(sf::Vector2f(160,textRect.top + textRect.height/2.0f + 160));
//DRAWING
window.clear(sf::Color::Blue);
window.draw(txt_score);
for(size_t i = 0; i < snake_segments.size(); i++){
spr_snake_seg.setPosition(snake_segments[i].x * 16, snake_segments[i].y * 16);
window.draw(spr_snake_seg);
}
spr_food.setPosition(foods.x * 16, foods.y * 16);
window.draw(spr_food);
window.display();
} //if:GAME_STATE::PLAY
if(game_state == GAME_STATE::MENU){
if(sf::Keyboard::isKeyPressed(sf::Keyboard::E)){
game_state = GAME_STATE::PLAYING;
snake_segments.clear();
snake_segments.push_back(snake_segment(5,5));
score = 0;
}
std::ostringstream _score_string;
_score_string << score;
txt_menu.setString("Type e to play.\nControls: WSAD.\nLast score: " + _score_string.str());
window.clear();
window.draw(txt_menu);
window.display();
} //if:GAME_STATE::MENU
}
}
| [
"[email protected]"
] | |
323af3a89ddeeb226d34f90b060af0e642c26409 | 44adf8a434334eaad957ebec19043f08fb8c3d87 | /Nivelamento IME++ 2017/p13.cpp | 3f4ec94d787c497def95c282278070b0510d2696 | [] | no_license | FabioVL/Competitive-Programming | c4fb94d3d5102d779c977248ab9b7d0fd84831e3 | d8c65b5c1943a6cded9e22a238b9d92fb9d51215 | refs/heads/master | 2021-01-12T16:58:25.332053 | 2018-03-14T14:06:21 | 2018-03-14T14:06:21 | 71,480,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 483 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
int n,i;
string c;
scanf("%d\n",&n);
while(n--)
{
stack<char> v;
v.push('a');
getline(cin,c);
if(c.size()==0) printf("Yes\n");
else
{
for(int i=0;i<c.size();i++)
{
if(c[i]=='[' or c[i]=='(') v.push(c[i]);
else if(c[i]==']' and v.top()=='[') v.pop();
else if(c[i]==')' and v.top()=='(') v.pop();
else v.push(c[i]);
}
v.size()==1 ? printf("Yes\n") : printf("No\n");
}
}
}
| [
"[email protected]"
] | |
c869cbf2fd8fdfec1db33d471c161eb7dcdf642e | c5e72439e0d47ed0df84da80676fad3122081e36 | /HW4 Lab4/LAB04_01/LAB04_01/Source.cpp | 91cbd7dbc18c119d89c4daa860c079d3428cc994 | [] | no_license | eparslow18/CS315DistributedScalableComputing | ba9f4824b4b40736544350213e8d36095f7ce041 | 4998418b86f578ad5c328d0ed8305cf6e3d8dc4f | refs/heads/master | 2021-01-10T23:12:09.377494 | 2016-10-18T20:26:22 | 2016-10-18T20:26:22 | 70,636,070 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,926 | cpp | /**
LAB04_01
Description: Design a thread that will run this word_find() function concurrently.
Use futures in your program to capture its return value, or the exception it throws when it is run!
Return this to the main function.
*/
#include <iostream>
#include <fstream>
#include <string>
#include <stdexcept>
#include <vector>
#include <thread>
#include <future>
using namespace std;
struct DictionaryEntry {
DictionaryEntry(string word, off_t offset) : word(word), offset(offset) {} // constructor
string word; // word
off_t offset; // offset in file at which word was found
};
/**
Finds the specified word in the file.
@param word the words to find
@return offset in file where word was found
*/
int word_find(string word)
{
ifstream fin("Text.txt");
vector<DictionaryEntry> dictionary;
if (fin.fail())
throw exception("Unable to open file");
string w;
while (true) {
if (fin >> w) { // read word
off_t pos = fin.tellg(); // query for the file offset after read
pos -= w.length(); // subtract the word length to get the offset at the start of the word
dictionary.push_back(DictionaryEntry(w, pos)); // put the information in a vector
}
else
break;
}
fin.close();
for (auto &ent : dictionary) {
if (ent.word == word)
return ent.offset;
}
throw invalid_argument("Unable to find word");
}
int main()
{
promise<off_t> prms; //EX01
promise<string> word2;
auto func = [&]() {
auto wordftr = word2.get_future();
off_t pos = word_find(wordftr.get());
prms.set_value(pos); //gives the position to the promise variable
//;auto ftr = prms.get_future();
//word_find(prms)
};
thread thr(func);
cout << "Please enter a word to find: ";
string word;
cin >> word;
try {
auto ftr = prms.get_future();
cout << word << " found in offset " << ftr.get() << endl;
}
catch (exception &ex) {
cout << "Exception: " << ex.what() << endl;
}
thr.join();
} | [
"[email protected]"
] | |
6ee7d111b613894c7ff94586cd62f0b833646f23 | 58b5dd2d3df7b3fd7236a8a794e48b5150c2c80e | /CircularList/CircularList/CircularList.cpp | 9fde591bc117e34c529c3e00aab159894b47c866 | [] | no_license | richardiyama/CrackingTheCodeInterview-C- | 18526ef1d786f74584273968465ada82d461c2b9 | 351ebf3d8f6428d5710097e774c09efdb8477ab2 | refs/heads/master | 2021-01-01T19:56:30.704618 | 2017-07-29T05:53:34 | 2017-07-29T05:53:34 | 78,357,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,263 | cpp | // CircularList.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
using namespace std;
class ListNode {
public:
int val;
ListNode* next;
ListNode(int i) : val(i), next(NULL) {}
};
ListNode* ff(ListNode *node) {
ListNode* p = node;//slow
ListNode* q = node; //faster
while (true) {
p = p->next;
q = q->next->next;
if (p == q) break;
}
p = node;
while (p != q) {
p = p->next;
q = q->next;
}
return q;
}
ListNode* creatl(int* A, int n) {
ListNode* head = new ListNode(A[0]);
ListNode* q = head;
for (int i = 1; i<n; i++) {
ListNode* p = new ListNode(A[i]);
q->next = p;
q = p;
}
cout << "GT: last = " << q->val << endl;
q->next = head->next->next->next;
cout << "GT: loop = " << q->next->val << endl;
return head;
}
void printList(ListNode* head) {
if (head == NULL) { cout << "Empty List" << endl; }
while (head != NULL) {
cout << head->val << " ";
head = head->next;
}
cout << endl;
}
int main() {
int A[11] = { 9,8,7,4,5,3,2,8,4,3,6 };
ListNode* head = creatl(A, 11); // head = 9, last = 0, loop = 4;
cout << "List head: " << head->val << endl;
ListNode* res = ff(head);
cout << "Loop start: " << res->val << endl;
system("pause");
return 0;
}
| [
"[email protected]"
] | |
ffe3eb478f65988a163d7ab244899f641aad6fd3 | 6a0633b246f58522f376cf0d9608fccdafc47da4 | /findKPairsWithSmallestSums373.cpp | 25586a06116726f9bb3eb4d97b9b1c31c07589eb | [] | no_license | studentBC/justExercise | 9ec10dbea9b2fe62d5d673fc39a91d08c9723bf7 | c5a022a6b46f56598234fb410b5d317f08dcda9c | refs/heads/master | 2023-06-26T12:28:18.144489 | 2023-06-11T15:27:36 | 2023-06-11T15:27:36 | 130,351,745 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,589 | cpp | class Solution {
public:
static bool compare (pair<int, int>& a , pair<int,int>& b) {
return a.first+a.second < b.first+b.second;
}
vector<vector<int>> kSmallestPairs(vector<int>& nums1, vector<int>& nums2, int k) {
vector<pair<int, int>>temp;
vector<vector<int>>ans;
vector<int>tmp;
int sum;
for (int i:nums1) {
for (int j :nums2) {
temp.emplace_back(pair<int,int>(i,j));
}
}
sort (temp.begin(), temp.end(), compare);
for (int i = 0, j = 0; i < temp.size() && j < k; i++,j++) {
tmp.clear();
tmp.emplace_back(temp[i].first);
tmp.emplace_back(temp[i].second);
ans.emplace_back(tmp);
}
return ans;
}
};
//the fatest method
class Solution {
public:
vector<vector<int>> kSmallestPairs(vector<int>& nums1, vector<int>& nums2, int k ) {
int n1 = nums1.size() , n2 = nums2.size();
if (!n1 || !n2){
return {};
}
//good method to construct paired priority queue
auto comp = [&] (pair<int,int> a , pair<int,int> b ){
return nums1[a.first] + nums2[a.second] > nums1[b.first] + nums2[b.second];
};
priority_queue<pair<int,int> , vector<pair<int,int>> , decltype(comp)> pq(comp);
for(int i = 0; i < nums1.size(); ++i){
pq.push({i , 0});
}
vector<vector<int>> ans ;
while(k > 0 && !pq.empty()){
auto p = pq.top();
pq.pop();
ans.push_back({nums1[p.first] , nums2[p.second]});
if (++p.second < n2){
pq.push(p);
}
--k;
}
return ans;
}
};
| [
"[email protected]"
] | |
6908da49f0000d31366852289d54012b1e674e5e | 828ef027ebb1da770ce2aa3c11f2aa698e53c621 | /剑指offer/38.cpp | 2e268defda867bf9e24cff35a440e47e8c8430c4 | [] | no_license | 719400737/LeetCode | 7773a1d99413c35dff48ced0506c6aea972b398d | 3c7df4253368b70e7c829bdf00dbf0aa24f339ba | refs/heads/master | 2021-02-08T03:39:51.317522 | 2020-08-25T08:54:06 | 2020-08-25T08:54:06 | 244,104,955 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 858 | cpp | #include<bits/stdc++.h>
using namespace std;
class Solution {
vector<string> res;
string path;
vector<int> vec;
void helper(string s){
if(path.size()==s.size()){
res.push_back(path);
return;
}
unordered_set<char> se;
for(int i=0;i<s.size();i++){
if(vec[i]==1 || se.count(s[i]))
continue;
path+=s[i];
vec[i]=1;
se.insert(s[i]);
helper(s);
path.pop_back();
vec[i]=0;
}
}
public:
vector<string> permutation(string s) {
int m=s.size();
vector<int> v(m,0);
this->vec=v;
helper(s);
return res;
}
};
int main(){
Solution s;
vector<string> res=s.permutation("aac");
for(auto i:res)
cout<<i<<endl;
return 1;
} | [
"[email protected]"
] | |
c2e877d84078c1c1c626a1c3f67305c90197c2cd | 264f335c8d0bcf20d782454997d380b41c50012c | /DataStructures/Hashtable.cpp | b3b004e47890360237ad1990c31ab5b2c9f51c62 | [] | no_license | minhyeong-joe/coding-interview | a993d360bb4fbc2d8113d24000d312282363ec5a | d1f8c6ce8cdc07f1701df5f8ab85584fb49ff775 | refs/heads/master | 2022-11-23T19:00:39.493413 | 2020-07-22T20:17:50 | 2020-07-22T20:17:50 | 272,523,081 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,661 | cpp | #include "Hashtable.hpp"
#include <iostream>
#include <stdexcept>
template<class K, class V>
HashTable<K,V>::HashTable() {
_capacity = DEFAULT_CAPACITY;
_size = 0;
table = new std::vector<Data>[_capacity];
}
template<class K, class V>
HashTable<K,V>::~HashTable() {
delete[] table;
}
template<class K, class V>
int HashTable<K,V>::hash(const K& key) const {
return (int)key % _capacity;
}
template<class K, class V>
void HashTable<K,V>::expandTable() {
int oldCap = _capacity;
_capacity *= 2;
std::vector<Data>* newTable = new std::vector<Data>[_capacity];
for (int i = 0; i < oldCap; i++) {
for (int j = 0; j < table[i].size(); j++) {
int index = hash(table[i][j]._key);
Data newData{table[i][j]._key, table[i][j]._value};
newTable[index].push_back(newData);
}
}
delete[] table;
table = newTable;
}
template<class K, class V>
void HashTable<K,V>::insert(const K& key, const V& value) {
if (contains(key)) {
throw std::invalid_argument("Duplicate Key Exception");
}
int index = hash(key);
Data newData{key, value};
table[index].push_back(newData);
_size += 1;
if (((double)_size/(double)_capacity) > THRESHOLD) {
expandTable();
}
}
template<class K, class V>
void HashTable<K,V>::remove(const K& key) {
int index = hash(key);
for (int i = 0; i < table[index].size(); i++) {
if (table[index][i]._key == key) {
table[index].erase(table[index].begin() + i);
_size -= 1;
return;
}
}
throw std::invalid_argument("Key does not exist");
}
template<class K, class V>
bool HashTable<K,V>::contains(const K& key) const {
int index = hash(key);
for (int i = 0; i < table[index].size(); i++) {
if (table[index][i]._key == key) {
return true;
}
}
return false;
}
template<class K, class V>
V HashTable<K,V>::get(const K& key) const {
int index = hash(key);
for (int i = 0; i < table[index].size(); i++) {
if (table[index][i]._key == key) {
return table[index][i]._value;
}
}
throw std::invalid_argument("Key does not exist");
}
template<class K, class V>
void HashTable<K,V>::print() const {
for (int i = 0; i < _capacity; i++) {
std::cout << "Index # " << i << ": ";
for (int j = 0; j < table[i].size(); j++) {
std::cout << "{" << table[i][j]._key << ":" << table[i][j]._value << "}";
if (j < table[i].size() - 1) {
std::cout << " -> ";
}
}
std::cout << std::endl;
}
} | [
"[email protected]"
] | |
ce5f52e207177447ba6ea5a61a4afcbceacaf338 | 9dea538935e074a9e249f1c775c591dfa9b2fb64 | /entity.cpp | f2877544979ff9c5021ccd824c045fb2675bfa36 | [] | no_license | snowhax/ttm | b3579114977c130c5c8c8aba46bec4894a1025c1 | b9650a7c9836e74f5baaa243bddf469a23667811 | refs/heads/master | 2022-05-01T14:24:48.170991 | 2022-04-24T08:13:38 | 2022-04-24T08:13:38 | 153,436,467 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,071 | cpp |
#include "entity.h"
#include <typeinfo>
uint64_t Entity::getId(int entity) {
int luid = r(entity + 0xa4);
return *(uint64_t*)(luid + 0xc);
}
/*
int Entity::getId2(int entity) {
int luid = r(entity + 0xa4);
return r(luid + 0x14)
}
*/
int Entity::getLuid(int entity) {
return r(entity + 0xa4);
}
int Entity::getType(int entity) {
int luid = r(entity + 0xa4);
return r(luid + 0x18);
}
int *Entity::getPos(int entity) {
return *(int **)(entity + 0x13c);
}
std::string Entity::getName(int entity) {
return *(std::string *)(entity + 0x8);
}
std::string Entity::getJobName(int entity) {
return *(std::string *)(entity + 0x14);
}
bool Entity::hasClan(int entity) {
int clan = r(entity + 0x4c);
return clan != 0;
}
int Entity::getClanLv(int entity) {
int clan = r(entity + 0x4c);
return r(clan + 0x18);
}
std::string Entity::getClanName(int entity) {
int clan = r(entity + 0x4c);
return *(std::string *)r(clan + 0x14);
}
static void addEntity(Variant * pool, obj entity) {
Allocator &al = pool->GetAllocator();
std::string name = Entity::getName(entity);
std::string jobName = Entity::getJobName(entity);
int type = Entity::getType(entity);
uint64_t id = Entity::getId(entity);
int *ppos = Entity::getPos(entity);
int x = ppos ? ppos[0] : 0;
int y = ppos ? ppos[1] : 0;
Value item(rapidjson::kObjectType);
item.AddMember("ptr", entity, al);
item.AddMember("name", name, al);
item.AddMember("jobName", jobName, al);
item.AddMember("type", type, al);
item.AddMember("id", id, al);
Value pos(rapidjson::kObjectType);
pos.AddMember("x", x, al);
pos.AddMember("y", y, al);
item.AddMember("pos", pos, al);
if (Entity::hasClan(entity)) {
int clanLv = Entity::getClanLv(entity);
if (clanLv) {
Value clan(rapidjson::kObjectType);
std::string clanName = Entity::getClanName(entity);
clan.AddMember("name", clanName, al);
clan.AddMember("lv", clanLv, al);
item.AddMember("clan", clan, al);
}
}
pool->PushBack(item, al);
}
Variant *Entity::all() {
Variant *pool = new Variant(rapidjson::kArrayType);
Allocator &al = pool->GetAllocator();
int um = r(COM::alsr(MemAddrUserObject));
std::vector<int> *entities = (std::vector<int> *)(um + 0x4);
for (int entity : *entities) {
addEntity(pool, entity);
}
return pool;
}
Variant* Entity::get(obj luid) {
Variant *pool = NULL;
int um = r(COM::alsr(MemAddrUserObject));
uint64_t tid = *(uint64_t*)(luid + 0xc);
std::vector<int> *entities = (std::vector<int> *)(um + 0x4);
for (int entity : *entities) {
uint64_t id = Entity::getId(entity);
if (id == tid) {
pool = new Variant(rapidjson::kObjectType);
Allocator &al = pool->GetAllocator();
std::string name = Entity::getName(entity);
std::string jobName = Entity::getJobName(entity);
int type = Entity::getType(entity);
uint64_t id = Entity::getId(entity);
int *ppos = Entity::getPos(entity);
int x = ppos ? ppos[0] : 0;
int y = ppos ? ppos[1] : 0;
pool->AddMember("ptr", entity, al);
pool->AddMember("name", name, al);
pool->AddMember("jobName", jobName, al);
pool->AddMember("type", type, al);
pool->AddMember("id", id, al);
Value pos(rapidjson::kObjectType);
pos.AddMember("x", x, al);
pos.AddMember("y", y, al);
pool->AddMember("pos", pos, al);
if (Entity::hasClan(entity)) {
int clanLv = Entity::getClanLv(entity);
if (clanLv) {
Value clan(rapidjson::kObjectType);
std::string clanName = Entity::getClanName(entity);
clan.AddMember("name", clanName, al);
clan.AddMember("lv", clanLv, al);
pool->AddMember("clan", clan, al);
}
}
break;
}
}
return pool;
}
static obj getPlayerInGameData(int type) {
int PI = r(COM::alsr(MemAddrPlayerInGameData));
obj idt = r(PI + 0xc);
obj target = 0;
while (idt) {
obj _type = r(idt + 0x10);
if (_type == type) {
target = idt;
break;
}
idt = (type > _type) ? r(idt + 0xc) : r(idt + 0x8);
}
return target ? target + 0x14 : 0;
}
Variant* Entity::enemy() {
Variant *pool = new Variant(rapidjson::kArrayType);
Allocator &al = pool->GetAllocator();
obj data = getPlayerInGameData(2);
LOGD("data:%p", data);
if (data) {
int UM = r(COM::alsr(MemAddrUserObject));
std::vector<int> *entities = (std::vector<int> *)(UM + 0x4);
int count = r(data + 0x8);
obj idt = r(data + 0x4);
LOGD("idt begin:%p", idt);
while (idt != data) {
LOGD("idt:%p", idt);
obj luid = r(r(idt + 0x8));
if (luid) {
uint64_t tid = *(uint64_t*)(luid + 0xc);
LOGD("查找tid:%lld", tid);
for (int entity : *entities) {
uint64_t id = Entity::getId(entity);
LOGD("%lld:%lld", tid, id);
if (id == tid) {
LOGD("找到luid:%p", entity);
addEntity(pool, entity);
}
}
}
idt = r(idt + 0x4);
}
}
return pool;
}
| [
"[email protected]"
] | |
31132c6bc96d3fcf942a93c4ae28df3c04aaf663 | 386b270c3e2424a0db6982767baf2936003b425d | /sources/Board.cpp | 84d9170fcb6ab31383353e68cd3d5baa5cde72da | [] | no_license | Matan-Hodadov/Pandemic-b | de939b9126a69131e44dbc18b43aa919b001f0b2 | 30dd19089132ba4fcc133f79665714448663e6a5 | refs/heads/master | 2023-05-06T04:34:05.047761 | 2021-05-18T16:06:57 | 2021-05-18T16:06:57 | 368,589,890 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,782 | cpp | #include "Board.hpp"
#include <ostream>
#include <fstream>
#include <algorithm>
#include "City.hpp"
#include "Color.hpp"
using namespace pandemic;
using namespace std;
namespace pandemic
{
const unordered_map<string, Color> Board::colors_names = {
{"Black", Color::Black},
{"Blue", Color::Blue},
{"Red", Color::Red},
{"Yellow", Color::Yellow},
};
const unordered_map<string, City> Board::cities_names = {
{"Algiers", City::Algiers},
{"Atlanta", City::Atlanta},
{"Baghdad", City::Baghdad},
{"Bangkok", City::Bangkok},
{"Beijing", City::Beijing},
{"Bogota", City::Bogota},
{"BuenosAires", City::BuenosAires},
{"Cairo", City::Cairo},
{"Chennai", City::Chennai},
{"Chicago", City::Chicago},
{"Delhi", City::Delhi},
{"Essen", City::Essen},
{"HoChiMinhCity", City::HoChiMinhCity},
{"HongKong", City::HongKong},
{"Istanbul", City::Istanbul},
{"Jakarta", City::Jakarta},
{"Johannesburg", City::Johannesburg},
{"Karachi", City::Karachi},
{"Khartoum", City::Khartoum},
{"Kinshasa", City::Kinshasa},
{"Kolkata", City::Kolkata},
{"Lagos", City::Lagos},
{"Lima", City::Lima},
{"London", City::London},
{"LosAngeles", City::LosAngeles},
{"Madrid", City::Madrid},
{"Manila", City::Manila},
{"MexicoCity", City::MexicoCity},
{"Miami", City::Miami},
{"Milan", City::Milan},
{"Montreal", City::Montreal},
{"Moscow", City::Moscow},
{"Mumbai", City::Mumbai},
{"NewYork", City::NewYork},
{"Osaka", City::Osaka},
{"Paris", City::Paris},
{"Riyadh", City::Riyadh},
{"SanFrancisco", City::SanFrancisco},
{"Santiago", City::Santiago},
{"SaoPaulo", City::SaoPaulo},
{"Seoul", City::Seoul},
{"Shanghai", City::Shanghai},
{"StPetersburg", City::StPetersburg},
{"Sydney", City::Sydney},
{"Taipei", City::Taipei},
{"Tehran", City::Tehran},
{"Tokyo", City::Tokyo},
{"Washington", City::Washington},
};
Board::Board()
{
if (!(this->cities_connections.empty())) //if this is not the first board
{
return;
}
ifstream ifs{"cities_map.txt"};
string city_string;
string color_string;
string temp_neighbor_string;
while (!ifs.eof())
{
ifs >> city_string >> color_string;
City city = string_to_city(city_string);
this->city_diseaselvl[city] = 0;
cities_colors[city] = string_to_color(color_string);
while (ifs.peek() != '\n' && !(ifs.eof()))
{
ifs >> temp_neighbor_string;
this->cities_connections[city].insert(string_to_city(temp_neighbor_string));
}
}
ifs.close();
}
int& Board::operator [] (City city)
{
return this->city_diseaselvl[city];
}
ostream& operator << (ostream& os, Board& board)
{
os << "Cities details:" << endl;
for (auto city_diseaselvl_row : board.city_diseaselvl)
{
City city = city_diseaselvl_row.first;
os << Board::city_to_string(city) << endl;
os << "Infection Level: " << city_diseaselvl_row.second << endl;
if(board.have_research_station(city))
{
os << "Have A research station" << endl;
}
else
{
os << "Dont have a research station" << endl;
}
}
os << "\nDiscovered Cures:" << endl;
for (auto color_cure : board.city_medicine)
{
os << Board::color_to_string(color_cure) << endl;
}
os << endl;
return os;
}
bool Board::have_research_station(City city) const
{
return this->city_station.find(city) != this->city_station.end();
}
Color Board::get_city_color(City city) const
{
return this->cities_colors.at(city);
}
bool Board::is_cities_connected(City city1, City city2) const
{
auto connected_cities = this->cities_connections.at(city1);
return connected_cities.find(city2) != connected_cities.end();
}
void Board::add_research_station(City city)
{
this->city_station.insert(city);
}
bool Board::have_cure(Color color) const
{
return this->city_medicine.find(color) != this->city_medicine.end();
}
void Board::add_cure(Color color)
{
this->city_medicine.insert(color);
}
City Board::string_to_city(const string& city)
{
return cities_names.find(city)->second;
}
string Board::city_to_string(City city)
{
return find_if(begin(Board::cities_names), end(Board::cities_names), [&](const auto &element) {
return element.second == city;
})
->first;
}
Color Board::string_to_color(const string& color_name)
{
return colors_names.find(color_name)->second;
}
string Board::color_to_string(Color color)
{
return find_if(begin(Board::colors_names), end(Board::colors_names), [&](const auto &element) {
return element.second == color;
})
->first;
}
bool Board::is_clean()
{
for(auto city_desease_row : this->city_diseaselvl)
{
if(city_desease_row.second > 0)
{
return false;
}
}
return true;
}
void Board::remove_cures()
{
this->city_medicine.clear();
}
} | [
"[email protected]"
] | |
5b6d673c18aa60e2ec3a15ed5a7baf76f6e2a772 | 5ef8219e02ce69d9db9bc9a442a4d2e8336fc7f8 | /safe_minmax.h | 61b77f549ffe863a036a4474da128114b82d0adc | [] | no_license | jinghao666/WebRTC-Research | 64e2801b39687ed113dd5fa6569a33289e315689 | 19ce755f8177ae318373ce49e574e759f9af5092 | refs/heads/master | 2022-11-20T22:56:29.473807 | 2020-07-15T06:17:18 | 2020-07-15T06:17:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,900 | h | /*****************************************************************
* Copyright (C) 2020 Zuoyebang.com, Inc. All Rights Reserved.
*
* @file safe_minmax.h
* @author yujitai([email protected])
* @date 2020/04/06
* @brief
*****************************************************************/
/*
* Copyright 2017 The WebRTC Project Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
// Minimum and maximum
// ===================
//
// rtc::SafeMin(x, y)
// rtc::SafeMax(x, y)
//
// (These are both constexpr.)
//
// Accept two arguments of either any two integral or any two floating-point
// types, and return the smaller and larger value, respectively, with no
// truncation or wrap-around. If only one of the input types is statically
// guaranteed to be able to represent the result, the return type is that type;
// if either one would do, the result type is the smaller type. (One of these
// two cases always applies.)
//
// * The case with one floating-point and one integral type is not allowed,
// because the floating-point type will have greater range, but may not
// have sufficient precision to represent the integer value exactly.)
//
// Clamp (a.k.a. constrain to a given interval)
// ============================================
//
// rtc::SafeClamp(x, a, b)
//
// Accepts three arguments of any mix of integral types or any mix of
// floating-point types, and returns the value in the closed interval [a, b]
// that is closest to x (that is, if x < a it returns a; if x > b it returns b;
// and if a <= x <= b it returns x). As for SafeMin() and SafeMax(), there is
// no truncation or wrap-around. The result type
//
// 1. is statically guaranteed to be able to represent the result;
//
// 2. is no larger than the largest of the three argument types; and
//
// 3. has the same signedness as the type of the third argument, if this is
// possible without violating the First or Second Law.
//
// There is always at least one type that meets criteria 1 and 2. If more than
// one type meets these criteria equally well, the result type is one of the
// types that is smallest. Note that unlike SafeMin() and SafeMax(),
// SafeClamp() will sometimes pick a return type that isn't the type of any of
// its arguments.
//
// * In this context, a type A is smaller than a type B if it has a smaller
// example, int8_t < int16_t == uint16_t < int32_t, and all integral types
// are smaller than all floating-point types.)
//
// * As for SafeMin and SafeMax, mixing integer and floating-point arguments
// is not allowed, because floating-point types have greater range than
// integer types, but do not have sufficient precision to represent the
// values of most integer types exactly.
//
// Requesting a specific return type
// =================================
//
// All three functions allow callers to explicitly specify the return type as a
// template parameter, overriding the default return type. E.g.
//
// rtc::SafeMin<int>(x, y) // returns an int
//
// If the requested type is statically guaranteed to be able to represent the
// result, then everything's fine, and the return type is as requested. But if
// the requested type is too small, a static_assert is triggered.
#ifndef RTC_BASE_NUMERICS_SAFE_MINMAX_H_
#define RTC_BASE_NUMERICS_SAFE_MINMAX_H_
#include <limits>
#include <type_traits>
// #include "rtc_base/checks.h"
#include "safe_compare.h"
#include "type_traits.h"
namespace rtc {
namespace safe_minmax_impl {
// Make the range of a type available via something other than a constexpr
// function, to work around MSVC limitations. See
// https://blogs.msdn.microsoft.com/vcblog/2015/12/02/partial-support-for-expression-sfinae-in-vs-2015-update-1/
template <typename T>
struct Limits {
static constexpr T lowest = std::numeric_limits<T>::lowest();
static constexpr T max = std::numeric_limits<T>::max();
};
template <typename T, bool is_enum = std::is_enum<T>::value>
struct UnderlyingType;
template <typename T>
struct UnderlyingType<T, false> {
using type = T;
};
template <typename T>
struct UnderlyingType<T, true> {
using type = typename std::underlying_type<T>::type;
};
// Given two types T1 and T2, find types that can hold the smallest (in
// ::min_t) and the largest (in ::max_t) of the two values.
template <typename T1,
typename T2,
bool int1 = IsIntlike<T1>::value,
bool int2 = IsIntlike<T2>::value>
struct MType {
static_assert(int1 == int2,
"You may not mix integral and floating-point arguments");
};
// Specialization for when neither type is integral (and therefore presumably
// floating-point).
template <typename T1, typename T2>
struct MType<T1, T2, false, false> {
using min_t = typename std::common_type<T1, T2>::type;
static_assert(std::is_same<min_t, T1>::value ||
std::is_same<min_t, T2>::value,
"");
using max_t = typename std::common_type<T1, T2>::type;
static_assert(std::is_same<max_t, T1>::value ||
std::is_same<max_t, T2>::value,
"");
};
// Specialization for when both types are integral.
template <typename T1, typename T2>
struct MType<T1, T2, true, true> {
// The type with the lowest minimum value. In case of a tie, the type with
// the lowest maximum value. In case that too is a tie, the types have the
// same range, and we arbitrarily pick T1.
using min_t = typename std::conditional<
SafeLt(Limits<T1>::lowest, Limits<T2>::lowest),
T1,
typename std::conditional<
SafeGt(Limits<T1>::lowest, Limits<T2>::lowest),
T2,
typename std::conditional<SafeLe(Limits<T1>::max, Limits<T2>::max),
T1,
T2>::type>::type>::type;
static_assert(std::is_same<min_t, T1>::value ||
std::is_same<min_t, T2>::value,
"");
// The type with the highest maximum value. In case of a tie, the types have
// the same range (because in C++, integer types with the same maximum also
// have the same minimum).
static_assert(SafeNe(Limits<T1>::max, Limits<T2>::max) ||
SafeEq(Limits<T1>::lowest, Limits<T2>::lowest),
"integer types with the same max should have the same min");
using max_t = typename std::
conditional<SafeGe(Limits<T1>::max, Limits<T2>::max), T1, T2>::type;
static_assert(std::is_same<max_t, T1>::value ||
std::is_same<max_t, T2>::value,
"");
};
// A dummy type that we pass around at compile time but never actually use.
// Declared but not defined.
struct DefaultType;
// ::type is A, except we fall back to B if A is DefaultType. We static_assert
// that the chosen type can hold all values that B can hold.
template <typename A, typename B>
struct TypeOr {
using type = typename std::
conditional<std::is_same<A, DefaultType>::value, B, A>::type;
static_assert(SafeLe(Limits<type>::lowest, Limits<B>::lowest) &&
SafeGe(Limits<type>::max, Limits<B>::max),
"The specified type isn't large enough");
static_assert(IsIntlike<type>::value == IsIntlike<B>::value &&
std::is_floating_point<type>::value ==
std::is_floating_point<type>::value,
"float<->int conversions not allowed");
};
} // namespace safe_minmax_impl
template <
typename R = safe_minmax_impl::DefaultType,
typename T1 = safe_minmax_impl::DefaultType,
typename T2 = safe_minmax_impl::DefaultType,
typename R2 = typename safe_minmax_impl::TypeOr<
R,
typename safe_minmax_impl::MType<
typename safe_minmax_impl::UnderlyingType<T1>::type,
typename safe_minmax_impl::UnderlyingType<T2>::type>::min_t>::type>
constexpr R2 SafeMin(T1 a, T2 b) {
static_assert(IsIntlike<T1>::value || std::is_floating_point<T1>::value,
"The first argument must be integral or floating-point");
static_assert(IsIntlike<T2>::value || std::is_floating_point<T2>::value,
"The second argument must be integral or floating-point");
return SafeLt(a, b) ? static_cast<R2>(a) : static_cast<R2>(b);
}
template <
typename R = safe_minmax_impl::DefaultType,
typename T1 = safe_minmax_impl::DefaultType,
typename T2 = safe_minmax_impl::DefaultType,
typename R2 = typename safe_minmax_impl::TypeOr<
R,
typename safe_minmax_impl::MType<
typename safe_minmax_impl::UnderlyingType<T1>::type,
typename safe_minmax_impl::UnderlyingType<T2>::type>::max_t>::type>
constexpr R2 SafeMax(T1 a, T2 b) {
static_assert(IsIntlike<T1>::value || std::is_floating_point<T1>::value,
"The first argument must be integral or floating-point");
static_assert(IsIntlike<T2>::value || std::is_floating_point<T2>::value,
"The second argument must be integral or floating-point");
return SafeGt(a, b) ? static_cast<R2>(a) : static_cast<R2>(b);
}
namespace safe_minmax_impl {
// Given three types T, L, and H, let ::type be a suitable return value for
// SafeClamp(T, L, H). See the docs at the top of this file for details.
template <typename T,
typename L,
typename H,
bool int1 = IsIntlike<T>::value,
bool int2 = IsIntlike<L>::value,
bool int3 = IsIntlike<H>::value>
struct ClampType {
static_assert(int1 == int2 && int1 == int3,
"You may not mix integral and floating-point arguments");
};
// Specialization for when all three types are floating-point.
template <typename T, typename L, typename H>
struct ClampType<T, L, H, false, false, false> {
using type = typename std::common_type<T, L, H>::type;
};
// Specialization for when all three types are integral.
template <typename T, typename L, typename H>
struct ClampType<T, L, H, true, true, true> {
private:
// Range of the return value. The return type must be able to represent this
// full range.
static constexpr auto r_min =
SafeMax(Limits<L>::lowest, SafeMin(Limits<H>::lowest, Limits<T>::lowest));
static constexpr auto r_max =
SafeMin(Limits<H>::max, SafeMax(Limits<L>::max, Limits<T>::max));
// Is the given type an acceptable return type? (That is, can it represent
// all possible return values, and is it no larger than the largest of the
// input types?)
template <typename A>
struct AcceptableType {
private:
static constexpr bool not_too_large = sizeof(A) <= sizeof(L) ||
sizeof(A) <= sizeof(H) ||
sizeof(A) <= sizeof(T);
static constexpr bool range_contained =
SafeLe(Limits<A>::lowest, r_min) && SafeLe(r_max, Limits<A>::max);
public:
static constexpr bool value = not_too_large && range_contained;
};
using best_signed_type = typename std::conditional<
AcceptableType<int8_t>::value,
int8_t,
typename std::conditional<
AcceptableType<int16_t>::value,
int16_t,
typename std::conditional<AcceptableType<int32_t>::value,
int32_t,
int64_t>::type>::type>::type;
using best_unsigned_type = typename std::conditional<
AcceptableType<uint8_t>::value,
uint8_t,
typename std::conditional<
AcceptableType<uint16_t>::value,
uint16_t,
typename std::conditional<AcceptableType<uint32_t>::value,
uint32_t,
uint64_t>::type>::type>::type;
public:
// Pick the best type, preferring the same signedness as T but falling back
// to the other one if necessary.
using type = typename std::conditional<
std::is_signed<T>::value,
typename std::conditional<AcceptableType<best_signed_type>::value,
best_signed_type,
best_unsigned_type>::type,
typename std::conditional<AcceptableType<best_unsigned_type>::value,
best_unsigned_type,
best_signed_type>::type>::type;
static_assert(AcceptableType<type>::value, "");
};
} // namespace safe_minmax_impl
template <
typename R = safe_minmax_impl::DefaultType,
typename T = safe_minmax_impl::DefaultType,
typename L = safe_minmax_impl::DefaultType,
typename H = safe_minmax_impl::DefaultType,
typename R2 = typename safe_minmax_impl::TypeOr<
R,
typename safe_minmax_impl::ClampType<
typename safe_minmax_impl::UnderlyingType<T>::type,
typename safe_minmax_impl::UnderlyingType<L>::type,
typename safe_minmax_impl::UnderlyingType<H>::type>::type>::type>
R2 SafeClamp(T x, L min, H max) {
static_assert(IsIntlike<H>::value || std::is_floating_point<H>::value,
"The first argument must be integral or floating-point");
static_assert(IsIntlike<T>::value || std::is_floating_point<T>::value,
"The second argument must be integral or floating-point");
static_assert(IsIntlike<L>::value || std::is_floating_point<L>::value,
"The third argument must be integral or floating-point");
// RTC_DCHECK_LE(min, max);
return SafeLe(x, min)
? static_cast<R2>(min)
: SafeGe(x, max) ? static_cast<R2>(max) : static_cast<R2>(x);
}
} // namespace rtc
#endif // RTC_BASE_NUMERICS_SAFE_MINMAX_H_
| [
"[email protected]"
] | |
f0d75e8a6f58f74e24dfe88b83c85e2846644dfe | 8eae6774231f4a313e7aa8ac30d5c678dc1c2a42 | /ICPC/2019EC E.cpp | 8da8a695345059cede2d5d2e305206b8250699ad | [
"MIT"
] | permissive | windcry1/My-ACM-ICPC | c97b203e5e54d355168ed14db888f4a1b3e6c363 | b85b1c83b72c6b51731dae946a0df57c31d3e7a1 | refs/heads/master | 2021-09-06T20:47:56.525749 | 2021-08-22T14:06:10 | 2021-08-22T14:06:10 | 231,622,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,385 | cpp | /*************************************************************************
>>> Author: WindCry1
>>> Mail: [email protected]
>>> Website: https://windcry1.com
>>> Date: 12/30/2019 11:03:37 PM
*************************************************************************/
#include <cstring>
#include <cmath>
#include <cstdio>
#include <cctype>
#include <cstdlib>
#include <ctime>
#include <vector>
#include <iostream>
#include <string>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#include <complex>
#include <stack>
#include <bitset>
#include <iomanip>
#include <list>
#include <sstream>
#include <fstream>
#if __cplusplus >= 201103L
#include <unordered_map>
#include <unordered_set>
#endif
#define endl '\n'
#define ll long long
#define ull unsigned long long
#define DEBUG(x) cout<<#x<<" : "<<x<<endl;
#define lowbit(x) x&(-x)
#define ls u<<1
#define rs u<<1|1
#define int long long
using namespace std;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const double eps = 1e-8;
const int INF = 0x3f3f3f3f;
const int mod = 1e9+7;
const int dir[4][2]={-1,0,1,0,0,-1,0,1};
struct Edge{
int to,next,val;
}edge[200010];
int head[100010],tot,cnt,n,m;
vector<int> v[100010];
inline void add_edge(int u,int v,int w){
edge[++tot].to=v; edge[tot].val=w; edge[tot].next=head[u]; head[u]=tot;
}
void dfs(int u){
if(u==n) return ;
for(int i=head[u];i;i=edge[i].next){
v[cnt].push_back(edge[i].val);
dfs(edge[i].to);
}
}
map<int,int> cost;
signed main(){
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#ifdef WindCry1
freopen("C:\\Users\\LENOVO\\Desktop\\in.txt","r",stdin);
#endif
cin>>n>>m;
int flow=0;
for(int i=1;i<=m;i++){
int u,v,w;cin>>u>>v>>w;
add_edge(u,v,w);
flow+=w;
}
for(int i=head[1];i;i=edge[i].next){
v[cnt].push_back(edge[i].val);
dfs(edge[i].to);
sort(v[cnt].begin(),v[cnt].end());
++cnt;
}
flow/=(ll)v[0].size();
#ifdef WindCry1
for(int i=0;i<cnt;i++){
for(auto j:v[i]) cout<<j<<" ";cout<<endl;
}
DEBUG(flow);
#endif
for(int i=0;i<cnt;i++){
for(int j=0;j<(int)v[i].size();j++)
if(j>0) cost[j]+=v[i][j]-v[i][j-1];
else cost[j]+=v[i][j];
}
int res=0;
#ifdef WindCry1
for(auto i:cost) cout<<i.first<<" : "<<i.second<<endl;
DEBUG(flow);
#endif
for(auto i:cost){
if(flow<=i.second) {
res+=flow*i.first;
break;
}
res+=i.first*i.second;
flow-=i.second;
}
cout<<res<<endl;
return 0;
}
| [
"[email protected]"
] | |
ca28bfda803455d6e19371f29df496088f931c86 | c8fcc1acf73585045a5c7213cfb9f90e4c1e809e | /HDU/4902-线段树.cpp | f83aa142cdb105a6383ec5f60565b74e1e8af4b2 | [] | no_license | Jonariguez/ACM_Code | 6db4396b20d0b0aeef30e4d47b51fb5e3ec48e03 | 465a11746d577197772f64aa11209eebd5bfcdd3 | refs/heads/master | 2020-03-24T07:09:53.482953 | 2018-11-19T09:21:33 | 2018-11-19T09:21:33 | 142,554,816 | 3 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,535 | cpp | /*
线段树+set、gcd标记
这里的gcd标记其实就是和add标记一样,只不过是
一直都不把它算到dat里,而是一直保存到所有的
操作进行完(vector),然后把所有的set和gcd标记都推到
叶子节点,最后再一个一个的取GCD,输出最后结果。
(独自完成)
*/
#include <stdio.h>
#include <string.h>
#include <stack>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
const int maxn=100000+10;
ll a[maxn],dat[maxn*4],set[maxn*4];
vector<ll> gcd[maxn*4];
void pushDown(int k){
if(set[k]>=0){
dat[k*2]=dat[k*2+1]=set[k]; //这里是左右子树,而不是dat[k]=set[k]
gcd[k*2].clear();gcd[k*2+1].clear();
set[k*2]=set[k*2+1]=set[k];
set[k]=-1;
}
if(gcd[k].size()){
for(int i=0;i<gcd[k].size();i++){
gcd[k*2].push_back(gcd[k][i]); //这里要把gcd推下去
gcd[k*2+1].push_back(gcd[k][i]);
}
gcd[k].clear();
}
}
void build(int k,int l,int r){
set[k]=-1;gcd[k].clear();dat[k]=0;
if(l==r){
dat[k]=a[l];return ;
}
int m=(l+r)/2;
build(k*2,l,m);
build(k*2+1,m+1,r);
}
void Set(int a,int b,ll v,int k,int l,int r){
if(a<=l && r<=b){
set[k]=v;dat[k]=v;gcd[k].clear();return ;
}
pushDown(k);
int m=(l+r)/2;
if(a<=m)
Set(a,b,v,k*2,l,m);
if(b>m)
Set(a,b,v,k*2+1,m+1,r);
}
void update(int a,int b,ll v,int k,int l,int r){
if(a<=l && r<=b){
gcd[k].push_back(v);return ;
}
pushDown(k);
int m=(l+r)/2;
if(a<=m)
update(a,b,v,k*2,l,m);
if(b>m)
update(a,b,v,k*2+1,m+1,r);
}
ll GCD(ll a,ll b){
return b==0?a:GCD(b,a%b);
}
void print(int k,int l,int r){
if(l==r){
ll res=dat[k];
for(int i=0;i<gcd[k].size();i++)
if(res>gcd[k][i])
res=GCD(res,gcd[k][i]);
printf("%lld ",res);
return ;
}
pushDown(k);
int m=(l+r)/2;
print(k*2,l,m);
print(k*2+1,m+1,r);
}
int main()
{
int i,j,n,q,T;
scanf("%d",&T);
while(T--){
scanf("%d",&n);
for(i=1;i<=n;i++)
scanf("%lld",&a[i]);
build(1,1,n);
scanf("%d",&q);
int o,l,r;
ll x;
while(q--){
scanf("%d%d%d%lld",&o,&l,&r,&x);
if(o==1)
Set(l,r,x,1,1,n);
else
update(l,r,x,1,1,n);
}
print(1,1,n);
printf("\n");
}
return 0;
}
| [
"[email protected]"
] | |
f31cd18104c5101902e29984aa3c2d8763784078 | 53ff6f75dd923258788c01022807de0a466373e2 | /102598058/ERModel.h | 5eea1f3e927cda16715e3d528ef82c9fbb9e2f78 | [] | no_license | Yimei/ERD_20130922 | 296c194e994996ea00d72bc96b7e6ae3e3e0aa50 | c470816a6121be5749255be84a1777a79511b5b9 | refs/heads/master | 2020-05-18T20:28:11.718004 | 2013-10-04T00:44:30 | 2013-10-04T00:44:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,639 | h | #ifndef _ERModel_H_
#define _ERModel_H_
#include "string"
#include <vector>
#include "Component.h"
#include "ComponentFactory.h"
#include <iostream>
using namespace std;
class ERModel{
public:
ERModel();
virtual ~ERModel();
void addNode(string);
string getWholeName(string);
void showTable();
void setPrimaryKey();
void checkFirstNodeId();
void checkSecondNodeId();
void checkEntity();
void showAttributeTable(string);
void checkPrimaryKey();
vector<string> splitString(string,string);
void showPrimary();
Component* getFirstNode();
Component* getSecondNode();
void addConnection(Component* nodeOne, Component* nodeTwo);
void getTable();
void exit();
vector<Component*> getVector();
void displayTable();
void removePKfromAttribute();
void loadFile();
void saveFile();
void addComponentsFromFile(vector<string>);
void addConnectionFromFile(vector<string>);
void addPrimaryKey(vector<string>);
int getPresentID();
void initialPresentID();
void displayComponentTable();
void displayConnectionTable();
void updateID();
private:
vector<Component*> _components;
vector<vector<int>> _connections;
int _id;
string _firstNodeId;
string _secondNodeId;
int _nodeOne;
int _nodeTwo;
ComponentFactory* _componentFactory;
int _cardinality;
string _entityId;
Component* _entityTemp;
Component* _entityAttribute;
string _primaryKey;
vector<int> _attributesId;
vector<string> _primaryKeyVector;
int thisKey;
vector<Component*> _entityHasPrimaryKey;
vector<vector<string>> _pkOfEntities;
vector<Component*> _attributeWithOutPK;
vector<string> splitStringItem;
int _presentID;
int id;
};
#endif | [
"[email protected]"
] | |
79ef39a409537f45888b4db0fc843030b371a3eb | 3e24c18baf94b2a23facbdcdc002d05ae30033d2 | /GUI/Motor2D/j1Fonts.h | efa83dfa467305a961cdd531f262763d704dda80 | [
"MIT"
] | permissive | rodrigobmg/GUI_2D | 645cb613afb60def958e52fbc4f9ca0019ff5599 | eb373c43dd1dca951c6629da3dce0e609581cf64 | refs/heads/master | 2020-05-07T22:08:38.860944 | 2018-03-06T17:55:33 | 2018-03-06T17:55:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 848 | h | #ifndef __j1FONTS_H__
#define __j1FONTS_H__
#include "j1Module.h"
#include "SDL\include\SDL_pixels.h"
#include "p2List.h"
#define DEFAULT_FONT "Homework/Fonts/FritzQuadrata Regular.ttf"
#define DEFAULT_FONT_SIZE 13
struct SDL_Texture;
struct _TTF_Font;
class j1Fonts : public j1Module
{
public:
j1Fonts();
// Destructor
virtual ~j1Fonts();
// Called before render is available
bool Awake(pugi::xml_node&);
// Called before quitting
bool CleanUp();
// Load Font
_TTF_Font* const Load(const char* path, int size = 12);
// Create a surface from text
SDL_Texture* Print(const char* text, SDL_Color color = {255, 255, 255, 255}, _TTF_Font* font = NULL);
bool CalcSize(const char* text, int& width, int& height, _TTF_Font* font = NULL) const;
public:
p2List<_TTF_Font*> fonts;
_TTF_Font* default;
};
#endif // __j1FONTS_H__ | [
"[email protected]"
] | |
47ffaf21ff9e29081e5a7df8550114735b542940 | 407bf979695671dd33b1b6caec9b82657d818861 | /achetable.h | 97a7d430992a6f7b4c0c6d72cd340ca07cd136c0 | [] | no_license | ECN-SEC-SMP/projet2021-jost-collineau-jubineau-perron | 091c4ede889692e269854de949b0807053d3be30 | 35ee1323d3238f0aaf3b6211a6a17c9294704069 | refs/heads/main | 2023-04-11T10:15:32.442795 | 2021-04-25T15:36:25 | 2021-04-25T15:36:25 | 358,582,822 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,451 | h | #pragma once
#include "case.h"
#include "joueur.h"
/**
* @class Achetable
* La classe Achetable permet d'abstraire une case achetable quelconque du plateau de jeu.
* La classe Achetable est fille de la classe Case.
* Cette classe n'a pas pour but d'être utilisée telle quelle, il s'agit en fait d'une
* classe mère de laquelle découleront les véritables cases qui constituerons notre plateau.
*
* Les classes découlant de Case sont Gare, Constructible et Service.
* Nous notons l'implémentation de la méthode isAchetable(), virtuelle dans Case,
* qui permettra de différencier ces les objets achetables des non achetables.
*/
class Achetable : public Case //Case achetable
{
private :
protected :
int prix; //@var prix Prix d'achat
int loyer; //@var loyer Loyer de la case une foix achetée
Joueur* proprietaire; //@var proprietaire pointeur vers le proprietaire
public :
//@fn Achetable Constructeur
Achetable(string nom, int id, Joueur* proprietaire, int prix);
virtual bool acheter(Joueur* acheteur);
//@fn calculLoyer Calcul du loyer
virtual int calculLoyer() = 0;
Joueur* getProprio();
int getPrix();
int getLoyer();
void setLoyer(int nouveauLoyer);
bool isAchetable()override { return true; }
//@fn write Surcharge de l'opérateur <<
ostream& write( ostream& stm )const override;
}; | [
""
] | |
0d5b5b0f457d4b8fc5ef81f7075e214ea269b188 | 582517794a4bbde2c2a995591a841ef4407cc550 | /helloworld/main.cpp | 035a52ac111a57b3c6bbf989b2bb664833d76cba | [] | no_license | Heurto/helloworld | 51186994da9b33871c53b9ed935f3b3a3b2a3dd4 | 942516f658556aeab47daa2474e5ac2545ad738c | refs/heads/master | 2021-01-23T22:05:44.060064 | 2014-09-23T11:52:06 | 2014-09-23T11:52:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 77 | cpp | #include <stdio.h>
int main()
{
printf("hello wolrd\n"); // commentaires
} | [
"[email protected]"
] | |
ed60369a99ea6104f75e216286862056c386ec20 | 80de979fa6dfeeb62af29f897914abdb743624c4 | /AlgorithmsUCSD/Toolbox/week3/moneyChange.cpp | 5be709b11acd32ba640c1c0a8846025f8bbabcd7 | [] | no_license | NoviScl/Coursera | cebc7d4637594983da5b8c55a5e360ddfea631d6 | dd4f52384f9c26c1c7a5d29831284a1043926630 | refs/heads/master | 2020-03-14T03:23:05.282699 | 2018-09-05T08:21:30 | 2018-09-05T08:21:30 | 131,418,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 160 | cpp | #include <iostream>
using namespace std;
int main(){
int m, count=0;
cin>>m;
count += m/10;
m = m%10;
count += m/5;
m = m%5;
count += m;
cout<<count;
} | [
"[email protected]"
] | |
cb8347eead0a34ca263888e82b9ecb1ee4714f38 | 25811066bd7bee9fceeb5efca142b41bdc55bdbd | /OpenMP/main.cpp | fc392047a06d27c811571160f5eb0ac29471bb44 | [] | no_license | facuMH/HeisenbergModel | bca831c29c87f40972ebdcdea0259ff5bd1c9619 | 0dfa15cb7410494152d6bd22f77c44e21f445d0d | refs/heads/main | 2023-02-11T21:20:37.828215 | 2021-01-14T20:46:41 | 2021-01-14T20:46:41 | 328,494,995 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,542 | cpp | #include <random>
#include <chrono>
#include <math.h>
#include <ctime>
#include <iostream>
#include <fstream>
#include <memory>
#include <sstream>
#include <iomanip>
#include <array>
#include <string>
#include "omp.h"
#include "variables.h"
#include "funs.h"
#include "main_kernels.h"
#include "update.h"
#include "energy.h"
#include "graphics.h"
const std::string file_name = "spin_conf";
int L; // Size
int N; // = 8*L*L*L;
int RBN; // = 4*L*L*L;
int * oc;
float * macr_r, * macr_b, * mafe_r, * mafe_b; // ocupation matrixes
float * KA_r, * KA_b; // random interaction constants
float * mc_r, * mc_b; // magenetization matrixes
float * mx_r, * my_r, * mz_r; // spin coordinates
float * mx_b, * my_b, * mz_b; // spin coordinates
float * Jz_r, * Jy_r, * Jx_r; // random interaction constants
float * Dz_r, * Dy_r, * Dx_r; // random interaction constants
float * Jz_b, * Jy_b, * Jx_b; // random interaction constants
float * Dz_b, * Dy_b, * Dx_b; // random interaction constants
float * red_x, * red_y, * red_z; // Auxiliar Matrixes
float * black_x, * black_y, * black_z; // Auxiliar Matrixes
// counter matrixes
int * cont1;
int * cont2;
float * sum_array_1, * sum_array_2, * sum_array_3;
static int allocate_data (void)
{
oc = (int *) calloc (N, sizeof(int));
macr_r = (float *) calloc (RBN, sizeof(float));
macr_b = (float *) calloc (RBN, sizeof(float));
mafe_r = (float *) calloc (RBN, sizeof(float));
mafe_b = (float *) calloc (RBN, sizeof(float));
mc_r = (float *) calloc (RBN, sizeof(float));
mc_b = (float *) calloc (RBN, sizeof(float));
KA_r = (float *) calloc (RBN, sizeof(float));
KA_b = (float *) calloc (RBN, sizeof(float));
mx_r = (float *) calloc (RBN, sizeof(float));
my_r = (float *) calloc (RBN, sizeof(float));
mz_r = (float *) calloc (RBN, sizeof(float));
mx_b = (float *) calloc (RBN, sizeof(float));
my_b = (float *) calloc (RBN, sizeof(float));
mz_b = (float *) calloc (RBN, sizeof(float));
Jz_r = (float *) calloc (RBN, sizeof(float));
Jy_r = (float *) calloc (RBN, sizeof(float));
Jx_r = (float *) calloc (RBN, sizeof(float));
Dz_r = (float *) calloc (RBN, sizeof(float));
Dy_r = (float *) calloc (RBN, sizeof(float));
Dx_r = (float *) calloc (RBN, sizeof(float));
Jz_b = (float *) calloc (RBN, sizeof(float));
Jy_b = (float *) calloc (RBN, sizeof(float));
Jx_b = (float *) calloc (RBN, sizeof(float));
Dz_b = (float *) calloc (RBN, sizeof(float));
Dy_b = (float *) calloc (RBN, sizeof(float));
Dx_b = (float *) calloc (RBN, sizeof(float));
red_x = (float *) calloc (RBN, sizeof(float));
red_y = (float *) calloc (RBN, sizeof(float));
red_z = (float *) calloc (RBN, sizeof(float));
black_x = (float *) calloc (RBN, sizeof(float));
black_y = (float *) calloc (RBN, sizeof(float));
black_z = (float *) calloc (RBN, sizeof(float));
cont1 = (int *) calloc (RBN, sizeof(int));
cont2 = (int *) calloc (RBN, sizeof(int));
sum_array_1 = (float *) calloc (4*L*L, sizeof(float));
sum_array_2 = (float *) calloc (4*L*L, sizeof(float));
sum_array_3 = (float *) calloc (4*L*L, sizeof(float));
std::cout << "size: " << N << "\n";
if (!macr_r || !macr_b || !mafe_r || !mafe_b ||
!mc_r || !mc_b || !KA_r || !KA_b ||
!mx_r || !my_r || !mz_r || !mx_b || !my_b || !mz_b ||
!Jx_r || !Jy_r || !Jz_r || !Jx_b || !Jy_b || !Jz_b ||
!Dx_r || !Dy_r || !Dz_r || !Dx_b || !Dy_b || !Dz_b ||
!red_x || !red_y || !red_z || !black_x || !black_y || !black_z ||
!cont1 || !cont2 || !sum_array_1 || !sum_array_2 || !sum_array_3
){
fprintf(stderr, "cannot allocate data\n");
exit(0);
}
return 1;
}
static void free_data(){
std::cout << "oc.. " << std::flush;
if (oc) free(oc);
std::cout << "macr.. " << std::flush;
if (macr_r) free(macr_r);
if (macr_b) free(macr_b);
std::cout << "mafe_r.. "<< std::flush;
if (mafe_r) free(mafe_r);
std::cout << "mafe_b.. "<< std::flush;
if (mafe_b) free(mafe_b);
std::cout << "mc.. "<< std::flush;
if (mc_r) free(mc_r);
if (mc_b) free(mc_b);
std::cout << "KA.. "<< std::flush;
if (KA_r) free(KA_r);
if (KA_b) free(KA_b);
std::cout << "mx.. "<< std::flush;
if (mx_r) free(mx_r);
if (mx_b) free(mx_b);
std::cout << "my.. "<< std::flush;
if (my_r) free(my_r);
if (my_b) free(my_b);
std::cout << "mz.. "<< std::flush;
if (mz_r) free(mz_r);
if (mz_b) free(mz_b);
std::cout << "Jx.. "<< std::flush;
if (Jx_r) free(Jx_r);
if (Jx_b) free(Jx_b);
std::cout << "Jy.. "<< std::flush;
if (Jy_r) free(Jy_r);
if (Jy_b) free(Jy_b);
std::cout << "Jz.. "<< std::flush;
if (Jz_r) free(Jz_r);
if (Jz_b) free(Jz_b);
std::cout << "Dy.. "<< std::flush;
if (Dx_r) free(Dx_r);
if (Dx_b) free(Dx_b);
std::cout << "Dy.. "<< std::flush;
if (Dy_r) free(Dy_r);
if (Dy_b) free(Dy_b);
std::cout << "Dz.. "<< std::flush;
if (Dz_r) free(Dz_r);
if (Dz_b) free(Dz_b);
std::cout << "red_x.. "<< std::flush;
if (red_x) free(red_x);
std::cout << "red_y.. "<< std::flush;
if (red_y) free(red_y);
std::cout << "red_z.. "<< std::flush;
if (red_z) free(red_z);
std::cout << "black_x.. "<< std::flush;
if (black_x) free(black_x);
std::cout << "black_y.. "<< std::flush;
if (black_y) free(black_y);
std::cout << "black_z.. "<< std::flush;
if (black_z) free(black_z);
if (cont1) free(cont1);
if (cont2) free(cont2);
if (sum_array_1) free(sum_array_1);
if (sum_array_2) free(sum_array_2);
if (sum_array_3) free(sum_array_3);
};
/*
This function defines the element for each site of the cubic matrix
*/
void set_interac(trng::lcg64_shift * Rng, trng::uniform_dist<float> Uni){
init_oc(oc, macr_r, mafe_r, L, Rng, Uni, RED_TILES);
init_oc(oc, macr_b, mafe_b, L, Rng, Uni, BLACK_TILES);
interac_init(oc, KA_r, Jx_r, Jy_r, Jz_r,
Dx_r, Dy_r, Dz_r, RED_TILES, L);
interac_init(oc, KA_b, Jx_b, Jy_b, Jz_b,
Dx_b, Dy_b, Dz_b, BLACK_TILES, L);
}
void inline swap(float* &a, float* &b) {
float * temp = a;
a = b;
b = temp;
}
int main(int argc, char * argv[]){
bool save_files = false;
bool graphics = false;
bool size = false;
bool temps = false;
bool fracs = false;
while (*++argv){
if ((*argv)[0] == '-'){
switch ((*argv)[1]){
case 'h':
std::cout << "\n\t-g for graphic.\n\t-o for file output.";
std::cout << "\n\t-L X where X is an integer for the size";
std::cout << "considering N=(2*L)^3";
std::cout << "\n\t-t for the t_mic tmax parameters";
std::cout << "\n\t-f for the frac and flucfrac parameters";
exit(0);
case 'o':
save_files = true;
std::cout << "\n\tFile output enables\n";
break;
case 'g':
graphics = true;
std::cout << "\n\tGraphics representation activated\n";
break;
case 'L':
L = atoi(argv[1]);
N = 8*L*L*L;
RBN = 4*L*L*L;
size = true;
break;
case 't':
t_mic = atoi(argv[1]);
tmax = atoi(argv[2]);
temps = true;
std::cout << "\n\tt_mic:"<<t_mic<<" and tmax:"<<tmax;
break;
case 'f':
frac = std::stof(argv[1]);
flucfrac = std::stof(argv[2]);
std::cout << "\n\tfrac:"<< frac <<" and flucfrac:"<<flucfrac ;
fracs = true;
break;
case 'm':
MAX_T = atoi(argv[1]);
std::cout << "\n\tMax number of threads: " << MAX_T;
break;
default:
std::cout << "\n\tUnknown option -\n\n" << (*argv)[1] << "\n";
break;
}
}
}
if (!size){
std::cout << "Please run again and add -L X to the command line ";
std::cout << " where X is an integer for the size, considering ";
std::cout << "N = (2*L)^3.\n";
exit(1);
}
if (!temps){
t_mic = 100;
tmax = 1000;
}
if (!fracs){
frac = 0.55f;
flucfrac = 0.35f;
}
int i,j,k,t,ll1,ll3;
float R, tmp1, tmp2;
float s_mx, s_my, s_mz;
float s_mx_1, s_my_1, s_mz_1;
float s_mx_2, s_my_2, s_mz_2;
float cr_mx, cr_my, cr_mz, cr_mx_1, cr_my_1, cr_mz_1, cr_mx_2, cr_my_2;
float cr_mz_2;
float fe_mx, fe_my, fe_mz, fe_mx_1, fe_my_1, fe_mz_1, fe_mx_2, fe_my_2;
float fe_mz_2;
float mag;
float ss_mx[Nptos], ss_my[Nptos], ss_mz[Nptos];
float ss_mx_1[Nptos], ss_my_1[Nptos], ss_mz_1[Nptos];
float ss_mx_2[Nptos], ss_my_2[Nptos], ss_mz_2[Nptos];
float ss_m[Nptos], ss_m2[Nptos], ss_m4[Nptos];
float ss_m_1[Nptos], ss_m_2[Nptos], temp_a[Nptos], R_a[Nptos];
float ss_U[Nptos], ss_U2[Nptos];
float sfe_mx[Nptos], sfe_my[Nptos], sfe_mz[Nptos];
float sfe_mx_1[Nptos], sfe_my_1[Nptos], sfe_mz_1[Nptos];
float sfe_mx_2[Nptos], sfe_my_2[Nptos], sfe_mz_2[Nptos];
float scr_mx[Nptos], scr_my[Nptos], scr_mz[Nptos];
float scr_mx_1[Nptos], scr_my_1[Nptos], scr_mz_1[Nptos];
float scr_mx_2[Nptos], scr_my_2[Nptos], scr_mz_2[Nptos];
float tmp1_x, tmp1_y, tmp1_z;
float tmp2_x, tmp2_y, tmp2_z;
float cr1_x, cr1_y, cr1_z;
float cr2_x, cr2_y, cr2_z;
float fe1_x, fe1_y, fe1_z;
float fe2_x, fe2_y, fe2_z;
float E_afm_ex, E_afm_an, E_afm_dm, U, U2, m1, m2, m4;
// time sampling vars
double start = 0.0;
double stop = 0.0;
double nseconds = 0.0;
double total = 0.0;
double high = 0.0;
double low = 0.0;
double aux_termal = 0.0;
double aux_second = 0.0;
double total_time = 0.0;
// accepted changes vars
int suma = 0;
int counter = 0;
// auxiliars for loops neighbours indexes
int cjm = 0;
int ckm = 0;
int cim = 0;
int index = 0;
int idx_jk, idx_ik, idx_ij;
int idx_ijk;
int idx_k, idx_j, idx_i;
trng::lcg64_shift Rng[MAX_T];
trng::uniform_dist<float> Uni(0,1);
for (int i=0; i<MAX_T; i++){
Rng[i].split(MAX_T,i);
}
allocate_data();
// initialization of matrixs
ll1 = 0;
ll3 = 0;
std::cout << "about to save conf\n";
set_interac(Rng, Uni);
std::cout << ". saved" << "\n";
//fills mx according to oc values
mc_init(oc, mc_r, L, RED_TILES);
mc_init(oc, mc_b, L, BLACK_TILES);
MyApp app;
if (graphics){
app.App_init();
app.init(L);
}
std::cout << "\n";
std::cout << "initialized mc" << "\n";
H = Hfc;
Hx = 0.0f;
Hy = 0.0f;
Hz = H;
std::fill(std::begin(ss_mx), std::end(ss_mx), 0.0f);
std::fill(std::begin(ss_my), std::end(ss_my), 0.0f);
std::fill(std::begin(ss_mz), std::end(ss_mz), 0.0f);
std::fill(std::begin(ss_mx_1), std::end(ss_mx_1), 0.0f);
std::fill(std::begin(ss_my_1), std::end(ss_my_1), 0.0f);
std::fill(std::begin(ss_mz_1), std::end(ss_mz_1), 0.0f);
std::fill(std::begin(ss_mx_2), std::end(ss_mx_2), 0.0f);
std::fill(std::begin(ss_my_2), std::end(ss_my_2), 0.0f);
std::fill(std::begin(ss_mz_2), std::end(ss_mz_2), 0.0f);
std::fill(std::begin(scr_mx), std::end(scr_mx), 0.0f);
std::fill(std::begin(scr_my), std::end(scr_my), 0.0f);
std::fill(std::begin(scr_mz), std::end(scr_mz), 0.0f);
std::fill(std::begin(scr_mx_1), std::end(scr_mx_1), 0.0f);
std::fill(std::begin(scr_my_1), std::end(scr_my_1), 0.0f);
std::fill(std::begin(scr_mz_1), std::end(scr_mz_1), 0.0f);
std::fill(std::begin(scr_mx_2), std::end(scr_mx_2), 0.0f);
std::fill(std::begin(scr_my_2), std::end(scr_my_2), 0.0f);
std::fill(std::begin(scr_mz_2), std::end(scr_mz_2), 0.0f);
std::fill(std::begin(ss_m), std::end(ss_m), 0.0f);
std::fill(std::begin(ss_m2), std::end(ss_m2), 0.0f);
std::fill(std::begin(ss_m4), std::end(ss_m4), 0.0f);
std::fill(std::begin(ss_m_1), std::end(ss_m_1), 0.0f);
std::fill(std::begin(ss_m_2), std::end(ss_m_2), 0.0f);
std::fill(std::begin(R_a), std::end(R_a), 0.0f);
std::fill(std::begin(ss_U), std::end(ss_U), 0.0f);
std::fill(std::begin(ss_U2), std::end(ss_U2), 0.0f);
total_time = omp_get_wtime();
for (ll3=0; ll3 < Nsamp; ll3++){
Temp = Tempmax;
//initial random spin configuration.
init_fill(mx_r, my_r, mz_r, RED_TILES, L, Rng, Uni);
init_fill(mx_b, my_b, mz_b, BLACK_TILES, L, Rng, Uni);
std::cout << "initialized mx my mz" << "\n";
H = Hfc;
for (ll1=0; ll1<Nptos; ll1++){
std::cout << " round: " << ll1 << " - " <<std::flush;
Temp -= (Tempmax-Tempmin)/Nptos;
aux_second = 0.0;
aux_termal = 0.0;
R = 0.0f;
mag = 0.0f;
m1 = 0.0f;
m2 = 0.0f;
m4 = 0.0f;
U = 0.0f;
U2 = 0.0f;
s_mx = 0.0f;
s_my = 0.0f;
s_mz = 0.0f;
s_mx_1 = 0.0f;
s_my_1 = 0.0f;
s_mz_1 = 0.0f;
s_mx_2 = 0.0f;
s_my_2 = 0.0f;
s_mz_2 = 0.0f;
cr_mx = 0.0f;
cr_my = 0.0f;
cr_mz = 0.0f;
cr_mx_1 = 0.0f;
cr_my_1 = 0.0f;
cr_mz_1 = 0.0f;
cr_mx_2 = 0.0f;
cr_my_2 = 0.0f;
cr_mz_2 = 0.0f;
fe_mx = 0.0f;
fe_my = 0.0f;
fe_mz = 0.0f;
fe_mx_1 = 0.0f;
fe_my_1 = 0.0f;
fe_mz_1 = 0.0f;
fe_mx_2 = 0.0f;
fe_my_2 = 0.0f;
fe_mz_2 = 0.0f;
suma = 0;
counter = 0;
// Termalizacion previa
for (t=0; t<tmax; t++){
memset(cont1, 0, RBN*sizeof(int));
memset(cont2, 0, RBN*sizeof(int));
start = omp_get_wtime();
update(mx_r, my_r, mz_r, KA_r, mc_r, Jx_r, Jy_r, Jz_r, Dx_r,
Dy_r, Dz_r, Jx_b, Jy_b, Jz_b, Dx_b, Dy_b, Dz_b,
RED_TILES, red_x, red_y, red_z, mx_b, my_b,
mz_b, L, Hx, Hy, Hz, Temp, cont1, Rng, Uni);
update(mx_b, my_b, mz_b, KA_b, mc_b, Jx_b, Jy_b, Jz_b, Dx_b,
Dy_b, Dz_b, Jx_r, Jy_r, Jz_r, Dx_r, Dy_r, Dz_r,
BLACK_TILES, black_x, black_y, black_z, mx_r, my_r,
mz_r, L, Hx, Hy, Hz, Temp, cont2, Rng, Uni);
stop = omp_get_wtime();
#pragma omp parallel for shared (cont1, cont2) reduction(+: suma)
for (int i=0; i<RBN; i++){
suma += cont1[i] + cont2[i];
}
swap(mx_r,red_x);
swap(my_r,red_y);
swap(mz_r,red_z);
swap(mx_b,black_x);
swap(my_b,black_y);
swap(mz_b,black_z);
aux_termal += 1.0e9*(stop- start) / (N);
counter +=1;
if (graphics)
app.drawOne(mx_r, my_r, mz_r, mx_b, my_b, mz_b);
}
std::cout << " average: " << (suma/(float)counter)/(float)N;
suma = 0;
counter = 0;
for (t=0; t<tmax; t++){
memset(cont1, 0, RBN*sizeof(int));
memset(cont2, 0, RBN*sizeof(int));
start = omp_get_wtime();
update(mx_r, my_r, mz_r, KA_r, mc_r, Jx_r, Jy_r, Jz_r, Dx_r,
Dy_r, Dz_r, Jx_b, Jy_b, Jz_b, Dx_b, Dy_b, Dz_b,
RED_TILES, red_x, red_y, red_z, mx_b, my_b,
mz_b, L, Hx, Hy, Hz, Temp, cont1, Rng, Uni);
update(mx_b, my_b, mz_b, KA_b, mc_b, Jx_b, Jy_b, Jz_b, Dx_b,
Dy_b, Dz_b, Jx_r, Jy_r, Jz_r, Dx_r, Dy_r, Dz_r,
BLACK_TILES, black_x, black_y, black_z, mx_r, my_r,
mz_r, L, Hx, Hy, Hz, Temp, cont2, Rng, Uni);
stop = omp_get_wtime();
#pragma omp parallel for shared(cont1, cont2) reduction(+: suma)
for (int i=0; i<RBN; i++){
suma += cont1[i] + cont2[i];
}
swap(mx_r,red_x);
swap(my_r,red_y);
swap(mz_r,red_z);
swap(mx_b,black_x);
swap(my_b,black_y);
swap(mz_b,black_z);
counter += 1;
aux_second += 1.0e9*(stop- start) / (N);
if (graphics)
app.drawOne(mx_r, my_r, mz_r, mx_b, my_b, mz_b);
R += suma;
if (t%t_mic == 0){
tmp1_x = 0.0f;
tmp1_y = 0.0f;
tmp1_z = 0.0f;
tmp2_x = 0.0f;
tmp2_y = 0.0f;
tmp2_z = 0.0f;
cr1_x = 0.0f;
cr1_y = 0.0f;
cr1_z = 0.0f;
cr2_x = 0.0f;
cr2_y = 0.0f;
cr2_z = 0.0f;
fe1_x = 0.0f;
fe1_y = 0.0f;
fe1_z = 0.0f;
fe2_x = 0.0f;
fe2_y = 0.0f;
fe2_z = 0.0f;
calculate(mx_r, my_r, mz_r, mc_r, sum_array_1, sum_array_2, sum_array_3,
RED_TILES, L);
#pragma omp parallel for shared (sum_array_1,sum_array_2,sum_array_3)\
reduction(+:tmp1_x, tmp1_y, tmp1_z)
for (int i=0; i<4*L*L; i++){
tmp1_x += sum_array_1[i];
tmp1_y += sum_array_2[i];
tmp1_z += sum_array_3[i];
}
calculate(mx_b, my_b, mz_b, mc_b, sum_array_1, sum_array_2, sum_array_3,
BLACK_TILES, L);
#pragma omp parallel for shared (sum_array_1,sum_array_2,sum_array_3)\
reduction(+:tmp2_x, tmp2_y, tmp2_z)
for (int i=0; i<4*L*L; i++){
tmp2_x += sum_array_1[i];
tmp2_y += sum_array_2[i];
tmp2_z += sum_array_3[i];
}
calculate(mx_r, my_r, mz_r, macr_r, sum_array_1, sum_array_2, sum_array_3,
RED_TILES, L);
#pragma omp parallel for shared (sum_array_1,sum_array_2,sum_array_3)\
reduction(+:cr1_x, cr1_y, cr1_z)
for (int i=0; i<4*L*L; i++){
cr1_x += sum_array_1[i];
cr1_y += sum_array_2[i];
cr1_z += sum_array_3[i];
}
calculate(mx_b, my_b, mz_b, macr_b, sum_array_1, sum_array_2, sum_array_3,
BLACK_TILES, L);
#pragma omp parallel for shared(sum_array_1,sum_array_2,sum_array_3)\
reduction(+:cr2_x, cr2_y, cr2_z)
for (int i=0; i<4*L*L; i++){
cr2_x += sum_array_1[i];
cr2_y += sum_array_2[i];
cr2_z += sum_array_3[i];
}
calculate(mx_r, my_r, mz_r, mafe_r, sum_array_1, sum_array_2, sum_array_3,
RED_TILES, L);
#pragma omp parallel for shared(sum_array_1,sum_array_2,sum_array_3)\
reduction(+:fe1_x, fe1_y, fe1_z)
for (int i=0; i<4*L*L; i++){
fe1_x += sum_array_1[i];
fe1_y += sum_array_2[i];
fe1_z += sum_array_3[i];
}
calculate(mx_b, my_b, mz_b, mafe_b, sum_array_1, sum_array_2, sum_array_3,
BLACK_TILES, L);
#pragma omp parallel for shared(sum_array_1,sum_array_2,sum_array_3)\
reduction(+:fe2_x, fe2_y, fe2_z)
for (int i=0; i<4*L*L; i++){
fe2_x += sum_array_1[i];
fe2_y += sum_array_2[i];
fe2_z += sum_array_3[i];
}
fe_mx += mfe*(fe1_x+fe2_x)/N;
fe_my += mfe*(fe1_y+fe2_y)/N;
fe_mz += mfe*(fe1_z+fe2_z)/N;
fe_mx_1 += mfe*abs(fe1_x)/(N);
fe_my_1 += mfe*abs(fe1_y)/(N);
fe_mz_1 += mfe*abs(fe1_z)/(N);
fe_mx_2 += mfe*abs(fe2_x)/(N);
fe_my_2 += mfe*abs(fe2_y)/(N);
fe_mz_2 += mfe*abs(fe2_z)/(N);
cr_mx += mcr*(cr1_x + cr2_x)/N;
cr_my += mcr*(cr1_y + cr2_y)/N;
cr_mz += mcr*(cr1_z + cr2_z)/N;
cr_mx_1 += mcr*abs(cr1_x)/(N);
cr_my_1 += mcr*abs(cr1_y)/(N);
cr_mz_1 += mcr*abs(cr1_z)/(N);
cr_mx_2 += mcr*abs(cr2_x)/(N);
cr_my_2 += mcr*abs(cr2_y)/(N);
cr_mz_2 += mcr*abs(cr2_z)/(N);
s_mx += (tmp1_x + tmp2_x)/N;
s_my += (tmp1_y + tmp2_y)/N;
s_mz += (tmp1_z + tmp2_z)/N;
s_mx_1 += abs(tmp1_x)/N;
s_my_1 += abs(tmp1_y)/N;
s_mz_1 += abs(tmp1_z)/N;
s_mx_2 += abs(tmp2_x)/N;
s_my_2 += abs(tmp2_y)/N;
s_mz_2 += abs(tmp2_z)/N;
mag += (((tmp1_x+tmp2_x)/N)*Hx+((tmp1_y+tmp2_y)/N)*Hy+((tmp1_z+tmp2_z)/N)*Hz)/H;
m1 += 2.0f*sqrt(p(tmp1_x/N,2)+p(tmp1_y/N,2)+p(tmp1_z/N,2));
m2 += 4.0f*(p(tmp1_x/N,2)+p(tmp1_y/N,2)+p(tmp1_z/N,2));
m4 += 16.0f*p(p(tmp1_x/N,2)+p(tmp1_y/N,2)+p(tmp1_z/N,2),2);
E_afm_ex = 0.0f;
E_afm_an = 0.0f;
E_afm_dm = 0.0f;
energy(mx_r, my_r, mz_r, sum_array_1, sum_array_2, sum_array_3, KA_r, mc_r,
Jz_r, Jy_r, Jx_r, Dz_r, Dy_r, Dx_r,
Jz_b, Jy_b, Jx_b, Dz_b, Dy_b, Dx_b,
mx_b, my_b, mz_b, RED_TILES, L);
#pragma omp parallel for shared(sum_array_1,sum_array_2,sum_array_3)\
reduction(+:E_afm_ex, E_afm_an, E_afm_dm)
for (int i=0; i<4*L*L; i++){
E_afm_an += sum_array_1[i];
E_afm_ex += sum_array_2[i];
E_afm_dm += sum_array_3[i];
}
energy(mx_b, my_b, mz_b, sum_array_1, sum_array_2, sum_array_3, KA_b, mc_b,
Jz_b, Jy_b, Jx_b, Dz_b, Dy_b, Dx_b,
Jz_r, Jy_r, Jx_r, Dz_r, Dy_r, Dx_r,
mx_r, my_r, mz_r, BLACK_TILES, L);
#pragma omp parallel for shared(sum_array_1,sum_array_2,sum_array_3)\
reduction(+:E_afm_ex, E_afm_an, E_afm_dm)
for (int i=0; i<4*L*L; i++){
E_afm_an += sum_array_1[i];
E_afm_ex += sum_array_2[i];
E_afm_dm += sum_array_3[i];
}
E_afm_ex = 0.5f*E_afm_ex/N; //la energia de intercambio se cuenta dos veces
E_afm_dm = 0.5f*E_afm_dm/N; //la energia de intercambio se cuenta dos veces
E_afm_an = E_afm_an/N;
U += E_afm_ex + E_afm_an + E_afm_dm;
U2 += p(E_afm_ex + E_afm_an + E_afm_dm,2);
}
}
suma = 0;
counter = 0;
nseconds = (aux_termal + aux_second)/(tmax*2);
high = high > nseconds ? high : nseconds ;
if (!low){
low = nseconds;
} else {
low = nseconds > low ? low : nseconds;
}
std::cout << " partial - nsec: " << nseconds;
total += nseconds;
nseconds = 0;
temp_a[ll1] = Temp;
ss_mx[ll1] += (s_mx*t_mic/tmax);
ss_my[ll1] += (s_my*t_mic/tmax);
ss_mz[ll1] += (s_mz*t_mic/tmax);
ss_mx_1[ll1] += (2.0f*s_mx_1*t_mic/tmax);
ss_my_1[ll1] += (2.0f*s_my_1*t_mic/tmax);
ss_mz_1[ll1] += (2.0f*s_mz_1*t_mic/tmax);
ss_mx_2[ll1] += (2.0f*s_mx_2*t_mic/tmax);
ss_my_2[ll1] += (2.0f*s_my_2*t_mic/tmax);
ss_mz_2[ll1] += (2.0f*s_mz_2*t_mic/tmax);
scr_mx[ll1] += (cr_mx*t_mic/tmax);
scr_my[ll1] += (cr_my*t_mic/tmax);
scr_mz[ll1] += (cr_mz*t_mic/tmax);
scr_mx_1[ll1] += (2.0f*cr_mx_1*t_mic/tmax);
scr_my_1[ll1] += (2.0f*cr_my_1*t_mic/tmax);
scr_mz_1[ll1] += (2.0f*cr_mz_1*t_mic/tmax);
scr_mx_2[ll1] += (2.0f*cr_mx_2*t_mic/tmax);
scr_my_2[ll1] += (2.0f*cr_my_2*t_mic/tmax);
scr_mz_2[ll1] += (2.0f*cr_mz_2*t_mic/tmax);
sfe_mx[ll1] += (fe_mx*t_mic/tmax);
sfe_my[ll1] += (fe_my*t_mic/tmax);
sfe_mz[ll1] += (fe_mz*t_mic/tmax);
sfe_mx_1[ll1] += (2.0f*fe_mx_1*t_mic/tmax);
sfe_my_1[ll1] += (2.0f*fe_my_1*t_mic/tmax);
sfe_mz_1[ll1] += (2.0f*fe_mz_1*t_mic/tmax);
sfe_mx_2[ll1] += (2.0f*fe_mx_2*t_mic/tmax);
sfe_my_2[ll1] += (2.0f*fe_my_2*t_mic/tmax);
sfe_mz_2[ll1] += (2.0f*fe_mz_2*t_mic/tmax);
ss_m_2[ll1] += 2.0f*sqrt(p(s_mx_2,2) + p(s_my_2,2) + p(s_mz_2,2))
*t_mic/tmax;
ss_m_1[ll1] += m1*t_mic/tmax;
std::cout << " ss_m_1["<< ll1<< "]:" << ss_m_1[ll1] << "\n";
ss_m2[ll1] += m2*t_mic/tmax;
ss_m4[ll1] += m4*t_mic/tmax; // Binder's calc
ss_m[ll1] += mag*t_mic/tmax;
ss_U[ll1] += U*t_mic/tmax;
ss_U2[ll1] += U2*t_mic/tmax;
R_a[ll1] += R/tmax*N; // acceptance ratio
}
}
std::cout << "\n";
total_time = omp_get_wtime() - total_time;
std::cout << "TOTAL TIME: " << total_time/60 << "\n";
std::cout << "AVERAGE = " << total/Nptos << "\n";
std::cout << "HIGH = " << high << "\n";
std::cout << "LOW = " << low << "\n" << "\n";
if (save_files) {
std::cout << " saving output" << "\n";
// output files
// "t_fe_mx_my_mz_m"//ID//".dat"
std::ofstream file_fe;
file_fe.open (archivofe);
file_fe << "# Nsamp" << " temp_a " << " sfe_mx " << " sfe_my " <<" sfe_mz " << "\n";
// "t_cr_mx_my_mz_m"//ID//".dat"
std::ofstream file_cr;
file_cr.open (archivocr);
file_cr << "# Nsamp" << " temp_a " << " scr_mx " << " scr_my " <<" scr_mz " << "\n";
// "temp_mx_my_mz_m"//ID//".dat"
std::ofstream file_1;
file_1.open (archivo1);
file_1 << "# Nsamp" << " ss_mx_1 " << " ss_my_1 " << " ss_mz_1" << "ss_m_1" << "\n";
// "temp_mxs_mys_mzs_ms"//ID//".dat"
std::ofstream file_2;
file_2.open (archivo2);
file_2 << "# Nsamp" << " ss_mx_2 " << " ss_my_2 " << " ss_mz_2" << "\n";
// "energia"//ID//".dat"
std::ofstream file_energia;
file_energia.open (fenergia);
file_energia << "# Nsamp" << " ss_U" << " " << "ss_U2" << " " << "N*(ss_U2-ss_U^2)/(temp_a[i]^2)" << "\n";
// "susceptibilidad"//ID//".dat"
std::ofstream file_suscep;
file_suscep.open (fsuscep);
file_suscep << "# Nsamp" << " " << "ss_m" << " " << "ss_m2" << " " << "N*(ss_m2-ss_m_1^2)/(temp_a[i])" << "\n";
// "binder"//ID//".dat"
std::ofstream file_binder;
file_binder.open (fbinder);
file_binder << "# Nsamp" << " " << "ss_m2" << " " << "ss_m4" << " " << "1-(ss_m4/(3*ss_m2^2))" << "\n";
// "magnetizacion"//ID//".dat"
std::ofstream file_mag;
file_mag.open (fmag);
file_mag << "campo" << " " << "ss_mx" << " " << "ss_my" << " " << "ss_mz" << " " << "ss_m"<< "\n";
std::ofstream last_state;
last_state.open(std::string("last_state"));
last_state << " " << "i " << " " << "j" << " " << "k" << " " << "mx" << " " << "my" << " " << "mz" << "\n";
std::cout << " about to loop write" << "\n";
for (i=0; i<Nptos; i++){
file_fe << " " << temp_a[i] << " " << sfe_mx[i]/ll3 << " " << sfe_my[i]/ll3 << " " << sfe_mz[i]/ll3 << "\n";
file_cr << " " << temp_a[i] << " " << scr_mx[i]/ll3 << " " << scr_my[i]/ll3 << " " << scr_mz[i]/ll3 << "\n";
file_1 << " " << temp_a[i] << " " << ss_mx_1[i]/ll3 << " " << ss_my_1[i]/ll3 << " " << ss_mz_1[i]/ll3 << " " << ss_m_1[i]/ll3 << "\n";
file_2 << " " << temp_a[i] << " " << ss_mx_2[i]/ll3 << " " << ss_my_2[i]/ll3 << " " << ss_mz_2[i]/ll3 << " " << ss_m_2[i]/ll3 << "\n";
file_energia << " " << temp_a[i] << " " << ss_U[i]/ll3 << " " << ss_U2[i]/ll3 << " " << N*(ss_U2[i] - p(ss_U[i],2))/(ll3*p(temp_a[i],2)) << "\n";
file_suscep << " " << temp_a[i] << " " << ss_m[i]/ll3 << " " << ss_m2[i]/ll3 << " " << N*(ss_m2[i] - p(ss_m_1[i],2))/(ll3*temp_a[i]) << "\n";
file_binder << " " << temp_a[i] << " " << ss_m2[i]/ll3 << " " << ss_m4[i]/ll3 << " " << 1 - (ss_m4[i]/(3*p(ss_m2[i],2)))/(ll3) << "\n";
file_mag << " " << temp_a[i] << " " << ss_mx[i]/ll3 << " " << ss_my[i]/ll3 << " " << ss_mz[i]/ll3 << " " << ss_m[i]/ll3 << "\n";
}
int ixf = 0;
int rbx = 0;
for (int k=0; k<2*L; k++){
for (int j=0; j<2*L; j++){
for (int i=0; i<L; ++i){
ixf = 2*i + STRF(RED_TILES,j,k); // i on full size matrix
rbx = RB(i,j,k);
last_state << " " << ixf << " " << j << " " << k << " " << mx_r[rbx] << " " << my_r[rbx] << " " << mz_r[rbx] << "\n";
ixf = 2*i + STRF(BLACK_TILES,j,k); // i on full size matrix
rbx = RB(i,j,k);
last_state << " " << ixf << " " << j << " " << k << " " << mx_b[rbx] << " " << my_b[rbx] << " " << mz_b[rbx] << "\n";
}
}
}
file_fe.close();
file_cr.close();
file_1.close();
file_2.close();
file_energia.close();
file_suscep.close();
file_binder.close();
file_mag.close();
last_state.close();
}
std::cout << "about to free" << "\n";
free_data();
return 0;
}
| [
"[email protected]"
] | |
ee8811e5e7e013af06ab2e70759b862d70e0915d | 30f1ea99942ebeca2d91eb83b338f6bb0f8cda8a | /fsm/Session.h | 2ab5989e5a2a2743a0021450b3a5882dc83bed9d | [] | no_license | thinkincforeveryone/putty-nd6x | 8d085839b72ad07092eb1b194e0a9b397a8c8ffd | e3efbcdf22bd5323004dccccafd81ce11a359a2f | refs/heads/master | 2020-09-26T18:04:11.415969 | 2019-12-06T10:50:35 | 2019-12-06T10:50:35 | 226,306,231 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,509 | h | #ifndef SESSION_H
#define SESSION_H
#include "Fsm.h"
#include "State.h"
#include "FsmInterface.h"
#include "base/memory/ref_counted.h"
#include <event.h>
#include <stdint.h>
#include <string>
namespace Processor
{
class BoostProcessor;
}
namespace Fsm
{
class Session : public base::RefCountedThreadSafe<Session>
{
public:
Session(
FiniteStateMachine* theFsm,
const uint64_t theSessionId);
Session();
void init(
FiniteStateMachine* theFsm,
const uint64_t theSessionId);
virtual ~Session();
State& toNextState(const int theNextStateId);
int asynHandleEvent(const int theEventId);
void handleEvent(const int theEventId);
void newTimer(const long theMsec);
void handleTimeout();
void cancelTimer();
const uint64_t getSessionId()
{
return sessionIdM;
}
virtual const char* getSessionName()
{
return "Session";
}
const std::string& getEventName(const int theEventName)
{
return fsmM->getEventName(theEventName);
}
inline State& getEndState()
{
return fsmM->getState(endStateIdM);
}
inline State& getCurState()
{
return fsmM->getState(curStateIdM);
}
protected:
bool isInitializedM;
unsigned char curStateIdM;
unsigned char endStateIdM;
unsigned timerIdM;
FiniteStateMachine* fsmM;
FsmTimer<Session> fsmTimerM;
uint64_t sessionIdM;
#ifdef DEBUG
int64_t tidM;
#endif
};
}
#endif /* SESSION_H */
| [
"[email protected]"
] | |
520e9868361dfb2352227eb1e51eac4887f22554 | ff0cc7e931d038a9bd9a56665b20cd8dab071959 | /src/Apps/Plugins/SignalViewerPlugin/widgets/SignalTimePropagationPanelWidget/ptSignalTimePropagationPanelWidget.cpp | 2f04d3a64a0ab5bfa92641a8a88d8772da4fc622 | [] | no_license | jakubsadura/Swiezy | 6ebf1637057c4dbb8fda5bfd3f57ef7eec92279b | bd32b7815b5c0206582916b62935ff49008ee371 | refs/heads/master | 2016-09-11T00:39:59.005668 | 2011-05-22T19:38:33 | 2011-05-22T19:38:33 | 1,784,754 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,702 | cpp | // Copyright 2009 Pompeu Fabra University (Computational Imaging Laboratory), Barcelona, Spain. Web: www.cilab.upf.edu.
// This software is distributed WITHOUT ANY WARRANTY;
// without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#include "ptSignalTimePropagationPanelWidget.h"
ptSignalTimePropagationPanelWidget::ptSignalTimePropagationPanelWidget(
wxWindow* parent, int id, const wxPoint& pos, const wxSize& size, long style):
ptSignalTimePropagationPanelWidgetUI(parent, id, pos, size, wxTAB_TRAVERSAL)
{
m_processor = Core::SignalTimePropagationProcessor::New();
UpdateWidget();
}
Core::BaseProcessor::Pointer ptSignalTimePropagationPanelWidget::GetProcessor()
{
return m_processor.GetPointer();
}
bool ptSignalTimePropagationPanelWidget::Enable( bool enable /*= true */ )
{
bool bReturn = wxPanel::Enable( enable );
try
{
const std::string helpStr = \
"\n\nUsage: set markers per scan and push the button.";
SetInfoUserHelperWidget( helpStr );
}
coreCatchExceptionsReportAndNoThrowMacro("ptSignalTimePropagationPanelWidget::Enable");
return bReturn;
}
void ptSignalTimePropagationPanelWidget::OnButtonSignalTimePropagation(wxCommandEvent &event)
{
UpdateProcessor( );
}
void ptSignalTimePropagationPanelWidget::OnMarkersPerScan( wxCommandEvent &event )
{
UpdateData();
}
void ptSignalTimePropagationPanelWidget::UpdateData()
{
long markers = 1;
m_txtMarkersPerScan->GetValue( ).ToLong( &markers );
m_processor->SetMarkersPerScan( markers );
}
void ptSignalTimePropagationPanelWidget::UpdateWidget()
{
long markers = m_processor->GetMarkersPerScan( );
m_txtMarkersPerScan->SetValue( wxString::Format( "%d", markers ) );
}
| [
"[email protected]"
] | |
63dc933900825ab08df231d4c40f07b09e6ab141 | 82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5 | /Airfoil/wingMotion/wingMotion2D_pimpleFoam/1.67/polyMesh/points | 439b519a70afb18d88581f99610b075b40f4a5e1 | [
"MIT"
] | permissive | ishantja/KUHPC | 6355c61bf348974a7b81b4c6bf8ce56ac49ce111 | 74967d1b7e6c84fdadffafd1f7333bf533e7f387 | refs/heads/main | 2023-01-21T21:57:02.402186 | 2020-11-19T13:10:42 | 2020-11-19T13:10:42 | 312,429,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774,351 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class vectorField;
location "1.67/polyMesh";
object points;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
26316
(
(-1.2 -2.2 0.1)
(-1.02836 -2.2 0.1)
(-1.0284 -2.01675 0.1)
(-1.2 -2.01667 0.1)
(-1.02845 -1.83342 0.1)
(-1.2 -1.83333 0.1)
(-1.0285 -1.65009 0.1)
(-1.2 -1.65 0.1)
(-1.02855 -1.46674 0.1)
(-1.11428 -1.46671 0.1)
(-1.2 -1.46667 0.1)
(-1.1143 -1.37504 0.1)
(-1.2 -1.375 0.1)
(-1.2 -1.28333 0.1)
(-1.11432 -1.28338 0.1)
(-1.11433 -1.19171 0.1)
(-1.2 -1.19167 0.1)
(-1.2 -1.1 0.1)
(-1.11435 -1.10005 0.1)
(-1.11437 -1.00838 0.1)
(-1.2 -1.00833 0.1)
(-1.2 -0.916667 0.1)
(-1.11439 -0.916715 0.1)
(-1.11441 -0.825051 0.1)
(-1.2 -0.825 0.1)
(-1.2 -0.733333 0.1)
(-1.11443 -0.733386 0.1)
(-1.11444 -0.641721 0.1)
(-1.2 -0.641667 0.1)
(-1.2 -0.55 0.1)
(-1.11446 -0.550056 0.1)
(-1.11448 -0.458391 0.1)
(-1.2 -0.458333 0.1)
(-1.2 -0.366667 0.1)
(-1.11449 -0.366726 0.1)
(-1.11451 -0.27506 0.1)
(-1.2 -0.275 0.1)
(-1.2 -0.183333 0.1)
(-1.11452 -0.183395 0.1)
(-1.11452 -0.0917285 0.1)
(-1.2 -0.0916667 0.1)
(-1.2 0 0.1)
(-1.11452 -6.20099e-05 0.1)
(-1.11452 0.0916048 0.1)
(-1.2 0.0916667 0.1)
(-1.2 0.183333 0.1)
(-1.11452 0.183272 0.1)
(-1.11451 0.27494 0.1)
(-1.2 0.275 0.1)
(-1.2 0.366667 0.1)
(-1.11449 0.366608 0.1)
(-1.11448 0.458276 0.1)
(-1.2 0.458333 0.1)
(-1.2 0.55 0.1)
(-1.11446 0.549944 0.1)
(-1.11444 0.641612 0.1)
(-1.2 0.641667 0.1)
(-1.2 0.733333 0.1)
(-1.11443 0.733281 0.1)
(-1.11441 0.824949 0.1)
(-1.2 0.825 0.1)
(-1.2 0.916667 0.1)
(-1.11439 0.916618 0.1)
(-1.11437 1.00829 0.1)
(-1.2 1.00833 0.1)
(-1.2 1.1 0.1)
(-1.11435 1.09995 0.1)
(-1.11433 1.19162 0.1)
(-1.2 1.19167 0.1)
(-1.2 1.28333 0.1)
(-1.11432 1.28329 0.1)
(-1.1143 1.37497 0.1)
(-1.2 1.375 0.1)
(-1.2 1.46667 0.1)
(-1.11429 1.46665 0.1)
(-1.02854 1.46685 0.1)
(-1.02831 1.65049 0.1)
(-1.2 1.65 0.1)
(-1.02824 1.83417 0.1)
(-1.2 1.83387 0.1)
(-1.02804 2.01728 0.1)
(-1.2 2.01724 0.1)
(-1.02778 2.2 0.1)
(-1.2 2.2 0.1)
(-0.85612 -2.2 0.1)
(-0.85642 -2.01697 0.1)
(-0.85678 -1.83375 0.1)
(-0.85688 -1.65042 0.1)
(-0.85704 -1.46688 0.1)
(-0.942809 -1.46678 0.1)
(-0.942854 -1.37512 0.1)
(-1.02858 -1.37508 0.1)
(-1.02862 -1.28342 0.1)
(-0.942902 -1.28346 0.1)
(-0.942953 -1.19179 0.1)
(-1.02865 -1.19175 0.1)
(-1.02869 -1.10009 0.1)
(-0.943007 -1.10013 0.1)
(-0.943063 -1.00847 0.1)
(-0.985895 -1.00845 0.1)
(-1.02872 -1.00843 0.1)
(-1.02876 -0.916763 0.1)
(-0.985943 -0.916786 0.1)
(-0.985992 -0.870958 0.1)
(-1.02881 -0.870935 0.1)
(-1.02884 -0.733437 0.1)
(-0.986043 -0.733463 0.1)
(-0.986093 -0.687634 0.1)
(-1.02889 -0.687609 0.1)
(-1.02892 -0.550112 0.1)
(-0.986141 -0.550139 0.1)
(-0.986191 -0.504311 0.1)
(-1.02897 -0.504284 0.1)
(-1.02898 -0.366785 0.1)
(-0.986227 -0.366814 0.1)
(-0.986274 -0.320985 0.1)
(-1.02903 -0.320956 0.1)
(-1.02903 -0.183456 0.1)
(-0.986288 -0.183486 0.1)
(-0.9863272572 -0.1376431308 0.1)
(-1.02908 -0.137627 0.1)
(-1.02905 -0.000123943 0.1)
(-0.9863101422 3.688301175e-07 0.1)
(-0.9863373451 0.04580776256 0.1)
(-1.02908 0.0457059 0.1)
(-1.02903 0.183211 0.1)
(-0.986288 0.18318 0.1)
(-0.986305 0.229012 0.1)
(-1.02906 0.229042 0.1)
(-1.02898 0.366549 0.1)
(-0.986228 0.36652 0.1)
(-0.986235 0.412352 0.1)
(-1.029 0.41238 0.1)
(-1.02892 0.549888 0.1)
(-0.986141 0.549861 0.1)
(-0.986143 0.595694 0.1)
(-1.02893 0.59572 0.1)
(-1.02884 0.733229 0.1)
(-0.986043 0.733204 0.1)
(-0.986043 0.779037 0.1)
(-1.02885 0.779061 0.1)
(-1.02876 0.91657 0.1)
(-0.985944 0.916547 0.1)
(-0.985942 0.962381 0.1)
(-1.02877 0.962403 0.1)
(-1.02869 1.09992 0.1)
(-0.943013 1.09996 0.1)
(-0.942949 1.19183 0.1)
(-1.02865 1.19161 0.1)
(-1.02862 1.28331 0.1)
(-0.942852 1.2837 0.1)
(-0.942603 1.37575 0.1)
(-1.02858 1.3751 0.1)
(-0.94248 1.46749 0.1)
(-0.856309 1.46797 0.1)
(-0.856172 1.65126 0.1)
(-0.856002 1.83463 0.1)
(-0.855752 2.01733 0.1)
(-0.855556 2.2 0.1)
(-0.683333 -2.2 0.1)
(-0.683732 -2.01725 0.1)
(-0.684123 -1.8345 0.1)
(-0.68446 -1.65166 0.1)
(-0.684565 -1.46844 0.1)
(-0.77116 -1.46732 0.1)
(-0.77125 -1.37562 0.1)
(-0.857103 -1.37519 0.1)
(-0.857167 -1.28353 0.1)
(-0.771348 -1.2839 0.1)
(-0.771487 -1.19201 0.1)
(-0.857238 -1.19184 0.1)
(-0.85731 -1.10017 0.1)
(-0.771588 -1.10027 0.1)
(-0.771687 -1.00855 0.1)
(-0.814539 -1.00853 0.1)
(-0.857385 -1.00851 0.1)
(-0.857463 -0.916853 0.1)
(-0.814627 -0.916875 0.1)
(-0.814684 -0.871047 0.1)
(-0.857517 -0.871025 0.1)
(-0.857628 -0.733536 0.1)
(-0.814814 -0.733559 0.1)
(-0.814875 -0.687732 0.1)
(-0.857684 -0.687708 0.1)
(-0.857795 -0.550219 0.1)
(-0.8150220224 -0.5500256184 0.1)
(-0.8151572191 -0.5030409306 0.1)
(-0.8578512057 -0.5043729101 0.1)
(-0.8581211569 -0.3633031454 0.1)
(-0.815617223 -0.3580324001 0.1)
(-0.8157497787 -0.3090510841 0.1)
(-0.8582348088 -0.3154320565 0.1)
(-0.8583497971 -0.17169483 0.1)
(-0.8158270355 -0.1627917845 0.1)
(-0.8157765951 -0.1147764544 0.1)
(-0.8583423715 -0.1242247901 0.1)
(-0.858109586 0.01556762288 0.1)
(-0.8153776199 0.02572406564 0.1)
(-0.8152332729 0.07122166401 0.1)
(-0.8580294917 0.06114082759 0.1)
(-0.8577809619 0.1950147292 0.1)
(-0.8148252651 0.2039361758 0.1)
(-0.814765445 0.2471353617 0.1)
(-0.8577603076 0.2389061746 0.1)
(-0.8577762282 0.370075673 0.1)
(-0.8147595942 0.3753776704 0.1)
(-0.8148362673 0.4182357564 0.1)
(-0.8578272023 0.4141577369 0.1)
(-0.857795 0.549781 0.1)
(-0.8149901926 0.5499912594 0.1)
(-0.814972 0.595592 0.1)
(-0.857769 0.595617 0.1)
(-0.857628 0.733131 0.1)
(-0.814815 0.733107 0.1)
(-0.814779 0.778944 0.1)
(-0.8576 0.778967 0.1)
(-0.857464 0.916483 0.1)
(-0.814633 0.916519 0.1)
(-0.814603 0.96244 0.1)
(-0.857438 0.962328 0.1)
(-0.85725 1.10049 0.1)
(-0.770908 1.1016 0.1)
(-0.770553 1.19343 0.1)
(-0.856875 1.19274 0.1)
(-0.856623 1.28457 0.1)
(-0.770431 1.28507 0.1)
(-0.770351 1.37669 0.1)
(-0.856389 1.37633 0.1)
(-0.770297 1.46831 0.1)
(-0.684227 1.46864 0.1)
(-0.683965 1.6519 0.1)
(-0.683689 1.8347 0.1)
(-0.683502 2.01736 0.1)
(-0.683333 2.2 0.1)
(-0.511111 -2.2 0.1)
(-0.511372 -2.01734 0.1)
(-0.511646 -1.83468 0.1)
(-0.511912 -1.65201 0.1)
(-0.512088 -1.46924 0.1)
(-0.598172 -1.46894 0.1)
(-0.5982 -1.37737 0.1)
(-0.684628 -1.37684 0.1)
(-0.684917 -1.28506 0.1)
(-0.598333 -1.28576 0.1)
(-0.598734 -1.194 0.1)
(-0.685494 -1.19278 0.1)
(-0.68575 -1.10077 0.1)
(-0.599191 -1.10213 0.1)
(-0.59999 -1.00954 0.1)
(-0.643085 -1.00875 0.1)
(-0.685965 -1.00863 0.1)
(-0.686088 -0.916936 0.1)
(-0.643229 -0.916968 0.1)
(-0.643304 -0.871132 0.1)
(-0.686158 -0.871109 0.1)
(-0.686344 -0.733627 0.1)
(-0.6435537483 -0.7331983748 0.1)
(-0.6438334708 -0.6851981973 0.1)
(-0.6864769046 -0.6871758219 0.1)
(-0.6874406617 -0.5391789487 0.1)
(-0.6451295302 -0.5326102307 0.1)
(-0.645577047 -0.4798309718 0.1)
(-0.6878269366 -0.4877847643 0.1)
(-0.6886441153 -0.3312711457 0.1)
(-0.6464407173 -0.3199191443 0.1)
(-0.6465292049 -0.2670075687 0.1)
(-0.6887597532 -0.2792028946 0.1)
(-0.6885017856 -0.1262476429 0.1)
(-0.6461035147 -0.1123683025 0.1)
(-0.645780041 -0.06265404403 0.1)
(-0.688257268 -0.07684921929 0.1)
(-0.6871736142 0.06540445655 0.1)
(-0.6444348434 0.07997622396 0.1)
(-0.6439465331 0.1252512806 0.1)
(-0.6867789754 0.1107176795 0.1)
(-0.6856921591 0.2405271548 0.1)
(-0.6425937727 0.2544171542 0.1)
(-0.6422650893 0.2954022688 0.1)
(-0.6854433659 0.281937299 0.1)
(-0.6851416981 0.4022372323 0.1)
(-0.641799056 0.4136176421 0.1)
(-0.6418558226 0.4520119039 0.1)
(-0.6852225235 0.4416188422 0.1)
(-0.6857975949 0.5609634851 0.1)
(-0.6425014301 0.5675760658 0.1)
(-0.6428158246 0.6071970169 0.1)
(-0.6860416866 0.6020569175 0.1)
(-0.686358 0.733246 0.1)
(-0.6433675782 0.7346395778 0.1)
(-0.64276 0.781174 0.1)
(-0.686277 0.779542 0.1)
(-0.684856 0.918994 0.1)
(-0.641698 0.91929 0.1)
(-0.641653 0.965082 0.1)
(-0.684683 0.964872 0.1)
(-0.684589 1.10222 0.1)
(-0.598587 1.10257 0.1)
(-0.598492 1.19415 0.1)
(-0.684489 1.19382 0.1)
(-0.684423 1.28541 0.1)
(-0.598356 1.28576 0.1)
(-0.598227 1.37737 0.1)
(-0.684353 1.37701 0.1)
(-0.598044 1.46899 0.1)
(-0.511813 1.46933 0.1)
(-0.511625 1.65211 0.1)
(-0.511417 1.83475 0.1)
(-0.511259 2.01738 0.1)
(-0.511111 2.2 0.1)
(-0.338889 -2.2 0.1)
(-0.339075 -2.01738 0.1)
(-0.339307 -1.83475 0.1)
(-0.339552 -1.6521 0.1)
(-0.339914 -1.46942 0.1)
(-0.42603 -1.4694 0.1)
(-0.426107 -1.37793 0.1)
(-0.512124 -1.37767 0.1)
(-0.512175 -1.28611 0.1)
(-0.426152 -1.28638 0.1)
(-0.426205 -1.19484 0.1)
(-0.512281 -1.19454 0.1)
(-0.512399 -1.10297 0.1)
(-0.426261 -1.10332 0.1)
(-0.42631 -1.0118 0.1)
(-0.469316 -1.01165 0.1)
(-0.512427 -1.01145 0.1)
(-0.513033 -0.919636 0.1)
(-0.469459 -0.920103 0.1)
(-0.469658252 -0.8741318704 0.1)
(-0.513554 -0.87351 0.1)
(-0.5157486749 -0.725857762 0.1)
(-0.4728854023 -0.7232230063 0.1)
(-0.4739312422 -0.6687676455 0.1)
(-0.5164492074 -0.6732058511 0.1)
(-0.5185504852 -0.5080965876 0.1)
(-0.4763989623 -0.4993571837 0.1)
(-0.4769750415 -0.4422171216 0.1)
(-0.5191109752 -0.4518374881 0.1)
(-0.5199172406 -0.2842467436 0.1)
(-0.4777054543 -0.273098377 0.1)
(-0.4776081512 -0.2184217645 0.1)
(-0.5198736448 -0.2297312926 0.1)
(-0.518865708 -0.07265723714 0.1)
(-0.4764018018 -0.06159150641 0.1)
(-0.4757733166 -0.01181220382 0.1)
(-0.5183073496 -0.02268294689 0.1)
(-0.5162126321 0.1201072104 0.1)
(-0.4734733072 0.1306265225 0.1)
(-0.472646184 0.1759371346 0.1)
(-0.5154585269 0.16537515 0.1)
(-0.5133038942 0.2941313383 0.1)
(-0.470250394 0.305192981 0.1)
(-0.4695754039 0.3459036255 0.1)
(-0.5127141704 0.3346442483 0.1)
(-0.5116190837 0.4493735082 0.1)
(-0.4682512292 0.4607567243 0.1)
(-0.4681163511 0.4967901593 0.1)
(-0.5115441594 0.4857095011 0.1)
(-0.512065063 0.5934208948 0.1)
(-0.4675088664 0.6051180241 0.1)
(-0.4670709476 0.6410377007 0.1)
(-0.5116686003 0.6316680244 0.1)
(-0.5120301881 0.7461267527 0.1)
(-0.4685787636 0.7508556526 0.1)
(-0.4691443386 0.7900920779 0.1)
(-0.5124478044 0.7867833173 0.1)
(-0.512777 0.919803 0.1)
(-0.469804 0.919959 0.1)
(-0.469767 0.965722 0.1)
(-0.512742 0.965571 0.1)
(-0.512576 1.1029 0.1)
(-0.426399 1.10328 0.1)
(-0.426059 1.1949 0.1)
(-0.512348 1.19452 0.1)
(-0.512064 1.28615 0.1)
(-0.425833 1.28649 0.1)
(-0.425757 1.37805 0.1)
(-0.511924 1.37774 0.1)
(-0.42569 1.46951 0.1)
(-0.339558 1.46954 0.1)
(-0.339308 1.65218 0.1)
(-0.339106 1.8348 0.1)
(-0.338986 2.0174 0.1)
(-0.338889 2.2 0.1)
(-0.166667 -2.2 0.1)
(-0.16675 -2.01741 0.1)
(-0.166857 -1.83481 0.1)
(-0.167034 -1.6522 0.1)
(-0.167458 -1.46954 0.1)
(-0.253787 -1.46946 0.1)
(-0.25393 -1.37813 0.1)
(-0.340052 -1.37808 0.1)
(-0.340133 -1.28663 0.1)
(-0.254058 -1.28681 0.1)
(-0.254132 -1.19535 0.1)
(-0.340185 -1.1951 0.1)
(-0.340241 -1.10359 0.1)
(-0.25418 -1.10384 0.1)
(-0.25416 -1.01239 0.1)
(-0.29726 -1.01222 0.1)
(-0.340301 -1.01208 0.1)
(-0.3404579826 -0.919903599 0.1)
(-0.2975413638 -0.9191825538 0.1)
(-0.2981158551 -0.869193636 0.1)
(-0.3408902621 -0.8709290934 0.1)
(-0.343366793 -0.7102840123 0.1)
(-0.3008843808 -0.7056213583 0.1)
(-0.3019020834 -0.6478260673 0.1)
(-0.3443406194 -0.6533209519 0.1)
(-0.3475920159 -0.4779408962 0.1)
(-0.3044215656 -0.471152604 0.1)
(-0.3051292611 -0.4127016356 0.1)
(-0.3486362679 -0.4193707332 0.1)
(-0.3504537134 -0.2469825113 0.1)
(-0.3074240165 -0.2419076823 0.1)
(-0.3074822093 -0.1878893174 0.1)
(-0.3502620378 -0.1933257162 0.1)
(-0.348721399 -0.03970935172 0.1)
(-0.3059841351 -0.03712247298 0.1)
(-0.3052400915 0.01055128556 0.1)
(-0.3479501485 0.008545171211 0.1)
(-0.3452716976 0.1483503015 0.1)
(-0.3025427116 0.1489624537 0.1)
(-0.3015654278 0.1948142143 0.1)
(-0.3443064063 0.1939793575 0.1)
(-0.3413094817 0.3285934687 0.1)
(-0.2983387699 0.3321776972 0.1)
(-0.2972547505 0.3758969105 0.1)
(-0.3403067539 0.3714548493 0.1)
(-0.3376326286 0.491142765 0.1)
(-0.2932328028 0.499181473 0.1)
(-0.2918673988 0.5371425337 0.1)
(-0.3361924705 0.5288861892 0.1)
(-0.3352497211 0.6329689834 0.1)
(-0.2916672812 0.6405696522 0.1)
(-0.292157105 0.6731951376 0.1)
(-0.3357562505 0.6659700857 0.1)
(-0.3380706702 0.7666669055 0.1)
(-0.2945298148 0.7718241806 0.1)
(-0.2954167276 0.8065987958 0.1)
(-0.3389237968 0.8023483106 0.1)
(-0.3405333554 0.9215591165 0.1)
(-0.2969855429 0.9226251515 0.1)
(-0.2970349969 0.966622491 0.1)
(-0.340495 0.966291 0.1)
(-0.339984 1.10368 0.1)
(-0.253752 1.104 0.1)
(-0.25369 1.1955 0.1)
(-0.33981 1.19524 0.1)
(-0.339723 1.28677 0.1)
(-0.253617 1.28696 0.1)
(-0.253479 1.37829 0.1)
(-0.339655 1.37822 0.1)
(-0.253377 1.4696 0.1)
(-0.167064 1.46964 0.1)
(-0.166945 1.65224 0.1)
(-0.166826 1.83483 0.1)
(-0.166743 2.01742 0.1)
(-0.166667 2.2 0.1)
(0.00555556 -2.2 0.1)
(0.00551007 -2.01742 0.1)
(0.00546213 -1.83484 0.1)
(0.00540281 -1.65225 0.1)
(0.0053634 -1.46967 0.1)
(-0.0809386 -1.46965 0.1)
(-0.0809705 -1.37835 0.1)
(-0.167621 -1.37821 0.1)
(-0.167738 -1.2869 0.1)
(-0.0810137 -1.28705 0.1)
(-0.081081 -1.19575 0.1)
(-0.167848 -1.19558 0.1)
(-0.167946 -1.10413 0.1)
(-0.081294 -1.10442 0.1)
(-0.08178736926 -1.012842732 0.1)
(-0.1250042311 -1.012738427 0.1)
(-0.16807 -1.01263 0.1)
(-0.1687883461 -0.9163650643 0.1)
(-0.1259129211 -0.9152603151 0.1)
(-0.126810966 -0.8624404962 0.1)
(-0.1696106241 -0.8641796047 0.1)
(-0.1729799368 -0.6949091821 0.1)
(-0.1302909255 -0.6915164939 0.1)
(-0.1314412714 -0.6319497356 0.1)
(-0.1742693519 -0.6345958265 0.1)
(-0.176707891 -0.4552903086 0.1)
(-0.1339383834 -0.4520589905 0.1)
(-0.1342577528 -0.3940178922 0.1)
(-0.1770297763 -0.3970813237 0.1)
(-0.1768712911 -0.2330188397 0.1)
(-0.1336687071 -0.2316847234 0.1)
(-0.1331853481 -0.1822906826 0.1)
(-0.1767717631 -0.1823300076 0.1)
(-0.1765917929 -0.04046626741 0.1)
(-0.132153026 -0.043227986 0.1)
(-0.132065184 -0.02011572586 0.1)
(-0.1329560129 0.00425938509 0.1)
(-0.1549498359 0.005831045233 0.1)
(-0.176428653 0.006493679041 0.1)
(-0.174362005 0.1462260283 0.1)
(-0.1529997591 0.1457753147 0.1)
(-0.1525247087 0.16917886 0.1)
(-0.1738876199 0.1695027826 0.1)
(-0.1686407122 0.3343804212 0.1)
(-0.1466859099 0.3346159806 0.1)
(-0.1243876933 0.3350103564 0.1)
(-0.1232253674 0.3582770649 0.1)
(-0.1224930528 0.3812147396 0.1)
(-0.1665735462 0.3811312986 0.1)
(-0.1622727866 0.5126872991 0.1)
(-0.1191294047 0.5143612497 0.1)
(-0.1183955299 0.5543642377 0.1)
(-0.1616528435 0.551914945 0.1)
(-0.1610318184 0.657622442 0.1)
(-0.1171212496 0.6610217399 0.1)
(-0.1172821834 0.6939358955 0.1)
(-0.1612586781 0.6899580976 0.1)
(-0.163054915 0.7852632029 0.1)
(-0.1194887889 0.7894761375 0.1)
(-0.1205933497 0.8220736643 0.1)
(-0.1640729848 0.8184022702 0.1)
(-0.1669278434 0.9277931917 0.1)
(-0.1236868681 0.929482788 0.1)
(-0.1243453328 0.9698902336 0.1)
(-0.1674963127 0.9689076205 0.1)
(-0.167581 1.10426 0.1)
(-0.0812491 1.10447 0.1)
(-0.0810988 1.19579 0.1)
(-0.167498 1.19571 0.1)
(-0.167364 1.28702 0.1)
(-0.0810205 1.28709 0.1)
(-0.080918 1.37839 0.1)
(-0.16716 1.37833 0.1)
(-0.0808667 1.46969 0.1)
(0.00526028 1.4697 0.1)
(0.00533705 1.65227 0.1)
(0.00541418 1.83485 0.1)
(0.00548531 2.01743 0.1)
(0.00555556 2.2 0.1)
(0.177778 -2.2 0.1)
(0.177739 -2.01742 0.1)
(0.1777 -1.83484 0.1)
(0.177661 -1.65227 0.1)
(0.177627 -1.46969 0.1)
(0.0915047 -1.4697 0.1)
(0.0914852 -1.37841 0.1)
(0.00534656 -1.37838 0.1)
(0.00532381 -1.28709 0.1)
(0.0914651 -1.28711 0.1)
(0.0914414 -1.19582 0.1)
(0.00528866 -1.19579 0.1)
(0.00515509 -1.10449 0.1)
(0.0913796 -1.10453 0.1)
(0.09111398719 -1.012717074 0.1)
(0.04786491157 -1.012891542 0.1)
(0.004737342671 -1.012922508 0.1)
(0.003534237227 -0.9132690247 0.1)
(0.04664515829 -0.9131103347 0.1)
(0.04561003815 -0.8591367785 0.1)
(0.002512020792 -0.8593769101 0.1)
(-0.001197235273 -0.6858224353 0.1)
(0.0418807518 -0.6854103654 0.1)
(0.04074190487 -0.6252474527 0.1)
(-0.002340810791 -0.6257153055 0.1)
(-0.004486725149 -0.4467763211 0.1)
(0.03862421682 -0.4464494027 0.1)
(0.0384753769 -0.389360512 0.1)
(-0.004688177575 -0.3895379844 0.1)
(-0.003717085473 -0.23157212 0.1)
(0.03969316937 -0.2321651052 0.1)
(0.04053180642 -0.1853642472 0.1)
(-0.002947864398 -0.1843937569 0.1)
(-0.0005835014694 -0.04753554548 0.1)
(0.02145643662 -0.04812695838 0.1)
(0.02180348262 -0.02533121668 0.1)
(-0.000201775184 -0.02474253336 0.1)
(0.006777574252 0.3337699722 0.1)
(0.02860912279 0.3334409976 0.1)
(0.02917829355 0.3562260679 0.1)
(0.007379562356 0.3565783578 0.1)
(0.01159312522 0.5156220849 0.1)
(0.05484884399 0.515082044 0.1)
(0.05575661581 0.5578287473 0.1)
(0.01245976763 0.5579103108 0.1)
(0.01336612766 0.669608757 0.1)
(0.05671000497 0.6703449867 0.1)
(0.0564246907 0.703714184 0.1)
(0.01306790405 0.7028458286 0.1)
(0.01060359268 0.797426588 0.1)
(0.05397609525 0.7983664346 0.1)
(0.05286636875 0.8300827405 0.1)
(0.009448213467 0.8292021608 0.1)
(0.006057887247 0.9331833568 0.1)
(0.0497068665 0.9345941054 0.1)
(0.04880523409 0.9732890544 0.1)
(0.005224893775 0.9722794481 0.1)
(0.00498511 1.10452 0.1)
(0.0912177 1.10457 0.1)
(0.0912678 1.19586 0.1)
(0.00512268 1.19582 0.1)
(0.00517435 1.28712 0.1)
(0.0913049 1.28714 0.1)
(0.0913415 1.37843 0.1)
(0.00522194 1.37841 0.1)
(0.0913798 1.46972 0.1)
(0.17756 1.46972 0.1)
(0.177642 1.65229 0.1)
(0.17769 1.83486 0.1)
(0.177734 2.01743 0.1)
(0.177778 2.2 0.1)
(0.35 -2.2 0.1)
(0.349964 -2.01742 0.1)
(0.349927 -1.83485 0.1)
(0.349892 -1.65227 0.1)
(0.349867 -1.4697 0.1)
(0.263757 -1.46971 0.1)
(0.263743 -1.37842 0.1)
(0.177608 -1.3784 0.1)
(0.177589 -1.28711 0.1)
(0.263728 -1.28713 0.1)
(0.263712 -1.19584 0.1)
(0.17757 -1.19582 0.1)
(0.177544 -1.10453 0.1)
(0.263698 -1.10455 0.1)
(0.2635707288 -1.012455638 0.1)
(0.2205018548 -1.012518713 0.1)
(0.1773997393 -1.012594251 0.1)
(0.1760593037 -0.9117663744 0.1)
(0.2191370257 -0.9114493948 0.1)
(0.2180419752 -0.856973571 0.1)
(0.1749762762 -0.8573435721 0.1)
(0.1712088904 -0.6831348207 0.1)
(0.2142638388 -0.6828007946 0.1)
(0.2131479422 -0.6228921384 0.1)
(0.170088691 -0.6231493539 0.1)
(0.1681063764 -0.445677568 0.1)
(0.2111906275 -0.445798044 0.1)
(0.2111193983 -0.389515327 0.1)
(0.1680235135 -0.3892376561 0.1)
(0.1694613887 -0.2342565766 0.1)
(0.2125922855 -0.2350167689 0.1)
(0.2135106177 -0.1888850612 0.1)
(0.1703729735 -0.1880341146 0.1)
(0.1732105073 -0.05140757263 0.1)
(0.1947940528 -0.05184635838 0.1)
(0.1952630735 -0.02911019376 0.1)
(0.173679591 -0.02866840867 0.1)
(0.1809405947 0.3306253491 0.1)
(0.2026509019 0.330173896 0.1)
(0.2031418336 0.352905599 0.1)
(0.1814426081 0.35336082 0.1)
(0.1849196834 0.5126846167 0.1)
(0.2282359333 0.5117384351 0.1)
(0.2291066241 0.5557274976 0.1)
(0.185799075 0.5564757713 0.1)
(0.1869045794 0.6718538001 0.1)
(0.2302367397 0.6717363698 0.1)
(0.2300197618 0.7060436722 0.1)
(0.1866769011 0.7059725302 0.1)
(0.1843156114 0.80182923 0.1)
(0.2276773349 0.8023024289 0.1)
(0.2264798755 0.83406583 0.1)
(0.1831176831 0.8335453345 0.1)
(0.179373387 0.9359987318 0.1)
(0.2226988407 0.9364181967 0.1)
(0.2216941368 0.9745162509 0.1)
(0.1783936079 0.974212658 0.1)
(0.177442 1.10447 0.1)
(0.263862 1.10431 0.1)
(0.263862 1.19583 0.1)
(0.177467 1.19586 0.1)
(0.177495 1.28715 0.1)
(0.263864 1.28717 0.1)
(0.263866 1.37846 0.1)
(0.177525 1.37843 0.1)
(0.263867 1.46975 0.1)
(0.350165 1.46972 0.1)
(0.350091 1.65229 0.1)
(0.350058 1.83486 0.1)
(0.350028 2.01743 0.1)
(0.35 2.2 0.1)
(0.522222 -2.2 0.1)
(0.522182 -2.01743 0.1)
(0.522141 -1.83485 0.1)
(0.522103 -1.65228 0.1)
(0.522069 -1.46971 0.1)
(0.435968 -1.46972 0.1)
(0.43595 -1.37843 0.1)
(0.349852 -1.37841 0.1)
(0.349837 -1.28712 0.1)
(0.435933 -1.28714 0.1)
(0.435915 -1.19585 0.1)
(0.349822 -1.19584 0.1)
(0.349806 -1.10455 0.1)
(0.435897 -1.10456 0.1)
(0.4356932101 -1.012094658 0.1)
(0.3926633989 -1.012221366 0.1)
(0.3496425936 -1.012306943 0.1)
(0.3481988904 -0.9106859348 0.1)
(0.3911872286 -0.9103799589 0.1)
(0.3900533305 -0.8557717326 0.1)
(0.3470760865 -0.856118855 0.1)
(0.3432675597 -0.6821889394 0.1)
(0.3862328803 -0.6819024598 0.1)
(0.3851241302 -0.6223125945 0.1)
(0.342156265 -0.6225198658 0.1)
(0.3402523968 -0.446482707 0.1)
(0.3832402447 -0.4466483083 0.1)
(0.3832016274 -0.3909329982 0.1)
(0.3402043292 -0.3906173624 0.1)
(0.3417460483 -0.2373278384 0.1)
(0.3847687195 -0.2380906061 0.1)
(0.3856996617 -0.1922152321 0.1)
(0.342675509 -0.1913896766 0.1)
(0.3455071729 -0.05485203097 0.1)
(0.3670070102 -0.0552760539 0.1)
(0.3674703803 -0.03257077733 0.1)
(0.3567195039 -0.03235674529 0.1)
(0.3459776255 -0.03214290242 0.1)
(0.3544278395 0.3267677733 0.1)
(0.3760547775 0.3262520585 0.1)
(0.3765091707 0.348958524 0.1)
(0.3548892941 0.3494770911 0.1)
(0.3580958286 0.5086716934 0.1)
(0.4012468247 0.5075918376 0.1)
(0.4020643708 0.5513374611 0.1)
(0.3589289728 0.5525570278 0.1)
(0.3599724937 0.6686614592 0.1)
(0.4030776855 0.6673561122 0.1)
(0.4028274589 0.7018535678 0.1)
(0.3597316955 0.7031022425 0.1)
(0.3573295452 0.8000884448 0.1)
(0.4003793583 0.7991617084 0.1)
(0.3991714069 0.8313630924 0.1)
(0.3561193886 0.8321551674 0.1)
(0.3523247521 0.9354107642 0.1)
(0.3953913317 0.9350121875 0.1)
(0.3943972835 0.9734877719 0.1)
(0.3513239798 0.9737741999 0.1)
(0.350236 1.10409 0.1)
(0.43642 1.10386 0.1)
(0.4364 1.19541 0.1)
(0.350224 1.19563 0.1)
(0.350216 1.28715 0.1)
(0.436392 1.287 0.1)
(0.436371 1.37844 0.1)
(0.350194 1.37844 0.1)
(0.436339 1.46973 0.1)
(0.52247 1.4697 0.1)
(0.522403 1.65228 0.1)
(0.522334 1.83485 0.1)
(0.522278 2.01743 0.1)
(0.522222 2.2 0.1)
(0.694444 -2.2 0.1)
(0.694421 -2.01743 0.1)
(0.694395 -1.83486 0.1)
(0.694367 -1.65229 0.1)
(0.694266 -1.46972 0.1)
(0.608164 -1.46973 0.1)
(0.608143 -1.37844 0.1)
(0.522052 -1.37842 0.1)
(0.522033 -1.28714 0.1)
(0.608122 -1.28715 0.1)
(0.608101 -1.19587 0.1)
(0.522015 -1.19585 0.1)
(0.521997 -1.10456 0.1)
(0.608086 -1.10458 0.1)
(0.6078273714 -1.011520007 0.1)
(0.5648019985 -1.011671365 0.1)
(0.5217689166 -1.011820169 0.1)
(0.5202001006 -0.9094598862 0.1)
(0.5632015117 -0.9091473415 0.1)
(0.5620234497 -0.8543821381 0.1)
(0.5190331213 -0.854732872 0.1)
(0.5151797214 -0.6810693693 0.1)
(0.5581592033 -0.680791219 0.1)
(0.5570630875 -0.6215305346 0.1)
(0.5140804356 -0.621724585 0.1)
(0.512263036 -0.4471793938 0.1)
(0.5552707888 -0.4473629902 0.1)
(0.5552715662 -0.3922484142 0.1)
(0.5122536304 -0.3919143005 0.1)
(0.5139069729 -0.2403966272 0.1)
(0.5569541662 -0.2411697618 0.1)
(0.5578972177 -0.195473566 0.1)
(0.5148476711 -0.1946664809 0.1)
(0.5176715706 -0.05821269051 0.1)
(0.5391916768 -0.05862413672 0.1)
(0.5396552269 -0.03595787255 0.1)
(0.5288952264 -0.03574965 0.1)
(0.5181372464 -0.03554046971 0.1)
(0.5271918461 0.3224783047 0.1)
(0.5487874875 0.3219012342 0.1)
(0.5492184232 0.344586188 0.1)
(0.5276288856 0.3451681314 0.1)
(0.5306720021 0.5039634145 0.1)
(0.573790474 0.502562361 0.1)
(0.5744942184 0.5450128094 0.1)
(0.5314050323 0.5468723891 0.1)
(0.5321795579 0.6611701727 0.1)
(0.5751317111 0.658157051 0.1)
(0.5748413705 0.6930088444 0.1)
(0.5318606027 0.6954344505 0.1)
(0.5292768294 0.7931625539 0.1)
(0.572197276 0.7912465367 0.1)
(0.5709903845 0.8242048601 0.1)
(0.5280633707 0.8258726946 0.1)
(0.5244041039 0.9317853943 0.1)
(0.5673623556 0.930958116 0.1)
(0.5664948614 0.9706346985 0.1)
(0.5235037263 0.9711869934 0.1)
(0.522596 1.10359 0.1)
(0.608805 1.10329 0.1)
(0.608783 1.19489 0.1)
(0.522553 1.19516 0.1)
(0.522536 1.28678 0.1)
(0.608754 1.28653 0.1)
(0.608691 1.37816 0.1)
(0.522505 1.3784 0.1)
(0.608659 1.46969 0.1)
(0.694922 1.46961 0.1)
(0.694721 1.65224 0.1)
(0.69458 1.83483 0.1)
(0.694507 2.01742 0.1)
(0.694444 2.2 0.1)
(0.866667 -2.2 0.1)
(0.866804 -2.01742 0.1)
(0.866933 -1.83485 0.1)
(0.867013 -1.65228 0.1)
(0.866587 -1.46974 0.1)
(0.780367 -1.46974 0.1)
(0.780339 -1.37845 0.1)
(0.694242 -1.37843 0.1)
(0.69422 -1.28715 0.1)
(0.780315 -1.28717 0.1)
(0.780291 -1.19588 0.1)
(0.694197 -1.19586 0.1)
(0.694176 -1.10458 0.1)
(0.780267 -1.1046 0.1)
(0.779920551 -1.011061554 0.1)
(0.7368731239 -1.010999395 0.1)
(0.6938562623 -1.011185642 0.1)
(0.69215236 -0.9081581003 0.1)
(0.7351318793 -0.9077810327 0.1)
(0.7339068593 -0.8528504526 0.1)
(0.6909400052 -0.8532757533 0.1)
(0.6870453927 -0.6799139684 0.1)
(0.7300016891 -0.6795579473 0.1)
(0.7289221901 -0.6206443484 0.1)
(0.6859612797 -0.6209119333 0.1)
(0.684244722 -0.4479073596 0.1)
(0.7272365766 -0.4480549787 0.1)
(0.7272830415 -0.3935672497 0.1)
(0.6842784206 -0.3932538196 0.1)
(0.6860560856 -0.2435130316 0.1)
(0.7290977852 -0.2443105454 0.1)
(0.7300451092 -0.1986678418 0.1)
(0.6870053712 -0.1978699649 0.1)
(0.6898127908 -0.06143883313 0.1)
(0.7113312968 -0.0618312415 0.1)
(0.7117889441 -0.03920786273 0.1)
(0.7010257341 -0.03900957491 0.1)
(0.6902705433 -0.03881045547 0.1)
(0.6995345805 0.3177045843 0.1)
(0.7210579133 0.3170660201 0.1)
(0.7214706849 0.3397433541 0.1)
(0.6999474992 0.3403889168 0.1)
(0.702875834 0.4976884562 0.1)
(0.7458586241 0.4957182031 0.1)
(0.7464339132 0.5364868113 0.1)
(0.7034894713 0.5389297547 0.1)
(0.703750806 0.6496132649 0.1)
(0.7466769297 0.6471910887 0.1)
(0.7462119428 0.6810242316 0.1)
(0.7033835283 0.6843783715 0.1)
(0.7007082679 0.7834784638 0.1)
(0.7434420514 0.7800449453 0.1)
(0.7422428726 0.8139690992 0.1)
(0.699517114 0.8171778023 0.1)
(0.6961687991 0.9272000773 0.1)
(0.7390907353 0.9260356821 0.1)
(0.7384183255 0.967397972 0.1)
(0.6954478604 0.9681167257 0.1)
(0.694995 1.10296 0.1)
(0.781109 1.10262 0.1)
(0.781098 1.1943 0.1)
(0.694983 1.1946 0.1)
(0.694971 1.28624 0.1)
(0.781097 1.28597 0.1)
(0.781101 1.37767 0.1)
(0.694945 1.37791 0.1)
(0.781109 1.4694 0.1)
(0.867247 1.46918 0.1)
(0.867081 1.65219 0.1)
(0.866868 1.8348 0.1)
(0.866754 2.0174 0.1)
(0.866667 2.2 0.1)
(1.03889 -2.2 0.1)
(1.03889 -2.01667 0.1)
(1.03889 -1.83333 0.1)
(1.03889 -1.65 0.1)
(1.03889 -1.46667 0.1)
(0.953286 -1.46972 0.1)
(0.953361 -1.37843 0.1)
(0.866525 -1.37846 0.1)
(0.866505 -1.28717 0.1)
(0.953429 -1.28714 0.1)
(0.953488 -1.19585 0.1)
(0.866488 -1.19589 0.1)
(0.866462 -1.10461 0.1)
(0.953452 -1.10458 0.1)
(0.9520444418 -1.009613624 0.1)
(0.9088439348 -1.009882164 0.1)
(0.8658750692 -1.010314808 0.1)
(0.8640278618 -0.906617371 0.1)
(0.9068985354 -0.9056296874 0.1)
(0.9056200095 -0.8504666803 0.1)
(0.8627871154 -0.8516945897 0.1)
(0.8588087847 -0.6783150352 0.1)
(0.9017139725 -0.6776767313 0.1)
(0.900677392 -0.6192939928 0.1)
(0.8577466182 -0.6196862301 0.1)
(0.8561668901 -0.44843405 0.1)
(0.8991810982 -0.4489521047 0.1)
(0.899250343 -0.3948058976 0.1)
(0.8562581387 -0.3944874016 0.1)
(0.8581949697 -0.2467861994 0.1)
(0.9012294685 -0.2476429792 0.1)
(0.9021682191 -0.2019466154 0.1)
(0.880658384 -0.2015223823 0.1)
(0.8591464232 -0.2011041058 0.1)
(0.8619518498 -0.06452990048 0.1)
(0.872697169 -0.06472281105 0.1)
(0.8729220566 -0.05340803825 0.1)
(0.8621797158 -0.05321619052 0.1)
(0.8686304728 0.1317176244 0.1)
(0.8739866669 0.1314802641 0.1)
(0.8793446183 0.1312789148 0.1)
(0.8794515544 0.1423593652 0.1)
(0.8687457665 0.1428150028 0.1)
(0.871452748 0.3120996047 0.1)
(0.8928826114 0.311296969 0.1)
(0.9143062869 0.3104854613 0.1)
(0.9151496434 0.3559737844 0.1)
(0.8722740792 0.35753938 0.1)
(0.8718655918 0.3348279484 0.1)
(0.8746037543 0.4888716969 0.1)
(0.9174712713 0.485865818 0.1)
(0.9178876859 0.5246695614 0.1)
(0.8751091965 0.5286032322 0.1)
(0.8750405188 0.6368489401 0.1)
(0.9177521904 0.6329796031 0.1)
(0.9171736356 0.6668239969 0.1)
(0.8744730349 0.6705180811 0.1)
(0.8716285487 0.7711071051 0.1)
(0.9143607069 0.7684722341 0.1)
(0.9132504823 0.8039243415 0.1)
(0.8704831532 0.80610935 0.1)
(0.8677262988 0.9219514927 0.1)
(0.9106454817 0.9211474999 0.1)
(0.9102902113 0.9647191258 0.1)
(0.8673078104 0.9651105714 0.1)
(0.867204 1.10226 0.1)
(0.953252 1.10189 0.1)
(0.953259 1.19361 0.1)
(0.867204 1.19395 0.1)
(0.867215 1.28567 0.1)
(0.953283 1.2854 0.1)
(0.953316 1.3772 0.1)
(0.867233 1.37742 0.1)
(0.953348 1.469 0.1)
(1.03943 1.46885 0.1)
(1.0394 1.65214 0.1)
(1.0392 1.83477 0.1)
(1.03904 2.01739 0.1)
(1.03889 2.2 0.1)
(1.21111 -2.2 0.1)
(1.21111 -2.01667 0.1)
(1.21111 -1.83333 0.1)
(1.21111 -1.65 0.1)
(1.21111 -1.46667 0.1)
(1.125 -1.46667 0.1)
(1.125 -1.375 0.1)
(1.03889 -1.375 0.1)
(1.03889 -1.28333 0.1)
(1.125 -1.28333 0.1)
(1.125 -1.19167 0.1)
(1.03889 -1.19167 0.1)
(1.03889 -1.1 0.1)
(1.125 -1.1 0.1)
(1.12443618 -1.005171077 0.1)
(1.081302845 -1.004733223 0.1)
(1.038209162 -1.004457773 0.1)
(1.036146947 -0.8995319771 0.1)
(1.079285166 -0.9002071937 0.1)
(1.07798337 -0.8450399416 0.1)
(1.034827676 -0.8441503828 0.1)
(1.030898208 -0.6712946098 0.1)
(1.074078338 -0.6727728713 0.1)
(1.073062821 -0.6147178404 0.1)
(1.029885268 -0.6130959522 0.1)
(1.028534576 -0.4438969262 0.1)
(1.071672402 -0.4456414473 0.1)
(1.071827988 -0.3924248672 0.1)
(1.028712675 -0.3907790413 0.1)
(1.03086117 -0.2451663065 0.1)
(1.073901658 -0.2460712228 0.1)
(1.074865095 -0.2002473497 0.1)
(1.05334985 -0.1997949966 0.1)
(1.031824607 -0.1993424334 0.1)
(1.034714874 -0.06187281361 0.1)
(1.056240117 -0.06232537688 0.1)
(1.056721814 -0.03941444011 0.1)
(1.045954193 -0.03918805337 0.1)
(1.035196571 -0.03896187684 0.1)
(1.034955722 -0.05041734522 0.1)
(1.038568555 0.1214196466 0.1)
(1.049326178 0.1211934892 0.1)
(1.060093799 0.1209671121 0.1)
(1.060575511 0.1438787528 0.1)
(1.039050268 0.1443313161 0.1)
(1.042422238 0.3047121725 0.1)
(1.085462727 0.3038072562 0.1)
(1.08640971 0.349170629 0.1)
(1.043382258 0.3504401071 0.1)
(1.04586115 0.4768483359 0.1)
(1.088470176 0.4729795369 0.1)
(1.088760278 0.5105913519 0.1)
(1.046155752 0.5146148204 0.1)
(1.045667342 0.6199318087 0.1)
(1.088317817 0.6162340201 0.1)
(1.087682226 0.6502881772 0.1)
(1.045098857 0.6547419732 0.1)
(1.042320748 0.7588719336 0.1)
(1.084876814 0.7552122739 0.1)
(1.084030226 0.7934805212 0.1)
(1.041323018 0.7957887601 0.1)
(1.039345855 0.918431935 0.1)
(1.082284262 0.9178706799 0.1)
(1.08225 0.963502 0.1)
(1.03926 0.963775 0.1)
(1.03928 1.10146 0.1)
(1.12532 1.10101 0.1)
(1.12539 1.19295 0.1)
(1.03931 1.19327 0.1)
(1.03934 1.28514 0.1)
(1.12544 1.28491 0.1)
(1.12548 1.37679 0.1)
(1.03939 1.377 0.1)
(1.12552 1.46859 0.1)
(1.2116 1.46826 0.1)
(1.21159 1.65175 0.1)
(1.21146 1.83473 0.1)
(1.21128 2.01737 0.1)
(1.21111 2.2 0.1)
(1.38333 -2.2 0.1)
(1.38333 -2.01667 0.1)
(1.38333 -1.83333 0.1)
(1.38333 -1.65 0.1)
(1.38333 -1.46667 0.1)
(1.29722 -1.46667 0.1)
(1.29722 -1.375 0.1)
(1.21111 -1.375 0.1)
(1.21111 -1.28333 0.1)
(1.29722 -1.28333 0.1)
(1.29722 -1.19167 0.1)
(1.21111 -1.19167 0.1)
(1.21111 -1.1 0.1)
(1.29722 -1.1 0.1)
(1.297088283 -1.007614269 0.1)
(1.253931012 -1.007021293 0.1)
(1.21075496 -1.006370806 0.1)
(1.209075334 -0.904335234 0.1)
(1.252431375 -0.9062094464 0.1)
(1.251340638 -0.8529391184 0.1)
(1.207909977 -0.8504406492 0.1)
(1.204221144 -0.681469937 0.1)
(1.247782038 -0.6856036864 0.1)
(1.246770985 -0.6286690334 0.1)
(1.203203138 -0.6241523735 0.1)
(1.20158069 -0.4554228394 0.1)
(1.245059521 -0.4602762232 0.1)
(1.245011981 -0.4061541735 0.1)
(1.201594095 -0.4015228365 0.1)
(1.203132514 -0.2500606508 0.1)
(1.246318573 -0.2528677485 0.1)
(1.247119149 -0.2048590837 0.1)
(1.204010907 -0.2030326866 0.1)
(1.206896822 -0.06549289939 0.1)
(1.249947308 -0.06639802593 0.1)
(1.250910723 -0.02057515261 0.1)
(1.207860237 -0.01967002606 0.1)
(1.207378519 -0.04258196262 0.1)
(1.210750505 0.1177995937 0.1)
(1.253800991 0.1168944671 0.1)
(1.254764412 0.1627176404 0.1)
(1.211713926 0.1636227669 0.1)
(1.214574914 0.3000424847 0.1)
(1.257575162 0.2973444836 0.1)
(1.258388283 0.3396762534 0.1)
(1.215433288 0.343196688 0.1)
(1.217100526 0.4621270899 0.1)
(1.259901692 0.4573012873 0.1)
(1.259992028 0.4937682269 0.1)
(1.217234193 0.4986574079 0.1)
(1.216218399 0.6031398364 0.1)
(1.258914492 0.5989640036 0.1)
(1.258184269 0.6339503489 0.1)
(1.215479891 0.6376576909 0.1)
(1.212815573 0.7465098151 0.1)
(1.255635146 0.7445637855 0.1)
(1.254918957 0.7845634198 0.1)
(1.212127579 0.7865569162 0.1)
(1.21111 0.916667 0.1)
(1.25417 0.916667 0.1)
(1.25417 0.9625 0.1)
(1.21125 0.962818 0.1)
(1.21135 1.10065 0.1)
(1.29756 1.10048 0.1)
(1.29749 1.1924 0.1)
(1.21147 1.19275 0.1)
(1.21153 1.28465 0.1)
(1.29758 1.2844 0.1)
(1.29764 1.37625 0.1)
(1.21159 1.37654 0.1)
(1.29764 1.46792 0.1)
(1.38364 1.46759 0.1)
(1.38374 1.65132 0.1)
(1.38369 1.83462 0.1)
(1.38351 2.01735 0.1)
(1.38333 2.2 0.1)
(1.55556 -2.2 0.1)
(1.55556 -2.01667 0.1)
(1.55556 -1.83333 0.1)
(1.55556 -1.65 0.1)
(1.55556 -1.46667 0.1)
(1.46944 -1.46667 0.1)
(1.46944 -1.375 0.1)
(1.38333 -1.375 0.1)
(1.38333 -1.28333 0.1)
(1.46944 -1.28333 0.1)
(1.46944 -1.19167 0.1)
(1.38333 -1.19167 0.1)
(1.38333 -1.1 0.1)
(1.46944 -1.1 0.1)
(1.46944 -1.00833 0.1)
(1.42639 -1.00833 0.1)
(1.383326764 -1.008312692 0.1)
(1.382556047 -0.9121180075 0.1)
(1.425904065 -0.9138330748 0.1)
(1.425260395 -0.8639045189 0.1)
(1.381778873 -0.8612453633 0.1)
(1.378831487 -0.7004685466 0.1)
(1.42259748 -0.7058319136 0.1)
(1.421706487 -0.651352097 0.1)
(1.377893253 -0.6452284029 0.1)
(1.376000645 -0.4794134314 0.1)
(1.419806356 -0.4870472803 0.1)
(1.419538175 -0.4329746656 0.1)
(1.375778588 -0.4251455271 0.1)
(1.37637942 -0.2682703956 0.1)
(1.419923033 -0.2757656635 0.1)
(1.420399248 -0.2253436411 0.1)
(1.376936816 -0.2181968776 0.1)
(1.379262977 -0.07379992932 0.1)
(1.422516968 -0.07978963285 0.1)
(1.423364428 -0.03290354712 0.1)
(1.380161535 -0.02715344288 0.1)
(1.382957913 0.1096222401 0.1)
(1.426037616 0.1036702337 0.1)
(1.426914123 0.1477706817 0.1)
(1.383878778 0.1540594028 0.1)
(1.386352354 0.2821893535 0.1)
(1.429212673 0.2747421316 0.1)
(1.429783733 0.3150816864 0.1)
(1.386992242 0.3227900691 0.1)
(1.387970188 0.4381955 0.1)
(1.43057271 0.4305455809 0.1)
(1.430481712 0.4676707257 0.1)
(1.38792181 0.4749839048 0.1)
(1.38669906 0.5839097748 0.1)
(1.429242351 0.5784599454 0.1)
(1.428612352 0.6162424026 0.1)
(1.386031209 0.6208536129 0.1)
(1.384004374 0.7383791675 0.1)
(1.426824208 0.7365556014 0.1)
(1.426487261 0.7798457607 0.1)
(1.383554868 0.7807490109 0.1)
(1.38333 0.916667 0.1)
(1.42639 0.916667 0.1)
(1.42639 0.9625 0.1)
(1.38333 0.9625 0.1)
(1.38333 1.1 0.1)
(1.46944 1.1 0.1)
(1.46983 1.19203 0.1)
(1.38358 1.19218 0.1)
(1.38365 1.28424 0.1)
(1.46966 1.28378 0.1)
(1.46961 1.37544 0.1)
(1.38362 1.37587 0.1)
(1.46965 1.46727 0.1)
(1.55574 1.46706 0.1)
(1.55584 1.65071 0.1)
(1.55579 1.834 0.1)
(1.55576 2.01733 0.1)
(1.55556 2.2 0.1)
(1.72778 -2.2 0.1)
(1.72778 -2.01667 0.1)
(1.72778 -1.83333 0.1)
(1.72778 -1.65 0.1)
(1.72778 -1.46667 0.1)
(1.64167 -1.46667 0.1)
(1.64167 -1.375 0.1)
(1.55556 -1.375 0.1)
(1.55556 -1.28333 0.1)
(1.64167 -1.28333 0.1)
(1.64167 -1.19167 0.1)
(1.55556 -1.19167 0.1)
(1.55556 -1.1 0.1)
(1.64167 -1.1 0.1)
(1.64167 -1.00833 0.1)
(1.59861 -1.00833 0.1)
(1.55556 -1.00833 0.1)
(1.555557159 -0.9166508265 0.1)
(1.59861 -0.916667 0.1)
(1.598580749 -0.8706591968 0.1)
(1.555387154 -0.8697976103 0.1)
(1.553818531 -0.7209855733 0.1)
(1.597448291 -0.7251588354 0.1)
(1.596881461 -0.6745467826 0.1)
(1.553150494 -0.6693088471 0.1)
(1.551450839 -0.5115162361 0.1)
(1.595328875 -0.5194799134 0.1)
(1.594983116 -0.4674844193 0.1)
(1.551106395 -0.4588253248 0.1)
(1.550967263 -0.3033295391 0.1)
(1.594722225 -0.3133586711 0.1)
(1.594899384 -0.2630866739 0.1)
(1.551212871 -0.2528163195 0.1)
(1.552629409 -0.1062100723 0.1)
(1.596072559 -0.1167832739 0.1)
(1.596616542 -0.06964432248 0.1)
(1.553259822 -0.05904885001 0.1)
(1.555316089 0.07730224758 0.1)
(1.598410097 0.06672995653 0.1)
(1.598987869 0.1105166748 0.1)
(1.555981832 0.1210406493 0.1)
(1.557605878 0.2472137911 0.1)
(1.600358195 0.2371629319 0.1)
(1.600630992 0.2779952175 0.1)
(1.557952954 0.2877167486 0.1)
(1.558209606 0.4059328799 0.1)
(1.600739282 0.3978913126 0.1)
(1.600542852 0.4375585991 0.1)
(1.5580267 0.4448040141 0.1)
(1.556896615 0.5629824344 0.1)
(1.599512326 0.5586849837 0.1)
(1.599141326 0.6005442936 0.1)
(1.556444208 0.6037427833 0.1)
(1.555567416 0.7333866984 0.1)
(1.59861 0.733333 0.1)
(1.59861 0.779167 0.1)
(1.55556 0.779167 0.1)
(1.55556 0.916667 0.1)
(1.59861 0.916667 0.1)
(1.59861 0.9625 0.1)
(1.55556 0.9625 0.1)
(1.55556 1.1 0.1)
(1.64167 1.1 0.1)
(1.64167 1.19167 0.1)
(1.55556 1.19167 0.1)
(1.55556 1.28333 0.1)
(1.64167 1.28333 0.1)
(1.64167 1.375 0.1)
(1.55556 1.375 0.1)
(1.64167 1.46667 0.1)
(1.72778 1.46667 0.1)
(1.72778 1.65 0.1)
(1.72778 1.83333 0.1)
(1.72803 2.01725 0.1)
(1.72778 2.2 0.1)
(1.9 -2.2 0.1)
(1.9 -2.01667 0.1)
(1.9 -1.83333 0.1)
(1.9 -1.65 0.1)
(1.9 -1.46667 0.1)
(1.81389 -1.46667 0.1)
(1.81389 -1.375 0.1)
(1.72778 -1.375 0.1)
(1.72778 -1.28333 0.1)
(1.81389 -1.28333 0.1)
(1.81389 -1.19167 0.1)
(1.72778 -1.19167 0.1)
(1.72778 -1.1 0.1)
(1.81389 -1.1 0.1)
(1.81389 -1.00833 0.1)
(1.77083 -1.00833 0.1)
(1.72778 -1.00833 0.1)
(1.72778 -0.916667 0.1)
(1.77083 -0.916667 0.1)
(1.77083 -0.870833 0.1)
(1.72778 -0.870833 0.1)
(1.727704951 -0.7328173814 0.1)
(1.77083 -0.733333 0.1)
(1.770775445 -0.6871038201 0.1)
(1.727509626 -0.6855203949 0.1)
(1.726629612 -0.5395213049 0.1)
(1.770187703 -0.5441924991 0.1)
(1.76996547 -0.4956570109 0.1)
(1.726357484 -0.4900652598 0.1)
(1.725927407 -0.3416846505 0.1)
(1.769550647 -0.3495144192 0.1)
(1.769534331 -0.3010754402 0.1)
(1.725944501 -0.2926974114 0.1)
(1.72644718 -0.1486258607 0.1)
(1.769856458 -0.1580381391 0.1)
(1.770060129 -0.1113390316 0.1)
(1.726728991 -0.1017792141 0.1)
(1.727697353 0.03485344384 0.1)
(1.770775405 0.02542097794 0.1)
(1.770998119 0.06992191766 0.1)
(1.728002476 0.07912039238 0.1)
(1.728640824 0.2086941734 0.1)
(1.771431522 0.200798868 0.1)
(1.771469327 0.2438265664 0.1)
(1.728723569 0.2510838105 0.1)
(1.728546436 0.3775540612 0.1)
(1.771264346 0.3727734983 0.1)
(1.771127067 0.4162000851 0.1)
(1.728376359 0.4200009158 0.1)
(1.727848287 0.5506398261 0.1)
(1.770830192 0.5500017805 0.1)
(1.77083 0.595833 0.1)
(1.727780798 0.5958398957 0.1)
(1.72778 0.733333 0.1)
(1.77083 0.733333 0.1)
(1.77083 0.779167 0.1)
(1.72778 0.779167 0.1)
(1.72778 0.916667 0.1)
(1.77083 0.916667 0.1)
(1.77083 0.9625 0.1)
(1.72778 0.9625 0.1)
(1.72778 1.1 0.1)
(1.81389 1.1 0.1)
(1.81389 1.19167 0.1)
(1.72778 1.19167 0.1)
(1.72778 1.28333 0.1)
(1.81389 1.28333 0.1)
(1.81389 1.375 0.1)
(1.72778 1.375 0.1)
(1.81389 1.46667 0.1)
(1.9 1.46667 0.1)
(1.9 1.65 0.1)
(1.9 1.83333 0.1)
(1.9 2.01667 0.1)
(1.9 2.2 0.1)
(2.07222 -2.2 0.1)
(2.07222 -2.01667 0.1)
(2.07222 -1.83333 0.1)
(2.07222 -1.65 0.1)
(2.07222 -1.46667 0.1)
(1.98611 -1.46667 0.1)
(1.98611 -1.375 0.1)
(1.9 -1.375 0.1)
(1.9 -1.28333 0.1)
(1.98611 -1.28333 0.1)
(1.98611 -1.19167 0.1)
(1.9 -1.19167 0.1)
(1.9 -1.1 0.1)
(1.98611 -1.1 0.1)
(1.98611 -1.00833 0.1)
(1.94306 -1.00833 0.1)
(1.9 -1.00833 0.1)
(1.9 -0.916667 0.1)
(1.94306 -0.916667 0.1)
(1.94306 -0.870833 0.1)
(1.9 -0.870833 0.1)
(1.9 -0.733333 0.1)
(1.94306 -0.733333 0.1)
(1.94306 -0.6875 0.1)
(1.9 -0.6875 0.1)
(1.9 -0.55 0.1)
(1.94306 -0.55 0.1)
(1.94306 -0.504167 0.1)
(1.899991563 -0.5040858794 0.1)
(1.899848978 -0.3646824045 0.1)
(1.943042981 -0.3664451394 0.1)
(1.943022843 -0.3202810099 0.1)
(1.899808931 -0.3179727406 0.1)
(1.899804714 -0.178312537 0.1)
(1.942996576 -0.1817120448 0.1)
(1.943005711 -0.1356737113 0.1)
(1.899840547 -0.132110406 0.1)
(1.899991893 0.00507458944 0.1)
(1.943057531 0.001650784829 0.1)
(1.943070709 0.04718492555 0.1)
(1.900035022 0.05035398353 0.1)
(1.900074671 0.1854183253 0.1)
(1.943069229 0.1835880298 0.1)
(1.9430617 0.2292042866 0.1)
(1.900056611 0.2304204998 0.1)
(1.9 0.366667 0.1)
(1.94306 0.366667 0.1)
(1.94306 0.4125 0.1)
(1.9 0.4125 0.1)
(1.9 0.55 0.1)
(1.94306 0.55 0.1)
(1.94306 0.595833 0.1)
(1.9 0.595833 0.1)
(1.9 0.733333 0.1)
(1.94306 0.733333 0.1)
(1.94306 0.779167 0.1)
(1.9 0.779167 0.1)
(1.9 0.916667 0.1)
(1.94306 0.916667 0.1)
(1.94306 0.9625 0.1)
(1.9 0.9625 0.1)
(1.9 1.1 0.1)
(1.98611 1.1 0.1)
(1.98611 1.19167 0.1)
(1.9 1.19167 0.1)
(1.9 1.28333 0.1)
(1.98611 1.28333 0.1)
(1.98611 1.375 0.1)
(1.9 1.375 0.1)
(1.98611 1.46667 0.1)
(2.07222 1.46667 0.1)
(2.07222 1.65 0.1)
(2.07222 1.83333 0.1)
(2.07222 2.01667 0.1)
(2.07222 2.2 0.1)
(2.24444 -2.2 0.1)
(2.24444 -2.01667 0.1)
(2.24444 -1.83333 0.1)
(2.24444 -1.65 0.1)
(2.24444 -1.46667 0.1)
(2.15833 -1.46667 0.1)
(2.15833 -1.375 0.1)
(2.07222 -1.375 0.1)
(2.07222 -1.28333 0.1)
(2.15833 -1.28333 0.1)
(2.15833 -1.19167 0.1)
(2.07222 -1.19167 0.1)
(2.07222 -1.1 0.1)
(2.15833 -1.1 0.1)
(2.15833 -1.00833 0.1)
(2.11528 -1.00833 0.1)
(2.07222 -1.00833 0.1)
(2.07222 -0.916667 0.1)
(2.11528 -0.916667 0.1)
(2.11528 -0.870833 0.1)
(2.07222 -0.870833 0.1)
(2.07222 -0.733333 0.1)
(2.11528 -0.733333 0.1)
(2.11528 -0.6875 0.1)
(2.07222 -0.6875 0.1)
(2.07222 -0.55 0.1)
(2.11528 -0.55 0.1)
(2.11528 -0.504167 0.1)
(2.07222 -0.504167 0.1)
(2.07222 -0.366667 0.1)
(2.11528 -0.366667 0.1)
(2.11528 -0.320833 0.1)
(2.07222 -0.320833 0.1)
(2.07222 -0.183333 0.1)
(2.11528 -0.183333 0.1)
(2.11528 -0.1375 0.1)
(2.07222 -0.1375 0.1)
(2.07222 0 0.1)
(2.11528 0 0.1)
(2.11528 0.0458333 0.1)
(2.07222 0.0458333 0.1)
(2.07222 0.183333 0.1)
(2.11528 0.183333 0.1)
(2.11528 0.229167 0.1)
(2.07222 0.229167 0.1)
(2.07222 0.366667 0.1)
(2.11528 0.366667 0.1)
(2.11528 0.4125 0.1)
(2.07222 0.4125 0.1)
(2.07222 0.55 0.1)
(2.11528 0.55 0.1)
(2.11528 0.595833 0.1)
(2.07222 0.595833 0.1)
(2.07222 0.733333 0.1)
(2.11528 0.733333 0.1)
(2.11528 0.779167 0.1)
(2.07222 0.779167 0.1)
(2.07222 0.916667 0.1)
(2.11528 0.916667 0.1)
(2.11528 0.9625 0.1)
(2.07222 0.9625 0.1)
(2.07222 1.1 0.1)
(2.15833 1.1 0.1)
(2.15833 1.19167 0.1)
(2.07222 1.19167 0.1)
(2.07222 1.28333 0.1)
(2.15833 1.28333 0.1)
(2.15833 1.375 0.1)
(2.07222 1.375 0.1)
(2.15833 1.46667 0.1)
(2.24444 1.46667 0.1)
(2.24444 1.65 0.1)
(2.24444 1.83333 0.1)
(2.24444 2.01667 0.1)
(2.24444 2.2 0.1)
(2.41667 -2.2 0.1)
(2.41667 -2.01667 0.1)
(2.41667 -1.83333 0.1)
(2.41667 -1.65 0.1)
(2.41667 -1.46667 0.1)
(2.33056 -1.46667 0.1)
(2.33056 -1.375 0.1)
(2.24444 -1.375 0.1)
(2.24444 -1.28333 0.1)
(2.33056 -1.28333 0.1)
(2.33056 -1.19167 0.1)
(2.24444 -1.19167 0.1)
(2.24444 -1.1 0.1)
(2.33056 -1.1 0.1)
(2.33056 -1.00833 0.1)
(2.2875 -1.00833 0.1)
(2.24444 -1.00833 0.1)
(2.24444 -0.916667 0.1)
(2.2875 -0.916667 0.1)
(2.2875 -0.870833 0.1)
(2.24444 -0.870833 0.1)
(2.24444 -0.733333 0.1)
(2.2875 -0.733333 0.1)
(2.2875 -0.6875 0.1)
(2.24444 -0.6875 0.1)
(2.24444 -0.55 0.1)
(2.2875 -0.55 0.1)
(2.2875 -0.504167 0.1)
(2.24444 -0.504167 0.1)
(2.24444 -0.366667 0.1)
(2.2875 -0.366667 0.1)
(2.2875 -0.320833 0.1)
(2.24444 -0.320833 0.1)
(2.24444 -0.183333 0.1)
(2.2875 -0.183333 0.1)
(2.2875 -0.1375 0.1)
(2.24444 -0.1375 0.1)
(2.24444 0 0.1)
(2.2875 -4.62593e-18 0.1)
(2.2875 0.0458333 0.1)
(2.24444 0.0458333 0.1)
(2.24444 0.183333 0.1)
(2.2875 0.183333 0.1)
(2.2875 0.229167 0.1)
(2.24444 0.229167 0.1)
(2.24444 0.366667 0.1)
(2.2875 0.366667 0.1)
(2.2875 0.4125 0.1)
(2.24444 0.4125 0.1)
(2.24444 0.55 0.1)
(2.2875 0.55 0.1)
(2.2875 0.595833 0.1)
(2.24444 0.595833 0.1)
(2.24444 0.733333 0.1)
(2.2875 0.733333 0.1)
(2.2875 0.779167 0.1)
(2.24444 0.779167 0.1)
(2.24444 0.916667 0.1)
(2.2875 0.916667 0.1)
(2.2875 0.9625 0.1)
(2.24444 0.9625 0.1)
(2.24444 1.1 0.1)
(2.33056 1.1 0.1)
(2.33056 1.19167 0.1)
(2.24444 1.19167 0.1)
(2.24444 1.28333 0.1)
(2.33056 1.28333 0.1)
(2.33056 1.375 0.1)
(2.24444 1.375 0.1)
(2.33056 1.46667 0.1)
(2.41667 1.46667 0.1)
(2.41667 1.65 0.1)
(2.41667 1.83333 0.1)
(2.41667 2.01667 0.1)
(2.41667 2.2 0.1)
(2.58889 -2.2 0.1)
(2.58889 -2.01667 0.1)
(2.58889 -1.83333 0.1)
(2.58889 -1.65 0.1)
(2.58889 -1.46667 0.1)
(2.50278 -1.46667 0.1)
(2.50278 -1.375 0.1)
(2.41667 -1.375 0.1)
(2.41667 -1.28333 0.1)
(2.50278 -1.28333 0.1)
(2.50278 -1.19167 0.1)
(2.41667 -1.19167 0.1)
(2.41667 -1.1 0.1)
(2.50278 -1.1 0.1)
(2.50278 -1.00833 0.1)
(2.45972 -1.00833 0.1)
(2.41667 -1.00833 0.1)
(2.41667 -0.916667 0.1)
(2.45972 -0.916667 0.1)
(2.45972 -0.870833 0.1)
(2.41667 -0.870833 0.1)
(2.41667 -0.733333 0.1)
(2.45972 -0.733333 0.1)
(2.45972 -0.6875 0.1)
(2.41667 -0.6875 0.1)
(2.41667 -0.55 0.1)
(2.45972 -0.55 0.1)
(2.45972 -0.504167 0.1)
(2.41667 -0.504167 0.1)
(2.41667 -0.366667 0.1)
(2.45972 -0.366667 0.1)
(2.45972 -0.320833 0.1)
(2.41667 -0.320833 0.1)
(2.41667 -0.183333 0.1)
(2.45972 -0.183333 0.1)
(2.45972 -0.1375 0.1)
(2.41667 -0.1375 0.1)
(2.41667 -1.85037e-17 0.1)
(2.45972 -1.85037e-17 0.1)
(2.45972 0.0458333 0.1)
(2.41667 0.0458333 0.1)
(2.41667 0.183333 0.1)
(2.45972 0.183333 0.1)
(2.45972 0.229167 0.1)
(2.41667 0.229167 0.1)
(2.41667 0.366667 0.1)
(2.45972 0.366667 0.1)
(2.45972 0.4125 0.1)
(2.41667 0.4125 0.1)
(2.41667 0.55 0.1)
(2.45972 0.55 0.1)
(2.45972 0.595833 0.1)
(2.41667 0.595833 0.1)
(2.41667 0.733333 0.1)
(2.45972 0.733333 0.1)
(2.45972 0.779167 0.1)
(2.41667 0.779167 0.1)
(2.41667 0.916667 0.1)
(2.45972 0.916667 0.1)
(2.45972 0.9625 0.1)
(2.41667 0.9625 0.1)
(2.41667 1.1 0.1)
(2.50278 1.1 0.1)
(2.50278 1.19167 0.1)
(2.41667 1.19167 0.1)
(2.41667 1.28333 0.1)
(2.50278 1.28333 0.1)
(2.50278 1.375 0.1)
(2.41667 1.375 0.1)
(2.50278 1.46667 0.1)
(2.58889 1.46667 0.1)
(2.58889 1.65 0.1)
(2.58889 1.83333 0.1)
(2.58889 2.01667 0.1)
(2.58889 2.2 0.1)
(2.76111 -2.2 0.1)
(2.76111 -2.01667 0.1)
(2.76111 -1.83333 0.1)
(2.76111 -1.65 0.1)
(2.76111 -1.46667 0.1)
(2.675 -1.46667 0.1)
(2.675 -1.375 0.1)
(2.58889 -1.375 0.1)
(2.58889 -1.28333 0.1)
(2.675 -1.28333 0.1)
(2.675 -1.19167 0.1)
(2.58889 -1.19167 0.1)
(2.58889 -1.1 0.1)
(2.675 -1.1 0.1)
(2.675 -1.00833 0.1)
(2.63194 -1.00833 0.1)
(2.58889 -1.00833 0.1)
(2.58889 -0.916667 0.1)
(2.63194 -0.916667 0.1)
(2.63194 -0.870833 0.1)
(2.58889 -0.870833 0.1)
(2.58889 -0.733333 0.1)
(2.63194 -0.733333 0.1)
(2.63194 -0.6875 0.1)
(2.58889 -0.6875 0.1)
(2.58889 -0.55 0.1)
(2.63194 -0.55 0.1)
(2.63194 -0.504167 0.1)
(2.58889 -0.504167 0.1)
(2.58889 -0.366667 0.1)
(2.63194 -0.366667 0.1)
(2.63194 -0.320833 0.1)
(2.58889 -0.320833 0.1)
(2.58889 -0.183333 0.1)
(2.63194 -0.183333 0.1)
(2.63194 -0.1375 0.1)
(2.58889 -0.1375 0.1)
(2.58889 -1.85037e-17 0.1)
(2.63194 -9.25186e-18 0.1)
(2.63194 0.0458333 0.1)
(2.58889 0.0458333 0.1)
(2.58889 0.183333 0.1)
(2.63194 0.183333 0.1)
(2.63194 0.229167 0.1)
(2.58889 0.229167 0.1)
(2.58889 0.366667 0.1)
(2.63194 0.366667 0.1)
(2.63194 0.4125 0.1)
(2.58889 0.4125 0.1)
(2.58889 0.55 0.1)
(2.63194 0.55 0.1)
(2.63194 0.595833 0.1)
(2.58889 0.595833 0.1)
(2.58889 0.733333 0.1)
(2.63194 0.733333 0.1)
(2.63194 0.779167 0.1)
(2.58889 0.779167 0.1)
(2.58889 0.916667 0.1)
(2.63194 0.916667 0.1)
(2.63194 0.9625 0.1)
(2.58889 0.9625 0.1)
(2.58889 1.1 0.1)
(2.675 1.1 0.1)
(2.675 1.19167 0.1)
(2.58889 1.19167 0.1)
(2.58889 1.28333 0.1)
(2.675 1.28333 0.1)
(2.675 1.375 0.1)
(2.58889 1.375 0.1)
(2.675 1.46667 0.1)
(2.76111 1.46667 0.1)
(2.76111 1.65 0.1)
(2.76111 1.83333 0.1)
(2.76111 2.01667 0.1)
(2.76111 2.2 0.1)
(2.93333 -2.2 0.1)
(2.93333 -2.01667 0.1)
(2.93333 -1.83333 0.1)
(2.93333 -1.65 0.1)
(2.93333 -1.46667 0.1)
(2.84722 -1.46667 0.1)
(2.84722 -1.375 0.1)
(2.76111 -1.375 0.1)
(2.76111 -1.28333 0.1)
(2.84722 -1.28333 0.1)
(2.84722 -1.19167 0.1)
(2.76111 -1.19167 0.1)
(2.76111 -1.1 0.1)
(2.84722 -1.1 0.1)
(2.84722 -1.00833 0.1)
(2.80417 -1.00833 0.1)
(2.76111 -1.00833 0.1)
(2.76111 -0.916667 0.1)
(2.80417 -0.916667 0.1)
(2.80417 -0.870833 0.1)
(2.76111 -0.870833 0.1)
(2.76111 -0.733333 0.1)
(2.80417 -0.733333 0.1)
(2.80417 -0.6875 0.1)
(2.76111 -0.6875 0.1)
(2.76111 -0.55 0.1)
(2.80417 -0.55 0.1)
(2.80417 -0.504167 0.1)
(2.76111 -0.504167 0.1)
(2.76111 -0.366667 0.1)
(2.80417 -0.366667 0.1)
(2.80417 -0.320833 0.1)
(2.76111 -0.320833 0.1)
(2.76111 -0.183333 0.1)
(2.80417 -0.183333 0.1)
(2.80417 -0.1375 0.1)
(2.76111 -0.1375 0.1)
(2.76111 1.85037e-17 0.1)
(2.80417 1.85037e-17 0.1)
(2.80417 0.0458333 0.1)
(2.76111 0.0458333 0.1)
(2.76111 0.183333 0.1)
(2.80417 0.183333 0.1)
(2.80417 0.229167 0.1)
(2.76111 0.229167 0.1)
(2.76111 0.366667 0.1)
(2.80417 0.366667 0.1)
(2.80417 0.4125 0.1)
(2.76111 0.4125 0.1)
(2.76111 0.55 0.1)
(2.80417 0.55 0.1)
(2.80417 0.595833 0.1)
(2.76111 0.595833 0.1)
(2.76111 0.733333 0.1)
(2.80417 0.733333 0.1)
(2.80417 0.779167 0.1)
(2.76111 0.779167 0.1)
(2.76111 0.916667 0.1)
(2.80417 0.916667 0.1)
(2.80417 0.9625 0.1)
(2.76111 0.9625 0.1)
(2.76111 1.1 0.1)
(2.84722 1.1 0.1)
(2.84722 1.19167 0.1)
(2.76111 1.19167 0.1)
(2.76111 1.28333 0.1)
(2.84722 1.28333 0.1)
(2.84722 1.375 0.1)
(2.76111 1.375 0.1)
(2.84722 1.46667 0.1)
(2.93333 1.46667 0.1)
(2.93333 1.65 0.1)
(2.93333 1.83333 0.1)
(2.93333 2.01667 0.1)
(2.93333 2.2 0.1)
(3.10556 -2.2 0.1)
(3.10556 -2.01667 0.1)
(3.10556 -1.83333 0.1)
(3.10556 -1.65 0.1)
(3.10556 -1.46667 0.1)
(3.01944 -1.46667 0.1)
(3.01944 -1.375 0.1)
(2.93333 -1.375 0.1)
(2.93333 -1.28333 0.1)
(3.01944 -1.28333 0.1)
(3.01944 -1.19167 0.1)
(2.93333 -1.19167 0.1)
(2.93333 -1.1 0.1)
(3.01944 -1.1 0.1)
(3.01944 -1.00833 0.1)
(2.97639 -1.00833 0.1)
(2.93333 -1.00833 0.1)
(2.93333 -0.916667 0.1)
(2.97639 -0.916667 0.1)
(2.97639 -0.870833 0.1)
(2.93333 -0.870833 0.1)
(2.93333 -0.733333 0.1)
(2.97639 -0.733333 0.1)
(2.97639 -0.6875 0.1)
(2.93333 -0.6875 0.1)
(2.93333 -0.55 0.1)
(2.97639 -0.55 0.1)
(2.97639 -0.504167 0.1)
(2.93333 -0.504167 0.1)
(2.93333 -0.366667 0.1)
(2.97639 -0.366667 0.1)
(2.97639 -0.320833 0.1)
(2.93333 -0.320833 0.1)
(2.93333 -0.183333 0.1)
(2.97639 -0.183333 0.1)
(2.97639 -0.1375 0.1)
(2.93333 -0.1375 0.1)
(2.93333 1.85037e-17 0.1)
(2.97639 1.38778e-17 0.1)
(2.97639 0.0458333 0.1)
(2.93333 0.0458333 0.1)
(2.93333 0.183333 0.1)
(2.97639 0.183333 0.1)
(2.97639 0.229167 0.1)
(2.93333 0.229167 0.1)
(2.93333 0.366667 0.1)
(2.97639 0.366667 0.1)
(2.97639 0.4125 0.1)
(2.93333 0.4125 0.1)
(2.93333 0.55 0.1)
(2.97639 0.55 0.1)
(2.97639 0.595833 0.1)
(2.93333 0.595833 0.1)
(2.93333 0.733333 0.1)
(2.97639 0.733333 0.1)
(2.97639 0.779167 0.1)
(2.93333 0.779167 0.1)
(2.93333 0.916667 0.1)
(2.97639 0.916667 0.1)
(2.97639 0.9625 0.1)
(2.93333 0.9625 0.1)
(2.93333 1.1 0.1)
(3.01944 1.1 0.1)
(3.01944 1.19167 0.1)
(2.93333 1.19167 0.1)
(2.93333 1.28333 0.1)
(3.01944 1.28333 0.1)
(3.01944 1.375 0.1)
(2.93333 1.375 0.1)
(3.01944 1.46667 0.1)
(3.10556 1.46667 0.1)
(3.10556 1.65 0.1)
(3.10556 1.83333 0.1)
(3.10556 2.01667 0.1)
(3.10556 2.2 0.1)
(3.27778 -2.2 0.1)
(3.27778 -2.01667 0.1)
(3.27778 -1.83333 0.1)
(3.27778 -1.65 0.1)
(3.27778 -1.46667 0.1)
(3.19167 -1.46667 0.1)
(3.19167 -1.375 0.1)
(3.10556 -1.375 0.1)
(3.10556 -1.28333 0.1)
(3.19167 -1.28333 0.1)
(3.19167 -1.19167 0.1)
(3.10556 -1.19167 0.1)
(3.10556 -1.1 0.1)
(3.19167 -1.1 0.1)
(3.19167 -1.00833 0.1)
(3.14861 -1.00833 0.1)
(3.10556 -1.00833 0.1)
(3.10556 -0.916667 0.1)
(3.14861 -0.916667 0.1)
(3.14861 -0.870833 0.1)
(3.10556 -0.870833 0.1)
(3.10556 -0.733333 0.1)
(3.14861 -0.733333 0.1)
(3.14861 -0.6875 0.1)
(3.10556 -0.6875 0.1)
(3.10556 -0.55 0.1)
(3.14861 -0.55 0.1)
(3.14861 -0.504167 0.1)
(3.10556 -0.504167 0.1)
(3.10556 -0.366667 0.1)
(3.14861 -0.366667 0.1)
(3.14861 -0.320833 0.1)
(3.10556 -0.320833 0.1)
(3.10556 -0.183333 0.1)
(3.14861 -0.183333 0.1)
(3.14861 -0.1375 0.1)
(3.10556 -0.1375 0.1)
(3.10556 0 0.1)
(3.14861 0 0.1)
(3.14861 0.0458333 0.1)
(3.10556 0.0458333 0.1)
(3.10556 0.183333 0.1)
(3.14861 0.183333 0.1)
(3.14861 0.229167 0.1)
(3.10556 0.229167 0.1)
(3.10556 0.366667 0.1)
(3.14861 0.366667 0.1)
(3.14861 0.4125 0.1)
(3.10556 0.4125 0.1)
(3.10556 0.55 0.1)
(3.14861 0.55 0.1)
(3.14861 0.595833 0.1)
(3.10556 0.595833 0.1)
(3.10556 0.733333 0.1)
(3.14861 0.733333 0.1)
(3.14861 0.779167 0.1)
(3.10556 0.779167 0.1)
(3.10556 0.916667 0.1)
(3.14861 0.916667 0.1)
(3.14861 0.9625 0.1)
(3.10556 0.9625 0.1)
(3.10556 1.1 0.1)
(3.19167 1.1 0.1)
(3.19167 1.19167 0.1)
(3.10556 1.19167 0.1)
(3.10556 1.28333 0.1)
(3.19167 1.28333 0.1)
(3.19167 1.375 0.1)
(3.10556 1.375 0.1)
(3.19167 1.46667 0.1)
(3.27778 1.46667 0.1)
(3.27778 1.65 0.1)
(3.27778 1.83333 0.1)
(3.27778 2.01667 0.1)
(3.27778 2.2 0.1)
(3.45 -2.2 0.1)
(3.45 -2.01667 0.1)
(3.45 -1.83333 0.1)
(3.45 -1.65 0.1)
(3.45 -1.46667 0.1)
(3.36389 -1.46667 0.1)
(3.36389 -1.375 0.1)
(3.27778 -1.375 0.1)
(3.27778 -1.28333 0.1)
(3.36389 -1.28333 0.1)
(3.36389 -1.19167 0.1)
(3.27778 -1.19167 0.1)
(3.27778 -1.1 0.1)
(3.36389 -1.1 0.1)
(3.36389 -1.00833 0.1)
(3.32083 -1.00833 0.1)
(3.27778 -1.00833 0.1)
(3.27778 -0.916667 0.1)
(3.32083 -0.916667 0.1)
(3.32083 -0.870833 0.1)
(3.27778 -0.870833 0.1)
(3.27778 -0.733333 0.1)
(3.32083 -0.733333 0.1)
(3.32083 -0.6875 0.1)
(3.27778 -0.6875 0.1)
(3.27778 -0.55 0.1)
(3.32083 -0.55 0.1)
(3.32083 -0.504167 0.1)
(3.27778 -0.504167 0.1)
(3.27778 -0.366667 0.1)
(3.32083 -0.366667 0.1)
(3.32083 -0.320833 0.1)
(3.27778 -0.320833 0.1)
(3.27778 -0.183333 0.1)
(3.32083 -0.183333 0.1)
(3.32083 -0.1375 0.1)
(3.27778 -0.1375 0.1)
(3.27778 0 0.1)
(3.32083 0 0.1)
(3.32083 0.0458333 0.1)
(3.27778 0.0458333 0.1)
(3.27778 0.183333 0.1)
(3.32083 0.183333 0.1)
(3.32083 0.229167 0.1)
(3.27778 0.229167 0.1)
(3.27778 0.366667 0.1)
(3.32083 0.366667 0.1)
(3.32083 0.4125 0.1)
(3.27778 0.4125 0.1)
(3.27778 0.55 0.1)
(3.32083 0.55 0.1)
(3.32083 0.595833 0.1)
(3.27778 0.595833 0.1)
(3.27778 0.733333 0.1)
(3.32083 0.733333 0.1)
(3.32083 0.779167 0.1)
(3.27778 0.779167 0.1)
(3.27778 0.916667 0.1)
(3.32083 0.916667 0.1)
(3.32083 0.9625 0.1)
(3.27778 0.9625 0.1)
(3.27778 1.1 0.1)
(3.36389 1.1 0.1)
(3.36389 1.19167 0.1)
(3.27778 1.19167 0.1)
(3.27778 1.28333 0.1)
(3.36389 1.28333 0.1)
(3.36389 1.375 0.1)
(3.27778 1.375 0.1)
(3.36389 1.46667 0.1)
(3.45 1.46667 0.1)
(3.45 1.65 0.1)
(3.45 1.83333 0.1)
(3.45 2.01667 0.1)
(3.45 2.2 0.1)
(3.62222 -2.2 0.1)
(3.62222 -2.01667 0.1)
(3.62222 -1.83333 0.1)
(3.62222 -1.65 0.1)
(3.62222 -1.46667 0.1)
(3.53611 -1.46667 0.1)
(3.53611 -1.375 0.1)
(3.45 -1.375 0.1)
(3.45 -1.28333 0.1)
(3.53611 -1.28333 0.1)
(3.53611 -1.19167 0.1)
(3.45 -1.19167 0.1)
(3.45 -1.1 0.1)
(3.53611 -1.1 0.1)
(3.53611 -1.00833 0.1)
(3.49306 -1.00833 0.1)
(3.45 -1.00833 0.1)
(3.45 -0.916667 0.1)
(3.49306 -0.916667 0.1)
(3.49306 -0.870833 0.1)
(3.45 -0.870833 0.1)
(3.45 -0.733333 0.1)
(3.49306 -0.733333 0.1)
(3.49306 -0.6875 0.1)
(3.45 -0.6875 0.1)
(3.45 -0.55 0.1)
(3.49306 -0.55 0.1)
(3.49306 -0.504167 0.1)
(3.45 -0.504167 0.1)
(3.45 -0.366667 0.1)
(3.49306 -0.366667 0.1)
(3.49306 -0.320833 0.1)
(3.45 -0.320833 0.1)
(3.45 -0.183333 0.1)
(3.49306 -0.183333 0.1)
(3.49306 -0.1375 0.1)
(3.45 -0.1375 0.1)
(3.45 0 0.1)
(3.49306 0 0.1)
(3.49306 0.0458333 0.1)
(3.45 0.0458333 0.1)
(3.45 0.183333 0.1)
(3.49306 0.183333 0.1)
(3.49306 0.229167 0.1)
(3.45 0.229167 0.1)
(3.45 0.366667 0.1)
(3.49306 0.366667 0.1)
(3.49306 0.4125 0.1)
(3.45 0.4125 0.1)
(3.45 0.55 0.1)
(3.49306 0.55 0.1)
(3.49306 0.595833 0.1)
(3.45 0.595833 0.1)
(3.45 0.733333 0.1)
(3.49306 0.733333 0.1)
(3.49306 0.779167 0.1)
(3.45 0.779167 0.1)
(3.45 0.916667 0.1)
(3.49306 0.916667 0.1)
(3.49306 0.9625 0.1)
(3.45 0.9625 0.1)
(3.45 1.1 0.1)
(3.53611 1.1 0.1)
(3.53611 1.19167 0.1)
(3.45 1.19167 0.1)
(3.45 1.28333 0.1)
(3.53611 1.28333 0.1)
(3.53611 1.375 0.1)
(3.45 1.375 0.1)
(3.53611 1.46667 0.1)
(3.62222 1.46667 0.1)
(3.62222 1.65 0.1)
(3.62222 1.83333 0.1)
(3.62222 2.01667 0.1)
(3.62222 2.2 0.1)
(3.79444 -2.2 0.1)
(3.79444 -2.01667 0.1)
(3.79444 -1.83333 0.1)
(3.79444 -1.65 0.1)
(3.79444 -1.46667 0.1)
(3.70833 -1.46667 0.1)
(3.70833 -1.375 0.1)
(3.62222 -1.375 0.1)
(3.62222 -1.28333 0.1)
(3.70833 -1.28333 0.1)
(3.70833 -1.19167 0.1)
(3.62222 -1.19167 0.1)
(3.62222 -1.1 0.1)
(3.70833 -1.1 0.1)
(3.70833 -1.00833 0.1)
(3.66528 -1.00833 0.1)
(3.62222 -1.00833 0.1)
(3.62222 -0.916667 0.1)
(3.66528 -0.916667 0.1)
(3.66528 -0.870833 0.1)
(3.62222 -0.870833 0.1)
(3.62222 -0.733333 0.1)
(3.66528 -0.733333 0.1)
(3.66528 -0.6875 0.1)
(3.62222 -0.6875 0.1)
(3.62222 -0.55 0.1)
(3.66528 -0.55 0.1)
(3.66528 -0.504167 0.1)
(3.62222 -0.504167 0.1)
(3.62222 -0.366667 0.1)
(3.66528 -0.366667 0.1)
(3.66528 -0.320833 0.1)
(3.62222 -0.320833 0.1)
(3.62222 -0.183333 0.1)
(3.66528 -0.183333 0.1)
(3.66528 -0.1375 0.1)
(3.62222 -0.1375 0.1)
(3.62222 0 0.1)
(3.66528 -2.31296e-18 0.1)
(3.66528 0.0458333 0.1)
(3.62222 0.0458333 0.1)
(3.62222 0.183333 0.1)
(3.66528 0.183333 0.1)
(3.66528 0.229167 0.1)
(3.62222 0.229167 0.1)
(3.62222 0.366667 0.1)
(3.66528 0.366667 0.1)
(3.66528 0.4125 0.1)
(3.62222 0.4125 0.1)
(3.62222 0.55 0.1)
(3.66528 0.55 0.1)
(3.66528 0.595833 0.1)
(3.62222 0.595833 0.1)
(3.62222 0.733333 0.1)
(3.66528 0.733333 0.1)
(3.66528 0.779167 0.1)
(3.62222 0.779167 0.1)
(3.62222 0.916667 0.1)
(3.66528 0.916667 0.1)
(3.66528 0.9625 0.1)
(3.62222 0.9625 0.1)
(3.62222 1.1 0.1)
(3.70833 1.1 0.1)
(3.70833 1.19167 0.1)
(3.62222 1.19167 0.1)
(3.62222 1.28333 0.1)
(3.70833 1.28333 0.1)
(3.70833 1.375 0.1)
(3.62222 1.375 0.1)
(3.70833 1.46667 0.1)
(3.79444 1.46667 0.1)
(3.79444 1.65 0.1)
(3.79444 1.83333 0.1)
(3.79444 2.01667 0.1)
(3.79444 2.2 0.1)
(3.96667 -2.2 0.1)
(3.96667 -2.01667 0.1)
(3.96667 -1.83333 0.1)
(3.96667 -1.65 0.1)
(3.96667 -1.46667 0.1)
(3.88056 -1.46667 0.1)
(3.88056 -1.375 0.1)
(3.79444 -1.375 0.1)
(3.79444 -1.28333 0.1)
(3.88056 -1.28333 0.1)
(3.88056 -1.19167 0.1)
(3.79444 -1.19167 0.1)
(3.79444 -1.1 0.1)
(3.88056 -1.1 0.1)
(3.88056 -1.00833 0.1)
(3.8375 -1.00833 0.1)
(3.79444 -1.00833 0.1)
(3.79444 -0.916667 0.1)
(3.8375 -0.916667 0.1)
(3.8375 -0.870833 0.1)
(3.79444 -0.870833 0.1)
(3.79444 -0.733333 0.1)
(3.8375 -0.733333 0.1)
(3.8375 -0.6875 0.1)
(3.79444 -0.6875 0.1)
(3.79444 -0.55 0.1)
(3.8375 -0.55 0.1)
(3.8375 -0.504167 0.1)
(3.79444 -0.504167 0.1)
(3.79444 -0.366667 0.1)
(3.8375 -0.366667 0.1)
(3.8375 -0.320833 0.1)
(3.79444 -0.320833 0.1)
(3.79444 -0.183333 0.1)
(3.8375 -0.183333 0.1)
(3.8375 -0.1375 0.1)
(3.79444 -0.1375 0.1)
(3.79444 -9.25186e-18 0.1)
(3.8375 -9.25186e-18 0.1)
(3.8375 0.0458333 0.1)
(3.79444 0.0458333 0.1)
(3.79444 0.183333 0.1)
(3.8375 0.183333 0.1)
(3.8375 0.229167 0.1)
(3.79444 0.229167 0.1)
(3.79444 0.366667 0.1)
(3.8375 0.366667 0.1)
(3.8375 0.4125 0.1)
(3.79444 0.4125 0.1)
(3.79444 0.55 0.1)
(3.8375 0.55 0.1)
(3.8375 0.595833 0.1)
(3.79444 0.595833 0.1)
(3.79444 0.733333 0.1)
(3.8375 0.733333 0.1)
(3.8375 0.779167 0.1)
(3.79444 0.779167 0.1)
(3.79444 0.916667 0.1)
(3.8375 0.916667 0.1)
(3.8375 0.9625 0.1)
(3.79444 0.9625 0.1)
(3.79444 1.1 0.1)
(3.88056 1.1 0.1)
(3.88056 1.19167 0.1)
(3.79444 1.19167 0.1)
(3.79444 1.28333 0.1)
(3.88056 1.28333 0.1)
(3.88056 1.375 0.1)
(3.79444 1.375 0.1)
(3.88056 1.46667 0.1)
(3.96667 1.46667 0.1)
(3.96667 1.65 0.1)
(3.96667 1.83333 0.1)
(3.96667 2.01667 0.1)
(3.96667 2.2 0.1)
(4.13889 -2.2 0.1)
(4.13889 -2.01667 0.1)
(4.13889 -1.83333 0.1)
(4.13889 -1.65 0.1)
(4.13889 -1.46667 0.1)
(4.05278 -1.46667 0.1)
(4.05278 -1.375 0.1)
(3.96667 -1.375 0.1)
(3.96667 -1.28333 0.1)
(4.05278 -1.28333 0.1)
(4.05278 -1.19167 0.1)
(3.96667 -1.19167 0.1)
(3.96667 -1.1 0.1)
(4.05278 -1.1 0.1)
(4.05278 -1.00833 0.1)
(4.00972 -1.00833 0.1)
(3.96667 -1.00833 0.1)
(3.96667 -0.916667 0.1)
(4.00972 -0.916667 0.1)
(4.00972 -0.870833 0.1)
(3.96667 -0.870833 0.1)
(3.96667 -0.733333 0.1)
(4.00972 -0.733333 0.1)
(4.00972 -0.6875 0.1)
(3.96667 -0.6875 0.1)
(3.96667 -0.55 0.1)
(4.00972 -0.55 0.1)
(4.00972 -0.504167 0.1)
(3.96667 -0.504167 0.1)
(3.96667 -0.366667 0.1)
(4.00972 -0.366667 0.1)
(4.00972 -0.320833 0.1)
(3.96667 -0.320833 0.1)
(3.96667 -0.183333 0.1)
(4.00972 -0.183333 0.1)
(4.00972 -0.1375 0.1)
(3.96667 -0.1375 0.1)
(3.96667 -9.25186e-18 0.1)
(4.00972 -1.15648e-17 0.1)
(4.00972 0.0458333 0.1)
(3.96667 0.0458333 0.1)
(3.96667 0.183333 0.1)
(4.00972 0.183333 0.1)
(4.00972 0.229167 0.1)
(3.96667 0.229167 0.1)
(3.96667 0.366667 0.1)
(4.00972 0.366667 0.1)
(4.00972 0.4125 0.1)
(3.96667 0.4125 0.1)
(3.96667 0.55 0.1)
(4.00972 0.55 0.1)
(4.00972 0.595833 0.1)
(3.96667 0.595833 0.1)
(3.96667 0.733333 0.1)
(4.00972 0.733333 0.1)
(4.00972 0.779167 0.1)
(3.96667 0.779167 0.1)
(3.96667 0.916667 0.1)
(4.00972 0.916667 0.1)
(4.00972 0.9625 0.1)
(3.96667 0.9625 0.1)
(3.96667 1.1 0.1)
(4.05278 1.1 0.1)
(4.05278 1.19167 0.1)
(3.96667 1.19167 0.1)
(3.96667 1.28333 0.1)
(4.05278 1.28333 0.1)
(4.05278 1.375 0.1)
(3.96667 1.375 0.1)
(4.05278 1.46667 0.1)
(4.13889 1.46667 0.1)
(4.13889 1.65 0.1)
(4.13889 1.83333 0.1)
(4.13889 2.01667 0.1)
(4.13889 2.2 0.1)
(4.31111 -2.2 0.1)
(4.31111 -2.01667 0.1)
(4.31111 -1.83333 0.1)
(4.31111 -1.65 0.1)
(4.31111 -1.46667 0.1)
(4.225 -1.46667 0.1)
(4.225 -1.375 0.1)
(4.13889 -1.375 0.1)
(4.13889 -1.28333 0.1)
(4.225 -1.28333 0.1)
(4.225 -1.19167 0.1)
(4.13889 -1.19167 0.1)
(4.13889 -1.1 0.1)
(4.225 -1.1 0.1)
(4.225 -1.00833 0.1)
(4.18194 -1.00833 0.1)
(4.13889 -1.00833 0.1)
(4.13889 -0.916667 0.1)
(4.18194 -0.916667 0.1)
(4.18194 -0.870833 0.1)
(4.13889 -0.870833 0.1)
(4.13889 -0.733333 0.1)
(4.18194 -0.733333 0.1)
(4.18194 -0.6875 0.1)
(4.13889 -0.6875 0.1)
(4.13889 -0.55 0.1)
(4.18194 -0.55 0.1)
(4.18194 -0.504167 0.1)
(4.13889 -0.504167 0.1)
(4.13889 -0.366667 0.1)
(4.18194 -0.366667 0.1)
(4.18194 -0.320833 0.1)
(4.13889 -0.320833 0.1)
(4.13889 -0.183333 0.1)
(4.18194 -0.183333 0.1)
(4.18194 -0.1375 0.1)
(4.13889 -0.1375 0.1)
(4.13889 -1.85037e-17 0.1)
(4.18194 -9.25186e-18 0.1)
(4.18194 0.0458333 0.1)
(4.13889 0.0458333 0.1)
(4.13889 0.183333 0.1)
(4.18194 0.183333 0.1)
(4.18194 0.229167 0.1)
(4.13889 0.229167 0.1)
(4.13889 0.366667 0.1)
(4.18194 0.366667 0.1)
(4.18194 0.4125 0.1)
(4.13889 0.4125 0.1)
(4.13889 0.55 0.1)
(4.18194 0.55 0.1)
(4.18194 0.595833 0.1)
(4.13889 0.595833 0.1)
(4.13889 0.733333 0.1)
(4.18194 0.733333 0.1)
(4.18194 0.779167 0.1)
(4.13889 0.779167 0.1)
(4.13889 0.916667 0.1)
(4.18194 0.916667 0.1)
(4.18194 0.9625 0.1)
(4.13889 0.9625 0.1)
(4.13889 1.1 0.1)
(4.225 1.1 0.1)
(4.225 1.19167 0.1)
(4.13889 1.19167 0.1)
(4.13889 1.28333 0.1)
(4.225 1.28333 0.1)
(4.225 1.375 0.1)
(4.13889 1.375 0.1)
(4.225 1.46667 0.1)
(4.31111 1.46667 0.1)
(4.31111 1.65 0.1)
(4.31111 1.83333 0.1)
(4.31111 2.01667 0.1)
(4.31111 2.2 0.1)
(4.48333 -2.2 0.1)
(4.48333 -2.01667 0.1)
(4.48333 -1.83333 0.1)
(4.48333 -1.65 0.1)
(4.48333 -1.46667 0.1)
(4.39722 -1.46667 0.1)
(4.39722 -1.375 0.1)
(4.31111 -1.375 0.1)
(4.31111 -1.28333 0.1)
(4.39722 -1.28333 0.1)
(4.39722 -1.19167 0.1)
(4.31111 -1.19167 0.1)
(4.31111 -1.1 0.1)
(4.39722 -1.1 0.1)
(4.39722 -1.00833 0.1)
(4.35417 -1.00833 0.1)
(4.31111 -1.00833 0.1)
(4.31111 -0.916667 0.1)
(4.35417 -0.916667 0.1)
(4.35417 -0.870833 0.1)
(4.31111 -0.870833 0.1)
(4.31111 -0.733333 0.1)
(4.35417 -0.733333 0.1)
(4.35417 -0.6875 0.1)
(4.31111 -0.6875 0.1)
(4.31111 -0.55 0.1)
(4.35417 -0.55 0.1)
(4.35417 -0.504167 0.1)
(4.31111 -0.504167 0.1)
(4.31111 -0.366667 0.1)
(4.35417 -0.366667 0.1)
(4.35417 -0.320833 0.1)
(4.31111 -0.320833 0.1)
(4.31111 -0.183333 0.1)
(4.35417 -0.183333 0.1)
(4.35417 -0.1375 0.1)
(4.31111 -0.1375 0.1)
(4.31111 1.85037e-17 0.1)
(4.35417 8.09538e-18 0.1)
(4.35417 0.0458333 0.1)
(4.31111 0.0458333 0.1)
(4.31111 0.183333 0.1)
(4.35417 0.183333 0.1)
(4.35417 0.229167 0.1)
(4.31111 0.229167 0.1)
(4.31111 0.366667 0.1)
(4.35417 0.366667 0.1)
(4.35417 0.4125 0.1)
(4.31111 0.4125 0.1)
(4.31111 0.55 0.1)
(4.35417 0.55 0.1)
(4.35417 0.595833 0.1)
(4.31111 0.595833 0.1)
(4.31111 0.733333 0.1)
(4.35417 0.733333 0.1)
(4.35417 0.779167 0.1)
(4.31111 0.779167 0.1)
(4.31111 0.916667 0.1)
(4.35417 0.916667 0.1)
(4.35417 0.9625 0.1)
(4.31111 0.9625 0.1)
(4.31111 1.1 0.1)
(4.39722 1.1 0.1)
(4.39722 1.19167 0.1)
(4.31111 1.19167 0.1)
(4.31111 1.28333 0.1)
(4.39722 1.28333 0.1)
(4.39722 1.375 0.1)
(4.31111 1.375 0.1)
(4.39722 1.46667 0.1)
(4.48333 1.46667 0.1)
(4.48333 1.65 0.1)
(4.48333 1.83333 0.1)
(4.48333 2.01667 0.1)
(4.48333 2.2 0.1)
(4.65556 -2.2 0.1)
(4.65556 -2.01667 0.1)
(4.65556 -1.83333 0.1)
(4.65556 -1.65 0.1)
(4.65556 -1.46667 0.1)
(4.56944 -1.46667 0.1)
(4.56944 -1.375 0.1)
(4.48333 -1.375 0.1)
(4.48333 -1.28333 0.1)
(4.56944 -1.28333 0.1)
(4.56944 -1.19167 0.1)
(4.48333 -1.19167 0.1)
(4.48333 -1.1 0.1)
(4.56944 -1.1 0.1)
(4.56944 -1.00833 0.1)
(4.52639 -1.00833 0.1)
(4.48333 -1.00833 0.1)
(4.48333 -0.916667 0.1)
(4.52639 -0.916667 0.1)
(4.52639 -0.870833 0.1)
(4.48333 -0.870833 0.1)
(4.48333 -0.733333 0.1)
(4.52639 -0.733333 0.1)
(4.52639 -0.6875 0.1)
(4.48333 -0.6875 0.1)
(4.48333 -0.55 0.1)
(4.52639 -0.55 0.1)
(4.52639 -0.504167 0.1)
(4.48333 -0.504167 0.1)
(4.48333 -0.366667 0.1)
(4.52639 -0.366667 0.1)
(4.52639 -0.320833 0.1)
(4.48333 -0.320833 0.1)
(4.48333 -0.183333 0.1)
(4.52639 -0.183333 0.1)
(4.52639 -0.1375 0.1)
(4.48333 -0.1375 0.1)
(4.48333 -2.31296e-17 0.1)
(4.52639 -1.50343e-17 0.1)
(4.52639 0.0458333 0.1)
(4.48333 0.0458333 0.1)
(4.48333 0.183333 0.1)
(4.52639 0.183333 0.1)
(4.52639 0.229167 0.1)
(4.48333 0.229167 0.1)
(4.48333 0.366667 0.1)
(4.52639 0.366667 0.1)
(4.52639 0.4125 0.1)
(4.48333 0.4125 0.1)
(4.48333 0.55 0.1)
(4.52639 0.55 0.1)
(4.52639 0.595833 0.1)
(4.48333 0.595833 0.1)
(4.48333 0.733333 0.1)
(4.52639 0.733333 0.1)
(4.52639 0.779167 0.1)
(4.48333 0.779167 0.1)
(4.48333 0.916667 0.1)
(4.52639 0.916667 0.1)
(4.52639 0.9625 0.1)
(4.48333 0.9625 0.1)
(4.48333 1.1 0.1)
(4.56944 1.1 0.1)
(4.56944 1.19167 0.1)
(4.48333 1.19167 0.1)
(4.48333 1.28333 0.1)
(4.56944 1.28333 0.1)
(4.56944 1.375 0.1)
(4.48333 1.375 0.1)
(4.56944 1.46667 0.1)
(4.65556 1.46667 0.1)
(4.65556 1.65 0.1)
(4.65556 1.83333 0.1)
(4.65556 2.01667 0.1)
(4.65556 2.2 0.1)
(4.82778 -2.2 0.1)
(4.82778 -2.01667 0.1)
(4.82778 -1.83333 0.1)
(4.82778 -1.65 0.1)
(4.82778 -1.46667 0.1)
(4.74167 -1.46667 0.1)
(4.74167 -1.375 0.1)
(4.65556 -1.375 0.1)
(4.65556 -1.28333 0.1)
(4.74167 -1.28333 0.1)
(4.74167 -1.19167 0.1)
(4.65556 -1.19167 0.1)
(4.65556 -1.1 0.1)
(4.74167 -1.1 0.1)
(4.74167 -1.00833 0.1)
(4.69861 -1.00833 0.1)
(4.65556 -1.00833 0.1)
(4.65556 -0.916667 0.1)
(4.69861 -0.916667 0.1)
(4.69861 -0.870833 0.1)
(4.65556 -0.870833 0.1)
(4.65556 -0.733333 0.1)
(4.69861 -0.733333 0.1)
(4.69861 -0.6875 0.1)
(4.65556 -0.6875 0.1)
(4.65556 -0.55 0.1)
(4.69861 -0.55 0.1)
(4.69861 -0.504167 0.1)
(4.65556 -0.504167 0.1)
(4.65556 -0.366667 0.1)
(4.69861 -0.366667 0.1)
(4.69861 -0.320833 0.1)
(4.65556 -0.320833 0.1)
(4.65556 -0.183333 0.1)
(4.69861 -0.183333 0.1)
(4.69861 -0.1375 0.1)
(4.65556 -0.1375 0.1)
(4.65556 9.25186e-18 0.1)
(4.69861 -1.15648e-18 0.1)
(4.69861 0.0458333 0.1)
(4.65556 0.0458333 0.1)
(4.65556 0.183333 0.1)
(4.69861 0.183333 0.1)
(4.69861 0.229167 0.1)
(4.65556 0.229167 0.1)
(4.65556 0.366667 0.1)
(4.69861 0.366667 0.1)
(4.69861 0.4125 0.1)
(4.65556 0.4125 0.1)
(4.65556 0.55 0.1)
(4.69861 0.55 0.1)
(4.69861 0.595833 0.1)
(4.65556 0.595833 0.1)
(4.65556 0.733333 0.1)
(4.69861 0.733333 0.1)
(4.69861 0.779167 0.1)
(4.65556 0.779167 0.1)
(4.65556 0.916667 0.1)
(4.69861 0.916667 0.1)
(4.69861 0.9625 0.1)
(4.65556 0.9625 0.1)
(4.65556 1.1 0.1)
(4.74167 1.1 0.1)
(4.74167 1.19167 0.1)
(4.65556 1.19167 0.1)
(4.65556 1.28333 0.1)
(4.74167 1.28333 0.1)
(4.74167 1.375 0.1)
(4.65556 1.375 0.1)
(4.74167 1.46667 0.1)
(4.82778 1.46667 0.1)
(4.82778 1.65 0.1)
(4.82778 1.83333 0.1)
(4.82778 2.01667 0.1)
(4.82778 2.2 0.1)
(5 -2.2 0.1)
(5 -2.01667 0.1)
(5 -1.83333 0.1)
(5 -1.65 0.1)
(5 -1.46667 0.1)
(4.91389 -1.46667 0.1)
(4.91389 -1.375 0.1)
(4.82778 -1.375 0.1)
(4.82778 -1.28333 0.1)
(4.91389 -1.28333 0.1)
(4.91389 -1.19167 0.1)
(4.82778 -1.19167 0.1)
(4.82778 -1.1 0.1)
(4.91389 -1.1 0.1)
(4.91389 -1.00833 0.1)
(4.87083 -1.00833 0.1)
(4.82778 -1.00833 0.1)
(4.82778 -0.916667 0.1)
(4.87083 -0.916667 0.1)
(4.87083 -0.870833 0.1)
(4.82778 -0.870833 0.1)
(4.82778 -0.733333 0.1)
(4.87083 -0.733333 0.1)
(4.87083 -0.6875 0.1)
(4.82778 -0.6875 0.1)
(4.82778 -0.55 0.1)
(4.87083 -0.55 0.1)
(4.87083 -0.504167 0.1)
(4.82778 -0.504167 0.1)
(4.82778 -0.366667 0.1)
(4.87083 -0.366667 0.1)
(4.87083 -0.320833 0.1)
(4.82778 -0.320833 0.1)
(4.82778 -0.183333 0.1)
(4.87083 -0.183333 0.1)
(4.87083 -0.1375 0.1)
(4.82778 -0.1375 0.1)
(4.82778 -3.23815e-17 0.1)
(4.87083 -2.42861e-17 0.1)
(4.87083 0.0458333 0.1)
(4.82778 0.0458333 0.1)
(4.82778 0.183333 0.1)
(4.87083 0.183333 0.1)
(4.87083 0.229167 0.1)
(4.82778 0.229167 0.1)
(4.82778 0.366667 0.1)
(4.87083 0.366667 0.1)
(4.87083 0.4125 0.1)
(4.82778 0.4125 0.1)
(4.82778 0.55 0.1)
(4.87083 0.55 0.1)
(4.87083 0.595833 0.1)
(4.82778 0.595833 0.1)
(4.82778 0.733333 0.1)
(4.87083 0.733333 0.1)
(4.87083 0.779167 0.1)
(4.82778 0.779167 0.1)
(4.82778 0.916667 0.1)
(4.87083 0.916667 0.1)
(4.87083 0.9625 0.1)
(4.82778 0.9625 0.1)
(4.82778 1.1 0.1)
(4.91389 1.1 0.1)
(4.91389 1.19167 0.1)
(4.82778 1.19167 0.1)
(4.82778 1.28333 0.1)
(4.91389 1.28333 0.1)
(4.91389 1.375 0.1)
(4.82778 1.375 0.1)
(4.91389 1.46667 0.1)
(5 1.46667 0.1)
(5 1.65 0.1)
(5 1.83333 0.1)
(5 2.01667 0.1)
(5 2.2 0.1)
(0.1520622212 -0.02822091 0.1)
(0.1515940742 -0.05096309431 0.1)
(0.1592641959 0.3310720884 0.1)
(0.1587222334 0.3083394578 0.1)
(0.1695479251 0.308115851 0.1)
(0.1804107347 0.3078974651 0.1)
(0.006046814393 0.3109152832 0.1)
(0.02796958913 0.3106394028 0.1)
(0.3352357471 -0.03192905956 0.1)
(0.3244818714 -0.03171496445 0.1)
(0.3240063358 -0.05442798701 0.1)
(0.3327748232 0.3272800356 0.1)
(0.3323136208 0.3045827152 0.1)
(0.3431467011 0.3043299467 0.1)
(0.353976719 0.3040742419 0.1)
(0.1912825003 0.3076768905 0.1)
(0.2021572232 0.3074542533 0.1)
(0.5073822658 -0.03533135248 0.1)
(0.4966222863 -0.03512213014 0.1)
(0.4961535061 -0.05779928678 0.1)
(0.5056156747 0.3230299604 0.1)
(0.5051947998 0.3003477957 0.1)
(0.5159794704 0.3000760405 0.1)
(0.5267560375 0.2997994546 0.1)
(0.3648076946 0.3038165165 0.1)
(0.3756106975 0.3035603794 0.1)
(0.679517352 -0.03861137807 0.1)
(0.6687621822 -0.03841125885 0.1)
(0.6683003256 -0.06104455133 0.1)
(0.6780202457 0.3183429594 0.1)
(0.677613662 0.2956744973 0.1)
(0.6991417204 0.2950228308 0.1)
(0.54836074 0.2992251942 0.1)
(0.8514243568 -0.05302506931 0.1)
(0.8511965119 -0.06433777949 0.1)
(0.8632646423 0.1319248106 0.1)
(0.8632034522 0.1263503151 0.1)
(0.8685705185 0.1261543354 0.1)
(0.8580254731 0.1432467401 0.1)
(0.8578988993 0.1321361559 0.1)
(0.8499998175 0.3128517141 0.1)
(0.8496044625 0.2901940184 0.1)
(0.8710552043 0.289432953 0.1)
(0.7206667257 0.2944162385 0.1)
(1.024188102 -0.05019095849 0.1)
(1.023947253 -0.06164642687 0.1)
(1.027800934 0.1216459801 0.1)
(1.027560072 0.110189898 0.1)
(1.038327697 0.1099637112 0.1)
(0.8739322173 0.1259409247 0.1)
(1.017525025 0.1447838794 0.1)
(1.017641455 0.1341466817 0.1)
(1.017925854 0.1234110516 0.1)
(0.9998352162 0.3068238236 0.1)
(0.9994196765 0.2841575503 0.1)
(0.9989862814 0.2613556222 0.1)
(1.020345691 0.2603894313 0.1)
(1.04182325 0.2595717897 0.1)
(0.8924820053 0.288627381 0.1)
(-0.02223060527 -0.02409234096 0.1)
(-0.02262102578 -0.04689117161 0.1)
(-0.1748298746 0.1232591715 0.1)
(-0.1534599828 0.1227439599 0.1)
(-0.01515795894 0.3340351184 0.1)
(-0.01585503624 0.3111797212 0.1)
(-0.1695174678 0.3110426943 0.1)
(-0.1477233961 0.3111976145 0.1)
(0.09177462253 0.2413027933 0.1)
(0.08628951449 0.2413886099 0.1)
(0.08616559544 0.2356516472 0.1)
(0.09165407475 0.2355501562 0.1)
(0.003815211508 0.242348142 0.1)
(0.003412699625 0.2308989732 0.1)
(0.01452218163 0.2308617423 0.1)
(0.01489400811 0.2422957528 0.1)
(0.1597743756 0.3538153894 0.1)
(0.1416704065 0.5136053463 0.1)
(0.1406210051 0.4680802421 0.1)
(0.1839279089 0.4671447189 0.1)
(0.01041842465 0.470666688 0.1)
(0.0537993996 0.4698346307 0.1)
(0.2996474201 -0.1905610378 0.1)
(0.2987200583 -0.2365565298 0.1)
(0.3235354837 -0.07715611136 0.1)
(0.3450373837 -0.077577177 0.1)
(0.1727412345 -0.0741557346 0.1)
(0.1943228224 -0.07459247875 0.1)
(0.2657952436 0.2366630331 0.1)
(0.2603749818 0.2368026985 0.1)
(0.2602461608 0.230342579 0.1)
(0.2656624634 0.2302048973 0.1)
(0.1789404881 0.2394905556 0.1)
(0.1788375186 0.2335464067 0.1)
(0.184263778 0.2335968572 0.1)
(0.1843730894 0.2394620553 0.1)
(0.3332413187 0.3499912478 0.1)
(0.3148578357 0.5097273083 0.1)
(0.3139125573 0.464191773 0.1)
(0.3571662021 0.4631493457 0.1)
(0.2272664482 0.4661915269 0.1)
(0.4717952302 -0.1938543338 0.1)
(0.470857084 -0.2396250731 0.1)
(0.4956852632 -0.08049845957 0.1)
(0.5172043906 -0.08090888499 0.1)
(0.3665383048 -0.07799722184 0.1)
(0.431566614 -0.05654438502 0.1)
(0.4320316893 -0.0338531474 0.1)
(0.421266816 -0.03363882107 0.1)
(0.4105059208 -0.0334255786 0.1)
(0.4100397195 -0.05612279388 0.1)
(0.4334251968 0.03418639404 0.1)
(0.4280419555 0.03427907092 0.1)
(0.422659344 0.03435413067 0.1)
(0.4224280331 0.02301928845 0.1)
(0.4331930956 0.02281396013 0.1)
(0.3473794087 0.03590966794 0.1)
(0.3471458922 0.02456506993 0.1)
(0.3578835823 0.02434231314 0.1)
(0.3581129315 0.035678997 0.1)
(0.3527422235 0.035796916 0.1)
(0.4391768571 0.2340134447 0.1)
(0.4337666028 0.2341057893 0.1)
(0.4336583987 0.2283884005 0.1)
(0.4390693235 0.2283279488 0.1)
(0.3525862421 0.2358934055 0.1)
(0.3524546085 0.2300606837 0.1)
(0.3578607323 0.2297718825 0.1)
(0.3580000252 0.2356834607 0.1)
(0.5060498831 0.3457278483 0.1)
(0.4875895883 0.5052588943 0.1)
(0.4867076201 0.4599046521 0.1)
(0.5298204038 0.4587751665 0.1)
(0.4003335086 0.4620917299 0.1)
(0.6439716108 -0.1970732139 0.1)
(0.6430213457 -0.2427285014 0.1)
(0.6678366493 -0.08371681417 0.1)
(0.6893501774 -0.08410811765 0.1)
(0.5387245808 -0.08131633208 0.1)
(0.6037632451 -0.05984670922 0.1)
(0.6042324575 -0.03719656764 0.1)
(0.5934713731 -0.03699232318 0.1)
(0.5827073104 -0.03678701589 0.1)
(0.582241992 -0.05944224044 0.1)
(0.6056171313 0.0306131087 0.1)
(0.6002378604 0.03075191231 0.1)
(0.6001189719 0.02504965146 0.1)
(0.6054995936 0.02492752314 0.1)
(0.5195169255 0.03226951169 0.1)
(0.5192911103 0.02100576966 0.1)
(0.530048859 0.0207855918 0.1)
(0.5302754848 0.0320403148 0.1)
(0.5248945268 0.03214644665 0.1)
(0.6118046693 0.2296210161 0.1)
(0.6010336454 0.2299233912 0.1)
(0.6008363341 0.2186357447 0.1)
(0.6116106054 0.218345104 0.1)
(0.5255065342 0.2319013175 0.1)
(0.5252956456 0.2205863504 0.1)
(0.5307018012 0.2204417804 0.1)
(0.5361182425 0.2203106971 0.1)
(0.5363061299 0.2316258478 0.1)
(0.8376242965 -0.2006936173 0.1)
(0.8161022539 -0.2002791297 0.1)
(0.8151561356 -0.245945332 0.1)
(0.8404321339 -0.06414746888 0.1)
(0.8399726459 -0.08681081779 0.1)
(0.861495109 -0.0872053098 0.1)
(0.7108697252 -0.08449854749 0.1)
(0.7758801316 -0.06299332278 0.1)
(0.7761089763 -0.05168063361 0.1)
(0.7653426618 -0.05148728163 0.1)
(0.7651147958 -0.06280099159 0.1)
(0.7777377163 0.02783269832 0.1)
(0.7723444041 0.02782696514 0.1)
(0.7722063814 0.02188065257 0.1)
(0.7775935995 0.02183440236 0.1)
(0.6916586903 0.02921199488 0.1)
(0.6915275016 0.02335285792 0.1)
(0.6968977471 0.02321294378 0.1)
(0.6970261291 0.02903373126 0.1)
(0.7826499608 0.1345951112 0.1)
(0.7827403821 0.1402278751 0.1)
(0.7773394719 0.1402889163 0.1)
(0.7772339028 0.1346017089 0.1)
(0.7839974265 0.2244693647 0.1)
(0.7732415115 0.2248243338 0.1)
(0.7730673422 0.2135432024 0.1)
(0.7838194431 0.2131971154 0.1)
(0.6979583357 0.2271772154 0.1)
(0.6977694851 0.2159113959 0.1)
(0.7085321218 0.2155906931 0.1)
(0.7087210755 0.2268614115 0.1)
(1.010299364 -0.1988898701 0.1)
(0.9893288291 -0.2018347175 0.1)
(0.9883098347 -0.2475894075 0.1)
(1.013189631 -0.06142025034 0.1)
(1.012707912 -0.08433218689 0.1)
(1.034233155 -0.08478475016 0.1)
(0.8830065745 -0.08759957059 0.1)
(0.8834633994 -0.06492016215 0.1)
(0.9480129515 -0.06614327199 0.1)
(0.9482409646 -0.05482256358 0.1)
(0.937486026 -0.05461144679 0.1)
(0.9372570132 -0.06593213418 0.1)
(0.9498428427 0.02455490297 0.1)
(0.9445062252 0.02500977984 0.1)
(0.9443710247 0.0191501271 0.1)
(0.9497232164 0.01881754988 0.1)
(0.8638399483 0.02665325812 0.1)
(0.8636868635 0.02056143001 0.1)
(0.8690365788 0.02034893138 0.1)
(0.8691818109 0.0263527051 0.1)
(1.185853276 -0.04212939934 0.1)
(1.185371579 -0.06504033612 0.1)
(1.189225262 0.118252157 0.1)
(1.18874355 0.09534052034 0.1)
(1.210268793 0.09488795707 0.1)
(1.049085322 0.1097376346 0.1)
(0.08847601968 0.04136705511 0.1)
(0.09931731355 0.0411291172 0.1)
(0.09954149855 0.05250561841 0.1)
(0.09411870419 0.05262473254 0.1)
(0.08870876823 0.05273697486 0.1)
(0.1750921261 0.03951496459 0.1)
(0.1753332282 0.0509349198 0.1)
(0.1699403233 0.05104370337 0.1)
(0.1645317911 0.05112280886 0.1)
(0.1642922815 0.0397310264 0.1)
(0.0005521443117 0.04374055031 0.1)
(0.01164554273 0.04337458483 0.1)
(0.01164769689 0.05482807017 0.1)
(0.0005766777304 0.05519376517 0.1)
(0.07782847851 0.05298503471 0.1)
(0.0776041197 0.04161453848 0.1)
(0.1735026596 0.2395558739 0.1)
(0.1734046757 0.2335634095 0.1)
(0.09712827798 0.2354594677 0.1)
(0.09724430482 0.2412063986 0.1)
(0.09401850221 0.3323338397 0.1)
(0.09343897525 0.3095699919 0.1)
(0.1043159233 0.3093723134 0.1)
(0.1152322677 0.3091788077 0.1)
(0.1157885844 0.3319281403 0.1)
(0.102698067 0.2411282426 0.1)
(0.1029726466 0.2525229885 0.1)
(0.0920684313 0.2527082374 0.1)
(0.1790521577 0.2453251974 0.1)
(0.1736118133 0.2454135737 0.1)
(0.3420186985 0.03602737675 0.1)
(0.3366468436 0.03613831831 0.1)
(0.3364082022 0.02478782673 0.1)
(0.2613131465 0.03765817779 0.1)
(0.2610789666 0.02632959726 0.1)
(0.2718356525 0.02610644108 0.1)
(0.2720687695 0.03743204329 0.1)
(0.2594310508 -0.05314432288 0.1)
(0.2809577771 -0.05357391226 0.1)
(0.281428482 -0.03085278636 0.1)
(0.2599028185 -0.03042021867 0.1)
(0.2722972317 0.04872653648 0.1)
(0.2669243854 0.04883789898 0.1)
(0.2615488698 0.04896502107 0.1)
(0.3474982783 0.04161102899 0.1)
(0.3421376333 0.04173183711 0.1)
(0.1858777635 0.03928919927 0.1)
(0.186113829 0.05070745998 0.1)
(0.1807224031 0.05083901749 0.1)
(0.2561681746 0.04908365016 0.1)
(0.2507806595 0.04921092452 0.1)
(0.250546631 0.0378895424 0.1)
(0.347181539 0.2361070602 0.1)
(0.3470585897 0.2303543736 0.1)
(0.2710881642 0.2301336326 0.1)
(0.2712287681 0.2365833021 0.1)
(0.2677366983 0.3287664735 0.1)
(0.2674969519 0.317411004 0.1)
(0.2783532794 0.3171697494 0.1)
(0.2785909841 0.3285232613 0.1)
(0.2713629506 0.2428702707 0.1)
(0.2659267315 0.2429645615 0.1)
(0.3527115274 0.2416620466 0.1)
(0.3473018162 0.241827796 0.1)
(0.1844878395 0.2452529228 0.1)
(0.2605032875 0.2430955919 0.1)
(0.256897346 0.329006371 0.1)
(0.2566575787 0.3176499018 0.1)
(0.5141422604 0.03238951433 0.1)
(0.5087697 0.03251447383 0.1)
(0.5085394864 0.02123182008 0.1)
(0.4439669669 0.02259944463 0.1)
(0.4442033616 0.03398579136 0.1)
(0.4388136809 0.0341052095 0.1)
(0.4531015276 -0.05696514455 0.1)
(0.4535715178 -0.03427801114 0.1)
(0.4428036031 -0.03406562131 0.1)
(0.4389382627 0.03988796846 0.1)
(0.4335485687 0.03995917623 0.1)
(0.5196286479 0.03786880042 0.1)
(0.5142553274 0.03800517842 0.1)
(0.352859921 0.04149009988 0.1)
(0.4281624239 0.04000890465 0.1)
(0.5147208387 0.2321718939 0.1)
(0.5145127728 0.2208484656 0.1)
(0.5199042176 0.2207178079 0.1)
(0.4444770716 0.2282115516 0.1)
(0.4445864093 0.2338877074 0.1)
(0.4409037997 0.3246675739 0.1)
(0.4404847562 0.3019773689 0.1)
(0.4512835497 0.3017113181 0.1)
(0.462065305 0.3014436252 0.1)
(0.4624882425 0.3241287472 0.1)
(0.4499807504 0.2337520877 0.1)
(0.4501909272 0.2450807728 0.1)
(0.439395133 0.2453467605 0.1)
(0.5257162023 0.2432058079 0.1)
(0.5149315738 0.2434795626 0.1)
(0.3581302786 0.2414981075 0.1)
(0.4285891518 0.2456039604 0.1)
(0.4284726728 0.2399211532 0.1)
(0.4283635971 0.2342098841 0.1)
(0.4193090858 0.3251936137 0.1)
(0.4188712357 0.3025128061 0.1)
(0.4296800691 0.3022485447 0.1)
(0.6862910098 0.02937876104 0.1)
(0.6861581507 0.02348775215 0.1)
(0.6108782577 0.02480743642 0.1)
(0.6109954045 0.03047442609 0.1)
(0.6252685647 -0.06024784234 0.1)
(0.6257306736 -0.03760255251 0.1)
(0.6149865434 -0.03740066496 0.1)
(0.6111133352 0.03617870752 0.1)
(0.605738776 0.03635131956 0.1)
(0.6918010282 0.03522083055 0.1)
(0.6864375116 0.03544292141 0.1)
(0.5250060726 0.03773733724 0.1)
(0.6003612154 0.03652389468 0.1)
(0.6871878016 0.2275028853 0.1)
(0.6869987702 0.2162284677 0.1)
(0.6223879285 0.2180568996 0.1)
(0.6225820744 0.2293367109 0.1)
(0.8584735871 0.0268351999 0.1)
(0.858315387 0.0206903676 0.1)
(0.7829775358 0.02172720767 0.1)
(0.7831193545 0.0277113488 0.1)
(0.786642468 -0.06318559091 0.1)
(0.7868713127 -0.05187290174 0.1)
(0.7825906966 0.129064645 0.1)
(0.7879529976 0.1288798779 0.1)
(0.788029544 0.1344711643 0.1)
(0.7832704524 0.03380381882 0.1)
(0.7778927531 0.0339697954 0.1)
(0.8639853949 0.03266722958 0.1)
(0.8586293735 0.03296037859 0.1)
(0.6971631584 0.03498036478 0.1)
(0.772495338 0.03391163688 0.1)
(0.7771456367 0.1289763113 0.1)
(0.8698481573 0.221365786 0.1)
(0.8484107077 0.2221881856 0.1)
(0.8480492901 0.1996222967 0.1)
(0.8587717765 0.1991997154 0.1)
(0.8694810513 0.1987672095 0.1)
(0.7945621087 0.2128304222 0.1)
(0.7947440828 0.2241021876 0.1)
(0.78811992 0.1401017686 0.1)
(1.036581308 0.02975469855 0.1)
(1.025723264 0.02996188176 0.1)
(1.025633934 0.02428590539 0.1)
(1.025563818 0.01857231683 0.1)
(1.036370946 0.01832209437 0.1)
(0.9550684846 0.01844110851 0.1)
(0.9551790231 0.0240792307 0.1)
(0.9587648067 -0.06635832484 0.1)
(0.9589908412 -0.0550365746 0.1)
(0.954034638 0.1274500653 0.1)
(0.9539875109 0.1165026171 0.1)
(0.9646106286 0.1158732488 0.1)
(0.9646524348 0.1268054855 0.1)
(0.9552596426 0.02900792505 0.1)
(0.9499283001 0.02952340443 0.1)
(1.036821574 0.04118247306 0.1)
(1.025962035 0.04131857198 0.1)
(1.025811977 0.03560856461 0.1)
(0.8693169807 0.03225846867 0.1)
(0.9446025283 0.03006597269 0.1)
(0.9434090487 0.1281046011 0.1)
(0.9433502921 0.1171273308 0.1)
(0.127179615 -0.1871689937 0.1)
(0.1262848913 -0.2335240938 0.1)
(0.1511267379 -0.07371429766 0.1)
(-0.0009729580959 -0.07033039551 0.1)
(0.02103601708 -0.07091115522 0.1)
(0.08672164259 -0.04960716816 0.1)
(0.08716488941 -0.02685045723 0.1)
(0.06540764432 -0.02636701042 0.1)
(0.06496275581 -0.04912568728 0.1)
(0.07737716238 0.03024889795 0.1)
(0.08824756059 0.03000134613 0.1)
(0.000383986381 0.03234476714 0.1)
(0.01150910431 0.03197083316 0.1)
(0.04675589399 0.1956045957 0.1)
(0.04134681967 0.1953106301 0.1)
(0.04154356248 0.1895637248 0.1)
(0.04597885842 0.1912723719 0.1)
(0.001875432306 0.1960278821 0.1)
(0.001624795118 0.1900455287 0.1)
(0.007405587144 0.1899303903 0.1)
(0.007575305516 0.195950853 0.1)
(0.2383622005 -0.02998533612 0.1)
(0.2378923482 -0.05271348149 0.1)
(0.2503123039 0.02655396342 0.1)
(0.174857958 0.02813937343 0.1)
(0.1856435955 0.02791360811 0.1)
(0.5675951631 0.184391112 0.1)
(0.5621607198 0.1842844211 0.1)
(0.5616265483 0.1782876245 0.1)
(0.5661239139 0.1773062725 0.1)
(0.6784389739 0.3410181677 0.1)
(0.659839585 0.4994679539 0.1)
(0.6590227645 0.4552491741 0.1)
(0.7020845121 0.4539606919 0.1)
(0.5729347667 0.4576256433 0.1)
(0.7379253701 0.1334671984 0.1)
(0.7393850956 0.1404796642 0.1)
(0.733985822 0.1405709778 0.1)
(0.733474224 0.1347439442 0.1)
(0.7402922726 0.180868419 0.1)
(0.7295337065 0.181192437 0.1)
(0.7293547716 0.1699225082 0.1)
(0.7347377053 0.169767624 0.1)
(0.7401189295 0.1696265788 0.1)
(0.6972430827 0.1821682055 0.1)
(0.6971517187 0.176538182 0.1)
(0.7025325793 0.1763798407 0.1)
(0.7026249514 0.1820102431 0.1)
(0.9541211961 0.1385127501 0.1)
(0.9435005671 0.1391653413 0.1)
(0.9554237029 0.2177329748 0.1)
(0.9340600311 0.2186867525 0.1)
(0.9336342504 0.1959139709 0.1)
(0.9549542826 0.1948350828 0.1)
(0.8801901601 0.1983268054 0.1)
(0.8908901658 0.1978815916 0.1)
(0.8912649177 0.2205108141 0.1)
(0.1640582816 0.02836343347 0.1)
(0.09908937537 0.02976439749 0.1)
(0.1083464846 -0.05006082526 0.1)
(0.1088038022 -0.02731041149 0.1)
(0.1327337683 0.08570884894 0.1)
(0.1381376099 0.0852163507 0.1)
(0.1382374917 0.09025246389 0.1)
(0.1328226954 0.09079480341 0.1)
(0.0004510927165 0.08968322533 0.1)
(0.00618226118 0.08938218894 0.1)
(0.006153979183 0.09513925544 0.1)
(0.0003445000949 0.09548104693 0.1)
(0.04556956793 0.0881901995 0.1)
(0.0456149565 0.09390750865 0.1)
(0.04008436572 0.09407549947 0.1)
(0.04004693244 0.08827510474 0.1)
(0.01527186715 0.2537217347 0.1)
(0.004282832467 0.2538227478 0.1)
(0.08113971629 0.2528890003 0.1)
(0.08082226321 0.2414864538 0.1)
(0.07225908639 0.3327283125 0.1)
(0.07171907686 0.3099696351 0.1)
(0.0825732299 0.3097724359 0.1)
(0.6918520037 0.1823162594 0.1)
(0.691756546 0.176681821 0.1)
(0.6540989575 0.1831866254 0.1)
(0.6539532828 0.1773520984 0.1)
(0.6593624267 0.1773020864 0.1)
(0.6594939334 0.183081199 0.1)
(0.6134402731 0.3201648409 0.1)
(0.6130215239 0.2974886328 0.1)
(0.6345547586 0.2968928699 0.1)
(0.6349674251 0.319565205 0.1)
(0.6227803351 0.2406219369 0.1)
(0.6120061248 0.240915477 0.1)
(0.6981514419 0.2384551481 0.1)
(0.6873830083 0.2387855749 0.1)
(0.536508808 0.2429308853 0.1)
(0.6012349769 0.2412119534 0.1)
(0.5918810231 0.3207601506 0.1)
(0.5914611901 0.2980799644 0.1)
(0.8256883941 0.1332118723 0.1)
(0.8255753425 0.1275017871 0.1)
(0.8309783393 0.1273972723 0.1)
(0.8310733242 0.1330567962 0.1)
(0.9108096269 0.08484990803 0.1)
(0.9109546319 0.0907001526 0.1)
(0.9056339202 0.09100766257 0.1)
(0.9054888866 0.0852036288 0.1)
(0.9114265122 0.1297948815 0.1)
(0.9007492062 0.130320716 0.1)
(0.900672445 0.1192958436 0.1)
(0.9060182253 0.1190389078 0.1)
(0.9113521115 0.1187871333 0.1)
(-0.08891540033 0.1448143092 0.1)
(-0.08907316698 0.1323580653 0.1)
(-0.07838378423 0.132140225 0.1)
(-0.07822515109 0.1445805932 0.1)
(-0.08925329649 0.04888140768 0.1)
(-0.0663058547 0.04668216368 0.1)
(-0.06638078696 0.05833691385 0.1)
(-0.06676140167 0.07035727029 0.1)
(-0.07813573875 0.07147410703 0.1)
(-0.08933463602 0.0725624497 0.1)
(-0.01064718302 0.05566089532 0.1)
(-0.0104449686 0.04408768768 0.1)
(-0.007240711066 0.2423952493 0.1)
(-0.007658974681 0.2309257071 0.1)
(-0.0851073579 0.2414741123 0.1)
(-0.08632445897 0.2176002211 0.1)
(-0.0755069164 0.2175789303 0.1)
(-0.06428756458 0.218148524 0.1)
(-0.0633108525 0.2303889979 0.1)
(-0.0627072593 0.2421187019 0.1)
(-0.07786114576 0.1575883617 0.1)
(-0.08856357634 0.1577374611 0.1)
(0.05371344828 0.1939355783 0.1)
(0.04795460742 0.2419672423 0.1)
(0.04764087691 0.2305562157 0.1)
(0.05315871557 0.2304715113 0.1)
(0.05866736886 0.2303876002 0.1)
(0.05895691983 0.2418236406 0.1)
(0.05257020834 0.201062684 0.1)
(0.04699743305 0.2012746713 0.1)
(0.007725186202 0.2018760117 0.1)
(0.002067092976 0.2019084526 0.1)
(0.04144550273 0.2012554693 0.1)
(0.03698850594 0.2421109829 0.1)
(0.03670679634 0.2307148865 0.1)
(0.04216620467 0.2306341112 0.1)
(0.2224070374 0.2392025197 0.1)
(0.2222777109 0.2338125472 0.1)
(0.2277083082 0.2336411575 0.1)
(0.2278367231 0.2390353501 0.1)
(0.2169728178 0.2392967685 0.1)
(0.2168437533 0.2338716828 0.1)
(0.3959287661 0.235082161 0.1)
(0.395825327 0.2294486906 0.1)
(0.4012498982 0.2292761273 0.1)
(0.4013539784 0.234940091 0.1)
(0.3904895266 0.2351755151 0.1)
(0.3903795675 0.2295173763 0.1)
(0.6109256352 0.184100836 0.1)
(0.6055472872 0.1842835299 0.1)
(0.6054360354 0.1785639047 0.1)
(0.61078105 0.1782229765 0.1)
(0.5730698704 0.179467145 0.1)
(0.5731019106 0.1847969492 0.1)
(0.5686745979 0.2307845727 0.1)
(0.5684721238 0.219489233 0.1)
(0.5792404783 0.2192026175 0.1)
(0.5794430786 0.2305039559 0.1)
(0.5732220246 0.1905574971 0.1)
(0.5677821766 0.1904316156 0.1)
(0.6110684052 0.1899399251 0.1)
(0.6056810436 0.1900744978 0.1)
(0.5244687563 0.1861571246 0.1)
(0.5294705037 0.1851410628 0.1)
(0.5299925782 0.1910858022 0.1)
(0.5246384494 0.1915165418 0.1)
(0.5623742882 0.1904461933 0.1)
(0.5578971424 0.2310664784 0.1)
(0.5576936789 0.2197716597 0.1)
(0.5630848336 0.219627205 0.1)
(0.7346573592 0.02774523344 0.1)
(0.7345519264 0.02220722605 0.1)
(0.739931275 0.02207212162 0.1)
(0.7400339726 0.02757517879 0.1)
(0.7337736869 -0.01704408773 0.1)
(0.7445278779 -0.01724318615 0.1)
(0.7447513782 -0.005994398766 0.1)
(0.7339982711 -0.005791322249 0.1)
(0.776786494 -0.01783839777 0.1)
(0.7770099102 -0.006593609506 0.1)
(0.7662447216 -0.006394279864 0.1)
(0.7660222631 -0.01764108871 0.1)
(0.7833167062 0.1794853345 0.1)
(0.7725678779 0.1798443555 0.1)
(0.7724072362 0.1686357557 0.1)
(0.7831583689 0.1682911894 0.1)
(0.7454978283 0.1694700791 0.1)
(0.7508798189 0.1693179154 0.1)
(0.7510467367 0.1805395862 0.1)
(0.7448460308 0.1352336756 0.1)
(0.7448690355 0.1406570303 0.1)
(0.9066671973 0.02378869111 0.1)
(0.9065889095 0.01849516714 0.1)
(0.911959092 0.01835225366 0.1)
(0.9120283844 0.02355094576 0.1)
(0.9058804075 -0.02019848932 0.1)
(0.9166316202 -0.0203965249 0.1)
(0.916847029 -0.009199578883 0.1)
(0.906096711 -0.009006563217 0.1)
(0.9489076857 -0.02101810914 0.1)
(0.9491231366 -0.009819163566 0.1)
(0.9437483664 -0.00970415982 0.1)
(0.9383743438 -0.009601174444 0.1)
(0.938153789 -0.02080501381 0.1)
(0.862851667 -0.01940084361 0.1)
(0.8735919242 -0.01959664841 0.1)
(0.8738088583 -0.008374728944 0.1)
(0.8630717896 -0.008169989191 0.1)
(0.895347666 -0.008800571443 0.1)
(0.8951302156 -0.01999947498 0.1)
(0.9013229197 0.02411710105 0.1)
(0.9012334688 0.01872078902 0.1)
(0.0893836053 0.08726521862 0.1)
(0.09494927384 0.0879568804 0.1)
(0.09642172942 0.09503249254 0.1)
(0.08942356063 0.09244342287 0.1)
(0.1274455193 0.09136625858 0.1)
(0.1273526071 0.08623347753 0.1)
(0.1318253515 0.04040863502 0.1)
(0.1320530605 0.05176245714 0.1)
(0.1266325255 0.05188912545 0.1)
(0.1212279343 0.05201295799 0.1)
(0.120995997 0.04064832235 0.1)
(0.1272344325 0.08051759867 0.1)
(0.1326257928 0.08009747878 0.1)
(0.08927376539 0.08159847542 0.1)
(0.0947847185 0.0819189053 0.1)
(0.1762531187 0.08707586883 0.1)
(0.1711688854 0.08745122298 0.1)
(0.1706716671 0.0814042385 0.1)
(0.1760792531 0.08151799551 0.1)
(0.1380367941 0.07970765273 0.1)
(0.142663788 0.04017275762 0.1)
(0.1429033284 0.05151842925 0.1)
(0.1374846247 0.05163705728 0.1)
(0.04477586303 0.04241837012 0.1)
(0.04497417057 0.05379621557 0.1)
(0.03388094077 0.05411596729 0.1)
(0.03369034624 0.04273865982 0.1)
(0.03995309518 0.08249890098 0.1)
(0.04548195269 0.08240546306 0.1)
(0.0006777381866 0.08382956786 0.1)
(0.006233318302 0.08361894234 0.1)
(0.0838777755 0.08697438759 0.1)
(0.08378833999 0.08144084491 0.1)
(0.05099681473 0.08237423308 0.1)
(0.05108342807 0.08823500737 0.1)
(0.05577104195 0.04213528754 0.1)
(0.05597677518 0.05351427716 0.1)
(0.05116365322 0.09398699192 0.1)
(0.08392618387 0.0922216294 0.1)
(0.1354298938 0.2405380851 0.1)
(0.1353015798 0.2347681074 0.1)
(0.1407450399 0.2347327774 0.1)
(0.1408875497 0.2404643482 0.1)
(0.1299845505 0.2406265665 0.1)
(0.1298558897 0.2348400924 0.1)
(0.304371766 0.03680689217 0.1)
(0.3044919423 0.04252282897 0.1)
(0.2991136137 0.04261130165 0.1)
(0.2989948072 0.03691293995 0.1)
(0.2621837199 0.08149146307 0.1)
(0.262084124 0.07646894688 0.1)
(0.2674490614 0.07617170955 0.1)
(0.2675482496 0.08117483003 0.1)
(0.3097508506 0.03670680103 0.1)
(0.3098711425 0.04242823662 0.1)
(0.2182361499 0.03858686679 0.1)
(0.2184751592 0.04995485451 0.1)
(0.2130777326 0.05008643817 0.1)
(0.2076820659 0.05020658229 0.1)
(0.2074477023 0.03882169319 0.1)
(0.2192080878 0.08410149287 0.1)
(0.2138229474 0.08443686329 0.1)
(0.2137150251 0.07925618717 0.1)
(0.2190994684 0.07893523459 0.1)
(0.1814588167 0.0812979678 0.1)
(0.181580903 0.08667658992 0.1)
(0.2568171382 0.0818056387 0.1)
(0.2567151896 0.07676636826 0.1)
(0.2244790577 0.07862128559 0.1)
(0.2245863011 0.08376966884 0.1)
(0.2290106216 0.03835333446 0.1)
(0.2292483117 0.04970614656 0.1)
(0.2238658018 0.04983361575 0.1)
(0.3092462247 0.2373947498 0.1)
(0.3091477555 0.2320452376 0.1)
(0.3145766664 0.2318887867 0.1)
(0.3146757094 0.2372655928 0.1)
(0.3038172261 0.2374518806 0.1)
(0.3037175049 0.2320903922 0.1)
(0.3093525221 0.2428787271 0.1)
(0.3039250698 0.2429618311 0.1)
(0.3101614524 0.2824004555 0.1)
(0.2993261624 0.2826432682 0.1)
(0.2990907725 0.2713047109 0.1)
(0.3099281672 0.271066855 0.1)
(0.2667800698 0.2833615499 0.1)
(0.2665414073 0.2720100585 0.1)
(0.2774038596 0.2717746764 0.1)
(0.2776414802 0.2831241892 0.1)
(0.3535189363 0.281396854 0.1)
(0.3426858981 0.2816516221 0.1)
(0.3424556332 0.2703189584 0.1)
(0.3532896502 0.2700631695 0.1)
(0.3207724133 0.2708218535 0.1)
(0.3210046567 0.2821534754 0.1)
(0.3147812172 0.2427595889 0.1)
(0.2225329401 0.2447150912 0.1)
(0.2171000146 0.2448233159 0.1)
(0.2233861012 0.2842949027 0.1)
(0.2125274799 0.2845222025 0.1)
(0.2122829238 0.2731758361 0.1)
(0.223142587 0.2729505149 0.1)
(0.1799111413 0.2851819477 0.1)
(0.1796623759 0.2738256677 0.1)
(0.1905412871 0.2736119444 0.1)
(0.1907889897 0.2849652461 0.1)
(0.2559376341 0.2835975113 0.1)
(0.2556979508 0.2722450412 0.1)
(0.233997104 0.2727183003 0.1)
(0.2342396606 0.2840647087 0.1)
(0.2279620675 0.244568938 0.1)
(0.476478205 0.03325850946 0.1)
(0.4765975371 0.03898186564 0.1)
(0.471220312 0.03912282672 0.1)
(0.4710998057 0.03339119339 0.1)
(0.4818599022 0.03313995932 0.1)
(0.4819787907 0.03884222017 0.1)
(0.3903804221 0.03498257647 0.1)
(0.3904951425 0.04062931266 0.1)
(0.3851175391 0.04075227772 0.1)
(0.3850016738 0.03509866407 0.1)
(0.3957601491 0.03486546806 0.1)
(0.3958747602 0.04050700541 0.1)
(0.4823534495 0.2329693366 0.1)
(0.4822418916 0.2272827252 0.1)
(0.4876465816 0.2271635916 0.1)
(0.4877569148 0.2328395264 0.1)
(0.519344209 0.1922267843 0.1)
(0.5192579416 0.1871721809 0.1)
(0.4769516622 0.2330838082 0.1)
(0.4768367981 0.227382663 0.1)
(0.6486069858 0.02958342912 0.1)
(0.6487121853 0.03511033897 0.1)
(0.6433265661 0.03518506186 0.1)
(0.6432216082 0.02966964947 0.1)
(0.6539954937 0.02955095484 0.1)
(0.6541061239 0.03514586556 0.1)
(0.562576494 0.03165365815 0.1)
(0.562711261 0.03758783647 0.1)
(0.5573236687 0.03761629061 0.1)
(0.5571918662 0.03172796011 0.1)
(0.5679585842 0.03155380388 0.1)
(0.5680935488 0.03749738012 0.1)
(0.6163098328 0.1839109175 0.1)
(0.6164634623 0.1897907873 0.1)
(0.6542217449 0.1889316137 0.1)
(0.6488231272 0.1890541204 0.1)
(0.6486906607 0.1832769284 0.1)
(0.6548912352 0.2284338689 0.1)
(0.6441132696 0.2287390905 0.1)
(0.643918208 0.2174632993 0.1)
(0.6547012103 0.2171597722 0.1)
(0.6485306646 0.1773796886 0.1)
(0.616135834 0.177918551 0.1)
(0.8206478603 0.02596130828 0.1)
(0.820548204 0.02046018761 0.1)
(0.8259271323 0.02030508761 0.1)
(0.8260214862 0.02574430606 0.1)
(0.8197984274 -0.01862668812 0.1)
(0.8305656786 -0.01882306047 0.1)
(0.8307845912 -0.007602182817 0.1)
(0.8200183818 -0.007403831934 0.1)
(0.8523174514 -0.007977889223 0.1)
(0.8520973289 -0.01920874364 0.1)
(0.7875487043 -0.01803666458 0.1)
(0.7877720364 -0.006795875424 0.1)
(0.8092592549 -0.007201629076 0.1)
(0.8090401952 -0.01842950518 0.1)
(0.8152790365 0.02621641799 0.1)
(0.8151728427 0.0206422186 0.1)
(0.8203043558 0.1333617886 0.1)
(0.8201774284 0.1276101859 0.1)
(0.8207435608 0.03141700207 0.1)
(0.8153828041 0.03177036391 0.1)
(0.826108124 0.03110196868 0.1)
(0.7347588553 0.03323871375 0.1)
(0.7293857823 0.03348201017 0.1)
(0.7292789481 0.02792492802 0.1)
(0.7401302252 0.03300955626 0.1)
(0.7454941711 0.1312849391 0.1)
(0.8257770358 0.138855136 0.1)
(0.8204014622 0.1390270692 0.1)
(0.826278496 0.1779771391 0.1)
(0.8155364673 0.1783741256 0.1)
(0.8153812365 0.1671850164 0.1)
(0.8261272013 0.1667849464 0.1)
(0.7938889299 0.1679196496 0.1)
(0.7940514702 0.1791234084 0.1)
(0.9596554577 -0.02123707702 0.1)
(0.9598666782 -0.01004904494 0.1)
(0.9544949915 -0.009930105134 0.1)
(0.993215963 -0.01952014365 0.1)
(0.9930173042 -0.008274483126 0.1)
(0.9869895079 -0.009581066784 0.1)
(0.9814344505 -0.01019143365 0.1)
(0.9813789853 -0.02139274266 0.1)
(0.9936829318 0.02557310383 0.1)
(0.9876039529 0.02359234708 0.1)
(0.9875837692 0.0182555922 0.1)
(0.9937939417 0.02010146144 0.1)
(0.9923163 0.02836424729 0.1)
(0.9874313982 0.02704063609 0.1)
(0.9965941929 0.08169160798 0.1)
(0.9912412072 0.08189127252 0.1)
(0.9912466071 0.07648686493 0.1)
(0.9965965199 0.07628376422 0.1)
(0.9538939223 0.08379263719 0.1)
(0.953830719 0.07821753393 0.1)
(0.9591960111 0.0780323139 0.1)
(0.9592487962 0.08358763178 0.1)
(0.9067381874 0.02902055485 0.1)
(0.9014073647 0.02946560774 0.1)
(0.9050135941 0.07953346671 0.1)
(0.9094131212 0.07798994706 0.1)
(0.9485387857 0.08398514536 0.1)
(0.9484607278 0.0783695454 0.1)
(0.9162386104 0.07936867906 0.1)
(0.9162448954 0.08480554821 0.1)
(0.9120840119 0.02862299712 0.1)
(0.9220282548 0.1182535715 0.1)
(0.9221016673 0.1292618906 0.1)
(0.9163528081 0.09055665056 0.1)
(0.9539339093 0.08931011573 0.1)
(0.9485935283 0.08953842164 0.1)
(0.000311307132 0.1722464057 0.1)
(0.0001684205303 0.1652158559 0.1)
(0.006994124716 0.1714299517 0.1)
(0.718314021 0.1586327917 0.1)
(0.7129302893 0.1587972947 0.1)
(0.7127506366 0.1528214507 0.1)
(0.7181315392 0.1526651089 0.1)
(0.6968451257 0.1595294686 0.1)
(0.6967720066 0.1539584747 0.1)
(0.7021377477 0.1537470395 0.1)
(0.7022229827 0.1593709904 0.1)
(1.160966067 -0.2020576028 0.1)
(1.160023688 -0.2481845648 0.1)
(1.163856334 -0.06458798304 0.1)
(1.163374616 -0.0874999196 0.1)
(1.162892898 -0.1104118561 0.1)
(1.205933386 -0.1113167725 0.1)
(1.055758398 -0.08523731344 0.1)
(1.120805848 -0.0636828565 0.1)
(1.121287545 -0.04077191973 0.1)
(1.099762302 -0.04031935645 0.1)
(1.099280605 -0.06323029323 0.1)
(1.122732685 0.02796319008 0.1)
(1.101207442 0.02841575336 0.1)
(1.100725738 0.00550451665 0.1)
(1.122250981 0.005051953377 0.1)
(1.047148481 0.01809149832 0.1)
(1.04737918 0.0295399785 0.1)
(1.168673438 0.1645276833 0.1)
(1.168191728 0.1416161467 0.1)
(1.167710016 0.11870451 0.1)
(1.171558356 0.3018049921 0.1)
(1.170600283 0.2561741298 0.1)
(1.213640213 0.2552408567 0.1)
(1.062984066 0.2584367359 0.1)
(1.084499311 0.2579843829 0.1)
(-0.0005579352102 0.1131813271 0.1)
(0.005683250473 0.1125356939 0.1)
(0.006664841162 0.1197237489 0.1)
(-0.001263079122 0.1193201056 0.1)
(0.6914317746 0.1595696668 0.1)
(0.6913130409 0.1538271938 0.1)
(0.6752249169 0.1598895077 0.1)
(0.6752130341 0.1545669814 0.1)
(0.6805797119 0.1543525258 0.1)
(0.6806416835 0.159869042 0.1)
(0.8691518216 0.176305067 0.1)
(0.8584466152 0.1767407881 0.1)
(0.8582984501 0.165554731 0.1)
(0.8690057065 0.1651213674 0.1)
(0.8368582177 0.1663874913 0.1)
(0.8370084622 0.1775773055 0.1)
(0.8311514857 0.1386773251 0.1)
(1.040495401 0.213066126 0.1)
(1.01934909 0.2144153222 0.1)
(1.018969285 0.1915933633 0.1)
(1.04001369 0.1901544893 0.1)
(0.9762427828 0.1936836415 0.1)
(0.9767802962 0.216775545 0.1)
(0.9647334444 0.1378421312 0.1)
(-0.04615798483 0.1436044387 0.1)
(-0.04609743414 0.1303284616 0.1)
(-0.03531339837 0.1297220458 0.1)
(-0.03552314646 0.1368579814 0.1)
(-0.03548418229 0.1436445999 0.1)
(-0.04533203432 0.09318456595 0.1)
(-0.03381012984 0.09198850982 0.1)
(-0.03416048277 0.1040067297 0.1)
(-0.04576209942 0.1055931476 0.1)
(-0.005481087022 0.09588018968 0.1)
(-0.005371804465 0.09006330733 0.1)
(-0.003856241855 0.1960216612 0.1)
(-0.00415626883 0.1900806552 0.1)
(-0.04340453888 0.1949332308 0.1)
(-0.04416982346 0.1827822325 0.1)
(-0.03308947413 0.1831486031 0.1)
(-0.03208273506 0.1954661629 0.1)
(-0.03523644821 0.1509271135 0.1)
(-0.03489850569 0.1575953833 0.1)
(-0.04571140429 0.1573618201 0.1)
(0.244125817 0.2378219832 0.1)
(0.2440015122 0.2317669583 0.1)
(0.2494296031 0.2310482003 0.1)
(0.2495543533 0.2373622731 0.1)
(0.1785288583 0.216249073 0.1)
(0.1839323973 0.2166460776 0.1)
(0.1840444575 0.2218332682 0.1)
(0.178637803 0.2215259488 0.1)
(0.2001907685 0.2175870325 0.1)
(0.2003042886 0.2226533657 0.1)
(0.1948791141 0.2224166513 0.1)
(0.1947620882 0.2173262865 0.1)
(0.200684813 0.2394201716 0.1)
(0.1952479751 0.2394374585 0.1)
(0.1951272699 0.2337439377 0.1)
(0.2005597424 0.2338044599 0.1)
(0.4175512746 0.2344509137 0.1)
(0.41743104 0.2286370565 0.1)
(0.4228354567 0.2285049258 0.1)
(0.4229606524 0.2343168783 0.1)
(0.4169426572 0.2105936358 0.1)
(0.4223278873 0.2103576854 0.1)
(0.4225142452 0.2165097274 0.1)
(0.4171174555 0.2166716044 0.1)
(0.438794758 0.2115105045 0.1)
(0.4388689427 0.2169894557 0.1)
(0.4334256589 0.2168904523 0.1)
(0.4333280616 0.2112969679 0.1)
(0.3520846731 0.2132266404 0.1)
(0.3574758005 0.2127003019 0.1)
(0.3575790624 0.2178971796 0.1)
(0.3521932105 0.2183889995 0.1)
(0.3732310577 0.2109294332 0.1)
(0.3737352947 0.2169296598 0.1)
(0.3683284719 0.2169949263 0.1)
(0.3681530217 0.2115044012 0.1)
(0.3742265155 0.2352507823 0.1)
(0.3688211781 0.2353391227 0.1)
(0.3686676618 0.2293219201 0.1)
(0.3740755894 0.2292616315 0.1)
(0.5624518849 0.02586959947 0.1)
(0.5678338637 0.02576444638 0.1)
(0.5616420625 -0.01374213006 0.1)
(0.5724059991 -0.01395343603 0.1)
(0.5726356123 -0.002651765456 0.1)
(0.5618727175 -0.002438480948 0.1)
(0.6046949146 -0.01458229199 0.1)
(0.6049243386 -0.003289619424 0.1)
(0.5941624226 -0.003077355714 0.1)
(0.5939329355 -0.01437302761 0.1)
(0.5186003341 -0.01289620068 0.1)
(0.529358251 -0.01310838031 0.1)
(0.5295890321 -0.001798732522 0.1)
(0.5188311573 -0.001584553336 0.1)
(0.5511098018 -0.002226196218 0.1)
(0.5508791047 -0.01353184489 0.1)
(0.5570697589 0.02596775412 0.1)
(0.6907253082 -0.01622902538 0.1)
(0.7014803939 -0.01643314372 0.1)
(0.7017063352 -0.005163403012 0.1)
(0.6909523544 -0.0049543068 0.1)
(0.7232332716 -0.005582994596 0.1)
(0.7230085614 -0.01684175875 0.1)
(0.7291707043 0.02234837119 0.1)
(0.9282997666 0.02482530085 0.1)
(0.9281737108 0.01906757841 0.1)
(0.9336048994 0.0193524771 0.1)
(0.9337479028 0.02534539527 0.1)
(0.9278084086 0.001835449717 0.1)
(0.9332082244 0.001769930441 0.1)
(0.933328943 0.007511661541 0.1)
(0.9279238037 0.007514278817 0.1)
(0.9493437426 0.001434685774 0.1)
(0.94946302 0.007155442534 0.1)
(0.9440944259 0.007326328806 0.1)
(0.9439713924 0.00156964306 0.1)
(1.047619881 0.04098844843 0.1)
(1.123214397 0.0508748267 0.1)
(1.101689154 0.05132738997 0.1)
(1.12465953 0.1196096365 0.1)
(1.103134287 0.1200621995 0.1)
(1.102652575 0.09715056323 0.1)
(1.124177818 0.09669799996 0.1)
(0.1571737521 0.240064922 0.1)
(0.157046234 0.2342852254 0.1)
(0.1624947702 0.2339680264 0.1)
(0.1626026601 0.2398607606 0.1)
(0.1566061681 0.2177787286 0.1)
(0.1634559695 0.2149380173 0.1)
(0.1622998764 0.2220341864 0.1)
(0.1567902936 0.2229206944 0.1)
(0.1732309819 0.2213058523 0.1)
(0.1731777506 0.2158244601 0.1)
(0.1355531703 0.2462587578 0.1)
(0.1301109735 0.2463541745 0.1)
(0.1364534628 0.2860346219 0.1)
(0.1255974624 0.2862438626 0.1)
(0.1253385732 0.2748817941 0.1)
(0.1361996355 0.2746754476 0.1)
(0.09288414231 0.286824629 0.1)
(0.0926243481 0.2754575784 0.1)
(0.1035309208 0.2752702795 0.1)
(0.1037928725 0.2866352843 0.1)
(0.16904227 0.2853974604 0.1)
(0.168791463 0.2740392228 0.1)
(0.1470917329 0.2744704491 0.1)
(0.1473445395 0.2858286446 0.1)
(0.1410155098 0.2461699191 0.1)
(0.3309389734 0.2367266179 0.1)
(0.3308325408 0.2311886315 0.1)
(0.3362371338 0.2309221674 0.1)
(0.33634797 0.236526876 0.1)
(0.3305447876 0.2151711411 0.1)
(0.3359225747 0.2147239005 0.1)
(0.3360230072 0.2197862079 0.1)
(0.3306316386 0.2202059279 0.1)
(0.3468162515 0.2188756314 0.1)
(0.3467214911 0.2137500908 0.1)
(0.2875304287 0.2369191134 0.1)
(0.2820964265 0.2366906863 0.1)
(0.2819580515 0.2303946039 0.1)
(0.2873994849 0.2308813318 0.1)
(0.4762477909 0.0219187473 0.1)
(0.4870143485 0.02168938225 0.1)
(0.4872453525 0.03300962769 0.1)
(0.4755527962 -0.01204114717 0.1)
(0.486319648 -0.01225651531 0.1)
(0.4865516182 -0.0009378905376 0.1)
(0.4757848084 -0.0007205228323 0.1)
(0.5080783024 -0.00136947947 0.1)
(0.5078464373 -0.01268310535 0.1)
(0.5199422434 0.05435425102 0.1)
(0.5145789903 0.05463644962 0.1)
(0.5144741922 0.04912863555 0.1)
(0.5198408091 0.04891128057 0.1)
(0.4984842256 0.05548285058 0.1)
(0.4983655347 0.04978998765 0.1)
(0.5037390849 0.04956938622 0.1)
(0.5038524924 0.05520124672 0.1)
(0.4980145184 0.03276160368 0.1)
(0.5033941193 0.03263849661 0.1)
(0.5035087851 0.03828263337 0.1)
(0.4981305203 0.0384217159 0.1)
(0.4441684546 0.211249291 0.1)
(0.4442640524 0.2168428174 0.1)
(0.4601732059 0.2097847455 0.1)
(0.4603567402 0.2158976382 0.1)
(0.4549848317 0.2161963224 0.1)
(0.4548295247 0.2102366702 0.1)
(0.4607640407 0.2334622576 0.1)
(0.4553687355 0.2335995979 0.1)
(0.4552505987 0.2278855187 0.1)
(0.460643381 0.2277233259 0.1)
(0.4825594191 0.244288208 0.1)
(0.4717725178 0.2445490076 0.1)
(0.471560022 0.2332051679 0.1)
(0.4831963216 0.2782443227 0.1)
(0.4724195442 0.2785109108 0.1)
(0.4722035075 0.2671889504 0.1)
(0.4829863045 0.266923236 0.1)
(0.4400482842 0.2793145363 0.1)
(0.4398292061 0.2679906394 0.1)
(0.4506260211 0.2677256304 0.1)
(0.4508450992 0.2790495274 0.1)
(0.3960227035 0.2407394364 0.1)
(0.3905958397 0.2408505343 0.1)
(0.3967690445 0.2803765059 0.1)
(0.3859450883 0.280635084 0.1)
(0.385716823 0.2693023782 0.1)
(0.3965389057 0.2690498409 0.1)
(0.3641266245 0.269805318 0.1)
(0.3643539531 0.2811410441 0.1)
(0.4292375563 0.2795838386 0.1)
(0.4290194149 0.2682569214 0.1)
(0.4073747542 0.2687860117 0.1)
(0.4075939374 0.2801149075 0.1)
(0.4014431692 0.2406094688 0.1)
(0.6484965658 0.02399851619 0.1)
(0.6538821956 0.02392429318 0.1)
(0.6477030078 -0.01541051044 0.1)
(0.6584631555 -0.01561173454 0.1)
(0.658693243 -0.00433507946 0.1)
(0.6479321797 -0.004129835224 0.1)
(0.6802013518 -0.004746273429 0.1)
(0.6799742216 -0.01602499112 0.1)
(0.6154489164 -0.01479038842 0.1)
(0.6156782774 -0.003500715193 0.1)
(0.6371702006 -0.003920570852 0.1)
(0.6369419655 -0.01520426642 0.1)
(0.6431134191 0.02409569207 0.1)
(0.6270922156 0.0300583772 0.1)
(0.6272039422 0.03565786588 0.1)
(0.621844426 0.03583236213 0.1)
(0.6217309513 0.03019730233 0.1)
(0.6275277446 0.05234334612 0.1)
(0.6221832324 0.05270816904 0.1)
(0.6220713755 0.04710248173 0.1)
(0.6274212153 0.04680076077 0.1)
(0.6061145471 0.05374836463 0.1)
(0.6059912446 0.04797888171 0.1)
(0.6113583266 0.04768850082 0.1)
(0.6114784756 0.05340313791 0.1)
(0.6922047285 0.05251906672 0.1)
(0.6868522209 0.05293176828 0.1)
(0.6867390026 0.04768948988 0.1)
(0.6920932667 0.04731275934 0.1)
(0.6711121886 0.05414229317 0.1)
(0.6706213734 0.04816198884 0.1)
(0.6760117109 0.04826410584 0.1)
(0.676178119 0.05375272061 0.1)
(0.670158179 0.02965153541 0.1)
(0.6755386783 0.0296187294 0.1)
(0.6756880919 0.03572623814 0.1)
(0.6703032753 0.03569642107 0.1)
(0.5410383761 0.03187444084 0.1)
(0.5411518782 0.03751080035 0.1)
(0.5357672874 0.03753929141 0.1)
(0.5356556112 0.0319422022 0.1)
(0.5414554357 0.05385183004 0.1)
(0.536059557 0.05372402384 0.1)
(0.5359721311 0.04847160103 0.1)
(0.5413668167 0.04859023028 0.1)
(0.5252137084 0.04870729649 0.1)
(0.5253097395 0.05408356578 0.1)
(0.6007496189 0.05409361237 0.1)
(0.6006221547 0.04826890473 0.1)
(0.5846528641 0.05513079731 0.1)
(0.5845138577 0.04913769509 0.1)
(0.589882975 0.04884897178 0.1)
(0.5900177797 0.05478494971 0.1)
(0.5840980251 0.03116726542 0.1)
(0.5894783147 0.03102934059 0.1)
(0.5896060816 0.03686844505 0.1)
(0.5842284874 0.03703942053 0.1)
(0.6654689531 0.2168440632 0.1)
(0.6656581296 0.2281253792 0.1)
(0.6596082034 0.188801661 0.1)
(0.6974144305 0.1934102877 0.1)
(0.6866404641 0.1937154252 0.1)
(0.6864569823 0.1824670967 0.1)
(0.8046659648 0.1132888445 0.1)
(0.8039949603 0.117244283 0.1)
(0.7971186231 0.1156830195 0.1)
(0.8041633255 0.1339105963 0.1)
(0.7987674386 0.1340678433 0.1)
(0.7986547013 0.1283251342 0.1)
(0.8040594822 0.1282103297 0.1)
(0.7992123679 0.0270195188 0.1)
(0.7993421323 0.03285848124 0.1)
(0.7939971597 0.033201409 0.1)
(0.7938595364 0.02727409223 0.1)
(0.8422224681 0.02600131619 0.1)
(0.8476562871 0.02645889774 0.1)
(0.8477910238 0.03234406587 0.1)
(0.8423183115 0.03146380847 0.1)
(0.7131490352 0.02847920325 0.1)
(0.7132719635 0.0342308901 0.1)
(0.7079000542 0.03448196378 0.1)
(0.7077727539 0.02866505442 0.1)
(0.7136143503 0.05080125427 0.1)
(0.7082571927 0.05123065726 0.1)
(0.7081557092 0.04611836091 0.1)
(0.7135144782 0.04571803047 0.1)
(0.6974431596 0.0469184168 0.1)
(0.6975478934 0.05209015797 0.1)
(0.756348909 0.04738151296 0.1)
(0.7563626737 0.04294584357 0.1)
(0.7617924426 0.04349623076 0.1)
(0.7612731096 0.04695871223 0.1)
(0.7561390878 0.02736380057 0.1)
(0.7615340887 0.0274974265 0.1)
(0.7616451939 0.03311493223 0.1)
(0.7562340989 0.0327867016 0.1)
(0.7608382328 0.1342188633 0.1)
(0.7593718356 0.1271745127 0.1)
(0.7663097861 0.1290021679 0.1)
(0.7663457298 0.1344700605 0.1)
(0.9998049853 0.02460740414 0.1)
(1.001061054 0.03201893897 0.1)
(1.003395634 -0.01536120269 0.1)
(1.003636903 -0.00388573872 0.1)
(0.9986871609 -0.004772890549 0.1)
(1.03567831 -0.01604894051 0.1)
(1.035909224 -0.004590262582 0.1)
(1.025151727 -0.004358087372 0.1)
(1.024910753 -0.01581955443 0.1)
(0.9547118415 0.00128781522 0.1)
(0.9548261528 0.006962666224 0.1)
(0.9708402377 0.000851697969 0.1)
(0.9709436501 0.006388747625 0.1)
(0.9655650161 0.00655784454 0.1)
(0.9654598052 0.0009828243 0.1)
(0.9712072443 0.0226367968 0.1)
(0.9658573564 0.0230789498 0.1)
(0.9657693249 0.01765500183 0.1)
(0.9711314934 0.01732121463 0.1)
(0.9592730087 0.0890684338 0.1)
(0.9965836494 0.09236988895 0.1)
(0.9859414254 0.09308954882 0.1)
(0.9859961014 0.08236953097 0.1)
(0.9964211044 0.1246480474 0.1)
(0.9858289231 0.1253692157 0.1)
(0.9858349 0.1145213033 0.1)
(0.9964693857 0.1139093199 0.1)
(0.9712731079 0.02738696188 0.1)
(0.9659265817 0.02789385852 0.1)
(0.9751036062 0.0605766775 0.1)
(0.969806438 0.06090979824 0.1)
(0.9695194079 0.05558315474 0.1)
(0.9737835198 0.05392615647 0.1)
(1.037594981 0.07558931805 0.1)
(1.026827146 0.07580550704 0.1)
(1.026565678 0.06432076561 0.1)
(1.037343893 0.0641225624 0.1)
(1.001787187 0.07559490356 0.1)
(1.001801136 0.08101570806 0.1)
(0.8852476887 0.02522654953 0.1)
(0.8853566619 0.03083779869 0.1)
(0.8799964323 0.03131137602 0.1)
(0.879878573 0.02561049384 0.1)
(0.9342171828 0.03106259414 0.1)
(0.9297138352 0.03152155647 0.1)
(0.0245865825 0.1955896941 0.1)
(0.02443053525 0.1896471612 0.1)
(0.03006644452 0.1895645755 0.1)
(0.0302835888 0.1954302071 0.1)
(0.006767622344 0.1778703358 0.1)
(0.0009147729774 0.1780853109 0.1)
(0.01891650324 0.1957359121 0.1)
(0.01880899769 0.1897615519 0.1)
(0.5463256914 0.1862573113 0.1)
(0.5463701785 0.1815702406 0.1)
(0.5515184512 0.1804824829 0.1)
(0.5515970903 0.1855548506 0.1)
(0.5409367016 0.1863620116 0.1)
(0.5415555012 0.1825876705 0.1)
(0.7398951956 0.1582239624 0.1)
(0.7345054519 0.1583403812 0.1)
(0.7343471955 0.1524783125 0.1)
(0.7397422702 0.1523775852 0.1)
(0.72355278 0.1526671542 0.1)
(0.7237134584 0.1585492764 0.1)
(0.7240160164 0.1374500248 0.1)
(0.7233749164 0.1414006036 0.1)
(0.716461097 0.1395789305 0.1)
(0.1542967519 0.08429207932 0.1)
(0.1542920057 0.08882368033 0.1)
(0.1489798369 0.08929964794 0.1)
(0.1489013206 0.08442342097 0.1)
(0.1597639015 0.08486018467 0.1)
(0.1592529712 0.08838930424 0.1)
(0.02315186945 0.08870183535 0.1)
(0.0232135493 0.09441380087 0.1)
(0.01751779856 0.09464727785 0.1)
(0.01747121892 0.08892089173 0.1)
(0.0234321175 0.1113128403 0.1)
(0.01885591979 0.1132449595 0.1)
(0.0175056979 0.1061791801 0.1)
(0.02312348983 0.1057677025 0.1)
(-7.684782019e-05 0.1071789883 0.1)
(0.005888274222 0.1067269008 0.1)
(0.02873227152 0.1053796195 0.1)
(0.0281141035 0.1095265297 0.1)
(0.02885001204 0.08851551852 0.1)
(0.02888306168 0.09425489191 0.1)
(0.6536076813 0.1602006734 0.1)
(0.6589885482 0.160042632 0.1)
(0.6590818402 0.1656692141 0.1)
(0.6536508384 0.1656310661 0.1)
(0.6753260524 0.1655561338 0.1)
(0.6698906289 0.1654979742 0.1)
(0.6697373084 0.1596328012 0.1)
(0.6756823873 0.1827423408 0.1)
(0.6702888463 0.1828684416 0.1)
(0.6701695122 0.1771449854 0.1)
(0.6755727785 0.1770532879 0.1)
(0.6682932313 0.1526510132 0.1)
(0.6542314397 0.156281596 0.1)
(0.658955155 0.1550766367 0.1)
(0.8253120661 0.1105552569 0.1)
(0.8306940673 0.1104035931 0.1)
(0.8307647437 0.1160011242 0.1)
(0.8253313571 0.1159922727 0.1)
(0.8468293325 0.1100087405 0.1)
(0.8469220483 0.1156554893 0.1)
(0.8415648675 0.1158459199 0.1)
(0.8414988828 0.1102812475 0.1)
(0.8471818869 0.1325336566 0.1)
(0.841821477 0.1327132228 0.1)
(0.8417469562 0.1271231341 0.1)
(0.8471063058 0.1269407096 0.1)
(0.8415354443 0.105026918 0.1)
(0.8467791544 0.1044822742 0.1)
(0.8259181091 0.1064596129 0.1)
(0.8303593026 0.1049949348 0.1)
(0.8683055893 0.1092243336 0.1)
(0.8628948305 0.1092926836 0.1)
(0.8627802136 0.1035557253 0.1)
(0.8681998156 0.1035273983 0.1)
(0.8519740593 0.1037571165 0.1)
(0.8521198643 0.1095978421 0.1)
(0.888400852 0.08542917125 0.1)
(0.8897174682 0.09205736029 0.1)
(0.8843457747 0.09227112118 0.1)
(0.8840397067 0.08694287751 0.1)
(0.8898642627 0.1086967511 0.1)
(0.8844858011 0.1088740462 0.1)
(0.8844216317 0.1033005636 0.1)
(0.8898064367 0.1031395387 0.1)
(0.8735991879 0.1034407837 0.1)
(0.8737016974 0.1091251849 0.1)
(0.9112621182 0.1077513566 0.1)
(0.9059302001 0.1080015895 0.1)
(0.9058567761 0.1024160988 0.1)
(0.9111917315 0.1021676024 0.1)
(0.8951834676 0.1029417692 0.1)
(0.8952370801 0.1084888679 0.1)
(0.8951759534 0.08669483742 0.1)
(0.8951032099 0.09189331508 0.1)
(0.07052444599 0.1989395146 0.1)
(0.06351458688 0.2009704114 0.1)
(0.06276546063 0.1967620283 0.1)
(0.06944515728 0.2183803968 0.1)
(0.06392803987 0.2185660083 0.1)
(0.06383942739 0.2125768477 0.1)
(0.06936927381 0.21230685 0.1)
(0.04733574755 0.2189976757 0.1)
(0.04723923574 0.2131228064 0.1)
(0.05276635528 0.212970492 0.1)
(0.05285238122 0.2188746882 0.1)
(0.0913772601 0.217645719 0.1)
(0.08588258133 0.2179280802 0.1)
(0.08575806981 0.2120011879 0.1)
(0.09131638987 0.2115060419 0.1)
(0.07486246667 0.2121726527 0.1)
(0.07493146454 0.2182374424 0.1)
(0.04184003291 0.2191023195 0.1)
(0.04170274063 0.2132288076 0.1)
(0.02523641134 0.2193138764 0.1)
(0.02509790223 0.2135252089 0.1)
(0.03060895579 0.213412741 0.1)
(0.03073114183 0.2192147546 0.1)
(0.03042572965 0.2014867574 0.1)
(0.02480112509 0.2016503234 0.1)
(0.221895028 0.2183702794 0.1)
(0.2273413594 0.2184715192 0.1)
(0.2274516114 0.2232872657 0.1)
(0.2220134626 0.2232897768 0.1)
(0.2450404216 0.2186690263 0.1)
(0.2383101343 0.2220562462 0.1)
(0.2377015547 0.2186097771 0.1)
(0.2386871282 0.2383221156 0.1)
(0.238561621 0.2325904874 0.1)
(0.2059838845 0.2338493536 0.1)
(0.2061114429 0.2393930972 0.1)
(0.2056050232 0.2178276774 0.1)
(0.2057229073 0.2228637122 0.1)
(0.2165811932 0.223191342 0.1)
(0.2164656395 0.2182185723 0.1)
(0.3955764966 0.2130941076 0.1)
(0.4009459385 0.2124878073 0.1)
(0.4010384709 0.2180306869 0.1)
(0.3956415527 0.2184243178 0.1)
(0.4117484532 0.2170609475 0.1)
(0.4116034139 0.2111614928 0.1)
(0.4121533127 0.2346046135 0.1)
(0.4120339169 0.2288306475 0.1)
(0.4114924263 0.2059301699 0.1)
(0.4167650946 0.2051453644 0.1)
(0.395519862 0.2082120194 0.1)
(0.4008719774 0.2074476483 0.1)
(0.4333010634 0.2061594003 0.1)
(0.4387612306 0.206300258 0.1)
(0.4218138628 0.2043676668 0.1)
(0.3901535308 0.213438175 0.1)
(0.3901628807 0.2088876731 0.1)
(0.3795033384 0.2293353558 0.1)
(0.3796420931 0.2352213397 0.1)
(0.3777499638 0.2104017286 0.1)
(0.3792067802 0.2174185565 0.1)
(0.3902000937 0.2185548268 0.1)
(0.5892983533 0.1842671809 0.1)
(0.5891059647 0.1782088863 0.1)
(0.5945352508 0.1782605735 0.1)
(0.5947117759 0.1842303819 0.1)
(0.5839219202 0.1845409547 0.1)
(0.5837852751 0.1787077381 0.1)
(0.5894632385 0.1902542378 0.1)
(0.5840536029 0.1904235864 0.1)
(0.5898541631 0.2076108554 0.1)
(0.5844377259 0.2077421386 0.1)
(0.5843239351 0.2020444716 0.1)
(0.5897443125 0.201910305 0.1)
(0.568248949 0.2081132107 0.1)
(0.5681163774 0.2023310198 0.1)
(0.5735098814 0.2022507299 0.1)
(0.5736324229 0.2079840208 0.1)
(0.5463673014 0.1916141202 0.1)
(0.5409527774 0.1915985307 0.1)
(0.5466981779 0.2086836366 0.1)
(0.5413030779 0.2087831643 0.1)
(0.5411808698 0.2030181593 0.1)
(0.5465777263 0.2029546027 0.1)
(0.5250620477 0.2091427322 0.1)
(0.5249405317 0.2033154989 0.1)
(0.5303445902 0.2031187615 0.1)
(0.5304689256 0.2089849441 0.1)
(0.5628605204 0.2082446051 0.1)
(0.5627245458 0.2024432816 0.1)
(0.5519577026 0.2028017812 0.1)
(0.5520815299 0.208548648 0.1)
(0.5517034896 0.1912339689 0.1)
(0.7610259608 0.1401982083 0.1)
(0.7556217052 0.1402904268 0.1)
(0.7554372249 0.1343228361 0.1)
(0.7614699118 0.157698243 0.1)
(0.7560838106 0.157845192 0.1)
(0.755958784 0.1520888482 0.1)
(0.7613514261 0.1519675674 0.1)
(0.7451501011 0.1523126975 0.1)
(0.7452910767 0.158114016 0.1)
(0.9063056494 0.002120503364 0.1)
(0.9116797561 0.002021517104 0.1)
(0.9117808326 0.007542612335 0.1)
(0.9064057051 0.007640619837 0.1)
(0.922537303 0.007499500467 0.1)
(0.9224306299 0.001902506108 0.1)
(0.9228378117 0.02402853578 0.1)
(0.9227510393 0.01866447457 0.1)
(0.8851299724 0.01953246585 0.1)
(0.8905072939 0.01925337222 0.1)
(0.890615914 0.02484782509 0.1)
(0.8847918034 0.002591831218 0.1)
(0.8901824649 0.002471492255 0.1)
(0.8902897594 0.00805046957 0.1)
(0.8849006862 0.008198781326 0.1)
(0.9010401642 0.007766431971 0.1)
(0.9009367519 0.002229382315 0.1)
(0.1112637296 0.08783562172 0.1)
(0.1113843802 0.09314595894 0.1)
(0.1060626847 0.09378726333 0.1)
(0.1058807544 0.08827396938 0.1)
(0.1166348341 0.08730840395 0.1)
(0.116748716 0.09253466487 0.1)
(0.1111050896 0.08176501507 0.1)
(0.1164930267 0.08137237321 0.1)
(0.1106474737 0.06375775556 0.1)
(0.1160654354 0.06360383533 0.1)
(0.1161981655 0.06944113506 0.1)
(0.1107861276 0.06963894047 0.1)
(0.1322827334 0.0631145376 0.1)
(0.1323980172 0.06878806787 0.1)
(0.1269863934 0.06900556893 0.1)
(0.1268649757 0.06327815569 0.1)
(0.0889338094 0.06416847023 0.1)
(0.09435525977 0.06409009335 0.1)
(0.09447945902 0.06993077315 0.1)
(0.08903210664 0.06994748086 0.1)
(0.1053602581 0.06979732792 0.1)
(0.1052191443 0.06389428989 0.1)
(0.1057000392 0.08205729448 0.1)
(0.1542331536 0.07922149583 0.1)
(0.1597015321 0.07980047776 0.1)
(0.1539302522 0.06267380669 0.1)
(0.1593506382 0.06268277148 0.1)
(0.1594742812 0.06846845082 0.1)
(0.1540431496 0.06832898307 0.1)
(0.1755977133 0.06270586105 0.1)
(0.1757502427 0.06886641602 0.1)
(0.1703474385 0.06883737722 0.1)
(0.1702002872 0.06274232367 0.1)
(0.1377136439 0.06295804461 0.1)
(0.1378259465 0.06858492724 0.1)
(0.1486367037 0.06831702459 0.1)
(0.1485280395 0.06272047218 0.1)
(0.1488238799 0.0791701881 0.1)
(0.06758036505 0.08809190809 0.1)
(0.06743072401 0.08210203012 0.1)
(0.07288976887 0.08180891556 0.1)
(0.07301023584 0.08762906927 0.1)
(0.06711505294 0.06464250793 0.1)
(0.07258987418 0.06450509615 0.1)
(0.07270472519 0.07022464569 0.1)
(0.06722863104 0.07038238872 0.1)
(0.08359356742 0.0699885087 0.1)
(0.08349321859 0.06426415326 0.1)
(0.0677563058 0.09411003949 0.1)
(0.06233726732 0.09453624252 0.1)
(0.06213190551 0.08837469787 0.1)
(0.07313485486 0.09339932469 0.1)
(0.1349669813 0.2170458251 0.1)
(0.1403346698 0.2174978955 0.1)
(0.1404590071 0.2232214465 0.1)
(0.1350553325 0.2230082853 0.1)
(0.1513256483 0.2234231729 0.1)
(0.1511502384 0.2182200104 0.1)
(0.151756379 0.240246836 0.1)
(0.1516133865 0.2345398808 0.1)
(0.1509413941 0.2136149829 0.1)
(0.1558846166 0.2141444927 0.1)
(0.134915152 0.2116311182 0.1)
(0.1402062356 0.2123406557 0.1)
(0.113021966 0.2181796625 0.1)
(0.1076336685 0.217984282 0.1)
(0.1074902816 0.2123061415 0.1)
(0.1128197763 0.2128445338 0.1)
(0.09680830918 0.2113017559 0.1)
(0.09684945221 0.2175164642 0.1)
(0.1295598528 0.2169062527 0.1)
(0.1298350008 0.2109161456 0.1)
(0.1182749828 0.2127494437 0.1)
(0.1184934315 0.2179540018 0.1)
(0.1136067495 0.2409509015 0.1)
(0.1134805619 0.235234491 0.1)
(0.1189541526 0.2351099079 0.1)
(0.1190836232 0.2408397524 0.1)
(0.1186616923 0.2235783076 0.1)
(0.1132046307 0.2237754593 0.1)
(0.1296326168 0.222983666 0.1)
(0.2836361921 0.08019424282 0.1)
(0.283554898 0.0753761871 0.1)
(0.2889624614 0.07539372332 0.1)
(0.2889806757 0.07987563072 0.1)
(0.2832822659 0.05964974314 0.1)
(0.2886876204 0.05970493412 0.1)
(0.2887926363 0.06517553538 0.1)
(0.2833824117 0.06503142714 0.1)
(0.3048892678 0.06032661084 0.1)
(0.3050407674 0.06658090817 0.1)
(0.2996325209 0.06615029503 0.1)
(0.2994949927 0.06013235625 0.1)
(0.2617726019 0.060129685 0.1)
(0.267146485 0.05997249057 0.1)
(0.2672488245 0.06541094099 0.1)
(0.2618787963 0.06560876336 0.1)
(0.2779902788 0.06508178156 0.1)
(0.2778912799 0.05970707501 0.1)
(0.2782600035 0.08052722454 0.1)
(0.2781733159 0.07559535705 0.1)
(0.3264142714 0.06000538161 0.1)
(0.3317893448 0.05980965366 0.1)
(0.3319374722 0.06599870746 0.1)
(0.3265644916 0.0662464029 0.1)
(0.3478849533 0.05919368587 0.1)
(0.348024746 0.06522417983 0.1)
(0.3426710891 0.06548707245 0.1)
(0.3425291574 0.05940241148 0.1)
(0.3102777815 0.06038955752 0.1)
(0.3104341596 0.06673317203 0.1)
(0.3211911537 0.0664771021 0.1)
(0.3210378619 0.06018513412 0.1)
(0.1977032322 0.08552374185 0.1)
(0.1975898562 0.0802739651 0.1)
(0.202961911 0.07993466887 0.1)
(0.2030739152 0.08516677055 0.1)
(0.1971644284 0.06213259936 0.1)
(0.202547994 0.06196019805 0.1)
(0.2026856707 0.06793762477 0.1)
(0.1973051767 0.06816097277 0.1)
(0.2187187725 0.06144667282 0.1)
(0.2188463608 0.06727727915 0.1)
(0.2134537223 0.06749388094 0.1)
(0.2133231465 0.06161632703 0.1)
(0.1809858463 0.0626079802 0.1)
(0.1811383799 0.06876873512 0.1)
(0.1919166487 0.0683827893 0.1)
(0.1917718354 0.06230379016 0.1)
(0.192329802 0.08589277355 0.1)
(0.1922139346 0.08061964402 0.1)
(0.240674128 0.08278358285 0.1)
(0.2405760032 0.07768831966 0.1)
(0.2459525344 0.07737163434 0.1)
(0.2460511397 0.08244218196 0.1)
(0.240232586 0.06078350326 0.1)
(0.2456182962 0.06061795839 0.1)
(0.2457311677 0.06622432453 0.1)
(0.2403483987 0.06643461746 0.1)
(0.2565028639 0.06581121086 0.1)
(0.2563947953 0.0602905627 0.1)
(0.2241074463 0.06127936526 0.1)
(0.2242310788 0.06706454471 0.1)
(0.2349776293 0.06664475813 0.1)
(0.2348598709 0.0609486749 0.1)
(0.2353160448 0.08312138506 0.1)
(0.2352124524 0.0780039319 0.1)
(0.3088654599 0.2167154845 0.1)
(0.3143132268 0.2163616936 0.1)
(0.3143963252 0.2213131408 0.1)
(0.3089624199 0.2216126284 0.1)
(0.3252199633 0.2206112715 0.1)
(0.325124955 0.2156166651 0.1)
(0.3255178535 0.2369206134 0.1)
(0.3254157024 0.2314435504 0.1)
(0.2928472527 0.2314790511 0.1)
(0.2929643224 0.2371899521 0.1)
(0.2931071646 0.2175331064 0.1)
(0.2926475935 0.2209836291 0.1)
(0.2858082804 0.2178532006 0.1)
(0.3035373134 0.2218073078 0.1)
(0.3034443646 0.2170058007 0.1)
(0.4555284869 0.05775458747 0.1)
(0.4608959052 0.05748020305 0.1)
(0.4610368468 0.06351777442 0.1)
(0.455672601 0.06384790448 0.1)
(0.4769904848 0.05662500403 0.1)
(0.4771209639 0.06249795896 0.1)
(0.4717569955 0.0628412861 0.1)
(0.4716233503 0.05691288547 0.1)
(0.4339833113 0.05821057048 0.1)
(0.4393850227 0.05833035231 0.1)
(0.4395469538 0.06465264539 0.1)
(0.4341438686 0.06451508852 0.1)
(0.4503041795 0.06416972047 0.1)
(0.4501557228 0.05801258064 0.1)
(0.5039653764 0.06080821273 0.1)
(0.498600196 0.06114146312 0.1)
(0.5200426632 0.05979654264 0.1)
(0.5146836496 0.06013766514 0.1)
(0.4823616101 0.0563366386 0.1)
(0.4824879253 0.06215426883 0.1)
(0.493231029 0.06147539746 0.1)
(0.4931119724 0.05576513838 0.1)
(0.369345313 0.05831919323 0.1)
(0.3747168132 0.05809623437 0.1)
(0.374836162 0.06382039038 0.1)
(0.3694699789 0.06410595131 0.1)
(0.3908302846 0.05742597911 0.1)
(0.3909376351 0.06296004532 0.1)
(0.3855704795 0.06324692699 0.1)
(0.3854587844 0.05764893797 0.1)
(0.3532406379 0.05897966143 0.1)
(0.3533771865 0.06495101051 0.1)
(0.3641037664 0.06439011254 0.1)
(0.3639747937 0.05854123127 0.1)
(0.4123331951 0.05676753978 0.1)
(0.4177289162 0.05688784764 0.1)
(0.4178191047 0.06217652038 0.1)
(0.4124221841 0.06204673564 0.1)
(0.4287071409 0.06382401652 0.1)
(0.4285666722 0.05780894017 0.1)
(0.3962028728 0.0572071983 0.1)
(0.396305864 0.06267664187 0.1)
(0.4070436629 0.06217362086 0.1)
(0.4069504848 0.05683790056 0.1)
(0.5034490993 0.2094675108 0.1)
(0.4980337213 0.2095064513 0.1)
(0.4978633475 0.2034962046 0.1)
(0.5032986217 0.2035472658 0.1)
(0.4818822741 0.2099879631 0.1)
(0.4817793597 0.2043318767 0.1)
(0.4871492295 0.2040789455 0.1)
(0.4872779072 0.2098662194 0.1)
(0.5196754786 0.2093149966 0.1)
(0.519559637 0.2035673617 0.1)
(0.5087552481 0.2037100028 0.1)
(0.5088705166 0.2094779542 0.1)
(0.5092507047 0.1891214649 0.1)
(0.5086422405 0.1928640818 0.1)
(0.5016849318 0.1905914232 0.1)
(0.4546758398 0.2043065905 0.1)
(0.4599799904 0.2036395492 0.1)
(0.4440914893 0.2057808006 0.1)
(0.4764431303 0.2098955742 0.1)
(0.4763224265 0.2041545429 0.1)
(0.4653384247 0.2033184433 0.1)
(0.4655508477 0.2095684591 0.1)
(0.6489756809 0.05097310509 0.1)
(0.6436054755 0.05125765034 0.1)
(0.6435159021 0.04595066062 0.1)
(0.6488969666 0.04580201714 0.1)
(0.6327790239 0.04649747195 0.1)
(0.6328801458 0.05197315619 0.1)
(0.6324634903 0.02991984173 0.1)
(0.6325714903 0.03548480112 0.1)
(0.6329733878 0.05697890224 0.1)
(0.6276206175 0.05737910656 0.1)
(0.6490556935 0.0557777848 0.1)
(0.6436919088 0.05617742052 0.1)
(0.6115817821 0.05850699408 0.1)
(0.6062183245 0.05887461585 0.1)
(0.622283728 0.05777347578 0.1)
(0.6543626425 0.05091465757 0.1)
(0.654364606 0.05538480397 0.1)
(0.6649085701 0.03552928151 0.1)
(0.6647744043 0.02962369687 0.1)
(0.6666342284 0.05447669434 0.1)
(0.6651882862 0.04750134704 0.1)
(0.6542954053 0.04590886489 0.1)
(0.5631788948 0.05630944323 0.1)
(0.557779857 0.05617410177 0.1)
(0.5576219615 0.04990103474 0.1)
(0.5630196148 0.05001810126 0.1)
(0.5467811598 0.04897780575 0.1)
(0.5468872646 0.05450019557 0.1)
(0.5464227441 0.03183535212 0.1)
(0.5465416221 0.03753711308 0.1)
(0.5469585367 0.0595076038 0.1)
(0.5415255693 0.05885266074 0.1)
(0.5633468787 0.06182543093 0.1)
(0.5582691393 0.06217664325 0.1)
(0.5254057558 0.05945913522 0.1)
(0.5361410352 0.05888385121 0.1)
(0.5901259816 0.05997892288 0.1)
(0.5847625682 0.06034864419 0.1)
(0.6008548669 0.05924223762 0.1)
(0.5685540039 0.0561154149 0.1)
(0.5686723278 0.06145780811 0.1)
(0.5793991547 0.0607183655 0.1)
(0.5792879044 0.05547454538 0.1)
(0.578851813 0.03720657582 0.1)
(0.5787186975 0.03130336963 0.1)
(0.5791446311 0.04942121954 0.1)
(0.568400535 0.04991016981 0.1)
(0.6466752876 0.1582091531 0.1)
(0.6325078244 0.1836926855 0.1)
(0.6323664789 0.1778737709 0.1)
(0.6377365407 0.1776775482 0.1)
(0.6378890297 0.1835507405 0.1)
(0.6322109038 0.1618157932 0.1)
(0.6372720988 0.1605825337 0.1)
(0.6374283673 0.1658743182 0.1)
(0.6321754353 0.1665987955 0.1)
(0.6481488308 0.1653079475 0.1)
(0.6268160901 0.1668290005 0.1)
(0.6274462556 0.1629768032 0.1)
(0.6271152277 0.1837685553 0.1)
(0.6269662069 0.177917595 0.1)
(0.8184084697 0.1088868027 0.1)
(0.8094397921 0.1280257941 0.1)
(0.8095507603 0.1337319323 0.1)
(0.8092752515 0.1118268337 0.1)
(0.8092749214 0.1167587703 0.1)
(0.8198554389 0.1158634287 0.1)
(0.8045599882 0.02675495271 0.1)
(0.8046818075 0.03250146172 0.1)
(0.8368777847 0.03092504998 0.1)
(0.8368004995 0.02567921547 0.1)
(0.7350462467 0.04909627643 0.1)
(0.7296859806 0.04952054363 0.1)
(0.729593917 0.04452327469 0.1)
(0.7349558157 0.04412907982 0.1)
(0.7188742764 0.04531907869 0.1)
(0.7189715604 0.05037435072 0.1)
(0.7185253249 0.028293752 0.1)
(0.7186428815 0.03398023736 0.1)
(0.7508573849 0.03271410475 0.1)
(0.7507665377 0.02734652842 0.1)
(0.7510752628 0.04783436571 0.1)
(0.7510038916 0.04306011108 0.1)
(0.7403148601 0.04374184648 0.1)
(0.7404055699 0.04867472965 0.1)
(0.7549235462 0.1284919854 0.1)
(0.9765088333 0.01713814183 0.1)
(0.9765675275 0.02235606095 0.1)
(0.9762240992 0.0007885145733 0.1)
(0.9763281329 0.006307547186 0.1)
(0.9932199865 0.003030754328 0.1)
(0.9933896641 0.008722445248 0.1)
(0.9873315012 0.007208454071 0.1)
(0.9871999178 0.001615984331 0.1)
(0.9960974613 0.05877918691 0.1)
(0.9909902379 0.05958341907 0.1)
(0.9906052977 0.05316789307 0.1)
(0.9950968107 0.0507188398 0.1)
(0.9804842337 0.05503145084 0.1)
(0.980470638 0.06042662867 0.1)
(0.9766053417 0.02691387313 0.1)
(0.953417711 0.0617610794 0.1)
(0.9577447698 0.06014846779 0.1)
(0.959062636 0.06678853318 0.1)
(0.9537154424 0.06707339479 0.1)
(0.9751902908 0.0662220027 0.1)
(0.9698532161 0.06646484233 0.1)
(0.9753230085 0.08285788861 0.1)
(0.9699674236 0.08312422251 0.1)
(0.9699537651 0.07762209394 0.1)
(0.9753162021 0.07739622494 0.1)
(0.8907170871 0.0303735193 0.1)
(0.8958873685 0.08275851366 0.1)
(0.9324059707 0.08444896161 0.1)
(0.9323210229 0.07879109714 0.1)
(0.9377126274 0.07866803775 0.1)
(0.9377973734 0.08431630435 0.1)
(0.9484210956 0.06744556485 0.1)
(0.9490698167 0.06338173076 0.1)
(0.9270066488 0.0845379757 0.1)
(0.9268965418 0.07882522794 0.1)
(0.9228741313 0.02889584776 0.1)
(-0.01457740712 0.3568429545 0.1)
(-0.0319194446 0.5156216783 0.1)
(-0.03321549307 0.471378394 0.1)
(-0.1631427179 0.4711759012 0.1)
(-0.1200337296 0.4719000224 0.1)
(0.7073015915 0.1474532042 0.1)
(0.7021067562 0.1483243928 0.1)
(0.7021659637 0.1435762992 0.1)
(0.7071561553 0.1422009008 0.1)
(0.6967909903 0.1487244192 0.1)
(0.6974459759 0.1448633983 0.1)
(0.8504083469 0.3355651453 0.1)
(0.831718885 0.4914555184 0.1)
(0.8310046512 0.4491366364 0.1)
(0.8739071937 0.4469777437 0.1)
(0.7450981562 0.4525079722 0.1)
(0.6898916092 0.1469234472 0.1)
(0.8524653715 0.1267447881 0.1)
(0.852533633 0.1323226056 0.1)
(0.8522597217 0.1153935528 0.1)
(0.8684122534 0.1149160491 0.1)
(0.8630208086 0.1150467068 0.1)
(0.7089132765 0.2381438642 0.1)
(0.7843753598 0.2470596118 0.1)
(0.7628803873 0.2477625941 0.1)
(0.7624916603 0.2251822761 0.1)
(0.7855627817 0.3150496743 0.1)
(0.7640685147 0.3157386386 0.1)
(0.7636742857 0.2930869205 0.1)
(0.7851655743 0.292399019 0.1)
(-0.02479641798 0.1433022081 0.1)
(-0.02481166762 0.1362876788 0.1)
(-0.01933701043 0.1353670174 0.1)
(-0.01946138367 0.1428814471 0.1)
(-0.02370587493 0.1157144593 0.1)
(-0.01808847803 0.1151652596 0.1)
(-0.01877312242 0.1220161646 0.1)
(-0.024328249 0.1226441728 0.1)
(-0.007128976817 0.1200719736 0.1)
(-0.00661502372 0.1139264124 0.1)
(-0.005520902735 0.1719788404 0.1)
(-0.006273635527 0.1655965528 0.1)
(-0.02304012611 0.1707903341 0.1)
(-0.02351950195 0.1643645908 0.1)
(-0.0180008426 0.1643997957 0.1)
(-0.01742934339 0.1709541309 0.1)
(-0.01910220705 0.1506548196 0.1)
(-0.02449439153 0.1507502951 0.1)
(-0.08048111361 0.3348904082 0.1)
(-0.08143899052 0.3118284474 0.1)
(-0.05953064578 0.3116668956 0.1)
(-0.05875334115 0.3346036243 0.1)
(-0.06158646495 0.2654128895 0.1)
(-0.08381243811 0.2651530248 0.1)
(-0.0067928884 0.2538715717 0.1)
(0.06991202401 0.2416706291 0.1)
(0.06977387091 0.2359464684 0.1)
(0.07521206016 0.2358507358 0.1)
(0.07535714746 0.2415764511 0.1)
(0.07499772034 0.2242098692 0.1)
(0.06952028733 0.2243372337 0.1)
(0.09146995076 0.2237432178 0.1)
(0.08597459188 0.2239218704 0.1)
(0.3901495778 0.02366992935 0.1)
(0.4009082633 0.02344673113 0.1)
(0.4011389814 0.03475337957 0.1)
(0.3894530368 -0.01031593836 0.1)
(0.4002118694 -0.01053213812 0.1)
(0.4004441338 0.0008004835611 0.1)
(0.3896853432 0.001018682884 0.1)
(0.4324963654 -0.01118090558 0.1)
(0.4327285667 0.0001487167673 0.1)
(0.4219637565 0.0003660424324 0.1)
(0.4217315341 -0.01096457969 0.1)
(0.3464457633 -0.009448728523 0.1)
(0.3571855791 -0.009665528685 0.1)
(0.3574189904 0.001674070432 0.1)
(0.3466791957 0.001891870373 0.1)
(0.3789275525 0.001236861188 0.1)
(0.3786942252 -0.01009873881 0.1)
(0.3796229256 0.03521475168 0.1)
(0.3793919132 0.02389410632 0.1)
(0.7830051692 0.1571035378 0.1)
(0.777630259 0.1572594536 0.1)
(0.7775439696 0.1516329242 0.1)
(0.7829232846 0.1514962201 0.1)
(0.7667503948 0.151861757 0.1)
(0.7668568257 0.157542375 0.1)
(0.7664734636 0.1402600148 0.1)
(0.7080057699 0.1818499022 0.1)
(0.7081778821 0.1930807658 0.1)
(0.7404653636 0.1920982618 0.1)
(0.7297100111 0.1924324145 0.1)
(0.7409962969 0.2258666626 0.1)
(0.7302479513 0.226201068 0.1)
(0.7300648828 0.2149248247 0.1)
(0.7408143459 0.214595997 0.1)
(0.8632969531 0.003062759688 0.1)
(0.8686580837 0.002965046469 0.1)
(0.8687732687 0.008633877778 0.1)
(0.8634146422 0.008755543655 0.1)
(0.8795096345 0.008348134902 0.1)
(0.8793993525 0.002722210011 0.1)
(0.8797507143 0.01981460086 0.1)
(0.09694343339 0.2236420422 0.1)
(0.1077831377 0.2237614166 0.1)
(0.1081433892 0.2410387615 0.1)
(0.1080211398 0.2353193675 0.1)
(0.4432691948 -0.01139739963 0.1)
(0.4435013752 -6.877705867e-05 0.1)
(0.4650269966 -0.0005033443082 0.1)
(0.4647949213 -0.01182696798 0.1)
(0.4657250377 0.03350629712 0.1)
(0.4654912312 0.02214790215 0.1)
(0.4549738131 0.03375134333 0.1)
(0.4550984202 0.03953530203 0.1)
(0.4497170194 0.03966794905 0.1)
(0.4495924271 0.0338846902 0.1)
(0.4500002052 0.05175746759 0.1)
(0.4553772445 0.05156009795 0.1)
(0.4338268255 0.05195697812 0.1)
(0.4392239399 0.0520008398 0.1)
(0.4284248948 0.05177918809 0.1)
(0.4122330149 0.05133664564 0.1)
(0.4176230994 0.05137915479 0.1)
(0.411897814 0.03453717981 0.1)
(0.4172789822 0.03444104575 0.1)
(0.4173950051 0.04010215774 0.1)
(0.4120124041 0.04017771737 0.1)
(0.8421097766 0.02035593765 0.1)
(0.8475190358 0.02054927707 0.1)
(0.841769524 0.003411345939 0.1)
(0.8471551958 0.003339122492 0.1)
(0.8472688976 0.008984979903 0.1)
(0.8418806166 0.009028251799 0.1)
(0.8580406616 0.00886052859 0.1)
(0.8579241405 0.003175721835 0.1)
(0.7826238489 0.1238384634 0.1)
(0.7879139906 0.1234090091 0.1)
(0.7931548423 0.1227759859 0.1)
(0.7932759214 0.1285348632 0.1)
(0.7933872043 0.1342559681 0.1)
(0.8640982867 0.03784640091 0.1)
(0.858790117 0.03832228444 0.1)
(0.8537186174 0.03877998912 0.1)
(0.8532354581 0.03292595175 0.1)
(0.8530784259 0.02678909667 0.1)
(0.7718063598 0.1345853529 0.1)
(0.7717254138 0.1289751048 0.1)
(0.7713761959 0.1235450356 0.1)
(0.7757641019 0.1222099563 0.1)
(0.8042624987 0.1395790341 0.1)
(0.7988709349 0.1397516036 0.1)
(0.8044830256 0.1563952141 0.1)
(0.7991067338 0.1565805654 0.1)
(0.7990342361 0.1509915544 0.1)
(0.8044124476 0.150802362 0.1)
(0.7882920973 0.1513357316 0.1)
(0.7883738768 0.1569380504 0.1)
(0.9605126636 0.02357790615 0.1)
(0.9605841751 0.02845398033 0.1)
(0.8745214294 0.02599298617 0.1)
(0.8746493826 0.03179337816 0.1)
(0.8747396113 0.03684609793 0.1)
(0.8694134422 0.03736977037 0.1)
(0.939148121 0.02534658227 0.1)
(0.9392994066 0.03059166112 0.1)
(0.03591958298 0.1951708805 0.1)
(0.03714350015 0.1878420343 0.1)
(0.5568496832 0.1847666663 0.1)
(0.556672176 0.1793686048 0.1)
(0.7395664031 0.1464390698 0.1)
(0.734168102 0.1465290626 0.1)
(0.728810956 0.1467687235 0.1)
(0.728711757 0.1410990559 0.1)
(0.728687033 0.1361172349 0.1)
(0.702330552 0.1650581859 0.1)
(0.6969474923 0.1652070713 0.1)
(0.7184680176 0.1644825471 0.1)
(0.713081253 0.1646455136 0.1)
(0.7187743759 0.1815276735 0.1)
(0.7133896025 0.181690198 0.1)
(0.7133041131 0.1760541498 0.1)
(0.7186868261 0.1758887679 0.1)
(0.1435297156 0.08478411247 0.1)
(0.1436297227 0.08977861383 0.1)
(0.08197984806 0.2870108798 0.1)
(0.0817150129 0.2756419347 0.1)
(0.0492498014 0.287542987 0.1)
(0.04895665714 0.2761596338 0.1)
(0.05986228237 0.2759843575 0.1)
(0.06016982346 0.287367408 0.1)
(0.05924707921 0.2532172588 0.1)
(0.048279258 0.2533648363 0.1)
(0.6809667021 0.1769453831 0.1)
(0.6810665982 0.1826006328 0.1)
(0.6807398386 0.165536631 0.1)
(0.6915424345 0.1653087088 0.1)
(0.8681238687 0.09791705511 0.1)
(0.8627639602 0.098120466 0.1)
(0.8633778563 0.09401775534 0.1)
(0.867791337 0.09251945239 0.1)
(0.855892457 0.09655125914 0.1)
(0.8796279174 0.08847405218 0.1)
(0.8789971041 0.09253330883 0.1)
(0.8721431529 0.0910377493 0.1)
(0.8789603206 0.09782465113 0.1)
(0.8735102578 0.0977838031 0.1)
(-0.04029783591 0.2424789326 0.1)
(-0.04094826331 0.2308004244 0.1)
(-0.02980399784 0.2309099947 0.1)
(-0.02933624777 0.2424345089 0.1)
(-0.03133798965 0.2073348306 0.1)
(-0.04257487088 0.2070161608 0.1)
(-0.003581624956 0.2019029882 0.1)
(0.05820722571 0.1953525316 0.1)
(0.05805213127 0.2009966387 0.1)
(0.05819652672 0.2068511971 0.1)
(0.05268419524 0.2070123026 0.1)
(0.04712531702 0.2071811882 0.1)
(0.092516316 0.2042730212 0.1)
(0.08556029608 0.2064717234 0.1)
(0.08476303509 0.2024953033 0.1)
(0.08015325912 0.2064078659 0.1)
(0.07998171196 0.2013408523 0.1)
(0.6001416589 0.1843104628 0.1)
(0.6000253956 0.1785903428 0.1)
(0.6000016017 0.1732721679 0.1)
(0.6053757699 0.17308096 0.1)
(0.6106383473 0.1723870867 0.1)
(0.5736809253 0.1756574589 0.1)
(0.5785197962 0.1746014119 0.1)
(0.5784837265 0.1793558205 0.1)
(0.5785439941 0.1848388652 0.1)
(0.6114164846 0.2070664925 0.1)
(0.6060291504 0.2072023649 0.1)
(0.6059241208 0.2015408217 0.1)
(0.6113124927 0.2014067279 0.1)
(0.595150815 0.2017822313 0.1)
(0.5952593546 0.207468006 0.1)
(0.5948756458 0.1901691495 0.1)
(0.5340023788 0.1841835907 0.1)
(0.5354533668 0.1912086429 0.1)
(0.5356150143 0.1971368548 0.1)
(0.5301820494 0.1971480589 0.1)
(0.5247937471 0.1974281836 0.1)
(0.7501748831 0.1348851954 0.1)
(0.7502670044 0.1405512409 0.1)
(0.7504105829 0.146381211 0.1)
(0.7449958334 0.1464500449 0.1)
(0.1004560226 0.08839132385 0.1)
(0.1009731019 0.09443148933 0.1)
(0.0888602258 0.09609657139 0.1)
(0.1219937711 0.08677334021 0.1)
(0.1220997422 0.09195635786 0.1)
(0.1218633054 0.08094859565 0.1)
(0.1217267394 0.07507156778 0.1)
(0.1271103615 0.07475913434 0.1)
(0.1325131202 0.07445300004 0.1)
(0.1666720533 0.08779192222 0.1)
(0.1652085382 0.08074192782 0.1)
(0.165063877 0.07471773759 0.1)
(0.1705069868 0.07509390586 0.1)
(0.175915253 0.0751924452 0.1)
(0.1379333755 0.07417030314 0.1)
(0.1433417456 0.07394076782 0.1)
(0.1434371098 0.07938046513 0.1)
(0.04514015437 0.06518754345 0.1)
(0.05065253248 0.06505244273 0.1)
(0.0507673877 0.07077219222 0.1)
(0.04524599082 0.07089698024 0.1)
(0.06173438112 0.07053291179 0.1)
(0.06161907397 0.06479166705 0.1)
(0.06196342239 0.08230689874 0.1)
(0.05662628664 0.08836982559 0.1)
(0.05679642236 0.09438777896 0.1)
(0.05828703135 0.1014800132 0.1)
(0.05118278736 0.09933567149 0.1)
(0.04566908721 0.09944119347 0.1)
(0.08390087554 0.096840882 0.1)
(0.07860041419 0.0976738824 0.1)
(0.07852224704 0.09269532549 0.1)
(0.07843653001 0.08718641009 0.1)
(0.2939258761 0.07959532006 0.1)
(0.2944018423 0.07611584641 0.1)
(0.3012187833 0.07918123075 0.1)
(0.2943226792 0.07111370522 0.1)
(0.299768671 0.07215025882 0.1)
(0.3051943156 0.07288507345 0.1)
(0.3056812901 0.07892057071 0.1)
(0.2619808541 0.07103381675 0.1)
(0.2673487811 0.07078362697 0.1)
(0.2727129507 0.07054501874 0.1)
(0.2728100733 0.07587805553 0.1)
(0.2729057849 0.08085854409 0.1)
(0.3374463724 0.07178758873 0.1)
(0.3428082306 0.0714866153 0.1)
(0.3429214678 0.07672979351 0.1)
(0.3375599418 0.07704656344 0.1)
(0.3481609646 0.07117983239 0.1)
(0.3482749494 0.07641099222 0.1)
(0.3105903927 0.07306988807 0.1)
(0.3107571779 0.0786240094 0.1)
(0.3159685545 0.07292590663 0.1)
(0.3160888073 0.07831246905 0.1)
(0.2084394606 0.08480330581 0.1)
(0.2083339428 0.07959427289 0.1)
(0.2082018102 0.07369024585 0.1)
(0.2135860608 0.07340770581 0.1)
(0.2189744955 0.07313387974 0.1)
(0.181300779 0.07506571277 0.1)
(0.1866829615 0.074827526 0.1)
(0.1868330982 0.08096942715 0.1)
(0.1869467377 0.08627931163 0.1)
(0.2514405335 0.08211882479 0.1)
(0.2513372824 0.07706517856 0.1)
(0.2512282056 0.07154415151 0.1)
(0.2566090036 0.0712876898 0.1)
(0.2243560516 0.07286589956 0.1)
(0.229729683 0.07260158676 0.1)
(0.2298497521 0.07831242469 0.1)
(0.2299566612 0.08344491145 0.1)
(0.4714840495 0.05090578634 0.1)
(0.4768555287 0.0506818277 0.1)
(0.4607489591 0.05134733683 0.1)
(0.4603526749 0.03364065453 0.1)
(0.4604747779 0.03940066057 0.1)
(0.4927492709 0.03856156133 0.1)
(0.4926319939 0.03288837303 0.1)
(0.4929889957 0.05001115204 0.1)
(0.4822299988 0.05045740608 0.1)
(0.3853456901 0.05203197418 0.1)
(0.3907212701 0.05186034089 0.1)
(0.3692219874 0.05254861056 0.1)
(0.3745965592 0.05237659839 0.1)
(0.3688664289 0.03544690587 0.1)
(0.3742451981 0.03533181804 0.1)
(0.3743613451 0.04099882873 0.1)
(0.368982744 0.04112191479 0.1)
(0.3803178089 0.06916934732 0.1)
(0.3856808196 0.06882804076 0.1)
(0.3857814938 0.07390184561 0.1)
(0.3804199391 0.07426482636 0.1)
(0.391044809 0.0684857134 0.1)
(0.3911430023 0.07353666535 0.1)
(0.3535092813 0.07085323795 0.1)
(0.353614694 0.07605727197 0.1)
(0.3588664824 0.07052105552 0.1)
(0.3589734175 0.07570235252 0.1)
(0.4233228341 0.06786218754 0.1)
(0.4301572616 0.07085538836 0.1)
(0.4228293301 0.07136383473 0.1)
(0.3964078196 0.06814440684 0.1)
(0.3965055085 0.0731713641 0.1)
(0.4017719351 0.06780807815 0.1)
(0.401867019 0.07280628382 0.1)
(0.4066312695 0.04027545108 0.1)
(0.4065177927 0.03464029131 0.1)
(0.4068502584 0.05140480691 0.1)
(0.3960969194 0.05169200689 0.1)
(0.4923252864 0.1977475452 0.1)
(0.4870367496 0.1983960542 0.1)
(0.4869549619 0.1933166511 0.1)
(0.4921489093 0.1923556614 0.1)
(0.4817233619 0.1989567662 0.1)
(0.48176201 0.1942774199 0.1)
(0.5194444806 0.1978523195 0.1)
(0.514090915 0.1981671217 0.1)
(0.5140500911 0.1928477045 0.1)
(0.514091953 0.1881784929 0.1)
(0.4762847163 0.198888072 0.1)
(0.4768746302 0.1951670498 0.1)
(0.4693247821 0.196490541 0.1)
(0.4660446533 0.2275843598 0.1)
(0.4661642207 0.2333189135 0.1)
(0.4657454077 0.2157300308 0.1)
(0.4820009287 0.2157742475 0.1)
(0.4765815782 0.2157669613 0.1)
(0.8202336014 0.003784116069 0.1)
(0.825616559 0.003677942174 0.1)
(0.8257227276 0.009250941835 0.1)
(0.8203398541 0.009361114846 0.1)
(0.8364925249 0.009080521705 0.1)
(0.8363850412 0.003492546378 0.1)
(0.836704757 0.02022152213 0.1)
(0.7990853808 0.02121750615 0.1)
(0.8044395786 0.02102791836 0.1)
(0.7987409517 0.004216989875 0.1)
(0.8041029139 0.004111257403 0.1)
(0.8042128176 0.009719186271 0.1)
(0.7988521074 0.009836895071 0.1)
(0.8149581275 0.009478265291 0.1)
(0.8148506859 0.003892289522 0.1)
(0.8208354485 0.03683406746 0.1)
(0.8154836598 0.03728096147 0.1)
(0.8101360005 0.03773397002 0.1)
(0.8100273069 0.03213601792 0.1)
(0.8099144977 0.02648504062 0.1)
(0.8314030656 0.02562015716 0.1)
(0.8314818445 0.03088946545 0.1)
(0.8315491156 0.03603958931 0.1)
(0.8261896319 0.03640592727 0.1)
(0.750154189 0.12990475 0.1)
(0.9820020124 0.02255987244 0.1)
(0.9819542316 0.01733772298 0.1)
(0.9818671586 0.01195936493 0.1)
(0.9874684948 0.01277280388 0.1)
(0.9935927757 0.01443443786 0.1)
(0.9949490074 0.04483064566 0.1)
(0.9894557562 0.04668422403 0.1)
(0.9955457393 0.04162419383 0.1)
(0.9820182398 0.02666183766 0.1)
(0.9806556064 0.0771690398 0.1)
(0.9806639856 0.08261036592 0.1)
(0.9805457112 0.06604299154 0.1)
(0.9962568575 0.06460032255 0.1)
(0.9911253528 0.06534385169 0.1)
(0.9068038563 0.03380903249 0.1)
(0.9014863552 0.03431681921 0.1)
(0.8961534475 0.03480542555 0.1)
(0.8960686551 0.02991612762 0.1)
(0.8959752884 0.02447628828 0.1)
(0.9003559422 0.08602140462 0.1)
(0.900380729 0.08115850915 0.1)
(0.916866392 0.07526037529 0.1)
(0.9212258746 0.07366758651 0.1)
(0.9215490195 0.0790468825 0.1)
(0.9216376889 0.08469146581 0.1)
(0.9174145279 0.02354872787 0.1)
(0.9174542945 0.02843727208 0.1)
(0.9174314335 0.03277331065 0.1)
(0.9121380006 0.03328409213 0.1)
(0.9325002086 0.09012053384 0.1)
(0.9271230214 0.09026329452 0.1)
(0.9326529997 0.1067596985 0.1)
(0.9273129908 0.1070057005 0.1)
(0.9272792149 0.1014981936 0.1)
(0.9326204316 0.1012620684 0.1)
(0.9165561365 0.1019401917 0.1)
(0.9166077558 0.1074876324 0.1)
(0.7179319469 0.1466447742 0.1)
(0.7125412202 0.1467620139 0.1)
(0.712007491 0.1408338231 0.1)
(0.707435474 0.1532501708 0.1)
(0.7075719552 0.1590755891 0.1)
(0.01151540561 0.1120988048 0.1)
(0.01110006645 0.1170727342 0.1)
(-0.001115404962 0.1261130024 0.1)
(0.6860216002 0.1596658106 0.1)
(0.685894225 0.1538929126 0.1)
(0.6854083118 0.1481457567 0.1)
(0.6758481704 0.1506657688 0.1)
(0.6805591884 0.1494277691 0.1)
(-0.02075452843 0.1958469267 0.1)
(-0.02120227664 0.1898408114 0.1)
(-0.01552501256 0.1899935083 0.1)
(-0.01515414523 0.1959252232 0.1)
(-0.0166596675 0.1776004207 0.1)
(-0.02233973266 0.1773953711 0.1)
(-0.004880148615 0.178108326 0.1)
(0.2547174942 0.2241844317 0.1)
(0.2493071439 0.2247003719 0.1)
(0.2495398149 0.2186404422 0.1)
(0.254650256 0.2186077129 0.1)
(0.2438799216 0.2257458838 0.1)
(0.2655341464 0.2238638935 0.1)
(0.260118276 0.2239745602 0.1)
(0.2600012278 0.218550122 0.1)
(0.2654269244 0.2184786574 0.1)
(0.1893360028 0.2169986711 0.1)
(0.1894550207 0.2221362044 0.1)
(0.18957676 0.2278789143 0.1)
(0.1841565621 0.2276886055 0.1)
(0.1787398218 0.2275200288 0.1)
(0.2004332734 0.2282173838 0.1)
(0.1950047775 0.2280605568 0.1)
(0.3628404873 0.2121057042 0.1)
(0.3629547189 0.2173961719 0.1)
(0.3631096616 0.223433649 0.1)
(0.3577152298 0.2238028222 0.1)
(0.3523213172 0.2241966899 0.1)
(0.373909698 0.2231315641 0.1)
(0.3684992979 0.2231693998 0.1)
(0.1680604461 0.21538803 0.1)
(0.1677958067 0.2214022216 0.1)
(0.1678698475 0.227587932 0.1)
(0.1623963246 0.2280011774 0.1)
(0.1569251244 0.2285248984 0.1)
(0.1733170886 0.2274469992 0.1)
(0.3413273181 0.2142742928 0.1)
(0.3414240752 0.2193520809 0.1)
(0.3415343866 0.2249794055 0.1)
(0.3361288605 0.2253442109 0.1)
(0.3307310048 0.2256932516 0.1)
(0.3469344429 0.2245923101 0.1)
(0.2763785902 0.2237710214 0.1)
(0.2709455959 0.2237808258 0.1)
(0.2708199028 0.2183733731 0.1)
(0.276218505 0.2182025561 0.1)
(0.2872651893 0.2248744275 0.1)
(0.2818180209 0.2240673494 0.1)
(0.2813432203 0.218039998 0.1)
(0.6168363864 0.05305713751 0.1)
(0.6167203824 0.04739692532 0.1)
(0.616601578 0.04169866359 0.1)
(0.621957968 0.04147062122 0.1)
(0.6273132909 0.04123940058 0.1)
(0.6814976949 0.05334361208 0.1)
(0.6813800457 0.04803331178 0.1)
(0.68122634 0.04186437969 0.1)
(0.6865922591 0.04161383204 0.1)
(0.6919511558 0.04131472128 0.1)
(0.6704607959 0.04190408153 0.1)
(0.67585098 0.04199890014 0.1)
(0.7879129888 0.1185088675 0.1)
(0.7926755236 0.1170570476 0.1)
(0.7832905841 0.1199178323 0.1)
(0.8039799086 0.1225702062 0.1)
(0.798534586 0.1225645263 0.1)
(0.7887754205 0.03945325193 0.1)
(0.7941269977 0.03904387066 0.1)
(0.7942314574 0.0441550042 0.1)
(0.7888817439 0.04460545536 0.1)
(0.7994653465 0.03862376509 0.1)
(0.7995641977 0.04370601013 0.1)
(0.7780477415 0.04010459299 0.1)
(0.7834172309 0.03983356577 0.1)
(0.7835280776 0.04505819013 0.1)
(0.7782104222 0.04551106796 0.1)
(0.8423683416 0.0364123502 0.1)
(0.8492251618 0.03918613185 0.1)
(0.8418425811 0.0398545623 0.1)
(0.7029010455 0.05166053912 0.1)
(0.7027979484 0.04651907024 0.1)
(0.7026668857 0.04066593196 0.1)
(0.7080311127 0.0403349021 0.1)
(0.7133953354 0.04000367229 0.1)
(0.6973066033 0.04099427831 0.1)
(0.7672074398 0.0394430113 0.1)
(0.772651341 0.0400471133 0.1)
(0.7731363829 0.04594312036 0.1)
(0.7686454305 0.04632560525 0.1)
(0.7563095666 0.03799366572 0.1)
(0.7617404992 0.03855183017 0.1)
(0.7668968541 0.1249079131 0.1)
(0.9989692829 0.006742723554 0.1)
(0.9991423236 0.01259437912 0.1)
(1.014596181 0.00738238554 0.1)
(1.014677476 0.01315195148 0.1)
(1.009290433 0.01334923139 0.1)
(1.009218484 0.007548462097 0.1)
(1.014636185 0.03021738999 0.1)
(1.00903212 0.03055866353 0.1)
(1.009224711 0.02497108068 0.1)
(1.014689042 0.02464394749 0.1)
(0.9604123326 0.01804469257 0.1)
(0.9603008406 0.01240879091 0.1)
(0.9656691011 0.01212688713 0.1)
(0.9710423276 0.01189088909 0.1)
(0.9645377046 0.06135844679 0.1)
(0.9652024053 0.05729347656 0.1)
(1.014587763 0.03552608076 0.1)
(1.008620653 0.03525054927 0.1)
(1.015381478 0.05282091801 0.1)
(1.009888248 0.0527249652 0.1)
(1.009522027 0.04672403733 0.1)
(1.015107962 0.04694766969 0.1)
(1.000778624 0.05045995017 0.1)
(1.000798343 0.05663089914 0.1)
(0.8854429888 0.03580008049 0.1)
(0.8800835768 0.03631254922 0.1)
(0.02547403283 0.1826427792 0.1)
(0.02962386354 0.184655794 0.1)
(0.01418913579 0.1763200921 0.1)
(0.01308781255 0.1837234778 0.1)
(0.007170325605 0.1838647954 0.1)
(0.00129087869 0.1840106143 0.1)
(0.01858911552 0.1838798743 0.1)
(0.01814179411 0.1787218374 0.1)
(0.723411384 0.1468458402 0.1)
(0.01173727334 0.1063908799 0.1)
(0.01181379462 0.1006346996 0.1)
(0.01754800047 0.1003844106 0.1)
(0.02320728465 0.1001100911 0.1)
(0.03456157195 0.09999489715 0.1)
(0.04018446414 0.09987357646 0.1)
(0.04069165393 0.1056526921 0.1)
(0.03603142839 0.106984945 0.1)
(0.04571208001 0.1043832817 0.1)
(0.02883268483 0.09994630834 0.1)
(0.6643101173 0.1596331815 0.1)
(0.663809011 0.1538294325 0.1)
(0.8360840107 0.1102966721 0.1)
(0.8347180526 0.1035575958 0.1)
(0.8422157507 0.1010857471 0.1)
(0.8467851107 0.09958006589 0.1)
(0.8574781172 0.1093632591 0.1)
(0.8573205705 0.1034873725 0.1)
(0.8514955249 0.09802790946 0.1)
(0.8897494885 0.09757650666 0.1)
(0.8843689138 0.097748445 0.1)
(0.9003942904 0.0915085109 0.1)
(0.9004617724 0.09709682714 0.1)
(0.8951297352 0.09738897177 0.1)
(0.06930635607 0.2061887207 0.1)
(0.06370895609 0.2066138727 0.1)
(0.08039881935 0.2181254931 0.1)
(0.08029918604 0.2121782734 0.1)
(0.07479825893 0.206083557 0.1)
(0.07509208099 0.2001205633 0.1)
(0.2327064018 0.2185598648 0.1)
(0.2328774751 0.2230334573 0.1)
(0.2330051755 0.2280130732 0.1)
(0.2275794759 0.2284174114 0.1)
(0.2221468678 0.2285407328 0.1)
(0.2384362324 0.2270548 0.1)
(0.2110237933 0.2180452222 0.1)
(0.2111459637 0.2230472594 0.1)
(0.2112797727 0.2284601427 0.1)
(0.2058542874 0.228351363 0.1)
(0.2167124743 0.2285315624 0.1)
(0.4062761044 0.2118212193 0.1)
(0.4063954364 0.2175445754 0.1)
(0.4065205724 0.2233061181 0.1)
(0.4011412101 0.2236308647 0.1)
(0.3957252054 0.2238778643 0.1)
(0.4061782122 0.2066894431 0.1)
(0.4277981774 0.2106945737 0.1)
(0.4263362212 0.2036711524 0.1)
(0.4338784624 0.2025091568 0.1)
(0.4388064226 0.2016942904 0.1)
(0.3846779391 0.213086995 0.1)
(0.3852244529 0.2094901125 0.1)
(0.384720849 0.2181726167 0.1)
(0.3848207625 0.2237335452 0.1)
(0.3793560212 0.2233751355 0.1)
(0.3902783095 0.2239400725 0.1)
(0.5885829934 0.1722690669 0.1)
(0.5930737941 0.1712133364 0.1)
(0.6006271362 0.1694375719 0.1)
(0.6054125451 0.1683125334 0.1)
(0.6104853787 0.167109536 0.1)
(0.583637339 0.173431682 0.1)
(0.5464593289 0.1972281262 0.1)
(0.541054507 0.1972458401 0.1)
(0.1541469025 0.07388222914 0.1)
(0.1595953046 0.07422467872 0.1)
(0.1487362822 0.07381444608 0.1)
(0.06793628637 0.09953535498 0.1)
(0.06287465945 0.1005577769 0.1)
(0.0505726129 0.1031967505 0.1)
(0.07323230733 0.09856251702 0.1)
(0.1457270678 0.2179834539 0.1)
(0.1458817132 0.2234359079 0.1)
(0.1460249535 0.229011929 0.1)
(0.1405890053 0.2289763854 0.1)
(0.1351617188 0.2289246562 0.1)
(0.1514747008 0.2288950488 0.1)
(0.1455840856 0.2130381667 0.1)
(0.1022609708 0.2176745484 0.1)
(0.102177603 0.2116636727 0.1)
(0.1021345679 0.2062390787 0.1)
(0.1073581917 0.2072128927 0.1)
(0.1125661799 0.2081566286 0.1)
(0.09711181492 0.2052427375 0.1)
(0.1240574162 0.2173239069 0.1)
(0.1252319278 0.210247455 0.1)
(0.1174964023 0.2090192854 0.1)
(0.283471051 0.07024641616 0.1)
(0.2888847521 0.07041315634 0.1)
(0.2780828802 0.07034249741 0.1)
(0.3267094991 0.07238221052 0.1)
(0.3320784693 0.07208648876 0.1)
(0.3321924212 0.07736365945 0.1)
(0.3268238841 0.07767997666 0.1)
(0.3213393463 0.07266925522 0.1)
(0.321455347 0.07799629386 0.1)
(0.1974514543 0.07426204601 0.1)
(0.2028266249 0.07397579601 0.1)
(0.1920683002 0.07454916401 0.1)
(0.2404639172 0.07207173476 0.1)
(0.2458425096 0.07180551725 0.1)
(0.2350963265 0.07233792099 0.1)
(0.3197096035 0.2159898789 0.1)
(0.3198053656 0.2209727669 0.1)
(0.3199000206 0.2263311612 0.1)
(0.3144855896 0.2266054338 0.1)
(0.3090559298 0.2268214136 0.1)
(0.3253178097 0.2260263112 0.1)
(0.2980952029 0.217292204 0.1)
(0.2981110309 0.2217557575 0.1)
(0.2981931988 0.2267105251 0.1)
(0.2927363109 0.2259644647 0.1)
(0.3036254908 0.2269051807 0.1)
(0.4662591772 0.05719890425 0.1)
(0.4663979903 0.06318280851 0.1)
(0.4665089254 0.06841163194 0.1)
(0.4611492146 0.06876717228 0.1)
(0.4557874539 0.06912035519 0.1)
(0.4772269056 0.06767957691 0.1)
(0.4718654202 0.06804585693 0.1)
(0.4447740335 0.05822665172 0.1)
(0.4449281667 0.06446348983 0.1)
(0.4450469531 0.06982787817 0.1)
(0.4397164293 0.0701920069 0.1)
(0.4346347182 0.070544603 0.1)
(0.4504216983 0.06947382213 0.1)
(0.5092177535 0.054919406 0.1)
(0.5093265452 0.06047444655 0.1)
(0.5094278135 0.06552893465 0.1)
(0.504067061 0.06588249646 0.1)
(0.4987023135 0.0662363423 0.1)
(0.5201369344 0.06480366736 0.1)
(0.514781473 0.06517102099 0.1)
(0.4877357599 0.05604940984 0.1)
(0.4878589132 0.06181179433 0.1)
(0.4879638669 0.06694642267 0.1)
(0.48259239 0.06731321282 0.1)
(0.4933355707 0.06659043013 0.1)
(0.3695907164 0.06984858221 0.1)
(0.3749547689 0.06950925419 0.1)
(0.3750573447 0.07462592854 0.1)
(0.3696957521 0.07498710969 0.1)
(0.3800883008 0.05787267564 0.1)
(0.3802033281 0.0635340086 0.1)
(0.3642286341 0.0701864685 0.1)
(0.3643341385 0.07534729105 0.1)
(0.4125052002 0.06723213633 0.1)
(0.4178907656 0.06720242452 0.1)
(0.4178993773 0.07170333796 0.1)
(0.4125888849 0.07206874591 0.1)
(0.4231423289 0.05727874339 0.1)
(0.4232510323 0.06282958488 0.1)
(0.401574764 0.05700283533 0.1)
(0.4016733601 0.06240595663 0.1)
(0.407135404 0.06748856678 0.1)
(0.4072264565 0.07243774635 0.1)
(0.5031417798 0.1976097507 0.1)
(0.4976740878 0.1973964352 0.1)
(0.4971475769 0.1914309845 0.1)
(0.5086597631 0.1980742647 0.1)
(0.4494995288 0.2107686249 0.1)
(0.4493824886 0.2050591236 0.1)
(0.4492860123 0.1999471221 0.1)
(0.4545636821 0.1990671904 0.1)
(0.4597937948 0.1981612526 0.1)
(0.4440262818 0.200823976 0.1)
(0.4709800399 0.2096632577 0.1)
(0.4707982874 0.2035875357 0.1)
(0.4648094237 0.1972821292 0.1)
(0.6382406188 0.05160629733 0.1)
(0.6381450578 0.04620481259 0.1)
(0.6380482595 0.04079205137 0.1)
(0.6434246984 0.04061369855 0.1)
(0.6488101221 0.04052967771 0.1)
(0.6326766416 0.04100941147 0.1)
(0.6383321505 0.05657827187 0.1)
(0.6169412447 0.05813965634 0.1)
(0.6597979913 0.05154014407 0.1)
(0.6592970222 0.05501974331 0.1)
(0.6597307477 0.04653405145 0.1)
(0.659625607 0.04100994099 0.1)
(0.6650485806 0.04152256267 0.1)
(0.6542085399 0.04063552569 0.1)
(0.5523442237 0.05548750776 0.1)
(0.5537926615 0.06248640781 0.1)
(0.5464636987 0.06299337553 0.1)
(0.5415317799 0.06333452045 0.1)
(0.5306810421 0.05385120899 0.1)
(0.5307722304 0.05913986071 0.1)
(0.5308618417 0.06406806595 0.1)
(0.5254993902 0.06443596663 0.1)
(0.5362242974 0.06370036522 0.1)
(0.5953836909 0.05443888113 0.1)
(0.5954904116 0.05960998038 0.1)
(0.5739217683 0.05580991633 0.1)
(0.5740367411 0.06108806578 0.1)
(0.6421833816 0.1593550267 0.1)
(0.6427207471 0.1653134478 0.1)
(0.642934403 0.1714318085 0.1)
(0.6375799573 0.1717523304 0.1)
(0.632243416 0.1721156855 0.1)
(0.6537922197 0.1714516803 0.1)
(0.6483492092 0.171365674 0.1)
(0.6213578685 0.171871047 0.1)
(0.6159372639 0.1718516845 0.1)
(0.6154102451 0.1659096496 0.1)
(0.6198942651 0.1648168535 0.1)
(0.6268424112 0.1721722278 0.1)
(0.8139964476 0.1103117588 0.1)
(0.8144908153 0.1160804417 0.1)
(0.8146493329 0.1219549376 0.1)
(0.8093359919 0.122327577 0.1)
(0.8254460278 0.1217317904 0.1)
(0.8200224118 0.1217594916 0.1)
(0.8155700833 0.04224784225 0.1)
(0.8102242436 0.04273982117 0.1)
(0.8209189833 0.04175869963 0.1)
(0.8047983012 0.03818496877 0.1)
(0.8048913822 0.04323062702 0.1)
(0.8369292139 0.03589256649 0.1)
(0.8369138902 0.04030166278 0.1)
(0.8316168232 0.04078231398 0.1)
(0.8262679022 0.04127045682 0.1)
(0.7243287705 0.04994744718 0.1)
(0.7242340873 0.04492072679 0.1)
(0.7241258287 0.03934347012 0.1)
(0.7294911185 0.03901541858 0.1)
(0.7348575089 0.03869214496 0.1)
(0.7187605747 0.03967322128 0.1)
(0.7457559056 0.04825387195 0.1)
(0.745666274 0.04337227744 0.1)
(0.7455816184 0.03810889398 0.1)
(0.7509351086 0.03793322414 0.1)
(0.7402231791 0.03838218942 0.1)
(0.9764260327 0.01177269683 0.1)
(0.9856841845 0.05987451729 0.1)
(0.9856302608 0.05431262189 0.1)
(0.9853895765 0.04904951823 0.1)
(0.98114784 0.05096200262 0.1)
(0.9644801171 0.06665932851 0.1)
(0.9645227938 0.07225716826 0.1)
(0.9591218283 0.07241073116 0.1)
(0.9537599686 0.07261648357 0.1)
(0.8908026551 0.03529970908 0.1)
(0.9429850366 0.07282812074 0.1)
(0.9376523267 0.07308827245 0.1)
(0.9373509991 0.06774762639 0.1)
(0.941650289 0.06614630097 0.1)
(0.9323486099 0.07344293559 0.1)
(0.9329931175 0.06936898784 0.1)
(0.9483857828 0.07275928118 0.1)
(0.9255419933 0.07210551602 0.1)
(0.9223286772 0.03230526657 0.1)
(-0.900345 -0.871003 0.1)
(-0.900294 -0.916832 0.1)
(-0.900437 -0.733512 0.1)
(-0.900417 -0.779343 0.1)
(-0.8576 -0.779366 0.1)
(-1.02885 -0.779272 0.1)
(-0.986042 -0.779296 0.1)
(-0.90049 -0.687683 0.1)
(-0.90058 -0.550192 0.1)
(-0.900562 -0.596024 0.1)
(-0.857768 -0.596049 0.1)
(-1.02893 -0.595946 0.1)
(-0.986143 -0.595973 0.1)
(-0.900632 -0.504364 0.1)
(-0.900738562 -0.3662608674 0.1)
(-0.900700718 -0.4126356513 0.1)
(-0.8580282956 -0.4108787314 0.1)
(-1.029 -0.41262 0.1)
(-0.986235 -0.412648 0.1)
(-0.9008199744 -0.3194907551 0.1)
(-0.900930519 -0.1782917586 0.1)
(-0.900923841 -0.225365328 0.1)
(-0.8583551357 -0.2194764162 0.1)
(-1.02906 -0.229292 0.1)
(-0.986305 -0.229321 0.1)
(-0.9009525028 -0.131378323 0.1)
(-0.9008417896 0.007687190847 0.1)
(-0.9009034791 -0.03833606006 0.1)
(-0.8582152646 -0.03053838461 0.1)
(-1.02908 -0.0459608 0.1)
(-0.9863388907 -0.04585984676 0.1)
(-0.9008117648 0.0533389572 0.1)
(-0.9006801531 0.1884022221 0.1)
(-0.900726195 0.1436441365 0.1)
(-0.8578581214 0.1508101153 0.1)
(-1.02908 0.137373 0.1)
(-0.9863267534 0.1373577602 0.1)
(-0.9006845069 0.2329969862 0.1)
(-0.9006797552 0.3670896205 0.1)
(-0.9006908692 0.3222010802 0.1)
(-0.8577621317 0.3262850142 0.1)
(-1.02904 0.32071 0.1)
(-0.986274 0.320682 0.1)
(-0.9006940649 0.4123709091 0.1)
(-0.90058 0.549808 0.1)
(-0.900633 0.503969 0.1)
(-0.8578495434 0.5039654887 0.1)
(-1.02897 0.50405 0.1)
(-0.986191 0.504023 0.1)
(-0.900563 0.595643 0.1)
(-0.900437 0.733155 0.1)
(-0.90049 0.687316 0.1)
(-0.857685 0.687292 0.1)
(-1.02889 0.687391 0.1)
(-0.986093 0.687366 0.1)
(-0.900417 0.77899 0.1)
(-0.900295 0.916502 0.1)
(-0.900346 0.870664 0.1)
(-0.857517 0.870642 0.1)
(-1.02881 0.870732 0.1)
(-0.985992 0.870709 0.1)
(-0.729005 -0.871089 0.1)
(-0.72894 -0.916916 0.1)
(-0.729173 -0.733605 0.1)
(-0.729122 -0.779433 0.1)
(-0.686286 -0.779455 0.1)
(-0.814778 -0.779389 0.1)
(-0.729242 -0.687778 0.1)
(-0.7298478236 -0.5444452498 0.1)
(-0.7295773194 -0.5934674496 0.1)
(-0.6870700915 -0.5897249727 0.1)
(-0.814971 -0.596074 0.1)
(-0.7301608401 -0.4945020458 0.1)
(-0.730895283 -0.3416689842 0.1)
(-0.730707829 -0.3928606254 0.1)
(-0.6884514265 -0.3835596811 0.1)
(-0.8154796318 -0.4068341188 0.1)
(-0.7310287875 -0.2905578614 0.1)
(-0.7309146366 -0.1396109736 0.1)
(-0.7310372524 -0.1893607118 0.1)
(-0.6886855366 -0.1765268427 0.1)
(-0.8158580319 -0.2112694515 0.1)
(-0.7307423782 -0.09061195763 0.1)
(-0.7299102795 0.05114332394 0.1)
(-0.7302250028 0.004816631455 0.1)
(-0.6875751825 0.01902301738 0.1)
(-0.8155415378 -0.02046196307 0.1)
(-0.7296063128 0.0965081613 0.1)
(-0.7287711888 0.2271502809 0.1)
(-0.7290206826 0.1844607288 0.1)
(-0.6860199226 0.198233526 0.1)
(-0.8149467364 0.1602718507 0.1)
(-0.7285954335 0.2690854111 0.1)
(-0.7284276964 0.3918074834 0.1)
(-0.7284204451 0.3512477205 0.1)
(-0.6851627231 0.3626287285 0.1)
(-0.8147341929 0.332695498 0.1)
(-0.7285191382 0.4322820171 0.1)
(-0.7289888073 0.5556518871 0.1)
(-0.7288207482 0.5139511659 0.1)
(-0.6855710738 0.5207108562 0.1)
(-0.8149737858 0.505331586 0.1)
(-0.7291532254 0.5982695256 0.1)
(-0.729175 0.733074 0.1)
(-0.729243 0.687221 0.1)
(-0.6863618283 0.6878864962 0.1)
(-0.814875 0.687268 0.1)
(-0.729129 0.778979 0.1)
(-0.72839 0.918285 0.1)
(-0.728927 0.871522 0.1)
(-0.685475 0.872713 0.1)
(-0.814686 0.87063 0.1)
(-0.557431 -0.871881 0.1)
(-0.55714 -0.918199 0.1)
(-0.5582911322 -0.7289949577 0.1)
(-0.5578708808 -0.7782894757 0.1)
(-0.5150641624 -0.7770717753 0.1)
(-0.643444 -0.779476 0.1)
(-0.5588470442 -0.6779301103 0.1)
(-0.5607074741 -0.5167625431 0.1)
(-0.5601079999 -0.5714798709 0.1)
(-0.5178987512 -0.5639856308 0.1)
(-0.6446709027 -0.5846337421 0.1)
(-0.5612419864 -0.4615259151 0.1)
(-0.5620970983 -0.2960075067 0.1)
(-0.5619547087 -0.350844625 0.1)
(-0.5198089356 -0.3396035323 0.1)
(-0.6462539287 -0.3732004848 0.1)
(-0.5621049241 -0.2418515159 0.1)
(-0.5612967631 -0.08509199103 0.1)
(-0.561691853 -0.1362745621 0.1)
(-0.5193325958 -0.1238480443 0.1)
(-0.6463535742 -0.1630760193 0.1)
(-0.5608145988 -0.03507368519 0.1)
(-0.5589533789 0.1078493382 0.1)
(-0.5596211329 0.06140149367 0.1)
(-0.5169592729 0.07367981002 0.1)
(-0.6449272758 0.03355411047 0.1)
(-0.5582820797 0.1530990032 0.1)
(-0.5563868468 0.2817006311 0.1)
(-0.5569757629 0.2400206209 0.1)
(-0.5139813223 0.2524065432 0.1)
(-0.6430052855 0.2124360002 0.1)
(-0.5558859613 0.3222179093 0.1)
(-0.5550169817 0.4375722921 0.1)
(-0.5551851339 0.4000373564 0.1)
(-0.5118539573 0.4121884094 0.1)
(-0.6418589791 0.374848678 0.1)
(-0.5549953767 0.4744224592 0.1)
(-0.555691244 0.5837253603 0.1)
(-0.555340928 0.5471121796 0.1)
(-0.5118587135 0.5571003252 0.1)
(-0.6422267412 0.5287067153 0.1)
(-0.5560877114 0.6211581168 0.1)
(-0.5556331835 0.7419077232 0.1)
(-0.5560044648 0.7007809518 0.1)
(-0.511712696 0.7070047644 0.1)
(-0.6433606434 0.6901575555 0.1)
(-0.5556938099 0.7841857546 0.1)
(-0.555747 0.919642 0.1)
(-0.555785 0.873881 0.1)
(-0.512818 0.874046 0.1)
(-0.641892 0.873428 0.1)
(-0.3836831798 -0.8724500168 0.1)
(-0.3833889766 -0.9203142405 0.1)
(-0.3859360734 -0.7150661818 0.1)
(-0.384994168 -0.7695612406 0.1)
(-0.3424200586 -0.765808558 0.1)
(-0.4714414002 -0.7756488786 0.1)
(-0.3870010489 -0.6590181054 0.1)
(-0.3915035019 -0.4847282229 0.1)
(-0.3898652321 -0.5433701425 0.1)
(-0.3463287888 -0.5367919124 0.1)
(-0.4756960473 -0.556377971 0.1)
(-0.3923749901 -0.4255685634 0.1)
(-0.3930822587 -0.2542039825 0.1)
(-0.393101998 -0.3100360593 0.1)
(-0.3503590688 -0.3028614723 0.1)
(-0.4776395836 -0.3287821096 0.1)
(-0.3928786245 -0.1997318014 0.1)
(-0.3913408139 -0.04485726802 0.1)
(-0.3919911115 -0.09500950894 0.1)
(-0.3493903355 -0.08932942802 0.1)
(-0.4769370144 -0.1126144773 0.1)
(-0.3906015783 0.004029784328 0.1)
(-0.3880020599 0.1450021351 0.1)
(-0.3889163413 0.09880842539 0.1)
(-0.346209946 0.1023069898 0.1)
(-0.4742889668 0.08424584813 0.1)
(-0.3870680837 0.1904848907 0.1)
(-0.3842806066 0.3224056879 0.1)
(-0.3851855453 0.27921052 0.1)
(-0.342336821 0.2841512667 0.1)
(-0.4710108255 0.2632677442 0.1)
(-0.3834079237 0.3644973928 0.1)
(-0.3813545887 0.4823414435 0.1)
(-0.3819212631 0.4446178576 0.1)
(-0.3386306082 0.4523645751 0.1)
(-0.4685578114 0.4236994289 0.1)
(-0.3806693935 0.5192287023 0.1)
(-0.3789154873 0.6245551348 0.1)
(-0.3788673797 0.5905747377 0.1)
(-0.3349739845 0.5994984645 0.1)
(-0.4681766585 0.5677796634 0.1)
(-0.379394882 0.6581082856 0.1)
(-0.3815924984 0.7613318822 0.1)
(-0.3808017695 0.7260468586 0.1)
(-0.3372172799 0.7323530143 0.1)
(-0.4679676273 0.7132101286 0.1)
(-0.3823642982 0.7980729141 0.1)
(-0.383782058 0.9205857066 0.1)
(-0.3835408583 0.8774026867 0.1)
(-0.3402688357 0.8794509636 0.1)
(-0.469805604 0.8745537183 0.1)
(-0.2123916826 -0.8661030408 0.1)
(-0.2116403298 -0.9175292772 0.1)
(-0.2157851871 -0.6973908755 0.1)
(-0.2146156208 -0.7552918339 0.1)
(-0.1717945084 -0.7530366661 0.1)
(-0.299862989 -0.762070825 0.1)
(-0.2169145603 -0.6383302621 0.1)
(-0.2193151155 -0.4595888043 0.1)
(-0.2187193012 -0.5188911061 0.1)
(-0.1761075077 -0.5146385414 0.1)
(-0.3036721755 -0.5301151257 0.1)
(-0.2196746135 -0.4012446754 0.1)
(-0.2203092906 -0.2348709157 0.1)
(-0.2200316491 -0.2888874351 0.1)
(-0.1769820967 -0.2856973111 0.1)
(-0.3068889918 -0.2971672557 0.1)
(-0.2204558242 -0.1831317653 0.1)
(-0.220015114 -0.03836003844 0.1)
(-0.2203177113 -0.0852341209 0.1)
(-0.1764503813 -0.08735559996 0.1)
(-0.3065872028 -0.08616346369 0.1)
(-0.2194867078 0.008228147924 0.1)
(-0.1957237908 0.1466510506 0.1)
(-0.1961956797 0.1237308876 0.1)
(-0.3034879781 0.1031156065 0.1)
(-0.1952421842 0.1697004019 0.1)
(-0.2121780864 0.3340115007 0.1)
(-0.2136489755 0.2873151015 0.1)
(-0.1704034921 0.2875971384 0.1)
(-0.2994828948 0.287047242 0.1)
(-0.210452775 0.3806889455 0.1)
(-0.2054584944 0.5098693524 0.1)
(-0.2064756699 0.4691972752 0.1)
(-0.2950001165 0.4592330882 0.1)
(-0.2048826325 0.5483567443 0.1)
(-0.2046510602 0.6529194115 0.1)
(-0.2044909071 0.6196030446 0.1)
(-0.1610628429 0.624086934 0.1)
(-0.2913936307 0.6072998563 0.1)
(-0.2050430943 0.6852230042 0.1)
(-0.2069447302 0.7803389036 0.1)
(-0.2062241267 0.7488223312 0.1)
(-0.1622447445 0.7529470855 0.1)
(-0.2936476348 0.7383272208 0.1)
(-0.2077779228 0.8141923571 0.1)
(-0.2101781288 0.9260246614 0.1)
(-0.2094781534 0.8866265091 0.1)
(-0.1661066634 0.8892311958 0.1)
(-0.2967333759 0.8817889351 0.1)
(-0.04058325972 -0.8600393194 0.1)
(-0.03958900728 -0.9137117609 0.1)
(-0.04424169824 -0.6869777355 0.1)
(-0.04300432087 -0.7462026073 0.1)
(5.084185951e-05 -0.745175761 0.1)
(-0.1290898476 -0.7501316723 0.1)
(-0.0453817821 -0.6269540533 0.1)
(-0.04759260918 -0.4479823862 0.1)
(-0.04709440488 -0.5068706052 0.1)
(-0.004032006247 -0.5055953989 0.1)
(-0.133231344 -0.5122268309 0.1)
(-0.04792174258 -0.39056823 0.1)
(-0.04741836721 -0.2312851978 0.1)
(-0.04798578812 -0.2818401617 0.1)
(-0.004344398475 -0.2815941708 0.1)
(-0.1340829885 -0.2835224244 0.1)
(-0.04666883639 -0.183386893 0.1)
(-0.02302974225 -0.06968961759 0.1)
(-0.1323376265 -0.08935329693 0.1)
(-0.08834831778 -0.04488213188 0.1)
(-0.08831111584 -0.02181881809 0.1)
(-0.1101022978 -0.02106559832 0.1)
(-0.1102965092 -0.04405159467 0.1)
(-0.1112839296 0.05046724471 0.1)
(-0.1111615606 0.02664920997 0.1)
(-0.08866952495 0.02481601955 0.1)
(-0.1758723063 0.05303116689 0.1)
(-0.1760843814 0.0295285319 0.1)
(-0.1546366114 0.02891156079 0.1)
(-0.1543033766 0.05199235579 0.1)
(-0.08812525738 0.1700457671 0.1)
(-0.1097129739 0.169477418 0.1)
(-0.1102858288 0.1451327296 0.1)
(-0.1070746999 0.2410607773 0.1)
(-0.1080594042 0.2173460362 0.1)
(-0.172011987 0.2405403521 0.1)
(-0.1726800691 0.2171373245 0.1)
(-0.1512462638 0.2169503419 0.1)
(-0.1504882846 0.2405378207 0.1)
(-0.07973500721 0.3578227918 0.1)
(-0.1014254243 0.3580927867 0.1)
(-0.102375382 0.3350316596 0.1)
(-0.07796073599 0.4263656407 0.1)
(-0.1211408495 0.4270234374 0.1)
(-0.1007307112 0.3810022455 0.1)
(-0.07914249602 0.3806713855 0.1)
(-0.1644979931 0.4272823504 0.1)
(-0.03097463613 0.5572756163 0.1)
(-0.02991911038 0.667894517 0.1)
(-0.02992210424 0.6331736378 0.1)
(0.01336277307 0.6346394333 0.1)
(-0.1173886366 0.6275760919 0.1)
(-0.03023708095 0.7009840102 0.1)
(-0.03271857979 0.7956508402 0.1)
(-0.03168183401 0.7643019099 0.1)
(0.01164323719 0.7661817319 0.1)
(-0.1185093155 0.7576293764 0.1)
(-0.03387539733 0.8275696927 0.1)
(-0.03725085057 0.9322577389 0.1)
(-0.0362268033 0.8953811196 0.1)
(0.007125428948 0.8965769931 0.1)
(-0.1227823929 0.8916197527 0.1)
(0.1318911359 -0.8578623712 0.1)
(0.1329597052 -0.9121834621 0.1)
(0.128137344 -0.6836879144 0.1)
(0.1293835146 -0.7431212332 0.1)
(0.1724542964 -0.7425370823 0.1)
(0.04312987074 -0.7448273774 0.1)
(0.1270120288 -0.623633513 0.1)
(0.1249949969 -0.445743095 0.1)
(0.1253950096 -0.5040681647 0.1)
(0.1684924355 -0.5038337386 0.1)
(0.03906561505 -0.5051643986 0.1)
(0.1248949964 -0.3891144672 0.1)
(0.1255692664 -0.2826885862 0.1)
(0.1687301214 -0.2832194814 0.1)
(0.03902617135 -0.281881598 0.1)
(0.0830852672 -0.2327982159 0.1)
(0.08396101439 -0.1862913394 0.1)
(0.08486940108 -0.140702361 0.1)
(0.06312612163 -0.1402302103 0.1)
(0.04139508153 -0.1397563164 0.1)
(-0.002133339707 -0.1387541222 0.1)
(0.01968236352 -0.1392768064 0.1)
(0.04320993589 -0.04863633218 0.1)
(0.04362546217 -0.02586603556 0.1)
(0.04398746334 -0.003091612927 0.1)
(0.03304494361 -0.002820539911 0.1)
(0.02200462341 -0.002510402486 0.1)
(5.921852586e-05 -0.001916976236 0.1)
(0.09454629342 0.3550917738 0.1)
(0.07278446224 0.3554902982 0.1)
(0.09611768455 0.4233998354 0.1)
(0.07443623454 0.4238346783 0.1)
(0.07385807655 0.401040795 0.1)
(0.09557633891 0.4006251826 0.1)
(0.009236538186 0.4250344491 0.1)
(0.008643587061 0.4022248733 0.1)
(0.03048125452 0.4018667637 0.1)
(0.03106038051 0.4246686284 0.1)
(0.1426149283 0.5572272982 0.1)
(0.1437218805 0.6722024917 0.1)
(0.1436466025 0.6362836137 0.1)
(0.1868224369 0.6358171428 0.1)
(0.05669067752 0.6351785314 0.1)
(0.1434899366 0.7062108369 0.1)
(0.1411237332 0.8018469916 0.1)
(0.1421547157 0.7704690097 0.1)
(0.1853475954 0.7703890554 0.1)
(0.05501022707 0.7671439409 0.1)
(0.1399309869 0.8335212153 0.1)
(0.1362221951 0.9359463015 0.1)
(0.1373933001 0.9000508189 0.1)
(0.1805529018 0.9001106088 0.1)
(0.0508045893 0.8982804927 0.1)
(0.3040848641 -0.856392983 0.1)
(0.3051984042 -0.91093334 0.1)
(0.3002866527 -0.6823752376 0.1)
(0.3015324662 -0.7416241798 0.1)
(0.3445140121 -0.7413826111 0.1)
(0.2155101961 -0.7421584715 0.1)
(0.2991744776 -0.6226252071 0.1)
(0.2972541094 -0.4462399602 0.1)
(0.2976142797 -0.5039849229 0.1)
(0.3406067125 -0.5040987814 0.1)
(0.211566941 -0.5038086953 0.1)
(0.2971984793 -0.3902383798 0.1)
(0.2979630301 -0.2851075644 0.1)
(0.3409831751 -0.2857561352 0.1)
(0.2118494008 -0.2838240801 0.1)
(0.2556714458 -0.2357866692 0.1)
(0.2565944419 -0.1897268745 0.1)
(0.2575424783 -0.1441597345 0.1)
(0.2360045863 -0.1437379121 0.1)
(0.2144647158 -0.1433150479 0.1)
(0.1713271768 -0.1424591024 0.1)
(0.1929069123 -0.142888806 0.1)
(0.2163536667 -0.05228164032 0.1)
(0.2168246028 -0.02954951685 0.1)
(0.2172972862 -0.006829432778 0.1)
(0.2065115647 -0.006607666574 0.1)
(0.1957298423 -0.00638598445 0.1)
(0.174155442 -0.005940389424 0.1)
(0.1849421422 -0.006163176427 0.1)
(0.2682154014 0.3514874312 0.1)
(0.2465387385 0.3519691838 0.1)
(0.2460579728 0.3292452688 0.1)
(0.2696504781 0.4196963363 0.1)
(0.2479830234 0.4201878975 0.1)
(0.2475018163 0.3974429871 0.1)
(0.2691723334 0.3969543622 0.1)
(0.1829235787 0.4216117697 0.1)
(0.1824291642 0.3988571348 0.1)
(0.2041212232 0.3983940627 0.1)
(0.2046105757 0.4211458034 0.1)
(0.3157093128 0.5537528085 0.1)
(0.3168018704 0.6700952367 0.1)
(0.3167190146 0.6337078993 0.1)
(0.3599049363 0.6323155683 0.1)
(0.2301443973 0.6354929349 0.1)
(0.3165786764 0.7045602832 0.1)
(0.3142152593 0.8013742259 0.1)
(0.3152499946 0.7696471227 0.1)
(0.358372527 0.7682728245 0.1)
(0.2287064733 0.7707594857 0.1)
(0.3130100374 0.8333187626 0.1)
(0.3092021294 0.9360921337 0.1)
(0.3104099986 0.9001642868 0.1)
(0.3535239046 0.899306337 0.1)
(0.223896593 0.9006061091 0.1)
(0.4760373859 -0.8550686347 0.1)
(0.4771936196 -0.9097585177 0.1)
(0.4721937474 -0.6813280656 0.1)
(0.4734423197 -0.7403641831 0.1)
(0.5164274483 -0.7400501335 0.1)
(0.3874808248 -0.7410443007 0.1)
(0.4710915895 -0.6219002388 0.1)
(0.4692525326 -0.4469852238 0.1)
(0.4695792761 -0.5041757122 0.1)
(0.5125819424 -0.5042301756 0.1)
(0.3835859249 -0.5041224835 0.1)
(0.4692325008 -0.3915721667 0.1)
(0.4700684718 -0.2876271105 0.1)
(0.5131098301 -0.2882642947 0.1)
(0.3839974233 -0.2863775061 0.1)
(0.4278076214 -0.2388546124 0.1)
(0.4287418946 -0.1930371668 0.1)
(0.4296876162 -0.1474849813 0.1)
(0.4081615324 -0.1470724092 0.1)
(0.3866404685 -0.1466589424 0.1)
(0.3436223774 -0.1458305138 0.1)
(0.365126403 -0.1462456228 0.1)
(0.3885198656 -0.05569935032 0.1)
(0.3889871508 -0.03299815695 0.1)
(0.3782282551 -0.03278495652 0.1)
(0.3784617926 -0.02143935873 0.1)
(0.3892196464 -0.0216545377 0.1)
(0.3462112471 -0.02079330551 0.1)
(0.3569521046 -0.02100812714 0.1)
(0.4413451536 0.3473723131 0.1)
(0.419758438 0.3478981848 0.1)
(0.4426948406 0.4155159987 0.1)
(0.4211112294 0.4160468062 0.1)
(0.4206634143 0.3933201979 0.1)
(0.4422460467 0.3927904112 0.1)
(0.356274604 0.4176500343 0.1)
(0.3558146654 0.3949176796 0.1)
(0.3774284171 0.39439324 0.1)
(0.3778863141 0.4171236372 0.1)
(0.4883544974 0.5484845278 0.1)
(0.4892113017 0.663393128 0.1)
(0.4892055004 0.627317999 0.1)
(0.5322036229 0.6252480746 0.1)
(0.4030182936 0.6309954065 0.1)
(0.4889118966 0.6977291762 0.1)
(0.48636273 0.7952670081 0.1)
(0.4874298101 0.7631377268 0.1)
(0.5303565678 0.760901682 0.1)
(0.4014233973 0.7672307251 0.1)
(0.4851474091 0.8277802371 0.1)
(0.4814415238 0.9328760318 0.1)
(0.4825915086 0.896090178 0.1)
(0.5255274483 0.8946901423 0.1)
(0.396583563 0.8987825033 0.1)
(0.647933987 -0.8534152361 0.1)
(0.6491375493 -0.9082946507 0.1)
(0.6440528772 -0.6799677501 0.1)
(0.6452964472 -0.7387651168 0.1)
(0.6882921403 -0.7386688559 0.1)
(0.5594069558 -0.739717729 0.1)
(0.6429700019 -0.6209061343 0.1)
(0.6412443502 -0.4476535449 0.1)
(0.6415271445 -0.5042203231 0.1)
(0.6845228209 -0.5043803652 0.1)
(0.5555793285 -0.5042720285 0.1)
(0.6412714198 -0.3928931194 0.1)
(0.6421958048 -0.2902022353 0.1)
(0.6852202245 -0.2908228341 0.1)
(0.5561480682 -0.288898627 0.1)
(0.599995811 -0.2419466529 0.1)
(0.6009428704 -0.1962755682 0.1)
(0.6018896547 -0.1507204044 0.1)
(0.5803682755 -0.1503219343 0.1)
(0.5588419395 -0.1499213595 0.1)
(0.5157943714 -0.1491153162 0.1)
(0.5373166453 -0.1495188062 0.1)
(0.5607158031 -0.05903466723 0.1)
(0.5611802479 -0.03637342298 0.1)
(0.550417227 -0.03616613714 0.1)
(0.5506482394 -0.02484549179 0.1)
(0.5614112392 -0.0250537774 0.1)
(0.5183683639 -0.02421482546 0.1)
(0.5291273226 -0.02442502655 0.1)
(0.6138659788 0.3428389023 0.1)
(0.5923077706 0.3434361905 0.1)
(0.6151323057 0.4109663365 0.1)
(0.5935977979 0.4115491233 0.1)
(0.5931701676 0.3888310927 0.1)
(0.614718378 0.3882340147 0.1)
(0.528929163 0.4132928513 0.1)
(0.5284895143 0.3905740731 0.1)
(0.5500472902 0.3900038 0.1)
(0.5504800035 0.4127257247 0.1)
(0.6604956979 0.5412483039 0.1)
(0.6609633131 0.6533747825 0.1)
(0.6610945295 0.6179408194 0.1)
(0.7039565891 0.6145758284 0.1)
(0.5752035187 0.62255398 0.1)
(0.6605593556 0.6873971516 0.1)
(0.6578797036 0.7858242995 0.1)
(0.6589724243 0.7530826066 0.1)
(0.7017885153 0.7504442565 0.1)
(0.57328585 0.758763863 0.1)
(0.6566720342 0.8192026737 0.1)
(0.653210143 0.928137556 0.1)
(0.6542306865 0.8899111292 0.1)
(0.6971547407 0.8886081119 0.1)
(0.5684660318 0.8935815826 0.1)
(0.8197391452 -0.8515168822 0.1)
(0.8209966315 -0.9066136803 0.1)
(0.8158173222 -0.6783176718 0.1)
(0.8170557182 -0.7368841862 0.1)
(0.8601536023 -0.737605665 0.1)
(0.7312475736 -0.7382543578 0.1)
(0.8147561023 -0.6196252972 0.1)
(0.8131661695 -0.4481106634 0.1)
(0.8133962701 -0.5040167803 0.1)
(0.8563909013 -0.5042412277 0.1)
(0.7275017744 -0.5043707334 0.1)
(0.8132503724 -0.3940551147 0.1)
(0.8142849251 -0.2927787598 0.1)
(0.8573130955 -0.293474454 0.1)
(0.7282509427 -0.2914688878 0.1)
(0.772125921 -0.2451226498 0.1)
(0.7730717661 -0.1994694446 0.1)
(0.7515544701 -0.1990670595 0.1)
(0.7740164129 -0.1538732268 0.1)
(0.7524969492 -0.1534787979 0.1)
(0.7520258988 -0.1762639307 0.1)
(0.7735442787 -0.1766623377 0.1)
(0.687947451 -0.1523006991 0.1)
(0.7305164539 -0.1758687121 0.1)
(0.7309894408 -0.1530866207 0.1)
(0.7094679355 -0.1526941493 0.1)
(0.7328538439 -0.06222173439 0.1)
(0.7333183846 -0.03960350166 0.1)
(0.7225541538 -0.03940619259 0.1)
(0.7227815152 -0.02811647733 0.1)
(0.7335467248 -0.02831480719 0.1)
(0.6904980519 -0.02751374175 0.1)
(0.7012532006 -0.02771486075 0.1)
(0.7859787838 0.3377379427 0.1)
(0.7644824332 0.3384229501 0.1)
(0.7872275351 0.4058857509 0.1)
(0.7442412227 0.4072266248 0.1)
(0.743394834 0.3617843756 0.1)
(0.7649014557 0.3611121553 0.1)
(0.786394849 0.3604292106 0.1)
(0.701218804 0.4085152461 0.1)
(0.7003705419 0.3630790377 0.1)
(0.7218906231 0.3624285392 0.1)
(0.8322538575 0.5314907888 0.1)
(0.8322394564 0.6398678017 0.1)
(0.8325113681 0.6052879823 0.1)
(0.8753136275 0.6021915723 0.1)
(0.7468760047 0.6121412417 0.1)
(0.8317698746 0.6743368103 0.1)
(0.8289681225 0.7745377823 0.1)
(0.8300577952 0.740841974 0.1)
(0.8727238801 0.7371704313 0.1)
(0.7445386763 0.7468909843 0.1)
(0.827805974 0.8091604145 0.1)
(0.8248693553 0.9232988407 0.1)
(0.8256661495 0.8831768662 0.1)
(0.8684469449 0.8812024724 0.1)
(0.7399387709 0.8862745167 0.1)
(0.9923440234 -0.8475063654 0.1)
(0.9936586338 -0.90286934 0.1)
(0.9884016515 -0.6745044796 0.1)
(0.9896234022 -0.7328376014 0.1)
(1.032111386 -0.7295499425 0.1)
(0.9029357114 -0.7360100996 0.1)
(0.9873780029 -0.6162022278 0.1)
(0.985989223 -0.4466142865 0.1)
(0.9861400584 -0.5017742882 0.1)
(1.028673825 -0.4989230886 0.1)
(0.8993798215 -0.5044547489 0.1)
(0.9861569136 -0.393371583 0.1)
(0.9873620066 -0.2938000072 0.1)
(1.029927437 -0.291383027 0.1)
(0.9003364678 -0.294183724 0.1)
(0.9443933079 -0.248532485 0.1)
(0.9452134001 -0.2028186231 0.1)
(0.9236778861 -0.2023788468 0.1)
(0.9461533516 -0.1571602929 0.1)
(0.9246227313 -0.1567256206 0.1)
(0.9241499665 -0.1795447248 0.1)
(0.9456805237 -0.1799823965 0.1)
(0.8600927846 -0.1554739165 0.1)
(0.859620293 -0.1782800236 0.1)
(0.881131317 -0.1786952798 0.1)
(0.8816039137 -0.1558841738 0.1)
(0.9049848206 -0.0653166327 0.1)
(0.9052127707 -0.05399892362 0.1)
(0.8944605371 -0.0538018668 0.1)
(0.8942316294 -0.0651175553 0.1)
(0.8949099458 -0.03123732785 0.1)
(0.9056611796 -0.03143436365 0.1)
(0.8626301663 -0.03064967304 0.1)
(0.8733704865 -0.0308424785 0.1)
(0.9115325649 0.1408808917 0.1)
(0.9008511131 0.1413998318 0.1)
(0.9119430479 0.1743912673 0.1)
(0.9012593905 0.1749004516 0.1)
(0.9011108744 0.1636976982 0.1)
(0.9117997871 0.1632006061 0.1)
(0.879713557 0.164668687 0.1)
(0.8798606949 0.1758534654 0.1)
(1.000750299 0.352488678 0.1)
(1.003103097 0.4799315901 0.1)
(1.002448807 0.4396825017 0.1)
(1.04536784 0.4371454721 0.1)
(0.9167960575 0.4447275131 0.1)
(1.003447099 0.5182912274 0.1)
(1.003108345 0.6248537452 0.1)
(1.003526099 0.5906375602 0.1)
(1.046138463 0.5859614347 0.1)
(0.9180429678 0.5982507196 0.1)
(1.002463718 0.6585647209 0.1)
(0.9996058055 0.7614232975 0.1)
(1.000676896 0.7264379128 0.1)
(1.043358263 0.7234081547 0.1)
(0.9154415319 0.7341499749 0.1)
(0.9985520576 0.7978255131 0.1)
(0.9964418174 0.9193666909 0.1)
(0.9969650083 0.877044848 0.1)
(1.039771918 0.8753877018 0.1)
(0.91131313 0.8799717055 0.1)
(1.164541695 -0.8482417804 0.1)
(1.165766866 -0.9026628497 0.1)
(1.160754059 -0.6779097385 0.1)
(1.161946049 -0.7354272258 0.1)
(1.205395243 -0.7385922231 0.1)
(1.075288557 -0.7308511959 0.1)
(1.159734348 -0.6202854168 0.1)
(1.158200843 -0.4513784908 0.1)
(1.1584265 -0.5065904358 0.1)
(1.201850687 -0.5107195429 0.1)
(1.071829896 -0.5006889751 0.1)
(1.158270863 -0.397731411 0.1)
(1.159220626 -0.2960440065 0.1)
(1.202404816 -0.2987632691 0.1)
(1.072987767 -0.2925450199 0.1)
(1.11695249 -0.2469813685 0.1)
(1.117915581 -0.2011524763 0.1)
(1.118878996 -0.1553296029 0.1)
(1.097353753 -0.1548770397 0.1)
(1.07582851 -0.1544244764 0.1)
(1.075346792 -0.1773364129 0.1)
(1.032788022 -0.15351956 0.1)
(1.032306304 -0.1764314966 0.1)
(1.053831547 -0.1768840599 0.1)
(1.054313265 -0.1539721233 0.1)
(1.077755362 -0.06277772995 0.1)
(1.078237059 -0.03986679318 0.1)
(1.067479436 -0.03964061665 0.1)
(1.078718777 -0.01695485663 0.1)
(1.067961155 -0.01672868009 0.1)
(1.067720306 -0.02818414848 0.1)
(1.078477929 -0.02841032502 0.1)
(1.03543744 -0.02750540867 0.1)
(1.046195063 -0.02773158521 0.1)
(1.046435912 -0.01627611682 0.1)
(1.125141242 0.1425212732 0.1)
(1.103615999 0.1429738365 0.1)
(1.126586376 0.2112560831 0.1)
(1.105061133 0.2117086463 0.1)
(1.104579421 0.1887970097 0.1)
(1.126104664 0.1883444465 0.1)
(1.061538933 0.1897019261 0.1)
(1.062020644 0.2126135627 0.1)
(1.17245532 0.3458246767 0.1)
(1.174256702 0.4661417999 0.1)
(1.173849011 0.4279157487 0.1)
(1.216736675 0.4241734295 0.1)
(1.087954814 0.4335952901 0.1)
(1.174428852 0.5027750988 0.1)
(1.173471858 0.6067336273 0.1)
(1.174025215 0.57265059 0.1)
(1.216780035 0.5687631439 0.1)
(1.088801388 0.5820572342 0.1)
(1.172827257 0.6418219943 0.1)
(1.170178098 0.7498268115 0.1)
(1.171094097 0.7127456896 0.1)
(1.213705067 0.7089220207 0.1)
(1.085897888 0.719309334 0.1)
(1.169486524 0.7888148596 0.1)
(1.16818 0.91701 0.1)
(1.16832406 0.87206699 0.1)
(1.211172575 0.8712389289 0.1)
(1.082633396 0.8742720405 0.1)
(1.338292141 -0.858451296 0.1)
(1.339188653 -0.9102026443 0.1)
(1.335101654 -0.6952185361 0.1)
(1.33616775 -0.7506239782 0.1)
(1.379838572 -0.7551148544 0.1)
(1.248930265 -0.7422454203 0.1)
(1.334128627 -0.6393166053 0.1)
(1.332274221 -0.4723338906 0.1)
(1.332678717 -0.5275254236 0.1)
(1.376440235 -0.5343709628 0.1)
(1.245376308 -0.5156165698 0.1)
(1.332105925 -0.4180023914 0.1)
(1.332936192 -0.2619205522 0.1)
(1.332457366 -0.3127005178 0.1)
(1.37598334 -0.3194640394 0.1)
(1.24567196 -0.302373365 0.1)
(1.33357524 -0.2123680987 0.1)
(1.33609279 -0.06960960726 0.1)
(1.335187403 -0.116415136 0.1)
(1.378409055 -0.1210949782 0.1)
(1.248983872 -0.112221899 0.1)
(1.337029618 -0.02329937351 0.1)
(1.339899158 0.1137621391 0.1)
(1.338940717 0.06838010069 0.1)
(1.382022406 0.06455336895 0.1)
(1.209787083 0.07197642043 0.1)
(1.252837569 0.07107129389 0.1)
(1.340848802 0.1586729374 0.1)
(1.34346621 0.2884730436 0.1)
(1.342657257 0.2462328254 0.1)
(1.385600855 0.2404774057 0.1)
(1.256675029 0.2535398748 0.1)
(1.344169796 0.3294999125 0.1)
(1.345334331 0.4452763566 0.1)
(1.345130783 0.4078161507 0.1)
(1.387823528 0.4006917265 0.1)
(1.259587736 0.4195902227 0.1)
(1.345331648 0.4818510386 0.1)
(1.344144932 0.5892343425 0.1)
(1.34471664 0.553487978 0.1)
(1.387263389 0.5475171045 0.1)
(1.259483121 0.5642190404 0.1)
(1.343448599 0.6254314131 0.1)
(1.341216232 0.7403956668 0.1)
(1.341914375 0.7006714657 0.1)
(1.384615742 0.6977770332 0.1)
(1.256472114 0.7063543999 0.1)
(1.340665681 0.7819022173 0.1)
(1.34028 0.916667 0.1)
(1.34028 0.870833 0.1)
(1.38333 0.870833 0.1)
(1.254175998 0.8708716071 0.1)
(1.512081535 -0.8683062015 0.1)
(1.512420085 -0.9162082831 0.1)
(1.510109968 -0.7162588311 0.1)
(1.510858963 -0.7681160389 0.1)
(1.554454468 -0.7717792893 0.1)
(1.423532266 -0.7596281907 0.1)
(1.509353885 -0.663571788 0.1)
(1.507547773 -0.5033021643 0.1)
(1.508032074 -0.5568191919 0.1)
(1.55192552 -0.5643190143 0.1)
(1.420272048 -0.5416484504 0.1)
(1.507217198 -0.4500243137 0.1)
(1.507228397 -0.2935292493 0.1)
(1.507059234 -0.3449884662 0.1)
(1.550862574 -0.3545749931 0.1)
(1.419606986 -0.327208866 0.1)
(1.507547568 -0.2428998792 0.1)
(1.509206381 -0.09628723216 0.1)
(1.508558825 -0.1442788093 0.1)
(1.552063663 -0.1542304408 0.1)
(1.421723736 -0.1274335249 0.1)
(1.509917854 -0.04915466647 0.1)
(1.512214074 0.08721652716 0.1)
(1.511443425 0.04259634107 0.1)
(1.554625517 0.0327070673 0.1)
(1.425142152 0.05882360349 0.1)
(1.512960826 0.1309824004 0.1)
(1.514829073 0.2570197792 0.1)
(1.514291507 0.2158849795 0.1)
(1.557148581 0.2059714592 0.1)
(1.428526282 0.2333853846 0.1)
(1.515252029 0.297320644 0.1)
(1.515675204 0.414210638 0.1)
(1.51568492 0.3757720548 0.1)
(1.558260933 0.3669238023 0.1)
(1.430481724 0.3928658164 0.1)
(1.515515325 0.4523837048 0.1)
(1.514318804 0.5678265916 0.1)
(1.514807791 0.5289206168 0.1)
(1.557339402 0.5230759824 0.1)
(1.429791252 0.5413216065 0.1)
(1.513796069 0.6075297864 0.1)
(1.512584309 0.7339485043 0.1)
(1.512868123 0.6903696112 0.1)
(1.555722173 0.6887535939 0.1)
(1.427337252 0.6950088651 0.1)
(1.5125 0.779167 0.1)
(1.5125 0.916667 0.1)
(1.5125 0.870833 0.1)
(1.55556 0.870833 0.1)
(1.42639 0.870833 0.1)
(1.68472 -0.870833 0.1)
(1.68472 -0.916667 0.1)
(1.684413878 -0.7312125871 0.1)
(1.684642118 -0.7786588412 0.1)
(1.72778 -0.779167 0.1)
(1.597958825 -0.7748493632 0.1)
(1.684084887 -0.6828128299 0.1)
(1.682944373 -0.5337102401 0.1)
(1.683310235 -0.5838677796 0.1)
(1.726933329 -0.5887001679 0.1)
(1.595780607 -0.5714718868 0.1)
(1.682634801 -0.4833545434 0.1)
(1.682226327 -0.3328513693 0.1)
(1.68226507 -0.3827665468 0.1)
(1.725993618 -0.3909943689 0.1)
(1.594674437 -0.3642627834 0.1)
(1.682287745 -0.2833622573 0.1)
(1.682997048 -0.1383716448 0.1)
(1.682684999 -0.1860542989 0.1)
(1.726213607 -0.196094976 0.1)
(1.595591703 -0.164753492 0.1)
(1.683363662 -0.0913976273 0.1)
(1.684602925 0.04512410948 0.1)
(1.684186242 0.0003511300041 0.1)
(1.727371665 -0.01003849439 0.1)
(1.597807451 0.02211253424 0.1)
(1.68499695 0.08918662727 0.1)
(1.68586551 0.2175857524 0.1)
(1.685643897 0.1753508291 0.1)
(1.728487252 0.1659691737 0.1)
(1.599982046 0.1956890114 0.1)
(1.686003818 0.2593822583 0.1)
(1.685890598 0.3834712843 0.1)
(1.686012994 0.3421687503 0.1)
(1.728670458 0.335362875 0.1)
(1.600824203 0.3582020827 0.1)
(1.685699889 0.4249488213 0.1)
(1.684971023 0.5523729246 0.1)
(1.685207699 0.5092061714 0.1)
(1.727995331 0.5063715986 0.1)
(1.599897551 0.5177215979 0.1)
(1.684793614 0.5964744282 0.1)
(1.68472 0.733333 0.1)
(1.68472 0.6875 0.1)
(1.72778 0.6875 0.1)
(1.598644784 0.6877666312 0.1)
(1.68472 0.779167 0.1)
(1.68472 0.916667 0.1)
(1.68472 0.870833 0.1)
(1.72778 0.870833 0.1)
(1.59861 0.870833 0.1)
(1.85694 -0.870833 0.1)
(1.85694 -0.916667 0.1)
(1.85694 -0.733333 0.1)
(1.85694 -0.779167 0.1)
(1.9 -0.779167 0.1)
(1.77083 -0.779167 0.1)
(1.85694 -0.6875 0.1)
(1.856885407 -0.5495141427 0.1)
(1.85693608 -0.5958007604 0.1)
(1.9 -0.595833 0.1)
(1.770417458 -0.5923841229 0.1)
(1.856797694 -0.5027873779 0.1)
(1.85652679 -0.3611973483 0.1)
(1.856601771 -0.4085087468 0.1)
(1.899900605 -0.4113360557 0.1)
(1.769632517 -0.3981740902 0.1)
(1.856481042 -0.3139156153 0.1)
(1.856544651 -0.1731233739 0.1)
(1.856491351 -0.2198083731 0.1)
(1.899785761 -0.2247225867 0.1)
(1.769693787 -0.2052626345 0.1)
(1.856622993 -0.126752782 0.1)
(1.856922013 0.01028856573 0.1)
(1.856821236 -0.03504557683 0.1)
(1.899940758 -0.04041564952 0.1)
(1.770534752 -0.01960829064 0.1)
(1.85701126 0.05530519544 0.1)
(1.857139605 0.1889741957 0.1)
(1.857124698 0.1445788352 0.1)
(1.900078338 0.1404615126 0.1)
(1.771336456 0.1575375758 0.1)
(1.857125909 0.2333281905 0.1)
(1.856981308 0.3672365472 0.1)
(1.857035285 0.3223394181 0.1)
(1.900007193 0.3209456569 0.1)
(1.771377612 0.3296711497 0.1)
(1.856944777 0.4125584064 0.1)
(1.85694 0.55 0.1)
(1.85694 0.504167 0.1)
(1.9 0.504167 0.1)
(1.770878961 0.5046637908 0.1)
(1.85694 0.595833 0.1)
(1.85694 0.733333 0.1)
(1.85694 0.6875 0.1)
(1.9 0.6875 0.1)
(1.77083 0.6875 0.1)
(1.85694 0.779167 0.1)
(1.85694 0.916667 0.1)
(1.85694 0.870833 0.1)
(1.9 0.870833 0.1)
(1.77083 0.870833 0.1)
(2.02917 -0.870833 0.1)
(2.02917 -0.916667 0.1)
(2.02917 -0.733333 0.1)
(2.02917 -0.779167 0.1)
(2.07222 -0.779167 0.1)
(1.94306 -0.779167 0.1)
(2.02917 -0.6875 0.1)
(2.02917 -0.55 0.1)
(2.02917 -0.595833 0.1)
(2.07222 -0.595833 0.1)
(1.94306 -0.595833 0.1)
(2.02917 -0.504167 0.1)
(2.02917 -0.366667 0.1)
(2.02917 -0.4125 0.1)
(2.07222 -0.4125 0.1)
(1.943057959 -0.4124762933 0.1)
(2.02917 -0.320833 0.1)
(2.02917 -0.183333 0.1)
(2.02917 -0.229167 0.1)
(2.07222 -0.229167 0.1)
(1.942996364 -0.2278555754 0.1)
(2.02917 -0.1375 0.1)
(2.02917 0 0.1)
(2.02917 -0.0458333 0.1)
(2.07222 -0.0458333 0.1)
(1.943039901 -0.04399117755 0.1)
(2.02917 0.0458333 0.1)
(2.02917 0.183333 0.1)
(2.02917 0.1375 0.1)
(2.07222 0.1375 0.1)
(1.943075935 0.1380953271 0.1)
(2.02917 0.229167 0.1)
(2.02917 0.366667 0.1)
(2.02917 0.320833 0.1)
(2.07222 0.320833 0.1)
(1.94306 0.320833 0.1)
(2.02917 0.4125 0.1)
(2.02917 0.55 0.1)
(2.02917 0.504167 0.1)
(2.07222 0.504167 0.1)
(1.94306 0.504167 0.1)
(2.02917 0.595833 0.1)
(2.02917 0.733333 0.1)
(2.02917 0.6875 0.1)
(2.07222 0.6875 0.1)
(1.94306 0.6875 0.1)
(2.02917 0.779167 0.1)
(2.02917 0.916667 0.1)
(2.02917 0.870833 0.1)
(2.07222 0.870833 0.1)
(1.94306 0.870833 0.1)
(2.20139 -0.870833 0.1)
(2.20139 -0.916667 0.1)
(2.20139 -0.733333 0.1)
(2.20139 -0.779167 0.1)
(2.24444 -0.779167 0.1)
(2.11528 -0.779167 0.1)
(2.20139 -0.6875 0.1)
(2.20139 -0.55 0.1)
(2.20139 -0.595833 0.1)
(2.24444 -0.595833 0.1)
(2.11528 -0.595833 0.1)
(2.20139 -0.504167 0.1)
(2.20139 -0.366667 0.1)
(2.20139 -0.4125 0.1)
(2.24444 -0.4125 0.1)
(2.11528 -0.4125 0.1)
(2.20139 -0.320833 0.1)
(2.20139 -0.183333 0.1)
(2.20139 -0.229167 0.1)
(2.24444 -0.229167 0.1)
(2.11528 -0.229167 0.1)
(2.20139 -0.1375 0.1)
(2.20139 0 0.1)
(2.20139 -0.0458333 0.1)
(2.24444 -0.0458333 0.1)
(2.11528 -0.0458333 0.1)
(2.20139 0.0458333 0.1)
(2.20139 0.183333 0.1)
(2.20139 0.1375 0.1)
(2.24444 0.1375 0.1)
(2.11528 0.1375 0.1)
(2.20139 0.229167 0.1)
(2.20139 0.366667 0.1)
(2.20139 0.320833 0.1)
(2.24444 0.320833 0.1)
(2.11528 0.320833 0.1)
(2.20139 0.4125 0.1)
(2.20139 0.55 0.1)
(2.20139 0.504167 0.1)
(2.24444 0.504167 0.1)
(2.11528 0.504167 0.1)
(2.20139 0.595833 0.1)
(2.20139 0.733333 0.1)
(2.20139 0.6875 0.1)
(2.24444 0.6875 0.1)
(2.11528 0.6875 0.1)
(2.20139 0.779167 0.1)
(2.20139 0.916667 0.1)
(2.20139 0.870833 0.1)
(2.24444 0.870833 0.1)
(2.11528 0.870833 0.1)
(2.37361 -0.870833 0.1)
(2.37361 -0.916667 0.1)
(2.37361 -0.733333 0.1)
(2.37361 -0.779167 0.1)
(2.41667 -0.779167 0.1)
(2.2875 -0.779167 0.1)
(2.37361 -0.6875 0.1)
(2.37361 -0.55 0.1)
(2.37361 -0.595833 0.1)
(2.41667 -0.595833 0.1)
(2.2875 -0.595833 0.1)
(2.37361 -0.504167 0.1)
(2.37361 -0.366667 0.1)
(2.37361 -0.4125 0.1)
(2.41667 -0.4125 0.1)
(2.2875 -0.4125 0.1)
(2.37361 -0.320833 0.1)
(2.37361 -0.183333 0.1)
(2.37361 -0.229167 0.1)
(2.41667 -0.229167 0.1)
(2.2875 -0.229167 0.1)
(2.37361 -0.1375 0.1)
(2.37361 -1.38778e-17 0.1)
(2.37361 -0.0458333 0.1)
(2.41667 -0.0458333 0.1)
(2.2875 -0.0458333 0.1)
(2.37361 0.0458333 0.1)
(2.37361 0.183333 0.1)
(2.37361 0.1375 0.1)
(2.41667 0.1375 0.1)
(2.2875 0.1375 0.1)
(2.37361 0.229167 0.1)
(2.37361 0.366667 0.1)
(2.37361 0.320833 0.1)
(2.41667 0.320833 0.1)
(2.2875 0.320833 0.1)
(2.37361 0.4125 0.1)
(2.37361 0.55 0.1)
(2.37361 0.504167 0.1)
(2.41667 0.504167 0.1)
(2.2875 0.504167 0.1)
(2.37361 0.595833 0.1)
(2.37361 0.733333 0.1)
(2.37361 0.6875 0.1)
(2.41667 0.6875 0.1)
(2.2875 0.6875 0.1)
(2.37361 0.779167 0.1)
(2.37361 0.916667 0.1)
(2.37361 0.870833 0.1)
(2.41667 0.870833 0.1)
(2.2875 0.870833 0.1)
(2.54583 -0.870833 0.1)
(2.54583 -0.916667 0.1)
(2.54583 -0.733333 0.1)
(2.54583 -0.779167 0.1)
(2.58889 -0.779167 0.1)
(2.45972 -0.779167 0.1)
(2.54583 -0.6875 0.1)
(2.54583 -0.55 0.1)
(2.54583 -0.595833 0.1)
(2.58889 -0.595833 0.1)
(2.45972 -0.595833 0.1)
(2.54583 -0.504167 0.1)
(2.54583 -0.366667 0.1)
(2.54583 -0.4125 0.1)
(2.58889 -0.4125 0.1)
(2.45972 -0.4125 0.1)
(2.54583 -0.320833 0.1)
(2.54583 -0.183333 0.1)
(2.54583 -0.229167 0.1)
(2.58889 -0.229167 0.1)
(2.45972 -0.229167 0.1)
(2.54583 -0.1375 0.1)
(2.54583 -1.85037e-17 0.1)
(2.54583 -0.0458333 0.1)
(2.58889 -0.0458333 0.1)
(2.45972 -0.0458333 0.1)
(2.54583 0.0458333 0.1)
(2.54583 0.183333 0.1)
(2.54583 0.1375 0.1)
(2.58889 0.1375 0.1)
(2.45972 0.1375 0.1)
(2.54583 0.229167 0.1)
(2.54583 0.366667 0.1)
(2.54583 0.320833 0.1)
(2.58889 0.320833 0.1)
(2.45972 0.320833 0.1)
(2.54583 0.4125 0.1)
(2.54583 0.55 0.1)
(2.54583 0.504167 0.1)
(2.58889 0.504167 0.1)
(2.45972 0.504167 0.1)
(2.54583 0.595833 0.1)
(2.54583 0.733333 0.1)
(2.54583 0.6875 0.1)
(2.58889 0.6875 0.1)
(2.45972 0.6875 0.1)
(2.54583 0.779167 0.1)
(2.54583 0.916667 0.1)
(2.54583 0.870833 0.1)
(2.58889 0.870833 0.1)
(2.45972 0.870833 0.1)
(2.71806 -0.870833 0.1)
(2.71806 -0.916667 0.1)
(2.71806 -0.733333 0.1)
(2.71806 -0.779167 0.1)
(2.76111 -0.779167 0.1)
(2.63194 -0.779167 0.1)
(2.71806 -0.6875 0.1)
(2.71806 -0.55 0.1)
(2.71806 -0.595833 0.1)
(2.76111 -0.595833 0.1)
(2.63194 -0.595833 0.1)
(2.71806 -0.504167 0.1)
(2.71806 -0.366667 0.1)
(2.71806 -0.4125 0.1)
(2.76111 -0.4125 0.1)
(2.63194 -0.4125 0.1)
(2.71806 -0.320833 0.1)
(2.71806 -0.183333 0.1)
(2.71806 -0.229167 0.1)
(2.76111 -0.229167 0.1)
(2.63194 -0.229167 0.1)
(2.71806 -0.1375 0.1)
(2.71806 9.25186e-18 0.1)
(2.71806 -0.0458333 0.1)
(2.76111 -0.0458333 0.1)
(2.63194 -0.0458333 0.1)
(2.71806 0.0458333 0.1)
(2.71806 0.183333 0.1)
(2.71806 0.1375 0.1)
(2.76111 0.1375 0.1)
(2.63194 0.1375 0.1)
(2.71806 0.229167 0.1)
(2.71806 0.366667 0.1)
(2.71806 0.320833 0.1)
(2.76111 0.320833 0.1)
(2.63194 0.320833 0.1)
(2.71806 0.4125 0.1)
(2.71806 0.55 0.1)
(2.71806 0.504167 0.1)
(2.76111 0.504167 0.1)
(2.63194 0.504167 0.1)
(2.71806 0.595833 0.1)
(2.71806 0.733333 0.1)
(2.71806 0.6875 0.1)
(2.76111 0.6875 0.1)
(2.63194 0.6875 0.1)
(2.71806 0.779167 0.1)
(2.71806 0.916667 0.1)
(2.71806 0.870833 0.1)
(2.76111 0.870833 0.1)
(2.63194 0.870833 0.1)
(2.89028 -0.870833 0.1)
(2.89028 -0.916667 0.1)
(2.89028 -0.733333 0.1)
(2.89028 -0.779167 0.1)
(2.93333 -0.779167 0.1)
(2.80417 -0.779167 0.1)
(2.89028 -0.6875 0.1)
(2.89028 -0.55 0.1)
(2.89028 -0.595833 0.1)
(2.93333 -0.595833 0.1)
(2.80417 -0.595833 0.1)
(2.89028 -0.504167 0.1)
(2.89028 -0.366667 0.1)
(2.89028 -0.4125 0.1)
(2.93333 -0.4125 0.1)
(2.80417 -0.4125 0.1)
(2.89028 -0.320833 0.1)
(2.89028 -0.183333 0.1)
(2.89028 -0.229167 0.1)
(2.93333 -0.229167 0.1)
(2.80417 -0.229167 0.1)
(2.89028 -0.1375 0.1)
(2.89028 1.85037e-17 0.1)
(2.89028 -0.0458333 0.1)
(2.93333 -0.0458333 0.1)
(2.80417 -0.0458333 0.1)
(2.89028 0.0458333 0.1)
(2.89028 0.183333 0.1)
(2.89028 0.1375 0.1)
(2.93333 0.1375 0.1)
(2.80417 0.1375 0.1)
(2.89028 0.229167 0.1)
(2.89028 0.366667 0.1)
(2.89028 0.320833 0.1)
(2.93333 0.320833 0.1)
(2.80417 0.320833 0.1)
(2.89028 0.4125 0.1)
(2.89028 0.55 0.1)
(2.89028 0.504167 0.1)
(2.93333 0.504167 0.1)
(2.80417 0.504167 0.1)
(2.89028 0.595833 0.1)
(2.89028 0.733333 0.1)
(2.89028 0.6875 0.1)
(2.93333 0.6875 0.1)
(2.80417 0.6875 0.1)
(2.89028 0.779167 0.1)
(2.89028 0.916667 0.1)
(2.89028 0.870833 0.1)
(2.93333 0.870833 0.1)
(2.80417 0.870833 0.1)
(3.0625 -0.870833 0.1)
(3.0625 -0.916667 0.1)
(3.0625 -0.733333 0.1)
(3.0625 -0.779167 0.1)
(3.10556 -0.779167 0.1)
(2.97639 -0.779167 0.1)
(3.0625 -0.6875 0.1)
(3.0625 -0.55 0.1)
(3.0625 -0.595833 0.1)
(3.10556 -0.595833 0.1)
(2.97639 -0.595833 0.1)
(3.0625 -0.504167 0.1)
(3.0625 -0.366667 0.1)
(3.0625 -0.4125 0.1)
(3.10556 -0.4125 0.1)
(2.97639 -0.4125 0.1)
(3.0625 -0.320833 0.1)
(3.0625 -0.183333 0.1)
(3.0625 -0.229167 0.1)
(3.10556 -0.229167 0.1)
(2.97639 -0.229167 0.1)
(3.0625 -0.1375 0.1)
(3.0625 4.62593e-18 0.1)
(3.0625 -0.0458333 0.1)
(3.10556 -0.0458333 0.1)
(2.97639 -0.0458333 0.1)
(3.0625 0.0458333 0.1)
(3.0625 0.183333 0.1)
(3.0625 0.1375 0.1)
(3.10556 0.1375 0.1)
(2.97639 0.1375 0.1)
(3.0625 0.229167 0.1)
(3.0625 0.366667 0.1)
(3.0625 0.320833 0.1)
(3.10556 0.320833 0.1)
(2.97639 0.320833 0.1)
(3.0625 0.4125 0.1)
(3.0625 0.55 0.1)
(3.0625 0.504167 0.1)
(3.10556 0.504167 0.1)
(2.97639 0.504167 0.1)
(3.0625 0.595833 0.1)
(3.0625 0.733333 0.1)
(3.0625 0.6875 0.1)
(3.10556 0.6875 0.1)
(2.97639 0.6875 0.1)
(3.0625 0.779167 0.1)
(3.0625 0.916667 0.1)
(3.0625 0.870833 0.1)
(3.10556 0.870833 0.1)
(2.97639 0.870833 0.1)
(3.23472 -0.870833 0.1)
(3.23472 -0.916667 0.1)
(3.23472 -0.733333 0.1)
(3.23472 -0.779167 0.1)
(3.27778 -0.779167 0.1)
(3.14861 -0.779167 0.1)
(3.23472 -0.6875 0.1)
(3.23472 -0.55 0.1)
(3.23472 -0.595833 0.1)
(3.27778 -0.595833 0.1)
(3.14861 -0.595833 0.1)
(3.23472 -0.504167 0.1)
(3.23472 -0.366667 0.1)
(3.23472 -0.4125 0.1)
(3.27778 -0.4125 0.1)
(3.14861 -0.4125 0.1)
(3.23472 -0.320833 0.1)
(3.23472 -0.183333 0.1)
(3.23472 -0.229167 0.1)
(3.27778 -0.229167 0.1)
(3.14861 -0.229167 0.1)
(3.23472 -0.1375 0.1)
(3.23472 0 0.1)
(3.23472 -0.0458333 0.1)
(3.27778 -0.0458333 0.1)
(3.14861 -0.0458333 0.1)
(3.23472 0.0458333 0.1)
(3.23472 0.183333 0.1)
(3.23472 0.1375 0.1)
(3.27778 0.1375 0.1)
(3.14861 0.1375 0.1)
(3.23472 0.229167 0.1)
(3.23472 0.366667 0.1)
(3.23472 0.320833 0.1)
(3.27778 0.320833 0.1)
(3.14861 0.320833 0.1)
(3.23472 0.4125 0.1)
(3.23472 0.55 0.1)
(3.23472 0.504167 0.1)
(3.27778 0.504167 0.1)
(3.14861 0.504167 0.1)
(3.23472 0.595833 0.1)
(3.23472 0.733333 0.1)
(3.23472 0.6875 0.1)
(3.27778 0.6875 0.1)
(3.14861 0.6875 0.1)
(3.23472 0.779167 0.1)
(3.23472 0.916667 0.1)
(3.23472 0.870833 0.1)
(3.27778 0.870833 0.1)
(3.14861 0.870833 0.1)
(3.40694 -0.870833 0.1)
(3.40694 -0.916667 0.1)
(3.40694 -0.733333 0.1)
(3.40694 -0.779167 0.1)
(3.45 -0.779167 0.1)
(3.32083 -0.779167 0.1)
(3.40694 -0.6875 0.1)
(3.40694 -0.55 0.1)
(3.40694 -0.595833 0.1)
(3.45 -0.595833 0.1)
(3.32083 -0.595833 0.1)
(3.40694 -0.504167 0.1)
(3.40694 -0.366667 0.1)
(3.40694 -0.4125 0.1)
(3.45 -0.4125 0.1)
(3.32083 -0.4125 0.1)
(3.40694 -0.320833 0.1)
(3.40694 -0.183333 0.1)
(3.40694 -0.229167 0.1)
(3.45 -0.229167 0.1)
(3.32083 -0.229167 0.1)
(3.40694 -0.1375 0.1)
(3.40694 0 0.1)
(3.40694 -0.0458333 0.1)
(3.45 -0.0458333 0.1)
(3.32083 -0.0458333 0.1)
(3.40694 0.0458333 0.1)
(3.40694 0.183333 0.1)
(3.40694 0.1375 0.1)
(3.45 0.1375 0.1)
(3.32083 0.1375 0.1)
(3.40694 0.229167 0.1)
(3.40694 0.366667 0.1)
(3.40694 0.320833 0.1)
(3.45 0.320833 0.1)
(3.32083 0.320833 0.1)
(3.40694 0.4125 0.1)
(3.40694 0.55 0.1)
(3.40694 0.504167 0.1)
(3.45 0.504167 0.1)
(3.32083 0.504167 0.1)
(3.40694 0.595833 0.1)
(3.40694 0.733333 0.1)
(3.40694 0.6875 0.1)
(3.45 0.6875 0.1)
(3.32083 0.6875 0.1)
(3.40694 0.779167 0.1)
(3.40694 0.916667 0.1)
(3.40694 0.870833 0.1)
(3.45 0.870833 0.1)
(3.32083 0.870833 0.1)
(3.57917 -0.870833 0.1)
(3.57917 -0.916667 0.1)
(3.57917 -0.733333 0.1)
(3.57917 -0.779167 0.1)
(3.62222 -0.779167 0.1)
(3.49306 -0.779167 0.1)
(3.57917 -0.6875 0.1)
(3.57917 -0.55 0.1)
(3.57917 -0.595833 0.1)
(3.62222 -0.595833 0.1)
(3.49306 -0.595833 0.1)
(3.57917 -0.504167 0.1)
(3.57917 -0.366667 0.1)
(3.57917 -0.4125 0.1)
(3.62222 -0.4125 0.1)
(3.49306 -0.4125 0.1)
(3.57917 -0.320833 0.1)
(3.57917 -0.183333 0.1)
(3.57917 -0.229167 0.1)
(3.62222 -0.229167 0.1)
(3.49306 -0.229167 0.1)
(3.57917 -0.1375 0.1)
(3.57917 0 0.1)
(3.57917 -0.0458333 0.1)
(3.62222 -0.0458333 0.1)
(3.49306 -0.0458333 0.1)
(3.57917 0.0458333 0.1)
(3.57917 0.183333 0.1)
(3.57917 0.1375 0.1)
(3.62222 0.1375 0.1)
(3.49306 0.1375 0.1)
(3.57917 0.229167 0.1)
(3.57917 0.366667 0.1)
(3.57917 0.320833 0.1)
(3.62222 0.320833 0.1)
(3.49306 0.320833 0.1)
(3.57917 0.4125 0.1)
(3.57917 0.55 0.1)
(3.57917 0.504167 0.1)
(3.62222 0.504167 0.1)
(3.49306 0.504167 0.1)
(3.57917 0.595833 0.1)
(3.57917 0.733333 0.1)
(3.57917 0.6875 0.1)
(3.62222 0.6875 0.1)
(3.49306 0.6875 0.1)
(3.57917 0.779167 0.1)
(3.57917 0.916667 0.1)
(3.57917 0.870833 0.1)
(3.62222 0.870833 0.1)
(3.49306 0.870833 0.1)
(3.75139 -0.870833 0.1)
(3.75139 -0.916667 0.1)
(3.75139 -0.733333 0.1)
(3.75139 -0.779167 0.1)
(3.79444 -0.779167 0.1)
(3.66528 -0.779167 0.1)
(3.75139 -0.6875 0.1)
(3.75139 -0.55 0.1)
(3.75139 -0.595833 0.1)
(3.79444 -0.595833 0.1)
(3.66528 -0.595833 0.1)
(3.75139 -0.504167 0.1)
(3.75139 -0.366667 0.1)
(3.75139 -0.4125 0.1)
(3.79444 -0.4125 0.1)
(3.66528 -0.4125 0.1)
(3.75139 -0.320833 0.1)
(3.75139 -0.183333 0.1)
(3.75139 -0.229167 0.1)
(3.79444 -0.229167 0.1)
(3.66528 -0.229167 0.1)
(3.75139 -0.1375 0.1)
(3.75139 -6.93889e-18 0.1)
(3.75139 -0.0458333 0.1)
(3.79444 -0.0458333 0.1)
(3.66528 -0.0458333 0.1)
(3.75139 0.0458333 0.1)
(3.75139 0.183333 0.1)
(3.75139 0.1375 0.1)
(3.79444 0.1375 0.1)
(3.66528 0.1375 0.1)
(3.75139 0.229167 0.1)
(3.75139 0.366667 0.1)
(3.75139 0.320833 0.1)
(3.79444 0.320833 0.1)
(3.66528 0.320833 0.1)
(3.75139 0.4125 0.1)
(3.75139 0.55 0.1)
(3.75139 0.504167 0.1)
(3.79444 0.504167 0.1)
(3.66528 0.504167 0.1)
(3.75139 0.595833 0.1)
(3.75139 0.733333 0.1)
(3.75139 0.6875 0.1)
(3.79444 0.6875 0.1)
(3.66528 0.6875 0.1)
(3.75139 0.779167 0.1)
(3.75139 0.916667 0.1)
(3.75139 0.870833 0.1)
(3.79444 0.870833 0.1)
(3.66528 0.870833 0.1)
(3.92361 -0.870833 0.1)
(3.92361 -0.916667 0.1)
(3.92361 -0.733333 0.1)
(3.92361 -0.779167 0.1)
(3.96667 -0.779167 0.1)
(3.8375 -0.779167 0.1)
(3.92361 -0.6875 0.1)
(3.92361 -0.55 0.1)
(3.92361 -0.595833 0.1)
(3.96667 -0.595833 0.1)
(3.8375 -0.595833 0.1)
(3.92361 -0.504167 0.1)
(3.92361 -0.366667 0.1)
(3.92361 -0.4125 0.1)
(3.96667 -0.4125 0.1)
(3.8375 -0.4125 0.1)
(3.92361 -0.320833 0.1)
(3.92361 -0.183333 0.1)
(3.92361 -0.229167 0.1)
(3.96667 -0.229167 0.1)
(3.8375 -0.229167 0.1)
(3.92361 -0.1375 0.1)
(3.92361 -9.25186e-18 0.1)
(3.92361 -0.0458333 0.1)
(3.96667 -0.0458333 0.1)
(3.8375 -0.0458333 0.1)
(3.92361 0.0458333 0.1)
(3.92361 0.183333 0.1)
(3.92361 0.1375 0.1)
(3.96667 0.1375 0.1)
(3.8375 0.1375 0.1)
(3.92361 0.229167 0.1)
(3.92361 0.366667 0.1)
(3.92361 0.320833 0.1)
(3.96667 0.320833 0.1)
(3.8375 0.320833 0.1)
(3.92361 0.4125 0.1)
(3.92361 0.55 0.1)
(3.92361 0.504167 0.1)
(3.96667 0.504167 0.1)
(3.8375 0.504167 0.1)
(3.92361 0.595833 0.1)
(3.92361 0.733333 0.1)
(3.92361 0.6875 0.1)
(3.96667 0.6875 0.1)
(3.8375 0.6875 0.1)
(3.92361 0.779167 0.1)
(3.92361 0.916667 0.1)
(3.92361 0.870833 0.1)
(3.96667 0.870833 0.1)
(3.8375 0.870833 0.1)
(4.09583 -0.870833 0.1)
(4.09583 -0.916667 0.1)
(4.09583 -0.733333 0.1)
(4.09583 -0.779167 0.1)
(4.13889 -0.779167 0.1)
(4.00972 -0.779167 0.1)
(4.09583 -0.6875 0.1)
(4.09583 -0.55 0.1)
(4.09583 -0.595833 0.1)
(4.13889 -0.595833 0.1)
(4.00972 -0.595833 0.1)
(4.09583 -0.504167 0.1)
(4.09583 -0.366667 0.1)
(4.09583 -0.4125 0.1)
(4.13889 -0.4125 0.1)
(4.00972 -0.4125 0.1)
(4.09583 -0.320833 0.1)
(4.09583 -0.183333 0.1)
(4.09583 -0.229167 0.1)
(4.13889 -0.229167 0.1)
(4.00972 -0.229167 0.1)
(4.09583 -0.1375 0.1)
(4.09583 -1.61908e-17 0.1)
(4.09583 -0.0458333 0.1)
(4.13889 -0.0458333 0.1)
(4.00972 -0.0458333 0.1)
(4.09583 0.0458333 0.1)
(4.09583 0.183333 0.1)
(4.09583 0.1375 0.1)
(4.13889 0.1375 0.1)
(4.00972 0.1375 0.1)
(4.09583 0.229167 0.1)
(4.09583 0.366667 0.1)
(4.09583 0.320833 0.1)
(4.13889 0.320833 0.1)
(4.00972 0.320833 0.1)
(4.09583 0.4125 0.1)
(4.09583 0.55 0.1)
(4.09583 0.504167 0.1)
(4.13889 0.504167 0.1)
(4.00972 0.504167 0.1)
(4.09583 0.595833 0.1)
(4.09583 0.733333 0.1)
(4.09583 0.6875 0.1)
(4.13889 0.6875 0.1)
(4.00972 0.6875 0.1)
(4.09583 0.779167 0.1)
(4.09583 0.916667 0.1)
(4.09583 0.870833 0.1)
(4.13889 0.870833 0.1)
(4.00972 0.870833 0.1)
(4.26806 -0.870833 0.1)
(4.26806 -0.916667 0.1)
(4.26806 -0.733333 0.1)
(4.26806 -0.779167 0.1)
(4.31111 -0.779167 0.1)
(4.18194 -0.779167 0.1)
(4.26806 -0.6875 0.1)
(4.26806 -0.55 0.1)
(4.26806 -0.595833 0.1)
(4.31111 -0.595833 0.1)
(4.18194 -0.595833 0.1)
(4.26806 -0.504167 0.1)
(4.26806 -0.366667 0.1)
(4.26806 -0.4125 0.1)
(4.31111 -0.4125 0.1)
(4.18194 -0.4125 0.1)
(4.26806 -0.320833 0.1)
(4.26806 -0.183333 0.1)
(4.26806 -0.229167 0.1)
(4.31111 -0.229167 0.1)
(4.18194 -0.229167 0.1)
(4.26806 -0.1375 0.1)
(4.26806 9.25186e-18 0.1)
(4.26806 -0.0458333 0.1)
(4.31111 -0.0458333 0.1)
(4.18194 -0.0458333 0.1)
(4.26806 0.0458333 0.1)
(4.26806 0.183333 0.1)
(4.26806 0.1375 0.1)
(4.31111 0.1375 0.1)
(4.18194 0.1375 0.1)
(4.26806 0.229167 0.1)
(4.26806 0.366667 0.1)
(4.26806 0.320833 0.1)
(4.31111 0.320833 0.1)
(4.18194 0.320833 0.1)
(4.26806 0.4125 0.1)
(4.26806 0.55 0.1)
(4.26806 0.504167 0.1)
(4.31111 0.504167 0.1)
(4.18194 0.504167 0.1)
(4.26806 0.595833 0.1)
(4.26806 0.733333 0.1)
(4.26806 0.6875 0.1)
(4.31111 0.6875 0.1)
(4.18194 0.6875 0.1)
(4.26806 0.779167 0.1)
(4.26806 0.916667 0.1)
(4.26806 0.870833 0.1)
(4.31111 0.870833 0.1)
(4.18194 0.870833 0.1)
(4.44028 -0.870833 0.1)
(4.44028 -0.916667 0.1)
(4.44028 -0.733333 0.1)
(4.44028 -0.779167 0.1)
(4.48333 -0.779167 0.1)
(4.35417 -0.779167 0.1)
(4.44028 -0.6875 0.1)
(4.44028 -0.55 0.1)
(4.44028 -0.595833 0.1)
(4.48333 -0.595833 0.1)
(4.35417 -0.595833 0.1)
(4.44028 -0.504167 0.1)
(4.44028 -0.366667 0.1)
(4.44028 -0.4125 0.1)
(4.48333 -0.4125 0.1)
(4.35417 -0.4125 0.1)
(4.44028 -0.320833 0.1)
(4.44028 -0.183333 0.1)
(4.44028 -0.229167 0.1)
(4.48333 -0.229167 0.1)
(4.35417 -0.229167 0.1)
(4.44028 -0.1375 0.1)
(4.44028 -1.27213e-17 0.1)
(4.44028 -0.0458333 0.1)
(4.48333 -0.0458333 0.1)
(4.35417 -0.0458333 0.1)
(4.44028 0.0458333 0.1)
(4.44028 0.183333 0.1)
(4.44028 0.1375 0.1)
(4.48333 0.1375 0.1)
(4.35417 0.1375 0.1)
(4.44028 0.229167 0.1)
(4.44028 0.366667 0.1)
(4.44028 0.320833 0.1)
(4.48333 0.320833 0.1)
(4.35417 0.320833 0.1)
(4.44028 0.4125 0.1)
(4.44028 0.55 0.1)
(4.44028 0.504167 0.1)
(4.48333 0.504167 0.1)
(4.35417 0.504167 0.1)
(4.44028 0.595833 0.1)
(4.44028 0.733333 0.1)
(4.44028 0.6875 0.1)
(4.48333 0.6875 0.1)
(4.35417 0.6875 0.1)
(4.44028 0.779167 0.1)
(4.44028 0.916667 0.1)
(4.44028 0.870833 0.1)
(4.48333 0.870833 0.1)
(4.35417 0.870833 0.1)
(4.6125 -0.870833 0.1)
(4.6125 -0.916667 0.1)
(4.6125 -0.733333 0.1)
(4.6125 -0.779167 0.1)
(4.65556 -0.779167 0.1)
(4.52639 -0.779167 0.1)
(4.6125 -0.6875 0.1)
(4.6125 -0.55 0.1)
(4.6125 -0.595833 0.1)
(4.65556 -0.595833 0.1)
(4.52639 -0.595833 0.1)
(4.6125 -0.504167 0.1)
(4.6125 -0.366667 0.1)
(4.6125 -0.4125 0.1)
(4.65556 -0.4125 0.1)
(4.52639 -0.4125 0.1)
(4.6125 -0.320833 0.1)
(4.6125 -0.183333 0.1)
(4.6125 -0.229167 0.1)
(4.65556 -0.229167 0.1)
(4.52639 -0.229167 0.1)
(4.6125 -0.1375 0.1)
(4.6125 1.15648e-18 0.1)
(4.6125 -0.0458333 0.1)
(4.65556 -0.0458333 0.1)
(4.52639 -0.0458333 0.1)
(4.6125 0.0458333 0.1)
(4.6125 0.183333 0.1)
(4.6125 0.1375 0.1)
(4.65556 0.1375 0.1)
(4.52639 0.1375 0.1)
(4.6125 0.229167 0.1)
(4.6125 0.366667 0.1)
(4.6125 0.320833 0.1)
(4.65556 0.320833 0.1)
(4.52639 0.320833 0.1)
(4.6125 0.4125 0.1)
(4.6125 0.55 0.1)
(4.6125 0.504167 0.1)
(4.65556 0.504167 0.1)
(4.52639 0.504167 0.1)
(4.6125 0.595833 0.1)
(4.6125 0.733333 0.1)
(4.6125 0.6875 0.1)
(4.65556 0.6875 0.1)
(4.52639 0.6875 0.1)
(4.6125 0.779167 0.1)
(4.6125 0.916667 0.1)
(4.6125 0.870833 0.1)
(4.65556 0.870833 0.1)
(4.52639 0.870833 0.1)
(4.78472 -0.870833 0.1)
(4.78472 -0.916667 0.1)
(4.78472 -0.733333 0.1)
(4.78472 -0.779167 0.1)
(4.82778 -0.779167 0.1)
(4.69861 -0.779167 0.1)
(4.78472 -0.6875 0.1)
(4.78472 -0.55 0.1)
(4.78472 -0.595833 0.1)
(4.82778 -0.595833 0.1)
(4.69861 -0.595833 0.1)
(4.78472 -0.504167 0.1)
(4.78472 -0.366667 0.1)
(4.78472 -0.4125 0.1)
(4.82778 -0.4125 0.1)
(4.69861 -0.4125 0.1)
(4.78472 -0.320833 0.1)
(4.78472 -0.183333 0.1)
(4.78472 -0.229167 0.1)
(4.82778 -0.229167 0.1)
(4.69861 -0.229167 0.1)
(4.78472 -0.1375 0.1)
(4.78472 -2.19732e-17 0.1)
(4.78472 -0.0458333 0.1)
(4.82778 -0.0458333 0.1)
(4.69861 -0.0458333 0.1)
(4.78472 0.0458333 0.1)
(4.78472 0.183333 0.1)
(4.78472 0.1375 0.1)
(4.82778 0.1375 0.1)
(4.69861 0.1375 0.1)
(4.78472 0.229167 0.1)
(4.78472 0.366667 0.1)
(4.78472 0.320833 0.1)
(4.82778 0.320833 0.1)
(4.69861 0.320833 0.1)
(4.78472 0.4125 0.1)
(4.78472 0.55 0.1)
(4.78472 0.504167 0.1)
(4.82778 0.504167 0.1)
(4.69861 0.504167 0.1)
(4.78472 0.595833 0.1)
(4.78472 0.733333 0.1)
(4.78472 0.6875 0.1)
(4.82778 0.6875 0.1)
(4.69861 0.6875 0.1)
(4.78472 0.779167 0.1)
(4.78472 0.916667 0.1)
(4.78472 0.870833 0.1)
(4.82778 0.870833 0.1)
(4.69861 0.870833 0.1)
(5 -0.916667 0.1)
(5 -0.870833 0.1)
(4.95694 -0.870833 0.1)
(4.95694 -0.916667 0.1)
(5 -0.733333 0.1)
(4.95694 -0.733333 0.1)
(4.95694 -0.779167 0.1)
(5 -0.779167 0.1)
(4.87083 -0.779167 0.1)
(5 -0.6875 0.1)
(4.95694 -0.6875 0.1)
(5 -0.55 0.1)
(4.95694 -0.55 0.1)
(4.95694 -0.595833 0.1)
(5 -0.595833 0.1)
(4.87083 -0.595833 0.1)
(5 -0.504167 0.1)
(4.95694 -0.504167 0.1)
(5 -0.366667 0.1)
(4.95694 -0.366667 0.1)
(4.95694 -0.4125 0.1)
(5 -0.4125 0.1)
(4.87083 -0.4125 0.1)
(5 -0.320833 0.1)
(4.95694 -0.320833 0.1)
(5 -0.183333 0.1)
(4.95694 -0.183333 0.1)
(4.95694 -0.229167 0.1)
(5 -0.229167 0.1)
(4.87083 -0.229167 0.1)
(5 -0.1375 0.1)
(4.95694 -0.1375 0.1)
(5 0 0.1)
(4.95694 -8.09538e-18 0.1)
(4.95694 -0.0458333 0.1)
(5 -0.0458333 0.1)
(4.87083 -0.0458333 0.1)
(5 0.0458333 0.1)
(4.95694 0.0458333 0.1)
(5 0.183333 0.1)
(4.95694 0.183333 0.1)
(4.95694 0.1375 0.1)
(5 0.1375 0.1)
(4.87083 0.1375 0.1)
(5 0.229167 0.1)
(4.95694 0.229167 0.1)
(5 0.366667 0.1)
(4.95694 0.366667 0.1)
(4.95694 0.320833 0.1)
(5 0.320833 0.1)
(4.87083 0.320833 0.1)
(5 0.4125 0.1)
(4.95694 0.4125 0.1)
(5 0.55 0.1)
(4.95694 0.55 0.1)
(4.95694 0.504167 0.1)
(5 0.504167 0.1)
(4.87083 0.504167 0.1)
(5 0.595833 0.1)
(4.95694 0.595833 0.1)
(5 0.733333 0.1)
(4.95694 0.733333 0.1)
(4.95694 0.6875 0.1)
(5 0.6875 0.1)
(4.87083 0.6875 0.1)
(5 0.779167 0.1)
(4.95694 0.779167 0.1)
(5 0.916667 0.1)
(4.95694 0.916667 0.1)
(4.95694 0.870833 0.1)
(5 0.870833 0.1)
(4.87083 0.870833 0.1)
(0.1633567653 -0.005716350401 0.1)
(0.1525421553 -0.005488975718 0.1)
(0.1308999802 -0.005031953533 0.1)
(0.1304309596 -0.02776811815 0.1)
(0.141733523 -0.005262726935 0.1)
(0.1299647491 -0.05051334384 0.1)
(0.1374963547 0.3314987454 0.1)
(0.1369703047 0.3087617793 0.1)
(0.1478623391 0.3085537815 0.1)
(0.1476014082 0.2971897554 0.1)
(0.1367093527 0.2973967535 0.1)
(0.1801599067 0.2965382278 0.1)
(0.1692920772 0.296755719 0.1)
(0.005380458217 0.2880962483 0.1)
(0.01642887183 0.2879959871 0.1)
(0.02741503051 0.2878690286 0.1)
(0.04962905226 0.2989495353 0.1)
(0.04989327677 0.3103274952 0.1)
(0.03829628216 0.287695265 0.1)
(0.05050467512 0.333108677 0.1)
(0.3357059265 -0.00923292814 0.1)
(0.3354713682 -0.02057950469 0.1)
(0.3034324911 -0.008581392568 0.1)
(0.3031978698 -0.01993096845 0.1)
(0.3139577022 -0.02014718924 0.1)
(0.3141923025 -0.008798613132 0.1)
(0.3024885234 -0.05400258593 0.1)
(0.3137230178 -0.03149976446 0.1)
(0.3029621646 -0.03128452244 0.1)
(0.3110946236 0.3277838674 0.1)
(0.310842985 0.3164336491 0.1)
(0.3106273805 0.3050846736 0.1)
(0.3214705216 0.3048346942 0.1)
(0.3212370472 0.2934920957 0.1)
(0.3103958636 0.2937400335 0.1)
(0.3537482855 0.2927335379 0.1)
(0.342916247 0.292988285 0.1)
(0.1910357134 0.2963195687 0.1)
(0.2236297416 0.2956452892 0.1)
(0.21277212 0.2958725679 0.1)
(0.2243660399 0.3297143395 0.1)
(0.2130168443 0.3072269325 0.1)
(0.2238764443 0.3069986119 0.1)
(0.224142227 0.3183555344 0.1)
(0.5076144251 -0.02400372969 0.1)
(0.4753206579 -0.02336777018 0.1)
(0.4860875517 -0.02358113877 0.1)
(0.474624507 -0.05738265249 0.1)
(0.4858553293 -0.03491176089 0.1)
(0.4750893932 -0.03470041288 0.1)
(0.4840585413 0.3235832163 0.1)
(0.4836296891 0.3009022195 0.1)
(0.4944103185 0.3006285489 0.1)
(0.4939788664 0.2779666109 0.1)
(0.4941910512 0.2892956539 0.1)
(0.4834124634 0.2895712821 0.1)
(0.5263405819 0.2771371804 0.1)
(0.5265328552 0.2884706429 0.1)
(0.5157642862 0.2887470606 0.1)
(0.5155561847 0.2774219327 0.1)
(0.3645812817 0.2924767702 0.1)
(0.3970111596 0.291701919 0.1)
(0.3861793733 0.2919686634 0.1)
(0.3976635934 0.3257307233 0.1)
(0.3864107431 0.303306305 0.1)
(0.3972365096 0.3030386869 0.1)
(0.6797459024 -0.02731268581 0.1)
(0.6474735627 -0.02670418278 0.1)
(0.6582337104 -0.02690540688 0.1)
(0.6467839242 -0.0606471861 0.1)
(0.6580040551 -0.03820907701 0.1)
(0.6472449072 -0.03800787393 0.1)
(0.6564953666 0.3189555503 0.1)
(0.6560797849 0.2962872774 0.1)
(0.6556725377 0.2736348328 0.1)
(0.6772052469 0.2730140754 0.1)
(0.6987383252 0.2723633037 0.1)
(0.5371411438 0.27686009 0.1)
(0.5479415165 0.2765740017 0.1)
(0.5694952513 0.276001813 0.1)
(0.5699144327 0.2986510061 0.1)
(0.5587189363 0.2762903963 0.1)
(0.5703343709 0.3213361912 0.1)
(0.8518748073 -0.03045855183 0.1)
(0.8195768846 -0.02987751711 0.1)
(0.8303431781 -0.03007186887 0.1)
(0.8188995469 -0.06375876535 0.1)
(0.8296648616 -0.06395209632 0.1)
(0.8298927066 -0.05263938613 0.1)
(0.819126371 -0.05244703393 0.1)
(0.8578323813 0.126546119 0.1)
(0.8577448821 0.1209096228 0.1)
(0.8631253788 0.1207339753 0.1)
(0.8684988066 0.1205551257 0.1)
(0.8688686841 0.1539419776 0.1)
(0.8581554585 0.154376867 0.1)
(0.847444081 0.1548045159 0.1)
(0.8473139044 0.1436652911 0.1)
(0.8066484444 0.29169129 0.1)
(0.8070486721 0.314342882 0.1)
(0.8054797731 0.2237367413 0.1)
(0.8058530207 0.2463419901 0.1)
(0.8702489841 0.2440458717 0.1)
(0.8488048295 0.2448348048 0.1)
(0.7202559747 0.2717398623 0.1)
(0.7417737201 0.2710734093 0.1)
(0.7421744312 0.2937479962 0.1)
(0.7425628297 0.3164078387 0.1)
(1.024669841 -0.02727802216 0.1)
(0.9930033039 -0.03082417113 0.1)
(1.003154617 -0.02682466931 0.1)
(0.9923015025 -0.06486994149 0.1)
(1.002432008 -0.0611940738 0.1)
(1.002672857 -0.04973860542 0.1)
(0.9924993212 -0.05351058985 0.1)
(1.007149513 0.1132322327 0.1)
(1.007024323 0.1239285575 0.1)
(1.007395646 0.08069574006 0.1)
(1.007657492 0.09172267241 0.1)
(1.037845939 0.08704987506 0.1)
(1.027078255 0.08727326246 0.1)
(0.8737955065 0.1147763616 0.1)
(0.8899138488 0.1142426341 0.1)
(0.8845436671 0.1144331581 0.1)
(0.8900460651 0.1308070948 0.1)
(0.8792891851 0.1257403653 0.1)
(0.8792354912 0.1201893984 0.1)
(0.8845942589 0.1199793001 0.1)
(0.8899570529 0.1197704073 0.1)
(1.039531978 0.1672428527 0.1)
(1.018006735 0.167695416 0.1)
(0.9969852471 0.1693679598 0.1)
(0.9965580604 0.1466710245 0.1)
(1.007073419 0.145768791 0.1)
(1.006981328 0.1347283875 0.1)
(0.9964336785 0.1355219757 0.1)
(0.9571079778 0.308736378 0.1)
(0.9567058675 0.2860428164 0.1)
(0.9780690544 0.2851135542 0.1)
(0.9784731433 0.3078060741 0.1)
(0.9771996642 0.2395287571 0.1)
(0.9558684256 0.2405503681 0.1)
(1.040977105 0.2359773627 0.1)
(1.01978907 0.2372450179 0.1)
(0.8916728698 0.2432443618 0.1)
(0.9345040378 0.2415176639 0.1)
(0.9357197032 0.3096141562 0.1)
(0.9353187608 0.2869285717 0.1)
(-0.01055565685 0.03266178984 0.1)
(-0.06623252782 0.02348109613 0.1)
(-0.06630024492 -0.04565275537 0.1)
(-0.06638286932 -0.02257992072 0.1)
(-0.01419482665 0.1427051104 0.1)
(-0.01395458109 0.1347742571 0.1)
(-0.007280692729 0.135529428 0.1)
(-0.008982212273 0.1428883951 0.1)
(-0.01351124923 0.1276779103 0.1)
(-0.007732596186 0.1264379683 0.1)
(-0.1540814634 0.07548718226 0.1)
(-0.1756281321 0.07672847017 0.1)
(-0.1110478552 0.07373172261 0.1)
(-0.1106404511 0.1211298314 0.1)
(-0.08902933592 0.1196712408 0.1)
(-0.01286390013 0.1580253081 0.1)
(-0.01367479863 0.1508027375 0.1)
(-0.008284836966 0.1506410241 0.1)
(-0.005873407167 0.1570680556 0.1)
(-0.03707702446 0.3342719122 0.1)
(-0.03775791558 0.3114061725 0.1)
(-0.03865509213 0.2884149514 0.1)
(-0.01667256943 0.2882658431 0.1)
(-0.005676535021 0.2881756852 0.1)
(-0.1496001245 0.2642276856 0.1)
(-0.1711281578 0.2643572362 0.1)
(-0.1059779937 0.2647268533 0.1)
(-0.1034564433 0.3118242561 0.1)
(0.08068272961 0.2357537202 0.1)
(0.08056253235 0.2299606668 0.1)
(0.08606004081 0.2298366811 0.1)
(0.09155499307 0.2297100486 0.1)
(0.002898440968 0.2193726363 0.1)
(0.01402977552 0.2193538501 0.1)
(0.02561166215 0.2307918246 0.1)
(0.01967551296 0.2193533759 0.1)
(0.02592861297 0.2422037837 0.1)
(0.1612566193 0.4220793152 0.1)
(0.1607661409 0.3993215968 0.1)
(0.1173140708 0.4002031595 0.1)
(0.1178227134 0.4229684977 0.1)
(0.1163059518 0.3546802922 0.1)
(0.09825472697 0.5143848586 0.1)
(0.09717487581 0.4689636804 0.1)
(0.13952196 0.4225142765 0.1)
(0.05276929211 0.4242602141 0.1)
(0.322117331 -0.1454163835 0.1)
(0.3005983508 -0.1449989597 0.1)
(0.2790693937 -0.1445803258 0.1)
(0.2589599886 -0.07588244502 0.1)
(0.2804867989 -0.07630803528 0.1)
(0.2795420863 -0.1218122313 0.1)
(0.2580151919 -0.1213906402 0.1)
(0.3440949649 -0.1230674182 0.1)
(0.3225909603 -0.1226513094 0.1)
(0.1933807519 -0.1201137341 0.1)
(0.1718000375 -0.1196830096 0.1)
(0.2364763422 -0.1209667972 0.1)
(0.237421244 -0.07545360319 0.1)
(0.2549664204 0.2370231359 0.1)
(0.2548401812 0.2305906682 0.1)
(0.1896925288 0.2336706605 0.1)
(0.1898080118 0.2394488097 0.1)
(0.3346397938 0.418171916 0.1)
(0.3341738146 0.3954376879 0.1)
(0.2908506595 0.3964565711 0.1)
(0.2913247421 0.41919563 0.1)
(0.2894352512 0.3282792596 0.1)
(0.2899028727 0.3509964494 0.1)
(0.271556829 0.5107503313 0.1)
(0.2705993159 0.4652064469 0.1)
(0.3129838622 0.4186882405 0.1)
(0.2263023824 0.4206707339 0.1)
(0.4942741181 -0.1487108685 0.1)
(0.4727469294 -0.1483032742 0.1)
(0.4512217613 -0.1478947223 0.1)
(0.4310981188 -0.07925555517 0.1)
(0.4526331166 -0.07967231557 0.1)
(0.4516942017 -0.1251386251 0.1)
(0.4301590988 -0.1247268636 0.1)
(0.5162657489 -0.1263621974 0.1)
(0.4947465164 -0.1259567709 0.1)
(0.36559697 -0.1234834849 0.1)
(0.4086320362 -0.1243132707 0.1)
(0.4095721611 -0.07883698438 0.1)
(0.4214992276 -0.02229920094 0.1)
(0.4322640799 -0.02251452704 0.1)
(0.3999794998 -0.0218697587 0.1)
(0.3997460254 -0.03321235716 0.1)
(0.4116670538 0.0232285318 0.1)
(0.4114360624 0.01190888623 0.1)
(0.4221958948 0.01169266544 0.1)
(0.4329607261 0.01147633956 0.1)
(0.346912544 0.01322847015 0.1)
(0.3576512969 0.01300869167 0.1)
(0.3684020472 0.01278866095 0.1)
(0.3686352483 0.02411826228 0.1)
(0.3634887225 0.03556497201 0.1)
(0.4282432078 0.2284362391 0.1)
(0.4281040102 0.2225767704 0.1)
(0.4335414017 0.2226333882 0.1)
(0.4389626425 0.2226354335 0.1)
(0.3632684172 0.2295097544 0.1)
(0.363417165 0.2354904491 0.1)
(0.5073763439 0.4138610198 0.1)
(0.506928655 0.3911404102 0.1)
(0.4638263223 0.3922436704 0.1)
(0.4642750531 0.4149662585 0.1)
(0.4629305121 0.3468294663 0.1)
(0.4444604858 0.50645102 0.1)
(0.4435562982 0.4610089423 0.1)
(0.4858310817 0.4144080247 0.1)
(0.3994700934 0.4166008279 0.1)
(0.6664329862 -0.1519063753 0.1)
(0.644915522 -0.1515119884 0.1)
(0.6233990996 -0.1511156229 0.1)
(0.6032973801 -0.08252792803 0.1)
(0.6248037836 -0.08292508306 0.1)
(0.6238684566 -0.1283634618 0.1)
(0.6023600115 -0.1279682643 0.1)
(0.688416892 -0.1295445389 0.1)
(0.6669023851 -0.1291522146 0.1)
(0.537787002 -0.1267666662 0.1)
(0.5808386323 -0.1275697942 0.1)
(0.581776064 -0.08212645859 0.1)
(0.5937022384 -0.02567867628 0.1)
(0.6044642805 -0.02588494132 0.1)
(0.5721752179 -0.02526308382 0.1)
(0.5719432687 -0.03658070881 0.1)
(0.583976023 0.02541205833 0.1)
(0.5893566867 0.02529192957 0.1)
(0.583628973 0.008429601135 0.1)
(0.5943917836 0.00821231751 0.1)
(0.5946221234 0.01950096994 0.1)
(0.5892403969 0.01961812038 0.1)
(0.5838585232 0.01972827237 0.1)
(0.6051535946 0.007995054906 0.1)
(0.6053847239 0.01927368852 0.1)
(0.6000039761 0.01938981817 0.1)
(0.5190617703 0.009717096218 0.1)
(0.5298196031 0.009500917473 0.1)
(0.5405794986 0.009287696024 0.1)
(0.5408089647 0.02058236814 0.1)
(0.5902324327 0.2302170989 0.1)
(0.590036978 0.2189226119 0.1)
(0.6006478926 0.2073418104 0.1)
(0.5305891195 0.2147492912 0.1)
(0.5251819515 0.2148932824 0.1)
(0.5468119414 0.2143800039 0.1)
(0.5414202843 0.2145005638 0.1)
(0.547112661 0.2313472316 0.1)
(0.5415275846 0.2201749621 0.1)
(0.5469180737 0.2200464249 0.1)
(0.8385694899 -0.1550714053 0.1)
(0.8380980611 -0.1778745341 0.1)
(0.795060638 -0.1770617025 0.1)
(0.7955328563 -0.1542685925 0.1)
(0.7945880623 -0.1998718087 0.1)
(0.7754166235 -0.08565758739 0.1)
(0.7969332981 -0.08604195548 0.1)
(0.7973938489 -0.06337562825 0.1)
(0.7960016339 -0.1314964148 0.1)
(0.7744850854 -0.131106048 0.1)
(0.8605628562 -0.132687763 0.1)
(0.8390394775 -0.1322892508 0.1)
(0.7099374186 -0.1299359896 0.1)
(0.7529665584 -0.1307146395 0.1)
(0.754354501 -0.06260676594 0.1)
(0.7538979704 -0.08527217747 0.1)
(0.7657974267 -0.02890585154 0.1)
(0.7765616996 -0.02910116104 0.1)
(0.7443019367 -0.02851292685 0.1)
(0.7545803884 -0.05129201416 0.1)
(0.7548149585 -0.03999244825 0.1)
(0.7440736595 -0.03979862198 0.1)
(0.7560346295 0.02182457242 0.1)
(0.7614190886 0.02183739325 0.1)
(0.7557116109 0.0050336524 0.1)
(0.766465886 0.004838553096 0.1)
(0.7665784198 0.0104764333 0.1)
(0.7666924579 0.01613828717 0.1)
(0.7613064918 0.01619651371 0.1)
(0.7559272299 0.01624059621 0.1)
(0.7772321164 0.004641201992 0.1)
(0.7773448184 0.01028708042 0.1)
(0.7719616716 0.01038425631 0.1)
(0.7718491168 0.004745376329 0.1)
(0.6911794215 0.006321411558 0.1)
(0.7019311506 0.006100360038 0.1)
(0.7021551974 0.01737514168 0.1)
(0.6967798268 0.01750916225 0.1)
(0.6914069722 0.01762012483 0.1)
(0.7126928774 0.005879098317 0.1)
(0.7129163777 0.0171278857 0.1)
(0.7075359242 0.01725801225 0.1)
(0.7076510881 0.02292584378 0.1)
(0.7130312053 0.02277972077 0.1)
(0.7828350355 0.1458716324 0.1)
(0.777447056 0.1459768116 0.1)
(0.7720424136 0.1460506342 0.1)
(0.7719186536 0.1403069666 0.1)
(0.7515636092 0.2142576714 0.1)
(0.7517465201 0.2255264164 0.1)
(0.7512137049 0.1917636564 0.1)
(0.7834784001 0.1906964127 0.1)
(0.7727296875 0.1910609325 0.1)
(0.697588866 0.2046565058 0.1)
(0.7083493539 0.2043287466 0.1)
(0.7191259077 0.2040039504 0.1)
(0.7193064554 0.2152554412 0.1)
(0.7194902924 0.2265206659 0.1)
(1.011262779 -0.1530669968 0.1)
(1.010781061 -0.1759789333 0.1)
(0.9673469037 -0.1804299254 0.1)
(0.9678187528 -0.157606801 0.1)
(0.9669147094 -0.203269887 0.1)
(0.9475578319 -0.08883671937 0.1)
(0.9692283582 -0.08927733388 0.1)
(0.9695417614 -0.06656890429 0.1)
(0.9682932019 -0.1348027355 0.1)
(0.9466237595 -0.1343581429 0.1)
(1.03326974 -0.1306076235 0.1)
(1.011744497 -0.1301550602 0.1)
(0.8820740905 -0.1330930213 0.1)
(0.9250930762 -0.1339264699 0.1)
(0.9264879936 -0.06572472223 0.1)
(0.9260259806 -0.08841302357 0.1)
(0.9379334982 -0.03204386646 0.1)
(0.9486884578 -0.03225398347 0.1)
(0.9164123713 -0.03163339901 0.1)
(0.9157359703 -0.06551766761 0.1)
(0.9159639413 -0.05419895876 0.1)
(0.939005376 0.01936596139 0.1)
(0.9388589864 0.01335471035 0.1)
(0.9442289587 0.01320179908 0.1)
(0.9495912297 0.01296803183 0.1)
(0.8635440618 0.01457810972 0.1)
(0.8688989954 0.01442351419 0.1)
(0.8742523406 0.01424094587 0.1)
(0.8743843694 0.02009246349 0.1)
(1.208823659 0.0261531472 0.1)
(1.187298416 0.02660571047 0.1)
(1.186816713 0.003694473761 0.1)
(1.208341956 0.003241910489 0.1)
(1.143776224 0.004599390105 0.1)
(1.144257928 0.02751062681 0.1)
(1.142331091 -0.06413541977 0.1)
(1.142812788 -0.041224483 0.1)
(1.145703061 0.09624543669 0.1)
(1.146184773 0.1191570733 0.1)
(1.14473964 0.05042226343 0.1)
(1.209305371 0.04906478381 0.1)
(1.187780128 0.04951734709 0.1)
(1.048362702 0.07536773025 0.1)
(1.048603595 0.08682529817 0.1)
(1.080645621 0.07469148989 0.1)
(1.080886478 0.08614735819 0.1)
(1.070128853 0.08637343474 0.1)
(1.069887996 0.07491756645 0.1)
(1.081609044 0.120514762 0.1)
(1.059852942 0.1095112479 0.1)
(1.059612087 0.09805547958 0.1)
(1.07036971 0.09782930304 0.1)
(1.081127332 0.09760312651 0.1)
(0.110164664 0.0408890515 0.1)
(0.1104007791 0.05226210118 0.1)
(0.1049722458 0.05238893765 0.1)
(0.1050914727 0.05810729494 0.1)
(0.1105209911 0.0579797376 0.1)
(0.08883676313 0.05843944434 0.1)
(0.09423631912 0.05833302149 0.1)
(0.1700658314 0.05682294208 0.1)
(0.1754603562 0.05674363098 0.1)
(0.1538137458 0.05698969978 0.1)
(0.1592296527 0.05692834319 0.1)
(0.1534714627 0.03994852942 0.1)
(0.159111558 0.05121626349 0.1)
(0.153699239 0.05130555083 0.1)
(0.0226639524 0.04304990476 0.1)
(0.0227917939 0.05444913614 0.1)
(0.02296837444 0.06583544017 0.1)
(0.01172335662 0.06625250399 0.1)
(0.0005083540921 0.06669424233 0.1)
(0.07804652676 0.06436936665 0.1)
(0.06693372746 0.05324460108 0.1)
(0.06672252908 0.04186732672 0.1)
(0.1680520576 0.2396796735 0.1)
(0.1679543574 0.2337007062 0.1)
(0.09703015194 0.2296172395 0.1)
(0.1024741836 0.2295757962 0.1)
(0.1025793648 0.2353872693 0.1)
(0.1040508671 0.2980023727 0.1)
(0.09315079809 0.298194536 0.1)
(0.1258513949 0.2976080358 0.1)
(0.1261063481 0.3089731878 0.1)
(0.1138821607 0.2523376282 0.1)
(0.1141642551 0.2637092111 0.1)
(0.1032558879 0.2639015488 0.1)
(0.09235721346 0.2640886817 0.1)
(0.1794144632 0.2624623681 0.1)
(0.1685395091 0.2626740078 0.1)
(0.1682829885 0.2512818828 0.1)
(0.1737297428 0.2511653656 0.1)
(0.1791700451 0.2510749898 0.1)
(0.1576938008 0.2628970352 0.1)
(0.1574357221 0.2515259476 0.1)
(0.1628471688 0.2513951694 0.1)
(0.1627227034 0.2456655198 0.1)
(0.1573076359 0.2458143781 0.1)
(0.3041370396 0.02545231739 0.1)
(0.3148948094 0.02523313931 0.1)
(0.3151296409 0.03659271298 0.1)
(0.3144268187 0.00254596386 0.1)
(0.3036670284 0.002764184204 0.1)
(0.3359393799 0.002108670535 0.1)
(0.2603753338 -0.007708132832 0.1)
(0.2711331246 -0.007926311135 0.1)
(0.2713677459 0.003423264753 0.1)
(0.2606109759 0.003642421815 0.1)
(0.2929043438 0.002987466503 0.1)
(0.2926687437 -0.008361088585 0.1)
(0.293613702 0.03701207335 0.1)
(0.2933752077 0.02566858021 0.1)
(0.2921983542 -0.03106721779 0.1)
(0.2924340804 -0.01971266403 0.1)
(0.2816632294 -0.0194972118 0.1)
(0.2818959142 -0.008144594539 0.1)
(0.2828336008 0.03721571741 0.1)
(0.2830623173 0.04852230792 0.1)
(0.2776729701 0.04861001204 0.1)
(0.2777856334 0.05420648037 0.1)
(0.2831741826 0.05412839514 0.1)
(0.2616628672 0.05457736486 0.1)
(0.2670372506 0.05444396518 0.1)
(0.3423917385 0.05338967155 0.1)
(0.3477494801 0.05322591497 0.1)
(0.3262692303 0.05386797435 0.1)
(0.3316471419 0.05371209554 0.1)
(0.3258892841 0.03636749419 0.1)
(0.3312691582 0.03625738424 0.1)
(0.3313893324 0.04197322106 0.1)
(0.3260096495 0.042092429 0.1)
(0.1966672319 0.03905535164 0.1)
(0.1969079725 0.05045811065 0.1)
(0.1915126632 0.05059525102 0.1)
(0.1916372702 0.05637920972 0.1)
(0.1970324808 0.05623737038 0.1)
(0.180848382 0.05664065125 0.1)
(0.2562825082 0.05471199042 0.1)
(0.2401165946 0.05512389094 0.1)
(0.2455038869 0.05498601893 0.1)
(0.2397711385 0.03812209597 0.1)
(0.2453880447 0.04933350504 0.1)
(0.2400014958 0.04945915872 0.1)
(0.3417658173 0.2363199464 0.1)
(0.3416494875 0.2306442377 0.1)
(0.2765209554 0.2301617409 0.1)
(0.2766628841 0.2365792755 0.1)
(0.2778790168 0.2944697029 0.1)
(0.267019669 0.2947100209 0.1)
(0.2995606155 0.2939848459 0.1)
(0.3002664581 0.3280325317 0.1)
(0.3000287744 0.3166800196 0.1)
(0.2876577082 0.2428777545 0.1)
(0.2822293757 0.2428238468 0.1)
(0.2880176305 0.2601870133 0.1)
(0.2825976391 0.2602919654 0.1)
(0.2824773619 0.2545712297 0.1)
(0.2878914808 0.2544724024 0.1)
(0.2662972835 0.2606366771 0.1)
(0.2661764598 0.2548899471 0.1)
(0.2716142581 0.2547756186 0.1)
(0.2717349346 0.2605153502 0.1)
(0.3530612798 0.2587254648 0.1)
(0.3422264101 0.2589882732 0.1)
(0.3419972712 0.2476615871 0.1)
(0.3474183793 0.2475146023 0.1)
(0.3528306366 0.2473748051 0.1)
(0.3313894778 0.2592481243 0.1)
(0.3311607593 0.2479414338 0.1)
(0.3365760579 0.2478035731 0.1)
(0.3364613354 0.2421567369 0.1)
(0.3310484567 0.2423145512 0.1)
(0.2008083864 0.2450598202 0.1)
(0.1953695792 0.2451261592 0.1)
(0.2011746424 0.2620518758 0.1)
(0.1902945633 0.2622576218 0.1)
(0.1900476504 0.2508943013 0.1)
(0.1954919938 0.250805841 0.1)
(0.2009313174 0.250716486 0.1)
(0.1846082007 0.2509776576 0.1)
(0.2608724403 0.2607487327 0.1)
(0.2607517427 0.2550080014 0.1)
(0.2446207257 0.2611234286 0.1)
(0.2445104883 0.2554044822 0.1)
(0.2499248713 0.2552706416 0.1)
(0.2500441907 0.2609933979 0.1)
(0.2496785693 0.24350822 0.1)
(0.2442493854 0.2437944054 0.1)
(0.234969708 0.3181218878 0.1)
(0.2352095174 0.3294803566 0.1)
(0.2344822801 0.2954141164 0.1)
(0.2561782331 0.2949459613 0.1)
(0.497780906 0.02146001719 0.1)
(0.4975502299 0.0101553683 0.1)
(0.5083089995 0.009936169199 0.1)
(0.4437335345 0.01125884573 0.1)
(0.4545022808 0.01103843665 0.1)
(0.4547356501 0.02237603621 0.1)
(0.4643304555 -0.03448921201 0.1)
(0.464562741 -0.02315559055 0.1)
(0.4430359517 -0.02272900051 0.1)
(0.4443293152 0.03978622539 0.1)
(0.4444657231 0.04575087595 0.1)
(0.4390734228 0.04584084265 0.1)
(0.433681802 0.04586798119 0.1)
(0.5197373597 0.04342004182 0.1)
(0.5143656843 0.04358709201 0.1)
(0.5089960672 0.04375689955 0.1)
(0.5088840547 0.03814381387 0.1)
(0.3636061445 0.04124505878 0.1)
(0.3638484028 0.05272000184 0.1)
(0.353107165 0.053059459 0.1)
(0.4282899512 0.04583661163 0.1)
(0.4228986421 0.04578342586 0.1)
(0.4227780875 0.04004949304 0.1)
(0.5039232278 0.2324466217 0.1)
(0.5038079776 0.2267746911 0.1)
(0.5037020989 0.2210727569 0.1)
(0.5091047935 0.2209538653 0.1)
(0.5089917166 0.2152425803 0.1)
(0.5035849506 0.2153105462 0.1)
(0.519792769 0.2150363953 0.1)
(0.444365396 0.2225193413 0.1)
(0.4497473732 0.2223189672 0.1)
(0.4498670079 0.2280567202 0.1)
(0.4510642824 0.2903784232 0.1)
(0.4402674464 0.2906424324 0.1)
(0.4726366648 0.2898368494 0.1)
(0.4728539956 0.3011727857 0.1)
(0.4609766395 0.2448109962 0.1)
(0.4611928024 0.2561389553 0.1)
(0.4504080058 0.2564047118 0.1)
(0.4396131903 0.2566696787 0.1)
(0.5153472305 0.2661038242 0.1)
(0.5261336483 0.2658200297 0.1)
(0.4937768896 0.2666473556 0.1)
(0.4931504054 0.2327110262 0.1)
(0.4933572339 0.244023178 0.1)
(0.3743604934 0.2410998584 0.1)
(0.3689565404 0.2412064737 0.1)
(0.3747042984 0.2582134128 0.1)
(0.3638981701 0.2584636142 0.1)
(0.3636731051 0.2470928328 0.1)
(0.3690793847 0.2469541614 0.1)
(0.3744823168 0.2468465674 0.1)
(0.3582507029 0.2472258417 0.1)
(0.4288062724 0.256929899 0.1)
(0.417993482 0.257196244 0.1)
(0.4177743198 0.245868348 0.1)
(0.4231846826 0.2457335917 0.1)
(0.4230731814 0.2400496796 0.1)
(0.4176617768 0.2401824573 0.1)
(0.4080525096 0.3027822766 0.1)
(0.40782516 0.2914455507 0.1)
(0.4294577604 0.2909137132 0.1)
(0.6700268116 0.02378390033 0.1)
(0.6754044852 0.02371184505 0.1)
(0.6696765008 0.006741498438 0.1)
(0.6804285662 0.006536443383 0.1)
(0.6806594735 0.01785208984 0.1)
(0.6752827458 0.01796913519 0.1)
(0.6699062191 0.01804816791 0.1)
(0.6860365585 0.01775204074 0.1)
(0.6159064285 0.007778981261 0.1)
(0.6161383684 0.01904859584 0.1)
(0.6107635772 0.01916259981 0.1)
(0.6266452655 0.007563201899 0.1)
(0.626869018 0.01882398663 0.1)
(0.6215041826 0.01893578084 0.1)
(0.621617548 0.02456564179 0.1)
(0.6269812155 0.02444587037 0.1)
(0.6364837808 -0.03780562903 0.1)
(0.6367124784 -0.02649993832 0.1)
(0.6152183454 -0.02609003841 0.1)
(0.6163676748 0.03033566964 0.1)
(0.6164838869 0.03600577965 0.1)
(0.6112351545 0.04192521654 0.1)
(0.6058637131 0.04215097478 0.1)
(0.6810661556 0.03562516824 0.1)
(0.6809168114 0.02952095877 0.1)
(0.530385848 0.03762252833 0.1)
(0.5304917152 0.04313362064 0.1)
(0.5251122447 0.04326292635 0.1)
(0.6004902638 0.04237637515 0.1)
(0.5951168124 0.04260167555 0.1)
(0.5949836506 0.03669626984 0.1)
(0.5948585874 0.03089061594 0.1)
(0.6764269584 0.2278137483 0.1)
(0.6762380405 0.2165447295 0.1)
(0.6760563102 0.2052845616 0.1)
(0.6868179241 0.20496278 0.1)
(0.6168105714 0.2069187754 0.1)
(0.6221997245 0.2067742628 0.1)
(0.6329588561 0.2064771389 0.1)
(0.6331530798 0.2177606494 0.1)
(0.6333502082 0.2290395978 0.1)
(0.8529241606 0.02068869148 0.1)
(0.8527829262 0.0147323442 0.1)
(0.8581701864 0.01468809355 0.1)
(0.7826152211 0.00454202655 0.1)
(0.7827288178 0.01018288507 0.1)
(0.7934863983 0.009954708973 0.1)
(0.7933740957 0.004327826343 0.1)
(0.7937270787 0.02140217913 0.1)
(0.808367034 -0.05225482886 0.1)
(0.8081401888 -0.06356756006 0.1)
(0.8088175896 -0.02968331248 0.1)
(0.7873249728 -0.02929644953 0.1)
(0.7884943459 0.02751172171 0.1)
(0.7886387864 0.03352541426 0.1)
(0.7023974577 0.02885018471 0.1)
(0.7025301339 0.03473249552 0.1)
(0.7670750579 0.0335746974 0.1)
(0.7669412978 0.02768840849 0.1)
(0.8269515712 0.2229781338 0.1)
(0.8267634071 0.2116973966 0.1)
(0.8265945857 0.2004327564 0.1)
(0.8373274903 0.2000299604 0.1)
(0.8371632187 0.1887914303 0.1)
(0.8264331537 0.1891865649 0.1)
(0.8693106045 0.1875204074 0.1)
(0.8586034028 0.1879563704 0.1)
(0.7942182997 0.1903408801 0.1)
(0.8156981276 0.1895836042 0.1)
(0.8162189412 0.2233464164 0.1)
(0.8160358979 0.2120713728 0.1)
(0.7934894739 0.1399289618 0.1)
(0.7935798823 0.1455611058 0.1)
(0.7882091772 0.1457267353 0.1)
(1.020185822 0.02443295789 0.1)
(1.020214252 0.03006680506 0.1)
(1.019984402 0.007241093257 0.1)
(1.020075148 0.01298445474 0.1)
(1.036150114 0.006867205362 0.1)
(1.025473408 0.01284495181 0.1)
(1.02537277 0.007106799428 0.1)
(0.9549467032 0.01269639909 0.1)
(0.9807109491 -0.05521217276 0.1)
(0.9805277369 -0.0665428251 0.1)
(0.9811646933 -0.03263172144 0.1)
(0.9594372926 -0.03246997304 0.1)
(0.9539659213 0.1056280482 0.1)
(0.9646016235 0.1050263515 0.1)
(0.9752453092 0.1044237868 0.1)
(0.9752262306 0.1152194231 0.1)
(0.9752440533 0.1261051236 0.1)
(1.037092677 0.0526497081 0.1)
(1.026283852 0.05281924839 0.1)
(1.026112474 0.04704667535 0.1)
(1.020651364 0.04705126958 0.1)
(1.020832975 0.05283482995 0.1)
(1.020281108 0.03562532788 0.1)
(0.9327591979 0.1286993737 0.1)
(0.9326939358 0.1176981249 0.1)
(0.9379835544 0.1064921905 0.1)
(0.9433106957 0.1062050499 0.1)
(0.1497185527 -0.1420237902 0.1)
(0.1280999939 -0.1415852685 0.1)
(0.1064875389 -0.1411418741 0.1)
(0.08626155232 -0.07237052651 0.1)
(0.1078820004 -0.07281909012 0.1)
(0.1069515278 -0.1183595935 0.1)
(0.08533373194 -0.1179180872 0.1)
(0.1501884562 -0.1192456349 0.1)
(0.02015301913 -0.1164866643 0.1)
(-0.001649968959 -0.1159662478 0.1)
(0.06358561663 -0.1174428341 0.1)
(0.0645053229 -0.07189110194 0.1)
(0.08757089729 -0.004099964911 0.1)
(0.07669723672 -0.003855345168 0.1)
(0.06582087675 -0.003610668671 0.1)
(0.05489062304 -0.003350855976 0.1)
(0.04457341948 0.03104361228 0.1)
(0.05555038442 0.03076481352 0.1)
(0.05511193089 0.008022004907 0.1)
(0.0441996573 0.008285440458 0.1)
(0.0877920421 0.007269898737 0.1)
(0.07692288054 0.007514423889 0.1)
(0.02219934738 0.008873019527 0.1)
(0.02233062176 0.02027377909 0.1)
(0.01130690302 0.02058856858 0.1)
(0.0002217298669 0.02094565919 0.1)
(0.03326563569 0.008556334802 0.1)
(0.03352540098 0.03135391156 0.1)
(0.01316405363 0.1898045188 0.1)
(0.01324895627 0.1958360668 0.1)
(0.249608566 -0.007488765568 0.1)
(0.2388347998 -0.007269251164 0.1)
(0.2280720312 -0.007049967981 0.1)
(0.2180014025 0.02723129223 0.1)
(0.2287760213 0.02700475836 0.1)
(0.2283077574 0.004304585781 0.1)
(0.2175330335 0.004526120764 0.1)
(0.2498442292 0.003862788857 0.1)
(0.185175953 0.005195418492 0.1)
(0.1743902735 0.005419184254 0.1)
(0.2067453334 0.004748928787 0.1)
(0.2072128077 0.02745912017 0.1)
(0.6581774014 0.4097572561 0.1)
(0.6577544546 0.3870241237 0.1)
(0.6573399686 0.3643128183 0.1)
(0.6788629112 0.3637032686 0.1)
(0.6362457612 0.3876453764 0.1)
(0.6366644355 0.4103655958 0.1)
(0.6353902575 0.3422453282 0.1)
(0.6168323191 0.5010869401 0.1)
(0.6159897432 0.4564583644 0.1)
(0.5720505243 0.4121431809 0.1)
(0.7185896413 0.1702197582 0.1)
(0.7239694159 0.1700573388 0.1)
(0.7238555326 0.1643552728 0.1)
(0.7400188799 0.1639640308 0.1)
(0.7346345324 0.1640992403 0.1)
(0.6970528707 0.1708852108 0.1)
(0.7024368988 0.1707348047 0.1)
(0.7078174608 0.1705622665 0.1)
(0.7079174347 0.1762212153 0.1)
(0.9545654217 0.1721532452 0.1)
(0.9439297195 0.1727549419 0.1)
(0.9437787897 0.1615325349 0.1)
(0.9544125575 0.1609339796 0.1)
(0.9224679707 0.1626690421 0.1)
(0.9226155101 0.1738729163 0.1)
(0.9221991854 0.1403225546 0.1)
(0.9126683501 0.2195928085 0.1)
(0.9122805373 0.1969132494 0.1)
(0.933275212 0.1733185255 0.1)
(0.8800185748 0.1870734258 0.1)
(0.8907123169 0.1866157409 0.1)
(0.8905560015 0.175375043 0.1)
(0.1315946031 0.02905297638 0.1)
(0.142432082 0.02881911956 0.1)
(0.1419674388 0.006100866879 0.1)
(0.1311318965 0.006331682321 0.1)
(0.1635916179 0.005644223056 0.1)
(0.09840449799 -0.004332739974 0.1)
(0.09863149945 0.007035000098 0.1)
(0.1203043945 0.006564329161 0.1)
(0.1200734569 -0.004800327493 0.1)
(0.1207661644 0.02928864357 0.1)
(0.1092449341 -0.004568659412 0.1)
(0.01180377874 0.08915457365 0.1)
(0.0118273875 0.09488734403 0.1)
(0.006023539111 0.1009407791 0.1)
(0.0002201833339 0.1012850425 0.1)
(0.03450215732 0.09419086367 0.1)
(0.03447560481 0.08838944 0.1)
(0.03732395504 0.2535131509 0.1)
(0.038007258 0.2763128254 0.1)
(0.004966777053 0.2766534156 0.1)
(0.01599925419 0.2765534895 0.1)
(0.08144453695 0.2642711078 0.1)
(0.07054977239 0.2644491564 0.1)
(0.07021805255 0.2530626134 0.1)
(0.06084103987 0.3101583345 0.1)
(0.06054653283 0.2987720093 0.1)
(0.08226712542 0.2983863545 0.1)
(0.6863582709 0.1768206241 0.1)
(0.6862498279 0.1711394483 0.1)
(0.6916534046 0.1710149369 0.1)
(0.6592167625 0.1714680593 0.1)
(0.6646216823 0.1714074338 0.1)
(0.6647642147 0.1772352254 0.1)
(0.6648901676 0.1829880489 0.1)
(0.6126202544 0.2748350623 0.1)
(0.6233881927 0.2745286512 0.1)
(0.634149511 0.2742403833 0.1)
(0.6550864229 0.2397156587 0.1)
(0.6443114651 0.2400212171 0.1)
(0.6339455136 0.2629201702 0.1)
(0.6337488721 0.2516168062 0.1)
(0.6445118535 0.2513124997 0.1)
(0.6552828122 0.2510070253 0.1)
(0.6124143836 0.2635208899 0.1)
(0.6231853843 0.2632174151 0.1)
(0.6768154794 0.2503842684 0.1)
(0.6875814392 0.2500788991 0.1)
(0.6983458317 0.2497465568 0.1)
(0.6660518555 0.2507055921 0.1)
(0.6658524038 0.2394112892 0.1)
(0.5688770385 0.2420783127 0.1)
(0.5581005974 0.2423608972 0.1)
(0.5585069828 0.2649723509 0.1)
(0.5692864022 0.2646887035 0.1)
(0.5369282325 0.2655440652 0.1)
(0.6018479385 0.2751235615 0.1)
(0.6016431096 0.2638113676 0.1)
(0.5800597808 0.2644031826 0.1)
(0.5802696087 0.2757152714 0.1)
(0.5796475439 0.2417988535 0.1)
(0.591052817 0.2754215421 0.1)
(0.8308684499 0.1216948723 0.1)
(0.8362718056 0.1216074238 0.1)
(0.8363718926 0.1272717514 0.1)
(0.8364561116 0.1328949536 0.1)
(0.9110904152 0.0964923782 0.1)
(0.905760835 0.09675866547 0.1)
(0.8953172986 0.1195354624 0.1)
(0.8952782602 0.1140155233 0.1)
(0.9113094 0.1132827849 0.1)
(0.905978511 0.1135343964 0.1)
(-0.08922619998 0.09610237144 0.1)
(-0.07844243409 0.09566389847 0.1)
(-0.07831945845 0.1073121872 0.1)
(-0.08904201944 0.1076170441 0.1)
(-0.05682318546 0.1065806712 0.1)
(-0.05664418845 0.09438081314 0.1)
(-0.05685069185 0.1440637842 0.1)
(-0.05695200183 0.1313194449 0.1)
(-0.04416714637 0.04565537842 0.1)
(-0.04411109401 0.05716054223 0.1)
(-0.05520802067 0.05769932005 0.1)
(-0.05511562433 0.04606170657 0.1)
(-0.05603806577 0.08175428257 0.1)
(-0.04474418217 0.08085458495 0.1)
(-0.0893223127 0.08439970607 0.1)
(-0.07834115186 0.08359260238 0.1)
(-0.01106093948 0.09039736746 0.1)
(-0.0110535156 0.07888136698 0.1)
(0.0005762302993 0.07813714385 0.1)
(-0.03336450322 0.08000609522 0.1)
(-0.03313642244 0.04521231334 0.1)
(-0.03316652267 0.05675869719 0.1)
(-0.01834899894 0.2423879453 0.1)
(-0.01878557167 0.2309000839 0.1)
(-0.01936306502 0.2193080616 0.1)
(-0.008240523557 0.2193567752 0.1)
(-0.0870667869 0.1943527885 0.1)
(-0.07628223651 0.1943131871 0.1)
(-0.07592190569 0.2059092751 0.1)
(-0.08668486152 0.206010236 0.1)
(-0.05384805641 0.2065359185 0.1)
(-0.0545625324 0.1944656699 0.1)
(-0.05154341564 0.2422888741 0.1)
(-0.05220550222 0.2305600998 0.1)
(-0.05642349804 0.1574747146 0.1)
(-0.05511426869 0.1825478343 0.1)
(-0.08746004906 0.1826318652 0.1)
(-0.07672251769 0.1825157353 0.1)
(0.05299358211 0.2247105096 0.1)
(0.04747482027 0.2248036352 0.1)
(0.06401866269 0.2244700079 0.1)
(0.06414657598 0.2302685003 0.1)
(0.06962238937 0.2301782781 0.1)
(0.01907189504 0.201747174 0.1)
(0.01950320987 0.213579622 0.1)
(0.002313109021 0.2077550732 0.1)
(0.007889181292 0.2077008514 0.1)
(0.01356678736 0.2077228123 0.1)
(0.01386079455 0.2135906287 0.1)
(0.04153458449 0.2072479208 0.1)
(0.03600198037 0.2073439381 0.1)
(0.03596257753 0.2012976304 0.1)
(0.0362727228 0.2191603578 0.1)
(0.03655804585 0.2249814465 0.1)
(0.04201397598 0.2249017445 0.1)
(0.2331335019 0.2332603352 0.1)
(0.2332598453 0.2387462915 0.1)
(0.2115408409 0.2393549622 0.1)
(0.2114116327 0.2338754675 0.1)
(0.4066444585 0.2290557843 0.1)
(0.4067576699 0.2347734679 0.1)
(0.3850630859 0.2352115876 0.1)
(0.3849401449 0.2294593009 0.1)
(0.5790284133 0.2078792733 0.1)
(0.5683629332 0.2138200756 0.1)
(0.5786465737 0.1905741761 0.1)
(0.5787798012 0.1963875601 0.1)
(0.5733694326 0.1964268954 0.1)
(0.5679603973 0.1964344957 0.1)
(0.6111986325 0.1957057616 0.1)
(0.6058091537 0.1958347776 0.1)
(0.6004200797 0.1959354789 0.1)
(0.6002842334 0.190140254 0.1)
(0.5625618818 0.1965142908 0.1)
(0.5571861807 0.1967277359 0.1)
(0.5570226338 0.1907567544 0.1)
(0.5523033853 0.2199094948 0.1)
(0.5521963309 0.2142467939 0.1)
(0.5629786824 0.2139598841 0.1)
(0.734221372 0.005438469333 0.1)
(0.744974311 0.005227394584 0.1)
(0.7451973607 0.01640717619 0.1)
(0.7398234221 0.01651416069 0.1)
(0.7344437792 0.01663526821 0.1)
(0.7505605118 0.01631042071 0.1)
(0.7506672598 0.02186340377 0.1)
(0.7552670933 -0.01744096949 0.1)
(0.7554905726 -0.006193181885 0.1)
(0.7618078839 0.1801956095 0.1)
(0.761649204 0.1689851681 0.1)
(0.7722481485 0.1574059186 0.1)
(0.7615608435 0.1633552815 0.1)
(0.7454051702 0.1638260798 0.1)
(0.7561811993 0.1635238996 0.1)
(0.7562655228 0.1691520706 0.1)
(0.9065006475 0.0131078321 0.1)
(0.9118746071 0.01300184739 0.1)
(0.9172596877 0.01299665118 0.1)
(0.9173479286 0.01838298644 0.1)
(0.9273807073 -0.02060051711 0.1)
(0.927592222 -0.009398488122 0.1)
(0.9170573877 0.001947462259 0.1)
(0.9276981686 -0.003788475616 0.1)
(0.9438573334 -0.004093210595 0.1)
(0.9492310196 -0.004212192437 0.1)
(0.9330943335 -0.003884924982 0.1)
(0.9329863874 -0.009494895448 0.1)
(0.8843600701 -0.01979804067 0.1)
(0.8845777517 -0.008588139573 0.1)
(0.8740185837 0.002837339877 0.1)
(0.8955650441 0.002347322337 0.1)
(0.8958757225 0.01897946666 0.1)
(0.8957744779 0.0134503732 0.1)
(0.9011388207 0.01326757366 0.1)
(0.1267470785 0.05757547391 0.1)
(0.1321674013 0.05743870784 0.1)
(0.1159413958 0.05784687067 0.1)
(0.1158224086 0.05213991086 0.1)
(0.08914602854 0.0757750738 0.1)
(0.09462373713 0.07587965479 0.1)
(0.1000851191 0.07593556822 0.1)
(0.1002653382 0.08212864833 0.1)
(0.1483001757 0.0514068622 0.1)
(0.1484153207 0.05707379393 0.1)
(0.1376007822 0.05730456786 0.1)
(0.03961049124 0.06533781086 0.1)
(0.03408419255 0.06549110821 0.1)
(0.02313402367 0.08296724343 0.1)
(0.02877140492 0.08278340435 0.1)
(0.03422228456 0.07117906224 0.1)
(0.03428549233 0.07689709699 0.1)
(0.02870774889 0.07706307852 0.1)
(0.02313845195 0.07723118298 0.1)
(0.03972456096 0.07103447176 0.1)
(0.01182149575 0.07767096397 0.1)
(0.006167387128 0.07791266744 0.1)
(0.01749922104 0.07743646567 0.1)
(0.01751647352 0.08316186803 0.1)
(0.07833442452 0.08154500991 0.1)
(0.07824080574 0.07582201331 0.1)
(0.0836851312 0.07573745423 0.1)
(0.04536331763 0.07663438168 0.1)
(0.05088422315 0.07654331144 0.1)
(0.0563634995 0.07647032024 0.1)
(0.0564829538 0.08237551403 0.1)
(0.05614341744 0.06491789392 0.1)
(0.146176078 0.2346775041 0.1)
(0.1463318931 0.2403758879 0.1)
(0.1245405644 0.240732023 0.1)
(0.1244012549 0.2349623766 0.1)
(0.1242745866 0.22912795 0.1)
(0.1297283469 0.2289640751 0.1)
(0.2993621244 0.05419333695 0.1)
(0.3047471385 0.05423255195 0.1)
(0.2885738584 0.05410378785 0.1)
(0.2937343378 0.04270229481 0.1)
(0.2938511406 0.0484004986 0.1)
(0.2884580184 0.04845137394 0.1)
(0.3206299414 0.0422104372 0.1)
(0.3205095991 0.03648660215 0.1)
(0.3208911 0.05401345546 0.1)
(0.3101319543 0.05421475852 0.1)
(0.21319818 0.05581527212 0.1)
(0.2185954133 0.0556744905 0.1)
(0.2024187312 0.05609751983 0.1)
(0.2022957041 0.05034113402 0.1)
(0.234623926 0.04958372343 0.1)
(0.2347412935 0.05526121078 0.1)
(0.2239856964 0.05553615551 0.1)
(0.3199944697 0.2316797576 0.1)
(0.3200944607 0.2371016537 0.1)
(0.2983926615 0.2373868913 0.1)
(0.2982878873 0.2319277875 0.1)
(0.3096951763 0.2597472515 0.1)
(0.2988564454 0.259969132 0.1)
(0.2986211186 0.248633574 0.1)
(0.3040388884 0.2485656768 0.1)
(0.3094638998 0.2484616194 0.1)
(0.2877805709 0.2487214631 0.1)
(0.2932027392 0.2486724776 0.1)
(0.2930833357 0.2429457222 0.1)
(0.2884898305 0.2828841025 0.1)
(0.2882543145 0.2715395465 0.1)
(0.2771698596 0.2604070835 0.1)
(0.3318507972 0.2819034329 0.1)
(0.3316205533 0.270571769 0.1)
(0.3205404431 0.2595032287 0.1)
(0.3256255382 0.2424705761 0.1)
(0.3203120819 0.2482135345 0.1)
(0.3257375675 0.2480844616 0.1)
(0.3148917423 0.2483495007 0.1)
(0.2228993039 0.2616171246 0.1)
(0.2120375992 0.2618404884 0.1)
(0.2117907375 0.2505271778 0.1)
(0.2172239362 0.2504319502 0.1)
(0.2226566515 0.2503137278 0.1)
(0.2063606431 0.2506273412 0.1)
(0.2062370908 0.2449886924 0.1)
(0.2016657752 0.2847455662 0.1)
(0.2014201563 0.2733962215 0.1)
(0.2450951774 0.283832473 0.1)
(0.2448545574 0.2724830233 0.1)
(0.25545891 0.2608755538 0.1)
(0.2337555473 0.2613718709 0.1)
(0.238810477 0.2440937981 0.1)
(0.2335079499 0.250023568 0.1)
(0.2389340687 0.2498294674 0.1)
(0.2443744368 0.2496470699 0.1)
(0.2280851785 0.2501865914 0.1)
(0.4767235643 0.0447857989 0.1)
(0.4713480012 0.044958232 0.1)
(0.4659774117 0.04512936027 0.1)
(0.4658470314 0.0392611043 0.1)
(0.4873630163 0.03870121192 0.1)
(0.4874846863 0.04444062251 0.1)
(0.4821021247 0.04461320275 0.1)
(0.3906094993 0.04625875268 0.1)
(0.3852322406 0.04639811411 0.1)
(0.3798549945 0.04653807542 0.1)
(0.3797389401 0.04087546376 0.1)
(0.4012524456 0.04038793948 0.1)
(0.4013642227 0.04598982764 0.1)
(0.3959867958 0.04612119084 0.1)
(0.4874051066 0.2156783298 0.1)
(0.4981816653 0.215401344 0.1)
(0.4985357758 0.2325768954 0.1)
(0.4984245122 0.2269042808 0.1)
(0.4714415489 0.2274750922 0.1)
(0.4713082247 0.2216571092 0.1)
(0.4767124979 0.2216133011 0.1)
(0.482122423 0.2215528704 0.1)
(0.6379462387 0.03532118709 0.1)
(0.6378408815 0.0297867789 0.1)
(0.659385162 0.02957366836 0.1)
(0.6595066828 0.03530598052 0.1)
(0.5628592005 0.04372038173 0.1)
(0.557467127 0.04367841451 0.1)
(0.5520662486 0.04350310291 0.1)
(0.5519328619 0.03758699957 0.1)
(0.5518078071 0.03178174558 0.1)
(0.5733392564 0.03143407503 0.1)
(0.5734739245 0.03736355439 0.1)
(0.5736203262 0.04347052633 0.1)
(0.5682425932 0.04363490326 0.1)
(0.632639205 0.1894657994 0.1)
(0.6272542311 0.1895712155 0.1)
(0.6220977994 0.2011176555 0.1)
(0.6219891588 0.1954270818 0.1)
(0.6273714269 0.1952881152 0.1)
(0.6327541553 0.1951710437 0.1)
(0.6167086652 0.2012630679 0.1)
(0.6545131744 0.2058851337 0.1)
(0.6437261184 0.2061861454 0.1)
(0.6435316571 0.1948913375 0.1)
(0.6489326856 0.1947407739 0.1)
(0.6543281043 0.1946088324 0.1)
(0.6381363099 0.1950266782 0.1)
(0.6380235862 0.1893321895 0.1)
(0.6432820074 0.1833978457 0.1)
(0.6431195703 0.1774796525 0.1)
(0.621540756 0.1778580255 0.1)
(0.6217109377 0.1838115637 0.1)
(0.8204457915 0.01492311694 0.1)
(0.8258263711 0.01479898906 0.1)
(0.8312116015 0.01470577025 0.1)
(0.8313113208 0.02020989026 0.1)
(0.84133314 -0.01900943502 0.1)
(0.8415520106 -0.00779055693 0.1)
(0.8310007055 0.00358074527 0.1)
(0.8525395736 0.003252923158 0.1)
(0.7982979384 -0.01823365834 0.1)
(0.7985191659 -0.006997826041 0.1)
(0.7879970948 0.004431874559 0.1)
(0.8094727693 0.004000357874 0.1)
(0.8098006908 0.02083418431 0.1)
(0.8096903668 0.01520625986 0.1)
(0.8150655271 0.0150622415 0.1)
(0.8149268543 0.1335371731 0.1)
(0.8147989567 0.1277870011 0.1)
(0.7240138162 0.03373038444 0.1)
(0.7239016229 0.02810870066 0.1)
(0.7454041551 0.02743226531 0.1)
(0.7454963783 0.03281771667 0.1)
(0.8259833885 0.1556156016 0.1)
(0.8152330841 0.1559995591 0.1)
(0.8151021213 0.1448229426 0.1)
(0.8204794317 0.1446384701 0.1)
(0.8258506952 0.1444518242 0.1)
(0.8043447469 0.145203648 0.1)
(0.8097238341 0.1450085358 0.1)
(0.8096467719 0.1393927149 0.1)
(0.8047899959 0.1787501008 0.1)
(0.804633881 0.1675665114 0.1)
(0.7937351383 0.1567514147 0.1)
(0.9704273715 -0.02144955093 0.1)
(0.9706313833 -0.0102713695 0.1)
(0.9652494256 -0.01016521662 0.1)
(0.9653546364 -0.004590196382 0.1)
(0.9707364471 -0.00470334771 0.1)
(0.9546026223 -0.004335131354 0.1)
(0.9870792267 -0.003981715525 0.1)
(0.993080933 -0.002631573824 0.1)
(0.9761194769 -0.004758511853 0.1)
(0.9760144552 -0.01032453408 0.1)
(0.9859919651 0.07693971821 0.1)
(0.9859486152 0.07140500655 0.1)
(0.9912118461 0.0709800789 0.1)
(0.9963610028 0.07026738552 0.1)
(0.9645772618 0.07784495794 0.1)
(0.9646084 0.0833697241 0.1)
(0.9431710337 0.08414851227 0.1)
(0.9430769891 0.07848613801 0.1)
(0.9219661811 0.1072612476 0.1)
(0.9217490164 0.09041469023 0.1)
(0.9218505954 0.09610241171 0.1)
(0.9164684416 0.09629438767 0.1)
(0.9432947421 0.100736477 0.1)
(0.9432797778 0.09526738314 0.1)
(0.9486207675 0.09502046032 0.1)
(0.9539568613 0.09477854151 0.1)
(0.9379625872 0.1010230228 0.1)
(0.9378726568 0.08994266501 0.1)
(1.20496997 -0.1571396458 0.1)
(1.161929482 -0.1562347295 0.1)
(1.12032413 -0.08659479305 0.1)
(1.141849373 -0.08704735632 0.1)
(1.141367655 -0.1099592929 0.1)
(1.119842412 -0.1095067296 0.1)
(1.119360714 -0.1324176664 0.1)
(1.054794983 -0.1310601868 0.1)
(1.097835471 -0.1319651031 0.1)
(1.098798887 -0.08614222978 0.1)
(1.121769263 -0.01785998317 0.1)
(1.10024402 -0.0174074199 0.1)
(1.079682197 0.02886821665 0.1)
(1.079441344 0.01741254831 0.1)
(1.079200495 0.005957079922 0.1)
(1.078959626 -0.005499388243 0.1)
(1.046676781 -0.004819648656 0.1)
(1.068202003 -0.005273211708 0.1)
(1.068924564 0.0290938933 0.1)
(1.068683721 0.01763872484 0.1)
(1.21267735 0.2094460402 0.1)
(1.169636862 0.2103509565 0.1)
(1.125622952 0.1654328098 0.1)
(1.147148195 0.1649802466 0.1)
(1.146666485 0.1420687099 0.1)
(1.128513213 0.3029021297 0.1)
(1.127549797 0.2570792563 0.1)
(1.062502348 0.2355247994 0.1)
(1.084017593 0.2350724463 0.1)
(1.08353589 0.2121612096 0.1)
(0.847728783 0.177146868 0.1)
(0.8475847684 0.1659679252 0.1)
(0.8367121111 0.1552041916 0.1)
(0.8365907916 0.144058079 0.1)
(0.8365246121 0.1384841386 0.1)
(0.8312229542 0.1442649574 0.1)
(0.9980878834 0.2156756138 0.1)
(0.9975313923 0.192537399 0.1)
(0.9757996729 0.1708478102 0.1)
(0.9858826251 0.1363439417 0.1)
(0.9754482278 0.1482805114 0.1)
(0.9860175366 0.1475180748 0.1)
(0.9542508985 0.1496769905 0.1)
(0.9648620356 0.1490010937 0.1)
(-0.04598677086 0.1179183935 0.1)
(-0.03501959904 0.1170548714 0.1)
(-0.035200768 0.1233902793 0.1)
(-0.02982149239 0.1231565547 0.1)
(-0.02950680269 0.1166018916 0.1)
(-0.03014044992 0.1435281252 0.1)
(-0.03018731769 0.1367319038 0.1)
(-0.02237789811 0.09109440534 0.1)
(-0.02273524951 0.09718036159 0.1)
(-0.02311639382 0.103352537 0.1)
(-0.0286597646 0.1036976356 0.1)
(-0.02883820915 0.1097392214 0.1)
(-0.02325489856 0.1093099647 0.1)
(-0.0343205683 0.1100509301 0.1)
(-0.006051858089 0.1077519104 0.1)
(-0.01773498685 0.1089670597 0.1)
(-0.01668662532 0.0907097891 0.1)
(-0.01694746754 0.09668099136 0.1)
(-0.009558232662 0.1959669057 0.1)
(-0.00983668087 0.1900874596 0.1)
(-0.01023328664 0.1840780686 0.1)
(-0.004466148787 0.1841172513 0.1)
(-0.04488097754 0.1705036681 0.1)
(-0.03399570897 0.1706731959 0.1)
(-0.03362626726 0.1768177878 0.1)
(-0.02810690796 0.1769624021 0.1)
(-0.02857392269 0.170663127 0.1)
(-0.02750718802 0.1833414054 0.1)
(-0.02175619296 0.1836850947 0.1)
(-0.02986988688 0.1508688649 0.1)
(-0.02894434827 0.1644384381 0.1)
(-0.03434013623 0.1644909698 0.1)
(0.4172844544 0.2227116286 0.1)
(0.4226857415 0.2225733623 0.1)
(0.427953209 0.2166411288 0.1)
(0.5621033306 0.008863168606 0.1)
(0.5728661623 0.00864688476 0.1)
(0.5730968804 0.01995353321 0.1)
(0.5677161326 0.02006966285 0.1)
(0.5623340907 0.02017181661 0.1)
(0.5784777964 0.0198454018 0.1)
(0.5785953803 0.02553318687 0.1)
(0.5831689569 -0.0141637212 0.1)
(0.5833995279 -0.002864071206 0.1)
(0.5401181884 -0.0133196022 0.1)
(0.5403489276 -0.002011953971 0.1)
(0.5513404148 0.009075453335 0.1)
(0.5515700701 0.02037912347 0.1)
(0.5516875909 0.0260639092 0.1)
(0.556952196 0.02028096882 0.1)
(0.7122424781 -0.01663740919 0.1)
(0.7124682932 -0.005373667163 0.1)
(0.7234576035 0.005657773536 0.1)
(0.7184113646 0.02263559731 0.1)
(0.7236795575 0.01688058768 0.1)
(0.7182980202 0.01700673614 0.1)
(0.729061137 0.01675643879 0.1)
(0.9280457533 0.01326698647 0.1)
(0.9334622448 0.01337615526 0.1)
(0.9385986008 0.001683604986 0.1)
(0.9387228653 0.007451267281 0.1)
(1.07992305 0.04032388499 0.1)
(1.06916541 0.04054926171 0.1)
(1.069647133 0.06346139821 0.1)
(1.080404764 0.06323562159 0.1)
(1.048121768 0.06390816277 0.1)
(1.123696109 0.07378646332 0.1)
(1.102170866 0.07423902659 0.1)
(1.080163907 0.05177975329 0.1)
(0.135941809 0.2633163574 0.1)
(0.1250676235 0.2635169785 0.1)
(0.1247986313 0.2521501212 0.1)
(0.1302347032 0.2520488319 0.1)
(0.1356788996 0.2519533732 0.1)
(0.1246868989 0.2464552116 0.1)
(0.1147142999 0.2864456726 0.1)
(0.1144483281 0.2750797521 0.1)
(0.1582034971 0.2856173413 0.1)
(0.1579506906 0.2742591458 0.1)
(0.1468379476 0.2631132743 0.1)
(0.1518923583 0.2459532385 0.1)
(0.1465931814 0.2517569102 0.1)
(0.1520190033 0.2516438338 0.1)
(0.1411400711 0.2518565573 0.1)
(0.4760157787 0.01059812296 0.1)
(0.4867825044 0.01037675614 0.1)
(0.4970875417 -0.01246990492 0.1)
(0.4973194488 -0.001154279484 0.1)
(0.5091076362 0.04934888989 0.1)
(0.4982478583 0.04409780355 0.1)
(0.5036244591 0.04392714903 0.1)
(0.4496259253 0.2165425438 0.1)
(0.4605085483 0.2218811693 0.1)
(0.455121734 0.2220893468 0.1)
(0.4827723514 0.2556052326 0.1)
(0.4719875548 0.2558709891 0.1)
(0.461628875 0.2787827921 0.1)
(0.4614108177 0.2674598739 0.1)
(0.3963227849 0.2577238813 0.1)
(0.3854975347 0.2579684835 0.1)
(0.3852891598 0.2466303584 0.1)
(0.3906950913 0.2465227013 0.1)
(0.3961107893 0.2464038364 0.1)
(0.3798871014 0.2467319328 0.1)
(0.3797699076 0.2410151331 0.1)
(0.3751559983 0.2808869276 0.1)
(0.3749297115 0.26955318 0.1)
(0.4184237241 0.2798482052 0.1)
(0.4182045829 0.2685213089 0.1)
(0.4071696519 0.2574608207 0.1)
(0.4122605171 0.2403220233 0.1)
(0.4069625922 0.2461376713 0.1)
(0.4123698926 0.2459999788 0.1)
(0.4015392532 0.2462737006 0.1)
(0.6481590787 0.007137884902 0.1)
(0.6589212679 0.00693861832 0.1)
(0.6591512504 0.0182102745 0.1)
(0.6537688512 0.01829543202 0.1)
(0.6483855993 0.018387609 0.1)
(0.6645309025 0.0181371774 0.1)
(0.6646486335 0.02383196092 0.1)
(0.6692191359 -0.01582087279 0.1)
(0.6694483077 -0.004540197575 0.1)
(0.6261889424 -0.01499719079 0.1)
(0.6264182403 -0.003710516901 0.1)
(0.6373971416 0.007349148832 0.1)
(0.6323528602 0.02432493101 0.1)
(0.6376196632 0.01859895702 0.1)
(0.6322408098 0.01871004573 0.1)
(0.6430015369 0.01848880502 0.1)
(0.5412635502 0.04310768961 0.1)
(0.5358734741 0.04306558037 0.1)
(0.5305894292 0.04854236173 0.1)
(0.5952530647 0.04855892775 0.1)
(0.5843688657 0.04305019782 0.1)
(0.5897423549 0.04282669703 0.1)
(0.6652841962 0.2055826586 0.1)
(0.6757802061 0.1883939334 0.1)
(0.6703930484 0.188538204 0.1)
(0.6650985299 0.1943255741 0.1)
(0.6704895816 0.1941762206 0.1)
(0.6758766636 0.1940283507 0.1)
(0.6597112545 0.194464246 0.1)
(0.9993873879 0.01854154185 0.1)
(1.004017957 0.01947141217 0.1)
(1.003942894 0.02541590341 0.1)
(1.001815444 0.03317133621 0.1)
(1.014153214 -0.01558937878 0.1)
(1.014384422 -0.00411670395 0.1)
(1.003860131 0.007683125102 0.1)
(1.003758168 0.001881986635 0.1)
(0.9988177091 0.000960632117 0.1)
(0.9600788144 0.001134967011 0.1)
(0.9601890543 0.006758892344 0.1)
(0.9753005914 0.08826165377 0.1)
(0.9699658701 0.08856885814 0.1)
(0.9646170298 0.09424634586 0.1)
(0.9699502539 0.09396307824 0.1)
(0.9752812282 0.09366795529 0.1)
(0.9592759098 0.09448707005 0.1)
(0.9965685171 0.1032105022 0.1)
(0.9858832687 0.1037867348 0.1)
(1.016059194 0.07601609726 0.1)
(1.015776929 0.06449368466 0.1)
(1.015594277 0.05866063523 0.1)
(1.000953324 0.06257505477 0.1)
(1.01016348 0.05867979549 0.1)
(1.005833002 0.07202317085 0.1)
(1.005851362 0.0662361063 0.1)
(1.010366667 0.06453811885 0.1)
(1.003297467 0.04038797842 0.1)
(0.9993992114 0.04193916296 0.1)
(0.9987228256 0.03736086911 0.1)
(1.000193699 0.03405682115 0.1)
(0.7291137885 0.1584606412 0.1)
(0.7289598024 0.1526113856 0.1)
(0.6644699998 0.1655250225 0.1)
(0.6754511527 0.1713159768 0.1)
(0.670034695 0.1713511392 0.1)
(0.8361683701 0.1159265528 0.1)
(0.8470200575 0.1213161398 0.1)
(0.8416575336 0.1214902992 0.1)
(0.8790976584 0.1090190376 0.1)
(0.8790174622 0.1033968812 0.1)
(0.900588013 0.1082391354 0.1)
(0.9005312729 0.1026860011 0.1)
(0.05837781558 0.2187326115 0.1)
(0.05829737027 0.2127988915 0.1)
(0.03612020812 0.21330497 0.1)
(0.02492671284 0.2076284044 0.1)
(0.03049146886 0.2074917023 0.1)
(0.41189586 0.2229778563 0.1)
(0.5896128689 0.1961341917 0.1)
(0.5841935585 0.1962715366 0.1)
(0.5789102745 0.2021650941 0.1)
(0.5358907232 0.208870752 0.1)
(0.5357661259 0.2030396827 0.1)
(0.5574694666 0.2083938587 0.1)
(0.5573368655 0.2026102682 0.1)
(0.551825971 0.1970119709 0.1)
(0.7612017965 0.146135224 0.1)
(0.7558016829 0.1462341569 0.1)
(0.750691591 0.1579865684 0.1)
(0.7505613216 0.1522187323 0.1)
(0.9171610102 0.007494509706 0.1)
(0.9226462068 0.01310745035 0.1)
(0.8850133672 0.01384365998 0.1)
(0.89039839 0.01364542233 0.1)
(0.8956708764 0.007904325534 0.1)
(0.11094057 0.07565262278 0.1)
(0.1163429596 0.07537650287 0.1)
(0.1214662326 0.0634422742 0.1)
(0.121592835 0.0692259909 0.1)
(0.09978625874 0.06400441415 0.1)
(0.09992508708 0.06989389722 0.1)
(0.1055216682 0.07585697392 0.1)
(0.1647836564 0.06272167736 0.1)
(0.1649198772 0.06867742989 0.1)
(0.1431309694 0.06282144157 0.1)
(0.143239621 0.06841739411 0.1)
(0.06733958777 0.07619264015 0.1)
(0.07280591155 0.07599359337 0.1)
(0.07815237674 0.07008420434 0.1)
(0.1133549201 0.2294964642 0.1)
(0.1188208628 0.2293411351 0.1)
(0.124157621 0.2232317059 0.1)
(0.2940936048 0.05988523949 0.1)
(0.2942136192 0.06559347799 0.1)
(0.272516596 0.05982617785 0.1)
(0.2726171454 0.0652270576 0.1)
(0.3371622862 0.05960766914 0.1)
(0.337307321 0.06574477646 0.1)
(0.3156606495 0.06032669507 0.1)
(0.3158158533 0.06666203245 0.1)
(0.2079305598 0.06178781776 0.1)
(0.2080651754 0.06771479768 0.1)
(0.1863770662 0.06246662485 0.1)
(0.1865258815 0.0685932504 0.1)
(0.2510090284 0.06045340817 0.1)
(0.2511199857 0.06601630494 0.1)
(0.2294871515 0.06111364657 0.1)
(0.2296088446 0.06685415692 0.1)
(0.3586052405 0.05876164865 0.1)
(0.3587385074 0.06467205325 0.1)
(0.4926497353 0.209658857 0.1)
(0.4924907235 0.2037132858 0.1)
(0.5142859724 0.2094427129 0.1)
(0.5141781025 0.2037412206 0.1)
(0.5522054001 0.04950310361 0.1)
(0.5466622314 0.04327364533 0.1)
(0.5789952587 0.04326809985 0.1)
(0.5737740621 0.04968846862 0.1)
(0.9816465355 0.0009425683269 0.1)
(0.9817589038 0.006477429243 0.1)
(0.9752695881 0.07184897913 0.1)
(0.9699098876 0.07206228782 0.1)
(-0.01257799644 0.4253900719 0.1)
(-0.01317341829 0.4025695456 0.1)
(-0.05758062577 0.380272064 0.1)
(-0.03583241472 0.3799488425 0.1)
(-0.03500967808 0.4028866165 0.1)
(-0.03443025269 0.4257074792 0.1)
(-0.05815482051 0.3574430897 0.1)
(-0.07577335009 0.5152287041 0.1)
(-0.07685167637 0.4718460092 0.1)
(0.8731193242 0.403012378 0.1)
(0.8301850969 0.4045094735 0.1)
(0.8293429083 0.3590291277 0.1)
(0.8508121086 0.3582896791 0.1)
(0.807878929 0.3597314584 0.1)
(0.8074647793 0.3370361494 0.1)
(0.7887997697 0.4937339809 0.1)
(0.7880577396 0.4508410046 0.1)
(0.8523758585 0.1211076541 0.1)
(0.8576275639 0.1151869045 0.1)
(0.7411815225 0.2371503622 0.1)
(0.7304341473 0.2374833469 0.1)
(0.7198592088 0.2491102024 0.1)
(0.7306236223 0.2487788599 0.1)
(0.7413789747 0.2484447072 0.1)
(0.7091027304 0.2494383774 0.1)
(0.7847705465 0.2697093093 0.1)
(0.7632763006 0.2703992735 0.1)
(-0.02458394176 0.1292170998 0.1)
(-0.01911614266 0.1286077313 0.1)
(-0.01241154578 0.1145742992 0.1)
(-0.01294067912 0.1209626331 0.1)
(-0.01149732872 0.1714966591 0.1)
(-0.01218492487 0.1649246604 0.1)
(-0.02411009633 0.1574110688 0.1)
(-0.01859473272 0.1575083567 0.1)
(-0.03981538213 0.2540177409 0.1)
(-0.03949265624 0.2654474825 0.1)
(-0.06054786135 0.2885751755 0.1)
(-0.08254576158 0.2886065811 0.1)
(-0.006098412819 0.2767150209 0.1)
(-0.02852855223 0.2653800008 0.1)
(-0.01744431328 0.2653700065 0.1)
(-0.0170224683 0.276837673 0.1)
(-0.02891269529 0.2539215438 0.1)
(0.07508737926 0.23007278 0.1)
(0.08047336425 0.2240830425 0.1)
(0.3899175236 0.01234730545 0.1)
(0.4006762721 0.01212710657 0.1)
(0.4109717017 -0.01074835891 0.1)
(0.4112039241 0.0005822632177 0.1)
(0.3679374132 -0.009881581309 0.1)
(0.3681697827 0.00145603927 0.1)
(0.3791597749 0.01256748331 0.1)
(0.7721532996 0.1517528633 0.1)
(0.7666201317 0.1460942209 0.1)
(0.7189495883 0.192763273 0.1)
(0.7406395993 0.2033349821 0.1)
(0.7298883217 0.2036726499 0.1)
(0.8741315169 0.008494215878 0.1)
(0.8796263868 0.01404393923 0.1)
(0.1023750143 0.2236696758 0.1)
(0.1079059764 0.2295564149 0.1)
(0.4540370465 -0.01161278879 0.1)
(0.4542701846 -0.0002861868042 0.1)
(0.4652590298 0.01081827981 0.1)
(0.4552320612 0.04546350269 0.1)
(0.4498521332 0.04561862372 0.1)
(0.4446153855 0.05191779259 0.1)
(0.4230218121 0.05154661017 0.1)
(0.4121243893 0.04578950334 0.1)
(0.4175099358 0.04575889172 0.1)
(0.8419934237 0.01467912913 0.1)
(0.8473893849 0.01471571343 0.1)
(0.8526560316 0.008934730575 0.1)
(0.7989583649 0.1453848105 0.1)
(0.7936596811 0.1511643664 0.1)
(0.707702397 0.1648516234 0.1)
(0.7132039269 0.1703851031 0.1)
(0.0711129927 0.2872033449 0.1)
(0.07083511326 0.2758276726 0.1)
(0.05957408419 0.2646079018 0.1)
(0.04865317311 0.2647744975 0.1)
(0.6808549655 0.1712502735 0.1)
(0.6861355579 0.1654189864 0.1)
(-0.04175613342 0.2189597898 0.1)
(-0.03050921207 0.21919463 0.1)
(-0.02010302571 0.2075718226 0.1)
(-0.008898891078 0.2077078404 0.1)
(-0.003306912903 0.2077308014 0.1)
(-0.009230133272 0.2018435074 0.1)
(0.6005405398 0.2016649127 0.1)
(0.5950237425 0.1960237301 0.1)
(0.05625131151 0.07065859436 0.1)
(0.0618505899 0.07635985651 0.1)
(0.4661155403 0.05112828223 0.1)
(0.4606067844 0.04529868893 0.1)
(0.4928682645 0.04426882107 0.1)
(0.4876094804 0.05023347924 0.1)
(0.3799711246 0.05220428628 0.1)
(0.3691014979 0.04681777705 0.1)
(0.3744777485 0.04667803672 0.1)
(0.4067429688 0.04587364005 0.1)
(0.4014727958 0.05153447049 0.1)
(0.4659076151 0.2217324474 0.1)
(0.4711553083 0.2157160109 0.1)
(0.8311068951 0.009154744711 0.1)
(0.8365999455 0.0146654977 0.1)
(0.7989660614 0.01549474983 0.1)
(0.8043242255 0.01535108882 0.1)
(0.8095804632 0.009598330992 0.1)
(0.9806165415 0.07164784106 0.1)
(0.9857729716 0.06552469937 0.1)
(0.9325721081 0.0957286616 0.1)
(0.9272149025 0.09591791254 0.1)
(0.9219204133 0.1017066824 0.1)
(-0.01606634296 0.1838655332 0.1)
(-0.01080106336 0.1778958374 0.1)
(1.003963355 0.01354425031 0.1)
(1.014708803 0.0189235682 0.1)
(1.009303047 0.01918225504 0.1)
(1.014815729 0.04113572832 0.1)
(1.009067841 0.04082088008 0.1)
(1.005600863 0.05432163935 0.1)
(1.00395442 0.04642070208 0.1)
(-1.02877 -0.962597 0.1)
(-1.0288 -0.8251 0.1)
(-1.02888 -0.641775 0.1)
(-1.02895 -0.458448 0.1)
(-1.02901 -0.275121 0.1)
(-1.02904 -0.0917902 0.1)
(-1.02904 0.0915431 0.1)
(-1.02901 0.274879 0.1)
(-1.02895 0.458218 0.1)
(-1.02888 0.641559 0.1)
(-1.0288 0.8249 0.1)
(-1.02872 1.00824 0.1)
(-0.900226 -1.00849 0.1)
(-0.900275 -0.962663 0.1)
(-0.857436 -0.962684 0.1)
(-0.985942 -0.96262 0.1)
(-0.943121 -0.916809 0.1)
(-0.94317 -0.870981 0.1)
(-0.943181 -0.825148 0.1)
(-0.985993 -0.825125 0.1)
(-0.943242 -0.733488 0.1)
(-0.943293 -0.687659 0.1)
(-0.943302 -0.641827 0.1)
(-0.986092 -0.641801 0.1)
(-0.943362 -0.550166 0.1)
(-0.943412 -0.504337 0.1)
(-0.943418 -0.458504 0.1)
(-0.986186 -0.458477 0.1)
(-0.943469 -0.366843 0.1)
(-0.9435143776 -0.3210050693 0.1)
(-0.9435207478 -0.274939474 0.1)
(-0.986262 -0.27515 0.1)
(-0.9435751789 -0.1822874442 0.1)
(-0.9436128392 -0.1359244746 0.1)
(-0.9435930888 -0.08964369246 0.1)
(-0.9863059299 -0.09174768677 0.1)
(-0.9435743444 0.002417618541 0.1)
(-0.9435814713 0.04814794528 0.1)
(-0.9435408158 0.09369784844 0.1)
(-0.98630419 0.09158696439 0.1)
(-0.9435167953 0.1843915556 0.1)
(-0.9435330421 0.2296803526 0.1)
(-0.9435034269 0.275068327 0.1)
(-0.986262 0.27485 0.1)
(-0.943469 0.366491 0.1)
(-0.943467 0.412324 0.1)
(-0.943418 0.458162 0.1)
(-0.986187 0.45819 0.1)
(-0.943362 0.549834 0.1)
(-0.943354 0.595668 0.1)
(-0.943303 0.641507 0.1)
(-0.986093 0.641532 0.1)
(-0.943242 0.733179 0.1)
(-0.943231 0.779013 0.1)
(-0.943181 0.824852 0.1)
(-0.985993 0.824875 0.1)
(-0.900276 0.962338 0.1)
(-0.943063 1.0082 0.1)
(-0.900227 1.00818 0.1)
(-0.857392 1.00825 0.1)
(-0.985895 1.00822 0.1)
(-0.728831 -1.00857 0.1)
(-0.728893 -0.962745 0.1)
(-0.686035 -0.962769 0.1)
(-0.814593 -0.962705 0.1)
(-0.771786 -0.916895 0.1)
(-0.771847 -0.871068 0.1)
(-0.771889 -0.825239 0.1)
(-0.814719 -0.825217 0.1)
(-0.857544 -0.825194 0.1)
(-0.771996 -0.733582 0.1)
(-0.772061 -0.687755 0.1)
(-0.772105 -0.641926 0.1)
(-0.814911 -0.641902 0.1)
(-0.857712 -0.641877 0.1)
(-0.7723694907 -0.5481389015 0.1)
(-0.772598083 -0.4996768244 0.1)
(-0.7728178491 -0.4504592554 0.1)
(-0.8153022889 -0.4552374985 0.1)
(-0.8579102434 -0.4579626423 0.1)
(-0.7732132111 -0.3507139327 0.1)
(-0.7733522703 -0.3006413178 0.1)
(-0.7734087076 -0.2507023298 0.1)
(-0.8158152442 -0.2600674652 0.1)
(-0.8582946455 -0.2674307684 0.1)
(-0.7733521839 -0.1519520619 0.1)
(-0.7732457692 -0.1034207747 0.1)
(-0.7730689836 -0.05558063052 0.1)
(-0.8156599814 -0.06730309072 0.1)
(-0.8582743549 -0.07714337888 0.1)
(-0.7726448004 0.03774201608 0.1)
(-0.7724252689 0.0831692363 0.1)
(-0.772190088 0.1277943277 0.1)
(-0.8150685231 0.1160633351 0.1)
(-0.8579211597 0.1062143975 0.1)
(-0.7718190564 0.2147931251 0.1)
(-0.7717062869 0.2573325479 0.1)
(-0.7716230869 0.299400449 0.1)
(-0.8147167169 0.2900098813 0.1)
(-0.8577341103 0.2826211695 0.1)
(-0.7716389871 0.3827301889 0.1)
(-0.771729142 0.4243752987 0.1)
(-0.7718279269 0.4663027386 0.1)
(-0.8148964814 0.461486742 0.1)
(-0.8578385522 0.4587268529 0.1)
(-0.7720575177 0.5519168729 0.1)
(-0.7721319513 0.5960703231 0.1)
(-0.772106 0.641407 0.1)
(-0.814911 0.641431 0.1)
(-0.857712 0.641456 0.1)
(-0.771997 0.733084 0.1)
(-0.771954 0.778925 0.1)
(-0.771892 0.82478 0.1)
(-0.81472 0.824783 0.1)
(-0.857545 0.824806 0.1)
(-0.728055 0.964401 0.1)
(-0.771406 1.00946 0.1)
(-0.727837 1.01033 0.1)
(-0.68461 1.01067 0.1)
(-0.814541 1.00851 0.1)
(-0.556084 -1.01091 0.1)
(-0.556399 -0.964912 0.1)
(-0.512556 -0.965648 0.1)
(-0.643164 -0.962856 0.1)
(-0.600338 -0.917186 0.1)
(-0.600435 -0.871234 0.1)
(-0.600512 -0.825335 0.1)
(-0.643366 -0.825301 0.1)
(-0.686213 -0.825281 0.1)
(-0.6008756403 -0.7315908071 0.1)
(-0.6012975462 -0.6820412375 0.1)
(-0.6018012603 -0.630898553 0.1)
(-0.6442141236 -0.6355894371 0.1)
(-0.6867231257 -0.6391398959 0.1)
(-0.6028927615 -0.5250359816 0.1)
(-0.6033900488 -0.4709662532 0.1)
(-0.6037906264 -0.4165698368 0.1)
(-0.6459506613 -0.4265920173 0.1)
(-0.6881620188 -0.4358163657 0.1)
(-0.6042652902 -0.3080283693 0.1)
(-0.6043176727 -0.2544130649 0.1)
(-0.6042273747 -0.2015121308 0.1)
(-0.6464897884 -0.2146649585 0.1)
(-0.688762873 -0.2275568746 0.1)
(-0.6037057376 -0.09848414463 0.1)
(-0.6033024314 -0.04855737346 0.1)
(-0.6028106746 0.0002373932289 0.1)
(-0.6453718654 -0.01399331485 0.1)
(-0.6879313339 -0.028400984 0.1)
(-0.6016944739 0.09430423959 0.1)
(-0.6011128358 0.1395571526 0.1)
(-0.600527378 0.1836335119 0.1)
(-0.6434531948 0.169400282 0.1)
(-0.6863765038 0.1549881531 0.1)
(-0.5994876815 0.2683078826 0.1)
(-0.5990745407 0.3089887705 0.1)
(-0.5987409844 0.3486709476 0.1)
(-0.6420072799 0.3355042049 0.1)
(-0.6852529287 0.3225935817 0.1)
(-0.5984171607 0.4255326645 0.1)
(-0.5984401705 0.4630751228 0.1)
(-0.5985666807 0.5003436599 0.1)
(-0.6419936356 0.490286549 0.1)
(-0.6853591397 0.4810252615 0.1)
(-0.5991203564 0.5752087244 0.1)
(-0.5995017323 0.6135041494 0.1)
(-0.5998832829 0.6528934237 0.1)
(-0.6431052685 0.6478965493 0.1)
(-0.6862324925 0.6442740127 0.1)
(-0.5995966191 0.7381043301 0.1)
(-0.5990479162 0.7823888635 0.1)
(-0.598865 0.827889 0.1)
(-0.642315 0.827359 0.1)
(-0.686094 0.82587 0.1)
(-0.555714 0.965414 0.1)
(-0.598649 1.01102 0.1)
(-0.555678 1.01118 0.1)
(-0.512702 1.01133 0.1)
(-0.641617 1.01086 0.1)
(-0.383309 -1.01194 0.1)
(-0.383341 -0.966197 0.1)
(-0.340336 -0.966337 0.1)
(-0.469354 -0.965893 0.1)
(-0.426375 -0.920295 0.1)
(-0.4265364551 -0.873597585 0.1)
(-0.4270338568 -0.8244569453 0.1)
(-0.4704203246 -0.8260629957 0.1)
(-0.5144529856 -0.8261646406 0.1)
(-0.4291020081 -0.7195039553 0.1)
(-0.4304980369 -0.6641850863 0.1)
(-0.4321897466 -0.607723161 0.1)
(-0.4748854653 -0.6128587701 0.1)
(-0.517177861 -0.6191221559 0.1)
(-0.4341911931 -0.4911362581 0.1)
(-0.4347992247 -0.4330895792 0.1)
(-0.4352065843 -0.3755195069 0.1)
(-0.4773883313 -0.3852474495 0.1)
(-0.5195305486 -0.3955600008 0.1)
(-0.4354438719 -0.2629056182 0.1)
(-0.4352882899 -0.2082656212 0.1)
(-0.4349622975 -0.1548963772 0.1)
(-0.4773405345 -0.1648957828 0.1)
(-0.5196679281 -0.1762242263 0.1)
(-0.4338966779 -0.05223695445 0.1)
(-0.4332071106 -0.002817156136 0.1)
(-0.4324333134 0.04546743248 0.1)
(-0.4750567604 0.03678303127 0.1)
(-0.5176586105 0.02609171633 0.1)
(-0.4307362791 0.1390248908 0.1)
(-0.4298484958 0.184405782 0.1)
(-0.4289490011 0.2288401727 0.1)
(-0.4718129159 0.220167058 0.1)
(-0.5147006869 0.2094834026 0.1)
(-0.4272420006 0.3146217556 0.1)
(-0.4264883395 0.3558573468 0.1)
(-0.425819017 0.3957723991 0.1)
(-0.4689960479 0.385375487 0.1)
(-0.5122166859 0.3739739489 0.1)
(-0.4248092132 0.4726578418 0.1)
(-0.4245377962 0.5088890929 0.1)
(-0.4241893429 0.5446551707 0.1)
(-0.4681409482 0.5322330971 0.1)
(-0.5116161905 0.5214617856 0.1)
(-0.4228860475 0.6153469021 0.1)
(-0.4230918106 0.6497770419 0.1)
(-0.4236876838 0.6843303323 0.1)
(-0.4674202028 0.6767476575 0.1)
(-0.5116675648 0.66892804 0.1)
(-0.4251020826 0.7559927098 0.1)
(-0.4257759244 0.7939241774 0.1)
(-0.4263330561 0.833732535 0.1)
(-0.4695726556 0.8312350687 0.1)
(-0.5127366033 0.8293392641 0.1)
(-0.383744 0.966037 0.1)
(-0.426704 1.01164 0.1)
(-0.383585 1.01184 0.1)
(-0.340202 1.01213 0.1)
(-0.469724 1.01148 0.1)
(-0.211093 -1.01252 0.1)
(-0.2112043703 -0.9662973378 0.1)
(-0.1682560297 -0.9658912758 0.1)
(-0.297302568 -0.9664748507 0.1)
(-0.2545375964 -0.9186332088 0.1)
(-0.2553079744 -0.8673952 0.1)
(-0.2562215136 -0.8140246232 0.1)
(-0.2989109475 -0.8167184257 0.1)
(-0.3415681035 -0.8194698848 0.1)
(-0.2583722056 -0.7012725539 0.1)
(-0.2594396602 -0.6427813508 0.1)
(-0.2604081966 -0.5835378192 0.1)
(-0.3028485692 -0.5891537204 0.1)
(-0.345344855 -0.5953298695 0.1)
(-0.2618436278 -0.4649071151 0.1)
(-0.2623026744 -0.4064862429 0.1)
(-0.2628146999 -0.3491207061 0.1)
(-0.3062457429 -0.3539381523 0.1)
(-0.3499152684 -0.3602627302 0.1)
(-0.2639674552 -0.2376846877 0.1)
(-0.264328566 -0.184799171 0.1)
(-0.2640606698 -0.1337975778 0.1)
(-0.3071276693 -0.1360363206 0.1)
(-0.3499300136 -0.1403932616 0.1)
(-0.2630826674 -0.03684676993 0.1)
(-0.2624254617 0.009928101462 0.1)
(-0.2616388516 0.05628540934 0.1)
(-0.3043882905 0.05711135124 0.1)
(-0.3471023094 0.05577299083 0.1)
(-0.2598147024 0.148042531 0.1)
(-0.2588392494 0.1940097912 0.1)
(-0.2578096569 0.2405064223 0.1)
(-0.3005609077 0.2408285164 0.1)
(-0.3433211373 0.2392229687 0.1)
(-0.2553529562 0.3337132974 0.1)
(-0.254003606 0.3789948734 0.1)
(-0.2524309611 0.4229271956 0.1)
(-0.2962245435 0.4181305456 0.1)
(-0.3394348255 0.4125962361 0.1)
(-0.2489763628 0.5055507822 0.1)
(-0.2482053764 0.5435078679 0.1)
(-0.2479203933 0.5795442188 0.1)
(-0.2913804378 0.5729739881 0.1)
(-0.3351595781 0.5650323753 0.1)
(-0.2481413583 0.647243542 0.1)
(-0.2486049659 0.6796383974 0.1)
(-0.2492515269 0.7116665353 0.1)
(-0.2928298091 0.70561803 0.1)
(-0.3364249596 0.6989421953 0.1)
(-0.2508433057 0.7767028249 0.1)
(-0.2516730228 0.8107379617 0.1)
(-0.2523817717 0.8457564927 0.1)
(-0.2961468589 0.8431337147 0.1)
(-0.3396793749 0.8398192139 0.1)
(-0.2106372604 0.9679719329 0.1)
(-0.253793 1.01252 0.1)
(-0.210761 1.01264 0.1)
(-0.1677213481 1.012792295 0.1)
(-0.296897 1.01235 0.1)
(-0.03849191209 -1.012919428 0.1)
(-0.03886604652 -0.9647456666 0.1)
(0.004293565106 -0.9645376188 0.1)
(-0.1252929428 -0.9654237979 0.1)
(-0.08288856015 -0.9143411716 0.1)
(-0.08384634734 -0.8610239902 0.1)
(-0.08498532673 -0.8053728987 0.1)
(-0.127899207 -0.807261937 0.1)
(-0.1706350935 -0.8096098474 0.1)
(-0.08743826473 -0.6888330282 0.1)
(-0.0885790559 -0.6289877286 0.1)
(-0.08955726612 -0.5688510467 0.1)
(-0.1324274971 -0.5719986545 0.1)
(-0.1752919461 -0.5745835082 0.1)
(-0.09086790194 -0.4500260267 0.1)
(-0.09117525429 -0.3924056403 0.1)
(-0.09139527636 -0.3360219338 0.1)
(-0.1343187777 -0.3377050092 0.1)
(-0.1770937623 -0.3404377223 0.1)
(-0.09064580714 -0.2311277488 0.1)
(-0.08994776553 -0.1826498592 0.1)
(-0.08914431835 -0.1365906626 0.1)
(-0.1325950465 -0.1353273092 0.1)
(-0.1763971652 -0.1341090541 0.1)
(-0.1316401913 0.1453875182 0.1)
(-0.1311538425 0.1690430117 0.1)
(-0.1304943591 0.1932263926 0.1)
(-0.1519157832 0.1933838083 0.1)
(-0.1733288924 0.1935085421 0.1)
(-0.07484275175 0.5559532851 0.1)
(-0.07392093433 0.5942314485 0.1)
(-0.1177619318 0.5920443214 0.1)
(-0.1612389448 0.5889752125 0.1)
(-0.0733344561 0.665080443 0.1)
(-0.07362223714 0.6980340469 0.1)
(-0.07420213617 0.7299680602 0.1)
(-0.1177187565 0.7259741864 0.1)
(-0.1616043102 0.72094366 0.1)
(-0.07606353334 0.7929551676 0.1)
(-0.07720164505 0.8251522912 0.1)
(-0.07837258479 0.8585604273 0.1)
(-0.1217196401 0.8559564138 0.1)
(-0.165117317 0.8529006846 0.1)
(-0.03804103038 0.9716485522 0.1)
(-0.08155440254 1.013462987 0.1)
(-0.03849120998 1.013829901 0.1)
(0.004755328081 1.014156238 0.1)
(-0.1246654723 1.013080605 0.1)
(0.1342660662 -1.012693502 0.1)
(0.1337830789 -0.9638279561 0.1)
(0.176898126 -0.9635785675 0.1)
(0.04741946121 -0.9644549774 0.1)
(0.08980652559 -0.9122817415 0.1)
(0.08873984505 -0.8580430317 0.1)
(0.0875211366 -0.8015238471 0.1)
(0.0444058978 -0.8028920158 0.1)
(0.001318861294 -0.8031979021 0.1)
(0.08499777256 -0.6838090241 0.1)
(0.08387252725 -0.6237045616 0.1)
(0.08293790819 -0.5635640077 0.1)
(0.03978417013 -0.5649600248 0.1)
(-0.003306174797 -0.5654481639 0.1)
(0.08184215068 -0.4455735153 0.1)
(0.08173417468 -0.3888332212 0.1)
(0.08192096589 -0.3342311149 0.1)
(0.03860290741 -0.3343739414 0.1)
(-0.004702912542 -0.3343352225 0.1)
(0.05106284319 0.3558889775 0.1)
(0.05160723533 0.3786705678 0.1)
(0.0297748526 0.3790245654 0.1)
(0.007961840716 0.3793831569 0.1)
(0.09928029692 0.5574900327 0.1)
(0.09996467285 0.5979573396 0.1)
(0.05637180481 0.5977853496 0.1)
(0.01306231086 0.5975149215 0.1)
(0.1003814317 0.6716039938 0.1)
(0.1001359361 0.7054625471 0.1)
(0.09959543268 0.7379491405 0.1)
(0.05584575019 0.735796811 0.1)
(0.01248082426 0.7348562783 0.1)
(0.09776390298 0.8009745132 0.1)
(0.09660389722 0.832700649 0.1)
(0.09542571851 0.8653383597 0.1)
(0.05182067159 0.8628743108 0.1)
(0.00830073593 0.8620753733 0.1)
(0.1352522843 0.9741841051 0.1)
(0.09145222411 1.014947779 0.1)
(0.1345791028 1.015079174 0.1)
(0.1777135357 1.015068212 0.1)
(0.04819782411 1.014668483 0.1)
(0.3066152922 -1.012381597 0.1)
(0.306072449 -0.9630550293 0.1)
(0.3490849856 -0.9628615926 0.1)
(0.2199870909 -0.9633979914 0.1)
(0.2621793979 -0.9111877791 0.1)
(0.2610754242 -0.856677677 0.1)
(0.2598274654 -0.8000907961 0.1)
(0.2168008137 -0.8003904662 0.1)
(0.1737414103 -0.8007821056 0.1)
(0.2572879749 -0.6825782122 0.1)
(0.2561729568 -0.6227495712 0.1)
(0.2552611568 -0.5629881655 0.1)
(0.2122300418 -0.5630293303 0.1)
(0.1691647461 -0.5631820829 0.1)
(0.2542357806 -0.4460108417 0.1)
(0.2541724435 -0.3898710673 0.1)
(0.2544082438 -0.3359053537 0.1)
(0.2113460834 -0.3354064081 0.1)
(0.1682383245 -0.3349642213 0.1)
(0.2248468897 0.3524422537 0.1)
(0.2253320329 0.3751840807 0.1)
(0.20363106 0.375651341 0.1)
(0.1819359177 0.3761104771 0.1)
(0.2724210077 0.554813997 0.1)
(0.2730685552 0.5960987408 0.1)
(0.2297574476 0.5969197123 0.1)
(0.1864450363 0.5974570014 0.1)
(0.2735454706 0.671135714 0.1)
(0.2733304699 0.7055566304 0.1)
(0.2728120935 0.738495274 0.1)
(0.2295020169 0.7388674353 0.1)
(0.1861491885 0.7386310936 0.1)
(0.2709865052 0.8021314723 0.1)
(0.2697859067 0.8339748037 0.1)
(0.2684900779 0.8666219209 0.1)
(0.225189359 0.8666513778 0.1)
(0.1818345339 0.8661192569 0.1)
(0.3081883654 0.9742733568 0.1)
(0.2642405937 1.015207117 0.1)
(0.3074623696 1.015031803 0.1)
(0.3506128642 1.014716931 0.1)
(0.2209800158 1.015223769 0.1)
(0.4787320083 -1.011959392 0.1)
(0.4781226562 -0.9621482432 0.1)
(0.5211433095 -0.9619152527 0.1)
(0.3920878681 -0.9626277324 0.1)
(0.4341854151 -0.910058919 0.1)
(0.433040006 -0.8554068256 0.1)
(0.431763948 -0.798796368 0.1)
(0.3887849979 -0.7991740221 0.1)
(0.3458152847 -0.7995332707 0.1)
(0.4292064873 -0.6815940847 0.1)
(0.4281015968 -0.622085723 0.1)
(0.4272075351 -0.5627387375 0.1)
(0.3842255296 -0.5628605381 0.1)
(0.3412525034 -0.5629620518 0.1)
(0.4262401489 -0.4467987521 0.1)
(0.4262105754 -0.391237638 0.1)
(0.4264819678 -0.3378627403 0.1)
(0.3834617845 -0.3373993117 0.1)
(0.3404558163 -0.3369306673 0.1)
(0.398107031 0.3484394196 0.1)
(0.3985626131 0.3711548621 0.1)
(0.3769687729 0.3716748822 0.1)
(0.3553519798 0.3721973853 0.1)
(0.4452533612 0.5499331563 0.1)
(0.4458303134 0.590757152 0.1)
(0.4026703889 0.5924155631 0.1)
(0.3595472599 0.5937121656 0.1)
(0.4461280825 0.6647091178 0.1)
(0.4458195945 0.6989725031 0.1)
(0.4452472868 0.7328853886 0.1)
(0.4022483388 0.7349719597 0.1)
(0.3591862568 0.7361308506 0.1)
(0.4433464338 0.7974038738 0.1)
(0.4421450208 0.8298262017 0.1)
(0.4408620735 0.863098133 0.1)
(0.3978766607 0.8643983721 0.1)
(0.3548209048 0.8650557102 0.1)
(0.4805061901 0.9719495004 0.1)
(0.4367685336 1.014170559 0.1)
(0.4798721577 1.013583819 0.1)
(0.5229040395 1.013145818 0.1)
(0.3936995542 1.014517174 0.1)
(0.6508250463 -1.011273558 0.1)
(0.6501335914 -0.9610103286 0.1)
(0.6931562467 -0.9608921191 0.1)
(0.5641594208 -0.9616701796 0.1)
(0.6061967723 -0.9088398005 0.1)
(0.6050078991 -0.8540406911 0.1)
(0.6037041534 -0.7974079047 0.1)
(0.5607257717 -0.7977527981 0.1)
(0.5177427506 -0.7981110457 0.1)
(0.6011333303 -0.680530722 0.1)
(0.6000414323 -0.6213541348 0.1)
(0.5991707896 -0.5624367959 0.1)
(0.556186594 -0.562504791 0.1)
(0.5131981051 -0.5625897833 0.1)
(0.5982722174 -0.4475640723 0.1)
(0.5982831179 -0.3925974648 0.1)
(0.5985947182 -0.3398240973 0.1)
(0.5555728733 -0.3393252776 0.1)
(0.5125445806 -0.3388383554 0.1)
(0.5707623073 0.3440212081 0.1)
(0.5711945582 0.3667211376 0.1)
(0.5496416761 0.3672863067 0.1)
(0.528063157 0.3678690186 0.1)
(0.6175125425 0.5431713286 0.1)
(0.6179687177 0.5827907851 0.1)
(0.5749805727 0.5849380059 0.1)
(0.5319323198 0.5872342004 0.1)
(0.6180532065 0.6555883218 0.1)
(0.6176607255 0.6895395555 0.1)
(0.6169885927 0.7224860484 0.1)
(0.5742070637 0.7262017521 0.1)
(0.531243861 0.7285097119 0.1)
(0.6150805378 0.7885748316 0.1)
(0.6138873677 0.8218692535 0.1)
(0.6126244326 0.8561840251 0.1)
(0.5697178817 0.8581396977 0.1)
(0.5267816562 0.8595334125 0.1)
(0.6524511988 0.9687209904 0.1)
(0.6089702763 1.012414958 0.1)
(0.6520268996 1.011856126 0.1)
(0.695068771 1.011567487 0.1)
(0.5659396396 1.012818096 0.1)
(0.8228486697 -1.010436239 0.1)
(0.8220654222 -0.9596879058 0.1)
(0.8650883214 -0.9595922205 0.1)
(0.7361528864 -0.9605946712 0.1)
(0.7781952583 -0.9080413562 0.1)
(0.7769781056 -0.853231714 0.1)
(0.7755198629 -0.7957222297 0.1)
(0.7325800254 -0.7961888493 0.1)
(0.6896211734 -0.7966267849 0.1)
(0.7729403342 -0.6791728159 0.1)
(0.7718660016 -0.6203509034 0.1)
(0.7710251834 -0.5618960203 0.1)
(0.7280728764 -0.5620690105 0.1)
(0.6851041541 -0.5622181833 0.1)
(0.7702127345 -0.4481889026 0.1)
(0.7702728629 -0.3938745297 0.1)
(0.7706351163 -0.3417627537 0.1)
(0.72763158 -0.3412800799 0.1)
(0.6846130961 -0.3407980831 0.1)
(0.7429747907 0.3390941917 0.1)
(0.7893629492 0.5342601267 0.1)
(0.7896745922 0.5725565435 0.1)
(0.7467991924 0.5754644365 0.1)
(0.7038678105 0.5778289072 0.1)
(0.7894927021 0.6437597488 0.1)
(0.7889871291 0.6774706223 0.1)
(0.7882275402 0.7105150029 0.1)
(0.7454809895 0.7140633666 0.1)
(0.7026994751 0.7175892636 0.1)
(0.786167907 0.7768429556 0.1)
(0.7849813368 0.8111017266 0.1)
(0.7838173411 0.8467932711 0.1)
(0.7410470552 0.8492314261 0.1)
(0.6983030272 0.8520631373 0.1)
(0.8243540453 0.9657792024 0.1)
(0.7811565295 1.010993182 0.1)
(0.824205 1.01078 0.1)
(0.867232 1.01058 0.1)
(0.7380997842 1.011261309 0.1)
(0.9958114462 -1.007643665 0.1)
(0.9948237588 -0.9563601968 0.1)
(1.037307391 -0.9530765649 0.1)
(0.9080032371 -0.958872633 0.1)
(0.9499523601 -0.9050519927 0.1)
(0.9486500588 -0.8497649094 0.1)
(0.9472786607 -0.7929768667 0.1)
(0.9042663454 -0.793774322 0.1)
(0.861463369 -0.7952081825 0.1)
(0.9447076142 -0.6767876517 0.1)
(0.94367202 -0.6184203827 0.1)
(0.9428869699 -0.5605772318 0.1)
(0.8998855606 -0.561387583 0.1)
(0.8569261456 -0.561487368 0.1)
(0.9422178309 -0.4484335499 0.1)
(0.9423550224 -0.3949915423 0.1)
(0.9427919306 -0.3437490427 0.1)
(0.8996587366 -0.343267006 0.1)
(0.8566514372 -0.3427497844 0.1)
(0.8836903076 -0.05360443161 0.1)
(0.8839157536 -0.04231067519 0.1)
(0.8731475026 -0.04211428182 0.1)
(0.8624061615 -0.04192245512 0.1)
(0.8901551577 0.1418949715 0.1)
(0.8902780627 0.1530213463 0.1)
(0.879575602 0.1534925175 0.1)
(0.9579698861 0.3542983274 0.1)
(0.9588287099 0.3993847844 0.1)
(0.9160039344 0.4013099203 0.1)
(0.9603448191 0.4834405312 0.1)
(0.9607203289 0.5220005297 0.1)
(0.9608561417 0.5587424641 0.1)
(0.9180804449 0.5623144883 0.1)
(0.8753286848 0.5662249999 0.1)
(0.9603848843 0.6282053975 0.1)
(0.959730578 0.6616777199 0.1)
(0.9590147507 0.6963224515 0.1)
(0.9163857106 0.70039085 0.1)
(0.8736846801 0.7037873956 0.1)
(0.9570287264 0.7653382308 0.1)
(0.9559614124 0.8013457267 0.1)
(0.9549677707 0.8389778015 0.1)
(0.9122043319 0.8409692512 0.1)
(0.86939255 0.8426787937 0.1)
(0.996255 0.964048 0.1)
(0.953252 1.01014 0.1)
(0.996254 1.00991 0.1)
(1.03926 1.00967 0.1)
(0.91025 1.01035 0.1)
(1.167593081 -1.005733723 0.1)
(1.166815732 -0.9552566481 0.1)
(1.210054479 -0.9564019481 0.1)
(1.080424636 -0.9535443181 0.1)
(1.122497194 -0.9012663218 0.1)
(1.121226658 -0.8464200428 0.1)
(1.119886541 -0.7901276959 0.1)
(1.076619236 -0.7884375159 0.1)
(1.033450351 -0.7873359673 0.1)
(1.117368037 -0.6749920097 0.1)
(1.116349777 -0.6171254921 0.1)
(1.115574872 -0.5597201574 0.1)
(1.072300092 -0.5571950929 0.1)
(1.029130636 -0.5554737287 0.1)
(1.1148963 -0.4481266885 0.1)
(1.115014896 -0.3947215129 0.1)
(1.115422044 -0.3433009686 0.1)
(1.072278226 -0.3413282255 0.1)
(1.029188993 -0.3398712549 0.1)
(1.082090756 0.1434263997 0.1)
(1.082572466 0.1663379364 0.1)
(1.061057221 0.1667902895 0.1)
(1.129441534 0.347746444 0.1)
(1.130257427 0.3903940174 0.1)
(1.08725226 0.3923166841 0.1)
(1.044269941 0.3945428049 0.1)
(1.131352627 0.4693663815 0.1)
(1.131556463 0.5061090764 0.1)
(1.131571674 0.5423360618 0.1)
(1.089069026 0.5471375768 0.1)
(1.046275501 0.5509379275 0.1)
(1.130850617 0.6118151788 0.1)
(1.130367753 0.6464157351 0.1)
(1.129485049 0.6809534993 0.1)
(1.086873 0.6845433939 0.1)
(1.044326571 0.6889018381 0.1)
(1.127561801 0.7526662351 0.1)
(1.126693699 0.7908221431 0.1)
(1.125982366 0.8308939349 0.1)
(1.083251419 0.8329224132 0.1)
(1.04045252 0.8345682105 0.1)
(1.16822 0.962976 0.1)
(1.12529 1.00921 0.1)
(1.16826 1.00895 0.1)
(1.21123 1.00864 0.1)
(1.08228 1.00943 0.1)
(1.340232194 -1.008072247 0.1)
(1.339862341 -0.9601421144 0.1)
(1.383097434 -0.9611972654 0.1)
(1.253324547 -0.9576527658 0.1)
(1.29580109 -0.908197505 0.1)
(1.294799952 -0.8556437883 0.1)
(1.293677156 -0.8015604229 0.1)
(1.250143901 -0.7981606283 0.1)
(1.206652823 -0.7950608948 0.1)
(1.291406436 -0.6902212561 0.1)
(1.290409708 -0.6337558076 0.1)
(1.289586864 -0.5773001389 0.1)
(1.245955068 -0.5718707139 0.1)
(1.202399238 -0.5670923654 0.1)
(1.288618144 -0.4659266876 0.1)
(1.288508961 -0.4116508751 0.1)
(1.288647482 -0.3586302339 0.1)
(1.245224255 -0.3534755592 0.1)
(1.201878258 -0.3492565932 0.1)
(1.289576754 -0.2567882277 0.1)
(1.29029716 -0.2079283053 0.1)
(1.291132439 -0.1602494618 0.1)
(1.248024875 -0.1581259404 0.1)
(1.292989242 -0.06734053492 0.1)
(1.293951212 -0.02148006895 0.1)
(1.294914633 0.02434310431 0.1)
(1.251874145 0.02524802065 0.1)
(1.296841606 0.1159654049 0.1)
(1.29780398 0.1615111136 0.1)
(1.298755268 0.206488182 0.1)
(1.25572734 0.2084975283 0.1)
(1.300533428 0.2935221196 0.1)
(1.301294894 0.3351327198 0.1)
(1.301921862 0.3753295383 0.1)
(1.259072341 0.3804216623 0.1)
(1.216168594 0.3845716134 0.1)
(1.302639346 0.4516721318 0.1)
(1.302683564 0.4881455955 0.1)
(1.302507064 0.5238395686 0.1)
(1.259850169 0.5292876039 0.1)
(1.217125883 0.5340766032 0.1)
(1.301547127 0.5942945157 0.1)
(1.300830464 0.6298392372 0.1)
(1.300025005 0.6661356822 0.1)
(1.25734753 0.6696096077 0.1)
(1.21461932 0.6727725765 0.1)
(1.298424561 0.742493212 0.1)
(1.297785 0.7832059662 0.1)
(1.297358959 0.8259373799 0.1)
(1.254406438 0.8266074874 0.1)
(1.211526161 0.8278515938 0.1)
(1.34028 0.9625 0.1)
(1.29722 1.00833 0.1)
(1.34028 1.00833 0.1)
(1.38333 1.00833 0.1)
(1.25417 1.00833 0.1)
(1.5125 -1.00833 0.1)
(1.5125 -0.9625 0.1)
(1.55556 -0.9625 0.1)
(1.426299387 -0.9619964145 0.1)
(1.469192262 -0.9152335631 0.1)
(1.46869523 -0.8663003446 0.1)
(1.468009233 -0.8158182535 0.1)
(1.424444301 -0.8124175188 0.1)
(1.380846332 -0.8088155427 0.1)
(1.466357986 -0.711150009 0.1)
(1.465527561 -0.6575241221 0.1)
(1.464771708 -0.6034384008 0.1)
(1.420916236 -0.596517266 0.1)
(1.377081294 -0.5897484271 0.1)
(1.463655205 -0.4950728683 0.1)
(1.463350391 -0.4413312835 0.1)
(1.463231536 -0.3881793301 0.1)
(1.419473589 -0.379642586 0.1)
(1.375776244 -0.3717796096 0.1)
(1.463537421 -0.2842541893 0.1)
(1.463933881 -0.233650501 0.1)
(1.464464325 -0.1839882957 0.1)
(1.421008852 -0.1759217299 0.1)
(1.377623978 -0.1691783323 0.1)
(1.465828031 -0.08737347566 0.1)
(1.466612587 -0.04032933211 0.1)
(1.46743578 0.005927508224 0.1)
(1.42424547 0.01329216073 0.1)
(1.381086107 0.01895056464 0.1)
(1.469117024 0.09611314566 0.1)
(1.469934862 0.1399950998 0.1)
(1.470708868 0.1830106742 0.1)
(1.427751457 0.1910387322 0.1)
(1.384767307 0.1977265858 0.1)
(1.472030086 0.266283257 0.1)
(1.472528338 0.3065254734 0.1)
(1.472888227 0.3458942427 0.1)
(1.430213889 0.3544273581 0.1)
(1.387491212 0.3622692186 0.1)
(1.473130741 0.4224880425 0.1)
(1.473002018 0.4600758868 0.1)
(1.472716016 0.4975080666 0.1)
(1.430214961 0.5044977192 0.1)
(1.387680916 0.5113211629 0.1)
(1.471770095 0.5730439012 0.1)
(1.47118825 0.611749591 0.1)
(1.470602935 0.6514776287 0.1)
(1.427956183 0.6549924542 0.1)
(1.38531512 0.6586998949 0.1)
(1.469672034 0.7350410105 0.1)
(1.469458228 0.7792931808 0.1)
(1.46944 0.825 0.1)
(1.42639 0.825 0.1)
(1.38333938 0.8250622846 0.1)
(1.5125 0.9625 0.1)
(1.46944 1.00833 0.1)
(1.5125 1.00833 0.1)
(1.55556 1.00833 0.1)
(1.42639 1.00833 0.1)
(1.68472 -1.00833 0.1)
(1.68472 -0.9625 0.1)
(1.72778 -0.9625 0.1)
(1.59861 -0.9625 0.1)
(1.64167 -0.916667 0.1)
(1.64167 -0.870833 0.1)
(1.641609682 -0.8246249922 0.1)
(1.598356061 -0.8234083267 0.1)
(1.554998415 -0.8214518715 0.1)
(1.64099465 -0.7286177783 0.1)
(1.640541292 -0.6791054937 0.1)
(1.640058663 -0.6288488983 0.1)
(1.596310472 -0.6232395318 0.1)
(1.552504215 -0.6170010491 0.1)
(1.639175715 -0.5269574122 0.1)
(1.638841552 -0.4757475921 0.1)
(1.638609097 -0.424623638 0.1)
(1.594761813 -0.4156861141 0.1)
(1.550908194 -0.4064525982 0.1)
(1.638490097 -0.3233072768 0.1)
(1.638605352 -0.2733832372 0.1)
(1.638827961 -0.2240866188 0.1)
(1.595194443 -0.2135328794 0.1)
(1.551584538 -0.203104353 0.1)
(1.63954045 -0.1276336775 0.1)
(1.639995471 -0.08055973799 0.1)
(1.640490012 -0.03428165355 0.1)
(1.59720218 -0.02334475168 0.1)
(1.553932635 -0.01274360553 0.1)
(1.641513221 0.05587371735 0.1)
(1.641999264 0.09977239978 0.1)
(1.64244061 0.142921034 0.1)
(1.599518855 0.1534917594 0.1)
(1.556600122 0.1639254436 0.1)
(1.643114747 0.2271782302 0.1)
(1.643317155 0.2684485642 0.1)
(1.643416413 0.3092947279 0.1)
(1.600788408 0.3182942031 0.1)
(1.558174544 0.3275753314 0.1)
(1.643300491 0.39032373 0.1)
(1.643101174 0.4308671013 0.1)
(1.642831772 0.4717005938 0.1)
(1.600253134 0.4774242341 0.1)
(1.557728008 0.4837684083 0.1)
(1.642204433 0.5550975744 0.1)
(1.641925426 0.5980780624 0.1)
(1.6417312 0.6421658721 0.1)
(1.598834345 0.6435114543 0.1)
(1.55603389 0.6455967014 0.1)
(1.64167 0.733333 0.1)
(1.64167 0.779167 0.1)
(1.64167 0.825 0.1)
(1.59861 0.825 0.1)
(1.55556 0.825 0.1)
(1.68472 0.9625 0.1)
(1.64167 1.00833 0.1)
(1.68472 1.00833 0.1)
(1.72778 1.00833 0.1)
(1.59861 1.00833 0.1)
(1.85694 -1.00833 0.1)
(1.85694 -0.9625 0.1)
(1.9 -0.9625 0.1)
(1.77083 -0.9625 0.1)
(1.81389 -0.916667 0.1)
(1.81389 -0.870833 0.1)
(1.81389 -0.825 0.1)
(1.77083 -0.825 0.1)
(1.72778 -0.825 0.1)
(1.81389 -0.733333 0.1)
(1.81389 -0.6875 0.1)
(1.81386388 -0.6414656376 0.1)
(1.770625013 -0.6400736345 0.1)
(1.727238702 -0.6374258924 0.1)
(1.813618514 -0.5475641737 0.1)
(1.813458042 -0.4999463742 0.1)
(1.813306092 -0.452070718 0.1)
(1.769774557 -0.4469336926 0.1)
(1.726140094 -0.4405022558 0.1)
(1.813096214 -0.356089702 0.1)
(1.813058613 -0.3082256785 0.1)
(1.813070786 -0.2605865829 0.1)
(1.769583588 -0.252963426 0.1)
(1.726042337 -0.2441398001 0.1)
(1.813232503 -0.1662952632 0.1)
(1.813367495 -0.1197570322 0.1)
(1.81352476 -0.07366766712 0.1)
(1.770291197 -0.06519232971 0.1)
(1.727042937 -0.05558025264 0.1)
(1.81385682 0.01714102534 0.1)
(1.814006662 0.06189517662 0.1)
(1.814130582 0.1062700938 0.1)
(1.771189058 0.1139395491 0.1)
(1.728270603 0.122805124 0.1)
(1.814267896 0.1941535573 0.1)
(1.814273105 0.237843039 0.1)
(1.814237537 0.2815094229 0.1)
(1.771449632 0.286738518 0.1)
(1.728732535 0.2932591172 0.1)
(1.814078621 0.3692925224 0.1)
(1.813986078 0.4136854091 0.1)
(1.813914174 0.4586008751 0.1)
(1.770989023 0.4601111839 0.1)
(1.72818294 0.4628809527 0.1)
(1.81389 0.55 0.1)
(1.81389 0.595833 0.1)
(1.81389 0.641667 0.1)
(1.77083 0.641667 0.1)
(1.72778 0.641667 0.1)
(1.81389 0.733333 0.1)
(1.81389 0.779167 0.1)
(1.81389 0.825 0.1)
(1.77083 0.825 0.1)
(1.72778 0.825 0.1)
(1.85694 0.9625 0.1)
(1.81389 1.00833 0.1)
(1.85694 1.00833 0.1)
(1.9 1.00833 0.1)
(1.77083 1.00833 0.1)
(2.02917 -1.00833 0.1)
(2.02917 -0.9625 0.1)
(2.07222 -0.9625 0.1)
(1.94306 -0.9625 0.1)
(1.98611 -0.916667 0.1)
(1.98611 -0.870833 0.1)
(1.98611 -0.825 0.1)
(1.94306 -0.825 0.1)
(1.9 -0.825 0.1)
(1.98611 -0.733333 0.1)
(1.98611 -0.6875 0.1)
(1.98611 -0.641667 0.1)
(1.94306 -0.641667 0.1)
(1.9 -0.641667 0.1)
(1.98611 -0.55 0.1)
(1.98611 -0.504167 0.1)
(1.98611 -0.458333 0.1)
(1.94306 -0.458333 0.1)
(1.89995314 -0.4578381669 0.1)
(1.98611 -0.366667 0.1)
(1.98611 -0.320833 0.1)
(1.986109994 -0.2749999045 0.1)
(1.943005716 -0.2740627587 0.1)
(1.899786964 -0.2712953118 0.1)
(1.986106399 -0.1832416579 0.1)
(1.986105739 -0.1373576331 0.1)
(1.986106659 -0.09150326612 0.1)
(1.94302133 -0.08976374213 0.1)
(1.899888036 -0.08614151209 0.1)
(1.986109857 9.823346423e-05 0.1)
(1.986110309 0.04587178193 0.1)
(1.986110018 0.09166771687 0.1)
(1.94307704 0.09264916588 0.1)
(1.900064924 0.09546395707 0.1)
(1.98611 0.183333 0.1)
(1.98611 0.229167 0.1)
(1.98611 0.275 0.1)
(1.94306 0.275 0.1)
(1.900030611 0.2755615532 0.1)
(1.98611 0.366667 0.1)
(1.98611 0.4125 0.1)
(1.98611 0.458333 0.1)
(1.94306 0.458333 0.1)
(1.9 0.458333 0.1)
(1.98611 0.55 0.1)
(1.98611 0.595833 0.1)
(1.98611 0.641667 0.1)
(1.94306 0.641667 0.1)
(1.9 0.641667 0.1)
(1.98611 0.733333 0.1)
(1.98611 0.779167 0.1)
(1.98611 0.825 0.1)
(1.94306 0.825 0.1)
(1.9 0.825 0.1)
(2.02917 0.9625 0.1)
(1.98611 1.00833 0.1)
(2.02917 1.00833 0.1)
(2.07222 1.00833 0.1)
(1.94306 1.00833 0.1)
(2.20139 -1.00833 0.1)
(2.20139 -0.9625 0.1)
(2.24444 -0.9625 0.1)
(2.11528 -0.9625 0.1)
(2.15833 -0.916667 0.1)
(2.15833 -0.870833 0.1)
(2.15833 -0.825 0.1)
(2.11528 -0.825 0.1)
(2.07222 -0.825 0.1)
(2.15833 -0.733333 0.1)
(2.15833 -0.6875 0.1)
(2.15833 -0.641667 0.1)
(2.11528 -0.641667 0.1)
(2.07222 -0.641667 0.1)
(2.15833 -0.55 0.1)
(2.15833 -0.504167 0.1)
(2.15833 -0.458333 0.1)
(2.11528 -0.458333 0.1)
(2.07222 -0.458333 0.1)
(2.15833 -0.366667 0.1)
(2.15833 -0.320833 0.1)
(2.15833 -0.275 0.1)
(2.11528 -0.275 0.1)
(2.07222 -0.275 0.1)
(2.15833 -0.183333 0.1)
(2.15833 -0.1375 0.1)
(2.15833 -0.0916667 0.1)
(2.11528 -0.0916667 0.1)
(2.07222 -0.0916667 0.1)
(2.15833 0 0.1)
(2.15833 0.0458333 0.1)
(2.15833 0.0916667 0.1)
(2.11528 0.0916667 0.1)
(2.07222 0.0916667 0.1)
(2.15833 0.183333 0.1)
(2.15833 0.229167 0.1)
(2.15833 0.275 0.1)
(2.11528 0.275 0.1)
(2.07222 0.275 0.1)
(2.15833 0.366667 0.1)
(2.15833 0.4125 0.1)
(2.15833 0.458333 0.1)
(2.11528 0.458333 0.1)
(2.07222 0.458333 0.1)
(2.15833 0.55 0.1)
(2.15833 0.595833 0.1)
(2.15833 0.641667 0.1)
(2.11528 0.641667 0.1)
(2.07222 0.641667 0.1)
(2.15833 0.733333 0.1)
(2.15833 0.779167 0.1)
(2.15833 0.825 0.1)
(2.11528 0.825 0.1)
(2.07222 0.825 0.1)
(2.20139 0.9625 0.1)
(2.15833 1.00833 0.1)
(2.20139 1.00833 0.1)
(2.24444 1.00833 0.1)
(2.11528 1.00833 0.1)
(2.37361 -1.00833 0.1)
(2.37361 -0.9625 0.1)
(2.41667 -0.9625 0.1)
(2.2875 -0.9625 0.1)
(2.33056 -0.916667 0.1)
(2.33056 -0.870833 0.1)
(2.33056 -0.825 0.1)
(2.2875 -0.825 0.1)
(2.24444 -0.825 0.1)
(2.33056 -0.733333 0.1)
(2.33056 -0.6875 0.1)
(2.33056 -0.641667 0.1)
(2.2875 -0.641667 0.1)
(2.24444 -0.641667 0.1)
(2.33056 -0.55 0.1)
(2.33056 -0.504167 0.1)
(2.33056 -0.458333 0.1)
(2.2875 -0.458333 0.1)
(2.24444 -0.458333 0.1)
(2.33056 -0.366667 0.1)
(2.33056 -0.320833 0.1)
(2.33056 -0.275 0.1)
(2.2875 -0.275 0.1)
(2.24444 -0.275 0.1)
(2.33056 -0.183333 0.1)
(2.33056 -0.1375 0.1)
(2.33056 -0.0916667 0.1)
(2.2875 -0.0916667 0.1)
(2.24444 -0.0916667 0.1)
(2.33056 -9.25186e-18 0.1)
(2.33056 0.0458333 0.1)
(2.33056 0.0916667 0.1)
(2.2875 0.0916667 0.1)
(2.24444 0.0916667 0.1)
(2.33056 0.183333 0.1)
(2.33056 0.229167 0.1)
(2.33056 0.275 0.1)
(2.2875 0.275 0.1)
(2.24444 0.275 0.1)
(2.33056 0.366667 0.1)
(2.33056 0.4125 0.1)
(2.33056 0.458333 0.1)
(2.2875 0.458333 0.1)
(2.24444 0.458333 0.1)
(2.33056 0.55 0.1)
(2.33056 0.595833 0.1)
(2.33056 0.641667 0.1)
(2.2875 0.641667 0.1)
(2.24444 0.641667 0.1)
(2.33056 0.733333 0.1)
(2.33056 0.779167 0.1)
(2.33056 0.825 0.1)
(2.2875 0.825 0.1)
(2.24444 0.825 0.1)
(2.37361 0.9625 0.1)
(2.33056 1.00833 0.1)
(2.37361 1.00833 0.1)
(2.41667 1.00833 0.1)
(2.2875 1.00833 0.1)
(2.54583 -1.00833 0.1)
(2.54583 -0.9625 0.1)
(2.58889 -0.9625 0.1)
(2.45972 -0.9625 0.1)
(2.50278 -0.916667 0.1)
(2.50278 -0.870833 0.1)
(2.50278 -0.825 0.1)
(2.45972 -0.825 0.1)
(2.41667 -0.825 0.1)
(2.50278 -0.733333 0.1)
(2.50278 -0.6875 0.1)
(2.50278 -0.641667 0.1)
(2.45972 -0.641667 0.1)
(2.41667 -0.641667 0.1)
(2.50278 -0.55 0.1)
(2.50278 -0.504167 0.1)
(2.50278 -0.458333 0.1)
(2.45972 -0.458333 0.1)
(2.41667 -0.458333 0.1)
(2.50278 -0.366667 0.1)
(2.50278 -0.320833 0.1)
(2.50278 -0.275 0.1)
(2.45972 -0.275 0.1)
(2.41667 -0.275 0.1)
(2.50278 -0.183333 0.1)
(2.50278 -0.1375 0.1)
(2.50278 -0.0916667 0.1)
(2.45972 -0.0916667 0.1)
(2.41667 -0.0916667 0.1)
(2.50278 -1.85037e-17 0.1)
(2.50278 0.0458333 0.1)
(2.50278 0.0916667 0.1)
(2.45972 0.0916667 0.1)
(2.41667 0.0916667 0.1)
(2.50278 0.183333 0.1)
(2.50278 0.229167 0.1)
(2.50278 0.275 0.1)
(2.45972 0.275 0.1)
(2.41667 0.275 0.1)
(2.50278 0.366667 0.1)
(2.50278 0.4125 0.1)
(2.50278 0.458333 0.1)
(2.45972 0.458333 0.1)
(2.41667 0.458333 0.1)
(2.50278 0.55 0.1)
(2.50278 0.595833 0.1)
(2.50278 0.641667 0.1)
(2.45972 0.641667 0.1)
(2.41667 0.641667 0.1)
(2.50278 0.733333 0.1)
(2.50278 0.779167 0.1)
(2.50278 0.825 0.1)
(2.45972 0.825 0.1)
(2.41667 0.825 0.1)
(2.54583 0.9625 0.1)
(2.50278 1.00833 0.1)
(2.54583 1.00833 0.1)
(2.58889 1.00833 0.1)
(2.45972 1.00833 0.1)
(2.71806 -1.00833 0.1)
(2.71806 -0.9625 0.1)
(2.76111 -0.9625 0.1)
(2.63194 -0.9625 0.1)
(2.675 -0.916667 0.1)
(2.675 -0.870833 0.1)
(2.675 -0.825 0.1)
(2.63194 -0.825 0.1)
(2.58889 -0.825 0.1)
(2.675 -0.733333 0.1)
(2.675 -0.6875 0.1)
(2.675 -0.641667 0.1)
(2.63194 -0.641667 0.1)
(2.58889 -0.641667 0.1)
(2.675 -0.55 0.1)
(2.675 -0.504167 0.1)
(2.675 -0.458333 0.1)
(2.63194 -0.458333 0.1)
(2.58889 -0.458333 0.1)
(2.675 -0.366667 0.1)
(2.675 -0.320833 0.1)
(2.675 -0.275 0.1)
(2.63194 -0.275 0.1)
(2.58889 -0.275 0.1)
(2.675 -0.183333 0.1)
(2.675 -0.1375 0.1)
(2.675 -0.0916667 0.1)
(2.63194 -0.0916667 0.1)
(2.58889 -0.0916667 0.1)
(2.675 0 0.1)
(2.675 0.0458333 0.1)
(2.675 0.0916667 0.1)
(2.63194 0.0916667 0.1)
(2.58889 0.0916667 0.1)
(2.675 0.183333 0.1)
(2.675 0.229167 0.1)
(2.675 0.275 0.1)
(2.63194 0.275 0.1)
(2.58889 0.275 0.1)
(2.675 0.366667 0.1)
(2.675 0.4125 0.1)
(2.675 0.458333 0.1)
(2.63194 0.458333 0.1)
(2.58889 0.458333 0.1)
(2.675 0.55 0.1)
(2.675 0.595833 0.1)
(2.675 0.641667 0.1)
(2.63194 0.641667 0.1)
(2.58889 0.641667 0.1)
(2.675 0.733333 0.1)
(2.675 0.779167 0.1)
(2.675 0.825 0.1)
(2.63194 0.825 0.1)
(2.58889 0.825 0.1)
(2.71806 0.9625 0.1)
(2.675 1.00833 0.1)
(2.71806 1.00833 0.1)
(2.76111 1.00833 0.1)
(2.63194 1.00833 0.1)
(2.89028 -1.00833 0.1)
(2.89028 -0.9625 0.1)
(2.93333 -0.9625 0.1)
(2.80417 -0.9625 0.1)
(2.84722 -0.916667 0.1)
(2.84722 -0.870833 0.1)
(2.84722 -0.825 0.1)
(2.80417 -0.825 0.1)
(2.76111 -0.825 0.1)
(2.84722 -0.733333 0.1)
(2.84722 -0.6875 0.1)
(2.84722 -0.641667 0.1)
(2.80417 -0.641667 0.1)
(2.76111 -0.641667 0.1)
(2.84722 -0.55 0.1)
(2.84722 -0.504167 0.1)
(2.84722 -0.458333 0.1)
(2.80417 -0.458333 0.1)
(2.76111 -0.458333 0.1)
(2.84722 -0.366667 0.1)
(2.84722 -0.320833 0.1)
(2.84722 -0.275 0.1)
(2.80417 -0.275 0.1)
(2.76111 -0.275 0.1)
(2.84722 -0.183333 0.1)
(2.84722 -0.1375 0.1)
(2.84722 -0.0916667 0.1)
(2.80417 -0.0916667 0.1)
(2.76111 -0.0916667 0.1)
(2.84722 1.85037e-17 0.1)
(2.84722 0.0458333 0.1)
(2.84722 0.0916667 0.1)
(2.80417 0.0916667 0.1)
(2.76111 0.0916667 0.1)
(2.84722 0.183333 0.1)
(2.84722 0.229167 0.1)
(2.84722 0.275 0.1)
(2.80417 0.275 0.1)
(2.76111 0.275 0.1)
(2.84722 0.366667 0.1)
(2.84722 0.4125 0.1)
(2.84722 0.458333 0.1)
(2.80417 0.458333 0.1)
(2.76111 0.458333 0.1)
(2.84722 0.55 0.1)
(2.84722 0.595833 0.1)
(2.84722 0.641667 0.1)
(2.80417 0.641667 0.1)
(2.76111 0.641667 0.1)
(2.84722 0.733333 0.1)
(2.84722 0.779167 0.1)
(2.84722 0.825 0.1)
(2.80417 0.825 0.1)
(2.76111 0.825 0.1)
(2.89028 0.9625 0.1)
(2.84722 1.00833 0.1)
(2.89028 1.00833 0.1)
(2.93333 1.00833 0.1)
(2.80417 1.00833 0.1)
(3.0625 -1.00833 0.1)
(3.0625 -0.9625 0.1)
(3.10556 -0.9625 0.1)
(2.97639 -0.9625 0.1)
(3.01944 -0.916667 0.1)
(3.01944 -0.870833 0.1)
(3.01944 -0.825 0.1)
(2.97639 -0.825 0.1)
(2.93333 -0.825 0.1)
(3.01944 -0.733333 0.1)
(3.01944 -0.6875 0.1)
(3.01944 -0.641667 0.1)
(2.97639 -0.641667 0.1)
(2.93333 -0.641667 0.1)
(3.01944 -0.55 0.1)
(3.01944 -0.504167 0.1)
(3.01944 -0.458333 0.1)
(2.97639 -0.458333 0.1)
(2.93333 -0.458333 0.1)
(3.01944 -0.366667 0.1)
(3.01944 -0.320833 0.1)
(3.01944 -0.275 0.1)
(2.97639 -0.275 0.1)
(2.93333 -0.275 0.1)
(3.01944 -0.183333 0.1)
(3.01944 -0.1375 0.1)
(3.01944 -0.0916667 0.1)
(2.97639 -0.0916667 0.1)
(2.93333 -0.0916667 0.1)
(3.01944 9.25186e-18 0.1)
(3.01944 0.0458333 0.1)
(3.01944 0.0916667 0.1)
(2.97639 0.0916667 0.1)
(2.93333 0.0916667 0.1)
(3.01944 0.183333 0.1)
(3.01944 0.229167 0.1)
(3.01944 0.275 0.1)
(2.97639 0.275 0.1)
(2.93333 0.275 0.1)
(3.01944 0.366667 0.1)
(3.01944 0.4125 0.1)
(3.01944 0.458333 0.1)
(2.97639 0.458333 0.1)
(2.93333 0.458333 0.1)
(3.01944 0.55 0.1)
(3.01944 0.595833 0.1)
(3.01944 0.641667 0.1)
(2.97639 0.641667 0.1)
(2.93333 0.641667 0.1)
(3.01944 0.733333 0.1)
(3.01944 0.779167 0.1)
(3.01944 0.825 0.1)
(2.97639 0.825 0.1)
(2.93333 0.825 0.1)
(3.0625 0.9625 0.1)
(3.01944 1.00833 0.1)
(3.0625 1.00833 0.1)
(3.10556 1.00833 0.1)
(2.97639 1.00833 0.1)
(3.23472 -1.00833 0.1)
(3.23472 -0.9625 0.1)
(3.27778 -0.9625 0.1)
(3.14861 -0.9625 0.1)
(3.19167 -0.916667 0.1)
(3.19167 -0.870833 0.1)
(3.19167 -0.825 0.1)
(3.14861 -0.825 0.1)
(3.10556 -0.825 0.1)
(3.19167 -0.733333 0.1)
(3.19167 -0.6875 0.1)
(3.19167 -0.641667 0.1)
(3.14861 -0.641667 0.1)
(3.10556 -0.641667 0.1)
(3.19167 -0.55 0.1)
(3.19167 -0.504167 0.1)
(3.19167 -0.458333 0.1)
(3.14861 -0.458333 0.1)
(3.10556 -0.458333 0.1)
(3.19167 -0.366667 0.1)
(3.19167 -0.320833 0.1)
(3.19167 -0.275 0.1)
(3.14861 -0.275 0.1)
(3.10556 -0.275 0.1)
(3.19167 -0.183333 0.1)
(3.19167 -0.1375 0.1)
(3.19167 -0.0916667 0.1)
(3.14861 -0.0916667 0.1)
(3.10556 -0.0916667 0.1)
(3.19167 0 0.1)
(3.19167 0.0458333 0.1)
(3.19167 0.0916667 0.1)
(3.14861 0.0916667 0.1)
(3.10556 0.0916667 0.1)
(3.19167 0.183333 0.1)
(3.19167 0.229167 0.1)
(3.19167 0.275 0.1)
(3.14861 0.275 0.1)
(3.10556 0.275 0.1)
(3.19167 0.366667 0.1)
(3.19167 0.4125 0.1)
(3.19167 0.458333 0.1)
(3.14861 0.458333 0.1)
(3.10556 0.458333 0.1)
(3.19167 0.55 0.1)
(3.19167 0.595833 0.1)
(3.19167 0.641667 0.1)
(3.14861 0.641667 0.1)
(3.10556 0.641667 0.1)
(3.19167 0.733333 0.1)
(3.19167 0.779167 0.1)
(3.19167 0.825 0.1)
(3.14861 0.825 0.1)
(3.10556 0.825 0.1)
(3.23472 0.9625 0.1)
(3.19167 1.00833 0.1)
(3.23472 1.00833 0.1)
(3.27778 1.00833 0.1)
(3.14861 1.00833 0.1)
(3.40694 -1.00833 0.1)
(3.40694 -0.9625 0.1)
(3.45 -0.9625 0.1)
(3.32083 -0.9625 0.1)
(3.36389 -0.916667 0.1)
(3.36389 -0.870833 0.1)
(3.36389 -0.825 0.1)
(3.32083 -0.825 0.1)
(3.27778 -0.825 0.1)
(3.36389 -0.733333 0.1)
(3.36389 -0.6875 0.1)
(3.36389 -0.641667 0.1)
(3.32083 -0.641667 0.1)
(3.27778 -0.641667 0.1)
(3.36389 -0.55 0.1)
(3.36389 -0.504167 0.1)
(3.36389 -0.458333 0.1)
(3.32083 -0.458333 0.1)
(3.27778 -0.458333 0.1)
(3.36389 -0.366667 0.1)
(3.36389 -0.320833 0.1)
(3.36389 -0.275 0.1)
(3.32083 -0.275 0.1)
(3.27778 -0.275 0.1)
(3.36389 -0.183333 0.1)
(3.36389 -0.1375 0.1)
(3.36389 -0.0916667 0.1)
(3.32083 -0.0916667 0.1)
(3.27778 -0.0916667 0.1)
(3.36389 0 0.1)
(3.36389 0.0458333 0.1)
(3.36389 0.0916667 0.1)
(3.32083 0.0916667 0.1)
(3.27778 0.0916667 0.1)
(3.36389 0.183333 0.1)
(3.36389 0.229167 0.1)
(3.36389 0.275 0.1)
(3.32083 0.275 0.1)
(3.27778 0.275 0.1)
(3.36389 0.366667 0.1)
(3.36389 0.4125 0.1)
(3.36389 0.458333 0.1)
(3.32083 0.458333 0.1)
(3.27778 0.458333 0.1)
(3.36389 0.55 0.1)
(3.36389 0.595833 0.1)
(3.36389 0.641667 0.1)
(3.32083 0.641667 0.1)
(3.27778 0.641667 0.1)
(3.36389 0.733333 0.1)
(3.36389 0.779167 0.1)
(3.36389 0.825 0.1)
(3.32083 0.825 0.1)
(3.27778 0.825 0.1)
(3.40694 0.9625 0.1)
(3.36389 1.00833 0.1)
(3.40694 1.00833 0.1)
(3.45 1.00833 0.1)
(3.32083 1.00833 0.1)
(3.57917 -1.00833 0.1)
(3.57917 -0.9625 0.1)
(3.62222 -0.9625 0.1)
(3.49306 -0.9625 0.1)
(3.53611 -0.916667 0.1)
(3.53611 -0.870833 0.1)
(3.53611 -0.825 0.1)
(3.49306 -0.825 0.1)
(3.45 -0.825 0.1)
(3.53611 -0.733333 0.1)
(3.53611 -0.6875 0.1)
(3.53611 -0.641667 0.1)
(3.49306 -0.641667 0.1)
(3.45 -0.641667 0.1)
(3.53611 -0.55 0.1)
(3.53611 -0.504167 0.1)
(3.53611 -0.458333 0.1)
(3.49306 -0.458333 0.1)
(3.45 -0.458333 0.1)
(3.53611 -0.366667 0.1)
(3.53611 -0.320833 0.1)
(3.53611 -0.275 0.1)
(3.49306 -0.275 0.1)
(3.45 -0.275 0.1)
(3.53611 -0.183333 0.1)
(3.53611 -0.1375 0.1)
(3.53611 -0.0916667 0.1)
(3.49306 -0.0916667 0.1)
(3.45 -0.0916667 0.1)
(3.53611 0 0.1)
(3.53611 0.0458333 0.1)
(3.53611 0.0916667 0.1)
(3.49306 0.0916667 0.1)
(3.45 0.0916667 0.1)
(3.53611 0.183333 0.1)
(3.53611 0.229167 0.1)
(3.53611 0.275 0.1)
(3.49306 0.275 0.1)
(3.45 0.275 0.1)
(3.53611 0.366667 0.1)
(3.53611 0.4125 0.1)
(3.53611 0.458333 0.1)
(3.49306 0.458333 0.1)
(3.45 0.458333 0.1)
(3.53611 0.55 0.1)
(3.53611 0.595833 0.1)
(3.53611 0.641667 0.1)
(3.49306 0.641667 0.1)
(3.45 0.641667 0.1)
(3.53611 0.733333 0.1)
(3.53611 0.779167 0.1)
(3.53611 0.825 0.1)
(3.49306 0.825 0.1)
(3.45 0.825 0.1)
(3.57917 0.9625 0.1)
(3.53611 1.00833 0.1)
(3.57917 1.00833 0.1)
(3.62222 1.00833 0.1)
(3.49306 1.00833 0.1)
(3.75139 -1.00833 0.1)
(3.75139 -0.9625 0.1)
(3.79444 -0.9625 0.1)
(3.66528 -0.9625 0.1)
(3.70833 -0.916667 0.1)
(3.70833 -0.870833 0.1)
(3.70833 -0.825 0.1)
(3.66528 -0.825 0.1)
(3.62222 -0.825 0.1)
(3.70833 -0.733333 0.1)
(3.70833 -0.6875 0.1)
(3.70833 -0.641667 0.1)
(3.66528 -0.641667 0.1)
(3.62222 -0.641667 0.1)
(3.70833 -0.55 0.1)
(3.70833 -0.504167 0.1)
(3.70833 -0.458333 0.1)
(3.66528 -0.458333 0.1)
(3.62222 -0.458333 0.1)
(3.70833 -0.366667 0.1)
(3.70833 -0.320833 0.1)
(3.70833 -0.275 0.1)
(3.66528 -0.275 0.1)
(3.62222 -0.275 0.1)
(3.70833 -0.183333 0.1)
(3.70833 -0.1375 0.1)
(3.70833 -0.0916667 0.1)
(3.66528 -0.0916667 0.1)
(3.62222 -0.0916667 0.1)
(3.70833 -4.62593e-18 0.1)
(3.70833 0.0458333 0.1)
(3.70833 0.0916667 0.1)
(3.66528 0.0916667 0.1)
(3.62222 0.0916667 0.1)
(3.70833 0.183333 0.1)
(3.70833 0.229167 0.1)
(3.70833 0.275 0.1)
(3.66528 0.275 0.1)
(3.62222 0.275 0.1)
(3.70833 0.366667 0.1)
(3.70833 0.4125 0.1)
(3.70833 0.458333 0.1)
(3.66528 0.458333 0.1)
(3.62222 0.458333 0.1)
(3.70833 0.55 0.1)
(3.70833 0.595833 0.1)
(3.70833 0.641667 0.1)
(3.66528 0.641667 0.1)
(3.62222 0.641667 0.1)
(3.70833 0.733333 0.1)
(3.70833 0.779167 0.1)
(3.70833 0.825 0.1)
(3.66528 0.825 0.1)
(3.62222 0.825 0.1)
(3.75139 0.9625 0.1)
(3.70833 1.00833 0.1)
(3.75139 1.00833 0.1)
(3.79444 1.00833 0.1)
(3.66528 1.00833 0.1)
(3.92361 -1.00833 0.1)
(3.92361 -0.9625 0.1)
(3.96667 -0.9625 0.1)
(3.8375 -0.9625 0.1)
(3.88056 -0.916667 0.1)
(3.88056 -0.870833 0.1)
(3.88056 -0.825 0.1)
(3.8375 -0.825 0.1)
(3.79444 -0.825 0.1)
(3.88056 -0.733333 0.1)
(3.88056 -0.6875 0.1)
(3.88056 -0.641667 0.1)
(3.8375 -0.641667 0.1)
(3.79444 -0.641667 0.1)
(3.88056 -0.55 0.1)
(3.88056 -0.504167 0.1)
(3.88056 -0.458333 0.1)
(3.8375 -0.458333 0.1)
(3.79444 -0.458333 0.1)
(3.88056 -0.366667 0.1)
(3.88056 -0.320833 0.1)
(3.88056 -0.275 0.1)
(3.8375 -0.275 0.1)
(3.79444 -0.275 0.1)
(3.88056 -0.183333 0.1)
(3.88056 -0.1375 0.1)
(3.88056 -0.0916667 0.1)
(3.8375 -0.0916667 0.1)
(3.79444 -0.0916667 0.1)
(3.88056 -9.25186e-18 0.1)
(3.88056 0.0458333 0.1)
(3.88056 0.0916667 0.1)
(3.8375 0.0916667 0.1)
(3.79444 0.0916667 0.1)
(3.88056 0.183333 0.1)
(3.88056 0.229167 0.1)
(3.88056 0.275 0.1)
(3.8375 0.275 0.1)
(3.79444 0.275 0.1)
(3.88056 0.366667 0.1)
(3.88056 0.4125 0.1)
(3.88056 0.458333 0.1)
(3.8375 0.458333 0.1)
(3.79444 0.458333 0.1)
(3.88056 0.55 0.1)
(3.88056 0.595833 0.1)
(3.88056 0.641667 0.1)
(3.8375 0.641667 0.1)
(3.79444 0.641667 0.1)
(3.88056 0.733333 0.1)
(3.88056 0.779167 0.1)
(3.88056 0.825 0.1)
(3.8375 0.825 0.1)
(3.79444 0.825 0.1)
(3.92361 0.9625 0.1)
(3.88056 1.00833 0.1)
(3.92361 1.00833 0.1)
(3.96667 1.00833 0.1)
(3.8375 1.00833 0.1)
(4.09583 -1.00833 0.1)
(4.09583 -0.9625 0.1)
(4.13889 -0.9625 0.1)
(4.00972 -0.9625 0.1)
(4.05278 -0.916667 0.1)
(4.05278 -0.870833 0.1)
(4.05278 -0.825 0.1)
(4.00972 -0.825 0.1)
(3.96667 -0.825 0.1)
(4.05278 -0.733333 0.1)
(4.05278 -0.6875 0.1)
(4.05278 -0.641667 0.1)
(4.00972 -0.641667 0.1)
(3.96667 -0.641667 0.1)
(4.05278 -0.55 0.1)
(4.05278 -0.504167 0.1)
(4.05278 -0.458333 0.1)
(4.00972 -0.458333 0.1)
(3.96667 -0.458333 0.1)
(4.05278 -0.366667 0.1)
(4.05278 -0.320833 0.1)
(4.05278 -0.275 0.1)
(4.00972 -0.275 0.1)
(3.96667 -0.275 0.1)
(4.05278 -0.183333 0.1)
(4.05278 -0.1375 0.1)
(4.05278 -0.0916667 0.1)
(4.00972 -0.0916667 0.1)
(3.96667 -0.0916667 0.1)
(4.05278 -1.38778e-17 0.1)
(4.05278 0.0458333 0.1)
(4.05278 0.0916667 0.1)
(4.00972 0.0916667 0.1)
(3.96667 0.0916667 0.1)
(4.05278 0.183333 0.1)
(4.05278 0.229167 0.1)
(4.05278 0.275 0.1)
(4.00972 0.275 0.1)
(3.96667 0.275 0.1)
(4.05278 0.366667 0.1)
(4.05278 0.4125 0.1)
(4.05278 0.458333 0.1)
(4.00972 0.458333 0.1)
(3.96667 0.458333 0.1)
(4.05278 0.55 0.1)
(4.05278 0.595833 0.1)
(4.05278 0.641667 0.1)
(4.00972 0.641667 0.1)
(3.96667 0.641667 0.1)
(4.05278 0.733333 0.1)
(4.05278 0.779167 0.1)
(4.05278 0.825 0.1)
(4.00972 0.825 0.1)
(3.96667 0.825 0.1)
(4.09583 0.9625 0.1)
(4.05278 1.00833 0.1)
(4.09583 1.00833 0.1)
(4.13889 1.00833 0.1)
(4.00972 1.00833 0.1)
(4.26806 -1.00833 0.1)
(4.26806 -0.9625 0.1)
(4.31111 -0.9625 0.1)
(4.18194 -0.9625 0.1)
(4.225 -0.916667 0.1)
(4.225 -0.870833 0.1)
(4.225 -0.825 0.1)
(4.18194 -0.825 0.1)
(4.13889 -0.825 0.1)
(4.225 -0.733333 0.1)
(4.225 -0.6875 0.1)
(4.225 -0.641667 0.1)
(4.18194 -0.641667 0.1)
(4.13889 -0.641667 0.1)
(4.225 -0.55 0.1)
(4.225 -0.504167 0.1)
(4.225 -0.458333 0.1)
(4.18194 -0.458333 0.1)
(4.13889 -0.458333 0.1)
(4.225 -0.366667 0.1)
(4.225 -0.320833 0.1)
(4.225 -0.275 0.1)
(4.18194 -0.275 0.1)
(4.13889 -0.275 0.1)
(4.225 -0.183333 0.1)
(4.225 -0.1375 0.1)
(4.225 -0.0916667 0.1)
(4.18194 -0.0916667 0.1)
(4.13889 -0.0916667 0.1)
(4.225 0 0.1)
(4.225 0.0458333 0.1)
(4.225 0.0916667 0.1)
(4.18194 0.0916667 0.1)
(4.13889 0.0916667 0.1)
(4.225 0.183333 0.1)
(4.225 0.229167 0.1)
(4.225 0.275 0.1)
(4.18194 0.275 0.1)
(4.13889 0.275 0.1)
(4.225 0.366667 0.1)
(4.225 0.4125 0.1)
(4.225 0.458333 0.1)
(4.18194 0.458333 0.1)
(4.13889 0.458333 0.1)
(4.225 0.55 0.1)
(4.225 0.595833 0.1)
(4.225 0.641667 0.1)
(4.18194 0.641667 0.1)
(4.13889 0.641667 0.1)
(4.225 0.733333 0.1)
(4.225 0.779167 0.1)
(4.225 0.825 0.1)
(4.18194 0.825 0.1)
(4.13889 0.825 0.1)
(4.26806 0.9625 0.1)
(4.225 1.00833 0.1)
(4.26806 1.00833 0.1)
(4.31111 1.00833 0.1)
(4.18194 1.00833 0.1)
(4.44028 -1.00833 0.1)
(4.44028 -0.9625 0.1)
(4.48333 -0.9625 0.1)
(4.35417 -0.9625 0.1)
(4.39722 -0.916667 0.1)
(4.39722 -0.870833 0.1)
(4.39722 -0.825 0.1)
(4.35417 -0.825 0.1)
(4.31111 -0.825 0.1)
(4.39722 -0.733333 0.1)
(4.39722 -0.6875 0.1)
(4.39722 -0.641667 0.1)
(4.35417 -0.641667 0.1)
(4.31111 -0.641667 0.1)
(4.39722 -0.55 0.1)
(4.39722 -0.504167 0.1)
(4.39722 -0.458333 0.1)
(4.35417 -0.458333 0.1)
(4.31111 -0.458333 0.1)
(4.39722 -0.366667 0.1)
(4.39722 -0.320833 0.1)
(4.39722 -0.275 0.1)
(4.35417 -0.275 0.1)
(4.31111 -0.275 0.1)
(4.39722 -0.183333 0.1)
(4.39722 -0.1375 0.1)
(4.39722 -0.0916667 0.1)
(4.35417 -0.0916667 0.1)
(4.31111 -0.0916667 0.1)
(4.39722 -2.31296e-18 0.1)
(4.39722 0.0458333 0.1)
(4.39722 0.0916667 0.1)
(4.35417 0.0916667 0.1)
(4.31111 0.0916667 0.1)
(4.39722 0.183333 0.1)
(4.39722 0.229167 0.1)
(4.39722 0.275 0.1)
(4.35417 0.275 0.1)
(4.31111 0.275 0.1)
(4.39722 0.366667 0.1)
(4.39722 0.4125 0.1)
(4.39722 0.458333 0.1)
(4.35417 0.458333 0.1)
(4.31111 0.458333 0.1)
(4.39722 0.55 0.1)
(4.39722 0.595833 0.1)
(4.39722 0.641667 0.1)
(4.35417 0.641667 0.1)
(4.31111 0.641667 0.1)
(4.39722 0.733333 0.1)
(4.39722 0.779167 0.1)
(4.39722 0.825 0.1)
(4.35417 0.825 0.1)
(4.31111 0.825 0.1)
(4.44028 0.9625 0.1)
(4.39722 1.00833 0.1)
(4.44028 1.00833 0.1)
(4.48333 1.00833 0.1)
(4.35417 1.00833 0.1)
(4.6125 -1.00833 0.1)
(4.6125 -0.9625 0.1)
(4.65556 -0.9625 0.1)
(4.52639 -0.9625 0.1)
(4.56944 -0.916667 0.1)
(4.56944 -0.870833 0.1)
(4.56944 -0.825 0.1)
(4.52639 -0.825 0.1)
(4.48333 -0.825 0.1)
(4.56944 -0.733333 0.1)
(4.56944 -0.6875 0.1)
(4.56944 -0.641667 0.1)
(4.52639 -0.641667 0.1)
(4.48333 -0.641667 0.1)
(4.56944 -0.55 0.1)
(4.56944 -0.504167 0.1)
(4.56944 -0.458333 0.1)
(4.52639 -0.458333 0.1)
(4.48333 -0.458333 0.1)
(4.56944 -0.366667 0.1)
(4.56944 -0.320833 0.1)
(4.56944 -0.275 0.1)
(4.52639 -0.275 0.1)
(4.48333 -0.275 0.1)
(4.56944 -0.183333 0.1)
(4.56944 -0.1375 0.1)
(4.56944 -0.0916667 0.1)
(4.52639 -0.0916667 0.1)
(4.48333 -0.0916667 0.1)
(4.56944 -6.93889e-18 0.1)
(4.56944 0.0458333 0.1)
(4.56944 0.0916667 0.1)
(4.52639 0.0916667 0.1)
(4.48333 0.0916667 0.1)
(4.56944 0.183333 0.1)
(4.56944 0.229167 0.1)
(4.56944 0.275 0.1)
(4.52639 0.275 0.1)
(4.48333 0.275 0.1)
(4.56944 0.366667 0.1)
(4.56944 0.4125 0.1)
(4.56944 0.458333 0.1)
(4.52639 0.458333 0.1)
(4.48333 0.458333 0.1)
(4.56944 0.55 0.1)
(4.56944 0.595833 0.1)
(4.56944 0.641667 0.1)
(4.52639 0.641667 0.1)
(4.48333 0.641667 0.1)
(4.56944 0.733333 0.1)
(4.56944 0.779167 0.1)
(4.56944 0.825 0.1)
(4.52639 0.825 0.1)
(4.48333 0.825 0.1)
(4.6125 0.9625 0.1)
(4.56944 1.00833 0.1)
(4.6125 1.00833 0.1)
(4.65556 1.00833 0.1)
(4.52639 1.00833 0.1)
(4.78472 -1.00833 0.1)
(4.78472 -0.9625 0.1)
(4.82778 -0.9625 0.1)
(4.69861 -0.9625 0.1)
(4.74167 -0.916667 0.1)
(4.74167 -0.870833 0.1)
(4.74167 -0.825 0.1)
(4.69861 -0.825 0.1)
(4.65556 -0.825 0.1)
(4.74167 -0.733333 0.1)
(4.74167 -0.6875 0.1)
(4.74167 -0.641667 0.1)
(4.69861 -0.641667 0.1)
(4.65556 -0.641667 0.1)
(4.74167 -0.55 0.1)
(4.74167 -0.504167 0.1)
(4.74167 -0.458333 0.1)
(4.69861 -0.458333 0.1)
(4.65556 -0.458333 0.1)
(4.74167 -0.366667 0.1)
(4.74167 -0.320833 0.1)
(4.74167 -0.275 0.1)
(4.69861 -0.275 0.1)
(4.65556 -0.275 0.1)
(4.74167 -0.183333 0.1)
(4.74167 -0.1375 0.1)
(4.74167 -0.0916667 0.1)
(4.69861 -0.0916667 0.1)
(4.65556 -0.0916667 0.1)
(4.74167 -1.15648e-17 0.1)
(4.74167 0.0458333 0.1)
(4.74167 0.0916667 0.1)
(4.69861 0.0916667 0.1)
(4.65556 0.0916667 0.1)
(4.74167 0.183333 0.1)
(4.74167 0.229167 0.1)
(4.74167 0.275 0.1)
(4.69861 0.275 0.1)
(4.65556 0.275 0.1)
(4.74167 0.366667 0.1)
(4.74167 0.4125 0.1)
(4.74167 0.458333 0.1)
(4.69861 0.458333 0.1)
(4.65556 0.458333 0.1)
(4.74167 0.55 0.1)
(4.74167 0.595833 0.1)
(4.74167 0.641667 0.1)
(4.69861 0.641667 0.1)
(4.65556 0.641667 0.1)
(4.74167 0.733333 0.1)
(4.74167 0.779167 0.1)
(4.74167 0.825 0.1)
(4.69861 0.825 0.1)
(4.65556 0.825 0.1)
(4.78472 0.9625 0.1)
(4.74167 1.00833 0.1)
(4.78472 1.00833 0.1)
(4.82778 1.00833 0.1)
(4.69861 1.00833 0.1)
(5 -1.375 0.1)
(5 -1.28333 0.1)
(5 -1.19167 0.1)
(5 -1.1 0.1)
(5 -1.00833 0.1)
(4.95694 -1.00833 0.1)
(4.95694 -0.9625 0.1)
(5 -0.9625 0.1)
(4.87083 -0.9625 0.1)
(4.91389 -0.916667 0.1)
(4.91389 -0.870833 0.1)
(4.91389 -0.825 0.1)
(4.87083 -0.825 0.1)
(4.82778 -0.825 0.1)
(4.91389 -0.733333 0.1)
(4.91389 -0.6875 0.1)
(4.91389 -0.641667 0.1)
(4.87083 -0.641667 0.1)
(4.82778 -0.641667 0.1)
(4.91389 -0.55 0.1)
(4.91389 -0.504167 0.1)
(4.91389 -0.458333 0.1)
(4.87083 -0.458333 0.1)
(4.82778 -0.458333 0.1)
(4.91389 -0.366667 0.1)
(4.91389 -0.320833 0.1)
(4.91389 -0.275 0.1)
(4.87083 -0.275 0.1)
(4.82778 -0.275 0.1)
(4.91389 -0.183333 0.1)
(4.91389 -0.1375 0.1)
(4.91389 -0.0916667 0.1)
(4.87083 -0.0916667 0.1)
(4.82778 -0.0916667 0.1)
(4.91389 -1.61908e-17 0.1)
(4.91389 0.0458333 0.1)
(4.91389 0.0916667 0.1)
(4.87083 0.0916667 0.1)
(4.82778 0.0916667 0.1)
(4.91389 0.183333 0.1)
(4.91389 0.229167 0.1)
(4.91389 0.275 0.1)
(4.87083 0.275 0.1)
(4.82778 0.275 0.1)
(4.91389 0.366667 0.1)
(4.91389 0.4125 0.1)
(4.91389 0.458333 0.1)
(4.87083 0.458333 0.1)
(4.82778 0.458333 0.1)
(4.91389 0.55 0.1)
(4.91389 0.595833 0.1)
(4.91389 0.641667 0.1)
(4.87083 0.641667 0.1)
(4.82778 0.641667 0.1)
(4.91389 0.733333 0.1)
(4.91389 0.779167 0.1)
(4.91389 0.825 0.1)
(4.87083 0.825 0.1)
(4.82778 0.825 0.1)
(5 0.9625 0.1)
(4.95694 0.9625 0.1)
(5 1.1 0.1)
(4.91389 1.00833 0.1)
(4.95694 1.00833 0.1)
(5 1.00833 0.1)
(4.87083 1.00833 0.1)
(5 1.19167 0.1)
(5 1.28333 0.1)
(5 1.375 0.1)
(0.8516508026 -0.04173133391 0.1)
(0.8408864876 -0.04153802396 0.1)
(0.8406599998 -0.05283375892 0.1)
(0.8285211449 0.3136163674 0.1)
(0.8281216437 0.2909517573 0.1)
(0.8277371392 0.2682868319 0.1)
(0.8492193786 0.2675491096 0.1)
(0.8706636173 0.2667641756 0.1)
(1.024428971 -0.03873449032 0.1)
(1.013671349 -0.03850831379 0.1)
(1.013430479 -0.04996478195 0.1)
(1.018268833 0.1126072851 0.1)
(1.016561547 0.0989580067 0.1)
(1.027319194 0.0987330299 0.1)
(1.038086832 0.09850744298 0.1)
(0.8738712828 0.1203785866 0.1)
(0.8920855034 0.2659627078 0.1)
(0.9134984875 0.2651184177 0.1)
(0.9139024502 0.2878049388 0.1)
(-0.02187944481 -0.001281682443 0.1)
(-0.04399307137 -0.0005176824637 0.1)
(-0.04417233025 -0.02342997683 0.1)
(-0.04437958347 -0.04632267842 0.1)
(-0.1752713643 0.1002149601 0.1)
(-0.1538641175 0.0994308039 0.1)
(-0.1324293001 0.09857835303 0.1)
(-0.1320818694 0.1221440568 0.1)
(0.1602718105 0.376570961 0.1)
(0.1384929297 0.3769958497 0.1)
(0.1379964316 0.3542372577 0.1)
(0.3020166086 -0.0767336886 0.1)
(0.3015444415 -0.09947678861 0.1)
(0.3230633587 -0.09989721181 0.1)
(0.3445663214 -0.1003152991 0.1)
(0.1722707306 -0.09691487311 0.1)
(0.1938523816 -0.09734861793 0.1)
(0.2154111008 -0.09777887995 0.1)
(0.2158824994 -0.07502476135 0.1)
(0.3337070668 0.3727144783 0.1)
(0.3120430108 0.3732249723 0.1)
(0.31157118 0.3504978687 0.1)
(0.4741571798 -0.08008584542 0.1)
(0.4736884324 -0.1028090129 0.1)
(0.4952165789 -0.1032186277 0.1)
(0.5167357693 -0.1036260538 0.1)
(0.3660682844 -0.1007333654 0.1)
(0.3875822448 -0.101151684 0.1)
(0.3880522231 -0.07841753994 0.1)
(0.5064872379 0.3684326716 0.1)
(0.4849419967 0.3689806764 0.1)
(0.484499706 0.3462789575 0.1)
(0.6463201849 -0.08332244828 0.1)
(0.6458538155 -0.1060276618 0.1)
(0.6673713007 -0.1064210489 0.1)
(0.6888848288 -0.1068123524 0.1)
(0.5382570014 -0.1040315224 0.1)
(0.5597822746 -0.1044350754 0.1)
(0.560249791 -0.0817228845 0.1)
(0.5947383082 0.02516978023 0.1)
(0.8184449528 -0.08642721826 0.1)
(0.8179823933 -0.1091415139 0.1)
(0.8395079187 -0.1095330696 0.1)
(0.8610303608 -0.1099285614 0.1)
(0.7104043766 -0.1072027822 0.1)
(0.731925966 -0.1075912545 0.1)
(0.7323913146 -0.0848870198 0.1)
(0.7668129452 0.0218690207 0.1)
(0.7720794237 0.01608003961 0.1)
(0.7774639486 0.01600083873 0.1)
(0.7022729074 0.02306892542 0.1)
(0.7623127129 0.2139117474 0.1)
(0.7621350847 0.2026563944 0.1)
(0.7728968239 0.202293001 0.1)
(0.7836458245 0.2019421781 0.1)
(0.9917465337 -0.08765030924 0.1)
(0.9912370293 -0.1104566384 0.1)
(1.012226194 -0.1072441234 0.1)
(1.033751437 -0.1076966867 0.1)
(0.8825417001 -0.1103288208 0.1)
(0.9040529344 -0.1107340792 0.1)
(0.9045179139 -0.08799983005 0.1)
(0.9484664947 -0.04352480804 0.1)
(0.9377115561 -0.04331369125 0.1)
(0.9269394951 -0.04310821579 0.1)
(0.9267149859 -0.05440499257 0.1)
(0.1681630175 0.2455281333 0.1)
(0.3256535158 0.02501094087 0.1)
(0.3254200414 0.01366834241 0.1)
(0.336173791 0.01344824863 0.1)
(0.2608455342 0.01498899836 0.1)
(0.2716022621 0.01476784174 0.1)
(0.2823660095 0.01454753776 0.1)
(0.2826003997 0.02588611608 0.1)
(0.3476213748 0.04737071407 0.1)
(0.3422610324 0.04750591901 0.1)
(0.3368906797 0.04764073428 0.1)
(0.3367669757 0.04185215558 0.1)
(0.2767980741 0.2428190124 0.1)
(0.2769265097 0.2488326414 0.1)
(0.2714911222 0.2489189129 0.1)
(0.2660531557 0.2490252432 0.1)
(0.3418821072 0.2419937556 0.1)
(0.1899267098 0.245189583 0.1)
(0.2606285648 0.2491492961 0.1)
(0.2552164126 0.2492940923 0.1)
(0.255091829 0.2432733808 0.1)
(0.3582305323 0.04136758189 0.1)
(0.3583509734 0.04709611591 0.1)
(0.3529806879 0.04723413047 0.1)
(0.525925883 0.2545108982 0.1)
(0.5151402758 0.2547856737 0.1)
(0.5043517113 0.2550625119 0.1)
(0.5041399679 0.2437544643 0.1)
(0.3635512186 0.2413431244 0.1)
(0.6807825069 0.02360877559 0.1)
(0.6162529018 0.024686434 0.1)
(0.782847906 0.01589464382 0.1)
(0.7882284856 0.01577051594 0.1)
(0.7883555483 0.0215761278 0.1)
(0.7976216728 -0.05206391785 0.1)
(0.7978491814 -0.04076720413 0.1)
(0.7870988213 -0.04057618802 0.1)
(0.7763365269 -0.04038192034 0.1)
(0.7943875135 0.2015766057 0.1)
(0.8051206598 0.2011853072 0.1)
(0.8052976266 0.2124567778 0.1)
(0.9697617973 -0.05524702793 0.1)
(0.9699863486 -0.0439482516 0.1)
(0.9592153715 -0.04373879804 0.1)
(0.1294993282 -0.07326858835 0.1)
(0.1290327184 -0.09603280984 0.1)
(0.1506581915 -0.09647547778 0.1)
(-0.001378394265 -0.09312791024 0.1)
(0.02058840356 -0.0936947803 0.1)
(0.04230533141 -0.09418338078 0.1)
(0.04276119594 -0.07140693071 0.1)
(0.06649830808 0.03049862799 0.1)
(0.06627258531 0.01912986082 0.1)
(0.07714998198 0.01888216186 0.1)
(0.08801932248 0.01863663272 0.1)
(0.02248940085 0.03166495838 0.1)
(0.2395376641 0.02677949752 0.1)
(0.2393041266 0.01543389973 0.1)
(0.2500788085 0.01521036519 0.1)
(0.1746241052 0.01677877895 0.1)
(0.1854097427 0.01655301363 0.1)
(0.1961984005 0.01632818503 0.1)
(0.1964322112 0.02768677995 0.1)
(0.6569170521 0.341628696 0.1)
(0.9436248081 0.1503076916 0.1)
(0.932982097 0.1509090355 0.1)
(0.9328579421 0.1397707843 0.1)
(0.1532406723 0.02859087122 0.1)
(0.1530078613 0.01723225528 0.1)
(0.1638254497 0.01700381775 0.1)
(0.09886045843 0.01840069857 0.1)
(0.1097038518 0.01816271651 0.1)
(0.1099337475 0.02952539463 0.1)
(0.02628930249 0.2536171237 0.1)
(0.02672311408 0.265054532 0.1)
(0.01563865204 0.2651395475 0.1)
(0.004638153983 0.2652448026 0.1)
(0.6335484416 0.240323524 0.1)
(0.6229827651 0.251915177 0.1)
(0.6122096807 0.2522146947 0.1)
(0.6766200899 0.2390928807 0.1)
(0.5473162422 0.2426476491 0.1)
(0.5475218818 0.2539508239 0.1)
(0.5367184677 0.2542349758 0.1)
(0.6014384698 0.2525081718 0.1)
(0.5906403279 0.2528052157 0.1)
(0.5904358352 0.2415090183 0.1)
(-0.07827985668 0.119252793 0.1)
(-0.06757281382 0.1189662663 0.1)
(-0.06768828112 0.1318614426 0.1)
(-0.06753737847 0.1443480155 0.1)
(-0.01100244089 0.06734734498 0.1)
(-0.02219439623 0.06787671823 0.1)
(-0.02200750934 0.05624241928 0.1)
(-0.02166845595 0.0445621116 0.1)
(-0.06715670143 0.1574589244 0.1)
(-0.06663163295 0.1699827545 0.1)
(-0.07739945969 0.1699471877 0.1)
(0.01341367269 0.2018341297 0.1)
(0.7453029617 0.02195318182 0.1)
(0.03438588202 0.08262815305 0.1)
(0.03983530028 0.07675350761 0.1)
(0.01185732639 0.08339037449 0.1)
(0.3046156757 0.04831280736 0.1)
(0.299235475 0.04835981023 0.1)
(0.3152511112 0.04232262567 0.1)
(0.3153765927 0.04814817517 0.1)
(0.3099964096 0.04824358837 0.1)
(0.2985053332 0.2429837595 0.1)
(0.320200473 0.2426196445 0.1)
(0.2116666477 0.2449105452 0.1)
(0.2333848928 0.2443609035 0.1)
(0.4875294046 0.2214475917 0.1)
(0.4929218681 0.2213178128 0.1)
(0.4930400637 0.2270346914 0.1)
(0.6218621157 0.1896699803 0.1)
(0.6165948492 0.1955642012 0.1)
(0.6434187946 0.1891902502 0.1)
(0.815026084 0.1392083003 0.1)
(0.9432407107 0.08974608442 0.1)
(1.05527668 -0.10814925 0.1)
(1.076791925 -0.1086016031 0.1)
(1.077273644 -0.08568966651 0.1)
(1.046917651 0.006636819509 0.1)
(1.057675252 0.006409643195 0.1)
(1.057916101 0.01786511158 0.1)
(1.058156908 0.02931858041 0.1)
(0.9753154862 0.1371144346 0.1)
(-0.005632884458 0.1017191706 0.1)
(-0.01150334761 0.1022383832 0.1)
(-0.01117569715 0.09623356917 0.1)
(0.5732146535 0.02565031629 0.1)
(0.723790524 0.02249149487 0.1)
(1.058397725 0.04077254913 0.1)
(1.058638596 0.05222911727 0.1)
(1.047870799 0.05244710586 0.1)
(0.1464676413 0.2460712929 0.1)
(0.3851804688 0.2409373853 0.1)
(0.4068583627 0.2404666092 0.1)
(0.659267309 0.02387308612 0.1)
(0.6377315664 0.02420684384 0.1)
(0.6649987788 0.1886772229 0.1)
(0.9646182477 0.08883332426 0.1)
(1.001800757 0.07005579446 0.1)
(-0.0139419208 0.3796756413 0.1)
(-0.03649576255 0.3570897355 0.1)
(0.7196754382 0.2378005664 0.1)
(-0.006454598244 0.2652889834 0.1)
(-0.01784255322 0.2539118459 0.1)
(-0.900365 -0.825172 0.1)
(-0.943231 -0.77932 0.1)
(-0.900509 -0.641852 0.1)
(-0.943354 -0.595998 0.1)
(-0.900647 -0.458532 0.1)
(-0.943466 -0.412676 0.1)
(-0.9008610961 -0.2724714333 0.1)
(-0.9435739003 -0.2286647902 0.1)
(-0.9009175771 -0.08469835496 0.1)
(-0.9436110125 -0.04352301706 0.1)
(-0.9007466862 0.09865089975 0.1)
(-0.943550181 0.1390864332 0.1)
(-0.9006648802 0.2775572125 0.1)
(-0.9435135661 0.3206637321 0.1)
(-0.900648 0.458135 0.1)
(-0.943413 0.503996 0.1)
(-0.90051 0.641481 0.1)
(-0.943293 0.687341 0.1)
(-0.900365 0.824828 0.1)
(-0.943121 0.916525 0.1)
(-0.94317 0.870686 0.1)
(-0.729054 -0.82526 0.1)
(-0.771953 -0.779411 0.1)
(-0.729348684 -0.6413142616 0.1)
(-0.7722077876 -0.5956236135 0.1)
(-0.7304438654 -0.4438834588 0.1)
(-0.773044708 -0.4007303658 0.1)
(-0.7310633773 -0.2397219852 0.1)
(-0.7734231814 -0.2010930317 0.1)
(-0.7304952376 -0.04244266366 0.1)
(-0.7728799614 -0.008518765368 0.1)
(-0.7292902588 0.1409402708 0.1)
(-0.7719983297 0.1716404099 0.1)
(-0.7284641302 0.3104055965 0.1)
(-0.771616021 0.3411349183 0.1)
(-0.7286437844 0.4729171234 0.1)
(-0.7719604967 0.5087346436 0.1)
(-0.729238521 0.6420545911 0.1)
(-0.772062 0.687245 0.1)
(-0.729068 0.824984 0.1)
(-0.77178 0.916958 0.1)
(-0.771858 0.870764 0.1)
(-0.5576230817 -0.8255684214 0.1)
(-0.6006155912 -0.7793058586 0.1)
(-0.5594641101 -0.6253151918 0.1)
(-0.6023570071 -0.5784590526 0.1)
(-0.561658315 -0.40610991 0.1)
(-0.6040956452 -0.3621669915 0.1)
(-0.5619592288 -0.1885562292 0.1)
(-0.6040277429 -0.1494993666 0.1)
(-0.5602410113 0.01376350517 0.1)
(-0.6022764209 0.0478591363 0.1)
(-0.5576084437 0.1971587031 0.1)
(-0.5999877947 0.2265366289 0.1)
(-0.5554722338 0.3616349054 0.1)
(-0.598527545 0.3874621912 0.1)
(-0.5550986029 0.5108356702 0.1)
(-0.5988090975 0.5376110931 0.1)
(-0.5563909986 0.6595408372 0.1)
(-0.6001102695 0.6942548123 0.1)
(-0.5558099092 0.828227506 0.1)
(-0.598713 0.919474 0.1)
(-0.598763 0.873702 0.1)
(-0.3842395493 -0.8221155952 0.1)
(-0.4278128128 -0.7730683002 0.1)
(-0.388451712 -0.601613944 0.1)
(-0.4333100628 -0.5496745622 0.1)
(-0.3928946931 -0.3671268327 0.1)
(-0.4354241691 -0.318723429 0.1)
(-0.3925131532 -0.1465653134 0.1)
(-0.4344939599 -0.1029044969 0.1)
(-0.3897827639 0.05186018248 0.1)
(-0.4316085177 0.09272069882 0.1)
(-0.3861162792 0.2352294423 0.1)
(-0.4280751311 0.2722594965 0.1)
(-0.3825962762 0.4055221279 0.1)
(-0.425230813 0.4353150787 0.1)
(-0.3795799613 0.5554455004 0.1)
(-0.4234461296 0.5802576757 0.1)
(-0.3800478308 0.6917835322 0.1)
(-0.4243853333 0.7195963879 0.1)
(-0.3830364441 0.8366498445 0.1)
(-0.4268266726 0.9201105964 0.1)
(-0.4267082419 0.8757250977 0.1)
(-0.2133562759 -0.8122726989 0.1)
(-0.2572794379 -0.7585138928 0.1)
(-0.2179052074 -0.5786450992 0.1)
(-0.2612210665 -0.5240806693 0.1)
(-0.2198636611 -0.3442488986 0.1)
(-0.2633639523 -0.292442048 0.1)
(-0.2202619628 -0.1335338139 0.1)
(-0.2636346925 -0.08458965228 0.1)
(-0.1974640893 0.05450535457 0.1)
(-0.2188722365 0.05519910976 0.1)
(-0.2607553413 0.1022087845 0.1)
(-0.2180213425 0.1012838062 0.1)
(-0.217560626 0.1241958842 0.1)
(-0.2170868609 0.1471101364 0.1)
(-0.218461894 0.07833179541 0.1)
(-0.1970792139 0.07775880222 0.1)
(-0.1935133986 0.2405089075 0.1)
(-0.1941196435 0.2172402097 0.1)
(-0.2161162924 0.1934635286 0.1)
(-0.2155209191 0.2174996245 0.1)
(-0.2149354644 0.2407309511 0.1)
(-0.2166035357 0.1700985081 0.1)
(-0.2566338727 0.2873436557 0.1)
(-0.208232312 0.4260914517 0.1)
(-0.2505464543 0.4652563497 0.1)
(-0.2045629215 0.5848568915 0.1)
(-0.2479111533 0.6140138597 0.1)
(-0.2055453052 0.7170308737 0.1)
(-0.2500472434 0.7438354573 0.1)
(-0.2086172388 0.8494805003 0.1)
(-0.2534808069 0.9242775497 0.1)
(-0.2530198506 0.8838847547 0.1)
(-0.04175346439 -0.8040568897 0.1)
(-0.08621386854 -0.7478141704 0.1)
(-0.04635083592 -0.5667157609 0.1)
(-0.0903256579 -0.509014876 0.1)
(-0.0482037519 -0.3350235678 0.1)
(-0.09116982187 -0.2822937287 0.1)
(-0.04586497921 -0.1376336301 0.1)
(-0.08808840375 -0.06804771367 0.1)
(-0.06634782053 -0.06863383293 0.1)
(-0.04513487626 -0.09196588681 0.1)
(-0.06671532403 -0.09147015359 0.1)
(-0.08839375173 -0.09091534776 0.1)
(-0.0234363643 -0.09249310871 0.1)
(-0.1328426229 0.05132690105 0.1)
(-0.1330939622 0.02809755178 0.1)
(-0.1105369002 0.002506745317 0.1)
(-0.08824079507 0.001249800701 0.1)
(-0.1089167191 0.1936009106 0.1)
(-0.1288605874 0.240724245 0.1)
(-0.1297412545 0.2169626066 0.1)
(-0.03024147571 0.5964128421 0.1)
(-0.07347542341 0.6306028634 0.1)
(-0.03083852968 0.7329436177 0.1)
(-0.07504164374 0.7614190723 0.1)
(-0.03506635565 0.8606375703 0.1)
(-0.08046292461 0.9309968187 0.1)
(-0.07949170885 0.8936953716 0.1)
(0.1306664993 -0.801354233 0.1)
(0.08624227105 -0.7432749425 0.1)
(0.1260801903 -0.5635585028 0.1)
(0.0822489706 -0.5039933301 0.1)
(0.1250933713 -0.3346393484 0.1)
(0.0823845645 -0.2821344482 0.1)
(0.09505669872 0.3778600756 0.1)
(0.07330476535 0.378258392 0.1)
(0.05220601492 0.4014700189 0.1)
(0.143274215 0.5980585348 0.1)
(0.1003237883 0.6358991892 0.1)
(0.1429576441 0.7387872038 0.1)
(0.0987892013 0.7695910472 0.1)
(0.1386654011 0.8660675308 0.1)
(0.09304770195 0.9354753182 0.1)
(0.09419420225 0.8994399339 0.1)
(0.3028303814 -0.7998058363 0.1)
(0.2585331212 -0.741883189 0.1)
(0.2982657397 -0.5629667564 0.1)
(0.254603937 -0.5038872531 0.1)
(0.2974421967 -0.3364140446 0.1)
(0.2549204029 -0.2844638526 0.1)
(0.268693378 0.3742214071 0.1)
(0.2470207983 0.3747070747 0.1)
(0.2258181129 0.3979228873 0.1)
(0.3163441327 0.5950220221 0.1)
(0.2734541068 0.6347780962 0.1)
(0.3160525103 0.7375653686 0.1)
(0.272016826 0.7704948467 0.1)
(0.3117113428 0.8660775184 0.1)
(0.2659832589 0.9364416764 0.1)
(0.2671908411 0.9006136378 0.1)
(0.4747541139 -0.7984516032 0.1)
(0.4304548114 -0.7406853689 0.1)
(0.4702028494 -0.5626595365 0.1)
(0.4265766296 -0.5041287252 0.1)
(0.4695136336 -0.3383475497 0.1)
(0.4270274482 -0.2869951718 0.1)
(0.3677039388 -0.02122417976 0.1)
(0.4417945479 0.3700788837 0.1)
(0.4202108736 0.3706066919 0.1)
(0.399019216 0.3938712834 0.1)
(0.4889096334 0.5891083539 0.1)
(0.446147992 0.6291088228 0.1)
(0.4882919194 0.7308071548 0.1)
(0.4443942288 0.7652859497 0.1)
(0.4838604096 0.8612149014 0.1)
(0.438412945 0.9342124775 0.1)
(0.439585141 0.8977330238 0.1)
(0.6466206038 -0.7967527026 0.1)
(0.6023819621 -0.7393998172 0.1)
(0.6421121846 -0.5621417394 0.1)
(0.5985714296 -0.5043321034 0.1)
(0.641598681 -0.3403158853 0.1)
(0.5991797964 -0.2895414303 0.1)
(0.5398872811 -0.02463524866 0.1)
(0.6142939362 0.365524919 0.1)
(0.5927397482 0.3661231229 0.1)
(0.6609312268 0.5806821696 0.1)
(0.6181583556 0.6201536413 0.1)
(0.6598870687 0.7204619228 0.1)
(0.6160549108 0.7549332744 0.1)
(0.6554259165 0.8537321937 0.1)
(0.6103005068 0.9298163282 0.1)
(0.6113769018 0.8920364859 0.1)
(0.8183923021 -0.7947868661 0.1)
(0.774185045 -0.7378102334 0.1)
(0.8139335841 -0.561350074 0.1)
(0.7704651392 -0.5043418412 0.1)
(0.8136337951 -0.3421943299 0.1)
(0.7712684736 -0.2921226984 0.1)
(0.7120163476 -0.02791614791 0.1)
(0.8325110346 0.5692919096 0.1)
(0.7897194196 0.6089228408 0.1)
(0.8310054864 0.7076002686 0.1)
(0.7872696592 0.743466803 0.1)
(0.8266751175 0.8452378407 0.1)
(0.7820064716 0.9246983773 0.1)
(0.7827655812 0.8843411619 0.1)
(0.9909669312 -0.7906737319 0.1)
(0.9459350322 -0.7351481127 0.1)
(0.9866105833 -0.5584564296 0.1)
(0.9423957049 -0.50376102 0.1)
(0.9866259294 -0.342360049 0.1)
(0.9434911049 -0.2949248932 0.1)
(0.9054382587 -0.04270316764 0.1)
(0.8946860041 -0.04250711059 0.1)
(0.8841397163 -0.03103989267 0.1)
(0.9116576144 0.152014123 0.1)
(0.9009719575 0.1525233493 0.1)
(0.8904149064 0.164192238 0.1)
(1.001613839 0.3971060226 0.1)
(0.9596400954 0.442469509 0.1)
(1.003561777 0.5547023784 0.1)
(0.9607646516 0.5940575502 0.1)
(1.001648797 0.6923039975 0.1)
(0.9580842273 0.7305241525 0.1)
(0.9977109744 0.8367804574 0.1)
(0.9535417277 0.920265919 0.1)
(0.9541459489 0.8785707166 0.1)
(1.163237004 -0.7923571576 0.1)
(1.118571578 -0.7328260698 0.1)
(1.158944963 -0.5630288559 0.1)
(1.115083422 -0.5032450373 0.1)
(1.158621317 -0.3459022791 0.1)
(1.116083846 -0.2940375866 0.1)
(1.056962683 -0.02795797195 0.1)
(1.057203532 -0.01650250356 0.1)
(1.104097709 0.1658853731 0.1)
(1.083054178 0.189249573 0.1)
(1.173234979 0.3878562465 0.1)
(1.130909026 0.4308811112 0.1)
(1.174350938 0.5381454969 0.1)
(1.131328347 0.5773810615 0.1)
(1.172001381 0.6768802851 0.1)
(1.12853516 0.7162229381 0.1)
(1.168780599 0.8293803212 0.1)
(1.125221604 0.9173490278 0.1)
(1.125446381 0.8729591452 0.1)
(1.337257347 -0.8051531044 0.1)
(1.292519171 -0.7462918777 0.1)
(1.333306388 -0.5832975982 0.1)
(1.288980793 -0.5212400434 0.1)
(1.332172003 -0.3647447137 0.1)
(1.289013836 -0.3069985464 0.1)
(1.334337692 -0.1639277458 0.1)
(1.292041416 -0.1134917787 0.1)
(1.337982019 0.02267614774 0.1)
(1.295878057 0.07016637754 0.1)
(1.341775372 0.202903348 0.1)
(1.299674992 0.2505805659 0.1)
(1.344734736 0.3692666844 0.1)
(1.302379429 0.4141356536 0.1)
(1.345121464 0.5178131517 0.1)
(1.302119705 0.5590958733 0.1)
(1.342683024 0.6624579426 0.1)
(1.299197865 0.703569618 0.1)
(1.340338912 0.8253942784 0.1)
(1.29722 0.916667 0.1)
(1.29722 0.870833 0.1)
(1.51153844 -0.8188769555 0.1)
(1.467206757 -0.7640130274 0.1)
(1.508645924 -0.6103324193 0.1)
(1.464136228 -0.5491926531 0.1)
(1.507053431 -0.3971954033 0.1)
(1.463297402 -0.3357834346 0.1)
(1.507998242 -0.1931461812 0.1)
(1.465104022 -0.1352442298 0.1)
(1.510670813 -0.002862568422 0.1)
(1.468277201 0.0514122853 0.1)
(1.513661047 0.1738754956 0.1)
(1.471415491 0.225115116 0.1)
(1.515541779 0.3368640085 0.1)
(1.473092449 0.384495693 0.1)
(1.515218229 0.4905318578 0.1)
(1.472294226 0.5350650174 0.1)
(1.51329277 0.6482977773 0.1)
(1.470075659 0.6924969169 0.1)
(1.5125 0.825 0.1)
(1.46944 0.916667 0.1)
(1.46944 0.870833 0.1)
(1.68472 -0.825 0.1)
(1.6413687 -0.7771850467 0.1)
(1.683702691 -0.633634743 0.1)
(1.639591085 -0.5780603171 0.1)
(1.682403574 -0.4329832541 0.1)
(1.6384905 -0.373761044 0.1)
(1.682443987 -0.2344037072 0.1)
(1.639145071 -0.1754872695 0.1)
(1.683766534 -0.04515398588 0.1)
(1.641003054 0.01119456889 0.1)
(1.685349602 0.1325767721 0.1)
(1.642818069 0.1853669222 0.1)
(1.686052978 0.3008612107 0.1)
(1.643409527 0.3498627891 0.1)
(1.685462564 0.4667947557 0.1)
(1.642520784 0.5130399744 0.1)
(1.684720127 0.6416680236 0.1)
(1.64167 0.6875 0.1)
(1.68472 0.825 0.1)
(1.64167 0.916667 0.1)
(1.64167 0.870833 0.1)
(1.85694 -0.825 0.1)
(1.81389 -0.779167 0.1)
(1.85694 -0.641667 0.1)
(1.813763487 -0.5947837864 0.1)
(1.856696781 -0.4557439667 0.1)
(1.813181187 -0.4040761905 0.1)
(1.856469097 -0.2667598282 0.1)
(1.81313068 -0.2132548978 0.1)
(1.856718303 -0.08072341578 0.1)
(1.813692092 -0.02803765286 0.1)
(1.857080843 0.1000482933 0.1)
(1.814219651 0.1503291308 0.1)
(1.857088109 0.2777443867 0.1)
(1.814168484 0.3252802559 0.1)
(1.85694 0.458333 0.1)
(1.81389 0.504167 0.1)
(1.85694 0.641667 0.1)
(1.81389 0.6875 0.1)
(1.85694 0.825 0.1)
(1.81389 0.916667 0.1)
(1.81389 0.870833 0.1)
(2.02917 -0.825 0.1)
(1.98611 -0.779167 0.1)
(2.02917 -0.641667 0.1)
(1.98611 -0.595833 0.1)
(2.02917 -0.458333 0.1)
(1.98611 -0.4125 0.1)
(2.02917 -0.275 0.1)
(1.986108425 -0.2291347939 0.1)
(2.02917 -0.0916667 0.1)
(1.986108395 -0.04568666518 0.1)
(2.02917 0.0916667 0.1)
(1.98611 0.1375 0.1)
(2.02917 0.275 0.1)
(1.98611 0.320833 0.1)
(2.02917 0.458333 0.1)
(1.98611 0.504167 0.1)
(2.02917 0.641667 0.1)
(1.98611 0.6875 0.1)
(2.02917 0.825 0.1)
(1.98611 0.916667 0.1)
(1.98611 0.870833 0.1)
(2.20139 -0.825 0.1)
(2.15833 -0.779167 0.1)
(2.20139 -0.641667 0.1)
(2.15833 -0.595833 0.1)
(2.20139 -0.458333 0.1)
(2.15833 -0.4125 0.1)
(2.20139 -0.275 0.1)
(2.15833 -0.229167 0.1)
(2.20139 -0.0916667 0.1)
(2.15833 -0.0458333 0.1)
(2.20139 0.0916667 0.1)
(2.15833 0.1375 0.1)
(2.20139 0.275 0.1)
(2.15833 0.320833 0.1)
(2.20139 0.458333 0.1)
(2.15833 0.504167 0.1)
(2.20139 0.641667 0.1)
(2.15833 0.6875 0.1)
(2.20139 0.825 0.1)
(2.15833 0.916667 0.1)
(2.15833 0.870833 0.1)
(2.37361 -0.825 0.1)
(2.33056 -0.779167 0.1)
(2.37361 -0.641667 0.1)
(2.33056 -0.595833 0.1)
(2.37361 -0.458333 0.1)
(2.33056 -0.4125 0.1)
(2.37361 -0.275 0.1)
(2.33056 -0.229167 0.1)
(2.37361 -0.0916667 0.1)
(2.33056 -0.0458333 0.1)
(2.37361 0.0916667 0.1)
(2.33056 0.1375 0.1)
(2.37361 0.275 0.1)
(2.33056 0.320833 0.1)
(2.37361 0.458333 0.1)
(2.33056 0.504167 0.1)
(2.37361 0.641667 0.1)
(2.33056 0.6875 0.1)
(2.37361 0.825 0.1)
(2.33056 0.916667 0.1)
(2.33056 0.870833 0.1)
(2.54583 -0.825 0.1)
(2.50278 -0.779167 0.1)
(2.54583 -0.641667 0.1)
(2.50278 -0.595833 0.1)
(2.54583 -0.458333 0.1)
(2.50278 -0.4125 0.1)
(2.54583 -0.275 0.1)
(2.50278 -0.229167 0.1)
(2.54583 -0.0916667 0.1)
(2.50278 -0.0458333 0.1)
(2.54583 0.0916667 0.1)
(2.50278 0.1375 0.1)
(2.54583 0.275 0.1)
(2.50278 0.320833 0.1)
(2.54583 0.458333 0.1)
(2.50278 0.504167 0.1)
(2.54583 0.641667 0.1)
(2.50278 0.6875 0.1)
(2.54583 0.825 0.1)
(2.50278 0.916667 0.1)
(2.50278 0.870833 0.1)
(2.71806 -0.825 0.1)
(2.675 -0.779167 0.1)
(2.71806 -0.641667 0.1)
(2.675 -0.595833 0.1)
(2.71806 -0.458333 0.1)
(2.675 -0.4125 0.1)
(2.71806 -0.275 0.1)
(2.675 -0.229167 0.1)
(2.71806 -0.0916667 0.1)
(2.675 -0.0458333 0.1)
(2.71806 0.0916667 0.1)
(2.675 0.1375 0.1)
(2.71806 0.275 0.1)
(2.675 0.320833 0.1)
(2.71806 0.458333 0.1)
(2.675 0.504167 0.1)
(2.71806 0.641667 0.1)
(2.675 0.6875 0.1)
(2.71806 0.825 0.1)
(2.675 0.916667 0.1)
(2.675 0.870833 0.1)
(2.89028 -0.825 0.1)
(2.84722 -0.779167 0.1)
(2.89028 -0.641667 0.1)
(2.84722 -0.595833 0.1)
(2.89028 -0.458333 0.1)
(2.84722 -0.4125 0.1)
(2.89028 -0.275 0.1)
(2.84722 -0.229167 0.1)
(2.89028 -0.0916667 0.1)
(2.84722 -0.0458333 0.1)
(2.89028 0.0916667 0.1)
(2.84722 0.1375 0.1)
(2.89028 0.275 0.1)
(2.84722 0.320833 0.1)
(2.89028 0.458333 0.1)
(2.84722 0.504167 0.1)
(2.89028 0.641667 0.1)
(2.84722 0.6875 0.1)
(2.89028 0.825 0.1)
(2.84722 0.916667 0.1)
(2.84722 0.870833 0.1)
(3.0625 -0.825 0.1)
(3.01944 -0.779167 0.1)
(3.0625 -0.641667 0.1)
(3.01944 -0.595833 0.1)
(3.0625 -0.458333 0.1)
(3.01944 -0.4125 0.1)
(3.0625 -0.275 0.1)
(3.01944 -0.229167 0.1)
(3.0625 -0.0916667 0.1)
(3.01944 -0.0458333 0.1)
(3.0625 0.0916667 0.1)
(3.01944 0.1375 0.1)
(3.0625 0.275 0.1)
(3.01944 0.320833 0.1)
(3.0625 0.458333 0.1)
(3.01944 0.504167 0.1)
(3.0625 0.641667 0.1)
(3.01944 0.6875 0.1)
(3.0625 0.825 0.1)
(3.01944 0.916667 0.1)
(3.01944 0.870833 0.1)
(3.23472 -0.825 0.1)
(3.19167 -0.779167 0.1)
(3.23472 -0.641667 0.1)
(3.19167 -0.595833 0.1)
(3.23472 -0.458333 0.1)
(3.19167 -0.4125 0.1)
(3.23472 -0.275 0.1)
(3.19167 -0.229167 0.1)
(3.23472 -0.0916667 0.1)
(3.19167 -0.0458333 0.1)
(3.23472 0.0916667 0.1)
(3.19167 0.1375 0.1)
(3.23472 0.275 0.1)
(3.19167 0.320833 0.1)
(3.23472 0.458333 0.1)
(3.19167 0.504167 0.1)
(3.23472 0.641667 0.1)
(3.19167 0.6875 0.1)
(3.23472 0.825 0.1)
(3.19167 0.916667 0.1)
(3.19167 0.870833 0.1)
(3.40694 -0.825 0.1)
(3.36389 -0.779167 0.1)
(3.40694 -0.641667 0.1)
(3.36389 -0.595833 0.1)
(3.40694 -0.458333 0.1)
(3.36389 -0.4125 0.1)
(3.40694 -0.275 0.1)
(3.36389 -0.229167 0.1)
(3.40694 -0.0916667 0.1)
(3.36389 -0.0458333 0.1)
(3.40694 0.0916667 0.1)
(3.36389 0.1375 0.1)
(3.40694 0.275 0.1)
(3.36389 0.320833 0.1)
(3.40694 0.458333 0.1)
(3.36389 0.504167 0.1)
(3.40694 0.641667 0.1)
(3.36389 0.6875 0.1)
(3.40694 0.825 0.1)
(3.36389 0.916667 0.1)
(3.36389 0.870833 0.1)
(3.57917 -0.825 0.1)
(3.53611 -0.779167 0.1)
(3.57917 -0.641667 0.1)
(3.53611 -0.595833 0.1)
(3.57917 -0.458333 0.1)
(3.53611 -0.4125 0.1)
(3.57917 -0.275 0.1)
(3.53611 -0.229167 0.1)
(3.57917 -0.0916667 0.1)
(3.53611 -0.0458333 0.1)
(3.57917 0.0916667 0.1)
(3.53611 0.1375 0.1)
(3.57917 0.275 0.1)
(3.53611 0.320833 0.1)
(3.57917 0.458333 0.1)
(3.53611 0.504167 0.1)
(3.57917 0.641667 0.1)
(3.53611 0.6875 0.1)
(3.57917 0.825 0.1)
(3.53611 0.916667 0.1)
(3.53611 0.870833 0.1)
(3.75139 -0.825 0.1)
(3.70833 -0.779167 0.1)
(3.75139 -0.641667 0.1)
(3.70833 -0.595833 0.1)
(3.75139 -0.458333 0.1)
(3.70833 -0.4125 0.1)
(3.75139 -0.275 0.1)
(3.70833 -0.229167 0.1)
(3.75139 -0.0916667 0.1)
(3.70833 -0.0458333 0.1)
(3.75139 0.0916667 0.1)
(3.70833 0.1375 0.1)
(3.75139 0.275 0.1)
(3.70833 0.320833 0.1)
(3.75139 0.458333 0.1)
(3.70833 0.504167 0.1)
(3.75139 0.641667 0.1)
(3.70833 0.6875 0.1)
(3.75139 0.825 0.1)
(3.70833 0.916667 0.1)
(3.70833 0.870833 0.1)
(3.92361 -0.825 0.1)
(3.88056 -0.779167 0.1)
(3.92361 -0.641667 0.1)
(3.88056 -0.595833 0.1)
(3.92361 -0.458333 0.1)
(3.88056 -0.4125 0.1)
(3.92361 -0.275 0.1)
(3.88056 -0.229167 0.1)
(3.92361 -0.0916667 0.1)
(3.88056 -0.0458333 0.1)
(3.92361 0.0916667 0.1)
(3.88056 0.1375 0.1)
(3.92361 0.275 0.1)
(3.88056 0.320833 0.1)
(3.92361 0.458333 0.1)
(3.88056 0.504167 0.1)
(3.92361 0.641667 0.1)
(3.88056 0.6875 0.1)
(3.92361 0.825 0.1)
(3.88056 0.916667 0.1)
(3.88056 0.870833 0.1)
(4.09583 -0.825 0.1)
(4.05278 -0.779167 0.1)
(4.09583 -0.641667 0.1)
(4.05278 -0.595833 0.1)
(4.09583 -0.458333 0.1)
(4.05278 -0.4125 0.1)
(4.09583 -0.275 0.1)
(4.05278 -0.229167 0.1)
(4.09583 -0.0916667 0.1)
(4.05278 -0.0458333 0.1)
(4.09583 0.0916667 0.1)
(4.05278 0.1375 0.1)
(4.09583 0.275 0.1)
(4.05278 0.320833 0.1)
(4.09583 0.458333 0.1)
(4.05278 0.504167 0.1)
(4.09583 0.641667 0.1)
(4.05278 0.6875 0.1)
(4.09583 0.825 0.1)
(4.05278 0.916667 0.1)
(4.05278 0.870833 0.1)
(4.26806 -0.825 0.1)
(4.225 -0.779167 0.1)
(4.26806 -0.641667 0.1)
(4.225 -0.595833 0.1)
(4.26806 -0.458333 0.1)
(4.225 -0.4125 0.1)
(4.26806 -0.275 0.1)
(4.225 -0.229167 0.1)
(4.26806 -0.0916667 0.1)
(4.225 -0.0458333 0.1)
(4.26806 0.0916667 0.1)
(4.225 0.1375 0.1)
(4.26806 0.275 0.1)
(4.225 0.320833 0.1)
(4.26806 0.458333 0.1)
(4.225 0.504167 0.1)
(4.26806 0.641667 0.1)
(4.225 0.6875 0.1)
(4.26806 0.825 0.1)
(4.225 0.916667 0.1)
(4.225 0.870833 0.1)
(4.44028 -0.825 0.1)
(4.39722 -0.779167 0.1)
(4.44028 -0.641667 0.1)
(4.39722 -0.595833 0.1)
(4.44028 -0.458333 0.1)
(4.39722 -0.4125 0.1)
(4.44028 -0.275 0.1)
(4.39722 -0.229167 0.1)
(4.44028 -0.0916667 0.1)
(4.39722 -0.0458333 0.1)
(4.44028 0.0916667 0.1)
(4.39722 0.1375 0.1)
(4.44028 0.275 0.1)
(4.39722 0.320833 0.1)
(4.44028 0.458333 0.1)
(4.39722 0.504167 0.1)
(4.44028 0.641667 0.1)
(4.39722 0.6875 0.1)
(4.44028 0.825 0.1)
(4.39722 0.916667 0.1)
(4.39722 0.870833 0.1)
(4.6125 -0.825 0.1)
(4.56944 -0.779167 0.1)
(4.6125 -0.641667 0.1)
(4.56944 -0.595833 0.1)
(4.6125 -0.458333 0.1)
(4.56944 -0.4125 0.1)
(4.6125 -0.275 0.1)
(4.56944 -0.229167 0.1)
(4.6125 -0.0916667 0.1)
(4.56944 -0.0458333 0.1)
(4.6125 0.0916667 0.1)
(4.56944 0.1375 0.1)
(4.6125 0.275 0.1)
(4.56944 0.320833 0.1)
(4.6125 0.458333 0.1)
(4.56944 0.504167 0.1)
(4.6125 0.641667 0.1)
(4.56944 0.6875 0.1)
(4.6125 0.825 0.1)
(4.56944 0.916667 0.1)
(4.56944 0.870833 0.1)
(4.78472 -0.825 0.1)
(4.74167 -0.779167 0.1)
(4.78472 -0.641667 0.1)
(4.74167 -0.595833 0.1)
(4.78472 -0.458333 0.1)
(4.74167 -0.4125 0.1)
(4.78472 -0.275 0.1)
(4.74167 -0.229167 0.1)
(4.78472 -0.0916667 0.1)
(4.74167 -0.0458333 0.1)
(4.78472 0.0916667 0.1)
(4.74167 0.1375 0.1)
(4.78472 0.275 0.1)
(4.74167 0.320833 0.1)
(4.78472 0.458333 0.1)
(4.74167 0.504167 0.1)
(4.78472 0.641667 0.1)
(4.74167 0.6875 0.1)
(4.78472 0.825 0.1)
(4.74167 0.916667 0.1)
(4.74167 0.870833 0.1)
(5 -0.825 0.1)
(4.95694 -0.825 0.1)
(4.91389 -0.779167 0.1)
(5 -0.641667 0.1)
(4.95694 -0.641667 0.1)
(4.91389 -0.595833 0.1)
(5 -0.458333 0.1)
(4.95694 -0.458333 0.1)
(4.91389 -0.4125 0.1)
(5 -0.275 0.1)
(4.95694 -0.275 0.1)
(4.91389 -0.229167 0.1)
(5 -0.0916667 0.1)
(4.95694 -0.0916667 0.1)
(4.91389 -0.0458333 0.1)
(5 0.0916667 0.1)
(4.95694 0.0916667 0.1)
(4.91389 0.1375 0.1)
(5 0.275 0.1)
(4.95694 0.275 0.1)
(4.91389 0.320833 0.1)
(5 0.458333 0.1)
(4.95694 0.458333 0.1)
(4.91389 0.504167 0.1)
(5 0.641667 0.1)
(4.95694 0.641667 0.1)
(4.91389 0.6875 0.1)
(5 0.825 0.1)
(4.95694 0.825 0.1)
(4.91389 0.916667 0.1)
(4.91389 0.870833 0.1)
(0.1584583242 0.2969764946 0.1)
(0.3320821669 0.2932410745 0.1)
(0.2019114571 0.2960979102 0.1)
(0.4968554874 -0.02379252882 0.1)
(0.5047685148 0.2776937509 0.1)
(0.5049815943 0.289017774 0.1)
(0.3753843056 0.2922216329 0.1)
(0.6689907747 -0.02711056703 0.1)
(0.8411115342 -0.03026326334 0.1)
(0.8193528378 -0.04115229875 0.1)
(0.8301191733 -0.04134465095 0.1)
(0.8062547737 0.2690185556 0.1)
(0.8273341552 0.2455992899 0.1)
(1.013912239 -0.02705084584 0.1)
(0.9927470027 -0.04215828789 0.1)
(1.002913726 -0.03828213725 0.1)
(1.007463139 0.10245953 0.1)
(1.016320536 0.08749484001 0.1)
(0.8791734497 0.1146219825 0.1)
(0.9985041848 0.2384256897 0.1)
(0.9776486236 0.2623573638 0.1)
(0.9562928765 0.2633074742 0.1)
(0.9130908948 0.2424019662 0.1)
(0.934913525 0.2642290744 0.1)
(-0.04423884625 0.03416714727 0.1)
(-0.03311230342 0.03368115858 0.1)
(-0.02162688464 0.0215680573 0.1)
(-0.03291401866 0.02207042525 0.1)
(-0.04415808376 0.02258989167 0.1)
(-0.01071885827 0.02125770066 0.1)
(-0.06622423363 0.0003838185104 0.1)
(-0.1325837966 0.07462690856 0.1)
(-0.1108634872 0.09729615367 0.1)
(-0.1279055983 0.2643576927 0.1)
(-0.1268471221 0.2879656596 0.1)
(-0.1487384733 0.28765575 0.1)
(-0.104712575 0.2883774796 0.1)
(-0.1256052448 0.311590775 0.1)
(0.1389983418 0.3997502534 0.1)
(0.1168095534 0.3774437359 0.1)
(0.2584877164 -0.09863054393 0.1)
(0.2800145477 -0.09905513441 0.1)
(0.3010720011 -0.1222328858 0.1)
(0.2369488877 -0.09820570121 0.1)
(0.312512821 0.3959511181 0.1)
(0.2903767871 0.37372751 0.1)
(0.4306292664 -0.1019837216 0.1)
(0.4521643272 -0.1023974826 0.1)
(0.473218349 -0.1255481559 0.1)
(0.3871119931 -0.1238988251 0.1)
(0.4091022458 -0.1015681291 0.1)
(0.4107393532 -0.02208497971 0.1)
(0.4853873918 0.3916873311 0.1)
(0.4633778648 0.3695340794 0.1)
(0.6028299478 -0.1052361199 0.1)
(0.6243373721 -0.1056322961 0.1)
(0.6453858997 -0.1287588485 0.1)
(0.5593122962 -0.1271692195 0.1)
(0.5813085896 -0.10483665 0.1)
(0.5829382388 -0.02547036965 0.1)
(0.5360095957 0.2146198235 0.1)
(0.7749521906 -0.1083658423 0.1)
(0.7964688231 -0.1087522099 0.1)
(0.8170452375 -0.1546668734 0.1)
(0.8175150989 -0.1318907176 0.1)
(0.7314589659 -0.1303264614 0.1)
(0.7534336005 -0.107977433 0.1)
(0.7550422149 -0.02870773188 0.1)
(0.7655712122 -0.04018858937 0.1)
(0.7513858949 0.2029982192 0.1)
(0.7619637243 0.1914137124 0.1)
(0.9470926632 -0.1115799665 0.1)
(0.968765147 -0.1120226226 0.1)
(0.9902518566 -0.1561250202 0.1)
(0.9907431009 -0.1332832994 0.1)
(0.9031149168 -0.1563004297 0.1)
(0.9035851986 -0.1335042783 0.1)
(0.9255608961 -0.1111522716 0.1)
(0.9271614373 -0.03183839101 0.1)
(0.9161894504 -0.042902203 0.1)
(1.143294506 -0.01831254645 0.1)
(1.164819749 -0.01876510972 0.1)
(1.165301467 0.004146826832 0.1)
(1.165783171 0.02705806354 0.1)
(1.164338031 -0.04167704627 0.1)
(1.145221352 0.07333390005 0.1)
(1.166746595 0.07288133678 0.1)
(1.167228304 0.09579287342 0.1)
(1.166264883 0.04996970016 0.1)
(1.059130361 0.07514314311 0.1)
(1.059371226 0.08659941132 0.1)
(1.048844463 0.09828166636 0.1)
(0.099659732 0.05822429665 0.1)
(0.1646547804 0.05687739507 0.1)
(0.1149712527 0.2978107825 0.1)
(0.3039025234 0.0141077404 0.1)
(0.3146612929 0.01388854129 0.1)
(0.324951093 -0.009016812455 0.1)
(0.3251855882 0.002326764758 0.1)
(0.2821304935 0.003202981791 0.1)
(0.2931397547 0.01432702358 0.1)
(0.2724087986 0.05431842684 0.1)
(0.3370229615 0.05355185974 0.1)
(0.3261348914 0.04790658102 0.1)
(0.3315143094 0.04777477586 0.1)
(0.1862399108 0.05651399266 0.1)
(0.2508961948 0.05484884164 0.1)
(0.2887263463 0.2942286374 0.1)
(0.2889629041 0.305575172 0.1)
(0.2781166165 0.305818216 0.1)
(0.2672582684 0.3060585129 0.1)
(0.2997961526 0.3053304016 0.1)
(0.2823563609 0.248768491 0.1)
(0.277050267 0.25467133 0.1)
(0.2553382545 0.2551368221 0.1)
(0.2498017446 0.2494619463 0.1)
(0.2453357974 0.2951819228 0.1)
(0.2455774593 0.3065333511 0.1)
(0.2347249627 0.3067665234 0.1)
(0.2564178743 0.3062964319 0.1)
(0.4538048451 -0.02294241114 0.1)
(0.3637252411 0.04695721744 0.1)
(0.358475799 0.0528904723 0.1)
(0.5144011476 0.2151586548 0.1)
(0.4618470374 0.2901107092 0.1)
(0.5045605604 0.2663756214 0.1)
(0.4935690193 0.2553332252 0.1)
(0.4186479272 0.2911779957 0.1)
(0.625960413 -0.02629488327 0.1)
(0.7881106494 0.01007073352 0.1)
(0.7936028143 0.01563451683 0.1)
(0.808592522 -0.04095907288 0.1)
(0.79807427 -0.02949044395 0.1)
(0.84788179 0.1883729321 0.1)
(0.804953578 0.1899558382 0.1)
(0.8158632813 0.2008165145 0.1)
(1.020145836 0.01872523729 0.1)
(0.9809366263 -0.04390741877 0.1)
(0.9702082697 -0.03267942659 0.1)
(1.020450258 0.04129192435 0.1)
(0.08579801563 -0.09514081394 0.1)
(0.1074173481 -0.09558535321 0.1)
(0.06404584327 -0.09466347511 0.1)
(0.04440501072 0.01966063722 0.1)
(0.05533471738 0.01939383448 0.1)
(0.06604606272 0.007761110455 0.1)
(0.03343317079 0.01994532956 0.1)
(0.2177677178 0.01587869599 0.1)
(0.2285424208 0.01565616123 0.1)
(0.2390695052 0.00408432384 0.1)
(0.1959646318 0.004971589669 0.1)
(0.20697906 0.01610352459 0.1)
(0.635818278 0.3649343442 0.1)
(0.7292461521 0.1642329343 0.1)
(0.9331307328 0.1621174877 0.1)
(0.9223190825 0.1514485926 0.1)
(0.1313637707 0.01769331862 0.1)
(0.1422002708 0.0174604826 0.1)
(0.1527750293 0.005872639558 0.1)
(0.1094739141 0.00679803884 0.1)
(0.1205352899 0.01792698626 0.1)
(0.03770553154 0.2649256517 0.1)
(0.02707241361 0.2764637105 0.1)
(0.07142527478 0.2985882962 0.1)
(0.5690796997 0.2533825503 0.1)
(0.5582991545 0.2536602201 0.1)
(0.5477306258 0.2652589346 0.1)
(0.5908459884 0.2641093903 0.1)
(0.5798520996 0.2530980503 0.1)
(0.9006345178 0.1137811824 0.1)
(-0.06757378549 0.09505720408 0.1)
(-0.0675943452 0.107000275 0.1)
(-0.05684363917 0.1186096589 0.1)
(-0.0671151435 0.08249498778 0.1)
(-0.05559494093 0.06962908901 0.1)
(-0.04429297334 0.0688617507 0.1)
(-0.02220083296 0.07941160213 0.1)
(-0.03316904883 0.06829880005 0.1)
(-0.06550036306 0.1942604392 0.1)
(-0.06499011942 0.2060934282 0.1)
(-0.05300896553 0.2186293527 0.1)
(-0.05572171797 0.1703683119 0.1)
(-0.06597891225 0.1824125806 0.1)
(0.05850069659 0.2245962241 0.1)
(0.01922376241 0.2076811928 0.1)
(0.5575855197 0.2141039809 0.1)
(0.7507941866 0.1636750686 0.1)
(0.9384844366 -0.003984247564 0.1)
(0.1213447455 0.05771156169 0.1)
(0.1430183788 0.05718086197 0.1)
(0.2939716763 0.05413353162 0.1)
(0.3207563618 0.04803306633 0.1)
(0.31551248 0.05413564172 0.1)
(0.2078029358 0.0559555118 0.1)
(0.2293669837 0.05539810968 0.1)
(0.4927932325 0.2155325385 0.1)
(0.4983083666 0.2211897596 0.1)
(0.9599721203 -0.004463027127 0.1)
(0.981536662 -0.004616350347 0.1)
(0.9379246398 0.09550740184 0.1)
(1.076310228 -0.1315125398 0.1)
(1.098317168 -0.1090541663 0.1)
(1.057444402 -0.005046035393 0.1)
(1.068442873 0.006183256458 0.1)
(-0.02995807621 0.1295193315 0.1)
(-0.01200598124 0.1084266159 0.1)
(-0.01742675075 0.1028761348 0.1)
(-0.02952061061 0.1575053194 0.1)
(1.069406269 0.05200522998 0.1)
(1.058879485 0.06368648524 0.1)
(1.005708321 0.06038412006 0.1)
(-0.94311 0.962359 0.1)
(-0.771676 0.963108 0.1)
(-0.598684 0.965251 0.1)
(-0.426783 0.965869 0.1)
(-0.2537789596 0.9671830865 0.1)
(-0.08119018506 0.9708296235 0.1)
(0.09210240901 0.9738732813 0.1)
(0.2649675795 0.97453185 0.1)
(0.437442973 0.9729277166 0.1)
(0.6094756738 0.9698723657 0.1)
(0.7814059243 0.9665964572 0.1)
(0.9532646283 0.9643487068 0.1)
(1.12524 0.963225 0.1)
(1.29722 0.9625 0.1)
(1.46944 0.9625 0.1)
(1.64167 0.9625 0.1)
(1.81389 0.9625 0.1)
(1.98611 0.9625 0.1)
(2.15833 0.9625 0.1)
(2.33056 0.9625 0.1)
(2.50278 0.9625 0.1)
(2.675 0.9625 0.1)
(2.84722 0.9625 0.1)
(3.01944 0.9625 0.1)
(3.19167 0.9625 0.1)
(3.36389 0.9625 0.1)
(3.53611 0.9625 0.1)
(3.70833 0.9625 0.1)
(3.88056 0.9625 0.1)
(4.05278 0.9625 0.1)
(4.225 0.9625 0.1)
(4.39722 0.9625 0.1)
(4.56944 0.9625 0.1)
(4.74167 0.9625 0.1)
(4.91389 0.9625 0.1)
(1.186334994 -0.01921746279 0.1)
(1.18826184 0.0724289837 0.1)
(0.2891985462 0.3169257266 0.1)
(0.2458181844 0.3178877998 0.1)
(0.8289355679 0.3363246736 0.1)
(-0.1966516601 0.1008062072 0.1)
(-0.1947443872 0.1932819484 0.1)
(-0.04472092967 -0.06915654836 0.1)
(0.5716158955 0.3894252974 0.1)
(0.902642236 -0.1791155348 0.1)
(0.3247165348 -0.02036338901 0.1)
(-0.02162602047 0.03305057616 0.1)
(0.2149385133 -0.1205419755 0.1)
(0.8165739349 -0.1774640035 0.1)
(0.989769358 -0.1789789276 0.1)
(0.1285659403 -0.1188050296 0.1)
(0.04184934076 -0.1169658295 0.1)
(-0.94311 -0.962641 0.1)
(-0.771746 -0.962725 0.1)
(-0.600176 -0.963422 0.1)
(-0.426342 -0.966051 0.1)
(-0.2542028982 -0.9665318351 0.1)
(-0.08219370331 -0.9650127398 0.1)
(0.09062592498 -0.963897731 0.1)
(0.2630410457 -0.9632527765 0.1)
(0.4351012083 -0.9623822614 0.1)
(0.6071681308 -0.9614279984 0.1)
(0.7792082409 -0.960749814 0.1)
(0.9510908964 -0.9584397105 0.1)
(1.123599495 -0.9542852171 0.1)
(1.296592305 -0.9589288065 0.1)
(1.469429251 -0.9624407344 0.1)
(1.64167 -0.9625 0.1)
(1.81389 -0.9625 0.1)
(1.98611 -0.9625 0.1)
(2.15833 -0.9625 0.1)
(2.33056 -0.9625 0.1)
(2.50278 -0.9625 0.1)
(2.675 -0.9625 0.1)
(2.84722 -0.9625 0.1)
(3.01944 -0.9625 0.1)
(3.19167 -0.9625 0.1)
(3.36389 -0.9625 0.1)
(3.53611 -0.9625 0.1)
(3.70833 -0.9625 0.1)
(3.88056 -0.9625 0.1)
(4.05278 -0.9625 0.1)
(4.225 -0.9625 0.1)
(4.39722 -0.9625 0.1)
(4.56944 -0.9625 0.1)
(4.74167 -0.9625 0.1)
(4.91389 -0.9625 0.1)
(0.9503021823 0.03327217366 0.1)
(0.9449764126 0.0338148419 0.1)
(0.9505898614 0.03615586375 0.1)
(0.9452630919 0.03669855301 0.1)
(0.950810536 0.03837401524 0.1)
(0.9454837686 0.03891680448 0.1)
(0.9556375155 0.03275621029 0.1)
(0.9559291874 0.03563951637 0.1)
(0.9561528593 0.03785750482 0.1)
(0.1385924096 0.09400313217 0.1)
(0.1332065585 0.09454256261 0.1)
(0.1388651131 0.09688813734 0.1)
(0.1335022232 0.09742548468 0.1)
(0.1390758088 0.09910739883 0.1)
(0.1337298858 0.09964298914 0.1)
(0.04290441985 0.1860507433 0.1)
(0.04727156108 0.1877337173 0.1)
(0.04395114845 0.1833484438 0.1)
(0.04826596393 0.1850117134 0.1)
(0.04475643213 0.1812697574 0.1)
(0.04903092012 0.1829178713 0.1)
(0.5608239971 0.1746066809 0.1)
(0.5653203671 0.1736255499 0.1)
(0.5602063434 0.1717752385 0.1)
(0.5647027154 0.1707942074 0.1)
(0.5597314566 0.1695972394 0.1)
(0.5642278287 0.1686162084 0.1)
(0.1278493445 0.09511199773 0.1)
(0.1281589788 0.0979933258 0.1)
(0.128397622 0.1002097992 0.1)
(0.7368830422 0.1298469684 0.1)
(0.7444369311 0.1276690512 0.1)
(0.7360813285 0.1270621842 0.1)
(0.7436232849 0.1248876019 0.1)
(0.7354641641 0.1249200448 0.1)
(0.7429971727 0.1227480401 0.1)
(0.9037606359 0.07598061905 0.1)
(0.9081432803 0.07444285556 0.1)
(0.9027959763 0.07324769248 0.1)
(0.9071677093 0.0717142593 0.1)
(0.9020546223 0.07114541134 0.1)
(0.9064164248 0.06961538766 0.1)
(0.9925624325 0.03079421045 0.1)
(0.9877524762 0.03022839132 0.1)
(0.9927527635 0.03266332265 0.1)
(0.9879990753 0.03268054957 0.1)
(0.9928990195 0.03410116601 0.1)
(0.988188766 0.034566779 0.1)
(0.05489471355 0.1903582575 0.1)
(0.05580336887 0.1876063495 0.1)
(0.05650232875 0.1854895895 0.1)
(0.002971637659 0.1626988758 0.1)
(0.009348838033 0.1684891056 0.1)
(0.005127957999 0.1607628219 0.1)
(0.01116010917 0.1662270326 0.1)
(0.006786657213 0.1592734267 0.1)
(0.01255343839 0.1644868602 0.1)
(0.6924997417 0.05627489535 0.1)
(0.6871422394 0.05668790196 0.1)
(0.6927275181 0.05916384576 0.1)
(0.687366023 0.05957723639 0.1)
(0.6929022722 0.06138626345 0.1)
(0.6875377799 0.06179981711 0.1)
(0.6764671398 0.05750897529 0.1)
(0.6713972166 0.05789893187 0.1)
(0.6766879262 0.06039847276 0.1)
(0.6716160076 0.06078867133 0.1)
(0.6768586854 0.06262117448 0.1)
(0.6717837675 0.06301143612 0.1)
(0.6978488989 0.05584556054 0.1)
(0.6980796704 0.05873424794 0.1)
(0.6982574197 0.06095640261 0.1)
(0.7139143539 0.05455657788 0.1)
(0.7085581962 0.05498595985 0.1)
(0.7141451276 0.05744536526 0.1)
(0.7087899675 0.05787462623 0.1)
(0.7143228768 0.05966751993 0.1)
(0.7089677146 0.06009668092 0.1)
(0.7615950811 0.05071227369 0.1)
(0.7566698828 0.05113519541 0.1)
(0.7618428279 0.05359960397 0.1)
(0.7569156321 0.05402266771 0.1)
(0.7620335553 0.05582058557 0.1)
(0.757105364 0.05624387029 0.1)
(0.7959947891 0.1120871482 0.1)
(0.8035272266 0.1096976874 0.1)
(0.7951304535 0.1093210054 0.1)
(0.802651967 0.1069352752 0.1)
(0.7944655801 0.107193211 0.1)
(0.8019781502 0.1048102694 0.1)
(0.9345860724 0.03481176841 0.1)
(0.9300976984 0.03526931568 0.1)
(0.9348697587 0.03769584251 0.1)
(0.9303923633 0.03815225876 0.1)
(0.9350874402 0.039914357 0.1)
(0.9306190303 0.0403699842 0.1)
(1.000796169 0.03274076638 0.1)
(1.000587795 0.03329606911 0.1)
(0.9716528227 0.03112770673 0.1)
(0.9663084285 0.03164085994 0.1)
(0.9719443706 0.03400511411 0.1)
(0.9666020789 0.0345231242 0.1)
(0.9721689476 0.03621858254 0.1)
(0.9668287332 0.03674024977 0.1)
(0.9681493461 0.05207417831 0.1)
(0.9724185241 0.05042027423 0.1)
(0.9670963767 0.04937501548 0.1)
(0.9713676047 0.04772346884 0.1)
(0.9662865529 0.04729867932 0.1)
(0.9705598204 0.04564899021 0.1)
(0.1734898997 0.2120699691 0.1)
(0.1788149606 0.2124926291 0.1)
(0.1737292471 0.2091819999 0.1)
(0.1790352702 0.2096030597 0.1)
(0.1739135882 0.2069603342 0.1)
(0.1792045851 0.2073803096 0.1)
(0.1841934547 0.2128877598 0.1)
(0.1843937287 0.2099967112 0.1)
(0.1845490173 0.2077728557 0.1)
(0.1949660593 0.2135644678 0.1)
(0.200366706 0.2138239029 0.1)
(0.1951232672 0.2106707239 0.1)
(0.2005028869 0.2109291007 0.1)
(0.1952445045 0.2084447837 0.1)
(0.2006071027 0.2087023181 0.1)
(0.346360585 0.2100000485 0.1)
(0.3517147837 0.2094774871 0.1)
(0.3460828869 0.2071153484 0.1)
(0.3514300997 0.206593534 0.1)
(0.3458701958 0.2048963289 0.1)
(0.3512104207 0.2043751616 0.1)
(0.3302387915 0.2114162435 0.1)
(0.3356055958 0.210969934 0.1)
(0.3300030253 0.2085278612 0.1)
(0.3353628416 0.2080821987 0.1)
(0.3298222809 0.2063059695 0.1)
(0.3351751072 0.2058608541 0.1)
(0.3570839538 0.2089534107 0.1)
(0.3567833008 0.2060710937 0.1)
(0.3565516454 0.2038539732 0.1)
(0.3677282411 0.207761003 0.1)
(0.3727982958 0.207187003 0.1)
(0.36740164 0.204881432 0.1)
(0.3724657107 0.204308258 0.1)
(0.3671510246 0.2026664106 0.1)
(0.3722101048 0.2020937415 0.1)
(0.1595689524 0.09214339173 0.1)
(0.1546219649 0.09257657373 0.1)
(0.1598117066 0.09503112705 0.1)
(0.1548757019 0.09546337798 0.1)
(0.1599984412 0.09725249267 0.1)
(0.1550714241 0.09768405453 0.1)
(0.1493147887 0.09305213631 0.1)
(0.1495715208 0.09593867754 0.1)
(0.149770236 0.0981589911 0.1)
(0.8247475756 0.1028785264 0.1)
(0.8291818211 0.101416395 0.1)
(0.8238474728 0.100123838 0.1)
(0.8282757596 0.09866373229 0.1)
(0.8231547801 0.09800493036 0.1)
(0.8275790951 0.0965462084 0.1)
(0.8828026315 0.08338429473 0.1)
(0.8871518656 0.0818749398 0.1)
(0.8818518826 0.08064697478 0.1)
(0.8861901844 0.07914095039 0.1)
(0.8811194594 0.07854130517 0.1)
(0.8854518129 0.07703780637 0.1)
(0.5407768501 0.1789017234 0.1)
(0.5455905339 0.1778846145 0.1)
(0.5401771188 0.1760664034 0.1)
(0.5449898049 0.1750494154 0.1)
(0.5397161701 0.1738853107 0.1)
(0.5445278628 0.1728686437 0.1)
(0.550729838 0.1767984457 0.1)
(0.5501241375 0.1739646514 0.1)
(0.5496582109 0.1717846636 0.1)
(0.6532995036 0.1526312789 0.1)
(0.6580192408 0.1514274034 0.1)
(0.6525833237 0.1498234127 0.1)
(0.6572990765 0.1486203212 0.1)
(0.6520317987 0.1476634286 0.1)
(0.6567455646 0.1464609789 0.1)
(0.1118231282 0.09688766312 0.1)
(0.1065243793 0.09752618456 0.1)
(0.1121607038 0.09976590318 0.1)
(0.1068789153 0.1004023676 0.1)
(0.1124203004 0.1019799356 0.1)
(0.1071524794 0.1026147061 0.1)
(0.1171665086 0.09627871005 0.1)
(0.117489119 0.09915876508 0.1)
(0.1177367413 0.1013741495 0.1)
(0.5636059376 0.06558381589 0.1)
(0.5585292001 0.06593510716 0.1)
(0.5638057539 0.06847495451 0.1)
(0.5587290143 0.0688261458 0.1)
(0.5639595336 0.0706988134 0.1)
(0.558882794 0.07105000469 0.1)
(0.6064763879 0.06263322178 0.1)
(0.6011129303 0.06300084354 0.1)
(0.6066742046 0.06552440244 0.1)
(0.601310747 0.06589202421 0.1)
(0.6068269866 0.06774838233 0.1)
(0.6014635291 0.0681160041 0.1)
(0.5903850427 0.06373740782 0.1)
(0.5850216292 0.06410712912 0.1)
(0.5905838591 0.06662856746 0.1)
(0.5852204457 0.06699828877 0.1)
(0.5907376389 0.06885242635 0.1)
(0.5853742254 0.06922214765 0.1)
(0.5689323887 0.06521627202 0.1)
(0.569131203 0.06810733169 0.1)
(0.5692849849 0.07033129055 0.1)
(0.5796582158 0.06447685043 0.1)
(0.5798580299 0.06736788908 0.1)
(0.580010812 0.06959186896 0.1)
(0.6669142617 0.05823363809 0.1)
(0.6671300554 0.06112354059 0.1)
(0.6672958199 0.06334654737 0.1)
(0.6546436416 0.05914186872 0.1)
(0.6493347291 0.05953484955 0.1)
(0.6548574379 0.06203191324 0.1)
(0.6495495252 0.06242487305 0.1)
(0.6550222048 0.06425504101 0.1)
(0.64971429 0.06464790084 0.1)
(0.6118388457 0.06226562103 0.1)
(0.6120376621 0.06515678067 0.1)
(0.6121894444 0.06738078158 0.1)
(0.6278986554 0.06113629231 0.1)
(0.6225517787 0.06153137162 0.1)
(0.6281124517 0.06402633683 0.1)
(0.6227575852 0.06442198421 0.1)
(0.6282762188 0.06624948563 0.1)
(0.6229163596 0.06664553804 0.1)
(0.6439729419 0.05993434325 0.1)
(0.6441877359 0.06282426677 0.1)
(0.6443545002 0.06504725253 0.1)
(0.6332534211 0.06073584599 0.1)
(0.6334692149 0.0636257485 0.1)
(0.6336359792 0.06584873425 0.1)
(0.7353432574 0.05285196304 0.1)
(0.7299849886 0.05327608822 0.1)
(0.7355710338 0.05574091346 0.1)
(0.7302137648 0.05616501762 0.1)
(0.7357467856 0.05796321014 0.1)
(0.7303905143 0.05838719331 0.1)
(0.7192715661 0.05412977431 0.1)
(0.71950134 0.05701858271 0.1)
(0.7196790892 0.05924073738 0.1)
(0.7538523895 0.1248802032 0.1)
(0.7582937192 0.1235647253 0.1)
(0.7530278077 0.1221019322 0.1)
(0.7574641682 0.120787969 0.1)
(0.7523937445 0.1199647881 0.1)
(0.7568261291 0.1186520087 0.1)
(0.7407005831 0.05243055828 0.1)
(0.7409283595 0.0553195087 0.1)
(0.7411031136 0.05754192638 0.1)
(0.7513852537 0.05158897923 0.1)
(0.7516230174 0.05447721956 0.1)
(0.7518057572 0.05669886921 0.1)
(0.8081295591 0.1082379233 0.1)
(0.8072483344 0.1054772368 0.1)
(0.8065705458 0.1033536148 0.1)
(0.8172498621 0.1053020647 0.1)
(0.8163587026 0.1025445878 0.1)
(0.8156729642 0.1004234334 0.1)
(0.9769883367 0.03062034146 0.1)
(0.9772833309 0.03347137058 0.1)
(0.9775104805 0.03566448042 0.1)
(0.1562799513 0.210397955 0.1)
(0.1638302541 0.2111893215 0.1)
(0.156584442 0.2075161178 0.1)
(0.1641187021 0.2083056211 0.1)
(0.1568188939 0.2052991998 0.1)
(0.1643401254 0.2060874767 0.1)
(0.1354288137 0.2078988963 0.1)
(0.140693819 0.2086049812 0.1)
(0.1358225517 0.2050278855 0.1)
(0.1410695 0.2057314495 0.1)
(0.1361261965 0.2028194149 0.1)
(0.1413580998 0.2035209947 0.1)
(0.1513497595 0.2098697715 0.1)
(0.1516632713 0.2069888449 0.1)
(0.1519047427 0.2047727795 0.1)
(0.1303707354 0.2071871605 0.1)
(0.1307825304 0.2043186707 0.1)
(0.1311002183 0.2021121053 0.1)
(0.2165775091 0.2144528887 0.1)
(0.2219838795 0.2146039795 0.1)
(0.216663638 0.2115561383 0.1)
(0.2220509959 0.2117068286 0.1)
(0.216729816 0.2093279549 0.1)
(0.2221041599 0.2094781187 0.1)
(0.2057629373 0.2140636264 0.1)
(0.2058841005 0.2111681398 0.1)
(0.205977304 0.2089408885 0.1)
(0.2274081948 0.214704682 0.1)
(0.2274602997 0.2118071466 0.1)
(0.2274994584 0.209578331 0.1)
(0.3086413595 0.2129547642 0.1)
(0.3140651528 0.2126024775 0.1)
(0.3084685142 0.2100619582 0.1)
(0.3138743262 0.2097107498 0.1)
(0.3083357088 0.2078366581 0.1)
(0.3137275385 0.2074864438 0.1)
(0.3248409268 0.2118600054 0.1)
(0.3246221358 0.2089702659 0.1)
(0.3244533741 0.2067474222 0.1)
(0.3032412449 0.2132439391 0.1)
(0.3030853832 0.210350176 0.1)
(0.3029645667 0.2081242238 0.1)
(0.3773052276 0.2066606505 0.1)
(0.3769636613 0.2037828944 0.1)
(0.3767010738 0.2015693249 0.1)
(0.3896942024 0.2051495988 0.1)
(0.3950192622 0.204478017 0.1)
(0.3893336803 0.2022741417 0.1)
(0.3946338024 0.2016057848 0.1)
(0.3890561255 0.2000622872 0.1)
(0.3943372938 0.1993963293 0.1)
(0.4162026662 0.2014201636 0.1)
(0.4212424637 0.2006439549 0.1)
(0.4157703365 0.1985546181 0.1)
(0.4208021568 0.1977795774 0.1)
(0.4154379305 0.1963504183 0.1)
(0.4204637669 0.1955762035 0.1)
(0.4003444487 0.2037173129 0.1)
(0.3999390437 0.2008479005 0.1)
(0.3996265787 0.1986406809 0.1)
(0.41094695 0.2022025123 0.1)
(0.4105275817 0.1993349939 0.1)
(0.4102041464 0.1971293052 0.1)
(0.6457463383 0.1545581731 0.1)
(0.6450311477 0.151749786 0.1)
(0.6444816159 0.1495894599 0.1)
(0.7702801874 0.1199405675 0.1)
(0.7746671016 0.1186058891 0.1)
(0.7694377193 0.1171678936 0.1)
(0.7738236396 0.1158335162 0.1)
(0.7687897435 0.1150350529 0.1)
(0.7731736683 0.1137009075 0.1)
(0.8644372291 0.04159840529 0.1)
(0.8591280639 0.04207450979 0.1)
(0.8646979541 0.0444845625 0.1)
(0.8593877912 0.04496078801 0.1)
(0.8648996665 0.04670471302 0.1)
(0.8595875061 0.04718108054 0.1)
(0.854057562 0.04253209347 0.1)
(0.8543182891 0.04541835067 0.1)
(0.8545190017 0.04763852221 0.1)
(0.8697663627 0.04112058067 0.1)
(0.8700380705 0.04400580682 0.1)
(0.8702467688 0.04622521032 0.1)
(0.8751075054 0.04059549317 0.1)
(0.875390194 0.04347968827 0.1)
(0.8756068778 0.04569832375 0.1)
(0.939662308 0.03434146139 0.1)
(0.9399420015 0.03722591951 0.1)
(0.9401576877 0.03944467599 0.1)
(0.960972029 0.03220125554 0.1)
(0.9612696869 0.03508383563 0.1)
(0.9614993448 0.03730109809 0.1)
(0.1439666719 0.09353096018 0.1)
(0.1442253995 0.09641725942 0.1)
(0.1444251144 0.09863755195 0.1)
(0.8709249453 0.08747266848 0.1)
(0.8783997835 0.08491258081 0.1)
(0.8699880924 0.08473025531 0.1)
(0.877454987 0.08217293523 0.1)
(0.8692675887 0.08262063428 0.1)
(0.8767285288 0.08006553985 0.1)
(0.03856911298 0.1843547972 0.1)
(0.03966566999 0.1816723548 0.1)
(0.04050918161 0.1796088681 0.1)
(0.555873605 0.1756866774 0.1)
(0.5552599357 0.172854451 0.1)
(0.5547880378 0.170675889 0.1)
(0.08940400672 0.09982446471 0.1)
(0.08447207682 0.100564698 0.1)
(0.08982227732 0.1026921062 0.1)
(0.08491158596 0.1034291924 0.1)
(0.09014411719 0.1048980285 0.1)
(0.08524957601 0.1056325746 0.1)
(0.07920371587 0.1013926226 0.1)
(0.07966784808 0.1042531985 0.1)
(0.08002488136 0.1064536798 0.1)
(0.09692960869 0.09876544164 0.1)
(0.09732035475 0.1016369626 0.1)
(0.09762095187 0.103845832 0.1)
(0.101457743 0.0981676276 0.1)
(0.1018312329 0.1010414118 0.1)
(0.1021177667 0.1032521772 0.1)
(0.1225095534 0.09570137103 0.1)
(0.1228251758 0.09858207309 0.1)
(0.12306681 0.1007980835 0.1)
(0.7490870086 0.126291804 0.1)
(0.7482654085 0.1235126301 0.1)
(0.7476333315 0.1213748041 0.1)
(0.9071647603 0.03755897478 0.1)
(0.9018392757 0.03806762951 0.1)
(0.9074434561 0.0404435539 0.1)
(0.9021099837 0.04095287668 0.1)
(0.907657147 0.04266255237 0.1)
(0.9023176843 0.04317240119 0.1)
(0.8965003777 0.03855676188 0.1)
(0.8967670929 0.04144239307 0.1)
(0.8969717984 0.04366218059 0.1)
(0.8991257882 0.07760650336 0.1)
(0.8981591437 0.07487431868 0.1)
(0.8974168005 0.07277255845 0.1)
(0.9125019018 0.03703387138 0.1)
(0.9127815932 0.03991822952 0.1)
(0.9129972815 0.04213708598 0.1)
(0.9177963345 0.03652306889 0.1)
(0.9180760258 0.03940742703 0.1)
(0.918291712 0.04162618351 0.1)
(0.9155767048 0.07172080262 0.1)
(0.9199361811 0.0701277139 0.1)
(0.9145842532 0.0689980625 0.1)
(0.918944725 0.0674047528 0.1)
(0.9138210596 0.06690364216 0.1)
(0.9181815272 0.06531013251 0.1)
(0.9823844444 0.03023572963 0.1)
(0.9826662948 0.03298491252 0.1)
(0.9828827964 0.0350997289 0.1)
(0.4686726426 0.1927800292 0.1)
(0.4762095356 0.1914588108 0.1)
(0.4681715363 0.1899258319 0.1)
(0.475698461 0.1886062234 0.1)
(0.4677852999 0.1877302655 0.1)
(0.4753052513 0.1864120039 0.1)
(0.5728733941 0.1719775202 0.1)
(0.5722527557 0.1691468407 0.1)
(0.5717758779 0.1669692836 0.1)
(0.5776973356 0.1709249878 0.1)
(0.5770637526 0.168097081 0.1)
(0.576576919 0.1659217336 0.1)
(0.01294670054 0.1203565433 0.1)
(0.00881761329 0.1228153805 0.1)
(0.0143672091 0.1228824421 0.1)
(0.01047363168 0.1251936963 0.1)
(0.01545979393 0.1248255052 0.1)
(0.01174746583 0.1270230243 0.1)
(0.6817867157 0.05709986676 0.1)
(0.6820085018 0.05998934321 0.1)
(0.6821802587 0.06221192393 0.1)
(0.7032020489 0.05541584171 0.1)
(0.7034338202 0.05830450809 0.1)
(0.7036125672 0.06052654176 0.1)
(0.7658058158 0.1213019801 0.1)
(0.7649673248 0.1185281724 0.1)
(0.7643213316 0.1163944799 0.1)
(0.7689664043 0.0500792877 0.1)
(0.7692131534 0.05296673898 0.1)
(0.769403883 0.05518782056 0.1)
(0.8495651062 0.04293821519 0.1)
(0.8498258311 0.0458243724 0.1)
(0.8500265438 0.04804454394 0.1)
(0.8421825234 0.04360654566 0.1)
(0.8424432484 0.04649270288 0.1)
(0.8426449587 0.04871275341 0.1)
(0.8857979046 0.03955064879 0.1)
(0.8804484757 0.04006220748 0.1)
(0.8860716099 0.04243573292 0.1)
(0.8807301666 0.04294652358 0.1)
(0.8862823056 0.04465499441 0.1)
(0.8809458528 0.04516528006 0.1)
(0.9564124032 0.05662459571 0.1)
(0.963839283 0.05378155361 0.1)
(0.9553871985 0.05391394673 0.1)
(0.9627902665 0.05108010719 0.1)
(0.9545991933 0.05182874998 0.1)
(0.9619834084 0.04900210832 0.1)
(0.1684046617 0.2116363657 0.1)
(0.1686690604 0.2087505704 0.1)
(0.1688734432 0.2065306837 0.1)
(0.1895710175 0.2132386002 0.1)
(0.1897522601 0.2103462514 0.1)
(0.1898905251 0.2081214535 0.1)
(0.3409893733 0.2105221674 0.1)
(0.3407286462 0.2076359102 0.1)
(0.3405279335 0.2054157387 0.1)
(0.362424688 0.208361317 0.1)
(0.3621060725 0.2054809779 0.1)
(0.3618604455 0.2032653515 0.1)
(0.8335385842 0.09997969782 0.1)
(0.8326315313 0.09722745609 0.1)
(0.8319328756 0.09511037415 0.1)
(0.01622170851 0.1731480663 0.1)
(0.01778526476 0.1707080611 0.1)
(0.01898797791 0.1688311652 0.1)
(0.0200274545 0.17546038 0.1)
(0.02716989392 0.1792786887 0.1)
(0.02147793877 0.1729515363 0.1)
(0.02847438643 0.1766908963 0.1)
(0.02259371898 0.1710216561 0.1)
(0.02947786689 0.1747003632 0.1)
(0.03119877306 0.181233433 0.1)
(0.03241020428 0.1786008869 0.1)
(0.03334214156 0.1765757501 0.1)
(0.662862154 0.1501830299 0.1)
(0.6621330337 0.1473781363 0.1)
(0.6615725569 0.1452205409 0.1)
(0.667338418 0.1490067783 0.1)
(0.6748903705 0.1470221969 0.1)
(0.6666033306 0.1462035106 0.1)
(0.6741532961 0.144219571 0.1)
(0.6660378802 0.14404722 0.1)
(0.6735868522 0.1420636014 0.1)
(0.07388334919 0.1022731519 0.1)
(0.06864382231 0.1032356 0.1)
(0.07438415976 0.1051275555 0.1)
(0.069188074 0.1060819887 0.1)
(0.07476939849 0.1073232428 0.1)
(0.06960679181 0.108271571 0.1)
(0.0590694669 0.1051651805 0.1)
(0.05142981446 0.1068652426 0.1)
(0.05967128722 0.1079999565 0.1)
(0.05208907819 0.1096872083 0.1)
(0.06013422705 0.1101806073 0.1)
(0.05259632111 0.1118580256 0.1)
(0.06362044817 0.1042506163 0.1)
(0.06419418402 0.1070911839 0.1)
(0.06463551273 0.1092762899 0.1)
(0.5540527202 0.06624477174 0.1)
(0.5542525344 0.06913581039 0.1)
(0.5544063162 0.07135976925 0.1)
(0.5957484729 0.06336848633 0.1)
(0.5959472894 0.06625964598 0.1)
(0.5961000715 0.06848362586 0.1)
(0.5742958021 0.06484655071 0.1)
(0.5744946165 0.06773761038 0.1)
(0.5746483983 0.06996156924 0.1)
(0.659575058 0.05877682908 0.1)
(0.6597888544 0.0616668736 0.1)
(0.6599536212 0.06389000138 0.1)
(0.6172003058 0.06189814128 0.1)
(0.6174001199 0.06478917992 0.1)
(0.617552902 0.06701315981 0.1)
(0.6386121817 0.06033511564 0.1)
(0.6388289753 0.06322499712 0.1)
(0.6389947398 0.0654480039 0.1)
(0.7246277785 0.05370299177 0.1)
(0.7248575524 0.05659180017 0.1)
(0.7250343019 0.05881397585 0.1)
(0.7460539139 0.05200943756 0.1)
(0.7462836898 0.05489834593 0.1)
(0.7464594395 0.05712054264 0.1)
(0.8128428052 0.1067253161 0.1)
(0.8119556197 0.1039665553 0.1)
(0.8112728596 0.1018443381 0.1)
(0.8911515828 0.03905090339 0.1)
(0.8914202955 0.04193639256 0.1)
(0.8916269984 0.04415603806 0.1)
(0.8946264689 0.07920853357 0.1)
(0.8936558527 0.07647773268 0.1)
(0.8929095334 0.07437715629 0.1)
(0.9227045568 0.03605389378 0.1)
(0.9229942313 0.03893734188 0.1)
(0.9232169054 0.04115545133 0.1)
(0.9242503171 0.06856648528 0.1)
(0.9232568762 0.06584426606 0.1)
(0.9224926891 0.06375016668 0.1)
(0.146029548 0.2092971765 0.1)
(0.1463721354 0.2064195395 0.1)
(0.1466356629 0.204205911 0.1)
(0.1257977609 0.2065228382 0.1)
(0.1262336325 0.2036577431 0.1)
(0.1265683818 0.2014539197 0.1)
(0.2111596849 0.2142803339 0.1)
(0.2112638309 0.2113842049 0.1)
(0.2113450223 0.209156506 0.1)
(0.2327562284 0.2147927851 0.1)
(0.2327943259 0.2118950441 0.1)
(0.2328234784 0.2096660388 0.1)
(0.2377343744 0.2148425549 0.1)
(0.2377604662 0.2119446662 0.1)
(0.2377796146 0.2097155711 0.1)
(0.3194475473 0.212231657 0.1)
(0.3192457357 0.2093407604 0.1)
(0.3190909562 0.2071169225 0.1)
(0.2979050699 0.2135295693 0.1)
(0.2977591996 0.210635296 0.1)
(0.2976463772 0.2084089757 0.1)
(0.2929320219 0.2137698565 0.1)
(0.292797143 0.2108750521 0.1)
(0.2926933122 0.2086482426 0.1)
(0.3847677446 0.2057504863 0.1)
(0.3844172014 0.2028739192 0.1)
(0.3841466282 0.2006611178 0.1)
(0.4257598358 0.1999481455 0.1)
(0.425316538 0.1970842309 0.1)
(0.4249761548 0.194881199 0.1)
(0.4056437061 0.2029602545 0.1)
(0.4052323172 0.2000916682 0.1)
(0.4049158635 0.1978850325 0.1)
(0.5877227052 0.1686012398 0.1)
(0.5922115147 0.1675459514 0.1)
(0.5870612525 0.1657798203 0.1)
(0.5915490685 0.1647248527 0.1)
(0.5865525183 0.1636094344 0.1)
(0.591038341 0.1625548088 0.1)
(0.5827899911 0.1697608823 0.1)
(0.5821374944 0.166937274 0.1)
(0.5816357271 0.1647652413 0.1)
(0.6889039714 0.1432879042 0.1)
(0.6964533623 0.1412290601 0.1)
(0.6881430201 0.1404913816 0.1)
(0.6956904284 0.1384333894 0.1)
(0.6875586737 0.1383402393 0.1)
(0.6951040944 0.1362828591 0.1)
(0.7011683807 0.1399434658 0.1)
(0.7004004706 0.1371489799 0.1)
(0.6998101552 0.1349993735 0.1)
(0.001699624695 0.1286166833 0.1)
(-0.003781078824 0.1369243139 0.1)
(0.003865028072 0.1305426918 0.1)
(-0.001089065846 0.1379972945 0.1)
(0.005530715615 0.1320241061 0.1)
(0.0009817071592 0.138822669 0.1)
(-0.005225932723 0.1431771474 0.1)
(-0.002336485374 0.1433992648 0.1)
(-0.0001138366962 0.1435701244 0.1)
(-0.004616833155 0.1497815323 0.1)
(-0.001795287099 0.149120387 0.1)
(0.000375131353 0.1486118222 0.1)
(0.1765331541 0.09083291256 0.1)
(0.1714529136 0.0912078827 0.1)
(0.1767479481 0.09372283608 0.1)
(0.1716707048 0.09409764318 0.1)
(0.1769137126 0.09594584286 0.1)
(0.1718384668 0.09632050794 0.1)
(0.1818599386 0.09043365467 0.1)
(0.1820737349 0.0933236992 0.1)
(0.1822394994 0.09554670597 0.1)
(0.2194421754 0.08786150308 0.1)
(0.2140680242 0.08819624237 0.1)
(0.2196230126 0.09075384092 0.1)
(0.2142558536 0.09108813312 0.1)
(0.2197618104 0.09297871495 0.1)
(0.2144006438 0.0933125811 0.1)
(0.7324358735 0.1311226003 0.1)
(0.7316371423 0.1283369492 0.1)
(0.7310219647 0.1261941619 0.1)
(0.86216859 0.09044978594 0.1)
(0.8665780946 0.08895266682 0.1)
(0.8612386935 0.08770522608 0.1)
(0.8656452177 0.08620906982 0.1)
(0.8605231572 0.08559400027 0.1)
(0.8649266947 0.08409850694 0.1)
(0.5185350616 0.183474759 0.1)
(0.5237309364 0.1824627174 0.1)
(0.5179791566 0.1806307158 0.1)
(0.5231640738 0.179620805 0.1)
(0.5175520743 0.1784429097 0.1)
(0.5227270273 0.1774348088 0.1)
(0.5287087815 0.1814515591 0.1)
(0.5281229967 0.1786135453 0.1)
(0.5276720059 0.1764303428 0.1)
(0.262404823 0.08525234641 0.1)
(0.2570372415 0.08556654306 0.1)
(0.2625746711 0.08814531538 0.1)
(0.2572070917 0.088459612 0.1)
(0.262705477 0.0903706575 0.1)
(0.2573368978 0.09068497515 0.1)
(0.2248163959 0.08753006307 0.1)
(0.2249932361 0.09042258496 0.1)
(0.2251290367 0.09264762203 0.1)
(0.3485110366 0.08017096039 0.1)
(0.3431465658 0.08049039281 0.1)
(0.3486928715 0.08306317723 0.1)
(0.3433204109 0.08338317772 0.1)
(0.3488326691 0.08528803024 0.1)
(0.3434532143 0.08560837783 0.1)
(0.3109772833 0.08238501374 0.1)
(0.3059003937 0.08268149609 0.1)
(0.3111471314 0.0852779827 0.1)
(0.3060692441 0.08557458606 0.1)
(0.3112769396 0.08750344583 0.1)
(0.3061990523 0.08780004918 0.1)
(0.2677713501 0.08493557135 0.1)
(0.2679421959 0.08782841932 0.1)
(0.2680740015 0.09005374043 0.1)
(0.3014358914 0.08294239813 0.1)
(0.3016027423 0.08583553013 0.1)
(0.3017305509 0.0880610353 0.1)
(0.3538617682 0.07981650904 0.1)
(0.3540515951 0.08270825778 0.1)
(0.354197385 0.08493268473 0.1)
(0.3913990661 0.07729531332 0.1)
(0.3860365579 0.0776605146 0.1)
(0.3915958851 0.08018661499 0.1)
(0.3862323771 0.08055183729 0.1)
(0.3917466677 0.08241063691 0.1)
(0.3863831617 0.08277595919 0.1)
(0.3967615723 0.07693001207 0.1)
(0.3969593911 0.07982129271 0.1)
(0.3971101736 0.08204531464 0.1)
(0.9882433806 0.04358682395 0.1)
(0.9947201411 0.03951118114 0.1)
(0.9873110893 0.04120409437 0.1)
(0.9940858364 0.03788585519 0.1)
(0.9865944044 0.03937125422 0.1)
(0.9935974468 0.03663554495 0.1)
(0.08562664587 0.1988283399 0.1)
(0.09332153273 0.2005926823 0.1)
(0.08629099934 0.1960075519 0.1)
(0.09394086278 0.1977617384 0.1)
(0.08680200025 0.1938376312 0.1)
(0.09441739259 0.1955840405 0.1)
(0.4810839603 0.1905714538 0.1)
(0.4862699389 0.1896120319 0.1)
(0.4805629236 0.1877207762 0.1)
(0.4857439201 0.1867622592 0.1)
(0.4801617409 0.1855279246 0.1)
(0.4853387531 0.1845701915 0.1)
(0.02483750241 0.1148082713 0.1)
(0.02041515455 0.1166745419 0.1)
(0.02591855955 0.1174970414 0.1)
(0.02161457213 0.1193126129 0.1)
(0.02675021871 0.1195653168 0.1)
(0.02253723326 0.1213419668 0.1)
(0.7109870339 0.1372072219 0.1)
(0.7154386541 0.1359530212 0.1)
(0.7102032201 0.1344174814 0.1)
(0.7146518514 0.1331638436 0.1)
(0.7095989788 0.1322715485 0.1)
(0.7140466187 0.1310183317 0.1)
(0.7821925886 0.116314006 0.1)
(0.7813481309 0.1135418441 0.1)
(0.7806981637 0.1114094354 0.1)
(0.7785293965 0.04926479246 0.1)
(0.773456359 0.04969692382 0.1)
(0.7787751479 0.05215236474 0.1)
(0.7737031081 0.05258437509 0.1)
(0.7789648798 0.05437356732 0.1)
(0.7738918381 0.05480549872 0.1)
(0.7868130041 0.1149055731 0.1)
(0.7859675549 0.1121338322 0.1)
(0.7853165943 0.1100017444 0.1)
(0.7838460542 0.04881203562 0.1)
(0.7840918056 0.0516996079 0.1)
(0.7842795379 0.05392085252 0.1)
(0.799890162 0.04745918757 0.1)
(0.794549434 0.04790884969 0.1)
(0.8001419037 0.05034623382 0.1)
(0.7947941877 0.05079654297 0.1)
(0.8003346286 0.0525670734 0.1)
(0.79498192 0.05301778759 0.1)
(0.9477543202 0.05985150266 0.1)
(0.9520992383 0.05823201412 0.1)
(0.9467420159 0.05713598144 0.1)
(0.9510849513 0.05551733476 0.1)
(0.945963937 0.05504717524 0.1)
(0.9503038857 0.05342919149 0.1)
(0.9981648998 0.03603820454 0.1)
(0.9977304181 0.03502081261 0.1)
(0.2599550335 0.2147830607 0.1)
(0.2653627319 0.2147118745 0.1)
(0.2599201135 0.2118852545 0.1)
(0.2653128132 0.2118142836 0.1)
(0.2598932531 0.2096562266 0.1)
(0.2652739533 0.209585408 0.1)
(0.2450422314 0.2149016559 0.1)
(0.2450433161 0.2120036928 0.1)
(0.2450444579 0.2097744763 0.1)
(0.2495196211 0.2148731343 0.1)
(0.2495037012 0.2119751286 0.1)
(0.2494918417 0.2097459854 0.1)
(0.270725717 0.2146072208 0.1)
(0.2706538052 0.2117101923 0.1)
(0.2705979492 0.209481674 0.1)
(0.2856501234 0.2140890934 0.1)
(0.2855282353 0.2111937158 0.1)
(0.2854343981 0.2089664962 0.1)
(0.2812040529 0.2142751915 0.1)
(0.2810961554 0.2113792197 0.1)
(0.2810133116 0.2091515689 0.1)
(0.6265541174 0.1593164473 0.1)
(0.6313167786 0.1581560792 0.1)
(0.6258687835 0.156500931 0.1)
(0.6306294493 0.1553408049 0.1)
(0.6253411397 0.1543350436 0.1)
(0.630100812 0.1531752385 0.1)
(0.02937560088 0.1130763972 0.1)
(0.03034601505 0.1158071023 0.1)
(0.0310924343 0.1179076766 0.1)
(0.04662341941 0.1080387329 0.1)
(0.04168008733 0.1092880184 0.1)
(0.0473243826 0.1108507199 0.1)
(0.04244043674 0.1120844536 0.1)
(0.04786356709 0.113013664 0.1)
(0.04302528407 0.1142356353 0.1)
(0.1979592981 0.08928248979 0.1)
(0.1925938557 0.08965085345 0.1)
(0.1981551173 0.09217381248 0.1)
(0.192796667 0.09254172906 0.1)
(0.1983068996 0.09439781338 0.1)
(0.1929524443 0.09476544593 0.1)
(0.2033269818 0.08892558156 0.1)
(0.2035208036 0.09181704626 0.1)
(0.2036705905 0.09404128916 0.1)
(0.7229866084 0.1338258523 0.1)
(0.7221958329 0.1310380085 0.1)
(0.7215866209 0.1288935244 0.1)
(0.5009849689 0.1868898186 0.1)
(0.5085328047 0.1854230381 0.1)
(0.5004449974 0.1840424398 0.1)
(0.507980882 0.182578111 0.1)
(0.5000308659 0.1818521609 0.1)
(0.5075567885 0.180389742 0.1)
(0.2462822301 0.08620235522 0.1)
(0.2409102151 0.08654355102 0.1)
(0.2464600701 0.08909485609 0.1)
(0.2410920522 0.08943586784 0.1)
(0.2465978702 0.09131985112 0.1)
(0.2412308479 0.09166064189 0.1)
(0.235548137 0.08688163727 0.1)
(0.2357269747 0.08977401714 0.1)
(0.2358647748 0.09199901217 0.1)
(0.332414522 0.08112442179 0.1)
(0.3270449872 0.08144086 0.1)
(0.3325853699 0.08401736974 0.1)
(0.3272158351 0.08433380794 0.1)
(0.3327161757 0.08624271187 0.1)
(0.3273466409 0.08655915007 0.1)
(0.3216774498 0.08175715618 0.1)
(0.3218472979 0.08465012515 0.1)
(0.3219781038 0.08687546728 0.1)
(0.2838632875 0.08395470011 0.1)
(0.278491096 0.08428749777 0.1)
(0.2840381303 0.08684736402 0.1)
(0.278668936 0.08717999864 0.1)
(0.2841729332 0.08907252209 0.1)
(0.2788057364 0.0894050147 0.1)
(0.2891997813 0.08363665608 0.1)
(0.2893686296 0.08652964606 0.1)
(0.2894984378 0.08875510919 0.1)
(0.369947821 0.07874604169 0.1)
(0.3645852077 0.07910624408 0.1)
(0.3701426426 0.08163748538 0.1)
(0.3647780318 0.08199782978 0.1)
(0.3702914276 0.08386164932 0.1)
(0.3649268168 0.08422199372 0.1)
(0.3753114131 0.07838481851 0.1)
(0.3755062326 0.08127616221 0.1)
(0.3756560174 0.08350030514 0.1)
(0.4181574386 0.07546184391 0.1)
(0.4128479459 0.07582723084 0.1)
(0.4183572527 0.07835288256 0.1)
(0.4130467624 0.07871839049 0.1)
(0.4185100348 0.08057686245 0.1)
(0.4131995445 0.08094237037 0.1)
(0.4074855175 0.07619623128 0.1)
(0.4076833342 0.07908741195 0.1)
(0.4078361163 0.08131139183 0.1)
(0.8266098398 0.04502219818 0.1)
(0.8212619207 0.04551041998 0.1)
(0.8268725623 0.04790821338 0.1)
(0.8215256408 0.04839631418 0.1)
(0.8270752703 0.05012814292 0.1)
(0.8217293507 0.05061632268 0.1)
(0.8372548323 0.04405362512 0.1)
(0.8375165571 0.04693976131 0.1)
(0.8377182674 0.04915981185 0.1)
(0.8159140184 0.0459994416 0.1)
(0.8161787383 0.04888531478 0.1)
(0.8163824461 0.0511052233 0.1)
(0.8052303267 0.04698273138 0.1)
(0.8054910538 0.04986898857 0.1)
(0.8056907667 0.05208918113 0.1)
(0.9316865496 0.06583527129 0.1)
(0.936038483 0.06421643543 0.1)
(0.9306821889 0.06311698248 0.1)
(0.9350281636 0.06150017232 0.1)
(0.9299100646 0.06102595062 0.1)
(0.9342510719 0.05941074523 0.1)
(0.06383275005 0.1931489955 0.1)
(0.07150449963 0.19530191 0.1)
(0.06465361084 0.1903697268 0.1)
(0.07225834633 0.1925036458 0.1)
(0.06528511047 0.1882317803 0.1)
(0.07283823148 0.190351281 0.1)
(0.07602456131 0.196470456 0.1)
(0.07674179954 0.1936626592 0.1)
(0.07729352061 0.1915027847 0.1)
(0.4964595673 0.1877270281 0.1)
(0.495929562 0.1848779394 0.1)
(0.4955224017 0.1826862137 0.1)
(0.6045452899 0.1646463532 0.1)
(0.6096051853 0.1634464285 0.1)
(0.6038778658 0.1618263595 0.1)
(0.6089278055 0.1606286445 0.1)
(0.6033641537 0.1596570785 0.1)
(0.6084071286 0.1584611103 0.1)
(0.6363680242 0.1569253294 0.1)
(0.6356727345 0.1541120229 0.1)
(0.6351371282 0.1519480033 0.1)
(0.614520098 0.1622488518 0.1)
(0.6138357555 0.1594329146 0.1)
(0.6133091072 0.1572668062 0.1)
(0.6844316148 0.1445072831 0.1)
(0.683680615 0.1417083508 0.1)
(0.6831022305 0.1395553328 0.1)
(0.7061456424 0.13857154 0.1)
(0.7053687881 0.1357798028 0.1)
(0.7047705152 0.1336323041 0.1)
(0.1669660667 0.09154777187 0.1)
(0.1671918478 0.09443696428 0.1)
(0.1673666019 0.09665938197 0.1)
(0.1872197789 0.09003670246 0.1)
(0.1874295803 0.09292703102 0.1)
(0.187591352 0.09515042181 0.1)
(0.2086925272 0.08856211682 0.1)
(0.2088873488 0.0914535605 0.1)
(0.2090371336 0.09367770342 0.1)
(0.7276516617 0.1324948682 0.1)
(0.7268549144 0.1297084303 0.1)
(0.726242724 0.127565005 0.1)
(0.8546911342 0.09298052215 0.1)
(0.8537671944 0.0902338366 0.1)
(0.8530556236 0.08812092707 0.1)
(0.5133710641 0.1844806291 0.1)
(0.5128171482 0.181636044 0.1)
(0.5123910594 0.1794479169 0.1)
(0.5332267144 0.1804969807 0.1)
(0.5326299719 0.1776610977 0.1)
(0.5321710165 0.175479663 0.1)
(0.251663634 0.08587956612 0.1)
(0.2518354817 0.08877249304 0.1)
(0.251968285 0.09099769315 0.1)
(0.2301857562 0.0872053267 0.1)
(0.2303615988 0.09009796959 0.1)
(0.2304964017 0.09232312766 0.1)
(0.3377820425 0.08080732578 0.1)
(0.3379528904 0.08370027373 0.1)
(0.3380846961 0.08592559484 0.1)
(0.3163089106 0.08207337341 0.1)
(0.3164787587 0.08496634238 0.1)
(0.3166095645 0.08719168451 0.1)
(0.2731338802 0.08461898036 0.1)
(0.273308725 0.08751174424 0.1)
(0.273442526 0.08973682335 0.1)
(0.2941409847 0.08335652948 0.1)
(0.2943058381 0.0862498035 0.1)
(0.2944326491 0.08847542966 0.1)
(0.3592224892 0.07946144757 0.1)
(0.3594143135 0.08235305429 0.1)
(0.3595621009 0.08457733923 0.1)
(0.3806740055 0.07802361635 0.1)
(0.3808698247 0.08091493903 0.1)
(0.3810196096 0.08313908195 0.1)
(0.4304173183 0.07461365232 0.1)
(0.4230883891 0.07512221968 0.1)
(0.4306181322 0.07750466994 0.1)
(0.4232882053 0.07801335831 0.1)
(0.430771914 0.07972862881 0.1)
(0.4234419851 0.08023721719 0.1)
(0.4348947769 0.07430296693 0.1)
(0.4350955908 0.07719398456 0.1)
(0.4352493727 0.07941794343 0.1)
(0.4021240805 0.07656481079 0.1)
(0.4023218993 0.07945609143 0.1)
(0.4024736816 0.08168009234 0.1)
(0.520393998 0.06856229431 0.1)
(0.5150355394 0.06892981098 0.1)
(0.5205928145 0.07145345395 0.1)
(0.5152303588 0.07182115468 0.1)
(0.5207445968 0.07367745486 0.1)
(0.5153811434 0.07404527658 0.1)
(0.5096778829 0.0692879087 0.1)
(0.5098697072 0.07217951542 0.1)
(0.5100184944 0.07440377934 0.1)
(0.4828484539 0.07107186079 0.1)
(0.4774839692 0.07143820386 0.1)
(0.4830452729 0.07396316245 0.1)
(0.477681788 0.07432948451 0.1)
(0.4831970552 0.07618716336 0.1)
(0.4778335703 0.07655348541 0.1)
(0.4882159337 0.07070525469 0.1)
(0.4884107552 0.07359669838 0.1)
(0.4885605401 0.0758208413 0.1)
(0.4399744906 0.07395051285 0.1)
(0.4401733071 0.07684167249 0.1)
(0.4403260892 0.07906565238 0.1)
(0.445299022 0.07358681018 0.1)
(0.4454938435 0.07647825386 0.1)
(0.4456426286 0.0787024178 0.1)
(0.472121484 0.0718045049 0.1)
(0.4723183009 0.07469570659 0.1)
(0.4724700854 0.07691980747 0.1)
(0.4667619919 0.07217044294 0.1)
(0.4669568135 0.07506188663 0.1)
(0.4671065983 0.07728602955 0.1)
(0.5257574514 0.06819447258 0.1)
(0.5259552681 0.07108565325 0.1)
(0.5261080502 0.07330963313 0.1)
(0.531119905 0.06782667188 0.1)
(0.5313187215 0.07071783152 0.1)
(0.5314715036 0.07294181141 0.1)
(0.9840652231 0.04566890937 0.1)
(0.9830463361 0.04306845194 0.1)
(0.982262115 0.04106809439 0.1)
(0.05933018337 0.1917564323 0.1)
(0.06019402691 0.188990163 0.1)
(0.0608585463 0.1868623246 0.1)
(0.08087879616 0.197681787 0.1)
(0.08156878484 0.1948671615 0.1)
(0.08209949281 0.1927021276 0.1)
(0.09787011285 0.2015524826 0.1)
(0.09845347424 0.1987138931 0.1)
(0.09890217354 0.1965302789 0.1)
(0.1028489716 0.2025400446 0.1)
(0.1033982828 0.1996946693 0.1)
(0.1038213658 0.1975057924 0.1)
(0.4332831379 0.1987892487 0.1)
(0.4381931525 0.1979771601 0.1)
(0.4328248897 0.1959278489 0.1)
(0.4377209452 0.1951178542 0.1)
(0.432471543 0.1937266899 0.1)
(0.4373576323 0.1929184052 0.1)
(0.4914638885 0.1886511421 0.1)
(0.490936872 0.1858014904 0.1)
(0.4905317071 0.1836095227 0.1)
(0.443407032 0.1971078717 0.1)
(0.4429308382 0.1942492497 0.1)
(0.4425645364 0.1920503636 0.1)
(0.4486647714 0.1962314597 0.1)
(0.4481865843 0.1933731797 0.1)
(0.4478182872 0.1911745356 0.1)
(-0.002526178062 0.1553392144 0.1)
(4.860692686e-05 0.1540092983 0.1)
(0.002029208828 0.1529862498 0.1)
(0.6795964148 0.145785502 0.1)
(0.6788563579 0.142983739 0.1)
(0.6782869293 0.1408285323 0.1)
(0.791567593 0.1134564109 0.1)
(0.7907151853 0.1106867167 0.1)
(0.7900592574 0.1085562336 0.1)
(0.7891987228 0.04835942186 0.1)
(0.7894424768 0.05124713615 0.1)
(0.7896302112 0.05346848075 0.1)
(0.9403357902 0.06261595188 0.1)
(0.9393244815 0.05990020968 0.1)
(0.9385463984 0.05781120352 0.1)
(0.254617061 0.2148404783 0.1)
(0.2545911411 0.2119425828 0.1)
(0.2545722811 0.2097134868 0.1)
(0.2760993269 0.2144370292 0.1)
(0.2760074216 0.2115405211 0.1)
(0.2759375707 0.2093123971 0.1)
(0.03711968257 0.1105916667 0.1)
(0.03795678612 0.1133660837 0.1)
(0.0386006903 0.1155003203 0.1)
(0.8456046508 0.09600258887 0.1)
(0.8503051282 0.094453542 0.1)
(0.8446956047 0.09325068911 0.1)
(0.8493891299 0.09170398889 0.1)
(0.8439969532 0.09113380713 0.1)
(0.8486855152 0.08958891164 0.1)
(0.8410372799 0.09750772813 0.1)
(0.8401302249 0.09475538642 0.1)
(0.8394315692 0.09263830449 0.1)
(0.504315135 0.0696417125 0.1)
(0.4989503875 0.06999555834 0.1)
(0.5045059595 0.07253334024 0.1)
(0.4991412142 0.07288728606 0.1)
(0.5046527492 0.07475774618 0.1)
(0.4992880018 0.07511159202 0.1)
(0.4935846424 0.07034952517 0.1)
(0.4937764667 0.0732411319 0.1)
(0.4939232564 0.07546553783 0.1)
(0.4560355279 0.07287957123 0.1)
(0.4506697723 0.07323303817 0.1)
(0.4562263525 0.07577119897 0.1)
(0.4508605968 0.07612466592 0.1)
(0.4563731422 0.07799560491 0.1)
(0.4510073866 0.07834907185 0.1)
(0.4613982863 0.07252626732 0.1)
(0.4615901106 0.07541787404 0.1)
(0.4617379001 0.07764225896 0.1)
(0.541790841 0.06709300538 0.1)
(0.5364823586 0.06745887117 0.1)
(0.5419906551 0.06998404403 0.1)
(0.5366811751 0.07035003082 0.1)
(0.5421434372 0.07220802391 0.1)
(0.5368339551 0.07257391072 0.1)
(0.5467227577 0.06675176048 0.1)
(0.5469225739 0.06964289911 0.1)
(0.5470763537 0.07186675799 0.1)
(0.8319577632 0.04453417634 0.1)
(0.8322204877 0.04742029152 0.1)
(0.8324231978 0.04964032104 0.1)
(0.8105681808 0.04649152049 0.1)
(0.8108328986 0.04937729369 0.1)
(0.8110366064 0.05159720221 0.1)
(0.9797895535 0.0474897868 0.1)
(0.9787441795 0.04481887055 0.1)
(0.9779398129 0.04276422447 0.1)
(0.1080414635 0.2035079116 0.1)
(0.113223346 0.2044468953 0.1)
(0.1085666729 0.200657942 0.1)
(0.1137284757 0.2015933469 0.1)
(0.1089706802 0.1984656653 0.1)
(0.1141164214 0.1993983072 0.1)
(0.1181174356 0.2053036102 0.1)
(0.1185954598 0.2024453305 0.1)
(0.1189633238 0.2002466122 0.1)
(0.4539324749 0.1953532379 0.1)
(0.4591496304 0.1944494729 0.1)
(0.4534463149 0.1924963258 0.1)
(0.4586535041 0.1915942707 0.1)
(0.453072038 0.1902987076 0.1)
(0.4582722518 0.1893978994 0.1)
(0.4641592774 0.1935712755 0.1)
(0.4636591646 0.1907167572 0.1)
(0.4632749236 0.1885209489 0.1)
(0.5997638612 0.1657704078 0.1)
(0.5991004173 0.1629494302 0.1)
(0.598589692 0.1607794862 0.1)
(0.6412623885 0.155701879 0.1)
(0.6405541626 0.1528917451 0.1)
(0.6400096046 0.1507301142 0.1)
(0.6190031288 0.1611565766 0.1)
(0.618316793 0.1583409814 0.1)
(0.6177891492 0.1561750939 0.1)
(-1.2 -2.2 0.15)
(-1.02836 -2.2 0.15)
(-1.0284 -2.01675 0.15)
(-1.2 -2.01667 0.15)
(-1.02845 -1.83342 0.15)
(-1.2 -1.83333 0.15)
(-1.0285 -1.65009 0.15)
(-1.2 -1.65 0.15)
(-1.02855 -1.46674 0.15)
(-1.11428 -1.46671 0.15)
(-1.2 -1.46667 0.15)
(-1.1143 -1.37504 0.15)
(-1.2 -1.375 0.15)
(-1.2 -1.28333 0.15)
(-1.11432 -1.28338 0.15)
(-1.11433 -1.19171 0.15)
(-1.2 -1.19167 0.15)
(-1.2 -1.1 0.15)
(-1.11435 -1.10005 0.15)
(-1.11437 -1.00838 0.15)
(-1.2 -1.00833 0.15)
(-1.2 -0.916667 0.15)
(-1.11439 -0.916715 0.15)
(-1.11441 -0.825051 0.15)
(-1.2 -0.825 0.15)
(-1.2 -0.733333 0.15)
(-1.11443 -0.733386 0.15)
(-1.11444 -0.641721 0.15)
(-1.2 -0.641667 0.15)
(-1.2 -0.55 0.15)
(-1.11446 -0.550056 0.15)
(-1.11448 -0.458391 0.15)
(-1.2 -0.458333 0.15)
(-1.2 -0.366667 0.15)
(-1.11449 -0.366726 0.15)
(-1.11451 -0.27506 0.15)
(-1.2 -0.275 0.15)
(-1.2 -0.183333 0.15)
(-1.11452 -0.183395 0.15)
(-1.11452 -0.0917285 0.15)
(-1.2 -0.0916667 0.15)
(-1.2 0 0.15)
(-1.11452 -6.20099e-05 0.15)
(-1.11452 0.0916048 0.15)
(-1.2 0.0916667 0.15)
(-1.2 0.183333 0.15)
(-1.11452 0.183272 0.15)
(-1.11451 0.27494 0.15)
(-1.2 0.275 0.15)
(-1.2 0.366667 0.15)
(-1.11449 0.366608 0.15)
(-1.11448 0.458276 0.15)
(-1.2 0.458333 0.15)
(-1.2 0.55 0.15)
(-1.11446 0.549944 0.15)
(-1.11444 0.641612 0.15)
(-1.2 0.641667 0.15)
(-1.2 0.733333 0.15)
(-1.11443 0.733281 0.15)
(-1.11441 0.824949 0.15)
(-1.2 0.825 0.15)
(-1.2 0.916667 0.15)
(-1.11439 0.916618 0.15)
(-1.11437 1.00829 0.15)
(-1.2 1.00833 0.15)
(-1.2 1.1 0.15)
(-1.11435 1.09995 0.15)
(-1.11433 1.19162 0.15)
(-1.2 1.19167 0.15)
(-1.2 1.28333 0.15)
(-1.11432 1.28329 0.15)
(-1.1143 1.37497 0.15)
(-1.2 1.375 0.15)
(-1.2 1.46667 0.15)
(-1.11429 1.46665 0.15)
(-1.02854 1.46685 0.15)
(-1.02831 1.65049 0.15)
(-1.2 1.65 0.15)
(-1.02824 1.83417 0.15)
(-1.2 1.83387 0.15)
(-1.02804 2.01728 0.15)
(-1.2 2.01724 0.15)
(-1.02778 2.2 0.15)
(-1.2 2.2 0.15)
(-0.85612 -2.2 0.15)
(-0.85642 -2.01697 0.15)
(-0.85678 -1.83375 0.15)
(-0.85688 -1.65042 0.15)
(-0.85704 -1.46688 0.15)
(-0.942809 -1.46678 0.15)
(-0.942854 -1.37512 0.15)
(-1.02858 -1.37508 0.15)
(-1.02862 -1.28342 0.15)
(-0.942902 -1.28346 0.15)
(-0.942953 -1.19179 0.15)
(-1.02865 -1.19175 0.15)
(-1.02869 -1.10009 0.15)
(-0.943007 -1.10013 0.15)
(-0.943063 -1.00847 0.15)
(-0.985895 -1.00845 0.15)
(-1.02872 -1.00843 0.15)
(-1.02876 -0.916763 0.15)
(-0.985943 -0.916786 0.15)
(-0.985992 -0.870958 0.15)
(-1.02881 -0.870935 0.15)
(-1.02884 -0.733437 0.15)
(-0.986043 -0.733463 0.15)
(-0.986093 -0.687634 0.15)
(-1.02889 -0.687609 0.15)
(-1.02892 -0.550112 0.15)
(-0.986141 -0.550139 0.15)
(-0.986191 -0.504311 0.15)
(-1.02897 -0.504284 0.15)
(-1.02898 -0.366785 0.15)
(-0.986227 -0.366814 0.15)
(-0.986274 -0.320985 0.15)
(-1.02903 -0.320956 0.15)
(-1.02903 -0.183456 0.15)
(-0.986288 -0.183486 0.15)
(-0.9863272572 -0.1376431308 0.15)
(-1.02908 -0.137627 0.15)
(-1.02905 -0.000123943 0.15)
(-0.9863101422 3.688301175e-07 0.15)
(-0.9863373451 0.04580776256 0.15)
(-1.02908 0.0457059 0.15)
(-1.02903 0.183211 0.15)
(-0.986288 0.18318 0.15)
(-0.986305 0.229012 0.15)
(-1.02906 0.229042 0.15)
(-1.02898 0.366549 0.15)
(-0.986228 0.36652 0.15)
(-0.986235 0.412352 0.15)
(-1.029 0.41238 0.15)
(-1.02892 0.549888 0.15)
(-0.986141 0.549861 0.15)
(-0.986143 0.595694 0.15)
(-1.02893 0.59572 0.15)
(-1.02884 0.733229 0.15)
(-0.986043 0.733204 0.15)
(-0.986043 0.779037 0.15)
(-1.02885 0.779061 0.15)
(-1.02876 0.91657 0.15)
(-0.985944 0.916547 0.15)
(-0.985942 0.962381 0.15)
(-1.02877 0.962403 0.15)
(-1.02869 1.09992 0.15)
(-0.943013 1.09996 0.15)
(-0.942949 1.19183 0.15)
(-1.02865 1.19161 0.15)
(-1.02862 1.28331 0.15)
(-0.942852 1.2837 0.15)
(-0.942603 1.37575 0.15)
(-1.02858 1.3751 0.15)
(-0.94248 1.46749 0.15)
(-0.856309 1.46797 0.15)
(-0.856172 1.65126 0.15)
(-0.856002 1.83463 0.15)
(-0.855752 2.01733 0.15)
(-0.855556 2.2 0.15)
(-0.683333 -2.2 0.15)
(-0.683732 -2.01725 0.15)
(-0.684123 -1.8345 0.15)
(-0.68446 -1.65166 0.15)
(-0.684565 -1.46844 0.15)
(-0.77116 -1.46732 0.15)
(-0.77125 -1.37562 0.15)
(-0.857103 -1.37519 0.15)
(-0.857167 -1.28353 0.15)
(-0.771348 -1.2839 0.15)
(-0.771487 -1.19201 0.15)
(-0.857238 -1.19184 0.15)
(-0.85731 -1.10017 0.15)
(-0.771588 -1.10027 0.15)
(-0.771687 -1.00855 0.15)
(-0.814539 -1.00853 0.15)
(-0.857385 -1.00851 0.15)
(-0.857463 -0.916853 0.15)
(-0.814627 -0.916875 0.15)
(-0.814684 -0.871047 0.15)
(-0.857517 -0.871025 0.15)
(-0.857628 -0.733536 0.15)
(-0.814814 -0.733559 0.15)
(-0.814875 -0.687732 0.15)
(-0.857684 -0.687708 0.15)
(-0.857795 -0.550219 0.15)
(-0.8150220224 -0.5500256184 0.15)
(-0.8151572191 -0.5030409306 0.15)
(-0.8578512057 -0.5043729101 0.15)
(-0.8581211569 -0.3633031454 0.15)
(-0.815617223 -0.3580324001 0.15)
(-0.8157497787 -0.3090510841 0.15)
(-0.8582348088 -0.3154320565 0.15)
(-0.8583497971 -0.17169483 0.15)
(-0.8158270355 -0.1627917845 0.15)
(-0.8157765951 -0.1147764544 0.15)
(-0.8583423715 -0.1242247901 0.15)
(-0.858109586 0.01556762288 0.15)
(-0.8153776199 0.02572406564 0.15)
(-0.8152332729 0.07122166401 0.15)
(-0.8580294917 0.06114082759 0.15)
(-0.8577809619 0.1950147292 0.15)
(-0.8148252651 0.2039361758 0.15)
(-0.814765445 0.2471353617 0.15)
(-0.8577603076 0.2389061746 0.15)
(-0.8577762282 0.370075673 0.15)
(-0.8147595942 0.3753776704 0.15)
(-0.8148362673 0.4182357564 0.15)
(-0.8578272023 0.4141577369 0.15)
(-0.857795 0.549781 0.15)
(-0.8149901926 0.5499912594 0.15)
(-0.814972 0.595592 0.15)
(-0.857769 0.595617 0.15)
(-0.857628 0.733131 0.15)
(-0.814815 0.733107 0.15)
(-0.814779 0.778944 0.15)
(-0.8576 0.778967 0.15)
(-0.857464 0.916483 0.15)
(-0.814633 0.916519 0.15)
(-0.814603 0.96244 0.15)
(-0.857438 0.962328 0.15)
(-0.85725 1.10049 0.15)
(-0.770908 1.1016 0.15)
(-0.770553 1.19343 0.15)
(-0.856875 1.19274 0.15)
(-0.856623 1.28457 0.15)
(-0.770431 1.28507 0.15)
(-0.770351 1.37669 0.15)
(-0.856389 1.37633 0.15)
(-0.770297 1.46831 0.15)
(-0.684227 1.46864 0.15)
(-0.683965 1.6519 0.15)
(-0.683689 1.8347 0.15)
(-0.683502 2.01736 0.15)
(-0.683333 2.2 0.15)
(-0.511111 -2.2 0.15)
(-0.511372 -2.01734 0.15)
(-0.511646 -1.83468 0.15)
(-0.511912 -1.65201 0.15)
(-0.512088 -1.46924 0.15)
(-0.598172 -1.46894 0.15)
(-0.5982 -1.37737 0.15)
(-0.684628 -1.37684 0.15)
(-0.684917 -1.28506 0.15)
(-0.598333 -1.28576 0.15)
(-0.598734 -1.194 0.15)
(-0.685494 -1.19278 0.15)
(-0.68575 -1.10077 0.15)
(-0.599191 -1.10213 0.15)
(-0.59999 -1.00954 0.15)
(-0.643085 -1.00875 0.15)
(-0.685965 -1.00863 0.15)
(-0.686088 -0.916936 0.15)
(-0.643229 -0.916968 0.15)
(-0.643304 -0.871132 0.15)
(-0.686158 -0.871109 0.15)
(-0.686344 -0.733627 0.15)
(-0.6435537483 -0.7331983748 0.15)
(-0.6438334708 -0.6851981973 0.15)
(-0.6864769046 -0.6871758219 0.15)
(-0.6874406617 -0.5391789487 0.15)
(-0.6451295302 -0.5326102307 0.15)
(-0.645577047 -0.4798309718 0.15)
(-0.6878269366 -0.4877847643 0.15)
(-0.6886441153 -0.3312711457 0.15)
(-0.6464407173 -0.3199191443 0.15)
(-0.6465292049 -0.2670075687 0.15)
(-0.6887597532 -0.2792028946 0.15)
(-0.6885017856 -0.1262476429 0.15)
(-0.6461035147 -0.1123683025 0.15)
(-0.645780041 -0.06265404403 0.15)
(-0.688257268 -0.07684921929 0.15)
(-0.6871736142 0.06540445655 0.15)
(-0.6444348434 0.07997622396 0.15)
(-0.6439465331 0.1252512806 0.15)
(-0.6867789754 0.1107176795 0.15)
(-0.6856921591 0.2405271548 0.15)
(-0.6425937727 0.2544171542 0.15)
(-0.6422650893 0.2954022688 0.15)
(-0.6854433659 0.281937299 0.15)
(-0.6851416981 0.4022372323 0.15)
(-0.641799056 0.4136176421 0.15)
(-0.6418558226 0.4520119039 0.15)
(-0.6852225235 0.4416188422 0.15)
(-0.6857975949 0.5609634851 0.15)
(-0.6425014301 0.5675760658 0.15)
(-0.6428158246 0.6071970169 0.15)
(-0.6860416866 0.6020569175 0.15)
(-0.686358 0.733246 0.15)
(-0.6433675782 0.7346395778 0.15)
(-0.64276 0.781174 0.15)
(-0.686277 0.779542 0.15)
(-0.684856 0.918994 0.15)
(-0.641698 0.91929 0.15)
(-0.641653 0.965082 0.15)
(-0.684683 0.964872 0.15)
(-0.684589 1.10222 0.15)
(-0.598587 1.10257 0.15)
(-0.598492 1.19415 0.15)
(-0.684489 1.19382 0.15)
(-0.684423 1.28541 0.15)
(-0.598356 1.28576 0.15)
(-0.598227 1.37737 0.15)
(-0.684353 1.37701 0.15)
(-0.598044 1.46899 0.15)
(-0.511813 1.46933 0.15)
(-0.511625 1.65211 0.15)
(-0.511417 1.83475 0.15)
(-0.511259 2.01738 0.15)
(-0.511111 2.2 0.15)
(-0.338889 -2.2 0.15)
(-0.339075 -2.01738 0.15)
(-0.339307 -1.83475 0.15)
(-0.339552 -1.6521 0.15)
(-0.339914 -1.46942 0.15)
(-0.42603 -1.4694 0.15)
(-0.426107 -1.37793 0.15)
(-0.512124 -1.37767 0.15)
(-0.512175 -1.28611 0.15)
(-0.426152 -1.28638 0.15)
(-0.426205 -1.19484 0.15)
(-0.512281 -1.19454 0.15)
(-0.512399 -1.10297 0.15)
(-0.426261 -1.10332 0.15)
(-0.42631 -1.0118 0.15)
(-0.469316 -1.01165 0.15)
(-0.512427 -1.01145 0.15)
(-0.513033 -0.919636 0.15)
(-0.469459 -0.920103 0.15)
(-0.469658252 -0.8741318704 0.15)
(-0.513554 -0.87351 0.15)
(-0.5157486749 -0.725857762 0.15)
(-0.4728854023 -0.7232230063 0.15)
(-0.4739312422 -0.6687676455 0.15)
(-0.5164492074 -0.6732058511 0.15)
(-0.5185504852 -0.5080965876 0.15)
(-0.4763989623 -0.4993571837 0.15)
(-0.4769750415 -0.4422171216 0.15)
(-0.5191109752 -0.4518374881 0.15)
(-0.5199172406 -0.2842467436 0.15)
(-0.4777054543 -0.273098377 0.15)
(-0.4776081512 -0.2184217645 0.15)
(-0.5198736448 -0.2297312926 0.15)
(-0.518865708 -0.07265723714 0.15)
(-0.4764018018 -0.06159150641 0.15)
(-0.4757733166 -0.01181220382 0.15)
(-0.5183073496 -0.02268294689 0.15)
(-0.5162126321 0.1201072104 0.15)
(-0.4734733072 0.1306265225 0.15)
(-0.472646184 0.1759371346 0.15)
(-0.5154585269 0.16537515 0.15)
(-0.5133038942 0.2941313383 0.15)
(-0.470250394 0.305192981 0.15)
(-0.4695754039 0.3459036255 0.15)
(-0.5127141704 0.3346442483 0.15)
(-0.5116190837 0.4493735082 0.15)
(-0.4682512292 0.4607567243 0.15)
(-0.4681163511 0.4967901593 0.15)
(-0.5115441594 0.4857095011 0.15)
(-0.512065063 0.5934208948 0.15)
(-0.4675088664 0.6051180241 0.15)
(-0.4670709476 0.6410377007 0.15)
(-0.5116686003 0.6316680244 0.15)
(-0.5120301881 0.7461267527 0.15)
(-0.4685787636 0.7508556526 0.15)
(-0.4691443386 0.7900920779 0.15)
(-0.5124478044 0.7867833173 0.15)
(-0.512777 0.919803 0.15)
(-0.469804 0.919959 0.15)
(-0.469767 0.965722 0.15)
(-0.512742 0.965571 0.15)
(-0.512576 1.1029 0.15)
(-0.426399 1.10328 0.15)
(-0.426059 1.1949 0.15)
(-0.512348 1.19452 0.15)
(-0.512064 1.28615 0.15)
(-0.425833 1.28649 0.15)
(-0.425757 1.37805 0.15)
(-0.511924 1.37774 0.15)
(-0.42569 1.46951 0.15)
(-0.339558 1.46954 0.15)
(-0.339308 1.65218 0.15)
(-0.339106 1.8348 0.15)
(-0.338986 2.0174 0.15)
(-0.338889 2.2 0.15)
(-0.166667 -2.2 0.15)
(-0.16675 -2.01741 0.15)
(-0.166857 -1.83481 0.15)
(-0.167034 -1.6522 0.15)
(-0.167458 -1.46954 0.15)
(-0.253787 -1.46946 0.15)
(-0.25393 -1.37813 0.15)
(-0.340052 -1.37808 0.15)
(-0.340133 -1.28663 0.15)
(-0.254058 -1.28681 0.15)
(-0.254132 -1.19535 0.15)
(-0.340185 -1.1951 0.15)
(-0.340241 -1.10359 0.15)
(-0.25418 -1.10384 0.15)
(-0.25416 -1.01239 0.15)
(-0.29726 -1.01222 0.15)
(-0.340301 -1.01208 0.15)
(-0.3404579826 -0.919903599 0.15)
(-0.2975413638 -0.9191825538 0.15)
(-0.2981158551 -0.869193636 0.15)
(-0.3408902621 -0.8709290934 0.15)
(-0.343366793 -0.7102840123 0.15)
(-0.3008843808 -0.7056213583 0.15)
(-0.3019020834 -0.6478260673 0.15)
(-0.3443406194 -0.6533209519 0.15)
(-0.3475920159 -0.4779408962 0.15)
(-0.3044215656 -0.471152604 0.15)
(-0.3051292611 -0.4127016356 0.15)
(-0.3486362679 -0.4193707332 0.15)
(-0.3504537134 -0.2469825113 0.15)
(-0.3074240165 -0.2419076823 0.15)
(-0.3074822093 -0.1878893174 0.15)
(-0.3502620378 -0.1933257162 0.15)
(-0.348721399 -0.03970935172 0.15)
(-0.3059841351 -0.03712247298 0.15)
(-0.3052400915 0.01055128556 0.15)
(-0.3479501485 0.008545171211 0.15)
(-0.3452716976 0.1483503015 0.15)
(-0.3025427116 0.1489624537 0.15)
(-0.3015654278 0.1948142143 0.15)
(-0.3443064063 0.1939793575 0.15)
(-0.3413094817 0.3285934687 0.15)
(-0.2983387699 0.3321776972 0.15)
(-0.2972547505 0.3758969105 0.15)
(-0.3403067539 0.3714548493 0.15)
(-0.3376326286 0.491142765 0.15)
(-0.2932328028 0.499181473 0.15)
(-0.2918673988 0.5371425337 0.15)
(-0.3361924705 0.5288861892 0.15)
(-0.3352497211 0.6329689834 0.15)
(-0.2916672812 0.6405696522 0.15)
(-0.292157105 0.6731951376 0.15)
(-0.3357562505 0.6659700857 0.15)
(-0.3380706702 0.7666669055 0.15)
(-0.2945298148 0.7718241806 0.15)
(-0.2954167276 0.8065987958 0.15)
(-0.3389237968 0.8023483106 0.15)
(-0.3405333554 0.9215591165 0.15)
(-0.2969855429 0.9226251515 0.15)
(-0.2970349969 0.966622491 0.15)
(-0.340495 0.966291 0.15)
(-0.339984 1.10368 0.15)
(-0.253752 1.104 0.15)
(-0.25369 1.1955 0.15)
(-0.33981 1.19524 0.15)
(-0.339723 1.28677 0.15)
(-0.253617 1.28696 0.15)
(-0.253479 1.37829 0.15)
(-0.339655 1.37822 0.15)
(-0.253377 1.4696 0.15)
(-0.167064 1.46964 0.15)
(-0.166945 1.65224 0.15)
(-0.166826 1.83483 0.15)
(-0.166743 2.01742 0.15)
(-0.166667 2.2 0.15)
(0.00555556 -2.2 0.15)
(0.00551007 -2.01742 0.15)
(0.00546213 -1.83484 0.15)
(0.00540281 -1.65225 0.15)
(0.0053634 -1.46967 0.15)
(-0.0809386 -1.46965 0.15)
(-0.0809705 -1.37835 0.15)
(-0.167621 -1.37821 0.15)
(-0.167738 -1.2869 0.15)
(-0.0810137 -1.28705 0.15)
(-0.081081 -1.19575 0.15)
(-0.167848 -1.19558 0.15)
(-0.167946 -1.10413 0.15)
(-0.081294 -1.10442 0.15)
(-0.08178736926 -1.012842732 0.15)
(-0.1250042311 -1.012738427 0.15)
(-0.16807 -1.01263 0.15)
(-0.1687883461 -0.9163650643 0.15)
(-0.1259129211 -0.9152603151 0.15)
(-0.126810966 -0.8624404962 0.15)
(-0.1696106241 -0.8641796047 0.15)
(-0.1729799368 -0.6949091821 0.15)
(-0.1302909255 -0.6915164939 0.15)
(-0.1314412714 -0.6319497356 0.15)
(-0.1742693519 -0.6345958265 0.15)
(-0.176707891 -0.4552903086 0.15)
(-0.1339383834 -0.4520589905 0.15)
(-0.1342577528 -0.3940178922 0.15)
(-0.1770297763 -0.3970813237 0.15)
(-0.1768712911 -0.2330188397 0.15)
(-0.1336687071 -0.2316847234 0.15)
(-0.1331853481 -0.1822906826 0.15)
(-0.1767717631 -0.1823300076 0.15)
(-0.1765917929 -0.04046626741 0.15)
(-0.132153026 -0.043227986 0.15)
(-0.132065184 -0.02011572586 0.15)
(-0.1329560129 0.00425938509 0.15)
(-0.1549498359 0.005831045233 0.15)
(-0.176428653 0.006493679041 0.15)
(-0.174362005 0.1462260283 0.15)
(-0.1529997591 0.1457753147 0.15)
(-0.1525247087 0.16917886 0.15)
(-0.1738876199 0.1695027826 0.15)
(-0.1686407122 0.3343804212 0.15)
(-0.1466859099 0.3346159806 0.15)
(-0.1243876933 0.3350103564 0.15)
(-0.1232253674 0.3582770649 0.15)
(-0.1224930528 0.3812147396 0.15)
(-0.1665735462 0.3811312986 0.15)
(-0.1622727866 0.5126872991 0.15)
(-0.1191294047 0.5143612497 0.15)
(-0.1183955299 0.5543642377 0.15)
(-0.1616528435 0.551914945 0.15)
(-0.1610318184 0.657622442 0.15)
(-0.1171212496 0.6610217399 0.15)
(-0.1172821834 0.6939358955 0.15)
(-0.1612586781 0.6899580976 0.15)
(-0.163054915 0.7852632029 0.15)
(-0.1194887889 0.7894761375 0.15)
(-0.1205933497 0.8220736643 0.15)
(-0.1640729848 0.8184022702 0.15)
(-0.1669278434 0.9277931917 0.15)
(-0.1236868681 0.929482788 0.15)
(-0.1243453328 0.9698902336 0.15)
(-0.1674963127 0.9689076205 0.15)
(-0.167581 1.10426 0.15)
(-0.0812491 1.10447 0.15)
(-0.0810988 1.19579 0.15)
(-0.167498 1.19571 0.15)
(-0.167364 1.28702 0.15)
(-0.0810205 1.28709 0.15)
(-0.080918 1.37839 0.15)
(-0.16716 1.37833 0.15)
(-0.0808667 1.46969 0.15)
(0.00526028 1.4697 0.15)
(0.00533705 1.65227 0.15)
(0.00541418 1.83485 0.15)
(0.00548531 2.01743 0.15)
(0.00555556 2.2 0.15)
(0.177778 -2.2 0.15)
(0.177739 -2.01742 0.15)
(0.1777 -1.83484 0.15)
(0.177661 -1.65227 0.15)
(0.177627 -1.46969 0.15)
(0.0915047 -1.4697 0.15)
(0.0914852 -1.37841 0.15)
(0.00534656 -1.37838 0.15)
(0.00532381 -1.28709 0.15)
(0.0914651 -1.28711 0.15)
(0.0914414 -1.19582 0.15)
(0.00528866 -1.19579 0.15)
(0.00515509 -1.10449 0.15)
(0.0913796 -1.10453 0.15)
(0.09111398719 -1.012717074 0.15)
(0.04786491157 -1.012891542 0.15)
(0.004737342671 -1.012922508 0.15)
(0.003534237227 -0.9132690247 0.15)
(0.04664515829 -0.9131103347 0.15)
(0.04561003815 -0.8591367785 0.15)
(0.002512020792 -0.8593769101 0.15)
(-0.001197235273 -0.6858224353 0.15)
(0.0418807518 -0.6854103654 0.15)
(0.04074190487 -0.6252474527 0.15)
(-0.002340810791 -0.6257153055 0.15)
(-0.004486725149 -0.4467763211 0.15)
(0.03862421682 -0.4464494027 0.15)
(0.0384753769 -0.389360512 0.15)
(-0.004688177575 -0.3895379844 0.15)
(-0.003717085473 -0.23157212 0.15)
(0.03969316937 -0.2321651052 0.15)
(0.04053180642 -0.1853642472 0.15)
(-0.002947864398 -0.1843937569 0.15)
(-0.0005835014694 -0.04753554548 0.15)
(0.02145643662 -0.04812695838 0.15)
(0.02180348262 -0.02533121668 0.15)
(-0.000201775184 -0.02474253336 0.15)
(0.006777574252 0.3337699722 0.15)
(0.02860912279 0.3334409976 0.15)
(0.02917829355 0.3562260679 0.15)
(0.007379562356 0.3565783578 0.15)
(0.01159312522 0.5156220849 0.15)
(0.05484884399 0.515082044 0.15)
(0.05575661581 0.5578287473 0.15)
(0.01245976763 0.5579103108 0.15)
(0.01336612766 0.669608757 0.15)
(0.05671000497 0.6703449867 0.15)
(0.0564246907 0.703714184 0.15)
(0.01306790405 0.7028458286 0.15)
(0.01060359268 0.797426588 0.15)
(0.05397609525 0.7983664346 0.15)
(0.05286636875 0.8300827405 0.15)
(0.009448213467 0.8292021608 0.15)
(0.006057887247 0.9331833568 0.15)
(0.0497068665 0.9345941054 0.15)
(0.04880523409 0.9732890544 0.15)
(0.005224893775 0.9722794481 0.15)
(0.00498511 1.10452 0.15)
(0.0912177 1.10457 0.15)
(0.0912678 1.19586 0.15)
(0.00512268 1.19582 0.15)
(0.00517435 1.28712 0.15)
(0.0913049 1.28714 0.15)
(0.0913415 1.37843 0.15)
(0.00522194 1.37841 0.15)
(0.0913798 1.46972 0.15)
(0.17756 1.46972 0.15)
(0.177642 1.65229 0.15)
(0.17769 1.83486 0.15)
(0.177734 2.01743 0.15)
(0.177778 2.2 0.15)
(0.35 -2.2 0.15)
(0.349964 -2.01742 0.15)
(0.349927 -1.83485 0.15)
(0.349892 -1.65227 0.15)
(0.349867 -1.4697 0.15)
(0.263757 -1.46971 0.15)
(0.263743 -1.37842 0.15)
(0.177608 -1.3784 0.15)
(0.177589 -1.28711 0.15)
(0.263728 -1.28713 0.15)
(0.263712 -1.19584 0.15)
(0.17757 -1.19582 0.15)
(0.177544 -1.10453 0.15)
(0.263698 -1.10455 0.15)
(0.2635707288 -1.012455638 0.15)
(0.2205018548 -1.012518713 0.15)
(0.1773997393 -1.012594251 0.15)
(0.1760593037 -0.9117663744 0.15)
(0.2191370257 -0.9114493948 0.15)
(0.2180419752 -0.856973571 0.15)
(0.1749762762 -0.8573435721 0.15)
(0.1712088904 -0.6831348207 0.15)
(0.2142638388 -0.6828007946 0.15)
(0.2131479422 -0.6228921384 0.15)
(0.170088691 -0.6231493539 0.15)
(0.1681063764 -0.445677568 0.15)
(0.2111906275 -0.445798044 0.15)
(0.2111193983 -0.389515327 0.15)
(0.1680235135 -0.3892376561 0.15)
(0.1694613887 -0.2342565766 0.15)
(0.2125922855 -0.2350167689 0.15)
(0.2135106177 -0.1888850612 0.15)
(0.1703729735 -0.1880341146 0.15)
(0.1732105073 -0.05140757263 0.15)
(0.1947940528 -0.05184635838 0.15)
(0.1952630735 -0.02911019376 0.15)
(0.173679591 -0.02866840867 0.15)
(0.1809405947 0.3306253491 0.15)
(0.2026509019 0.330173896 0.15)
(0.2031418336 0.352905599 0.15)
(0.1814426081 0.35336082 0.15)
(0.1849196834 0.5126846167 0.15)
(0.2282359333 0.5117384351 0.15)
(0.2291066241 0.5557274976 0.15)
(0.185799075 0.5564757713 0.15)
(0.1869045794 0.6718538001 0.15)
(0.2302367397 0.6717363698 0.15)
(0.2300197618 0.7060436722 0.15)
(0.1866769011 0.7059725302 0.15)
(0.1843156114 0.80182923 0.15)
(0.2276773349 0.8023024289 0.15)
(0.2264798755 0.83406583 0.15)
(0.1831176831 0.8335453345 0.15)
(0.179373387 0.9359987318 0.15)
(0.2226988407 0.9364181967 0.15)
(0.2216941368 0.9745162509 0.15)
(0.1783936079 0.974212658 0.15)
(0.177442 1.10447 0.15)
(0.263862 1.10431 0.15)
(0.263862 1.19583 0.15)
(0.177467 1.19586 0.15)
(0.177495 1.28715 0.15)
(0.263864 1.28717 0.15)
(0.263866 1.37846 0.15)
(0.177525 1.37843 0.15)
(0.263867 1.46975 0.15)
(0.350165 1.46972 0.15)
(0.350091 1.65229 0.15)
(0.350058 1.83486 0.15)
(0.350028 2.01743 0.15)
(0.35 2.2 0.15)
(0.522222 -2.2 0.15)
(0.522182 -2.01743 0.15)
(0.522141 -1.83485 0.15)
(0.522103 -1.65228 0.15)
(0.522069 -1.46971 0.15)
(0.435968 -1.46972 0.15)
(0.43595 -1.37843 0.15)
(0.349852 -1.37841 0.15)
(0.349837 -1.28712 0.15)
(0.435933 -1.28714 0.15)
(0.435915 -1.19585 0.15)
(0.349822 -1.19584 0.15)
(0.349806 -1.10455 0.15)
(0.435897 -1.10456 0.15)
(0.4356932101 -1.012094658 0.15)
(0.3926633989 -1.012221366 0.15)
(0.3496425936 -1.012306943 0.15)
(0.3481988904 -0.9106859348 0.15)
(0.3911872286 -0.9103799589 0.15)
(0.3900533305 -0.8557717326 0.15)
(0.3470760865 -0.856118855 0.15)
(0.3432675597 -0.6821889394 0.15)
(0.3862328803 -0.6819024598 0.15)
(0.3851241302 -0.6223125945 0.15)
(0.342156265 -0.6225198658 0.15)
(0.3402523968 -0.446482707 0.15)
(0.3832402447 -0.4466483083 0.15)
(0.3832016274 -0.3909329982 0.15)
(0.3402043292 -0.3906173624 0.15)
(0.3417460483 -0.2373278384 0.15)
(0.3847687195 -0.2380906061 0.15)
(0.3856996617 -0.1922152321 0.15)
(0.342675509 -0.1913896766 0.15)
(0.3455071729 -0.05485203097 0.15)
(0.3670070102 -0.0552760539 0.15)
(0.3674703803 -0.03257077733 0.15)
(0.3567195039 -0.03235674529 0.15)
(0.3459776255 -0.03214290242 0.15)
(0.3544278395 0.3267677733 0.15)
(0.3760547775 0.3262520585 0.15)
(0.3765091707 0.348958524 0.15)
(0.3548892941 0.3494770911 0.15)
(0.3580958286 0.5086716934 0.15)
(0.4012468247 0.5075918376 0.15)
(0.4020643708 0.5513374611 0.15)
(0.3589289728 0.5525570278 0.15)
(0.3599724937 0.6686614592 0.15)
(0.4030776855 0.6673561122 0.15)
(0.4028274589 0.7018535678 0.15)
(0.3597316955 0.7031022425 0.15)
(0.3573295452 0.8000884448 0.15)
(0.4003793583 0.7991617084 0.15)
(0.3991714069 0.8313630924 0.15)
(0.3561193886 0.8321551674 0.15)
(0.3523247521 0.9354107642 0.15)
(0.3953913317 0.9350121875 0.15)
(0.3943972835 0.9734877719 0.15)
(0.3513239798 0.9737741999 0.15)
(0.350236 1.10409 0.15)
(0.43642 1.10386 0.15)
(0.4364 1.19541 0.15)
(0.350224 1.19563 0.15)
(0.350216 1.28715 0.15)
(0.436392 1.287 0.15)
(0.436371 1.37844 0.15)
(0.350194 1.37844 0.15)
(0.436339 1.46973 0.15)
(0.52247 1.4697 0.15)
(0.522403 1.65228 0.15)
(0.522334 1.83485 0.15)
(0.522278 2.01743 0.15)
(0.522222 2.2 0.15)
(0.694444 -2.2 0.15)
(0.694421 -2.01743 0.15)
(0.694395 -1.83486 0.15)
(0.694367 -1.65229 0.15)
(0.694266 -1.46972 0.15)
(0.608164 -1.46973 0.15)
(0.608143 -1.37844 0.15)
(0.522052 -1.37842 0.15)
(0.522033 -1.28714 0.15)
(0.608122 -1.28715 0.15)
(0.608101 -1.19587 0.15)
(0.522015 -1.19585 0.15)
(0.521997 -1.10456 0.15)
(0.608086 -1.10458 0.15)
(0.6078273714 -1.011520007 0.15)
(0.5648019985 -1.011671365 0.15)
(0.5217689166 -1.011820169 0.15)
(0.5202001006 -0.9094598862 0.15)
(0.5632015117 -0.9091473415 0.15)
(0.5620234497 -0.8543821381 0.15)
(0.5190331213 -0.854732872 0.15)
(0.5151797214 -0.6810693693 0.15)
(0.5581592033 -0.680791219 0.15)
(0.5570630875 -0.6215305346 0.15)
(0.5140804356 -0.621724585 0.15)
(0.512263036 -0.4471793938 0.15)
(0.5552707888 -0.4473629902 0.15)
(0.5552715662 -0.3922484142 0.15)
(0.5122536304 -0.3919143005 0.15)
(0.5139069729 -0.2403966272 0.15)
(0.5569541662 -0.2411697618 0.15)
(0.5578972177 -0.195473566 0.15)
(0.5148476711 -0.1946664809 0.15)
(0.5176715706 -0.05821269051 0.15)
(0.5391916768 -0.05862413672 0.15)
(0.5396552269 -0.03595787255 0.15)
(0.5288952264 -0.03574965 0.15)
(0.5181372464 -0.03554046971 0.15)
(0.5271918461 0.3224783047 0.15)
(0.5487874875 0.3219012342 0.15)
(0.5492184232 0.344586188 0.15)
(0.5276288856 0.3451681314 0.15)
(0.5306720021 0.5039634145 0.15)
(0.573790474 0.502562361 0.15)
(0.5744942184 0.5450128094 0.15)
(0.5314050323 0.5468723891 0.15)
(0.5321795579 0.6611701727 0.15)
(0.5751317111 0.658157051 0.15)
(0.5748413705 0.6930088444 0.15)
(0.5318606027 0.6954344505 0.15)
(0.5292768294 0.7931625539 0.15)
(0.572197276 0.7912465367 0.15)
(0.5709903845 0.8242048601 0.15)
(0.5280633707 0.8258726946 0.15)
(0.5244041039 0.9317853943 0.15)
(0.5673623556 0.930958116 0.15)
(0.5664948614 0.9706346985 0.15)
(0.5235037263 0.9711869934 0.15)
(0.522596 1.10359 0.15)
(0.608805 1.10329 0.15)
(0.608783 1.19489 0.15)
(0.522553 1.19516 0.15)
(0.522536 1.28678 0.15)
(0.608754 1.28653 0.15)
(0.608691 1.37816 0.15)
(0.522505 1.3784 0.15)
(0.608659 1.46969 0.15)
(0.694922 1.46961 0.15)
(0.694721 1.65224 0.15)
(0.69458 1.83483 0.15)
(0.694507 2.01742 0.15)
(0.694444 2.2 0.15)
(0.866667 -2.2 0.15)
(0.866804 -2.01742 0.15)
(0.866933 -1.83485 0.15)
(0.867013 -1.65228 0.15)
(0.866587 -1.46974 0.15)
(0.780367 -1.46974 0.15)
(0.780339 -1.37845 0.15)
(0.694242 -1.37843 0.15)
(0.69422 -1.28715 0.15)
(0.780315 -1.28717 0.15)
(0.780291 -1.19588 0.15)
(0.694197 -1.19586 0.15)
(0.694176 -1.10458 0.15)
(0.780267 -1.1046 0.15)
(0.779920551 -1.011061554 0.15)
(0.7368731239 -1.010999395 0.15)
(0.6938562623 -1.011185642 0.15)
(0.69215236 -0.9081581003 0.15)
(0.7351318793 -0.9077810327 0.15)
(0.7339068593 -0.8528504526 0.15)
(0.6909400052 -0.8532757533 0.15)
(0.6870453927 -0.6799139684 0.15)
(0.7300016891 -0.6795579473 0.15)
(0.7289221901 -0.6206443484 0.15)
(0.6859612797 -0.6209119333 0.15)
(0.684244722 -0.4479073596 0.15)
(0.7272365766 -0.4480549787 0.15)
(0.7272830415 -0.3935672497 0.15)
(0.6842784206 -0.3932538196 0.15)
(0.6860560856 -0.2435130316 0.15)
(0.7290977852 -0.2443105454 0.15)
(0.7300451092 -0.1986678418 0.15)
(0.6870053712 -0.1978699649 0.15)
(0.6898127908 -0.06143883313 0.15)
(0.7113312968 -0.0618312415 0.15)
(0.7117889441 -0.03920786273 0.15)
(0.7010257341 -0.03900957491 0.15)
(0.6902705433 -0.03881045547 0.15)
(0.6995345805 0.3177045843 0.15)
(0.7210579133 0.3170660201 0.15)
(0.7214706849 0.3397433541 0.15)
(0.6999474992 0.3403889168 0.15)
(0.702875834 0.4976884562 0.15)
(0.7458586241 0.4957182031 0.15)
(0.7464339132 0.5364868113 0.15)
(0.7034894713 0.5389297547 0.15)
(0.703750806 0.6496132649 0.15)
(0.7466769297 0.6471910887 0.15)
(0.7462119428 0.6810242316 0.15)
(0.7033835283 0.6843783715 0.15)
(0.7007082679 0.7834784638 0.15)
(0.7434420514 0.7800449453 0.15)
(0.7422428726 0.8139690992 0.15)
(0.699517114 0.8171778023 0.15)
(0.6961687991 0.9272000773 0.15)
(0.7390907353 0.9260356821 0.15)
(0.7384183255 0.967397972 0.15)
(0.6954478604 0.9681167257 0.15)
(0.694995 1.10296 0.15)
(0.781109 1.10262 0.15)
(0.781098 1.1943 0.15)
(0.694983 1.1946 0.15)
(0.694971 1.28624 0.15)
(0.781097 1.28597 0.15)
(0.781101 1.37767 0.15)
(0.694945 1.37791 0.15)
(0.781109 1.4694 0.15)
(0.867247 1.46918 0.15)
(0.867081 1.65219 0.15)
(0.866868 1.8348 0.15)
(0.866754 2.0174 0.15)
(0.866667 2.2 0.15)
(1.03889 -2.2 0.15)
(1.03889 -2.01667 0.15)
(1.03889 -1.83333 0.15)
(1.03889 -1.65 0.15)
(1.03889 -1.46667 0.15)
(0.953286 -1.46972 0.15)
(0.953361 -1.37843 0.15)
(0.866525 -1.37846 0.15)
(0.866505 -1.28717 0.15)
(0.953429 -1.28714 0.15)
(0.953488 -1.19585 0.15)
(0.866488 -1.19589 0.15)
(0.866462 -1.10461 0.15)
(0.953452 -1.10458 0.15)
(0.9520444418 -1.009613624 0.15)
(0.9088439348 -1.009882164 0.15)
(0.8658750692 -1.010314808 0.15)
(0.8640278618 -0.906617371 0.15)
(0.9068985354 -0.9056296874 0.15)
(0.9056200095 -0.8504666803 0.15)
(0.8627871154 -0.8516945897 0.15)
(0.8588087847 -0.6783150352 0.15)
(0.9017139725 -0.6776767313 0.15)
(0.900677392 -0.6192939928 0.15)
(0.8577466182 -0.6196862301 0.15)
(0.8561668901 -0.44843405 0.15)
(0.8991810982 -0.4489521047 0.15)
(0.899250343 -0.3948058976 0.15)
(0.8562581387 -0.3944874016 0.15)
(0.8581949697 -0.2467861994 0.15)
(0.9012294685 -0.2476429792 0.15)
(0.9021682191 -0.2019466154 0.15)
(0.880658384 -0.2015223823 0.15)
(0.8591464232 -0.2011041058 0.15)
(0.8619518498 -0.06452990048 0.15)
(0.872697169 -0.06472281105 0.15)
(0.8729220566 -0.05340803825 0.15)
(0.8621797158 -0.05321619052 0.15)
(0.8686304728 0.1317176244 0.15)
(0.8739866669 0.1314802641 0.15)
(0.8793446183 0.1312789148 0.15)
(0.8794515544 0.1423593652 0.15)
(0.8687457665 0.1428150028 0.15)
(0.871452748 0.3120996047 0.15)
(0.8928826114 0.311296969 0.15)
(0.9143062869 0.3104854613 0.15)
(0.9151496434 0.3559737844 0.15)
(0.8722740792 0.35753938 0.15)
(0.8718655918 0.3348279484 0.15)
(0.8746037543 0.4888716969 0.15)
(0.9174712713 0.485865818 0.15)
(0.9178876859 0.5246695614 0.15)
(0.8751091965 0.5286032322 0.15)
(0.8750405188 0.6368489401 0.15)
(0.9177521904 0.6329796031 0.15)
(0.9171736356 0.6668239969 0.15)
(0.8744730349 0.6705180811 0.15)
(0.8716285487 0.7711071051 0.15)
(0.9143607069 0.7684722341 0.15)
(0.9132504823 0.8039243415 0.15)
(0.8704831532 0.80610935 0.15)
(0.8677262988 0.9219514927 0.15)
(0.9106454817 0.9211474999 0.15)
(0.9102902113 0.9647191258 0.15)
(0.8673078104 0.9651105714 0.15)
(0.867204 1.10226 0.15)
(0.953252 1.10189 0.15)
(0.953259 1.19361 0.15)
(0.867204 1.19395 0.15)
(0.867215 1.28567 0.15)
(0.953283 1.2854 0.15)
(0.953316 1.3772 0.15)
(0.867233 1.37742 0.15)
(0.953348 1.469 0.15)
(1.03943 1.46885 0.15)
(1.0394 1.65214 0.15)
(1.0392 1.83477 0.15)
(1.03904 2.01739 0.15)
(1.03889 2.2 0.15)
(1.21111 -2.2 0.15)
(1.21111 -2.01667 0.15)
(1.21111 -1.83333 0.15)
(1.21111 -1.65 0.15)
(1.21111 -1.46667 0.15)
(1.125 -1.46667 0.15)
(1.125 -1.375 0.15)
(1.03889 -1.375 0.15)
(1.03889 -1.28333 0.15)
(1.125 -1.28333 0.15)
(1.125 -1.19167 0.15)
(1.03889 -1.19167 0.15)
(1.03889 -1.1 0.15)
(1.125 -1.1 0.15)
(1.12443618 -1.005171077 0.15)
(1.081302845 -1.004733223 0.15)
(1.038209162 -1.004457773 0.15)
(1.036146947 -0.8995319771 0.15)
(1.079285166 -0.9002071937 0.15)
(1.07798337 -0.8450399416 0.15)
(1.034827676 -0.8441503828 0.15)
(1.030898208 -0.6712946098 0.15)
(1.074078338 -0.6727728713 0.15)
(1.073062821 -0.6147178404 0.15)
(1.029885268 -0.6130959522 0.15)
(1.028534576 -0.4438969262 0.15)
(1.071672402 -0.4456414473 0.15)
(1.071827988 -0.3924248672 0.15)
(1.028712675 -0.3907790413 0.15)
(1.03086117 -0.2451663065 0.15)
(1.073901658 -0.2460712228 0.15)
(1.074865095 -0.2002473497 0.15)
(1.05334985 -0.1997949966 0.15)
(1.031824607 -0.1993424334 0.15)
(1.034714874 -0.06187281361 0.15)
(1.056240117 -0.06232537688 0.15)
(1.056721814 -0.03941444011 0.15)
(1.045954193 -0.03918805337 0.15)
(1.035196571 -0.03896187684 0.15)
(1.034955722 -0.05041734522 0.15)
(1.038568555 0.1214196466 0.15)
(1.049326178 0.1211934892 0.15)
(1.060093799 0.1209671121 0.15)
(1.060575511 0.1438787528 0.15)
(1.039050268 0.1443313161 0.15)
(1.042422238 0.3047121725 0.15)
(1.085462727 0.3038072562 0.15)
(1.08640971 0.349170629 0.15)
(1.043382258 0.3504401071 0.15)
(1.04586115 0.4768483359 0.15)
(1.088470176 0.4729795369 0.15)
(1.088760278 0.5105913519 0.15)
(1.046155752 0.5146148204 0.15)
(1.045667342 0.6199318087 0.15)
(1.088317817 0.6162340201 0.15)
(1.087682226 0.6502881772 0.15)
(1.045098857 0.6547419732 0.15)
(1.042320748 0.7588719336 0.15)
(1.084876814 0.7552122739 0.15)
(1.084030226 0.7934805212 0.15)
(1.041323018 0.7957887601 0.15)
(1.039345855 0.918431935 0.15)
(1.082284262 0.9178706799 0.15)
(1.08225 0.963502 0.15)
(1.03926 0.963775 0.15)
(1.03928 1.10146 0.15)
(1.12532 1.10101 0.15)
(1.12539 1.19295 0.15)
(1.03931 1.19327 0.15)
(1.03934 1.28514 0.15)
(1.12544 1.28491 0.15)
(1.12548 1.37679 0.15)
(1.03939 1.377 0.15)
(1.12552 1.46859 0.15)
(1.2116 1.46826 0.15)
(1.21159 1.65175 0.15)
(1.21146 1.83473 0.15)
(1.21128 2.01737 0.15)
(1.21111 2.2 0.15)
(1.38333 -2.2 0.15)
(1.38333 -2.01667 0.15)
(1.38333 -1.83333 0.15)
(1.38333 -1.65 0.15)
(1.38333 -1.46667 0.15)
(1.29722 -1.46667 0.15)
(1.29722 -1.375 0.15)
(1.21111 -1.375 0.15)
(1.21111 -1.28333 0.15)
(1.29722 -1.28333 0.15)
(1.29722 -1.19167 0.15)
(1.21111 -1.19167 0.15)
(1.21111 -1.1 0.15)
(1.29722 -1.1 0.15)
(1.297088283 -1.007614269 0.15)
(1.253931012 -1.007021293 0.15)
(1.21075496 -1.006370806 0.15)
(1.209075334 -0.904335234 0.15)
(1.252431375 -0.9062094464 0.15)
(1.251340638 -0.8529391184 0.15)
(1.207909977 -0.8504406492 0.15)
(1.204221144 -0.681469937 0.15)
(1.247782038 -0.6856036864 0.15)
(1.246770985 -0.6286690334 0.15)
(1.203203138 -0.6241523735 0.15)
(1.20158069 -0.4554228394 0.15)
(1.245059521 -0.4602762232 0.15)
(1.245011981 -0.4061541735 0.15)
(1.201594095 -0.4015228365 0.15)
(1.203132514 -0.2500606508 0.15)
(1.246318573 -0.2528677485 0.15)
(1.247119149 -0.2048590837 0.15)
(1.204010907 -0.2030326866 0.15)
(1.206896822 -0.06549289939 0.15)
(1.249947308 -0.06639802593 0.15)
(1.250910723 -0.02057515261 0.15)
(1.207860237 -0.01967002606 0.15)
(1.207378519 -0.04258196262 0.15)
(1.210750505 0.1177995937 0.15)
(1.253800991 0.1168944671 0.15)
(1.254764412 0.1627176404 0.15)
(1.211713926 0.1636227669 0.15)
(1.214574914 0.3000424847 0.15)
(1.257575162 0.2973444836 0.15)
(1.258388283 0.3396762534 0.15)
(1.215433288 0.343196688 0.15)
(1.217100526 0.4621270899 0.15)
(1.259901692 0.4573012873 0.15)
(1.259992028 0.4937682269 0.15)
(1.217234193 0.4986574079 0.15)
(1.216218399 0.6031398364 0.15)
(1.258914492 0.5989640036 0.15)
(1.258184269 0.6339503489 0.15)
(1.215479891 0.6376576909 0.15)
(1.212815573 0.7465098151 0.15)
(1.255635146 0.7445637855 0.15)
(1.254918957 0.7845634198 0.15)
(1.212127579 0.7865569162 0.15)
(1.21111 0.916667 0.15)
(1.25417 0.916667 0.15)
(1.25417 0.9625 0.15)
(1.21125 0.962818 0.15)
(1.21135 1.10065 0.15)
(1.29756 1.10048 0.15)
(1.29749 1.1924 0.15)
(1.21147 1.19275 0.15)
(1.21153 1.28465 0.15)
(1.29758 1.2844 0.15)
(1.29764 1.37625 0.15)
(1.21159 1.37654 0.15)
(1.29764 1.46792 0.15)
(1.38364 1.46759 0.15)
(1.38374 1.65132 0.15)
(1.38369 1.83462 0.15)
(1.38351 2.01735 0.15)
(1.38333 2.2 0.15)
(1.55556 -2.2 0.15)
(1.55556 -2.01667 0.15)
(1.55556 -1.83333 0.15)
(1.55556 -1.65 0.15)
(1.55556 -1.46667 0.15)
(1.46944 -1.46667 0.15)
(1.46944 -1.375 0.15)
(1.38333 -1.375 0.15)
(1.38333 -1.28333 0.15)
(1.46944 -1.28333 0.15)
(1.46944 -1.19167 0.15)
(1.38333 -1.19167 0.15)
(1.38333 -1.1 0.15)
(1.46944 -1.1 0.15)
(1.46944 -1.00833 0.15)
(1.42639 -1.00833 0.15)
(1.383326764 -1.008312692 0.15)
(1.382556047 -0.9121180075 0.15)
(1.425904065 -0.9138330748 0.15)
(1.425260395 -0.8639045189 0.15)
(1.381778873 -0.8612453633 0.15)
(1.378831487 -0.7004685466 0.15)
(1.42259748 -0.7058319136 0.15)
(1.421706487 -0.651352097 0.15)
(1.377893253 -0.6452284029 0.15)
(1.376000645 -0.4794134314 0.15)
(1.419806356 -0.4870472803 0.15)
(1.419538175 -0.4329746656 0.15)
(1.375778588 -0.4251455271 0.15)
(1.37637942 -0.2682703956 0.15)
(1.419923033 -0.2757656635 0.15)
(1.420399248 -0.2253436411 0.15)
(1.376936816 -0.2181968776 0.15)
(1.379262977 -0.07379992932 0.15)
(1.422516968 -0.07978963285 0.15)
(1.423364428 -0.03290354712 0.15)
(1.380161535 -0.02715344288 0.15)
(1.382957913 0.1096222401 0.15)
(1.426037616 0.1036702337 0.15)
(1.426914123 0.1477706817 0.15)
(1.383878778 0.1540594028 0.15)
(1.386352354 0.2821893535 0.15)
(1.429212673 0.2747421316 0.15)
(1.429783733 0.3150816864 0.15)
(1.386992242 0.3227900691 0.15)
(1.387970188 0.4381955 0.15)
(1.43057271 0.4305455809 0.15)
(1.430481712 0.4676707257 0.15)
(1.38792181 0.4749839048 0.15)
(1.38669906 0.5839097748 0.15)
(1.429242351 0.5784599454 0.15)
(1.428612352 0.6162424026 0.15)
(1.386031209 0.6208536129 0.15)
(1.384004374 0.7383791675 0.15)
(1.426824208 0.7365556014 0.15)
(1.426487261 0.7798457607 0.15)
(1.383554868 0.7807490109 0.15)
(1.38333 0.916667 0.15)
(1.42639 0.916667 0.15)
(1.42639 0.9625 0.15)
(1.38333 0.9625 0.15)
(1.38333 1.1 0.15)
(1.46944 1.1 0.15)
(1.46983 1.19203 0.15)
(1.38358 1.19218 0.15)
(1.38365 1.28424 0.15)
(1.46966 1.28378 0.15)
(1.46961 1.37544 0.15)
(1.38362 1.37587 0.15)
(1.46965 1.46727 0.15)
(1.55574 1.46706 0.15)
(1.55584 1.65071 0.15)
(1.55579 1.834 0.15)
(1.55576 2.01733 0.15)
(1.55556 2.2 0.15)
(1.72778 -2.2 0.15)
(1.72778 -2.01667 0.15)
(1.72778 -1.83333 0.15)
(1.72778 -1.65 0.15)
(1.72778 -1.46667 0.15)
(1.64167 -1.46667 0.15)
(1.64167 -1.375 0.15)
(1.55556 -1.375 0.15)
(1.55556 -1.28333 0.15)
(1.64167 -1.28333 0.15)
(1.64167 -1.19167 0.15)
(1.55556 -1.19167 0.15)
(1.55556 -1.1 0.15)
(1.64167 -1.1 0.15)
(1.64167 -1.00833 0.15)
(1.59861 -1.00833 0.15)
(1.55556 -1.00833 0.15)
(1.555557159 -0.9166508265 0.15)
(1.59861 -0.916667 0.15)
(1.598580749 -0.8706591968 0.15)
(1.555387154 -0.8697976103 0.15)
(1.553818531 -0.7209855733 0.15)
(1.597448291 -0.7251588354 0.15)
(1.596881461 -0.6745467826 0.15)
(1.553150494 -0.6693088471 0.15)
(1.551450839 -0.5115162361 0.15)
(1.595328875 -0.5194799134 0.15)
(1.594983116 -0.4674844193 0.15)
(1.551106395 -0.4588253248 0.15)
(1.550967263 -0.3033295391 0.15)
(1.594722225 -0.3133586711 0.15)
(1.594899384 -0.2630866739 0.15)
(1.551212871 -0.2528163195 0.15)
(1.552629409 -0.1062100723 0.15)
(1.596072559 -0.1167832739 0.15)
(1.596616542 -0.06964432248 0.15)
(1.553259822 -0.05904885001 0.15)
(1.555316089 0.07730224758 0.15)
(1.598410097 0.06672995653 0.15)
(1.598987869 0.1105166748 0.15)
(1.555981832 0.1210406493 0.15)
(1.557605878 0.2472137911 0.15)
(1.600358195 0.2371629319 0.15)
(1.600630992 0.2779952175 0.15)
(1.557952954 0.2877167486 0.15)
(1.558209606 0.4059328799 0.15)
(1.600739282 0.3978913126 0.15)
(1.600542852 0.4375585991 0.15)
(1.5580267 0.4448040141 0.15)
(1.556896615 0.5629824344 0.15)
(1.599512326 0.5586849837 0.15)
(1.599141326 0.6005442936 0.15)
(1.556444208 0.6037427833 0.15)
(1.555567416 0.7333866984 0.15)
(1.59861 0.733333 0.15)
(1.59861 0.779167 0.15)
(1.55556 0.779167 0.15)
(1.55556 0.916667 0.15)
(1.59861 0.916667 0.15)
(1.59861 0.9625 0.15)
(1.55556 0.9625 0.15)
(1.55556 1.1 0.15)
(1.64167 1.1 0.15)
(1.64167 1.19167 0.15)
(1.55556 1.19167 0.15)
(1.55556 1.28333 0.15)
(1.64167 1.28333 0.15)
(1.64167 1.375 0.15)
(1.55556 1.375 0.15)
(1.64167 1.46667 0.15)
(1.72778 1.46667 0.15)
(1.72778 1.65 0.15)
(1.72778 1.83333 0.15)
(1.72803 2.01725 0.15)
(1.72778 2.2 0.15)
(1.9 -2.2 0.15)
(1.9 -2.01667 0.15)
(1.9 -1.83333 0.15)
(1.9 -1.65 0.15)
(1.9 -1.46667 0.15)
(1.81389 -1.46667 0.15)
(1.81389 -1.375 0.15)
(1.72778 -1.375 0.15)
(1.72778 -1.28333 0.15)
(1.81389 -1.28333 0.15)
(1.81389 -1.19167 0.15)
(1.72778 -1.19167 0.15)
(1.72778 -1.1 0.15)
(1.81389 -1.1 0.15)
(1.81389 -1.00833 0.15)
(1.77083 -1.00833 0.15)
(1.72778 -1.00833 0.15)
(1.72778 -0.916667 0.15)
(1.77083 -0.916667 0.15)
(1.77083 -0.870833 0.15)
(1.72778 -0.870833 0.15)
(1.727704951 -0.7328173814 0.15)
(1.77083 -0.733333 0.15)
(1.770775445 -0.6871038201 0.15)
(1.727509626 -0.6855203949 0.15)
(1.726629612 -0.5395213049 0.15)
(1.770187703 -0.5441924991 0.15)
(1.76996547 -0.4956570109 0.15)
(1.726357484 -0.4900652598 0.15)
(1.725927407 -0.3416846505 0.15)
(1.769550647 -0.3495144192 0.15)
(1.769534331 -0.3010754402 0.15)
(1.725944501 -0.2926974114 0.15)
(1.72644718 -0.1486258607 0.15)
(1.769856458 -0.1580381391 0.15)
(1.770060129 -0.1113390316 0.15)
(1.726728991 -0.1017792141 0.15)
(1.727697353 0.03485344384 0.15)
(1.770775405 0.02542097794 0.15)
(1.770998119 0.06992191766 0.15)
(1.728002476 0.07912039238 0.15)
(1.728640824 0.2086941734 0.15)
(1.771431522 0.200798868 0.15)
(1.771469327 0.2438265664 0.15)
(1.728723569 0.2510838105 0.15)
(1.728546436 0.3775540612 0.15)
(1.771264346 0.3727734983 0.15)
(1.771127067 0.4162000851 0.15)
(1.728376359 0.4200009158 0.15)
(1.727848287 0.5506398261 0.15)
(1.770830192 0.5500017805 0.15)
(1.77083 0.595833 0.15)
(1.727780798 0.5958398957 0.15)
(1.72778 0.733333 0.15)
(1.77083 0.733333 0.15)
(1.77083 0.779167 0.15)
(1.72778 0.779167 0.15)
(1.72778 0.916667 0.15)
(1.77083 0.916667 0.15)
(1.77083 0.9625 0.15)
(1.72778 0.9625 0.15)
(1.72778 1.1 0.15)
(1.81389 1.1 0.15)
(1.81389 1.19167 0.15)
(1.72778 1.19167 0.15)
(1.72778 1.28333 0.15)
(1.81389 1.28333 0.15)
(1.81389 1.375 0.15)
(1.72778 1.375 0.15)
(1.81389 1.46667 0.15)
(1.9 1.46667 0.15)
(1.9 1.65 0.15)
(1.9 1.83333 0.15)
(1.9 2.01667 0.15)
(1.9 2.2 0.15)
(2.07222 -2.2 0.15)
(2.07222 -2.01667 0.15)
(2.07222 -1.83333 0.15)
(2.07222 -1.65 0.15)
(2.07222 -1.46667 0.15)
(1.98611 -1.46667 0.15)
(1.98611 -1.375 0.15)
(1.9 -1.375 0.15)
(1.9 -1.28333 0.15)
(1.98611 -1.28333 0.15)
(1.98611 -1.19167 0.15)
(1.9 -1.19167 0.15)
(1.9 -1.1 0.15)
(1.98611 -1.1 0.15)
(1.98611 -1.00833 0.15)
(1.94306 -1.00833 0.15)
(1.9 -1.00833 0.15)
(1.9 -0.916667 0.15)
(1.94306 -0.916667 0.15)
(1.94306 -0.870833 0.15)
(1.9 -0.870833 0.15)
(1.9 -0.733333 0.15)
(1.94306 -0.733333 0.15)
(1.94306 -0.6875 0.15)
(1.9 -0.6875 0.15)
(1.9 -0.55 0.15)
(1.94306 -0.55 0.15)
(1.94306 -0.504167 0.15)
(1.899991563 -0.5040858794 0.15)
(1.899848978 -0.3646824045 0.15)
(1.943042981 -0.3664451394 0.15)
(1.943022843 -0.3202810099 0.15)
(1.899808931 -0.3179727406 0.15)
(1.899804714 -0.178312537 0.15)
(1.942996576 -0.1817120448 0.15)
(1.943005711 -0.1356737113 0.15)
(1.899840547 -0.132110406 0.15)
(1.899991893 0.00507458944 0.15)
(1.943057531 0.001650784829 0.15)
(1.943070709 0.04718492555 0.15)
(1.900035022 0.05035398353 0.15)
(1.900074671 0.1854183253 0.15)
(1.943069229 0.1835880298 0.15)
(1.9430617 0.2292042866 0.15)
(1.900056611 0.2304204998 0.15)
(1.9 0.366667 0.15)
(1.94306 0.366667 0.15)
(1.94306 0.4125 0.15)
(1.9 0.4125 0.15)
(1.9 0.55 0.15)
(1.94306 0.55 0.15)
(1.94306 0.595833 0.15)
(1.9 0.595833 0.15)
(1.9 0.733333 0.15)
(1.94306 0.733333 0.15)
(1.94306 0.779167 0.15)
(1.9 0.779167 0.15)
(1.9 0.916667 0.15)
(1.94306 0.916667 0.15)
(1.94306 0.9625 0.15)
(1.9 0.9625 0.15)
(1.9 1.1 0.15)
(1.98611 1.1 0.15)
(1.98611 1.19167 0.15)
(1.9 1.19167 0.15)
(1.9 1.28333 0.15)
(1.98611 1.28333 0.15)
(1.98611 1.375 0.15)
(1.9 1.375 0.15)
(1.98611 1.46667 0.15)
(2.07222 1.46667 0.15)
(2.07222 1.65 0.15)
(2.07222 1.83333 0.15)
(2.07222 2.01667 0.15)
(2.07222 2.2 0.15)
(2.24444 -2.2 0.15)
(2.24444 -2.01667 0.15)
(2.24444 -1.83333 0.15)
(2.24444 -1.65 0.15)
(2.24444 -1.46667 0.15)
(2.15833 -1.46667 0.15)
(2.15833 -1.375 0.15)
(2.07222 -1.375 0.15)
(2.07222 -1.28333 0.15)
(2.15833 -1.28333 0.15)
(2.15833 -1.19167 0.15)
(2.07222 -1.19167 0.15)
(2.07222 -1.1 0.15)
(2.15833 -1.1 0.15)
(2.15833 -1.00833 0.15)
(2.11528 -1.00833 0.15)
(2.07222 -1.00833 0.15)
(2.07222 -0.916667 0.15)
(2.11528 -0.916667 0.15)
(2.11528 -0.870833 0.15)
(2.07222 -0.870833 0.15)
(2.07222 -0.733333 0.15)
(2.11528 -0.733333 0.15)
(2.11528 -0.6875 0.15)
(2.07222 -0.6875 0.15)
(2.07222 -0.55 0.15)
(2.11528 -0.55 0.15)
(2.11528 -0.504167 0.15)
(2.07222 -0.504167 0.15)
(2.07222 -0.366667 0.15)
(2.11528 -0.366667 0.15)
(2.11528 -0.320833 0.15)
(2.07222 -0.320833 0.15)
(2.07222 -0.183333 0.15)
(2.11528 -0.183333 0.15)
(2.11528 -0.1375 0.15)
(2.07222 -0.1375 0.15)
(2.07222 0 0.15)
(2.11528 0 0.15)
(2.11528 0.0458333 0.15)
(2.07222 0.0458333 0.15)
(2.07222 0.183333 0.15)
(2.11528 0.183333 0.15)
(2.11528 0.229167 0.15)
(2.07222 0.229167 0.15)
(2.07222 0.366667 0.15)
(2.11528 0.366667 0.15)
(2.11528 0.4125 0.15)
(2.07222 0.4125 0.15)
(2.07222 0.55 0.15)
(2.11528 0.55 0.15)
(2.11528 0.595833 0.15)
(2.07222 0.595833 0.15)
(2.07222 0.733333 0.15)
(2.11528 0.733333 0.15)
(2.11528 0.779167 0.15)
(2.07222 0.779167 0.15)
(2.07222 0.916667 0.15)
(2.11528 0.916667 0.15)
(2.11528 0.9625 0.15)
(2.07222 0.9625 0.15)
(2.07222 1.1 0.15)
(2.15833 1.1 0.15)
(2.15833 1.19167 0.15)
(2.07222 1.19167 0.15)
(2.07222 1.28333 0.15)
(2.15833 1.28333 0.15)
(2.15833 1.375 0.15)
(2.07222 1.375 0.15)
(2.15833 1.46667 0.15)
(2.24444 1.46667 0.15)
(2.24444 1.65 0.15)
(2.24444 1.83333 0.15)
(2.24444 2.01667 0.15)
(2.24444 2.2 0.15)
(2.41667 -2.2 0.15)
(2.41667 -2.01667 0.15)
(2.41667 -1.83333 0.15)
(2.41667 -1.65 0.15)
(2.41667 -1.46667 0.15)
(2.33056 -1.46667 0.15)
(2.33056 -1.375 0.15)
(2.24444 -1.375 0.15)
(2.24444 -1.28333 0.15)
(2.33056 -1.28333 0.15)
(2.33056 -1.19167 0.15)
(2.24444 -1.19167 0.15)
(2.24444 -1.1 0.15)
(2.33056 -1.1 0.15)
(2.33056 -1.00833 0.15)
(2.2875 -1.00833 0.15)
(2.24444 -1.00833 0.15)
(2.24444 -0.916667 0.15)
(2.2875 -0.916667 0.15)
(2.2875 -0.870833 0.15)
(2.24444 -0.870833 0.15)
(2.24444 -0.733333 0.15)
(2.2875 -0.733333 0.15)
(2.2875 -0.6875 0.15)
(2.24444 -0.6875 0.15)
(2.24444 -0.55 0.15)
(2.2875 -0.55 0.15)
(2.2875 -0.504167 0.15)
(2.24444 -0.504167 0.15)
(2.24444 -0.366667 0.15)
(2.2875 -0.366667 0.15)
(2.2875 -0.320833 0.15)
(2.24444 -0.320833 0.15)
(2.24444 -0.183333 0.15)
(2.2875 -0.183333 0.15)
(2.2875 -0.1375 0.15)
(2.24444 -0.1375 0.15)
(2.24444 0 0.15)
(2.2875 -4.62593e-18 0.15)
(2.2875 0.0458333 0.15)
(2.24444 0.0458333 0.15)
(2.24444 0.183333 0.15)
(2.2875 0.183333 0.15)
(2.2875 0.229167 0.15)
(2.24444 0.229167 0.15)
(2.24444 0.366667 0.15)
(2.2875 0.366667 0.15)
(2.2875 0.4125 0.15)
(2.24444 0.4125 0.15)
(2.24444 0.55 0.15)
(2.2875 0.55 0.15)
(2.2875 0.595833 0.15)
(2.24444 0.595833 0.15)
(2.24444 0.733333 0.15)
(2.2875 0.733333 0.15)
(2.2875 0.779167 0.15)
(2.24444 0.779167 0.15)
(2.24444 0.916667 0.15)
(2.2875 0.916667 0.15)
(2.2875 0.9625 0.15)
(2.24444 0.9625 0.15)
(2.24444 1.1 0.15)
(2.33056 1.1 0.15)
(2.33056 1.19167 0.15)
(2.24444 1.19167 0.15)
(2.24444 1.28333 0.15)
(2.33056 1.28333 0.15)
(2.33056 1.375 0.15)
(2.24444 1.375 0.15)
(2.33056 1.46667 0.15)
(2.41667 1.46667 0.15)
(2.41667 1.65 0.15)
(2.41667 1.83333 0.15)
(2.41667 2.01667 0.15)
(2.41667 2.2 0.15)
(2.58889 -2.2 0.15)
(2.58889 -2.01667 0.15)
(2.58889 -1.83333 0.15)
(2.58889 -1.65 0.15)
(2.58889 -1.46667 0.15)
(2.50278 -1.46667 0.15)
(2.50278 -1.375 0.15)
(2.41667 -1.375 0.15)
(2.41667 -1.28333 0.15)
(2.50278 -1.28333 0.15)
(2.50278 -1.19167 0.15)
(2.41667 -1.19167 0.15)
(2.41667 -1.1 0.15)
(2.50278 -1.1 0.15)
(2.50278 -1.00833 0.15)
(2.45972 -1.00833 0.15)
(2.41667 -1.00833 0.15)
(2.41667 -0.916667 0.15)
(2.45972 -0.916667 0.15)
(2.45972 -0.870833 0.15)
(2.41667 -0.870833 0.15)
(2.41667 -0.733333 0.15)
(2.45972 -0.733333 0.15)
(2.45972 -0.6875 0.15)
(2.41667 -0.6875 0.15)
(2.41667 -0.55 0.15)
(2.45972 -0.55 0.15)
(2.45972 -0.504167 0.15)
(2.41667 -0.504167 0.15)
(2.41667 -0.366667 0.15)
(2.45972 -0.366667 0.15)
(2.45972 -0.320833 0.15)
(2.41667 -0.320833 0.15)
(2.41667 -0.183333 0.15)
(2.45972 -0.183333 0.15)
(2.45972 -0.1375 0.15)
(2.41667 -0.1375 0.15)
(2.41667 -1.85037e-17 0.15)
(2.45972 -1.85037e-17 0.15)
(2.45972 0.0458333 0.15)
(2.41667 0.0458333 0.15)
(2.41667 0.183333 0.15)
(2.45972 0.183333 0.15)
(2.45972 0.229167 0.15)
(2.41667 0.229167 0.15)
(2.41667 0.366667 0.15)
(2.45972 0.366667 0.15)
(2.45972 0.4125 0.15)
(2.41667 0.4125 0.15)
(2.41667 0.55 0.15)
(2.45972 0.55 0.15)
(2.45972 0.595833 0.15)
(2.41667 0.595833 0.15)
(2.41667 0.733333 0.15)
(2.45972 0.733333 0.15)
(2.45972 0.779167 0.15)
(2.41667 0.779167 0.15)
(2.41667 0.916667 0.15)
(2.45972 0.916667 0.15)
(2.45972 0.9625 0.15)
(2.41667 0.9625 0.15)
(2.41667 1.1 0.15)
(2.50278 1.1 0.15)
(2.50278 1.19167 0.15)
(2.41667 1.19167 0.15)
(2.41667 1.28333 0.15)
(2.50278 1.28333 0.15)
(2.50278 1.375 0.15)
(2.41667 1.375 0.15)
(2.50278 1.46667 0.15)
(2.58889 1.46667 0.15)
(2.58889 1.65 0.15)
(2.58889 1.83333 0.15)
(2.58889 2.01667 0.15)
(2.58889 2.2 0.15)
(2.76111 -2.2 0.15)
(2.76111 -2.01667 0.15)
(2.76111 -1.83333 0.15)
(2.76111 -1.65 0.15)
(2.76111 -1.46667 0.15)
(2.675 -1.46667 0.15)
(2.675 -1.375 0.15)
(2.58889 -1.375 0.15)
(2.58889 -1.28333 0.15)
(2.675 -1.28333 0.15)
(2.675 -1.19167 0.15)
(2.58889 -1.19167 0.15)
(2.58889 -1.1 0.15)
(2.675 -1.1 0.15)
(2.675 -1.00833 0.15)
(2.63194 -1.00833 0.15)
(2.58889 -1.00833 0.15)
(2.58889 -0.916667 0.15)
(2.63194 -0.916667 0.15)
(2.63194 -0.870833 0.15)
(2.58889 -0.870833 0.15)
(2.58889 -0.733333 0.15)
(2.63194 -0.733333 0.15)
(2.63194 -0.6875 0.15)
(2.58889 -0.6875 0.15)
(2.58889 -0.55 0.15)
(2.63194 -0.55 0.15)
(2.63194 -0.504167 0.15)
(2.58889 -0.504167 0.15)
(2.58889 -0.366667 0.15)
(2.63194 -0.366667 0.15)
(2.63194 -0.320833 0.15)
(2.58889 -0.320833 0.15)
(2.58889 -0.183333 0.15)
(2.63194 -0.183333 0.15)
(2.63194 -0.1375 0.15)
(2.58889 -0.1375 0.15)
(2.58889 -1.85037e-17 0.15)
(2.63194 -9.25186e-18 0.15)
(2.63194 0.0458333 0.15)
(2.58889 0.0458333 0.15)
(2.58889 0.183333 0.15)
(2.63194 0.183333 0.15)
(2.63194 0.229167 0.15)
(2.58889 0.229167 0.15)
(2.58889 0.366667 0.15)
(2.63194 0.366667 0.15)
(2.63194 0.4125 0.15)
(2.58889 0.4125 0.15)
(2.58889 0.55 0.15)
(2.63194 0.55 0.15)
(2.63194 0.595833 0.15)
(2.58889 0.595833 0.15)
(2.58889 0.733333 0.15)
(2.63194 0.733333 0.15)
(2.63194 0.779167 0.15)
(2.58889 0.779167 0.15)
(2.58889 0.916667 0.15)
(2.63194 0.916667 0.15)
(2.63194 0.9625 0.15)
(2.58889 0.9625 0.15)
(2.58889 1.1 0.15)
(2.675 1.1 0.15)
(2.675 1.19167 0.15)
(2.58889 1.19167 0.15)
(2.58889 1.28333 0.15)
(2.675 1.28333 0.15)
(2.675 1.375 0.15)
(2.58889 1.375 0.15)
(2.675 1.46667 0.15)
(2.76111 1.46667 0.15)
(2.76111 1.65 0.15)
(2.76111 1.83333 0.15)
(2.76111 2.01667 0.15)
(2.76111 2.2 0.15)
(2.93333 -2.2 0.15)
(2.93333 -2.01667 0.15)
(2.93333 -1.83333 0.15)
(2.93333 -1.65 0.15)
(2.93333 -1.46667 0.15)
(2.84722 -1.46667 0.15)
(2.84722 -1.375 0.15)
(2.76111 -1.375 0.15)
(2.76111 -1.28333 0.15)
(2.84722 -1.28333 0.15)
(2.84722 -1.19167 0.15)
(2.76111 -1.19167 0.15)
(2.76111 -1.1 0.15)
(2.84722 -1.1 0.15)
(2.84722 -1.00833 0.15)
(2.80417 -1.00833 0.15)
(2.76111 -1.00833 0.15)
(2.76111 -0.916667 0.15)
(2.80417 -0.916667 0.15)
(2.80417 -0.870833 0.15)
(2.76111 -0.870833 0.15)
(2.76111 -0.733333 0.15)
(2.80417 -0.733333 0.15)
(2.80417 -0.6875 0.15)
(2.76111 -0.6875 0.15)
(2.76111 -0.55 0.15)
(2.80417 -0.55 0.15)
(2.80417 -0.504167 0.15)
(2.76111 -0.504167 0.15)
(2.76111 -0.366667 0.15)
(2.80417 -0.366667 0.15)
(2.80417 -0.320833 0.15)
(2.76111 -0.320833 0.15)
(2.76111 -0.183333 0.15)
(2.80417 -0.183333 0.15)
(2.80417 -0.1375 0.15)
(2.76111 -0.1375 0.15)
(2.76111 1.85037e-17 0.15)
(2.80417 1.85037e-17 0.15)
(2.80417 0.0458333 0.15)
(2.76111 0.0458333 0.15)
(2.76111 0.183333 0.15)
(2.80417 0.183333 0.15)
(2.80417 0.229167 0.15)
(2.76111 0.229167 0.15)
(2.76111 0.366667 0.15)
(2.80417 0.366667 0.15)
(2.80417 0.4125 0.15)
(2.76111 0.4125 0.15)
(2.76111 0.55 0.15)
(2.80417 0.55 0.15)
(2.80417 0.595833 0.15)
(2.76111 0.595833 0.15)
(2.76111 0.733333 0.15)
(2.80417 0.733333 0.15)
(2.80417 0.779167 0.15)
(2.76111 0.779167 0.15)
(2.76111 0.916667 0.15)
(2.80417 0.916667 0.15)
(2.80417 0.9625 0.15)
(2.76111 0.9625 0.15)
(2.76111 1.1 0.15)
(2.84722 1.1 0.15)
(2.84722 1.19167 0.15)
(2.76111 1.19167 0.15)
(2.76111 1.28333 0.15)
(2.84722 1.28333 0.15)
(2.84722 1.375 0.15)
(2.76111 1.375 0.15)
(2.84722 1.46667 0.15)
(2.93333 1.46667 0.15)
(2.93333 1.65 0.15)
(2.93333 1.83333 0.15)
(2.93333 2.01667 0.15)
(2.93333 2.2 0.15)
(3.10556 -2.2 0.15)
(3.10556 -2.01667 0.15)
(3.10556 -1.83333 0.15)
(3.10556 -1.65 0.15)
(3.10556 -1.46667 0.15)
(3.01944 -1.46667 0.15)
(3.01944 -1.375 0.15)
(2.93333 -1.375 0.15)
(2.93333 -1.28333 0.15)
(3.01944 -1.28333 0.15)
(3.01944 -1.19167 0.15)
(2.93333 -1.19167 0.15)
(2.93333 -1.1 0.15)
(3.01944 -1.1 0.15)
(3.01944 -1.00833 0.15)
(2.97639 -1.00833 0.15)
(2.93333 -1.00833 0.15)
(2.93333 -0.916667 0.15)
(2.97639 -0.916667 0.15)
(2.97639 -0.870833 0.15)
(2.93333 -0.870833 0.15)
(2.93333 -0.733333 0.15)
(2.97639 -0.733333 0.15)
(2.97639 -0.6875 0.15)
(2.93333 -0.6875 0.15)
(2.93333 -0.55 0.15)
(2.97639 -0.55 0.15)
(2.97639 -0.504167 0.15)
(2.93333 -0.504167 0.15)
(2.93333 -0.366667 0.15)
(2.97639 -0.366667 0.15)
(2.97639 -0.320833 0.15)
(2.93333 -0.320833 0.15)
(2.93333 -0.183333 0.15)
(2.97639 -0.183333 0.15)
(2.97639 -0.1375 0.15)
(2.93333 -0.1375 0.15)
(2.93333 1.85037e-17 0.15)
(2.97639 1.38778e-17 0.15)
(2.97639 0.0458333 0.15)
(2.93333 0.0458333 0.15)
(2.93333 0.183333 0.15)
(2.97639 0.183333 0.15)
(2.97639 0.229167 0.15)
(2.93333 0.229167 0.15)
(2.93333 0.366667 0.15)
(2.97639 0.366667 0.15)
(2.97639 0.4125 0.15)
(2.93333 0.4125 0.15)
(2.93333 0.55 0.15)
(2.97639 0.55 0.15)
(2.97639 0.595833 0.15)
(2.93333 0.595833 0.15)
(2.93333 0.733333 0.15)
(2.97639 0.733333 0.15)
(2.97639 0.779167 0.15)
(2.93333 0.779167 0.15)
(2.93333 0.916667 0.15)
(2.97639 0.916667 0.15)
(2.97639 0.9625 0.15)
(2.93333 0.9625 0.15)
(2.93333 1.1 0.15)
(3.01944 1.1 0.15)
(3.01944 1.19167 0.15)
(2.93333 1.19167 0.15)
(2.93333 1.28333 0.15)
(3.01944 1.28333 0.15)
(3.01944 1.375 0.15)
(2.93333 1.375 0.15)
(3.01944 1.46667 0.15)
(3.10556 1.46667 0.15)
(3.10556 1.65 0.15)
(3.10556 1.83333 0.15)
(3.10556 2.01667 0.15)
(3.10556 2.2 0.15)
(3.27778 -2.2 0.15)
(3.27778 -2.01667 0.15)
(3.27778 -1.83333 0.15)
(3.27778 -1.65 0.15)
(3.27778 -1.46667 0.15)
(3.19167 -1.46667 0.15)
(3.19167 -1.375 0.15)
(3.10556 -1.375 0.15)
(3.10556 -1.28333 0.15)
(3.19167 -1.28333 0.15)
(3.19167 -1.19167 0.15)
(3.10556 -1.19167 0.15)
(3.10556 -1.1 0.15)
(3.19167 -1.1 0.15)
(3.19167 -1.00833 0.15)
(3.14861 -1.00833 0.15)
(3.10556 -1.00833 0.15)
(3.10556 -0.916667 0.15)
(3.14861 -0.916667 0.15)
(3.14861 -0.870833 0.15)
(3.10556 -0.870833 0.15)
(3.10556 -0.733333 0.15)
(3.14861 -0.733333 0.15)
(3.14861 -0.6875 0.15)
(3.10556 -0.6875 0.15)
(3.10556 -0.55 0.15)
(3.14861 -0.55 0.15)
(3.14861 -0.504167 0.15)
(3.10556 -0.504167 0.15)
(3.10556 -0.366667 0.15)
(3.14861 -0.366667 0.15)
(3.14861 -0.320833 0.15)
(3.10556 -0.320833 0.15)
(3.10556 -0.183333 0.15)
(3.14861 -0.183333 0.15)
(3.14861 -0.1375 0.15)
(3.10556 -0.1375 0.15)
(3.10556 0 0.15)
(3.14861 0 0.15)
(3.14861 0.0458333 0.15)
(3.10556 0.0458333 0.15)
(3.10556 0.183333 0.15)
(3.14861 0.183333 0.15)
(3.14861 0.229167 0.15)
(3.10556 0.229167 0.15)
(3.10556 0.366667 0.15)
(3.14861 0.366667 0.15)
(3.14861 0.4125 0.15)
(3.10556 0.4125 0.15)
(3.10556 0.55 0.15)
(3.14861 0.55 0.15)
(3.14861 0.595833 0.15)
(3.10556 0.595833 0.15)
(3.10556 0.733333 0.15)
(3.14861 0.733333 0.15)
(3.14861 0.779167 0.15)
(3.10556 0.779167 0.15)
(3.10556 0.916667 0.15)
(3.14861 0.916667 0.15)
(3.14861 0.9625 0.15)
(3.10556 0.9625 0.15)
(3.10556 1.1 0.15)
(3.19167 1.1 0.15)
(3.19167 1.19167 0.15)
(3.10556 1.19167 0.15)
(3.10556 1.28333 0.15)
(3.19167 1.28333 0.15)
(3.19167 1.375 0.15)
(3.10556 1.375 0.15)
(3.19167 1.46667 0.15)
(3.27778 1.46667 0.15)
(3.27778 1.65 0.15)
(3.27778 1.83333 0.15)
(3.27778 2.01667 0.15)
(3.27778 2.2 0.15)
(3.45 -2.2 0.15)
(3.45 -2.01667 0.15)
(3.45 -1.83333 0.15)
(3.45 -1.65 0.15)
(3.45 -1.46667 0.15)
(3.36389 -1.46667 0.15)
(3.36389 -1.375 0.15)
(3.27778 -1.375 0.15)
(3.27778 -1.28333 0.15)
(3.36389 -1.28333 0.15)
(3.36389 -1.19167 0.15)
(3.27778 -1.19167 0.15)
(3.27778 -1.1 0.15)
(3.36389 -1.1 0.15)
(3.36389 -1.00833 0.15)
(3.32083 -1.00833 0.15)
(3.27778 -1.00833 0.15)
(3.27778 -0.916667 0.15)
(3.32083 -0.916667 0.15)
(3.32083 -0.870833 0.15)
(3.27778 -0.870833 0.15)
(3.27778 -0.733333 0.15)
(3.32083 -0.733333 0.15)
(3.32083 -0.6875 0.15)
(3.27778 -0.6875 0.15)
(3.27778 -0.55 0.15)
(3.32083 -0.55 0.15)
(3.32083 -0.504167 0.15)
(3.27778 -0.504167 0.15)
(3.27778 -0.366667 0.15)
(3.32083 -0.366667 0.15)
(3.32083 -0.320833 0.15)
(3.27778 -0.320833 0.15)
(3.27778 -0.183333 0.15)
(3.32083 -0.183333 0.15)
(3.32083 -0.1375 0.15)
(3.27778 -0.1375 0.15)
(3.27778 0 0.15)
(3.32083 0 0.15)
(3.32083 0.0458333 0.15)
(3.27778 0.0458333 0.15)
(3.27778 0.183333 0.15)
(3.32083 0.183333 0.15)
(3.32083 0.229167 0.15)
(3.27778 0.229167 0.15)
(3.27778 0.366667 0.15)
(3.32083 0.366667 0.15)
(3.32083 0.4125 0.15)
(3.27778 0.4125 0.15)
(3.27778 0.55 0.15)
(3.32083 0.55 0.15)
(3.32083 0.595833 0.15)
(3.27778 0.595833 0.15)
(3.27778 0.733333 0.15)
(3.32083 0.733333 0.15)
(3.32083 0.779167 0.15)
(3.27778 0.779167 0.15)
(3.27778 0.916667 0.15)
(3.32083 0.916667 0.15)
(3.32083 0.9625 0.15)
(3.27778 0.9625 0.15)
(3.27778 1.1 0.15)
(3.36389 1.1 0.15)
(3.36389 1.19167 0.15)
(3.27778 1.19167 0.15)
(3.27778 1.28333 0.15)
(3.36389 1.28333 0.15)
(3.36389 1.375 0.15)
(3.27778 1.375 0.15)
(3.36389 1.46667 0.15)
(3.45 1.46667 0.15)
(3.45 1.65 0.15)
(3.45 1.83333 0.15)
(3.45 2.01667 0.15)
(3.45 2.2 0.15)
(3.62222 -2.2 0.15)
(3.62222 -2.01667 0.15)
(3.62222 -1.83333 0.15)
(3.62222 -1.65 0.15)
(3.62222 -1.46667 0.15)
(3.53611 -1.46667 0.15)
(3.53611 -1.375 0.15)
(3.45 -1.375 0.15)
(3.45 -1.28333 0.15)
(3.53611 -1.28333 0.15)
(3.53611 -1.19167 0.15)
(3.45 -1.19167 0.15)
(3.45 -1.1 0.15)
(3.53611 -1.1 0.15)
(3.53611 -1.00833 0.15)
(3.49306 -1.00833 0.15)
(3.45 -1.00833 0.15)
(3.45 -0.916667 0.15)
(3.49306 -0.916667 0.15)
(3.49306 -0.870833 0.15)
(3.45 -0.870833 0.15)
(3.45 -0.733333 0.15)
(3.49306 -0.733333 0.15)
(3.49306 -0.6875 0.15)
(3.45 -0.6875 0.15)
(3.45 -0.55 0.15)
(3.49306 -0.55 0.15)
(3.49306 -0.504167 0.15)
(3.45 -0.504167 0.15)
(3.45 -0.366667 0.15)
(3.49306 -0.366667 0.15)
(3.49306 -0.320833 0.15)
(3.45 -0.320833 0.15)
(3.45 -0.183333 0.15)
(3.49306 -0.183333 0.15)
(3.49306 -0.1375 0.15)
(3.45 -0.1375 0.15)
(3.45 0 0.15)
(3.49306 0 0.15)
(3.49306 0.0458333 0.15)
(3.45 0.0458333 0.15)
(3.45 0.183333 0.15)
(3.49306 0.183333 0.15)
(3.49306 0.229167 0.15)
(3.45 0.229167 0.15)
(3.45 0.366667 0.15)
(3.49306 0.366667 0.15)
(3.49306 0.4125 0.15)
(3.45 0.4125 0.15)
(3.45 0.55 0.15)
(3.49306 0.55 0.15)
(3.49306 0.595833 0.15)
(3.45 0.595833 0.15)
(3.45 0.733333 0.15)
(3.49306 0.733333 0.15)
(3.49306 0.779167 0.15)
(3.45 0.779167 0.15)
(3.45 0.916667 0.15)
(3.49306 0.916667 0.15)
(3.49306 0.9625 0.15)
(3.45 0.9625 0.15)
(3.45 1.1 0.15)
(3.53611 1.1 0.15)
(3.53611 1.19167 0.15)
(3.45 1.19167 0.15)
(3.45 1.28333 0.15)
(3.53611 1.28333 0.15)
(3.53611 1.375 0.15)
(3.45 1.375 0.15)
(3.53611 1.46667 0.15)
(3.62222 1.46667 0.15)
(3.62222 1.65 0.15)
(3.62222 1.83333 0.15)
(3.62222 2.01667 0.15)
(3.62222 2.2 0.15)
(3.79444 -2.2 0.15)
(3.79444 -2.01667 0.15)
(3.79444 -1.83333 0.15)
(3.79444 -1.65 0.15)
(3.79444 -1.46667 0.15)
(3.70833 -1.46667 0.15)
(3.70833 -1.375 0.15)
(3.62222 -1.375 0.15)
(3.62222 -1.28333 0.15)
(3.70833 -1.28333 0.15)
(3.70833 -1.19167 0.15)
(3.62222 -1.19167 0.15)
(3.62222 -1.1 0.15)
(3.70833 -1.1 0.15)
(3.70833 -1.00833 0.15)
(3.66528 -1.00833 0.15)
(3.62222 -1.00833 0.15)
(3.62222 -0.916667 0.15)
(3.66528 -0.916667 0.15)
(3.66528 -0.870833 0.15)
(3.62222 -0.870833 0.15)
(3.62222 -0.733333 0.15)
(3.66528 -0.733333 0.15)
(3.66528 -0.6875 0.15)
(3.62222 -0.6875 0.15)
(3.62222 -0.55 0.15)
(3.66528 -0.55 0.15)
(3.66528 -0.504167 0.15)
(3.62222 -0.504167 0.15)
(3.62222 -0.366667 0.15)
(3.66528 -0.366667 0.15)
(3.66528 -0.320833 0.15)
(3.62222 -0.320833 0.15)
(3.62222 -0.183333 0.15)
(3.66528 -0.183333 0.15)
(3.66528 -0.1375 0.15)
(3.62222 -0.1375 0.15)
(3.62222 0 0.15)
(3.66528 -2.31296e-18 0.15)
(3.66528 0.0458333 0.15)
(3.62222 0.0458333 0.15)
(3.62222 0.183333 0.15)
(3.66528 0.183333 0.15)
(3.66528 0.229167 0.15)
(3.62222 0.229167 0.15)
(3.62222 0.366667 0.15)
(3.66528 0.366667 0.15)
(3.66528 0.4125 0.15)
(3.62222 0.4125 0.15)
(3.62222 0.55 0.15)
(3.66528 0.55 0.15)
(3.66528 0.595833 0.15)
(3.62222 0.595833 0.15)
(3.62222 0.733333 0.15)
(3.66528 0.733333 0.15)
(3.66528 0.779167 0.15)
(3.62222 0.779167 0.15)
(3.62222 0.916667 0.15)
(3.66528 0.916667 0.15)
(3.66528 0.9625 0.15)
(3.62222 0.9625 0.15)
(3.62222 1.1 0.15)
(3.70833 1.1 0.15)
(3.70833 1.19167 0.15)
(3.62222 1.19167 0.15)
(3.62222 1.28333 0.15)
(3.70833 1.28333 0.15)
(3.70833 1.375 0.15)
(3.62222 1.375 0.15)
(3.70833 1.46667 0.15)
(3.79444 1.46667 0.15)
(3.79444 1.65 0.15)
(3.79444 1.83333 0.15)
(3.79444 2.01667 0.15)
(3.79444 2.2 0.15)
(3.96667 -2.2 0.15)
(3.96667 -2.01667 0.15)
(3.96667 -1.83333 0.15)
(3.96667 -1.65 0.15)
(3.96667 -1.46667 0.15)
(3.88056 -1.46667 0.15)
(3.88056 -1.375 0.15)
(3.79444 -1.375 0.15)
(3.79444 -1.28333 0.15)
(3.88056 -1.28333 0.15)
(3.88056 -1.19167 0.15)
(3.79444 -1.19167 0.15)
(3.79444 -1.1 0.15)
(3.88056 -1.1 0.15)
(3.88056 -1.00833 0.15)
(3.8375 -1.00833 0.15)
(3.79444 -1.00833 0.15)
(3.79444 -0.916667 0.15)
(3.8375 -0.916667 0.15)
(3.8375 -0.870833 0.15)
(3.79444 -0.870833 0.15)
(3.79444 -0.733333 0.15)
(3.8375 -0.733333 0.15)
(3.8375 -0.6875 0.15)
(3.79444 -0.6875 0.15)
(3.79444 -0.55 0.15)
(3.8375 -0.55 0.15)
(3.8375 -0.504167 0.15)
(3.79444 -0.504167 0.15)
(3.79444 -0.366667 0.15)
(3.8375 -0.366667 0.15)
(3.8375 -0.320833 0.15)
(3.79444 -0.320833 0.15)
(3.79444 -0.183333 0.15)
(3.8375 -0.183333 0.15)
(3.8375 -0.1375 0.15)
(3.79444 -0.1375 0.15)
(3.79444 -9.25186e-18 0.15)
(3.8375 -9.25186e-18 0.15)
(3.8375 0.0458333 0.15)
(3.79444 0.0458333 0.15)
(3.79444 0.183333 0.15)
(3.8375 0.183333 0.15)
(3.8375 0.229167 0.15)
(3.79444 0.229167 0.15)
(3.79444 0.366667 0.15)
(3.8375 0.366667 0.15)
(3.8375 0.4125 0.15)
(3.79444 0.4125 0.15)
(3.79444 0.55 0.15)
(3.8375 0.55 0.15)
(3.8375 0.595833 0.15)
(3.79444 0.595833 0.15)
(3.79444 0.733333 0.15)
(3.8375 0.733333 0.15)
(3.8375 0.779167 0.15)
(3.79444 0.779167 0.15)
(3.79444 0.916667 0.15)
(3.8375 0.916667 0.15)
(3.8375 0.9625 0.15)
(3.79444 0.9625 0.15)
(3.79444 1.1 0.15)
(3.88056 1.1 0.15)
(3.88056 1.19167 0.15)
(3.79444 1.19167 0.15)
(3.79444 1.28333 0.15)
(3.88056 1.28333 0.15)
(3.88056 1.375 0.15)
(3.79444 1.375 0.15)
(3.88056 1.46667 0.15)
(3.96667 1.46667 0.15)
(3.96667 1.65 0.15)
(3.96667 1.83333 0.15)
(3.96667 2.01667 0.15)
(3.96667 2.2 0.15)
(4.13889 -2.2 0.15)
(4.13889 -2.01667 0.15)
(4.13889 -1.83333 0.15)
(4.13889 -1.65 0.15)
(4.13889 -1.46667 0.15)
(4.05278 -1.46667 0.15)
(4.05278 -1.375 0.15)
(3.96667 -1.375 0.15)
(3.96667 -1.28333 0.15)
(4.05278 -1.28333 0.15)
(4.05278 -1.19167 0.15)
(3.96667 -1.19167 0.15)
(3.96667 -1.1 0.15)
(4.05278 -1.1 0.15)
(4.05278 -1.00833 0.15)
(4.00972 -1.00833 0.15)
(3.96667 -1.00833 0.15)
(3.96667 -0.916667 0.15)
(4.00972 -0.916667 0.15)
(4.00972 -0.870833 0.15)
(3.96667 -0.870833 0.15)
(3.96667 -0.733333 0.15)
(4.00972 -0.733333 0.15)
(4.00972 -0.6875 0.15)
(3.96667 -0.6875 0.15)
(3.96667 -0.55 0.15)
(4.00972 -0.55 0.15)
(4.00972 -0.504167 0.15)
(3.96667 -0.504167 0.15)
(3.96667 -0.366667 0.15)
(4.00972 -0.366667 0.15)
(4.00972 -0.320833 0.15)
(3.96667 -0.320833 0.15)
(3.96667 -0.183333 0.15)
(4.00972 -0.183333 0.15)
(4.00972 -0.1375 0.15)
(3.96667 -0.1375 0.15)
(3.96667 -9.25186e-18 0.15)
(4.00972 -1.15648e-17 0.15)
(4.00972 0.0458333 0.15)
(3.96667 0.0458333 0.15)
(3.96667 0.183333 0.15)
(4.00972 0.183333 0.15)
(4.00972 0.229167 0.15)
(3.96667 0.229167 0.15)
(3.96667 0.366667 0.15)
(4.00972 0.366667 0.15)
(4.00972 0.4125 0.15)
(3.96667 0.4125 0.15)
(3.96667 0.55 0.15)
(4.00972 0.55 0.15)
(4.00972 0.595833 0.15)
(3.96667 0.595833 0.15)
(3.96667 0.733333 0.15)
(4.00972 0.733333 0.15)
(4.00972 0.779167 0.15)
(3.96667 0.779167 0.15)
(3.96667 0.916667 0.15)
(4.00972 0.916667 0.15)
(4.00972 0.9625 0.15)
(3.96667 0.9625 0.15)
(3.96667 1.1 0.15)
(4.05278 1.1 0.15)
(4.05278 1.19167 0.15)
(3.96667 1.19167 0.15)
(3.96667 1.28333 0.15)
(4.05278 1.28333 0.15)
(4.05278 1.375 0.15)
(3.96667 1.375 0.15)
(4.05278 1.46667 0.15)
(4.13889 1.46667 0.15)
(4.13889 1.65 0.15)
(4.13889 1.83333 0.15)
(4.13889 2.01667 0.15)
(4.13889 2.2 0.15)
(4.31111 -2.2 0.15)
(4.31111 -2.01667 0.15)
(4.31111 -1.83333 0.15)
(4.31111 -1.65 0.15)
(4.31111 -1.46667 0.15)
(4.225 -1.46667 0.15)
(4.225 -1.375 0.15)
(4.13889 -1.375 0.15)
(4.13889 -1.28333 0.15)
(4.225 -1.28333 0.15)
(4.225 -1.19167 0.15)
(4.13889 -1.19167 0.15)
(4.13889 -1.1 0.15)
(4.225 -1.1 0.15)
(4.225 -1.00833 0.15)
(4.18194 -1.00833 0.15)
(4.13889 -1.00833 0.15)
(4.13889 -0.916667 0.15)
(4.18194 -0.916667 0.15)
(4.18194 -0.870833 0.15)
(4.13889 -0.870833 0.15)
(4.13889 -0.733333 0.15)
(4.18194 -0.733333 0.15)
(4.18194 -0.6875 0.15)
(4.13889 -0.6875 0.15)
(4.13889 -0.55 0.15)
(4.18194 -0.55 0.15)
(4.18194 -0.504167 0.15)
(4.13889 -0.504167 0.15)
(4.13889 -0.366667 0.15)
(4.18194 -0.366667 0.15)
(4.18194 -0.320833 0.15)
(4.13889 -0.320833 0.15)
(4.13889 -0.183333 0.15)
(4.18194 -0.183333 0.15)
(4.18194 -0.1375 0.15)
(4.13889 -0.1375 0.15)
(4.13889 -1.85037e-17 0.15)
(4.18194 -9.25186e-18 0.15)
(4.18194 0.0458333 0.15)
(4.13889 0.0458333 0.15)
(4.13889 0.183333 0.15)
(4.18194 0.183333 0.15)
(4.18194 0.229167 0.15)
(4.13889 0.229167 0.15)
(4.13889 0.366667 0.15)
(4.18194 0.366667 0.15)
(4.18194 0.4125 0.15)
(4.13889 0.4125 0.15)
(4.13889 0.55 0.15)
(4.18194 0.55 0.15)
(4.18194 0.595833 0.15)
(4.13889 0.595833 0.15)
(4.13889 0.733333 0.15)
(4.18194 0.733333 0.15)
(4.18194 0.779167 0.15)
(4.13889 0.779167 0.15)
(4.13889 0.916667 0.15)
(4.18194 0.916667 0.15)
(4.18194 0.9625 0.15)
(4.13889 0.9625 0.15)
(4.13889 1.1 0.15)
(4.225 1.1 0.15)
(4.225 1.19167 0.15)
(4.13889 1.19167 0.15)
(4.13889 1.28333 0.15)
(4.225 1.28333 0.15)
(4.225 1.375 0.15)
(4.13889 1.375 0.15)
(4.225 1.46667 0.15)
(4.31111 1.46667 0.15)
(4.31111 1.65 0.15)
(4.31111 1.83333 0.15)
(4.31111 2.01667 0.15)
(4.31111 2.2 0.15)
(4.48333 -2.2 0.15)
(4.48333 -2.01667 0.15)
(4.48333 -1.83333 0.15)
(4.48333 -1.65 0.15)
(4.48333 -1.46667 0.15)
(4.39722 -1.46667 0.15)
(4.39722 -1.375 0.15)
(4.31111 -1.375 0.15)
(4.31111 -1.28333 0.15)
(4.39722 -1.28333 0.15)
(4.39722 -1.19167 0.15)
(4.31111 -1.19167 0.15)
(4.31111 -1.1 0.15)
(4.39722 -1.1 0.15)
(4.39722 -1.00833 0.15)
(4.35417 -1.00833 0.15)
(4.31111 -1.00833 0.15)
(4.31111 -0.916667 0.15)
(4.35417 -0.916667 0.15)
(4.35417 -0.870833 0.15)
(4.31111 -0.870833 0.15)
(4.31111 -0.733333 0.15)
(4.35417 -0.733333 0.15)
(4.35417 -0.6875 0.15)
(4.31111 -0.6875 0.15)
(4.31111 -0.55 0.15)
(4.35417 -0.55 0.15)
(4.35417 -0.504167 0.15)
(4.31111 -0.504167 0.15)
(4.31111 -0.366667 0.15)
(4.35417 -0.366667 0.15)
(4.35417 -0.320833 0.15)
(4.31111 -0.320833 0.15)
(4.31111 -0.183333 0.15)
(4.35417 -0.183333 0.15)
(4.35417 -0.1375 0.15)
(4.31111 -0.1375 0.15)
(4.31111 1.85037e-17 0.15)
(4.35417 8.09538e-18 0.15)
(4.35417 0.0458333 0.15)
(4.31111 0.0458333 0.15)
(4.31111 0.183333 0.15)
(4.35417 0.183333 0.15)
(4.35417 0.229167 0.15)
(4.31111 0.229167 0.15)
(4.31111 0.366667 0.15)
(4.35417 0.366667 0.15)
(4.35417 0.4125 0.15)
(4.31111 0.4125 0.15)
(4.31111 0.55 0.15)
(4.35417 0.55 0.15)
(4.35417 0.595833 0.15)
(4.31111 0.595833 0.15)
(4.31111 0.733333 0.15)
(4.35417 0.733333 0.15)
(4.35417 0.779167 0.15)
(4.31111 0.779167 0.15)
(4.31111 0.916667 0.15)
(4.35417 0.916667 0.15)
(4.35417 0.9625 0.15)
(4.31111 0.9625 0.15)
(4.31111 1.1 0.15)
(4.39722 1.1 0.15)
(4.39722 1.19167 0.15)
(4.31111 1.19167 0.15)
(4.31111 1.28333 0.15)
(4.39722 1.28333 0.15)
(4.39722 1.375 0.15)
(4.31111 1.375 0.15)
(4.39722 1.46667 0.15)
(4.48333 1.46667 0.15)
(4.48333 1.65 0.15)
(4.48333 1.83333 0.15)
(4.48333 2.01667 0.15)
(4.48333 2.2 0.15)
(4.65556 -2.2 0.15)
(4.65556 -2.01667 0.15)
(4.65556 -1.83333 0.15)
(4.65556 -1.65 0.15)
(4.65556 -1.46667 0.15)
(4.56944 -1.46667 0.15)
(4.56944 -1.375 0.15)
(4.48333 -1.375 0.15)
(4.48333 -1.28333 0.15)
(4.56944 -1.28333 0.15)
(4.56944 -1.19167 0.15)
(4.48333 -1.19167 0.15)
(4.48333 -1.1 0.15)
(4.56944 -1.1 0.15)
(4.56944 -1.00833 0.15)
(4.52639 -1.00833 0.15)
(4.48333 -1.00833 0.15)
(4.48333 -0.916667 0.15)
(4.52639 -0.916667 0.15)
(4.52639 -0.870833 0.15)
(4.48333 -0.870833 0.15)
(4.48333 -0.733333 0.15)
(4.52639 -0.733333 0.15)
(4.52639 -0.6875 0.15)
(4.48333 -0.6875 0.15)
(4.48333 -0.55 0.15)
(4.52639 -0.55 0.15)
(4.52639 -0.504167 0.15)
(4.48333 -0.504167 0.15)
(4.48333 -0.366667 0.15)
(4.52639 -0.366667 0.15)
(4.52639 -0.320833 0.15)
(4.48333 -0.320833 0.15)
(4.48333 -0.183333 0.15)
(4.52639 -0.183333 0.15)
(4.52639 -0.1375 0.15)
(4.48333 -0.1375 0.15)
(4.48333 -2.31296e-17 0.15)
(4.52639 -1.50343e-17 0.15)
(4.52639 0.0458333 0.15)
(4.48333 0.0458333 0.15)
(4.48333 0.183333 0.15)
(4.52639 0.183333 0.15)
(4.52639 0.229167 0.15)
(4.48333 0.229167 0.15)
(4.48333 0.366667 0.15)
(4.52639 0.366667 0.15)
(4.52639 0.4125 0.15)
(4.48333 0.4125 0.15)
(4.48333 0.55 0.15)
(4.52639 0.55 0.15)
(4.52639 0.595833 0.15)
(4.48333 0.595833 0.15)
(4.48333 0.733333 0.15)
(4.52639 0.733333 0.15)
(4.52639 0.779167 0.15)
(4.48333 0.779167 0.15)
(4.48333 0.916667 0.15)
(4.52639 0.916667 0.15)
(4.52639 0.9625 0.15)
(4.48333 0.9625 0.15)
(4.48333 1.1 0.15)
(4.56944 1.1 0.15)
(4.56944 1.19167 0.15)
(4.48333 1.19167 0.15)
(4.48333 1.28333 0.15)
(4.56944 1.28333 0.15)
(4.56944 1.375 0.15)
(4.48333 1.375 0.15)
(4.56944 1.46667 0.15)
(4.65556 1.46667 0.15)
(4.65556 1.65 0.15)
(4.65556 1.83333 0.15)
(4.65556 2.01667 0.15)
(4.65556 2.2 0.15)
(4.82778 -2.2 0.15)
(4.82778 -2.01667 0.15)
(4.82778 -1.83333 0.15)
(4.82778 -1.65 0.15)
(4.82778 -1.46667 0.15)
(4.74167 -1.46667 0.15)
(4.74167 -1.375 0.15)
(4.65556 -1.375 0.15)
(4.65556 -1.28333 0.15)
(4.74167 -1.28333 0.15)
(4.74167 -1.19167 0.15)
(4.65556 -1.19167 0.15)
(4.65556 -1.1 0.15)
(4.74167 -1.1 0.15)
(4.74167 -1.00833 0.15)
(4.69861 -1.00833 0.15)
(4.65556 -1.00833 0.15)
(4.65556 -0.916667 0.15)
(4.69861 -0.916667 0.15)
(4.69861 -0.870833 0.15)
(4.65556 -0.870833 0.15)
(4.65556 -0.733333 0.15)
(4.69861 -0.733333 0.15)
(4.69861 -0.6875 0.15)
(4.65556 -0.6875 0.15)
(4.65556 -0.55 0.15)
(4.69861 -0.55 0.15)
(4.69861 -0.504167 0.15)
(4.65556 -0.504167 0.15)
(4.65556 -0.366667 0.15)
(4.69861 -0.366667 0.15)
(4.69861 -0.320833 0.15)
(4.65556 -0.320833 0.15)
(4.65556 -0.183333 0.15)
(4.69861 -0.183333 0.15)
(4.69861 -0.1375 0.15)
(4.65556 -0.1375 0.15)
(4.65556 9.25186e-18 0.15)
(4.69861 -1.15648e-18 0.15)
(4.69861 0.0458333 0.15)
(4.65556 0.0458333 0.15)
(4.65556 0.183333 0.15)
(4.69861 0.183333 0.15)
(4.69861 0.229167 0.15)
(4.65556 0.229167 0.15)
(4.65556 0.366667 0.15)
(4.69861 0.366667 0.15)
(4.69861 0.4125 0.15)
(4.65556 0.4125 0.15)
(4.65556 0.55 0.15)
(4.69861 0.55 0.15)
(4.69861 0.595833 0.15)
(4.65556 0.595833 0.15)
(4.65556 0.733333 0.15)
(4.69861 0.733333 0.15)
(4.69861 0.779167 0.15)
(4.65556 0.779167 0.15)
(4.65556 0.916667 0.15)
(4.69861 0.916667 0.15)
(4.69861 0.9625 0.15)
(4.65556 0.9625 0.15)
(4.65556 1.1 0.15)
(4.74167 1.1 0.15)
(4.74167 1.19167 0.15)
(4.65556 1.19167 0.15)
(4.65556 1.28333 0.15)
(4.74167 1.28333 0.15)
(4.74167 1.375 0.15)
(4.65556 1.375 0.15)
(4.74167 1.46667 0.15)
(4.82778 1.46667 0.15)
(4.82778 1.65 0.15)
(4.82778 1.83333 0.15)
(4.82778 2.01667 0.15)
(4.82778 2.2 0.15)
(5 -2.2 0.15)
(5 -2.01667 0.15)
(5 -1.83333 0.15)
(5 -1.65 0.15)
(5 -1.46667 0.15)
(4.91389 -1.46667 0.15)
(4.91389 -1.375 0.15)
(4.82778 -1.375 0.15)
(4.82778 -1.28333 0.15)
(4.91389 -1.28333 0.15)
(4.91389 -1.19167 0.15)
(4.82778 -1.19167 0.15)
(4.82778 -1.1 0.15)
(4.91389 -1.1 0.15)
(4.91389 -1.00833 0.15)
(4.87083 -1.00833 0.15)
(4.82778 -1.00833 0.15)
(4.82778 -0.916667 0.15)
(4.87083 -0.916667 0.15)
(4.87083 -0.870833 0.15)
(4.82778 -0.870833 0.15)
(4.82778 -0.733333 0.15)
(4.87083 -0.733333 0.15)
(4.87083 -0.6875 0.15)
(4.82778 -0.6875 0.15)
(4.82778 -0.55 0.15)
(4.87083 -0.55 0.15)
(4.87083 -0.504167 0.15)
(4.82778 -0.504167 0.15)
(4.82778 -0.366667 0.15)
(4.87083 -0.366667 0.15)
(4.87083 -0.320833 0.15)
(4.82778 -0.320833 0.15)
(4.82778 -0.183333 0.15)
(4.87083 -0.183333 0.15)
(4.87083 -0.1375 0.15)
(4.82778 -0.1375 0.15)
(4.82778 -3.23815e-17 0.15)
(4.87083 -2.42861e-17 0.15)
(4.87083 0.0458333 0.15)
(4.82778 0.0458333 0.15)
(4.82778 0.183333 0.15)
(4.87083 0.183333 0.15)
(4.87083 0.229167 0.15)
(4.82778 0.229167 0.15)
(4.82778 0.366667 0.15)
(4.87083 0.366667 0.15)
(4.87083 0.4125 0.15)
(4.82778 0.4125 0.15)
(4.82778 0.55 0.15)
(4.87083 0.55 0.15)
(4.87083 0.595833 0.15)
(4.82778 0.595833 0.15)
(4.82778 0.733333 0.15)
(4.87083 0.733333 0.15)
(4.87083 0.779167 0.15)
(4.82778 0.779167 0.15)
(4.82778 0.916667 0.15)
(4.87083 0.916667 0.15)
(4.87083 0.9625 0.15)
(4.82778 0.9625 0.15)
(4.82778 1.1 0.15)
(4.91389 1.1 0.15)
(4.91389 1.19167 0.15)
(4.82778 1.19167 0.15)
(4.82778 1.28333 0.15)
(4.91389 1.28333 0.15)
(4.91389 1.375 0.15)
(4.82778 1.375 0.15)
(4.91389 1.46667 0.15)
(5 1.46667 0.15)
(5 1.65 0.15)
(5 1.83333 0.15)
(5 2.01667 0.15)
(5 2.2 0.15)
(0.1520622212 -0.02822091 0.15)
(0.1515940742 -0.05096309431 0.15)
(0.1592641959 0.3310720884 0.15)
(0.1587222334 0.3083394578 0.15)
(0.1695479251 0.308115851 0.15)
(0.1804107347 0.3078974651 0.15)
(0.006046814393 0.3109152832 0.15)
(0.02796958913 0.3106394028 0.15)
(0.3352357471 -0.03192905956 0.15)
(0.3244818714 -0.03171496445 0.15)
(0.3240063358 -0.05442798701 0.15)
(0.3327748232 0.3272800356 0.15)
(0.3323136208 0.3045827152 0.15)
(0.3431467011 0.3043299467 0.15)
(0.353976719 0.3040742419 0.15)
(0.1912825003 0.3076768905 0.15)
(0.2021572232 0.3074542533 0.15)
(0.5073822658 -0.03533135248 0.15)
(0.4966222863 -0.03512213014 0.15)
(0.4961535061 -0.05779928678 0.15)
(0.5056156747 0.3230299604 0.15)
(0.5051947998 0.3003477957 0.15)
(0.5159794704 0.3000760405 0.15)
(0.5267560375 0.2997994546 0.15)
(0.3648076946 0.3038165165 0.15)
(0.3756106975 0.3035603794 0.15)
(0.679517352 -0.03861137807 0.15)
(0.6687621822 -0.03841125885 0.15)
(0.6683003256 -0.06104455133 0.15)
(0.6780202457 0.3183429594 0.15)
(0.677613662 0.2956744973 0.15)
(0.6991417204 0.2950228308 0.15)
(0.54836074 0.2992251942 0.15)
(0.8514243568 -0.05302506931 0.15)
(0.8511965119 -0.06433777949 0.15)
(0.8632646423 0.1319248106 0.15)
(0.8632034522 0.1263503151 0.15)
(0.8685705185 0.1261543354 0.15)
(0.8580254731 0.1432467401 0.15)
(0.8578988993 0.1321361559 0.15)
(0.8499998175 0.3128517141 0.15)
(0.8496044625 0.2901940184 0.15)
(0.8710552043 0.289432953 0.15)
(0.7206667257 0.2944162385 0.15)
(1.024188102 -0.05019095849 0.15)
(1.023947253 -0.06164642687 0.15)
(1.027800934 0.1216459801 0.15)
(1.027560072 0.110189898 0.15)
(1.038327697 0.1099637112 0.15)
(0.8739322173 0.1259409247 0.15)
(1.017525025 0.1447838794 0.15)
(1.017641455 0.1341466817 0.15)
(1.017925854 0.1234110516 0.15)
(0.9998352162 0.3068238236 0.15)
(0.9994196765 0.2841575503 0.15)
(0.9989862814 0.2613556222 0.15)
(1.020345691 0.2603894313 0.15)
(1.04182325 0.2595717897 0.15)
(0.8924820053 0.288627381 0.15)
(-0.02223060527 -0.02409234096 0.15)
(-0.02262102578 -0.04689117161 0.15)
(-0.1748298746 0.1232591715 0.15)
(-0.1534599828 0.1227439599 0.15)
(-0.01515795894 0.3340351184 0.15)
(-0.01585503624 0.3111797212 0.15)
(-0.1695174678 0.3110426943 0.15)
(-0.1477233961 0.3111976145 0.15)
(0.09177462253 0.2413027933 0.15)
(0.08628951449 0.2413886099 0.15)
(0.08616559544 0.2356516472 0.15)
(0.09165407475 0.2355501562 0.15)
(0.003815211508 0.242348142 0.15)
(0.003412699625 0.2308989732 0.15)
(0.01452218163 0.2308617423 0.15)
(0.01489400811 0.2422957528 0.15)
(0.1597743756 0.3538153894 0.15)
(0.1416704065 0.5136053463 0.15)
(0.1406210051 0.4680802421 0.15)
(0.1839279089 0.4671447189 0.15)
(0.01041842465 0.470666688 0.15)
(0.0537993996 0.4698346307 0.15)
(0.2996474201 -0.1905610378 0.15)
(0.2987200583 -0.2365565298 0.15)
(0.3235354837 -0.07715611136 0.15)
(0.3450373837 -0.077577177 0.15)
(0.1727412345 -0.0741557346 0.15)
(0.1943228224 -0.07459247875 0.15)
(0.2657952436 0.2366630331 0.15)
(0.2603749818 0.2368026985 0.15)
(0.2602461608 0.230342579 0.15)
(0.2656624634 0.2302048973 0.15)
(0.1789404881 0.2394905556 0.15)
(0.1788375186 0.2335464067 0.15)
(0.184263778 0.2335968572 0.15)
(0.1843730894 0.2394620553 0.15)
(0.3332413187 0.3499912478 0.15)
(0.3148578357 0.5097273083 0.15)
(0.3139125573 0.464191773 0.15)
(0.3571662021 0.4631493457 0.15)
(0.2272664482 0.4661915269 0.15)
(0.4717952302 -0.1938543338 0.15)
(0.470857084 -0.2396250731 0.15)
(0.4956852632 -0.08049845957 0.15)
(0.5172043906 -0.08090888499 0.15)
(0.3665383048 -0.07799722184 0.15)
(0.431566614 -0.05654438502 0.15)
(0.4320316893 -0.0338531474 0.15)
(0.421266816 -0.03363882107 0.15)
(0.4105059208 -0.0334255786 0.15)
(0.4100397195 -0.05612279388 0.15)
(0.4334251968 0.03418639404 0.15)
(0.4280419555 0.03427907092 0.15)
(0.422659344 0.03435413067 0.15)
(0.4224280331 0.02301928845 0.15)
(0.4331930956 0.02281396013 0.15)
(0.3473794087 0.03590966794 0.15)
(0.3471458922 0.02456506993 0.15)
(0.3578835823 0.02434231314 0.15)
(0.3581129315 0.035678997 0.15)
(0.3527422235 0.035796916 0.15)
(0.4391768571 0.2340134447 0.15)
(0.4337666028 0.2341057893 0.15)
(0.4336583987 0.2283884005 0.15)
(0.4390693235 0.2283279488 0.15)
(0.3525862421 0.2358934055 0.15)
(0.3524546085 0.2300606837 0.15)
(0.3578607323 0.2297718825 0.15)
(0.3580000252 0.2356834607 0.15)
(0.5060498831 0.3457278483 0.15)
(0.4875895883 0.5052588943 0.15)
(0.4867076201 0.4599046521 0.15)
(0.5298204038 0.4587751665 0.15)
(0.4003335086 0.4620917299 0.15)
(0.6439716108 -0.1970732139 0.15)
(0.6430213457 -0.2427285014 0.15)
(0.6678366493 -0.08371681417 0.15)
(0.6893501774 -0.08410811765 0.15)
(0.5387245808 -0.08131633208 0.15)
(0.6037632451 -0.05984670922 0.15)
(0.6042324575 -0.03719656764 0.15)
(0.5934713731 -0.03699232318 0.15)
(0.5827073104 -0.03678701589 0.15)
(0.582241992 -0.05944224044 0.15)
(0.6056171313 0.0306131087 0.15)
(0.6002378604 0.03075191231 0.15)
(0.6001189719 0.02504965146 0.15)
(0.6054995936 0.02492752314 0.15)
(0.5195169255 0.03226951169 0.15)
(0.5192911103 0.02100576966 0.15)
(0.530048859 0.0207855918 0.15)
(0.5302754848 0.0320403148 0.15)
(0.5248945268 0.03214644665 0.15)
(0.6118046693 0.2296210161 0.15)
(0.6010336454 0.2299233912 0.15)
(0.6008363341 0.2186357447 0.15)
(0.6116106054 0.218345104 0.15)
(0.5255065342 0.2319013175 0.15)
(0.5252956456 0.2205863504 0.15)
(0.5307018012 0.2204417804 0.15)
(0.5361182425 0.2203106971 0.15)
(0.5363061299 0.2316258478 0.15)
(0.8376242965 -0.2006936173 0.15)
(0.8161022539 -0.2002791297 0.15)
(0.8151561356 -0.245945332 0.15)
(0.8404321339 -0.06414746888 0.15)
(0.8399726459 -0.08681081779 0.15)
(0.861495109 -0.0872053098 0.15)
(0.7108697252 -0.08449854749 0.15)
(0.7758801316 -0.06299332278 0.15)
(0.7761089763 -0.05168063361 0.15)
(0.7653426618 -0.05148728163 0.15)
(0.7651147958 -0.06280099159 0.15)
(0.7777377163 0.02783269832 0.15)
(0.7723444041 0.02782696514 0.15)
(0.7722063814 0.02188065257 0.15)
(0.7775935995 0.02183440236 0.15)
(0.6916586903 0.02921199488 0.15)
(0.6915275016 0.02335285792 0.15)
(0.6968977471 0.02321294378 0.15)
(0.6970261291 0.02903373126 0.15)
(0.7826499608 0.1345951112 0.15)
(0.7827403821 0.1402278751 0.15)
(0.7773394719 0.1402889163 0.15)
(0.7772339028 0.1346017089 0.15)
(0.7839974265 0.2244693647 0.15)
(0.7732415115 0.2248243338 0.15)
(0.7730673422 0.2135432024 0.15)
(0.7838194431 0.2131971154 0.15)
(0.6979583357 0.2271772154 0.15)
(0.6977694851 0.2159113959 0.15)
(0.7085321218 0.2155906931 0.15)
(0.7087210755 0.2268614115 0.15)
(1.010299364 -0.1988898701 0.15)
(0.9893288291 -0.2018347175 0.15)
(0.9883098347 -0.2475894075 0.15)
(1.013189631 -0.06142025034 0.15)
(1.012707912 -0.08433218689 0.15)
(1.034233155 -0.08478475016 0.15)
(0.8830065745 -0.08759957059 0.15)
(0.8834633994 -0.06492016215 0.15)
(0.9480129515 -0.06614327199 0.15)
(0.9482409646 -0.05482256358 0.15)
(0.937486026 -0.05461144679 0.15)
(0.9372570132 -0.06593213418 0.15)
(0.9498428427 0.02455490297 0.15)
(0.9445062252 0.02500977984 0.15)
(0.9443710247 0.0191501271 0.15)
(0.9497232164 0.01881754988 0.15)
(0.8638399483 0.02665325812 0.15)
(0.8636868635 0.02056143001 0.15)
(0.8690365788 0.02034893138 0.15)
(0.8691818109 0.0263527051 0.15)
(1.185853276 -0.04212939934 0.15)
(1.185371579 -0.06504033612 0.15)
(1.189225262 0.118252157 0.15)
(1.18874355 0.09534052034 0.15)
(1.210268793 0.09488795707 0.15)
(1.049085322 0.1097376346 0.15)
(0.08847601968 0.04136705511 0.15)
(0.09931731355 0.0411291172 0.15)
(0.09954149855 0.05250561841 0.15)
(0.09411870419 0.05262473254 0.15)
(0.08870876823 0.05273697486 0.15)
(0.1750921261 0.03951496459 0.15)
(0.1753332282 0.0509349198 0.15)
(0.1699403233 0.05104370337 0.15)
(0.1645317911 0.05112280886 0.15)
(0.1642922815 0.0397310264 0.15)
(0.0005521443117 0.04374055031 0.15)
(0.01164554273 0.04337458483 0.15)
(0.01164769689 0.05482807017 0.15)
(0.0005766777304 0.05519376517 0.15)
(0.07782847851 0.05298503471 0.15)
(0.0776041197 0.04161453848 0.15)
(0.1735026596 0.2395558739 0.15)
(0.1734046757 0.2335634095 0.15)
(0.09712827798 0.2354594677 0.15)
(0.09724430482 0.2412063986 0.15)
(0.09401850221 0.3323338397 0.15)
(0.09343897525 0.3095699919 0.15)
(0.1043159233 0.3093723134 0.15)
(0.1152322677 0.3091788077 0.15)
(0.1157885844 0.3319281403 0.15)
(0.102698067 0.2411282426 0.15)
(0.1029726466 0.2525229885 0.15)
(0.0920684313 0.2527082374 0.15)
(0.1790521577 0.2453251974 0.15)
(0.1736118133 0.2454135737 0.15)
(0.3420186985 0.03602737675 0.15)
(0.3366468436 0.03613831831 0.15)
(0.3364082022 0.02478782673 0.15)
(0.2613131465 0.03765817779 0.15)
(0.2610789666 0.02632959726 0.15)
(0.2718356525 0.02610644108 0.15)
(0.2720687695 0.03743204329 0.15)
(0.2594310508 -0.05314432288 0.15)
(0.2809577771 -0.05357391226 0.15)
(0.281428482 -0.03085278636 0.15)
(0.2599028185 -0.03042021867 0.15)
(0.2722972317 0.04872653648 0.15)
(0.2669243854 0.04883789898 0.15)
(0.2615488698 0.04896502107 0.15)
(0.3474982783 0.04161102899 0.15)
(0.3421376333 0.04173183711 0.15)
(0.1858777635 0.03928919927 0.15)
(0.186113829 0.05070745998 0.15)
(0.1807224031 0.05083901749 0.15)
(0.2561681746 0.04908365016 0.15)
(0.2507806595 0.04921092452 0.15)
(0.250546631 0.0378895424 0.15)
(0.347181539 0.2361070602 0.15)
(0.3470585897 0.2303543736 0.15)
(0.2710881642 0.2301336326 0.15)
(0.2712287681 0.2365833021 0.15)
(0.2677366983 0.3287664735 0.15)
(0.2674969519 0.317411004 0.15)
(0.2783532794 0.3171697494 0.15)
(0.2785909841 0.3285232613 0.15)
(0.2713629506 0.2428702707 0.15)
(0.2659267315 0.2429645615 0.15)
(0.3527115274 0.2416620466 0.15)
(0.3473018162 0.241827796 0.15)
(0.1844878395 0.2452529228 0.15)
(0.2605032875 0.2430955919 0.15)
(0.256897346 0.329006371 0.15)
(0.2566575787 0.3176499018 0.15)
(0.5141422604 0.03238951433 0.15)
(0.5087697 0.03251447383 0.15)
(0.5085394864 0.02123182008 0.15)
(0.4439669669 0.02259944463 0.15)
(0.4442033616 0.03398579136 0.15)
(0.4388136809 0.0341052095 0.15)
(0.4531015276 -0.05696514455 0.15)
(0.4535715178 -0.03427801114 0.15)
(0.4428036031 -0.03406562131 0.15)
(0.4389382627 0.03988796846 0.15)
(0.4335485687 0.03995917623 0.15)
(0.5196286479 0.03786880042 0.15)
(0.5142553274 0.03800517842 0.15)
(0.352859921 0.04149009988 0.15)
(0.4281624239 0.04000890465 0.15)
(0.5147208387 0.2321718939 0.15)
(0.5145127728 0.2208484656 0.15)
(0.5199042176 0.2207178079 0.15)
(0.4444770716 0.2282115516 0.15)
(0.4445864093 0.2338877074 0.15)
(0.4409037997 0.3246675739 0.15)
(0.4404847562 0.3019773689 0.15)
(0.4512835497 0.3017113181 0.15)
(0.462065305 0.3014436252 0.15)
(0.4624882425 0.3241287472 0.15)
(0.4499807504 0.2337520877 0.15)
(0.4501909272 0.2450807728 0.15)
(0.439395133 0.2453467605 0.15)
(0.5257162023 0.2432058079 0.15)
(0.5149315738 0.2434795626 0.15)
(0.3581302786 0.2414981075 0.15)
(0.4285891518 0.2456039604 0.15)
(0.4284726728 0.2399211532 0.15)
(0.4283635971 0.2342098841 0.15)
(0.4193090858 0.3251936137 0.15)
(0.4188712357 0.3025128061 0.15)
(0.4296800691 0.3022485447 0.15)
(0.6862910098 0.02937876104 0.15)
(0.6861581507 0.02348775215 0.15)
(0.6108782577 0.02480743642 0.15)
(0.6109954045 0.03047442609 0.15)
(0.6252685647 -0.06024784234 0.15)
(0.6257306736 -0.03760255251 0.15)
(0.6149865434 -0.03740066496 0.15)
(0.6111133352 0.03617870752 0.15)
(0.605738776 0.03635131956 0.15)
(0.6918010282 0.03522083055 0.15)
(0.6864375116 0.03544292141 0.15)
(0.5250060726 0.03773733724 0.15)
(0.6003612154 0.03652389468 0.15)
(0.6871878016 0.2275028853 0.15)
(0.6869987702 0.2162284677 0.15)
(0.6223879285 0.2180568996 0.15)
(0.6225820744 0.2293367109 0.15)
(0.8584735871 0.0268351999 0.15)
(0.858315387 0.0206903676 0.15)
(0.7829775358 0.02172720767 0.15)
(0.7831193545 0.0277113488 0.15)
(0.786642468 -0.06318559091 0.15)
(0.7868713127 -0.05187290174 0.15)
(0.7825906966 0.129064645 0.15)
(0.7879529976 0.1288798779 0.15)
(0.788029544 0.1344711643 0.15)
(0.7832704524 0.03380381882 0.15)
(0.7778927531 0.0339697954 0.15)
(0.8639853949 0.03266722958 0.15)
(0.8586293735 0.03296037859 0.15)
(0.6971631584 0.03498036478 0.15)
(0.772495338 0.03391163688 0.15)
(0.7771456367 0.1289763113 0.15)
(0.8698481573 0.221365786 0.15)
(0.8484107077 0.2221881856 0.15)
(0.8480492901 0.1996222967 0.15)
(0.8587717765 0.1991997154 0.15)
(0.8694810513 0.1987672095 0.15)
(0.7945621087 0.2128304222 0.15)
(0.7947440828 0.2241021876 0.15)
(0.78811992 0.1401017686 0.15)
(1.036581308 0.02975469855 0.15)
(1.025723264 0.02996188176 0.15)
(1.025633934 0.02428590539 0.15)
(1.025563818 0.01857231683 0.15)
(1.036370946 0.01832209437 0.15)
(0.9550684846 0.01844110851 0.15)
(0.9551790231 0.0240792307 0.15)
(0.9587648067 -0.06635832484 0.15)
(0.9589908412 -0.0550365746 0.15)
(0.954034638 0.1274500653 0.15)
(0.9539875109 0.1165026171 0.15)
(0.9646106286 0.1158732488 0.15)
(0.9646524348 0.1268054855 0.15)
(0.9552596426 0.02900792505 0.15)
(0.9499283001 0.02952340443 0.15)
(1.036821574 0.04118247306 0.15)
(1.025962035 0.04131857198 0.15)
(1.025811977 0.03560856461 0.15)
(0.8693169807 0.03225846867 0.15)
(0.9446025283 0.03006597269 0.15)
(0.9434090487 0.1281046011 0.15)
(0.9433502921 0.1171273308 0.15)
(0.127179615 -0.1871689937 0.15)
(0.1262848913 -0.2335240938 0.15)
(0.1511267379 -0.07371429766 0.15)
(-0.0009729580959 -0.07033039551 0.15)
(0.02103601708 -0.07091115522 0.15)
(0.08672164259 -0.04960716816 0.15)
(0.08716488941 -0.02685045723 0.15)
(0.06540764432 -0.02636701042 0.15)
(0.06496275581 -0.04912568728 0.15)
(0.07737716238 0.03024889795 0.15)
(0.08824756059 0.03000134613 0.15)
(0.000383986381 0.03234476714 0.15)
(0.01150910431 0.03197083316 0.15)
(0.04675589399 0.1956045957 0.15)
(0.04134681967 0.1953106301 0.15)
(0.04154356248 0.1895637248 0.15)
(0.04597885842 0.1912723719 0.15)
(0.001875432306 0.1960278821 0.15)
(0.001624795118 0.1900455287 0.15)
(0.007405587144 0.1899303903 0.15)
(0.007575305516 0.195950853 0.15)
(0.2383622005 -0.02998533612 0.15)
(0.2378923482 -0.05271348149 0.15)
(0.2503123039 0.02655396342 0.15)
(0.174857958 0.02813937343 0.15)
(0.1856435955 0.02791360811 0.15)
(0.5675951631 0.184391112 0.15)
(0.5621607198 0.1842844211 0.15)
(0.5616265483 0.1782876245 0.15)
(0.5661239139 0.1773062725 0.15)
(0.6784389739 0.3410181677 0.15)
(0.659839585 0.4994679539 0.15)
(0.6590227645 0.4552491741 0.15)
(0.7020845121 0.4539606919 0.15)
(0.5729347667 0.4576256433 0.15)
(0.7379253701 0.1334671984 0.15)
(0.7393850956 0.1404796642 0.15)
(0.733985822 0.1405709778 0.15)
(0.733474224 0.1347439442 0.15)
(0.7402922726 0.180868419 0.15)
(0.7295337065 0.181192437 0.15)
(0.7293547716 0.1699225082 0.15)
(0.7347377053 0.169767624 0.15)
(0.7401189295 0.1696265788 0.15)
(0.6972430827 0.1821682055 0.15)
(0.6971517187 0.176538182 0.15)
(0.7025325793 0.1763798407 0.15)
(0.7026249514 0.1820102431 0.15)
(0.9541211961 0.1385127501 0.15)
(0.9435005671 0.1391653413 0.15)
(0.9554237029 0.2177329748 0.15)
(0.9340600311 0.2186867525 0.15)
(0.9336342504 0.1959139709 0.15)
(0.9549542826 0.1948350828 0.15)
(0.8801901601 0.1983268054 0.15)
(0.8908901658 0.1978815916 0.15)
(0.8912649177 0.2205108141 0.15)
(0.1640582816 0.02836343347 0.15)
(0.09908937537 0.02976439749 0.15)
(0.1083464846 -0.05006082526 0.15)
(0.1088038022 -0.02731041149 0.15)
(0.1327337683 0.08570884894 0.15)
(0.1381376099 0.0852163507 0.15)
(0.1382374917 0.09025246389 0.15)
(0.1328226954 0.09079480341 0.15)
(0.0004510927165 0.08968322533 0.15)
(0.00618226118 0.08938218894 0.15)
(0.006153979183 0.09513925544 0.15)
(0.0003445000949 0.09548104693 0.15)
(0.04556956793 0.0881901995 0.15)
(0.0456149565 0.09390750865 0.15)
(0.04008436572 0.09407549947 0.15)
(0.04004693244 0.08827510474 0.15)
(0.01527186715 0.2537217347 0.15)
(0.004282832467 0.2538227478 0.15)
(0.08113971629 0.2528890003 0.15)
(0.08082226321 0.2414864538 0.15)
(0.07225908639 0.3327283125 0.15)
(0.07171907686 0.3099696351 0.15)
(0.0825732299 0.3097724359 0.15)
(0.6918520037 0.1823162594 0.15)
(0.691756546 0.176681821 0.15)
(0.6540989575 0.1831866254 0.15)
(0.6539532828 0.1773520984 0.15)
(0.6593624267 0.1773020864 0.15)
(0.6594939334 0.183081199 0.15)
(0.6134402731 0.3201648409 0.15)
(0.6130215239 0.2974886328 0.15)
(0.6345547586 0.2968928699 0.15)
(0.6349674251 0.319565205 0.15)
(0.6227803351 0.2406219369 0.15)
(0.6120061248 0.240915477 0.15)
(0.6981514419 0.2384551481 0.15)
(0.6873830083 0.2387855749 0.15)
(0.536508808 0.2429308853 0.15)
(0.6012349769 0.2412119534 0.15)
(0.5918810231 0.3207601506 0.15)
(0.5914611901 0.2980799644 0.15)
(0.8256883941 0.1332118723 0.15)
(0.8255753425 0.1275017871 0.15)
(0.8309783393 0.1273972723 0.15)
(0.8310733242 0.1330567962 0.15)
(0.9108096269 0.08484990803 0.15)
(0.9109546319 0.0907001526 0.15)
(0.9056339202 0.09100766257 0.15)
(0.9054888866 0.0852036288 0.15)
(0.9114265122 0.1297948815 0.15)
(0.9007492062 0.130320716 0.15)
(0.900672445 0.1192958436 0.15)
(0.9060182253 0.1190389078 0.15)
(0.9113521115 0.1187871333 0.15)
(-0.08891540033 0.1448143092 0.15)
(-0.08907316698 0.1323580653 0.15)
(-0.07838378423 0.132140225 0.15)
(-0.07822515109 0.1445805932 0.15)
(-0.08925329649 0.04888140768 0.15)
(-0.0663058547 0.04668216368 0.15)
(-0.06638078696 0.05833691385 0.15)
(-0.06676140167 0.07035727029 0.15)
(-0.07813573875 0.07147410703 0.15)
(-0.08933463602 0.0725624497 0.15)
(-0.01064718302 0.05566089532 0.15)
(-0.0104449686 0.04408768768 0.15)
(-0.007240711066 0.2423952493 0.15)
(-0.007658974681 0.2309257071 0.15)
(-0.0851073579 0.2414741123 0.15)
(-0.08632445897 0.2176002211 0.15)
(-0.0755069164 0.2175789303 0.15)
(-0.06428756458 0.218148524 0.15)
(-0.0633108525 0.2303889979 0.15)
(-0.0627072593 0.2421187019 0.15)
(-0.07786114576 0.1575883617 0.15)
(-0.08856357634 0.1577374611 0.15)
(0.05371344828 0.1939355783 0.15)
(0.04795460742 0.2419672423 0.15)
(0.04764087691 0.2305562157 0.15)
(0.05315871557 0.2304715113 0.15)
(0.05866736886 0.2303876002 0.15)
(0.05895691983 0.2418236406 0.15)
(0.05257020834 0.201062684 0.15)
(0.04699743305 0.2012746713 0.15)
(0.007725186202 0.2018760117 0.15)
(0.002067092976 0.2019084526 0.15)
(0.04144550273 0.2012554693 0.15)
(0.03698850594 0.2421109829 0.15)
(0.03670679634 0.2307148865 0.15)
(0.04216620467 0.2306341112 0.15)
(0.2224070374 0.2392025197 0.15)
(0.2222777109 0.2338125472 0.15)
(0.2277083082 0.2336411575 0.15)
(0.2278367231 0.2390353501 0.15)
(0.2169728178 0.2392967685 0.15)
(0.2168437533 0.2338716828 0.15)
(0.3959287661 0.235082161 0.15)
(0.395825327 0.2294486906 0.15)
(0.4012498982 0.2292761273 0.15)
(0.4013539784 0.234940091 0.15)
(0.3904895266 0.2351755151 0.15)
(0.3903795675 0.2295173763 0.15)
(0.6109256352 0.184100836 0.15)
(0.6055472872 0.1842835299 0.15)
(0.6054360354 0.1785639047 0.15)
(0.61078105 0.1782229765 0.15)
(0.5730698704 0.179467145 0.15)
(0.5731019106 0.1847969492 0.15)
(0.5686745979 0.2307845727 0.15)
(0.5684721238 0.219489233 0.15)
(0.5792404783 0.2192026175 0.15)
(0.5794430786 0.2305039559 0.15)
(0.5732220246 0.1905574971 0.15)
(0.5677821766 0.1904316156 0.15)
(0.6110684052 0.1899399251 0.15)
(0.6056810436 0.1900744978 0.15)
(0.5244687563 0.1861571246 0.15)
(0.5294705037 0.1851410628 0.15)
(0.5299925782 0.1910858022 0.15)
(0.5246384494 0.1915165418 0.15)
(0.5623742882 0.1904461933 0.15)
(0.5578971424 0.2310664784 0.15)
(0.5576936789 0.2197716597 0.15)
(0.5630848336 0.219627205 0.15)
(0.7346573592 0.02774523344 0.15)
(0.7345519264 0.02220722605 0.15)
(0.739931275 0.02207212162 0.15)
(0.7400339726 0.02757517879 0.15)
(0.7337736869 -0.01704408773 0.15)
(0.7445278779 -0.01724318615 0.15)
(0.7447513782 -0.005994398766 0.15)
(0.7339982711 -0.005791322249 0.15)
(0.776786494 -0.01783839777 0.15)
(0.7770099102 -0.006593609506 0.15)
(0.7662447216 -0.006394279864 0.15)
(0.7660222631 -0.01764108871 0.15)
(0.7833167062 0.1794853345 0.15)
(0.7725678779 0.1798443555 0.15)
(0.7724072362 0.1686357557 0.15)
(0.7831583689 0.1682911894 0.15)
(0.7454978283 0.1694700791 0.15)
(0.7508798189 0.1693179154 0.15)
(0.7510467367 0.1805395862 0.15)
(0.7448460308 0.1352336756 0.15)
(0.7448690355 0.1406570303 0.15)
(0.9066671973 0.02378869111 0.15)
(0.9065889095 0.01849516714 0.15)
(0.911959092 0.01835225366 0.15)
(0.9120283844 0.02355094576 0.15)
(0.9058804075 -0.02019848932 0.15)
(0.9166316202 -0.0203965249 0.15)
(0.916847029 -0.009199578883 0.15)
(0.906096711 -0.009006563217 0.15)
(0.9489076857 -0.02101810914 0.15)
(0.9491231366 -0.009819163566 0.15)
(0.9437483664 -0.00970415982 0.15)
(0.9383743438 -0.009601174444 0.15)
(0.938153789 -0.02080501381 0.15)
(0.862851667 -0.01940084361 0.15)
(0.8735919242 -0.01959664841 0.15)
(0.8738088583 -0.008374728944 0.15)
(0.8630717896 -0.008169989191 0.15)
(0.895347666 -0.008800571443 0.15)
(0.8951302156 -0.01999947498 0.15)
(0.9013229197 0.02411710105 0.15)
(0.9012334688 0.01872078902 0.15)
(0.0893836053 0.08726521862 0.15)
(0.09494927384 0.0879568804 0.15)
(0.09642172942 0.09503249254 0.15)
(0.08942356063 0.09244342287 0.15)
(0.1274455193 0.09136625858 0.15)
(0.1273526071 0.08623347753 0.15)
(0.1318253515 0.04040863502 0.15)
(0.1320530605 0.05176245714 0.15)
(0.1266325255 0.05188912545 0.15)
(0.1212279343 0.05201295799 0.15)
(0.120995997 0.04064832235 0.15)
(0.1272344325 0.08051759867 0.15)
(0.1326257928 0.08009747878 0.15)
(0.08927376539 0.08159847542 0.15)
(0.0947847185 0.0819189053 0.15)
(0.1762531187 0.08707586883 0.15)
(0.1711688854 0.08745122298 0.15)
(0.1706716671 0.0814042385 0.15)
(0.1760792531 0.08151799551 0.15)
(0.1380367941 0.07970765273 0.15)
(0.142663788 0.04017275762 0.15)
(0.1429033284 0.05151842925 0.15)
(0.1374846247 0.05163705728 0.15)
(0.04477586303 0.04241837012 0.15)
(0.04497417057 0.05379621557 0.15)
(0.03388094077 0.05411596729 0.15)
(0.03369034624 0.04273865982 0.15)
(0.03995309518 0.08249890098 0.15)
(0.04548195269 0.08240546306 0.15)
(0.0006777381866 0.08382956786 0.15)
(0.006233318302 0.08361894234 0.15)
(0.0838777755 0.08697438759 0.15)
(0.08378833999 0.08144084491 0.15)
(0.05099681473 0.08237423308 0.15)
(0.05108342807 0.08823500737 0.15)
(0.05577104195 0.04213528754 0.15)
(0.05597677518 0.05351427716 0.15)
(0.05116365322 0.09398699192 0.15)
(0.08392618387 0.0922216294 0.15)
(0.1354298938 0.2405380851 0.15)
(0.1353015798 0.2347681074 0.15)
(0.1407450399 0.2347327774 0.15)
(0.1408875497 0.2404643482 0.15)
(0.1299845505 0.2406265665 0.15)
(0.1298558897 0.2348400924 0.15)
(0.304371766 0.03680689217 0.15)
(0.3044919423 0.04252282897 0.15)
(0.2991136137 0.04261130165 0.15)
(0.2989948072 0.03691293995 0.15)
(0.2621837199 0.08149146307 0.15)
(0.262084124 0.07646894688 0.15)
(0.2674490614 0.07617170955 0.15)
(0.2675482496 0.08117483003 0.15)
(0.3097508506 0.03670680103 0.15)
(0.3098711425 0.04242823662 0.15)
(0.2182361499 0.03858686679 0.15)
(0.2184751592 0.04995485451 0.15)
(0.2130777326 0.05008643817 0.15)
(0.2076820659 0.05020658229 0.15)
(0.2074477023 0.03882169319 0.15)
(0.2192080878 0.08410149287 0.15)
(0.2138229474 0.08443686329 0.15)
(0.2137150251 0.07925618717 0.15)
(0.2190994684 0.07893523459 0.15)
(0.1814588167 0.0812979678 0.15)
(0.181580903 0.08667658992 0.15)
(0.2568171382 0.0818056387 0.15)
(0.2567151896 0.07676636826 0.15)
(0.2244790577 0.07862128559 0.15)
(0.2245863011 0.08376966884 0.15)
(0.2290106216 0.03835333446 0.15)
(0.2292483117 0.04970614656 0.15)
(0.2238658018 0.04983361575 0.15)
(0.3092462247 0.2373947498 0.15)
(0.3091477555 0.2320452376 0.15)
(0.3145766664 0.2318887867 0.15)
(0.3146757094 0.2372655928 0.15)
(0.3038172261 0.2374518806 0.15)
(0.3037175049 0.2320903922 0.15)
(0.3093525221 0.2428787271 0.15)
(0.3039250698 0.2429618311 0.15)
(0.3101614524 0.2824004555 0.15)
(0.2993261624 0.2826432682 0.15)
(0.2990907725 0.2713047109 0.15)
(0.3099281672 0.271066855 0.15)
(0.2667800698 0.2833615499 0.15)
(0.2665414073 0.2720100585 0.15)
(0.2774038596 0.2717746764 0.15)
(0.2776414802 0.2831241892 0.15)
(0.3535189363 0.281396854 0.15)
(0.3426858981 0.2816516221 0.15)
(0.3424556332 0.2703189584 0.15)
(0.3532896502 0.2700631695 0.15)
(0.3207724133 0.2708218535 0.15)
(0.3210046567 0.2821534754 0.15)
(0.3147812172 0.2427595889 0.15)
(0.2225329401 0.2447150912 0.15)
(0.2171000146 0.2448233159 0.15)
(0.2233861012 0.2842949027 0.15)
(0.2125274799 0.2845222025 0.15)
(0.2122829238 0.2731758361 0.15)
(0.223142587 0.2729505149 0.15)
(0.1799111413 0.2851819477 0.15)
(0.1796623759 0.2738256677 0.15)
(0.1905412871 0.2736119444 0.15)
(0.1907889897 0.2849652461 0.15)
(0.2559376341 0.2835975113 0.15)
(0.2556979508 0.2722450412 0.15)
(0.233997104 0.2727183003 0.15)
(0.2342396606 0.2840647087 0.15)
(0.2279620675 0.244568938 0.15)
(0.476478205 0.03325850946 0.15)
(0.4765975371 0.03898186564 0.15)
(0.471220312 0.03912282672 0.15)
(0.4710998057 0.03339119339 0.15)
(0.4818599022 0.03313995932 0.15)
(0.4819787907 0.03884222017 0.15)
(0.3903804221 0.03498257647 0.15)
(0.3904951425 0.04062931266 0.15)
(0.3851175391 0.04075227772 0.15)
(0.3850016738 0.03509866407 0.15)
(0.3957601491 0.03486546806 0.15)
(0.3958747602 0.04050700541 0.15)
(0.4823534495 0.2329693366 0.15)
(0.4822418916 0.2272827252 0.15)
(0.4876465816 0.2271635916 0.15)
(0.4877569148 0.2328395264 0.15)
(0.519344209 0.1922267843 0.15)
(0.5192579416 0.1871721809 0.15)
(0.4769516622 0.2330838082 0.15)
(0.4768367981 0.227382663 0.15)
(0.6486069858 0.02958342912 0.15)
(0.6487121853 0.03511033897 0.15)
(0.6433265661 0.03518506186 0.15)
(0.6432216082 0.02966964947 0.15)
(0.6539954937 0.02955095484 0.15)
(0.6541061239 0.03514586556 0.15)
(0.562576494 0.03165365815 0.15)
(0.562711261 0.03758783647 0.15)
(0.5573236687 0.03761629061 0.15)
(0.5571918662 0.03172796011 0.15)
(0.5679585842 0.03155380388 0.15)
(0.5680935488 0.03749738012 0.15)
(0.6163098328 0.1839109175 0.15)
(0.6164634623 0.1897907873 0.15)
(0.6542217449 0.1889316137 0.15)
(0.6488231272 0.1890541204 0.15)
(0.6486906607 0.1832769284 0.15)
(0.6548912352 0.2284338689 0.15)
(0.6441132696 0.2287390905 0.15)
(0.643918208 0.2174632993 0.15)
(0.6547012103 0.2171597722 0.15)
(0.6485306646 0.1773796886 0.15)
(0.616135834 0.177918551 0.15)
(0.8206478603 0.02596130828 0.15)
(0.820548204 0.02046018761 0.15)
(0.8259271323 0.02030508761 0.15)
(0.8260214862 0.02574430606 0.15)
(0.8197984274 -0.01862668812 0.15)
(0.8305656786 -0.01882306047 0.15)
(0.8307845912 -0.007602182817 0.15)
(0.8200183818 -0.007403831934 0.15)
(0.8523174514 -0.007977889223 0.15)
(0.8520973289 -0.01920874364 0.15)
(0.7875487043 -0.01803666458 0.15)
(0.7877720364 -0.006795875424 0.15)
(0.8092592549 -0.007201629076 0.15)
(0.8090401952 -0.01842950518 0.15)
(0.8152790365 0.02621641799 0.15)
(0.8151728427 0.0206422186 0.15)
(0.8203043558 0.1333617886 0.15)
(0.8201774284 0.1276101859 0.15)
(0.8207435608 0.03141700207 0.15)
(0.8153828041 0.03177036391 0.15)
(0.826108124 0.03110196868 0.15)
(0.7347588553 0.03323871375 0.15)
(0.7293857823 0.03348201017 0.15)
(0.7292789481 0.02792492802 0.15)
(0.7401302252 0.03300955626 0.15)
(0.7454941711 0.1312849391 0.15)
(0.8257770358 0.138855136 0.15)
(0.8204014622 0.1390270692 0.15)
(0.826278496 0.1779771391 0.15)
(0.8155364673 0.1783741256 0.15)
(0.8153812365 0.1671850164 0.15)
(0.8261272013 0.1667849464 0.15)
(0.7938889299 0.1679196496 0.15)
(0.7940514702 0.1791234084 0.15)
(0.9596554577 -0.02123707702 0.15)
(0.9598666782 -0.01004904494 0.15)
(0.9544949915 -0.009930105134 0.15)
(0.993215963 -0.01952014365 0.15)
(0.9930173042 -0.008274483126 0.15)
(0.9869895079 -0.009581066784 0.15)
(0.9814344505 -0.01019143365 0.15)
(0.9813789853 -0.02139274266 0.15)
(0.9936829318 0.02557310383 0.15)
(0.9876039529 0.02359234708 0.15)
(0.9875837692 0.0182555922 0.15)
(0.9937939417 0.02010146144 0.15)
(0.9923163 0.02836424729 0.15)
(0.9874313982 0.02704063609 0.15)
(0.9965941929 0.08169160798 0.15)
(0.9912412072 0.08189127252 0.15)
(0.9912466071 0.07648686493 0.15)
(0.9965965199 0.07628376422 0.15)
(0.9538939223 0.08379263719 0.15)
(0.953830719 0.07821753393 0.15)
(0.9591960111 0.0780323139 0.15)
(0.9592487962 0.08358763178 0.15)
(0.9067381874 0.02902055485 0.15)
(0.9014073647 0.02946560774 0.15)
(0.9050135941 0.07953346671 0.15)
(0.9094131212 0.07798994706 0.15)
(0.9485387857 0.08398514536 0.15)
(0.9484607278 0.0783695454 0.15)
(0.9162386104 0.07936867906 0.15)
(0.9162448954 0.08480554821 0.15)
(0.9120840119 0.02862299712 0.15)
(0.9220282548 0.1182535715 0.15)
(0.9221016673 0.1292618906 0.15)
(0.9163528081 0.09055665056 0.15)
(0.9539339093 0.08931011573 0.15)
(0.9485935283 0.08953842164 0.15)
(0.000311307132 0.1722464057 0.15)
(0.0001684205303 0.1652158559 0.15)
(0.006994124716 0.1714299517 0.15)
(0.718314021 0.1586327917 0.15)
(0.7129302893 0.1587972947 0.15)
(0.7127506366 0.1528214507 0.15)
(0.7181315392 0.1526651089 0.15)
(0.6968451257 0.1595294686 0.15)
(0.6967720066 0.1539584747 0.15)
(0.7021377477 0.1537470395 0.15)
(0.7022229827 0.1593709904 0.15)
(1.160966067 -0.2020576028 0.15)
(1.160023688 -0.2481845648 0.15)
(1.163856334 -0.06458798304 0.15)
(1.163374616 -0.0874999196 0.15)
(1.162892898 -0.1104118561 0.15)
(1.205933386 -0.1113167725 0.15)
(1.055758398 -0.08523731344 0.15)
(1.120805848 -0.0636828565 0.15)
(1.121287545 -0.04077191973 0.15)
(1.099762302 -0.04031935645 0.15)
(1.099280605 -0.06323029323 0.15)
(1.122732685 0.02796319008 0.15)
(1.101207442 0.02841575336 0.15)
(1.100725738 0.00550451665 0.15)
(1.122250981 0.005051953377 0.15)
(1.047148481 0.01809149832 0.15)
(1.04737918 0.0295399785 0.15)
(1.168673438 0.1645276833 0.15)
(1.168191728 0.1416161467 0.15)
(1.167710016 0.11870451 0.15)
(1.171558356 0.3018049921 0.15)
(1.170600283 0.2561741298 0.15)
(1.213640213 0.2552408567 0.15)
(1.062984066 0.2584367359 0.15)
(1.084499311 0.2579843829 0.15)
(-0.0005579352102 0.1131813271 0.15)
(0.005683250473 0.1125356939 0.15)
(0.006664841162 0.1197237489 0.15)
(-0.001263079122 0.1193201056 0.15)
(0.6914317746 0.1595696668 0.15)
(0.6913130409 0.1538271938 0.15)
(0.6752249169 0.1598895077 0.15)
(0.6752130341 0.1545669814 0.15)
(0.6805797119 0.1543525258 0.15)
(0.6806416835 0.159869042 0.15)
(0.8691518216 0.176305067 0.15)
(0.8584466152 0.1767407881 0.15)
(0.8582984501 0.165554731 0.15)
(0.8690057065 0.1651213674 0.15)
(0.8368582177 0.1663874913 0.15)
(0.8370084622 0.1775773055 0.15)
(0.8311514857 0.1386773251 0.15)
(1.040495401 0.213066126 0.15)
(1.01934909 0.2144153222 0.15)
(1.018969285 0.1915933633 0.15)
(1.04001369 0.1901544893 0.15)
(0.9762427828 0.1936836415 0.15)
(0.9767802962 0.216775545 0.15)
(0.9647334444 0.1378421312 0.15)
(-0.04615798483 0.1436044387 0.15)
(-0.04609743414 0.1303284616 0.15)
(-0.03531339837 0.1297220458 0.15)
(-0.03552314646 0.1368579814 0.15)
(-0.03548418229 0.1436445999 0.15)
(-0.04533203432 0.09318456595 0.15)
(-0.03381012984 0.09198850982 0.15)
(-0.03416048277 0.1040067297 0.15)
(-0.04576209942 0.1055931476 0.15)
(-0.005481087022 0.09588018968 0.15)
(-0.005371804465 0.09006330733 0.15)
(-0.003856241855 0.1960216612 0.15)
(-0.00415626883 0.1900806552 0.15)
(-0.04340453888 0.1949332308 0.15)
(-0.04416982346 0.1827822325 0.15)
(-0.03308947413 0.1831486031 0.15)
(-0.03208273506 0.1954661629 0.15)
(-0.03523644821 0.1509271135 0.15)
(-0.03489850569 0.1575953833 0.15)
(-0.04571140429 0.1573618201 0.15)
(0.244125817 0.2378219832 0.15)
(0.2440015122 0.2317669583 0.15)
(0.2494296031 0.2310482003 0.15)
(0.2495543533 0.2373622731 0.15)
(0.1785288583 0.216249073 0.15)
(0.1839323973 0.2166460776 0.15)
(0.1840444575 0.2218332682 0.15)
(0.178637803 0.2215259488 0.15)
(0.2001907685 0.2175870325 0.15)
(0.2003042886 0.2226533657 0.15)
(0.1948791141 0.2224166513 0.15)
(0.1947620882 0.2173262865 0.15)
(0.200684813 0.2394201716 0.15)
(0.1952479751 0.2394374585 0.15)
(0.1951272699 0.2337439377 0.15)
(0.2005597424 0.2338044599 0.15)
(0.4175512746 0.2344509137 0.15)
(0.41743104 0.2286370565 0.15)
(0.4228354567 0.2285049258 0.15)
(0.4229606524 0.2343168783 0.15)
(0.4169426572 0.2105936358 0.15)
(0.4223278873 0.2103576854 0.15)
(0.4225142452 0.2165097274 0.15)
(0.4171174555 0.2166716044 0.15)
(0.438794758 0.2115105045 0.15)
(0.4388689427 0.2169894557 0.15)
(0.4334256589 0.2168904523 0.15)
(0.4333280616 0.2112969679 0.15)
(0.3520846731 0.2132266404 0.15)
(0.3574758005 0.2127003019 0.15)
(0.3575790624 0.2178971796 0.15)
(0.3521932105 0.2183889995 0.15)
(0.3732310577 0.2109294332 0.15)
(0.3737352947 0.2169296598 0.15)
(0.3683284719 0.2169949263 0.15)
(0.3681530217 0.2115044012 0.15)
(0.3742265155 0.2352507823 0.15)
(0.3688211781 0.2353391227 0.15)
(0.3686676618 0.2293219201 0.15)
(0.3740755894 0.2292616315 0.15)
(0.5624518849 0.02586959947 0.15)
(0.5678338637 0.02576444638 0.15)
(0.5616420625 -0.01374213006 0.15)
(0.5724059991 -0.01395343603 0.15)
(0.5726356123 -0.002651765456 0.15)
(0.5618727175 -0.002438480948 0.15)
(0.6046949146 -0.01458229199 0.15)
(0.6049243386 -0.003289619424 0.15)
(0.5941624226 -0.003077355714 0.15)
(0.5939329355 -0.01437302761 0.15)
(0.5186003341 -0.01289620068 0.15)
(0.529358251 -0.01310838031 0.15)
(0.5295890321 -0.001798732522 0.15)
(0.5188311573 -0.001584553336 0.15)
(0.5511098018 -0.002226196218 0.15)
(0.5508791047 -0.01353184489 0.15)
(0.5570697589 0.02596775412 0.15)
(0.6907253082 -0.01622902538 0.15)
(0.7014803939 -0.01643314372 0.15)
(0.7017063352 -0.005163403012 0.15)
(0.6909523544 -0.0049543068 0.15)
(0.7232332716 -0.005582994596 0.15)
(0.7230085614 -0.01684175875 0.15)
(0.7291707043 0.02234837119 0.15)
(0.9282997666 0.02482530085 0.15)
(0.9281737108 0.01906757841 0.15)
(0.9336048994 0.0193524771 0.15)
(0.9337479028 0.02534539527 0.15)
(0.9278084086 0.001835449717 0.15)
(0.9332082244 0.001769930441 0.15)
(0.933328943 0.007511661541 0.15)
(0.9279238037 0.007514278817 0.15)
(0.9493437426 0.001434685774 0.15)
(0.94946302 0.007155442534 0.15)
(0.9440944259 0.007326328806 0.15)
(0.9439713924 0.00156964306 0.15)
(1.047619881 0.04098844843 0.15)
(1.123214397 0.0508748267 0.15)
(1.101689154 0.05132738997 0.15)
(1.12465953 0.1196096365 0.15)
(1.103134287 0.1200621995 0.15)
(1.102652575 0.09715056323 0.15)
(1.124177818 0.09669799996 0.15)
(0.1571737521 0.240064922 0.15)
(0.157046234 0.2342852254 0.15)
(0.1624947702 0.2339680264 0.15)
(0.1626026601 0.2398607606 0.15)
(0.1566061681 0.2177787286 0.15)
(0.1634559695 0.2149380173 0.15)
(0.1622998764 0.2220341864 0.15)
(0.1567902936 0.2229206944 0.15)
(0.1732309819 0.2213058523 0.15)
(0.1731777506 0.2158244601 0.15)
(0.1355531703 0.2462587578 0.15)
(0.1301109735 0.2463541745 0.15)
(0.1364534628 0.2860346219 0.15)
(0.1255974624 0.2862438626 0.15)
(0.1253385732 0.2748817941 0.15)
(0.1361996355 0.2746754476 0.15)
(0.09288414231 0.286824629 0.15)
(0.0926243481 0.2754575784 0.15)
(0.1035309208 0.2752702795 0.15)
(0.1037928725 0.2866352843 0.15)
(0.16904227 0.2853974604 0.15)
(0.168791463 0.2740392228 0.15)
(0.1470917329 0.2744704491 0.15)
(0.1473445395 0.2858286446 0.15)
(0.1410155098 0.2461699191 0.15)
(0.3309389734 0.2367266179 0.15)
(0.3308325408 0.2311886315 0.15)
(0.3362371338 0.2309221674 0.15)
(0.33634797 0.236526876 0.15)
(0.3305447876 0.2151711411 0.15)
(0.3359225747 0.2147239005 0.15)
(0.3360230072 0.2197862079 0.15)
(0.3306316386 0.2202059279 0.15)
(0.3468162515 0.2188756314 0.15)
(0.3467214911 0.2137500908 0.15)
(0.2875304287 0.2369191134 0.15)
(0.2820964265 0.2366906863 0.15)
(0.2819580515 0.2303946039 0.15)
(0.2873994849 0.2308813318 0.15)
(0.4762477909 0.0219187473 0.15)
(0.4870143485 0.02168938225 0.15)
(0.4872453525 0.03300962769 0.15)
(0.4755527962 -0.01204114717 0.15)
(0.486319648 -0.01225651531 0.15)
(0.4865516182 -0.0009378905376 0.15)
(0.4757848084 -0.0007205228323 0.15)
(0.5080783024 -0.00136947947 0.15)
(0.5078464373 -0.01268310535 0.15)
(0.5199422434 0.05435425102 0.15)
(0.5145789903 0.05463644962 0.15)
(0.5144741922 0.04912863555 0.15)
(0.5198408091 0.04891128057 0.15)
(0.4984842256 0.05548285058 0.15)
(0.4983655347 0.04978998765 0.15)
(0.5037390849 0.04956938622 0.15)
(0.5038524924 0.05520124672 0.15)
(0.4980145184 0.03276160368 0.15)
(0.5033941193 0.03263849661 0.15)
(0.5035087851 0.03828263337 0.15)
(0.4981305203 0.0384217159 0.15)
(0.4441684546 0.211249291 0.15)
(0.4442640524 0.2168428174 0.15)
(0.4601732059 0.2097847455 0.15)
(0.4603567402 0.2158976382 0.15)
(0.4549848317 0.2161963224 0.15)
(0.4548295247 0.2102366702 0.15)
(0.4607640407 0.2334622576 0.15)
(0.4553687355 0.2335995979 0.15)
(0.4552505987 0.2278855187 0.15)
(0.460643381 0.2277233259 0.15)
(0.4825594191 0.244288208 0.15)
(0.4717725178 0.2445490076 0.15)
(0.471560022 0.2332051679 0.15)
(0.4831963216 0.2782443227 0.15)
(0.4724195442 0.2785109108 0.15)
(0.4722035075 0.2671889504 0.15)
(0.4829863045 0.266923236 0.15)
(0.4400482842 0.2793145363 0.15)
(0.4398292061 0.2679906394 0.15)
(0.4506260211 0.2677256304 0.15)
(0.4508450992 0.2790495274 0.15)
(0.3960227035 0.2407394364 0.15)
(0.3905958397 0.2408505343 0.15)
(0.3967690445 0.2803765059 0.15)
(0.3859450883 0.280635084 0.15)
(0.385716823 0.2693023782 0.15)
(0.3965389057 0.2690498409 0.15)
(0.3641266245 0.269805318 0.15)
(0.3643539531 0.2811410441 0.15)
(0.4292375563 0.2795838386 0.15)
(0.4290194149 0.2682569214 0.15)
(0.4073747542 0.2687860117 0.15)
(0.4075939374 0.2801149075 0.15)
(0.4014431692 0.2406094688 0.15)
(0.6484965658 0.02399851619 0.15)
(0.6538821956 0.02392429318 0.15)
(0.6477030078 -0.01541051044 0.15)
(0.6584631555 -0.01561173454 0.15)
(0.658693243 -0.00433507946 0.15)
(0.6479321797 -0.004129835224 0.15)
(0.6802013518 -0.004746273429 0.15)
(0.6799742216 -0.01602499112 0.15)
(0.6154489164 -0.01479038842 0.15)
(0.6156782774 -0.003500715193 0.15)
(0.6371702006 -0.003920570852 0.15)
(0.6369419655 -0.01520426642 0.15)
(0.6431134191 0.02409569207 0.15)
(0.6270922156 0.0300583772 0.15)
(0.6272039422 0.03565786588 0.15)
(0.621844426 0.03583236213 0.15)
(0.6217309513 0.03019730233 0.15)
(0.6275277446 0.05234334612 0.15)
(0.6221832324 0.05270816904 0.15)
(0.6220713755 0.04710248173 0.15)
(0.6274212153 0.04680076077 0.15)
(0.6061145471 0.05374836463 0.15)
(0.6059912446 0.04797888171 0.15)
(0.6113583266 0.04768850082 0.15)
(0.6114784756 0.05340313791 0.15)
(0.6922047285 0.05251906672 0.15)
(0.6868522209 0.05293176828 0.15)
(0.6867390026 0.04768948988 0.15)
(0.6920932667 0.04731275934 0.15)
(0.6711121886 0.05414229317 0.15)
(0.6706213734 0.04816198884 0.15)
(0.6760117109 0.04826410584 0.15)
(0.676178119 0.05375272061 0.15)
(0.670158179 0.02965153541 0.15)
(0.6755386783 0.0296187294 0.15)
(0.6756880919 0.03572623814 0.15)
(0.6703032753 0.03569642107 0.15)
(0.5410383761 0.03187444084 0.15)
(0.5411518782 0.03751080035 0.15)
(0.5357672874 0.03753929141 0.15)
(0.5356556112 0.0319422022 0.15)
(0.5414554357 0.05385183004 0.15)
(0.536059557 0.05372402384 0.15)
(0.5359721311 0.04847160103 0.15)
(0.5413668167 0.04859023028 0.15)
(0.5252137084 0.04870729649 0.15)
(0.5253097395 0.05408356578 0.15)
(0.6007496189 0.05409361237 0.15)
(0.6006221547 0.04826890473 0.15)
(0.5846528641 0.05513079731 0.15)
(0.5845138577 0.04913769509 0.15)
(0.589882975 0.04884897178 0.15)
(0.5900177797 0.05478494971 0.15)
(0.5840980251 0.03116726542 0.15)
(0.5894783147 0.03102934059 0.15)
(0.5896060816 0.03686844505 0.15)
(0.5842284874 0.03703942053 0.15)
(0.6654689531 0.2168440632 0.15)
(0.6656581296 0.2281253792 0.15)
(0.6596082034 0.188801661 0.15)
(0.6974144305 0.1934102877 0.15)
(0.6866404641 0.1937154252 0.15)
(0.6864569823 0.1824670967 0.15)
(0.8046659648 0.1132888445 0.15)
(0.8039949603 0.117244283 0.15)
(0.7971186231 0.1156830195 0.15)
(0.8041633255 0.1339105963 0.15)
(0.7987674386 0.1340678433 0.15)
(0.7986547013 0.1283251342 0.15)
(0.8040594822 0.1282103297 0.15)
(0.7992123679 0.0270195188 0.15)
(0.7993421323 0.03285848124 0.15)
(0.7939971597 0.033201409 0.15)
(0.7938595364 0.02727409223 0.15)
(0.8422224681 0.02600131619 0.15)
(0.8476562871 0.02645889774 0.15)
(0.8477910238 0.03234406587 0.15)
(0.8423183115 0.03146380847 0.15)
(0.7131490352 0.02847920325 0.15)
(0.7132719635 0.0342308901 0.15)
(0.7079000542 0.03448196378 0.15)
(0.7077727539 0.02866505442 0.15)
(0.7136143503 0.05080125427 0.15)
(0.7082571927 0.05123065726 0.15)
(0.7081557092 0.04611836091 0.15)
(0.7135144782 0.04571803047 0.15)
(0.6974431596 0.0469184168 0.15)
(0.6975478934 0.05209015797 0.15)
(0.756348909 0.04738151296 0.15)
(0.7563626737 0.04294584357 0.15)
(0.7617924426 0.04349623076 0.15)
(0.7612731096 0.04695871223 0.15)
(0.7561390878 0.02736380057 0.15)
(0.7615340887 0.0274974265 0.15)
(0.7616451939 0.03311493223 0.15)
(0.7562340989 0.0327867016 0.15)
(0.7608382328 0.1342188633 0.15)
(0.7593718356 0.1271745127 0.15)
(0.7663097861 0.1290021679 0.15)
(0.7663457298 0.1344700605 0.15)
(0.9998049853 0.02460740414 0.15)
(1.001061054 0.03201893897 0.15)
(1.003395634 -0.01536120269 0.15)
(1.003636903 -0.00388573872 0.15)
(0.9986871609 -0.004772890549 0.15)
(1.03567831 -0.01604894051 0.15)
(1.035909224 -0.004590262582 0.15)
(1.025151727 -0.004358087372 0.15)
(1.024910753 -0.01581955443 0.15)
(0.9547118415 0.00128781522 0.15)
(0.9548261528 0.006962666224 0.15)
(0.9708402377 0.000851697969 0.15)
(0.9709436501 0.006388747625 0.15)
(0.9655650161 0.00655784454 0.15)
(0.9654598052 0.0009828243 0.15)
(0.9712072443 0.0226367968 0.15)
(0.9658573564 0.0230789498 0.15)
(0.9657693249 0.01765500183 0.15)
(0.9711314934 0.01732121463 0.15)
(0.9592730087 0.0890684338 0.15)
(0.9965836494 0.09236988895 0.15)
(0.9859414254 0.09308954882 0.15)
(0.9859961014 0.08236953097 0.15)
(0.9964211044 0.1246480474 0.15)
(0.9858289231 0.1253692157 0.15)
(0.9858349 0.1145213033 0.15)
(0.9964693857 0.1139093199 0.15)
(0.9712731079 0.02738696188 0.15)
(0.9659265817 0.02789385852 0.15)
(0.9751036062 0.0605766775 0.15)
(0.969806438 0.06090979824 0.15)
(0.9695194079 0.05558315474 0.15)
(0.9737835198 0.05392615647 0.15)
(1.037594981 0.07558931805 0.15)
(1.026827146 0.07580550704 0.15)
(1.026565678 0.06432076561 0.15)
(1.037343893 0.0641225624 0.15)
(1.001787187 0.07559490356 0.15)
(1.001801136 0.08101570806 0.15)
(0.8852476887 0.02522654953 0.15)
(0.8853566619 0.03083779869 0.15)
(0.8799964323 0.03131137602 0.15)
(0.879878573 0.02561049384 0.15)
(0.9342171828 0.03106259414 0.15)
(0.9297138352 0.03152155647 0.15)
(0.0245865825 0.1955896941 0.15)
(0.02443053525 0.1896471612 0.15)
(0.03006644452 0.1895645755 0.15)
(0.0302835888 0.1954302071 0.15)
(0.006767622344 0.1778703358 0.15)
(0.0009147729774 0.1780853109 0.15)
(0.01891650324 0.1957359121 0.15)
(0.01880899769 0.1897615519 0.15)
(0.5463256914 0.1862573113 0.15)
(0.5463701785 0.1815702406 0.15)
(0.5515184512 0.1804824829 0.15)
(0.5515970903 0.1855548506 0.15)
(0.5409367016 0.1863620116 0.15)
(0.5415555012 0.1825876705 0.15)
(0.7398951956 0.1582239624 0.15)
(0.7345054519 0.1583403812 0.15)
(0.7343471955 0.1524783125 0.15)
(0.7397422702 0.1523775852 0.15)
(0.72355278 0.1526671542 0.15)
(0.7237134584 0.1585492764 0.15)
(0.7240160164 0.1374500248 0.15)
(0.7233749164 0.1414006036 0.15)
(0.716461097 0.1395789305 0.15)
(0.1542967519 0.08429207932 0.15)
(0.1542920057 0.08882368033 0.15)
(0.1489798369 0.08929964794 0.15)
(0.1489013206 0.08442342097 0.15)
(0.1597639015 0.08486018467 0.15)
(0.1592529712 0.08838930424 0.15)
(0.02315186945 0.08870183535 0.15)
(0.0232135493 0.09441380087 0.15)
(0.01751779856 0.09464727785 0.15)
(0.01747121892 0.08892089173 0.15)
(0.0234321175 0.1113128403 0.15)
(0.01885591979 0.1132449595 0.15)
(0.0175056979 0.1061791801 0.15)
(0.02312348983 0.1057677025 0.15)
(-7.684782019e-05 0.1071789883 0.15)
(0.005888274222 0.1067269008 0.15)
(0.02873227152 0.1053796195 0.15)
(0.0281141035 0.1095265297 0.15)
(0.02885001204 0.08851551852 0.15)
(0.02888306168 0.09425489191 0.15)
(0.6536076813 0.1602006734 0.15)
(0.6589885482 0.160042632 0.15)
(0.6590818402 0.1656692141 0.15)
(0.6536508384 0.1656310661 0.15)
(0.6753260524 0.1655561338 0.15)
(0.6698906289 0.1654979742 0.15)
(0.6697373084 0.1596328012 0.15)
(0.6756823873 0.1827423408 0.15)
(0.6702888463 0.1828684416 0.15)
(0.6701695122 0.1771449854 0.15)
(0.6755727785 0.1770532879 0.15)
(0.6682932313 0.1526510132 0.15)
(0.6542314397 0.156281596 0.15)
(0.658955155 0.1550766367 0.15)
(0.8253120661 0.1105552569 0.15)
(0.8306940673 0.1104035931 0.15)
(0.8307647437 0.1160011242 0.15)
(0.8253313571 0.1159922727 0.15)
(0.8468293325 0.1100087405 0.15)
(0.8469220483 0.1156554893 0.15)
(0.8415648675 0.1158459199 0.15)
(0.8414988828 0.1102812475 0.15)
(0.8471818869 0.1325336566 0.15)
(0.841821477 0.1327132228 0.15)
(0.8417469562 0.1271231341 0.15)
(0.8471063058 0.1269407096 0.15)
(0.8415354443 0.105026918 0.15)
(0.8467791544 0.1044822742 0.15)
(0.8259181091 0.1064596129 0.15)
(0.8303593026 0.1049949348 0.15)
(0.8683055893 0.1092243336 0.15)
(0.8628948305 0.1092926836 0.15)
(0.8627802136 0.1035557253 0.15)
(0.8681998156 0.1035273983 0.15)
(0.8519740593 0.1037571165 0.15)
(0.8521198643 0.1095978421 0.15)
(0.888400852 0.08542917125 0.15)
(0.8897174682 0.09205736029 0.15)
(0.8843457747 0.09227112118 0.15)
(0.8840397067 0.08694287751 0.15)
(0.8898642627 0.1086967511 0.15)
(0.8844858011 0.1088740462 0.15)
(0.8844216317 0.1033005636 0.15)
(0.8898064367 0.1031395387 0.15)
(0.8735991879 0.1034407837 0.15)
(0.8737016974 0.1091251849 0.15)
(0.9112621182 0.1077513566 0.15)
(0.9059302001 0.1080015895 0.15)
(0.9058567761 0.1024160988 0.15)
(0.9111917315 0.1021676024 0.15)
(0.8951834676 0.1029417692 0.15)
(0.8952370801 0.1084888679 0.15)
(0.8951759534 0.08669483742 0.15)
(0.8951032099 0.09189331508 0.15)
(0.07052444599 0.1989395146 0.15)
(0.06351458688 0.2009704114 0.15)
(0.06276546063 0.1967620283 0.15)
(0.06944515728 0.2183803968 0.15)
(0.06392803987 0.2185660083 0.15)
(0.06383942739 0.2125768477 0.15)
(0.06936927381 0.21230685 0.15)
(0.04733574755 0.2189976757 0.15)
(0.04723923574 0.2131228064 0.15)
(0.05276635528 0.212970492 0.15)
(0.05285238122 0.2188746882 0.15)
(0.0913772601 0.217645719 0.15)
(0.08588258133 0.2179280802 0.15)
(0.08575806981 0.2120011879 0.15)
(0.09131638987 0.2115060419 0.15)
(0.07486246667 0.2121726527 0.15)
(0.07493146454 0.2182374424 0.15)
(0.04184003291 0.2191023195 0.15)
(0.04170274063 0.2132288076 0.15)
(0.02523641134 0.2193138764 0.15)
(0.02509790223 0.2135252089 0.15)
(0.03060895579 0.213412741 0.15)
(0.03073114183 0.2192147546 0.15)
(0.03042572965 0.2014867574 0.15)
(0.02480112509 0.2016503234 0.15)
(0.221895028 0.2183702794 0.15)
(0.2273413594 0.2184715192 0.15)
(0.2274516114 0.2232872657 0.15)
(0.2220134626 0.2232897768 0.15)
(0.2450404216 0.2186690263 0.15)
(0.2383101343 0.2220562462 0.15)
(0.2377015547 0.2186097771 0.15)
(0.2386871282 0.2383221156 0.15)
(0.238561621 0.2325904874 0.15)
(0.2059838845 0.2338493536 0.15)
(0.2061114429 0.2393930972 0.15)
(0.2056050232 0.2178276774 0.15)
(0.2057229073 0.2228637122 0.15)
(0.2165811932 0.223191342 0.15)
(0.2164656395 0.2182185723 0.15)
(0.3955764966 0.2130941076 0.15)
(0.4009459385 0.2124878073 0.15)
(0.4010384709 0.2180306869 0.15)
(0.3956415527 0.2184243178 0.15)
(0.4117484532 0.2170609475 0.15)
(0.4116034139 0.2111614928 0.15)
(0.4121533127 0.2346046135 0.15)
(0.4120339169 0.2288306475 0.15)
(0.4114924263 0.2059301699 0.15)
(0.4167650946 0.2051453644 0.15)
(0.395519862 0.2082120194 0.15)
(0.4008719774 0.2074476483 0.15)
(0.4333010634 0.2061594003 0.15)
(0.4387612306 0.206300258 0.15)
(0.4218138628 0.2043676668 0.15)
(0.3901535308 0.213438175 0.15)
(0.3901628807 0.2088876731 0.15)
(0.3795033384 0.2293353558 0.15)
(0.3796420931 0.2352213397 0.15)
(0.3777499638 0.2104017286 0.15)
(0.3792067802 0.2174185565 0.15)
(0.3902000937 0.2185548268 0.15)
(0.5892983533 0.1842671809 0.15)
(0.5891059647 0.1782088863 0.15)
(0.5945352508 0.1782605735 0.15)
(0.5947117759 0.1842303819 0.15)
(0.5839219202 0.1845409547 0.15)
(0.5837852751 0.1787077381 0.15)
(0.5894632385 0.1902542378 0.15)
(0.5840536029 0.1904235864 0.15)
(0.5898541631 0.2076108554 0.15)
(0.5844377259 0.2077421386 0.15)
(0.5843239351 0.2020444716 0.15)
(0.5897443125 0.201910305 0.15)
(0.568248949 0.2081132107 0.15)
(0.5681163774 0.2023310198 0.15)
(0.5735098814 0.2022507299 0.15)
(0.5736324229 0.2079840208 0.15)
(0.5463673014 0.1916141202 0.15)
(0.5409527774 0.1915985307 0.15)
(0.5466981779 0.2086836366 0.15)
(0.5413030779 0.2087831643 0.15)
(0.5411808698 0.2030181593 0.15)
(0.5465777263 0.2029546027 0.15)
(0.5250620477 0.2091427322 0.15)
(0.5249405317 0.2033154989 0.15)
(0.5303445902 0.2031187615 0.15)
(0.5304689256 0.2089849441 0.15)
(0.5628605204 0.2082446051 0.15)
(0.5627245458 0.2024432816 0.15)
(0.5519577026 0.2028017812 0.15)
(0.5520815299 0.208548648 0.15)
(0.5517034896 0.1912339689 0.15)
(0.7610259608 0.1401982083 0.15)
(0.7556217052 0.1402904268 0.15)
(0.7554372249 0.1343228361 0.15)
(0.7614699118 0.157698243 0.15)
(0.7560838106 0.157845192 0.15)
(0.755958784 0.1520888482 0.15)
(0.7613514261 0.1519675674 0.15)
(0.7451501011 0.1523126975 0.15)
(0.7452910767 0.158114016 0.15)
(0.9063056494 0.002120503364 0.15)
(0.9116797561 0.002021517104 0.15)
(0.9117808326 0.007542612335 0.15)
(0.9064057051 0.007640619837 0.15)
(0.922537303 0.007499500467 0.15)
(0.9224306299 0.001902506108 0.15)
(0.9228378117 0.02402853578 0.15)
(0.9227510393 0.01866447457 0.15)
(0.8851299724 0.01953246585 0.15)
(0.8905072939 0.01925337222 0.15)
(0.890615914 0.02484782509 0.15)
(0.8847918034 0.002591831218 0.15)
(0.8901824649 0.002471492255 0.15)
(0.8902897594 0.00805046957 0.15)
(0.8849006862 0.008198781326 0.15)
(0.9010401642 0.007766431971 0.15)
(0.9009367519 0.002229382315 0.15)
(0.1112637296 0.08783562172 0.15)
(0.1113843802 0.09314595894 0.15)
(0.1060626847 0.09378726333 0.15)
(0.1058807544 0.08827396938 0.15)
(0.1166348341 0.08730840395 0.15)
(0.116748716 0.09253466487 0.15)
(0.1111050896 0.08176501507 0.15)
(0.1164930267 0.08137237321 0.15)
(0.1106474737 0.06375775556 0.15)
(0.1160654354 0.06360383533 0.15)
(0.1161981655 0.06944113506 0.15)
(0.1107861276 0.06963894047 0.15)
(0.1322827334 0.0631145376 0.15)
(0.1323980172 0.06878806787 0.15)
(0.1269863934 0.06900556893 0.15)
(0.1268649757 0.06327815569 0.15)
(0.0889338094 0.06416847023 0.15)
(0.09435525977 0.06409009335 0.15)
(0.09447945902 0.06993077315 0.15)
(0.08903210664 0.06994748086 0.15)
(0.1053602581 0.06979732792 0.15)
(0.1052191443 0.06389428989 0.15)
(0.1057000392 0.08205729448 0.15)
(0.1542331536 0.07922149583 0.15)
(0.1597015321 0.07980047776 0.15)
(0.1539302522 0.06267380669 0.15)
(0.1593506382 0.06268277148 0.15)
(0.1594742812 0.06846845082 0.15)
(0.1540431496 0.06832898307 0.15)
(0.1755977133 0.06270586105 0.15)
(0.1757502427 0.06886641602 0.15)
(0.1703474385 0.06883737722 0.15)
(0.1702002872 0.06274232367 0.15)
(0.1377136439 0.06295804461 0.15)
(0.1378259465 0.06858492724 0.15)
(0.1486367037 0.06831702459 0.15)
(0.1485280395 0.06272047218 0.15)
(0.1488238799 0.0791701881 0.15)
(0.06758036505 0.08809190809 0.15)
(0.06743072401 0.08210203012 0.15)
(0.07288976887 0.08180891556 0.15)
(0.07301023584 0.08762906927 0.15)
(0.06711505294 0.06464250793 0.15)
(0.07258987418 0.06450509615 0.15)
(0.07270472519 0.07022464569 0.15)
(0.06722863104 0.07038238872 0.15)
(0.08359356742 0.0699885087 0.15)
(0.08349321859 0.06426415326 0.15)
(0.0677563058 0.09411003949 0.15)
(0.06233726732 0.09453624252 0.15)
(0.06213190551 0.08837469787 0.15)
(0.07313485486 0.09339932469 0.15)
(0.1349669813 0.2170458251 0.15)
(0.1403346698 0.2174978955 0.15)
(0.1404590071 0.2232214465 0.15)
(0.1350553325 0.2230082853 0.15)
(0.1513256483 0.2234231729 0.15)
(0.1511502384 0.2182200104 0.15)
(0.151756379 0.240246836 0.15)
(0.1516133865 0.2345398808 0.15)
(0.1509413941 0.2136149829 0.15)
(0.1558846166 0.2141444927 0.15)
(0.134915152 0.2116311182 0.15)
(0.1402062356 0.2123406557 0.15)
(0.113021966 0.2181796625 0.15)
(0.1076336685 0.217984282 0.15)
(0.1074902816 0.2123061415 0.15)
(0.1128197763 0.2128445338 0.15)
(0.09680830918 0.2113017559 0.15)
(0.09684945221 0.2175164642 0.15)
(0.1295598528 0.2169062527 0.15)
(0.1298350008 0.2109161456 0.15)
(0.1182749828 0.2127494437 0.15)
(0.1184934315 0.2179540018 0.15)
(0.1136067495 0.2409509015 0.15)
(0.1134805619 0.235234491 0.15)
(0.1189541526 0.2351099079 0.15)
(0.1190836232 0.2408397524 0.15)
(0.1186616923 0.2235783076 0.15)
(0.1132046307 0.2237754593 0.15)
(0.1296326168 0.222983666 0.15)
(0.2836361921 0.08019424282 0.15)
(0.283554898 0.0753761871 0.15)
(0.2889624614 0.07539372332 0.15)
(0.2889806757 0.07987563072 0.15)
(0.2832822659 0.05964974314 0.15)
(0.2886876204 0.05970493412 0.15)
(0.2887926363 0.06517553538 0.15)
(0.2833824117 0.06503142714 0.15)
(0.3048892678 0.06032661084 0.15)
(0.3050407674 0.06658090817 0.15)
(0.2996325209 0.06615029503 0.15)
(0.2994949927 0.06013235625 0.15)
(0.2617726019 0.060129685 0.15)
(0.267146485 0.05997249057 0.15)
(0.2672488245 0.06541094099 0.15)
(0.2618787963 0.06560876336 0.15)
(0.2779902788 0.06508178156 0.15)
(0.2778912799 0.05970707501 0.15)
(0.2782600035 0.08052722454 0.15)
(0.2781733159 0.07559535705 0.15)
(0.3264142714 0.06000538161 0.15)
(0.3317893448 0.05980965366 0.15)
(0.3319374722 0.06599870746 0.15)
(0.3265644916 0.0662464029 0.15)
(0.3478849533 0.05919368587 0.15)
(0.348024746 0.06522417983 0.15)
(0.3426710891 0.06548707245 0.15)
(0.3425291574 0.05940241148 0.15)
(0.3102777815 0.06038955752 0.15)
(0.3104341596 0.06673317203 0.15)
(0.3211911537 0.0664771021 0.15)
(0.3210378619 0.06018513412 0.15)
(0.1977032322 0.08552374185 0.15)
(0.1975898562 0.0802739651 0.15)
(0.202961911 0.07993466887 0.15)
(0.2030739152 0.08516677055 0.15)
(0.1971644284 0.06213259936 0.15)
(0.202547994 0.06196019805 0.15)
(0.2026856707 0.06793762477 0.15)
(0.1973051767 0.06816097277 0.15)
(0.2187187725 0.06144667282 0.15)
(0.2188463608 0.06727727915 0.15)
(0.2134537223 0.06749388094 0.15)
(0.2133231465 0.06161632703 0.15)
(0.1809858463 0.0626079802 0.15)
(0.1811383799 0.06876873512 0.15)
(0.1919166487 0.0683827893 0.15)
(0.1917718354 0.06230379016 0.15)
(0.192329802 0.08589277355 0.15)
(0.1922139346 0.08061964402 0.15)
(0.240674128 0.08278358285 0.15)
(0.2405760032 0.07768831966 0.15)
(0.2459525344 0.07737163434 0.15)
(0.2460511397 0.08244218196 0.15)
(0.240232586 0.06078350326 0.15)
(0.2456182962 0.06061795839 0.15)
(0.2457311677 0.06622432453 0.15)
(0.2403483987 0.06643461746 0.15)
(0.2565028639 0.06581121086 0.15)
(0.2563947953 0.0602905627 0.15)
(0.2241074463 0.06127936526 0.15)
(0.2242310788 0.06706454471 0.15)
(0.2349776293 0.06664475813 0.15)
(0.2348598709 0.0609486749 0.15)
(0.2353160448 0.08312138506 0.15)
(0.2352124524 0.0780039319 0.15)
(0.3088654599 0.2167154845 0.15)
(0.3143132268 0.2163616936 0.15)
(0.3143963252 0.2213131408 0.15)
(0.3089624199 0.2216126284 0.15)
(0.3252199633 0.2206112715 0.15)
(0.325124955 0.2156166651 0.15)
(0.3255178535 0.2369206134 0.15)
(0.3254157024 0.2314435504 0.15)
(0.2928472527 0.2314790511 0.15)
(0.2929643224 0.2371899521 0.15)
(0.2931071646 0.2175331064 0.15)
(0.2926475935 0.2209836291 0.15)
(0.2858082804 0.2178532006 0.15)
(0.3035373134 0.2218073078 0.15)
(0.3034443646 0.2170058007 0.15)
(0.4555284869 0.05775458747 0.15)
(0.4608959052 0.05748020305 0.15)
(0.4610368468 0.06351777442 0.15)
(0.455672601 0.06384790448 0.15)
(0.4769904848 0.05662500403 0.15)
(0.4771209639 0.06249795896 0.15)
(0.4717569955 0.0628412861 0.15)
(0.4716233503 0.05691288547 0.15)
(0.4339833113 0.05821057048 0.15)
(0.4393850227 0.05833035231 0.15)
(0.4395469538 0.06465264539 0.15)
(0.4341438686 0.06451508852 0.15)
(0.4503041795 0.06416972047 0.15)
(0.4501557228 0.05801258064 0.15)
(0.5039653764 0.06080821273 0.15)
(0.498600196 0.06114146312 0.15)
(0.5200426632 0.05979654264 0.15)
(0.5146836496 0.06013766514 0.15)
(0.4823616101 0.0563366386 0.15)
(0.4824879253 0.06215426883 0.15)
(0.493231029 0.06147539746 0.15)
(0.4931119724 0.05576513838 0.15)
(0.369345313 0.05831919323 0.15)
(0.3747168132 0.05809623437 0.15)
(0.374836162 0.06382039038 0.15)
(0.3694699789 0.06410595131 0.15)
(0.3908302846 0.05742597911 0.15)
(0.3909376351 0.06296004532 0.15)
(0.3855704795 0.06324692699 0.15)
(0.3854587844 0.05764893797 0.15)
(0.3532406379 0.05897966143 0.15)
(0.3533771865 0.06495101051 0.15)
(0.3641037664 0.06439011254 0.15)
(0.3639747937 0.05854123127 0.15)
(0.4123331951 0.05676753978 0.15)
(0.4177289162 0.05688784764 0.15)
(0.4178191047 0.06217652038 0.15)
(0.4124221841 0.06204673564 0.15)
(0.4287071409 0.06382401652 0.15)
(0.4285666722 0.05780894017 0.15)
(0.3962028728 0.0572071983 0.15)
(0.396305864 0.06267664187 0.15)
(0.4070436629 0.06217362086 0.15)
(0.4069504848 0.05683790056 0.15)
(0.5034490993 0.2094675108 0.15)
(0.4980337213 0.2095064513 0.15)
(0.4978633475 0.2034962046 0.15)
(0.5032986217 0.2035472658 0.15)
(0.4818822741 0.2099879631 0.15)
(0.4817793597 0.2043318767 0.15)
(0.4871492295 0.2040789455 0.15)
(0.4872779072 0.2098662194 0.15)
(0.5196754786 0.2093149966 0.15)
(0.519559637 0.2035673617 0.15)
(0.5087552481 0.2037100028 0.15)
(0.5088705166 0.2094779542 0.15)
(0.5092507047 0.1891214649 0.15)
(0.5086422405 0.1928640818 0.15)
(0.5016849318 0.1905914232 0.15)
(0.4546758398 0.2043065905 0.15)
(0.4599799904 0.2036395492 0.15)
(0.4440914893 0.2057808006 0.15)
(0.4764431303 0.2098955742 0.15)
(0.4763224265 0.2041545429 0.15)
(0.4653384247 0.2033184433 0.15)
(0.4655508477 0.2095684591 0.15)
(0.6489756809 0.05097310509 0.15)
(0.6436054755 0.05125765034 0.15)
(0.6435159021 0.04595066062 0.15)
(0.6488969666 0.04580201714 0.15)
(0.6327790239 0.04649747195 0.15)
(0.6328801458 0.05197315619 0.15)
(0.6324634903 0.02991984173 0.15)
(0.6325714903 0.03548480112 0.15)
(0.6329733878 0.05697890224 0.15)
(0.6276206175 0.05737910656 0.15)
(0.6490556935 0.0557777848 0.15)
(0.6436919088 0.05617742052 0.15)
(0.6115817821 0.05850699408 0.15)
(0.6062183245 0.05887461585 0.15)
(0.622283728 0.05777347578 0.15)
(0.6543626425 0.05091465757 0.15)
(0.654364606 0.05538480397 0.15)
(0.6649085701 0.03552928151 0.15)
(0.6647744043 0.02962369687 0.15)
(0.6666342284 0.05447669434 0.15)
(0.6651882862 0.04750134704 0.15)
(0.6542954053 0.04590886489 0.15)
(0.5631788948 0.05630944323 0.15)
(0.557779857 0.05617410177 0.15)
(0.5576219615 0.04990103474 0.15)
(0.5630196148 0.05001810126 0.15)
(0.5467811598 0.04897780575 0.15)
(0.5468872646 0.05450019557 0.15)
(0.5464227441 0.03183535212 0.15)
(0.5465416221 0.03753711308 0.15)
(0.5469585367 0.0595076038 0.15)
(0.5415255693 0.05885266074 0.15)
(0.5633468787 0.06182543093 0.15)
(0.5582691393 0.06217664325 0.15)
(0.5254057558 0.05945913522 0.15)
(0.5361410352 0.05888385121 0.15)
(0.5901259816 0.05997892288 0.15)
(0.5847625682 0.06034864419 0.15)
(0.6008548669 0.05924223762 0.15)
(0.5685540039 0.0561154149 0.15)
(0.5686723278 0.06145780811 0.15)
(0.5793991547 0.0607183655 0.15)
(0.5792879044 0.05547454538 0.15)
(0.578851813 0.03720657582 0.15)
(0.5787186975 0.03130336963 0.15)
(0.5791446311 0.04942121954 0.15)
(0.568400535 0.04991016981 0.15)
(0.6466752876 0.1582091531 0.15)
(0.6325078244 0.1836926855 0.15)
(0.6323664789 0.1778737709 0.15)
(0.6377365407 0.1776775482 0.15)
(0.6378890297 0.1835507405 0.15)
(0.6322109038 0.1618157932 0.15)
(0.6372720988 0.1605825337 0.15)
(0.6374283673 0.1658743182 0.15)
(0.6321754353 0.1665987955 0.15)
(0.6481488308 0.1653079475 0.15)
(0.6268160901 0.1668290005 0.15)
(0.6274462556 0.1629768032 0.15)
(0.6271152277 0.1837685553 0.15)
(0.6269662069 0.177917595 0.15)
(0.8184084697 0.1088868027 0.15)
(0.8094397921 0.1280257941 0.15)
(0.8095507603 0.1337319323 0.15)
(0.8092752515 0.1118268337 0.15)
(0.8092749214 0.1167587703 0.15)
(0.8198554389 0.1158634287 0.15)
(0.8045599882 0.02675495271 0.15)
(0.8046818075 0.03250146172 0.15)
(0.8368777847 0.03092504998 0.15)
(0.8368004995 0.02567921547 0.15)
(0.7350462467 0.04909627643 0.15)
(0.7296859806 0.04952054363 0.15)
(0.729593917 0.04452327469 0.15)
(0.7349558157 0.04412907982 0.15)
(0.7188742764 0.04531907869 0.15)
(0.7189715604 0.05037435072 0.15)
(0.7185253249 0.028293752 0.15)
(0.7186428815 0.03398023736 0.15)
(0.7508573849 0.03271410475 0.15)
(0.7507665377 0.02734652842 0.15)
(0.7510752628 0.04783436571 0.15)
(0.7510038916 0.04306011108 0.15)
(0.7403148601 0.04374184648 0.15)
(0.7404055699 0.04867472965 0.15)
(0.7549235462 0.1284919854 0.15)
(0.9765088333 0.01713814183 0.15)
(0.9765675275 0.02235606095 0.15)
(0.9762240992 0.0007885145733 0.15)
(0.9763281329 0.006307547186 0.15)
(0.9932199865 0.003030754328 0.15)
(0.9933896641 0.008722445248 0.15)
(0.9873315012 0.007208454071 0.15)
(0.9871999178 0.001615984331 0.15)
(0.9960974613 0.05877918691 0.15)
(0.9909902379 0.05958341907 0.15)
(0.9906052977 0.05316789307 0.15)
(0.9950968107 0.0507188398 0.15)
(0.9804842337 0.05503145084 0.15)
(0.980470638 0.06042662867 0.15)
(0.9766053417 0.02691387313 0.15)
(0.953417711 0.0617610794 0.15)
(0.9577447698 0.06014846779 0.15)
(0.959062636 0.06678853318 0.15)
(0.9537154424 0.06707339479 0.15)
(0.9751902908 0.0662220027 0.15)
(0.9698532161 0.06646484233 0.15)
(0.9753230085 0.08285788861 0.15)
(0.9699674236 0.08312422251 0.15)
(0.9699537651 0.07762209394 0.15)
(0.9753162021 0.07739622494 0.15)
(0.8907170871 0.0303735193 0.15)
(0.8958873685 0.08275851366 0.15)
(0.9324059707 0.08444896161 0.15)
(0.9323210229 0.07879109714 0.15)
(0.9377126274 0.07866803775 0.15)
(0.9377973734 0.08431630435 0.15)
(0.9484210956 0.06744556485 0.15)
(0.9490698167 0.06338173076 0.15)
(0.9270066488 0.0845379757 0.15)
(0.9268965418 0.07882522794 0.15)
(0.9228741313 0.02889584776 0.15)
(-0.01457740712 0.3568429545 0.15)
(-0.0319194446 0.5156216783 0.15)
(-0.03321549307 0.471378394 0.15)
(-0.1631427179 0.4711759012 0.15)
(-0.1200337296 0.4719000224 0.15)
(0.7073015915 0.1474532042 0.15)
(0.7021067562 0.1483243928 0.15)
(0.7021659637 0.1435762992 0.15)
(0.7071561553 0.1422009008 0.15)
(0.6967909903 0.1487244192 0.15)
(0.6974459759 0.1448633983 0.15)
(0.8504083469 0.3355651453 0.15)
(0.831718885 0.4914555184 0.15)
(0.8310046512 0.4491366364 0.15)
(0.8739071937 0.4469777437 0.15)
(0.7450981562 0.4525079722 0.15)
(0.6898916092 0.1469234472 0.15)
(0.8524653715 0.1267447881 0.15)
(0.852533633 0.1323226056 0.15)
(0.8522597217 0.1153935528 0.15)
(0.8684122534 0.1149160491 0.15)
(0.8630208086 0.1150467068 0.15)
(0.7089132765 0.2381438642 0.15)
(0.7843753598 0.2470596118 0.15)
(0.7628803873 0.2477625941 0.15)
(0.7624916603 0.2251822761 0.15)
(0.7855627817 0.3150496743 0.15)
(0.7640685147 0.3157386386 0.15)
(0.7636742857 0.2930869205 0.15)
(0.7851655743 0.292399019 0.15)
(-0.02479641798 0.1433022081 0.15)
(-0.02481166762 0.1362876788 0.15)
(-0.01933701043 0.1353670174 0.15)
(-0.01946138367 0.1428814471 0.15)
(-0.02370587493 0.1157144593 0.15)
(-0.01808847803 0.1151652596 0.15)
(-0.01877312242 0.1220161646 0.15)
(-0.024328249 0.1226441728 0.15)
(-0.007128976817 0.1200719736 0.15)
(-0.00661502372 0.1139264124 0.15)
(-0.005520902735 0.1719788404 0.15)
(-0.006273635527 0.1655965528 0.15)
(-0.02304012611 0.1707903341 0.15)
(-0.02351950195 0.1643645908 0.15)
(-0.0180008426 0.1643997957 0.15)
(-0.01742934339 0.1709541309 0.15)
(-0.01910220705 0.1506548196 0.15)
(-0.02449439153 0.1507502951 0.15)
(-0.08048111361 0.3348904082 0.15)
(-0.08143899052 0.3118284474 0.15)
(-0.05953064578 0.3116668956 0.15)
(-0.05875334115 0.3346036243 0.15)
(-0.06158646495 0.2654128895 0.15)
(-0.08381243811 0.2651530248 0.15)
(-0.0067928884 0.2538715717 0.15)
(0.06991202401 0.2416706291 0.15)
(0.06977387091 0.2359464684 0.15)
(0.07521206016 0.2358507358 0.15)
(0.07535714746 0.2415764511 0.15)
(0.07499772034 0.2242098692 0.15)
(0.06952028733 0.2243372337 0.15)
(0.09146995076 0.2237432178 0.15)
(0.08597459188 0.2239218704 0.15)
(0.3901495778 0.02366992935 0.15)
(0.4009082633 0.02344673113 0.15)
(0.4011389814 0.03475337957 0.15)
(0.3894530368 -0.01031593836 0.15)
(0.4002118694 -0.01053213812 0.15)
(0.4004441338 0.0008004835611 0.15)
(0.3896853432 0.001018682884 0.15)
(0.4324963654 -0.01118090558 0.15)
(0.4327285667 0.0001487167673 0.15)
(0.4219637565 0.0003660424324 0.15)
(0.4217315341 -0.01096457969 0.15)
(0.3464457633 -0.009448728523 0.15)
(0.3571855791 -0.009665528685 0.15)
(0.3574189904 0.001674070432 0.15)
(0.3466791957 0.001891870373 0.15)
(0.3789275525 0.001236861188 0.15)
(0.3786942252 -0.01009873881 0.15)
(0.3796229256 0.03521475168 0.15)
(0.3793919132 0.02389410632 0.15)
(0.7830051692 0.1571035378 0.15)
(0.777630259 0.1572594536 0.15)
(0.7775439696 0.1516329242 0.15)
(0.7829232846 0.1514962201 0.15)
(0.7667503948 0.151861757 0.15)
(0.7668568257 0.157542375 0.15)
(0.7664734636 0.1402600148 0.15)
(0.7080057699 0.1818499022 0.15)
(0.7081778821 0.1930807658 0.15)
(0.7404653636 0.1920982618 0.15)
(0.7297100111 0.1924324145 0.15)
(0.7409962969 0.2258666626 0.15)
(0.7302479513 0.226201068 0.15)
(0.7300648828 0.2149248247 0.15)
(0.7408143459 0.214595997 0.15)
(0.8632969531 0.003062759688 0.15)
(0.8686580837 0.002965046469 0.15)
(0.8687732687 0.008633877778 0.15)
(0.8634146422 0.008755543655 0.15)
(0.8795096345 0.008348134902 0.15)
(0.8793993525 0.002722210011 0.15)
(0.8797507143 0.01981460086 0.15)
(0.09694343339 0.2236420422 0.15)
(0.1077831377 0.2237614166 0.15)
(0.1081433892 0.2410387615 0.15)
(0.1080211398 0.2353193675 0.15)
(0.4432691948 -0.01139739963 0.15)
(0.4435013752 -6.877705867e-05 0.15)
(0.4650269966 -0.0005033443082 0.15)
(0.4647949213 -0.01182696798 0.15)
(0.4657250377 0.03350629712 0.15)
(0.4654912312 0.02214790215 0.15)
(0.4549738131 0.03375134333 0.15)
(0.4550984202 0.03953530203 0.15)
(0.4497170194 0.03966794905 0.15)
(0.4495924271 0.0338846902 0.15)
(0.4500002052 0.05175746759 0.15)
(0.4553772445 0.05156009795 0.15)
(0.4338268255 0.05195697812 0.15)
(0.4392239399 0.0520008398 0.15)
(0.4284248948 0.05177918809 0.15)
(0.4122330149 0.05133664564 0.15)
(0.4176230994 0.05137915479 0.15)
(0.411897814 0.03453717981 0.15)
(0.4172789822 0.03444104575 0.15)
(0.4173950051 0.04010215774 0.15)
(0.4120124041 0.04017771737 0.15)
(0.8421097766 0.02035593765 0.15)
(0.8475190358 0.02054927707 0.15)
(0.841769524 0.003411345939 0.15)
(0.8471551958 0.003339122492 0.15)
(0.8472688976 0.008984979903 0.15)
(0.8418806166 0.009028251799 0.15)
(0.8580406616 0.00886052859 0.15)
(0.8579241405 0.003175721835 0.15)
(0.7826238489 0.1238384634 0.15)
(0.7879139906 0.1234090091 0.15)
(0.7931548423 0.1227759859 0.15)
(0.7932759214 0.1285348632 0.15)
(0.7933872043 0.1342559681 0.15)
(0.8640982867 0.03784640091 0.15)
(0.858790117 0.03832228444 0.15)
(0.8537186174 0.03877998912 0.15)
(0.8532354581 0.03292595175 0.15)
(0.8530784259 0.02678909667 0.15)
(0.7718063598 0.1345853529 0.15)
(0.7717254138 0.1289751048 0.15)
(0.7713761959 0.1235450356 0.15)
(0.7757641019 0.1222099563 0.15)
(0.8042624987 0.1395790341 0.15)
(0.7988709349 0.1397516036 0.15)
(0.8044830256 0.1563952141 0.15)
(0.7991067338 0.1565805654 0.15)
(0.7990342361 0.1509915544 0.15)
(0.8044124476 0.150802362 0.15)
(0.7882920973 0.1513357316 0.15)
(0.7883738768 0.1569380504 0.15)
(0.9605126636 0.02357790615 0.15)
(0.9605841751 0.02845398033 0.15)
(0.8745214294 0.02599298617 0.15)
(0.8746493826 0.03179337816 0.15)
(0.8747396113 0.03684609793 0.15)
(0.8694134422 0.03736977037 0.15)
(0.939148121 0.02534658227 0.15)
(0.9392994066 0.03059166112 0.15)
(0.03591958298 0.1951708805 0.15)
(0.03714350015 0.1878420343 0.15)
(0.5568496832 0.1847666663 0.15)
(0.556672176 0.1793686048 0.15)
(0.7395664031 0.1464390698 0.15)
(0.734168102 0.1465290626 0.15)
(0.728810956 0.1467687235 0.15)
(0.728711757 0.1410990559 0.15)
(0.728687033 0.1361172349 0.15)
(0.702330552 0.1650581859 0.15)
(0.6969474923 0.1652070713 0.15)
(0.7184680176 0.1644825471 0.15)
(0.713081253 0.1646455136 0.15)
(0.7187743759 0.1815276735 0.15)
(0.7133896025 0.181690198 0.15)
(0.7133041131 0.1760541498 0.15)
(0.7186868261 0.1758887679 0.15)
(0.1435297156 0.08478411247 0.15)
(0.1436297227 0.08977861383 0.15)
(0.08197984806 0.2870108798 0.15)
(0.0817150129 0.2756419347 0.15)
(0.0492498014 0.287542987 0.15)
(0.04895665714 0.2761596338 0.15)
(0.05986228237 0.2759843575 0.15)
(0.06016982346 0.287367408 0.15)
(0.05924707921 0.2532172588 0.15)
(0.048279258 0.2533648363 0.15)
(0.6809667021 0.1769453831 0.15)
(0.6810665982 0.1826006328 0.15)
(0.6807398386 0.165536631 0.15)
(0.6915424345 0.1653087088 0.15)
(0.8681238687 0.09791705511 0.15)
(0.8627639602 0.098120466 0.15)
(0.8633778563 0.09401775534 0.15)
(0.867791337 0.09251945239 0.15)
(0.855892457 0.09655125914 0.15)
(0.8796279174 0.08847405218 0.15)
(0.8789971041 0.09253330883 0.15)
(0.8721431529 0.0910377493 0.15)
(0.8789603206 0.09782465113 0.15)
(0.8735102578 0.0977838031 0.15)
(-0.04029783591 0.2424789326 0.15)
(-0.04094826331 0.2308004244 0.15)
(-0.02980399784 0.2309099947 0.15)
(-0.02933624777 0.2424345089 0.15)
(-0.03133798965 0.2073348306 0.15)
(-0.04257487088 0.2070161608 0.15)
(-0.003581624956 0.2019029882 0.15)
(0.05820722571 0.1953525316 0.15)
(0.05805213127 0.2009966387 0.15)
(0.05819652672 0.2068511971 0.15)
(0.05268419524 0.2070123026 0.15)
(0.04712531702 0.2071811882 0.15)
(0.092516316 0.2042730212 0.15)
(0.08556029608 0.2064717234 0.15)
(0.08476303509 0.2024953033 0.15)
(0.08015325912 0.2064078659 0.15)
(0.07998171196 0.2013408523 0.15)
(0.6001416589 0.1843104628 0.15)
(0.6000253956 0.1785903428 0.15)
(0.6000016017 0.1732721679 0.15)
(0.6053757699 0.17308096 0.15)
(0.6106383473 0.1723870867 0.15)
(0.5736809253 0.1756574589 0.15)
(0.5785197962 0.1746014119 0.15)
(0.5784837265 0.1793558205 0.15)
(0.5785439941 0.1848388652 0.15)
(0.6114164846 0.2070664925 0.15)
(0.6060291504 0.2072023649 0.15)
(0.6059241208 0.2015408217 0.15)
(0.6113124927 0.2014067279 0.15)
(0.595150815 0.2017822313 0.15)
(0.5952593546 0.207468006 0.15)
(0.5948756458 0.1901691495 0.15)
(0.5340023788 0.1841835907 0.15)
(0.5354533668 0.1912086429 0.15)
(0.5356150143 0.1971368548 0.15)
(0.5301820494 0.1971480589 0.15)
(0.5247937471 0.1974281836 0.15)
(0.7501748831 0.1348851954 0.15)
(0.7502670044 0.1405512409 0.15)
(0.7504105829 0.146381211 0.15)
(0.7449958334 0.1464500449 0.15)
(0.1004560226 0.08839132385 0.15)
(0.1009731019 0.09443148933 0.15)
(0.0888602258 0.09609657139 0.15)
(0.1219937711 0.08677334021 0.15)
(0.1220997422 0.09195635786 0.15)
(0.1218633054 0.08094859565 0.15)
(0.1217267394 0.07507156778 0.15)
(0.1271103615 0.07475913434 0.15)
(0.1325131202 0.07445300004 0.15)
(0.1666720533 0.08779192222 0.15)
(0.1652085382 0.08074192782 0.15)
(0.165063877 0.07471773759 0.15)
(0.1705069868 0.07509390586 0.15)
(0.175915253 0.0751924452 0.15)
(0.1379333755 0.07417030314 0.15)
(0.1433417456 0.07394076782 0.15)
(0.1434371098 0.07938046513 0.15)
(0.04514015437 0.06518754345 0.15)
(0.05065253248 0.06505244273 0.15)
(0.0507673877 0.07077219222 0.15)
(0.04524599082 0.07089698024 0.15)
(0.06173438112 0.07053291179 0.15)
(0.06161907397 0.06479166705 0.15)
(0.06196342239 0.08230689874 0.15)
(0.05662628664 0.08836982559 0.15)
(0.05679642236 0.09438777896 0.15)
(0.05828703135 0.1014800132 0.15)
(0.05118278736 0.09933567149 0.15)
(0.04566908721 0.09944119347 0.15)
(0.08390087554 0.096840882 0.15)
(0.07860041419 0.0976738824 0.15)
(0.07852224704 0.09269532549 0.15)
(0.07843653001 0.08718641009 0.15)
(0.2939258761 0.07959532006 0.15)
(0.2944018423 0.07611584641 0.15)
(0.3012187833 0.07918123075 0.15)
(0.2943226792 0.07111370522 0.15)
(0.299768671 0.07215025882 0.15)
(0.3051943156 0.07288507345 0.15)
(0.3056812901 0.07892057071 0.15)
(0.2619808541 0.07103381675 0.15)
(0.2673487811 0.07078362697 0.15)
(0.2727129507 0.07054501874 0.15)
(0.2728100733 0.07587805553 0.15)
(0.2729057849 0.08085854409 0.15)
(0.3374463724 0.07178758873 0.15)
(0.3428082306 0.0714866153 0.15)
(0.3429214678 0.07672979351 0.15)
(0.3375599418 0.07704656344 0.15)
(0.3481609646 0.07117983239 0.15)
(0.3482749494 0.07641099222 0.15)
(0.3105903927 0.07306988807 0.15)
(0.3107571779 0.0786240094 0.15)
(0.3159685545 0.07292590663 0.15)
(0.3160888073 0.07831246905 0.15)
(0.2084394606 0.08480330581 0.15)
(0.2083339428 0.07959427289 0.15)
(0.2082018102 0.07369024585 0.15)
(0.2135860608 0.07340770581 0.15)
(0.2189744955 0.07313387974 0.15)
(0.181300779 0.07506571277 0.15)
(0.1866829615 0.074827526 0.15)
(0.1868330982 0.08096942715 0.15)
(0.1869467377 0.08627931163 0.15)
(0.2514405335 0.08211882479 0.15)
(0.2513372824 0.07706517856 0.15)
(0.2512282056 0.07154415151 0.15)
(0.2566090036 0.0712876898 0.15)
(0.2243560516 0.07286589956 0.15)
(0.229729683 0.07260158676 0.15)
(0.2298497521 0.07831242469 0.15)
(0.2299566612 0.08344491145 0.15)
(0.4714840495 0.05090578634 0.15)
(0.4768555287 0.0506818277 0.15)
(0.4607489591 0.05134733683 0.15)
(0.4603526749 0.03364065453 0.15)
(0.4604747779 0.03940066057 0.15)
(0.4927492709 0.03856156133 0.15)
(0.4926319939 0.03288837303 0.15)
(0.4929889957 0.05001115204 0.15)
(0.4822299988 0.05045740608 0.15)
(0.3853456901 0.05203197418 0.15)
(0.3907212701 0.05186034089 0.15)
(0.3692219874 0.05254861056 0.15)
(0.3745965592 0.05237659839 0.15)
(0.3688664289 0.03544690587 0.15)
(0.3742451981 0.03533181804 0.15)
(0.3743613451 0.04099882873 0.15)
(0.368982744 0.04112191479 0.15)
(0.3803178089 0.06916934732 0.15)
(0.3856808196 0.06882804076 0.15)
(0.3857814938 0.07390184561 0.15)
(0.3804199391 0.07426482636 0.15)
(0.391044809 0.0684857134 0.15)
(0.3911430023 0.07353666535 0.15)
(0.3535092813 0.07085323795 0.15)
(0.353614694 0.07605727197 0.15)
(0.3588664824 0.07052105552 0.15)
(0.3589734175 0.07570235252 0.15)
(0.4233228341 0.06786218754 0.15)
(0.4301572616 0.07085538836 0.15)
(0.4228293301 0.07136383473 0.15)
(0.3964078196 0.06814440684 0.15)
(0.3965055085 0.0731713641 0.15)
(0.4017719351 0.06780807815 0.15)
(0.401867019 0.07280628382 0.15)
(0.4066312695 0.04027545108 0.15)
(0.4065177927 0.03464029131 0.15)
(0.4068502584 0.05140480691 0.15)
(0.3960969194 0.05169200689 0.15)
(0.4923252864 0.1977475452 0.15)
(0.4870367496 0.1983960542 0.15)
(0.4869549619 0.1933166511 0.15)
(0.4921489093 0.1923556614 0.15)
(0.4817233619 0.1989567662 0.15)
(0.48176201 0.1942774199 0.15)
(0.5194444806 0.1978523195 0.15)
(0.514090915 0.1981671217 0.15)
(0.5140500911 0.1928477045 0.15)
(0.514091953 0.1881784929 0.15)
(0.4762847163 0.198888072 0.15)
(0.4768746302 0.1951670498 0.15)
(0.4693247821 0.196490541 0.15)
(0.4660446533 0.2275843598 0.15)
(0.4661642207 0.2333189135 0.15)
(0.4657454077 0.2157300308 0.15)
(0.4820009287 0.2157742475 0.15)
(0.4765815782 0.2157669613 0.15)
(0.8202336014 0.003784116069 0.15)
(0.825616559 0.003677942174 0.15)
(0.8257227276 0.009250941835 0.15)
(0.8203398541 0.009361114846 0.15)
(0.8364925249 0.009080521705 0.15)
(0.8363850412 0.003492546378 0.15)
(0.836704757 0.02022152213 0.15)
(0.7990853808 0.02121750615 0.15)
(0.8044395786 0.02102791836 0.15)
(0.7987409517 0.004216989875 0.15)
(0.8041029139 0.004111257403 0.15)
(0.8042128176 0.009719186271 0.15)
(0.7988521074 0.009836895071 0.15)
(0.8149581275 0.009478265291 0.15)
(0.8148506859 0.003892289522 0.15)
(0.8208354485 0.03683406746 0.15)
(0.8154836598 0.03728096147 0.15)
(0.8101360005 0.03773397002 0.15)
(0.8100273069 0.03213601792 0.15)
(0.8099144977 0.02648504062 0.15)
(0.8314030656 0.02562015716 0.15)
(0.8314818445 0.03088946545 0.15)
(0.8315491156 0.03603958931 0.15)
(0.8261896319 0.03640592727 0.15)
(0.750154189 0.12990475 0.15)
(0.9820020124 0.02255987244 0.15)
(0.9819542316 0.01733772298 0.15)
(0.9818671586 0.01195936493 0.15)
(0.9874684948 0.01277280388 0.15)
(0.9935927757 0.01443443786 0.15)
(0.9949490074 0.04483064566 0.15)
(0.9894557562 0.04668422403 0.15)
(0.9955457393 0.04162419383 0.15)
(0.9820182398 0.02666183766 0.15)
(0.9806556064 0.0771690398 0.15)
(0.9806639856 0.08261036592 0.15)
(0.9805457112 0.06604299154 0.15)
(0.9962568575 0.06460032255 0.15)
(0.9911253528 0.06534385169 0.15)
(0.9068038563 0.03380903249 0.15)
(0.9014863552 0.03431681921 0.15)
(0.8961534475 0.03480542555 0.15)
(0.8960686551 0.02991612762 0.15)
(0.8959752884 0.02447628828 0.15)
(0.9003559422 0.08602140462 0.15)
(0.900380729 0.08115850915 0.15)
(0.916866392 0.07526037529 0.15)
(0.9212258746 0.07366758651 0.15)
(0.9215490195 0.0790468825 0.15)
(0.9216376889 0.08469146581 0.15)
(0.9174145279 0.02354872787 0.15)
(0.9174542945 0.02843727208 0.15)
(0.9174314335 0.03277331065 0.15)
(0.9121380006 0.03328409213 0.15)
(0.9325002086 0.09012053384 0.15)
(0.9271230214 0.09026329452 0.15)
(0.9326529997 0.1067596985 0.15)
(0.9273129908 0.1070057005 0.15)
(0.9272792149 0.1014981936 0.15)
(0.9326204316 0.1012620684 0.15)
(0.9165561365 0.1019401917 0.15)
(0.9166077558 0.1074876324 0.15)
(0.7179319469 0.1466447742 0.15)
(0.7125412202 0.1467620139 0.15)
(0.712007491 0.1408338231 0.15)
(0.707435474 0.1532501708 0.15)
(0.7075719552 0.1590755891 0.15)
(0.01151540561 0.1120988048 0.15)
(0.01110006645 0.1170727342 0.15)
(-0.001115404962 0.1261130024 0.15)
(0.6860216002 0.1596658106 0.15)
(0.685894225 0.1538929126 0.15)
(0.6854083118 0.1481457567 0.15)
(0.6758481704 0.1506657688 0.15)
(0.6805591884 0.1494277691 0.15)
(-0.02075452843 0.1958469267 0.15)
(-0.02120227664 0.1898408114 0.15)
(-0.01552501256 0.1899935083 0.15)
(-0.01515414523 0.1959252232 0.15)
(-0.0166596675 0.1776004207 0.15)
(-0.02233973266 0.1773953711 0.15)
(-0.004880148615 0.178108326 0.15)
(0.2547174942 0.2241844317 0.15)
(0.2493071439 0.2247003719 0.15)
(0.2495398149 0.2186404422 0.15)
(0.254650256 0.2186077129 0.15)
(0.2438799216 0.2257458838 0.15)
(0.2655341464 0.2238638935 0.15)
(0.260118276 0.2239745602 0.15)
(0.2600012278 0.218550122 0.15)
(0.2654269244 0.2184786574 0.15)
(0.1893360028 0.2169986711 0.15)
(0.1894550207 0.2221362044 0.15)
(0.18957676 0.2278789143 0.15)
(0.1841565621 0.2276886055 0.15)
(0.1787398218 0.2275200288 0.15)
(0.2004332734 0.2282173838 0.15)
(0.1950047775 0.2280605568 0.15)
(0.3628404873 0.2121057042 0.15)
(0.3629547189 0.2173961719 0.15)
(0.3631096616 0.223433649 0.15)
(0.3577152298 0.2238028222 0.15)
(0.3523213172 0.2241966899 0.15)
(0.373909698 0.2231315641 0.15)
(0.3684992979 0.2231693998 0.15)
(0.1680604461 0.21538803 0.15)
(0.1677958067 0.2214022216 0.15)
(0.1678698475 0.227587932 0.15)
(0.1623963246 0.2280011774 0.15)
(0.1569251244 0.2285248984 0.15)
(0.1733170886 0.2274469992 0.15)
(0.3413273181 0.2142742928 0.15)
(0.3414240752 0.2193520809 0.15)
(0.3415343866 0.2249794055 0.15)
(0.3361288605 0.2253442109 0.15)
(0.3307310048 0.2256932516 0.15)
(0.3469344429 0.2245923101 0.15)
(0.2763785902 0.2237710214 0.15)
(0.2709455959 0.2237808258 0.15)
(0.2708199028 0.2183733731 0.15)
(0.276218505 0.2182025561 0.15)
(0.2872651893 0.2248744275 0.15)
(0.2818180209 0.2240673494 0.15)
(0.2813432203 0.218039998 0.15)
(0.6168363864 0.05305713751 0.15)
(0.6167203824 0.04739692532 0.15)
(0.616601578 0.04169866359 0.15)
(0.621957968 0.04147062122 0.15)
(0.6273132909 0.04123940058 0.15)
(0.6814976949 0.05334361208 0.15)
(0.6813800457 0.04803331178 0.15)
(0.68122634 0.04186437969 0.15)
(0.6865922591 0.04161383204 0.15)
(0.6919511558 0.04131472128 0.15)
(0.6704607959 0.04190408153 0.15)
(0.67585098 0.04199890014 0.15)
(0.7879129888 0.1185088675 0.15)
(0.7926755236 0.1170570476 0.15)
(0.7832905841 0.1199178323 0.15)
(0.8039799086 0.1225702062 0.15)
(0.798534586 0.1225645263 0.15)
(0.7887754205 0.03945325193 0.15)
(0.7941269977 0.03904387066 0.15)
(0.7942314574 0.0441550042 0.15)
(0.7888817439 0.04460545536 0.15)
(0.7994653465 0.03862376509 0.15)
(0.7995641977 0.04370601013 0.15)
(0.7780477415 0.04010459299 0.15)
(0.7834172309 0.03983356577 0.15)
(0.7835280776 0.04505819013 0.15)
(0.7782104222 0.04551106796 0.15)
(0.8423683416 0.0364123502 0.15)
(0.8492251618 0.03918613185 0.15)
(0.8418425811 0.0398545623 0.15)
(0.7029010455 0.05166053912 0.15)
(0.7027979484 0.04651907024 0.15)
(0.7026668857 0.04066593196 0.15)
(0.7080311127 0.0403349021 0.15)
(0.7133953354 0.04000367229 0.15)
(0.6973066033 0.04099427831 0.15)
(0.7672074398 0.0394430113 0.15)
(0.772651341 0.0400471133 0.15)
(0.7731363829 0.04594312036 0.15)
(0.7686454305 0.04632560525 0.15)
(0.7563095666 0.03799366572 0.15)
(0.7617404992 0.03855183017 0.15)
(0.7668968541 0.1249079131 0.15)
(0.9989692829 0.006742723554 0.15)
(0.9991423236 0.01259437912 0.15)
(1.014596181 0.00738238554 0.15)
(1.014677476 0.01315195148 0.15)
(1.009290433 0.01334923139 0.15)
(1.009218484 0.007548462097 0.15)
(1.014636185 0.03021738999 0.15)
(1.00903212 0.03055866353 0.15)
(1.009224711 0.02497108068 0.15)
(1.014689042 0.02464394749 0.15)
(0.9604123326 0.01804469257 0.15)
(0.9603008406 0.01240879091 0.15)
(0.9656691011 0.01212688713 0.15)
(0.9710423276 0.01189088909 0.15)
(0.9645377046 0.06135844679 0.15)
(0.9652024053 0.05729347656 0.15)
(1.014587763 0.03552608076 0.15)
(1.008620653 0.03525054927 0.15)
(1.015381478 0.05282091801 0.15)
(1.009888248 0.0527249652 0.15)
(1.009522027 0.04672403733 0.15)
(1.015107962 0.04694766969 0.15)
(1.000778624 0.05045995017 0.15)
(1.000798343 0.05663089914 0.15)
(0.8854429888 0.03580008049 0.15)
(0.8800835768 0.03631254922 0.15)
(0.02547403283 0.1826427792 0.15)
(0.02962386354 0.184655794 0.15)
(0.01418913579 0.1763200921 0.15)
(0.01308781255 0.1837234778 0.15)
(0.007170325605 0.1838647954 0.15)
(0.00129087869 0.1840106143 0.15)
(0.01858911552 0.1838798743 0.15)
(0.01814179411 0.1787218374 0.15)
(0.723411384 0.1468458402 0.15)
(0.01173727334 0.1063908799 0.15)
(0.01181379462 0.1006346996 0.15)
(0.01754800047 0.1003844106 0.15)
(0.02320728465 0.1001100911 0.15)
(0.03456157195 0.09999489715 0.15)
(0.04018446414 0.09987357646 0.15)
(0.04069165393 0.1056526921 0.15)
(0.03603142839 0.106984945 0.15)
(0.04571208001 0.1043832817 0.15)
(0.02883268483 0.09994630834 0.15)
(0.6643101173 0.1596331815 0.15)
(0.663809011 0.1538294325 0.15)
(0.8360840107 0.1102966721 0.15)
(0.8347180526 0.1035575958 0.15)
(0.8422157507 0.1010857471 0.15)
(0.8467851107 0.09958006589 0.15)
(0.8574781172 0.1093632591 0.15)
(0.8573205705 0.1034873725 0.15)
(0.8514955249 0.09802790946 0.15)
(0.8897494885 0.09757650666 0.15)
(0.8843689138 0.097748445 0.15)
(0.9003942904 0.0915085109 0.15)
(0.9004617724 0.09709682714 0.15)
(0.8951297352 0.09738897177 0.15)
(0.06930635607 0.2061887207 0.15)
(0.06370895609 0.2066138727 0.15)
(0.08039881935 0.2181254931 0.15)
(0.08029918604 0.2121782734 0.15)
(0.07479825893 0.206083557 0.15)
(0.07509208099 0.2001205633 0.15)
(0.2327064018 0.2185598648 0.15)
(0.2328774751 0.2230334573 0.15)
(0.2330051755 0.2280130732 0.15)
(0.2275794759 0.2284174114 0.15)
(0.2221468678 0.2285407328 0.15)
(0.2384362324 0.2270548 0.15)
(0.2110237933 0.2180452222 0.15)
(0.2111459637 0.2230472594 0.15)
(0.2112797727 0.2284601427 0.15)
(0.2058542874 0.228351363 0.15)
(0.2167124743 0.2285315624 0.15)
(0.4062761044 0.2118212193 0.15)
(0.4063954364 0.2175445754 0.15)
(0.4065205724 0.2233061181 0.15)
(0.4011412101 0.2236308647 0.15)
(0.3957252054 0.2238778643 0.15)
(0.4061782122 0.2066894431 0.15)
(0.4277981774 0.2106945737 0.15)
(0.4263362212 0.2036711524 0.15)
(0.4338784624 0.2025091568 0.15)
(0.4388064226 0.2016942904 0.15)
(0.3846779391 0.213086995 0.15)
(0.3852244529 0.2094901125 0.15)
(0.384720849 0.2181726167 0.15)
(0.3848207625 0.2237335452 0.15)
(0.3793560212 0.2233751355 0.15)
(0.3902783095 0.2239400725 0.15)
(0.5885829934 0.1722690669 0.15)
(0.5930737941 0.1712133364 0.15)
(0.6006271362 0.1694375719 0.15)
(0.6054125451 0.1683125334 0.15)
(0.6104853787 0.167109536 0.15)
(0.583637339 0.173431682 0.15)
(0.5464593289 0.1972281262 0.15)
(0.541054507 0.1972458401 0.15)
(0.1541469025 0.07388222914 0.15)
(0.1595953046 0.07422467872 0.15)
(0.1487362822 0.07381444608 0.15)
(0.06793628637 0.09953535498 0.15)
(0.06287465945 0.1005577769 0.15)
(0.0505726129 0.1031967505 0.15)
(0.07323230733 0.09856251702 0.15)
(0.1457270678 0.2179834539 0.15)
(0.1458817132 0.2234359079 0.15)
(0.1460249535 0.229011929 0.15)
(0.1405890053 0.2289763854 0.15)
(0.1351617188 0.2289246562 0.15)
(0.1514747008 0.2288950488 0.15)
(0.1455840856 0.2130381667 0.15)
(0.1022609708 0.2176745484 0.15)
(0.102177603 0.2116636727 0.15)
(0.1021345679 0.2062390787 0.15)
(0.1073581917 0.2072128927 0.15)
(0.1125661799 0.2081566286 0.15)
(0.09711181492 0.2052427375 0.15)
(0.1240574162 0.2173239069 0.15)
(0.1252319278 0.210247455 0.15)
(0.1174964023 0.2090192854 0.15)
(0.283471051 0.07024641616 0.15)
(0.2888847521 0.07041315634 0.15)
(0.2780828802 0.07034249741 0.15)
(0.3267094991 0.07238221052 0.15)
(0.3320784693 0.07208648876 0.15)
(0.3321924212 0.07736365945 0.15)
(0.3268238841 0.07767997666 0.15)
(0.3213393463 0.07266925522 0.15)
(0.321455347 0.07799629386 0.15)
(0.1974514543 0.07426204601 0.15)
(0.2028266249 0.07397579601 0.15)
(0.1920683002 0.07454916401 0.15)
(0.2404639172 0.07207173476 0.15)
(0.2458425096 0.07180551725 0.15)
(0.2350963265 0.07233792099 0.15)
(0.3197096035 0.2159898789 0.15)
(0.3198053656 0.2209727669 0.15)
(0.3199000206 0.2263311612 0.15)
(0.3144855896 0.2266054338 0.15)
(0.3090559298 0.2268214136 0.15)
(0.3253178097 0.2260263112 0.15)
(0.2980952029 0.217292204 0.15)
(0.2981110309 0.2217557575 0.15)
(0.2981931988 0.2267105251 0.15)
(0.2927363109 0.2259644647 0.15)
(0.3036254908 0.2269051807 0.15)
(0.4662591772 0.05719890425 0.15)
(0.4663979903 0.06318280851 0.15)
(0.4665089254 0.06841163194 0.15)
(0.4611492146 0.06876717228 0.15)
(0.4557874539 0.06912035519 0.15)
(0.4772269056 0.06767957691 0.15)
(0.4718654202 0.06804585693 0.15)
(0.4447740335 0.05822665172 0.15)
(0.4449281667 0.06446348983 0.15)
(0.4450469531 0.06982787817 0.15)
(0.4397164293 0.0701920069 0.15)
(0.4346347182 0.070544603 0.15)
(0.4504216983 0.06947382213 0.15)
(0.5092177535 0.054919406 0.15)
(0.5093265452 0.06047444655 0.15)
(0.5094278135 0.06552893465 0.15)
(0.504067061 0.06588249646 0.15)
(0.4987023135 0.0662363423 0.15)
(0.5201369344 0.06480366736 0.15)
(0.514781473 0.06517102099 0.15)
(0.4877357599 0.05604940984 0.15)
(0.4878589132 0.06181179433 0.15)
(0.4879638669 0.06694642267 0.15)
(0.48259239 0.06731321282 0.15)
(0.4933355707 0.06659043013 0.15)
(0.3695907164 0.06984858221 0.15)
(0.3749547689 0.06950925419 0.15)
(0.3750573447 0.07462592854 0.15)
(0.3696957521 0.07498710969 0.15)
(0.3800883008 0.05787267564 0.15)
(0.3802033281 0.0635340086 0.15)
(0.3642286341 0.0701864685 0.15)
(0.3643341385 0.07534729105 0.15)
(0.4125052002 0.06723213633 0.15)
(0.4178907656 0.06720242452 0.15)
(0.4178993773 0.07170333796 0.15)
(0.4125888849 0.07206874591 0.15)
(0.4231423289 0.05727874339 0.15)
(0.4232510323 0.06282958488 0.15)
(0.401574764 0.05700283533 0.15)
(0.4016733601 0.06240595663 0.15)
(0.407135404 0.06748856678 0.15)
(0.4072264565 0.07243774635 0.15)
(0.5031417798 0.1976097507 0.15)
(0.4976740878 0.1973964352 0.15)
(0.4971475769 0.1914309845 0.15)
(0.5086597631 0.1980742647 0.15)
(0.4494995288 0.2107686249 0.15)
(0.4493824886 0.2050591236 0.15)
(0.4492860123 0.1999471221 0.15)
(0.4545636821 0.1990671904 0.15)
(0.4597937948 0.1981612526 0.15)
(0.4440262818 0.200823976 0.15)
(0.4709800399 0.2096632577 0.15)
(0.4707982874 0.2035875357 0.15)
(0.4648094237 0.1972821292 0.15)
(0.6382406188 0.05160629733 0.15)
(0.6381450578 0.04620481259 0.15)
(0.6380482595 0.04079205137 0.15)
(0.6434246984 0.04061369855 0.15)
(0.6488101221 0.04052967771 0.15)
(0.6326766416 0.04100941147 0.15)
(0.6383321505 0.05657827187 0.15)
(0.6169412447 0.05813965634 0.15)
(0.6597979913 0.05154014407 0.15)
(0.6592970222 0.05501974331 0.15)
(0.6597307477 0.04653405145 0.15)
(0.659625607 0.04100994099 0.15)
(0.6650485806 0.04152256267 0.15)
(0.6542085399 0.04063552569 0.15)
(0.5523442237 0.05548750776 0.15)
(0.5537926615 0.06248640781 0.15)
(0.5464636987 0.06299337553 0.15)
(0.5415317799 0.06333452045 0.15)
(0.5306810421 0.05385120899 0.15)
(0.5307722304 0.05913986071 0.15)
(0.5308618417 0.06406806595 0.15)
(0.5254993902 0.06443596663 0.15)
(0.5362242974 0.06370036522 0.15)
(0.5953836909 0.05443888113 0.15)
(0.5954904116 0.05960998038 0.15)
(0.5739217683 0.05580991633 0.15)
(0.5740367411 0.06108806578 0.15)
(0.6421833816 0.1593550267 0.15)
(0.6427207471 0.1653134478 0.15)
(0.642934403 0.1714318085 0.15)
(0.6375799573 0.1717523304 0.15)
(0.632243416 0.1721156855 0.15)
(0.6537922197 0.1714516803 0.15)
(0.6483492092 0.171365674 0.15)
(0.6213578685 0.171871047 0.15)
(0.6159372639 0.1718516845 0.15)
(0.6154102451 0.1659096496 0.15)
(0.6198942651 0.1648168535 0.15)
(0.6268424112 0.1721722278 0.15)
(0.8139964476 0.1103117588 0.15)
(0.8144908153 0.1160804417 0.15)
(0.8146493329 0.1219549376 0.15)
(0.8093359919 0.122327577 0.15)
(0.8254460278 0.1217317904 0.15)
(0.8200224118 0.1217594916 0.15)
(0.8155700833 0.04224784225 0.15)
(0.8102242436 0.04273982117 0.15)
(0.8209189833 0.04175869963 0.15)
(0.8047983012 0.03818496877 0.15)
(0.8048913822 0.04323062702 0.15)
(0.8369292139 0.03589256649 0.15)
(0.8369138902 0.04030166278 0.15)
(0.8316168232 0.04078231398 0.15)
(0.8262679022 0.04127045682 0.15)
(0.7243287705 0.04994744718 0.15)
(0.7242340873 0.04492072679 0.15)
(0.7241258287 0.03934347012 0.15)
(0.7294911185 0.03901541858 0.15)
(0.7348575089 0.03869214496 0.15)
(0.7187605747 0.03967322128 0.15)
(0.7457559056 0.04825387195 0.15)
(0.745666274 0.04337227744 0.15)
(0.7455816184 0.03810889398 0.15)
(0.7509351086 0.03793322414 0.15)
(0.7402231791 0.03838218942 0.15)
(0.9764260327 0.01177269683 0.15)
(0.9856841845 0.05987451729 0.15)
(0.9856302608 0.05431262189 0.15)
(0.9853895765 0.04904951823 0.15)
(0.98114784 0.05096200262 0.15)
(0.9644801171 0.06665932851 0.15)
(0.9645227938 0.07225716826 0.15)
(0.9591218283 0.07241073116 0.15)
(0.9537599686 0.07261648357 0.15)
(0.8908026551 0.03529970908 0.15)
(0.9429850366 0.07282812074 0.15)
(0.9376523267 0.07308827245 0.15)
(0.9373509991 0.06774762639 0.15)
(0.941650289 0.06614630097 0.15)
(0.9323486099 0.07344293559 0.15)
(0.9329931175 0.06936898784 0.15)
(0.9483857828 0.07275928118 0.15)
(0.9255419933 0.07210551602 0.15)
(0.9223286772 0.03230526657 0.15)
(-0.900345 -0.871003 0.15)
(-0.900294 -0.916832 0.15)
(-0.900437 -0.733512 0.15)
(-0.900417 -0.779343 0.15)
(-0.8576 -0.779366 0.15)
(-1.02885 -0.779272 0.15)
(-0.986042 -0.779296 0.15)
(-0.90049 -0.687683 0.15)
(-0.90058 -0.550192 0.15)
(-0.900562 -0.596024 0.15)
(-0.857768 -0.596049 0.15)
(-1.02893 -0.595946 0.15)
(-0.986143 -0.595973 0.15)
(-0.900632 -0.504364 0.15)
(-0.900738562 -0.3662608674 0.15)
(-0.900700718 -0.4126356513 0.15)
(-0.8580282956 -0.4108787314 0.15)
(-1.029 -0.41262 0.15)
(-0.986235 -0.412648 0.15)
(-0.9008199744 -0.3194907551 0.15)
(-0.900930519 -0.1782917586 0.15)
(-0.900923841 -0.225365328 0.15)
(-0.8583551357 -0.2194764162 0.15)
(-1.02906 -0.229292 0.15)
(-0.986305 -0.229321 0.15)
(-0.9009525028 -0.131378323 0.15)
(-0.9008417896 0.007687190847 0.15)
(-0.9009034791 -0.03833606006 0.15)
(-0.8582152646 -0.03053838461 0.15)
(-1.02908 -0.0459608 0.15)
(-0.9863388907 -0.04585984676 0.15)
(-0.9008117648 0.0533389572 0.15)
(-0.9006801531 0.1884022221 0.15)
(-0.900726195 0.1436441365 0.15)
(-0.8578581214 0.1508101153 0.15)
(-1.02908 0.137373 0.15)
(-0.9863267534 0.1373577602 0.15)
(-0.9006845069 0.2329969862 0.15)
(-0.9006797552 0.3670896205 0.15)
(-0.9006908692 0.3222010802 0.15)
(-0.8577621317 0.3262850142 0.15)
(-1.02904 0.32071 0.15)
(-0.986274 0.320682 0.15)
(-0.9006940649 0.4123709091 0.15)
(-0.90058 0.549808 0.15)
(-0.900633 0.503969 0.15)
(-0.8578495434 0.5039654887 0.15)
(-1.02897 0.50405 0.15)
(-0.986191 0.504023 0.15)
(-0.900563 0.595643 0.15)
(-0.900437 0.733155 0.15)
(-0.90049 0.687316 0.15)
(-0.857685 0.687292 0.15)
(-1.02889 0.687391 0.15)
(-0.986093 0.687366 0.15)
(-0.900417 0.77899 0.15)
(-0.900295 0.916502 0.15)
(-0.900346 0.870664 0.15)
(-0.857517 0.870642 0.15)
(-1.02881 0.870732 0.15)
(-0.985992 0.870709 0.15)
(-0.729005 -0.871089 0.15)
(-0.72894 -0.916916 0.15)
(-0.729173 -0.733605 0.15)
(-0.729122 -0.779433 0.15)
(-0.686286 -0.779455 0.15)
(-0.814778 -0.779389 0.15)
(-0.729242 -0.687778 0.15)
(-0.7298478236 -0.5444452498 0.15)
(-0.7295773194 -0.5934674496 0.15)
(-0.6870700915 -0.5897249727 0.15)
(-0.814971 -0.596074 0.15)
(-0.7301608401 -0.4945020458 0.15)
(-0.730895283 -0.3416689842 0.15)
(-0.730707829 -0.3928606254 0.15)
(-0.6884514265 -0.3835596811 0.15)
(-0.8154796318 -0.4068341188 0.15)
(-0.7310287875 -0.2905578614 0.15)
(-0.7309146366 -0.1396109736 0.15)
(-0.7310372524 -0.1893607118 0.15)
(-0.6886855366 -0.1765268427 0.15)
(-0.8158580319 -0.2112694515 0.15)
(-0.7307423782 -0.09061195763 0.15)
(-0.7299102795 0.05114332394 0.15)
(-0.7302250028 0.004816631455 0.15)
(-0.6875751825 0.01902301738 0.15)
(-0.8155415378 -0.02046196307 0.15)
(-0.7296063128 0.0965081613 0.15)
(-0.7287711888 0.2271502809 0.15)
(-0.7290206826 0.1844607288 0.15)
(-0.6860199226 0.198233526 0.15)
(-0.8149467364 0.1602718507 0.15)
(-0.7285954335 0.2690854111 0.15)
(-0.7284276964 0.3918074834 0.15)
(-0.7284204451 0.3512477205 0.15)
(-0.6851627231 0.3626287285 0.15)
(-0.8147341929 0.332695498 0.15)
(-0.7285191382 0.4322820171 0.15)
(-0.7289888073 0.5556518871 0.15)
(-0.7288207482 0.5139511659 0.15)
(-0.6855710738 0.5207108562 0.15)
(-0.8149737858 0.505331586 0.15)
(-0.7291532254 0.5982695256 0.15)
(-0.729175 0.733074 0.15)
(-0.729243 0.687221 0.15)
(-0.6863618283 0.6878864962 0.15)
(-0.814875 0.687268 0.15)
(-0.729129 0.778979 0.15)
(-0.72839 0.918285 0.15)
(-0.728927 0.871522 0.15)
(-0.685475 0.872713 0.15)
(-0.814686 0.87063 0.15)
(-0.557431 -0.871881 0.15)
(-0.55714 -0.918199 0.15)
(-0.5582911322 -0.7289949577 0.15)
(-0.5578708808 -0.7782894757 0.15)
(-0.5150641624 -0.7770717753 0.15)
(-0.643444 -0.779476 0.15)
(-0.5588470442 -0.6779301103 0.15)
(-0.5607074741 -0.5167625431 0.15)
(-0.5601079999 -0.5714798709 0.15)
(-0.5178987512 -0.5639856308 0.15)
(-0.6446709027 -0.5846337421 0.15)
(-0.5612419864 -0.4615259151 0.15)
(-0.5620970983 -0.2960075067 0.15)
(-0.5619547087 -0.350844625 0.15)
(-0.5198089356 -0.3396035323 0.15)
(-0.6462539287 -0.3732004848 0.15)
(-0.5621049241 -0.2418515159 0.15)
(-0.5612967631 -0.08509199103 0.15)
(-0.561691853 -0.1362745621 0.15)
(-0.5193325958 -0.1238480443 0.15)
(-0.6463535742 -0.1630760193 0.15)
(-0.5608145988 -0.03507368519 0.15)
(-0.5589533789 0.1078493382 0.15)
(-0.5596211329 0.06140149367 0.15)
(-0.5169592729 0.07367981002 0.15)
(-0.6449272758 0.03355411047 0.15)
(-0.5582820797 0.1530990032 0.15)
(-0.5563868468 0.2817006311 0.15)
(-0.5569757629 0.2400206209 0.15)
(-0.5139813223 0.2524065432 0.15)
(-0.6430052855 0.2124360002 0.15)
(-0.5558859613 0.3222179093 0.15)
(-0.5550169817 0.4375722921 0.15)
(-0.5551851339 0.4000373564 0.15)
(-0.5118539573 0.4121884094 0.15)
(-0.6418589791 0.374848678 0.15)
(-0.5549953767 0.4744224592 0.15)
(-0.555691244 0.5837253603 0.15)
(-0.555340928 0.5471121796 0.15)
(-0.5118587135 0.5571003252 0.15)
(-0.6422267412 0.5287067153 0.15)
(-0.5560877114 0.6211581168 0.15)
(-0.5556331835 0.7419077232 0.15)
(-0.5560044648 0.7007809518 0.15)
(-0.511712696 0.7070047644 0.15)
(-0.6433606434 0.6901575555 0.15)
(-0.5556938099 0.7841857546 0.15)
(-0.555747 0.919642 0.15)
(-0.555785 0.873881 0.15)
(-0.512818 0.874046 0.15)
(-0.641892 0.873428 0.15)
(-0.3836831798 -0.8724500168 0.15)
(-0.3833889766 -0.9203142405 0.15)
(-0.3859360734 -0.7150661818 0.15)
(-0.384994168 -0.7695612406 0.15)
(-0.3424200586 -0.765808558 0.15)
(-0.4714414002 -0.7756488786 0.15)
(-0.3870010489 -0.6590181054 0.15)
(-0.3915035019 -0.4847282229 0.15)
(-0.3898652321 -0.5433701425 0.15)
(-0.3463287888 -0.5367919124 0.15)
(-0.4756960473 -0.556377971 0.15)
(-0.3923749901 -0.4255685634 0.15)
(-0.3930822587 -0.2542039825 0.15)
(-0.393101998 -0.3100360593 0.15)
(-0.3503590688 -0.3028614723 0.15)
(-0.4776395836 -0.3287821096 0.15)
(-0.3928786245 -0.1997318014 0.15)
(-0.3913408139 -0.04485726802 0.15)
(-0.3919911115 -0.09500950894 0.15)
(-0.3493903355 -0.08932942802 0.15)
(-0.4769370144 -0.1126144773 0.15)
(-0.3906015783 0.004029784328 0.15)
(-0.3880020599 0.1450021351 0.15)
(-0.3889163413 0.09880842539 0.15)
(-0.346209946 0.1023069898 0.15)
(-0.4742889668 0.08424584813 0.15)
(-0.3870680837 0.1904848907 0.15)
(-0.3842806066 0.3224056879 0.15)
(-0.3851855453 0.27921052 0.15)
(-0.342336821 0.2841512667 0.15)
(-0.4710108255 0.2632677442 0.15)
(-0.3834079237 0.3644973928 0.15)
(-0.3813545887 0.4823414435 0.15)
(-0.3819212631 0.4446178576 0.15)
(-0.3386306082 0.4523645751 0.15)
(-0.4685578114 0.4236994289 0.15)
(-0.3806693935 0.5192287023 0.15)
(-0.3789154873 0.6245551348 0.15)
(-0.3788673797 0.5905747377 0.15)
(-0.3349739845 0.5994984645 0.15)
(-0.4681766585 0.5677796634 0.15)
(-0.379394882 0.6581082856 0.15)
(-0.3815924984 0.7613318822 0.15)
(-0.3808017695 0.7260468586 0.15)
(-0.3372172799 0.7323530143 0.15)
(-0.4679676273 0.7132101286 0.15)
(-0.3823642982 0.7980729141 0.15)
(-0.383782058 0.9205857066 0.15)
(-0.3835408583 0.8774026867 0.15)
(-0.3402688357 0.8794509636 0.15)
(-0.469805604 0.8745537183 0.15)
(-0.2123916826 -0.8661030408 0.15)
(-0.2116403298 -0.9175292772 0.15)
(-0.2157851871 -0.6973908755 0.15)
(-0.2146156208 -0.7552918339 0.15)
(-0.1717945084 -0.7530366661 0.15)
(-0.299862989 -0.762070825 0.15)
(-0.2169145603 -0.6383302621 0.15)
(-0.2193151155 -0.4595888043 0.15)
(-0.2187193012 -0.5188911061 0.15)
(-0.1761075077 -0.5146385414 0.15)
(-0.3036721755 -0.5301151257 0.15)
(-0.2196746135 -0.4012446754 0.15)
(-0.2203092906 -0.2348709157 0.15)
(-0.2200316491 -0.2888874351 0.15)
(-0.1769820967 -0.2856973111 0.15)
(-0.3068889918 -0.2971672557 0.15)
(-0.2204558242 -0.1831317653 0.15)
(-0.220015114 -0.03836003844 0.15)
(-0.2203177113 -0.0852341209 0.15)
(-0.1764503813 -0.08735559996 0.15)
(-0.3065872028 -0.08616346369 0.15)
(-0.2194867078 0.008228147924 0.15)
(-0.1957237908 0.1466510506 0.15)
(-0.1961956797 0.1237308876 0.15)
(-0.3034879781 0.1031156065 0.15)
(-0.1952421842 0.1697004019 0.15)
(-0.2121780864 0.3340115007 0.15)
(-0.2136489755 0.2873151015 0.15)
(-0.1704034921 0.2875971384 0.15)
(-0.2994828948 0.287047242 0.15)
(-0.210452775 0.3806889455 0.15)
(-0.2054584944 0.5098693524 0.15)
(-0.2064756699 0.4691972752 0.15)
(-0.2950001165 0.4592330882 0.15)
(-0.2048826325 0.5483567443 0.15)
(-0.2046510602 0.6529194115 0.15)
(-0.2044909071 0.6196030446 0.15)
(-0.1610628429 0.624086934 0.15)
(-0.2913936307 0.6072998563 0.15)
(-0.2050430943 0.6852230042 0.15)
(-0.2069447302 0.7803389036 0.15)
(-0.2062241267 0.7488223312 0.15)
(-0.1622447445 0.7529470855 0.15)
(-0.2936476348 0.7383272208 0.15)
(-0.2077779228 0.8141923571 0.15)
(-0.2101781288 0.9260246614 0.15)
(-0.2094781534 0.8866265091 0.15)
(-0.1661066634 0.8892311958 0.15)
(-0.2967333759 0.8817889351 0.15)
(-0.04058325972 -0.8600393194 0.15)
(-0.03958900728 -0.9137117609 0.15)
(-0.04424169824 -0.6869777355 0.15)
(-0.04300432087 -0.7462026073 0.15)
(5.084185951e-05 -0.745175761 0.15)
(-0.1290898476 -0.7501316723 0.15)
(-0.0453817821 -0.6269540533 0.15)
(-0.04759260918 -0.4479823862 0.15)
(-0.04709440488 -0.5068706052 0.15)
(-0.004032006247 -0.5055953989 0.15)
(-0.133231344 -0.5122268309 0.15)
(-0.04792174258 -0.39056823 0.15)
(-0.04741836721 -0.2312851978 0.15)
(-0.04798578812 -0.2818401617 0.15)
(-0.004344398475 -0.2815941708 0.15)
(-0.1340829885 -0.2835224244 0.15)
(-0.04666883639 -0.183386893 0.15)
(-0.02302974225 -0.06968961759 0.15)
(-0.1323376265 -0.08935329693 0.15)
(-0.08834831778 -0.04488213188 0.15)
(-0.08831111584 -0.02181881809 0.15)
(-0.1101022978 -0.02106559832 0.15)
(-0.1102965092 -0.04405159467 0.15)
(-0.1112839296 0.05046724471 0.15)
(-0.1111615606 0.02664920997 0.15)
(-0.08866952495 0.02481601955 0.15)
(-0.1758723063 0.05303116689 0.15)
(-0.1760843814 0.0295285319 0.15)
(-0.1546366114 0.02891156079 0.15)
(-0.1543033766 0.05199235579 0.15)
(-0.08812525738 0.1700457671 0.15)
(-0.1097129739 0.169477418 0.15)
(-0.1102858288 0.1451327296 0.15)
(-0.1070746999 0.2410607773 0.15)
(-0.1080594042 0.2173460362 0.15)
(-0.172011987 0.2405403521 0.15)
(-0.1726800691 0.2171373245 0.15)
(-0.1512462638 0.2169503419 0.15)
(-0.1504882846 0.2405378207 0.15)
(-0.07973500721 0.3578227918 0.15)
(-0.1014254243 0.3580927867 0.15)
(-0.102375382 0.3350316596 0.15)
(-0.07796073599 0.4263656407 0.15)
(-0.1211408495 0.4270234374 0.15)
(-0.1007307112 0.3810022455 0.15)
(-0.07914249602 0.3806713855 0.15)
(-0.1644979931 0.4272823504 0.15)
(-0.03097463613 0.5572756163 0.15)
(-0.02991911038 0.667894517 0.15)
(-0.02992210424 0.6331736378 0.15)
(0.01336277307 0.6346394333 0.15)
(-0.1173886366 0.6275760919 0.15)
(-0.03023708095 0.7009840102 0.15)
(-0.03271857979 0.7956508402 0.15)
(-0.03168183401 0.7643019099 0.15)
(0.01164323719 0.7661817319 0.15)
(-0.1185093155 0.7576293764 0.15)
(-0.03387539733 0.8275696927 0.15)
(-0.03725085057 0.9322577389 0.15)
(-0.0362268033 0.8953811196 0.15)
(0.007125428948 0.8965769931 0.15)
(-0.1227823929 0.8916197527 0.15)
(0.1318911359 -0.8578623712 0.15)
(0.1329597052 -0.9121834621 0.15)
(0.128137344 -0.6836879144 0.15)
(0.1293835146 -0.7431212332 0.15)
(0.1724542964 -0.7425370823 0.15)
(0.04312987074 -0.7448273774 0.15)
(0.1270120288 -0.623633513 0.15)
(0.1249949969 -0.445743095 0.15)
(0.1253950096 -0.5040681647 0.15)
(0.1684924355 -0.5038337386 0.15)
(0.03906561505 -0.5051643986 0.15)
(0.1248949964 -0.3891144672 0.15)
(0.1255692664 -0.2826885862 0.15)
(0.1687301214 -0.2832194814 0.15)
(0.03902617135 -0.281881598 0.15)
(0.0830852672 -0.2327982159 0.15)
(0.08396101439 -0.1862913394 0.15)
(0.08486940108 -0.140702361 0.15)
(0.06312612163 -0.1402302103 0.15)
(0.04139508153 -0.1397563164 0.15)
(-0.002133339707 -0.1387541222 0.15)
(0.01968236352 -0.1392768064 0.15)
(0.04320993589 -0.04863633218 0.15)
(0.04362546217 -0.02586603556 0.15)
(0.04398746334 -0.003091612927 0.15)
(0.03304494361 -0.002820539911 0.15)
(0.02200462341 -0.002510402486 0.15)
(5.921852586e-05 -0.001916976236 0.15)
(0.09454629342 0.3550917738 0.15)
(0.07278446224 0.3554902982 0.15)
(0.09611768455 0.4233998354 0.15)
(0.07443623454 0.4238346783 0.15)
(0.07385807655 0.401040795 0.15)
(0.09557633891 0.4006251826 0.15)
(0.009236538186 0.4250344491 0.15)
(0.008643587061 0.4022248733 0.15)
(0.03048125452 0.4018667637 0.15)
(0.03106038051 0.4246686284 0.15)
(0.1426149283 0.5572272982 0.15)
(0.1437218805 0.6722024917 0.15)
(0.1436466025 0.6362836137 0.15)
(0.1868224369 0.6358171428 0.15)
(0.05669067752 0.6351785314 0.15)
(0.1434899366 0.7062108369 0.15)
(0.1411237332 0.8018469916 0.15)
(0.1421547157 0.7704690097 0.15)
(0.1853475954 0.7703890554 0.15)
(0.05501022707 0.7671439409 0.15)
(0.1399309869 0.8335212153 0.15)
(0.1362221951 0.9359463015 0.15)
(0.1373933001 0.9000508189 0.15)
(0.1805529018 0.9001106088 0.15)
(0.0508045893 0.8982804927 0.15)
(0.3040848641 -0.856392983 0.15)
(0.3051984042 -0.91093334 0.15)
(0.3002866527 -0.6823752376 0.15)
(0.3015324662 -0.7416241798 0.15)
(0.3445140121 -0.7413826111 0.15)
(0.2155101961 -0.7421584715 0.15)
(0.2991744776 -0.6226252071 0.15)
(0.2972541094 -0.4462399602 0.15)
(0.2976142797 -0.5039849229 0.15)
(0.3406067125 -0.5040987814 0.15)
(0.211566941 -0.5038086953 0.15)
(0.2971984793 -0.3902383798 0.15)
(0.2979630301 -0.2851075644 0.15)
(0.3409831751 -0.2857561352 0.15)
(0.2118494008 -0.2838240801 0.15)
(0.2556714458 -0.2357866692 0.15)
(0.2565944419 -0.1897268745 0.15)
(0.2575424783 -0.1441597345 0.15)
(0.2360045863 -0.1437379121 0.15)
(0.2144647158 -0.1433150479 0.15)
(0.1713271768 -0.1424591024 0.15)
(0.1929069123 -0.142888806 0.15)
(0.2163536667 -0.05228164032 0.15)
(0.2168246028 -0.02954951685 0.15)
(0.2172972862 -0.006829432778 0.15)
(0.2065115647 -0.006607666574 0.15)
(0.1957298423 -0.00638598445 0.15)
(0.174155442 -0.005940389424 0.15)
(0.1849421422 -0.006163176427 0.15)
(0.2682154014 0.3514874312 0.15)
(0.2465387385 0.3519691838 0.15)
(0.2460579728 0.3292452688 0.15)
(0.2696504781 0.4196963363 0.15)
(0.2479830234 0.4201878975 0.15)
(0.2475018163 0.3974429871 0.15)
(0.2691723334 0.3969543622 0.15)
(0.1829235787 0.4216117697 0.15)
(0.1824291642 0.3988571348 0.15)
(0.2041212232 0.3983940627 0.15)
(0.2046105757 0.4211458034 0.15)
(0.3157093128 0.5537528085 0.15)
(0.3168018704 0.6700952367 0.15)
(0.3167190146 0.6337078993 0.15)
(0.3599049363 0.6323155683 0.15)
(0.2301443973 0.6354929349 0.15)
(0.3165786764 0.7045602832 0.15)
(0.3142152593 0.8013742259 0.15)
(0.3152499946 0.7696471227 0.15)
(0.358372527 0.7682728245 0.15)
(0.2287064733 0.7707594857 0.15)
(0.3130100374 0.8333187626 0.15)
(0.3092021294 0.9360921337 0.15)
(0.3104099986 0.9001642868 0.15)
(0.3535239046 0.899306337 0.15)
(0.223896593 0.9006061091 0.15)
(0.4760373859 -0.8550686347 0.15)
(0.4771936196 -0.9097585177 0.15)
(0.4721937474 -0.6813280656 0.15)
(0.4734423197 -0.7403641831 0.15)
(0.5164274483 -0.7400501335 0.15)
(0.3874808248 -0.7410443007 0.15)
(0.4710915895 -0.6219002388 0.15)
(0.4692525326 -0.4469852238 0.15)
(0.4695792761 -0.5041757122 0.15)
(0.5125819424 -0.5042301756 0.15)
(0.3835859249 -0.5041224835 0.15)
(0.4692325008 -0.3915721667 0.15)
(0.4700684718 -0.2876271105 0.15)
(0.5131098301 -0.2882642947 0.15)
(0.3839974233 -0.2863775061 0.15)
(0.4278076214 -0.2388546124 0.15)
(0.4287418946 -0.1930371668 0.15)
(0.4296876162 -0.1474849813 0.15)
(0.4081615324 -0.1470724092 0.15)
(0.3866404685 -0.1466589424 0.15)
(0.3436223774 -0.1458305138 0.15)
(0.365126403 -0.1462456228 0.15)
(0.3885198656 -0.05569935032 0.15)
(0.3889871508 -0.03299815695 0.15)
(0.3782282551 -0.03278495652 0.15)
(0.3784617926 -0.02143935873 0.15)
(0.3892196464 -0.0216545377 0.15)
(0.3462112471 -0.02079330551 0.15)
(0.3569521046 -0.02100812714 0.15)
(0.4413451536 0.3473723131 0.15)
(0.419758438 0.3478981848 0.15)
(0.4426948406 0.4155159987 0.15)
(0.4211112294 0.4160468062 0.15)
(0.4206634143 0.3933201979 0.15)
(0.4422460467 0.3927904112 0.15)
(0.356274604 0.4176500343 0.15)
(0.3558146654 0.3949176796 0.15)
(0.3774284171 0.39439324 0.15)
(0.3778863141 0.4171236372 0.15)
(0.4883544974 0.5484845278 0.15)
(0.4892113017 0.663393128 0.15)
(0.4892055004 0.627317999 0.15)
(0.5322036229 0.6252480746 0.15)
(0.4030182936 0.6309954065 0.15)
(0.4889118966 0.6977291762 0.15)
(0.48636273 0.7952670081 0.15)
(0.4874298101 0.7631377268 0.15)
(0.5303565678 0.760901682 0.15)
(0.4014233973 0.7672307251 0.15)
(0.4851474091 0.8277802371 0.15)
(0.4814415238 0.9328760318 0.15)
(0.4825915086 0.896090178 0.15)
(0.5255274483 0.8946901423 0.15)
(0.396583563 0.8987825033 0.15)
(0.647933987 -0.8534152361 0.15)
(0.6491375493 -0.9082946507 0.15)
(0.6440528772 -0.6799677501 0.15)
(0.6452964472 -0.7387651168 0.15)
(0.6882921403 -0.7386688559 0.15)
(0.5594069558 -0.739717729 0.15)
(0.6429700019 -0.6209061343 0.15)
(0.6412443502 -0.4476535449 0.15)
(0.6415271445 -0.5042203231 0.15)
(0.6845228209 -0.5043803652 0.15)
(0.5555793285 -0.5042720285 0.15)
(0.6412714198 -0.3928931194 0.15)
(0.6421958048 -0.2902022353 0.15)
(0.6852202245 -0.2908228341 0.15)
(0.5561480682 -0.288898627 0.15)
(0.599995811 -0.2419466529 0.15)
(0.6009428704 -0.1962755682 0.15)
(0.6018896547 -0.1507204044 0.15)
(0.5803682755 -0.1503219343 0.15)
(0.5588419395 -0.1499213595 0.15)
(0.5157943714 -0.1491153162 0.15)
(0.5373166453 -0.1495188062 0.15)
(0.5607158031 -0.05903466723 0.15)
(0.5611802479 -0.03637342298 0.15)
(0.550417227 -0.03616613714 0.15)
(0.5506482394 -0.02484549179 0.15)
(0.5614112392 -0.0250537774 0.15)
(0.5183683639 -0.02421482546 0.15)
(0.5291273226 -0.02442502655 0.15)
(0.6138659788 0.3428389023 0.15)
(0.5923077706 0.3434361905 0.15)
(0.6151323057 0.4109663365 0.15)
(0.5935977979 0.4115491233 0.15)
(0.5931701676 0.3888310927 0.15)
(0.614718378 0.3882340147 0.15)
(0.528929163 0.4132928513 0.15)
(0.5284895143 0.3905740731 0.15)
(0.5500472902 0.3900038 0.15)
(0.5504800035 0.4127257247 0.15)
(0.6604956979 0.5412483039 0.15)
(0.6609633131 0.6533747825 0.15)
(0.6610945295 0.6179408194 0.15)
(0.7039565891 0.6145758284 0.15)
(0.5752035187 0.62255398 0.15)
(0.6605593556 0.6873971516 0.15)
(0.6578797036 0.7858242995 0.15)
(0.6589724243 0.7530826066 0.15)
(0.7017885153 0.7504442565 0.15)
(0.57328585 0.758763863 0.15)
(0.6566720342 0.8192026737 0.15)
(0.653210143 0.928137556 0.15)
(0.6542306865 0.8899111292 0.15)
(0.6971547407 0.8886081119 0.15)
(0.5684660318 0.8935815826 0.15)
(0.8197391452 -0.8515168822 0.15)
(0.8209966315 -0.9066136803 0.15)
(0.8158173222 -0.6783176718 0.15)
(0.8170557182 -0.7368841862 0.15)
(0.8601536023 -0.737605665 0.15)
(0.7312475736 -0.7382543578 0.15)
(0.8147561023 -0.6196252972 0.15)
(0.8131661695 -0.4481106634 0.15)
(0.8133962701 -0.5040167803 0.15)
(0.8563909013 -0.5042412277 0.15)
(0.7275017744 -0.5043707334 0.15)
(0.8132503724 -0.3940551147 0.15)
(0.8142849251 -0.2927787598 0.15)
(0.8573130955 -0.293474454 0.15)
(0.7282509427 -0.2914688878 0.15)
(0.772125921 -0.2451226498 0.15)
(0.7730717661 -0.1994694446 0.15)
(0.7515544701 -0.1990670595 0.15)
(0.7740164129 -0.1538732268 0.15)
(0.7524969492 -0.1534787979 0.15)
(0.7520258988 -0.1762639307 0.15)
(0.7735442787 -0.1766623377 0.15)
(0.687947451 -0.1523006991 0.15)
(0.7305164539 -0.1758687121 0.15)
(0.7309894408 -0.1530866207 0.15)
(0.7094679355 -0.1526941493 0.15)
(0.7328538439 -0.06222173439 0.15)
(0.7333183846 -0.03960350166 0.15)
(0.7225541538 -0.03940619259 0.15)
(0.7227815152 -0.02811647733 0.15)
(0.7335467248 -0.02831480719 0.15)
(0.6904980519 -0.02751374175 0.15)
(0.7012532006 -0.02771486075 0.15)
(0.7859787838 0.3377379427 0.15)
(0.7644824332 0.3384229501 0.15)
(0.7872275351 0.4058857509 0.15)
(0.7442412227 0.4072266248 0.15)
(0.743394834 0.3617843756 0.15)
(0.7649014557 0.3611121553 0.15)
(0.786394849 0.3604292106 0.15)
(0.701218804 0.4085152461 0.15)
(0.7003705419 0.3630790377 0.15)
(0.7218906231 0.3624285392 0.15)
(0.8322538575 0.5314907888 0.15)
(0.8322394564 0.6398678017 0.15)
(0.8325113681 0.6052879823 0.15)
(0.8753136275 0.6021915723 0.15)
(0.7468760047 0.6121412417 0.15)
(0.8317698746 0.6743368103 0.15)
(0.8289681225 0.7745377823 0.15)
(0.8300577952 0.740841974 0.15)
(0.8727238801 0.7371704313 0.15)
(0.7445386763 0.7468909843 0.15)
(0.827805974 0.8091604145 0.15)
(0.8248693553 0.9232988407 0.15)
(0.8256661495 0.8831768662 0.15)
(0.8684469449 0.8812024724 0.15)
(0.7399387709 0.8862745167 0.15)
(0.9923440234 -0.8475063654 0.15)
(0.9936586338 -0.90286934 0.15)
(0.9884016515 -0.6745044796 0.15)
(0.9896234022 -0.7328376014 0.15)
(1.032111386 -0.7295499425 0.15)
(0.9029357114 -0.7360100996 0.15)
(0.9873780029 -0.6162022278 0.15)
(0.985989223 -0.4466142865 0.15)
(0.9861400584 -0.5017742882 0.15)
(1.028673825 -0.4989230886 0.15)
(0.8993798215 -0.5044547489 0.15)
(0.9861569136 -0.393371583 0.15)
(0.9873620066 -0.2938000072 0.15)
(1.029927437 -0.291383027 0.15)
(0.9003364678 -0.294183724 0.15)
(0.9443933079 -0.248532485 0.15)
(0.9452134001 -0.2028186231 0.15)
(0.9236778861 -0.2023788468 0.15)
(0.9461533516 -0.1571602929 0.15)
(0.9246227313 -0.1567256206 0.15)
(0.9241499665 -0.1795447248 0.15)
(0.9456805237 -0.1799823965 0.15)
(0.8600927846 -0.1554739165 0.15)
(0.859620293 -0.1782800236 0.15)
(0.881131317 -0.1786952798 0.15)
(0.8816039137 -0.1558841738 0.15)
(0.9049848206 -0.0653166327 0.15)
(0.9052127707 -0.05399892362 0.15)
(0.8944605371 -0.0538018668 0.15)
(0.8942316294 -0.0651175553 0.15)
(0.8949099458 -0.03123732785 0.15)
(0.9056611796 -0.03143436365 0.15)
(0.8626301663 -0.03064967304 0.15)
(0.8733704865 -0.0308424785 0.15)
(0.9115325649 0.1408808917 0.15)
(0.9008511131 0.1413998318 0.15)
(0.9119430479 0.1743912673 0.15)
(0.9012593905 0.1749004516 0.15)
(0.9011108744 0.1636976982 0.15)
(0.9117997871 0.1632006061 0.15)
(0.879713557 0.164668687 0.15)
(0.8798606949 0.1758534654 0.15)
(1.000750299 0.352488678 0.15)
(1.003103097 0.4799315901 0.15)
(1.002448807 0.4396825017 0.15)
(1.04536784 0.4371454721 0.15)
(0.9167960575 0.4447275131 0.15)
(1.003447099 0.5182912274 0.15)
(1.003108345 0.6248537452 0.15)
(1.003526099 0.5906375602 0.15)
(1.046138463 0.5859614347 0.15)
(0.9180429678 0.5982507196 0.15)
(1.002463718 0.6585647209 0.15)
(0.9996058055 0.7614232975 0.15)
(1.000676896 0.7264379128 0.15)
(1.043358263 0.7234081547 0.15)
(0.9154415319 0.7341499749 0.15)
(0.9985520576 0.7978255131 0.15)
(0.9964418174 0.9193666909 0.15)
(0.9969650083 0.877044848 0.15)
(1.039771918 0.8753877018 0.15)
(0.91131313 0.8799717055 0.15)
(1.164541695 -0.8482417804 0.15)
(1.165766866 -0.9026628497 0.15)
(1.160754059 -0.6779097385 0.15)
(1.161946049 -0.7354272258 0.15)
(1.205395243 -0.7385922231 0.15)
(1.075288557 -0.7308511959 0.15)
(1.159734348 -0.6202854168 0.15)
(1.158200843 -0.4513784908 0.15)
(1.1584265 -0.5065904358 0.15)
(1.201850687 -0.5107195429 0.15)
(1.071829896 -0.5006889751 0.15)
(1.158270863 -0.397731411 0.15)
(1.159220626 -0.2960440065 0.15)
(1.202404816 -0.2987632691 0.15)
(1.072987767 -0.2925450199 0.15)
(1.11695249 -0.2469813685 0.15)
(1.117915581 -0.2011524763 0.15)
(1.118878996 -0.1553296029 0.15)
(1.097353753 -0.1548770397 0.15)
(1.07582851 -0.1544244764 0.15)
(1.075346792 -0.1773364129 0.15)
(1.032788022 -0.15351956 0.15)
(1.032306304 -0.1764314966 0.15)
(1.053831547 -0.1768840599 0.15)
(1.054313265 -0.1539721233 0.15)
(1.077755362 -0.06277772995 0.15)
(1.078237059 -0.03986679318 0.15)
(1.067479436 -0.03964061665 0.15)
(1.078718777 -0.01695485663 0.15)
(1.067961155 -0.01672868009 0.15)
(1.067720306 -0.02818414848 0.15)
(1.078477929 -0.02841032502 0.15)
(1.03543744 -0.02750540867 0.15)
(1.046195063 -0.02773158521 0.15)
(1.046435912 -0.01627611682 0.15)
(1.125141242 0.1425212732 0.15)
(1.103615999 0.1429738365 0.15)
(1.126586376 0.2112560831 0.15)
(1.105061133 0.2117086463 0.15)
(1.104579421 0.1887970097 0.15)
(1.126104664 0.1883444465 0.15)
(1.061538933 0.1897019261 0.15)
(1.062020644 0.2126135627 0.15)
(1.17245532 0.3458246767 0.15)
(1.174256702 0.4661417999 0.15)
(1.173849011 0.4279157487 0.15)
(1.216736675 0.4241734295 0.15)
(1.087954814 0.4335952901 0.15)
(1.174428852 0.5027750988 0.15)
(1.173471858 0.6067336273 0.15)
(1.174025215 0.57265059 0.15)
(1.216780035 0.5687631439 0.15)
(1.088801388 0.5820572342 0.15)
(1.172827257 0.6418219943 0.15)
(1.170178098 0.7498268115 0.15)
(1.171094097 0.7127456896 0.15)
(1.213705067 0.7089220207 0.15)
(1.085897888 0.719309334 0.15)
(1.169486524 0.7888148596 0.15)
(1.16818 0.91701 0.15)
(1.16832406 0.87206699 0.15)
(1.211172575 0.8712389289 0.15)
(1.082633396 0.8742720405 0.15)
(1.338292141 -0.858451296 0.15)
(1.339188653 -0.9102026443 0.15)
(1.335101654 -0.6952185361 0.15)
(1.33616775 -0.7506239782 0.15)
(1.379838572 -0.7551148544 0.15)
(1.248930265 -0.7422454203 0.15)
(1.334128627 -0.6393166053 0.15)
(1.332274221 -0.4723338906 0.15)
(1.332678717 -0.5275254236 0.15)
(1.376440235 -0.5343709628 0.15)
(1.245376308 -0.5156165698 0.15)
(1.332105925 -0.4180023914 0.15)
(1.332936192 -0.2619205522 0.15)
(1.332457366 -0.3127005178 0.15)
(1.37598334 -0.3194640394 0.15)
(1.24567196 -0.302373365 0.15)
(1.33357524 -0.2123680987 0.15)
(1.33609279 -0.06960960726 0.15)
(1.335187403 -0.116415136 0.15)
(1.378409055 -0.1210949782 0.15)
(1.248983872 -0.112221899 0.15)
(1.337029618 -0.02329937351 0.15)
(1.339899158 0.1137621391 0.15)
(1.338940717 0.06838010069 0.15)
(1.382022406 0.06455336895 0.15)
(1.209787083 0.07197642043 0.15)
(1.252837569 0.07107129389 0.15)
(1.340848802 0.1586729374 0.15)
(1.34346621 0.2884730436 0.15)
(1.342657257 0.2462328254 0.15)
(1.385600855 0.2404774057 0.15)
(1.256675029 0.2535398748 0.15)
(1.344169796 0.3294999125 0.15)
(1.345334331 0.4452763566 0.15)
(1.345130783 0.4078161507 0.15)
(1.387823528 0.4006917265 0.15)
(1.259587736 0.4195902227 0.15)
(1.345331648 0.4818510386 0.15)
(1.344144932 0.5892343425 0.15)
(1.34471664 0.553487978 0.15)
(1.387263389 0.5475171045 0.15)
(1.259483121 0.5642190404 0.15)
(1.343448599 0.6254314131 0.15)
(1.341216232 0.7403956668 0.15)
(1.341914375 0.7006714657 0.15)
(1.384615742 0.6977770332 0.15)
(1.256472114 0.7063543999 0.15)
(1.340665681 0.7819022173 0.15)
(1.34028 0.916667 0.15)
(1.34028 0.870833 0.15)
(1.38333 0.870833 0.15)
(1.254175998 0.8708716071 0.15)
(1.512081535 -0.8683062015 0.15)
(1.512420085 -0.9162082831 0.15)
(1.510109968 -0.7162588311 0.15)
(1.510858963 -0.7681160389 0.15)
(1.554454468 -0.7717792893 0.15)
(1.423532266 -0.7596281907 0.15)
(1.509353885 -0.663571788 0.15)
(1.507547773 -0.5033021643 0.15)
(1.508032074 -0.5568191919 0.15)
(1.55192552 -0.5643190143 0.15)
(1.420272048 -0.5416484504 0.15)
(1.507217198 -0.4500243137 0.15)
(1.507228397 -0.2935292493 0.15)
(1.507059234 -0.3449884662 0.15)
(1.550862574 -0.3545749931 0.15)
(1.419606986 -0.327208866 0.15)
(1.507547568 -0.2428998792 0.15)
(1.509206381 -0.09628723216 0.15)
(1.508558825 -0.1442788093 0.15)
(1.552063663 -0.1542304408 0.15)
(1.421723736 -0.1274335249 0.15)
(1.509917854 -0.04915466647 0.15)
(1.512214074 0.08721652716 0.15)
(1.511443425 0.04259634107 0.15)
(1.554625517 0.0327070673 0.15)
(1.425142152 0.05882360349 0.15)
(1.512960826 0.1309824004 0.15)
(1.514829073 0.2570197792 0.15)
(1.514291507 0.2158849795 0.15)
(1.557148581 0.2059714592 0.15)
(1.428526282 0.2333853846 0.15)
(1.515252029 0.297320644 0.15)
(1.515675204 0.414210638 0.15)
(1.51568492 0.3757720548 0.15)
(1.558260933 0.3669238023 0.15)
(1.430481724 0.3928658164 0.15)
(1.515515325 0.4523837048 0.15)
(1.514318804 0.5678265916 0.15)
(1.514807791 0.5289206168 0.15)
(1.557339402 0.5230759824 0.15)
(1.429791252 0.5413216065 0.15)
(1.513796069 0.6075297864 0.15)
(1.512584309 0.7339485043 0.15)
(1.512868123 0.6903696112 0.15)
(1.555722173 0.6887535939 0.15)
(1.427337252 0.6950088651 0.15)
(1.5125 0.779167 0.15)
(1.5125 0.916667 0.15)
(1.5125 0.870833 0.15)
(1.55556 0.870833 0.15)
(1.42639 0.870833 0.15)
(1.68472 -0.870833 0.15)
(1.68472 -0.916667 0.15)
(1.684413878 -0.7312125871 0.15)
(1.684642118 -0.7786588412 0.15)
(1.72778 -0.779167 0.15)
(1.597958825 -0.7748493632 0.15)
(1.684084887 -0.6828128299 0.15)
(1.682944373 -0.5337102401 0.15)
(1.683310235 -0.5838677796 0.15)
(1.726933329 -0.5887001679 0.15)
(1.595780607 -0.5714718868 0.15)
(1.682634801 -0.4833545434 0.15)
(1.682226327 -0.3328513693 0.15)
(1.68226507 -0.3827665468 0.15)
(1.725993618 -0.3909943689 0.15)
(1.594674437 -0.3642627834 0.15)
(1.682287745 -0.2833622573 0.15)
(1.682997048 -0.1383716448 0.15)
(1.682684999 -0.1860542989 0.15)
(1.726213607 -0.196094976 0.15)
(1.595591703 -0.164753492 0.15)
(1.683363662 -0.0913976273 0.15)
(1.684602925 0.04512410948 0.15)
(1.684186242 0.0003511300041 0.15)
(1.727371665 -0.01003849439 0.15)
(1.597807451 0.02211253424 0.15)
(1.68499695 0.08918662727 0.15)
(1.68586551 0.2175857524 0.15)
(1.685643897 0.1753508291 0.15)
(1.728487252 0.1659691737 0.15)
(1.599982046 0.1956890114 0.15)
(1.686003818 0.2593822583 0.15)
(1.685890598 0.3834712843 0.15)
(1.686012994 0.3421687503 0.15)
(1.728670458 0.335362875 0.15)
(1.600824203 0.3582020827 0.15)
(1.685699889 0.4249488213 0.15)
(1.684971023 0.5523729246 0.15)
(1.685207699 0.5092061714 0.15)
(1.727995331 0.5063715986 0.15)
(1.599897551 0.5177215979 0.15)
(1.684793614 0.5964744282 0.15)
(1.68472 0.733333 0.15)
(1.68472 0.6875 0.15)
(1.72778 0.6875 0.15)
(1.598644784 0.6877666312 0.15)
(1.68472 0.779167 0.15)
(1.68472 0.916667 0.15)
(1.68472 0.870833 0.15)
(1.72778 0.870833 0.15)
(1.59861 0.870833 0.15)
(1.85694 -0.870833 0.15)
(1.85694 -0.916667 0.15)
(1.85694 -0.733333 0.15)
(1.85694 -0.779167 0.15)
(1.9 -0.779167 0.15)
(1.77083 -0.779167 0.15)
(1.85694 -0.6875 0.15)
(1.856885407 -0.5495141427 0.15)
(1.85693608 -0.5958007604 0.15)
(1.9 -0.595833 0.15)
(1.770417458 -0.5923841229 0.15)
(1.856797694 -0.5027873779 0.15)
(1.85652679 -0.3611973483 0.15)
(1.856601771 -0.4085087468 0.15)
(1.899900605 -0.4113360557 0.15)
(1.769632517 -0.3981740902 0.15)
(1.856481042 -0.3139156153 0.15)
(1.856544651 -0.1731233739 0.15)
(1.856491351 -0.2198083731 0.15)
(1.899785761 -0.2247225867 0.15)
(1.769693787 -0.2052626345 0.15)
(1.856622993 -0.126752782 0.15)
(1.856922013 0.01028856573 0.15)
(1.856821236 -0.03504557683 0.15)
(1.899940758 -0.04041564952 0.15)
(1.770534752 -0.01960829064 0.15)
(1.85701126 0.05530519544 0.15)
(1.857139605 0.1889741957 0.15)
(1.857124698 0.1445788352 0.15)
(1.900078338 0.1404615126 0.15)
(1.771336456 0.1575375758 0.15)
(1.857125909 0.2333281905 0.15)
(1.856981308 0.3672365472 0.15)
(1.857035285 0.3223394181 0.15)
(1.900007193 0.3209456569 0.15)
(1.771377612 0.3296711497 0.15)
(1.856944777 0.4125584064 0.15)
(1.85694 0.55 0.15)
(1.85694 0.504167 0.15)
(1.9 0.504167 0.15)
(1.770878961 0.5046637908 0.15)
(1.85694 0.595833 0.15)
(1.85694 0.733333 0.15)
(1.85694 0.6875 0.15)
(1.9 0.6875 0.15)
(1.77083 0.6875 0.15)
(1.85694 0.779167 0.15)
(1.85694 0.916667 0.15)
(1.85694 0.870833 0.15)
(1.9 0.870833 0.15)
(1.77083 0.870833 0.15)
(2.02917 -0.870833 0.15)
(2.02917 -0.916667 0.15)
(2.02917 -0.733333 0.15)
(2.02917 -0.779167 0.15)
(2.07222 -0.779167 0.15)
(1.94306 -0.779167 0.15)
(2.02917 -0.6875 0.15)
(2.02917 -0.55 0.15)
(2.02917 -0.595833 0.15)
(2.07222 -0.595833 0.15)
(1.94306 -0.595833 0.15)
(2.02917 -0.504167 0.15)
(2.02917 -0.366667 0.15)
(2.02917 -0.4125 0.15)
(2.07222 -0.4125 0.15)
(1.943057959 -0.4124762933 0.15)
(2.02917 -0.320833 0.15)
(2.02917 -0.183333 0.15)
(2.02917 -0.229167 0.15)
(2.07222 -0.229167 0.15)
(1.942996364 -0.2278555754 0.15)
(2.02917 -0.1375 0.15)
(2.02917 0 0.15)
(2.02917 -0.0458333 0.15)
(2.07222 -0.0458333 0.15)
(1.943039901 -0.04399117755 0.15)
(2.02917 0.0458333 0.15)
(2.02917 0.183333 0.15)
(2.02917 0.1375 0.15)
(2.07222 0.1375 0.15)
(1.943075935 0.1380953271 0.15)
(2.02917 0.229167 0.15)
(2.02917 0.366667 0.15)
(2.02917 0.320833 0.15)
(2.07222 0.320833 0.15)
(1.94306 0.320833 0.15)
(2.02917 0.4125 0.15)
(2.02917 0.55 0.15)
(2.02917 0.504167 0.15)
(2.07222 0.504167 0.15)
(1.94306 0.504167 0.15)
(2.02917 0.595833 0.15)
(2.02917 0.733333 0.15)
(2.02917 0.6875 0.15)
(2.07222 0.6875 0.15)
(1.94306 0.6875 0.15)
(2.02917 0.779167 0.15)
(2.02917 0.916667 0.15)
(2.02917 0.870833 0.15)
(2.07222 0.870833 0.15)
(1.94306 0.870833 0.15)
(2.20139 -0.870833 0.15)
(2.20139 -0.916667 0.15)
(2.20139 -0.733333 0.15)
(2.20139 -0.779167 0.15)
(2.24444 -0.779167 0.15)
(2.11528 -0.779167 0.15)
(2.20139 -0.6875 0.15)
(2.20139 -0.55 0.15)
(2.20139 -0.595833 0.15)
(2.24444 -0.595833 0.15)
(2.11528 -0.595833 0.15)
(2.20139 -0.504167 0.15)
(2.20139 -0.366667 0.15)
(2.20139 -0.4125 0.15)
(2.24444 -0.4125 0.15)
(2.11528 -0.4125 0.15)
(2.20139 -0.320833 0.15)
(2.20139 -0.183333 0.15)
(2.20139 -0.229167 0.15)
(2.24444 -0.229167 0.15)
(2.11528 -0.229167 0.15)
(2.20139 -0.1375 0.15)
(2.20139 0 0.15)
(2.20139 -0.0458333 0.15)
(2.24444 -0.0458333 0.15)
(2.11528 -0.0458333 0.15)
(2.20139 0.0458333 0.15)
(2.20139 0.183333 0.15)
(2.20139 0.1375 0.15)
(2.24444 0.1375 0.15)
(2.11528 0.1375 0.15)
(2.20139 0.229167 0.15)
(2.20139 0.366667 0.15)
(2.20139 0.320833 0.15)
(2.24444 0.320833 0.15)
(2.11528 0.320833 0.15)
(2.20139 0.4125 0.15)
(2.20139 0.55 0.15)
(2.20139 0.504167 0.15)
(2.24444 0.504167 0.15)
(2.11528 0.504167 0.15)
(2.20139 0.595833 0.15)
(2.20139 0.733333 0.15)
(2.20139 0.6875 0.15)
(2.24444 0.6875 0.15)
(2.11528 0.6875 0.15)
(2.20139 0.779167 0.15)
(2.20139 0.916667 0.15)
(2.20139 0.870833 0.15)
(2.24444 0.870833 0.15)
(2.11528 0.870833 0.15)
(2.37361 -0.870833 0.15)
(2.37361 -0.916667 0.15)
(2.37361 -0.733333 0.15)
(2.37361 -0.779167 0.15)
(2.41667 -0.779167 0.15)
(2.2875 -0.779167 0.15)
(2.37361 -0.6875 0.15)
(2.37361 -0.55 0.15)
(2.37361 -0.595833 0.15)
(2.41667 -0.595833 0.15)
(2.2875 -0.595833 0.15)
(2.37361 -0.504167 0.15)
(2.37361 -0.366667 0.15)
(2.37361 -0.4125 0.15)
(2.41667 -0.4125 0.15)
(2.2875 -0.4125 0.15)
(2.37361 -0.320833 0.15)
(2.37361 -0.183333 0.15)
(2.37361 -0.229167 0.15)
(2.41667 -0.229167 0.15)
(2.2875 -0.229167 0.15)
(2.37361 -0.1375 0.15)
(2.37361 -1.38778e-17 0.15)
(2.37361 -0.0458333 0.15)
(2.41667 -0.0458333 0.15)
(2.2875 -0.0458333 0.15)
(2.37361 0.0458333 0.15)
(2.37361 0.183333 0.15)
(2.37361 0.1375 0.15)
(2.41667 0.1375 0.15)
(2.2875 0.1375 0.15)
(2.37361 0.229167 0.15)
(2.37361 0.366667 0.15)
(2.37361 0.320833 0.15)
(2.41667 0.320833 0.15)
(2.2875 0.320833 0.15)
(2.37361 0.4125 0.15)
(2.37361 0.55 0.15)
(2.37361 0.504167 0.15)
(2.41667 0.504167 0.15)
(2.2875 0.504167 0.15)
(2.37361 0.595833 0.15)
(2.37361 0.733333 0.15)
(2.37361 0.6875 0.15)
(2.41667 0.6875 0.15)
(2.2875 0.6875 0.15)
(2.37361 0.779167 0.15)
(2.37361 0.916667 0.15)
(2.37361 0.870833 0.15)
(2.41667 0.870833 0.15)
(2.2875 0.870833 0.15)
(2.54583 -0.870833 0.15)
(2.54583 -0.916667 0.15)
(2.54583 -0.733333 0.15)
(2.54583 -0.779167 0.15)
(2.58889 -0.779167 0.15)
(2.45972 -0.779167 0.15)
(2.54583 -0.6875 0.15)
(2.54583 -0.55 0.15)
(2.54583 -0.595833 0.15)
(2.58889 -0.595833 0.15)
(2.45972 -0.595833 0.15)
(2.54583 -0.504167 0.15)
(2.54583 -0.366667 0.15)
(2.54583 -0.4125 0.15)
(2.58889 -0.4125 0.15)
(2.45972 -0.4125 0.15)
(2.54583 -0.320833 0.15)
(2.54583 -0.183333 0.15)
(2.54583 -0.229167 0.15)
(2.58889 -0.229167 0.15)
(2.45972 -0.229167 0.15)
(2.54583 -0.1375 0.15)
(2.54583 -1.85037e-17 0.15)
(2.54583 -0.0458333 0.15)
(2.58889 -0.0458333 0.15)
(2.45972 -0.0458333 0.15)
(2.54583 0.0458333 0.15)
(2.54583 0.183333 0.15)
(2.54583 0.1375 0.15)
(2.58889 0.1375 0.15)
(2.45972 0.1375 0.15)
(2.54583 0.229167 0.15)
(2.54583 0.366667 0.15)
(2.54583 0.320833 0.15)
(2.58889 0.320833 0.15)
(2.45972 0.320833 0.15)
(2.54583 0.4125 0.15)
(2.54583 0.55 0.15)
(2.54583 0.504167 0.15)
(2.58889 0.504167 0.15)
(2.45972 0.504167 0.15)
(2.54583 0.595833 0.15)
(2.54583 0.733333 0.15)
(2.54583 0.6875 0.15)
(2.58889 0.6875 0.15)
(2.45972 0.6875 0.15)
(2.54583 0.779167 0.15)
(2.54583 0.916667 0.15)
(2.54583 0.870833 0.15)
(2.58889 0.870833 0.15)
(2.45972 0.870833 0.15)
(2.71806 -0.870833 0.15)
(2.71806 -0.916667 0.15)
(2.71806 -0.733333 0.15)
(2.71806 -0.779167 0.15)
(2.76111 -0.779167 0.15)
(2.63194 -0.779167 0.15)
(2.71806 -0.6875 0.15)
(2.71806 -0.55 0.15)
(2.71806 -0.595833 0.15)
(2.76111 -0.595833 0.15)
(2.63194 -0.595833 0.15)
(2.71806 -0.504167 0.15)
(2.71806 -0.366667 0.15)
(2.71806 -0.4125 0.15)
(2.76111 -0.4125 0.15)
(2.63194 -0.4125 0.15)
(2.71806 -0.320833 0.15)
(2.71806 -0.183333 0.15)
(2.71806 -0.229167 0.15)
(2.76111 -0.229167 0.15)
(2.63194 -0.229167 0.15)
(2.71806 -0.1375 0.15)
(2.71806 9.25186e-18 0.15)
(2.71806 -0.0458333 0.15)
(2.76111 -0.0458333 0.15)
(2.63194 -0.0458333 0.15)
(2.71806 0.0458333 0.15)
(2.71806 0.183333 0.15)
(2.71806 0.1375 0.15)
(2.76111 0.1375 0.15)
(2.63194 0.1375 0.15)
(2.71806 0.229167 0.15)
(2.71806 0.366667 0.15)
(2.71806 0.320833 0.15)
(2.76111 0.320833 0.15)
(2.63194 0.320833 0.15)
(2.71806 0.4125 0.15)
(2.71806 0.55 0.15)
(2.71806 0.504167 0.15)
(2.76111 0.504167 0.15)
(2.63194 0.504167 0.15)
(2.71806 0.595833 0.15)
(2.71806 0.733333 0.15)
(2.71806 0.6875 0.15)
(2.76111 0.6875 0.15)
(2.63194 0.6875 0.15)
(2.71806 0.779167 0.15)
(2.71806 0.916667 0.15)
(2.71806 0.870833 0.15)
(2.76111 0.870833 0.15)
(2.63194 0.870833 0.15)
(2.89028 -0.870833 0.15)
(2.89028 -0.916667 0.15)
(2.89028 -0.733333 0.15)
(2.89028 -0.779167 0.15)
(2.93333 -0.779167 0.15)
(2.80417 -0.779167 0.15)
(2.89028 -0.6875 0.15)
(2.89028 -0.55 0.15)
(2.89028 -0.595833 0.15)
(2.93333 -0.595833 0.15)
(2.80417 -0.595833 0.15)
(2.89028 -0.504167 0.15)
(2.89028 -0.366667 0.15)
(2.89028 -0.4125 0.15)
(2.93333 -0.4125 0.15)
(2.80417 -0.4125 0.15)
(2.89028 -0.320833 0.15)
(2.89028 -0.183333 0.15)
(2.89028 -0.229167 0.15)
(2.93333 -0.229167 0.15)
(2.80417 -0.229167 0.15)
(2.89028 -0.1375 0.15)
(2.89028 1.85037e-17 0.15)
(2.89028 -0.0458333 0.15)
(2.93333 -0.0458333 0.15)
(2.80417 -0.0458333 0.15)
(2.89028 0.0458333 0.15)
(2.89028 0.183333 0.15)
(2.89028 0.1375 0.15)
(2.93333 0.1375 0.15)
(2.80417 0.1375 0.15)
(2.89028 0.229167 0.15)
(2.89028 0.366667 0.15)
(2.89028 0.320833 0.15)
(2.93333 0.320833 0.15)
(2.80417 0.320833 0.15)
(2.89028 0.4125 0.15)
(2.89028 0.55 0.15)
(2.89028 0.504167 0.15)
(2.93333 0.504167 0.15)
(2.80417 0.504167 0.15)
(2.89028 0.595833 0.15)
(2.89028 0.733333 0.15)
(2.89028 0.6875 0.15)
(2.93333 0.6875 0.15)
(2.80417 0.6875 0.15)
(2.89028 0.779167 0.15)
(2.89028 0.916667 0.15)
(2.89028 0.870833 0.15)
(2.93333 0.870833 0.15)
(2.80417 0.870833 0.15)
(3.0625 -0.870833 0.15)
(3.0625 -0.916667 0.15)
(3.0625 -0.733333 0.15)
(3.0625 -0.779167 0.15)
(3.10556 -0.779167 0.15)
(2.97639 -0.779167 0.15)
(3.0625 -0.6875 0.15)
(3.0625 -0.55 0.15)
(3.0625 -0.595833 0.15)
(3.10556 -0.595833 0.15)
(2.97639 -0.595833 0.15)
(3.0625 -0.504167 0.15)
(3.0625 -0.366667 0.15)
(3.0625 -0.4125 0.15)
(3.10556 -0.4125 0.15)
(2.97639 -0.4125 0.15)
(3.0625 -0.320833 0.15)
(3.0625 -0.183333 0.15)
(3.0625 -0.229167 0.15)
(3.10556 -0.229167 0.15)
(2.97639 -0.229167 0.15)
(3.0625 -0.1375 0.15)
(3.0625 4.62593e-18 0.15)
(3.0625 -0.0458333 0.15)
(3.10556 -0.0458333 0.15)
(2.97639 -0.0458333 0.15)
(3.0625 0.0458333 0.15)
(3.0625 0.183333 0.15)
(3.0625 0.1375 0.15)
(3.10556 0.1375 0.15)
(2.97639 0.1375 0.15)
(3.0625 0.229167 0.15)
(3.0625 0.366667 0.15)
(3.0625 0.320833 0.15)
(3.10556 0.320833 0.15)
(2.97639 0.320833 0.15)
(3.0625 0.4125 0.15)
(3.0625 0.55 0.15)
(3.0625 0.504167 0.15)
(3.10556 0.504167 0.15)
(2.97639 0.504167 0.15)
(3.0625 0.595833 0.15)
(3.0625 0.733333 0.15)
(3.0625 0.6875 0.15)
(3.10556 0.6875 0.15)
(2.97639 0.6875 0.15)
(3.0625 0.779167 0.15)
(3.0625 0.916667 0.15)
(3.0625 0.870833 0.15)
(3.10556 0.870833 0.15)
(2.97639 0.870833 0.15)
(3.23472 -0.870833 0.15)
(3.23472 -0.916667 0.15)
(3.23472 -0.733333 0.15)
(3.23472 -0.779167 0.15)
(3.27778 -0.779167 0.15)
(3.14861 -0.779167 0.15)
(3.23472 -0.6875 0.15)
(3.23472 -0.55 0.15)
(3.23472 -0.595833 0.15)
(3.27778 -0.595833 0.15)
(3.14861 -0.595833 0.15)
(3.23472 -0.504167 0.15)
(3.23472 -0.366667 0.15)
(3.23472 -0.4125 0.15)
(3.27778 -0.4125 0.15)
(3.14861 -0.4125 0.15)
(3.23472 -0.320833 0.15)
(3.23472 -0.183333 0.15)
(3.23472 -0.229167 0.15)
(3.27778 -0.229167 0.15)
(3.14861 -0.229167 0.15)
(3.23472 -0.1375 0.15)
(3.23472 0 0.15)
(3.23472 -0.0458333 0.15)
(3.27778 -0.0458333 0.15)
(3.14861 -0.0458333 0.15)
(3.23472 0.0458333 0.15)
(3.23472 0.183333 0.15)
(3.23472 0.1375 0.15)
(3.27778 0.1375 0.15)
(3.14861 0.1375 0.15)
(3.23472 0.229167 0.15)
(3.23472 0.366667 0.15)
(3.23472 0.320833 0.15)
(3.27778 0.320833 0.15)
(3.14861 0.320833 0.15)
(3.23472 0.4125 0.15)
(3.23472 0.55 0.15)
(3.23472 0.504167 0.15)
(3.27778 0.504167 0.15)
(3.14861 0.504167 0.15)
(3.23472 0.595833 0.15)
(3.23472 0.733333 0.15)
(3.23472 0.6875 0.15)
(3.27778 0.6875 0.15)
(3.14861 0.6875 0.15)
(3.23472 0.779167 0.15)
(3.23472 0.916667 0.15)
(3.23472 0.870833 0.15)
(3.27778 0.870833 0.15)
(3.14861 0.870833 0.15)
(3.40694 -0.870833 0.15)
(3.40694 -0.916667 0.15)
(3.40694 -0.733333 0.15)
(3.40694 -0.779167 0.15)
(3.45 -0.779167 0.15)
(3.32083 -0.779167 0.15)
(3.40694 -0.6875 0.15)
(3.40694 -0.55 0.15)
(3.40694 -0.595833 0.15)
(3.45 -0.595833 0.15)
(3.32083 -0.595833 0.15)
(3.40694 -0.504167 0.15)
(3.40694 -0.366667 0.15)
(3.40694 -0.4125 0.15)
(3.45 -0.4125 0.15)
(3.32083 -0.4125 0.15)
(3.40694 -0.320833 0.15)
(3.40694 -0.183333 0.15)
(3.40694 -0.229167 0.15)
(3.45 -0.229167 0.15)
(3.32083 -0.229167 0.15)
(3.40694 -0.1375 0.15)
(3.40694 0 0.15)
(3.40694 -0.0458333 0.15)
(3.45 -0.0458333 0.15)
(3.32083 -0.0458333 0.15)
(3.40694 0.0458333 0.15)
(3.40694 0.183333 0.15)
(3.40694 0.1375 0.15)
(3.45 0.1375 0.15)
(3.32083 0.1375 0.15)
(3.40694 0.229167 0.15)
(3.40694 0.366667 0.15)
(3.40694 0.320833 0.15)
(3.45 0.320833 0.15)
(3.32083 0.320833 0.15)
(3.40694 0.4125 0.15)
(3.40694 0.55 0.15)
(3.40694 0.504167 0.15)
(3.45 0.504167 0.15)
(3.32083 0.504167 0.15)
(3.40694 0.595833 0.15)
(3.40694 0.733333 0.15)
(3.40694 0.6875 0.15)
(3.45 0.6875 0.15)
(3.32083 0.6875 0.15)
(3.40694 0.779167 0.15)
(3.40694 0.916667 0.15)
(3.40694 0.870833 0.15)
(3.45 0.870833 0.15)
(3.32083 0.870833 0.15)
(3.57917 -0.870833 0.15)
(3.57917 -0.916667 0.15)
(3.57917 -0.733333 0.15)
(3.57917 -0.779167 0.15)
(3.62222 -0.779167 0.15)
(3.49306 -0.779167 0.15)
(3.57917 -0.6875 0.15)
(3.57917 -0.55 0.15)
(3.57917 -0.595833 0.15)
(3.62222 -0.595833 0.15)
(3.49306 -0.595833 0.15)
(3.57917 -0.504167 0.15)
(3.57917 -0.366667 0.15)
(3.57917 -0.4125 0.15)
(3.62222 -0.4125 0.15)
(3.49306 -0.4125 0.15)
(3.57917 -0.320833 0.15)
(3.57917 -0.183333 0.15)
(3.57917 -0.229167 0.15)
(3.62222 -0.229167 0.15)
(3.49306 -0.229167 0.15)
(3.57917 -0.1375 0.15)
(3.57917 0 0.15)
(3.57917 -0.0458333 0.15)
(3.62222 -0.0458333 0.15)
(3.49306 -0.0458333 0.15)
(3.57917 0.0458333 0.15)
(3.57917 0.183333 0.15)
(3.57917 0.1375 0.15)
(3.62222 0.1375 0.15)
(3.49306 0.1375 0.15)
(3.57917 0.229167 0.15)
(3.57917 0.366667 0.15)
(3.57917 0.320833 0.15)
(3.62222 0.320833 0.15)
(3.49306 0.320833 0.15)
(3.57917 0.4125 0.15)
(3.57917 0.55 0.15)
(3.57917 0.504167 0.15)
(3.62222 0.504167 0.15)
(3.49306 0.504167 0.15)
(3.57917 0.595833 0.15)
(3.57917 0.733333 0.15)
(3.57917 0.6875 0.15)
(3.62222 0.6875 0.15)
(3.49306 0.6875 0.15)
(3.57917 0.779167 0.15)
(3.57917 0.916667 0.15)
(3.57917 0.870833 0.15)
(3.62222 0.870833 0.15)
(3.49306 0.870833 0.15)
(3.75139 -0.870833 0.15)
(3.75139 -0.916667 0.15)
(3.75139 -0.733333 0.15)
(3.75139 -0.779167 0.15)
(3.79444 -0.779167 0.15)
(3.66528 -0.779167 0.15)
(3.75139 -0.6875 0.15)
(3.75139 -0.55 0.15)
(3.75139 -0.595833 0.15)
(3.79444 -0.595833 0.15)
(3.66528 -0.595833 0.15)
(3.75139 -0.504167 0.15)
(3.75139 -0.366667 0.15)
(3.75139 -0.4125 0.15)
(3.79444 -0.4125 0.15)
(3.66528 -0.4125 0.15)
(3.75139 -0.320833 0.15)
(3.75139 -0.183333 0.15)
(3.75139 -0.229167 0.15)
(3.79444 -0.229167 0.15)
(3.66528 -0.229167 0.15)
(3.75139 -0.1375 0.15)
(3.75139 -6.93889e-18 0.15)
(3.75139 -0.0458333 0.15)
(3.79444 -0.0458333 0.15)
(3.66528 -0.0458333 0.15)
(3.75139 0.0458333 0.15)
(3.75139 0.183333 0.15)
(3.75139 0.1375 0.15)
(3.79444 0.1375 0.15)
(3.66528 0.1375 0.15)
(3.75139 0.229167 0.15)
(3.75139 0.366667 0.15)
(3.75139 0.320833 0.15)
(3.79444 0.320833 0.15)
(3.66528 0.320833 0.15)
(3.75139 0.4125 0.15)
(3.75139 0.55 0.15)
(3.75139 0.504167 0.15)
(3.79444 0.504167 0.15)
(3.66528 0.504167 0.15)
(3.75139 0.595833 0.15)
(3.75139 0.733333 0.15)
(3.75139 0.6875 0.15)
(3.79444 0.6875 0.15)
(3.66528 0.6875 0.15)
(3.75139 0.779167 0.15)
(3.75139 0.916667 0.15)
(3.75139 0.870833 0.15)
(3.79444 0.870833 0.15)
(3.66528 0.870833 0.15)
(3.92361 -0.870833 0.15)
(3.92361 -0.916667 0.15)
(3.92361 -0.733333 0.15)
(3.92361 -0.779167 0.15)
(3.96667 -0.779167 0.15)
(3.8375 -0.779167 0.15)
(3.92361 -0.6875 0.15)
(3.92361 -0.55 0.15)
(3.92361 -0.595833 0.15)
(3.96667 -0.595833 0.15)
(3.8375 -0.595833 0.15)
(3.92361 -0.504167 0.15)
(3.92361 -0.366667 0.15)
(3.92361 -0.4125 0.15)
(3.96667 -0.4125 0.15)
(3.8375 -0.4125 0.15)
(3.92361 -0.320833 0.15)
(3.92361 -0.183333 0.15)
(3.92361 -0.229167 0.15)
(3.96667 -0.229167 0.15)
(3.8375 -0.229167 0.15)
(3.92361 -0.1375 0.15)
(3.92361 -9.25186e-18 0.15)
(3.92361 -0.0458333 0.15)
(3.96667 -0.0458333 0.15)
(3.8375 -0.0458333 0.15)
(3.92361 0.0458333 0.15)
(3.92361 0.183333 0.15)
(3.92361 0.1375 0.15)
(3.96667 0.1375 0.15)
(3.8375 0.1375 0.15)
(3.92361 0.229167 0.15)
(3.92361 0.366667 0.15)
(3.92361 0.320833 0.15)
(3.96667 0.320833 0.15)
(3.8375 0.320833 0.15)
(3.92361 0.4125 0.15)
(3.92361 0.55 0.15)
(3.92361 0.504167 0.15)
(3.96667 0.504167 0.15)
(3.8375 0.504167 0.15)
(3.92361 0.595833 0.15)
(3.92361 0.733333 0.15)
(3.92361 0.6875 0.15)
(3.96667 0.6875 0.15)
(3.8375 0.6875 0.15)
(3.92361 0.779167 0.15)
(3.92361 0.916667 0.15)
(3.92361 0.870833 0.15)
(3.96667 0.870833 0.15)
(3.8375 0.870833 0.15)
(4.09583 -0.870833 0.15)
(4.09583 -0.916667 0.15)
(4.09583 -0.733333 0.15)
(4.09583 -0.779167 0.15)
(4.13889 -0.779167 0.15)
(4.00972 -0.779167 0.15)
(4.09583 -0.6875 0.15)
(4.09583 -0.55 0.15)
(4.09583 -0.595833 0.15)
(4.13889 -0.595833 0.15)
(4.00972 -0.595833 0.15)
(4.09583 -0.504167 0.15)
(4.09583 -0.366667 0.15)
(4.09583 -0.4125 0.15)
(4.13889 -0.4125 0.15)
(4.00972 -0.4125 0.15)
(4.09583 -0.320833 0.15)
(4.09583 -0.183333 0.15)
(4.09583 -0.229167 0.15)
(4.13889 -0.229167 0.15)
(4.00972 -0.229167 0.15)
(4.09583 -0.1375 0.15)
(4.09583 -1.61908e-17 0.15)
(4.09583 -0.0458333 0.15)
(4.13889 -0.0458333 0.15)
(4.00972 -0.0458333 0.15)
(4.09583 0.0458333 0.15)
(4.09583 0.183333 0.15)
(4.09583 0.1375 0.15)
(4.13889 0.1375 0.15)
(4.00972 0.1375 0.15)
(4.09583 0.229167 0.15)
(4.09583 0.366667 0.15)
(4.09583 0.320833 0.15)
(4.13889 0.320833 0.15)
(4.00972 0.320833 0.15)
(4.09583 0.4125 0.15)
(4.09583 0.55 0.15)
(4.09583 0.504167 0.15)
(4.13889 0.504167 0.15)
(4.00972 0.504167 0.15)
(4.09583 0.595833 0.15)
(4.09583 0.733333 0.15)
(4.09583 0.6875 0.15)
(4.13889 0.6875 0.15)
(4.00972 0.6875 0.15)
(4.09583 0.779167 0.15)
(4.09583 0.916667 0.15)
(4.09583 0.870833 0.15)
(4.13889 0.870833 0.15)
(4.00972 0.870833 0.15)
(4.26806 -0.870833 0.15)
(4.26806 -0.916667 0.15)
(4.26806 -0.733333 0.15)
(4.26806 -0.779167 0.15)
(4.31111 -0.779167 0.15)
(4.18194 -0.779167 0.15)
(4.26806 -0.6875 0.15)
(4.26806 -0.55 0.15)
(4.26806 -0.595833 0.15)
(4.31111 -0.595833 0.15)
(4.18194 -0.595833 0.15)
(4.26806 -0.504167 0.15)
(4.26806 -0.366667 0.15)
(4.26806 -0.4125 0.15)
(4.31111 -0.4125 0.15)
(4.18194 -0.4125 0.15)
(4.26806 -0.320833 0.15)
(4.26806 -0.183333 0.15)
(4.26806 -0.229167 0.15)
(4.31111 -0.229167 0.15)
(4.18194 -0.229167 0.15)
(4.26806 -0.1375 0.15)
(4.26806 9.25186e-18 0.15)
(4.26806 -0.0458333 0.15)
(4.31111 -0.0458333 0.15)
(4.18194 -0.0458333 0.15)
(4.26806 0.0458333 0.15)
(4.26806 0.183333 0.15)
(4.26806 0.1375 0.15)
(4.31111 0.1375 0.15)
(4.18194 0.1375 0.15)
(4.26806 0.229167 0.15)
(4.26806 0.366667 0.15)
(4.26806 0.320833 0.15)
(4.31111 0.320833 0.15)
(4.18194 0.320833 0.15)
(4.26806 0.4125 0.15)
(4.26806 0.55 0.15)
(4.26806 0.504167 0.15)
(4.31111 0.504167 0.15)
(4.18194 0.504167 0.15)
(4.26806 0.595833 0.15)
(4.26806 0.733333 0.15)
(4.26806 0.6875 0.15)
(4.31111 0.6875 0.15)
(4.18194 0.6875 0.15)
(4.26806 0.779167 0.15)
(4.26806 0.916667 0.15)
(4.26806 0.870833 0.15)
(4.31111 0.870833 0.15)
(4.18194 0.870833 0.15)
(4.44028 -0.870833 0.15)
(4.44028 -0.916667 0.15)
(4.44028 -0.733333 0.15)
(4.44028 -0.779167 0.15)
(4.48333 -0.779167 0.15)
(4.35417 -0.779167 0.15)
(4.44028 -0.6875 0.15)
(4.44028 -0.55 0.15)
(4.44028 -0.595833 0.15)
(4.48333 -0.595833 0.15)
(4.35417 -0.595833 0.15)
(4.44028 -0.504167 0.15)
(4.44028 -0.366667 0.15)
(4.44028 -0.4125 0.15)
(4.48333 -0.4125 0.15)
(4.35417 -0.4125 0.15)
(4.44028 -0.320833 0.15)
(4.44028 -0.183333 0.15)
(4.44028 -0.229167 0.15)
(4.48333 -0.229167 0.15)
(4.35417 -0.229167 0.15)
(4.44028 -0.1375 0.15)
(4.44028 -1.27213e-17 0.15)
(4.44028 -0.0458333 0.15)
(4.48333 -0.0458333 0.15)
(4.35417 -0.0458333 0.15)
(4.44028 0.0458333 0.15)
(4.44028 0.183333 0.15)
(4.44028 0.1375 0.15)
(4.48333 0.1375 0.15)
(4.35417 0.1375 0.15)
(4.44028 0.229167 0.15)
(4.44028 0.366667 0.15)
(4.44028 0.320833 0.15)
(4.48333 0.320833 0.15)
(4.35417 0.320833 0.15)
(4.44028 0.4125 0.15)
(4.44028 0.55 0.15)
(4.44028 0.504167 0.15)
(4.48333 0.504167 0.15)
(4.35417 0.504167 0.15)
(4.44028 0.595833 0.15)
(4.44028 0.733333 0.15)
(4.44028 0.6875 0.15)
(4.48333 0.6875 0.15)
(4.35417 0.6875 0.15)
(4.44028 0.779167 0.15)
(4.44028 0.916667 0.15)
(4.44028 0.870833 0.15)
(4.48333 0.870833 0.15)
(4.35417 0.870833 0.15)
(4.6125 -0.870833 0.15)
(4.6125 -0.916667 0.15)
(4.6125 -0.733333 0.15)
(4.6125 -0.779167 0.15)
(4.65556 -0.779167 0.15)
(4.52639 -0.779167 0.15)
(4.6125 -0.6875 0.15)
(4.6125 -0.55 0.15)
(4.6125 -0.595833 0.15)
(4.65556 -0.595833 0.15)
(4.52639 -0.595833 0.15)
(4.6125 -0.504167 0.15)
(4.6125 -0.366667 0.15)
(4.6125 -0.4125 0.15)
(4.65556 -0.4125 0.15)
(4.52639 -0.4125 0.15)
(4.6125 -0.320833 0.15)
(4.6125 -0.183333 0.15)
(4.6125 -0.229167 0.15)
(4.65556 -0.229167 0.15)
(4.52639 -0.229167 0.15)
(4.6125 -0.1375 0.15)
(4.6125 1.15648e-18 0.15)
(4.6125 -0.0458333 0.15)
(4.65556 -0.0458333 0.15)
(4.52639 -0.0458333 0.15)
(4.6125 0.0458333 0.15)
(4.6125 0.183333 0.15)
(4.6125 0.1375 0.15)
(4.65556 0.1375 0.15)
(4.52639 0.1375 0.15)
(4.6125 0.229167 0.15)
(4.6125 0.366667 0.15)
(4.6125 0.320833 0.15)
(4.65556 0.320833 0.15)
(4.52639 0.320833 0.15)
(4.6125 0.4125 0.15)
(4.6125 0.55 0.15)
(4.6125 0.504167 0.15)
(4.65556 0.504167 0.15)
(4.52639 0.504167 0.15)
(4.6125 0.595833 0.15)
(4.6125 0.733333 0.15)
(4.6125 0.6875 0.15)
(4.65556 0.6875 0.15)
(4.52639 0.6875 0.15)
(4.6125 0.779167 0.15)
(4.6125 0.916667 0.15)
(4.6125 0.870833 0.15)
(4.65556 0.870833 0.15)
(4.52639 0.870833 0.15)
(4.78472 -0.870833 0.15)
(4.78472 -0.916667 0.15)
(4.78472 -0.733333 0.15)
(4.78472 -0.779167 0.15)
(4.82778 -0.779167 0.15)
(4.69861 -0.779167 0.15)
(4.78472 -0.6875 0.15)
(4.78472 -0.55 0.15)
(4.78472 -0.595833 0.15)
(4.82778 -0.595833 0.15)
(4.69861 -0.595833 0.15)
(4.78472 -0.504167 0.15)
(4.78472 -0.366667 0.15)
(4.78472 -0.4125 0.15)
(4.82778 -0.4125 0.15)
(4.69861 -0.4125 0.15)
(4.78472 -0.320833 0.15)
(4.78472 -0.183333 0.15)
(4.78472 -0.229167 0.15)
(4.82778 -0.229167 0.15)
(4.69861 -0.229167 0.15)
(4.78472 -0.1375 0.15)
(4.78472 -2.19732e-17 0.15)
(4.78472 -0.0458333 0.15)
(4.82778 -0.0458333 0.15)
(4.69861 -0.0458333 0.15)
(4.78472 0.0458333 0.15)
(4.78472 0.183333 0.15)
(4.78472 0.1375 0.15)
(4.82778 0.1375 0.15)
(4.69861 0.1375 0.15)
(4.78472 0.229167 0.15)
(4.78472 0.366667 0.15)
(4.78472 0.320833 0.15)
(4.82778 0.320833 0.15)
(4.69861 0.320833 0.15)
(4.78472 0.4125 0.15)
(4.78472 0.55 0.15)
(4.78472 0.504167 0.15)
(4.82778 0.504167 0.15)
(4.69861 0.504167 0.15)
(4.78472 0.595833 0.15)
(4.78472 0.733333 0.15)
(4.78472 0.6875 0.15)
(4.82778 0.6875 0.15)
(4.69861 0.6875 0.15)
(4.78472 0.779167 0.15)
(4.78472 0.916667 0.15)
(4.78472 0.870833 0.15)
(4.82778 0.870833 0.15)
(4.69861 0.870833 0.15)
(5 -0.916667 0.15)
(5 -0.870833 0.15)
(4.95694 -0.870833 0.15)
(4.95694 -0.916667 0.15)
(5 -0.733333 0.15)
(4.95694 -0.733333 0.15)
(4.95694 -0.779167 0.15)
(5 -0.779167 0.15)
(4.87083 -0.779167 0.15)
(5 -0.6875 0.15)
(4.95694 -0.6875 0.15)
(5 -0.55 0.15)
(4.95694 -0.55 0.15)
(4.95694 -0.595833 0.15)
(5 -0.595833 0.15)
(4.87083 -0.595833 0.15)
(5 -0.504167 0.15)
(4.95694 -0.504167 0.15)
(5 -0.366667 0.15)
(4.95694 -0.366667 0.15)
(4.95694 -0.4125 0.15)
(5 -0.4125 0.15)
(4.87083 -0.4125 0.15)
(5 -0.320833 0.15)
(4.95694 -0.320833 0.15)
(5 -0.183333 0.15)
(4.95694 -0.183333 0.15)
(4.95694 -0.229167 0.15)
(5 -0.229167 0.15)
(4.87083 -0.229167 0.15)
(5 -0.1375 0.15)
(4.95694 -0.1375 0.15)
(5 0 0.15)
(4.95694 -8.09538e-18 0.15)
(4.95694 -0.0458333 0.15)
(5 -0.0458333 0.15)
(4.87083 -0.0458333 0.15)
(5 0.0458333 0.15)
(4.95694 0.0458333 0.15)
(5 0.183333 0.15)
(4.95694 0.183333 0.15)
(4.95694 0.1375 0.15)
(5 0.1375 0.15)
(4.87083 0.1375 0.15)
(5 0.229167 0.15)
(4.95694 0.229167 0.15)
(5 0.366667 0.15)
(4.95694 0.366667 0.15)
(4.95694 0.320833 0.15)
(5 0.320833 0.15)
(4.87083 0.320833 0.15)
(5 0.4125 0.15)
(4.95694 0.4125 0.15)
(5 0.55 0.15)
(4.95694 0.55 0.15)
(4.95694 0.504167 0.15)
(5 0.504167 0.15)
(4.87083 0.504167 0.15)
(5 0.595833 0.15)
(4.95694 0.595833 0.15)
(5 0.733333 0.15)
(4.95694 0.733333 0.15)
(4.95694 0.6875 0.15)
(5 0.6875 0.15)
(4.87083 0.6875 0.15)
(5 0.779167 0.15)
(4.95694 0.779167 0.15)
(5 0.916667 0.15)
(4.95694 0.916667 0.15)
(4.95694 0.870833 0.15)
(5 0.870833 0.15)
(4.87083 0.870833 0.15)
(0.1633567653 -0.005716350401 0.15)
(0.1525421553 -0.005488975718 0.15)
(0.1308999802 -0.005031953533 0.15)
(0.1304309596 -0.02776811815 0.15)
(0.141733523 -0.005262726935 0.15)
(0.1299647491 -0.05051334384 0.15)
(0.1374963547 0.3314987454 0.15)
(0.1369703047 0.3087617793 0.15)
(0.1478623391 0.3085537815 0.15)
(0.1476014082 0.2971897554 0.15)
(0.1367093527 0.2973967535 0.15)
(0.1801599067 0.2965382278 0.15)
(0.1692920772 0.296755719 0.15)
(0.005380458217 0.2880962483 0.15)
(0.01642887183 0.2879959871 0.15)
(0.02741503051 0.2878690286 0.15)
(0.04962905226 0.2989495353 0.15)
(0.04989327677 0.3103274952 0.15)
(0.03829628216 0.287695265 0.15)
(0.05050467512 0.333108677 0.15)
(0.3357059265 -0.00923292814 0.15)
(0.3354713682 -0.02057950469 0.15)
(0.3034324911 -0.008581392568 0.15)
(0.3031978698 -0.01993096845 0.15)
(0.3139577022 -0.02014718924 0.15)
(0.3141923025 -0.008798613132 0.15)
(0.3024885234 -0.05400258593 0.15)
(0.3137230178 -0.03149976446 0.15)
(0.3029621646 -0.03128452244 0.15)
(0.3110946236 0.3277838674 0.15)
(0.310842985 0.3164336491 0.15)
(0.3106273805 0.3050846736 0.15)
(0.3214705216 0.3048346942 0.15)
(0.3212370472 0.2934920957 0.15)
(0.3103958636 0.2937400335 0.15)
(0.3537482855 0.2927335379 0.15)
(0.342916247 0.292988285 0.15)
(0.1910357134 0.2963195687 0.15)
(0.2236297416 0.2956452892 0.15)
(0.21277212 0.2958725679 0.15)
(0.2243660399 0.3297143395 0.15)
(0.2130168443 0.3072269325 0.15)
(0.2238764443 0.3069986119 0.15)
(0.224142227 0.3183555344 0.15)
(0.5076144251 -0.02400372969 0.15)
(0.4753206579 -0.02336777018 0.15)
(0.4860875517 -0.02358113877 0.15)
(0.474624507 -0.05738265249 0.15)
(0.4858553293 -0.03491176089 0.15)
(0.4750893932 -0.03470041288 0.15)
(0.4840585413 0.3235832163 0.15)
(0.4836296891 0.3009022195 0.15)
(0.4944103185 0.3006285489 0.15)
(0.4939788664 0.2779666109 0.15)
(0.4941910512 0.2892956539 0.15)
(0.4834124634 0.2895712821 0.15)
(0.5263405819 0.2771371804 0.15)
(0.5265328552 0.2884706429 0.15)
(0.5157642862 0.2887470606 0.15)
(0.5155561847 0.2774219327 0.15)
(0.3645812817 0.2924767702 0.15)
(0.3970111596 0.291701919 0.15)
(0.3861793733 0.2919686634 0.15)
(0.3976635934 0.3257307233 0.15)
(0.3864107431 0.303306305 0.15)
(0.3972365096 0.3030386869 0.15)
(0.6797459024 -0.02731268581 0.15)
(0.6474735627 -0.02670418278 0.15)
(0.6582337104 -0.02690540688 0.15)
(0.6467839242 -0.0606471861 0.15)
(0.6580040551 -0.03820907701 0.15)
(0.6472449072 -0.03800787393 0.15)
(0.6564953666 0.3189555503 0.15)
(0.6560797849 0.2962872774 0.15)
(0.6556725377 0.2736348328 0.15)
(0.6772052469 0.2730140754 0.15)
(0.6987383252 0.2723633037 0.15)
(0.5371411438 0.27686009 0.15)
(0.5479415165 0.2765740017 0.15)
(0.5694952513 0.276001813 0.15)
(0.5699144327 0.2986510061 0.15)
(0.5587189363 0.2762903963 0.15)
(0.5703343709 0.3213361912 0.15)
(0.8518748073 -0.03045855183 0.15)
(0.8195768846 -0.02987751711 0.15)
(0.8303431781 -0.03007186887 0.15)
(0.8188995469 -0.06375876535 0.15)
(0.8296648616 -0.06395209632 0.15)
(0.8298927066 -0.05263938613 0.15)
(0.819126371 -0.05244703393 0.15)
(0.8578323813 0.126546119 0.15)
(0.8577448821 0.1209096228 0.15)
(0.8631253788 0.1207339753 0.15)
(0.8684988066 0.1205551257 0.15)
(0.8688686841 0.1539419776 0.15)
(0.8581554585 0.154376867 0.15)
(0.847444081 0.1548045159 0.15)
(0.8473139044 0.1436652911 0.15)
(0.8066484444 0.29169129 0.15)
(0.8070486721 0.314342882 0.15)
(0.8054797731 0.2237367413 0.15)
(0.8058530207 0.2463419901 0.15)
(0.8702489841 0.2440458717 0.15)
(0.8488048295 0.2448348048 0.15)
(0.7202559747 0.2717398623 0.15)
(0.7417737201 0.2710734093 0.15)
(0.7421744312 0.2937479962 0.15)
(0.7425628297 0.3164078387 0.15)
(1.024669841 -0.02727802216 0.15)
(0.9930033039 -0.03082417113 0.15)
(1.003154617 -0.02682466931 0.15)
(0.9923015025 -0.06486994149 0.15)
(1.002432008 -0.0611940738 0.15)
(1.002672857 -0.04973860542 0.15)
(0.9924993212 -0.05351058985 0.15)
(1.007149513 0.1132322327 0.15)
(1.007024323 0.1239285575 0.15)
(1.007395646 0.08069574006 0.15)
(1.007657492 0.09172267241 0.15)
(1.037845939 0.08704987506 0.15)
(1.027078255 0.08727326246 0.15)
(0.8737955065 0.1147763616 0.15)
(0.8899138488 0.1142426341 0.15)
(0.8845436671 0.1144331581 0.15)
(0.8900460651 0.1308070948 0.15)
(0.8792891851 0.1257403653 0.15)
(0.8792354912 0.1201893984 0.15)
(0.8845942589 0.1199793001 0.15)
(0.8899570529 0.1197704073 0.15)
(1.039531978 0.1672428527 0.15)
(1.018006735 0.167695416 0.15)
(0.9969852471 0.1693679598 0.15)
(0.9965580604 0.1466710245 0.15)
(1.007073419 0.145768791 0.15)
(1.006981328 0.1347283875 0.15)
(0.9964336785 0.1355219757 0.15)
(0.9571079778 0.308736378 0.15)
(0.9567058675 0.2860428164 0.15)
(0.9780690544 0.2851135542 0.15)
(0.9784731433 0.3078060741 0.15)
(0.9771996642 0.2395287571 0.15)
(0.9558684256 0.2405503681 0.15)
(1.040977105 0.2359773627 0.15)
(1.01978907 0.2372450179 0.15)
(0.8916728698 0.2432443618 0.15)
(0.9345040378 0.2415176639 0.15)
(0.9357197032 0.3096141562 0.15)
(0.9353187608 0.2869285717 0.15)
(-0.01055565685 0.03266178984 0.15)
(-0.06623252782 0.02348109613 0.15)
(-0.06630024492 -0.04565275537 0.15)
(-0.06638286932 -0.02257992072 0.15)
(-0.01419482665 0.1427051104 0.15)
(-0.01395458109 0.1347742571 0.15)
(-0.007280692729 0.135529428 0.15)
(-0.008982212273 0.1428883951 0.15)
(-0.01351124923 0.1276779103 0.15)
(-0.007732596186 0.1264379683 0.15)
(-0.1540814634 0.07548718226 0.15)
(-0.1756281321 0.07672847017 0.15)
(-0.1110478552 0.07373172261 0.15)
(-0.1106404511 0.1211298314 0.15)
(-0.08902933592 0.1196712408 0.15)
(-0.01286390013 0.1580253081 0.15)
(-0.01367479863 0.1508027375 0.15)
(-0.008284836966 0.1506410241 0.15)
(-0.005873407167 0.1570680556 0.15)
(-0.03707702446 0.3342719122 0.15)
(-0.03775791558 0.3114061725 0.15)
(-0.03865509213 0.2884149514 0.15)
(-0.01667256943 0.2882658431 0.15)
(-0.005676535021 0.2881756852 0.15)
(-0.1496001245 0.2642276856 0.15)
(-0.1711281578 0.2643572362 0.15)
(-0.1059779937 0.2647268533 0.15)
(-0.1034564433 0.3118242561 0.15)
(0.08068272961 0.2357537202 0.15)
(0.08056253235 0.2299606668 0.15)
(0.08606004081 0.2298366811 0.15)
(0.09155499307 0.2297100486 0.15)
(0.002898440968 0.2193726363 0.15)
(0.01402977552 0.2193538501 0.15)
(0.02561166215 0.2307918246 0.15)
(0.01967551296 0.2193533759 0.15)
(0.02592861297 0.2422037837 0.15)
(0.1612566193 0.4220793152 0.15)
(0.1607661409 0.3993215968 0.15)
(0.1173140708 0.4002031595 0.15)
(0.1178227134 0.4229684977 0.15)
(0.1163059518 0.3546802922 0.15)
(0.09825472697 0.5143848586 0.15)
(0.09717487581 0.4689636804 0.15)
(0.13952196 0.4225142765 0.15)
(0.05276929211 0.4242602141 0.15)
(0.322117331 -0.1454163835 0.15)
(0.3005983508 -0.1449989597 0.15)
(0.2790693937 -0.1445803258 0.15)
(0.2589599886 -0.07588244502 0.15)
(0.2804867989 -0.07630803528 0.15)
(0.2795420863 -0.1218122313 0.15)
(0.2580151919 -0.1213906402 0.15)
(0.3440949649 -0.1230674182 0.15)
(0.3225909603 -0.1226513094 0.15)
(0.1933807519 -0.1201137341 0.15)
(0.1718000375 -0.1196830096 0.15)
(0.2364763422 -0.1209667972 0.15)
(0.237421244 -0.07545360319 0.15)
(0.2549664204 0.2370231359 0.15)
(0.2548401812 0.2305906682 0.15)
(0.1896925288 0.2336706605 0.15)
(0.1898080118 0.2394488097 0.15)
(0.3346397938 0.418171916 0.15)
(0.3341738146 0.3954376879 0.15)
(0.2908506595 0.3964565711 0.15)
(0.2913247421 0.41919563 0.15)
(0.2894352512 0.3282792596 0.15)
(0.2899028727 0.3509964494 0.15)
(0.271556829 0.5107503313 0.15)
(0.2705993159 0.4652064469 0.15)
(0.3129838622 0.4186882405 0.15)
(0.2263023824 0.4206707339 0.15)
(0.4942741181 -0.1487108685 0.15)
(0.4727469294 -0.1483032742 0.15)
(0.4512217613 -0.1478947223 0.15)
(0.4310981188 -0.07925555517 0.15)
(0.4526331166 -0.07967231557 0.15)
(0.4516942017 -0.1251386251 0.15)
(0.4301590988 -0.1247268636 0.15)
(0.5162657489 -0.1263621974 0.15)
(0.4947465164 -0.1259567709 0.15)
(0.36559697 -0.1234834849 0.15)
(0.4086320362 -0.1243132707 0.15)
(0.4095721611 -0.07883698438 0.15)
(0.4214992276 -0.02229920094 0.15)
(0.4322640799 -0.02251452704 0.15)
(0.3999794998 -0.0218697587 0.15)
(0.3997460254 -0.03321235716 0.15)
(0.4116670538 0.0232285318 0.15)
(0.4114360624 0.01190888623 0.15)
(0.4221958948 0.01169266544 0.15)
(0.4329607261 0.01147633956 0.15)
(0.346912544 0.01322847015 0.15)
(0.3576512969 0.01300869167 0.15)
(0.3684020472 0.01278866095 0.15)
(0.3686352483 0.02411826228 0.15)
(0.3634887225 0.03556497201 0.15)
(0.4282432078 0.2284362391 0.15)
(0.4281040102 0.2225767704 0.15)
(0.4335414017 0.2226333882 0.15)
(0.4389626425 0.2226354335 0.15)
(0.3632684172 0.2295097544 0.15)
(0.363417165 0.2354904491 0.15)
(0.5073763439 0.4138610198 0.15)
(0.506928655 0.3911404102 0.15)
(0.4638263223 0.3922436704 0.15)
(0.4642750531 0.4149662585 0.15)
(0.4629305121 0.3468294663 0.15)
(0.4444604858 0.50645102 0.15)
(0.4435562982 0.4610089423 0.15)
(0.4858310817 0.4144080247 0.15)
(0.3994700934 0.4166008279 0.15)
(0.6664329862 -0.1519063753 0.15)
(0.644915522 -0.1515119884 0.15)
(0.6233990996 -0.1511156229 0.15)
(0.6032973801 -0.08252792803 0.15)
(0.6248037836 -0.08292508306 0.15)
(0.6238684566 -0.1283634618 0.15)
(0.6023600115 -0.1279682643 0.15)
(0.688416892 -0.1295445389 0.15)
(0.6669023851 -0.1291522146 0.15)
(0.537787002 -0.1267666662 0.15)
(0.5808386323 -0.1275697942 0.15)
(0.581776064 -0.08212645859 0.15)
(0.5937022384 -0.02567867628 0.15)
(0.6044642805 -0.02588494132 0.15)
(0.5721752179 -0.02526308382 0.15)
(0.5719432687 -0.03658070881 0.15)
(0.583976023 0.02541205833 0.15)
(0.5893566867 0.02529192957 0.15)
(0.583628973 0.008429601135 0.15)
(0.5943917836 0.00821231751 0.15)
(0.5946221234 0.01950096994 0.15)
(0.5892403969 0.01961812038 0.15)
(0.5838585232 0.01972827237 0.15)
(0.6051535946 0.007995054906 0.15)
(0.6053847239 0.01927368852 0.15)
(0.6000039761 0.01938981817 0.15)
(0.5190617703 0.009717096218 0.15)
(0.5298196031 0.009500917473 0.15)
(0.5405794986 0.009287696024 0.15)
(0.5408089647 0.02058236814 0.15)
(0.5902324327 0.2302170989 0.15)
(0.590036978 0.2189226119 0.15)
(0.6006478926 0.2073418104 0.15)
(0.5305891195 0.2147492912 0.15)
(0.5251819515 0.2148932824 0.15)
(0.5468119414 0.2143800039 0.15)
(0.5414202843 0.2145005638 0.15)
(0.547112661 0.2313472316 0.15)
(0.5415275846 0.2201749621 0.15)
(0.5469180737 0.2200464249 0.15)
(0.8385694899 -0.1550714053 0.15)
(0.8380980611 -0.1778745341 0.15)
(0.795060638 -0.1770617025 0.15)
(0.7955328563 -0.1542685925 0.15)
(0.7945880623 -0.1998718087 0.15)
(0.7754166235 -0.08565758739 0.15)
(0.7969332981 -0.08604195548 0.15)
(0.7973938489 -0.06337562825 0.15)
(0.7960016339 -0.1314964148 0.15)
(0.7744850854 -0.131106048 0.15)
(0.8605628562 -0.132687763 0.15)
(0.8390394775 -0.1322892508 0.15)
(0.7099374186 -0.1299359896 0.15)
(0.7529665584 -0.1307146395 0.15)
(0.754354501 -0.06260676594 0.15)
(0.7538979704 -0.08527217747 0.15)
(0.7657974267 -0.02890585154 0.15)
(0.7765616996 -0.02910116104 0.15)
(0.7443019367 -0.02851292685 0.15)
(0.7545803884 -0.05129201416 0.15)
(0.7548149585 -0.03999244825 0.15)
(0.7440736595 -0.03979862198 0.15)
(0.7560346295 0.02182457242 0.15)
(0.7614190886 0.02183739325 0.15)
(0.7557116109 0.0050336524 0.15)
(0.766465886 0.004838553096 0.15)
(0.7665784198 0.0104764333 0.15)
(0.7666924579 0.01613828717 0.15)
(0.7613064918 0.01619651371 0.15)
(0.7559272299 0.01624059621 0.15)
(0.7772321164 0.004641201992 0.15)
(0.7773448184 0.01028708042 0.15)
(0.7719616716 0.01038425631 0.15)
(0.7718491168 0.004745376329 0.15)
(0.6911794215 0.006321411558 0.15)
(0.7019311506 0.006100360038 0.15)
(0.7021551974 0.01737514168 0.15)
(0.6967798268 0.01750916225 0.15)
(0.6914069722 0.01762012483 0.15)
(0.7126928774 0.005879098317 0.15)
(0.7129163777 0.0171278857 0.15)
(0.7075359242 0.01725801225 0.15)
(0.7076510881 0.02292584378 0.15)
(0.7130312053 0.02277972077 0.15)
(0.7828350355 0.1458716324 0.15)
(0.777447056 0.1459768116 0.15)
(0.7720424136 0.1460506342 0.15)
(0.7719186536 0.1403069666 0.15)
(0.7515636092 0.2142576714 0.15)
(0.7517465201 0.2255264164 0.15)
(0.7512137049 0.1917636564 0.15)
(0.7834784001 0.1906964127 0.15)
(0.7727296875 0.1910609325 0.15)
(0.697588866 0.2046565058 0.15)
(0.7083493539 0.2043287466 0.15)
(0.7191259077 0.2040039504 0.15)
(0.7193064554 0.2152554412 0.15)
(0.7194902924 0.2265206659 0.15)
(1.011262779 -0.1530669968 0.15)
(1.010781061 -0.1759789333 0.15)
(0.9673469037 -0.1804299254 0.15)
(0.9678187528 -0.157606801 0.15)
(0.9669147094 -0.203269887 0.15)
(0.9475578319 -0.08883671937 0.15)
(0.9692283582 -0.08927733388 0.15)
(0.9695417614 -0.06656890429 0.15)
(0.9682932019 -0.1348027355 0.15)
(0.9466237595 -0.1343581429 0.15)
(1.03326974 -0.1306076235 0.15)
(1.011744497 -0.1301550602 0.15)
(0.8820740905 -0.1330930213 0.15)
(0.9250930762 -0.1339264699 0.15)
(0.9264879936 -0.06572472223 0.15)
(0.9260259806 -0.08841302357 0.15)
(0.9379334982 -0.03204386646 0.15)
(0.9486884578 -0.03225398347 0.15)
(0.9164123713 -0.03163339901 0.15)
(0.9157359703 -0.06551766761 0.15)
(0.9159639413 -0.05419895876 0.15)
(0.939005376 0.01936596139 0.15)
(0.9388589864 0.01335471035 0.15)
(0.9442289587 0.01320179908 0.15)
(0.9495912297 0.01296803183 0.15)
(0.8635440618 0.01457810972 0.15)
(0.8688989954 0.01442351419 0.15)
(0.8742523406 0.01424094587 0.15)
(0.8743843694 0.02009246349 0.15)
(1.208823659 0.0261531472 0.15)
(1.187298416 0.02660571047 0.15)
(1.186816713 0.003694473761 0.15)
(1.208341956 0.003241910489 0.15)
(1.143776224 0.004599390105 0.15)
(1.144257928 0.02751062681 0.15)
(1.142331091 -0.06413541977 0.15)
(1.142812788 -0.041224483 0.15)
(1.145703061 0.09624543669 0.15)
(1.146184773 0.1191570733 0.15)
(1.14473964 0.05042226343 0.15)
(1.209305371 0.04906478381 0.15)
(1.187780128 0.04951734709 0.15)
(1.048362702 0.07536773025 0.15)
(1.048603595 0.08682529817 0.15)
(1.080645621 0.07469148989 0.15)
(1.080886478 0.08614735819 0.15)
(1.070128853 0.08637343474 0.15)
(1.069887996 0.07491756645 0.15)
(1.081609044 0.120514762 0.15)
(1.059852942 0.1095112479 0.15)
(1.059612087 0.09805547958 0.15)
(1.07036971 0.09782930304 0.15)
(1.081127332 0.09760312651 0.15)
(0.110164664 0.0408890515 0.15)
(0.1104007791 0.05226210118 0.15)
(0.1049722458 0.05238893765 0.15)
(0.1050914727 0.05810729494 0.15)
(0.1105209911 0.0579797376 0.15)
(0.08883676313 0.05843944434 0.15)
(0.09423631912 0.05833302149 0.15)
(0.1700658314 0.05682294208 0.15)
(0.1754603562 0.05674363098 0.15)
(0.1538137458 0.05698969978 0.15)
(0.1592296527 0.05692834319 0.15)
(0.1534714627 0.03994852942 0.15)
(0.159111558 0.05121626349 0.15)
(0.153699239 0.05130555083 0.15)
(0.0226639524 0.04304990476 0.15)
(0.0227917939 0.05444913614 0.15)
(0.02296837444 0.06583544017 0.15)
(0.01172335662 0.06625250399 0.15)
(0.0005083540921 0.06669424233 0.15)
(0.07804652676 0.06436936665 0.15)
(0.06693372746 0.05324460108 0.15)
(0.06672252908 0.04186732672 0.15)
(0.1680520576 0.2396796735 0.15)
(0.1679543574 0.2337007062 0.15)
(0.09703015194 0.2296172395 0.15)
(0.1024741836 0.2295757962 0.15)
(0.1025793648 0.2353872693 0.15)
(0.1040508671 0.2980023727 0.15)
(0.09315079809 0.298194536 0.15)
(0.1258513949 0.2976080358 0.15)
(0.1261063481 0.3089731878 0.15)
(0.1138821607 0.2523376282 0.15)
(0.1141642551 0.2637092111 0.15)
(0.1032558879 0.2639015488 0.15)
(0.09235721346 0.2640886817 0.15)
(0.1794144632 0.2624623681 0.15)
(0.1685395091 0.2626740078 0.15)
(0.1682829885 0.2512818828 0.15)
(0.1737297428 0.2511653656 0.15)
(0.1791700451 0.2510749898 0.15)
(0.1576938008 0.2628970352 0.15)
(0.1574357221 0.2515259476 0.15)
(0.1628471688 0.2513951694 0.15)
(0.1627227034 0.2456655198 0.15)
(0.1573076359 0.2458143781 0.15)
(0.3041370396 0.02545231739 0.15)
(0.3148948094 0.02523313931 0.15)
(0.3151296409 0.03659271298 0.15)
(0.3144268187 0.00254596386 0.15)
(0.3036670284 0.002764184204 0.15)
(0.3359393799 0.002108670535 0.15)
(0.2603753338 -0.007708132832 0.15)
(0.2711331246 -0.007926311135 0.15)
(0.2713677459 0.003423264753 0.15)
(0.2606109759 0.003642421815 0.15)
(0.2929043438 0.002987466503 0.15)
(0.2926687437 -0.008361088585 0.15)
(0.293613702 0.03701207335 0.15)
(0.2933752077 0.02566858021 0.15)
(0.2921983542 -0.03106721779 0.15)
(0.2924340804 -0.01971266403 0.15)
(0.2816632294 -0.0194972118 0.15)
(0.2818959142 -0.008144594539 0.15)
(0.2828336008 0.03721571741 0.15)
(0.2830623173 0.04852230792 0.15)
(0.2776729701 0.04861001204 0.15)
(0.2777856334 0.05420648037 0.15)
(0.2831741826 0.05412839514 0.15)
(0.2616628672 0.05457736486 0.15)
(0.2670372506 0.05444396518 0.15)
(0.3423917385 0.05338967155 0.15)
(0.3477494801 0.05322591497 0.15)
(0.3262692303 0.05386797435 0.15)
(0.3316471419 0.05371209554 0.15)
(0.3258892841 0.03636749419 0.15)
(0.3312691582 0.03625738424 0.15)
(0.3313893324 0.04197322106 0.15)
(0.3260096495 0.042092429 0.15)
(0.1966672319 0.03905535164 0.15)
(0.1969079725 0.05045811065 0.15)
(0.1915126632 0.05059525102 0.15)
(0.1916372702 0.05637920972 0.15)
(0.1970324808 0.05623737038 0.15)
(0.180848382 0.05664065125 0.15)
(0.2562825082 0.05471199042 0.15)
(0.2401165946 0.05512389094 0.15)
(0.2455038869 0.05498601893 0.15)
(0.2397711385 0.03812209597 0.15)
(0.2453880447 0.04933350504 0.15)
(0.2400014958 0.04945915872 0.15)
(0.3417658173 0.2363199464 0.15)
(0.3416494875 0.2306442377 0.15)
(0.2765209554 0.2301617409 0.15)
(0.2766628841 0.2365792755 0.15)
(0.2778790168 0.2944697029 0.15)
(0.267019669 0.2947100209 0.15)
(0.2995606155 0.2939848459 0.15)
(0.3002664581 0.3280325317 0.15)
(0.3000287744 0.3166800196 0.15)
(0.2876577082 0.2428777545 0.15)
(0.2822293757 0.2428238468 0.15)
(0.2880176305 0.2601870133 0.15)
(0.2825976391 0.2602919654 0.15)
(0.2824773619 0.2545712297 0.15)
(0.2878914808 0.2544724024 0.15)
(0.2662972835 0.2606366771 0.15)
(0.2661764598 0.2548899471 0.15)
(0.2716142581 0.2547756186 0.15)
(0.2717349346 0.2605153502 0.15)
(0.3530612798 0.2587254648 0.15)
(0.3422264101 0.2589882732 0.15)
(0.3419972712 0.2476615871 0.15)
(0.3474183793 0.2475146023 0.15)
(0.3528306366 0.2473748051 0.15)
(0.3313894778 0.2592481243 0.15)
(0.3311607593 0.2479414338 0.15)
(0.3365760579 0.2478035731 0.15)
(0.3364613354 0.2421567369 0.15)
(0.3310484567 0.2423145512 0.15)
(0.2008083864 0.2450598202 0.15)
(0.1953695792 0.2451261592 0.15)
(0.2011746424 0.2620518758 0.15)
(0.1902945633 0.2622576218 0.15)
(0.1900476504 0.2508943013 0.15)
(0.1954919938 0.250805841 0.15)
(0.2009313174 0.250716486 0.15)
(0.1846082007 0.2509776576 0.15)
(0.2608724403 0.2607487327 0.15)
(0.2607517427 0.2550080014 0.15)
(0.2446207257 0.2611234286 0.15)
(0.2445104883 0.2554044822 0.15)
(0.2499248713 0.2552706416 0.15)
(0.2500441907 0.2609933979 0.15)
(0.2496785693 0.24350822 0.15)
(0.2442493854 0.2437944054 0.15)
(0.234969708 0.3181218878 0.15)
(0.2352095174 0.3294803566 0.15)
(0.2344822801 0.2954141164 0.15)
(0.2561782331 0.2949459613 0.15)
(0.497780906 0.02146001719 0.15)
(0.4975502299 0.0101553683 0.15)
(0.5083089995 0.009936169199 0.15)
(0.4437335345 0.01125884573 0.15)
(0.4545022808 0.01103843665 0.15)
(0.4547356501 0.02237603621 0.15)
(0.4643304555 -0.03448921201 0.15)
(0.464562741 -0.02315559055 0.15)
(0.4430359517 -0.02272900051 0.15)
(0.4443293152 0.03978622539 0.15)
(0.4444657231 0.04575087595 0.15)
(0.4390734228 0.04584084265 0.15)
(0.433681802 0.04586798119 0.15)
(0.5197373597 0.04342004182 0.15)
(0.5143656843 0.04358709201 0.15)
(0.5089960672 0.04375689955 0.15)
(0.5088840547 0.03814381387 0.15)
(0.3636061445 0.04124505878 0.15)
(0.3638484028 0.05272000184 0.15)
(0.353107165 0.053059459 0.15)
(0.4282899512 0.04583661163 0.15)
(0.4228986421 0.04578342586 0.15)
(0.4227780875 0.04004949304 0.15)
(0.5039232278 0.2324466217 0.15)
(0.5038079776 0.2267746911 0.15)
(0.5037020989 0.2210727569 0.15)
(0.5091047935 0.2209538653 0.15)
(0.5089917166 0.2152425803 0.15)
(0.5035849506 0.2153105462 0.15)
(0.519792769 0.2150363953 0.15)
(0.444365396 0.2225193413 0.15)
(0.4497473732 0.2223189672 0.15)
(0.4498670079 0.2280567202 0.15)
(0.4510642824 0.2903784232 0.15)
(0.4402674464 0.2906424324 0.15)
(0.4726366648 0.2898368494 0.15)
(0.4728539956 0.3011727857 0.15)
(0.4609766395 0.2448109962 0.15)
(0.4611928024 0.2561389553 0.15)
(0.4504080058 0.2564047118 0.15)
(0.4396131903 0.2566696787 0.15)
(0.5153472305 0.2661038242 0.15)
(0.5261336483 0.2658200297 0.15)
(0.4937768896 0.2666473556 0.15)
(0.4931504054 0.2327110262 0.15)
(0.4933572339 0.244023178 0.15)
(0.3743604934 0.2410998584 0.15)
(0.3689565404 0.2412064737 0.15)
(0.3747042984 0.2582134128 0.15)
(0.3638981701 0.2584636142 0.15)
(0.3636731051 0.2470928328 0.15)
(0.3690793847 0.2469541614 0.15)
(0.3744823168 0.2468465674 0.15)
(0.3582507029 0.2472258417 0.15)
(0.4288062724 0.256929899 0.15)
(0.417993482 0.257196244 0.15)
(0.4177743198 0.245868348 0.15)
(0.4231846826 0.2457335917 0.15)
(0.4230731814 0.2400496796 0.15)
(0.4176617768 0.2401824573 0.15)
(0.4080525096 0.3027822766 0.15)
(0.40782516 0.2914455507 0.15)
(0.4294577604 0.2909137132 0.15)
(0.6700268116 0.02378390033 0.15)
(0.6754044852 0.02371184505 0.15)
(0.6696765008 0.006741498438 0.15)
(0.6804285662 0.006536443383 0.15)
(0.6806594735 0.01785208984 0.15)
(0.6752827458 0.01796913519 0.15)
(0.6699062191 0.01804816791 0.15)
(0.6860365585 0.01775204074 0.15)
(0.6159064285 0.007778981261 0.15)
(0.6161383684 0.01904859584 0.15)
(0.6107635772 0.01916259981 0.15)
(0.6266452655 0.007563201899 0.15)
(0.626869018 0.01882398663 0.15)
(0.6215041826 0.01893578084 0.15)
(0.621617548 0.02456564179 0.15)
(0.6269812155 0.02444587037 0.15)
(0.6364837808 -0.03780562903 0.15)
(0.6367124784 -0.02649993832 0.15)
(0.6152183454 -0.02609003841 0.15)
(0.6163676748 0.03033566964 0.15)
(0.6164838869 0.03600577965 0.15)
(0.6112351545 0.04192521654 0.15)
(0.6058637131 0.04215097478 0.15)
(0.6810661556 0.03562516824 0.15)
(0.6809168114 0.02952095877 0.15)
(0.530385848 0.03762252833 0.15)
(0.5304917152 0.04313362064 0.15)
(0.5251122447 0.04326292635 0.15)
(0.6004902638 0.04237637515 0.15)
(0.5951168124 0.04260167555 0.15)
(0.5949836506 0.03669626984 0.15)
(0.5948585874 0.03089061594 0.15)
(0.6764269584 0.2278137483 0.15)
(0.6762380405 0.2165447295 0.15)
(0.6760563102 0.2052845616 0.15)
(0.6868179241 0.20496278 0.15)
(0.6168105714 0.2069187754 0.15)
(0.6221997245 0.2067742628 0.15)
(0.6329588561 0.2064771389 0.15)
(0.6331530798 0.2177606494 0.15)
(0.6333502082 0.2290395978 0.15)
(0.8529241606 0.02068869148 0.15)
(0.8527829262 0.0147323442 0.15)
(0.8581701864 0.01468809355 0.15)
(0.7826152211 0.00454202655 0.15)
(0.7827288178 0.01018288507 0.15)
(0.7934863983 0.009954708973 0.15)
(0.7933740957 0.004327826343 0.15)
(0.7937270787 0.02140217913 0.15)
(0.808367034 -0.05225482886 0.15)
(0.8081401888 -0.06356756006 0.15)
(0.8088175896 -0.02968331248 0.15)
(0.7873249728 -0.02929644953 0.15)
(0.7884943459 0.02751172171 0.15)
(0.7886387864 0.03352541426 0.15)
(0.7023974577 0.02885018471 0.15)
(0.7025301339 0.03473249552 0.15)
(0.7670750579 0.0335746974 0.15)
(0.7669412978 0.02768840849 0.15)
(0.8269515712 0.2229781338 0.15)
(0.8267634071 0.2116973966 0.15)
(0.8265945857 0.2004327564 0.15)
(0.8373274903 0.2000299604 0.15)
(0.8371632187 0.1887914303 0.15)
(0.8264331537 0.1891865649 0.15)
(0.8693106045 0.1875204074 0.15)
(0.8586034028 0.1879563704 0.15)
(0.7942182997 0.1903408801 0.15)
(0.8156981276 0.1895836042 0.15)
(0.8162189412 0.2233464164 0.15)
(0.8160358979 0.2120713728 0.15)
(0.7934894739 0.1399289618 0.15)
(0.7935798823 0.1455611058 0.15)
(0.7882091772 0.1457267353 0.15)
(1.020185822 0.02443295789 0.15)
(1.020214252 0.03006680506 0.15)
(1.019984402 0.007241093257 0.15)
(1.020075148 0.01298445474 0.15)
(1.036150114 0.006867205362 0.15)
(1.025473408 0.01284495181 0.15)
(1.02537277 0.007106799428 0.15)
(0.9549467032 0.01269639909 0.15)
(0.9807109491 -0.05521217276 0.15)
(0.9805277369 -0.0665428251 0.15)
(0.9811646933 -0.03263172144 0.15)
(0.9594372926 -0.03246997304 0.15)
(0.9539659213 0.1056280482 0.15)
(0.9646016235 0.1050263515 0.15)
(0.9752453092 0.1044237868 0.15)
(0.9752262306 0.1152194231 0.15)
(0.9752440533 0.1261051236 0.15)
(1.037092677 0.0526497081 0.15)
(1.026283852 0.05281924839 0.15)
(1.026112474 0.04704667535 0.15)
(1.020651364 0.04705126958 0.15)
(1.020832975 0.05283482995 0.15)
(1.020281108 0.03562532788 0.15)
(0.9327591979 0.1286993737 0.15)
(0.9326939358 0.1176981249 0.15)
(0.9379835544 0.1064921905 0.15)
(0.9433106957 0.1062050499 0.15)
(0.1497185527 -0.1420237902 0.15)
(0.1280999939 -0.1415852685 0.15)
(0.1064875389 -0.1411418741 0.15)
(0.08626155232 -0.07237052651 0.15)
(0.1078820004 -0.07281909012 0.15)
(0.1069515278 -0.1183595935 0.15)
(0.08533373194 -0.1179180872 0.15)
(0.1501884562 -0.1192456349 0.15)
(0.02015301913 -0.1164866643 0.15)
(-0.001649968959 -0.1159662478 0.15)
(0.06358561663 -0.1174428341 0.15)
(0.0645053229 -0.07189110194 0.15)
(0.08757089729 -0.004099964911 0.15)
(0.07669723672 -0.003855345168 0.15)
(0.06582087675 -0.003610668671 0.15)
(0.05489062304 -0.003350855976 0.15)
(0.04457341948 0.03104361228 0.15)
(0.05555038442 0.03076481352 0.15)
(0.05511193089 0.008022004907 0.15)
(0.0441996573 0.008285440458 0.15)
(0.0877920421 0.007269898737 0.15)
(0.07692288054 0.007514423889 0.15)
(0.02219934738 0.008873019527 0.15)
(0.02233062176 0.02027377909 0.15)
(0.01130690302 0.02058856858 0.15)
(0.0002217298669 0.02094565919 0.15)
(0.03326563569 0.008556334802 0.15)
(0.03352540098 0.03135391156 0.15)
(0.01316405363 0.1898045188 0.15)
(0.01324895627 0.1958360668 0.15)
(0.249608566 -0.007488765568 0.15)
(0.2388347998 -0.007269251164 0.15)
(0.2280720312 -0.007049967981 0.15)
(0.2180014025 0.02723129223 0.15)
(0.2287760213 0.02700475836 0.15)
(0.2283077574 0.004304585781 0.15)
(0.2175330335 0.004526120764 0.15)
(0.2498442292 0.003862788857 0.15)
(0.185175953 0.005195418492 0.15)
(0.1743902735 0.005419184254 0.15)
(0.2067453334 0.004748928787 0.15)
(0.2072128077 0.02745912017 0.15)
(0.6581774014 0.4097572561 0.15)
(0.6577544546 0.3870241237 0.15)
(0.6573399686 0.3643128183 0.15)
(0.6788629112 0.3637032686 0.15)
(0.6362457612 0.3876453764 0.15)
(0.6366644355 0.4103655958 0.15)
(0.6353902575 0.3422453282 0.15)
(0.6168323191 0.5010869401 0.15)
(0.6159897432 0.4564583644 0.15)
(0.5720505243 0.4121431809 0.15)
(0.7185896413 0.1702197582 0.15)
(0.7239694159 0.1700573388 0.15)
(0.7238555326 0.1643552728 0.15)
(0.7400188799 0.1639640308 0.15)
(0.7346345324 0.1640992403 0.15)
(0.6970528707 0.1708852108 0.15)
(0.7024368988 0.1707348047 0.15)
(0.7078174608 0.1705622665 0.15)
(0.7079174347 0.1762212153 0.15)
(0.9545654217 0.1721532452 0.15)
(0.9439297195 0.1727549419 0.15)
(0.9437787897 0.1615325349 0.15)
(0.9544125575 0.1609339796 0.15)
(0.9224679707 0.1626690421 0.15)
(0.9226155101 0.1738729163 0.15)
(0.9221991854 0.1403225546 0.15)
(0.9126683501 0.2195928085 0.15)
(0.9122805373 0.1969132494 0.15)
(0.933275212 0.1733185255 0.15)
(0.8800185748 0.1870734258 0.15)
(0.8907123169 0.1866157409 0.15)
(0.8905560015 0.175375043 0.15)
(0.1315946031 0.02905297638 0.15)
(0.142432082 0.02881911956 0.15)
(0.1419674388 0.006100866879 0.15)
(0.1311318965 0.006331682321 0.15)
(0.1635916179 0.005644223056 0.15)
(0.09840449799 -0.004332739974 0.15)
(0.09863149945 0.007035000098 0.15)
(0.1203043945 0.006564329161 0.15)
(0.1200734569 -0.004800327493 0.15)
(0.1207661644 0.02928864357 0.15)
(0.1092449341 -0.004568659412 0.15)
(0.01180377874 0.08915457365 0.15)
(0.0118273875 0.09488734403 0.15)
(0.006023539111 0.1009407791 0.15)
(0.0002201833339 0.1012850425 0.15)
(0.03450215732 0.09419086367 0.15)
(0.03447560481 0.08838944 0.15)
(0.03732395504 0.2535131509 0.15)
(0.038007258 0.2763128254 0.15)
(0.004966777053 0.2766534156 0.15)
(0.01599925419 0.2765534895 0.15)
(0.08144453695 0.2642711078 0.15)
(0.07054977239 0.2644491564 0.15)
(0.07021805255 0.2530626134 0.15)
(0.06084103987 0.3101583345 0.15)
(0.06054653283 0.2987720093 0.15)
(0.08226712542 0.2983863545 0.15)
(0.6863582709 0.1768206241 0.15)
(0.6862498279 0.1711394483 0.15)
(0.6916534046 0.1710149369 0.15)
(0.6592167625 0.1714680593 0.15)
(0.6646216823 0.1714074338 0.15)
(0.6647642147 0.1772352254 0.15)
(0.6648901676 0.1829880489 0.15)
(0.6126202544 0.2748350623 0.15)
(0.6233881927 0.2745286512 0.15)
(0.634149511 0.2742403833 0.15)
(0.6550864229 0.2397156587 0.15)
(0.6443114651 0.2400212171 0.15)
(0.6339455136 0.2629201702 0.15)
(0.6337488721 0.2516168062 0.15)
(0.6445118535 0.2513124997 0.15)
(0.6552828122 0.2510070253 0.15)
(0.6124143836 0.2635208899 0.15)
(0.6231853843 0.2632174151 0.15)
(0.6768154794 0.2503842684 0.15)
(0.6875814392 0.2500788991 0.15)
(0.6983458317 0.2497465568 0.15)
(0.6660518555 0.2507055921 0.15)
(0.6658524038 0.2394112892 0.15)
(0.5688770385 0.2420783127 0.15)
(0.5581005974 0.2423608972 0.15)
(0.5585069828 0.2649723509 0.15)
(0.5692864022 0.2646887035 0.15)
(0.5369282325 0.2655440652 0.15)
(0.6018479385 0.2751235615 0.15)
(0.6016431096 0.2638113676 0.15)
(0.5800597808 0.2644031826 0.15)
(0.5802696087 0.2757152714 0.15)
(0.5796475439 0.2417988535 0.15)
(0.591052817 0.2754215421 0.15)
(0.8308684499 0.1216948723 0.15)
(0.8362718056 0.1216074238 0.15)
(0.8363718926 0.1272717514 0.15)
(0.8364561116 0.1328949536 0.15)
(0.9110904152 0.0964923782 0.15)
(0.905760835 0.09675866547 0.15)
(0.8953172986 0.1195354624 0.15)
(0.8952782602 0.1140155233 0.15)
(0.9113094 0.1132827849 0.15)
(0.905978511 0.1135343964 0.15)
(-0.08922619998 0.09610237144 0.15)
(-0.07844243409 0.09566389847 0.15)
(-0.07831945845 0.1073121872 0.15)
(-0.08904201944 0.1076170441 0.15)
(-0.05682318546 0.1065806712 0.15)
(-0.05664418845 0.09438081314 0.15)
(-0.05685069185 0.1440637842 0.15)
(-0.05695200183 0.1313194449 0.15)
(-0.04416714637 0.04565537842 0.15)
(-0.04411109401 0.05716054223 0.15)
(-0.05520802067 0.05769932005 0.15)
(-0.05511562433 0.04606170657 0.15)
(-0.05603806577 0.08175428257 0.15)
(-0.04474418217 0.08085458495 0.15)
(-0.0893223127 0.08439970607 0.15)
(-0.07834115186 0.08359260238 0.15)
(-0.01106093948 0.09039736746 0.15)
(-0.0110535156 0.07888136698 0.15)
(0.0005762302993 0.07813714385 0.15)
(-0.03336450322 0.08000609522 0.15)
(-0.03313642244 0.04521231334 0.15)
(-0.03316652267 0.05675869719 0.15)
(-0.01834899894 0.2423879453 0.15)
(-0.01878557167 0.2309000839 0.15)
(-0.01936306502 0.2193080616 0.15)
(-0.008240523557 0.2193567752 0.15)
(-0.0870667869 0.1943527885 0.15)
(-0.07628223651 0.1943131871 0.15)
(-0.07592190569 0.2059092751 0.15)
(-0.08668486152 0.206010236 0.15)
(-0.05384805641 0.2065359185 0.15)
(-0.0545625324 0.1944656699 0.15)
(-0.05154341564 0.2422888741 0.15)
(-0.05220550222 0.2305600998 0.15)
(-0.05642349804 0.1574747146 0.15)
(-0.05511426869 0.1825478343 0.15)
(-0.08746004906 0.1826318652 0.15)
(-0.07672251769 0.1825157353 0.15)
(0.05299358211 0.2247105096 0.15)
(0.04747482027 0.2248036352 0.15)
(0.06401866269 0.2244700079 0.15)
(0.06414657598 0.2302685003 0.15)
(0.06962238937 0.2301782781 0.15)
(0.01907189504 0.201747174 0.15)
(0.01950320987 0.213579622 0.15)
(0.002313109021 0.2077550732 0.15)
(0.007889181292 0.2077008514 0.15)
(0.01356678736 0.2077228123 0.15)
(0.01386079455 0.2135906287 0.15)
(0.04153458449 0.2072479208 0.15)
(0.03600198037 0.2073439381 0.15)
(0.03596257753 0.2012976304 0.15)
(0.0362727228 0.2191603578 0.15)
(0.03655804585 0.2249814465 0.15)
(0.04201397598 0.2249017445 0.15)
(0.2331335019 0.2332603352 0.15)
(0.2332598453 0.2387462915 0.15)
(0.2115408409 0.2393549622 0.15)
(0.2114116327 0.2338754675 0.15)
(0.4066444585 0.2290557843 0.15)
(0.4067576699 0.2347734679 0.15)
(0.3850630859 0.2352115876 0.15)
(0.3849401449 0.2294593009 0.15)
(0.5790284133 0.2078792733 0.15)
(0.5683629332 0.2138200756 0.15)
(0.5786465737 0.1905741761 0.15)
(0.5787798012 0.1963875601 0.15)
(0.5733694326 0.1964268954 0.15)
(0.5679603973 0.1964344957 0.15)
(0.6111986325 0.1957057616 0.15)
(0.6058091537 0.1958347776 0.15)
(0.6004200797 0.1959354789 0.15)
(0.6002842334 0.190140254 0.15)
(0.5625618818 0.1965142908 0.15)
(0.5571861807 0.1967277359 0.15)
(0.5570226338 0.1907567544 0.15)
(0.5523033853 0.2199094948 0.15)
(0.5521963309 0.2142467939 0.15)
(0.5629786824 0.2139598841 0.15)
(0.734221372 0.005438469333 0.15)
(0.744974311 0.005227394584 0.15)
(0.7451973607 0.01640717619 0.15)
(0.7398234221 0.01651416069 0.15)
(0.7344437792 0.01663526821 0.15)
(0.7505605118 0.01631042071 0.15)
(0.7506672598 0.02186340377 0.15)
(0.7552670933 -0.01744096949 0.15)
(0.7554905726 -0.006193181885 0.15)
(0.7618078839 0.1801956095 0.15)
(0.761649204 0.1689851681 0.15)
(0.7722481485 0.1574059186 0.15)
(0.7615608435 0.1633552815 0.15)
(0.7454051702 0.1638260798 0.15)
(0.7561811993 0.1635238996 0.15)
(0.7562655228 0.1691520706 0.15)
(0.9065006475 0.0131078321 0.15)
(0.9118746071 0.01300184739 0.15)
(0.9172596877 0.01299665118 0.15)
(0.9173479286 0.01838298644 0.15)
(0.9273807073 -0.02060051711 0.15)
(0.927592222 -0.009398488122 0.15)
(0.9170573877 0.001947462259 0.15)
(0.9276981686 -0.003788475616 0.15)
(0.9438573334 -0.004093210595 0.15)
(0.9492310196 -0.004212192437 0.15)
(0.9330943335 -0.003884924982 0.15)
(0.9329863874 -0.009494895448 0.15)
(0.8843600701 -0.01979804067 0.15)
(0.8845777517 -0.008588139573 0.15)
(0.8740185837 0.002837339877 0.15)
(0.8955650441 0.002347322337 0.15)
(0.8958757225 0.01897946666 0.15)
(0.8957744779 0.0134503732 0.15)
(0.9011388207 0.01326757366 0.15)
(0.1267470785 0.05757547391 0.15)
(0.1321674013 0.05743870784 0.15)
(0.1159413958 0.05784687067 0.15)
(0.1158224086 0.05213991086 0.15)
(0.08914602854 0.0757750738 0.15)
(0.09462373713 0.07587965479 0.15)
(0.1000851191 0.07593556822 0.15)
(0.1002653382 0.08212864833 0.15)
(0.1483001757 0.0514068622 0.15)
(0.1484153207 0.05707379393 0.15)
(0.1376007822 0.05730456786 0.15)
(0.03961049124 0.06533781086 0.15)
(0.03408419255 0.06549110821 0.15)
(0.02313402367 0.08296724343 0.15)
(0.02877140492 0.08278340435 0.15)
(0.03422228456 0.07117906224 0.15)
(0.03428549233 0.07689709699 0.15)
(0.02870774889 0.07706307852 0.15)
(0.02313845195 0.07723118298 0.15)
(0.03972456096 0.07103447176 0.15)
(0.01182149575 0.07767096397 0.15)
(0.006167387128 0.07791266744 0.15)
(0.01749922104 0.07743646567 0.15)
(0.01751647352 0.08316186803 0.15)
(0.07833442452 0.08154500991 0.15)
(0.07824080574 0.07582201331 0.15)
(0.0836851312 0.07573745423 0.15)
(0.04536331763 0.07663438168 0.15)
(0.05088422315 0.07654331144 0.15)
(0.0563634995 0.07647032024 0.15)
(0.0564829538 0.08237551403 0.15)
(0.05614341744 0.06491789392 0.15)
(0.146176078 0.2346775041 0.15)
(0.1463318931 0.2403758879 0.15)
(0.1245405644 0.240732023 0.15)
(0.1244012549 0.2349623766 0.15)
(0.1242745866 0.22912795 0.15)
(0.1297283469 0.2289640751 0.15)
(0.2993621244 0.05419333695 0.15)
(0.3047471385 0.05423255195 0.15)
(0.2885738584 0.05410378785 0.15)
(0.2937343378 0.04270229481 0.15)
(0.2938511406 0.0484004986 0.15)
(0.2884580184 0.04845137394 0.15)
(0.3206299414 0.0422104372 0.15)
(0.3205095991 0.03648660215 0.15)
(0.3208911 0.05401345546 0.15)
(0.3101319543 0.05421475852 0.15)
(0.21319818 0.05581527212 0.15)
(0.2185954133 0.0556744905 0.15)
(0.2024187312 0.05609751983 0.15)
(0.2022957041 0.05034113402 0.15)
(0.234623926 0.04958372343 0.15)
(0.2347412935 0.05526121078 0.15)
(0.2239856964 0.05553615551 0.15)
(0.3199944697 0.2316797576 0.15)
(0.3200944607 0.2371016537 0.15)
(0.2983926615 0.2373868913 0.15)
(0.2982878873 0.2319277875 0.15)
(0.3096951763 0.2597472515 0.15)
(0.2988564454 0.259969132 0.15)
(0.2986211186 0.248633574 0.15)
(0.3040388884 0.2485656768 0.15)
(0.3094638998 0.2484616194 0.15)
(0.2877805709 0.2487214631 0.15)
(0.2932027392 0.2486724776 0.15)
(0.2930833357 0.2429457222 0.15)
(0.2884898305 0.2828841025 0.15)
(0.2882543145 0.2715395465 0.15)
(0.2771698596 0.2604070835 0.15)
(0.3318507972 0.2819034329 0.15)
(0.3316205533 0.270571769 0.15)
(0.3205404431 0.2595032287 0.15)
(0.3256255382 0.2424705761 0.15)
(0.3203120819 0.2482135345 0.15)
(0.3257375675 0.2480844616 0.15)
(0.3148917423 0.2483495007 0.15)
(0.2228993039 0.2616171246 0.15)
(0.2120375992 0.2618404884 0.15)
(0.2117907375 0.2505271778 0.15)
(0.2172239362 0.2504319502 0.15)
(0.2226566515 0.2503137278 0.15)
(0.2063606431 0.2506273412 0.15)
(0.2062370908 0.2449886924 0.15)
(0.2016657752 0.2847455662 0.15)
(0.2014201563 0.2733962215 0.15)
(0.2450951774 0.283832473 0.15)
(0.2448545574 0.2724830233 0.15)
(0.25545891 0.2608755538 0.15)
(0.2337555473 0.2613718709 0.15)
(0.238810477 0.2440937981 0.15)
(0.2335079499 0.250023568 0.15)
(0.2389340687 0.2498294674 0.15)
(0.2443744368 0.2496470699 0.15)
(0.2280851785 0.2501865914 0.15)
(0.4767235643 0.0447857989 0.15)
(0.4713480012 0.044958232 0.15)
(0.4659774117 0.04512936027 0.15)
(0.4658470314 0.0392611043 0.15)
(0.4873630163 0.03870121192 0.15)
(0.4874846863 0.04444062251 0.15)
(0.4821021247 0.04461320275 0.15)
(0.3906094993 0.04625875268 0.15)
(0.3852322406 0.04639811411 0.15)
(0.3798549945 0.04653807542 0.15)
(0.3797389401 0.04087546376 0.15)
(0.4012524456 0.04038793948 0.15)
(0.4013642227 0.04598982764 0.15)
(0.3959867958 0.04612119084 0.15)
(0.4874051066 0.2156783298 0.15)
(0.4981816653 0.215401344 0.15)
(0.4985357758 0.2325768954 0.15)
(0.4984245122 0.2269042808 0.15)
(0.4714415489 0.2274750922 0.15)
(0.4713082247 0.2216571092 0.15)
(0.4767124979 0.2216133011 0.15)
(0.482122423 0.2215528704 0.15)
(0.6379462387 0.03532118709 0.15)
(0.6378408815 0.0297867789 0.15)
(0.659385162 0.02957366836 0.15)
(0.6595066828 0.03530598052 0.15)
(0.5628592005 0.04372038173 0.15)
(0.557467127 0.04367841451 0.15)
(0.5520662486 0.04350310291 0.15)
(0.5519328619 0.03758699957 0.15)
(0.5518078071 0.03178174558 0.15)
(0.5733392564 0.03143407503 0.15)
(0.5734739245 0.03736355439 0.15)
(0.5736203262 0.04347052633 0.15)
(0.5682425932 0.04363490326 0.15)
(0.632639205 0.1894657994 0.15)
(0.6272542311 0.1895712155 0.15)
(0.6220977994 0.2011176555 0.15)
(0.6219891588 0.1954270818 0.15)
(0.6273714269 0.1952881152 0.15)
(0.6327541553 0.1951710437 0.15)
(0.6167086652 0.2012630679 0.15)
(0.6545131744 0.2058851337 0.15)
(0.6437261184 0.2061861454 0.15)
(0.6435316571 0.1948913375 0.15)
(0.6489326856 0.1947407739 0.15)
(0.6543281043 0.1946088324 0.15)
(0.6381363099 0.1950266782 0.15)
(0.6380235862 0.1893321895 0.15)
(0.6432820074 0.1833978457 0.15)
(0.6431195703 0.1774796525 0.15)
(0.621540756 0.1778580255 0.15)
(0.6217109377 0.1838115637 0.15)
(0.8204457915 0.01492311694 0.15)
(0.8258263711 0.01479898906 0.15)
(0.8312116015 0.01470577025 0.15)
(0.8313113208 0.02020989026 0.15)
(0.84133314 -0.01900943502 0.15)
(0.8415520106 -0.00779055693 0.15)
(0.8310007055 0.00358074527 0.15)
(0.8525395736 0.003252923158 0.15)
(0.7982979384 -0.01823365834 0.15)
(0.7985191659 -0.006997826041 0.15)
(0.7879970948 0.004431874559 0.15)
(0.8094727693 0.004000357874 0.15)
(0.8098006908 0.02083418431 0.15)
(0.8096903668 0.01520625986 0.15)
(0.8150655271 0.0150622415 0.15)
(0.8149268543 0.1335371731 0.15)
(0.8147989567 0.1277870011 0.15)
(0.7240138162 0.03373038444 0.15)
(0.7239016229 0.02810870066 0.15)
(0.7454041551 0.02743226531 0.15)
(0.7454963783 0.03281771667 0.15)
(0.8259833885 0.1556156016 0.15)
(0.8152330841 0.1559995591 0.15)
(0.8151021213 0.1448229426 0.15)
(0.8204794317 0.1446384701 0.15)
(0.8258506952 0.1444518242 0.15)
(0.8043447469 0.145203648 0.15)
(0.8097238341 0.1450085358 0.15)
(0.8096467719 0.1393927149 0.15)
(0.8047899959 0.1787501008 0.15)
(0.804633881 0.1675665114 0.15)
(0.7937351383 0.1567514147 0.15)
(0.9704273715 -0.02144955093 0.15)
(0.9706313833 -0.0102713695 0.15)
(0.9652494256 -0.01016521662 0.15)
(0.9653546364 -0.004590196382 0.15)
(0.9707364471 -0.00470334771 0.15)
(0.9546026223 -0.004335131354 0.15)
(0.9870792267 -0.003981715525 0.15)
(0.993080933 -0.002631573824 0.15)
(0.9761194769 -0.004758511853 0.15)
(0.9760144552 -0.01032453408 0.15)
(0.9859919651 0.07693971821 0.15)
(0.9859486152 0.07140500655 0.15)
(0.9912118461 0.0709800789 0.15)
(0.9963610028 0.07026738552 0.15)
(0.9645772618 0.07784495794 0.15)
(0.9646084 0.0833697241 0.15)
(0.9431710337 0.08414851227 0.15)
(0.9430769891 0.07848613801 0.15)
(0.9219661811 0.1072612476 0.15)
(0.9217490164 0.09041469023 0.15)
(0.9218505954 0.09610241171 0.15)
(0.9164684416 0.09629438767 0.15)
(0.9432947421 0.100736477 0.15)
(0.9432797778 0.09526738314 0.15)
(0.9486207675 0.09502046032 0.15)
(0.9539568613 0.09477854151 0.15)
(0.9379625872 0.1010230228 0.15)
(0.9378726568 0.08994266501 0.15)
(1.20496997 -0.1571396458 0.15)
(1.161929482 -0.1562347295 0.15)
(1.12032413 -0.08659479305 0.15)
(1.141849373 -0.08704735632 0.15)
(1.141367655 -0.1099592929 0.15)
(1.119842412 -0.1095067296 0.15)
(1.119360714 -0.1324176664 0.15)
(1.054794983 -0.1310601868 0.15)
(1.097835471 -0.1319651031 0.15)
(1.098798887 -0.08614222978 0.15)
(1.121769263 -0.01785998317 0.15)
(1.10024402 -0.0174074199 0.15)
(1.079682197 0.02886821665 0.15)
(1.079441344 0.01741254831 0.15)
(1.079200495 0.005957079922 0.15)
(1.078959626 -0.005499388243 0.15)
(1.046676781 -0.004819648656 0.15)
(1.068202003 -0.005273211708 0.15)
(1.068924564 0.0290938933 0.15)
(1.068683721 0.01763872484 0.15)
(1.21267735 0.2094460402 0.15)
(1.169636862 0.2103509565 0.15)
(1.125622952 0.1654328098 0.15)
(1.147148195 0.1649802466 0.15)
(1.146666485 0.1420687099 0.15)
(1.128513213 0.3029021297 0.15)
(1.127549797 0.2570792563 0.15)
(1.062502348 0.2355247994 0.15)
(1.084017593 0.2350724463 0.15)
(1.08353589 0.2121612096 0.15)
(0.847728783 0.177146868 0.15)
(0.8475847684 0.1659679252 0.15)
(0.8367121111 0.1552041916 0.15)
(0.8365907916 0.144058079 0.15)
(0.8365246121 0.1384841386 0.15)
(0.8312229542 0.1442649574 0.15)
(0.9980878834 0.2156756138 0.15)
(0.9975313923 0.192537399 0.15)
(0.9757996729 0.1708478102 0.15)
(0.9858826251 0.1363439417 0.15)
(0.9754482278 0.1482805114 0.15)
(0.9860175366 0.1475180748 0.15)
(0.9542508985 0.1496769905 0.15)
(0.9648620356 0.1490010937 0.15)
(-0.04598677086 0.1179183935 0.15)
(-0.03501959904 0.1170548714 0.15)
(-0.035200768 0.1233902793 0.15)
(-0.02982149239 0.1231565547 0.15)
(-0.02950680269 0.1166018916 0.15)
(-0.03014044992 0.1435281252 0.15)
(-0.03018731769 0.1367319038 0.15)
(-0.02237789811 0.09109440534 0.15)
(-0.02273524951 0.09718036159 0.15)
(-0.02311639382 0.103352537 0.15)
(-0.0286597646 0.1036976356 0.15)
(-0.02883820915 0.1097392214 0.15)
(-0.02325489856 0.1093099647 0.15)
(-0.0343205683 0.1100509301 0.15)
(-0.006051858089 0.1077519104 0.15)
(-0.01773498685 0.1089670597 0.15)
(-0.01668662532 0.0907097891 0.15)
(-0.01694746754 0.09668099136 0.15)
(-0.009558232662 0.1959669057 0.15)
(-0.00983668087 0.1900874596 0.15)
(-0.01023328664 0.1840780686 0.15)
(-0.004466148787 0.1841172513 0.15)
(-0.04488097754 0.1705036681 0.15)
(-0.03399570897 0.1706731959 0.15)
(-0.03362626726 0.1768177878 0.15)
(-0.02810690796 0.1769624021 0.15)
(-0.02857392269 0.170663127 0.15)
(-0.02750718802 0.1833414054 0.15)
(-0.02175619296 0.1836850947 0.15)
(-0.02986988688 0.1508688649 0.15)
(-0.02894434827 0.1644384381 0.15)
(-0.03434013623 0.1644909698 0.15)
(0.4172844544 0.2227116286 0.15)
(0.4226857415 0.2225733623 0.15)
(0.427953209 0.2166411288 0.15)
(0.5621033306 0.008863168606 0.15)
(0.5728661623 0.00864688476 0.15)
(0.5730968804 0.01995353321 0.15)
(0.5677161326 0.02006966285 0.15)
(0.5623340907 0.02017181661 0.15)
(0.5784777964 0.0198454018 0.15)
(0.5785953803 0.02553318687 0.15)
(0.5831689569 -0.0141637212 0.15)
(0.5833995279 -0.002864071206 0.15)
(0.5401181884 -0.0133196022 0.15)
(0.5403489276 -0.002011953971 0.15)
(0.5513404148 0.009075453335 0.15)
(0.5515700701 0.02037912347 0.15)
(0.5516875909 0.0260639092 0.15)
(0.556952196 0.02028096882 0.15)
(0.7122424781 -0.01663740919 0.15)
(0.7124682932 -0.005373667163 0.15)
(0.7234576035 0.005657773536 0.15)
(0.7184113646 0.02263559731 0.15)
(0.7236795575 0.01688058768 0.15)
(0.7182980202 0.01700673614 0.15)
(0.729061137 0.01675643879 0.15)
(0.9280457533 0.01326698647 0.15)
(0.9334622448 0.01337615526 0.15)
(0.9385986008 0.001683604986 0.15)
(0.9387228653 0.007451267281 0.15)
(1.07992305 0.04032388499 0.15)
(1.06916541 0.04054926171 0.15)
(1.069647133 0.06346139821 0.15)
(1.080404764 0.06323562159 0.15)
(1.048121768 0.06390816277 0.15)
(1.123696109 0.07378646332 0.15)
(1.102170866 0.07423902659 0.15)
(1.080163907 0.05177975329 0.15)
(0.135941809 0.2633163574 0.15)
(0.1250676235 0.2635169785 0.15)
(0.1247986313 0.2521501212 0.15)
(0.1302347032 0.2520488319 0.15)
(0.1356788996 0.2519533732 0.15)
(0.1246868989 0.2464552116 0.15)
(0.1147142999 0.2864456726 0.15)
(0.1144483281 0.2750797521 0.15)
(0.1582034971 0.2856173413 0.15)
(0.1579506906 0.2742591458 0.15)
(0.1468379476 0.2631132743 0.15)
(0.1518923583 0.2459532385 0.15)
(0.1465931814 0.2517569102 0.15)
(0.1520190033 0.2516438338 0.15)
(0.1411400711 0.2518565573 0.15)
(0.4760157787 0.01059812296 0.15)
(0.4867825044 0.01037675614 0.15)
(0.4970875417 -0.01246990492 0.15)
(0.4973194488 -0.001154279484 0.15)
(0.5091076362 0.04934888989 0.15)
(0.4982478583 0.04409780355 0.15)
(0.5036244591 0.04392714903 0.15)
(0.4496259253 0.2165425438 0.15)
(0.4605085483 0.2218811693 0.15)
(0.455121734 0.2220893468 0.15)
(0.4827723514 0.2556052326 0.15)
(0.4719875548 0.2558709891 0.15)
(0.461628875 0.2787827921 0.15)
(0.4614108177 0.2674598739 0.15)
(0.3963227849 0.2577238813 0.15)
(0.3854975347 0.2579684835 0.15)
(0.3852891598 0.2466303584 0.15)
(0.3906950913 0.2465227013 0.15)
(0.3961107893 0.2464038364 0.15)
(0.3798871014 0.2467319328 0.15)
(0.3797699076 0.2410151331 0.15)
(0.3751559983 0.2808869276 0.15)
(0.3749297115 0.26955318 0.15)
(0.4184237241 0.2798482052 0.15)
(0.4182045829 0.2685213089 0.15)
(0.4071696519 0.2574608207 0.15)
(0.4122605171 0.2403220233 0.15)
(0.4069625922 0.2461376713 0.15)
(0.4123698926 0.2459999788 0.15)
(0.4015392532 0.2462737006 0.15)
(0.6481590787 0.007137884902 0.15)
(0.6589212679 0.00693861832 0.15)
(0.6591512504 0.0182102745 0.15)
(0.6537688512 0.01829543202 0.15)
(0.6483855993 0.018387609 0.15)
(0.6645309025 0.0181371774 0.15)
(0.6646486335 0.02383196092 0.15)
(0.6692191359 -0.01582087279 0.15)
(0.6694483077 -0.004540197575 0.15)
(0.6261889424 -0.01499719079 0.15)
(0.6264182403 -0.003710516901 0.15)
(0.6373971416 0.007349148832 0.15)
(0.6323528602 0.02432493101 0.15)
(0.6376196632 0.01859895702 0.15)
(0.6322408098 0.01871004573 0.15)
(0.6430015369 0.01848880502 0.15)
(0.5412635502 0.04310768961 0.15)
(0.5358734741 0.04306558037 0.15)
(0.5305894292 0.04854236173 0.15)
(0.5952530647 0.04855892775 0.15)
(0.5843688657 0.04305019782 0.15)
(0.5897423549 0.04282669703 0.15)
(0.6652841962 0.2055826586 0.15)
(0.6757802061 0.1883939334 0.15)
(0.6703930484 0.188538204 0.15)
(0.6650985299 0.1943255741 0.15)
(0.6704895816 0.1941762206 0.15)
(0.6758766636 0.1940283507 0.15)
(0.6597112545 0.194464246 0.15)
(0.9993873879 0.01854154185 0.15)
(1.004017957 0.01947141217 0.15)
(1.003942894 0.02541590341 0.15)
(1.001815444 0.03317133621 0.15)
(1.014153214 -0.01558937878 0.15)
(1.014384422 -0.00411670395 0.15)
(1.003860131 0.007683125102 0.15)
(1.003758168 0.001881986635 0.15)
(0.9988177091 0.000960632117 0.15)
(0.9600788144 0.001134967011 0.15)
(0.9601890543 0.006758892344 0.15)
(0.9753005914 0.08826165377 0.15)
(0.9699658701 0.08856885814 0.15)
(0.9646170298 0.09424634586 0.15)
(0.9699502539 0.09396307824 0.15)
(0.9752812282 0.09366795529 0.15)
(0.9592759098 0.09448707005 0.15)
(0.9965685171 0.1032105022 0.15)
(0.9858832687 0.1037867348 0.15)
(1.016059194 0.07601609726 0.15)
(1.015776929 0.06449368466 0.15)
(1.015594277 0.05866063523 0.15)
(1.000953324 0.06257505477 0.15)
(1.01016348 0.05867979549 0.15)
(1.005833002 0.07202317085 0.15)
(1.005851362 0.0662361063 0.15)
(1.010366667 0.06453811885 0.15)
(1.003297467 0.04038797842 0.15)
(0.9993992114 0.04193916296 0.15)
(0.9987228256 0.03736086911 0.15)
(1.000193699 0.03405682115 0.15)
(0.7291137885 0.1584606412 0.15)
(0.7289598024 0.1526113856 0.15)
(0.6644699998 0.1655250225 0.15)
(0.6754511527 0.1713159768 0.15)
(0.670034695 0.1713511392 0.15)
(0.8361683701 0.1159265528 0.15)
(0.8470200575 0.1213161398 0.15)
(0.8416575336 0.1214902992 0.15)
(0.8790976584 0.1090190376 0.15)
(0.8790174622 0.1033968812 0.15)
(0.900588013 0.1082391354 0.15)
(0.9005312729 0.1026860011 0.15)
(0.05837781558 0.2187326115 0.15)
(0.05829737027 0.2127988915 0.15)
(0.03612020812 0.21330497 0.15)
(0.02492671284 0.2076284044 0.15)
(0.03049146886 0.2074917023 0.15)
(0.41189586 0.2229778563 0.15)
(0.5896128689 0.1961341917 0.15)
(0.5841935585 0.1962715366 0.15)
(0.5789102745 0.2021650941 0.15)
(0.5358907232 0.208870752 0.15)
(0.5357661259 0.2030396827 0.15)
(0.5574694666 0.2083938587 0.15)
(0.5573368655 0.2026102682 0.15)
(0.551825971 0.1970119709 0.15)
(0.7612017965 0.146135224 0.15)
(0.7558016829 0.1462341569 0.15)
(0.750691591 0.1579865684 0.15)
(0.7505613216 0.1522187323 0.15)
(0.9171610102 0.007494509706 0.15)
(0.9226462068 0.01310745035 0.15)
(0.8850133672 0.01384365998 0.15)
(0.89039839 0.01364542233 0.15)
(0.8956708764 0.007904325534 0.15)
(0.11094057 0.07565262278 0.15)
(0.1163429596 0.07537650287 0.15)
(0.1214662326 0.0634422742 0.15)
(0.121592835 0.0692259909 0.15)
(0.09978625874 0.06400441415 0.15)
(0.09992508708 0.06989389722 0.15)
(0.1055216682 0.07585697392 0.15)
(0.1647836564 0.06272167736 0.15)
(0.1649198772 0.06867742989 0.15)
(0.1431309694 0.06282144157 0.15)
(0.143239621 0.06841739411 0.15)
(0.06733958777 0.07619264015 0.15)
(0.07280591155 0.07599359337 0.15)
(0.07815237674 0.07008420434 0.15)
(0.1133549201 0.2294964642 0.15)
(0.1188208628 0.2293411351 0.15)
(0.124157621 0.2232317059 0.15)
(0.2940936048 0.05988523949 0.15)
(0.2942136192 0.06559347799 0.15)
(0.272516596 0.05982617785 0.15)
(0.2726171454 0.0652270576 0.15)
(0.3371622862 0.05960766914 0.15)
(0.337307321 0.06574477646 0.15)
(0.3156606495 0.06032669507 0.15)
(0.3158158533 0.06666203245 0.15)
(0.2079305598 0.06178781776 0.15)
(0.2080651754 0.06771479768 0.15)
(0.1863770662 0.06246662485 0.15)
(0.1865258815 0.0685932504 0.15)
(0.2510090284 0.06045340817 0.15)
(0.2511199857 0.06601630494 0.15)
(0.2294871515 0.06111364657 0.15)
(0.2296088446 0.06685415692 0.15)
(0.3586052405 0.05876164865 0.15)
(0.3587385074 0.06467205325 0.15)
(0.4926497353 0.209658857 0.15)
(0.4924907235 0.2037132858 0.15)
(0.5142859724 0.2094427129 0.15)
(0.5141781025 0.2037412206 0.15)
(0.5522054001 0.04950310361 0.15)
(0.5466622314 0.04327364533 0.15)
(0.5789952587 0.04326809985 0.15)
(0.5737740621 0.04968846862 0.15)
(0.9816465355 0.0009425683269 0.15)
(0.9817589038 0.006477429243 0.15)
(0.9752695881 0.07184897913 0.15)
(0.9699098876 0.07206228782 0.15)
(-0.01257799644 0.4253900719 0.15)
(-0.01317341829 0.4025695456 0.15)
(-0.05758062577 0.380272064 0.15)
(-0.03583241472 0.3799488425 0.15)
(-0.03500967808 0.4028866165 0.15)
(-0.03443025269 0.4257074792 0.15)
(-0.05815482051 0.3574430897 0.15)
(-0.07577335009 0.5152287041 0.15)
(-0.07685167637 0.4718460092 0.15)
(0.8731193242 0.403012378 0.15)
(0.8301850969 0.4045094735 0.15)
(0.8293429083 0.3590291277 0.15)
(0.8508121086 0.3582896791 0.15)
(0.807878929 0.3597314584 0.15)
(0.8074647793 0.3370361494 0.15)
(0.7887997697 0.4937339809 0.15)
(0.7880577396 0.4508410046 0.15)
(0.8523758585 0.1211076541 0.15)
(0.8576275639 0.1151869045 0.15)
(0.7411815225 0.2371503622 0.15)
(0.7304341473 0.2374833469 0.15)
(0.7198592088 0.2491102024 0.15)
(0.7306236223 0.2487788599 0.15)
(0.7413789747 0.2484447072 0.15)
(0.7091027304 0.2494383774 0.15)
(0.7847705465 0.2697093093 0.15)
(0.7632763006 0.2703992735 0.15)
(-0.02458394176 0.1292170998 0.15)
(-0.01911614266 0.1286077313 0.15)
(-0.01241154578 0.1145742992 0.15)
(-0.01294067912 0.1209626331 0.15)
(-0.01149732872 0.1714966591 0.15)
(-0.01218492487 0.1649246604 0.15)
(-0.02411009633 0.1574110688 0.15)
(-0.01859473272 0.1575083567 0.15)
(-0.03981538213 0.2540177409 0.15)
(-0.03949265624 0.2654474825 0.15)
(-0.06054786135 0.2885751755 0.15)
(-0.08254576158 0.2886065811 0.15)
(-0.006098412819 0.2767150209 0.15)
(-0.02852855223 0.2653800008 0.15)
(-0.01744431328 0.2653700065 0.15)
(-0.0170224683 0.276837673 0.15)
(-0.02891269529 0.2539215438 0.15)
(0.07508737926 0.23007278 0.15)
(0.08047336425 0.2240830425 0.15)
(0.3899175236 0.01234730545 0.15)
(0.4006762721 0.01212710657 0.15)
(0.4109717017 -0.01074835891 0.15)
(0.4112039241 0.0005822632177 0.15)
(0.3679374132 -0.009881581309 0.15)
(0.3681697827 0.00145603927 0.15)
(0.3791597749 0.01256748331 0.15)
(0.7721532996 0.1517528633 0.15)
(0.7666201317 0.1460942209 0.15)
(0.7189495883 0.192763273 0.15)
(0.7406395993 0.2033349821 0.15)
(0.7298883217 0.2036726499 0.15)
(0.8741315169 0.008494215878 0.15)
(0.8796263868 0.01404393923 0.15)
(0.1023750143 0.2236696758 0.15)
(0.1079059764 0.2295564149 0.15)
(0.4540370465 -0.01161278879 0.15)
(0.4542701846 -0.0002861868042 0.15)
(0.4652590298 0.01081827981 0.15)
(0.4552320612 0.04546350269 0.15)
(0.4498521332 0.04561862372 0.15)
(0.4446153855 0.05191779259 0.15)
(0.4230218121 0.05154661017 0.15)
(0.4121243893 0.04578950334 0.15)
(0.4175099358 0.04575889172 0.15)
(0.8419934237 0.01467912913 0.15)
(0.8473893849 0.01471571343 0.15)
(0.8526560316 0.008934730575 0.15)
(0.7989583649 0.1453848105 0.15)
(0.7936596811 0.1511643664 0.15)
(0.707702397 0.1648516234 0.15)
(0.7132039269 0.1703851031 0.15)
(0.0711129927 0.2872033449 0.15)
(0.07083511326 0.2758276726 0.15)
(0.05957408419 0.2646079018 0.15)
(0.04865317311 0.2647744975 0.15)
(0.6808549655 0.1712502735 0.15)
(0.6861355579 0.1654189864 0.15)
(-0.04175613342 0.2189597898 0.15)
(-0.03050921207 0.21919463 0.15)
(-0.02010302571 0.2075718226 0.15)
(-0.008898891078 0.2077078404 0.15)
(-0.003306912903 0.2077308014 0.15)
(-0.009230133272 0.2018435074 0.15)
(0.6005405398 0.2016649127 0.15)
(0.5950237425 0.1960237301 0.15)
(0.05625131151 0.07065859436 0.15)
(0.0618505899 0.07635985651 0.15)
(0.4661155403 0.05112828223 0.15)
(0.4606067844 0.04529868893 0.15)
(0.4928682645 0.04426882107 0.15)
(0.4876094804 0.05023347924 0.15)
(0.3799711246 0.05220428628 0.15)
(0.3691014979 0.04681777705 0.15)
(0.3744777485 0.04667803672 0.15)
(0.4067429688 0.04587364005 0.15)
(0.4014727958 0.05153447049 0.15)
(0.4659076151 0.2217324474 0.15)
(0.4711553083 0.2157160109 0.15)
(0.8311068951 0.009154744711 0.15)
(0.8365999455 0.0146654977 0.15)
(0.7989660614 0.01549474983 0.15)
(0.8043242255 0.01535108882 0.15)
(0.8095804632 0.009598330992 0.15)
(0.9806165415 0.07164784106 0.15)
(0.9857729716 0.06552469937 0.15)
(0.9325721081 0.0957286616 0.15)
(0.9272149025 0.09591791254 0.15)
(0.9219204133 0.1017066824 0.15)
(-0.01606634296 0.1838655332 0.15)
(-0.01080106336 0.1778958374 0.15)
(1.003963355 0.01354425031 0.15)
(1.014708803 0.0189235682 0.15)
(1.009303047 0.01918225504 0.15)
(1.014815729 0.04113572832 0.15)
(1.009067841 0.04082088008 0.15)
(1.005600863 0.05432163935 0.15)
(1.00395442 0.04642070208 0.15)
(-1.02877 -0.962597 0.15)
(-1.0288 -0.8251 0.15)
(-1.02888 -0.641775 0.15)
(-1.02895 -0.458448 0.15)
(-1.02901 -0.275121 0.15)
(-1.02904 -0.0917902 0.15)
(-1.02904 0.0915431 0.15)
(-1.02901 0.274879 0.15)
(-1.02895 0.458218 0.15)
(-1.02888 0.641559 0.15)
(-1.0288 0.8249 0.15)
(-1.02872 1.00824 0.15)
(-0.900226 -1.00849 0.15)
(-0.900275 -0.962663 0.15)
(-0.857436 -0.962684 0.15)
(-0.985942 -0.96262 0.15)
(-0.943121 -0.916809 0.15)
(-0.94317 -0.870981 0.15)
(-0.943181 -0.825148 0.15)
(-0.985993 -0.825125 0.15)
(-0.943242 -0.733488 0.15)
(-0.943293 -0.687659 0.15)
(-0.943302 -0.641827 0.15)
(-0.986092 -0.641801 0.15)
(-0.943362 -0.550166 0.15)
(-0.943412 -0.504337 0.15)
(-0.943418 -0.458504 0.15)
(-0.986186 -0.458477 0.15)
(-0.943469 -0.366843 0.15)
(-0.9435143776 -0.3210050693 0.15)
(-0.9435207478 -0.274939474 0.15)
(-0.986262 -0.27515 0.15)
(-0.9435751789 -0.1822874442 0.15)
(-0.9436128392 -0.1359244746 0.15)
(-0.9435930888 -0.08964369246 0.15)
(-0.9863059299 -0.09174768677 0.15)
(-0.9435743444 0.002417618541 0.15)
(-0.9435814713 0.04814794528 0.15)
(-0.9435408158 0.09369784844 0.15)
(-0.98630419 0.09158696439 0.15)
(-0.9435167953 0.1843915556 0.15)
(-0.9435330421 0.2296803526 0.15)
(-0.9435034269 0.275068327 0.15)
(-0.986262 0.27485 0.15)
(-0.943469 0.366491 0.15)
(-0.943467 0.412324 0.15)
(-0.943418 0.458162 0.15)
(-0.986187 0.45819 0.15)
(-0.943362 0.549834 0.15)
(-0.943354 0.595668 0.15)
(-0.943303 0.641507 0.15)
(-0.986093 0.641532 0.15)
(-0.943242 0.733179 0.15)
(-0.943231 0.779013 0.15)
(-0.943181 0.824852 0.15)
(-0.985993 0.824875 0.15)
(-0.900276 0.962338 0.15)
(-0.943063 1.0082 0.15)
(-0.900227 1.00818 0.15)
(-0.857392 1.00825 0.15)
(-0.985895 1.00822 0.15)
(-0.728831 -1.00857 0.15)
(-0.728893 -0.962745 0.15)
(-0.686035 -0.962769 0.15)
(-0.814593 -0.962705 0.15)
(-0.771786 -0.916895 0.15)
(-0.771847 -0.871068 0.15)
(-0.771889 -0.825239 0.15)
(-0.814719 -0.825217 0.15)
(-0.857544 -0.825194 0.15)
(-0.771996 -0.733582 0.15)
(-0.772061 -0.687755 0.15)
(-0.772105 -0.641926 0.15)
(-0.814911 -0.641902 0.15)
(-0.857712 -0.641877 0.15)
(-0.7723694907 -0.5481389015 0.15)
(-0.772598083 -0.4996768244 0.15)
(-0.7728178491 -0.4504592554 0.15)
(-0.8153022889 -0.4552374985 0.15)
(-0.8579102434 -0.4579626423 0.15)
(-0.7732132111 -0.3507139327 0.15)
(-0.7733522703 -0.3006413178 0.15)
(-0.7734087076 -0.2507023298 0.15)
(-0.8158152442 -0.2600674652 0.15)
(-0.8582946455 -0.2674307684 0.15)
(-0.7733521839 -0.1519520619 0.15)
(-0.7732457692 -0.1034207747 0.15)
(-0.7730689836 -0.05558063052 0.15)
(-0.8156599814 -0.06730309072 0.15)
(-0.8582743549 -0.07714337888 0.15)
(-0.7726448004 0.03774201608 0.15)
(-0.7724252689 0.0831692363 0.15)
(-0.772190088 0.1277943277 0.15)
(-0.8150685231 0.1160633351 0.15)
(-0.8579211597 0.1062143975 0.15)
(-0.7718190564 0.2147931251 0.15)
(-0.7717062869 0.2573325479 0.15)
(-0.7716230869 0.299400449 0.15)
(-0.8147167169 0.2900098813 0.15)
(-0.8577341103 0.2826211695 0.15)
(-0.7716389871 0.3827301889 0.15)
(-0.771729142 0.4243752987 0.15)
(-0.7718279269 0.4663027386 0.15)
(-0.8148964814 0.461486742 0.15)
(-0.8578385522 0.4587268529 0.15)
(-0.7720575177 0.5519168729 0.15)
(-0.7721319513 0.5960703231 0.15)
(-0.772106 0.641407 0.15)
(-0.814911 0.641431 0.15)
(-0.857712 0.641456 0.15)
(-0.771997 0.733084 0.15)
(-0.771954 0.778925 0.15)
(-0.771892 0.82478 0.15)
(-0.81472 0.824783 0.15)
(-0.857545 0.824806 0.15)
(-0.728055 0.964401 0.15)
(-0.771406 1.00946 0.15)
(-0.727837 1.01033 0.15)
(-0.68461 1.01067 0.15)
(-0.814541 1.00851 0.15)
(-0.556084 -1.01091 0.15)
(-0.556399 -0.964912 0.15)
(-0.512556 -0.965648 0.15)
(-0.643164 -0.962856 0.15)
(-0.600338 -0.917186 0.15)
(-0.600435 -0.871234 0.15)
(-0.600512 -0.825335 0.15)
(-0.643366 -0.825301 0.15)
(-0.686213 -0.825281 0.15)
(-0.6008756403 -0.7315908071 0.15)
(-0.6012975462 -0.6820412375 0.15)
(-0.6018012603 -0.630898553 0.15)
(-0.6442141236 -0.6355894371 0.15)
(-0.6867231257 -0.6391398959 0.15)
(-0.6028927615 -0.5250359816 0.15)
(-0.6033900488 -0.4709662532 0.15)
(-0.6037906264 -0.4165698368 0.15)
(-0.6459506613 -0.4265920173 0.15)
(-0.6881620188 -0.4358163657 0.15)
(-0.6042652902 -0.3080283693 0.15)
(-0.6043176727 -0.2544130649 0.15)
(-0.6042273747 -0.2015121308 0.15)
(-0.6464897884 -0.2146649585 0.15)
(-0.688762873 -0.2275568746 0.15)
(-0.6037057376 -0.09848414463 0.15)
(-0.6033024314 -0.04855737346 0.15)
(-0.6028106746 0.0002373932289 0.15)
(-0.6453718654 -0.01399331485 0.15)
(-0.6879313339 -0.028400984 0.15)
(-0.6016944739 0.09430423959 0.15)
(-0.6011128358 0.1395571526 0.15)
(-0.600527378 0.1836335119 0.15)
(-0.6434531948 0.169400282 0.15)
(-0.6863765038 0.1549881531 0.15)
(-0.5994876815 0.2683078826 0.15)
(-0.5990745407 0.3089887705 0.15)
(-0.5987409844 0.3486709476 0.15)
(-0.6420072799 0.3355042049 0.15)
(-0.6852529287 0.3225935817 0.15)
(-0.5984171607 0.4255326645 0.15)
(-0.5984401705 0.4630751228 0.15)
(-0.5985666807 0.5003436599 0.15)
(-0.6419936356 0.490286549 0.15)
(-0.6853591397 0.4810252615 0.15)
(-0.5991203564 0.5752087244 0.15)
(-0.5995017323 0.6135041494 0.15)
(-0.5998832829 0.6528934237 0.15)
(-0.6431052685 0.6478965493 0.15)
(-0.6862324925 0.6442740127 0.15)
(-0.5995966191 0.7381043301 0.15)
(-0.5990479162 0.7823888635 0.15)
(-0.598865 0.827889 0.15)
(-0.642315 0.827359 0.15)
(-0.686094 0.82587 0.15)
(-0.555714 0.965414 0.15)
(-0.598649 1.01102 0.15)
(-0.555678 1.01118 0.15)
(-0.512702 1.01133 0.15)
(-0.641617 1.01086 0.15)
(-0.383309 -1.01194 0.15)
(-0.383341 -0.966197 0.15)
(-0.340336 -0.966337 0.15)
(-0.469354 -0.965893 0.15)
(-0.426375 -0.920295 0.15)
(-0.4265364551 -0.873597585 0.15)
(-0.4270338568 -0.8244569453 0.15)
(-0.4704203246 -0.8260629957 0.15)
(-0.5144529856 -0.8261646406 0.15)
(-0.4291020081 -0.7195039553 0.15)
(-0.4304980369 -0.6641850863 0.15)
(-0.4321897466 -0.607723161 0.15)
(-0.4748854653 -0.6128587701 0.15)
(-0.517177861 -0.6191221559 0.15)
(-0.4341911931 -0.4911362581 0.15)
(-0.4347992247 -0.4330895792 0.15)
(-0.4352065843 -0.3755195069 0.15)
(-0.4773883313 -0.3852474495 0.15)
(-0.5195305486 -0.3955600008 0.15)
(-0.4354438719 -0.2629056182 0.15)
(-0.4352882899 -0.2082656212 0.15)
(-0.4349622975 -0.1548963772 0.15)
(-0.4773405345 -0.1648957828 0.15)
(-0.5196679281 -0.1762242263 0.15)
(-0.4338966779 -0.05223695445 0.15)
(-0.4332071106 -0.002817156136 0.15)
(-0.4324333134 0.04546743248 0.15)
(-0.4750567604 0.03678303127 0.15)
(-0.5176586105 0.02609171633 0.15)
(-0.4307362791 0.1390248908 0.15)
(-0.4298484958 0.184405782 0.15)
(-0.4289490011 0.2288401727 0.15)
(-0.4718129159 0.220167058 0.15)
(-0.5147006869 0.2094834026 0.15)
(-0.4272420006 0.3146217556 0.15)
(-0.4264883395 0.3558573468 0.15)
(-0.425819017 0.3957723991 0.15)
(-0.4689960479 0.385375487 0.15)
(-0.5122166859 0.3739739489 0.15)
(-0.4248092132 0.4726578418 0.15)
(-0.4245377962 0.5088890929 0.15)
(-0.4241893429 0.5446551707 0.15)
(-0.4681409482 0.5322330971 0.15)
(-0.5116161905 0.5214617856 0.15)
(-0.4228860475 0.6153469021 0.15)
(-0.4230918106 0.6497770419 0.15)
(-0.4236876838 0.6843303323 0.15)
(-0.4674202028 0.6767476575 0.15)
(-0.5116675648 0.66892804 0.15)
(-0.4251020826 0.7559927098 0.15)
(-0.4257759244 0.7939241774 0.15)
(-0.4263330561 0.833732535 0.15)
(-0.4695726556 0.8312350687 0.15)
(-0.5127366033 0.8293392641 0.15)
(-0.383744 0.966037 0.15)
(-0.426704 1.01164 0.15)
(-0.383585 1.01184 0.15)
(-0.340202 1.01213 0.15)
(-0.469724 1.01148 0.15)
(-0.211093 -1.01252 0.15)
(-0.2112043703 -0.9662973378 0.15)
(-0.1682560297 -0.9658912758 0.15)
(-0.297302568 -0.9664748507 0.15)
(-0.2545375964 -0.9186332088 0.15)
(-0.2553079744 -0.8673952 0.15)
(-0.2562215136 -0.8140246232 0.15)
(-0.2989109475 -0.8167184257 0.15)
(-0.3415681035 -0.8194698848 0.15)
(-0.2583722056 -0.7012725539 0.15)
(-0.2594396602 -0.6427813508 0.15)
(-0.2604081966 -0.5835378192 0.15)
(-0.3028485692 -0.5891537204 0.15)
(-0.345344855 -0.5953298695 0.15)
(-0.2618436278 -0.4649071151 0.15)
(-0.2623026744 -0.4064862429 0.15)
(-0.2628146999 -0.3491207061 0.15)
(-0.3062457429 -0.3539381523 0.15)
(-0.3499152684 -0.3602627302 0.15)
(-0.2639674552 -0.2376846877 0.15)
(-0.264328566 -0.184799171 0.15)
(-0.2640606698 -0.1337975778 0.15)
(-0.3071276693 -0.1360363206 0.15)
(-0.3499300136 -0.1403932616 0.15)
(-0.2630826674 -0.03684676993 0.15)
(-0.2624254617 0.009928101462 0.15)
(-0.2616388516 0.05628540934 0.15)
(-0.3043882905 0.05711135124 0.15)
(-0.3471023094 0.05577299083 0.15)
(-0.2598147024 0.148042531 0.15)
(-0.2588392494 0.1940097912 0.15)
(-0.2578096569 0.2405064223 0.15)
(-0.3005609077 0.2408285164 0.15)
(-0.3433211373 0.2392229687 0.15)
(-0.2553529562 0.3337132974 0.15)
(-0.254003606 0.3789948734 0.15)
(-0.2524309611 0.4229271956 0.15)
(-0.2962245435 0.4181305456 0.15)
(-0.3394348255 0.4125962361 0.15)
(-0.2489763628 0.5055507822 0.15)
(-0.2482053764 0.5435078679 0.15)
(-0.2479203933 0.5795442188 0.15)
(-0.2913804378 0.5729739881 0.15)
(-0.3351595781 0.5650323753 0.15)
(-0.2481413583 0.647243542 0.15)
(-0.2486049659 0.6796383974 0.15)
(-0.2492515269 0.7116665353 0.15)
(-0.2928298091 0.70561803 0.15)
(-0.3364249596 0.6989421953 0.15)
(-0.2508433057 0.7767028249 0.15)
(-0.2516730228 0.8107379617 0.15)
(-0.2523817717 0.8457564927 0.15)
(-0.2961468589 0.8431337147 0.15)
(-0.3396793749 0.8398192139 0.15)
(-0.2106372604 0.9679719329 0.15)
(-0.253793 1.01252 0.15)
(-0.210761 1.01264 0.15)
(-0.1677213481 1.012792295 0.15)
(-0.296897 1.01235 0.15)
(-0.03849191209 -1.012919428 0.15)
(-0.03886604652 -0.9647456666 0.15)
(0.004293565106 -0.9645376188 0.15)
(-0.1252929428 -0.9654237979 0.15)
(-0.08288856015 -0.9143411716 0.15)
(-0.08384634734 -0.8610239902 0.15)
(-0.08498532673 -0.8053728987 0.15)
(-0.127899207 -0.807261937 0.15)
(-0.1706350935 -0.8096098474 0.15)
(-0.08743826473 -0.6888330282 0.15)
(-0.0885790559 -0.6289877286 0.15)
(-0.08955726612 -0.5688510467 0.15)
(-0.1324274971 -0.5719986545 0.15)
(-0.1752919461 -0.5745835082 0.15)
(-0.09086790194 -0.4500260267 0.15)
(-0.09117525429 -0.3924056403 0.15)
(-0.09139527636 -0.3360219338 0.15)
(-0.1343187777 -0.3377050092 0.15)
(-0.1770937623 -0.3404377223 0.15)
(-0.09064580714 -0.2311277488 0.15)
(-0.08994776553 -0.1826498592 0.15)
(-0.08914431835 -0.1365906626 0.15)
(-0.1325950465 -0.1353273092 0.15)
(-0.1763971652 -0.1341090541 0.15)
(-0.1316401913 0.1453875182 0.15)
(-0.1311538425 0.1690430117 0.15)
(-0.1304943591 0.1932263926 0.15)
(-0.1519157832 0.1933838083 0.15)
(-0.1733288924 0.1935085421 0.15)
(-0.07484275175 0.5559532851 0.15)
(-0.07392093433 0.5942314485 0.15)
(-0.1177619318 0.5920443214 0.15)
(-0.1612389448 0.5889752125 0.15)
(-0.0733344561 0.665080443 0.15)
(-0.07362223714 0.6980340469 0.15)
(-0.07420213617 0.7299680602 0.15)
(-0.1177187565 0.7259741864 0.15)
(-0.1616043102 0.72094366 0.15)
(-0.07606353334 0.7929551676 0.15)
(-0.07720164505 0.8251522912 0.15)
(-0.07837258479 0.8585604273 0.15)
(-0.1217196401 0.8559564138 0.15)
(-0.165117317 0.8529006846 0.15)
(-0.03804103038 0.9716485522 0.15)
(-0.08155440254 1.013462987 0.15)
(-0.03849120998 1.013829901 0.15)
(0.004755328081 1.014156238 0.15)
(-0.1246654723 1.013080605 0.15)
(0.1342660662 -1.012693502 0.15)
(0.1337830789 -0.9638279561 0.15)
(0.176898126 -0.9635785675 0.15)
(0.04741946121 -0.9644549774 0.15)
(0.08980652559 -0.9122817415 0.15)
(0.08873984505 -0.8580430317 0.15)
(0.0875211366 -0.8015238471 0.15)
(0.0444058978 -0.8028920158 0.15)
(0.001318861294 -0.8031979021 0.15)
(0.08499777256 -0.6838090241 0.15)
(0.08387252725 -0.6237045616 0.15)
(0.08293790819 -0.5635640077 0.15)
(0.03978417013 -0.5649600248 0.15)
(-0.003306174797 -0.5654481639 0.15)
(0.08184215068 -0.4455735153 0.15)
(0.08173417468 -0.3888332212 0.15)
(0.08192096589 -0.3342311149 0.15)
(0.03860290741 -0.3343739414 0.15)
(-0.004702912542 -0.3343352225 0.15)
(0.05106284319 0.3558889775 0.15)
(0.05160723533 0.3786705678 0.15)
(0.0297748526 0.3790245654 0.15)
(0.007961840716 0.3793831569 0.15)
(0.09928029692 0.5574900327 0.15)
(0.09996467285 0.5979573396 0.15)
(0.05637180481 0.5977853496 0.15)
(0.01306231086 0.5975149215 0.15)
(0.1003814317 0.6716039938 0.15)
(0.1001359361 0.7054625471 0.15)
(0.09959543268 0.7379491405 0.15)
(0.05584575019 0.735796811 0.15)
(0.01248082426 0.7348562783 0.15)
(0.09776390298 0.8009745132 0.15)
(0.09660389722 0.832700649 0.15)
(0.09542571851 0.8653383597 0.15)
(0.05182067159 0.8628743108 0.15)
(0.00830073593 0.8620753733 0.15)
(0.1352522843 0.9741841051 0.15)
(0.09145222411 1.014947779 0.15)
(0.1345791028 1.015079174 0.15)
(0.1777135357 1.015068212 0.15)
(0.04819782411 1.014668483 0.15)
(0.3066152922 -1.012381597 0.15)
(0.306072449 -0.9630550293 0.15)
(0.3490849856 -0.9628615926 0.15)
(0.2199870909 -0.9633979914 0.15)
(0.2621793979 -0.9111877791 0.15)
(0.2610754242 -0.856677677 0.15)
(0.2598274654 -0.8000907961 0.15)
(0.2168008137 -0.8003904662 0.15)
(0.1737414103 -0.8007821056 0.15)
(0.2572879749 -0.6825782122 0.15)
(0.2561729568 -0.6227495712 0.15)
(0.2552611568 -0.5629881655 0.15)
(0.2122300418 -0.5630293303 0.15)
(0.1691647461 -0.5631820829 0.15)
(0.2542357806 -0.4460108417 0.15)
(0.2541724435 -0.3898710673 0.15)
(0.2544082438 -0.3359053537 0.15)
(0.2113460834 -0.3354064081 0.15)
(0.1682383245 -0.3349642213 0.15)
(0.2248468897 0.3524422537 0.15)
(0.2253320329 0.3751840807 0.15)
(0.20363106 0.375651341 0.15)
(0.1819359177 0.3761104771 0.15)
(0.2724210077 0.554813997 0.15)
(0.2730685552 0.5960987408 0.15)
(0.2297574476 0.5969197123 0.15)
(0.1864450363 0.5974570014 0.15)
(0.2735454706 0.671135714 0.15)
(0.2733304699 0.7055566304 0.15)
(0.2728120935 0.738495274 0.15)
(0.2295020169 0.7388674353 0.15)
(0.1861491885 0.7386310936 0.15)
(0.2709865052 0.8021314723 0.15)
(0.2697859067 0.8339748037 0.15)
(0.2684900779 0.8666219209 0.15)
(0.225189359 0.8666513778 0.15)
(0.1818345339 0.8661192569 0.15)
(0.3081883654 0.9742733568 0.15)
(0.2642405937 1.015207117 0.15)
(0.3074623696 1.015031803 0.15)
(0.3506128642 1.014716931 0.15)
(0.2209800158 1.015223769 0.15)
(0.4787320083 -1.011959392 0.15)
(0.4781226562 -0.9621482432 0.15)
(0.5211433095 -0.9619152527 0.15)
(0.3920878681 -0.9626277324 0.15)
(0.4341854151 -0.910058919 0.15)
(0.433040006 -0.8554068256 0.15)
(0.431763948 -0.798796368 0.15)
(0.3887849979 -0.7991740221 0.15)
(0.3458152847 -0.7995332707 0.15)
(0.4292064873 -0.6815940847 0.15)
(0.4281015968 -0.622085723 0.15)
(0.4272075351 -0.5627387375 0.15)
(0.3842255296 -0.5628605381 0.15)
(0.3412525034 -0.5629620518 0.15)
(0.4262401489 -0.4467987521 0.15)
(0.4262105754 -0.391237638 0.15)
(0.4264819678 -0.3378627403 0.15)
(0.3834617845 -0.3373993117 0.15)
(0.3404558163 -0.3369306673 0.15)
(0.398107031 0.3484394196 0.15)
(0.3985626131 0.3711548621 0.15)
(0.3769687729 0.3716748822 0.15)
(0.3553519798 0.3721973853 0.15)
(0.4452533612 0.5499331563 0.15)
(0.4458303134 0.590757152 0.15)
(0.4026703889 0.5924155631 0.15)
(0.3595472599 0.5937121656 0.15)
(0.4461280825 0.6647091178 0.15)
(0.4458195945 0.6989725031 0.15)
(0.4452472868 0.7328853886 0.15)
(0.4022483388 0.7349719597 0.15)
(0.3591862568 0.7361308506 0.15)
(0.4433464338 0.7974038738 0.15)
(0.4421450208 0.8298262017 0.15)
(0.4408620735 0.863098133 0.15)
(0.3978766607 0.8643983721 0.15)
(0.3548209048 0.8650557102 0.15)
(0.4805061901 0.9719495004 0.15)
(0.4367685336 1.014170559 0.15)
(0.4798721577 1.013583819 0.15)
(0.5229040395 1.013145818 0.15)
(0.3936995542 1.014517174 0.15)
(0.6508250463 -1.011273558 0.15)
(0.6501335914 -0.9610103286 0.15)
(0.6931562467 -0.9608921191 0.15)
(0.5641594208 -0.9616701796 0.15)
(0.6061967723 -0.9088398005 0.15)
(0.6050078991 -0.8540406911 0.15)
(0.6037041534 -0.7974079047 0.15)
(0.5607257717 -0.7977527981 0.15)
(0.5177427506 -0.7981110457 0.15)
(0.6011333303 -0.680530722 0.15)
(0.6000414323 -0.6213541348 0.15)
(0.5991707896 -0.5624367959 0.15)
(0.556186594 -0.562504791 0.15)
(0.5131981051 -0.5625897833 0.15)
(0.5982722174 -0.4475640723 0.15)
(0.5982831179 -0.3925974648 0.15)
(0.5985947182 -0.3398240973 0.15)
(0.5555728733 -0.3393252776 0.15)
(0.5125445806 -0.3388383554 0.15)
(0.5707623073 0.3440212081 0.15)
(0.5711945582 0.3667211376 0.15)
(0.5496416761 0.3672863067 0.15)
(0.528063157 0.3678690186 0.15)
(0.6175125425 0.5431713286 0.15)
(0.6179687177 0.5827907851 0.15)
(0.5749805727 0.5849380059 0.15)
(0.5319323198 0.5872342004 0.15)
(0.6180532065 0.6555883218 0.15)
(0.6176607255 0.6895395555 0.15)
(0.6169885927 0.7224860484 0.15)
(0.5742070637 0.7262017521 0.15)
(0.531243861 0.7285097119 0.15)
(0.6150805378 0.7885748316 0.15)
(0.6138873677 0.8218692535 0.15)
(0.6126244326 0.8561840251 0.15)
(0.5697178817 0.8581396977 0.15)
(0.5267816562 0.8595334125 0.15)
(0.6524511988 0.9687209904 0.15)
(0.6089702763 1.012414958 0.15)
(0.6520268996 1.011856126 0.15)
(0.695068771 1.011567487 0.15)
(0.5659396396 1.012818096 0.15)
(0.8228486697 -1.010436239 0.15)
(0.8220654222 -0.9596879058 0.15)
(0.8650883214 -0.9595922205 0.15)
(0.7361528864 -0.9605946712 0.15)
(0.7781952583 -0.9080413562 0.15)
(0.7769781056 -0.853231714 0.15)
(0.7755198629 -0.7957222297 0.15)
(0.7325800254 -0.7961888493 0.15)
(0.6896211734 -0.7966267849 0.15)
(0.7729403342 -0.6791728159 0.15)
(0.7718660016 -0.6203509034 0.15)
(0.7710251834 -0.5618960203 0.15)
(0.7280728764 -0.5620690105 0.15)
(0.6851041541 -0.5622181833 0.15)
(0.7702127345 -0.4481889026 0.15)
(0.7702728629 -0.3938745297 0.15)
(0.7706351163 -0.3417627537 0.15)
(0.72763158 -0.3412800799 0.15)
(0.6846130961 -0.3407980831 0.15)
(0.7429747907 0.3390941917 0.15)
(0.7893629492 0.5342601267 0.15)
(0.7896745922 0.5725565435 0.15)
(0.7467991924 0.5754644365 0.15)
(0.7038678105 0.5778289072 0.15)
(0.7894927021 0.6437597488 0.15)
(0.7889871291 0.6774706223 0.15)
(0.7882275402 0.7105150029 0.15)
(0.7454809895 0.7140633666 0.15)
(0.7026994751 0.7175892636 0.15)
(0.786167907 0.7768429556 0.15)
(0.7849813368 0.8111017266 0.15)
(0.7838173411 0.8467932711 0.15)
(0.7410470552 0.8492314261 0.15)
(0.6983030272 0.8520631373 0.15)
(0.8243540453 0.9657792024 0.15)
(0.7811565295 1.010993182 0.15)
(0.824205 1.01078 0.15)
(0.867232 1.01058 0.15)
(0.7380997842 1.011261309 0.15)
(0.9958114462 -1.007643665 0.15)
(0.9948237588 -0.9563601968 0.15)
(1.037307391 -0.9530765649 0.15)
(0.9080032371 -0.958872633 0.15)
(0.9499523601 -0.9050519927 0.15)
(0.9486500588 -0.8497649094 0.15)
(0.9472786607 -0.7929768667 0.15)
(0.9042663454 -0.793774322 0.15)
(0.861463369 -0.7952081825 0.15)
(0.9447076142 -0.6767876517 0.15)
(0.94367202 -0.6184203827 0.15)
(0.9428869699 -0.5605772318 0.15)
(0.8998855606 -0.561387583 0.15)
(0.8569261456 -0.561487368 0.15)
(0.9422178309 -0.4484335499 0.15)
(0.9423550224 -0.3949915423 0.15)
(0.9427919306 -0.3437490427 0.15)
(0.8996587366 -0.343267006 0.15)
(0.8566514372 -0.3427497844 0.15)
(0.8836903076 -0.05360443161 0.15)
(0.8839157536 -0.04231067519 0.15)
(0.8731475026 -0.04211428182 0.15)
(0.8624061615 -0.04192245512 0.15)
(0.8901551577 0.1418949715 0.15)
(0.8902780627 0.1530213463 0.15)
(0.879575602 0.1534925175 0.15)
(0.9579698861 0.3542983274 0.15)
(0.9588287099 0.3993847844 0.15)
(0.9160039344 0.4013099203 0.15)
(0.9603448191 0.4834405312 0.15)
(0.9607203289 0.5220005297 0.15)
(0.9608561417 0.5587424641 0.15)
(0.9180804449 0.5623144883 0.15)
(0.8753286848 0.5662249999 0.15)
(0.9603848843 0.6282053975 0.15)
(0.959730578 0.6616777199 0.15)
(0.9590147507 0.6963224515 0.15)
(0.9163857106 0.70039085 0.15)
(0.8736846801 0.7037873956 0.15)
(0.9570287264 0.7653382308 0.15)
(0.9559614124 0.8013457267 0.15)
(0.9549677707 0.8389778015 0.15)
(0.9122043319 0.8409692512 0.15)
(0.86939255 0.8426787937 0.15)
(0.996255 0.964048 0.15)
(0.953252 1.01014 0.15)
(0.996254 1.00991 0.15)
(1.03926 1.00967 0.15)
(0.91025 1.01035 0.15)
(1.167593081 -1.005733723 0.15)
(1.166815732 -0.9552566481 0.15)
(1.210054479 -0.9564019481 0.15)
(1.080424636 -0.9535443181 0.15)
(1.122497194 -0.9012663218 0.15)
(1.121226658 -0.8464200428 0.15)
(1.119886541 -0.7901276959 0.15)
(1.076619236 -0.7884375159 0.15)
(1.033450351 -0.7873359673 0.15)
(1.117368037 -0.6749920097 0.15)
(1.116349777 -0.6171254921 0.15)
(1.115574872 -0.5597201574 0.15)
(1.072300092 -0.5571950929 0.15)
(1.029130636 -0.5554737287 0.15)
(1.1148963 -0.4481266885 0.15)
(1.115014896 -0.3947215129 0.15)
(1.115422044 -0.3433009686 0.15)
(1.072278226 -0.3413282255 0.15)
(1.029188993 -0.3398712549 0.15)
(1.082090756 0.1434263997 0.15)
(1.082572466 0.1663379364 0.15)
(1.061057221 0.1667902895 0.15)
(1.129441534 0.347746444 0.15)
(1.130257427 0.3903940174 0.15)
(1.08725226 0.3923166841 0.15)
(1.044269941 0.3945428049 0.15)
(1.131352627 0.4693663815 0.15)
(1.131556463 0.5061090764 0.15)
(1.131571674 0.5423360618 0.15)
(1.089069026 0.5471375768 0.15)
(1.046275501 0.5509379275 0.15)
(1.130850617 0.6118151788 0.15)
(1.130367753 0.6464157351 0.15)
(1.129485049 0.6809534993 0.15)
(1.086873 0.6845433939 0.15)
(1.044326571 0.6889018381 0.15)
(1.127561801 0.7526662351 0.15)
(1.126693699 0.7908221431 0.15)
(1.125982366 0.8308939349 0.15)
(1.083251419 0.8329224132 0.15)
(1.04045252 0.8345682105 0.15)
(1.16822 0.962976 0.15)
(1.12529 1.00921 0.15)
(1.16826 1.00895 0.15)
(1.21123 1.00864 0.15)
(1.08228 1.00943 0.15)
(1.340232194 -1.008072247 0.15)
(1.339862341 -0.9601421144 0.15)
(1.383097434 -0.9611972654 0.15)
(1.253324547 -0.9576527658 0.15)
(1.29580109 -0.908197505 0.15)
(1.294799952 -0.8556437883 0.15)
(1.293677156 -0.8015604229 0.15)
(1.250143901 -0.7981606283 0.15)
(1.206652823 -0.7950608948 0.15)
(1.291406436 -0.6902212561 0.15)
(1.290409708 -0.6337558076 0.15)
(1.289586864 -0.5773001389 0.15)
(1.245955068 -0.5718707139 0.15)
(1.202399238 -0.5670923654 0.15)
(1.288618144 -0.4659266876 0.15)
(1.288508961 -0.4116508751 0.15)
(1.288647482 -0.3586302339 0.15)
(1.245224255 -0.3534755592 0.15)
(1.201878258 -0.3492565932 0.15)
(1.289576754 -0.2567882277 0.15)
(1.29029716 -0.2079283053 0.15)
(1.291132439 -0.1602494618 0.15)
(1.248024875 -0.1581259404 0.15)
(1.292989242 -0.06734053492 0.15)
(1.293951212 -0.02148006895 0.15)
(1.294914633 0.02434310431 0.15)
(1.251874145 0.02524802065 0.15)
(1.296841606 0.1159654049 0.15)
(1.29780398 0.1615111136 0.15)
(1.298755268 0.206488182 0.15)
(1.25572734 0.2084975283 0.15)
(1.300533428 0.2935221196 0.15)
(1.301294894 0.3351327198 0.15)
(1.301921862 0.3753295383 0.15)
(1.259072341 0.3804216623 0.15)
(1.216168594 0.3845716134 0.15)
(1.302639346 0.4516721318 0.15)
(1.302683564 0.4881455955 0.15)
(1.302507064 0.5238395686 0.15)
(1.259850169 0.5292876039 0.15)
(1.217125883 0.5340766032 0.15)
(1.301547127 0.5942945157 0.15)
(1.300830464 0.6298392372 0.15)
(1.300025005 0.6661356822 0.15)
(1.25734753 0.6696096077 0.15)
(1.21461932 0.6727725765 0.15)
(1.298424561 0.742493212 0.15)
(1.297785 0.7832059662 0.15)
(1.297358959 0.8259373799 0.15)
(1.254406438 0.8266074874 0.15)
(1.211526161 0.8278515938 0.15)
(1.34028 0.9625 0.15)
(1.29722 1.00833 0.15)
(1.34028 1.00833 0.15)
(1.38333 1.00833 0.15)
(1.25417 1.00833 0.15)
(1.5125 -1.00833 0.15)
(1.5125 -0.9625 0.15)
(1.55556 -0.9625 0.15)
(1.426299387 -0.9619964145 0.15)
(1.469192262 -0.9152335631 0.15)
(1.46869523 -0.8663003446 0.15)
(1.468009233 -0.8158182535 0.15)
(1.424444301 -0.8124175188 0.15)
(1.380846332 -0.8088155427 0.15)
(1.466357986 -0.711150009 0.15)
(1.465527561 -0.6575241221 0.15)
(1.464771708 -0.6034384008 0.15)
(1.420916236 -0.596517266 0.15)
(1.377081294 -0.5897484271 0.15)
(1.463655205 -0.4950728683 0.15)
(1.463350391 -0.4413312835 0.15)
(1.463231536 -0.3881793301 0.15)
(1.419473589 -0.379642586 0.15)
(1.375776244 -0.3717796096 0.15)
(1.463537421 -0.2842541893 0.15)
(1.463933881 -0.233650501 0.15)
(1.464464325 -0.1839882957 0.15)
(1.421008852 -0.1759217299 0.15)
(1.377623978 -0.1691783323 0.15)
(1.465828031 -0.08737347566 0.15)
(1.466612587 -0.04032933211 0.15)
(1.46743578 0.005927508224 0.15)
(1.42424547 0.01329216073 0.15)
(1.381086107 0.01895056464 0.15)
(1.469117024 0.09611314566 0.15)
(1.469934862 0.1399950998 0.15)
(1.470708868 0.1830106742 0.15)
(1.427751457 0.1910387322 0.15)
(1.384767307 0.1977265858 0.15)
(1.472030086 0.266283257 0.15)
(1.472528338 0.3065254734 0.15)
(1.472888227 0.3458942427 0.15)
(1.430213889 0.3544273581 0.15)
(1.387491212 0.3622692186 0.15)
(1.473130741 0.4224880425 0.15)
(1.473002018 0.4600758868 0.15)
(1.472716016 0.4975080666 0.15)
(1.430214961 0.5044977192 0.15)
(1.387680916 0.5113211629 0.15)
(1.471770095 0.5730439012 0.15)
(1.47118825 0.611749591 0.15)
(1.470602935 0.6514776287 0.15)
(1.427956183 0.6549924542 0.15)
(1.38531512 0.6586998949 0.15)
(1.469672034 0.7350410105 0.15)
(1.469458228 0.7792931808 0.15)
(1.46944 0.825 0.15)
(1.42639 0.825 0.15)
(1.38333938 0.8250622846 0.15)
(1.5125 0.9625 0.15)
(1.46944 1.00833 0.15)
(1.5125 1.00833 0.15)
(1.55556 1.00833 0.15)
(1.42639 1.00833 0.15)
(1.68472 -1.00833 0.15)
(1.68472 -0.9625 0.15)
(1.72778 -0.9625 0.15)
(1.59861 -0.9625 0.15)
(1.64167 -0.916667 0.15)
(1.64167 -0.870833 0.15)
(1.641609682 -0.8246249922 0.15)
(1.598356061 -0.8234083267 0.15)
(1.554998415 -0.8214518715 0.15)
(1.64099465 -0.7286177783 0.15)
(1.640541292 -0.6791054937 0.15)
(1.640058663 -0.6288488983 0.15)
(1.596310472 -0.6232395318 0.15)
(1.552504215 -0.6170010491 0.15)
(1.639175715 -0.5269574122 0.15)
(1.638841552 -0.4757475921 0.15)
(1.638609097 -0.424623638 0.15)
(1.594761813 -0.4156861141 0.15)
(1.550908194 -0.4064525982 0.15)
(1.638490097 -0.3233072768 0.15)
(1.638605352 -0.2733832372 0.15)
(1.638827961 -0.2240866188 0.15)
(1.595194443 -0.2135328794 0.15)
(1.551584538 -0.203104353 0.15)
(1.63954045 -0.1276336775 0.15)
(1.639995471 -0.08055973799 0.15)
(1.640490012 -0.03428165355 0.15)
(1.59720218 -0.02334475168 0.15)
(1.553932635 -0.01274360553 0.15)
(1.641513221 0.05587371735 0.15)
(1.641999264 0.09977239978 0.15)
(1.64244061 0.142921034 0.15)
(1.599518855 0.1534917594 0.15)
(1.556600122 0.1639254436 0.15)
(1.643114747 0.2271782302 0.15)
(1.643317155 0.2684485642 0.15)
(1.643416413 0.3092947279 0.15)
(1.600788408 0.3182942031 0.15)
(1.558174544 0.3275753314 0.15)
(1.643300491 0.39032373 0.15)
(1.643101174 0.4308671013 0.15)
(1.642831772 0.4717005938 0.15)
(1.600253134 0.4774242341 0.15)
(1.557728008 0.4837684083 0.15)
(1.642204433 0.5550975744 0.15)
(1.641925426 0.5980780624 0.15)
(1.6417312 0.6421658721 0.15)
(1.598834345 0.6435114543 0.15)
(1.55603389 0.6455967014 0.15)
(1.64167 0.733333 0.15)
(1.64167 0.779167 0.15)
(1.64167 0.825 0.15)
(1.59861 0.825 0.15)
(1.55556 0.825 0.15)
(1.68472 0.9625 0.15)
(1.64167 1.00833 0.15)
(1.68472 1.00833 0.15)
(1.72778 1.00833 0.15)
(1.59861 1.00833 0.15)
(1.85694 -1.00833 0.15)
(1.85694 -0.9625 0.15)
(1.9 -0.9625 0.15)
(1.77083 -0.9625 0.15)
(1.81389 -0.916667 0.15)
(1.81389 -0.870833 0.15)
(1.81389 -0.825 0.15)
(1.77083 -0.825 0.15)
(1.72778 -0.825 0.15)
(1.81389 -0.733333 0.15)
(1.81389 -0.6875 0.15)
(1.81386388 -0.6414656376 0.15)
(1.770625013 -0.6400736345 0.15)
(1.727238702 -0.6374258924 0.15)
(1.813618514 -0.5475641737 0.15)
(1.813458042 -0.4999463742 0.15)
(1.813306092 -0.452070718 0.15)
(1.769774557 -0.4469336926 0.15)
(1.726140094 -0.4405022558 0.15)
(1.813096214 -0.356089702 0.15)
(1.813058613 -0.3082256785 0.15)
(1.813070786 -0.2605865829 0.15)
(1.769583588 -0.252963426 0.15)
(1.726042337 -0.2441398001 0.15)
(1.813232503 -0.1662952632 0.15)
(1.813367495 -0.1197570322 0.15)
(1.81352476 -0.07366766712 0.15)
(1.770291197 -0.06519232971 0.15)
(1.727042937 -0.05558025264 0.15)
(1.81385682 0.01714102534 0.15)
(1.814006662 0.06189517662 0.15)
(1.814130582 0.1062700938 0.15)
(1.771189058 0.1139395491 0.15)
(1.728270603 0.122805124 0.15)
(1.814267896 0.1941535573 0.15)
(1.814273105 0.237843039 0.15)
(1.814237537 0.2815094229 0.15)
(1.771449632 0.286738518 0.15)
(1.728732535 0.2932591172 0.15)
(1.814078621 0.3692925224 0.15)
(1.813986078 0.4136854091 0.15)
(1.813914174 0.4586008751 0.15)
(1.770989023 0.4601111839 0.15)
(1.72818294 0.4628809527 0.15)
(1.81389 0.55 0.15)
(1.81389 0.595833 0.15)
(1.81389 0.641667 0.15)
(1.77083 0.641667 0.15)
(1.72778 0.641667 0.15)
(1.81389 0.733333 0.15)
(1.81389 0.779167 0.15)
(1.81389 0.825 0.15)
(1.77083 0.825 0.15)
(1.72778 0.825 0.15)
(1.85694 0.9625 0.15)
(1.81389 1.00833 0.15)
(1.85694 1.00833 0.15)
(1.9 1.00833 0.15)
(1.77083 1.00833 0.15)
(2.02917 -1.00833 0.15)
(2.02917 -0.9625 0.15)
(2.07222 -0.9625 0.15)
(1.94306 -0.9625 0.15)
(1.98611 -0.916667 0.15)
(1.98611 -0.870833 0.15)
(1.98611 -0.825 0.15)
(1.94306 -0.825 0.15)
(1.9 -0.825 0.15)
(1.98611 -0.733333 0.15)
(1.98611 -0.6875 0.15)
(1.98611 -0.641667 0.15)
(1.94306 -0.641667 0.15)
(1.9 -0.641667 0.15)
(1.98611 -0.55 0.15)
(1.98611 -0.504167 0.15)
(1.98611 -0.458333 0.15)
(1.94306 -0.458333 0.15)
(1.89995314 -0.4578381669 0.15)
(1.98611 -0.366667 0.15)
(1.98611 -0.320833 0.15)
(1.986109994 -0.2749999045 0.15)
(1.943005716 -0.2740627587 0.15)
(1.899786964 -0.2712953118 0.15)
(1.986106399 -0.1832416579 0.15)
(1.986105739 -0.1373576331 0.15)
(1.986106659 -0.09150326612 0.15)
(1.94302133 -0.08976374213 0.15)
(1.899888036 -0.08614151209 0.15)
(1.986109857 9.823346423e-05 0.15)
(1.986110309 0.04587178193 0.15)
(1.986110018 0.09166771687 0.15)
(1.94307704 0.09264916588 0.15)
(1.900064924 0.09546395707 0.15)
(1.98611 0.183333 0.15)
(1.98611 0.229167 0.15)
(1.98611 0.275 0.15)
(1.94306 0.275 0.15)
(1.900030611 0.2755615532 0.15)
(1.98611 0.366667 0.15)
(1.98611 0.4125 0.15)
(1.98611 0.458333 0.15)
(1.94306 0.458333 0.15)
(1.9 0.458333 0.15)
(1.98611 0.55 0.15)
(1.98611 0.595833 0.15)
(1.98611 0.641667 0.15)
(1.94306 0.641667 0.15)
(1.9 0.641667 0.15)
(1.98611 0.733333 0.15)
(1.98611 0.779167 0.15)
(1.98611 0.825 0.15)
(1.94306 0.825 0.15)
(1.9 0.825 0.15)
(2.02917 0.9625 0.15)
(1.98611 1.00833 0.15)
(2.02917 1.00833 0.15)
(2.07222 1.00833 0.15)
(1.94306 1.00833 0.15)
(2.20139 -1.00833 0.15)
(2.20139 -0.9625 0.15)
(2.24444 -0.9625 0.15)
(2.11528 -0.9625 0.15)
(2.15833 -0.916667 0.15)
(2.15833 -0.870833 0.15)
(2.15833 -0.825 0.15)
(2.11528 -0.825 0.15)
(2.07222 -0.825 0.15)
(2.15833 -0.733333 0.15)
(2.15833 -0.6875 0.15)
(2.15833 -0.641667 0.15)
(2.11528 -0.641667 0.15)
(2.07222 -0.641667 0.15)
(2.15833 -0.55 0.15)
(2.15833 -0.504167 0.15)
(2.15833 -0.458333 0.15)
(2.11528 -0.458333 0.15)
(2.07222 -0.458333 0.15)
(2.15833 -0.366667 0.15)
(2.15833 -0.320833 0.15)
(2.15833 -0.275 0.15)
(2.11528 -0.275 0.15)
(2.07222 -0.275 0.15)
(2.15833 -0.183333 0.15)
(2.15833 -0.1375 0.15)
(2.15833 -0.0916667 0.15)
(2.11528 -0.0916667 0.15)
(2.07222 -0.0916667 0.15)
(2.15833 0 0.15)
(2.15833 0.0458333 0.15)
(2.15833 0.0916667 0.15)
(2.11528 0.0916667 0.15)
(2.07222 0.0916667 0.15)
(2.15833 0.183333 0.15)
(2.15833 0.229167 0.15)
(2.15833 0.275 0.15)
(2.11528 0.275 0.15)
(2.07222 0.275 0.15)
(2.15833 0.366667 0.15)
(2.15833 0.4125 0.15)
(2.15833 0.458333 0.15)
(2.11528 0.458333 0.15)
(2.07222 0.458333 0.15)
(2.15833 0.55 0.15)
(2.15833 0.595833 0.15)
(2.15833 0.641667 0.15)
(2.11528 0.641667 0.15)
(2.07222 0.641667 0.15)
(2.15833 0.733333 0.15)
(2.15833 0.779167 0.15)
(2.15833 0.825 0.15)
(2.11528 0.825 0.15)
(2.07222 0.825 0.15)
(2.20139 0.9625 0.15)
(2.15833 1.00833 0.15)
(2.20139 1.00833 0.15)
(2.24444 1.00833 0.15)
(2.11528 1.00833 0.15)
(2.37361 -1.00833 0.15)
(2.37361 -0.9625 0.15)
(2.41667 -0.9625 0.15)
(2.2875 -0.9625 0.15)
(2.33056 -0.916667 0.15)
(2.33056 -0.870833 0.15)
(2.33056 -0.825 0.15)
(2.2875 -0.825 0.15)
(2.24444 -0.825 0.15)
(2.33056 -0.733333 0.15)
(2.33056 -0.6875 0.15)
(2.33056 -0.641667 0.15)
(2.2875 -0.641667 0.15)
(2.24444 -0.641667 0.15)
(2.33056 -0.55 0.15)
(2.33056 -0.504167 0.15)
(2.33056 -0.458333 0.15)
(2.2875 -0.458333 0.15)
(2.24444 -0.458333 0.15)
(2.33056 -0.366667 0.15)
(2.33056 -0.320833 0.15)
(2.33056 -0.275 0.15)
(2.2875 -0.275 0.15)
(2.24444 -0.275 0.15)
(2.33056 -0.183333 0.15)
(2.33056 -0.1375 0.15)
(2.33056 -0.0916667 0.15)
(2.2875 -0.0916667 0.15)
(2.24444 -0.0916667 0.15)
(2.33056 -9.25186e-18 0.15)
(2.33056 0.0458333 0.15)
(2.33056 0.0916667 0.15)
(2.2875 0.0916667 0.15)
(2.24444 0.0916667 0.15)
(2.33056 0.183333 0.15)
(2.33056 0.229167 0.15)
(2.33056 0.275 0.15)
(2.2875 0.275 0.15)
(2.24444 0.275 0.15)
(2.33056 0.366667 0.15)
(2.33056 0.4125 0.15)
(2.33056 0.458333 0.15)
(2.2875 0.458333 0.15)
(2.24444 0.458333 0.15)
(2.33056 0.55 0.15)
(2.33056 0.595833 0.15)
(2.33056 0.641667 0.15)
(2.2875 0.641667 0.15)
(2.24444 0.641667 0.15)
(2.33056 0.733333 0.15)
(2.33056 0.779167 0.15)
(2.33056 0.825 0.15)
(2.2875 0.825 0.15)
(2.24444 0.825 0.15)
(2.37361 0.9625 0.15)
(2.33056 1.00833 0.15)
(2.37361 1.00833 0.15)
(2.41667 1.00833 0.15)
(2.2875 1.00833 0.15)
(2.54583 -1.00833 0.15)
(2.54583 -0.9625 0.15)
(2.58889 -0.9625 0.15)
(2.45972 -0.9625 0.15)
(2.50278 -0.916667 0.15)
(2.50278 -0.870833 0.15)
(2.50278 -0.825 0.15)
(2.45972 -0.825 0.15)
(2.41667 -0.825 0.15)
(2.50278 -0.733333 0.15)
(2.50278 -0.6875 0.15)
(2.50278 -0.641667 0.15)
(2.45972 -0.641667 0.15)
(2.41667 -0.641667 0.15)
(2.50278 -0.55 0.15)
(2.50278 -0.504167 0.15)
(2.50278 -0.458333 0.15)
(2.45972 -0.458333 0.15)
(2.41667 -0.458333 0.15)
(2.50278 -0.366667 0.15)
(2.50278 -0.320833 0.15)
(2.50278 -0.275 0.15)
(2.45972 -0.275 0.15)
(2.41667 -0.275 0.15)
(2.50278 -0.183333 0.15)
(2.50278 -0.1375 0.15)
(2.50278 -0.0916667 0.15)
(2.45972 -0.0916667 0.15)
(2.41667 -0.0916667 0.15)
(2.50278 -1.85037e-17 0.15)
(2.50278 0.0458333 0.15)
(2.50278 0.0916667 0.15)
(2.45972 0.0916667 0.15)
(2.41667 0.0916667 0.15)
(2.50278 0.183333 0.15)
(2.50278 0.229167 0.15)
(2.50278 0.275 0.15)
(2.45972 0.275 0.15)
(2.41667 0.275 0.15)
(2.50278 0.366667 0.15)
(2.50278 0.4125 0.15)
(2.50278 0.458333 0.15)
(2.45972 0.458333 0.15)
(2.41667 0.458333 0.15)
(2.50278 0.55 0.15)
(2.50278 0.595833 0.15)
(2.50278 0.641667 0.15)
(2.45972 0.641667 0.15)
(2.41667 0.641667 0.15)
(2.50278 0.733333 0.15)
(2.50278 0.779167 0.15)
(2.50278 0.825 0.15)
(2.45972 0.825 0.15)
(2.41667 0.825 0.15)
(2.54583 0.9625 0.15)
(2.50278 1.00833 0.15)
(2.54583 1.00833 0.15)
(2.58889 1.00833 0.15)
(2.45972 1.00833 0.15)
(2.71806 -1.00833 0.15)
(2.71806 -0.9625 0.15)
(2.76111 -0.9625 0.15)
(2.63194 -0.9625 0.15)
(2.675 -0.916667 0.15)
(2.675 -0.870833 0.15)
(2.675 -0.825 0.15)
(2.63194 -0.825 0.15)
(2.58889 -0.825 0.15)
(2.675 -0.733333 0.15)
(2.675 -0.6875 0.15)
(2.675 -0.641667 0.15)
(2.63194 -0.641667 0.15)
(2.58889 -0.641667 0.15)
(2.675 -0.55 0.15)
(2.675 -0.504167 0.15)
(2.675 -0.458333 0.15)
(2.63194 -0.458333 0.15)
(2.58889 -0.458333 0.15)
(2.675 -0.366667 0.15)
(2.675 -0.320833 0.15)
(2.675 -0.275 0.15)
(2.63194 -0.275 0.15)
(2.58889 -0.275 0.15)
(2.675 -0.183333 0.15)
(2.675 -0.1375 0.15)
(2.675 -0.0916667 0.15)
(2.63194 -0.0916667 0.15)
(2.58889 -0.0916667 0.15)
(2.675 0 0.15)
(2.675 0.0458333 0.15)
(2.675 0.0916667 0.15)
(2.63194 0.0916667 0.15)
(2.58889 0.0916667 0.15)
(2.675 0.183333 0.15)
(2.675 0.229167 0.15)
(2.675 0.275 0.15)
(2.63194 0.275 0.15)
(2.58889 0.275 0.15)
(2.675 0.366667 0.15)
(2.675 0.4125 0.15)
(2.675 0.458333 0.15)
(2.63194 0.458333 0.15)
(2.58889 0.458333 0.15)
(2.675 0.55 0.15)
(2.675 0.595833 0.15)
(2.675 0.641667 0.15)
(2.63194 0.641667 0.15)
(2.58889 0.641667 0.15)
(2.675 0.733333 0.15)
(2.675 0.779167 0.15)
(2.675 0.825 0.15)
(2.63194 0.825 0.15)
(2.58889 0.825 0.15)
(2.71806 0.9625 0.15)
(2.675 1.00833 0.15)
(2.71806 1.00833 0.15)
(2.76111 1.00833 0.15)
(2.63194 1.00833 0.15)
(2.89028 -1.00833 0.15)
(2.89028 -0.9625 0.15)
(2.93333 -0.9625 0.15)
(2.80417 -0.9625 0.15)
(2.84722 -0.916667 0.15)
(2.84722 -0.870833 0.15)
(2.84722 -0.825 0.15)
(2.80417 -0.825 0.15)
(2.76111 -0.825 0.15)
(2.84722 -0.733333 0.15)
(2.84722 -0.6875 0.15)
(2.84722 -0.641667 0.15)
(2.80417 -0.641667 0.15)
(2.76111 -0.641667 0.15)
(2.84722 -0.55 0.15)
(2.84722 -0.504167 0.15)
(2.84722 -0.458333 0.15)
(2.80417 -0.458333 0.15)
(2.76111 -0.458333 0.15)
(2.84722 -0.366667 0.15)
(2.84722 -0.320833 0.15)
(2.84722 -0.275 0.15)
(2.80417 -0.275 0.15)
(2.76111 -0.275 0.15)
(2.84722 -0.183333 0.15)
(2.84722 -0.1375 0.15)
(2.84722 -0.0916667 0.15)
(2.80417 -0.0916667 0.15)
(2.76111 -0.0916667 0.15)
(2.84722 1.85037e-17 0.15)
(2.84722 0.0458333 0.15)
(2.84722 0.0916667 0.15)
(2.80417 0.0916667 0.15)
(2.76111 0.0916667 0.15)
(2.84722 0.183333 0.15)
(2.84722 0.229167 0.15)
(2.84722 0.275 0.15)
(2.80417 0.275 0.15)
(2.76111 0.275 0.15)
(2.84722 0.366667 0.15)
(2.84722 0.4125 0.15)
(2.84722 0.458333 0.15)
(2.80417 0.458333 0.15)
(2.76111 0.458333 0.15)
(2.84722 0.55 0.15)
(2.84722 0.595833 0.15)
(2.84722 0.641667 0.15)
(2.80417 0.641667 0.15)
(2.76111 0.641667 0.15)
(2.84722 0.733333 0.15)
(2.84722 0.779167 0.15)
(2.84722 0.825 0.15)
(2.80417 0.825 0.15)
(2.76111 0.825 0.15)
(2.89028 0.9625 0.15)
(2.84722 1.00833 0.15)
(2.89028 1.00833 0.15)
(2.93333 1.00833 0.15)
(2.80417 1.00833 0.15)
(3.0625 -1.00833 0.15)
(3.0625 -0.9625 0.15)
(3.10556 -0.9625 0.15)
(2.97639 -0.9625 0.15)
(3.01944 -0.916667 0.15)
(3.01944 -0.870833 0.15)
(3.01944 -0.825 0.15)
(2.97639 -0.825 0.15)
(2.93333 -0.825 0.15)
(3.01944 -0.733333 0.15)
(3.01944 -0.6875 0.15)
(3.01944 -0.641667 0.15)
(2.97639 -0.641667 0.15)
(2.93333 -0.641667 0.15)
(3.01944 -0.55 0.15)
(3.01944 -0.504167 0.15)
(3.01944 -0.458333 0.15)
(2.97639 -0.458333 0.15)
(2.93333 -0.458333 0.15)
(3.01944 -0.366667 0.15)
(3.01944 -0.320833 0.15)
(3.01944 -0.275 0.15)
(2.97639 -0.275 0.15)
(2.93333 -0.275 0.15)
(3.01944 -0.183333 0.15)
(3.01944 -0.1375 0.15)
(3.01944 -0.0916667 0.15)
(2.97639 -0.0916667 0.15)
(2.93333 -0.0916667 0.15)
(3.01944 9.25186e-18 0.15)
(3.01944 0.0458333 0.15)
(3.01944 0.0916667 0.15)
(2.97639 0.0916667 0.15)
(2.93333 0.0916667 0.15)
(3.01944 0.183333 0.15)
(3.01944 0.229167 0.15)
(3.01944 0.275 0.15)
(2.97639 0.275 0.15)
(2.93333 0.275 0.15)
(3.01944 0.366667 0.15)
(3.01944 0.4125 0.15)
(3.01944 0.458333 0.15)
(2.97639 0.458333 0.15)
(2.93333 0.458333 0.15)
(3.01944 0.55 0.15)
(3.01944 0.595833 0.15)
(3.01944 0.641667 0.15)
(2.97639 0.641667 0.15)
(2.93333 0.641667 0.15)
(3.01944 0.733333 0.15)
(3.01944 0.779167 0.15)
(3.01944 0.825 0.15)
(2.97639 0.825 0.15)
(2.93333 0.825 0.15)
(3.0625 0.9625 0.15)
(3.01944 1.00833 0.15)
(3.0625 1.00833 0.15)
(3.10556 1.00833 0.15)
(2.97639 1.00833 0.15)
(3.23472 -1.00833 0.15)
(3.23472 -0.9625 0.15)
(3.27778 -0.9625 0.15)
(3.14861 -0.9625 0.15)
(3.19167 -0.916667 0.15)
(3.19167 -0.870833 0.15)
(3.19167 -0.825 0.15)
(3.14861 -0.825 0.15)
(3.10556 -0.825 0.15)
(3.19167 -0.733333 0.15)
(3.19167 -0.6875 0.15)
(3.19167 -0.641667 0.15)
(3.14861 -0.641667 0.15)
(3.10556 -0.641667 0.15)
(3.19167 -0.55 0.15)
(3.19167 -0.504167 0.15)
(3.19167 -0.458333 0.15)
(3.14861 -0.458333 0.15)
(3.10556 -0.458333 0.15)
(3.19167 -0.366667 0.15)
(3.19167 -0.320833 0.15)
(3.19167 -0.275 0.15)
(3.14861 -0.275 0.15)
(3.10556 -0.275 0.15)
(3.19167 -0.183333 0.15)
(3.19167 -0.1375 0.15)
(3.19167 -0.0916667 0.15)
(3.14861 -0.0916667 0.15)
(3.10556 -0.0916667 0.15)
(3.19167 0 0.15)
(3.19167 0.0458333 0.15)
(3.19167 0.0916667 0.15)
(3.14861 0.0916667 0.15)
(3.10556 0.0916667 0.15)
(3.19167 0.183333 0.15)
(3.19167 0.229167 0.15)
(3.19167 0.275 0.15)
(3.14861 0.275 0.15)
(3.10556 0.275 0.15)
(3.19167 0.366667 0.15)
(3.19167 0.4125 0.15)
(3.19167 0.458333 0.15)
(3.14861 0.458333 0.15)
(3.10556 0.458333 0.15)
(3.19167 0.55 0.15)
(3.19167 0.595833 0.15)
(3.19167 0.641667 0.15)
(3.14861 0.641667 0.15)
(3.10556 0.641667 0.15)
(3.19167 0.733333 0.15)
(3.19167 0.779167 0.15)
(3.19167 0.825 0.15)
(3.14861 0.825 0.15)
(3.10556 0.825 0.15)
(3.23472 0.9625 0.15)
(3.19167 1.00833 0.15)
(3.23472 1.00833 0.15)
(3.27778 1.00833 0.15)
(3.14861 1.00833 0.15)
(3.40694 -1.00833 0.15)
(3.40694 -0.9625 0.15)
(3.45 -0.9625 0.15)
(3.32083 -0.9625 0.15)
(3.36389 -0.916667 0.15)
(3.36389 -0.870833 0.15)
(3.36389 -0.825 0.15)
(3.32083 -0.825 0.15)
(3.27778 -0.825 0.15)
(3.36389 -0.733333 0.15)
(3.36389 -0.6875 0.15)
(3.36389 -0.641667 0.15)
(3.32083 -0.641667 0.15)
(3.27778 -0.641667 0.15)
(3.36389 -0.55 0.15)
(3.36389 -0.504167 0.15)
(3.36389 -0.458333 0.15)
(3.32083 -0.458333 0.15)
(3.27778 -0.458333 0.15)
(3.36389 -0.366667 0.15)
(3.36389 -0.320833 0.15)
(3.36389 -0.275 0.15)
(3.32083 -0.275 0.15)
(3.27778 -0.275 0.15)
(3.36389 -0.183333 0.15)
(3.36389 -0.1375 0.15)
(3.36389 -0.0916667 0.15)
(3.32083 -0.0916667 0.15)
(3.27778 -0.0916667 0.15)
(3.36389 0 0.15)
(3.36389 0.0458333 0.15)
(3.36389 0.0916667 0.15)
(3.32083 0.0916667 0.15)
(3.27778 0.0916667 0.15)
(3.36389 0.183333 0.15)
(3.36389 0.229167 0.15)
(3.36389 0.275 0.15)
(3.32083 0.275 0.15)
(3.27778 0.275 0.15)
(3.36389 0.366667 0.15)
(3.36389 0.4125 0.15)
(3.36389 0.458333 0.15)
(3.32083 0.458333 0.15)
(3.27778 0.458333 0.15)
(3.36389 0.55 0.15)
(3.36389 0.595833 0.15)
(3.36389 0.641667 0.15)
(3.32083 0.641667 0.15)
(3.27778 0.641667 0.15)
(3.36389 0.733333 0.15)
(3.36389 0.779167 0.15)
(3.36389 0.825 0.15)
(3.32083 0.825 0.15)
(3.27778 0.825 0.15)
(3.40694 0.9625 0.15)
(3.36389 1.00833 0.15)
(3.40694 1.00833 0.15)
(3.45 1.00833 0.15)
(3.32083 1.00833 0.15)
(3.57917 -1.00833 0.15)
(3.57917 -0.9625 0.15)
(3.62222 -0.9625 0.15)
(3.49306 -0.9625 0.15)
(3.53611 -0.916667 0.15)
(3.53611 -0.870833 0.15)
(3.53611 -0.825 0.15)
(3.49306 -0.825 0.15)
(3.45 -0.825 0.15)
(3.53611 -0.733333 0.15)
(3.53611 -0.6875 0.15)
(3.53611 -0.641667 0.15)
(3.49306 -0.641667 0.15)
(3.45 -0.641667 0.15)
(3.53611 -0.55 0.15)
(3.53611 -0.504167 0.15)
(3.53611 -0.458333 0.15)
(3.49306 -0.458333 0.15)
(3.45 -0.458333 0.15)
(3.53611 -0.366667 0.15)
(3.53611 -0.320833 0.15)
(3.53611 -0.275 0.15)
(3.49306 -0.275 0.15)
(3.45 -0.275 0.15)
(3.53611 -0.183333 0.15)
(3.53611 -0.1375 0.15)
(3.53611 -0.0916667 0.15)
(3.49306 -0.0916667 0.15)
(3.45 -0.0916667 0.15)
(3.53611 0 0.15)
(3.53611 0.0458333 0.15)
(3.53611 0.0916667 0.15)
(3.49306 0.0916667 0.15)
(3.45 0.0916667 0.15)
(3.53611 0.183333 0.15)
(3.53611 0.229167 0.15)
(3.53611 0.275 0.15)
(3.49306 0.275 0.15)
(3.45 0.275 0.15)
(3.53611 0.366667 0.15)
(3.53611 0.4125 0.15)
(3.53611 0.458333 0.15)
(3.49306 0.458333 0.15)
(3.45 0.458333 0.15)
(3.53611 0.55 0.15)
(3.53611 0.595833 0.15)
(3.53611 0.641667 0.15)
(3.49306 0.641667 0.15)
(3.45 0.641667 0.15)
(3.53611 0.733333 0.15)
(3.53611 0.779167 0.15)
(3.53611 0.825 0.15)
(3.49306 0.825 0.15)
(3.45 0.825 0.15)
(3.57917 0.9625 0.15)
(3.53611 1.00833 0.15)
(3.57917 1.00833 0.15)
(3.62222 1.00833 0.15)
(3.49306 1.00833 0.15)
(3.75139 -1.00833 0.15)
(3.75139 -0.9625 0.15)
(3.79444 -0.9625 0.15)
(3.66528 -0.9625 0.15)
(3.70833 -0.916667 0.15)
(3.70833 -0.870833 0.15)
(3.70833 -0.825 0.15)
(3.66528 -0.825 0.15)
(3.62222 -0.825 0.15)
(3.70833 -0.733333 0.15)
(3.70833 -0.6875 0.15)
(3.70833 -0.641667 0.15)
(3.66528 -0.641667 0.15)
(3.62222 -0.641667 0.15)
(3.70833 -0.55 0.15)
(3.70833 -0.504167 0.15)
(3.70833 -0.458333 0.15)
(3.66528 -0.458333 0.15)
(3.62222 -0.458333 0.15)
(3.70833 -0.366667 0.15)
(3.70833 -0.320833 0.15)
(3.70833 -0.275 0.15)
(3.66528 -0.275 0.15)
(3.62222 -0.275 0.15)
(3.70833 -0.183333 0.15)
(3.70833 -0.1375 0.15)
(3.70833 -0.0916667 0.15)
(3.66528 -0.0916667 0.15)
(3.62222 -0.0916667 0.15)
(3.70833 -4.62593e-18 0.15)
(3.70833 0.0458333 0.15)
(3.70833 0.0916667 0.15)
(3.66528 0.0916667 0.15)
(3.62222 0.0916667 0.15)
(3.70833 0.183333 0.15)
(3.70833 0.229167 0.15)
(3.70833 0.275 0.15)
(3.66528 0.275 0.15)
(3.62222 0.275 0.15)
(3.70833 0.366667 0.15)
(3.70833 0.4125 0.15)
(3.70833 0.458333 0.15)
(3.66528 0.458333 0.15)
(3.62222 0.458333 0.15)
(3.70833 0.55 0.15)
(3.70833 0.595833 0.15)
(3.70833 0.641667 0.15)
(3.66528 0.641667 0.15)
(3.62222 0.641667 0.15)
(3.70833 0.733333 0.15)
(3.70833 0.779167 0.15)
(3.70833 0.825 0.15)
(3.66528 0.825 0.15)
(3.62222 0.825 0.15)
(3.75139 0.9625 0.15)
(3.70833 1.00833 0.15)
(3.75139 1.00833 0.15)
(3.79444 1.00833 0.15)
(3.66528 1.00833 0.15)
(3.92361 -1.00833 0.15)
(3.92361 -0.9625 0.15)
(3.96667 -0.9625 0.15)
(3.8375 -0.9625 0.15)
(3.88056 -0.916667 0.15)
(3.88056 -0.870833 0.15)
(3.88056 -0.825 0.15)
(3.8375 -0.825 0.15)
(3.79444 -0.825 0.15)
(3.88056 -0.733333 0.15)
(3.88056 -0.6875 0.15)
(3.88056 -0.641667 0.15)
(3.8375 -0.641667 0.15)
(3.79444 -0.641667 0.15)
(3.88056 -0.55 0.15)
(3.88056 -0.504167 0.15)
(3.88056 -0.458333 0.15)
(3.8375 -0.458333 0.15)
(3.79444 -0.458333 0.15)
(3.88056 -0.366667 0.15)
(3.88056 -0.320833 0.15)
(3.88056 -0.275 0.15)
(3.8375 -0.275 0.15)
(3.79444 -0.275 0.15)
(3.88056 -0.183333 0.15)
(3.88056 -0.1375 0.15)
(3.88056 -0.0916667 0.15)
(3.8375 -0.0916667 0.15)
(3.79444 -0.0916667 0.15)
(3.88056 -9.25186e-18 0.15)
(3.88056 0.0458333 0.15)
(3.88056 0.0916667 0.15)
(3.8375 0.0916667 0.15)
(3.79444 0.0916667 0.15)
(3.88056 0.183333 0.15)
(3.88056 0.229167 0.15)
(3.88056 0.275 0.15)
(3.8375 0.275 0.15)
(3.79444 0.275 0.15)
(3.88056 0.366667 0.15)
(3.88056 0.4125 0.15)
(3.88056 0.458333 0.15)
(3.8375 0.458333 0.15)
(3.79444 0.458333 0.15)
(3.88056 0.55 0.15)
(3.88056 0.595833 0.15)
(3.88056 0.641667 0.15)
(3.8375 0.641667 0.15)
(3.79444 0.641667 0.15)
(3.88056 0.733333 0.15)
(3.88056 0.779167 0.15)
(3.88056 0.825 0.15)
(3.8375 0.825 0.15)
(3.79444 0.825 0.15)
(3.92361 0.9625 0.15)
(3.88056 1.00833 0.15)
(3.92361 1.00833 0.15)
(3.96667 1.00833 0.15)
(3.8375 1.00833 0.15)
(4.09583 -1.00833 0.15)
(4.09583 -0.9625 0.15)
(4.13889 -0.9625 0.15)
(4.00972 -0.9625 0.15)
(4.05278 -0.916667 0.15)
(4.05278 -0.870833 0.15)
(4.05278 -0.825 0.15)
(4.00972 -0.825 0.15)
(3.96667 -0.825 0.15)
(4.05278 -0.733333 0.15)
(4.05278 -0.6875 0.15)
(4.05278 -0.641667 0.15)
(4.00972 -0.641667 0.15)
(3.96667 -0.641667 0.15)
(4.05278 -0.55 0.15)
(4.05278 -0.504167 0.15)
(4.05278 -0.458333 0.15)
(4.00972 -0.458333 0.15)
(3.96667 -0.458333 0.15)
(4.05278 -0.366667 0.15)
(4.05278 -0.320833 0.15)
(4.05278 -0.275 0.15)
(4.00972 -0.275 0.15)
(3.96667 -0.275 0.15)
(4.05278 -0.183333 0.15)
(4.05278 -0.1375 0.15)
(4.05278 -0.0916667 0.15)
(4.00972 -0.0916667 0.15)
(3.96667 -0.0916667 0.15)
(4.05278 -1.38778e-17 0.15)
(4.05278 0.0458333 0.15)
(4.05278 0.0916667 0.15)
(4.00972 0.0916667 0.15)
(3.96667 0.0916667 0.15)
(4.05278 0.183333 0.15)
(4.05278 0.229167 0.15)
(4.05278 0.275 0.15)
(4.00972 0.275 0.15)
(3.96667 0.275 0.15)
(4.05278 0.366667 0.15)
(4.05278 0.4125 0.15)
(4.05278 0.458333 0.15)
(4.00972 0.458333 0.15)
(3.96667 0.458333 0.15)
(4.05278 0.55 0.15)
(4.05278 0.595833 0.15)
(4.05278 0.641667 0.15)
(4.00972 0.641667 0.15)
(3.96667 0.641667 0.15)
(4.05278 0.733333 0.15)
(4.05278 0.779167 0.15)
(4.05278 0.825 0.15)
(4.00972 0.825 0.15)
(3.96667 0.825 0.15)
(4.09583 0.9625 0.15)
(4.05278 1.00833 0.15)
(4.09583 1.00833 0.15)
(4.13889 1.00833 0.15)
(4.00972 1.00833 0.15)
(4.26806 -1.00833 0.15)
(4.26806 -0.9625 0.15)
(4.31111 -0.9625 0.15)
(4.18194 -0.9625 0.15)
(4.225 -0.916667 0.15)
(4.225 -0.870833 0.15)
(4.225 -0.825 0.15)
(4.18194 -0.825 0.15)
(4.13889 -0.825 0.15)
(4.225 -0.733333 0.15)
(4.225 -0.6875 0.15)
(4.225 -0.641667 0.15)
(4.18194 -0.641667 0.15)
(4.13889 -0.641667 0.15)
(4.225 -0.55 0.15)
(4.225 -0.504167 0.15)
(4.225 -0.458333 0.15)
(4.18194 -0.458333 0.15)
(4.13889 -0.458333 0.15)
(4.225 -0.366667 0.15)
(4.225 -0.320833 0.15)
(4.225 -0.275 0.15)
(4.18194 -0.275 0.15)
(4.13889 -0.275 0.15)
(4.225 -0.183333 0.15)
(4.225 -0.1375 0.15)
(4.225 -0.0916667 0.15)
(4.18194 -0.0916667 0.15)
(4.13889 -0.0916667 0.15)
(4.225 0 0.15)
(4.225 0.0458333 0.15)
(4.225 0.0916667 0.15)
(4.18194 0.0916667 0.15)
(4.13889 0.0916667 0.15)
(4.225 0.183333 0.15)
(4.225 0.229167 0.15)
(4.225 0.275 0.15)
(4.18194 0.275 0.15)
(4.13889 0.275 0.15)
(4.225 0.366667 0.15)
(4.225 0.4125 0.15)
(4.225 0.458333 0.15)
(4.18194 0.458333 0.15)
(4.13889 0.458333 0.15)
(4.225 0.55 0.15)
(4.225 0.595833 0.15)
(4.225 0.641667 0.15)
(4.18194 0.641667 0.15)
(4.13889 0.641667 0.15)
(4.225 0.733333 0.15)
(4.225 0.779167 0.15)
(4.225 0.825 0.15)
(4.18194 0.825 0.15)
(4.13889 0.825 0.15)
(4.26806 0.9625 0.15)
(4.225 1.00833 0.15)
(4.26806 1.00833 0.15)
(4.31111 1.00833 0.15)
(4.18194 1.00833 0.15)
(4.44028 -1.00833 0.15)
(4.44028 -0.9625 0.15)
(4.48333 -0.9625 0.15)
(4.35417 -0.9625 0.15)
(4.39722 -0.916667 0.15)
(4.39722 -0.870833 0.15)
(4.39722 -0.825 0.15)
(4.35417 -0.825 0.15)
(4.31111 -0.825 0.15)
(4.39722 -0.733333 0.15)
(4.39722 -0.6875 0.15)
(4.39722 -0.641667 0.15)
(4.35417 -0.641667 0.15)
(4.31111 -0.641667 0.15)
(4.39722 -0.55 0.15)
(4.39722 -0.504167 0.15)
(4.39722 -0.458333 0.15)
(4.35417 -0.458333 0.15)
(4.31111 -0.458333 0.15)
(4.39722 -0.366667 0.15)
(4.39722 -0.320833 0.15)
(4.39722 -0.275 0.15)
(4.35417 -0.275 0.15)
(4.31111 -0.275 0.15)
(4.39722 -0.183333 0.15)
(4.39722 -0.1375 0.15)
(4.39722 -0.0916667 0.15)
(4.35417 -0.0916667 0.15)
(4.31111 -0.0916667 0.15)
(4.39722 -2.31296e-18 0.15)
(4.39722 0.0458333 0.15)
(4.39722 0.0916667 0.15)
(4.35417 0.0916667 0.15)
(4.31111 0.0916667 0.15)
(4.39722 0.183333 0.15)
(4.39722 0.229167 0.15)
(4.39722 0.275 0.15)
(4.35417 0.275 0.15)
(4.31111 0.275 0.15)
(4.39722 0.366667 0.15)
(4.39722 0.4125 0.15)
(4.39722 0.458333 0.15)
(4.35417 0.458333 0.15)
(4.31111 0.458333 0.15)
(4.39722 0.55 0.15)
(4.39722 0.595833 0.15)
(4.39722 0.641667 0.15)
(4.35417 0.641667 0.15)
(4.31111 0.641667 0.15)
(4.39722 0.733333 0.15)
(4.39722 0.779167 0.15)
(4.39722 0.825 0.15)
(4.35417 0.825 0.15)
(4.31111 0.825 0.15)
(4.44028 0.9625 0.15)
(4.39722 1.00833 0.15)
(4.44028 1.00833 0.15)
(4.48333 1.00833 0.15)
(4.35417 1.00833 0.15)
(4.6125 -1.00833 0.15)
(4.6125 -0.9625 0.15)
(4.65556 -0.9625 0.15)
(4.52639 -0.9625 0.15)
(4.56944 -0.916667 0.15)
(4.56944 -0.870833 0.15)
(4.56944 -0.825 0.15)
(4.52639 -0.825 0.15)
(4.48333 -0.825 0.15)
(4.56944 -0.733333 0.15)
(4.56944 -0.6875 0.15)
(4.56944 -0.641667 0.15)
(4.52639 -0.641667 0.15)
(4.48333 -0.641667 0.15)
(4.56944 -0.55 0.15)
(4.56944 -0.504167 0.15)
(4.56944 -0.458333 0.15)
(4.52639 -0.458333 0.15)
(4.48333 -0.458333 0.15)
(4.56944 -0.366667 0.15)
(4.56944 -0.320833 0.15)
(4.56944 -0.275 0.15)
(4.52639 -0.275 0.15)
(4.48333 -0.275 0.15)
(4.56944 -0.183333 0.15)
(4.56944 -0.1375 0.15)
(4.56944 -0.0916667 0.15)
(4.52639 -0.0916667 0.15)
(4.48333 -0.0916667 0.15)
(4.56944 -6.93889e-18 0.15)
(4.56944 0.0458333 0.15)
(4.56944 0.0916667 0.15)
(4.52639 0.0916667 0.15)
(4.48333 0.0916667 0.15)
(4.56944 0.183333 0.15)
(4.56944 0.229167 0.15)
(4.56944 0.275 0.15)
(4.52639 0.275 0.15)
(4.48333 0.275 0.15)
(4.56944 0.366667 0.15)
(4.56944 0.4125 0.15)
(4.56944 0.458333 0.15)
(4.52639 0.458333 0.15)
(4.48333 0.458333 0.15)
(4.56944 0.55 0.15)
(4.56944 0.595833 0.15)
(4.56944 0.641667 0.15)
(4.52639 0.641667 0.15)
(4.48333 0.641667 0.15)
(4.56944 0.733333 0.15)
(4.56944 0.779167 0.15)
(4.56944 0.825 0.15)
(4.52639 0.825 0.15)
(4.48333 0.825 0.15)
(4.6125 0.9625 0.15)
(4.56944 1.00833 0.15)
(4.6125 1.00833 0.15)
(4.65556 1.00833 0.15)
(4.52639 1.00833 0.15)
(4.78472 -1.00833 0.15)
(4.78472 -0.9625 0.15)
(4.82778 -0.9625 0.15)
(4.69861 -0.9625 0.15)
(4.74167 -0.916667 0.15)
(4.74167 -0.870833 0.15)
(4.74167 -0.825 0.15)
(4.69861 -0.825 0.15)
(4.65556 -0.825 0.15)
(4.74167 -0.733333 0.15)
(4.74167 -0.6875 0.15)
(4.74167 -0.641667 0.15)
(4.69861 -0.641667 0.15)
(4.65556 -0.641667 0.15)
(4.74167 -0.55 0.15)
(4.74167 -0.504167 0.15)
(4.74167 -0.458333 0.15)
(4.69861 -0.458333 0.15)
(4.65556 -0.458333 0.15)
(4.74167 -0.366667 0.15)
(4.74167 -0.320833 0.15)
(4.74167 -0.275 0.15)
(4.69861 -0.275 0.15)
(4.65556 -0.275 0.15)
(4.74167 -0.183333 0.15)
(4.74167 -0.1375 0.15)
(4.74167 -0.0916667 0.15)
(4.69861 -0.0916667 0.15)
(4.65556 -0.0916667 0.15)
(4.74167 -1.15648e-17 0.15)
(4.74167 0.0458333 0.15)
(4.74167 0.0916667 0.15)
(4.69861 0.0916667 0.15)
(4.65556 0.0916667 0.15)
(4.74167 0.183333 0.15)
(4.74167 0.229167 0.15)
(4.74167 0.275 0.15)
(4.69861 0.275 0.15)
(4.65556 0.275 0.15)
(4.74167 0.366667 0.15)
(4.74167 0.4125 0.15)
(4.74167 0.458333 0.15)
(4.69861 0.458333 0.15)
(4.65556 0.458333 0.15)
(4.74167 0.55 0.15)
(4.74167 0.595833 0.15)
(4.74167 0.641667 0.15)
(4.69861 0.641667 0.15)
(4.65556 0.641667 0.15)
(4.74167 0.733333 0.15)
(4.74167 0.779167 0.15)
(4.74167 0.825 0.15)
(4.69861 0.825 0.15)
(4.65556 0.825 0.15)
(4.78472 0.9625 0.15)
(4.74167 1.00833 0.15)
(4.78472 1.00833 0.15)
(4.82778 1.00833 0.15)
(4.69861 1.00833 0.15)
(5 -1.375 0.15)
(5 -1.28333 0.15)
(5 -1.19167 0.15)
(5 -1.1 0.15)
(5 -1.00833 0.15)
(4.95694 -1.00833 0.15)
(4.95694 -0.9625 0.15)
(5 -0.9625 0.15)
(4.87083 -0.9625 0.15)
(4.91389 -0.916667 0.15)
(4.91389 -0.870833 0.15)
(4.91389 -0.825 0.15)
(4.87083 -0.825 0.15)
(4.82778 -0.825 0.15)
(4.91389 -0.733333 0.15)
(4.91389 -0.6875 0.15)
(4.91389 -0.641667 0.15)
(4.87083 -0.641667 0.15)
(4.82778 -0.641667 0.15)
(4.91389 -0.55 0.15)
(4.91389 -0.504167 0.15)
(4.91389 -0.458333 0.15)
(4.87083 -0.458333 0.15)
(4.82778 -0.458333 0.15)
(4.91389 -0.366667 0.15)
(4.91389 -0.320833 0.15)
(4.91389 -0.275 0.15)
(4.87083 -0.275 0.15)
(4.82778 -0.275 0.15)
(4.91389 -0.183333 0.15)
(4.91389 -0.1375 0.15)
(4.91389 -0.0916667 0.15)
(4.87083 -0.0916667 0.15)
(4.82778 -0.0916667 0.15)
(4.91389 -1.61908e-17 0.15)
(4.91389 0.0458333 0.15)
(4.91389 0.0916667 0.15)
(4.87083 0.0916667 0.15)
(4.82778 0.0916667 0.15)
(4.91389 0.183333 0.15)
(4.91389 0.229167 0.15)
(4.91389 0.275 0.15)
(4.87083 0.275 0.15)
(4.82778 0.275 0.15)
(4.91389 0.366667 0.15)
(4.91389 0.4125 0.15)
(4.91389 0.458333 0.15)
(4.87083 0.458333 0.15)
(4.82778 0.458333 0.15)
(4.91389 0.55 0.15)
(4.91389 0.595833 0.15)
(4.91389 0.641667 0.15)
(4.87083 0.641667 0.15)
(4.82778 0.641667 0.15)
(4.91389 0.733333 0.15)
(4.91389 0.779167 0.15)
(4.91389 0.825 0.15)
(4.87083 0.825 0.15)
(4.82778 0.825 0.15)
(5 0.9625 0.15)
(4.95694 0.9625 0.15)
(5 1.1 0.15)
(4.91389 1.00833 0.15)
(4.95694 1.00833 0.15)
(5 1.00833 0.15)
(4.87083 1.00833 0.15)
(5 1.19167 0.15)
(5 1.28333 0.15)
(5 1.375 0.15)
(0.8516508026 -0.04173133391 0.15)
(0.8408864876 -0.04153802396 0.15)
(0.8406599998 -0.05283375892 0.15)
(0.8285211449 0.3136163674 0.15)
(0.8281216437 0.2909517573 0.15)
(0.8277371392 0.2682868319 0.15)
(0.8492193786 0.2675491096 0.15)
(0.8706636173 0.2667641756 0.15)
(1.024428971 -0.03873449032 0.15)
(1.013671349 -0.03850831379 0.15)
(1.013430479 -0.04996478195 0.15)
(1.018268833 0.1126072851 0.15)
(1.016561547 0.0989580067 0.15)
(1.027319194 0.0987330299 0.15)
(1.038086832 0.09850744298 0.15)
(0.8738712828 0.1203785866 0.15)
(0.8920855034 0.2659627078 0.15)
(0.9134984875 0.2651184177 0.15)
(0.9139024502 0.2878049388 0.15)
(-0.02187944481 -0.001281682443 0.15)
(-0.04399307137 -0.0005176824637 0.15)
(-0.04417233025 -0.02342997683 0.15)
(-0.04437958347 -0.04632267842 0.15)
(-0.1752713643 0.1002149601 0.15)
(-0.1538641175 0.0994308039 0.15)
(-0.1324293001 0.09857835303 0.15)
(-0.1320818694 0.1221440568 0.15)
(0.1602718105 0.376570961 0.15)
(0.1384929297 0.3769958497 0.15)
(0.1379964316 0.3542372577 0.15)
(0.3020166086 -0.0767336886 0.15)
(0.3015444415 -0.09947678861 0.15)
(0.3230633587 -0.09989721181 0.15)
(0.3445663214 -0.1003152991 0.15)
(0.1722707306 -0.09691487311 0.15)
(0.1938523816 -0.09734861793 0.15)
(0.2154111008 -0.09777887995 0.15)
(0.2158824994 -0.07502476135 0.15)
(0.3337070668 0.3727144783 0.15)
(0.3120430108 0.3732249723 0.15)
(0.31157118 0.3504978687 0.15)
(0.4741571798 -0.08008584542 0.15)
(0.4736884324 -0.1028090129 0.15)
(0.4952165789 -0.1032186277 0.15)
(0.5167357693 -0.1036260538 0.15)
(0.3660682844 -0.1007333654 0.15)
(0.3875822448 -0.101151684 0.15)
(0.3880522231 -0.07841753994 0.15)
(0.5064872379 0.3684326716 0.15)
(0.4849419967 0.3689806764 0.15)
(0.484499706 0.3462789575 0.15)
(0.6463201849 -0.08332244828 0.15)
(0.6458538155 -0.1060276618 0.15)
(0.6673713007 -0.1064210489 0.15)
(0.6888848288 -0.1068123524 0.15)
(0.5382570014 -0.1040315224 0.15)
(0.5597822746 -0.1044350754 0.15)
(0.560249791 -0.0817228845 0.15)
(0.5947383082 0.02516978023 0.15)
(0.8184449528 -0.08642721826 0.15)
(0.8179823933 -0.1091415139 0.15)
(0.8395079187 -0.1095330696 0.15)
(0.8610303608 -0.1099285614 0.15)
(0.7104043766 -0.1072027822 0.15)
(0.731925966 -0.1075912545 0.15)
(0.7323913146 -0.0848870198 0.15)
(0.7668129452 0.0218690207 0.15)
(0.7720794237 0.01608003961 0.15)
(0.7774639486 0.01600083873 0.15)
(0.7022729074 0.02306892542 0.15)
(0.7623127129 0.2139117474 0.15)
(0.7621350847 0.2026563944 0.15)
(0.7728968239 0.202293001 0.15)
(0.7836458245 0.2019421781 0.15)
(0.9917465337 -0.08765030924 0.15)
(0.9912370293 -0.1104566384 0.15)
(1.012226194 -0.1072441234 0.15)
(1.033751437 -0.1076966867 0.15)
(0.8825417001 -0.1103288208 0.15)
(0.9040529344 -0.1107340792 0.15)
(0.9045179139 -0.08799983005 0.15)
(0.9484664947 -0.04352480804 0.15)
(0.9377115561 -0.04331369125 0.15)
(0.9269394951 -0.04310821579 0.15)
(0.9267149859 -0.05440499257 0.15)
(0.1681630175 0.2455281333 0.15)
(0.3256535158 0.02501094087 0.15)
(0.3254200414 0.01366834241 0.15)
(0.336173791 0.01344824863 0.15)
(0.2608455342 0.01498899836 0.15)
(0.2716022621 0.01476784174 0.15)
(0.2823660095 0.01454753776 0.15)
(0.2826003997 0.02588611608 0.15)
(0.3476213748 0.04737071407 0.15)
(0.3422610324 0.04750591901 0.15)
(0.3368906797 0.04764073428 0.15)
(0.3367669757 0.04185215558 0.15)
(0.2767980741 0.2428190124 0.15)
(0.2769265097 0.2488326414 0.15)
(0.2714911222 0.2489189129 0.15)
(0.2660531557 0.2490252432 0.15)
(0.3418821072 0.2419937556 0.15)
(0.1899267098 0.245189583 0.15)
(0.2606285648 0.2491492961 0.15)
(0.2552164126 0.2492940923 0.15)
(0.255091829 0.2432733808 0.15)
(0.3582305323 0.04136758189 0.15)
(0.3583509734 0.04709611591 0.15)
(0.3529806879 0.04723413047 0.15)
(0.525925883 0.2545108982 0.15)
(0.5151402758 0.2547856737 0.15)
(0.5043517113 0.2550625119 0.15)
(0.5041399679 0.2437544643 0.15)
(0.3635512186 0.2413431244 0.15)
(0.6807825069 0.02360877559 0.15)
(0.6162529018 0.024686434 0.15)
(0.782847906 0.01589464382 0.15)
(0.7882284856 0.01577051594 0.15)
(0.7883555483 0.0215761278 0.15)
(0.7976216728 -0.05206391785 0.15)
(0.7978491814 -0.04076720413 0.15)
(0.7870988213 -0.04057618802 0.15)
(0.7763365269 -0.04038192034 0.15)
(0.7943875135 0.2015766057 0.15)
(0.8051206598 0.2011853072 0.15)
(0.8052976266 0.2124567778 0.15)
(0.9697617973 -0.05524702793 0.15)
(0.9699863486 -0.0439482516 0.15)
(0.9592153715 -0.04373879804 0.15)
(0.1294993282 -0.07326858835 0.15)
(0.1290327184 -0.09603280984 0.15)
(0.1506581915 -0.09647547778 0.15)
(-0.001378394265 -0.09312791024 0.15)
(0.02058840356 -0.0936947803 0.15)
(0.04230533141 -0.09418338078 0.15)
(0.04276119594 -0.07140693071 0.15)
(0.06649830808 0.03049862799 0.15)
(0.06627258531 0.01912986082 0.15)
(0.07714998198 0.01888216186 0.15)
(0.08801932248 0.01863663272 0.15)
(0.02248940085 0.03166495838 0.15)
(0.2395376641 0.02677949752 0.15)
(0.2393041266 0.01543389973 0.15)
(0.2500788085 0.01521036519 0.15)
(0.1746241052 0.01677877895 0.15)
(0.1854097427 0.01655301363 0.15)
(0.1961984005 0.01632818503 0.15)
(0.1964322112 0.02768677995 0.15)
(0.6569170521 0.341628696 0.15)
(0.9436248081 0.1503076916 0.15)
(0.932982097 0.1509090355 0.15)
(0.9328579421 0.1397707843 0.15)
(0.1532406723 0.02859087122 0.15)
(0.1530078613 0.01723225528 0.15)
(0.1638254497 0.01700381775 0.15)
(0.09886045843 0.01840069857 0.15)
(0.1097038518 0.01816271651 0.15)
(0.1099337475 0.02952539463 0.15)
(0.02628930249 0.2536171237 0.15)
(0.02672311408 0.265054532 0.15)
(0.01563865204 0.2651395475 0.15)
(0.004638153983 0.2652448026 0.15)
(0.6335484416 0.240323524 0.15)
(0.6229827651 0.251915177 0.15)
(0.6122096807 0.2522146947 0.15)
(0.6766200899 0.2390928807 0.15)
(0.5473162422 0.2426476491 0.15)
(0.5475218818 0.2539508239 0.15)
(0.5367184677 0.2542349758 0.15)
(0.6014384698 0.2525081718 0.15)
(0.5906403279 0.2528052157 0.15)
(0.5904358352 0.2415090183 0.15)
(-0.07827985668 0.119252793 0.15)
(-0.06757281382 0.1189662663 0.15)
(-0.06768828112 0.1318614426 0.15)
(-0.06753737847 0.1443480155 0.15)
(-0.01100244089 0.06734734498 0.15)
(-0.02219439623 0.06787671823 0.15)
(-0.02200750934 0.05624241928 0.15)
(-0.02166845595 0.0445621116 0.15)
(-0.06715670143 0.1574589244 0.15)
(-0.06663163295 0.1699827545 0.15)
(-0.07739945969 0.1699471877 0.15)
(0.01341367269 0.2018341297 0.15)
(0.7453029617 0.02195318182 0.15)
(0.03438588202 0.08262815305 0.15)
(0.03983530028 0.07675350761 0.15)
(0.01185732639 0.08339037449 0.15)
(0.3046156757 0.04831280736 0.15)
(0.299235475 0.04835981023 0.15)
(0.3152511112 0.04232262567 0.15)
(0.3153765927 0.04814817517 0.15)
(0.3099964096 0.04824358837 0.15)
(0.2985053332 0.2429837595 0.15)
(0.320200473 0.2426196445 0.15)
(0.2116666477 0.2449105452 0.15)
(0.2333848928 0.2443609035 0.15)
(0.4875294046 0.2214475917 0.15)
(0.4929218681 0.2213178128 0.15)
(0.4930400637 0.2270346914 0.15)
(0.6218621157 0.1896699803 0.15)
(0.6165948492 0.1955642012 0.15)
(0.6434187946 0.1891902502 0.15)
(0.815026084 0.1392083003 0.15)
(0.9432407107 0.08974608442 0.15)
(1.05527668 -0.10814925 0.15)
(1.076791925 -0.1086016031 0.15)
(1.077273644 -0.08568966651 0.15)
(1.046917651 0.006636819509 0.15)
(1.057675252 0.006409643195 0.15)
(1.057916101 0.01786511158 0.15)
(1.058156908 0.02931858041 0.15)
(0.9753154862 0.1371144346 0.15)
(-0.005632884458 0.1017191706 0.15)
(-0.01150334761 0.1022383832 0.15)
(-0.01117569715 0.09623356917 0.15)
(0.5732146535 0.02565031629 0.15)
(0.723790524 0.02249149487 0.15)
(1.058397725 0.04077254913 0.15)
(1.058638596 0.05222911727 0.15)
(1.047870799 0.05244710586 0.15)
(0.1464676413 0.2460712929 0.15)
(0.3851804688 0.2409373853 0.15)
(0.4068583627 0.2404666092 0.15)
(0.659267309 0.02387308612 0.15)
(0.6377315664 0.02420684384 0.15)
(0.6649987788 0.1886772229 0.15)
(0.9646182477 0.08883332426 0.15)
(1.001800757 0.07005579446 0.15)
(-0.0139419208 0.3796756413 0.15)
(-0.03649576255 0.3570897355 0.15)
(0.7196754382 0.2378005664 0.15)
(-0.006454598244 0.2652889834 0.15)
(-0.01784255322 0.2539118459 0.15)
(-0.900365 -0.825172 0.15)
(-0.943231 -0.77932 0.15)
(-0.900509 -0.641852 0.15)
(-0.943354 -0.595998 0.15)
(-0.900647 -0.458532 0.15)
(-0.943466 -0.412676 0.15)
(-0.9008610961 -0.2724714333 0.15)
(-0.9435739003 -0.2286647902 0.15)
(-0.9009175771 -0.08469835496 0.15)
(-0.9436110125 -0.04352301706 0.15)
(-0.9007466862 0.09865089975 0.15)
(-0.943550181 0.1390864332 0.15)
(-0.9006648802 0.2775572125 0.15)
(-0.9435135661 0.3206637321 0.15)
(-0.900648 0.458135 0.15)
(-0.943413 0.503996 0.15)
(-0.90051 0.641481 0.15)
(-0.943293 0.687341 0.15)
(-0.900365 0.824828 0.15)
(-0.943121 0.916525 0.15)
(-0.94317 0.870686 0.15)
(-0.729054 -0.82526 0.15)
(-0.771953 -0.779411 0.15)
(-0.729348684 -0.6413142616 0.15)
(-0.7722077876 -0.5956236135 0.15)
(-0.7304438654 -0.4438834588 0.15)
(-0.773044708 -0.4007303658 0.15)
(-0.7310633773 -0.2397219852 0.15)
(-0.7734231814 -0.2010930317 0.15)
(-0.7304952376 -0.04244266366 0.15)
(-0.7728799614 -0.008518765368 0.15)
(-0.7292902588 0.1409402708 0.15)
(-0.7719983297 0.1716404099 0.15)
(-0.7284641302 0.3104055965 0.15)
(-0.771616021 0.3411349183 0.15)
(-0.7286437844 0.4729171234 0.15)
(-0.7719604967 0.5087346436 0.15)
(-0.729238521 0.6420545911 0.15)
(-0.772062 0.687245 0.15)
(-0.729068 0.824984 0.15)
(-0.77178 0.916958 0.15)
(-0.771858 0.870764 0.15)
(-0.5576230817 -0.8255684214 0.15)
(-0.6006155912 -0.7793058586 0.15)
(-0.5594641101 -0.6253151918 0.15)
(-0.6023570071 -0.5784590526 0.15)
(-0.561658315 -0.40610991 0.15)
(-0.6040956452 -0.3621669915 0.15)
(-0.5619592288 -0.1885562292 0.15)
(-0.6040277429 -0.1494993666 0.15)
(-0.5602410113 0.01376350517 0.15)
(-0.6022764209 0.0478591363 0.15)
(-0.5576084437 0.1971587031 0.15)
(-0.5999877947 0.2265366289 0.15)
(-0.5554722338 0.3616349054 0.15)
(-0.598527545 0.3874621912 0.15)
(-0.5550986029 0.5108356702 0.15)
(-0.5988090975 0.5376110931 0.15)
(-0.5563909986 0.6595408372 0.15)
(-0.6001102695 0.6942548123 0.15)
(-0.5558099092 0.828227506 0.15)
(-0.598713 0.919474 0.15)
(-0.598763 0.873702 0.15)
(-0.3842395493 -0.8221155952 0.15)
(-0.4278128128 -0.7730683002 0.15)
(-0.388451712 -0.601613944 0.15)
(-0.4333100628 -0.5496745622 0.15)
(-0.3928946931 -0.3671268327 0.15)
(-0.4354241691 -0.318723429 0.15)
(-0.3925131532 -0.1465653134 0.15)
(-0.4344939599 -0.1029044969 0.15)
(-0.3897827639 0.05186018248 0.15)
(-0.4316085177 0.09272069882 0.15)
(-0.3861162792 0.2352294423 0.15)
(-0.4280751311 0.2722594965 0.15)
(-0.3825962762 0.4055221279 0.15)
(-0.425230813 0.4353150787 0.15)
(-0.3795799613 0.5554455004 0.15)
(-0.4234461296 0.5802576757 0.15)
(-0.3800478308 0.6917835322 0.15)
(-0.4243853333 0.7195963879 0.15)
(-0.3830364441 0.8366498445 0.15)
(-0.4268266726 0.9201105964 0.15)
(-0.4267082419 0.8757250977 0.15)
(-0.2133562759 -0.8122726989 0.15)
(-0.2572794379 -0.7585138928 0.15)
(-0.2179052074 -0.5786450992 0.15)
(-0.2612210665 -0.5240806693 0.15)
(-0.2198636611 -0.3442488986 0.15)
(-0.2633639523 -0.292442048 0.15)
(-0.2202619628 -0.1335338139 0.15)
(-0.2636346925 -0.08458965228 0.15)
(-0.1974640893 0.05450535457 0.15)
(-0.2188722365 0.05519910976 0.15)
(-0.2607553413 0.1022087845 0.15)
(-0.2180213425 0.1012838062 0.15)
(-0.217560626 0.1241958842 0.15)
(-0.2170868609 0.1471101364 0.15)
(-0.218461894 0.07833179541 0.15)
(-0.1970792139 0.07775880222 0.15)
(-0.1935133986 0.2405089075 0.15)
(-0.1941196435 0.2172402097 0.15)
(-0.2161162924 0.1934635286 0.15)
(-0.2155209191 0.2174996245 0.15)
(-0.2149354644 0.2407309511 0.15)
(-0.2166035357 0.1700985081 0.15)
(-0.2566338727 0.2873436557 0.15)
(-0.208232312 0.4260914517 0.15)
(-0.2505464543 0.4652563497 0.15)
(-0.2045629215 0.5848568915 0.15)
(-0.2479111533 0.6140138597 0.15)
(-0.2055453052 0.7170308737 0.15)
(-0.2500472434 0.7438354573 0.15)
(-0.2086172388 0.8494805003 0.15)
(-0.2534808069 0.9242775497 0.15)
(-0.2530198506 0.8838847547 0.15)
(-0.04175346439 -0.8040568897 0.15)
(-0.08621386854 -0.7478141704 0.15)
(-0.04635083592 -0.5667157609 0.15)
(-0.0903256579 -0.509014876 0.15)
(-0.0482037519 -0.3350235678 0.15)
(-0.09116982187 -0.2822937287 0.15)
(-0.04586497921 -0.1376336301 0.15)
(-0.08808840375 -0.06804771367 0.15)
(-0.06634782053 -0.06863383293 0.15)
(-0.04513487626 -0.09196588681 0.15)
(-0.06671532403 -0.09147015359 0.15)
(-0.08839375173 -0.09091534776 0.15)
(-0.0234363643 -0.09249310871 0.15)
(-0.1328426229 0.05132690105 0.15)
(-0.1330939622 0.02809755178 0.15)
(-0.1105369002 0.002506745317 0.15)
(-0.08824079507 0.001249800701 0.15)
(-0.1089167191 0.1936009106 0.15)
(-0.1288605874 0.240724245 0.15)
(-0.1297412545 0.2169626066 0.15)
(-0.03024147571 0.5964128421 0.15)
(-0.07347542341 0.6306028634 0.15)
(-0.03083852968 0.7329436177 0.15)
(-0.07504164374 0.7614190723 0.15)
(-0.03506635565 0.8606375703 0.15)
(-0.08046292461 0.9309968187 0.15)
(-0.07949170885 0.8936953716 0.15)
(0.1306664993 -0.801354233 0.15)
(0.08624227105 -0.7432749425 0.15)
(0.1260801903 -0.5635585028 0.15)
(0.0822489706 -0.5039933301 0.15)
(0.1250933713 -0.3346393484 0.15)
(0.0823845645 -0.2821344482 0.15)
(0.09505669872 0.3778600756 0.15)
(0.07330476535 0.378258392 0.15)
(0.05220601492 0.4014700189 0.15)
(0.143274215 0.5980585348 0.15)
(0.1003237883 0.6358991892 0.15)
(0.1429576441 0.7387872038 0.15)
(0.0987892013 0.7695910472 0.15)
(0.1386654011 0.8660675308 0.15)
(0.09304770195 0.9354753182 0.15)
(0.09419420225 0.8994399339 0.15)
(0.3028303814 -0.7998058363 0.15)
(0.2585331212 -0.741883189 0.15)
(0.2982657397 -0.5629667564 0.15)
(0.254603937 -0.5038872531 0.15)
(0.2974421967 -0.3364140446 0.15)
(0.2549204029 -0.2844638526 0.15)
(0.268693378 0.3742214071 0.15)
(0.2470207983 0.3747070747 0.15)
(0.2258181129 0.3979228873 0.15)
(0.3163441327 0.5950220221 0.15)
(0.2734541068 0.6347780962 0.15)
(0.3160525103 0.7375653686 0.15)
(0.272016826 0.7704948467 0.15)
(0.3117113428 0.8660775184 0.15)
(0.2659832589 0.9364416764 0.15)
(0.2671908411 0.9006136378 0.15)
(0.4747541139 -0.7984516032 0.15)
(0.4304548114 -0.7406853689 0.15)
(0.4702028494 -0.5626595365 0.15)
(0.4265766296 -0.5041287252 0.15)
(0.4695136336 -0.3383475497 0.15)
(0.4270274482 -0.2869951718 0.15)
(0.3677039388 -0.02122417976 0.15)
(0.4417945479 0.3700788837 0.15)
(0.4202108736 0.3706066919 0.15)
(0.399019216 0.3938712834 0.15)
(0.4889096334 0.5891083539 0.15)
(0.446147992 0.6291088228 0.15)
(0.4882919194 0.7308071548 0.15)
(0.4443942288 0.7652859497 0.15)
(0.4838604096 0.8612149014 0.15)
(0.438412945 0.9342124775 0.15)
(0.439585141 0.8977330238 0.15)
(0.6466206038 -0.7967527026 0.15)
(0.6023819621 -0.7393998172 0.15)
(0.6421121846 -0.5621417394 0.15)
(0.5985714296 -0.5043321034 0.15)
(0.641598681 -0.3403158853 0.15)
(0.5991797964 -0.2895414303 0.15)
(0.5398872811 -0.02463524866 0.15)
(0.6142939362 0.365524919 0.15)
(0.5927397482 0.3661231229 0.15)
(0.6609312268 0.5806821696 0.15)
(0.6181583556 0.6201536413 0.15)
(0.6598870687 0.7204619228 0.15)
(0.6160549108 0.7549332744 0.15)
(0.6554259165 0.8537321937 0.15)
(0.6103005068 0.9298163282 0.15)
(0.6113769018 0.8920364859 0.15)
(0.8183923021 -0.7947868661 0.15)
(0.774185045 -0.7378102334 0.15)
(0.8139335841 -0.561350074 0.15)
(0.7704651392 -0.5043418412 0.15)
(0.8136337951 -0.3421943299 0.15)
(0.7712684736 -0.2921226984 0.15)
(0.7120163476 -0.02791614791 0.15)
(0.8325110346 0.5692919096 0.15)
(0.7897194196 0.6089228408 0.15)
(0.8310054864 0.7076002686 0.15)
(0.7872696592 0.743466803 0.15)
(0.8266751175 0.8452378407 0.15)
(0.7820064716 0.9246983773 0.15)
(0.7827655812 0.8843411619 0.15)
(0.9909669312 -0.7906737319 0.15)
(0.9459350322 -0.7351481127 0.15)
(0.9866105833 -0.5584564296 0.15)
(0.9423957049 -0.50376102 0.15)
(0.9866259294 -0.342360049 0.15)
(0.9434911049 -0.2949248932 0.15)
(0.9054382587 -0.04270316764 0.15)
(0.8946860041 -0.04250711059 0.15)
(0.8841397163 -0.03103989267 0.15)
(0.9116576144 0.152014123 0.15)
(0.9009719575 0.1525233493 0.15)
(0.8904149064 0.164192238 0.15)
(1.001613839 0.3971060226 0.15)
(0.9596400954 0.442469509 0.15)
(1.003561777 0.5547023784 0.15)
(0.9607646516 0.5940575502 0.15)
(1.001648797 0.6923039975 0.15)
(0.9580842273 0.7305241525 0.15)
(0.9977109744 0.8367804574 0.15)
(0.9535417277 0.920265919 0.15)
(0.9541459489 0.8785707166 0.15)
(1.163237004 -0.7923571576 0.15)
(1.118571578 -0.7328260698 0.15)
(1.158944963 -0.5630288559 0.15)
(1.115083422 -0.5032450373 0.15)
(1.158621317 -0.3459022791 0.15)
(1.116083846 -0.2940375866 0.15)
(1.056962683 -0.02795797195 0.15)
(1.057203532 -0.01650250356 0.15)
(1.104097709 0.1658853731 0.15)
(1.083054178 0.189249573 0.15)
(1.173234979 0.3878562465 0.15)
(1.130909026 0.4308811112 0.15)
(1.174350938 0.5381454969 0.15)
(1.131328347 0.5773810615 0.15)
(1.172001381 0.6768802851 0.15)
(1.12853516 0.7162229381 0.15)
(1.168780599 0.8293803212 0.15)
(1.125221604 0.9173490278 0.15)
(1.125446381 0.8729591452 0.15)
(1.337257347 -0.8051531044 0.15)
(1.292519171 -0.7462918777 0.15)
(1.333306388 -0.5832975982 0.15)
(1.288980793 -0.5212400434 0.15)
(1.332172003 -0.3647447137 0.15)
(1.289013836 -0.3069985464 0.15)
(1.334337692 -0.1639277458 0.15)
(1.292041416 -0.1134917787 0.15)
(1.337982019 0.02267614774 0.15)
(1.295878057 0.07016637754 0.15)
(1.341775372 0.202903348 0.15)
(1.299674992 0.2505805659 0.15)
(1.344734736 0.3692666844 0.15)
(1.302379429 0.4141356536 0.15)
(1.345121464 0.5178131517 0.15)
(1.302119705 0.5590958733 0.15)
(1.342683024 0.6624579426 0.15)
(1.299197865 0.703569618 0.15)
(1.340338912 0.8253942784 0.15)
(1.29722 0.916667 0.15)
(1.29722 0.870833 0.15)
(1.51153844 -0.8188769555 0.15)
(1.467206757 -0.7640130274 0.15)
(1.508645924 -0.6103324193 0.15)
(1.464136228 -0.5491926531 0.15)
(1.507053431 -0.3971954033 0.15)
(1.463297402 -0.3357834346 0.15)
(1.507998242 -0.1931461812 0.15)
(1.465104022 -0.1352442298 0.15)
(1.510670813 -0.002862568422 0.15)
(1.468277201 0.0514122853 0.15)
(1.513661047 0.1738754956 0.15)
(1.471415491 0.225115116 0.15)
(1.515541779 0.3368640085 0.15)
(1.473092449 0.384495693 0.15)
(1.515218229 0.4905318578 0.15)
(1.472294226 0.5350650174 0.15)
(1.51329277 0.6482977773 0.15)
(1.470075659 0.6924969169 0.15)
(1.5125 0.825 0.15)
(1.46944 0.916667 0.15)
(1.46944 0.870833 0.15)
(1.68472 -0.825 0.15)
(1.6413687 -0.7771850467 0.15)
(1.683702691 -0.633634743 0.15)
(1.639591085 -0.5780603171 0.15)
(1.682403574 -0.4329832541 0.15)
(1.6384905 -0.373761044 0.15)
(1.682443987 -0.2344037072 0.15)
(1.639145071 -0.1754872695 0.15)
(1.683766534 -0.04515398588 0.15)
(1.641003054 0.01119456889 0.15)
(1.685349602 0.1325767721 0.15)
(1.642818069 0.1853669222 0.15)
(1.686052978 0.3008612107 0.15)
(1.643409527 0.3498627891 0.15)
(1.685462564 0.4667947557 0.15)
(1.642520784 0.5130399744 0.15)
(1.684720127 0.6416680236 0.15)
(1.64167 0.6875 0.15)
(1.68472 0.825 0.15)
(1.64167 0.916667 0.15)
(1.64167 0.870833 0.15)
(1.85694 -0.825 0.15)
(1.81389 -0.779167 0.15)
(1.85694 -0.641667 0.15)
(1.813763487 -0.5947837864 0.15)
(1.856696781 -0.4557439667 0.15)
(1.813181187 -0.4040761905 0.15)
(1.856469097 -0.2667598282 0.15)
(1.81313068 -0.2132548978 0.15)
(1.856718303 -0.08072341578 0.15)
(1.813692092 -0.02803765286 0.15)
(1.857080843 0.1000482933 0.15)
(1.814219651 0.1503291308 0.15)
(1.857088109 0.2777443867 0.15)
(1.814168484 0.3252802559 0.15)
(1.85694 0.458333 0.15)
(1.81389 0.504167 0.15)
(1.85694 0.641667 0.15)
(1.81389 0.6875 0.15)
(1.85694 0.825 0.15)
(1.81389 0.916667 0.15)
(1.81389 0.870833 0.15)
(2.02917 -0.825 0.15)
(1.98611 -0.779167 0.15)
(2.02917 -0.641667 0.15)
(1.98611 -0.595833 0.15)
(2.02917 -0.458333 0.15)
(1.98611 -0.4125 0.15)
(2.02917 -0.275 0.15)
(1.986108425 -0.2291347939 0.15)
(2.02917 -0.0916667 0.15)
(1.986108395 -0.04568666518 0.15)
(2.02917 0.0916667 0.15)
(1.98611 0.1375 0.15)
(2.02917 0.275 0.15)
(1.98611 0.320833 0.15)
(2.02917 0.458333 0.15)
(1.98611 0.504167 0.15)
(2.02917 0.641667 0.15)
(1.98611 0.6875 0.15)
(2.02917 0.825 0.15)
(1.98611 0.916667 0.15)
(1.98611 0.870833 0.15)
(2.20139 -0.825 0.15)
(2.15833 -0.779167 0.15)
(2.20139 -0.641667 0.15)
(2.15833 -0.595833 0.15)
(2.20139 -0.458333 0.15)
(2.15833 -0.4125 0.15)
(2.20139 -0.275 0.15)
(2.15833 -0.229167 0.15)
(2.20139 -0.0916667 0.15)
(2.15833 -0.0458333 0.15)
(2.20139 0.0916667 0.15)
(2.15833 0.1375 0.15)
(2.20139 0.275 0.15)
(2.15833 0.320833 0.15)
(2.20139 0.458333 0.15)
(2.15833 0.504167 0.15)
(2.20139 0.641667 0.15)
(2.15833 0.6875 0.15)
(2.20139 0.825 0.15)
(2.15833 0.916667 0.15)
(2.15833 0.870833 0.15)
(2.37361 -0.825 0.15)
(2.33056 -0.779167 0.15)
(2.37361 -0.641667 0.15)
(2.33056 -0.595833 0.15)
(2.37361 -0.458333 0.15)
(2.33056 -0.4125 0.15)
(2.37361 -0.275 0.15)
(2.33056 -0.229167 0.15)
(2.37361 -0.0916667 0.15)
(2.33056 -0.0458333 0.15)
(2.37361 0.0916667 0.15)
(2.33056 0.1375 0.15)
(2.37361 0.275 0.15)
(2.33056 0.320833 0.15)
(2.37361 0.458333 0.15)
(2.33056 0.504167 0.15)
(2.37361 0.641667 0.15)
(2.33056 0.6875 0.15)
(2.37361 0.825 0.15)
(2.33056 0.916667 0.15)
(2.33056 0.870833 0.15)
(2.54583 -0.825 0.15)
(2.50278 -0.779167 0.15)
(2.54583 -0.641667 0.15)
(2.50278 -0.595833 0.15)
(2.54583 -0.458333 0.15)
(2.50278 -0.4125 0.15)
(2.54583 -0.275 0.15)
(2.50278 -0.229167 0.15)
(2.54583 -0.0916667 0.15)
(2.50278 -0.0458333 0.15)
(2.54583 0.0916667 0.15)
(2.50278 0.1375 0.15)
(2.54583 0.275 0.15)
(2.50278 0.320833 0.15)
(2.54583 0.458333 0.15)
(2.50278 0.504167 0.15)
(2.54583 0.641667 0.15)
(2.50278 0.6875 0.15)
(2.54583 0.825 0.15)
(2.50278 0.916667 0.15)
(2.50278 0.870833 0.15)
(2.71806 -0.825 0.15)
(2.675 -0.779167 0.15)
(2.71806 -0.641667 0.15)
(2.675 -0.595833 0.15)
(2.71806 -0.458333 0.15)
(2.675 -0.4125 0.15)
(2.71806 -0.275 0.15)
(2.675 -0.229167 0.15)
(2.71806 -0.0916667 0.15)
(2.675 -0.0458333 0.15)
(2.71806 0.0916667 0.15)
(2.675 0.1375 0.15)
(2.71806 0.275 0.15)
(2.675 0.320833 0.15)
(2.71806 0.458333 0.15)
(2.675 0.504167 0.15)
(2.71806 0.641667 0.15)
(2.675 0.6875 0.15)
(2.71806 0.825 0.15)
(2.675 0.916667 0.15)
(2.675 0.870833 0.15)
(2.89028 -0.825 0.15)
(2.84722 -0.779167 0.15)
(2.89028 -0.641667 0.15)
(2.84722 -0.595833 0.15)
(2.89028 -0.458333 0.15)
(2.84722 -0.4125 0.15)
(2.89028 -0.275 0.15)
(2.84722 -0.229167 0.15)
(2.89028 -0.0916667 0.15)
(2.84722 -0.0458333 0.15)
(2.89028 0.0916667 0.15)
(2.84722 0.1375 0.15)
(2.89028 0.275 0.15)
(2.84722 0.320833 0.15)
(2.89028 0.458333 0.15)
(2.84722 0.504167 0.15)
(2.89028 0.641667 0.15)
(2.84722 0.6875 0.15)
(2.89028 0.825 0.15)
(2.84722 0.916667 0.15)
(2.84722 0.870833 0.15)
(3.0625 -0.825 0.15)
(3.01944 -0.779167 0.15)
(3.0625 -0.641667 0.15)
(3.01944 -0.595833 0.15)
(3.0625 -0.458333 0.15)
(3.01944 -0.4125 0.15)
(3.0625 -0.275 0.15)
(3.01944 -0.229167 0.15)
(3.0625 -0.0916667 0.15)
(3.01944 -0.0458333 0.15)
(3.0625 0.0916667 0.15)
(3.01944 0.1375 0.15)
(3.0625 0.275 0.15)
(3.01944 0.320833 0.15)
(3.0625 0.458333 0.15)
(3.01944 0.504167 0.15)
(3.0625 0.641667 0.15)
(3.01944 0.6875 0.15)
(3.0625 0.825 0.15)
(3.01944 0.916667 0.15)
(3.01944 0.870833 0.15)
(3.23472 -0.825 0.15)
(3.19167 -0.779167 0.15)
(3.23472 -0.641667 0.15)
(3.19167 -0.595833 0.15)
(3.23472 -0.458333 0.15)
(3.19167 -0.4125 0.15)
(3.23472 -0.275 0.15)
(3.19167 -0.229167 0.15)
(3.23472 -0.0916667 0.15)
(3.19167 -0.0458333 0.15)
(3.23472 0.0916667 0.15)
(3.19167 0.1375 0.15)
(3.23472 0.275 0.15)
(3.19167 0.320833 0.15)
(3.23472 0.458333 0.15)
(3.19167 0.504167 0.15)
(3.23472 0.641667 0.15)
(3.19167 0.6875 0.15)
(3.23472 0.825 0.15)
(3.19167 0.916667 0.15)
(3.19167 0.870833 0.15)
(3.40694 -0.825 0.15)
(3.36389 -0.779167 0.15)
(3.40694 -0.641667 0.15)
(3.36389 -0.595833 0.15)
(3.40694 -0.458333 0.15)
(3.36389 -0.4125 0.15)
(3.40694 -0.275 0.15)
(3.36389 -0.229167 0.15)
(3.40694 -0.0916667 0.15)
(3.36389 -0.0458333 0.15)
(3.40694 0.0916667 0.15)
(3.36389 0.1375 0.15)
(3.40694 0.275 0.15)
(3.36389 0.320833 0.15)
(3.40694 0.458333 0.15)
(3.36389 0.504167 0.15)
(3.40694 0.641667 0.15)
(3.36389 0.6875 0.15)
(3.40694 0.825 0.15)
(3.36389 0.916667 0.15)
(3.36389 0.870833 0.15)
(3.57917 -0.825 0.15)
(3.53611 -0.779167 0.15)
(3.57917 -0.641667 0.15)
(3.53611 -0.595833 0.15)
(3.57917 -0.458333 0.15)
(3.53611 -0.4125 0.15)
(3.57917 -0.275 0.15)
(3.53611 -0.229167 0.15)
(3.57917 -0.0916667 0.15)
(3.53611 -0.0458333 0.15)
(3.57917 0.0916667 0.15)
(3.53611 0.1375 0.15)
(3.57917 0.275 0.15)
(3.53611 0.320833 0.15)
(3.57917 0.458333 0.15)
(3.53611 0.504167 0.15)
(3.57917 0.641667 0.15)
(3.53611 0.6875 0.15)
(3.57917 0.825 0.15)
(3.53611 0.916667 0.15)
(3.53611 0.870833 0.15)
(3.75139 -0.825 0.15)
(3.70833 -0.779167 0.15)
(3.75139 -0.641667 0.15)
(3.70833 -0.595833 0.15)
(3.75139 -0.458333 0.15)
(3.70833 -0.4125 0.15)
(3.75139 -0.275 0.15)
(3.70833 -0.229167 0.15)
(3.75139 -0.0916667 0.15)
(3.70833 -0.0458333 0.15)
(3.75139 0.0916667 0.15)
(3.70833 0.1375 0.15)
(3.75139 0.275 0.15)
(3.70833 0.320833 0.15)
(3.75139 0.458333 0.15)
(3.70833 0.504167 0.15)
(3.75139 0.641667 0.15)
(3.70833 0.6875 0.15)
(3.75139 0.825 0.15)
(3.70833 0.916667 0.15)
(3.70833 0.870833 0.15)
(3.92361 -0.825 0.15)
(3.88056 -0.779167 0.15)
(3.92361 -0.641667 0.15)
(3.88056 -0.595833 0.15)
(3.92361 -0.458333 0.15)
(3.88056 -0.4125 0.15)
(3.92361 -0.275 0.15)
(3.88056 -0.229167 0.15)
(3.92361 -0.0916667 0.15)
(3.88056 -0.0458333 0.15)
(3.92361 0.0916667 0.15)
(3.88056 0.1375 0.15)
(3.92361 0.275 0.15)
(3.88056 0.320833 0.15)
(3.92361 0.458333 0.15)
(3.88056 0.504167 0.15)
(3.92361 0.641667 0.15)
(3.88056 0.6875 0.15)
(3.92361 0.825 0.15)
(3.88056 0.916667 0.15)
(3.88056 0.870833 0.15)
(4.09583 -0.825 0.15)
(4.05278 -0.779167 0.15)
(4.09583 -0.641667 0.15)
(4.05278 -0.595833 0.15)
(4.09583 -0.458333 0.15)
(4.05278 -0.4125 0.15)
(4.09583 -0.275 0.15)
(4.05278 -0.229167 0.15)
(4.09583 -0.0916667 0.15)
(4.05278 -0.0458333 0.15)
(4.09583 0.0916667 0.15)
(4.05278 0.1375 0.15)
(4.09583 0.275 0.15)
(4.05278 0.320833 0.15)
(4.09583 0.458333 0.15)
(4.05278 0.504167 0.15)
(4.09583 0.641667 0.15)
(4.05278 0.6875 0.15)
(4.09583 0.825 0.15)
(4.05278 0.916667 0.15)
(4.05278 0.870833 0.15)
(4.26806 -0.825 0.15)
(4.225 -0.779167 0.15)
(4.26806 -0.641667 0.15)
(4.225 -0.595833 0.15)
(4.26806 -0.458333 0.15)
(4.225 -0.4125 0.15)
(4.26806 -0.275 0.15)
(4.225 -0.229167 0.15)
(4.26806 -0.0916667 0.15)
(4.225 -0.0458333 0.15)
(4.26806 0.0916667 0.15)
(4.225 0.1375 0.15)
(4.26806 0.275 0.15)
(4.225 0.320833 0.15)
(4.26806 0.458333 0.15)
(4.225 0.504167 0.15)
(4.26806 0.641667 0.15)
(4.225 0.6875 0.15)
(4.26806 0.825 0.15)
(4.225 0.916667 0.15)
(4.225 0.870833 0.15)
(4.44028 -0.825 0.15)
(4.39722 -0.779167 0.15)
(4.44028 -0.641667 0.15)
(4.39722 -0.595833 0.15)
(4.44028 -0.458333 0.15)
(4.39722 -0.4125 0.15)
(4.44028 -0.275 0.15)
(4.39722 -0.229167 0.15)
(4.44028 -0.0916667 0.15)
(4.39722 -0.0458333 0.15)
(4.44028 0.0916667 0.15)
(4.39722 0.1375 0.15)
(4.44028 0.275 0.15)
(4.39722 0.320833 0.15)
(4.44028 0.458333 0.15)
(4.39722 0.504167 0.15)
(4.44028 0.641667 0.15)
(4.39722 0.6875 0.15)
(4.44028 0.825 0.15)
(4.39722 0.916667 0.15)
(4.39722 0.870833 0.15)
(4.6125 -0.825 0.15)
(4.56944 -0.779167 0.15)
(4.6125 -0.641667 0.15)
(4.56944 -0.595833 0.15)
(4.6125 -0.458333 0.15)
(4.56944 -0.4125 0.15)
(4.6125 -0.275 0.15)
(4.56944 -0.229167 0.15)
(4.6125 -0.0916667 0.15)
(4.56944 -0.0458333 0.15)
(4.6125 0.0916667 0.15)
(4.56944 0.1375 0.15)
(4.6125 0.275 0.15)
(4.56944 0.320833 0.15)
(4.6125 0.458333 0.15)
(4.56944 0.504167 0.15)
(4.6125 0.641667 0.15)
(4.56944 0.6875 0.15)
(4.6125 0.825 0.15)
(4.56944 0.916667 0.15)
(4.56944 0.870833 0.15)
(4.78472 -0.825 0.15)
(4.74167 -0.779167 0.15)
(4.78472 -0.641667 0.15)
(4.74167 -0.595833 0.15)
(4.78472 -0.458333 0.15)
(4.74167 -0.4125 0.15)
(4.78472 -0.275 0.15)
(4.74167 -0.229167 0.15)
(4.78472 -0.0916667 0.15)
(4.74167 -0.0458333 0.15)
(4.78472 0.0916667 0.15)
(4.74167 0.1375 0.15)
(4.78472 0.275 0.15)
(4.74167 0.320833 0.15)
(4.78472 0.458333 0.15)
(4.74167 0.504167 0.15)
(4.78472 0.641667 0.15)
(4.74167 0.6875 0.15)
(4.78472 0.825 0.15)
(4.74167 0.916667 0.15)
(4.74167 0.870833 0.15)
(5 -0.825 0.15)
(4.95694 -0.825 0.15)
(4.91389 -0.779167 0.15)
(5 -0.641667 0.15)
(4.95694 -0.641667 0.15)
(4.91389 -0.595833 0.15)
(5 -0.458333 0.15)
(4.95694 -0.458333 0.15)
(4.91389 -0.4125 0.15)
(5 -0.275 0.15)
(4.95694 -0.275 0.15)
(4.91389 -0.229167 0.15)
(5 -0.0916667 0.15)
(4.95694 -0.0916667 0.15)
(4.91389 -0.0458333 0.15)
(5 0.0916667 0.15)
(4.95694 0.0916667 0.15)
(4.91389 0.1375 0.15)
(5 0.275 0.15)
(4.95694 0.275 0.15)
(4.91389 0.320833 0.15)
(5 0.458333 0.15)
(4.95694 0.458333 0.15)
(4.91389 0.504167 0.15)
(5 0.641667 0.15)
(4.95694 0.641667 0.15)
(4.91389 0.6875 0.15)
(5 0.825 0.15)
(4.95694 0.825 0.15)
(4.91389 0.916667 0.15)
(4.91389 0.870833 0.15)
(0.1584583242 0.2969764946 0.15)
(0.3320821669 0.2932410745 0.15)
(0.2019114571 0.2960979102 0.15)
(0.4968554874 -0.02379252882 0.15)
(0.5047685148 0.2776937509 0.15)
(0.5049815943 0.289017774 0.15)
(0.3753843056 0.2922216329 0.15)
(0.6689907747 -0.02711056703 0.15)
(0.8411115342 -0.03026326334 0.15)
(0.8193528378 -0.04115229875 0.15)
(0.8301191733 -0.04134465095 0.15)
(0.8062547737 0.2690185556 0.15)
(0.8273341552 0.2455992899 0.15)
(1.013912239 -0.02705084584 0.15)
(0.9927470027 -0.04215828789 0.15)
(1.002913726 -0.03828213725 0.15)
(1.007463139 0.10245953 0.15)
(1.016320536 0.08749484001 0.15)
(0.8791734497 0.1146219825 0.15)
(0.9985041848 0.2384256897 0.15)
(0.9776486236 0.2623573638 0.15)
(0.9562928765 0.2633074742 0.15)
(0.9130908948 0.2424019662 0.15)
(0.934913525 0.2642290744 0.15)
(-0.04423884625 0.03416714727 0.15)
(-0.03311230342 0.03368115858 0.15)
(-0.02162688464 0.0215680573 0.15)
(-0.03291401866 0.02207042525 0.15)
(-0.04415808376 0.02258989167 0.15)
(-0.01071885827 0.02125770066 0.15)
(-0.06622423363 0.0003838185104 0.15)
(-0.1325837966 0.07462690856 0.15)
(-0.1108634872 0.09729615367 0.15)
(-0.1279055983 0.2643576927 0.15)
(-0.1268471221 0.2879656596 0.15)
(-0.1487384733 0.28765575 0.15)
(-0.104712575 0.2883774796 0.15)
(-0.1256052448 0.311590775 0.15)
(0.1389983418 0.3997502534 0.15)
(0.1168095534 0.3774437359 0.15)
(0.2584877164 -0.09863054393 0.15)
(0.2800145477 -0.09905513441 0.15)
(0.3010720011 -0.1222328858 0.15)
(0.2369488877 -0.09820570121 0.15)
(0.312512821 0.3959511181 0.15)
(0.2903767871 0.37372751 0.15)
(0.4306292664 -0.1019837216 0.15)
(0.4521643272 -0.1023974826 0.15)
(0.473218349 -0.1255481559 0.15)
(0.3871119931 -0.1238988251 0.15)
(0.4091022458 -0.1015681291 0.15)
(0.4107393532 -0.02208497971 0.15)
(0.4853873918 0.3916873311 0.15)
(0.4633778648 0.3695340794 0.15)
(0.6028299478 -0.1052361199 0.15)
(0.6243373721 -0.1056322961 0.15)
(0.6453858997 -0.1287588485 0.15)
(0.5593122962 -0.1271692195 0.15)
(0.5813085896 -0.10483665 0.15)
(0.5829382388 -0.02547036965 0.15)
(0.5360095957 0.2146198235 0.15)
(0.7749521906 -0.1083658423 0.15)
(0.7964688231 -0.1087522099 0.15)
(0.8170452375 -0.1546668734 0.15)
(0.8175150989 -0.1318907176 0.15)
(0.7314589659 -0.1303264614 0.15)
(0.7534336005 -0.107977433 0.15)
(0.7550422149 -0.02870773188 0.15)
(0.7655712122 -0.04018858937 0.15)
(0.7513858949 0.2029982192 0.15)
(0.7619637243 0.1914137124 0.15)
(0.9470926632 -0.1115799665 0.15)
(0.968765147 -0.1120226226 0.15)
(0.9902518566 -0.1561250202 0.15)
(0.9907431009 -0.1332832994 0.15)
(0.9031149168 -0.1563004297 0.15)
(0.9035851986 -0.1335042783 0.15)
(0.9255608961 -0.1111522716 0.15)
(0.9271614373 -0.03183839101 0.15)
(0.9161894504 -0.042902203 0.15)
(1.143294506 -0.01831254645 0.15)
(1.164819749 -0.01876510972 0.15)
(1.165301467 0.004146826832 0.15)
(1.165783171 0.02705806354 0.15)
(1.164338031 -0.04167704627 0.15)
(1.145221352 0.07333390005 0.15)
(1.166746595 0.07288133678 0.15)
(1.167228304 0.09579287342 0.15)
(1.166264883 0.04996970016 0.15)
(1.059130361 0.07514314311 0.15)
(1.059371226 0.08659941132 0.15)
(1.048844463 0.09828166636 0.15)
(0.099659732 0.05822429665 0.15)
(0.1646547804 0.05687739507 0.15)
(0.1149712527 0.2978107825 0.15)
(0.3039025234 0.0141077404 0.15)
(0.3146612929 0.01388854129 0.15)
(0.324951093 -0.009016812455 0.15)
(0.3251855882 0.002326764758 0.15)
(0.2821304935 0.003202981791 0.15)
(0.2931397547 0.01432702358 0.15)
(0.2724087986 0.05431842684 0.15)
(0.3370229615 0.05355185974 0.15)
(0.3261348914 0.04790658102 0.15)
(0.3315143094 0.04777477586 0.15)
(0.1862399108 0.05651399266 0.15)
(0.2508961948 0.05484884164 0.15)
(0.2887263463 0.2942286374 0.15)
(0.2889629041 0.305575172 0.15)
(0.2781166165 0.305818216 0.15)
(0.2672582684 0.3060585129 0.15)
(0.2997961526 0.3053304016 0.15)
(0.2823563609 0.248768491 0.15)
(0.277050267 0.25467133 0.15)
(0.2553382545 0.2551368221 0.15)
(0.2498017446 0.2494619463 0.15)
(0.2453357974 0.2951819228 0.15)
(0.2455774593 0.3065333511 0.15)
(0.2347249627 0.3067665234 0.15)
(0.2564178743 0.3062964319 0.15)
(0.4538048451 -0.02294241114 0.15)
(0.3637252411 0.04695721744 0.15)
(0.358475799 0.0528904723 0.15)
(0.5144011476 0.2151586548 0.15)
(0.4618470374 0.2901107092 0.15)
(0.5045605604 0.2663756214 0.15)
(0.4935690193 0.2553332252 0.15)
(0.4186479272 0.2911779957 0.15)
(0.625960413 -0.02629488327 0.15)
(0.7881106494 0.01007073352 0.15)
(0.7936028143 0.01563451683 0.15)
(0.808592522 -0.04095907288 0.15)
(0.79807427 -0.02949044395 0.15)
(0.84788179 0.1883729321 0.15)
(0.804953578 0.1899558382 0.15)
(0.8158632813 0.2008165145 0.15)
(1.020145836 0.01872523729 0.15)
(0.9809366263 -0.04390741877 0.15)
(0.9702082697 -0.03267942659 0.15)
(1.020450258 0.04129192435 0.15)
(0.08579801563 -0.09514081394 0.15)
(0.1074173481 -0.09558535321 0.15)
(0.06404584327 -0.09466347511 0.15)
(0.04440501072 0.01966063722 0.15)
(0.05533471738 0.01939383448 0.15)
(0.06604606272 0.007761110455 0.15)
(0.03343317079 0.01994532956 0.15)
(0.2177677178 0.01587869599 0.15)
(0.2285424208 0.01565616123 0.15)
(0.2390695052 0.00408432384 0.15)
(0.1959646318 0.004971589669 0.15)
(0.20697906 0.01610352459 0.15)
(0.635818278 0.3649343442 0.15)
(0.7292461521 0.1642329343 0.15)
(0.9331307328 0.1621174877 0.15)
(0.9223190825 0.1514485926 0.15)
(0.1313637707 0.01769331862 0.15)
(0.1422002708 0.0174604826 0.15)
(0.1527750293 0.005872639558 0.15)
(0.1094739141 0.00679803884 0.15)
(0.1205352899 0.01792698626 0.15)
(0.03770553154 0.2649256517 0.15)
(0.02707241361 0.2764637105 0.15)
(0.07142527478 0.2985882962 0.15)
(0.5690796997 0.2533825503 0.15)
(0.5582991545 0.2536602201 0.15)
(0.5477306258 0.2652589346 0.15)
(0.5908459884 0.2641093903 0.15)
(0.5798520996 0.2530980503 0.15)
(0.9006345178 0.1137811824 0.15)
(-0.06757378549 0.09505720408 0.15)
(-0.0675943452 0.107000275 0.15)
(-0.05684363917 0.1186096589 0.15)
(-0.0671151435 0.08249498778 0.15)
(-0.05559494093 0.06962908901 0.15)
(-0.04429297334 0.0688617507 0.15)
(-0.02220083296 0.07941160213 0.15)
(-0.03316904883 0.06829880005 0.15)
(-0.06550036306 0.1942604392 0.15)
(-0.06499011942 0.2060934282 0.15)
(-0.05300896553 0.2186293527 0.15)
(-0.05572171797 0.1703683119 0.15)
(-0.06597891225 0.1824125806 0.15)
(0.05850069659 0.2245962241 0.15)
(0.01922376241 0.2076811928 0.15)
(0.5575855197 0.2141039809 0.15)
(0.7507941866 0.1636750686 0.15)
(0.9384844366 -0.003984247564 0.15)
(0.1213447455 0.05771156169 0.15)
(0.1430183788 0.05718086197 0.15)
(0.2939716763 0.05413353162 0.15)
(0.3207563618 0.04803306633 0.15)
(0.31551248 0.05413564172 0.15)
(0.2078029358 0.0559555118 0.15)
(0.2293669837 0.05539810968 0.15)
(0.4927932325 0.2155325385 0.15)
(0.4983083666 0.2211897596 0.15)
(0.9599721203 -0.004463027127 0.15)
(0.981536662 -0.004616350347 0.15)
(0.9379246398 0.09550740184 0.15)
(1.076310228 -0.1315125398 0.15)
(1.098317168 -0.1090541663 0.15)
(1.057444402 -0.005046035393 0.15)
(1.068442873 0.006183256458 0.15)
(-0.02995807621 0.1295193315 0.15)
(-0.01200598124 0.1084266159 0.15)
(-0.01742675075 0.1028761348 0.15)
(-0.02952061061 0.1575053194 0.15)
(1.069406269 0.05200522998 0.15)
(1.058879485 0.06368648524 0.15)
(1.005708321 0.06038412006 0.15)
(-0.94311 0.962359 0.15)
(-0.771676 0.963108 0.15)
(-0.598684 0.965251 0.15)
(-0.426783 0.965869 0.15)
(-0.2537789596 0.9671830865 0.15)
(-0.08119018506 0.9708296235 0.15)
(0.09210240901 0.9738732813 0.15)
(0.2649675795 0.97453185 0.15)
(0.437442973 0.9729277166 0.15)
(0.6094756738 0.9698723657 0.15)
(0.7814059243 0.9665964572 0.15)
(0.9532646283 0.9643487068 0.15)
(1.12524 0.963225 0.15)
(1.29722 0.9625 0.15)
(1.46944 0.9625 0.15)
(1.64167 0.9625 0.15)
(1.81389 0.9625 0.15)
(1.98611 0.9625 0.15)
(2.15833 0.9625 0.15)
(2.33056 0.9625 0.15)
(2.50278 0.9625 0.15)
(2.675 0.9625 0.15)
(2.84722 0.9625 0.15)
(3.01944 0.9625 0.15)
(3.19167 0.9625 0.15)
(3.36389 0.9625 0.15)
(3.53611 0.9625 0.15)
(3.70833 0.9625 0.15)
(3.88056 0.9625 0.15)
(4.05278 0.9625 0.15)
(4.225 0.9625 0.15)
(4.39722 0.9625 0.15)
(4.56944 0.9625 0.15)
(4.74167 0.9625 0.15)
(4.91389 0.9625 0.15)
(1.186334994 -0.01921746279 0.15)
(1.18826184 0.0724289837 0.15)
(0.2891985462 0.3169257266 0.15)
(0.2458181844 0.3178877998 0.15)
(0.8289355679 0.3363246736 0.15)
(-0.1966516601 0.1008062072 0.15)
(-0.1947443872 0.1932819484 0.15)
(-0.04472092967 -0.06915654836 0.15)
(0.5716158955 0.3894252974 0.15)
(0.902642236 -0.1791155348 0.15)
(0.3247165348 -0.02036338901 0.15)
(-0.02162602047 0.03305057616 0.15)
(0.2149385133 -0.1205419755 0.15)
(0.8165739349 -0.1774640035 0.15)
(0.989769358 -0.1789789276 0.15)
(0.1285659403 -0.1188050296 0.15)
(0.04184934076 -0.1169658295 0.15)
(-0.94311 -0.962641 0.15)
(-0.771746 -0.962725 0.15)
(-0.600176 -0.963422 0.15)
(-0.426342 -0.966051 0.15)
(-0.2542028982 -0.9665318351 0.15)
(-0.08219370331 -0.9650127398 0.15)
(0.09062592498 -0.963897731 0.15)
(0.2630410457 -0.9632527765 0.15)
(0.4351012083 -0.9623822614 0.15)
(0.6071681308 -0.9614279984 0.15)
(0.7792082409 -0.960749814 0.15)
(0.9510908964 -0.9584397105 0.15)
(1.123599495 -0.9542852171 0.15)
(1.296592305 -0.9589288065 0.15)
(1.469429251 -0.9624407344 0.15)
(1.64167 -0.9625 0.15)
(1.81389 -0.9625 0.15)
(1.98611 -0.9625 0.15)
(2.15833 -0.9625 0.15)
(2.33056 -0.9625 0.15)
(2.50278 -0.9625 0.15)
(2.675 -0.9625 0.15)
(2.84722 -0.9625 0.15)
(3.01944 -0.9625 0.15)
(3.19167 -0.9625 0.15)
(3.36389 -0.9625 0.15)
(3.53611 -0.9625 0.15)
(3.70833 -0.9625 0.15)
(3.88056 -0.9625 0.15)
(4.05278 -0.9625 0.15)
(4.225 -0.9625 0.15)
(4.39722 -0.9625 0.15)
(4.56944 -0.9625 0.15)
(4.74167 -0.9625 0.15)
(4.91389 -0.9625 0.15)
(0.9503021823 0.03327217366 0.15)
(0.9449764126 0.0338148419 0.15)
(0.9505898614 0.03615586375 0.15)
(0.9452630919 0.03669855301 0.15)
(0.950810536 0.03837401524 0.15)
(0.9454837686 0.03891680448 0.15)
(0.9556375155 0.03275621029 0.15)
(0.9559291874 0.03563951637 0.15)
(0.9561528593 0.03785750482 0.15)
(0.1385924096 0.09400313217 0.15)
(0.1332065585 0.09454256261 0.15)
(0.1388651131 0.09688813734 0.15)
(0.1335022232 0.09742548468 0.15)
(0.1390758088 0.09910739883 0.15)
(0.1337298858 0.09964298914 0.15)
(0.04290441985 0.1860507433 0.15)
(0.04727156108 0.1877337173 0.15)
(0.04395114845 0.1833484438 0.15)
(0.04826596393 0.1850117134 0.15)
(0.04475643213 0.1812697574 0.15)
(0.04903092012 0.1829178713 0.15)
(0.5608239971 0.1746066809 0.15)
(0.5653203671 0.1736255499 0.15)
(0.5602063434 0.1717752385 0.15)
(0.5647027154 0.1707942074 0.15)
(0.5597314566 0.1695972394 0.15)
(0.5642278287 0.1686162084 0.15)
(0.1278493445 0.09511199773 0.15)
(0.1281589788 0.0979933258 0.15)
(0.128397622 0.1002097992 0.15)
(0.7368830422 0.1298469684 0.15)
(0.7444369311 0.1276690512 0.15)
(0.7360813285 0.1270621842 0.15)
(0.7436232849 0.1248876019 0.15)
(0.7354641641 0.1249200448 0.15)
(0.7429971727 0.1227480401 0.15)
(0.9037606359 0.07598061905 0.15)
(0.9081432803 0.07444285556 0.15)
(0.9027959763 0.07324769248 0.15)
(0.9071677093 0.0717142593 0.15)
(0.9020546223 0.07114541134 0.15)
(0.9064164248 0.06961538766 0.15)
(0.9925624325 0.03079421045 0.15)
(0.9877524762 0.03022839132 0.15)
(0.9927527635 0.03266332265 0.15)
(0.9879990753 0.03268054957 0.15)
(0.9928990195 0.03410116601 0.15)
(0.988188766 0.034566779 0.15)
(0.05489471355 0.1903582575 0.15)
(0.05580336887 0.1876063495 0.15)
(0.05650232875 0.1854895895 0.15)
(0.002971637659 0.1626988758 0.15)
(0.009348838033 0.1684891056 0.15)
(0.005127957999 0.1607628219 0.15)
(0.01116010917 0.1662270326 0.15)
(0.006786657213 0.1592734267 0.15)
(0.01255343839 0.1644868602 0.15)
(0.6924997417 0.05627489535 0.15)
(0.6871422394 0.05668790196 0.15)
(0.6927275181 0.05916384576 0.15)
(0.687366023 0.05957723639 0.15)
(0.6929022722 0.06138626345 0.15)
(0.6875377799 0.06179981711 0.15)
(0.6764671398 0.05750897529 0.15)
(0.6713972166 0.05789893187 0.15)
(0.6766879262 0.06039847276 0.15)
(0.6716160076 0.06078867133 0.15)
(0.6768586854 0.06262117448 0.15)
(0.6717837675 0.06301143612 0.15)
(0.6978488989 0.05584556054 0.15)
(0.6980796704 0.05873424794 0.15)
(0.6982574197 0.06095640261 0.15)
(0.7139143539 0.05455657788 0.15)
(0.7085581962 0.05498595985 0.15)
(0.7141451276 0.05744536526 0.15)
(0.7087899675 0.05787462623 0.15)
(0.7143228768 0.05966751993 0.15)
(0.7089677146 0.06009668092 0.15)
(0.7615950811 0.05071227369 0.15)
(0.7566698828 0.05113519541 0.15)
(0.7618428279 0.05359960397 0.15)
(0.7569156321 0.05402266771 0.15)
(0.7620335553 0.05582058557 0.15)
(0.757105364 0.05624387029 0.15)
(0.7959947891 0.1120871482 0.15)
(0.8035272266 0.1096976874 0.15)
(0.7951304535 0.1093210054 0.15)
(0.802651967 0.1069352752 0.15)
(0.7944655801 0.107193211 0.15)
(0.8019781502 0.1048102694 0.15)
(0.9345860724 0.03481176841 0.15)
(0.9300976984 0.03526931568 0.15)
(0.9348697587 0.03769584251 0.15)
(0.9303923633 0.03815225876 0.15)
(0.9350874402 0.039914357 0.15)
(0.9306190303 0.0403699842 0.15)
(1.000796169 0.03274076638 0.15)
(1.000587795 0.03329606911 0.15)
(0.9716528227 0.03112770673 0.15)
(0.9663084285 0.03164085994 0.15)
(0.9719443706 0.03400511411 0.15)
(0.9666020789 0.0345231242 0.15)
(0.9721689476 0.03621858254 0.15)
(0.9668287332 0.03674024977 0.15)
(0.9681493461 0.05207417831 0.15)
(0.9724185241 0.05042027423 0.15)
(0.9670963767 0.04937501548 0.15)
(0.9713676047 0.04772346884 0.15)
(0.9662865529 0.04729867932 0.15)
(0.9705598204 0.04564899021 0.15)
(0.1734898997 0.2120699691 0.15)
(0.1788149606 0.2124926291 0.15)
(0.1737292471 0.2091819999 0.15)
(0.1790352702 0.2096030597 0.15)
(0.1739135882 0.2069603342 0.15)
(0.1792045851 0.2073803096 0.15)
(0.1841934547 0.2128877598 0.15)
(0.1843937287 0.2099967112 0.15)
(0.1845490173 0.2077728557 0.15)
(0.1949660593 0.2135644678 0.15)
(0.200366706 0.2138239029 0.15)
(0.1951232672 0.2106707239 0.15)
(0.2005028869 0.2109291007 0.15)
(0.1952445045 0.2084447837 0.15)
(0.2006071027 0.2087023181 0.15)
(0.346360585 0.2100000485 0.15)
(0.3517147837 0.2094774871 0.15)
(0.3460828869 0.2071153484 0.15)
(0.3514300997 0.206593534 0.15)
(0.3458701958 0.2048963289 0.15)
(0.3512104207 0.2043751616 0.15)
(0.3302387915 0.2114162435 0.15)
(0.3356055958 0.210969934 0.15)
(0.3300030253 0.2085278612 0.15)
(0.3353628416 0.2080821987 0.15)
(0.3298222809 0.2063059695 0.15)
(0.3351751072 0.2058608541 0.15)
(0.3570839538 0.2089534107 0.15)
(0.3567833008 0.2060710937 0.15)
(0.3565516454 0.2038539732 0.15)
(0.3677282411 0.207761003 0.15)
(0.3727982958 0.207187003 0.15)
(0.36740164 0.204881432 0.15)
(0.3724657107 0.204308258 0.15)
(0.3671510246 0.2026664106 0.15)
(0.3722101048 0.2020937415 0.15)
(0.1595689524 0.09214339173 0.15)
(0.1546219649 0.09257657373 0.15)
(0.1598117066 0.09503112705 0.15)
(0.1548757019 0.09546337798 0.15)
(0.1599984412 0.09725249267 0.15)
(0.1550714241 0.09768405453 0.15)
(0.1493147887 0.09305213631 0.15)
(0.1495715208 0.09593867754 0.15)
(0.149770236 0.0981589911 0.15)
(0.8247475756 0.1028785264 0.15)
(0.8291818211 0.101416395 0.15)
(0.8238474728 0.100123838 0.15)
(0.8282757596 0.09866373229 0.15)
(0.8231547801 0.09800493036 0.15)
(0.8275790951 0.0965462084 0.15)
(0.8828026315 0.08338429473 0.15)
(0.8871518656 0.0818749398 0.15)
(0.8818518826 0.08064697478 0.15)
(0.8861901844 0.07914095039 0.15)
(0.8811194594 0.07854130517 0.15)
(0.8854518129 0.07703780637 0.15)
(0.5407768501 0.1789017234 0.15)
(0.5455905339 0.1778846145 0.15)
(0.5401771188 0.1760664034 0.15)
(0.5449898049 0.1750494154 0.15)
(0.5397161701 0.1738853107 0.15)
(0.5445278628 0.1728686437 0.15)
(0.550729838 0.1767984457 0.15)
(0.5501241375 0.1739646514 0.15)
(0.5496582109 0.1717846636 0.15)
(0.6532995036 0.1526312789 0.15)
(0.6580192408 0.1514274034 0.15)
(0.6525833237 0.1498234127 0.15)
(0.6572990765 0.1486203212 0.15)
(0.6520317987 0.1476634286 0.15)
(0.6567455646 0.1464609789 0.15)
(0.1118231282 0.09688766312 0.15)
(0.1065243793 0.09752618456 0.15)
(0.1121607038 0.09976590318 0.15)
(0.1068789153 0.1004023676 0.15)
(0.1124203004 0.1019799356 0.15)
(0.1071524794 0.1026147061 0.15)
(0.1171665086 0.09627871005 0.15)
(0.117489119 0.09915876508 0.15)
(0.1177367413 0.1013741495 0.15)
(0.5636059376 0.06558381589 0.15)
(0.5585292001 0.06593510716 0.15)
(0.5638057539 0.06847495451 0.15)
(0.5587290143 0.0688261458 0.15)
(0.5639595336 0.0706988134 0.15)
(0.558882794 0.07105000469 0.15)
(0.6064763879 0.06263322178 0.15)
(0.6011129303 0.06300084354 0.15)
(0.6066742046 0.06552440244 0.15)
(0.601310747 0.06589202421 0.15)
(0.6068269866 0.06774838233 0.15)
(0.6014635291 0.0681160041 0.15)
(0.5903850427 0.06373740782 0.15)
(0.5850216292 0.06410712912 0.15)
(0.5905838591 0.06662856746 0.15)
(0.5852204457 0.06699828877 0.15)
(0.5907376389 0.06885242635 0.15)
(0.5853742254 0.06922214765 0.15)
(0.5689323887 0.06521627202 0.15)
(0.569131203 0.06810733169 0.15)
(0.5692849849 0.07033129055 0.15)
(0.5796582158 0.06447685043 0.15)
(0.5798580299 0.06736788908 0.15)
(0.580010812 0.06959186896 0.15)
(0.6669142617 0.05823363809 0.15)
(0.6671300554 0.06112354059 0.15)
(0.6672958199 0.06334654737 0.15)
(0.6546436416 0.05914186872 0.15)
(0.6493347291 0.05953484955 0.15)
(0.6548574379 0.06203191324 0.15)
(0.6495495252 0.06242487305 0.15)
(0.6550222048 0.06425504101 0.15)
(0.64971429 0.06464790084 0.15)
(0.6118388457 0.06226562103 0.15)
(0.6120376621 0.06515678067 0.15)
(0.6121894444 0.06738078158 0.15)
(0.6278986554 0.06113629231 0.15)
(0.6225517787 0.06153137162 0.15)
(0.6281124517 0.06402633683 0.15)
(0.6227575852 0.06442198421 0.15)
(0.6282762188 0.06624948563 0.15)
(0.6229163596 0.06664553804 0.15)
(0.6439729419 0.05993434325 0.15)
(0.6441877359 0.06282426677 0.15)
(0.6443545002 0.06504725253 0.15)
(0.6332534211 0.06073584599 0.15)
(0.6334692149 0.0636257485 0.15)
(0.6336359792 0.06584873425 0.15)
(0.7353432574 0.05285196304 0.15)
(0.7299849886 0.05327608822 0.15)
(0.7355710338 0.05574091346 0.15)
(0.7302137648 0.05616501762 0.15)
(0.7357467856 0.05796321014 0.15)
(0.7303905143 0.05838719331 0.15)
(0.7192715661 0.05412977431 0.15)
(0.71950134 0.05701858271 0.15)
(0.7196790892 0.05924073738 0.15)
(0.7538523895 0.1248802032 0.15)
(0.7582937192 0.1235647253 0.15)
(0.7530278077 0.1221019322 0.15)
(0.7574641682 0.120787969 0.15)
(0.7523937445 0.1199647881 0.15)
(0.7568261291 0.1186520087 0.15)
(0.7407005831 0.05243055828 0.15)
(0.7409283595 0.0553195087 0.15)
(0.7411031136 0.05754192638 0.15)
(0.7513852537 0.05158897923 0.15)
(0.7516230174 0.05447721956 0.15)
(0.7518057572 0.05669886921 0.15)
(0.8081295591 0.1082379233 0.15)
(0.8072483344 0.1054772368 0.15)
(0.8065705458 0.1033536148 0.15)
(0.8172498621 0.1053020647 0.15)
(0.8163587026 0.1025445878 0.15)
(0.8156729642 0.1004234334 0.15)
(0.9769883367 0.03062034146 0.15)
(0.9772833309 0.03347137058 0.15)
(0.9775104805 0.03566448042 0.15)
(0.1562799513 0.210397955 0.15)
(0.1638302541 0.2111893215 0.15)
(0.156584442 0.2075161178 0.15)
(0.1641187021 0.2083056211 0.15)
(0.1568188939 0.2052991998 0.15)
(0.1643401254 0.2060874767 0.15)
(0.1354288137 0.2078988963 0.15)
(0.140693819 0.2086049812 0.15)
(0.1358225517 0.2050278855 0.15)
(0.1410695 0.2057314495 0.15)
(0.1361261965 0.2028194149 0.15)
(0.1413580998 0.2035209947 0.15)
(0.1513497595 0.2098697715 0.15)
(0.1516632713 0.2069888449 0.15)
(0.1519047427 0.2047727795 0.15)
(0.1303707354 0.2071871605 0.15)
(0.1307825304 0.2043186707 0.15)
(0.1311002183 0.2021121053 0.15)
(0.2165775091 0.2144528887 0.15)
(0.2219838795 0.2146039795 0.15)
(0.216663638 0.2115561383 0.15)
(0.2220509959 0.2117068286 0.15)
(0.216729816 0.2093279549 0.15)
(0.2221041599 0.2094781187 0.15)
(0.2057629373 0.2140636264 0.15)
(0.2058841005 0.2111681398 0.15)
(0.205977304 0.2089408885 0.15)
(0.2274081948 0.214704682 0.15)
(0.2274602997 0.2118071466 0.15)
(0.2274994584 0.209578331 0.15)
(0.3086413595 0.2129547642 0.15)
(0.3140651528 0.2126024775 0.15)
(0.3084685142 0.2100619582 0.15)
(0.3138743262 0.2097107498 0.15)
(0.3083357088 0.2078366581 0.15)
(0.3137275385 0.2074864438 0.15)
(0.3248409268 0.2118600054 0.15)
(0.3246221358 0.2089702659 0.15)
(0.3244533741 0.2067474222 0.15)
(0.3032412449 0.2132439391 0.15)
(0.3030853832 0.210350176 0.15)
(0.3029645667 0.2081242238 0.15)
(0.3773052276 0.2066606505 0.15)
(0.3769636613 0.2037828944 0.15)
(0.3767010738 0.2015693249 0.15)
(0.3896942024 0.2051495988 0.15)
(0.3950192622 0.204478017 0.15)
(0.3893336803 0.2022741417 0.15)
(0.3946338024 0.2016057848 0.15)
(0.3890561255 0.2000622872 0.15)
(0.3943372938 0.1993963293 0.15)
(0.4162026662 0.2014201636 0.15)
(0.4212424637 0.2006439549 0.15)
(0.4157703365 0.1985546181 0.15)
(0.4208021568 0.1977795774 0.15)
(0.4154379305 0.1963504183 0.15)
(0.4204637669 0.1955762035 0.15)
(0.4003444487 0.2037173129 0.15)
(0.3999390437 0.2008479005 0.15)
(0.3996265787 0.1986406809 0.15)
(0.41094695 0.2022025123 0.15)
(0.4105275817 0.1993349939 0.15)
(0.4102041464 0.1971293052 0.15)
(0.6457463383 0.1545581731 0.15)
(0.6450311477 0.151749786 0.15)
(0.6444816159 0.1495894599 0.15)
(0.7702801874 0.1199405675 0.15)
(0.7746671016 0.1186058891 0.15)
(0.7694377193 0.1171678936 0.15)
(0.7738236396 0.1158335162 0.15)
(0.7687897435 0.1150350529 0.15)
(0.7731736683 0.1137009075 0.15)
(0.8644372291 0.04159840529 0.15)
(0.8591280639 0.04207450979 0.15)
(0.8646979541 0.0444845625 0.15)
(0.8593877912 0.04496078801 0.15)
(0.8648996665 0.04670471302 0.15)
(0.8595875061 0.04718108054 0.15)
(0.854057562 0.04253209347 0.15)
(0.8543182891 0.04541835067 0.15)
(0.8545190017 0.04763852221 0.15)
(0.8697663627 0.04112058067 0.15)
(0.8700380705 0.04400580682 0.15)
(0.8702467688 0.04622521032 0.15)
(0.8751075054 0.04059549317 0.15)
(0.875390194 0.04347968827 0.15)
(0.8756068778 0.04569832375 0.15)
(0.939662308 0.03434146139 0.15)
(0.9399420015 0.03722591951 0.15)
(0.9401576877 0.03944467599 0.15)
(0.960972029 0.03220125554 0.15)
(0.9612696869 0.03508383563 0.15)
(0.9614993448 0.03730109809 0.15)
(0.1439666719 0.09353096018 0.15)
(0.1442253995 0.09641725942 0.15)
(0.1444251144 0.09863755195 0.15)
(0.8709249453 0.08747266848 0.15)
(0.8783997835 0.08491258081 0.15)
(0.8699880924 0.08473025531 0.15)
(0.877454987 0.08217293523 0.15)
(0.8692675887 0.08262063428 0.15)
(0.8767285288 0.08006553985 0.15)
(0.03856911298 0.1843547972 0.15)
(0.03966566999 0.1816723548 0.15)
(0.04050918161 0.1796088681 0.15)
(0.555873605 0.1756866774 0.15)
(0.5552599357 0.172854451 0.15)
(0.5547880378 0.170675889 0.15)
(0.08940400672 0.09982446471 0.15)
(0.08447207682 0.100564698 0.15)
(0.08982227732 0.1026921062 0.15)
(0.08491158596 0.1034291924 0.15)
(0.09014411719 0.1048980285 0.15)
(0.08524957601 0.1056325746 0.15)
(0.07920371587 0.1013926226 0.15)
(0.07966784808 0.1042531985 0.15)
(0.08002488136 0.1064536798 0.15)
(0.09692960869 0.09876544164 0.15)
(0.09732035475 0.1016369626 0.15)
(0.09762095187 0.103845832 0.15)
(0.101457743 0.0981676276 0.15)
(0.1018312329 0.1010414118 0.15)
(0.1021177667 0.1032521772 0.15)
(0.1225095534 0.09570137103 0.15)
(0.1228251758 0.09858207309 0.15)
(0.12306681 0.1007980835 0.15)
(0.7490870086 0.126291804 0.15)
(0.7482654085 0.1235126301 0.15)
(0.7476333315 0.1213748041 0.15)
(0.9071647603 0.03755897478 0.15)
(0.9018392757 0.03806762951 0.15)
(0.9074434561 0.0404435539 0.15)
(0.9021099837 0.04095287668 0.15)
(0.907657147 0.04266255237 0.15)
(0.9023176843 0.04317240119 0.15)
(0.8965003777 0.03855676188 0.15)
(0.8967670929 0.04144239307 0.15)
(0.8969717984 0.04366218059 0.15)
(0.8991257882 0.07760650336 0.15)
(0.8981591437 0.07487431868 0.15)
(0.8974168005 0.07277255845 0.15)
(0.9125019018 0.03703387138 0.15)
(0.9127815932 0.03991822952 0.15)
(0.9129972815 0.04213708598 0.15)
(0.9177963345 0.03652306889 0.15)
(0.9180760258 0.03940742703 0.15)
(0.918291712 0.04162618351 0.15)
(0.9155767048 0.07172080262 0.15)
(0.9199361811 0.0701277139 0.15)
(0.9145842532 0.0689980625 0.15)
(0.918944725 0.0674047528 0.15)
(0.9138210596 0.06690364216 0.15)
(0.9181815272 0.06531013251 0.15)
(0.9823844444 0.03023572963 0.15)
(0.9826662948 0.03298491252 0.15)
(0.9828827964 0.0350997289 0.15)
(0.4686726426 0.1927800292 0.15)
(0.4762095356 0.1914588108 0.15)
(0.4681715363 0.1899258319 0.15)
(0.475698461 0.1886062234 0.15)
(0.4677852999 0.1877302655 0.15)
(0.4753052513 0.1864120039 0.15)
(0.5728733941 0.1719775202 0.15)
(0.5722527557 0.1691468407 0.15)
(0.5717758779 0.1669692836 0.15)
(0.5776973356 0.1709249878 0.15)
(0.5770637526 0.168097081 0.15)
(0.576576919 0.1659217336 0.15)
(0.01294670054 0.1203565433 0.15)
(0.00881761329 0.1228153805 0.15)
(0.0143672091 0.1228824421 0.15)
(0.01047363168 0.1251936963 0.15)
(0.01545979393 0.1248255052 0.15)
(0.01174746583 0.1270230243 0.15)
(0.6817867157 0.05709986676 0.15)
(0.6820085018 0.05998934321 0.15)
(0.6821802587 0.06221192393 0.15)
(0.7032020489 0.05541584171 0.15)
(0.7034338202 0.05830450809 0.15)
(0.7036125672 0.06052654176 0.15)
(0.7658058158 0.1213019801 0.15)
(0.7649673248 0.1185281724 0.15)
(0.7643213316 0.1163944799 0.15)
(0.7689664043 0.0500792877 0.15)
(0.7692131534 0.05296673898 0.15)
(0.769403883 0.05518782056 0.15)
(0.8495651062 0.04293821519 0.15)
(0.8498258311 0.0458243724 0.15)
(0.8500265438 0.04804454394 0.15)
(0.8421825234 0.04360654566 0.15)
(0.8424432484 0.04649270288 0.15)
(0.8426449587 0.04871275341 0.15)
(0.8857979046 0.03955064879 0.15)
(0.8804484757 0.04006220748 0.15)
(0.8860716099 0.04243573292 0.15)
(0.8807301666 0.04294652358 0.15)
(0.8862823056 0.04465499441 0.15)
(0.8809458528 0.04516528006 0.15)
(0.9564124032 0.05662459571 0.15)
(0.963839283 0.05378155361 0.15)
(0.9553871985 0.05391394673 0.15)
(0.9627902665 0.05108010719 0.15)
(0.9545991933 0.05182874998 0.15)
(0.9619834084 0.04900210832 0.15)
(0.1684046617 0.2116363657 0.15)
(0.1686690604 0.2087505704 0.15)
(0.1688734432 0.2065306837 0.15)
(0.1895710175 0.2132386002 0.15)
(0.1897522601 0.2103462514 0.15)
(0.1898905251 0.2081214535 0.15)
(0.3409893733 0.2105221674 0.15)
(0.3407286462 0.2076359102 0.15)
(0.3405279335 0.2054157387 0.15)
(0.362424688 0.208361317 0.15)
(0.3621060725 0.2054809779 0.15)
(0.3618604455 0.2032653515 0.15)
(0.8335385842 0.09997969782 0.15)
(0.8326315313 0.09722745609 0.15)
(0.8319328756 0.09511037415 0.15)
(0.01622170851 0.1731480663 0.15)
(0.01778526476 0.1707080611 0.15)
(0.01898797791 0.1688311652 0.15)
(0.0200274545 0.17546038 0.15)
(0.02716989392 0.1792786887 0.15)
(0.02147793877 0.1729515363 0.15)
(0.02847438643 0.1766908963 0.15)
(0.02259371898 0.1710216561 0.15)
(0.02947786689 0.1747003632 0.15)
(0.03119877306 0.181233433 0.15)
(0.03241020428 0.1786008869 0.15)
(0.03334214156 0.1765757501 0.15)
(0.662862154 0.1501830299 0.15)
(0.6621330337 0.1473781363 0.15)
(0.6615725569 0.1452205409 0.15)
(0.667338418 0.1490067783 0.15)
(0.6748903705 0.1470221969 0.15)
(0.6666033306 0.1462035106 0.15)
(0.6741532961 0.144219571 0.15)
(0.6660378802 0.14404722 0.15)
(0.6735868522 0.1420636014 0.15)
(0.07388334919 0.1022731519 0.15)
(0.06864382231 0.1032356 0.15)
(0.07438415976 0.1051275555 0.15)
(0.069188074 0.1060819887 0.15)
(0.07476939849 0.1073232428 0.15)
(0.06960679181 0.108271571 0.15)
(0.0590694669 0.1051651805 0.15)
(0.05142981446 0.1068652426 0.15)
(0.05967128722 0.1079999565 0.15)
(0.05208907819 0.1096872083 0.15)
(0.06013422705 0.1101806073 0.15)
(0.05259632111 0.1118580256 0.15)
(0.06362044817 0.1042506163 0.15)
(0.06419418402 0.1070911839 0.15)
(0.06463551273 0.1092762899 0.15)
(0.5540527202 0.06624477174 0.15)
(0.5542525344 0.06913581039 0.15)
(0.5544063162 0.07135976925 0.15)
(0.5957484729 0.06336848633 0.15)
(0.5959472894 0.06625964598 0.15)
(0.5961000715 0.06848362586 0.15)
(0.5742958021 0.06484655071 0.15)
(0.5744946165 0.06773761038 0.15)
(0.5746483983 0.06996156924 0.15)
(0.659575058 0.05877682908 0.15)
(0.6597888544 0.0616668736 0.15)
(0.6599536212 0.06389000138 0.15)
(0.6172003058 0.06189814128 0.15)
(0.6174001199 0.06478917992 0.15)
(0.617552902 0.06701315981 0.15)
(0.6386121817 0.06033511564 0.15)
(0.6388289753 0.06322499712 0.15)
(0.6389947398 0.0654480039 0.15)
(0.7246277785 0.05370299177 0.15)
(0.7248575524 0.05659180017 0.15)
(0.7250343019 0.05881397585 0.15)
(0.7460539139 0.05200943756 0.15)
(0.7462836898 0.05489834593 0.15)
(0.7464594395 0.05712054264 0.15)
(0.8128428052 0.1067253161 0.15)
(0.8119556197 0.1039665553 0.15)
(0.8112728596 0.1018443381 0.15)
(0.8911515828 0.03905090339 0.15)
(0.8914202955 0.04193639256 0.15)
(0.8916269984 0.04415603806 0.15)
(0.8946264689 0.07920853357 0.15)
(0.8936558527 0.07647773268 0.15)
(0.8929095334 0.07437715629 0.15)
(0.9227045568 0.03605389378 0.15)
(0.9229942313 0.03893734188 0.15)
(0.9232169054 0.04115545133 0.15)
(0.9242503171 0.06856648528 0.15)
(0.9232568762 0.06584426606 0.15)
(0.9224926891 0.06375016668 0.15)
(0.146029548 0.2092971765 0.15)
(0.1463721354 0.2064195395 0.15)
(0.1466356629 0.204205911 0.15)
(0.1257977609 0.2065228382 0.15)
(0.1262336325 0.2036577431 0.15)
(0.1265683818 0.2014539197 0.15)
(0.2111596849 0.2142803339 0.15)
(0.2112638309 0.2113842049 0.15)
(0.2113450223 0.209156506 0.15)
(0.2327562284 0.2147927851 0.15)
(0.2327943259 0.2118950441 0.15)
(0.2328234784 0.2096660388 0.15)
(0.2377343744 0.2148425549 0.15)
(0.2377604662 0.2119446662 0.15)
(0.2377796146 0.2097155711 0.15)
(0.3194475473 0.212231657 0.15)
(0.3192457357 0.2093407604 0.15)
(0.3190909562 0.2071169225 0.15)
(0.2979050699 0.2135295693 0.15)
(0.2977591996 0.210635296 0.15)
(0.2976463772 0.2084089757 0.15)
(0.2929320219 0.2137698565 0.15)
(0.292797143 0.2108750521 0.15)
(0.2926933122 0.2086482426 0.15)
(0.3847677446 0.2057504863 0.15)
(0.3844172014 0.2028739192 0.15)
(0.3841466282 0.2006611178 0.15)
(0.4257598358 0.1999481455 0.15)
(0.425316538 0.1970842309 0.15)
(0.4249761548 0.194881199 0.15)
(0.4056437061 0.2029602545 0.15)
(0.4052323172 0.2000916682 0.15)
(0.4049158635 0.1978850325 0.15)
(0.5877227052 0.1686012398 0.15)
(0.5922115147 0.1675459514 0.15)
(0.5870612525 0.1657798203 0.15)
(0.5915490685 0.1647248527 0.15)
(0.5865525183 0.1636094344 0.15)
(0.591038341 0.1625548088 0.15)
(0.5827899911 0.1697608823 0.15)
(0.5821374944 0.166937274 0.15)
(0.5816357271 0.1647652413 0.15)
(0.6889039714 0.1432879042 0.15)
(0.6964533623 0.1412290601 0.15)
(0.6881430201 0.1404913816 0.15)
(0.6956904284 0.1384333894 0.15)
(0.6875586737 0.1383402393 0.15)
(0.6951040944 0.1362828591 0.15)
(0.7011683807 0.1399434658 0.15)
(0.7004004706 0.1371489799 0.15)
(0.6998101552 0.1349993735 0.15)
(0.001699624695 0.1286166833 0.15)
(-0.003781078824 0.1369243139 0.15)
(0.003865028072 0.1305426918 0.15)
(-0.001089065846 0.1379972945 0.15)
(0.005530715615 0.1320241061 0.15)
(0.0009817071592 0.138822669 0.15)
(-0.005225932723 0.1431771474 0.15)
(-0.002336485374 0.1433992648 0.15)
(-0.0001138366962 0.1435701244 0.15)
(-0.004616833155 0.1497815323 0.15)
(-0.001795287099 0.149120387 0.15)
(0.000375131353 0.1486118222 0.15)
(0.1765331541 0.09083291256 0.15)
(0.1714529136 0.0912078827 0.15)
(0.1767479481 0.09372283608 0.15)
(0.1716707048 0.09409764318 0.15)
(0.1769137126 0.09594584286 0.15)
(0.1718384668 0.09632050794 0.15)
(0.1818599386 0.09043365467 0.15)
(0.1820737349 0.0933236992 0.15)
(0.1822394994 0.09554670597 0.15)
(0.2194421754 0.08786150308 0.15)
(0.2140680242 0.08819624237 0.15)
(0.2196230126 0.09075384092 0.15)
(0.2142558536 0.09108813312 0.15)
(0.2197618104 0.09297871495 0.15)
(0.2144006438 0.0933125811 0.15)
(0.7324358735 0.1311226003 0.15)
(0.7316371423 0.1283369492 0.15)
(0.7310219647 0.1261941619 0.15)
(0.86216859 0.09044978594 0.15)
(0.8665780946 0.08895266682 0.15)
(0.8612386935 0.08770522608 0.15)
(0.8656452177 0.08620906982 0.15)
(0.8605231572 0.08559400027 0.15)
(0.8649266947 0.08409850694 0.15)
(0.5185350616 0.183474759 0.15)
(0.5237309364 0.1824627174 0.15)
(0.5179791566 0.1806307158 0.15)
(0.5231640738 0.179620805 0.15)
(0.5175520743 0.1784429097 0.15)
(0.5227270273 0.1774348088 0.15)
(0.5287087815 0.1814515591 0.15)
(0.5281229967 0.1786135453 0.15)
(0.5276720059 0.1764303428 0.15)
(0.262404823 0.08525234641 0.15)
(0.2570372415 0.08556654306 0.15)
(0.2625746711 0.08814531538 0.15)
(0.2572070917 0.088459612 0.15)
(0.262705477 0.0903706575 0.15)
(0.2573368978 0.09068497515 0.15)
(0.2248163959 0.08753006307 0.15)
(0.2249932361 0.09042258496 0.15)
(0.2251290367 0.09264762203 0.15)
(0.3485110366 0.08017096039 0.15)
(0.3431465658 0.08049039281 0.15)
(0.3486928715 0.08306317723 0.15)
(0.3433204109 0.08338317772 0.15)
(0.3488326691 0.08528803024 0.15)
(0.3434532143 0.08560837783 0.15)
(0.3109772833 0.08238501374 0.15)
(0.3059003937 0.08268149609 0.15)
(0.3111471314 0.0852779827 0.15)
(0.3060692441 0.08557458606 0.15)
(0.3112769396 0.08750344583 0.15)
(0.3061990523 0.08780004918 0.15)
(0.2677713501 0.08493557135 0.15)
(0.2679421959 0.08782841932 0.15)
(0.2680740015 0.09005374043 0.15)
(0.3014358914 0.08294239813 0.15)
(0.3016027423 0.08583553013 0.15)
(0.3017305509 0.0880610353 0.15)
(0.3538617682 0.07981650904 0.15)
(0.3540515951 0.08270825778 0.15)
(0.354197385 0.08493268473 0.15)
(0.3913990661 0.07729531332 0.15)
(0.3860365579 0.0776605146 0.15)
(0.3915958851 0.08018661499 0.15)
(0.3862323771 0.08055183729 0.15)
(0.3917466677 0.08241063691 0.15)
(0.3863831617 0.08277595919 0.15)
(0.3967615723 0.07693001207 0.15)
(0.3969593911 0.07982129271 0.15)
(0.3971101736 0.08204531464 0.15)
(0.9882433806 0.04358682395 0.15)
(0.9947201411 0.03951118114 0.15)
(0.9873110893 0.04120409437 0.15)
(0.9940858364 0.03788585519 0.15)
(0.9865944044 0.03937125422 0.15)
(0.9935974468 0.03663554495 0.15)
(0.08562664587 0.1988283399 0.15)
(0.09332153273 0.2005926823 0.15)
(0.08629099934 0.1960075519 0.15)
(0.09394086278 0.1977617384 0.15)
(0.08680200025 0.1938376312 0.15)
(0.09441739259 0.1955840405 0.15)
(0.4810839603 0.1905714538 0.15)
(0.4862699389 0.1896120319 0.15)
(0.4805629236 0.1877207762 0.15)
(0.4857439201 0.1867622592 0.15)
(0.4801617409 0.1855279246 0.15)
(0.4853387531 0.1845701915 0.15)
(0.02483750241 0.1148082713 0.15)
(0.02041515455 0.1166745419 0.15)
(0.02591855955 0.1174970414 0.15)
(0.02161457213 0.1193126129 0.15)
(0.02675021871 0.1195653168 0.15)
(0.02253723326 0.1213419668 0.15)
(0.7109870339 0.1372072219 0.15)
(0.7154386541 0.1359530212 0.15)
(0.7102032201 0.1344174814 0.15)
(0.7146518514 0.1331638436 0.15)
(0.7095989788 0.1322715485 0.15)
(0.7140466187 0.1310183317 0.15)
(0.7821925886 0.116314006 0.15)
(0.7813481309 0.1135418441 0.15)
(0.7806981637 0.1114094354 0.15)
(0.7785293965 0.04926479246 0.15)
(0.773456359 0.04969692382 0.15)
(0.7787751479 0.05215236474 0.15)
(0.7737031081 0.05258437509 0.15)
(0.7789648798 0.05437356732 0.15)
(0.7738918381 0.05480549872 0.15)
(0.7868130041 0.1149055731 0.15)
(0.7859675549 0.1121338322 0.15)
(0.7853165943 0.1100017444 0.15)
(0.7838460542 0.04881203562 0.15)
(0.7840918056 0.0516996079 0.15)
(0.7842795379 0.05392085252 0.15)
(0.799890162 0.04745918757 0.15)
(0.794549434 0.04790884969 0.15)
(0.8001419037 0.05034623382 0.15)
(0.7947941877 0.05079654297 0.15)
(0.8003346286 0.0525670734 0.15)
(0.79498192 0.05301778759 0.15)
(0.9477543202 0.05985150266 0.15)
(0.9520992383 0.05823201412 0.15)
(0.9467420159 0.05713598144 0.15)
(0.9510849513 0.05551733476 0.15)
(0.945963937 0.05504717524 0.15)
(0.9503038857 0.05342919149 0.15)
(0.9981648998 0.03603820454 0.15)
(0.9977304181 0.03502081261 0.15)
(0.2599550335 0.2147830607 0.15)
(0.2653627319 0.2147118745 0.15)
(0.2599201135 0.2118852545 0.15)
(0.2653128132 0.2118142836 0.15)
(0.2598932531 0.2096562266 0.15)
(0.2652739533 0.209585408 0.15)
(0.2450422314 0.2149016559 0.15)
(0.2450433161 0.2120036928 0.15)
(0.2450444579 0.2097744763 0.15)
(0.2495196211 0.2148731343 0.15)
(0.2495037012 0.2119751286 0.15)
(0.2494918417 0.2097459854 0.15)
(0.270725717 0.2146072208 0.15)
(0.2706538052 0.2117101923 0.15)
(0.2705979492 0.209481674 0.15)
(0.2856501234 0.2140890934 0.15)
(0.2855282353 0.2111937158 0.15)
(0.2854343981 0.2089664962 0.15)
(0.2812040529 0.2142751915 0.15)
(0.2810961554 0.2113792197 0.15)
(0.2810133116 0.2091515689 0.15)
(0.6265541174 0.1593164473 0.15)
(0.6313167786 0.1581560792 0.15)
(0.6258687835 0.156500931 0.15)
(0.6306294493 0.1553408049 0.15)
(0.6253411397 0.1543350436 0.15)
(0.630100812 0.1531752385 0.15)
(0.02937560088 0.1130763972 0.15)
(0.03034601505 0.1158071023 0.15)
(0.0310924343 0.1179076766 0.15)
(0.04662341941 0.1080387329 0.15)
(0.04168008733 0.1092880184 0.15)
(0.0473243826 0.1108507199 0.15)
(0.04244043674 0.1120844536 0.15)
(0.04786356709 0.113013664 0.15)
(0.04302528407 0.1142356353 0.15)
(0.1979592981 0.08928248979 0.15)
(0.1925938557 0.08965085345 0.15)
(0.1981551173 0.09217381248 0.15)
(0.192796667 0.09254172906 0.15)
(0.1983068996 0.09439781338 0.15)
(0.1929524443 0.09476544593 0.15)
(0.2033269818 0.08892558156 0.15)
(0.2035208036 0.09181704626 0.15)
(0.2036705905 0.09404128916 0.15)
(0.7229866084 0.1338258523 0.15)
(0.7221958329 0.1310380085 0.15)
(0.7215866209 0.1288935244 0.15)
(0.5009849689 0.1868898186 0.15)
(0.5085328047 0.1854230381 0.15)
(0.5004449974 0.1840424398 0.15)
(0.507980882 0.182578111 0.15)
(0.5000308659 0.1818521609 0.15)
(0.5075567885 0.180389742 0.15)
(0.2462822301 0.08620235522 0.15)
(0.2409102151 0.08654355102 0.15)
(0.2464600701 0.08909485609 0.15)
(0.2410920522 0.08943586784 0.15)
(0.2465978702 0.09131985112 0.15)
(0.2412308479 0.09166064189 0.15)
(0.235548137 0.08688163727 0.15)
(0.2357269747 0.08977401714 0.15)
(0.2358647748 0.09199901217 0.15)
(0.332414522 0.08112442179 0.15)
(0.3270449872 0.08144086 0.15)
(0.3325853699 0.08401736974 0.15)
(0.3272158351 0.08433380794 0.15)
(0.3327161757 0.08624271187 0.15)
(0.3273466409 0.08655915007 0.15)
(0.3216774498 0.08175715618 0.15)
(0.3218472979 0.08465012515 0.15)
(0.3219781038 0.08687546728 0.15)
(0.2838632875 0.08395470011 0.15)
(0.278491096 0.08428749777 0.15)
(0.2840381303 0.08684736402 0.15)
(0.278668936 0.08717999864 0.15)
(0.2841729332 0.08907252209 0.15)
(0.2788057364 0.0894050147 0.15)
(0.2891997813 0.08363665608 0.15)
(0.2893686296 0.08652964606 0.15)
(0.2894984378 0.08875510919 0.15)
(0.369947821 0.07874604169 0.15)
(0.3645852077 0.07910624408 0.15)
(0.3701426426 0.08163748538 0.15)
(0.3647780318 0.08199782978 0.15)
(0.3702914276 0.08386164932 0.15)
(0.3649268168 0.08422199372 0.15)
(0.3753114131 0.07838481851 0.15)
(0.3755062326 0.08127616221 0.15)
(0.3756560174 0.08350030514 0.15)
(0.4181574386 0.07546184391 0.15)
(0.4128479459 0.07582723084 0.15)
(0.4183572527 0.07835288256 0.15)
(0.4130467624 0.07871839049 0.15)
(0.4185100348 0.08057686245 0.15)
(0.4131995445 0.08094237037 0.15)
(0.4074855175 0.07619623128 0.15)
(0.4076833342 0.07908741195 0.15)
(0.4078361163 0.08131139183 0.15)
(0.8266098398 0.04502219818 0.15)
(0.8212619207 0.04551041998 0.15)
(0.8268725623 0.04790821338 0.15)
(0.8215256408 0.04839631418 0.15)
(0.8270752703 0.05012814292 0.15)
(0.8217293507 0.05061632268 0.15)
(0.8372548323 0.04405362512 0.15)
(0.8375165571 0.04693976131 0.15)
(0.8377182674 0.04915981185 0.15)
(0.8159140184 0.0459994416 0.15)
(0.8161787383 0.04888531478 0.15)
(0.8163824461 0.0511052233 0.15)
(0.8052303267 0.04698273138 0.15)
(0.8054910538 0.04986898857 0.15)
(0.8056907667 0.05208918113 0.15)
(0.9316865496 0.06583527129 0.15)
(0.936038483 0.06421643543 0.15)
(0.9306821889 0.06311698248 0.15)
(0.9350281636 0.06150017232 0.15)
(0.9299100646 0.06102595062 0.15)
(0.9342510719 0.05941074523 0.15)
(0.06383275005 0.1931489955 0.15)
(0.07150449963 0.19530191 0.15)
(0.06465361084 0.1903697268 0.15)
(0.07225834633 0.1925036458 0.15)
(0.06528511047 0.1882317803 0.15)
(0.07283823148 0.190351281 0.15)
(0.07602456131 0.196470456 0.15)
(0.07674179954 0.1936626592 0.15)
(0.07729352061 0.1915027847 0.15)
(0.4964595673 0.1877270281 0.15)
(0.495929562 0.1848779394 0.15)
(0.4955224017 0.1826862137 0.15)
(0.6045452899 0.1646463532 0.15)
(0.6096051853 0.1634464285 0.15)
(0.6038778658 0.1618263595 0.15)
(0.6089278055 0.1606286445 0.15)
(0.6033641537 0.1596570785 0.15)
(0.6084071286 0.1584611103 0.15)
(0.6363680242 0.1569253294 0.15)
(0.6356727345 0.1541120229 0.15)
(0.6351371282 0.1519480033 0.15)
(0.614520098 0.1622488518 0.15)
(0.6138357555 0.1594329146 0.15)
(0.6133091072 0.1572668062 0.15)
(0.6844316148 0.1445072831 0.15)
(0.683680615 0.1417083508 0.15)
(0.6831022305 0.1395553328 0.15)
(0.7061456424 0.13857154 0.15)
(0.7053687881 0.1357798028 0.15)
(0.7047705152 0.1336323041 0.15)
(0.1669660667 0.09154777187 0.15)
(0.1671918478 0.09443696428 0.15)
(0.1673666019 0.09665938197 0.15)
(0.1872197789 0.09003670246 0.15)
(0.1874295803 0.09292703102 0.15)
(0.187591352 0.09515042181 0.15)
(0.2086925272 0.08856211682 0.15)
(0.2088873488 0.0914535605 0.15)
(0.2090371336 0.09367770342 0.15)
(0.7276516617 0.1324948682 0.15)
(0.7268549144 0.1297084303 0.15)
(0.726242724 0.127565005 0.15)
(0.8546911342 0.09298052215 0.15)
(0.8537671944 0.0902338366 0.15)
(0.8530556236 0.08812092707 0.15)
(0.5133710641 0.1844806291 0.15)
(0.5128171482 0.181636044 0.15)
(0.5123910594 0.1794479169 0.15)
(0.5332267144 0.1804969807 0.15)
(0.5326299719 0.1776610977 0.15)
(0.5321710165 0.175479663 0.15)
(0.251663634 0.08587956612 0.15)
(0.2518354817 0.08877249304 0.15)
(0.251968285 0.09099769315 0.15)
(0.2301857562 0.0872053267 0.15)
(0.2303615988 0.09009796959 0.15)
(0.2304964017 0.09232312766 0.15)
(0.3377820425 0.08080732578 0.15)
(0.3379528904 0.08370027373 0.15)
(0.3380846961 0.08592559484 0.15)
(0.3163089106 0.08207337341 0.15)
(0.3164787587 0.08496634238 0.15)
(0.3166095645 0.08719168451 0.15)
(0.2731338802 0.08461898036 0.15)
(0.273308725 0.08751174424 0.15)
(0.273442526 0.08973682335 0.15)
(0.2941409847 0.08335652948 0.15)
(0.2943058381 0.0862498035 0.15)
(0.2944326491 0.08847542966 0.15)
(0.3592224892 0.07946144757 0.15)
(0.3594143135 0.08235305429 0.15)
(0.3595621009 0.08457733923 0.15)
(0.3806740055 0.07802361635 0.15)
(0.3808698247 0.08091493903 0.15)
(0.3810196096 0.08313908195 0.15)
(0.4304173183 0.07461365232 0.15)
(0.4230883891 0.07512221968 0.15)
(0.4306181322 0.07750466994 0.15)
(0.4232882053 0.07801335831 0.15)
(0.430771914 0.07972862881 0.15)
(0.4234419851 0.08023721719 0.15)
(0.4348947769 0.07430296693 0.15)
(0.4350955908 0.07719398456 0.15)
(0.4352493727 0.07941794343 0.15)
(0.4021240805 0.07656481079 0.15)
(0.4023218993 0.07945609143 0.15)
(0.4024736816 0.08168009234 0.15)
(0.520393998 0.06856229431 0.15)
(0.5150355394 0.06892981098 0.15)
(0.5205928145 0.07145345395 0.15)
(0.5152303588 0.07182115468 0.15)
(0.5207445968 0.07367745486 0.15)
(0.5153811434 0.07404527658 0.15)
(0.5096778829 0.0692879087 0.15)
(0.5098697072 0.07217951542 0.15)
(0.5100184944 0.07440377934 0.15)
(0.4828484539 0.07107186079 0.15)
(0.4774839692 0.07143820386 0.15)
(0.4830452729 0.07396316245 0.15)
(0.477681788 0.07432948451 0.15)
(0.4831970552 0.07618716336 0.15)
(0.4778335703 0.07655348541 0.15)
(0.4882159337 0.07070525469 0.15)
(0.4884107552 0.07359669838 0.15)
(0.4885605401 0.0758208413 0.15)
(0.4399744906 0.07395051285 0.15)
(0.4401733071 0.07684167249 0.15)
(0.4403260892 0.07906565238 0.15)
(0.445299022 0.07358681018 0.15)
(0.4454938435 0.07647825386 0.15)
(0.4456426286 0.0787024178 0.15)
(0.472121484 0.0718045049 0.15)
(0.4723183009 0.07469570659 0.15)
(0.4724700854 0.07691980747 0.15)
(0.4667619919 0.07217044294 0.15)
(0.4669568135 0.07506188663 0.15)
(0.4671065983 0.07728602955 0.15)
(0.5257574514 0.06819447258 0.15)
(0.5259552681 0.07108565325 0.15)
(0.5261080502 0.07330963313 0.15)
(0.531119905 0.06782667188 0.15)
(0.5313187215 0.07071783152 0.15)
(0.5314715036 0.07294181141 0.15)
(0.9840652231 0.04566890937 0.15)
(0.9830463361 0.04306845194 0.15)
(0.982262115 0.04106809439 0.15)
(0.05933018337 0.1917564323 0.15)
(0.06019402691 0.188990163 0.15)
(0.0608585463 0.1868623246 0.15)
(0.08087879616 0.197681787 0.15)
(0.08156878484 0.1948671615 0.15)
(0.08209949281 0.1927021276 0.15)
(0.09787011285 0.2015524826 0.15)
(0.09845347424 0.1987138931 0.15)
(0.09890217354 0.1965302789 0.15)
(0.1028489716 0.2025400446 0.15)
(0.1033982828 0.1996946693 0.15)
(0.1038213658 0.1975057924 0.15)
(0.4332831379 0.1987892487 0.15)
(0.4381931525 0.1979771601 0.15)
(0.4328248897 0.1959278489 0.15)
(0.4377209452 0.1951178542 0.15)
(0.432471543 0.1937266899 0.15)
(0.4373576323 0.1929184052 0.15)
(0.4914638885 0.1886511421 0.15)
(0.490936872 0.1858014904 0.15)
(0.4905317071 0.1836095227 0.15)
(0.443407032 0.1971078717 0.15)
(0.4429308382 0.1942492497 0.15)
(0.4425645364 0.1920503636 0.15)
(0.4486647714 0.1962314597 0.15)
(0.4481865843 0.1933731797 0.15)
(0.4478182872 0.1911745356 0.15)
(-0.002526178062 0.1553392144 0.15)
(4.860692686e-05 0.1540092983 0.15)
(0.002029208828 0.1529862498 0.15)
(0.6795964148 0.145785502 0.15)
(0.6788563579 0.142983739 0.15)
(0.6782869293 0.1408285323 0.15)
(0.791567593 0.1134564109 0.15)
(0.7907151853 0.1106867167 0.15)
(0.7900592574 0.1085562336 0.15)
(0.7891987228 0.04835942186 0.15)
(0.7894424768 0.05124713615 0.15)
(0.7896302112 0.05346848075 0.15)
(0.9403357902 0.06261595188 0.15)
(0.9393244815 0.05990020968 0.15)
(0.9385463984 0.05781120352 0.15)
(0.254617061 0.2148404783 0.15)
(0.2545911411 0.2119425828 0.15)
(0.2545722811 0.2097134868 0.15)
(0.2760993269 0.2144370292 0.15)
(0.2760074216 0.2115405211 0.15)
(0.2759375707 0.2093123971 0.15)
(0.03711968257 0.1105916667 0.15)
(0.03795678612 0.1133660837 0.15)
(0.0386006903 0.1155003203 0.15)
(0.8456046508 0.09600258887 0.15)
(0.8503051282 0.094453542 0.15)
(0.8446956047 0.09325068911 0.15)
(0.8493891299 0.09170398889 0.15)
(0.8439969532 0.09113380713 0.15)
(0.8486855152 0.08958891164 0.15)
(0.8410372799 0.09750772813 0.15)
(0.8401302249 0.09475538642 0.15)
(0.8394315692 0.09263830449 0.15)
(0.504315135 0.0696417125 0.15)
(0.4989503875 0.06999555834 0.15)
(0.5045059595 0.07253334024 0.15)
(0.4991412142 0.07288728606 0.15)
(0.5046527492 0.07475774618 0.15)
(0.4992880018 0.07511159202 0.15)
(0.4935846424 0.07034952517 0.15)
(0.4937764667 0.0732411319 0.15)
(0.4939232564 0.07546553783 0.15)
(0.4560355279 0.07287957123 0.15)
(0.4506697723 0.07323303817 0.15)
(0.4562263525 0.07577119897 0.15)
(0.4508605968 0.07612466592 0.15)
(0.4563731422 0.07799560491 0.15)
(0.4510073866 0.07834907185 0.15)
(0.4613982863 0.07252626732 0.15)
(0.4615901106 0.07541787404 0.15)
(0.4617379001 0.07764225896 0.15)
(0.541790841 0.06709300538 0.15)
(0.5364823586 0.06745887117 0.15)
(0.5419906551 0.06998404403 0.15)
(0.5366811751 0.07035003082 0.15)
(0.5421434372 0.07220802391 0.15)
(0.5368339551 0.07257391072 0.15)
(0.5467227577 0.06675176048 0.15)
(0.5469225739 0.06964289911 0.15)
(0.5470763537 0.07186675799 0.15)
(0.8319577632 0.04453417634 0.15)
(0.8322204877 0.04742029152 0.15)
(0.8324231978 0.04964032104 0.15)
(0.8105681808 0.04649152049 0.15)
(0.8108328986 0.04937729369 0.15)
(0.8110366064 0.05159720221 0.15)
(0.9797895535 0.0474897868 0.15)
(0.9787441795 0.04481887055 0.15)
(0.9779398129 0.04276422447 0.15)
(0.1080414635 0.2035079116 0.15)
(0.113223346 0.2044468953 0.15)
(0.1085666729 0.200657942 0.15)
(0.1137284757 0.2015933469 0.15)
(0.1089706802 0.1984656653 0.15)
(0.1141164214 0.1993983072 0.15)
(0.1181174356 0.2053036102 0.15)
(0.1185954598 0.2024453305 0.15)
(0.1189633238 0.2002466122 0.15)
(0.4539324749 0.1953532379 0.15)
(0.4591496304 0.1944494729 0.15)
(0.4534463149 0.1924963258 0.15)
(0.4586535041 0.1915942707 0.15)
(0.453072038 0.1902987076 0.15)
(0.4582722518 0.1893978994 0.15)
(0.4641592774 0.1935712755 0.15)
(0.4636591646 0.1907167572 0.15)
(0.4632749236 0.1885209489 0.15)
(0.5997638612 0.1657704078 0.15)
(0.5991004173 0.1629494302 0.15)
(0.598589692 0.1607794862 0.15)
(0.6412623885 0.155701879 0.15)
(0.6405541626 0.1528917451 0.15)
(0.6400096046 0.1507301142 0.15)
(0.6190031288 0.1611565766 0.15)
(0.618316793 0.1583409814 0.15)
(0.6177891492 0.1561750939 0.15)
)
// ************************************************************************* //
| [
"[email protected]"
] | ||
8f06252d444cbe9a6595d862623c6710879ef35b | 02b6f251a7c3eeb82c1ce65252e67e263e58d210 | /05_Automation_64/02_ProxyStub/AutomationProxyStub/AutomationProxyStub/AutomationProxyStubHeader.h | e00e7a386f3dffb56bc9b41b7a3fe5e5cb0becbc | [] | no_license | mohit264/com | dd8dcb51d9624b2d6403e61b10e723add204909e | ae8d4e6611340da20be815f18bdab36010864bbb | refs/heads/master | 2023-01-22T09:44:06.209670 | 2020-11-24T04:39:04 | 2020-11-24T04:39:04 | 302,846,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,090 | h |
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 8.01.0622 */
/* at Tue Jan 19 08:44:07 2038
*/
/* Compiler settings for AutomationServerTypeLib.idl:
Oicf, W1, Zp8, env=Win64 (32b run), target_arch=AMD64 8.01.0622
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 COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __AutomationProxyStubHeader_h__
#define __AutomationProxyStubHeader_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef __IMyMath_FWD_DEFINED__
#define __IMyMath_FWD_DEFINED__
typedef interface IMyMath IMyMath;
#endif /* __IMyMath_FWD_DEFINED__ */
#ifndef __CMyMath_FWD_DEFINED__
#define __CMyMath_FWD_DEFINED__
#ifdef __cplusplus
typedef class CMyMath CMyMath;
#else
typedef struct CMyMath CMyMath;
#endif /* __cplusplus */
#endif /* __CMyMath_FWD_DEFINED__ */
/* header files for imported files */
#include "unknwn.h"
#include "oaidl.h"
#ifdef __cplusplus
extern "C"{
#endif
#ifndef __IMyMath_INTERFACE_DEFINED__
#define __IMyMath_INTERFACE_DEFINED__
/* interface IMyMath */
/* [oleautomation][dual][unique][helpstring][uuid][object] */
EXTERN_C const IID IID_IMyMath;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("6D72A707-1F3F-4DF8-ADDE-7F4E24C7555E")
IMyMath : public IDispatch
{
public:
virtual HRESULT STDMETHODCALLTYPE SumOfTwoIntegers(
/* [in] */ int __MIDL__IMyMath0000,
/* [in] */ int __MIDL__IMyMath0001,
/* [retval][out] */ int *__MIDL__IMyMath0002) = 0;
virtual HRESULT STDMETHODCALLTYPE SubtractionOfTwoIntegers(
/* [in] */ int __MIDL__IMyMath0003,
/* [in] */ int __MIDL__IMyMath0004,
/* [retval][out] */ int *__MIDL__IMyMath0005) = 0;
};
#else /* C style interface */
typedef struct IMyMathVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IMyMath * This,
/* [in] */ REFIID riid,
/* [annotation][iid_is][out] */
_COM_Outptr_ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IMyMath * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IMyMath * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IMyMath * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IMyMath * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IMyMath * 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 )(
IMyMath * This,
/* [annotation][in] */
_In_ DISPID dispIdMember,
/* [annotation][in] */
_In_ REFIID riid,
/* [annotation][in] */
_In_ LCID lcid,
/* [annotation][in] */
_In_ WORD wFlags,
/* [annotation][out][in] */
_In_ DISPPARAMS *pDispParams,
/* [annotation][out] */
_Out_opt_ VARIANT *pVarResult,
/* [annotation][out] */
_Out_opt_ EXCEPINFO *pExcepInfo,
/* [annotation][out] */
_Out_opt_ UINT *puArgErr);
HRESULT ( STDMETHODCALLTYPE *SumOfTwoIntegers )(
IMyMath * This,
/* [in] */ int __MIDL__IMyMath0000,
/* [in] */ int __MIDL__IMyMath0001,
/* [retval][out] */ int *__MIDL__IMyMath0002);
HRESULT ( STDMETHODCALLTYPE *SubtractionOfTwoIntegers )(
IMyMath * This,
/* [in] */ int __MIDL__IMyMath0003,
/* [in] */ int __MIDL__IMyMath0004,
/* [retval][out] */ int *__MIDL__IMyMath0005);
END_INTERFACE
} IMyMathVtbl;
interface IMyMath
{
CONST_VTBL struct IMyMathVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IMyMath_QueryInterface(This,riid,ppvObject) \
( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) )
#define IMyMath_AddRef(This) \
( (This)->lpVtbl -> AddRef(This) )
#define IMyMath_Release(This) \
( (This)->lpVtbl -> Release(This) )
#define IMyMath_GetTypeInfoCount(This,pctinfo) \
( (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo) )
#define IMyMath_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
( (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo) )
#define IMyMath_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
( (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) )
#define IMyMath_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
( (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) )
#define IMyMath_SumOfTwoIntegers(This,__MIDL__IMyMath0000,__MIDL__IMyMath0001,__MIDL__IMyMath0002) \
( (This)->lpVtbl -> SumOfTwoIntegers(This,__MIDL__IMyMath0000,__MIDL__IMyMath0001,__MIDL__IMyMath0002) )
#define IMyMath_SubtractionOfTwoIntegers(This,__MIDL__IMyMath0003,__MIDL__IMyMath0004,__MIDL__IMyMath0005) \
( (This)->lpVtbl -> SubtractionOfTwoIntegers(This,__MIDL__IMyMath0003,__MIDL__IMyMath0004,__MIDL__IMyMath0005) )
#endif /* COBJMACROS */
#endif /* C style interface */
#endif /* __IMyMath_INTERFACE_DEFINED__ */
#ifndef __AutomationServerWithRegFileTypeLib_LIBRARY_DEFINED__
#define __AutomationServerWithRegFileTypeLib_LIBRARY_DEFINED__
/* library AutomationServerWithRegFileTypeLib */
/* [helpstring][version][uuid] */
EXTERN_C const IID LIBID_AutomationServerWithRegFileTypeLib;
EXTERN_C const CLSID CLSID_CMyMath;
#ifdef __cplusplus
class DECLSPEC_UUID("6B47AA78-5B9F-469E-9C2A-4DB43C6A5543")
CMyMath;
#endif
#endif /* __AutomationServerWithRegFileTypeLib_LIBRARY_DEFINED__ */
/* Additional Prototypes for ALL interfaces */
/* end of Additional Prototypes */
#ifdef __cplusplus
}
#endif
#endif
| [
"[email protected]"
] | |
b87054d899670385508b7a8ac7eccfcd5d3690c4 | 72a146dad10c3330548f175643822e6cc2e2ccba | /components/sync/core_impl/sync_encryption_handler_impl.cc | 686abbb45c4fddadeaa1e601fc0682f5b82497da | [
"BSD-3-Clause"
] | permissive | daotianya/browser-android-tabs | bb6772394c2138e2f3859a83ec6e0860d01a6161 | 44e83a97eb1c7775944a04144e161d99cbb7de5b | refs/heads/master | 2020-06-10T18:07:58.392087 | 2016-12-07T15:37:13 | 2016-12-07T15:37:13 | 75,914,703 | 1 | 0 | null | 2016-12-08T07:37:51 | 2016-12-08T07:37:51 | null | UTF-8 | C++ | false | false | 71,172 | cc | // Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/sync/core_impl/sync_encryption_handler_impl.h"
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <queue>
#include <string>
#include "base/base64.h"
#include "base/bind.h"
#include "base/json/json_string_value_serializer.h"
#include "base/location.h"
#include "base/metrics/histogram.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h"
#include "base/tracked_objects.h"
#include "components/sync/base/cryptographer.h"
#include "components/sync/base/encryptor.h"
#include "components/sync/base/experiments.h"
#include "components/sync/base/time.h"
#include "components/sync/core/read_node.h"
#include "components/sync/core/read_transaction.h"
#include "components/sync/core/user_share.h"
#include "components/sync/core/write_node.h"
#include "components/sync/core/write_transaction.h"
#include "components/sync/engine/sync_string_conversions.h"
#include "components/sync/protocol/encryption.pb.h"
#include "components/sync/protocol/nigori_specifics.pb.h"
#include "components/sync/protocol/sync.pb.h"
#include "components/sync/syncable/directory.h"
#include "components/sync/syncable/entry.h"
#include "components/sync/syncable/mutable_entry.h"
#include "components/sync/syncable/nigori_util.h"
#include "components/sync/syncable/syncable_base_transaction.h"
#include "components/sync/syncable/syncable_model_neutral_write_transaction.h"
#include "components/sync/syncable/syncable_write_transaction.h"
namespace syncer {
namespace {
// The maximum number of times we will automatically overwrite the nigori node
// because the encryption keys don't match (per chrome instantiation).
// We protect ourselves against nigori rollbacks, but it's possible two
// different clients might have contrasting view of what the nigori node state
// should be, in which case they might ping pong (see crbug.com/119207).
static const int kNigoriOverwriteLimit = 10;
// Enumeration of nigori keystore migration results (for use in UMA stats).
enum NigoriMigrationResult {
FAILED_TO_SET_DEFAULT_KEYSTORE,
FAILED_TO_SET_NONDEFAULT_KEYSTORE,
FAILED_TO_EXTRACT_DECRYPTOR,
FAILED_TO_EXTRACT_KEYBAG,
MIGRATION_SUCCESS_KEYSTORE_NONDEFAULT,
MIGRATION_SUCCESS_KEYSTORE_DEFAULT,
MIGRATION_SUCCESS_FROZEN_IMPLICIT,
MIGRATION_SUCCESS_CUSTOM,
MIGRATION_RESULT_SIZE,
};
enum NigoriMigrationState {
MIGRATED,
NOT_MIGRATED_CRYPTO_NOT_READY,
NOT_MIGRATED_NO_KEYSTORE_KEY,
NOT_MIGRATED_UNKNOWN_REASON,
MIGRATION_STATE_SIZE,
};
// The new passphrase state is sufficient to determine whether a nigori node
// is migrated to support keystore encryption. In addition though, we also
// want to verify the conditions for proper keystore encryption functionality.
// 1. Passphrase type is set.
// 2. Frozen keybag is true
// 3. If passphrase state is keystore, keystore_decryptor_token is set.
bool IsNigoriMigratedToKeystore(const sync_pb::NigoriSpecifics& nigori) {
if (!nigori.has_passphrase_type())
return false;
if (!nigori.keybag_is_frozen())
return false;
if (nigori.passphrase_type() == sync_pb::NigoriSpecifics::IMPLICIT_PASSPHRASE)
return false;
if (nigori.passphrase_type() ==
sync_pb::NigoriSpecifics::KEYSTORE_PASSPHRASE &&
nigori.keystore_decryptor_token().blob().empty())
return false;
return true;
}
PassphraseType ProtoPassphraseTypeToEnum(
sync_pb::NigoriSpecifics::PassphraseType type) {
switch (type) {
case sync_pb::NigoriSpecifics::IMPLICIT_PASSPHRASE:
return IMPLICIT_PASSPHRASE;
case sync_pb::NigoriSpecifics::KEYSTORE_PASSPHRASE:
return KEYSTORE_PASSPHRASE;
case sync_pb::NigoriSpecifics::CUSTOM_PASSPHRASE:
return CUSTOM_PASSPHRASE;
case sync_pb::NigoriSpecifics::FROZEN_IMPLICIT_PASSPHRASE:
return FROZEN_IMPLICIT_PASSPHRASE;
default:
NOTREACHED();
return IMPLICIT_PASSPHRASE;
}
}
sync_pb::NigoriSpecifics::PassphraseType EnumPassphraseTypeToProto(
PassphraseType type) {
switch (type) {
case IMPLICIT_PASSPHRASE:
return sync_pb::NigoriSpecifics::IMPLICIT_PASSPHRASE;
case KEYSTORE_PASSPHRASE:
return sync_pb::NigoriSpecifics::KEYSTORE_PASSPHRASE;
case CUSTOM_PASSPHRASE:
return sync_pb::NigoriSpecifics::CUSTOM_PASSPHRASE;
case FROZEN_IMPLICIT_PASSPHRASE:
return sync_pb::NigoriSpecifics::FROZEN_IMPLICIT_PASSPHRASE;
default:
NOTREACHED();
return sync_pb::NigoriSpecifics::IMPLICIT_PASSPHRASE;
}
}
bool IsExplicitPassphrase(PassphraseType type) {
return type == CUSTOM_PASSPHRASE || type == FROZEN_IMPLICIT_PASSPHRASE;
}
// Keystore Bootstrap Token helper methods.
// The bootstrap is a base64 encoded, encrypted, ListValue of keystore key
// strings, with the current keystore key as the last value in the list.
std::string PackKeystoreBootstrapToken(
const std::vector<std::string>& old_keystore_keys,
const std::string& current_keystore_key,
Encryptor* encryptor) {
if (current_keystore_key.empty())
return std::string();
base::ListValue keystore_key_values;
for (size_t i = 0; i < old_keystore_keys.size(); ++i)
keystore_key_values.AppendString(old_keystore_keys[i]);
keystore_key_values.AppendString(current_keystore_key);
// Update the bootstrap token.
// The bootstrap is a base64 encoded, encrypted, ListValue of keystore key
// strings, with the current keystore key as the last value in the list.
std::string serialized_keystores;
JSONStringValueSerializer json(&serialized_keystores);
json.Serialize(keystore_key_values);
std::string encrypted_keystores;
encryptor->EncryptString(serialized_keystores, &encrypted_keystores);
std::string keystore_bootstrap;
base::Base64Encode(encrypted_keystores, &keystore_bootstrap);
return keystore_bootstrap;
}
bool UnpackKeystoreBootstrapToken(const std::string& keystore_bootstrap_token,
Encryptor* encryptor,
std::vector<std::string>* old_keystore_keys,
std::string* current_keystore_key) {
if (keystore_bootstrap_token.empty())
return false;
std::string base64_decoded_keystore_bootstrap;
if (!base::Base64Decode(keystore_bootstrap_token,
&base64_decoded_keystore_bootstrap)) {
return false;
}
std::string decrypted_keystore_bootstrap;
if (!encryptor->DecryptString(base64_decoded_keystore_bootstrap,
&decrypted_keystore_bootstrap)) {
return false;
}
JSONStringValueDeserializer json(decrypted_keystore_bootstrap);
std::unique_ptr<base::Value> deserialized_keystore_keys(
json.Deserialize(NULL, NULL));
if (!deserialized_keystore_keys)
return false;
base::ListValue* internal_list_value = NULL;
if (!deserialized_keystore_keys->GetAsList(&internal_list_value))
return false;
int number_of_keystore_keys = internal_list_value->GetSize();
if (!internal_list_value->GetString(number_of_keystore_keys - 1,
current_keystore_key)) {
return false;
}
old_keystore_keys->resize(number_of_keystore_keys - 1);
for (int i = 0; i < number_of_keystore_keys - 1; ++i)
internal_list_value->GetString(i, &(*old_keystore_keys)[i]);
return true;
}
} // namespace
SyncEncryptionHandlerImpl::Vault::Vault(Encryptor* encryptor,
ModelTypeSet encrypted_types)
: cryptographer(encryptor), encrypted_types(encrypted_types) {}
SyncEncryptionHandlerImpl::Vault::~Vault() {}
SyncEncryptionHandlerImpl::SyncEncryptionHandlerImpl(
UserShare* user_share,
Encryptor* encryptor,
const std::string& restored_key_for_bootstrapping,
const std::string& restored_keystore_key_for_bootstrapping)
: user_share_(user_share),
vault_unsafe_(encryptor, SensitiveTypes()),
encrypt_everything_(false),
passphrase_type_(IMPLICIT_PASSPHRASE),
nigori_overwrite_count_(0),
weak_ptr_factory_(this) {
// Restore the cryptographer's previous keys. Note that we don't add the
// keystore keys into the cryptographer here, in case a migration was pending.
vault_unsafe_.cryptographer.Bootstrap(restored_key_for_bootstrapping);
// If this fails, we won't have a valid keystore key, and will simply request
// new ones from the server on the next DownloadUpdates.
UnpackKeystoreBootstrapToken(restored_keystore_key_for_bootstrapping,
encryptor, &old_keystore_keys_, &keystore_key_);
}
SyncEncryptionHandlerImpl::~SyncEncryptionHandlerImpl() {}
void SyncEncryptionHandlerImpl::AddObserver(Observer* observer) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(!observers_.HasObserver(observer));
observers_.AddObserver(observer);
}
void SyncEncryptionHandlerImpl::RemoveObserver(Observer* observer) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(observers_.HasObserver(observer));
observers_.RemoveObserver(observer);
}
void SyncEncryptionHandlerImpl::Init() {
DCHECK(thread_checker_.CalledOnValidThread());
WriteTransaction trans(FROM_HERE, user_share_);
WriteNode node(&trans);
if (node.InitTypeRoot(NIGORI) != BaseNode::INIT_OK)
return;
if (!ApplyNigoriUpdateImpl(node.GetNigoriSpecifics(),
trans.GetWrappedTrans())) {
WriteEncryptionStateToNigori(&trans);
}
UMA_HISTOGRAM_ENUMERATION("Sync.PassphraseType", GetPassphraseType(),
PASSPHRASE_TYPE_SIZE);
bool has_pending_keys =
UnlockVault(trans.GetWrappedTrans()).cryptographer.has_pending_keys();
bool is_ready = UnlockVault(trans.GetWrappedTrans()).cryptographer.is_ready();
// Log the state of the cryptographer regardless of migration state.
UMA_HISTOGRAM_BOOLEAN("Sync.CryptographerReady", is_ready);
UMA_HISTOGRAM_BOOLEAN("Sync.CryptographerPendingKeys", has_pending_keys);
if (IsNigoriMigratedToKeystore(node.GetNigoriSpecifics())) {
// This account has a nigori node that has been migrated to support
// keystore.
UMA_HISTOGRAM_ENUMERATION("Sync.NigoriMigrationState", MIGRATED,
MIGRATION_STATE_SIZE);
if (has_pending_keys && passphrase_type_ == KEYSTORE_PASSPHRASE) {
// If this is happening, it means the keystore decryptor is either
// undecryptable with the available keystore keys or does not match the
// nigori keybag's encryption key. Otherwise we're simply missing the
// keystore key.
UMA_HISTOGRAM_BOOLEAN("Sync.KeystoreDecryptionFailed",
!keystore_key_.empty());
}
} else if (!is_ready) {
// Migration cannot occur until the cryptographer is ready (initialized
// with GAIA password and any pending keys resolved).
UMA_HISTOGRAM_ENUMERATION("Sync.NigoriMigrationState",
NOT_MIGRATED_CRYPTO_NOT_READY,
MIGRATION_STATE_SIZE);
} else if (keystore_key_.empty()) {
// The client has no keystore key, either because it is not yet enabled or
// the server is not sending a valid keystore key.
UMA_HISTOGRAM_ENUMERATION("Sync.NigoriMigrationState",
NOT_MIGRATED_NO_KEYSTORE_KEY,
MIGRATION_STATE_SIZE);
} else {
// If the above conditions have been met and the nigori node is still not
// migrated, something failed in the migration process.
UMA_HISTOGRAM_ENUMERATION("Sync.NigoriMigrationState",
NOT_MIGRATED_UNKNOWN_REASON,
MIGRATION_STATE_SIZE);
}
// Always trigger an encrypted types and cryptographer state change event at
// init time so observers get the initial values.
FOR_EACH_OBSERVER(Observer, observers_,
OnEncryptedTypesChanged(
UnlockVault(trans.GetWrappedTrans()).encrypted_types,
encrypt_everything_));
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnCryptographerStateChanged(
&UnlockVaultMutable(trans.GetWrappedTrans())->cryptographer));
// If the cryptographer is not ready (either it has pending keys or we
// failed to initialize it), we don't want to try and re-encrypt the data.
// If we had encrypted types, the DataTypeManager will block, preventing
// sync from happening until the the passphrase is provided.
if (UnlockVault(trans.GetWrappedTrans()).cryptographer.is_ready())
ReEncryptEverything(&trans);
}
void SyncEncryptionHandlerImpl::SetEncryptionPassphrase(
const std::string& passphrase,
bool is_explicit) {
DCHECK(thread_checker_.CalledOnValidThread());
// We do not accept empty passphrases.
if (passphrase.empty()) {
NOTREACHED() << "Cannot encrypt with an empty passphrase.";
return;
}
// All accesses to the cryptographer are protected by a transaction.
WriteTransaction trans(FROM_HERE, user_share_);
KeyParams key_params = {"localhost", "dummy", passphrase};
WriteNode node(&trans);
if (node.InitTypeRoot(NIGORI) != BaseNode::INIT_OK) {
NOTREACHED();
return;
}
Cryptographer* cryptographer =
&UnlockVaultMutable(trans.GetWrappedTrans())->cryptographer;
// Once we've migrated to keystore, the only way to set a passphrase for
// encryption is to set a custom passphrase.
if (IsNigoriMigratedToKeystore(node.GetNigoriSpecifics())) {
if (!is_explicit) {
// The user is setting a new implicit passphrase. At this point we don't
// care, so drop it on the floor. This is safe because if we have a
// migrated nigori node, then we don't need to create an initial
// encryption key.
LOG(WARNING) << "Ignoring new implicit passphrase. Keystore migration "
<< "already performed.";
return;
}
// Will fail if we already have an explicit passphrase or we have pending
// keys.
SetCustomPassphrase(passphrase, &trans, &node);
// When keystore migration occurs, the "CustomEncryption" UMA stat must be
// logged as true.
UMA_HISTOGRAM_BOOLEAN("Sync.CustomEncryption", true);
return;
}
std::string bootstrap_token;
sync_pb::EncryptedData pending_keys;
if (cryptographer->has_pending_keys())
pending_keys = cryptographer->GetPendingKeys();
bool success = false;
// There are six cases to handle here:
// 1. The user has no pending keys and is setting their current GAIA password
// as the encryption passphrase. This happens either during first time sync
// with a clean profile, or after re-authenticating on a profile that was
// already signed in with the cryptographer ready.
// 2. The user has no pending keys, and is overwriting an (already provided)
// implicit passphrase with an explicit (custom) passphrase.
// 3. The user has pending keys for an explicit passphrase that is somehow set
// to their current GAIA passphrase.
// 4. The user has pending keys encrypted with their current GAIA passphrase
// and the caller passes in the current GAIA passphrase.
// 5. The user has pending keys encrypted with an older GAIA passphrase
// and the caller passes in the current GAIA passphrase.
// 6. The user has previously done encryption with an explicit passphrase.
// Furthermore, we enforce the fact that the bootstrap encryption token will
// always be derived from the newest GAIA password if the account is using
// an implicit passphrase (even if the data is encrypted with an old GAIA
// password). If the account is using an explicit (custom) passphrase, the
// bootstrap token will be derived from the most recently provided explicit
// passphrase (that was able to decrypt the data).
if (!IsExplicitPassphrase(passphrase_type_)) {
if (!cryptographer->has_pending_keys()) {
if (cryptographer->AddKey(key_params)) {
// Case 1 and 2. We set a new GAIA passphrase when there are no pending
// keys (1), or overwriting an implicit passphrase with a new explicit
// one (2) when there are no pending keys.
if (is_explicit) {
DVLOG(1) << "Setting explicit passphrase for encryption.";
passphrase_type_ = CUSTOM_PASSPHRASE;
custom_passphrase_time_ = base::Time::Now();
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseTypeChanged(
passphrase_type_, GetExplicitPassphraseTime()));
} else {
DVLOG(1) << "Setting implicit passphrase for encryption.";
}
cryptographer->GetBootstrapToken(&bootstrap_token);
// With M26, sync accounts can be in only one of two encryption states:
// 1) Encrypt only passwords with an implicit passphrase.
// 2) Encrypt all sync datatypes with an explicit passphrase.
// We deprecate the "EncryptAllData" and "CustomPassphrase" histograms,
// and keep track of an account's encryption state via the
// "CustomEncryption" histogram. See http://crbug.com/131478.
UMA_HISTOGRAM_BOOLEAN("Sync.CustomEncryption", is_explicit);
success = true;
} else {
NOTREACHED() << "Failed to add key to cryptographer.";
success = false;
}
} else { // cryptographer->has_pending_keys() == true
if (is_explicit) {
// This can only happen if the nigori node is updated with a new
// implicit passphrase while a client is attempting to set a new custom
// passphrase (race condition).
DVLOG(1) << "Failing because an implicit passphrase is already set.";
success = false;
} else { // is_explicit == false
if (cryptographer->DecryptPendingKeys(key_params)) {
// Case 4. We successfully decrypted with the implicit GAIA passphrase
// passed in.
DVLOG(1) << "Implicit internal passphrase accepted for decryption.";
cryptographer->GetBootstrapToken(&bootstrap_token);
success = true;
} else {
// Case 5. Encryption was done with an old GAIA password, but we were
// provided with the current GAIA password. We need to generate a new
// bootstrap token to preserve it. We build a temporary cryptographer
// to allow us to extract these params without polluting our current
// cryptographer.
DVLOG(1) << "Implicit internal passphrase failed to decrypt, adding "
<< "anyways as default passphrase and persisting via "
<< "bootstrap token.";
Cryptographer temp_cryptographer(cryptographer->encryptor());
temp_cryptographer.AddKey(key_params);
temp_cryptographer.GetBootstrapToken(&bootstrap_token);
// We then set the new passphrase as the default passphrase of the
// real cryptographer, even though we have pending keys. This is safe,
// as although Cryptographer::is_initialized() will now be true,
// is_ready() will remain false due to having pending keys.
cryptographer->AddKey(key_params);
success = false;
}
} // is_explicit
} // cryptographer->has_pending_keys()
} else { // IsExplicitPassphrase(passphrase_type_) == true.
// Case 6. We do not want to override a previously set explicit passphrase,
// so we return a failure.
DVLOG(1) << "Failing because an explicit passphrase is already set.";
success = false;
}
DVLOG_IF(1, !success)
<< "Failure in SetEncryptionPassphrase; notifying and returning.";
DVLOG_IF(1, success)
<< "Successfully set encryption passphrase; updating nigori and "
"reencrypting.";
FinishSetPassphrase(success, bootstrap_token, &trans, &node);
}
void SyncEncryptionHandlerImpl::SetDecryptionPassphrase(
const std::string& passphrase) {
DCHECK(thread_checker_.CalledOnValidThread());
// We do not accept empty passphrases.
if (passphrase.empty()) {
NOTREACHED() << "Cannot decrypt with an empty passphrase.";
return;
}
// All accesses to the cryptographer are protected by a transaction.
WriteTransaction trans(FROM_HERE, user_share_);
KeyParams key_params = {"localhost", "dummy", passphrase};
WriteNode node(&trans);
if (node.InitTypeRoot(NIGORI) != BaseNode::INIT_OK) {
NOTREACHED();
return;
}
// Once we've migrated to keystore, we're only ever decrypting keys derived
// from an explicit passphrase. But, for clients without a keystore key yet
// (either not on by default or failed to download one), we still support
// decrypting with a gaia passphrase, and therefore bypass the
// DecryptPendingKeysWithExplicitPassphrase logic.
if (IsNigoriMigratedToKeystore(node.GetNigoriSpecifics()) &&
IsExplicitPassphrase(passphrase_type_)) {
DecryptPendingKeysWithExplicitPassphrase(passphrase, &trans, &node);
return;
}
Cryptographer* cryptographer =
&UnlockVaultMutable(trans.GetWrappedTrans())->cryptographer;
if (!cryptographer->has_pending_keys()) {
// Note that this *can* happen in a rare situation where data is
// re-encrypted on another client while a SetDecryptionPassphrase() call is
// in-flight on this client. It is rare enough that we choose to do nothing.
NOTREACHED() << "Attempt to set decryption passphrase failed because there "
<< "were no pending keys.";
return;
}
std::string bootstrap_token;
sync_pb::EncryptedData pending_keys;
pending_keys = cryptographer->GetPendingKeys();
bool success = false;
// There are three cases to handle here:
// 7. We're using the current GAIA password to decrypt the pending keys. This
// happens when signing in to an account with a previously set implicit
// passphrase, where the data is already encrypted with the newest GAIA
// password.
// 8. The user is providing an old GAIA password to decrypt the pending keys.
// In this case, the user is using an implicit passphrase, but has changed
// their password since they last encrypted their data, and therefore
// their current GAIA password was unable to decrypt the data. This will
// happen when the user is setting up a new profile with a previously
// encrypted account (after changing passwords).
// 9. The user is providing a previously set explicit passphrase to decrypt
// the pending keys.
if (!IsExplicitPassphrase(passphrase_type_)) {
if (cryptographer->is_initialized()) {
// We only want to change the default encryption key to the pending
// one if the pending keybag already contains the current default.
// This covers the case where a different client re-encrypted
// everything with a newer gaia passphrase (and hence the keybag
// contains keys from all previously used gaia passphrases).
// Otherwise, we're in a situation where the pending keys are
// encrypted with an old gaia passphrase, while the default is the
// current gaia passphrase. In that case, we preserve the default.
Cryptographer temp_cryptographer(cryptographer->encryptor());
temp_cryptographer.SetPendingKeys(cryptographer->GetPendingKeys());
if (temp_cryptographer.DecryptPendingKeys(key_params)) {
// Check to see if the pending bag of keys contains the current
// default key.
sync_pb::EncryptedData encrypted;
cryptographer->GetKeys(&encrypted);
if (temp_cryptographer.CanDecrypt(encrypted)) {
DVLOG(1) << "Implicit user provided passphrase accepted for "
<< "decryption, overwriting default.";
// Case 7. The pending keybag contains the current default. Go ahead
// and update the cryptographer, letting the default change.
cryptographer->DecryptPendingKeys(key_params);
cryptographer->GetBootstrapToken(&bootstrap_token);
success = true;
} else {
// Case 8. The pending keybag does not contain the current default
// encryption key. We decrypt the pending keys here, and in
// FinishSetPassphrase, re-encrypt everything with the current GAIA
// passphrase instead of the passphrase just provided by the user.
DVLOG(1) << "Implicit user provided passphrase accepted for "
<< "decryption, restoring implicit internal passphrase "
<< "as default.";
std::string bootstrap_token_from_current_key;
cryptographer->GetBootstrapToken(&bootstrap_token_from_current_key);
cryptographer->DecryptPendingKeys(key_params);
// Overwrite the default from the pending keys.
cryptographer->AddKeyFromBootstrapToken(
bootstrap_token_from_current_key);
success = true;
}
} else { // !temp_cryptographer.DecryptPendingKeys(..)
DVLOG(1) << "Implicit user provided passphrase failed to decrypt.";
success = false;
} // temp_cryptographer.DecryptPendingKeys(...)
} else { // cryptographer->is_initialized() == false
if (cryptographer->DecryptPendingKeys(key_params)) {
// This can happpen in two cases:
// - First time sync on android, where we'll never have a
// !user_provided passphrase.
// - This is a restart for a client that lost their bootstrap token.
// In both cases, we should go ahead and initialize the cryptographer
// and persist the new bootstrap token.
//
// Note: at this point, we cannot distinguish between cases 7 and 8
// above. This user provided passphrase could be the current or the
// old. But, as long as we persist the token, there's nothing more
// we can do.
cryptographer->GetBootstrapToken(&bootstrap_token);
DVLOG(1) << "Implicit user provided passphrase accepted, initializing"
<< " cryptographer.";
success = true;
} else {
DVLOG(1) << "Implicit user provided passphrase failed to decrypt.";
success = false;
}
} // cryptographer->is_initialized()
} else { // nigori_has_explicit_passphrase == true
// Case 9. Encryption was done with an explicit passphrase, and we decrypt
// with the passphrase provided by the user.
if (cryptographer->DecryptPendingKeys(key_params)) {
DVLOG(1) << "Explicit passphrase accepted for decryption.";
cryptographer->GetBootstrapToken(&bootstrap_token);
success = true;
} else {
DVLOG(1) << "Explicit passphrase failed to decrypt.";
success = false;
}
} // nigori_has_explicit_passphrase
DVLOG_IF(1, !success)
<< "Failure in SetDecryptionPassphrase; notifying and returning.";
DVLOG_IF(1, success)
<< "Successfully set decryption passphrase; updating nigori and "
"reencrypting.";
FinishSetPassphrase(success, bootstrap_token, &trans, &node);
}
void SyncEncryptionHandlerImpl::EnableEncryptEverything() {
DCHECK(thread_checker_.CalledOnValidThread());
WriteTransaction trans(FROM_HERE, user_share_);
DVLOG(1) << "Enabling encrypt everything.";
if (encrypt_everything_)
return;
EnableEncryptEverythingImpl(trans.GetWrappedTrans());
WriteEncryptionStateToNigori(&trans);
if (UnlockVault(trans.GetWrappedTrans()).cryptographer.is_ready())
ReEncryptEverything(&trans);
}
bool SyncEncryptionHandlerImpl::IsEncryptEverythingEnabled() const {
DCHECK(thread_checker_.CalledOnValidThread());
return encrypt_everything_;
}
PassphraseType SyncEncryptionHandlerImpl::GetPassphraseType() const {
DCHECK(thread_checker_.CalledOnValidThread());
return passphrase_type_;
}
// Note: this is called from within a syncable transaction, so we need to post
// tasks if we want to do any work that creates a new sync_api transaction.
void SyncEncryptionHandlerImpl::ApplyNigoriUpdate(
const sync_pb::NigoriSpecifics& nigori,
syncable::BaseTransaction* const trans) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(trans);
if (!ApplyNigoriUpdateImpl(nigori, trans)) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::Bind(&SyncEncryptionHandlerImpl::RewriteNigori,
weak_ptr_factory_.GetWeakPtr()));
}
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnCryptographerStateChanged(&UnlockVaultMutable(trans)->cryptographer));
}
void SyncEncryptionHandlerImpl::UpdateNigoriFromEncryptedTypes(
sync_pb::NigoriSpecifics* nigori,
syncable::BaseTransaction* const trans) const {
DCHECK(thread_checker_.CalledOnValidThread());
syncable::UpdateNigoriFromEncryptedTypes(UnlockVault(trans).encrypted_types,
encrypt_everything_, nigori);
}
bool SyncEncryptionHandlerImpl::NeedKeystoreKey(
syncable::BaseTransaction* const trans) const {
DCHECK(thread_checker_.CalledOnValidThread());
return keystore_key_.empty();
}
bool SyncEncryptionHandlerImpl::SetKeystoreKeys(
const google::protobuf::RepeatedPtrField<google::protobuf::string>& keys,
syncable::BaseTransaction* const trans) {
DCHECK(thread_checker_.CalledOnValidThread());
if (keys.size() == 0)
return false;
// The last key in the vector is the current keystore key. The others are kept
// around for decryption only.
const std::string& raw_keystore_key = keys.Get(keys.size() - 1);
if (raw_keystore_key.empty())
return false;
// Note: in order to Pack the keys, they must all be base64 encoded (else
// JSON serialization fails).
base::Base64Encode(raw_keystore_key, &keystore_key_);
// Go through and save the old keystore keys. We always persist all keystore
// keys the server sends us.
old_keystore_keys_.resize(keys.size() - 1);
for (int i = 0; i < keys.size() - 1; ++i)
base::Base64Encode(keys.Get(i), &old_keystore_keys_[i]);
Cryptographer* cryptographer = &UnlockVaultMutable(trans)->cryptographer;
// Update the bootstrap token. If this fails, we persist an empty string,
// which will force us to download the keystore keys again on the next
// restart.
std::string keystore_bootstrap = PackKeystoreBootstrapToken(
old_keystore_keys_, keystore_key_, cryptographer->encryptor());
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnBootstrapTokenUpdated(keystore_bootstrap, KEYSTORE_BOOTSTRAP_TOKEN));
DVLOG(1) << "Keystore bootstrap token updated.";
// If this is a first time sync, we get the encryption keys before we process
// the nigori node. Just return for now, ApplyNigoriUpdate will be invoked
// once we have the nigori node.
syncable::Entry entry(trans, syncable::GET_TYPE_ROOT, NIGORI);
if (!entry.good())
return true;
const sync_pb::NigoriSpecifics& nigori = entry.GetSpecifics().nigori();
if (cryptographer->has_pending_keys() && IsNigoriMigratedToKeystore(nigori) &&
!nigori.keystore_decryptor_token().blob().empty()) {
// If the nigori is already migrated and we have pending keys, we might
// be able to decrypt them using either the keystore decryptor token
// or the existing keystore keys.
DecryptPendingKeysWithKeystoreKey(
keystore_key_, nigori.keystore_decryptor_token(), cryptographer);
}
// Note that triggering migration will have no effect if we're already
// properly migrated with the newest keystore keys.
if (ShouldTriggerMigration(nigori, *cryptographer)) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::Bind(&SyncEncryptionHandlerImpl::RewriteNigori,
weak_ptr_factory_.GetWeakPtr()));
}
return true;
}
ModelTypeSet SyncEncryptionHandlerImpl::GetEncryptedTypes(
syncable::BaseTransaction* const trans) const {
return UnlockVault(trans).encrypted_types;
}
Cryptographer* SyncEncryptionHandlerImpl::GetCryptographerUnsafe() {
DCHECK(thread_checker_.CalledOnValidThread());
return &vault_unsafe_.cryptographer;
}
ModelTypeSet SyncEncryptionHandlerImpl::GetEncryptedTypesUnsafe() {
DCHECK(thread_checker_.CalledOnValidThread());
return vault_unsafe_.encrypted_types;
}
bool SyncEncryptionHandlerImpl::MigratedToKeystore() {
DCHECK(thread_checker_.CalledOnValidThread());
ReadTransaction trans(FROM_HERE, user_share_);
ReadNode nigori_node(&trans);
if (nigori_node.InitTypeRoot(NIGORI) != BaseNode::INIT_OK)
return false;
return IsNigoriMigratedToKeystore(nigori_node.GetNigoriSpecifics());
}
base::Time SyncEncryptionHandlerImpl::migration_time() const {
return migration_time_;
}
base::Time SyncEncryptionHandlerImpl::custom_passphrase_time() const {
return custom_passphrase_time_;
}
void SyncEncryptionHandlerImpl::RestoreNigori(
const SyncEncryptionHandler::NigoriState& nigori_state) {
DCHECK(thread_checker_.CalledOnValidThread());
WriteTransaction trans(FROM_HERE, user_share_);
// Verify we don't already have a nigori node.
WriteNode nigori_node(&trans);
BaseNode::InitByLookupResult init_result = nigori_node.InitTypeRoot(NIGORI);
DCHECK(init_result == BaseNode::INIT_FAILED_ENTRY_NOT_GOOD);
// Create one.
syncable::ModelNeutralMutableEntry model_neutral_mutable_entry(
trans.GetWrappedWriteTrans(), syncable::CREATE_NEW_TYPE_ROOT, NIGORI);
DCHECK(model_neutral_mutable_entry.good());
model_neutral_mutable_entry.PutServerIsDir(true);
model_neutral_mutable_entry.PutUniqueServerTag(ModelTypeToRootTag(NIGORI));
model_neutral_mutable_entry.PutIsUnsynced(true);
// Update it with the saved nigori specifics.
syncable::MutableEntry mutable_entry(trans.GetWrappedWriteTrans(),
syncable::GET_TYPE_ROOT, NIGORI);
DCHECK(mutable_entry.good());
sync_pb::EntitySpecifics specifics;
specifics.mutable_nigori()->CopyFrom(nigori_state.nigori_specifics);
mutable_entry.PutSpecifics(specifics);
// Update our state based on the saved nigori node.
ApplyNigoriUpdate(nigori_state.nigori_specifics, trans.GetWrappedTrans());
}
// This function iterates over all encrypted types. There are many scenarios in
// which data for some or all types is not currently available. In that case,
// the lookup of the root node will fail and we will skip encryption for that
// type.
void SyncEncryptionHandlerImpl::ReEncryptEverything(WriteTransaction* trans) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(UnlockVault(trans->GetWrappedTrans()).cryptographer.is_ready());
for (ModelTypeSet::Iterator iter =
UnlockVault(trans->GetWrappedTrans()).encrypted_types.First();
iter.Good(); iter.Inc()) {
if (iter.Get() == PASSWORDS || IsControlType(iter.Get()))
continue; // These types handle encryption differently.
ReadNode type_root(trans);
if (type_root.InitTypeRoot(iter.Get()) != BaseNode::INIT_OK)
continue; // Don't try to reencrypt if the type's data is unavailable.
// Iterate through all children of this datatype.
std::queue<int64_t> to_visit;
int64_t child_id = type_root.GetFirstChildId();
to_visit.push(child_id);
while (!to_visit.empty()) {
child_id = to_visit.front();
to_visit.pop();
if (child_id == kInvalidId)
continue;
WriteNode child(trans);
if (child.InitByIdLookup(child_id) != BaseNode::INIT_OK)
continue; // Possible for locally deleted items.
if (child.GetIsFolder()) {
to_visit.push(child.GetFirstChildId());
}
if (!child.GetIsPermanentFolder()) {
// Rewrite the specifics of the node with encrypted data if necessary
// (only rewrite the non-unique folders).
child.ResetFromSpecifics();
}
to_visit.push(child.GetSuccessorId());
}
}
// Passwords are encrypted with their own legacy scheme. Passwords are always
// encrypted so we don't need to check GetEncryptedTypes() here.
ReadNode passwords_root(trans);
if (passwords_root.InitTypeRoot(PASSWORDS) == BaseNode::INIT_OK) {
int64_t child_id = passwords_root.GetFirstChildId();
while (child_id != kInvalidId) {
WriteNode child(trans);
if (child.InitByIdLookup(child_id) != BaseNode::INIT_OK)
break; // Possible if we failed to decrypt the data for some reason.
child.SetPasswordSpecifics(child.GetPasswordSpecifics());
child_id = child.GetSuccessorId();
}
}
DVLOG(1) << "Re-encrypt everything complete.";
// NOTE: We notify from within a transaction.
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnEncryptionComplete());
}
bool SyncEncryptionHandlerImpl::ApplyNigoriUpdateImpl(
const sync_pb::NigoriSpecifics& nigori,
syncable::BaseTransaction* const trans) {
DCHECK(thread_checker_.CalledOnValidThread());
DVLOG(1) << "Applying nigori node update.";
bool nigori_types_need_update =
!UpdateEncryptedTypesFromNigori(nigori, trans);
if (nigori.custom_passphrase_time() != 0) {
custom_passphrase_time_ = ProtoTimeToTime(nigori.custom_passphrase_time());
}
bool is_nigori_migrated = IsNigoriMigratedToKeystore(nigori);
if (is_nigori_migrated) {
migration_time_ = ProtoTimeToTime(nigori.keystore_migration_time());
PassphraseType nigori_passphrase_type =
ProtoPassphraseTypeToEnum(nigori.passphrase_type());
// Only update the local passphrase state if it's a valid transition:
// - implicit -> keystore
// - implicit -> frozen implicit
// - implicit -> custom
// - keystore -> custom
// Note: frozen implicit -> custom is not technically a valid transition,
// but we let it through here as well in case future versions do add support
// for this transition.
if (passphrase_type_ != nigori_passphrase_type &&
nigori_passphrase_type != IMPLICIT_PASSPHRASE &&
(passphrase_type_ == IMPLICIT_PASSPHRASE ||
nigori_passphrase_type == CUSTOM_PASSPHRASE)) {
DVLOG(1) << "Changing passphrase state from "
<< PassphraseTypeToString(passphrase_type_) << " to "
<< PassphraseTypeToString(nigori_passphrase_type);
passphrase_type_ = nigori_passphrase_type;
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseTypeChanged(passphrase_type_,
GetExplicitPassphraseTime()));
}
if (passphrase_type_ == KEYSTORE_PASSPHRASE && encrypt_everything_) {
// This is the case where another client that didn't support keystore
// encryption attempted to enable full encryption. We detect it
// and switch the passphrase type to frozen implicit passphrase instead
// due to full encryption not being compatible with keystore passphrase.
// Because the local passphrase type will not match the nigori passphrase
// type, we will trigger a rewrite and subsequently a re-migration.
DVLOG(1) << "Changing passphrase state to FROZEN_IMPLICIT_PASSPHRASE "
<< "due to full encryption.";
passphrase_type_ = FROZEN_IMPLICIT_PASSPHRASE;
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseTypeChanged(passphrase_type_,
GetExplicitPassphraseTime()));
}
} else {
// It's possible that while we're waiting for migration a client that does
// not have keystore encryption enabled switches to a custom passphrase.
if (nigori.keybag_is_frozen() && passphrase_type_ != CUSTOM_PASSPHRASE) {
passphrase_type_ = CUSTOM_PASSPHRASE;
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseTypeChanged(passphrase_type_,
GetExplicitPassphraseTime()));
}
}
Cryptographer* cryptographer = &UnlockVaultMutable(trans)->cryptographer;
bool nigori_needs_new_keys = false;
if (!nigori.encryption_keybag().blob().empty()) {
// We only update the default key if this was a new explicit passphrase.
// Else, since it was decryptable, it must not have been a new key.
bool need_new_default_key = false;
if (is_nigori_migrated) {
need_new_default_key = IsExplicitPassphrase(
ProtoPassphraseTypeToEnum(nigori.passphrase_type()));
} else {
need_new_default_key = nigori.keybag_is_frozen();
}
if (!AttemptToInstallKeybag(nigori.encryption_keybag(),
need_new_default_key, cryptographer)) {
// Check to see if we can decrypt the keybag using the keystore decryptor
// token.
cryptographer->SetPendingKeys(nigori.encryption_keybag());
if (!nigori.keystore_decryptor_token().blob().empty() &&
!keystore_key_.empty()) {
if (DecryptPendingKeysWithKeystoreKey(keystore_key_,
nigori.keystore_decryptor_token(),
cryptographer)) {
nigori_needs_new_keys =
cryptographer->KeybagIsStale(nigori.encryption_keybag());
} else {
LOG(ERROR) << "Failed to decrypt pending keys using keystore "
<< "bootstrap key.";
}
}
} else {
// Keybag was installed. We write back our local keybag into the nigori
// node if the nigori node's keybag either contains less keys or
// has a different default key.
nigori_needs_new_keys =
cryptographer->KeybagIsStale(nigori.encryption_keybag());
}
} else {
// The nigori node has an empty encryption keybag. Attempt to write our
// local encryption keys into it.
LOG(WARNING) << "Nigori had empty encryption keybag.";
nigori_needs_new_keys = true;
}
// If we've completed a sync cycle and the cryptographer isn't ready
// yet or has pending keys, prompt the user for a passphrase.
if (cryptographer->has_pending_keys()) {
DVLOG(1) << "OnPassphraseRequired Sent";
sync_pb::EncryptedData pending_keys = cryptographer->GetPendingKeys();
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseRequired(REASON_DECRYPTION, pending_keys));
} else if (!cryptographer->is_ready()) {
DVLOG(1) << "OnPassphraseRequired sent because cryptographer is not "
<< "ready";
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnPassphraseRequired(REASON_ENCRYPTION, sync_pb::EncryptedData()));
}
// Check if the current local encryption state is stricter/newer than the
// nigori state. If so, we need to overwrite the nigori node with the local
// state.
bool passphrase_type_matches = true;
if (!is_nigori_migrated) {
DCHECK(passphrase_type_ == CUSTOM_PASSPHRASE ||
passphrase_type_ == IMPLICIT_PASSPHRASE);
passphrase_type_matches =
nigori.keybag_is_frozen() == IsExplicitPassphrase(passphrase_type_);
} else {
passphrase_type_matches =
(ProtoPassphraseTypeToEnum(nigori.passphrase_type()) ==
passphrase_type_);
}
if (!passphrase_type_matches ||
nigori.encrypt_everything() != encrypt_everything_ ||
nigori_types_need_update || nigori_needs_new_keys) {
DVLOG(1) << "Triggering nigori rewrite.";
return false;
}
return true;
}
void SyncEncryptionHandlerImpl::RewriteNigori() {
DVLOG(1) << "Writing local encryption state into nigori.";
DCHECK(thread_checker_.CalledOnValidThread());
WriteTransaction trans(FROM_HERE, user_share_);
WriteEncryptionStateToNigori(&trans);
}
void SyncEncryptionHandlerImpl::WriteEncryptionStateToNigori(
WriteTransaction* trans) {
DCHECK(thread_checker_.CalledOnValidThread());
WriteNode nigori_node(trans);
// This can happen in tests that don't have nigori nodes.
if (nigori_node.InitTypeRoot(NIGORI) != BaseNode::INIT_OK)
return;
sync_pb::NigoriSpecifics nigori = nigori_node.GetNigoriSpecifics();
const Cryptographer& cryptographer =
UnlockVault(trans->GetWrappedTrans()).cryptographer;
// Will not do anything if we shouldn't or can't migrate. Otherwise
// migrates, writing the full encryption state as it does.
if (!AttemptToMigrateNigoriToKeystore(trans, &nigori_node)) {
if (cryptographer.is_ready() &&
nigori_overwrite_count_ < kNigoriOverwriteLimit) {
// Does not modify the encrypted blob if the unencrypted data already
// matches what is about to be written.
sync_pb::EncryptedData original_keys = nigori.encryption_keybag();
if (!cryptographer.GetKeys(nigori.mutable_encryption_keybag()))
NOTREACHED();
if (nigori.encryption_keybag().SerializeAsString() !=
original_keys.SerializeAsString()) {
// We've updated the nigori node's encryption keys. In order to prevent
// a possible looping of two clients constantly overwriting each other,
// we limit the absolute number of overwrites per client instantiation.
nigori_overwrite_count_++;
UMA_HISTOGRAM_COUNTS("Sync.AutoNigoriOverwrites",
nigori_overwrite_count_);
}
// Note: we don't try to set keybag_is_frozen here since if that
// is lost the user can always set it again (and we don't want to clobber
// any migration state). The main goal at this point is to preserve
// the encryption keys so all data remains decryptable.
}
syncable::UpdateNigoriFromEncryptedTypes(
UnlockVault(trans->GetWrappedTrans()).encrypted_types,
encrypt_everything_, &nigori);
if (!custom_passphrase_time_.is_null()) {
nigori.set_custom_passphrase_time(
TimeToProtoTime(custom_passphrase_time_));
}
// If nothing has changed, this is a no-op.
nigori_node.SetNigoriSpecifics(nigori);
}
}
bool SyncEncryptionHandlerImpl::UpdateEncryptedTypesFromNigori(
const sync_pb::NigoriSpecifics& nigori,
syncable::BaseTransaction* const trans) {
DCHECK(thread_checker_.CalledOnValidThread());
ModelTypeSet* encrypted_types = &UnlockVaultMutable(trans)->encrypted_types;
if (nigori.encrypt_everything()) {
EnableEncryptEverythingImpl(trans);
DCHECK(*encrypted_types == EncryptableUserTypes());
return true;
} else if (encrypt_everything_) {
DCHECK(*encrypted_types == EncryptableUserTypes());
return false;
}
ModelTypeSet nigori_encrypted_types;
nigori_encrypted_types = syncable::GetEncryptedTypesFromNigori(nigori);
nigori_encrypted_types.PutAll(SensitiveTypes());
// If anything more than the sensitive types were encrypted, and
// encrypt_everything is not explicitly set to false, we assume it means
// a client intended to enable encrypt everything.
if (!nigori.has_encrypt_everything() &&
!Difference(nigori_encrypted_types, SensitiveTypes()).Empty()) {
if (!encrypt_everything_) {
encrypt_everything_ = true;
*encrypted_types = EncryptableUserTypes();
FOR_EACH_OBSERVER(
Observer, observers_,
OnEncryptedTypesChanged(*encrypted_types, encrypt_everything_));
}
DCHECK(*encrypted_types == EncryptableUserTypes());
return false;
}
MergeEncryptedTypes(nigori_encrypted_types, trans);
return *encrypted_types == nigori_encrypted_types;
}
void SyncEncryptionHandlerImpl::SetCustomPassphrase(
const std::string& passphrase,
WriteTransaction* trans,
WriteNode* nigori_node) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(IsNigoriMigratedToKeystore(nigori_node->GetNigoriSpecifics()));
KeyParams key_params = {"localhost", "dummy", passphrase};
if (passphrase_type_ != KEYSTORE_PASSPHRASE) {
DVLOG(1) << "Failing to set a custom passphrase because one has already "
<< "been set.";
FinishSetPassphrase(false, std::string(), trans, nigori_node);
return;
}
Cryptographer* cryptographer =
&UnlockVaultMutable(trans->GetWrappedTrans())->cryptographer;
if (cryptographer->has_pending_keys()) {
// This theoretically shouldn't happen, because the only way to have pending
// keys after migrating to keystore support is if a custom passphrase was
// set, which should update passpshrase_state_ and should be caught by the
// if statement above. For the sake of safety though, we check for it in
// case a client is misbehaving.
LOG(ERROR) << "Failing to set custom passphrase because of pending keys.";
FinishSetPassphrase(false, std::string(), trans, nigori_node);
return;
}
std::string bootstrap_token;
if (!cryptographer->AddKey(key_params)) {
NOTREACHED() << "Failed to add key to cryptographer.";
return;
}
DVLOG(1) << "Setting custom passphrase.";
cryptographer->GetBootstrapToken(&bootstrap_token);
passphrase_type_ = CUSTOM_PASSPHRASE;
custom_passphrase_time_ = base::Time::Now();
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnPassphraseTypeChanged(passphrase_type_, GetExplicitPassphraseTime()));
FinishSetPassphrase(true, bootstrap_token, trans, nigori_node);
}
void SyncEncryptionHandlerImpl::NotifyObserversOfLocalCustomPassphrase(
WriteTransaction* trans) {
WriteNode nigori_node(trans);
BaseNode::InitByLookupResult init_result = nigori_node.InitTypeRoot(NIGORI);
DCHECK_EQ(init_result, BaseNode::INIT_OK);
NigoriState nigori_state;
nigori_state.nigori_specifics = nigori_node.GetNigoriSpecifics();
DCHECK(nigori_state.nigori_specifics.passphrase_type() ==
sync_pb::NigoriSpecifics::CUSTOM_PASSPHRASE ||
nigori_state.nigori_specifics.passphrase_type() ==
sync_pb::NigoriSpecifics::FROZEN_IMPLICIT_PASSPHRASE);
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnLocalSetPassphraseEncryption(nigori_state));
}
void SyncEncryptionHandlerImpl::DecryptPendingKeysWithExplicitPassphrase(
const std::string& passphrase,
WriteTransaction* trans,
WriteNode* nigori_node) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(IsExplicitPassphrase(passphrase_type_));
KeyParams key_params = {"localhost", "dummy", passphrase};
Cryptographer* cryptographer =
&UnlockVaultMutable(trans->GetWrappedTrans())->cryptographer;
if (!cryptographer->has_pending_keys()) {
// Note that this *can* happen in a rare situation where data is
// re-encrypted on another client while a SetDecryptionPassphrase() call is
// in-flight on this client. It is rare enough that we choose to do nothing.
NOTREACHED() << "Attempt to set decryption passphrase failed because there "
<< "were no pending keys.";
return;
}
DCHECK(IsExplicitPassphrase(passphrase_type_));
bool success = false;
std::string bootstrap_token;
if (cryptographer->DecryptPendingKeys(key_params)) {
DVLOG(1) << "Explicit passphrase accepted for decryption.";
cryptographer->GetBootstrapToken(&bootstrap_token);
success = true;
} else {
DVLOG(1) << "Explicit passphrase failed to decrypt.";
success = false;
}
if (success && !keystore_key_.empty()) {
// Should already be part of the encryption keybag, but we add it just
// in case.
KeyParams key_params = {"localhost", "dummy", keystore_key_};
cryptographer->AddNonDefaultKey(key_params);
}
FinishSetPassphrase(success, bootstrap_token, trans, nigori_node);
}
void SyncEncryptionHandlerImpl::FinishSetPassphrase(
bool success,
const std::string& bootstrap_token,
WriteTransaction* trans,
WriteNode* nigori_node) {
DCHECK(thread_checker_.CalledOnValidThread());
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnCryptographerStateChanged(
&UnlockVaultMutable(trans->GetWrappedTrans())->cryptographer));
// It's possible we need to change the bootstrap token even if we failed to
// set the passphrase (for example if we need to preserve the new GAIA
// passphrase).
if (!bootstrap_token.empty()) {
DVLOG(1) << "Passphrase bootstrap token updated.";
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnBootstrapTokenUpdated(bootstrap_token, PASSPHRASE_BOOTSTRAP_TOKEN));
}
const Cryptographer& cryptographer =
UnlockVault(trans->GetWrappedTrans()).cryptographer;
if (!success) {
if (cryptographer.is_ready()) {
LOG(ERROR) << "Attempt to change passphrase failed while cryptographer "
<< "was ready.";
} else if (cryptographer.has_pending_keys()) {
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseRequired(REASON_DECRYPTION,
cryptographer.GetPendingKeys()));
} else {
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnPassphraseRequired(REASON_ENCRYPTION, sync_pb::EncryptedData()));
}
return;
}
DCHECK(success);
DCHECK(cryptographer.is_ready());
// Will do nothing if we're already properly migrated or unable to migrate
// (in otherwords, if ShouldTriggerMigration is false).
// Otherwise will update the nigori node with the current migrated state,
// writing all encryption state as it does.
if (!AttemptToMigrateNigoriToKeystore(trans, nigori_node)) {
sync_pb::NigoriSpecifics nigori(nigori_node->GetNigoriSpecifics());
// Does not modify nigori.encryption_keybag() if the original decrypted
// data was the same.
if (!cryptographer.GetKeys(nigori.mutable_encryption_keybag()))
NOTREACHED();
if (IsNigoriMigratedToKeystore(nigori)) {
DCHECK(keystore_key_.empty() || IsExplicitPassphrase(passphrase_type_));
DVLOG(1) << "Leaving nigori migration state untouched after setting"
<< " passphrase.";
} else {
nigori.set_keybag_is_frozen(IsExplicitPassphrase(passphrase_type_));
}
// If we set a new custom passphrase, store the timestamp.
if (!custom_passphrase_time_.is_null()) {
nigori.set_custom_passphrase_time(
TimeToProtoTime(custom_passphrase_time_));
}
nigori_node->SetNigoriSpecifics(nigori);
}
// Must do this after OnPassphraseTypeChanged, in order to ensure the PSS
// checks the passphrase state after it has been set.
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseAccepted());
// Does nothing if everything is already encrypted.
// TODO(zea): If we just migrated and enabled encryption, this will be
// redundant. Figure out a way to not do this unnecessarily.
ReEncryptEverything(trans);
}
void SyncEncryptionHandlerImpl::MergeEncryptedTypes(
ModelTypeSet new_encrypted_types,
syncable::BaseTransaction* const trans) {
DCHECK(thread_checker_.CalledOnValidThread());
// Only UserTypes may be encrypted.
DCHECK(EncryptableUserTypes().HasAll(new_encrypted_types));
ModelTypeSet* encrypted_types = &UnlockVaultMutable(trans)->encrypted_types;
if (!encrypted_types->HasAll(new_encrypted_types)) {
*encrypted_types = new_encrypted_types;
FOR_EACH_OBSERVER(
Observer, observers_,
OnEncryptedTypesChanged(*encrypted_types, encrypt_everything_));
}
}
SyncEncryptionHandlerImpl::Vault* SyncEncryptionHandlerImpl::UnlockVaultMutable(
syncable::BaseTransaction* const trans) {
DCHECK_EQ(user_share_->directory.get(), trans->directory());
return &vault_unsafe_;
}
const SyncEncryptionHandlerImpl::Vault& SyncEncryptionHandlerImpl::UnlockVault(
syncable::BaseTransaction* const trans) const {
DCHECK_EQ(user_share_->directory.get(), trans->directory());
return vault_unsafe_;
}
bool SyncEncryptionHandlerImpl::ShouldTriggerMigration(
const sync_pb::NigoriSpecifics& nigori,
const Cryptographer& cryptographer) const {
DCHECK(thread_checker_.CalledOnValidThread());
// Don't migrate if there are pending encryption keys (because data
// encrypted with the pending keys will not be decryptable).
if (cryptographer.has_pending_keys())
return false;
if (IsNigoriMigratedToKeystore(nigori)) {
// If the nigori is already migrated but does not reflect the explicit
// passphrase state, remigrate. Similarly, if the nigori has an explicit
// passphrase but does not have full encryption, or the nigori has an
// implicit passphrase but does have full encryption, re-migrate.
// Note that this is to defend against other clients without keystore
// encryption enabled transitioning to states that are no longer valid.
if (passphrase_type_ != KEYSTORE_PASSPHRASE &&
nigori.passphrase_type() ==
sync_pb::NigoriSpecifics::KEYSTORE_PASSPHRASE) {
return true;
} else if (IsExplicitPassphrase(passphrase_type_) && !encrypt_everything_) {
return true;
} else if (passphrase_type_ == KEYSTORE_PASSPHRASE && encrypt_everything_) {
return true;
} else if (cryptographer.is_ready() &&
!cryptographer.CanDecryptUsingDefaultKey(
nigori.encryption_keybag())) {
// We need to overwrite the keybag. This might involve overwriting the
// keystore decryptor too.
return true;
} else if (old_keystore_keys_.size() > 0 && !keystore_key_.empty()) {
// Check to see if a server key rotation has happened, but the nigori
// node's keys haven't been rotated yet, and hence we should re-migrate.
// Note that once a key rotation has been performed, we no longer
// preserve backwards compatibility, and the keybag will therefore be
// encrypted with the current keystore key.
Cryptographer temp_cryptographer(cryptographer.encryptor());
KeyParams keystore_params = {"localhost", "dummy", keystore_key_};
temp_cryptographer.AddKey(keystore_params);
if (!temp_cryptographer.CanDecryptUsingDefaultKey(
nigori.encryption_keybag())) {
return true;
}
}
return false;
} else if (keystore_key_.empty()) {
// If we haven't already migrated, we don't want to do anything unless
// a keystore key is available (so that those clients without keystore
// encryption enabled aren't forced into new states, e.g. frozen implicit
// passphrase).
return false;
}
return true;
}
bool SyncEncryptionHandlerImpl::AttemptToMigrateNigoriToKeystore(
WriteTransaction* trans,
WriteNode* nigori_node) {
DCHECK(thread_checker_.CalledOnValidThread());
const sync_pb::NigoriSpecifics& old_nigori =
nigori_node->GetNigoriSpecifics();
Cryptographer* cryptographer =
&UnlockVaultMutable(trans->GetWrappedTrans())->cryptographer;
if (!ShouldTriggerMigration(old_nigori, *cryptographer))
return false;
DVLOG(1) << "Starting nigori migration to keystore support.";
sync_pb::NigoriSpecifics migrated_nigori(old_nigori);
PassphraseType new_passphrase_type = passphrase_type_;
bool new_encrypt_everything = encrypt_everything_;
if (encrypt_everything_ && !IsExplicitPassphrase(passphrase_type_)) {
DVLOG(1) << "Switching to frozen implicit passphrase due to already having "
<< "full encryption.";
new_passphrase_type = FROZEN_IMPLICIT_PASSPHRASE;
migrated_nigori.clear_keystore_decryptor_token();
} else if (IsExplicitPassphrase(passphrase_type_)) {
DVLOG_IF(1, !encrypt_everything_) << "Enabling encrypt everything due to "
<< "explicit passphrase";
new_encrypt_everything = true;
migrated_nigori.clear_keystore_decryptor_token();
} else {
DCHECK(!encrypt_everything_);
new_passphrase_type = KEYSTORE_PASSPHRASE;
DVLOG(1) << "Switching to keystore passphrase state.";
}
migrated_nigori.set_encrypt_everything(new_encrypt_everything);
migrated_nigori.set_passphrase_type(
EnumPassphraseTypeToProto(new_passphrase_type));
migrated_nigori.set_keybag_is_frozen(true);
if (!keystore_key_.empty()) {
KeyParams key_params = {"localhost", "dummy", keystore_key_};
if ((old_keystore_keys_.size() > 0 &&
new_passphrase_type == KEYSTORE_PASSPHRASE) ||
!cryptographer->is_initialized()) {
// Either at least one key rotation has been performed, so we no longer
// care about backwards compatibility, or we're generating keystore-based
// encryption keys without knowing the GAIA password (and therefore the
// cryptographer is not initialized), so we can't support backwards
// compatibility. Ensure the keystore key is the default key.
DVLOG(1) << "Migrating keybag to keystore key.";
bool cryptographer_was_ready = cryptographer->is_ready();
if (!cryptographer->AddKey(key_params)) {
LOG(ERROR) << "Failed to add keystore key as default key";
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
FAILED_TO_SET_DEFAULT_KEYSTORE,
MIGRATION_RESULT_SIZE);
return false;
}
if (!cryptographer_was_ready && cryptographer->is_ready()) {
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseAccepted());
}
} else {
// We're in backwards compatible mode -- either the account has an
// explicit passphrase, or we want to preserve the current GAIA-based key
// as the default because we can (there have been no key rotations since
// the migration).
DVLOG(1) << "Migrating keybag while preserving old key";
if (!cryptographer->AddNonDefaultKey(key_params)) {
LOG(ERROR) << "Failed to add keystore key as non-default key.";
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
FAILED_TO_SET_NONDEFAULT_KEYSTORE,
MIGRATION_RESULT_SIZE);
return false;
}
}
}
if (!old_keystore_keys_.empty()) {
// Go through and add all the old keystore keys as non default keys, so
// they'll be preserved in the encryption_keybag when we next write the
// nigori node.
for (std::vector<std::string>::const_iterator iter =
old_keystore_keys_.begin();
iter != old_keystore_keys_.end(); ++iter) {
KeyParams key_params = {"localhost", "dummy", *iter};
cryptographer->AddNonDefaultKey(key_params);
}
}
if (new_passphrase_type == KEYSTORE_PASSPHRASE &&
!GetKeystoreDecryptor(
*cryptographer, keystore_key_,
migrated_nigori.mutable_keystore_decryptor_token())) {
LOG(ERROR) << "Failed to extract keystore decryptor token.";
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
FAILED_TO_EXTRACT_DECRYPTOR,
MIGRATION_RESULT_SIZE);
return false;
}
if (!cryptographer->GetKeys(migrated_nigori.mutable_encryption_keybag())) {
LOG(ERROR) << "Failed to extract encryption keybag.";
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
FAILED_TO_EXTRACT_KEYBAG, MIGRATION_RESULT_SIZE);
return false;
}
if (migration_time_.is_null())
migration_time_ = base::Time::Now();
migrated_nigori.set_keystore_migration_time(TimeToProtoTime(migration_time_));
if (!custom_passphrase_time_.is_null()) {
migrated_nigori.set_custom_passphrase_time(
TimeToProtoTime(custom_passphrase_time_));
}
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnCryptographerStateChanged(cryptographer));
if (passphrase_type_ != new_passphrase_type) {
passphrase_type_ = new_passphrase_type;
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnPassphraseTypeChanged(passphrase_type_, GetExplicitPassphraseTime()));
}
if (new_encrypt_everything && !encrypt_everything_) {
EnableEncryptEverythingImpl(trans->GetWrappedTrans());
ReEncryptEverything(trans);
} else if (!cryptographer->CanDecryptUsingDefaultKey(
old_nigori.encryption_keybag())) {
DVLOG(1) << "Rencrypting everything due to key rotation.";
ReEncryptEverything(trans);
}
DVLOG(1) << "Completing nigori migration to keystore support.";
nigori_node->SetNigoriSpecifics(migrated_nigori);
if (new_encrypt_everything &&
(new_passphrase_type == FROZEN_IMPLICIT_PASSPHRASE ||
new_passphrase_type == CUSTOM_PASSPHRASE)) {
NotifyObserversOfLocalCustomPassphrase(trans);
}
switch (new_passphrase_type) {
case KEYSTORE_PASSPHRASE:
if (old_keystore_keys_.size() > 0) {
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
MIGRATION_SUCCESS_KEYSTORE_NONDEFAULT,
MIGRATION_RESULT_SIZE);
} else {
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
MIGRATION_SUCCESS_KEYSTORE_DEFAULT,
MIGRATION_RESULT_SIZE);
}
break;
case FROZEN_IMPLICIT_PASSPHRASE:
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
MIGRATION_SUCCESS_FROZEN_IMPLICIT,
MIGRATION_RESULT_SIZE);
break;
case CUSTOM_PASSPHRASE:
UMA_HISTOGRAM_ENUMERATION("Sync.AttemptNigoriMigration",
MIGRATION_SUCCESS_CUSTOM,
MIGRATION_RESULT_SIZE);
break;
default:
NOTREACHED();
break;
}
return true;
}
bool SyncEncryptionHandlerImpl::GetKeystoreDecryptor(
const Cryptographer& cryptographer,
const std::string& keystore_key,
sync_pb::EncryptedData* encrypted_blob) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(!keystore_key.empty());
DCHECK(cryptographer.is_ready());
std::string serialized_nigori;
serialized_nigori = cryptographer.GetDefaultNigoriKeyData();
if (serialized_nigori.empty()) {
LOG(ERROR) << "Failed to get cryptographer bootstrap token.";
return false;
}
Cryptographer temp_cryptographer(cryptographer.encryptor());
KeyParams key_params = {"localhost", "dummy", keystore_key};
if (!temp_cryptographer.AddKey(key_params))
return false;
if (!temp_cryptographer.EncryptString(serialized_nigori, encrypted_blob))
return false;
return true;
}
bool SyncEncryptionHandlerImpl::AttemptToInstallKeybag(
const sync_pb::EncryptedData& keybag,
bool update_default,
Cryptographer* cryptographer) {
if (!cryptographer->CanDecrypt(keybag))
return false;
cryptographer->InstallKeys(keybag);
if (update_default)
cryptographer->SetDefaultKey(keybag.key_name());
return true;
}
void SyncEncryptionHandlerImpl::EnableEncryptEverythingImpl(
syncable::BaseTransaction* const trans) {
ModelTypeSet* encrypted_types = &UnlockVaultMutable(trans)->encrypted_types;
if (encrypt_everything_) {
DCHECK_EQ(EncryptableUserTypes(), *encrypted_types);
return;
}
encrypt_everything_ = true;
*encrypted_types = EncryptableUserTypes();
FOR_EACH_OBSERVER(
Observer, observers_,
OnEncryptedTypesChanged(*encrypted_types, encrypt_everything_));
}
bool SyncEncryptionHandlerImpl::DecryptPendingKeysWithKeystoreKey(
const std::string& keystore_key,
const sync_pb::EncryptedData& keystore_decryptor_token,
Cryptographer* cryptographer) {
DCHECK(cryptographer->has_pending_keys());
if (keystore_decryptor_token.blob().empty())
return false;
Cryptographer temp_cryptographer(cryptographer->encryptor());
// First, go through and all all the old keystore keys to the temporary
// cryptographer.
for (size_t i = 0; i < old_keystore_keys_.size(); ++i) {
KeyParams old_key_params = {"localhost", "dummy", old_keystore_keys_[i]};
temp_cryptographer.AddKey(old_key_params);
}
// Then add the current keystore key as the default key and see if we can
// decrypt.
KeyParams keystore_params = {"localhost", "dummy", keystore_key_};
if (temp_cryptographer.AddKey(keystore_params) &&
temp_cryptographer.CanDecrypt(keystore_decryptor_token)) {
// Someone else migrated the nigori for us! How generous! Go ahead and
// install both the keystore key and the new default encryption key
// (i.e. the one provided by the keystore decryptor token) into the
// cryptographer.
// The keystore decryptor token is a keystore key encrypted blob containing
// the current serialized default encryption key (and as such should be
// able to decrypt the nigori node's encryption keybag).
// Note: it's possible a key rotation has happened since the migration, and
// we're decrypting using an old keystore key. In that case we need to
// ensure we re-encrypt using the newest key.
DVLOG(1) << "Attempting to decrypt pending keys using "
<< "keystore decryptor token.";
std::string serialized_nigori =
temp_cryptographer.DecryptToString(keystore_decryptor_token);
// This will decrypt the pending keys and add them if possible. The key
// within |serialized_nigori| will be the default after.
cryptographer->ImportNigoriKey(serialized_nigori);
if (!temp_cryptographer.CanDecryptUsingDefaultKey(
keystore_decryptor_token)) {
// The keystore decryptor token was derived from an old keystore key.
// A key rotation is necessary, so set the current keystore key as the
// default key (which will trigger a re-migration).
DVLOG(1) << "Pending keys based on old keystore key. Setting newest "
<< "keystore key as default.";
cryptographer->AddKey(keystore_params);
} else {
// Theoretically the encryption keybag should already contain the keystore
// key. We explicitly add it as a safety measure.
DVLOG(1) << "Pending keys based on newest keystore key.";
cryptographer->AddNonDefaultKey(keystore_params);
}
if (cryptographer->is_ready()) {
std::string bootstrap_token;
cryptographer->GetBootstrapToken(&bootstrap_token);
DVLOG(1) << "Keystore decryptor token decrypted pending keys.";
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnPassphraseAccepted());
FOR_EACH_OBSERVER(
SyncEncryptionHandler::Observer, observers_,
OnBootstrapTokenUpdated(bootstrap_token, PASSPHRASE_BOOTSTRAP_TOKEN));
FOR_EACH_OBSERVER(SyncEncryptionHandler::Observer, observers_,
OnCryptographerStateChanged(cryptographer));
return true;
}
}
return false;
}
base::Time SyncEncryptionHandlerImpl::GetExplicitPassphraseTime() const {
if (passphrase_type_ == FROZEN_IMPLICIT_PASSPHRASE)
return migration_time();
else if (passphrase_type_ == CUSTOM_PASSPHRASE)
return custom_passphrase_time();
return base::Time();
}
} // namespace syncer
| [
"[email protected]"
] | |
c14c5f4c5e1d104a2f9fd53b851981b47bffa5e6 | c747cfbe51cc24d15e49a888072d34635833d90a | /1287_ElementAppearingMoreThan25%InSortedArray.cpp | e85be0dd84281c12884b8b0a4216a3cc8677ecc3 | [] | no_license | bigship/leetcode_solutions | 18921508a8acba25013ae65864168c4c084bef37 | 45edfab5f1696fa9b3b59b63663aa9524de209cd | refs/heads/master | 2022-08-22T05:42:37.462263 | 2022-08-02T20:14:50 | 2022-08-02T20:14:50 | 13,472,667 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,164 | cpp | // 1287. Element Appearing More Than 25% In Sorted Array
/*
* Given an integer array sorted in non-decreasing order,
* there is exactly one integer in the array that occurs more than 25% of the time.
Return that integer.
Example 1:
Input: arr = [1,2,2,6,6,6,6,7,10]
Output: 6
Constraints:
1 <= arr.length <= 10^4
0 <= arr[i] <= 10^5
*/
// 由于数组有序, 且要找的值有且只有一个. 那么出现次数超过25%的值只可能出现在原数组中的
// 3个地方. 1/4处, 1/2处以及3/4处.
// 依次对这3个可能的值做二分查找, 找到它们位置的上界和下界
// 如果上下界的距离乘以4大于原数组的长度了, 那么这就是要找的值
// Time : O(log(n)), Space: O(1)
class Solution {
public:
int findSpecialInteger(vector<int>& arr) {
const int len = arr.size();
vector<int> candidates{arr[len / 4], arr[len / 2], arr[len * 3 / 4]};
for (auto& cand : candidates) {
auto low = std::lower_bound(arr.begin(), arr.end(), cand);
auto high = std::upper_bound(arr.begin(), arr.end(), cand);
if (4 * (distance(low, high)) > len)
return cand;
}
return -1;
}
};
| [
"[email protected]"
] | |
796c51df15a43a4984ae5976270cec738f7ad9cb | 8a96d2a2a6a3478028ea0e4981946dc4f9a4d38a | /Sandbox/Game.hpp | 1ef6e74268fd5b05b79132cacd775abdf98d6f8f | [
"MIT"
] | permissive | delahee/enjmin | 94d8d14deb63a1c1549d03e37574c0edbd0792ad | 5d982da486ad0565fcda38939212e6745bdf3e3f | refs/heads/master | 2023-01-11T12:04:09.998393 | 2020-11-19T12:02:56 | 2020-11-19T12:02:56 | 312,819,562 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 823 | hpp | #pragma once
#include <vector>
#include "SFML/Graphics.hpp"
#include "SFML/System.hpp"
#include "SFML/Window.hpp"
#include "Particle.hpp"
#include "ParticleMan.hpp"
using namespace sf;
class HotReloadShader;
class Game {
public:
sf::RenderWindow* win = nullptr;
sf::RectangleShape bg;
HotReloadShader * bgShader = nullptr;
sf::Texture tex;
bool closing = false;
std::vector<sf::Vector2i> walls;
std::vector<sf::RectangleShape> wallSprites;
ParticleMan beforeParts;
ParticleMan afterParts;
Game(sf::RenderWindow * win);
void cacheWalls();
void processInput(sf::Event ev);
bool wasPressed = false;
void pollInput(double dt);
void onSpacePressed();
void update(double dt);
void draw(sf::RenderWindow& win);
void onFileTick();
bool isWall(int cx, int cy);
void im();
}; | [
"[email protected]"
] | |
5409c8afb84f7525dcd97eca99d7cfa9e6da6de0 | 1fe1a071d444e954daff6458746f45f6d99f92f1 | /src/audio/chunk.h | 29e3ad24a7a34d300b449e3d6cfecdb7edf5792b | [] | no_license | mcdooda/flat-engine | a7fd885500e092bdc761c1f02f2f67d2be540fd6 | b0244afb5dfa1c676621286bad55d4e918c80311 | refs/heads/master | 2023-01-07T09:25:10.428463 | 2023-01-02T19:35:27 | 2023-01-02T19:35:27 | 22,994,219 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 311 | h | #ifndef FLAT_AUDIO_CHUNK_H
#define FLAT_AUDIO_CHUNK_H
#include <string>
#include <SDL2/SDL_mixer.h>
namespace flat::audio
{
class Chunk {
public:
Chunk(const std::string& filename);
~Chunk();
int playChannel(int loops) const;
private:
Mix_Chunk* m_chunk;
};
}
#endif // FLAT_AUDIO_CHUNK_H | [
"[email protected]"
] | |
42f20231733fd88e309a3bf494995e5802a78436 | 76071ace3c434dc6f33faa458786f5117ea01ac3 | /d08/ex01/span.cpp | b8ebab7ce179b4604a886599d708f1c59bead5ac | [] | no_license | sayakura/42--PiscineCPP | d88bffd68bd64e8cb0f330018de0e9fd2857ddb9 | 9fc8e50f09d7c3791b5c8579268c647a0e2893cb | refs/heads/master | 2020-05-18T03:11:26.465077 | 2019-05-13T03:46:19 | 2019-05-13T03:46:19 | 184,135,783 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,059 | cpp | #include "span.hpp"
Span::Span(int n) : _n(n) {} ;
Span::~Span() {} ;
Span::Span(Span const& rdi) {
_set = rdi._set;}
void Span::addNumber(int rdi) {
if (_set.size() + 1 > _n)
throw TooMuchElementException();
else
_set.insert(rdi);
}
int Span::shortestSpan() {
if (_set.size() <= 1)
throw NoElementException();
int _min = INT_MAX;
std::multiset<int>::iterator end = _set.end();
std::multiset<int>::iterator it = _set.begin();
int _curr;
--end;
while (it != end)
{
_curr = *it;
++it;
if ((*it - _curr) < _min)
_min = *it - _curr;
}
return _min;
}
int Span::longestSpan() {
if (_set.size() <= 1)
throw NoElementException();
std::multiset<int>::iterator end = _set.end();
--end;
return *end - *_set.begin();
}
const char* Span::TooMuchElementException::what() const throw() {
return "The span is full";}
const char* Span::NoElementException::what() const throw() {
return "Not enought elements in the span";} | [
"[email protected]"
] | |
451a49e074833705e2e048088f384c4b1fe93649 | 268e0035da3170ddfe579d2337510925249b3ed4 | /fun/net/reactor/hiredis/hiredis.h | 11a5153934b1f213bb1486d2f952301662bfaae0 | [] | no_license | maxidea1024/fun | 89e2b4ae1c23c60201e7b9a2ef85bb33a8a25202 | bc10f8a5fef70b4c02cf443c27c29c6a71cb31b5 | refs/heads/master | 2021-08-07T05:16:10.630398 | 2020-05-06T10:46:08 | 2020-05-06T10:46:08 | 169,390,099 | 2 | 0 | null | 2019-03-28T13:58:16 | 2019-02-06T10:39:41 | C++ | UTF-8 | C++ | false | false | 2,094 | h | #pragma once
namespace hiredis {
class Hiredis : public boost::enable_shared_from_this<Hiredis>,
boost::noncopyable {
public:
typedef boost::function<void(Hiredis*, int)> ConnectCallback;
typedef boost::function<void(Hiredis*, int)> DisconnectCallback;
typedef boost::function<void(Hiredis*, redisReply*)> CommandCallback;
Hiredis(fun::net::EventLoop* loop, const fun::net::InetAddress& serverAddr);
~Hiredis();
const fun::net::InetAddress& serverAddress() const {
return server_addr_;
}
// redisAsyncContext* context() { return context_; }
bool connected() const;
const char* errstr() const;
void setConnectCallback(const ConnectCallback& cb) {
connectCb_ = cb;
}
void setDisconnectCallback(const DisconnectCallback& cb) { disconnectCb_ = cb; }
void connect();
void disconnect(); // FIXME: implement this with redisAsyncDisconnect
int command(const CommandCallback& cb, fun::StringArg cmd, ...);
int ping();
private:
void handleRead(fun::Timestamp receiveTime);
void handleWrite();
int fd() const;
void logConnection(bool up) const;
void setChannel();
void RemoveChannel();
void connectCallback(int status);
void disconnectCallback(int status);
void commandCallback(redisReply* reply, CommandCallback* privdata);
static Hiredis* getHiredis(const redisAsyncContext* ac);
static void connectCallback(const redisAsyncContext* ac, int status);
static void disconnectCallback(const redisAsyncContext* ac, int status);
// command callback
static void commandCallback(redisAsyncContext* ac, void*, void*);
static void addRead(void* privdata);
static void delRead(void* privdata);
static void addWrite(void* privdata);
static void delWrite(void* privdata);
static void cleanup(void* privdata);
void pingCallback(Hiredis* me, redisReply* reply);
private:
fun::net::EventLoop* loop_;
const fun::net::InetAddress server_addr_;
redisAsyncContext* context_;
fun::SharedPtr<fun::net::Channel> channel_;
ConnectCallback connectCb_;
DisconnectCallback disconnectCb_;
};
}
| [
"[email protected]"
] | |
44d480f281990ff1daa75c47849151fc01544046 | 176154b6a70d273f24618b7f48972c1f29709f91 | /UVa 12620 - Fibonacci Sum.cpp | 3a9fdc65c3f0002e6faf84c1d9fe92f6edd4ca48 | [] | no_license | 913x100/Uva-solutions | c95edf01d00785b9999755d865303a750047478b | 5202aa0b9807acb4ea9ef373ae0ac5cccb248b36 | refs/heads/master | 2020-04-05T08:42:28.139919 | 2018-11-08T15:17:59 | 2018-11-08T15:17:59 | 156,725,795 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 488 | cpp | #include <cstdio>
int fibo[305] = {0, 1};
long long dp[305] = {0, 1};
long long N, M;
int main()
{
for(int i=2; i<305; i++)
fibo[i] = (fibo[i-1]+fibo[i-2])%100;
for(int i=2; i<305; i++)
dp[i] = dp[i-1] + fibo[i];
int t;
scanf("%d", &t);
while(t--)
{
scanf("%lld %lld", &N, &M);
if (N % 300 == 0) N++;
printf("%lld\n", ((M/300)-(N/300))*dp[299] + dp[M%300] - dp[(N+299)%300]);
}
return 0;
}
| [
"[email protected]"
] | |
6f29766c99011452975d5c2f01b429bfee2894a1 | cca3f6a0accb18760bb134558fea98bb87a74806 | /abc156/E/main.cpp | ef3b81aa8d25ae51ea006184b0b8649d3a6e618b | [] | no_license | Hashizu/atcoder_work | 5ec48cc1147535f8b9d0f0455fd110536d9f27ea | cda1d9ac0fcd56697ee5db93d26602dd8ccee9df | refs/heads/master | 2023-07-15T02:22:31.995451 | 2021-09-03T12:10:57 | 2021-09-03T12:10:57 | 382,987,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 414 | cpp | #include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
void solve(long long n, long long k){
}
// Generated by 1.1.6 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
int main(){
long long n;
scanf("%lld",&n);
long long k;
scanf("%lld",&k);
solve(n, k);
return 0;
}
| [
"[email protected]"
] | |
9ae117c8a9fbfc5eb0ef5b82f3b3dc2a574eba65 | 5ec3316a9d88f9d50cfb06d2ef5c5f2fd7538c06 | /runtime/library.h | 7143c9225a2092afd4793abedf4d6c3152bb79ca | [
"Apache-2.0"
] | permissive | irpbc/mj-rt | f9fd3fc85e07320da3d630481a42df2e6ea97458 | 44f7e17ca72ad60b828f93a220a448580f6d00fe | refs/heads/master | 2021-07-21T22:33:18.247840 | 2019-01-10T16:00:03 | 2019-01-10T16:00:03 | 114,918,367 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 881 | h | #ifndef MJ_RT_LIBRARY_H
#define MJ_RT_LIBRARY_H
#include <cstdint>
#include "Heap.h"
#ifdef _WIN32
#define EXPORT __declspec(dllexport)
#else
#define EXPORT
#endif
#ifdef _MSC_VER
#define ALLOC_CC __fastcall
#else
#define ALLOC_CC
#endif
extern "C" {
EXPORT void mjrt_init_runtime(uint8_t* LLVM_StackMaps);
EXPORT void* ALLOC_CC mjrt_alloc_impl(ObjectDescriptor* meta, uint64_t rsp);
EXPORT void* ALLOC_CC mjrt_alloc_array_impl(ObjectDescriptor* meta, int32_t length, uint64_t rsp);
EXPORT void mj_hello(void);
EXPORT int32_t mj_putchar(int32_t c);
EXPORT int32_t mj_puts(const char* str);
EXPORT int32_t mj_printf(const char* str, ...);
EXPORT int32_t mj_scan_int();
EXPORT int64_t mj_scan_long();
EXPORT float mj_scan_float();
EXPORT double mj_scan_double();
EXPORT int mj_getc();
EXPORT int mj_parseInt(ArrayBase* chars);
EXPORT char mj_intToChar(int32_t num);
}
#endif | [
"[email protected]"
] | |
b12d3eb0b4112de094e97c3d5bb38a9423436e3e | f140b691c2a5f2ae972141023ba8a944d7956e49 | /lab_avl/avltree.h | 8beb3ea33a1556a49bf996bb738121e5c9555cde | [] | no_license | qs-lin/CS225 | afd99f94b340e0af58169e3dd87bcbadde1fc6f6 | eb15f1e979f7e5056ca7b028c6f229c871590e14 | refs/heads/master | 2022-12-16T13:30:20.836208 | 2020-09-18T17:02:04 | 2020-09-18T17:02:04 | 281,289,730 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,101 | h | /**
* @file avltree.h
* Declaraction of the AVLTree class. You will probably need to modify this
* file to add helper functions.
*/
#pragma once
#include <iostream>
#include <vector>
#include <sstream>
#include <string>
#include <stack>
/**
* The AVLTree class represents a linked-memory AVL Tree.
* @tparam K the type of key stored in the tree
* @tparam V the type of value stored in the tree
*/
template <class K, class V>
class AVLTree
{
private:
/**
* Node represents a tree node; that is, an element in a AVLTree.
* It stores a key, value, and pointers to its left and right children.
*/
struct Node {
K key;
V value;
Node* left;
Node* right;
int height;
/**
* Node constructor; sets children to point to `NULL`.
* @param newKey The object to use as a key
* @param newValue The templated data element that the constructed
* node will hold.
*/
Node(const K& newKey, const V& newValue)
: key(newKey), value(newValue), left(NULL), right(NULL), height(0)
{
}
};
public:
/**
* Constructor to create an empty tree.
*/
AVLTree();
/**
* Copy constructor.
* @param other The tree to copy
*/
AVLTree(const AVLTree& other);
/**
* Destructor; frees all nodes associated with this tree.
*/
~AVLTree();
/**
* Assignment operator.
* @param rhs The tree to copy
* @return A reference to the current tree
*/
const AVLTree& operator=(const AVLTree& rhs);
/**
* Frees all nodes associated with this tree and sets it to be empty.
*/
void clear();
/**
* Inserts a key and value into the AVLTree.
* @param key The key to insert
* @param value The value associated with the key
*/
void insert(const K& key, const V& value);
/**
* Removes a key from the AVLTree. The key is assumed to exist in the tree.
* @param key The key to remove
*/
void remove(const K& key);
/**
* Finds an element in the AVL tree.
* @param key The element to search for
* @return The value stored for that key
*/
V find(const K& key) const;
//void test();
/**
* Prints the function calls to a stream.
* @param out The stream to print to (default is stdout)
*/
void printFunctionOrder(std::ostream& out = std::cout) const;
/**
* Prints the AVLTree to a stream.
* @param out The stream to print to (default is stdout)
*/
void print(std::ostream& out = std::cout, bool order = true) const;
/**
* This function is used for grading.
* @param newOut The stream to print to
*/
void setOutput(std::ostream& newOut);
/**
* Gets the in-order traversal of an AVL tree's keys.
*/
std::vector<K> getInorderTraversal() const;
/**
* Gets the pre-order traversal of an AVL tree's keys.
*/
std::vector<K> getPreorderTraversal() const;
/*
* Gets vector of function calls.
*/
std::vector<std::string> getFunctionOrder() const;
private:
/**
* The root of the tree.
*/
Node* root;
//std::stack<typename AVLTree<K,V>::Node*&> stack;
//std::stack<Node*> stack;
/**
* Private helper function for the public #insert function.
* @param node The current node in the recursion
* @param key The key to insert
* @param value The value associated with the key
*/
void insert(Node*& node, const K& key, const V& value);
/**
* Private helper function for the public #remove function.
* @param node The current node in the recursion
* @param key The key to remove
*/
void remove(Node*& node, const K& key);
/**
* Finds a value (by key) in the AVL tree.
* @param node The node to search from (current subroot)
* @param key The key to search for
* @return The value stored for that key
*/
V find(Node* node, const K& key) const;
/**
* Rotate the tree right (there is an imbalance on the left side).
* @param node The node to rotate
*/
void rotateRight(Node*& node);
/**
* Rotates the tree left (there is an imbalance on the right side).
* @param node The node to rotate
*/
void rotateLeft(Node*& node);
/**
* A right-left rotation.
* This function should simply call rotateRight and rotateLeft.
* @param node The node to rotate
*/
void rotateRightLeft(Node*& node);
/**
* A left-right rotation.
* This function should simply call rotateLeft and rotateRight.
* @param node The node to rotate
*/
void rotateLeftRight(Node*& node);
/**
* Rebalance a node by performing rotations. You can assume that node->left
* and node->right are both balanced. Even if no rotations are required,
* you should update the node's height.
* @param node The node to balance.
*/
void rebalance(Node*& node);
void updateHeight(Node*& node);
/**
* @param node The node's height to check
* @return The height of the node if it's non-`NULL` or -1 if it is `NULL`
*/
int heightOrNeg1(const Node* node) const;
//return the balance factor of one node
int balance(const Node* node) const;
/**
* Swap the keys and values of two nodes.
* @param first The first node to swap
* @param second The node to swap with
*/
//you are not directly swapping two nodes* ...
//imagine swapping root with a leaf ...
void swap(Node*& first, Node*& second);
/**
* Helper function for #operator= and AVLTree(const AVLTree &).
* @param subRoot The current node in the recursion
*/
Node* copy(const Node* subRoot);
/**
* Private helper function for clear that clears beneath the parameter node.
* @param subRoot The current node in the recursion
*/
void clear(Node* subRoot);
/**
* Gets the in-order traversal of an AVL tree's keys.
* @param subRoot The current node in the recursion
*/
void getInorderTraversal(const Node* subRoot, std::vector<K>& traversal) const;
/**
* Gets the pre-order traversal of an AVL tree's keys.
* @param subRoot The current node in the recursion
*/
void getPreorderTraversal(const Node* subRoot, std::vector<K>& traversal) const;
/** This variable is used for grading. */
std::ostream* _out;
/** This variable tests the order of function calls **/
std::vector<std::string> functionCalls;
Node*& _find(Node*&, const K&) const ;
//find the in-order predecessor of K
//Node*& _findIOP(const K&) ;
//Node*& _findIOP(std::stack<Node*>&, Node*&, const K&) ;
// There is no need to findIOP this way. We know that for a two-children node, its IOP is the
// right-most node on its left subtree. For other types of nodes, removing is just like a linked
// list
};
#include "avltree_given.cpp"
#include "avltree.cpp"
| [
"[email protected]"
] | |
f625d7e119b8d7fd5097b7f93022adb7e0ca0cc7 | adcd1a0efcd34150631bd4eb86f278240d9a1a9f | /serverplugin/redis/redis/RedisReadThreadGroup.cpp | e3517612c406499a5019c31e5858278464b579af | [
"BSD-3-Clause"
] | permissive | victorzjl/BPE | a91bf8d6781ba1ea7fb118fdc809f99423f9be14 | b919e655337df53fe45515b8d5aed831ffdb2a19 | refs/heads/master | 2020-02-26T14:16:00.513976 | 2016-06-28T09:20:52 | 2016-06-28T09:20:52 | 61,704,491 | 1 | 2 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,921 | cpp | #include "RedisReadThreadGroup.h"
#include "ErrorMsg.h"
#include "RedisVirtualServiceLog.h"
#include "RedisVirtualService.h"
CRedisReadThreadGroup::~CRedisReadThreadGroup()
{
Stop();
}
void CRedisReadThreadGroup::Stop()
{
vector<CRedisThread *>::iterator iter;
for (iter = m_vecChildThread.begin(); iter != m_vecChildThread.end(); iter++)
{
if(*iter != NULL)
{
delete *iter;
*iter = NULL;
}
}
m_vecChildThread.clear();
}
int CRedisReadThreadGroup::Start( unsigned int dwThreadNum, const vector<string> &vecRedisSvr, CRedisVirtualService *pRedisVirtualService, short readTag)
{
RVS_XLOG(XLOG_DEBUG, "CRedisReadThreadGroup::%s, ThreadNum[%d]\n", __FUNCTION__, dwThreadNum);
if(pRedisVirtualService == NULL)
{
RVS_XLOG(XLOG_ERROR, "CRedisReadThreadGroup::%s, The param 'pRedisVirtualService' is NULL\n", __FUNCTION__);
return RVS_SYSTEM_ERROR;
}
m_pRedisVirtualService = pRedisVirtualService;
int nRet = 0;
bool bSuccess = false;
//Æô¶¯Ïß³Ì×é
for(unsigned int i=0;i<dwThreadNum;i++)
{
CRedisThread *pRedisThread = new CRedisThread(m_queue, pRedisVirtualService);
m_vecChildThread.push_back(pRedisThread);
nRet = pRedisThread->Start(vecRedisSvr, readTag);
if(nRet != 0)
{
RVS_XLOG(XLOG_ERROR, "CRedisReadThreadGroup::%s, RedisThread start error\n", __FUNCTION__);
}
else
{
bSuccess = true;
}
}
if(bSuccess)
{
return 0;
}
else
{
return nRet;
}
}
void CRedisReadThreadGroup::OnProcess(unsigned int dwServiceId, unsigned int dwMsgId, unsigned int dwSequenceId, ERedisType eRedisType, const string &strGuid, void *pHandler, const void *pBuffer, int nLen)
{
RVS_XLOG(XLOG_DEBUG, "CRedisReadThreadGroup::%s\n", __FUNCTION__);
timeval_a tStart;
gettimeofday_a(&tStart, 0);
SReidsTypeMsg *pRedisMsg = NULL;
switch(eRedisType)
{
case RVS_REDIS_STRING:
pRedisMsg = new SRedisStringMsg;
break;
case RVS_REDIS_SET:
pRedisMsg = new SRedisSetMsg;
break;
case RVS_REDIS_ZSET:
pRedisMsg = new SRedisZsetMsg;
break;
case RVS_REDIS_LIST:
pRedisMsg = new SRedisListMsg;
break;
case RVS_REDIS_HASH:
pRedisMsg = new SRedisHashMsg;
break;
default:
RVS_XLOG(XLOG_ERROR, "CRedisReadThreadGroup::%s, SReidsTypeMsg[%d] not supported\n", __FUNCTION__, eRedisType);
m_pRedisVirtualService->Log(strGuid, dwServiceId, dwMsgId, tStart, "", "", 0, RVS_UNKNOWN_REDIS_TYPE, "", 0);
m_pRedisVirtualService->Response(pHandler, dwServiceId, dwMsgId, dwSequenceId, RVS_UNKNOWN_REDIS_TYPE);
return;
}
pRedisMsg->dwServiceId = dwServiceId;
pRedisMsg->dwMsgId = dwMsgId;
pRedisMsg->dwSequenceId = dwSequenceId;
pRedisMsg->strGuid = strGuid;
pRedisMsg->handler = pHandler;
pRedisMsg->tStart = tStart;
pRedisMsg->pBuffer = malloc(nLen);
pRedisMsg->dwLen = nLen;
memcpy(pRedisMsg->pBuffer, pBuffer, nLen);
if(m_queue.IsFull())
{
RVS_XLOG(XLOG_ERROR, "CRedisReadThreadGroup::%s, read queue full\n", __FUNCTION__);
m_pRedisVirtualService->Log(strGuid, dwServiceId, dwMsgId, tStart, "", "", 0, RVS_READ_QUEUE_FULL, "", 0);
m_pRedisVirtualService->Response(pHandler, dwServiceId, dwMsgId, dwSequenceId, RVS_READ_QUEUE_FULL);
delete pRedisMsg;
return;
}
else
{
m_queue.PutQ(pRedisMsg);
}
}
void CRedisReadThreadGroup::OnAddRedisServer(const string &strAddr)
{
RVS_XLOG(XLOG_DEBUG, "CRedisReadThreadGroup::%s\n", __FUNCTION__);
vector<CRedisThread *>::const_iterator iter;
for (iter = m_vecChildThread.begin(); iter != m_vecChildThread.end(); iter++)
{
(*iter)->OnAddRedisServer(strAddr);
}
}
void CRedisReadThreadGroup::GetSelfCheck( unsigned int &dwAliveNum, unsigned int &dwAllNum )
{
RVS_XLOG(XLOG_DEBUG, "CRedisReadThreadGroup::%s\n", __FUNCTION__);
dwAliveNum = 0;
dwAllNum = m_vecChildThread.size();
vector<CRedisThread *>::const_iterator iter;
for (iter = m_vecChildThread.begin(); iter != m_vecChildThread.end(); iter++)
{
if((*iter)->GetSelfCheck())
{
dwAliveNum ++;
}
}
}
| [
"[email protected]"
] | |
f77ba6b6b33fc7cfedb73c2cc3b09d795f5c2b97 | 77e63a17fa992594256e8549c39838ec671d0b13 | /RMSDCalculator.cpp | 2e76011d4fd9c163c862c4549ac78daf0beac52b | [
"MIT"
] | permissive | ToruNiina/PDBtools | 44ea34a879637a03f84202d04a3300a31d815ad5 | 7dc708429421e2cbdda8997c69e4e39d71e4acda | refs/heads/master | 2021-01-10T15:16:49.660065 | 2015-11-10T10:33:01 | 2015-11-10T10:33:01 | 44,656,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,555 | cpp | #include "includes/DCDReader.hpp"
#include "includes/RMSDCalculator.hpp"
#include "includes/CGReader.hpp"
using namespace arabica;
SnapShot pickup_chain(const SnapShot& ss,
const std::vector<int>& chain_ids,
const std::vector<int>& chain_sizes);
int main(int argc, char *argv[])
{
if(argc != 3)
{
std::cout << "RMSDCalculator" << std::endl;
std::cout << "USAGE: ./rmsd <filename> <chainIDs>" << std::endl;
std::cout << " input the filename without extension" << std::endl;
std::cout << " input IDs(alphabet) of the chain you want to calculate RMSD"
<< std::endl;
std::cout << " this reads pdb(cg style) and dcd file." << std::endl;
std::cout << " please confirm these files exist and have same name." << std::endl;
}
std::string filename(argv[1]);
std::string cgpdb(filename + ".pdb");
CGReader cgreader(cgpdb);
cgreader.read_file();
CGMdlSptr model(cgreader.get_model(0));
std::string IDs(argv[2]);
std::transform(IDs.cbegin(), IDs.cend(), IDs.begin(), toupper);
// std::cout << "model->size" << model->size() << std::endl;
//this contains how many mass points the chain has
std::vector<int> chain_sizes;
for(int i(0); i<model->size(); ++i)
{
chain_sizes.push_back(model->at(i)->get_size());
std::cout<< "model->at(" << i << ")->get_size" << model->at(i)->get_size() << std::endl;
}
// for(int i(0); i<chain_sizes.size(); ++i)
// std::cout << chain_sizes.at(i) << std::endl;
//this contains what is the ID of the chain to calculate RMSD
std::vector<int> chain_IDs;
for(auto iter = IDs.begin(); iter != IDs.end(); ++iter)
{
chain_IDs.push_back(model->find_id(*iter));
// std::cout << "model->find_id" << model->find_id(*iter) << std::endl;
}
// for(int i(0); i<chain_IDs.size(); ++i)
// std::cout << chain_IDs.at(i) << std::endl;
//TODO
// int end_ID(0);
// for(int i(0); i <= *(chain_IDs.end() - 1); ++i)
// {
// end_ID += chain_sizes.at(i);
// }
// std::cout << "end_ID " << end_ID << std::endl;
std::string dcd(filename + ".dcd");
DCDReader dcdreader;
dcdreader.read_file(dcd);
std::string output(IDs + "_RMSD.ts");
std::ofstream ofs(output);
std::cout << "rmsdcalc" << std::endl;
RMSDCalculator rmsdcalc;
if(dcdreader.get_size() < 2)
{
std::cout << "there is only" << dcdreader.get_size() << "snapshots." << std::endl;
std::cout << "it is not enough to calculate RMSD." << std::endl;
return 1;
}
std::pair<SnapShot, double> initial
(dcdreader.get_snapshot(0));
std::pair<SnapShot, double> second_
(dcdreader.get_snapshot(1));
// std::cout << "initial snapshot" << std::endl;
// SnapShot init(initial.first.begin(), (initial.first.begin() + end_ID));
// SnapShot seco(initial.first.begin(), (initial.first.begin() + end_ID));
SnapShot init(pickup_chain(initial.first, chain_IDs, chain_sizes));
SnapShot seco(pickup_chain(initial.first, chain_IDs, chain_sizes));
std::cout << "init size " << init.size() << std::endl;
std::cout << "seco size " << seco.size() << std::endl;
rmsdcalc.set_data(init, init);
ofs << 0e0 << " " << rmsdcalc.get_RMSD() << std::endl;
rmsdcalc.set_data(init, seco);
ofs << second_.second << " " << rmsdcalc.get_RMSD() << std::endl;
for(int i(2); i < dcdreader.get_size(); ++i)
{
std::pair<SnapShot, double> snapshot
(dcdreader.get_snapshot(i));
// SnapShot sshot(snapshot.first.begin(), (snapshot.first.begin()+end_ID));
SnapShot sshot(pickup_chain(snapshot.first, chain_IDs, chain_sizes));
rmsdcalc.set_data2(sshot);
ofs << snapshot.second << " " << rmsdcalc.get_RMSD() << std::endl;
}
return 0;
}
SnapShot pickup_chain(const SnapShot& ss,
const std::vector<int>& chain_ids,
const std::vector<int>& chain_sizes)
{
SnapShot retval(ss);
SnapShot::iterator ssiter = retval.begin();
for(int i(0); i<chain_sizes.size(); ++i)
{
if(std::find(chain_ids.begin(), chain_ids.end(), i) != chain_ids.end())
{
ssiter = ssiter + chain_sizes.at(i);
}
else
{
retval.erase(ssiter, ssiter + chain_sizes.at(i));
}
}
return retval;
}
| [
"[email protected]"
] | |
9110abc5a3dcc9b7b8f1d1b4ef8573f10d5608fd | cd76d6576e0fc21ddc12014f3b4f200f87bfe5b6 | /Data Structure (Advance)/constructTree.cpp | 779b42376c6d4abe8830bea9ea04421595611f3c | [] | no_license | ritikkr/COMPLETE-INTERVIEW-PREPARATION-CIP | 916afd37eda3f031a9ba70b0b8f71866466a4cd6 | af8b09b3b2f6759da7a504d5f9fb8962526f4fc9 | refs/heads/main | 2023-05-15T03:14:14.781041 | 2021-06-09T13:41:57 | 2021-06-09T13:41:57 | 345,538,841 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 697 | cpp | #include <iostream>
using namespace std;
int preIndex = 0;
class Node
{
public:
int key;
Node *left;
Node *right;
Node(int x)
{
key = x;
left = right = NULL;
}
};
// in[] = {20, 10, 40, 30, 50}
// pre[]= {10, 20, 30, 40, 50}
Node *cTree(int in[], int pre[], int is, int ie)
{
if( is > ie) return NULL;
Node *root = new Node(pre[preIndex++]);
int inIndex;
for(int i= is; i<=ie; i++)
{
if(in[i] == root->key)
{
inIndex = i;
break;
}
}
root->left = cTree(in, pre, is, inIndex--);
root->right = cTree(in, pre, inIndex+1, ie);
return root;
}
int main()
{
return 0;
} | [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.